www.pudn.com > geosteiner-3.1.zip > fst5-20.ps, change:2004-05-19,size:52072b


%!PS-Adobe-3.0
%%Creator: Steiner Tree Version 3.1
%%Copyright: Copyright (c) 1998, 2001 by David M. Warme
%%LanguageLevel: 1
%%DocumentNeededResources: font Times-Roman
%%DocumentSuppliedResources: procset SteinerTreeProcs 2.0 0
%%EndComments
%%BeginProlog
%%BeginProcSet: SteinerTreeProcs 2.0 0
/LabelTerminals	0		def	% set non-zero to label terminals
/inch { 72 mul } def
/PaperWidth	8.5 inch	def
/PaperHeight	11 inch		def
/BigBoxSize	7 inch		def
/SmallBoxSize	2 inch		def
/SmallBoxHeight	SmallBoxSize	def
/SmallBoxWidth	SmallBoxSize	def
/BoxHeight	BigBoxSize	def
/BoxWidth	BigBoxSize	def
/MinX		0		def
/MaxX		1		def
/MinY		0		def
/MaxY		1		def
/BoxMode	0		def	% (0 ==> big plot, 1 ==> small plots)
/SmallBoxCount	0		def
/TermRadius	1 32 div inch	def
/LineWidth	currentlinewidth	def

% Define the clipping region to be the inside edge of the box.

/ClipHeight	BigBoxSize LineWidth sub def
/ClipWidth	ClipHeight def

% Define the plotting region so that points plotted at the extremes will
% exactly meet the edge of the clipping region.  (Reduce by the terminal
% radius on each side.)

/PlotHeight	ClipHeight TermRadius 2 mul sub def
/PlotWidth	ClipWidth  TermRadius 2 mul sub	def
/XlateX { MinX sub MaxX MinX sub div PlotWidth mul } def
/XlateY { MinY sub MaxY MinY sub div PlotHeight mul } def
/XlateXY { exch XlateX exch XlateY } def
/Dup2 { dup 3 -1 roll dup 4 1 roll exch } def
/Swap2 { 4 2 roll } def
% define the two fonts we will use:
%	- one for numbering the terminals
%	- one for printing the plot's title
/TermNumPointsize	8	def
/TitlePointsize		15	def
/TermNumFont
	/Times-Roman findfont TermNumPointsize scalefont
def
/UseTermNumFont { TermNumFont setfont } def
/TitleFont
	/Times-Roman findfont TitlePointsize scalefont
def
/UseTitleFont { TitleFont setfont } def
/DefineTerminals {
	/NumTerms exch def
	/TermX NumTerms array def
	/TermY NumTerms array def
	/TermIndex 0 def
} def
/DT {
	TermY TermIndex 3 -1 roll put
	TermX TermIndex 3 -1 roll put
	/TermIndex TermIndex 1 add def
} def
/SetAxes {	% minx maxx miny maxy
	/MaxY exch def
	/MinY exch def
	/MaxX exch def
	/MinX exch def
} def
/PTString	12 string	def
/Plot_Terminals {
	LabelTerminals 0 eq {
		% Display terminals, no labels
		0 1 NumTerms 1 sub {			% i
			dup				% i i
			TermX exch get exch		% x i
			TermY exch get
			newpath
			XlateXY
			TermRadius 0 360 arc fill
		} for
	}
	{	% Display terminals, with labels
		0 1 NumTerms 1 sub {			% i
			dup				% i i
			PTString cvs exch dup		% str i i
			TermX exch get exch		% str x i
			TermY exch get			% str x y
			newpath
			XlateXY
			Dup2
			TermRadius 0 360 arc fill
			moveto TermRadius 3 mul dup neg rmoveto
			UseTermNumFont
			show
		} for
	} ifelse
} def
% n T ==> Xn Yn, get coordinates of terminal n.
/T {
	dup
	TermX exch get exch
	TermY exch get
} def
% Draw a line segment.
/S {
	newpath
	XlateXY
	moveto
	XlateXY
	lineto
	stroke
} def
% Draw a corner.  First point is incident to vertical segment.
% Second point is incident to horizontal segment.
/C {	% x1 y1 x2 y2
	newpath
	% x1 y1 x2 y2 -> x1 y1 x1 y2 x2 y2
	4 -1 roll dup 5 1 roll exch dup 4 -1 roll exch
	XlateXY
	moveto
	XlateXY
	lineto
	XlateXY
	lineto
	stroke
} def
/BeginPlot {
	FlushSmallPlot
	gsave
	PaperWidth BoxWidth sub 2 div
	 PaperHeight BoxHeight sub 2 div
	  translate
	newpath
	0 0 moveto
	BoxWidth 0 lineto
	BoxWidth BoxHeight lineto
	0 BoxHeight lineto
	closepath
	stroke
	gsave
	% establish a clipping region at the inside edge of the box
	LineWidth 2 div dup moveto
	ClipWidth 0 rlineto
	0 ClipHeight rlineto
	ClipWidth neg 0 rlineto
	closepath
	clip
	% establish the origin for the plotting region
	LineWidth 2 div TermRadius add
	 dup
	  translate
} def
/EndPlot {
	grestore
	newpath
	UseTitleFont
	0 0 moveto
		dup stringwidth pop BigBoxSize exch sub 2 div
		TitlePointsize -2 mul
	rmoveto
	show
	grestore
	showpage
} def
/BeginSmallPlot {
	gsave
	.75 inch SmallBoxCount 3 mod SmallBoxWidth .5 inch add mul add
	  .75 inch 3 SmallBoxCount 3 idiv sub SmallBoxHeight .5 inch add mul add
	    translate
	SmallBoxWidth BoxWidth div
	 SmallBoxHeight BoxHeight div
	  scale
	newpath
	0 0 moveto
	BoxWidth 0 lineto
	BoxWidth BoxHeight lineto
	0 BoxHeight lineto
	closepath
	stroke
	gsave
	% establish a clipping region at the inside edge of the box
	LineWidth 2 div dup moveto
	ClipWidth 0 rlineto
	0 ClipHeight rlineto
	ClipWidth neg 0 rlineto
	closepath
	clip
	% establish the origin for the plotting region
	LineWidth 2 div TermRadius add
	 dup
	  translate
} def
/EndSmallPlot2 {
	grestore
	newpath
	UseTitleFont
	0 0 moveto
		dup stringwidth pop BigBoxSize exch sub 2 div
		TitlePointsize -2 mul
	rmoveto
	show
	grestore
	/SmallBoxCount SmallBoxCount 1 add def
	SmallBoxCount 12 ge {
		FlushSmallPlot
	} if
} def
/FlushSmallPlot {
	SmallBoxCount 0 gt {
		showpage
		/SmallBoxCount	0 def
	} if
} def
/PT {
	dup				% i i
	TermX exch get exch		% x i
	TermY exch get
	newpath
	XlateXY
	TermRadius 0 360 arc fill
} def
%%EndProcSet
%%EndProlog

 % Phase 1: 0.00 seconds

%%BeginSetup

0 10000 0 10000 SetAxes

30 DefineTerminals
	6550	1740	DT
	8080	7510	DT
	1250	4860	DT
	3820	1230	DT
	8940	230	DT
	9280	4020	DT
	6710	1030	DT
	8390	420	DT
	1680	2760	DT
	1590	2720	DT
	7980	2940	DT
	7260	3050	DT
	8120	830	DT
	7520	1100	DT
	2710	2660	DT
	5420	9640	DT
	9230	1880	DT
	1150	5100	DT
	2130	2380	DT
	1890	9950	DT
	6400	0	DT
	5570	9930	DT
	2930	8490	DT
	3940	4460	DT
	5870	3550	DT
	7330	9730	DT
	690	1070	DT
	9220	8410	DT
	990	5850	DT
	7020	3430	DT

%%EndSetup

%%Page: 1 1
BeginSmallPlot
	Plot_Terminals
 % fs0: 0 6 13
	0 T	6710	1100	C
	6710	1100	6 T	S
	6710	1100	13 T	S
  (FST 0,  Length = 1680)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs1: 0 6 29 11
	0 T	6710	1740	S
	6710	1740	6 T	S
	6710	1740	7020	3050	C
	7020	3050	29 T	S
	7020	3050	11 T	S
  (FST 1,  Length = 3110)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs2: 0 6 11 10
	0 T	6710	1740	S
	6710	1740	6 T	S
	6710	1740	7260	2940	C
	7260	2940	11 T	S
	7260	2940	10 T	S
  (FST 2,  Length = 3450)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs3: 0 6 11
	0 T	6710	1740	S
	6710	1740	6 T	S
	6710	1740	11 T	C
  (FST 3,  Length = 2730)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs4: 0 6 11 13 16
	0 T	6710	1740	S
	6710	1740	6 T	S
	6710	1740	7260	1880	C
	7260	1880	11 T	S
	7260	1880	7520	1880	S
	7520	1880	13 T	S
	7520	1880	16 T	S
  (FST 4,  Length = 5480)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs5: 0 29 11
	0 T	7020	3050	C
	7020	3050	29 T	S
	7020	3050	11 T	S
  (FST 5,  Length = 2400)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs6: 0 11 10
	0 T	7260	2940	C
	7260	2940	11 T	S
	7260	2940	10 T	S
  (FST 6,  Length = 2740)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs7: 0 11 13 16
	0 T	7260	1880	C
	7260	1880	11 T	S
	7260	1880	7520	1880	S
	7520	1880	13 T	S
	7520	1880	16 T	S
  (FST 7,  Length = 4770)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs8: 0 10 16
	0 T	7980	1880	C
	7980	1880	10 T	S
	7980	1880	16 T	S
  (FST 8,  Length = 3880)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs9: 1 27 16 5
	1 T	9220	7510	S
	9220	7510	27 T	S
	9220	7510	9230	4020	C
	9230	4020	16 T	S
	9230	4020	5 T	S
  (FST 9,  Length = 7730)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs10: 1 27 5
	1 T	9220	7510	S
	9220	7510	27 T	S
	9220	7510	5 T	C
  (FST 10,  Length = 5590)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs11: 2 9 8
	2 T	1590	2760	C
	1590	2760	9 T	S
	1590	2760	8 T	S
  (FST 11,  Length = 2570)
EndSmallPlot2

%%Page: 2 2
BeginSmallPlot
	Plot_Terminals
 % fs12: 2 8 23
	2 T	1680	4460	C
	1680	4460	8 T	S
	1680	4460	23 T	S
  (FST 12,  Length = 4790)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs13: 2 8 22 23
	2 T	1680	4460	C
	1680	4460	8 T	S
	1680	4460	2930	4460	S
	2930	4460	22 T	S
	2930	4460	23 T	S
  (FST 13,  Length = 8820)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs14: 2 22 23
	2 T	2930	4860	S
	2930	4860	22 T	S
	2930	4860	23 T	C
  (FST 14,  Length = 6720)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs15: 3 23 24
	3 T	3940	3550	C
	3940	3550	23 T	S
	3940	3550	24 T	S
  (FST 15,  Length = 5280)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs16: 3 20 6
	3 T	6400	1030	C
	6400	1030	20 T	S
	6400	1030	6 T	S
  (FST 16,  Length = 4120)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs17: 3 20 0 6 13
	3 T	6400	1100	C
	6400	1100	20 T	S
	6400	1100	6550	1100	S
	6550	1100	0 T	S
	6550	1100	6710	1100	S
	6710	1100	6 T	S
	6710	1100	13 T	S
  (FST 17,  Length = 5640)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs18: 3 20 0 6 11 13
	3 T	6400	1100	C
	6400	1100	20 T	S
	6400	1100	6550	1100	S
	6550	1100	0 T	S
	6550	1100	6710	1100	S
	6710	1100	6 T	S
	6710	1100	7260	1100	S
	7260	1100	11 T	S
	7260	1100	13 T	S
  (FST 18,  Length = 7590)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs19: 3 0 6 13
	3 T	6550	1230	S
	6550	1230	0 T	S
	6550	1230	6710	1100	C
	6710	1100	6 T	S
	6710	1100	13 T	S
  (FST 19,  Length = 4410)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs20: 3 0 6
	3 T	6550	1230	S
	6550	1230	0 T	S
	6550	1230	6 T	C
  (FST 20,  Length = 3600)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs21: 3 0 6 11 13
	3 T	6550	1230	S
	6550	1230	0 T	S
	6550	1230	6710	1100	C
	6710	1100	6 T	S
	6710	1100	7260	1100	S
	7260	1100	11 T	S
	7260	1100	13 T	S
  (FST 21,  Length = 6360)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs22: 3 6 13
	3 T	6710	1100	C
	6710	1100	6 T	S
	6710	1100	13 T	S
  (FST 22,  Length = 3900)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs23: 3 6 11 13
	3 T	6710	1100	C
	6710	1100	6 T	S
	6710	1100	7260	1100	S
	7260	1100	11 T	S
	7260	1100	13 T	S
  (FST 23,  Length = 5850)
EndSmallPlot2

%%Page: 3 3
BeginSmallPlot
	Plot_Terminals
 % fs24: 6 11 13
	6 T	7260	1100	C
	7260	1100	11 T	S
	7260	1100	13 T	S
  (FST 24,  Length = 2830)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs25: 6 13 12
	6 T	7520	1030	S
	7520	1030	13 T	S
	7520	1030	12 T	C
  (FST 25,  Length = 1680)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs26: 7 4 16
	7 T	8940	420	S
	8940	420	4 T	S
	8940	420	16 T	C
  (FST 26,  Length = 2490)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs27: 8 18 14
	8 T	2130	2660	C
	2130	2660	18 T	S
	2130	2660	14 T	S
  (FST 27,  Length = 1410)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs28: 9 8 18 14
	9 T	1680	2720	S
	1680	2720	8 T	S
	1680	2720	2130	2660	C
	2130	2660	18 T	S
	2130	2660	14 T	S
  (FST 28,  Length = 1500)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs29: 9 8 18
	9 T	1680	2720	S
	1680	2720	8 T	S
	1680	2720	18 T	C
  (FST 29,  Length = 920)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs30: 10 1 5
	10 T	8080	4020	C
	8080	4020	1 T	S
	8080	4020	5 T	S
  (FST 30,  Length = 5870)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs31: 10 12 16
	10 T	8120	1880	C
	8120	1880	12 T	S
	8120	1880	16 T	S
  (FST 31,  Length = 3360)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs32: 10 16 5
	10 T	9230	2940	S
	9230	2940	16 T	S
	9230	2940	5 T	C
  (FST 32,  Length = 3440)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs33: 11 13 10
	11 T	7520	2940	C
	7520	2940	13 T	S
	7520	2940	10 T	S
  (FST 33,  Length = 2670)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs34: 11 10 1 5
	11 T	7980	3050	S
	7980	3050	10 T	S
	7980	3050	8080	4020	C
	8080	4020	1 T	S
	8080	4020	5 T	S
  (FST 34,  Length = 6590)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs35: 12 7 16
	12 T	8390	830	S
	8390	830	7 T	S
	8390	830	16 T	C
  (FST 35,  Length = 2570)
EndSmallPlot2

%%Page: 4 4
BeginSmallPlot
	Plot_Terminals
 % fs36: 13 10 12
	13 T	7980	1100	S
	7980	1100	10 T	S
	7980	1100	12 T	C
  (FST 36,  Length = 2710)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs37: 13 12 16
	13 T	8120	1100	S
	8120	1100	12 T	S
	8120	1100	16 T	C
  (FST 37,  Length = 2760)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs38: 14 22 23
	14 T	2930	4460	C
	2930	4460	22 T	S
	2930	4460	23 T	S
  (FST 38,  Length = 7060)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs39: 14 3 0
	14 T	3820	1740	C
	3820	1740	3 T	S
	3820	1740	0 T	S
  (FST 39,  Length = 5270)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs40: 14 3 23 24
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	3940	3550	C
	3940	3550	23 T	S
	3940	3550	24 T	S
  (FST 40,  Length = 6390)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs41: 14 3 23
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	23 T	C
  (FST 41,  Length = 4460)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs42: 14 3 24 29
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	5870	3430	C
	5870	3430	24 T	S
	5870	3430	29 T	S
  (FST 42,  Length = 6630)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs43: 14 3 24 0
	14 T	3820	1740	C
	3820	1740	3 T	S
	3820	1740	5870	1740	S
	5870	1740	24 T	S
	5870	1740	0 T	S
  (FST 43,  Length = 7080)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs44: 14 3 24 0 29 11
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	5870	3050	C
	5870	3050	24 T	S
	5870	3050	6550	3050	S
	6550	3050	0 T	S
	6550	3050	7020	3050	S
	7020	3050	29 T	S
	7020	3050	11 T	S
  (FST 44,  Length = 8560)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs45: 14 3 24 0 11 10
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	5870	2940	C
	5870	2940	24 T	S
	5870	2940	6550	2940	S
	6550	2940	0 T	S
	6550	2940	7260	2940	S
	7260	2940	11 T	S
	7260	2940	10 T	S
  (FST 45,  Length = 8900)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs46: 14 3 24 0 11
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	5870	3050	C
	5870	3050	24 T	S
	5870	3050	6550	3050	S
	6550	3050	0 T	S
	6550	3050	11 T	S
  (FST 46,  Length = 8180)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs47: 14 23 24
	14 T	3940	3550	C
	3940	3550	23 T	S
	3940	3550	24 T	S
  (FST 47,  Length = 4960)
EndSmallPlot2

%%Page: 5 5
BeginSmallPlot
	Plot_Terminals
 % fs48: 15 21 25
	15 T	5570	9730	C
	5570	9730	21 T	S
	5570	9730	25 T	S
  (FST 48,  Length = 2200)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs49: 15 25 1 27
	15 T	7330	9640	S
	7330	9640	25 T	S
	7330	9640	8080	8410	C
	8080	8410	1 T	S
	8080	8410	27 T	S
  (FST 49,  Length = 6020)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs50: 15 25 1
	15 T	7330	9640	S
	7330	9640	25 T	S
	7330	9640	1 T	C
  (FST 50,  Length = 4880)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs51: 18 14 3 0
	18 T	2710	2380	S
	2710	2380	14 T	S
	2710	2380	3820	1740	C
	3820	1740	3 T	S
	3820	1740	0 T	S
  (FST 51,  Length = 5850)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs52: 18 14 3
	18 T	2710	2380	S
	2710	2380	14 T	S
	2710	2380	3 T	C
  (FST 52,  Length = 3120)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs53: 18 14 3 24 0
	18 T	2710	2380	S
	2710	2380	14 T	S
	2710	2380	3820	1740	C
	3820	1740	3 T	S
	3820	1740	5870	1740	S
	5870	1740	24 T	S
	5870	1740	0 T	S
  (FST 53,  Length = 7660)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs54: 18 14 3 24 0 11 13 16
	18 T	2710	2380	S
	2710	2380	14 T	S
	2710	2380	3820	1880	C
	3820	1880	3 T	S
	3820	1880	5870	1880	S
	5870	1880	24 T	S
	5870	1880	6550	1880	S
	6550	1880	0 T	S
	6550	1880	7260	1880	S
	7260	1880	11 T	S
	7260	1880	7520	1880	S
	7520	1880	13 T	S
	7520	1880	16 T	S
  (FST 54,  Length = 12290)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs55: 19 22 15
	19 T	2930	9640	C
	2930	9640	22 T	S
	2930	9640	15 T	S
  (FST 55,  Length = 4990)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs56: 19 15 21
	19 T	5420	9930	C
	5420	9930	15 T	S
	5420	9930	21 T	S
  (FST 56,  Length = 3990)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs57: 20 0 6
	20 T	6550	1030	C
	6550	1030	0 T	S
	6550	1030	6 T	S
  (FST 57,  Length = 2050)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs58: 22 23 15
	22 T	3940	8490	S
	3940	8490	23 T	S
	3940	8490	15 T	C
  (FST 58,  Length = 7670)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs59: 22 23 15 1 27
	22 T	3940	8410	C
	3940	8410	23 T	S
	3940	8410	5420	8410	S
	5420	8410	15 T	S
	5420	8410	8080	8410	S
	8080	8410	1 T	S
	8080	8410	27 T	S
  (FST 59,  Length = 12450)
EndSmallPlot2

%%Page: 6 6
BeginSmallPlot
	Plot_Terminals
 % fs60: 22 15 1 27
	22 T	5420	8490	S
	5420	8490	15 T	S
	5420	8490	8080	8410	C
	8080	8410	1 T	S
	8080	8410	27 T	S
  (FST 60,  Length = 8420)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs61: 24 0 29
	24 T	6550	3430	C
	6550	3430	0 T	S
	6550	3430	29 T	S
  (FST 61,  Length = 2960)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs62: 24 29 25 1
	24 T	7020	3550	S
	7020	3550	29 T	S
	7020	3550	7330	7510	C
	7330	7510	25 T	S
	7330	7510	1 T	S
  (FST 62,  Length = 8510)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs63: 24 29 1 5
	24 T	7020	3550	S
	7020	3550	29 T	S
	7020	3550	8080	4020	C
	8080	4020	1 T	S
	8080	4020	5 T	S
  (FST 63,  Length = 7490)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs64: 25 1 27
	25 T	8080	8410	C
	8080	8410	1 T	S
	8080	8410	27 T	S
  (FST 64,  Length = 4110)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs65: 26 2 9
	26 T	1250	2720	C
	1250	2720	2 T	S
	1250	2720	9 T	S
  (FST 65,  Length = 4690)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs66: 26 9 18
	26 T	1590	2380	C
	1590	2380	9 T	S
	1590	2380	18 T	S
  (FST 66,  Length = 3090)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs67: 26 18 3
	26 T	2130	1230	C
	2130	1230	18 T	S
	2130	1230	3 T	S
  (FST 67,  Length = 4440)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs68: 27 16 5
	27 T	9230	4020	C
	9230	4020	16 T	S
	9230	4020	5 T	S
  (FST 68,  Length = 6590)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs69: 28 17 19 22
	28 T	1150	5850	S
	1150	5850	17 T	S
	1150	5850	1890	8490	C
	1890	8490	19 T	S
	1890	8490	22 T	S
  (FST 69,  Length = 6790)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs70: 28 17 22
	28 T	1150	5850	S
	1150	5850	17 T	S
	1150	5850	22 T	C
  (FST 70,  Length = 5330)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs71: 28 19 22
	28 T	1890	8490	C
	1890	8490	19 T	S
	1890	8490	22 T	S
  (FST 71,  Length = 6040)
EndSmallPlot2

%%Page: 7 7
BeginSmallPlot
	Plot_Terminals
 % fs72: 29 11 25 1
	29 T	7260	3430	S
	7260	3430	11 T	S
	7260	3430	7330	7510	C
	7330	7510	25 T	S
	7330	7510	1 T	S
  (FST 72,  Length = 7740)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs73: 29 25 1
	29 T	7330	7510	C
	7330	7510	25 T	S
	7330	7510	1 T	S
  (FST 73,  Length = 7360)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs74: 3 0 14 23
	3 T	3820	1740	S
	3820	1740	0 T	S
	3820	1740	3820	2660	S
	3820	2660	14 T	S
	3820	2660	23 T	C
  (FST 74,  Length = 7190)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs75: 3 0 14 23 2 22
	3 T	3820	1740	S
	3820	1740	0 T	S
	2930	2660	3820	1740	C
	2930	2660	14 T	S
	2930	2660	2930	4460	S
	2930	4460	23 T	S
	2930	4460	2930	4860	S
	2930	4860	2 T	S
	2930	4860	22 T	S
  (FST 75,  Length = 13790)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs76: 3 14 23 2 22
	2930	2660	3 T	C
	2930	2660	14 T	S
	2930	2660	2930	4460	S
	2930	4460	23 T	S
	2930	4460	2930	4860	S
	2930	4860	2 T	S
	2930	4860	22 T	S
  (FST 76,  Length = 11060)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs77: 4 7 16 10 5 27
	4 T	8940	420	S
	8940	420	7 T	S
	8940	420	8940	1880	S
	8940	1880	16 T	S
	8940	1880	8940	2940	S
	8940	2940	10 T	S
	8940	2940	9220	4020	C
	9220	4020	5 T	S
	9220	4020	27 T	S
  (FST 77,  Length = 10320)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs78: 4 7 16 10 5 1 27
	4 T	8940	420	S
	8940	420	7 T	S
	8940	420	8940	1880	S
	8940	1880	16 T	S
	8940	1880	8940	2940	S
	8940	2940	10 T	S
	8940	2940	8940	4020	S
	8940	4020	5 T	S
	8940	4020	8940	7510	S
	8940	7510	1 T	S
	8940	7510	27 T	C
  (FST 78,  Length = 11460)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs79: 4 16 10 5 27
	4 T	8940	1880	S
	8940	1880	16 T	S
	8940	1880	8940	2940	S
	8940	2940	10 T	S
	8940	2940	9220	4020	C
	9220	4020	5 T	S
	9220	4020	27 T	S
  (FST 79,  Length = 9770)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs80: 4 16 10 5 1 27
	4 T	8940	1880	S
	8940	1880	16 T	S
	8940	1880	8940	2940	S
	8940	2940	10 T	S
	8940	2940	8940	4020	S
	8940	4020	5 T	S
	8940	4020	8940	7510	S
	8940	7510	1 T	S
	8940	7510	27 T	C
  (FST 80,  Length = 10910)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs81: 6 13 0 10 11
	6 T	6710	1100	S
	6710	1100	13 T	S
	6710	1100	6710	1740	S
	6710	1740	0 T	S
	6710	1740	7260	2940	C
	7260	2940	10 T	S
	7260	2940	11 T	S
  (FST 81,  Length = 4260)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs82: 6 13 0 11 29
	6 T	6710	1100	S
	6710	1100	13 T	S
	6710	1100	6710	1740	S
	6710	1740	0 T	S
	6710	1740	7020	3050	C
	7020	3050	11 T	S
	7020	3050	29 T	S
  (FST 82,  Length = 3920)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs83: 6 13 0 11
	6 T	6710	1100	S
	6710	1100	13 T	S
	6710	1100	6710	1740	S
	6710	1740	0 T	S
	6710	1740	11 T	C
  (FST 83,  Length = 3540)
EndSmallPlot2

%%Page: 8 8
BeginSmallPlot
	Plot_Terminals
 % fs84: 7 12 16 10 5 27
	7 T	8390	830	S
	8390	830	12 T	S
	8390	830	8390	1880	S
	8390	1880	16 T	S
	8390	1880	8390	2940	S
	8390	2940	10 T	S
	8390	2940	9220	4020	C
	9220	4020	5 T	S
	9220	4020	27 T	S
  (FST 84,  Length = 10400)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs85: 7 12 16 10 5 1 27
	7 T	8390	830	S
	8390	830	12 T	S
	8390	830	8390	1880	S
	8390	1880	16 T	S
	8390	1880	8390	2940	S
	8390	2940	10 T	S
	8390	2940	8390	4020	S
	8390	4020	5 T	S
	8390	4020	8390	7510	S
	8390	7510	1 T	S
	8390	7510	27 T	C
  (FST 85,  Length = 11540)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs86: 11 29 1 15 25
	11 T	7260	3430	S
	7260	3430	29 T	S
	7260	3430	7260	7510	S
	7260	7510	1 T	S
	7260	7510	7260	9640	S
	7260	9640	15 T	S
	7260	9640	25 T	C
  (FST 86,  Length = 9650)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs87: 12 13 16 10
	7980	1100	12 T	C
	7980	1100	13 T	S
	7980	1100	7980	1880	S
	7980	1880	16 T	S
	7980	1880	10 T	S
  (FST 87,  Length = 3960)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs88: 12 13 16 10 5 1
	8080	1100	12 T	C
	8080	1100	13 T	S
	8080	1100	8080	1880	S
	8080	1880	16 T	S
	8080	1880	8080	2940	S
	8080	2940	10 T	S
	8080	2940	8080	4020	S
	8080	4020	5 T	S
	8080	4020	1 T	S
  (FST 88,  Length = 9730)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs89: 12 16 10 5 1
	12 T	8120	1880	S
	8120	1880	16 T	S
	8080	2940	8120	1880	C
	8080	2940	10 T	S
	8080	2940	8080	4020	S
	8080	4020	5 T	S
	8080	4020	1 T	S
  (FST 89,  Length = 9130)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs90: 14 23 2 22
	14 T	2710	4460	S
	2710	4460	23 T	S
	2710	4460	2710	4860	S
	2710	4860	2 T	S
	2710	4860	22 T	C
  (FST 90,  Length = 8740)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs91: 16 10 5 1 27
	9220	2940	16 T	C
	9220	2940	10 T	S
	9220	2940	9220	4020	S
	9220	4020	5 T	S
	9220	4020	9220	7510	S
	9220	7510	1 T	S
	9220	7510	27 T	S
  (FST 91,  Length = 8980)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs92: 16 10 5 27
	9220	2940	16 T	C
	9220	2940	10 T	S
	9220	2940	9220	4020	S
	9220	4020	5 T	S
	9220	4020	27 T	S
  (FST 92,  Length = 7840)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs93: 20 6 3 0
	20 T	6400	1030	S
	6400	1030	6 T	S
	6400	1030	6400	1230	S
	6400	1230	3 T	S
	6400	1230	0 T	C
  (FST 93,  Length = 4780)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs94: 24 23 1 22 15
	5420	4460	24 T	C
	5420	4460	23 T	S
	5420	4460	5420	7510	S
	5420	7510	1 T	S
	5420	7510	5420	8490	S
	5420	8490	22 T	S
	5420	8490	15 T	S
  (FST 94,  Length = 13170)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs95: 29 24 1 15 25
	29 T	7020	3550	S
	7020	3550	24 T	S
	7020	3550	7020	7510	S
	7020	7510	1 T	S
	7020	7510	7020	9640	S
	7020	9640	15 T	S
	7020	9640	25 T	C
  (FST 95,  Length = 10420)
EndSmallPlot2

%%Page: 9 9
BeginSmallPlot
	Plot_Terminals
 % fs96: 29 1 15 25
	29 T	7020	7510	S
	7020	7510	1 T	S
	7020	7510	7020	9640	S
	7020	9640	15 T	S
	7020	9640	25 T	C
  (FST 96,  Length = 9270)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs97: 8 9
	9 T	8 T	C
  (FST 97,  Length = 130)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs98: 2 17
	17 T	2 T	C
  (FST 98,  Length = 340)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs99: 15 21
	15 T	21 T	C
  (FST 99,  Length = 440)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs100: 11 29
	29 T	11 T	C
  (FST 100,  Length = 620)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs101: 7 12
	12 T	7 T	C
  (FST 101,  Length = 680)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs102: 4 7
	7 T	4 T	C
  (FST 102,  Length = 740)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs103: 8 18
	8 T	18 T	C
  (FST 103,  Length = 830)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs104: 10 11
	11 T	10 T	C
  (FST 104,  Length = 830)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs105: 14 18
	18 T	14 T	C
  (FST 105,  Length = 860)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs106: 12 13
	13 T	12 T	C
  (FST 106,  Length = 870)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs107: 0 6
	0 T	6 T	C
  (FST 107,  Length = 870)
EndSmallPlot2

%%Page: 10 10
BeginSmallPlot
	Plot_Terminals
 % fs108: 6 13
	6 T	13 T	C
  (FST 108,  Length = 880)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs109: 17 28
	28 T	17 T	C
  (FST 109,  Length = 910)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs110: 24 29
	24 T	29 T	C
  (FST 110,  Length = 1270)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs111: 6 20
	20 T	6 T	C
  (FST 111,  Length = 1340)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs112: 4 16
	4 T	16 T	C
  (FST 112,  Length = 1940)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs113: 21 25
	21 T	25 T	C
  (FST 113,  Length = 1960)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs114: 0 11
	0 T	11 T	C
  (FST 114,  Length = 2020)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs115: 1 27
	1 T	27 T	C
  (FST 115,  Length = 2040)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs116: 5 16
	16 T	5 T	C
  (FST 116,  Length = 2190)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs117: 2 9
	2 T	9 T	C
  (FST 117,  Length = 2480)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs118: 19 22
	19 T	22 T	C
  (FST 118,  Length = 2500)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs119: 3 14
	14 T	3 T	C
  (FST 119,  Length = 2540)
EndSmallPlot2

%%Page: 11 11
BeginSmallPlot
	Plot_Terminals
 % fs120: 9 26
	26 T	9 T	C
  (FST 120,  Length = 2550)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs121: 23 24
	23 T	24 T	C
  (FST 121,  Length = 2840)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs122: 1 25
	25 T	1 T	C
  (FST 122,  Length = 2970)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs123: 14 23
	14 T	23 T	C
  (FST 123,  Length = 3030)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs124: 15 22
	22 T	15 T	C
  (FST 124,  Length = 3640)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs125: 5 27
	27 T	5 T	C
  (FST 125,  Length = 4450)
EndSmallPlot2

FlushSmallPlot
%%Page: 12 12
BeginSmallPlot
 % fs125: 5 27
	27 T	5 T	C
 % fs124: 15 22
	22 T	15 T	C
 % fs123: 14 23
	14 T	23 T	C
 % fs122: 1 25
	25 T	1 T	C
 % fs120: 9 26
	26 T	9 T	C
 % fs114: 0 11
	0 T	11 T	C
 % fs112: 4 16
	4 T	16 T	C
 % fs111: 6 20
	20 T	6 T	C
 % fs110: 24 29
	24 T	29 T	C
 % fs109: 17 28
	28 T	17 T	C
 % fs106: 12 13
	13 T	12 T	C
 % fs103: 8 18
	8 T	18 T	C
	Plot_Terminals
  (FSTs 103, 106, 109, 110, 111, 112, 114, 120, 122, 123, 124, 125.)
EndSmallPlot2

BeginSmallPlot
 % fs121: 23 24
	23 T	24 T	C
 % fs119: 3 14
	14 T	3 T	C
 % fs118: 19 22
	19 T	22 T	C
 % fs117: 2 9
	2 T	9 T	C
 % fs116: 5 16
	16 T	5 T	C
 % fs115: 1 27
	1 T	27 T	C
 % fs113: 21 25
	21 T	25 T	C
 % fs108: 6 13
	6 T	13 T	C
 % fs104: 10 11
	11 T	10 T	C
 % fs102: 4 7
	7 T	4 T	C
	Plot_Terminals
  (FSTs 102, 104, 108, 113, 115, 116, 117, 118, 119, 121.)
EndSmallPlot2

BeginSmallPlot
 % fs107: 0 6
	0 T	6 T	C
 % fs105: 14 18
	18 T	14 T	C
 % fs101: 7 12
	12 T	7 T	C
 % fs100: 11 29
	29 T	11 T	C
 % fs99: 15 21
	15 T	21 T	C
 % fs98: 2 17
	17 T	2 T	C
 % fs97: 8 9
	9 T	8 T	C
 % fs92: 16 10 5 27
	9220	2940	16 T	C
	9220	2940	10 T	S
	9220	2940	9220	4020	S
	9220	4020	5 T	S
	9220	4020	27 T	S
 % fs71: 28 19 22
	28 T	1890	8490	C
	1890	8490	19 T	S
	1890	8490	22 T	S
 % fs15: 3 23 24
	3 T	3940	3550	C
	3940	3550	23 T	S
	3940	3550	24 T	S
	Plot_Terminals
  (FSTs 15, 71, 92, 97, 98, 99, 100, 101, 105, 107.)
EndSmallPlot2

BeginSmallPlot
 % fs96: 29 1 15 25
	29 T	7020	7510	S
	7020	7510	1 T	S
	7020	7510	7020	9640	S
	7020	9640	15 T	S
	7020	9640	25 T	C
 % fs93: 20 6 3 0
	20 T	6400	1030	S
	6400	1030	6 T	S
	6400	1030	6400	1230	S
	6400	1230	3 T	S
	6400	1230	0 T	C
 % fs90: 14 23 2 22
	14 T	2710	4460	S
	2710	4460	23 T	S
	2710	4460	2710	4860	S
	2710	4860	2 T	S
	2710	4860	22 T	C
 % fs87: 12 13 16 10
	7980	1100	12 T	C
	7980	1100	13 T	S
	7980	1100	7980	1880	S
	7980	1880	16 T	S
	7980	1880	10 T	S
 % fs66: 26 9 18
	26 T	1590	2380	C
	1590	2380	9 T	S
	1590	2380	18 T	S
	Plot_Terminals
  (FSTs 66, 87, 90, 93, 96.)
EndSmallPlot2

BeginSmallPlot
 % fs95: 29 24 1 15 25
	29 T	7020	3550	S
	7020	3550	24 T	S
	7020	3550	7020	7510	S
	7020	7510	1 T	S
	7020	7510	7020	9640	S
	7020	9640	15 T	S
	7020	9640	25 T	C
 % fs84: 7 12 16 10 5 27
	7 T	8390	830	S
	8390	830	12 T	S
	8390	830	8390	1880	S
	8390	1880	16 T	S
	8390	1880	8390	2940	S
	8390	2940	10 T	S
	8390	2940	9220	4020	C
	9220	4020	5 T	S
	9220	4020	27 T	S
 % fs83: 6 13 0 11
	6 T	6710	1100	S
	6710	1100	13 T	S
	6710	1100	6710	1740	S
	6710	1740	0 T	S
	6710	1740	11 T	C
 % fs76: 3 14 23 2 22
	2930	2660	3 T	C
	2930	2660	14 T	S
	2930	2660	2930	4460	S
	2930	4460	23 T	S
	2930	4460	2930	4860	S
	2930	4860	2 T	S
	2930	4860	22 T	S
 % fs29: 9 8 18
	9 T	1680	2720	S
	1680	2720	8 T	S
	1680	2720	18 T	C
	Plot_Terminals
  (FSTs 29, 76, 83, 84, 95.)
EndSmallPlot2

BeginSmallPlot
 % fs94: 24 23 1 22 15
	5420	4460	24 T	C
	5420	4460	23 T	S
	5420	4460	5420	7510	S
	5420	7510	1 T	S
	5420	7510	5420	8490	S
	5420	8490	22 T	S
	5420	8490	15 T	S
 % fs82: 6 13 0 11 29
	6 T	6710	1100	S
	6710	1100	13 T	S
	6710	1100	6710	1740	S
	6710	1740	0 T	S
	6710	1740	7020	3050	C
	7020	3050	11 T	S
	7020	3050	29 T	S
 % fs79: 4 16 10 5 27
	4 T	8940	1880	S
	8940	1880	16 T	S
	8940	1880	8940	2940	S
	8940	2940	10 T	S
	8940	2940	9220	4020	C
	9220	4020	5 T	S
	9220	4020	27 T	S
 % fs67: 26 18 3
	26 T	2130	1230	C
	2130	1230	18 T	S
	2130	1230	3 T	S
 % fs11: 2 9 8
	2 T	1590	2760	C
	1590	2760	9 T	S
	1590	2760	8 T	S
	Plot_Terminals
  (FSTs 11, 67, 79, 82, 94.)
EndSmallPlot2

BeginSmallPlot
 % fs91: 16 10 5 1 27
	9220	2940	16 T	C
	9220	2940	10 T	S
	9220	2940	9220	4020	S
	9220	4020	5 T	S
	9220	4020	9220	7510	S
	9220	7510	1 T	S
	9220	7510	27 T	S
 % fs75: 3 0 14 23 2 22
	3 T	3820	1740	S
	3820	1740	0 T	S
	2930	2660	3820	1740	C
	2930	2660	14 T	S
	2930	2660	2930	4460	S
	2930	4460	23 T	S
	2930	4460	2930	4860	S
	2930	4860	2 T	S
	2930	4860	22 T	S
 % fs56: 19 15 21
	19 T	5420	9930	C
	5420	9930	15 T	S
	5420	9930	21 T	S
 % fs25: 6 13 12
	6 T	7520	1030	S
	7520	1030	13 T	S
	7520	1030	12 T	C
	Plot_Terminals
  (FSTs 25, 56, 75, 91.)
EndSmallPlot2

BeginSmallPlot
 % fs89: 12 16 10 5 1
	12 T	8120	1880	S
	8120	1880	16 T	S
	8080	2940	8120	1880	C
	8080	2940	10 T	S
	8080	2940	8080	4020	S
	8080	4020	5 T	S
	8080	4020	1 T	S
 % fs74: 3 0 14 23
	3 T	3820	1740	S
	3820	1740	0 T	S
	3820	1740	3820	2660	S
	3820	2660	14 T	S
	3820	2660	23 T	C
 % fs70: 28 17 22
	28 T	1150	5850	S
	1150	5850	17 T	S
	1150	5850	22 T	C
 % fs65: 26 2 9
	26 T	1250	2720	C
	1250	2720	2 T	S
	1250	2720	9 T	S
 % fs48: 15 21 25
	15 T	5570	9730	C
	5570	9730	21 T	S
	5570	9730	25 T	S
 % fs24: 6 11 13
	6 T	7260	1100	C
	7260	1100	11 T	S
	7260	1100	13 T	S
	Plot_Terminals
  (FSTs 24, 48, 65, 70, 74, 89.)
EndSmallPlot2

BeginSmallPlot
 % fs88: 12 13 16 10 5 1
	8080	1100	12 T	C
	8080	1100	13 T	S
	8080	1100	8080	1880	S
	8080	1880	16 T	S
	8080	1880	8080	2940	S
	8080	2940	10 T	S
	8080	2940	8080	4020	S
	8080	4020	5 T	S
	8080	4020	1 T	S
 % fs69: 28 17 19 22
	28 T	1150	5850	S
	1150	5850	17 T	S
	1150	5850	1890	8490	C
	1890	8490	19 T	S
	1890	8490	22 T	S
 % fs61: 24 0 29
	24 T	6550	3430	C
	6550	3430	0 T	S
	6550	3430	29 T	S
 % fs52: 18 14 3
	18 T	2710	2380	S
	2710	2380	14 T	S
	2710	2380	3 T	C
 % fs12: 2 8 23
	2 T	1680	4460	C
	1680	4460	8 T	S
	1680	4460	23 T	S
	Plot_Terminals
  (FSTs 12, 52, 61, 69, 88.)
EndSmallPlot2

BeginSmallPlot
 % fs86: 11 29 1 15 25
	11 T	7260	3430	S
	7260	3430	29 T	S
	7260	3430	7260	7510	S
	7260	7510	1 T	S
	7260	7510	7260	9640	S
	7260	9640	15 T	S
	7260	9640	25 T	C
 % fs77: 4 7 16 10 5 27
	4 T	8940	420	S
	8940	420	7 T	S
	8940	420	8940	1880	S
	8940	1880	16 T	S
	8940	1880	8940	2940	S
	8940	2940	10 T	S
	8940	2940	9220	4020	C
	9220	4020	5 T	S
	9220	4020	27 T	S
 % fs57: 20 0 6
	20 T	6550	1030	C
	6550	1030	0 T	S
	6550	1030	6 T	S
 % fs47: 14 23 24
	14 T	3940	3550	C
	3940	3550	23 T	S
	3940	3550	24 T	S
	Plot_Terminals
  (FSTs 47, 57, 77, 86.)
EndSmallPlot2

BeginSmallPlot
 % fs85: 7 12 16 10 5 1 27
	7 T	8390	830	S
	8390	830	12 T	S
	8390	830	8390	1880	S
	8390	1880	16 T	S
	8390	1880	8390	2940	S
	8390	2940	10 T	S
	8390	2940	8390	4020	S
	8390	4020	5 T	S
	8390	4020	8390	7510	S
	8390	7510	1 T	S
	8390	7510	27 T	C
 % fs58: 22 23 15
	22 T	3940	8490	S
	3940	8490	23 T	S
	3940	8490	15 T	C
 % fs53: 18 14 3 24 0
	18 T	2710	2380	S
	2710	2380	14 T	S
	2710	2380	3820	1740	C
	3820	1740	3 T	S
	3820	1740	5870	1740	S
	5870	1740	24 T	S
	5870	1740	0 T	S
	Plot_Terminals
  (FSTs 53, 58, 85.)
EndSmallPlot2

BeginSmallPlot
 % fs81: 6 13 0 10 11
	6 T	6710	1100	S
	6710	1100	13 T	S
	6710	1100	6710	1740	S
	6710	1740	0 T	S
	6710	1740	7260	2940	C
	7260	2940	10 T	S
	7260	2940	11 T	S
 % fs73: 29 25 1
	29 T	7330	7510	C
	7330	7510	25 T	S
	7330	7510	1 T	S
 % fs68: 27 16 5
	27 T	9230	4020	C
	9230	4020	16 T	S
	9230	4020	5 T	S
 % fs55: 19 22 15
	19 T	2930	9640	C
	2930	9640	22 T	S
	2930	9640	15 T	S
 % fs41: 14 3 23
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	23 T	C
	Plot_Terminals
  (FSTs 41, 55, 68, 73, 81.)
EndSmallPlot2

%%Page: 13 13
BeginSmallPlot
 % fs80: 4 16 10 5 1 27
	4 T	8940	1880	S
	8940	1880	16 T	S
	8940	1880	8940	2940	S
	8940	2940	10 T	S
	8940	2940	8940	4020	S
	8940	4020	5 T	S
	8940	4020	8940	7510	S
	8940	7510	1 T	S
	8940	7510	27 T	C
 % fs51: 18 14 3 0
	18 T	2710	2380	S
	2710	2380	14 T	S
	2710	2380	3820	1740	C
	3820	1740	3 T	S
	3820	1740	0 T	S
 % fs14: 2 22 23
	2 T	2930	4860	S
	2930	4860	22 T	S
	2930	4860	23 T	C
	Plot_Terminals
  (FSTs 14, 51, 80.)
EndSmallPlot2

BeginSmallPlot
 % fs78: 4 7 16 10 5 1 27
	4 T	8940	420	S
	8940	420	7 T	S
	8940	420	8940	1880	S
	8940	1880	16 T	S
	8940	1880	8940	2940	S
	8940	2940	10 T	S
	8940	2940	8940	4020	S
	8940	4020	5 T	S
	8940	4020	8940	7510	S
	8940	7510	1 T	S
	8940	7510	27 T	C
 % fs46: 14 3 24 0 11
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	5870	3050	C
	5870	3050	24 T	S
	5870	3050	6550	3050	S
	6550	3050	0 T	S
	6550	3050	11 T	S
 % fs13: 2 8 22 23
	2 T	1680	4460	C
	1680	4460	8 T	S
	1680	4460	2930	4460	S
	2930	4460	22 T	S
	2930	4460	23 T	S
	Plot_Terminals
  (FSTs 13, 46, 78.)
EndSmallPlot2

BeginSmallPlot
 % fs72: 29 11 25 1
	29 T	7260	3430	S
	7260	3430	11 T	S
	7260	3430	7330	7510	C
	7330	7510	25 T	S
	7330	7510	1 T	S
 % fs43: 14 3 24 0
	14 T	3820	1740	C
	3820	1740	3 T	S
	3820	1740	5870	1740	S
	5870	1740	24 T	S
	5870	1740	0 T	S
 % fs37: 13 12 16
	13 T	8120	1100	S
	8120	1100	12 T	S
	8120	1100	16 T	C
	Plot_Terminals
  (FSTs 37, 43, 72.)
EndSmallPlot2

BeginSmallPlot
 % fs64: 25 1 27
	25 T	8080	8410	C
	8080	8410	1 T	S
	8080	8410	27 T	S
 % fs54: 18 14 3 24 0 11 13 16
	18 T	2710	2380	S
	2710	2380	14 T	S
	2710	2380	3820	1880	C
	3820	1880	3 T	S
	3820	1880	5870	1880	S
	5870	1880	24 T	S
	5870	1880	6550	1880	S
	6550	1880	0 T	S
	6550	1880	7260	1880	S
	7260	1880	11 T	S
	7260	1880	7520	1880	S
	7520	1880	13 T	S
	7520	1880	16 T	S
	Plot_Terminals
  (FSTs 54, 64.)
EndSmallPlot2

BeginSmallPlot
 % fs63: 24 29 1 5
	24 T	7020	3550	S
	7020	3550	29 T	S
	7020	3550	8080	4020	C
	8080	4020	1 T	S
	8080	4020	5 T	S
 % fs39: 14 3 0
	14 T	3820	1740	C
	3820	1740	3 T	S
	3820	1740	0 T	S
 % fs36: 13 10 12
	13 T	7980	1100	S
	7980	1100	10 T	S
	7980	1100	12 T	C
 % fs26: 7 4 16
	7 T	8940	420	S
	8940	420	4 T	S
	8940	420	16 T	C
	Plot_Terminals
  (FSTs 26, 36, 39, 63.)
EndSmallPlot2

BeginSmallPlot
 % fs62: 24 29 25 1
	24 T	7020	3550	S
	7020	3550	29 T	S
	7020	3550	7330	7510	C
	7330	7510	25 T	S
	7330	7510	1 T	S
 % fs38: 14 22 23
	14 T	2930	4460	C
	2930	4460	22 T	S
	2930	4460	23 T	S
 % fs35: 12 7 16
	12 T	8390	830	S
	8390	830	7 T	S
	8390	830	16 T	C
 % fs33: 11 13 10
	11 T	7520	2940	C
	7520	2940	13 T	S
	7520	2940	10 T	S
 % fs20: 3 0 6
	3 T	6550	1230	S
	6550	1230	0 T	S
	6550	1230	6 T	C
	Plot_Terminals
  (FSTs 20, 33, 35, 38, 62.)
EndSmallPlot2

BeginSmallPlot
 % fs60: 22 15 1 27
	22 T	5420	8490	S
	5420	8490	15 T	S
	5420	8490	8080	8410	C
	8080	8410	1 T	S
	8080	8410	27 T	S
 % fs45: 14 3 24 0 11 10
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	5870	2940	C
	5870	2940	24 T	S
	5870	2940	6550	2940	S
	6550	2940	0 T	S
	6550	2940	7260	2940	S
	7260	2940	11 T	S
	7260	2940	10 T	S
	Plot_Terminals
  (FSTs 45, 60.)
EndSmallPlot2

BeginSmallPlot
 % fs59: 22 23 15 1 27
	22 T	3940	8410	C
	3940	8410	23 T	S
	3940	8410	5420	8410	S
	5420	8410	15 T	S
	5420	8410	8080	8410	S
	8080	8410	1 T	S
	8080	8410	27 T	S
 % fs44: 14 3 24 0 29 11
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	5870	3050	C
	5870	3050	24 T	S
	5870	3050	6550	3050	S
	6550	3050	0 T	S
	6550	3050	7020	3050	S
	7020	3050	29 T	S
	7020	3050	11 T	S
 % fs32: 10 16 5
	10 T	9230	2940	S
	9230	2940	16 T	S
	9230	2940	5 T	C
	Plot_Terminals
  (FSTs 32, 44, 59.)
EndSmallPlot2

BeginSmallPlot
 % fs50: 15 25 1
	15 T	7330	9640	S
	7330	9640	25 T	S
	7330	9640	1 T	C
 % fs42: 14 3 24 29
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	5870	3430	C
	5870	3430	24 T	S
	5870	3430	29 T	S
 % fs31: 10 12 16
	10 T	8120	1880	C
	8120	1880	12 T	S
	8120	1880	16 T	S
 % fs3: 0 6 11
	0 T	6710	1740	S
	6710	1740	6 T	S
	6710	1740	11 T	C
	Plot_Terminals
  (FSTs 3, 31, 42, 50.)
EndSmallPlot2

BeginSmallPlot
 % fs49: 15 25 1 27
	15 T	7330	9640	S
	7330	9640	25 T	S
	7330	9640	8080	8410	C
	8080	8410	1 T	S
	8080	8410	27 T	S
 % fs40: 14 3 23 24
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	3940	3550	C
	3940	3550	23 T	S
	3940	3550	24 T	S
 % fs8: 0 10 16
	0 T	7980	1880	C
	7980	1880	10 T	S
	7980	1880	16 T	S
	Plot_Terminals
  (FSTs 8, 40, 49.)
EndSmallPlot2

BeginSmallPlot
 % fs34: 11 10 1 5
	11 T	7980	3050	S
	7980	3050	10 T	S
	7980	3050	8080	4020	C
	8080	4020	1 T	S
	8080	4020	5 T	S
 % fs28: 9 8 18 14
	9 T	1680	2720	S
	1680	2720	8 T	S
	1680	2720	2130	2660	C
	2130	2660	18 T	S
	2130	2660	14 T	S
 % fs22: 3 6 13
	3 T	6710	1100	C
	6710	1100	6 T	S
	6710	1100	13 T	S
	Plot_Terminals
  (FSTs 22, 28, 34.)
EndSmallPlot2

BeginSmallPlot
 % fs30: 10 1 5
	10 T	8080	4020	C
	8080	4020	1 T	S
	8080	4020	5 T	S
 % fs27: 8 18 14
	8 T	2130	2660	C
	2130	2660	18 T	S
	2130	2660	14 T	S
 % fs23: 3 6 11 13
	3 T	6710	1100	C
	6710	1100	6 T	S
	6710	1100	7260	1100	S
	7260	1100	11 T	S
	7260	1100	13 T	S
	Plot_Terminals
  (FSTs 23, 27, 30.)
EndSmallPlot2

%%Page: 14 14
BeginSmallPlot
 % fs21: 3 0 6 11 13
	3 T	6550	1230	S
	6550	1230	0 T	S
	6550	1230	6710	1100	C
	6710	1100	6 T	S
	6710	1100	7260	1100	S
	7260	1100	11 T	S
	7260	1100	13 T	S
 % fs10: 1 27 5
	1 T	9220	7510	S
	9220	7510	27 T	S
	9220	7510	5 T	C
	Plot_Terminals
  (FSTs 10, 21.)
EndSmallPlot2

BeginSmallPlot
 % fs19: 3 0 6 13
	3 T	6550	1230	S
	6550	1230	0 T	S
	6550	1230	6710	1100	C
	6710	1100	6 T	S
	6710	1100	13 T	S
 % fs9: 1 27 16 5
	1 T	9220	7510	S
	9220	7510	27 T	S
	9220	7510	9230	4020	C
	9230	4020	16 T	S
	9230	4020	5 T	S
	Plot_Terminals
  (FSTs 9, 19.)
EndSmallPlot2

BeginSmallPlot
 % fs18: 3 20 0 6 11 13
	3 T	6400	1100	C
	6400	1100	20 T	S
	6400	1100	6550	1100	S
	6550	1100	0 T	S
	6550	1100	6710	1100	S
	6710	1100	6 T	S
	6710	1100	7260	1100	S
	7260	1100	11 T	S
	7260	1100	13 T	S
	Plot_Terminals
  (FST 18.)
EndSmallPlot2

BeginSmallPlot
 % fs17: 3 20 0 6 13
	3 T	6400	1100	C
	6400	1100	20 T	S
	6400	1100	6550	1100	S
	6550	1100	0 T	S
	6550	1100	6710	1100	S
	6710	1100	6 T	S
	6710	1100	13 T	S
	Plot_Terminals
  (FST 17.)
EndSmallPlot2

BeginSmallPlot
 % fs16: 3 20 6
	3 T	6400	1030	C
	6400	1030	20 T	S
	6400	1030	6 T	S
 % fs7: 0 11 13 16
	0 T	7260	1880	C
	7260	1880	11 T	S
	7260	1880	7520	1880	S
	7520	1880	13 T	S
	7520	1880	16 T	S
	Plot_Terminals
  (FSTs 7, 16.)
EndSmallPlot2

BeginSmallPlot
 % fs6: 0 11 10
	0 T	7260	2940	C
	7260	2940	11 T	S
	7260	2940	10 T	S
	Plot_Terminals
  (FST 6.)
EndSmallPlot2

BeginSmallPlot
 % fs5: 0 29 11
	0 T	7020	3050	C
	7020	3050	29 T	S
	7020	3050	11 T	S
	Plot_Terminals
  (FST 5.)
EndSmallPlot2

BeginSmallPlot
 % fs4: 0 6 11 13 16
	0 T	6710	1740	S
	6710	1740	6 T	S
	6710	1740	7260	1880	C
	7260	1880	11 T	S
	7260	1880	7520	1880	S
	7520	1880	13 T	S
	7520	1880	16 T	S
	Plot_Terminals
  (FST 4.)
EndSmallPlot2

BeginSmallPlot
 % fs2: 0 6 11 10
	0 T	6710	1740	S
	6710	1740	6 T	S
	6710	1740	7260	2940	C
	7260	2940	11 T	S
	7260	2940	10 T	S
	Plot_Terminals
  (FST 2.)
EndSmallPlot2

BeginSmallPlot
 % fs1: 0 6 29 11
	0 T	6710	1740	S
	6710	1740	6 T	S
	6710	1740	7020	3050	C
	7020	3050	29 T	S
	7020	3050	11 T	S
	Plot_Terminals
  (FST 1.)
EndSmallPlot2

BeginSmallPlot
 % fs0: 0 6 13
	0 T	6710	1100	C
	6710	1100	6 T	S
	6710	1100	13 T	S
	Plot_Terminals
  (FST 0.)
EndSmallPlot2

FlushSmallPlot
%%Page: 15 15
BeginPlot
	Plot_Terminals
 % fs0: 0 6 13
	0 T	6710	1100	C
	6710	1100	6 T	S
	6710	1100	13 T	S
 % fs1: 0 6 29 11
	0 T	6710	1740	S
	6710	1740	6 T	S
	6710	1740	7020	3050	C
	7020	3050	29 T	S
	7020	3050	11 T	S
 % fs2: 0 6 11 10
	0 T	6710	1740	S
	6710	1740	6 T	S
	6710	1740	7260	2940	C
	7260	2940	11 T	S
	7260	2940	10 T	S
 % fs3: 0 6 11
	0 T	6710	1740	S
	6710	1740	6 T	S
	6710	1740	11 T	C
 % fs4: 0 6 11 13 16
	0 T	6710	1740	S
	6710	1740	6 T	S
	6710	1740	7260	1880	C
	7260	1880	11 T	S
	7260	1880	7520	1880	S
	7520	1880	13 T	S
	7520	1880	16 T	S
 % fs5: 0 29 11
	0 T	7020	3050	C
	7020	3050	29 T	S
	7020	3050	11 T	S
 % fs6: 0 11 10
	0 T	7260	2940	C
	7260	2940	11 T	S
	7260	2940	10 T	S
 % fs7: 0 11 13 16
	0 T	7260	1880	C
	7260	1880	11 T	S
	7260	1880	7520	1880	S
	7520	1880	13 T	S
	7520	1880	16 T	S
 % fs8: 0 10 16
	0 T	7980	1880	C
	7980	1880	10 T	S
	7980	1880	16 T	S
 % fs9: 1 27 16 5
	1 T	9220	7510	S
	9220	7510	27 T	S
	9220	7510	9230	4020	C
	9230	4020	16 T	S
	9230	4020	5 T	S
 % fs10: 1 27 5
	1 T	9220	7510	S
	9220	7510	27 T	S
	9220	7510	5 T	C
 % fs11: 2 9 8
	2 T	1590	2760	C
	1590	2760	9 T	S
	1590	2760	8 T	S
 % fs12: 2 8 23
	2 T	1680	4460	C
	1680	4460	8 T	S
	1680	4460	23 T	S
 % fs13: 2 8 22 23
	2 T	1680	4460	C
	1680	4460	8 T	S
	1680	4460	2930	4460	S
	2930	4460	22 T	S
	2930	4460	23 T	S
 % fs14: 2 22 23
	2 T	2930	4860	S
	2930	4860	22 T	S
	2930	4860	23 T	C
 % fs15: 3 23 24
	3 T	3940	3550	C
	3940	3550	23 T	S
	3940	3550	24 T	S
 % fs16: 3 20 6
	3 T	6400	1030	C
	6400	1030	20 T	S
	6400	1030	6 T	S
 % fs17: 3 20 0 6 13
	3 T	6400	1100	C
	6400	1100	20 T	S
	6400	1100	6550	1100	S
	6550	1100	0 T	S
	6550	1100	6710	1100	S
	6710	1100	6 T	S
	6710	1100	13 T	S
 % fs18: 3 20 0 6 11 13
	3 T	6400	1100	C
	6400	1100	20 T	S
	6400	1100	6550	1100	S
	6550	1100	0 T	S
	6550	1100	6710	1100	S
	6710	1100	6 T	S
	6710	1100	7260	1100	S
	7260	1100	11 T	S
	7260	1100	13 T	S
 % fs19: 3 0 6 13
	3 T	6550	1230	S
	6550	1230	0 T	S
	6550	1230	6710	1100	C
	6710	1100	6 T	S
	6710	1100	13 T	S
 % fs20: 3 0 6
	3 T	6550	1230	S
	6550	1230	0 T	S
	6550	1230	6 T	C
 % fs21: 3 0 6 11 13
	3 T	6550	1230	S
	6550	1230	0 T	S
	6550	1230	6710	1100	C
	6710	1100	6 T	S
	6710	1100	7260	1100	S
	7260	1100	11 T	S
	7260	1100	13 T	S
 % fs22: 3 6 13
	3 T	6710	1100	C
	6710	1100	6 T	S
	6710	1100	13 T	S
 % fs23: 3 6 11 13
	3 T	6710	1100	C
	6710	1100	6 T	S
	6710	1100	7260	1100	S
	7260	1100	11 T	S
	7260	1100	13 T	S
 % fs24: 6 11 13
	6 T	7260	1100	C
	7260	1100	11 T	S
	7260	1100	13 T	S
 % fs25: 6 13 12
	6 T	7520	1030	S
	7520	1030	13 T	S
	7520	1030	12 T	C
 % fs26: 7 4 16
	7 T	8940	420	S
	8940	420	4 T	S
	8940	420	16 T	C
 % fs27: 8 18 14
	8 T	2130	2660	C
	2130	2660	18 T	S
	2130	2660	14 T	S
 % fs28: 9 8 18 14
	9 T	1680	2720	S
	1680	2720	8 T	S
	1680	2720	2130	2660	C
	2130	2660	18 T	S
	2130	2660	14 T	S
 % fs29: 9 8 18
	9 T	1680	2720	S
	1680	2720	8 T	S
	1680	2720	18 T	C
 % fs30: 10 1 5
	10 T	8080	4020	C
	8080	4020	1 T	S
	8080	4020	5 T	S
 % fs31: 10 12 16
	10 T	8120	1880	C
	8120	1880	12 T	S
	8120	1880	16 T	S
 % fs32: 10 16 5
	10 T	9230	2940	S
	9230	2940	16 T	S
	9230	2940	5 T	C
 % fs33: 11 13 10
	11 T	7520	2940	C
	7520	2940	13 T	S
	7520	2940	10 T	S
 % fs34: 11 10 1 5
	11 T	7980	3050	S
	7980	3050	10 T	S
	7980	3050	8080	4020	C
	8080	4020	1 T	S
	8080	4020	5 T	S
 % fs35: 12 7 16
	12 T	8390	830	S
	8390	830	7 T	S
	8390	830	16 T	C
 % fs36: 13 10 12
	13 T	7980	1100	S
	7980	1100	10 T	S
	7980	1100	12 T	C
 % fs37: 13 12 16
	13 T	8120	1100	S
	8120	1100	12 T	S
	8120	1100	16 T	C
 % fs38: 14 22 23
	14 T	2930	4460	C
	2930	4460	22 T	S
	2930	4460	23 T	S
 % fs39: 14 3 0
	14 T	3820	1740	C
	3820	1740	3 T	S
	3820	1740	0 T	S
 % fs40: 14 3 23 24
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	3940	3550	C
	3940	3550	23 T	S
	3940	3550	24 T	S
 % fs41: 14 3 23
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	23 T	C
 % fs42: 14 3 24 29
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	5870	3430	C
	5870	3430	24 T	S
	5870	3430	29 T	S
 % fs43: 14 3 24 0
	14 T	3820	1740	C
	3820	1740	3 T	S
	3820	1740	5870	1740	S
	5870	1740	24 T	S
	5870	1740	0 T	S
 % fs44: 14 3 24 0 29 11
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	5870	3050	C
	5870	3050	24 T	S
	5870	3050	6550	3050	S
	6550	3050	0 T	S
	6550	3050	7020	3050	S
	7020	3050	29 T	S
	7020	3050	11 T	S
 % fs45: 14 3 24 0 11 10
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	5870	2940	C
	5870	2940	24 T	S
	5870	2940	6550	2940	S
	6550	2940	0 T	S
	6550	2940	7260	2940	S
	7260	2940	11 T	S
	7260	2940	10 T	S
 % fs46: 14 3 24 0 11
	14 T	3820	2660	S
	3820	2660	3 T	S
	3820	2660	5870	3050	C
	5870	3050	24 T	S
	5870	3050	6550	3050	S
	6550	3050	0 T	S
	6550	3050	11 T	S
 % fs47: 14 23 24
	14 T	3940	3550	C
	3940	3550	23 T	S
	3940	3550	24 T	S
 % fs48: 15 21 25
	15 T	5570	9730	C
	5570	9730	21 T	S
	5570	9730	25 T	S
 % fs49: 15 25 1 27
	15 T	7330	9640	S
	7330	9640	25 T	S
	7330	9640	8080	8410	C
	8080	8410	1 T	S
	8080	8410	27 T	S
 % fs50: 15 25 1
	15 T	7330	9640	S
	7330	9640	25 T	S
	7330	9640	1 T	C
 % fs51: 18 14 3 0
	18 T	2710	2380	S
	2710	2380	14 T	S
	2710	2380	3820	1740	C
	3820	1740	3 T	S
	3820	1740	0 T	S
 % fs52: 18 14 3
	18 T	2710	2380	S
	2710	2380	14 T	S
	2710	2380	3 T	C
 % fs53: 18 14 3 24 0
	18 T	2710	2380	S
	2710	2380	14 T	S
	2710	2380	3820	1740	C
	3820	1740	3 T	S
	3820	1740	5870	1740	S
	5870	1740	24 T	S
	5870	1740	0 T	S
 % fs54: 18 14 3 24 0 11 13 16
	18 T	2710	2380	S
	2710	2380	14 T	S
	2710	2380	3820	1880	C
	3820	1880	3 T	S
	3820	1880	5870	1880	S
	5870	1880	24 T	S
	5870	1880	6550	1880	S
	6550	1880	0 T	S
	6550	1880	7260	1880	S
	7260	1880	11 T	S
	7260	1880	7520	1880	S
	7520	1880	13 T	S
	7520	1880	16 T	S
 % fs55: 19 22 15
	19 T	2930	9640	C
	2930	9640	22 T	S
	2930	9640	15 T	S
 % fs56: 19 15 21
	19 T	5420	9930	C
	5420	9930	15 T	S
	5420	9930	21 T	S
 % fs57: 20 0 6
	20 T	6550	1030	C
	6550	1030	0 T	S
	6550	1030	6 T	S
 % fs58: 22 23 15
	22 T	3940	8490	S
	3940	8490	23 T	S
	3940	8490	15 T	C
 % fs59: 22 23 15 1 27
	22 T	3940	8410	C
	3940	8410	23 T	S
	3940	8410	5420	8410	S
	5420	8410	15 T	S
	5420	8410	8080	8410	S
	8080	8410	1 T	S
	8080	8410	27 T	S
 % fs60: 22 15 1 27
	22 T	5420	8490	S
	5420	8490	15 T	S
	5420	8490	8080	8410	C
	8080	8410	1 T	S
	8080	8410	27 T	S
 % fs61: 24 0 29
	24 T	6550	3430	C
	6550	3430	0 T	S
	6550	3430	29 T	S
 % fs62: 24 29 25 1
	24 T	7020	3550	S
	7020	3550	29 T	S
	7020	3550	7330	7510	C
	7330	7510	25 T	S
	7330	7510	1 T	S
 % fs63: 24 29 1 5
	24 T	7020	3550	S
	7020	3550	29 T	S
	7020	3550	8080	4020	C
	8080	4020	1 T	S
	8080	4020	5 T	S
 % fs64: 25 1 27
	25 T	8080	8410	C
	8080	8410	1 T	S
	8080	8410	27 T	S
 % fs65: 26 2 9
	26 T	1250	2720	C
	1250	2720	2 T	S
	1250	2720	9 T	S
 % fs66: 26 9 18
	26 T	1590	2380	C
	1590	2380	9 T	S
	1590	2380	18 T	S
 % fs67: 26 18 3
	26 T	2130	1230	C
	2130	1230	18 T	S
	2130	1230	3 T	S
 % fs68: 27 16 5
	27 T	9230	4020	C
	9230	4020	16 T	S
	9230	4020	5 T	S
 % fs69: 28 17 19 22
	28 T	1150	5850	S
	1150	5850	17 T	S
	1150	5850	1890	8490	C
	1890	8490	19 T	S
	1890	8490	22 T	S
 % fs70: 28 17 22
	28 T	1150	5850	S
	1150	5850	17 T	S
	1150	5850	22 T	C
 % fs71: 28 19 22
	28 T	1890	8490	C
	1890	8490	19 T	S
	1890	8490	22 T	S
 % fs72: 29 11 25 1
	29 T	7260	3430	S
	7260	3430	11 T	S
	7260	3430	7330	7510	C
	7330	7510	25 T	S
	7330	7510	1 T	S
 % fs73: 29 25 1
	29 T	7330	7510	C
	7330	7510	25 T	S
	7330	7510	1 T	S
 % fs74: 3 0 14 23
	3 T	3820	1740	S
	3820	1740	0 T	S
	3820	1740	3820	2660	S
	3820	2660	14 T	S
	3820	2660	23 T	C
 % fs75: 3 0 14 23 2 22
	3 T	3820	1740	S
	3820	1740	0 T	S
	2930	2660	3820	1740	C
	2930	2660	14 T	S
	2930	2660	2930	4460	S
	2930	4460	23 T	S
	2930	4460	2930	4860	S
	2930	4860	2 T	S
	2930	4860	22 T	S
 % fs76: 3 14 23 2 22
	2930	2660	3 T	C
	2930	2660	14 T	S
	2930	2660	2930	4460	S
	2930	4460	23 T	S
	2930	4460	2930	4860	S
	2930	4860	2 T	S
	2930	4860	22 T	S
 % fs77: 4 7 16 10 5 27
	4 T	8940	420	S
	8940	420	7 T	S
	8940	420	8940	1880	S
	8940	1880	16 T	S
	8940	1880	8940	2940	S
	8940	2940	10 T	S
	8940	2940	9220	4020	C
	9220	4020	5 T	S
	9220	4020	27 T	S
 % fs78: 4 7 16 10 5 1 27
	4 T	8940	420	S
	8940	420	7 T	S
	8940	420	8940	1880	S
	8940	1880	16 T	S
	8940	1880	8940	2940	S
	8940	2940	10 T	S
	8940	2940	8940	4020	S
	8940	4020	5 T	S
	8940	4020	8940	7510	S
	8940	7510	1 T	S
	8940	7510	27 T	C
 % fs79: 4 16 10 5 27
	4 T	8940	1880	S
	8940	1880	16 T	S
	8940	1880	8940	2940	S
	8940	2940	10 T	S
	8940	2940	9220	4020	C
	9220	4020	5 T	S
	9220	4020	27 T	S
 % fs80: 4 16 10 5 1 27
	4 T	8940	1880	S
	8940	1880	16 T	S
	8940	1880	8940	2940	S
	8940	2940	10 T	S
	8940	2940	8940	4020	S
	8940	4020	5 T	S
	8940	4020	8940	7510	S
	8940	7510	1 T	S
	8940	7510	27 T	C
 % fs81: 6 13 0 10 11
	6 T	6710	1100	S
	6710	1100	13 T	S
	6710	1100	6710	1740	S
	6710	1740	0 T	S
	6710	1740	7260	2940	C
	7260	2940	10 T	S
	7260	2940	11 T	S
 % fs82: 6 13 0 11 29
	6 T	6710	1100	S
	6710	1100	13 T	S
	6710	1100	6710	1740	S
	6710	1740	0 T	S
	6710	1740	7020	3050	C
	7020	3050	11 T	S
	7020	3050	29 T	S
 % fs83: 6 13 0 11
	6 T	6710	1100	S
	6710	1100	13 T	S
	6710	1100	6710	1740	S
	6710	1740	0 T	S
	6710	1740	11 T	C
 % fs84: 7 12 16 10 5 27
	7 T	8390	830	S
	8390	830	12 T	S
	8390	830	8390	1880	S
	8390	1880	16 T	S
	8390	1880	8390	2940	S
	8390	2940	10 T	S
	8390	2940	9220	4020	C
	9220	4020	5 T	S
	9220	4020	27 T	S
 % fs85: 7 12 16 10 5 1 27
	7 T	8390	830	S
	8390	830	12 T	S
	8390	830	8390	1880	S
	8390	1880	16 T	S
	8390	1880	8390	2940	S
	8390	2940	10 T	S
	8390	2940	8390	4020	S
	8390	4020	5 T	S
	8390	4020	8390	7510	S
	8390	7510	1 T	S
	8390	7510	27 T	C
 % fs86: 11 29 1 15 25
	11 T	7260	3430	S
	7260	3430	29 T	S
	7260	3430	7260	7510	S
	7260	7510	1 T	S
	7260	7510	7260	9640	S
	7260	9640	15 T	S
	7260	9640	25 T	C
 % fs87: 12 13 16 10
	7980	1100	12 T	C
	7980	1100	13 T	S
	7980	1100	7980	1880	S
	7980	1880	16 T	S
	7980	1880	10 T	S
 % fs88: 12 13 16 10 5 1
	8080	1100	12 T	C
	8080	1100	13 T	S
	8080	1100	8080	1880	S
	8080	1880	16 T	S
	8080	1880	8080	2940	S
	8080	2940	10 T	S
	8080	2940	8080	4020	S
	8080	4020	5 T	S
	8080	4020	1 T	S
 % fs89: 12 16 10 5 1
	12 T	8120	1880	S
	8120	1880	16 T	S
	8080	2940	8120	1880	C
	8080	2940	10 T	S
	8080	2940	8080	4020	S
	8080	4020	5 T	S
	8080	4020	1 T	S
 % fs90: 14 23 2 22
	14 T	2710	4460	S
	2710	4460	23 T	S
	2710	4460	2710	4860	S
	2710	4860	2 T	S
	2710	4860	22 T	C
 % fs91: 16 10 5 1 27
	9220	2940	16 T	C
	9220	2940	10 T	S
	9220	2940	9220	4020	S
	9220	4020	5 T	S
	9220	4020	9220	7510	S
	9220	7510	1 T	S
	9220	7510	27 T	S
 % fs92: 16 10 5 27
	9220	2940	16 T	C
	9220	2940	10 T	S
	9220	2940	9220	4020	S
	9220	4020	5 T	S
	9220	4020	27 T	S
 % fs93: 20 6 3 0
	20 T	6400	1030	S
	6400	1030	6 T	S
	6400	1030	6400	1230	S
	6400	1230	3 T	S
	6400	1230	0 T	C
 % fs94: 24 23 1 22 15
	5420	4460	24 T	C
	5420	4460	23 T	S
	5420	4460	5420	7510	S
	5420	7510	1 T	S
	5420	7510	5420	8490	S
	5420	8490	22 T	S
	5420	8490	15 T	S
 % fs95: 29 24 1 15 25
	29 T	7020	3550	S
	7020	3550	24 T	S
	7020	3550	7020	7510	S
	7020	7510	1 T	S
	7020	7510	7020	9640	S
	7020	9640	15 T	S
	7020	9640	25 T	C
 % fs96: 29 1 15 25
	29 T	7020	7510	S
	7020	7510	1 T	S
	7020	7510	7020	9640	S
	7020	9640	15 T	S
	7020	9640	25 T	C
 % fs97: 8 9
	9 T	8 T	C
 % fs98: 2 17
	17 T	2 T	C
 % fs99: 15 21
	15 T	21 T	C
 % fs100: 11 29
	29 T	11 T	C
 % fs101: 7 12
	12 T	7 T	C
 % fs102: 4 7
	7 T	4 T	C
 % fs103: 8 18
	8 T	18 T	C
 % fs104: 10 11
	11 T	10 T	C
 % fs105: 14 18
	18 T	14 T	C
 % fs106: 12 13
	13 T	12 T	C
 % fs107: 0 6
	0 T	6 T	C
 % fs108: 6 13
	6 T	13 T	C
 % fs109: 17 28
	28 T	17 T	C
 % fs110: 24 29
	24 T	29 T	C
 % fs111: 6 20
	20 T	6 T	C
 % fs112: 4 16
	4 T	16 T	C
 % fs113: 21 25
	21 T	25 T	C
 % fs114: 0 11
	0 T	11 T	C
 % fs115: 1 27
	1 T	27 T	C
 % fs116: 5 16
	16 T	5 T	C
 % fs117: 2 9
	2 T	9 T	C
 % fs118: 19 22
	19 T	22 T	C
 % fs119: 3 14
	14 T	3 T	C
 % fs120: 9 26
	26 T	9 T	C
 % fs121: 23 24
	23 T	24 T	C
 % fs122: 1 25
	25 T	1 T	C
 % fs123: 14 23
	14 T	23 T	C
 % fs124: 15 22
	22 T	15 T	C
 % fs125: 5 27
	27 T	5 T	C
  (All FSTs:  30 points,  0.00 seconds)
EndPlot