-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfig_12ax_fc_bg_model.ps
2869 lines (2865 loc) · 56.1 KB
/
fig_12ax_fc_bg_model.ps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%!PS-Adobe-2.0
%%Creator: PDP++: .projects[0].networks[0].views[0]
%%Pages: atend
%%EndComments
save 20 dict begin
/sf { % scale /fontName => - (set current font)
{findfont} stopped {pop /Courier findfont} if
exch scalefont setfont
} def
/ws {
4 index 6 4 roll moveto sub
2 index stringwidth pop sub
exch div 0 8#40 4 3 roll
widthshow
} def
/as {
4 index 6 4 roll moveto sub
2 index stringwidth pop sub
exch div 0 3 2 roll
ashow
} def
%%EndProlog
%%Page: 1 1
-101.08 170.64 translate
gsave
newpath
175.84 3.84 moveto
175.84 446.88 lineto
638.32 446.88 lineto
638.32 3.84 lineto
closepath
eoclip
newpath
175.84 3.84 moveto
175.84 446.88 lineto
638.32 446.88 lineto
638.32 3.84 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
gsave
[1 0 0 1 0.0944444 0.333333] concat
grestore
newpath
0.144088 0.42381 moveto
gsave
[1 0 0 1 0 0.666667] concat
0.0902979 0 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
newpath
0.0902979 0 moveto
0.0786044 -0.0207496 lineto
0.1094 -0.0127017 lineto
closepath
gsave eofill grestore
grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
gsave
[1 0 0 1 0.566667 0.333333] concat
grestore
newpath
0.601428 0.414674 moveto
gsave
[1 0 0 1 0.0944444 0.333333] concat
0.119167 0.050955 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
newpath
0.119167 0.050955 moveto
0.136103 0.0350343 lineto
0.133824 0.0693509 lineto
closepath
gsave eofill grestore
grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
gsave
[1 0 0 1 0.442064 0.135714] concat
grestore
newpath
0.635903 0.180952 moveto
gsave
[1 0 0 1 0.566667 0.333333] concat
0.223223 0 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
newpath
0.223223 0 moveto
0.20085 0.00113145 lineto
0.222181 -0.0243022 lineto
closepath
gsave eofill grestore
grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
gsave
[1 0 0 1 0.188889 0.333333] concat
newpath
0.0857143 0.180952 moveto
0.0557143 0.180952 lineto
0.0128572 0.0904762 lineto
0.0428572 0.0904762 lineto
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
newpath
0.0428572 0.0904762 moveto
0.0270198 0.107679 lineto
0.0270198 0.0732733 lineto
0.0428572 0.0904762 lineto
closepath
gsave eofill grestore
grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
gsave
[1 0 0 1 0.188889 0.333333] concat
grestore
newpath
0.493143 0.377275 moveto
gsave
[1 0 0 1 0.566667 0.333333] concat
0.0184057 0.0500472 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
newpath
0.0184057 0.0500472 moveto
0.00163134 0.0661682 lineto
0.00356436 0.0318266 lineto
closepath
gsave eofill grestore
grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
gsave
[1 0 0 1 0.566667 0.333333] concat
grestore
newpath
0.582693 0.362207 moveto
gsave
[1 0 0 1 0.188889 0.333333] concat
0.296864 0.0248521 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
newpath
0.296864 0.0248521 moveto
0.313294 0.00831831 lineto
0.312085 0.042699 lineto
closepath
gsave eofill grestore
grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
gsave
[1 0 0 1 0.188889 0.666667] concat
grestore
newpath
0.441165 0.666667 moveto
gsave
[1 0 0 1 0.188889 0.333333] concat
0.349725 0.271429 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
newpath
0.349725 0.271429 moveto
0.344049 0.294963 lineto
0.328059 0.265264 lineto
closepath
gsave eofill grestore
grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
newpath
0.318949 0.0718961 moveto
gsave
[1 0 0 1 0.377778 0] concat
0.017381 0.032375 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
newpath
0.017381 0.032375 moveto
0.00991223 0.055311 lineto
-0.00373445 0.0242623 lineto
closepath
gsave eofill grestore
grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
gsave
[1 0 0 1 0.188889 0.333333] concat
grestore
newpath
0.406225 0.333333 moveto
gsave
[1 0 0 1 0.442064 0.135714] concat
0.02375 0.0452381 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
newpath
0.02375 0.0452381 moveto
0.0321351 0.0677974 lineto
0.0029814 0.0543462 lineto
closepath
gsave eofill grestore
grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
gsave
[1 0 0 1 0.377778 0] concat
grestore
newpath
0.540873 0.0452381 moveto
gsave
[1 0 0 1 0.442064 0.135714] concat
0.141667 0 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
newpath
0.141667 0 moveto
0.120338 -0.00742622 lineto
0.148503 -0.0231674 lineto
closepath
gsave eofill grestore
grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
gsave
[1 0 0 1 0.188889 0.666667] concat
grestore
newpath
0.20627 0.666667 moveto
0.146366 0.180952 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
newpath
0.146366 0.180952 moveto
0.164166 0.195718 lineto
0.132772 0.200287 lineto
closepath
gsave eofill grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
gsave
[1 0 0 1 0.188889 0.333333] concat
grestore
newpath
0.347655 0.33905 moveto
0.263464 0.180952 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
newpath
0.263464 0.180952 moveto
0.285103 0.18723 lineto
0.257685 0.204457 lineto
closepath
gsave eofill grestore
grestore
gsave
[446.48 0 0 411.04 272.959 334.481] concat
newpath
0.0428571 0.0904762 moveto
0.127857 0.0904762 lineto
0.146071 0.128929 lineto
0.0610714 0.128929 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
newpath
315.16 379.671 moveto
315.16 379.671 lineto
315.16 379.671 lineto
315.16 379.671 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
0 0 0 setrgbcolor
10 /Helvetica sf
300.226 375.956(Z) 1 308.226 as
grestore
grestore
gsave
[446.48 0 0 411.04 272.959 334.481] concat
newpath
0.137302 0.0904762 moveto
0.222302 0.0904762 lineto
0.240516 0.128929 lineto
0.155516 0.128929 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
newpath
357.327 379.671 moveto
357.327 379.671 lineto
357.327 379.671 lineto
357.327 379.671 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
0 0 0 setrgbcolor
10 /Helvetica sf
342.394 375.956(C) 1 350.394 as
grestore
grestore
gsave
[446.48 0 0 411.04 272.959 334.481] concat
newpath
0.231746 0.0904762 moveto
0.316746 0.0904762 lineto
0.33496 0.128929 lineto
0.24996 0.128929 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
newpath
399.495 379.671 moveto
399.495 379.671 lineto
399.495 379.671 lineto
399.495 379.671 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
0 0 0 setrgbcolor
10 /Helvetica sf
384.561 375.956(3) 1 392.561 as
grestore
grestore
gsave
[446.48 0 0 411.04 272.959 334.481] concat
newpath
0.0214286 0.0452381 moveto
0.106429 0.0452381 lineto
0.124643 0.0836905 lineto
0.0396429 0.0836905 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
newpath
282.526 353.076 moveto
319.526 353.076 lineto
327.659 367.076 lineto
290.659 367.076 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
0 0 0 setrgbcolor
10 /Helvetica sf
290.659 357.361(Y) 1 298.659 as
grestore
grestore
gsave
[446.48 0 0 411.04 272.959 334.481] concat
newpath
0.115873 0.0452381 moveto
0.200873 0.0452381 lineto
0.219087 0.0836905 lineto
0.134087 0.0836905 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
newpath
347.489 360.076 moveto
347.489 360.076 lineto
348.031 360.076 lineto
348.031 360.076 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
0 0 0 setrgbcolor
10 /Helvetica sf
332.826 357.361(B) 1 340.826 as
grestore
grestore
gsave
[446.48 0 0 411.04 272.959 334.481] concat
newpath
0.210317 0.0452381 moveto
0.295317 0.0452381 lineto
0.313532 0.0836905 lineto
0.228532 0.0836905 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
newpath
389.656 360.076 moveto
389.656 360.076 lineto
390.199 360.076 lineto
390.199 360.076 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
0 0 0 setrgbcolor
10 /Helvetica sf
374.994 357.361(2) 1 382.994 as
grestore
grestore
gsave
[446.48 0 0 411.04 272.959 334.481] concat
newpath
0 0 moveto
0.085 0 lineto
0.103214 0.0384524 lineto
0.0182143 0.0384524 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
newpath
296.025 342.481 moveto
296.025 342.481 lineto
296.025 342.481 lineto
296.025 342.481 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
0 0 0 setrgbcolor
10 /Helvetica sf
281.091 338.767(X) 1 289.091 as
grestore
grestore
gsave
[446.48 0 0 411.04 272.959 334.481] concat
newpath
0.0944444 0 moveto
0.179444 0 lineto
0.197659 0.0384524 lineto
0.112659 0.0384524 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
newpath
338.193 342.481 moveto
338.193 342.481 lineto
338.193 342.481 lineto
338.193 342.481 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
0 0 0 setrgbcolor
10 /Helvetica sf
323.259 338.767(A) 1 331.259 as
grestore
grestore
gsave
[446.48 0 0 411.04 272.959 334.481] concat
newpath
0.188889 0 moveto
0.273889 0 lineto
0.292103 0.0384524 lineto
0.207103 0.0384524 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
newpath
380.36 342.481 moveto
380.36 342.481 lineto
380.36 342.481 lineto
380.36 342.481 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.813744] concat
0 0 0 setrgbcolor
10 /Helvetica sf
365.426 338.767(1) 1 373.426 as
grestore
grestore
gsave
[446.48 0 0 411.04 272.959 334.481] concat
newpath
0 0 moveto
0.283333 0 lineto
0.347619 0.135714 lineto
0.0642857 0.135714 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
grestore
gsave
[1 0 0 1 291.399 312.001] concat
0 0 0 setrgbcolor
18 /Helvetica sf
0 0(Input) 5 41.28 as
grestore
gsave
[446.48 0 0 411.04 272.959 334.481] concat
newpath
0 0 moveto
0.283333 0 lineto
0.347619 0.135714 lineto
0.0642857 0.135714 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
newpath
0.0642857 0.135714 moveto
0.149286 0.135714 lineto
0.1675 0.174167 lineto
0.0825 0.174167 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.422469 -0.147077] concat
newpath
220.834 117.239 moveto
252.834 117.239 lineto
259.95 130.239 lineto
227.95 130.239 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.422469 -0.147077] concat
0 0 0 setrgbcolor
10 /Helvetica sf
225.458 120.524(2) 1 233.458 as
231.218 120.524(Y) 1 239.218 as
grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
newpath
0.0428571 0.0904762 moveto
0.127857 0.0904762 lineto
0.146071 0.128929 lineto
0.0610714 0.128929 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.422469 -0.147077] concat
newpath
230.825 105.644 moveto
230.825 105.644 lineto
230.825 105.644 lineto
230.825 105.644 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.422469 -0.147077] concat
0 0 0 setrgbcolor
10 /Helvetica sf
215.891 101.929(2) 1 223.891 as
221.651 101.929(X) 1 229.651 as
grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
newpath
0.0214286 0.0452381 moveto
0.106429 0.0452381 lineto
0.124643 0.0836905 lineto
0.0396429 0.0836905 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.422469 -0.147077] concat
newpath
218.986 86.0493 moveto
221.986 86.0493 lineto
222.528 87.0493 lineto
219.528 87.0493 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.422469 -0.147077] concat
0 0 0 setrgbcolor
10 /Helvetica sf
206.323 83.3348(1) 1 214.323 as
212.083 83.3348(Y) 1 220.083 as
grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
newpath
0 0 moveto
0.085 0 lineto
0.103214 0.0384524 lineto
0.0182143 0.0384524 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.422469 -0.147077] concat
newpath
211.69 68.4546 moveto
211.69 68.4546 lineto
211.69 68.4546 lineto
211.69 68.4546 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.422469 -0.147077] concat
0 0 0 setrgbcolor
10 /Helvetica sf
196.756 64.7401(1) 1 204.756 as
202.516 64.7401(X) 1 210.516 as
grestore
grestore
gsave
[446.48 0 0 411.04 188.624 60.4546] concat
newpath
0 0 moveto
0.0944444 0 lineto
0.180159 0.180952 lineto
0.0857143 0.180952 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
grestore
gsave
[446.48 0 0 411.04 230.791 60.4546] concat
newpath
0.0642857 0.135714 moveto
0.149286 0.135714 lineto
0.1675 0.174167 lineto
0.0825 0.174167 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.516913 -0.147077] concat
newpath
282.56 124.239 moveto
282.56 124.239 lineto
282.56 124.239 lineto
282.56 124.239 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.516913 -0.147077] concat
0 0 0 setrgbcolor
10 /Helvetica sf
267.626 120.524(2) 1 275.626 as
273.386 120.524(B) 1 281.386 as
grestore
grestore
gsave
[446.48 0 0 411.04 230.791 60.4546] concat
newpath
0.0428571 0.0904762 moveto
0.127857 0.0904762 lineto
0.146071 0.128929 lineto
0.0610714 0.128929 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.516913 -0.147077] concat
newpath
272.992 105.644 moveto
272.992 105.644 lineto
272.992 105.644 lineto
272.992 105.644 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.516913 -0.147077] concat
0 0 0 setrgbcolor
10 /Helvetica sf
258.058 101.929(2) 1 266.058 as
263.818 101.929(A) 1 271.818 as
grestore
grestore
gsave
[446.48 0 0 411.04 230.791 60.4546] concat
newpath
0.0214286 0.0452381 moveto
0.106429 0.0452381 lineto
0.124643 0.0836905 lineto
0.0396429 0.0836905 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.516913 -0.147077] concat
newpath
263.154 86.0493 moveto
263.154 86.0493 lineto
263.696 86.0493 lineto
263.696 86.0493 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.516913 -0.147077] concat
0 0 0 setrgbcolor
10 /Helvetica sf
248.491 83.3348(1) 1 256.491 as
254.251 83.3348(B) 1 262.251 as
grestore
grestore
gsave
[446.48 0 0 411.04 230.791 60.4546] concat
newpath
0 0 moveto
0.085 0 lineto
0.103214 0.0384524 lineto
0.0182143 0.0384524 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.516913 -0.147077] concat
newpath
253.857 68.4546 moveto
253.857 68.4546 lineto
253.857 68.4546 lineto
253.857 68.4546 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.516913 -0.147077] concat
0 0 0 setrgbcolor
10 /Helvetica sf
238.924 64.7401(1) 1 246.924 as
244.684 64.7401(A) 1 252.684 as
grestore
grestore
gsave
[446.48 0 0 411.04 230.791 60.4546] concat
newpath
0 0 moveto
0.0944444 0 lineto
0.180159 0.180952 lineto
0.0857143 0.180952 lineto
closepath
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
grestore
gsave
[446.48 0 0 411.04 272.959 60.4546] concat
newpath
0.0642857 0.135714 moveto
0.149286 0.135714 lineto
0.1675 0.174167 lineto
0.0825 0.174167 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.147077] concat
newpath
324.727 124.239 moveto
324.727 124.239 lineto
324.727 124.239 lineto
324.727 124.239 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.147077] concat
grestore
grestore
gsave
[446.48 0 0 411.04 272.959 60.4546] concat
newpath
0.0428571 0.0904762 moveto
0.127857 0.0904762 lineto
0.146071 0.128929 lineto
0.0610714 0.128929 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.147077] concat
newpath
315.16 105.644 moveto
315.16 105.644 lineto
315.16 105.644 lineto
315.16 105.644 lineto
closepath
1 1 1 setrgbcolor
gsave eofill grestore
grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.147077] concat
0 0 0 setrgbcolor
10 /Helvetica sf
300.226 101.929(3) 1 308.226 as
grestore
grestore
gsave
[446.48 0 0 411.04 272.959 60.4546] concat
newpath
0.0214286 0.0452381 moveto
0.106429 0.0452381 lineto
0.124643 0.0836905 lineto
0.0396429 0.0836905 lineto
closepath
0.482353 0.482353 0.482353 setrgbcolor
gsave eofill grestore
0 0 0 setrgbcolor
0 setlinewidth
[] 0 setdash
gsave stroke grestore
gsave
[0.00223974 -0 -0 0.00243285 -0.611357 -0.147077] concat
newpath
305.321 86.0493 moveto
305.321 86.0493 lineto