-
Notifications
You must be signed in to change notification settings - Fork 3
/
venn_inc_exc_princ.eps
3176 lines (2910 loc) · 75.8 KB
/
venn_inc_exc_princ.eps
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
%%Title: venn_inc_exc_princ.eps
%%Creator: matplotlib version 1.5.1, http://matplotlib.org/
%%CreationDate: Mon May 30 14:02:05 2016
%%Orientation: portrait
%%BoundingBox: 24 181 587 610
%%EndComments
%%BeginProlog
/mpldict 11 dict def
mpldict begin
/m { moveto } bind def
/l { lineto } bind def
/r { rlineto } bind def
/c { curveto } bind def
/cl { closepath } bind def
/box {
m
1 index 0 r
0 exch r
neg 0 r
cl
} bind def
/clipbox {
box
clip
newpath
} bind def
%!PS-Adobe-3.0 Resource-Font
%%Title: Bitstream Vera Sans
%%Copyright: Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.
%%Creator: Converted from TrueType to type 3 by PPR
25 dict begin
/_d{bind def}bind def
/_m{moveto}_d
/_l{lineto}_d
/_cl{closepath eofill}_d
/_c{curveto}_d
/_sc{7 -1 roll{setcachedevice}{pop pop pop pop pop pop}ifelse}_d
/_e{exec}_d
/FontName /BitstreamVeraSans-Roman def
/PaintType 0 def
/FontMatrix[.001 0 0 .001 0 0]def
/FontBBox[-183 -236 1287 928]def
/FontType 3 def
/Encoding [ /space /X /Y /Z ] def
/FontInfo 10 dict dup begin
/FamilyName (Bitstream Vera Sans) def
/FullName (Bitstream Vera Sans) def
/Notice (Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc.) def
/Weight (Roman) def
/Version (Release 1.10) def
/ItalicAngle 0.0 def
/isFixedPitch false def
/UnderlinePosition -213 def
/UnderlineThickness 143 def
end readonly def
/CharStrings 4 dict dup begin
/space{318 0 0 0 0 0 _sc
}_d
/X{685 0 30 0 654 729 _sc
63 729 _m
169 729 _l
350 458 _l
532 729 _l
638 729 _l
404 379 _l
654 0 _l
548 0 _l
343 310 _l
136 0 _l
30 0 _l
290 389 _l
63 729 _l
_cl}_d
/Y{611 0 -1 0 613 729 _sc
-1 729 _m
104 729 _l
306 429 _l
507 729 _l
613 729 _l
355 347 _l
355 0 _l
256 0 _l
256 347 _l
-1 729 _l
_cl}_d
/Z{685 0 45 0 640 729 _sc
56 729 _m
629 729 _l
629 654 _l
168 83 _l
640 83 _l
640 0 _l
45 0 _l
45 75 _l
506 646 _l
56 646 _l
56 729 _l
_cl}_d
end readonly def
/BuildGlyph
{exch begin
CharStrings exch
2 copy known not{pop /.notdef}if
true 3 1 roll get exec
end}_d
/BuildChar {
1 index /Encoding get exch get
1 index /BuildGlyph get exec
}_d
FontName currentdict end definefont pop
%!PS-Adobe-3.0 Resource-Font
%%Title: cmsy10
%%Copyright: Copyright (C) 1994, Basil K. Malyshev. All Rights Reserved.012BaKoMa Fonts Collection, Level-B.
%%Creator: Converted from TrueType to type 3 by PPR
25 dict begin
/_d{bind def}bind def
/_m{moveto}_d
/_l{lineto}_d
/_cl{closepath eofill}_d
/_c{curveto}_d
/_sc{7 -1 roll{setcachedevice}{pop pop pop pop pop pop}ifelse}_d
/_e{exec}_d
/FontName /Cmsy10 def
/PaintType 0 def
/FontMatrix[.001 0 0 .001 0 0]def
/FontBBox[-29 -960 1123 779]def
/FontType 3 def
/Encoding [ /minus /intersection /bar ] def
/FontInfo 10 dict dup begin
/FamilyName (cmsy10) def
/FullName (cmsy10) def
/Notice (Copyright (C) 1994, Basil K. Malyshev. All Rights Reserved.012BaKoMa Fonts Collection, Level-B. ) def
/Weight (Regular) def
/Version (1.1/12-Nov-94) def
/ItalicAngle 0.0 def
/isFixedPitch false def
/UnderlinePosition -133 def
/UnderlineThickness 20 def
end readonly def
/CharStrings 3 dict dup begin
/minus{777 0 83 230 694 270 _sc
102 230 _m
96 230 92 232 88 236 _c
84 240 83 245 83 250 _c
83 254 84 259 88 263 _c
92 267 96 270 102 270 _c
676 270 _l
681 270 685 267 689 263 _c
692 259 694 254 694 250 _c
694 245 692 240 689 236 _c
685 232 681 230 676 230 _c
102 230 _l
_cl}_d
/intersection{{666 0 56 -21 610 598 _sc
56 -3 _m
56 386 _l
56 430 69 469 97 501 _c
125 533 160 557 204 573 _c
247 589 290 598 333 598 _c
364 598 396 593 429 585 _c
461 576 491 563 519 545 _c
546 527 568 504 585 477 _c
601 450 610 420 610 386 _c
610 -3 _l
610 -8 608 -12 604 -16 _c
600 -19 595 -21 590 -21 _c
585 -21 580 -19 576 -16 _c
572 -12 570 -8 570 -3 _c
570 383 _l
}_e{570 412 562 438 548 460 _c
533 482 514 501 492 515 _c
469 529 444 539 416 547 _c
388 554 360 558 333 558 _c
295 558 258 551 222 538 _c
186 525 156 505 132 479 _c
108 453 96 421 96 383 _c
96 -3 _l
96 -8 93 -12 89 -16 _c
85 -19 80 -21 76 -21 _c
70 -21 66 -19 62 -16 _c
58 -12 56 -8 56 -3 _c
_cl}_e}_d
/bar{277 0 119 -249 159 750 _sc
119 -231 _m
119 732 _l
119 737 121 741 125 745 _c
129 748 133 750 139 750 _c
143 750 148 748 152 745 _c
156 741 159 737 159 732 _c
159 -231 _l
159 -236 156 -240 152 -244 _c
148 -247 143 -249 139 -249 _c
133 -249 129 -247 125 -244 _c
121 -240 119 -236 119 -231 _c
_cl}_d
end readonly def
/BuildGlyph
{exch begin
CharStrings exch
2 copy known not{pop /.notdef}if
true 3 1 roll get exec
end}_d
/BuildChar {
1 index /Encoding get exch get
1 index /BuildGlyph get exec
}_d
FontName currentdict end definefont pop
%!PS-Adobe-3.0 Resource-Font
%%Title: cmr10
%%Copyright: Copyright (C) 1994, Basil K. Malyshev. All Rights Reserved.012BaKoMa Fonts Collection, Level-B.
%%Creator: Converted from TrueType to type 3 by PPR
25 dict begin
/_d{bind def}bind def
/_m{moveto}_d
/_l{lineto}_d
/_cl{closepath eofill}_d
/_c{curveto}_d
/_sc{7 -1 roll{setcachedevice}{pop pop pop pop pop pop}ifelse}_d
/_e{exec}_d
/FontName /Cmr10 def
/PaintType 0 def
/FontMatrix[.001 0 0 .001 0 0]def
/FontBBox[-44 -250 1009 750]def
/FontType 3 def
/Encoding [ /zero /two /plus /one /three ] def
/FontInfo 10 dict dup begin
/FamilyName (cmr10) def
/FullName (cmr10) def
/Notice (Copyright (C) 1994, Basil K. Malyshev. All Rights Reserved.012BaKoMa Fonts Collection, Level-B. ) def
/Weight (Regular) def
/Version (1.1/12-Nov-94) def
/ItalicAngle 0.0 def
/isFixedPitch false def
/UnderlinePosition -133 def
/UnderlineThickness 20 def
end readonly def
/CharStrings 5 dict dup begin
/zero{{500 0 39 -21 460 666 _sc
250 -21 _m
168 -21 112 12 83 79 _c
53 146 39 226 39 319 _c
39 377 44 431 55 482 _c
65 533 86 576 118 612 _c
149 648 193 666 250 666 _c
294 666 330 655 358 634 _c
386 612 407 585 422 551 _c
436 517 446 480 452 441 _c
457 402 460 361 460 319 _c
460 261 454 208 444 158 _c
433 108 412 65 381 31 _c
350 -3 306 -21 250 -21 _c
250 4 _m
}_e{287 4 315 23 333 61 _c
351 99 362 141 366 187 _c
370 233 373 283 373 335 _c
373 385 370 431 366 473 _c
362 515 351 554 333 588 _c
315 622 287 640 250 640 _c
212 640 184 622 166 588 _c
148 554 136 515 132 473 _c
128 431 126 385 126 335 _c
126 297 126 262 128 230 _c
130 197 135 163 143 128 _c
151 93 163 64 181 40 _c
198 16 221 4 250 4 _c
_cl}_e}_d
/two{{500 0 50 0 449 666 _sc
50 0 _m
50 27 _l
50 28 50 30 52 32 _c
207 204 _l
230 229 249 250 264 268 _c
278 285 293 305 307 327 _c
321 349 333 372 341 396 _c
349 419 354 444 354 470 _c
354 497 349 523 339 548 _c
329 573 314 593 294 608 _c
274 623 249 631 221 631 _c
192 631 166 622 143 605 _c
119 587 103 565 94 537 _c
96 537 100 538 105 538 _c
}_e{119 538 132 533 143 523 _c
153 513 159 500 159 484 _c
159 468 153 455 143 445 _c
132 434 119 429 105 429 _c
89 429 76 434 66 445 _c
55 456 50 469 50 484 _c
50 508 54 532 64 554 _c
73 576 86 595 104 613 _c
122 630 142 643 164 652 _c
186 661 210 666 236 666 _c
274 666 309 658 342 642 _c
375 626 401 603 420 573 _c
439 543 449 509 449 470 _c
}_e{449 441 442 414 430 388 _c
417 362 401 338 381 317 _c
361 295 336 271 305 244 _c
274 217 254 199 244 190 _c
131 81 _l
227 81 _l
274 81 313 81 345 82 _c
377 82 394 84 396 86 _c
404 94 412 125 420 178 _c
449 178 _l
421 0 _l
50 0 _l
_cl}_e}_d
/plus{{777 0 56 -82 721 583 _sc
75 230 _m
69 230 65 232 61 236 _c
57 240 56 245 56 250 _c
56 254 57 259 61 263 _c
65 267 69 270 75 270 _c
369 270 _l
369 565 _l
369 570 371 574 375 578 _c
379 581 383 583 389 583 _c
393 583 398 581 402 578 _c
406 574 409 570 409 565 _c
409 270 _l
703 270 _l
707 270 711 267 715 263 _c
719 259 721 254 721 250 _c
721 245 719 240 715 236 _c
}_e{711 232 707 230 703 230 _c
409 230 _l
409 -64 _l
409 -69 406 -73 402 -77 _c
398 -80 393 -82 389 -82 _c
383 -82 379 -80 375 -77 _c
371 -73 369 -69 369 -64 _c
369 230 _l
75 230 _l
_cl}_e}_d
/one{500 0 87 0 421 666 _sc
93 0 _m
93 35 _l
176 35 218 45 218 67 _c
218 592 _l
183 575 139 567 87 567 _c
87 602 _l
168 602 230 623 272 666 _c
286 666 _l
288 666 291 665 293 663 _c
295 661 296 659 296 657 _c
296 67 _l
296 45 337 35 421 35 _c
421 0 _l
93 0 _l
_cl}_d
/three{{500 0 42 -21 457 666 _sc
95 77 _m
111 54 132 37 158 26 _c
184 15 213 10 243 10 _c
281 10 309 26 325 59 _c
341 92 350 130 350 172 _c
350 190 348 209 345 228 _c
341 247 335 265 327 281 _c
319 297 308 310 294 320 _c
280 330 262 335 242 335 _c
176 335 _l
170 335 167 338 167 344 _c
167 353 _l
167 358 170 361 176 361 _c
231 365 _l
254 365 273 373 289 391 _c
}_e{305 409 316 430 323 456 _c
330 481 334 505 334 528 _c
334 560 326 586 311 606 _c
296 626 273 637 243 637 _c
217 637 193 632 170 622 _c
147 612 129 598 115 579 _c
116 579 117 580 118 580 _c
119 580 120 580 122 580 _c
137 580 150 574 160 564 _c
170 554 175 541 175 527 _c
175 512 170 499 160 489 _c
150 479 137 474 122 474 _c
107 474 94 479 84 489 _c
}_e{74 499 69 512 69 527 _c
69 555 77 580 95 601 _c
112 622 134 638 161 649 _c
188 660 215 666 243 666 _c
263 666 284 663 307 657 _c
329 651 350 642 368 631 _c
386 619 401 605 413 588 _c
424 570 430 550 430 528 _c
430 500 423 474 411 450 _c
399 426 382 406 360 389 _c
338 371 314 358 288 350 _c
317 344 345 333 371 317 _c
397 301 417 280 433 255 _c
}_e{449 229 457 202 457 173 _c
457 136 446 103 426 73 _c
406 43 379 19 347 3 _c
314 -13 279 -21 243 -21 _c
211 -21 180 -15 149 -3 _c
117 8 92 25 72 49 _c
52 73 42 101 42 135 _c
42 151 47 165 58 176 _c
69 187 83 193 100 193 _c
110 193 120 190 129 185 _c
138 180 145 173 150 164 _c
155 154 158 145 158 135 _c
158 118 152 104 141 93 _c
}_e{129 82 116 77 100 77 _c
95 77 _l
_cl}_e}_d
end readonly def
/BuildGlyph
{exch begin
CharStrings exch
2 copy known not{pop /.notdef}if
true 3 1 roll get exec
end}_d
/BuildChar {
1 index /Encoding get exch get
1 index /BuildGlyph get exec
}_d
FontName currentdict end definefont pop
%!PS-Adobe-3.0 Resource-Font
%%Title: cmmi10
%%Copyright: Copyright (C) 1994, Basil K. Malyshev. All Rights Reserved.012BaKoMa Fonts Collection, Level-B.
%%Creator: Converted from TrueType to type 3 by PPR
25 dict begin
/_d{bind def}bind def
/_m{moveto}_d
/_l{lineto}_d
/_cl{closepath eofill}_d
/_c{curveto}_d
/_sc{7 -1 roll{setcachedevice}{pop pop pop pop pop pop}ifelse}_d
/_e{exec}_d
/FontName /Cmmi10 def
/PaintType 0 def
/FontMatrix[.001 0 0 .001 0 0]def
/FontBBox[-34 -250 1048 750]def
/FontType 3 def
/Encoding [ /Z /Y /X ] def
/FontInfo 10 dict dup begin
/FamilyName (cmmi10) def
/FullName (cmmi10) def
/Notice (Copyright (C) 1994, Basil K. Malyshev. All Rights Reserved.012BaKoMa Fonts Collection, Level-B. ) def
/Weight (Regular) def
/Version (1.1/12-Nov-94) def
/ItalicAngle 0.0 def
/isFixedPitch false def
/UnderlinePosition -133 def
/UnderlineThickness 20 def
end readonly def
/CharStrings 3 dict dup begin
/Z{{682 0 58 0 722 683 _sc
58 8 _m
58 17 60 25 65 31 _c
615 648 _l
468 648 _l
419 648 378 642 346 630 _c
314 618 287 599 266 573 _c
245 546 228 509 214 463 _c
212 457 209 454 204 454 _c
195 454 _l
188 454 185 458 185 467 _c
248 674 _l
249 680 252 683 258 683 _c
714 683 _l
719 683 722 680 722 675 _c
722 665 720 658 716 654 _c
168 38 _l
320 38 _l
}_e{378 38 424 45 458 60 _c
492 74 518 97 538 128 _c
558 159 577 204 596 262 _c
596 264 598 266 600 268 _c
602 270 604 271 606 271 _c
615 271 _l
621 271 625 266 625 258 _c
546 9 _l
543 3 540 0 536 0 _c
67 0 _l
61 0 58 2 58 8 _c
_cl}_e}_d
/Y{{580 0 33 0 763 683 _sc
89 13 _m
89 15 89 17 90 21 _c
91 25 92 28 94 31 _c
96 33 98 35 102 35 _c
142 35 171 37 187 42 _c
190 42 193 44 196 48 _c
198 52 200 56 202 60 _c
204 64 205 68 207 72 _c
257 273 _l
128 628 _l
122 636 111 642 96 644 _c
80 646 63 648 43 648 _c
36 648 33 652 33 661 _c
35 669 36 674 38 678 _c
}_e{40 681 44 683 50 683 _c
302 683 _l
308 683 311 678 311 670 _c
308 655 304 648 298 648 _c
250 648 227 640 227 626 _c
340 318 _l
576 591 _l
577 594 579 598 583 603 _c
586 607 588 611 590 615 _c
592 618 593 622 593 626 _c
593 640 579 648 552 648 _c
545 648 542 652 542 661 _c
543 666 544 670 545 673 _c
545 676 547 678 549 680 _c
551 682 555 683 559 683 _c
753 683 _l
}_e{755 683 758 681 760 678 _c
762 675 763 672 763 670 _c
761 665 760 661 760 659 _c
759 657 758 654 756 652 _c
754 649 752 648 749 648 _c
722 648 697 642 673 630 _c
649 618 629 602 611 582 _c
610 581 609 580 608 580 _c
607 580 606 579 606 578 _c
342 273 _l
290 66 _l
290 64 289 61 289 58 _c
288 55 288 53 288 51 _c
288 48 288 46 289 44 _c
290 42 291 41 293 41 _c
}_e{294 40 296 39 300 39 _c
312 36 336 35 372 35 _c
378 35 382 30 382 22 _c
379 12 377 6 376 4 _c
375 1 371 0 365 0 _c
99 0 _l
92 0 89 4 89 13 _c
_cl}_e}_d
/X{{828 0 26 0 852 683 _sc
36 0 _m
29 0 26 4 26 13 _c
26 15 26 18 28 22 _c
29 26 30 29 32 31 _c
34 33 36 35 40 35 _c
100 35 152 57 196 103 _c
196 103 197 104 198 104 _c
198 104 199 105 199 105 _c
418 341 _l
299 628 _l
292 636 281 642 266 644 _c
250 646 232 648 212 648 _c
205 648 202 652 202 661 _c
204 669 206 675 207 678 _c
}_e{208 681 212 683 219 683 _c
469 683 _l
475 683 479 678 479 670 _c
479 668 478 665 477 661 _c
475 657 474 653 472 651 _c
470 649 468 648 465 648 _c
452 648 439 646 426 642 _c
413 638 404 631 399 622 _c
485 415 _l
649 591 _l
649 593 651 596 655 602 _c
659 608 661 613 661 619 _c
661 629 656 636 648 641 _c
640 645 630 648 618 648 _c
611 648 608 652 608 661 _c
}_e{610 669 611 675 613 678 _c
614 681 618 683 625 683 _c
842 683 _l
845 683 847 681 849 679 _c
851 676 852 673 852 670 _c
852 668 851 665 850 661 _c
849 657 848 654 846 652 _c
844 649 842 648 839 648 _c
807 648 779 642 753 631 _c
727 619 704 602 682 580 _c
682 580 681 579 681 579 _c
680 579 679 578 679 578 _c
498 383 _l
635 55 _l
645 41 674 35 722 35 _c
}_e{728 35 732 30 732 22 _c
730 13 728 7 726 4 _c
724 1 721 0 715 0 _c
465 0 _l
458 0 455 4 455 13 _c
455 15 456 18 457 22 _c
457 26 459 29 461 31 _c
463 33 465 35 468 35 _c
480 35 493 37 507 41 _c
520 45 529 51 535 61 _c
431 310 _l
229 92 _l
228 89 226 85 222 80 _c
218 74 217 69 217 64 _c
217 54 221 46 230 42 _c
}_e{239 37 249 35 260 35 _c
266 35 270 30 270 22 _c
268 12 266 6 265 4 _c
263 1 259 0 253 0 _c
36 0 _l
_cl}_e}_d
end readonly def
/BuildGlyph
{exch begin
CharStrings exch
2 copy known not{pop /.notdef}if
true 3 1 roll get exec
end}_d
/BuildChar {
1 index /Encoding get exch get
1 index /BuildGlyph get exec
}_d
FontName currentdict end definefont pop
end
%%EndProlog
mpldict begin
24.255 181.129 translate
563.49 429.742 0 0 clipbox
100000 setmiterlimit
gsave
0 0 m
563.490034 0 l
563.490034 429.742442 l
0 429.742442 l
cl
1.000 setgray
fill
grestore
1.000 setlinewidth
0 setlinejoin
0 setlinecap
[] 0 setdash
0.000 0.750 0.750 setrgbcolor
gsave
133.4 128 7.2 228.9 clipbox
73.910171 341.186731 m
69.718425 343.971004 65.000303 345.867107 60.047567 346.75779 c
55.09483 347.648473 50.011715 347.51499 45.112551 346.365595 c
40.213387 345.216199 35.601284 343.075083 31.561444 340.074647 c
27.521604 337.074212 24.139053 333.277605 21.622959 328.919603 c
19.106865 324.5616 17.510183 319.733921 16.931649 314.7351 c
16.353116 309.736278 16.804906 304.671521 18.259083 299.854023 c
19.713259 295.036525 22.139217 290.567677 25.386939 286.723822 c
28.634662 282.879968 32.635796 279.742007 37.142921 277.503984 c
37.548173 283.957504 39.645489 290.192 43.223208 295.578286 c
46.800927 300.964573 51.734504 305.315146 57.526042 308.190948 c
57.12079 314.644468 58.421709 321.092358 61.29751 326.883896 c
64.173311 332.675435 68.523885 337.609012 73.910171 341.186731 c
gsave
fill
grestore
stroke
grestore
0.900 0.900 0.500 setrgbcolor
gsave
133.4 128 7.2 228.9 clipbox
73.910171 341.186731 m
79.296458 337.609012 83.647031 332.675435 86.522833 326.883896 c
89.398634 321.092358 90.699553 314.644468 90.294301 308.190948 c
96.085839 305.315146 101.019416 300.964573 104.597135 295.578286 c
108.174854 290.192 110.27217 283.957504 110.677422 277.503984 c
115.184547 279.742007 119.185681 282.879968 122.433404 286.723822 c
125.681126 290.567677 128.107084 295.036525 129.56126 299.854023 c
131.015437 304.671521 131.467227 309.736278 130.888693 314.7351 c
130.31016 319.733921 128.713478 324.5616 126.197384 328.919603 c
123.68129 333.277605 120.298738 337.074212 116.258899 340.074647 c
112.219059 343.075083 107.606956 345.216199 102.707792 346.365595 c
97.808628 347.51499 92.725513 347.648473 87.772776 346.75779 c
82.820039 345.867107 78.101918 343.971004 73.910171 341.186731 c
gsave
fill
grestore
stroke
grestore
0.200 0.800 0.200 setrgbcolor
gsave
133.4 128 7.2 228.9 clipbox
73.910171 341.186731 m
68.523885 337.609012 64.173311 332.675435 61.29751 326.883896 c
58.421709 321.092358 57.12079 314.644468 57.526042 308.190948 c
62.617461 310.719103 68.225621 312.034836 73.910171 312.034836 c
79.594722 312.034836 85.202882 310.719103 90.294301 308.190948 c
90.699553 314.644468 89.398634 321.092358 86.522833 326.883896 c
83.647031 332.675435 79.296458 337.609012 73.910171 341.186731 c
gsave
fill
grestore
stroke
grestore
0.300 0.600 0.900 setrgbcolor
gsave
133.4 128 7.2 228.9 clipbox
37.142921 277.503984 m
36.827543 272.481688 37.54453 267.447624 39.249544 262.713087 c
40.954558 257.978549 43.611716 253.643184 47.056703 249.975081 c
50.501691 246.306978 54.662003 243.383338 59.280377 241.384952 c
63.89875 239.386566 68.877983 238.355494 73.910171 238.355494 c
78.94236 238.355494 83.921593 239.386566 88.539966 241.384952 c
93.158339 243.383338 97.318652 246.306978 100.76364 249.975081 c
104.208627 253.643184 106.865785 257.978549 108.570799 262.713087 c
110.275813 267.447624 110.9928 272.481688 110.677422 277.503984 c
104.885884 274.628183 98.437994 273.327264 91.984474 273.732516 c
85.530954 274.137769 79.296458 276.235085 73.910171 279.812804 c
68.523885 276.235085 62.289389 274.137769 55.835869 273.732516 c
49.382349 273.327264 42.934459 274.628183 37.142921 277.503984 c
gsave
fill
grestore
stroke
grestore
0.700 0.400 0.700 setrgbcolor
gsave
133.4 128 7.2 228.9 clipbox
37.142921 277.503984 m
42.934459 274.628183 49.382349 273.327264 55.835869 273.732516 c
62.289389 274.137769 68.523885 276.235085 73.910171 279.812804 c
69.175015 282.958024 65.231477 287.156966 62.389202 292.079931 c
59.546927 297.002897 57.882305 302.517572 57.526042 308.190948 c
51.734504 305.315146 46.800927 300.964573 43.223208 295.578286 c
39.645489 290.192 37.548173 283.957504 37.142921 277.503984 c
gsave
fill
grestore
stroke
grestore
0.400 0.400 1.000 setrgbcolor
gsave
133.4 128 7.2 228.9 clipbox
90.294301 308.190948 m
89.938038 302.517572 88.273416 297.002897 85.431141 292.079931 c
82.588866 287.156966 78.645328 282.958024 73.910171 279.812804 c
79.296458 276.235085 85.530954 274.137769 91.984474 273.732516 c
98.437994 273.327264 104.885884 274.628183 110.677422 277.503984 c
110.27217 283.957504 108.174854 290.192 104.597135 295.578286 c
101.019416 300.964573 96.085839 305.315146 90.294301 308.190948 c
gsave
fill
grestore
stroke
grestore
0.800 setgray
gsave
133.4 128 7.2 228.9 clipbox
57.526042 308.190948 m
57.882305 302.517572 59.546927 297.002897 62.389202 292.079931 c
65.231477 287.156966 69.175015 282.958024 73.910171 279.812804 c
78.645328 282.958024 82.588866 287.156966 85.431141 292.079931 c
88.273416 297.002897 89.938038 302.517572 90.294301 308.190948 c
85.202882 310.719103 79.594722 312.034836 73.910171 312.034836 c
68.225621 312.034836 62.617461 310.719103 57.526042 308.190948 c
gsave
fill
grestore
stroke
grestore
2.000 setlinewidth
0.000 setgray
gsave
133.4 128 7.2 228.9 clipbox
53.52705 273.660096 m
63.297045 273.660096 72.668201 277.541756 79.576631 284.450186 c
86.485061 291.358615 90.366721 300.729772 90.366721 310.499767 c
90.366721 320.269762 86.485061 329.640919 79.576631 336.549348 c
72.668201 343.457778 63.297045 347.339438 53.52705 347.339438 c
43.757055 347.339438 34.385898 343.457778 27.477468 336.549348 c
20.569039 329.640919 16.687379 320.269762 16.687379 310.499767 c
16.687379 300.729772 20.569039 291.358615 27.477468 284.450186 c
34.385898 277.541756 43.757055 273.660096 53.52705 273.660096 c
53.52705 273.660096 l
cl
stroke
grestore
gsave
133.4 128 7.2 228.9 clipbox
94.293293 273.660096 m
104.063288 273.660096 113.434445 277.541756 120.342874 284.450186 c
127.251304 291.358615 131.132964 300.729772 131.132964 310.499767 c
131.132964 320.269762 127.251304 329.640919 120.342874 336.549348 c
113.434445 343.457778 104.063288 347.339438 94.293293 347.339438 c
84.523298 347.339438 75.152141 343.457778 68.243712 336.549348 c
61.335282 329.640919 57.453622 320.269762 57.453622 310.499767 c
57.453622 300.729772 61.335282 291.358615 68.243712 284.450186 c
75.152141 277.541756 84.523298 273.660096 94.293293 273.660096 c
94.293293 273.660096 l
cl
stroke
grestore
gsave
133.4 128 7.2 228.9 clipbox
73.910171 238.355494 m
83.680166 238.355494 93.051323 242.237154 99.959753 249.145583 c
106.868182 256.054013 110.749843 265.42517 110.749843 275.195165 c
110.749843 284.96516 106.868182 294.336316 99.959753 301.244746 c
93.051323 308.153176 83.680166 312.034836 73.910171 312.034836 c
64.140176 312.034836 54.76902 308.153176 47.86059 301.244746 c
40.95216 294.336316 37.0705 284.96516 37.0705 275.195165 c
37.0705 265.42517 40.95216 256.054013 47.86059 249.145583 c
54.76902 242.237154 64.140176 238.355494 73.910171 238.355494 c
73.910171 238.355494 l
cl
stroke
grestore
gsave
31.091223 319.251910 translate
0.000000 rotate
/Cmr10 findfont
10.0 scalefont
setfont
0.000000 0.343750 moveto
/one glyphshow
grestore
gsave
111.729120 319.251910 translate
0.000000 rotate
/Cmr10 findfont
10.0 scalefont
setfont
0.000000 0.343750 moveto
/one glyphshow
grestore
gsave
71.410171 319.588060 translate
0.000000 rotate
/Cmr10 findfont
10.0 scalefont
setfont
0.000000 0.343750 moveto
/two glyphshow
grestore
gsave
71.410171 249.417442 translate
0.000000 rotate
/Cmr10 findfont
10.0 scalefont
setfont
0.000000 0.343750 moveto
/zero glyphshow
grestore
gsave
50.959583 284.166601 translate
0.000000 rotate
/Cmr10 findfont
10.0 scalefont
setfont
0.000000 0.343750 moveto
/one glyphshow
grestore
gsave
91.860760 284.166601 translate
0.000000 rotate
/Cmr10 findfont
10.0 scalefont
setfont
0.000000 0.343750 moveto
/one glyphshow
grestore
gsave
71.410171 295.973754 translate
0.000000 rotate
/Cmr10 findfont
10.0 scalefont
setfont
0.000000 0.343750 moveto
/two glyphshow
grestore
/BitstreamVeraSans-Roman findfont
16.000 scalefont
setfont
gsave
24.138464 347.339438 translate
0.000000 rotate
0.000000 0.000000 m /X glyphshow
grestore
gsave
112.713129 347.339438 translate
0.000000 rotate
0.000000 0.000000 m /Y glyphshow
grestore
gsave
68.425796 222.515276 translate
0.000000 rotate
0.000000 0.000000 m /Z glyphshow
grestore
/BitstreamVeraSans-Roman findfont
14.400 scalefont
setfont
gsave
73.910171 394.701817 translate
0.000000 rotate
grestore
gsave
42.910171 378.595567 translate
0.000000 rotate
/BitstreamVeraSans-Roman findfont
14.399999999999999 scalefont
setfont
0.000000 0.203125 moveto
/space glyphshow
4.569397 0.203125 moveto
/space glyphshow
/Cmsy10 findfont
14.399999999999999 scalefont
setfont
9.138794 0.203125 moveto
/bar glyphshow
/Cmmi10 findfont
14.399999999999999 scalefont
setfont
13.122910 0.203125 moveto
/X glyphshow
/Cmsy10 findfont
14.399999999999999 scalefont
setfont
25.040146 0.203125 moveto
/bar glyphshow
/Cmr10 findfont
14.399999999999999 scalefont
setfont
31.551053 0.203125 moveto
/plus glyphshow
/Cmsy10 findfont
14.399999999999999 scalefont
setfont
45.257272 0.203125 moveto
/bar glyphshow
/Cmmi10 findfont
14.399999999999999 scalefont
setfont
49.241388 0.203125 moveto
/Y glyphshow
/Cmsy10 findfont
14.399999999999999 scalefont
setfont
57.589075 0.203125 moveto
/bar glyphshow
grestore
gsave
73.910171 361.826817 translate
0.000000 rotate
grestore
1.000 setlinewidth
0.000 0.750 0.750 setrgbcolor
gsave
133.4 128 203.1 228.9 clipbox
269.850103 341.186731 m
265.658356 343.971004 260.940235 345.867107 255.987498 346.75779 c
251.034761 347.648473 245.951646 347.51499 241.052482 346.365595 c
236.153318 345.216199 231.541215 343.075083 227.501375 340.074647 c
223.461536 337.074212 220.078984 333.277605 217.56289 328.919603 c
215.046796 324.5616 213.450114 319.733921 212.871581 314.7351 c
212.293047 309.736278 212.744837 304.671521 214.199014 299.854023 c
215.653191 295.036525 218.079148 290.567677 221.326871 286.723822 c
224.574593 282.879968 228.575727 279.742007 233.082852 277.503984 c
233.488104 283.957504 235.585421 290.192 239.163139 295.578286 c
242.740858 300.964573 247.674435 305.315146 253.465974 308.190948 c
253.060721 314.644468 254.36164 321.092358 257.237442 326.883896 c
260.113243 332.675435 264.463817 337.609012 269.850103 341.186731 c
gsave
fill
grestore
stroke
grestore