blob: 7d6eeb5f3f836db65c089b599d56f37c76b8d95a (
plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
|
%!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 36 223 244 76 psDrawLine
globGC (X) 31 228 psDrawStr
globalGC1 106.000000 setForeground
globGC 106.000000 setForeground
globalGC1 0.000000 setForeground
globGC 0.000000 setForeground
globalGC1 268 223 61 76 psDrawLine
globGC (Y) 273 228 psDrawStr
globalGC1 106.000000 setForeground
globGC 106.000000 setForeground
globalGC1 0.000000 setForeground
globGC 0.000000 setForeground
globalGC1 152 18 152 229 psDrawLine
globGC (Z) 157 13 psDrawStr
globalGC1 106.000000 setForeground
globGC 106.000000 setForeground
1 0 0 componentGC setLineAttributes
componentGC 0.000000 setForeground
componentGC 0.000000 setForeground
componentGC 175 52 152 57 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 54 175 52 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 57 175 52 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 56 157 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 57 177 56 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 59 177 56 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 59 162 63 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 60 179 59 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 62 179 59 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 62 167 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 63 181 62 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 64 181 62 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 66 172 69 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 67 184 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 67 184 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 69 177 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 70 187 69 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 70 187 69 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 72 182 75 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 73 191 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 73 191 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 76 187 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 76 195 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 76 195 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 79 192 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 79 199 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 80 199 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 82 197 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 82 203 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 83 203 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 85 202 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 86 208 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 86 208 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 88 207 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 89 212 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 89 212 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 92 213 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 92 217 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 92 217 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 222 95 218 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 222 95 222 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 222 95 222 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 227 98 224 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 227 98 227 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 227 98 227 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 233 101 229 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 101 233 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 101 233 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 103 235 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 237 104 238 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 104 238 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 106 240 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 243 107 244 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 107 244 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 250 109 246 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 249 110 250 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 249 110 250 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 256 111 252 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 254 113 256 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 255 113 256 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 262 114 258 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 260 116 262 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 261 116 262 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 268 116 264 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 266 119 268 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 119 268 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 274 118 270 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 272 122 274 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 274 122 274 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 281 120 276 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 277 125 281 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 280 126 281 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 287 121 282 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 283 129 287 121 psDrawLine
componentGC 0.000000 setForeground
componentGC 287 129 287 121 psDrawLine
componentGC 0.000000 setForeground
componentGC 294 122 288 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 288 132 294 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 293 134 294 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 169 53 148 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 56 169 53 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 58 169 53 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 57 152 63 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 59 171 57 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 61 171 57 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 60 157 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 62 173 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 64 173 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 64 162 69 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 65 176 64 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 67 176 64 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 68 167 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 69 179 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 70 179 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 71 172 75 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 72 182 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 73 182 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 75 177 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 75 186 75 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 76 186 75 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 78 182 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 79 190 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 79 190 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 194 81 187 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 82 194 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 82 194 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 85 192 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 85 198 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 85 198 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 88 197 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 89 203 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 89 203 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 91 203 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 92 208 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 92 208 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 95 208 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 95 213 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 95 213 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 98 213 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 98 218 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 98 218 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 101 219 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 222 101 223 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 101 223 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 229 104 224 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 104 229 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 105 229 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 107 230 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 233 108 234 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 108 234 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 240 110 236 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 239 111 240 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 240 111 240 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 246 113 241 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 245 114 246 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 246 114 246 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 253 115 247 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 251 117 253 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 252 117 253 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 259 118 253 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 257 120 259 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 258 120 259 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 266 120 259 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 263 123 266 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 264 123 266 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 272 122 265 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 269 126 272 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 271 127 272 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 279 124 271 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 274 129 279 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 277 130 279 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 287 126 277 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 280 133 287 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 284 134 287 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 294 127 284 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 285 136 294 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 291 138 294 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 54 143 63 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 58 162 54 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 60 162 54 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 58 148 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 61 164 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 63 164 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 62 152 69 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 64 167 62 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 66 167 62 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 66 157 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 68 170 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 69 170 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 70 162 75 psDrawLine
componentGC 0.000000 setForeground
componentGC 169 71 173 70 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 72 173 70 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 73 167 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 75 176 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 75 176 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 77 172 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 78 180 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 78 180 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 81 177 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 81 184 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 82 184 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 84 182 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 85 189 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 85 189 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 88 187 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 88 193 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 88 193 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 91 193 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 91 198 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 92 198 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 94 198 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 95 203 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 95 203 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 98 203 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 98 208 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 98 208 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 101 209 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 101 213 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 102 213 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 104 214 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 105 219 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 105 219 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 107 220 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 108 225 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 108 225 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 230 111 225 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 229 111 230 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 230 111 230 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 114 231 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 235 114 236 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 115 236 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 243 117 237 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 241 118 243 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 242 118 243 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 249 119 243 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 121 249 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 248 121 249 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 256 122 248 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 253 124 256 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 254 124 256 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 263 125 254 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 259 127 263 125 psDrawLine
componentGC 0.000000 setForeground
componentGC 261 128 263 125 psDrawLine
componentGC 0.000000 setForeground
componentGC 270 127 260 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 266 130 270 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 131 270 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 278 129 267 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 272 133 278 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 274 135 278 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 285 131 273 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 277 137 285 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 281 139 285 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 294 133 279 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 283 141 294 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 287 143 294 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 55 138 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 61 155 55 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 63 155 55 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 59 143 69 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 64 157 59 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 65 157 59 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 64 148 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 67 160 64 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 68 160 64 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 68 152 75 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 70 163 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 71 163 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 72 157 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 74 167 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 74 167 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 76 162 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 77 171 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 169 78 171 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 79 167 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 81 175 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 81 175 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 83 172 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 84 179 83 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 84 179 83 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 87 177 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 88 183 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 88 183 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 91 183 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 91 188 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 91 188 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 94 188 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 95 193 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 95 193 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 98 193 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 98 198 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 98 198 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 101 198 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 101 203 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 102 203 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 104 204 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 105 209 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 105 209 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 108 209 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 108 214 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 108 214 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 111 215 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 112 220 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 112 220 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 114 221 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 115 226 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 115 226 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 233 118 226 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 231 118 233 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 231 119 233 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 239 121 232 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 237 122 239 121 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 122 239 121 psDrawLine
componentGC 0.000000 setForeground
componentGC 246 124 238 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 243 125 246 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 125 246 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 253 127 244 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 250 128 253 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 251 129 253 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 260 129 250 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 256 131 260 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 257 132 260 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 268 132 256 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 262 135 268 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 264 136 268 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 276 134 262 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 268 138 276 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 271 140 276 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 284 137 268 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 274 141 284 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 277 144 284 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 293 138 274 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 280 145 293 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 284 148 293 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 56 133 69 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 63 147 56 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 65 147 56 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 61 138 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 66 150 61 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 67 150 61 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 65 143 75 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 69 153 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 70 153 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 70 148 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 73 157 70 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 73 157 70 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 74 152 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 76 160 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 77 160 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 78 157 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 80 164 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 80 164 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 169 82 162 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 83 169 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 84 169 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 86 167 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 87 173 86 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 87 173 86 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 90 173 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 91 178 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 91 178 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 94 178 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 94 183 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 94 183 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 97 183 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 98 188 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 98 188 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 101 188 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 101 193 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 102 193 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 104 194 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 105 198 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 105 198 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 204 108 199 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 108 204 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 109 204 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 210 111 204 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 112 210 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 112 210 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 115 210 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 115 216 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 116 216 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 222 118 216 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 119 222 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 119 222 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 122 221 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 227 122 228 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 227 123 228 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 235 125 227 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 233 126 235 125 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 126 235 125 psDrawLine
componentGC 0.000000 setForeground
componentGC 242 128 233 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 239 129 242 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 240 130 242 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 249 131 239 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 246 133 249 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 133 249 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 257 134 245 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 252 136 257 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 253 137 257 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 265 137 251 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 259 139 265 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 260 141 265 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 273 140 257 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 265 143 273 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 145 273 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 282 142 263 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 271 146 282 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 274 149 282 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 292 145 269 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 277 150 292 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 280 153 292 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 58 128 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 66 139 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 67 139 58 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 63 133 75 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 69 142 63 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 70 142 63 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 68 138 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 72 146 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 73 146 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 72 143 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 75 150 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 76 150 72 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 77 147 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 79 154 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 79 154 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 81 152 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 83 158 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 83 158 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 85 157 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 86 162 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 87 162 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 89 162 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 90 167 89 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 90 167 89 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 93 168 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 94 172 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 94 172 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 97 173 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 97 177 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 98 177 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 101 178 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 101 182 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 101 182 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 104 183 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 105 188 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 105 188 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 108 189 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 108 193 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 109 193 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 112 194 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 112 199 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 112 199 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 115 200 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 204 116 205 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 204 116 205 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 119 205 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 210 119 211 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 210 119 211 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 122 211 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 123 217 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 123 217 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 126 216 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 222 126 224 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 127 224 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 231 129 222 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 229 130 231 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 229 130 231 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 133 228 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 235 134 238 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 134 238 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 245 136 234 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 242 137 245 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 243 138 245 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 253 140 240 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 249 141 253 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 249 142 253 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 262 143 246 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 255 144 262 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 256 146 262 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 270 146 252 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 262 148 270 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 263 150 270 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 280 149 258 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 268 151 280 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 270 154 280 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 290 152 265 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 273 155 290 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 276 159 290 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 60 123 75 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 69 131 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 69 131 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 65 128 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 71 134 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 72 134 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 70 133 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 75 138 70 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 75 138 70 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 75 138 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 78 143 75 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 79 143 75 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 79 142 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 82 147 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 82 147 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 84 147 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 86 151 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 86 151 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 88 152 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 89 156 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 90 156 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 92 157 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 93 161 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 93 161 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 96 163 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 97 166 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 97 166 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 100 168 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 101 171 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 101 171 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 104 173 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 104 177 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 105 177 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 108 178 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 108 182 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 108 182 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 112 184 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 112 188 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 112 188 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 194 115 189 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 116 194 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 116 194 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 200 119 195 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 120 200 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 120 200 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 123 200 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 123 206 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 123 206 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 127 206 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 127 212 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 127 212 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 130 211 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 131 219 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 131 219 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 134 217 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 134 226 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 135 226 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 138 223 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 231 138 234 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 231 139 234 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 241 141 229 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 142 241 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 143 241 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 249 145 235 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 146 249 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 245 147 249 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 258 149 241 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 251 149 258 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 252 151 258 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 152 247 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 258 153 267 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 259 155 267 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 277 155 253 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 264 157 277 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 266 159 277 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 287 159 260 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 270 160 287 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 272 164 287 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 63 118 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 72 122 63 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 72 122 63 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 68 123 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 75 126 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 75 126 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 73 128 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 78 131 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 78 131 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 78 133 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 81 135 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 81 135 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 82 137 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 85 140 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 85 140 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 87 142 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 89 145 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 89 145 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 91 147 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 93 150 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 93 150 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 95 152 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 96 155 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 96 155 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 99 158 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 100 160 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 100 160 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 104 163 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 104 165 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 104 165 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 108 168 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 108 171 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 108 171 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 112 173 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 112 176 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 112 176 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 115 179 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 116 182 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 116 182 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 119 184 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 120 188 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 120 188 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 194 123 190 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 194 124 194 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 194 124 194 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 201 127 195 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 200 127 201 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 200 128 201 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 131 201 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 131 207 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 132 207 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 135 206 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 135 214 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 135 214 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 139 212 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 139 221 139 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 139 221 139 psDrawLine
componentGC 0.000000 setForeground
componentGC 229 143 218 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 143 229 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 143 229 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 237 147 224 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 233 147 237 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 233 148 237 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 245 151 230 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 240 151 245 151 psDrawLine
componentGC 0.000000 setForeground
componentGC 240 152 245 151 psDrawLine
componentGC 0.000000 setForeground
componentGC 254 155 236 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 154 254 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 248 156 254 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 263 158 242 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 254 158 263 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 254 160 263 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 273 162 248 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 260 162 273 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 261 165 273 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 284 166 255 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 266 166 284 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 170 284 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 66 113 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 75 113 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 75 113 66 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 71 118 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 78 118 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 78 118 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 76 123 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 81 123 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 81 123 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 81 127 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 85 128 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 84 128 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 86 132 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 88 133 86 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 88 133 86 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 90 137 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 92 138 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 92 138 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 94 142 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 96 143 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 96 143 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 99 147 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 100 148 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 100 148 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 103 152 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 104 154 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 104 154 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 107 158 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 108 159 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 108 159 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 111 163 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 112 165 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 112 165 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 115 168 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 116 171 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 116 171 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 119 173 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 120 177 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 120 177 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 123 179 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 124 183 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 124 183 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 127 184 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 128 189 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 128 189 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 132 190 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 132 195 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 132 195 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 136 196 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 201 136 202 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 201 136 202 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 140 201 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 140 209 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 140 209 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 144 207 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 144 216 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 144 216 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 148 213 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 148 224 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 148 224 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 152 219 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 152 232 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 153 232 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 240 156 225 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 235 156 240 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 157 240 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 249 161 231 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 242 160 249 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 243 161 249 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 258 165 237 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 249 164 258 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 250 166 258 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 269 169 243 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 256 168 269 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 256 171 269 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 280 174 250 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 262 171 280 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 262 175 280 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 69 108 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 78 104 69 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 78 104 69 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 74 113 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 81 109 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 81 109 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 79 117 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 84 115 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 84 115 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 84 122 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 88 120 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 88 120 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 89 127 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 92 125 89 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 92 125 89 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 94 132 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 96 131 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 95 131 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 98 137 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 99 136 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 99 136 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 102 142 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 103 142 102 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 103 142 102 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 107 147 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 107 147 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 107 147 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 111 152 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 111 153 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 111 153 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 115 158 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 115 159 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 115 159 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 119 163 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 120 165 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 120 165 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 123 168 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 124 171 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 124 171 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 128 174 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 128 177 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 128 177 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 132 179 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 132 183 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 132 183 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 136 185 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 136 190 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 136 190 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 140 190 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 140 196 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 140 196 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 144 196 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 144 203 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 145 203 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 149 202 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 149 211 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 149 211 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 153 208 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 153 218 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 153 218 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 158 214 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 157 226 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 158 226 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 235 162 220 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 230 161 235 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 230 162 235 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 167 226 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 237 165 244 167 psDrawLine
componentGC 0.000000 setForeground
componentGC 237 167 244 167 psDrawLine
componentGC 0.000000 setForeground
componentGC 253 172 232 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 169 253 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 172 253 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 264 177 238 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 251 173 264 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 251 176 264 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 275 182 245 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 257 177 275 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 257 181 275 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 73 103 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 82 95 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 81 95 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 78 107 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 85 101 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 84 101 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 83 112 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 88 107 83 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 88 107 83 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 88 117 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 92 112 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 91 112 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 93 122 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 95 118 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 95 118 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 97 127 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 99 124 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 99 124 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 102 132 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 103 129 102 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 103 129 102 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 106 137 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 107 135 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 107 135 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 111 142 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 111 141 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 111 141 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 115 147 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 115 147 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 115 147 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 119 152 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 119 153 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 119 153 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 123 158 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 124 159 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 124 159 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 128 163 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 128 165 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 128 165 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 132 169 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 132 171 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 132 171 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 136 174 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 136 177 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 136 177 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 140 180 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 140 184 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 141 184 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 145 185 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 145 191 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 145 191 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 149 191 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 149 198 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 149 198 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 154 197 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 204 153 205 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 204 154 205 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 158 203 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 158 213 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 210 158 213 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 163 208 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 162 221 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 163 221 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 229 168 215 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 167 229 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 168 229 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 173 221 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 171 238 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 172 238 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 179 227 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 239 175 247 179 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 177 247 179 psDrawLine
componentGC 0.000000 setForeground
componentGC 258 184 233 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 246 179 258 184 psDrawLine
componentGC 0.000000 setForeground
componentGC 245 182 258 184 psDrawLine
componentGC 0.000000 setForeground
componentGC 269 190 239 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 252 183 269 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 251 187 269 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 77 97 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 86 86 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 84 86 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 82 102 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 89 92 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 99 88 92 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 87 107 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 92 98 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 91 98 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 92 112 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 95 105 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 95 105 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 97 117 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 99 111 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 99 111 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 101 122 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 103 117 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 103 117 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 106 127 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 107 123 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 107 123 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 110 132 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 111 128 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 111 128 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 115 137 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 115 134 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 115 134 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 119 142 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 119 140 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 119 140 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 123 147 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 123 146 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 123 146 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 128 152 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 128 152 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 128 152 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 132 158 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 132 159 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 132 159 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 136 163 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 136 165 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 136 165 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 141 169 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 141 171 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 141 171 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 145 174 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 145 178 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 145 178 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 150 180 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 149 185 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 150 185 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 154 186 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 154 192 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 154 192 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 159 191 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 158 199 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 159 199 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 164 197 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 163 206 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 204 163 206 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 169 203 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 168 214 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 168 214 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 174 209 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 172 223 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 173 223 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 231 180 215 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 177 231 180 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 178 231 180 psDrawLine
componentGC 0.000000 setForeground
componentGC 241 185 221 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 233 181 241 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 183 241 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 251 191 228 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 240 185 251 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 239 188 251 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 262 198 234 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 189 262 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 245 193 262 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 82 92 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 90 77 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 88 77 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 87 97 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 93 84 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 91 84 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 92 102 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 94 96 91 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 95 91 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 97 106 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 100 100 97 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 99 97 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 101 111 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 103 103 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 103 103 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 106 116 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 107 110 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 107 110 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 110 121 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 111 116 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 111 116 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 114 126 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 115 122 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 115 122 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 119 131 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 119 128 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 119 128 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 123 137 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 123 134 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 123 134 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 127 142 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 128 140 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 128 140 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 132 147 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 132 146 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 132 146 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 136 152 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 136 152 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 136 152 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 141 158 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 141 159 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 141 159 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 145 163 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 145 165 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 145 165 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 150 169 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 150 172 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 150 172 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 154 175 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 154 178 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 154 178 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 159 180 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 159 185 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 159 185 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 164 186 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 163 193 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 164 193 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 200 169 192 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 168 200 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 168 200 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 175 198 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 173 208 175 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 173 208 175 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 180 204 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 178 216 180 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 178 216 180 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 186 210 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 182 225 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 183 225 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 192 216 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 227 187 234 192 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 189 234 192 psDrawLine
componentGC 0.000000 setForeground
componentGC 243 199 222 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 191 243 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 194 243 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 254 206 229 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 241 195 254 206 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 198 254 206 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 87 87 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 94 68 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 80 92 68 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 92 91 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 97 76 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 95 76 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 97 96 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 100 83 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 99 83 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 101 101 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 104 90 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 94 103 90 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 106 106 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 108 96 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 99 107 96 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 110 111 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 111 103 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 111 103 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 114 116 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 115 109 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 115 109 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 119 121 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 119 115 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 119 115 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 123 126 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 124 121 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 123 121 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 127 131 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 128 128 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 128 128 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 132 136 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 132 134 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 132 134 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 136 142 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 136 140 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 136 140 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 141 147 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 141 146 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 141 146 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 145 152 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 145 152 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 145 152 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 150 158 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 150 159 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 150 159 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 154 163 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 154 165 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 154 165 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 159 169 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 159 172 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 159 172 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 164 175 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 164 179 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 164 179 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 169 181 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 168 186 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 169 186 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 175 187 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 173 193 175 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 174 193 175 psDrawLine
componentGC 0.000000 setForeground
componentGC 201 180 192 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 178 201 180 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 179 201 180 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 186 198 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 183 209 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 184 209 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 192 205 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 188 217 192 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 189 217 192 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 199 211 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 193 226 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 194 226 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 235 206 217 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 197 235 206 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 199 235 206 psDrawLine
componentGC 0.000000 setForeground
componentGC 245 213 223 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 235 201 245 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 231 204 245 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 60 92 81 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 99 60 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 74 96 60 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 97 86 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 102 68 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 78 100 68 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 75 102 91 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 81 105 75 102 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 103 75 102 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 106 95 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 108 82 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 107 82 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 110 100 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 112 89 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 111 89 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 115 105 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 116 96 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 115 96 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 119 110 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 120 102 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 119 102 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 123 115 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 124 109 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 124 109 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 128 120 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 128 115 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 128 115 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 132 126 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 132 121 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 132 121 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 136 131 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 136 127 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 136 127 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 141 136 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 141 134 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 141 134 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 145 141 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 145 140 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 145 140 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 150 147 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 150 146 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 150 146 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 154 152 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 154 152 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 154 152 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 159 158 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 159 159 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 159 159 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 164 164 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 164 165 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 164 165 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 169 169 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 168 172 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 168 172 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 174 175 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 173 179 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 173 179 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 180 181 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 178 186 180 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 179 186 180 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 186 187 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 183 193 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 184 193 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 201 192 193 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 188 201 192 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 189 201 192 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 198 199 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 193 209 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 194 209 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 205 205 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 198 218 205 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 199 218 205 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 212 212 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 203 226 212 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 205 226 212 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 221 218 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 207 236 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 209 236 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 52 98 76 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 103 52 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 67 100 52 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 60 103 80 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 69 106 60 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 104 60 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 107 85 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 74 109 68 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 75 108 68 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 75 111 90 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 80 113 75 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 81 112 75 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 115 95 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 117 82 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 116 82 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 120 100 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 120 89 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 120 89 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 124 105 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 124 96 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 124 96 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 128 110 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 128 102 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 128 102 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 132 115 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 132 108 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 132 108 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 136 120 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 137 115 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 136 115 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 141 125 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 141 121 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 141 121 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 145 131 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 145 127 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 145 127 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 150 136 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 150 133 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 150 133 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 154 141 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 154 140 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 154 140 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 159 147 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 159 146 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 159 146 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 164 152 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 163 152 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 163 152 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 169 158 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 168 159 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 168 159 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 174 164 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 173 165 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 173 165 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 179 170 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 178 172 179 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 178 172 179 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 185 175 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 183 179 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 183 179 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 191 181 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 188 186 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 189 186 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 197 187 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 194 193 197 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 194 193 197 psDrawLine
componentGC 0.000000 setForeground
componentGC 201 204 194 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 199 201 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 199 201 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 211 200 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 204 209 211 psDrawLine
componentGC 0.000000 setForeground
componentGC 204 205 209 211 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 219 206 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 209 217 219 psDrawLine
componentGC 0.000000 setForeground
componentGC 210 210 217 219 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 227 212 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 213 226 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 215 226 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 45 104 70 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 59 108 45 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 60 105 45 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 53 108 75 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 63 111 53 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 64 109 53 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 61 112 80 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 114 61 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 69 113 61 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 116 84 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 74 118 68 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 74 116 68 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 75 120 89 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 121 75 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 80 120 75 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 124 94 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 125 82 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 124 82 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 129 99 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 129 89 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 128 89 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 133 104 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 133 96 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 133 96 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 137 109 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 137 102 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 137 102 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 141 114 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 141 108 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 141 108 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 145 120 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 145 115 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 145 115 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 150 125 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 150 121 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 150 121 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 154 130 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 154 127 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 154 127 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 159 136 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 159 133 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 159 133 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 164 141 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 163 139 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 163 139 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 168 147 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 168 145 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 168 145 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 173 152 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 173 152 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 173 152 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 179 158 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 178 158 179 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 178 158 179 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 184 164 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 183 165 184 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 183 165 184 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 190 170 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 188 171 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 188 171 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 196 176 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 193 178 196 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 194 178 196 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 203 182 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 199 185 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 199 185 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 209 188 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 204 192 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 204 192 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 200 217 194 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 209 200 217 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 210 200 217 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 225 200 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 214 207 225 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 215 207 225 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 234 207 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 219 215 234 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 220 215 234 psDrawLine
componentGC 0.000000 setForeground
componentGC 38 110 64 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 53 113 38 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 54 109 38 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 114 69 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 116 46 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 58 113 46 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 54 118 74 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 119 54 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 63 117 54 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 122 79 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 123 62 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 121 62 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 69 126 83 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 126 69 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 125 69 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 130 88 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 130 76 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 129 76 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 133 93 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 134 83 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 133 83 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 137 98 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 138 89 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 137 89 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 142 104 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 142 96 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 141 96 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 146 109 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 146 102 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 145 102 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 150 114 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 150 108 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 150 108 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 154 119 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 154 114 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 154 114 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 159 125 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 159 120 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 159 120 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 163 130 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 163 126 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 163 126 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 168 135 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 168 133 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 168 133 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 173 141 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 173 139 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 172 139 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 178 147 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 177 145 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 177 145 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 183 152 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 182 151 183 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 182 151 183 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 189 158 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 188 157 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 188 157 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 195 164 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 193 164 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 193 164 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 201 170 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 198 170 201 psDrawLine
componentGC 0.000000 setForeground
componentGC 169 198 170 201 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 208 176 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 204 176 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 204 176 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 215 182 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 209 183 215 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 209 183 215 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 222 188 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 214 190 222 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 215 190 222 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 231 195 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 220 197 231 psDrawLine
componentGC 0.000000 setForeground
componentGC 194 220 197 231 psDrawLine
componentGC 0.000000 setForeground
componentGC 204 240 201 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 224 204 240 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 224 204 240 psDrawLine
componentGC 0.000000 setForeground
componentGC 31 117 59 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 47 117 31 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 47 114 31 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 40 120 63 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 52 121 40 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 52 118 40 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 48 124 68 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 124 48 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 122 48 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 55 127 73 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 127 55 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 126 55 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 63 131 78 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 67 131 63 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 67 130 63 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 70 135 83 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 135 70 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 134 70 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 138 88 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 138 77 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 138 77 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 142 93 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 142 83 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 142 83 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 146 98 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 146 89 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 146 89 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 150 103 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 150 96 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 150 96 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 155 108 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 154 102 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 154 102 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 159 113 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 159 108 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 159 108 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 163 119 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 163 114 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 163 114 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 168 124 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 168 120 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 168 120 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 173 130 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 172 126 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 172 126 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 178 135 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 177 132 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 177 132 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 183 141 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 182 138 183 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 182 138 183 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 188 147 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 187 144 188 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 187 144 188 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 194 152 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 192 150 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 192 150 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 200 158 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 198 156 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 197 156 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 206 164 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 203 162 206 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 203 162 206 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 212 170 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 209 168 212 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 208 168 212 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 220 176 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 214 174 220 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 214 174 220 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 227 183 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 219 180 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 219 180 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 236 189 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 225 187 236 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 224 187 236 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 245 195 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 229 193 245 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 229 193 245 psDrawLine
componentGC 0.000000 setForeground
componentGC 25 123 53 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 42 122 25 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 41 119 25 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 34 126 58 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 125 34 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 123 34 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 42 130 62 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 51 129 42 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 50 127 42 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 50 133 67 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 132 50 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 131 50 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 136 72 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 136 57 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 61 135 57 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 64 140 77 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 139 64 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 67 139 64 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 143 82 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 143 71 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 143 71 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 147 87 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 147 77 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 146 77 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 151 92 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 151 83 151 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 150 83 151 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 155 97 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 155 90 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 155 90 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 159 102 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 159 96 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 159 96 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 164 108 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 163 102 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 163 102 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 168 113 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 168 108 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 167 108 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 173 118 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 172 113 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 172 113 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 177 124 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 177 119 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 177 119 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 182 129 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 182 125 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 181 125 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 187 135 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 186 131 187 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 186 131 187 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 193 141 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 192 137 193 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 191 137 193 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 198 147 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 197 142 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 197 142 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 204 152 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 202 148 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 202 148 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 210 158 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 208 154 210 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 207 154 210 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 217 164 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 213 159 217 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 213 159 217 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 224 171 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 219 165 224 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 218 165 224 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 232 177 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 224 171 232 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 224 171 232 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 240 183 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 230 176 240 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 229 176 240 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 249 189 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 235 182 249 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 233 182 249 psDrawLine
componentGC 0.000000 setForeground
componentGC 20 130 47 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 37 127 20 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 35 124 20 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 28 133 52 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 41 130 28 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 40 128 28 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 36 135 56 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 134 36 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 45 132 36 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 44 138 61 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 51 137 44 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 50 136 44 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 51 142 66 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 141 51 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 140 51 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 58 145 71 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 144 58 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 61 143 58 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 149 76 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 148 65 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 67 147 65 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 152 81 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 152 71 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 151 71 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 156 86 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 155 77 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 155 77 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 160 91 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 159 84 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 159 84 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 164 96 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 164 90 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 163 90 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 168 102 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 168 95 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 168 95 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 173 107 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 172 101 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 172 101 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 177 112 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 177 107 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 176 107 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 182 118 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 181 113 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 181 113 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 187 123 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 186 118 187 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 186 118 187 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 192 129 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 191 124 192 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 191 124 192 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 197 135 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 196 129 197 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 196 129 197 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 203 141 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 201 135 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 201 135 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 209 146 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 207 140 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 206 140 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 215 152 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 212 145 215 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 212 145 215 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 221 158 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 218 151 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 217 151 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 228 165 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 223 156 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 222 156 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 236 171 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 229 161 236 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 228 161 236 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 244 177 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 234 166 244 psDrawLine
componentGC 0.000000 setForeground
componentGC 169 233 166 244 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 253 183 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 239 170 253 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 237 170 253 psDrawLine
componentGC 0.000000 setForeground
componentGC 15 136 41 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 32 132 15 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 29 128 15 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 23 139 46 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 36 135 23 139 psDrawLine
componentGC 0.000000 setForeground
componentGC 34 133 23 139 psDrawLine
componentGC 0.000000 setForeground
componentGC 31 141 50 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 40 139 31 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 39 137 31 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 39 144 55 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 142 39 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 45 141 39 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 147 60 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 51 145 46 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 50 144 46 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 53 150 65 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 149 53 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 148 53 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 59 154 70 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 153 59 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 152 59 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 157 75 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 156 65 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 67 156 65 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 161 80 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 160 72 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 160 72 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 78 165 85 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 164 78 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 164 78 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 169 90 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 168 83 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 168 83 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 173 96 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 172 89 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 172 89 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 177 101 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 177 95 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 176 95 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 100 182 106 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 181 100 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 181 100 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 186 112 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 186 106 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 185 106 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 191 117 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 190 111 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 190 111 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 196 123 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 195 117 196 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 195 117 196 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 201 129 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 200 122 201 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 200 122 201 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 207 135 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 205 127 207 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 205 127 207 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 213 140 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 211 132 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 210 132 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 219 146 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 216 137 219 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 216 137 219 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 225 152 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 222 142 225 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 221 142 225 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 232 159 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 228 147 232 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 227 147 232 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 240 165 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 233 151 240 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 232 151 240 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 248 171 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 239 156 248 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 237 156 248 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 257 177 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 244 159 257 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 241 159 257 psDrawLine
componentGC 0.000000 setForeground
componentGC 11 143 35 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 27 136 11 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 24 133 11 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 19 145 40 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 31 140 19 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 29 138 19 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 27 147 44 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 35 143 27 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 34 142 27 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 34 150 49 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 40 147 34 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 39 146 34 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 41 152 54 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 150 41 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 45 149 41 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 47 155 59 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 51 154 47 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 50 153 47 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 54 159 64 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 157 54 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 157 54 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 60 162 69 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 161 60 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 160 60 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 166 74 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 165 66 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 67 164 66 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 169 79 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 169 72 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 168 72 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 173 84 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 173 77 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 78 172 77 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 177 90 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 177 83 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 176 83 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 182 95 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 181 89 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 181 89 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 94 186 100 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 185 94 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 185 94 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 99 191 106 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 190 99 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 100 190 99 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 195 111 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 195 105 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 194 105 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 200 117 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 200 110 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 199 110 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 206 123 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 205 115 206 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 204 115 206 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 211 128 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 210 120 211 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 209 120 211 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 217 134 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 215 125 217 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 214 125 217 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 223 140 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 221 129 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 220 129 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 229 146 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 226 134 229 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 225 134 229 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 236 152 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 232 138 236 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 230 138 236 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 243 159 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 238 142 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 236 142 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 251 165 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 243 146 251 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 241 146 251 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 259 171 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 249 149 259 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 245 149 259 psDrawLine
componentGC 0.000000 setForeground
componentGC 7 149 29 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 22 141 7 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 18 138 7 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 15 151 34 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 26 144 15 151 psDrawLine
componentGC 0.000000 setForeground
componentGC 23 143 15 151 psDrawLine
componentGC 0.000000 setForeground
componentGC 22 153 38 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 30 148 22 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 28 147 22 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 29 155 43 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 35 151 29 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 34 150 29 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 36 157 48 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 40 155 36 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 39 154 36 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 42 160 53 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 158 42 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 45 158 42 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 48 163 58 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 51 162 48 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 50 161 48 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 54 167 63 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 165 54 167 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 165 54 167 psDrawLine
componentGC 0.000000 setForeground
componentGC 60 170 68 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 169 60 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 169 60 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 174 73 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 67 173 66 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 67 173 66 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 178 78 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 177 72 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 177 72 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 182 83 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 78 181 77 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 78 181 77 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 186 89 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 185 82 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 185 82 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 88 190 94 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 190 88 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 190 88 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 195 100 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 94 194 93 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 94 194 93 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 200 105 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 99 199 98 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 99 199 98 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 205 111 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 204 103 205 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 204 103 205 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 210 116 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 209 108 210 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 208 108 210 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 215 122 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 214 113 215 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 213 113 215 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 221 128 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 219 117 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 219 117 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 227 134 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 225 122 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 224 122 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 233 140 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 230 126 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 229 126 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 239 146 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 236 130 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 234 130 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 246 152 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 242 133 246 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 239 133 246 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 254 159 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 247 136 254 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 244 136 254 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 262 165 244 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 253 139 262 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 249 139 262 psDrawLine
componentGC 0.000000 setForeground
componentGC 4 155 23 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 18 145 4 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 13 143 4 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 12 156 27 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 21 149 12 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 18 147 12 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 18 158 32 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 26 152 18 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 23 151 18 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 25 160 37 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 30 156 25 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 29 155 25 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 31 162 42 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 35 159 31 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 34 159 31 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 37 165 47 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 41 163 37 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 40 162 37 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 43 168 51 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 166 43 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 45 166 43 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 49 171 56 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 51 170 49 171 psDrawLine
componentGC 0.000000 setForeground
componentGC 50 170 49 171 psDrawLine
componentGC 0.000000 setForeground
componentGC 55 175 62 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 174 55 175 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 173 55 175 psDrawLine
componentGC 0.000000 setForeground
componentGC 60 178 67 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 178 60 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 61 177 60 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 182 72 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 67 182 66 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 67 181 66 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 186 77 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 186 71 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 185 71 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 190 82 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 190 76 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 190 76 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 195 88 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 194 82 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 194 82 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 199 93 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 88 199 87 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 88 198 87 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 204 99 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 203 92 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 203 92 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 209 104 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 208 96 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 208 96 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 214 110 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 213 101 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 213 101 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 219 116 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 218 106 219 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 218 106 219 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 224 122 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 223 110 224 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 223 110 224 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 230 128 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 229 114 230 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 228 114 230 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 236 134 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 234 118 236 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 233 118 236 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 242 140 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 240 121 242 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 238 121 242 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 249 146 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 246 125 249 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 243 125 249 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 256 152 244 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 251 127 256 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 248 127 256 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 263 159 249 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 257 129 263 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 252 129 263 psDrawLine
componentGC 0.000000 setForeground
componentGC 2 160 17 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 13 149 2 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 8 148 2 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 8 161 21 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 17 153 8 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 13 152 8 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 15 163 26 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 21 157 15 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 18 156 15 163 psDrawLine
componentGC 0.000000 setForeground
componentGC 21 165 31 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 26 160 21 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 24 160 21 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 27 167 35 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 30 164 27 167 psDrawLine
componentGC 0.000000 setForeground
componentGC 29 163 27 167 psDrawLine
componentGC 0.000000 setForeground
componentGC 33 170 40 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 35 167 33 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 34 167 33 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 38 173 45 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 41 171 38 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 40 171 38 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 44 176 50 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 175 44 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 45 174 44 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 49 179 55 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 51 178 49 179 psDrawLine
componentGC 0.000000 setForeground
componentGC 50 178 49 179 psDrawLine
componentGC 0.000000 setForeground
componentGC 55 183 60 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 182 55 183 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 182 55 183 psDrawLine
componentGC 0.000000 setForeground
componentGC 60 187 66 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 61 186 60 187 psDrawLine
componentGC 0.000000 setForeground
componentGC 61 186 60 187 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 191 71 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 190 65 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 190 65 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 70 195 76 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 194 70 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 194 70 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 75 199 81 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 198 75 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 198 75 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 80 203 87 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 81 203 80 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 81 203 80 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 208 92 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 208 85 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 207 85 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 213 98 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 212 90 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 212 90 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 94 218 104 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 217 94 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 217 94 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 99 223 110 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 222 99 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 222 99 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 228 115 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 227 103 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 227 103 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 234 121 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 233 107 234 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 232 107 234 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 239 127 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 238 111 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 237 111 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 245 134 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 244 114 245 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 242 114 245 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 251 140 244 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 249 117 251 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 247 117 251 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 258 146 249 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 255 119 258 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 252 119 258 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 265 152 254 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 261 120 265 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 256 120 265 psDrawLine
grestore % restore graphics state
cleartomark %% clearing operand stack
end %% pops mainDict from dictionary stack
showpage
%-------------------------- end --------------------------%
|