%!PS-Adobe-2.0
%%DocumentFonts: Times-Roman
%%Creator: Axiom
%%CreationDate: today
%%Pages: 1
%%processing (hard) limit: 250 pts or 500 values for the operand stack.
%%EndComments

%------------------------------- prologue -------------------------------%
%-------------------------- support procedures --------------------------%

%--------- first create user dictionary with 100 entries max ------------%
%          (number can be changed to accomodate definitions)             %

100	dict	begin		%% using 100 entries in top level dictionary

/FontHeight     12 def

/inch
        {       72 mul }
        def

% yVal and hVal are necessary because the Xwindow display origin
% is at the upper left corner, while the postscript display
% origin is at the lower left hand corner.

/yVal		%% get Y value -- make upper left corner origin
        {       maxY sub abs }	%% maxY is viewWindow height
        def

/hVal		%% get H value -- used for displaying title text
        {       maxH sub abs }	%% maxH is viewWindow height+titleWindow height
        def

% loads in the font

/loadFont
        {       /Times-Roman findfont FontHeight scalefont setfont }
        def

% draws a rectangle with input operand: 
%		height
%		width
% notice that this function does not "draw" or ink the rectangle.
/drawRect
	{	1 index 1 add 0 rlineto		%% draw first side
                0 exch 1 add neg rlineto	%% draw second side
                1 add neg 0 rlineto		%% draw third side
                closepath }			%% draw fourth side
        def

% create a rectangle with input operand in the view window: 
%		y
%		x
%		height
%		width
% notice that this function does not "draw" or ink the rectangle.
/rectangle
        {       yVal moveto			%% set currentpoint for line
		drawRect }			%% draws the rectangle
        def

% These are global variables that every draw procedure uses
% THe operand should be as follows:
%		viewWindow width
%		viewWindow height
%		title height
/setDim
        {       /maxX exch def			%% width of display
                /maxY exch def			%% height of display
		/titleH exch def		%% height of title
		/maxH maxY titleH add def	%% height of display + title
        } def

%-------------------------- major procedures --------------------------%

/title		%% draws a rectangle around the title of picture
	{	gsave
		newpath
		moveto				%% lower left of title
                titleH 1 add 0 exch rlineto	%% draw first side
                1 add 0 rlineto			%% draw second side
                1 add neg 0 exch rlineto
		begin installGC stroke end	%% draw third side
		grestore }
	def

/drawFrame      %% draw display frame
        {	gsave
                newpath
                maxX maxY 0 0 rectangle
		begin installGC stroke end
                grestore }
        def

% updates the foreground color of existing graphics-context dictionary:
%		foreground color
%		dictionary name
/setForeground
	{	/FGcolor exch put }
	def

% updates the background color of existing graphics-context dictionary:
%		background color
%		dictionary name
/setBackground
	{	/BGcolor exch put }
	def

% updates the line width, line style, cap style, join style of
% existing graphics-context dictionary:
%		dictionary name
%		join style
%		cap style
%		line width
/setLineAttributes
	{	begin
		/JoinStyle exch def
		/CapStyle  exch def
		/LineWidth exch def
		end }
	def

% creates a graphics context dictionary with the following information:
%		/dictionary name
%		foreground color
%		background color
%		line width
%		cap style
%		join style
% this creates different graphical contexts for different drawing functions.
/makeDict
	{	5 dict 2 copy def begin	pop %% with dict name on top of stack
		/FGcolor   exch def	%% define drawing attributes
		/BGcolor   exch def	%% not heavily used
		/LineWidth exch def
		/CapStyle  exch def
		/JoinStyle exch def
		end }
	def

% makes the current dictionary attributes effective
% this function takes the values in the current dictionary to set the context
% these are the values currently being used: foreground, cap, join, and width
/installGC
	{
		FGcolor currentgray ne
		{FGcolor setgray} if		%% foreground color
		CapStyle currentlinecap ne
		{CapStyle setlinecap} if	%% cap style
		JoinStyle currentlinejoin ne
		{JoinStyle setlinejoin} if	%% join style
		LineWidth currentlinewidth ne
		{LineWidth setlinewidth} if }	%% line width
	def

% operand stack configuration in order to use psDrawLine:
%		psDrawLine
%		y0
%		x0
%		y1
%		x1
%		graphics-context dictionary
% this draws a line from (x0, y0) to (x1, y1).

/psDrawLine
        {	gsave
                newpath
                yVal moveto
                yVal lineto
		begin installGC stroke end
		grestore }
        def

% operand stack configuration in order to use psDrawStr:
%		psDrawStr
%		y
%		x
%		string
%		graphics-context dictionary
% this function draws a text string at (x,y).

/psDrawStr
        {	gsave
		newpath
                loadFont
                yVal moveto
		exch begin installGC show end
                grestore }
        def

%-------------------------- script --------------------------%

% 1 inch 1 inch translate

   mark					%% mark bottom of our stack

	0	0	1
	1072693248	0	/globalGC1	makeDict
	0	0	1
	1072693248	0	/globalGC2	makeDict
	0	0	1
	1072693248	0	/trashGC	makeDict
	0	0	1
	1072693248	0	/componentGC	makeDict
	0	0	1
	1072693248	0	/opaqueGC	makeDict
	0	0	1
	1072693248	0	/renderGC	makeDict
	0	0	1
	1072693248	0	/globGC	makeDict
	0	0	1
	1072693248	0	/anotherGC	makeDict
	1	0	1
	1072693248	0	/renderGC	makeDict

    gsave	% save graphics state for clipping path

	1.000000	1.000000	scale

	24	276	300	setDim
	maxX maxY	0 0	rectangle	clip	% set clip path

	globalGC1	0.000000	setForeground
	globGC	0.000000	setForeground
	globalGC1	57	203	225	84	psDrawLine
	globGC	(X)	52	208	psDrawStr
	globalGC1	193.000000	setForeground
	globGC	193.000000	setForeground
	globalGC1	0.000000	setForeground
	globGC	0.000000	setForeground
	globalGC1	245	203	76	84	psDrawLine
	globGC	(Y)	250	208	psDrawStr
	globalGC1	193.000000	setForeground
	globGC	193.000000	setForeground
	globalGC1	0.000000	setForeground
	globGC	0.000000	setForeground
	globalGC1	151	37	150	208	psDrawLine
	globGC	(Z)	156	32	psDrawStr
	globalGC1	193.000000	setForeground
	globGC	193.000000	setForeground
	1	0	0	componentGC	setLineAttributes
	componentGC	0.000000	setForeground
	componentGC	0.000000	setForeground
	componentGC	149	54	150	59	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	55	149	54	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	55	149	54	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	57	155	62	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	58	154	57	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	58	154	57	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	60	159	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	61	158	60	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	61	158	60	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	62	164	67	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	64	163	62	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	64	163	62	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	65	168	70	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	67	168	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	66	168	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	68	173	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	69	172	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	69	172	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	71	178	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	72	177	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	72	177	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	74	182	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	75	182	74	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	75	182	74	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	78	187	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	79	186	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	79	186	78	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	81	192	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	82	191	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	82	191	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	85	197	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	85	196	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	85	196	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	88	202	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	89	202	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	89	202	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	92	207	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	93	208	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	93	208	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	96	212	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	96	214	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	96	214	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	100	218	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	220	100	221	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	220	100	221	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	227	103	223	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	103	227	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	103	227	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	234	106	228	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	106	234	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	106	234	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	240	110	234	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	239	109	240	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	239	110	240	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	246	113	239	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	245	112	246	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	245	113	246	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	253	116	245	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	251	116	253	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	251	116	253	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	259	120	251	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	257	119	259	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	257	120	259	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	265	123	256	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	263	122	265	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	263	123	265	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	272	127	262	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	269	126	272	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	269	127	272	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	278	130	268	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	275	129	278	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	276	131	278	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	284	134	274	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	282	133	284	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	282	134	284	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	291	138	280	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	288	137	291	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	288	138	291	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	57	146	62	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	58	145	57	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	58	145	57	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	60	150	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	61	149	60	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	61	149	60	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	62	155	67	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	64	154	62	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	63	154	62	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	65	159	70	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	66	158	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	66	158	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	68	164	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	69	163	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	69	163	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	71	169	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	72	167	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	72	167	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	74	173	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	75	172	74	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	75	172	74	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	77	178	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	78	177	77	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	78	177	77	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	80	183	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	81	181	80	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	81	181	80	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	84	188	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	85	186	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	85	186	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	88	193	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	88	191	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	88	191	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	92	198	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	92	196	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	92	196	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	96	203	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	96	202	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	96	202	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	100	208	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	100	209	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	100	209	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	104	213	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	215	104	216	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	215	104	216	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	223	107	219	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	222	107	223	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	222	107	223	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	230	110	224	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	110	230	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	110	230	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	236	113	229	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	235	113	236	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	234	113	236	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	242	117	235	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	241	116	242	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	241	117	242	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	249	120	241	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	247	119	249	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	247	120	249	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	255	123	246	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	253	123	255	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	253	124	255	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	261	127	252	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	259	126	261	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	259	127	261	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	267	130	258	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	265	130	267	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	265	131	267	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	274	134	264	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	271	133	274	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	271	134	274	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	280	138	270	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	278	137	280	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	278	138	280	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	287	142	276	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	284	141	287	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	284	142	287	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	59	142	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	61	140	59	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	61	140	59	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	62	146	67	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	64	145	62	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	63	145	62	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	65	150	70	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	66	149	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	66	149	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	68	155	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	69	154	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	69	154	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	71	160	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	72	158	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	72	158	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	74	164	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	75	163	74	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	75	163	74	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	77	169	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	78	167	77	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	78	167	77	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	80	174	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	81	172	80	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	81	172	80	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	83	178	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	84	176	83	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	84	176	83	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	180	87	183	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	88	180	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	87	180	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	90	188	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	91	185	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	91	185	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	95	193	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	95	189	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	95	189	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	100	198	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	100	195	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	100	195	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	105	204	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	105	203	105	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	105	203	105	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	109	209	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	108	212	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	108	212	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	112	214	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	111	219	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	111	219	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	114	220	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	113	226	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	224	114	226	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	117	225	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	231	116	232	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	230	117	232	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	120	231	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	236	120	238	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	236	120	238	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	244	124	236	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	242	123	244	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	242	124	244	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	250	127	242	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	248	126	250	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	248	127	250	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	257	131	248	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	255	130	257	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	255	131	257	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	263	134	253	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	261	133	263	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	261	134	263	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	269	138	259	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	267	137	269	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	267	138	269	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	276	142	265	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	273	141	276	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	273	142	276	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	282	146	272	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	280	145	282	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	280	146	282	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	62	137	67	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	63	135	62	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	63	135	62	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	65	141	70	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	66	140	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	66	140	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	68	146	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	69	144	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	69	144	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	71	150	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	72	149	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	72	149	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	74	155	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	75	153	74	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	75	153	74	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	77	160	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	78	158	77	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	78	158	77	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	80	164	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	81	162	80	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	81	162	80	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	83	169	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	84	167	83	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	84	167	83	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	86	174	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	87	171	86	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	87	171	86	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	89	179	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	90	175	89	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	90	175	89	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	92	184	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	94	179	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	180	93	179	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	97	189	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	98	181	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	97	181	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	105	194	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	105	184	105	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	104	184	105	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	113	199	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	111	197	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	111	197	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	115	204	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	113	209	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	114	209	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	116	210	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	215	115	217	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	215	115	217	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	223	118	215	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	117	223	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	118	223	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	121	221	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	227	120	228	121	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	121	228	121	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	234	124	226	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	123	234	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	124	234	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	240	127	232	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	127	240	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	127	240	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	246	131	237	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	244	130	246	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	244	131	246	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	252	134	243	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	250	134	252	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	250	135	252	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	259	138	249	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	256	137	259	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	256	138	259	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	265	142	255	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	263	141	265	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	263	142	265	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	271	146	261	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	269	145	271	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	269	146	271	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	278	150	267	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	275	149	278	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	275	150	278	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	65	132	70	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	66	131	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	132	66	131	65	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	68	137	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	69	135	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	69	135	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	71	141	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	72	140	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	72	140	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	73	146	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	75	144	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	75	144	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	76	150	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	78	149	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	78	149	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	79	155	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	81	153	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	80	153	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	82	160	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	84	158	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	83	158	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	85	165	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	87	162	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	86	162	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	88	169	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	90	167	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	89	167	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	91	174	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	93	171	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	92	171	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	174	94	179	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	95	174	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	95	174	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	174	95	184	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	98	174	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	97	174	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	105	189	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	107	158	105	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	104	158	105	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	131	195	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	200	126	198	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	194	126	198	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	120	200	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	210	117	212	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	118	212	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	215	119	205	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	118	215	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	119	215	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	121	211	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	120	219	121	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	121	219	121	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	124	216	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	223	124	225	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	222	124	225	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	230	128	222	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	127	230	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	128	230	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	236	131	227	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	234	130	236	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	234	131	236	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	242	135	233	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	240	134	242	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	240	135	242	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	248	138	239	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	246	137	248	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	246	138	248	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	254	142	245	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	252	141	254	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	252	142	254	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	260	146	251	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	258	145	260	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	258	146	260	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	267	150	257	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	264	149	267	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	264	150	267	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	273	154	263	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	271	153	273	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	271	154	273	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	68	128	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	69	126	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	69	126	68	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	71	132	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	72	130	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	72	130	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	73	137	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	75	135	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	75	135	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	76	141	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	78	139	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	77	139	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	79	146	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	81	144	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	80	144	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	82	150	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	84	148	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	83	148	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	85	155	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	87	153	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	86	153	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	88	160	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	90	158	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	89	158	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	91	165	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	92	162	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	92	162	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	94	170	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	95	167	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	95	167	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	96	175	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	98	172	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	98	172	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	95	180	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	98	179	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	98	179	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	91	185	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	94	203	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	201	96	203	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	99	190	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	101	216	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	104	216	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	116	195	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	115	212	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	116	212	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	121	201	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	120	211	121	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	121	211	121	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	215	124	206	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	124	215	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	124	215	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	220	128	211	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	127	220	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	128	220	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	131	217	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	224	130	226	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	224	131	226	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	135	223	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	230	134	232	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	229	135	232	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	237	138	228	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	235	137	237	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	235	138	237	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	243	142	234	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	241	141	243	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	241	142	243	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	250	146	240	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	247	145	250	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	247	146	250	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	256	150	246	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	254	149	256	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	253	150	256	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	262	154	252	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	260	153	262	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	260	154	262	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	269	158	258	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	266	157	269	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	266	158	269	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	71	123	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	72	121	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	72	121	71	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	73	128	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	75	126	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	75	126	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	76	132	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	78	130	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	77	130	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	79	137	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	81	135	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	80	135	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	82	141	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	83	139	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	83	139	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	85	146	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	86	144	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	86	144	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	88	150	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	89	148	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	89	148	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	91	155	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	92	153	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	92	153	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	94	160	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	96	158	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	95	158	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	97	165	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	99	163	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	98	163	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	100	170	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	102	168	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	169	101	168	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	105	175	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	106	176	105	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	106	176	105	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	119	180	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	117	183	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	117	183	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	114	185	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	115	176	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	114	176	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	118	191	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	118	197	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	119	197	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	205	124	196	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	123	205	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	124	205	124	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	210	128	201	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	127	210	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	128	210	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	131	207	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	130	216	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	131	216	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	135	212	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	134	221	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	135	221	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	227	138	218	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	138	227	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	139	227	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	233	142	224	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	231	141	233	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	231	142	233	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	239	146	229	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	237	145	239	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	237	146	239	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	245	150	235	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	243	149	245	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	243	150	245	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	251	154	241	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	249	153	251	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	249	154	251	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	258	158	247	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	255	157	258	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	255	158	258	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	264	162	254	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	262	161	264	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	261	162	264	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	73	118	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	75	116	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	75	116	73	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	76	123	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	78	121	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	77	121	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	79	127	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	81	125	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	80	125	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	82	132	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	83	130	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	83	130	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	85	136	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	86	134	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	86	134	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	88	141	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	89	139	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	89	139	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	91	146	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	92	144	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	92	144	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	94	150	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	96	148	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	95	148	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	97	155	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	99	153	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	98	153	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	100	160	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	102	158	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	102	158	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	104	165	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	105	163	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	105	163	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	108	170	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	109	166	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	109	166	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	117	175	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	117	166	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	116	166	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	126	181	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	180	124	179	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	124	179	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	125	186	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	124	193	125	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	125	193	125	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	200	128	191	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	127	200	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	128	200	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	205	131	197	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	130	205	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	131	205	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	135	202	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	134	211	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	135	211	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	138	208	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	215	138	217	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	139	217	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	222	142	213	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	220	141	222	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	220	142	222	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	146	219	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	145	228	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	146	228	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	234	150	225	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	149	234	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	150	234	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	240	154	231	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	153	240	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	154	240	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	247	158	237	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	244	157	247	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	244	158	247	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	253	162	243	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	251	161	253	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	250	162	253	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	259	166	249	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	257	165	259	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	257	166	259	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	76	114	81	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	78	111	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	77	111	76	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	79	118	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	81	116	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	80	116	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	82	122	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	83	120	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	83	120	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	85	127	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	86	125	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	86	125	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	88	132	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	89	130	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	89	130	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	91	136	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	92	134	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	92	134	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	94	141	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	96	139	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	95	139	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	97	146	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	99	143	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	98	143	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	100	150	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	102	148	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	102	148	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	104	155	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	105	153	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	105	153	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	107	160	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	108	158	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	108	158	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	109	165	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	110	163	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	110	163	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	100	171	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	105	151	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	103	151	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	137	176	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	201	131	207	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	135	207	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	128	181	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	127	192	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	128	192	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	131	186	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	130	195	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	131	195	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	201	135	192	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	134	201	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	135	201	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	206	138	197	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	204	138	206	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	204	139	206	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	142	203	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	210	141	212	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	210	142	212	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	146	208	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	145	218	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	215	146	218	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	224	150	214	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	149	224	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	150	224	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	230	154	220	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	227	153	230	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	227	154	230	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	236	158	226	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	233	157	236	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	233	158	236	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	242	162	232	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	239	161	242	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	239	162	242	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	248	166	238	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	246	165	248	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	245	166	248	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	254	170	244	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	252	169	254	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	252	170	254	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	79	109	84	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	81	106	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	80	106	79	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	82	113	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	84	111	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	112	83	111	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	85	118	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	86	116	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	86	116	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	88	122	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	89	120	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	89	120	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	91	127	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	92	125	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	92	125	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	94	131	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	96	129	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	95	129	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	97	136	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	99	134	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	98	134	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	100	141	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	102	139	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	102	139	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	104	146	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	105	143	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	105	143	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	107	150	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	108	148	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	108	148	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	110	155	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	111	153	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	111	153	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	115	161	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	116	158	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	116	158	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	129	166	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	174	127	175	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	128	175	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	161	120	171	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	122	161	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	121	161	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	131	176	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	130	182	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	131	182	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	135	181	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	134	190	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	135	190	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	138	187	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	194	138	196	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	194	139	196	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	201	142	192	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	141	201	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	142	201	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	146	198	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	205	145	207	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	205	146	207	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	150	204	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	149	213	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	150	213	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	154	209	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	153	219	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	154	219	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	158	215	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	223	157	225	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	222	158	225	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	231	162	221	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	229	161	231	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	162	231	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	237	166	227	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	235	165	237	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	234	166	237	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	243	170	233	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	241	169	243	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	241	170	243	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	249	174	239	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	247	173	249	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	247	174	249	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	82	104	87	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	84	102	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	83	102	82	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	85	108	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	87	106	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	86	106	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	88	113	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	90	111	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	112	89	111	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	91	117	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	93	115	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	92	115	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	94	122	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	96	120	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	95	120	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	97	126	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	99	124	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	98	124	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	100	131	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	102	129	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	102	129	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	104	136	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	105	134	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	105	134	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	107	141	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	108	138	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	108	138	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	110	146	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	111	143	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	111	143	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	113	151	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	115	148	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	115	148	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	116	156	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	118	156	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	118	156	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	131	161	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	130	155	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	129	155	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	133	166	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	161	133	159	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	132	159	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	180	133	171	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	132	180	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	133	180	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	138	176	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	138	186	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	139	186	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	142	182	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	141	191	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	142	191	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	146	187	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	145	197	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	194	146	197	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	150	193	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	200	149	202	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	200	150	202	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	154	199	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	206	153	208	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	206	154	208	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	158	204	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	157	214	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	158	214	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	220	162	210	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	161	220	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	217	162	220	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	166	216	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	224	165	226	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	223	166	226	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	170	222	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	230	169	232	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	229	170	232	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	238	174	228	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	236	173	238	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	236	174	238	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	244	179	235	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	242	178	244	179	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	242	179	244	179	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	85	99	90	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	87	97	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	86	97	85	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	88	103	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	90	101	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	89	101	88	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	91	108	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	93	106	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	92	106	91	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	94	112	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	96	110	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	95	110	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	97	117	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	99	115	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	98	115	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	100	121	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	102	119	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	102	119	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	104	126	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	105	124	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	105	124	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	107	131	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	108	129	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	108	129	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	110	136	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	111	134	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	111	134	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	113	141	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	115	138	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	115	138	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	117	145	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	118	143	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	118	143	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	120	151	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	122	146	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	121	146	120	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	131	156	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	131	142	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	130	142	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	143	161	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	161	141	159	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	141	159	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	140	166	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	139	175	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	140	175	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	142	171	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	141	181	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	142	181	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	146	177	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	145	186	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	146	186	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	150	182	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	149	192	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	150	192	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	154	188	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	153	197	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	154	197	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	158	194	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	201	157	203	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	201	158	203	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	162	199	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	161	209	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	162	209	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	215	166	205	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	165	215	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	212	166	215	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	170	211	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	169	221	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	218	170	221	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	227	174	217	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	173	227	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	224	174	227	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	233	178	223	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	231	177	233	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	230	178	233	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	239	183	230	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	237	182	239	183	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	237	183	239	183	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	89	94	93	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	90	92	89	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	90	92	89	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	92	98	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	93	96	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	93	96	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	94	102	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	96	101	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	96	101	94	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	97	107	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	105	99	106	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	98	106	97	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	100	112	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	102	110	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	102	110	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	103	116	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	105	114	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	105	114	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	107	121	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	108	119	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	108	119	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	110	126	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	111	124	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	111	124	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	113	131	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	115	128	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	115	128	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	117	135	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	118	133	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	118	133	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	121	140	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	122	139	121	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	122	139	121	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	119	145	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	121	147	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	121	147	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	116	151	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	121	126	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	118	126	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	183	156	156	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	178	150	183	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	174	153	183	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	177	140	161	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	139	177	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	141	177	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	145	166	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	145	175	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	145	175	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	150	172	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	149	181	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	150	181	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	154	177	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	153	187	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	154	187	154	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	158	183	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	157	192	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	158	192	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	162	189	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	161	198	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	162	198	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	204	166	194	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	165	204	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	166	204	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	210	170	200	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	169	210	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	170	210	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	174	206	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	173	216	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	213	174	216	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	221	178	212	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	177	221	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	219	178	221	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	227	183	218	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	182	227	183	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	225	183	227	183	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	234	187	225	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	232	186	234	187	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	231	187	234	187	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	92	88	96	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	93	87	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	88	93	87	92	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	95	93	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	96	92	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	96	92	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	98	97	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	99	96	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	99	96	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	100	102	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	100	102	101	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	102	101	100	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	105	103	106	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	105	105	105	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	105	105	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	107	111	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	108	109	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	108	109	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	110	116	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	112	114	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	111	114	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	113	120	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	115	119	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	115	119	113	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	117	125	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	118	123	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	118	123	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	122	130	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	123	134	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	123	134	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	133	135	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	132	138	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	132	138	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	132	140	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	131	155	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	133	155	132	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	156	145	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	150	172	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	153	172	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	123	151	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	128	125	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	125	125	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	134	156	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	136	158	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	136	158	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	146	161	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	147	156	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	146	156	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	172	149	167	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	149	172	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	171	150	172	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	158	172	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	180	157	182	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	158	182	158	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	161	178	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	160	187	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	161	187	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	166	183	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	165	193	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	166	193	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	199	170	189	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	169	199	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	170	199	170	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	205	174	195	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	173	205	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	174	205	174	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	178	201	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	177	211	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	178	211	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	182	207	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	181	216	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	182	216	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	222	187	213	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	220	186	222	187	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	220	187	222	187	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	228	192	219	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	191	228	192	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	226	192	228	192	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	95	83	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	96	82	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	96	82	95	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	98	88	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	99	87	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	99	87	98	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	101	92	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	102	92	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	102	92	101	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	104	97	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	105	97	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	105	97	104	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	100	106	101	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	100	107	100	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	107	100	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	109	106	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	111	103	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	104	111	103	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	114	110	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	116	107	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	115	107	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	118	115	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	119	116	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	119	116	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	114	120	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	117	120	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	117	120	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	148	125	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	145	103	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	142	103	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	135	130	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	134	139	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	135	139	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	140	135	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	138	141	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	139	141	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	151	140	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	149	136	151	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	149	136	151	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	147	145	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	147	130	147	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	145	130	147	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	143	151	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	145	147	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	144	147	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	145	156	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	147	153	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	147	153	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	172	161	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	169	134	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	166	134	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	160	167	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	159	186	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	161	186	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	180	164	172	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	163	180	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	179	164	180	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	186	171	178	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	185	170	186	171	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	184	171	186	171	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	175	184	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	174	195	175	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	175	195	175	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	201	177	190	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	177	201	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	178	201	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	206	181	196	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	180	206	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	182	206	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	211	186	202	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	185	211	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	186	211	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	191	208	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	190	216	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	191	216	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	222	196	214	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	220	195	222	196	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	220	196	222	196	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	99	78	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	100	77	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	100	77	99	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	102	82	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	81	103	82	102	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	103	82	102	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	105	87	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	106	87	105	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	88	106	87	105	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	107	91	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	108	93	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	108	93	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	108	96	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	110	98	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	110	98	108	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	109	100	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	111	96	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	99	111	96	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	122	105	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	123	93	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	121	93	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	127	110	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	126	115	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	127	115	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	131	115	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	130	135	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	132	135	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	145	120	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	95	144	86	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	140	86	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	131	125	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	133	123	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	133	123	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	143	130	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	143	120	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	142	120	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	149	135	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	148	128	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	148	128	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	152	140	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	152	133	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	151	133	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	159	145	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	157	142	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	157	142	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	157	151	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	156	159	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	157	159	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	186	156	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	181	138	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	179	138	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	148	162	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	152	159	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	161	152	159	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	164	167	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	165	166	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	165	166	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	182	173	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	180	175	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	180	175	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	181	179	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	193	179	197	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	181	197	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	180	184	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	194	179	198	180	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	181	198	180	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	200	184	190	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	184	200	184	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	198	185	200	184	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	204	189	196	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	189	204	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	190	204	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	210	195	203	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	194	210	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	195	210	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	216	200	209	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	199	216	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	214	200	216	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	103	73	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	104	71	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	72	103	71	103	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	106	77	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	107	77	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	107	77	106	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	109	81	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	110	83	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	110	83	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	111	86	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	88	112	90	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	113	90	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	99	112	90	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	113	99	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	114	99	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	102	95	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	106	114	102	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	112	108	114	102	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	72	144	100	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	81	141	72	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	139	72	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	127	105	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	127	118	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	128	118	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	112	137	109	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	112	136	112	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	137	112	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	144	114	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	143	107	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	142	107	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	112	145	119	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	144	112	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	143	112	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	149	124	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	148	117	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	148	117	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	153	129	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	125	152	122	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	151	122	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	157	135	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	156	128	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	155	128	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	161	140	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	160	133	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	159	133	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	165	145	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	164	139	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	163	139	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	169	151	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	169	140	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	167	140	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	166	156	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	167	150	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	166	150	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	162	162	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	164	166	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	164	166	162	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	198	167	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	194	139	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	191	139	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	207	166	173	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	168	207	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	200	172	207	166	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	178	179	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	187	179	190	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	180	190	178	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	192	186	185	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	190	187	192	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	191	188	192	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	197	193	191	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	193	197	193	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	194	197	193	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	199	197	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	199	203	199	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	199	203	199	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	209	205	204	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	204	209	205	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	208	205	209	205	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	65	107	67	109	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	66	107	65	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	66	107	65	107	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	110	72	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	111	71	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	111	71	110	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	114	76	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	114	77	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	114	77	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	117	80	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	118	85	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	84	118	85	117	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	95	122	85	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	122	95	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	123	95	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	135	90	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	131	113	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	134	113	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	72	152	94	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	80	148	72	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	75	145	72	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	131	99	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	88	132	85	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	131	85	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	140	104	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	100	139	98	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	99	139	98	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	145	109	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	104	144	102	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	144	102	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	149	114	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	148	107	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	147	107	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	112	153	119	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	114	152	112	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	151	112	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	157	124	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	156	117	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	155	117	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	161	129	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	160	122	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	159	122	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	165	134	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	164	127	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	163	127	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	169	140	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	168	133	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	167	133	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	173	145	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	172	138	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	171	138	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	176	151	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	176	146	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	175	146	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	188	156	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	185	160	188	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	186	160	188	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	197	162	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	195	127	197	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	191	127	197	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	165	168	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	170	154	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	169	154	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	174	181	174	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	183	174	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	183	174	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	190	180	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	191	182	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	191	182	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	198	186	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	198	189	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	198	189	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	204	192	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	203	196	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	204	196	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	203	210	198	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	202	209	203	210	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	201	210	203	210	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	59	111	62	112	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	60	111	59	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	60	111	59	111	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	65	114	66	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	65	115	65	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	65	115	65	114	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	118	70	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	119	71	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	119	71	118	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	123	75	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	123	77	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	123	77	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	84	129	80	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	128	84	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	129	84	129	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	138	84	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	136	87	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	136	87	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	81	144	89	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	84	142	81	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	141	81	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	143	94	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	142	83	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	141	83	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	145	98	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	144	90	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	143	90	145	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	149	103	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	148	96	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	147	96	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	153	108	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	152	101	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	151	101	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	157	113	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	156	106	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	155	106	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	161	118	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	160	111	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	112	159	111	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	165	123	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	119	164	116	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	163	116	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	169	129	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	124	168	122	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	167	122	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	173	134	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	172	127	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	171	127	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	177	140	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	177	133	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	176	133	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	182	145	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	181	138	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	181	138	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	189	151	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	188	142	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	186	142	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	190	156	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	144	190	139	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	188	139	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	186	162	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	188	149	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	186	149	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	190	168	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	164	191	163	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	165	190	163	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	196	174	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	173	197	173	196	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	174	197	173	196	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	203	180	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	203	181	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	203	181	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	209	186	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	209	189	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	209	189	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	196	215	192	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	214	196	215	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	195	215	196	215	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	53	115	56	116	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	54	115	53	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	54	115	53	115	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	58	119	60	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	59	119	58	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	59	119	58	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	64	123	65	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	64	123	64	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	64	123	64	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	69	128	69	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	69	127	69	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	69	127	69	128	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	74	133	74	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	74	132	74	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	132	74	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	139	78	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	78	138	77	139	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	137	77	139	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	78	144	83	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	80	142	78	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	78	142	78	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	80	146	88	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	145	80	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	145	80	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	149	93	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	148	85	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	148	85	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	153	98	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	152	90	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	151	90	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	95	157	103	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	156	95	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	155	95	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	100	161	108	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	160	100	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	159	100	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	105	165	113	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	164	105	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	163	105	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	169	118	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	113	168	111	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	112	167	111	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	173	123	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	172	116	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	171	116	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	177	128	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	177	121	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	176	121	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	182	134	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	181	127	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	180	127	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	132	186	139	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	185	132	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	184	132	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	191	145	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	190	136	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	189	136	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	193	151	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	193	140	193	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	192	140	193	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	195	156	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	195	147	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	194	147	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	198	162	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	199	157	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	158	198	157	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	203	168	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	203	166	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	166	203	166	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	174	209	174	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	174	209	174	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	174	209	174	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	215	181	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	214	182	215	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	181	214	182	215	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	221	187	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	189	220	189	221	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	188	220	189	221	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	47	119	50	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	47	119	47	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	48	118	47	119	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	51	123	55	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	52	123	51	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	52	122	51	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	127	59	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	57	127	56	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	57	127	56	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	61	131	64	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	131	61	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	131	61	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	65	136	68	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	66	136	65	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	66	135	65	136	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	69	141	73	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	70	140	69	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	69	140	69	141	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	72	146	77	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	74	145	72	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	144	72	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	150	82	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	78	149	76	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	148	76	150	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	80	153	87	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	152	80	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	81	152	80	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	157	92	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	156	85	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	155	85	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	161	97	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	160	89	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	159	89	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	94	165	102	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	164	94	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	163	94	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	100	169	107	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	168	100	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	167	100	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	105	173	112	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	107	172	105	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	171	105	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	177	117	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	112	176	110	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	176	110	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	182	123	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	118	181	115	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	180	115	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	186	128	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	185	121	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	184	121	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	190	134	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	189	126	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	189	126	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	131	194	139	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	194	131	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	193	131	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	137	198	145	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	197	137	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	138	196	137	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	201	151	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	201	143	201	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	145	200	143	201	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	151	205	157	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	205	151	205	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	152	204	151	205	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	159	210	163	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	210	159	210	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	160	209	159	210	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	215	169	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	215	167	215	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	167	214	167	215	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	221	175	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	220	175	221	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	220	175	221	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	227	181	222	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	226	182	227	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	182	226	182	227	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	40	122	45	123	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	41	123	40	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	41	122	40	122	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	45	127	49	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	127	45	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	126	45	127	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	49	131	53	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	50	131	49	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	50	130	49	131	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	54	135	58	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	55	135	54	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	55	135	54	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	58	140	62	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	59	139	58	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	59	139	58	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	144	67	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	64	144	62	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	63	143	62	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	66	149	72	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	148	66	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	67	147	66	149	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	70	153	76	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	72	152	70	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	151	70	153	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	74	157	81	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	156	74	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	75	155	74	157	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	161	86	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	81	160	79	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	80	159	79	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	84	165	91	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	164	84	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	163	84	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	88	169	96	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	168	88	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	167	88	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	94	173	101	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	172	94	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	95	171	94	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	99	177	106	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	101	176	99	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	100	176	99	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	104	182	111	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	181	104	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	105	180	104	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	186	117	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	112	185	109	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	184	109	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	190	122	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	189	115	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	189	115	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	195	128	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	194	120	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	193	120	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	126	199	133	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	198	126	199	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	197	126	199	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	132	203	139	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	202	132	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	201	132	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	139	207	145	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	206	139	207	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	206	139	207	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	146	211	151	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	211	146	211	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	210	146	211	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	153	216	157	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	215	153	216	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	215	153	216	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	161	221	163	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	221	161	221	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	161	220	161	221	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	227	169	222	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	169	226	168	227	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	168	226	168	227	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	233	175	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	176	231	176	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	175	231	176	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	33	126	39	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	34	127	33	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	35	126	33	126	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	38	130	43	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	39	130	38	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	39	130	38	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	42	135	48	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	44	135	42	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	43	134	42	135	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	47	139	52	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	48	139	47	139	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	48	138	47	139	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	51	143	57	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	53	143	51	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	52	142	51	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	55	148	61	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	57	147	55	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	147	55	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	59	152	66	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	61	151	59	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	61	151	59	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	64	156	70	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	66	156	64	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	65	155	64	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	161	75	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	70	160	68	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	69	159	68	161	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	165	80	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	75	164	73	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	74	163	73	165	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	169	85	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	80	168	77	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	167	77	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	173	90	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	172	82	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	84	171	82	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	177	95	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	177	87	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	176	87	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	182	100	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	95	181	93	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	94	180	93	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	186	106	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	100	185	98	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	99	184	98	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	190	111	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	106	190	103	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	105	189	103	190	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	195	116	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	194	109	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	193	109	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	199	122	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	198	115	199	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	198	115	199	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	120	204	127	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	203	120	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	202	120	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	208	133	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	207	127	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	206	127	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	133	213	139	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	212	133	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	211	133	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	140	217	145	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	216	140	217	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	216	140	217	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	147	222	151	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	221	147	222	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	221	147	222	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	227	157	222	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	226	154	227	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	154	226	154	227	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	233	163	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	232	162	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	232	162	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	169	239	169	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	170	237	169	239	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	169	237	169	239	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	26	130	33	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	28	130	26	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	28	130	26	130	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	31	134	37	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	32	134	31	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	32	134	31	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	35	138	42	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	37	138	35	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	37	138	35	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	40	143	46	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	42	143	40	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	41	142	40	143	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	44	147	51	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	147	44	147	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	45	146	44	147	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	49	151	55	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	50	151	49	151	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	50	150	49	151	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	53	156	60	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	55	155	53	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	54	155	53	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	57	160	64	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	59	159	57	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	59	159	57	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	164	69	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	64	164	62	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	63	163	62	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	66	169	74	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	69	168	66	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	167	66	169	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	173	79	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	74	172	71	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	73	171	71	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	177	84	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	176	76	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	78	176	76	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	81	182	89	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	84	181	81	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	180	81	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	186	94	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	89	185	86	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	88	184	86	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	191	100	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	94	190	92	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	189	92	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	195	105	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	100	194	97	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	99	193	97	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	200	110	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	105	199	103	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	104	198	103	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	204	116	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	203	109	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	202	109	204	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	209	121	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	208	115	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	207	115	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	213	127	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	212	121	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	212	121	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	127	218	133	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	217	127	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	216	127	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	223	139	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	222	134	223	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	221	134	223	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	228	145	222	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	227	141	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	226	141	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	233	151	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	232	148	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	232	148	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	239	157	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	238	155	239	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	237	155	239	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	245	163	238	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	163	243	162	245	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	162	243	162	245	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	20	134	27	133	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	21	134	20	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	21	133	20	134	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	24	138	31	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	26	138	24	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	26	137	24	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	29	142	36	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	30	142	29	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	30	141	29	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	33	147	40	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	35	146	33	147	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	34	146	33	147	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	37	151	45	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	39	151	37	151	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	39	150	37	151	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	42	155	49	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	44	155	42	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	43	154	42	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	160	54	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	48	159	46	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	48	158	46	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	51	164	58	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	53	163	51	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	52	163	51	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	55	168	63	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	58	168	55	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	57	167	55	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	60	173	68	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	62	172	60	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	61	171	60	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	65	177	73	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	67	176	65	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	66	176	65	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	70	182	78	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	72	181	70	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	180	70	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	75	186	83	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	77	185	75	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	184	75	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	80	191	88	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	83	190	80	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	189	80	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	195	93	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	88	194	86	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	193	86	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	200	99	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	199	91	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	92	198	91	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	205	104	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	99	203	97	205	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	203	97	205	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	209	110	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	105	208	102	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	104	207	102	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	214	115	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	111	213	108	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	212	108	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	219	121	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	218	115	219	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	116	217	115	219	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	224	127	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	223	121	224	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	222	121	224	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	229	133	222	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	129	228	128	229	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	227	128	229	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	134	234	138	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	233	134	234	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	232	134	234	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	141	239	145	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	238	141	239	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	238	141	239	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	245	151	238	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	244	149	245	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	148	243	149	245	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	156	251	157	243	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	157	249	156	251	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	155	249	156	251	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	13	138	21	137	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	15	138	13	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	15	137	13	138	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	17	142	25	140	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	19	142	17	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	19	141	17	142	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	22	146	30	144	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	24	146	22	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	23	145	22	146	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	26	151	34	148	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	28	150	26	151	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	28	150	26	151	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	30	155	38	152	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	33	155	30	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	32	154	30	155	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	35	159	43	156	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	37	159	35	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	37	158	35	159	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	39	164	48	160	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	42	163	39	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	41	162	39	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	44	168	52	164	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	168	44	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	46	167	44	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	49	173	57	168	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	51	172	49	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	50	171	49	173	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	53	177	62	172	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	56	176	53	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	55	175	53	177	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	58	182	67	176	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	61	181	58	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	60	180	58	182	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	63	186	72	181	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	66	185	63	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	65	184	63	186	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	68	191	77	185	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	71	190	68	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	70	189	68	191	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	74	195	82	189	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	76	194	74	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	75	193	74	195	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	79	200	87	194	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	82	199	79	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	80	198	79	200	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	85	205	92	198	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	87	204	85	205	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	86	203	85	205	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	90	209	98	203	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	93	208	90	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	91	208	90	209	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	96	214	103	208	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	98	213	96	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	97	212	96	214	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	102	219	109	213	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	104	218	102	219	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	103	217	102	219	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	108	224	115	218	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	110	223	108	224	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	109	222	108	224	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	229	120	222	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	117	228	115	229	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	115	227	115	229	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	121	235	126	228	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	123	233	121	235	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	122	233	121	235	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	240	132	233	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	130	238	128	240	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	128	238	128	240	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	246	138	238	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	136	244	135	246	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	135	243	135	246	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	251	144	243	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	143	250	142	251	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	142	249	142	251	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	257	151	249	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	150	255	149	257	psDrawLine
	componentGC	0.000000	setForeground
	componentGC	149	255	149	257	psDrawLine

    grestore	% restore graphics state


   cleartomark					%% clearing operand stack

end		%% pops mainDict from dictionary stack

showpage

%-------------------------- end --------------------------%