forked from pure-data/pure-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslop-compander-patch.ps
2476 lines (2472 loc) · 59.8 KB
/
slop-compander-patch.ps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: Tk Canvas Widget
%%For: msp
%%Title: Window .x1552780.c
%%CreationDate: Tue Jul 16 19:58:23 2019
%%BoundingBox: 103 271 509 522
%%Pages: 1
%%DocumentData: Clean7Bit
%%Orientation: Portrait
%%DocumentNeededResources: font DejaVuSansMono-Bold
%%EndComments
%%BeginProlog
% This is a standard prolog for Postscript generated by Tk's canvas
% widget.
/CurrentEncoding [
/space/space/space/space/space/space/space/space
/space/space/space/space/space/space/space/space
/space/space/space/space/space/space/space/space
/space/space/space/space/space/space/space/space
/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle
/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash
/zero/one/two/three/four/five/six/seven
/eight/nine/colon/semicolon/less/equal/greater/question
/at/A/B/C/D/E/F/G
/H/I/J/K/L/M/N/O
/P/Q/R/S/T/U/V/W
/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore
/grave/a/b/c/d/e/f/g
/h/i/j/k/l/m/n/o
/p/q/r/s/t/u/v/w
/x/y/z/braceleft/bar/braceright/asciitilde/space
/space/space/space/space/space/space/space/space
/space/space/space/space/space/space/space/space
/space/space/space/space/space/space/space/space
/space/space/space/space/space/space/space/space
/space/exclamdown/cent/sterling/currency/yen/brokenbar/section
/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron
/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered
/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown
/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
] def
50 dict begin
/baseline 0 def
/stipimage 0 def
/height 0 def
/justify 0 def
/lineLength 0 def
/spacing 0 def
/stipple 0 def
/strings 0 def
/xoffset 0 def
/yoffset 0 def
/tmpstip null def
/baselineSampler ( TXygqPZ) def
baselineSampler 0 196 put
/cstringshow {{ dup type /stringtype eq { show } { glyphshow } ifelse } forall } bind def
/cstringwidth {0 exch 0 exch { dup type /stringtype eq { stringwidth } { currentfont /Encoding get exch 1 exch put (\001) stringwidth } ifelse exch 3 1 roll add 3 1 roll add exch } forall } bind def
/ISOEncode {dup length dict begin {1 index /FID ne {def} {pop pop} ifelse} forall /Encoding CurrentEncoding def currentdict end /Temporary exch definefont } bind def
/StrokeClip {{strokepath} stopped { (This Postscript printer gets limitcheck overflows when) = (stippling dashed lines; lines will be printed solid instead.) = [] 0 setdash strokepath} if clip } bind def
/EvenPixels {dup 0 matrix currentmatrix dtransform dup mul exch dup mul add sqrt dup round dup 1 lt {pop 1} if exch div mul } bind def
/StippleFill {/tmpstip 1 index def 1 EvenPixels dup scale pathbbox 4 2 roll 5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll 6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll 6 index exch { 2 index 5 index 3 index { gsave 1 index exch translate 5 index 5 index true matrix tmpstip imagemask grestore } for pop } for pop pop pop pop pop } bind def
/AdjustColor {CL 2 lt { currentgray CL 0 eq { .5 lt {0} {1} ifelse } if setgray } if } bind def
/DrawText {/stipple exch def /justify exch def /yoffset exch def /xoffset exch def /spacing exch def /strings exch def /lineLength 0 def strings { cstringwidth pop dup lineLength gt {/lineLength exch def} {pop} ifelse newpath } forall 0 0 moveto baselineSampler false charpath pathbbox dup /baseline exch def exch pop exch sub /height exch def pop newpath translate rotate lineLength xoffset mul strings length 1 sub spacing mul height add yoffset mul translate justify lineLength mul baseline neg translate strings { dup cstringwidth pop justify neg mul 0 moveto stipple { gsave /char (X) def { dup type /stringtype eq { { char 0 3 -1 roll put currentpoint gsave char true charpath clip StippleText grestore char stringwidth translate moveto } forall } { currentfont /Encoding get exch 1 exch put currentpoint gsave (\001) true charpath clip StippleText grestore (\001) stringwidth translate moveto } ifelse } forall grestore } {cstringshow} ifelse 0 spacing neg translate } forall } bind def
/TkPhotoColor {gsave 32 dict begin /tinteger exch def /transparent 1 string def transparent 0 tinteger put /olddict exch def olddict /DataSource get dup type /filetype ne { olddict /DataSource 3 -1 roll 0 () /SubFileDecode filter put } { pop } ifelse /newdict olddict maxlength dict def olddict newdict copy pop /w newdict /Width get def /crpp newdict /Decode get length 2 idiv def /str w string def /pix w crpp mul string def /substrlen 2 w log 2 log div floor exp cvi def /substrs [ { substrlen string 0 1 substrlen 1 sub { 1 index exch tinteger put } for /substrlen substrlen 2 idiv def substrlen 0 eq {exit} if } loop ] def /h newdict /Height get def 1 w div 1 h div matrix scale olddict /ImageMatrix get exch matrix concatmatrix matrix invertmatrix concat newdict /Height 1 put newdict /DataSource pix put /mat [w 0 0 h 0 0] def newdict /ImageMatrix mat put 0 1 h 1 sub { mat 5 3 -1 roll neg put olddict /DataSource get str readstring pop pop /tail str def /x 0 def olddict /DataSource get pix readstring pop pop { tail transparent search dup /done exch not def {exch pop exch pop} if /w1 exch length def w1 0 ne { newdict /DataSource pix x crpp mul w1 crpp mul getinterval put newdict /Width w1 put mat 4 x neg put /x x w1 add def newdict image /tail tail w1 tail length w1 sub getinterval def } if done {exit} if tail substrs { anchorsearch {pop} if } forall /tail exch def tail length 0 eq {exit} if /x w tail length sub def } loop } for end grestore } bind def
/TkPhotoMono {gsave 32 dict begin /dummyInteger exch def /olddict exch def olddict /DataSource get dup type /filetype ne { olddict /DataSource 3 -1 roll 0 () /SubFileDecode filter put } { pop } ifelse /newdict olddict maxlength dict def olddict newdict copy pop /w newdict /Width get def /pix w 7 add 8 idiv string def /h newdict /Height get def 1 w div 1 h div matrix scale olddict /ImageMatrix get exch matrix concatmatrix matrix invertmatrix concat newdict /Height 1 put newdict /DataSource pix put /mat [w 0 0 h 0 0] def newdict /ImageMatrix mat put 0 1 h 1 sub { mat 5 3 -1 roll neg put 0.000 0.000 0.000 setrgbcolor olddict /DataSource get pix readstring pop pop newdict /DataSource pix put newdict imagemask 1.000 1.000 1.000 setrgbcolor olddict /DataSource get pix readstring pop pop newdict /DataSource pix put newdict imagemask } for end grestore } bind def
%%EndProlog
%%BeginSetup
/CL 2 def
%%IncludeResource: font DejaVuSansMono-Bold
%%EndSetup
%%Page: 1 1
save
306.0 396.0 translate
0.7485 0.7485 scale
-270 -166 translate
0 333 moveto 540 333 lineto 540 0 lineto 0 0 lineto closepath clip newpath
gsave
30 298 moveto
76 298 lineto
76 278 lineto
30 278 lineto
30 298 lineto
2 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
30 280 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
30 280 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
/Courier-Bold findfont 11.5 scalefont ISOEncode setfont
0.000 0.000 0.000 setrgbcolor AdjustColor
0 32 293 [
[(inlet~)]
] 15 -0 0 0 false DrawText
grestore
gsave
49 239 moveto
186 239 lineto
186 219 lineto
49 219 lineto
49 239 lineto
2 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
49 221 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
49 221 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
49 239 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
49 239 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
75 239 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
75 239 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
101 239 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
101 239 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
127 239 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
127 239 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
153 239 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
153 239 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
179 239 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
179 239 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
/Courier-Bold findfont 11.5 scalefont ISOEncode setfont
0.000 0.000 0.000 setrgbcolor AdjustColor
0 51 234 [
[(slop~ 0 0 0 0 1e+09)]
] 15 -0 0 0 false DrawText
grestore
gsave
127 315 moveto
201 315 lineto
201 295 lineto
127 295 lineto
127 315 lineto
2 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
127 297 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
127 297 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
/Courier-Bold findfont 11.5 scalefont ISOEncode setfont
0.000 0.000 0.000 setrgbcolor AdjustColor
0 129 310 [
[(r $0-speed)]
] 15 -0 0 0 false DrawText
grestore
gsave
127 290 moveto
152 290 lineto
152 270 lineto
127 270 lineto
127 290 lineto
2 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
127 272 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
127 272 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
127 290 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
127 290 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
145 290 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
145 290 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
/Courier-Bold findfont 11.5 scalefont ISOEncode setfont
0.000 0.000 0.000 setrgbcolor AdjustColor
0 129 285 [
[(f )]
] 15 -0 0 0 false DrawText
grestore
gsave
127 265 moveto
159 265 lineto
159 245 lineto
127 245 lineto
127 265 lineto
2 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
127 247 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
127 247 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
127 265 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
127 265 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
152 265 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
152 265 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
/Courier-Bold findfont 11.5 scalefont ISOEncode setfont
0.000 0.000 0.000 setrgbcolor AdjustColor
0 129 260 [
[(/ 10)]
] 15 -0 0 0 false DrawText
grestore
gsave
50 265 moveto
82 265 lineto
82 245 lineto
50 245 lineto
50 265 lineto
2 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
50 247 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
50 247 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
50 265 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
50 265 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
/Courier-Bold findfont 11.5 scalefont ISOEncode setfont
0.000 0.000 0.000 setrgbcolor AdjustColor
0 52 260 [
[(abs~)]
] 15 -0 0 0 false DrawText
grestore
gsave
71 176 moveto
257 176 lineto
257 156 lineto
71 156 lineto
71 176 lineto
2 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
71 158 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
71 158 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
71 176 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
71 176 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
250 176 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
250 176 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
/Courier-Bold findfont 11.5 scalefont ISOEncode setfont
0.000 0.000 0.000 setrgbcolor AdjustColor
0 73 171 [
[(tabread4~ $0-dynamic-curve)]
] 15 -0 0 0 false DrawText
grestore
gsave
48 142 moveto
73 142 lineto
73 122 lineto
48 122 lineto
48 142 lineto
2 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
48 124 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
48 124 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
48 142 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
48 142 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
66 142 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
66 142 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
/Courier-Bold findfont 11.5 scalefont ISOEncode setfont
0.000 0.000 0.000 setrgbcolor AdjustColor
0 50 137 [
[(-~ )]
] 15 -0 0 0 false DrawText
grestore
gsave
48 117 moveto
94 117 lineto
94 97 lineto
48 97 lineto
48 117 lineto
2 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
48 99 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
48 99 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
48 117 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
48 117 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
87 117 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
87 117 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
/Courier-Bold findfont 11.5 scalefont ISOEncode setfont
0.000 0.000 0.000 setrgbcolor AdjustColor
0 50 112 [
[(+~ 100)]
] 15 -0 0 0 false DrawText
grestore
gsave
48 92 moveto
108 92 lineto
108 72 lineto
48 72 lineto
48 92 lineto
2 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
48 74 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
48 74 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
48 92 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
48 92 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
/Courier-Bold findfont 11.5 scalefont ISOEncode setfont
0.000 0.000 0.000 setrgbcolor AdjustColor
0 50 87 [
[(dbtorms~)]
] 15 -0 0 0 false DrawText
grestore
gsave
49 214 moveto
109 214 lineto
109 194 lineto
49 194 lineto
49 214 lineto
2 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
49 196 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
49 196 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
49 214 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
49 214 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
/Courier-Bold findfont 11.5 scalefont ISOEncode setfont
0.000 0.000 0.000 setrgbcolor AdjustColor
0 51 209 [
[(rmstodb~)]
] 15 -0 0 0 false DrawText
grestore
gsave
29 64 moveto
54 64 lineto
54 44 lineto
29 44 lineto
29 64 lineto
2 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
29 46 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
29 46 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
29 64 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
29 64 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
47 64 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
47 64 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
/Courier-Bold findfont 11.5 scalefont ISOEncode setfont
0.000 0.000 0.000 setrgbcolor AdjustColor
0 31 59 [
[(*~ )]
] 15 -0 0 0 false DrawText
grestore
gsave
29 38 moveto
82 38 lineto
82 18 lineto
29 18 lineto
29 38 lineto
2 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
29 38 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0.000 0.000 0.000 setrgbcolor AdjustColor
fill
29 38 moveto 7 0 rlineto 0 -2 rlineto -7 0 rlineto closepath
0 setlinejoin 2 setlinecap
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
/Courier-Bold findfont 11.5 scalefont ISOEncode setfont
0.000 0.000 0.000 setrgbcolor AdjustColor
0 31 33 [
[(outlet~)]
] 15 -0 0 0 false DrawText
grestore
gsave
295 281 moveto
295 81 lineto
497 81 lineto
497 281 lineto
295 281 lineto
2 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
/Courier-Bold findfont 11.5 scalefont ISOEncode setfont
0.000 0.000 0.000 setrgbcolor AdjustColor
0 295 295 [
[($0-dynamic-curve)]
] 15 -0 0 0 false DrawText
grestore
gsave
295 81 moveto
295 85 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
295 281 moveto
295 277 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
314 81 moveto
314 83 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
314 281 moveto
314 279 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
334 81 moveto
334 85 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
334 281 moveto
334 277 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
354 81 moveto
354 83 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
354 281 moveto
354 279 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
374 81 moveto
374 85 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
374 281 moveto
374 277 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
394 81 moveto
394 83 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
394 281 moveto
394 279 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
413 81 moveto
413 85 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
413 281 moveto
413 277 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
433 81 moveto
433 83 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
433 281 moveto
433 279 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
453 81 moveto
453 85 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
453 281 moveto
453 277 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
473 81 moveto
473 83 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
473 281 moveto
473 279 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
493 81 moveto
493 85 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
493 281 moveto
493 277 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
295 81 moveto
299 81 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
497 81 moveto
493 81 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
295 101 moveto
297 101 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave
497 101 moveto
495 101 lineto
0 setlinecap
1 setlinejoin
1 setlinewidth
[] 0 setdash
0.000 0.000 0.000 setrgbcolor AdjustColor
stroke
grestore
gsave