-
Notifications
You must be signed in to change notification settings - Fork 3
/
jensen_idea.eps
3663 lines (3415 loc) · 65.7 KB
/
jensen_idea.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: jensen_idea.eps
%%Creator: matplotlib version 1.5.1, http://matplotlib.org/
%%CreationDate: Thu Jun 9 13:55:31 2016
%%Orientation: portrait
%%BoundingBox: 60 208 551 583
%%EndComments
%%BeginProlog
/mpldict 13 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: 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 [ /similar /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 2 dict dup begin
/similar{{777 0 56 133 721 367 _sc
70 133 _m
62 133 58 141 56 158 _c
56 164 _l
56 215 71 262 102 304 _c
132 346 172 367 222 367 _c
252 367 280 359 305 344 _c
330 329 359 306 393 276 _c
426 246 454 224 477 210 _c
499 196 525 189 555 189 _c
581 189 605 196 626 210 _c
646 224 663 243 675 267 _c
687 291 693 316 693 342 _c
695 358 699 367 707 367 _c
714 367 719 358 721 342 _c
}_e{721 336 _l
721 304 714 272 701 240 _c
687 208 668 183 643 163 _c
617 143 588 133 555 133 _c
524 133 497 140 473 154 _c
449 168 421 191 387 221 _c
353 251 325 274 301 289 _c
277 303 251 311 222 311 _c
196 311 172 303 151 289 _c
130 275 114 256 102 232 _c
90 208 84 184 84 158 _c
82 141 77 133 70 133 _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: STIXNonUnicode-Italic
%%Copyright: Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, 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 /STIXNonUnicode-Italic def
/PaintType 0 def
/FontMatrix[.001 0 0 .001 0 0]def
/FontBBox[-141 -240 1128 795]def
/FontType 3 def
/Encoding [ /uniE156 ] def
/FontInfo 10 dict dup begin
/FamilyName (STIXNonUnicode) def
/FullName (STIXNonUnicode-Italic) def
/Notice (Copyright (c) 2001-2010 by the STI Pub Companies, consisting of the American Chemical Society, the American Institute of Physics, the American Mathematical Society, the American Physical Society, Elsevier, Inc., and The Institute of Electrical and Electronic Engineers, Inc. Portions copyright (c) 1998-2003 by MicroPress, Inc. Portions copyright (c) 1990 by Elsevier, Inc. All rights reserved. STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc.) def
/Weight (Italic) def
/Version (Version 1.0.0) def
/ItalicAngle -17.43909 def
/isFixedPitch false def
/UnderlinePosition -107 def
/UnderlineThickness 53 def
end readonly def
/CharStrings 1 dict dup begin
/uniE156{639 0 17 0 664 653 _sc
664 653 _m
655 616 _l
336 616 _l
267 354 _l
549 354 _l
538 317 _l
257 317 _l
182 37 _l
538 37 _l
530 0 _l
17 0 _l
192 653 _l
664 653 _l
299 616 _m
221 616 _l
65 37 _l
145 37 _l
299 616 _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: 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 [ /comma /x /U /Y /f /p /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 7 dict dup begin
/comma{277 0 84 -193 205 110 _sc
99 -179 _m
99 -176 100 -173 103 -171 _c
127 -147 145 -120 159 -90 _c
172 -60 179 -28 179 4 _c
179 16 _l
168 5 155 0 139 0 _c
123 0 110 5 100 16 _c
89 26 84 39 84 55 _c
84 71 89 84 100 94 _c
110 104 123 110 139 110 _c
163 110 180 99 190 77 _c
200 55 205 30 205 4 _c
205 -32 197 -67 183 -101 _c
168 -134 147 -164 120 -191 _c
117 -192 115 -193 114 -193 _c
110 -193 107 -191 104 -188 _c
100 -185 99 -182 99 -179 _c
_cl}_d
/x{{571 0 31 -10 526 442 _sc
78 29 _m
90 19 106 15 128 15 _c
148 15 167 25 183 45 _c
199 65 210 87 216 111 _c
261 288 _l
268 320 272 342 272 354 _c
272 370 267 385 258 397 _c
248 409 235 416 219 416 _c
198 416 178 409 160 396 _c
141 382 125 365 113 345 _c
100 325 91 304 86 284 _c
84 280 82 278 78 278 _c
66 278 _l
60 278 58 281 58 287 _c
58 290 _l
}_e{64 314 75 338 91 362 _c
107 386 126 405 149 420 _c
171 434 195 442 221 442 _c
245 442 267 435 287 422 _c
307 409 321 391 329 369 _c
340 389 354 407 372 421 _c
390 435 409 442 431 442 _c
445 442 460 439 475 434 _c
490 429 502 421 512 411 _c
521 401 526 388 526 372 _c
526 355 520 340 509 328 _c
498 316 484 310 468 310 _c
457 310 448 313 441 320 _c
}_e{433 327 430 336 430 346 _c
430 360 434 372 444 383 _c
454 393 465 400 479 402 _c
467 411 450 416 429 416 _c
407 416 389 406 373 386 _c
357 366 346 344 340 320 _c
296 143 _l
288 116 285 94 285 77 _c
285 60 289 45 299 33 _c
309 21 322 15 338 15 _c
369 15 397 28 421 56 _c
445 84 462 114 470 147 _c
471 151 474 153 478 153 _c
490 153 _l
492 153 494 152 496 150 _c
}_e{498 148 499 146 499 144 _c
499 143 498 142 498 141 _c
488 101 468 66 438 36 _c
408 5 374 -10 336 -10 _c
311 -10 289 -3 269 9 _c
249 21 236 39 228 62 _c
217 42 202 25 184 11 _c
166 -3 146 -10 126 -10 _c
111 -10 96 -7 81 -3 _c
66 1 54 9 45 19 _c
35 29 31 43 31 59 _c
31 75 36 89 47 102 _c
57 114 71 121 88 121 _c
}_e{98 121 107 117 115 111 _c
123 104 127 95 127 85 _c
127 71 122 58 113 48 _c
103 38 92 31 78 29 _c
_cl}_e}_d
/U{{682 0 66 -21 762 683 _sc
147 139 _m
147 115 151 93 161 74 _c
171 54 185 39 203 29 _c
221 18 242 13 267 13 _c
295 13 323 18 351 30 _c
378 42 402 58 424 79 _c
446 100 464 124 480 151 _c
495 177 506 204 513 230 _c
603 591 _l
604 598 605 603 605 606 _c
605 634 579 648 528 648 _c
521 648 518 652 518 661 _c
520 669 521 675 523 678 _c
524 681 528 683 535 683 _c
}_e{752 683 _l
754 683 757 681 759 678 _c
761 675 762 672 762 670 _c
762 669 761 666 760 662 _c
758 657 757 653 755 651 _c
753 649 751 648 749 648 _c
685 648 648 627 638 587 _c
548 226 _l
540 194 528 164 510 135 _c
492 105 470 79 444 55 _c
418 31 390 12 359 -1 _c
328 -14 296 -21 264 -21 _c
227 -21 193 -13 163 2 _c
133 18 109 40 92 69 _c
74 98 66 132 66 170 _c
}_e{66 192 68 212 73 230 _c
170 618 _l
171 624 172 629 172 632 _c
172 639 168 643 160 644 _c
147 646 123 648 88 648 _c
81 648 78 652 78 661 _c
80 669 82 675 83 678 _c
84 681 88 683 95 683 _c
364 683 _l
370 683 374 678 374 670 _c
374 668 373 665 372 661 _c
371 657 370 654 368 652 _c
366 649 364 648 361 648 _c
320 648 292 645 276 641 _c
267 637 261 628 257 614 _c
}_e{160 226 _l
151 190 147 161 147 139 _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
/f{{489 0 53 -204 552 705 _sc
97 -164 _m
109 -173 124 -178 142 -178 _c
166 -178 185 -151 200 -99 _c
206 -73 223 9 251 151 _c
297 396 _l
211 396 _l
204 396 201 400 201 409 _c
203 423 208 431 214 431 _c
303 431 _l
315 496 _l
319 516 322 533 326 548 _c
329 562 332 576 336 588 _c
340 600 345 614 353 630 _c
364 652 379 670 399 684 _c
418 698 439 705 462 705 _c
476 705 490 702 504 697 _c
}_e{518 691 529 683 538 673 _c
547 662 552 649 552 635 _c
552 617 546 602 535 590 _c
523 578 510 572 494 572 _c
483 572 474 575 466 582 _c
458 588 455 597 455 608 _c
455 622 460 635 470 646 _c
480 657 492 663 507 665 _c
494 674 479 679 461 679 _c
451 679 441 674 432 665 _c
423 655 417 645 415 635 _c
411 617 401 571 387 497 _c
375 431 _l
478 431 _l
484 431 488 426 488 418 _c
}_e{487 416 486 413 485 409 _c
484 405 483 401 481 399 _c
479 397 477 396 475 396 _c
368 396 _l
322 152 _l
316 116 309 80 301 44 _c
293 8 283 -29 269 -68 _c
255 -106 238 -139 216 -165 _c
194 -191 169 -204 140 -204 _c
117 -204 97 -197 79 -185 _c
61 -172 53 -155 53 -134 _c
53 -116 58 -101 69 -89 _c
80 -77 94 -71 111 -71 _c
121 -71 130 -74 138 -81 _c
146 -87 150 -96 150 -107 _c
}_e{150 -121 144 -134 134 -146 _c
123 -158 111 -164 97 -164 _c
_cl}_e}_d
/p{{503 0 -33 -193 491 442 _sc
-24 -193 _m
-30 -193 -33 -188 -33 -180 _c
-31 -165 -26 -158 -20 -158 _c
0 -158 14 -156 22 -152 _c
30 -148 37 -139 42 -124 _c
155 325 _l
159 337 162 353 162 373 _c
162 401 152 416 133 416 _c
112 416 96 403 86 378 _c
76 353 66 322 57 284 _c
57 280 54 278 49 278 _c
37 278 _l
35 278 34 279 32 281 _c
30 283 29 286 29 288 _c
}_e{36 317 43 342 50 362 _c
56 382 67 400 81 417 _c
95 433 112 442 134 442 _c
156 442 176 435 194 422 _c
211 409 222 392 227 370 _c
245 391 265 408 287 422 _c
309 435 332 442 356 442 _c
384 442 408 434 429 419 _c
449 404 465 384 475 360 _c
485 336 491 310 491 282 _c
491 239 480 195 458 149 _c
436 103 406 65 369 35 _c
331 5 291 -10 248 -10 _c
}_e{228 -10 211 -4 195 6 _c
179 16 166 31 158 49 _c
113 -128 _l
111 -138 110 -143 110 -145 _c
110 -153 132 -158 176 -158 _c
182 -158 186 -162 186 -171 _c
184 -179 182 -185 180 -188 _c
178 -191 175 -193 169 -193 _c
-24 -193 _l
249 15 _m
272 15 293 24 313 43 _c
333 62 349 84 362 108 _c
370 126 379 147 387 173 _c
395 199 402 226 408 256 _c
414 285 417 308 417 326 _c
}_e{417 341 415 355 411 369 _c
407 382 400 393 391 402 _c
381 411 369 416 354 416 _c
329 416 306 407 284 390 _c
262 372 243 351 226 325 _c
226 322 _l
171 101 _l
175 77 184 56 197 40 _c
210 23 227 15 249 15 _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
%!PS-Adobe-3.0 Resource-Font
%%Title: cmex10
%%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 /Cmex10 def
/PaintType 0 def
/FontMatrix[.001 0 0 .001 0 0]def
/FontBBox[-24 -2960 1454 772]def
/FontType 3 def
/Encoding [ /braceleftbig /bracerightbig ] def
/FontInfo 10 dict dup begin
/FamilyName (cmex10) def
/FullName (cmex10) 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 2 dict dup begin
/braceleftbig{{583 0 111 -1158 471 40 _sc
255 -1003 _m
255 -711 _l
255 -688 248 -667 235 -649 _c
221 -630 205 -615 185 -603 _c
165 -591 142 -581 118 -573 _c
113 -570 111 -567 111 -565 _c
111 -553 _l
111 -548 113 -545 118 -545 _c
156 -531 189 -513 215 -491 _c
241 -468 255 -440 255 -406 _c
255 -114 _l
255 -71 274 -38 313 -14 _c
352 9 398 27 451 40 _c
463 40 _l
465 40 466 39 468 38 _c
470 36 471 34 471 32 _c
}_e{471 20 _l
471 16 469 13 465 12 _c
427 1 395 -14 368 -35 _c
341 -56 328 -83 328 -116 _c
328 -408 _l
328 -447 312 -478 282 -501 _c
251 -524 212 -543 165 -559 _c
211 -573 249 -591 281 -614 _c
312 -637 328 -669 328 -709 _c
328 -1001 _l
328 -1023 334 -1043 348 -1060 _c
362 -1076 379 -1090 399 -1102 _c
419 -1113 441 -1122 465 -1130 _c
469 -1131 471 -1134 471 -1138 _c
471 -1150 _l
471 -1152 470 -1153 468 -1155 _c
}_e{466 -1157 465 -1158 463 -1158 _c
451 -1158 _l
417 -1149 386 -1139 358 -1128 _c
330 -1116 305 -1100 285 -1079 _c
265 -1058 255 -1033 255 -1003 _c
_cl}_e}_d
/bracerightbig{{583 0 111 -1158 471 40 _sc
111 -1150 _m
111 -1138 _l
111 -1133 113 -1130 118 -1130 _c
209 -1100 255 -1057 255 -1001 _c
255 -709 _l
255 -643 309 -593 417 -559 _c
370 -543 331 -523 301 -500 _c
270 -477 255 -446 255 -408 _c
255 -116 _l
255 -59 209 -16 118 12 _c
113 13 111 16 111 20 _c
111 32 _l
111 37 114 40 120 40 _c
132 40 _l
185 27 231 9 270 -14 _c
308 -38 328 -71 328 -114 _c
328 -406 _l
}_e{328 -439 341 -467 368 -490 _c
394 -512 427 -531 465 -545 _c
469 -546 471 -549 471 -553 _c
471 -565 _l
471 -567 469 -569 465 -573 _c
443 -580 422 -590 401 -603 _c
379 -615 362 -631 348 -649 _c
334 -667 328 -688 328 -711 _c
328 -1003 _l
328 -1033 317 -1058 297 -1079 _c
276 -1100 252 -1116 224 -1128 _c
196 -1139 166 -1149 132 -1158 _c
120 -1158 _l
117 -1158 115 -1157 113 -1155 _c
111 -1153 111 -1152 111 -1150 _c
_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: 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 /zero /one /two /three /four /six /R /a /b /e /h /m /r /t /minus ] 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 16 dict dup begin
/space{318 0 0 0 0 0 _sc
}_d
/zero{636 0 66 -13 570 742 _sc
318 664 _m
267 664 229 639 203 589 _c
177 539 165 464 165 364 _c
165 264 177 189 203 139 _c
229 89 267 64 318 64 _c
369 64 407 89 433 139 _c
458 189 471 264 471 364 _c
471 464 458 539 433 589 _c
407 639 369 664 318 664 _c
318 742 _m
399 742 461 709 505 645 _c
548 580 570 486 570 364 _c
570 241 548 147 505 83 _c
461 19 399 -13 318 -13 _c
236 -13 173 19 130 83 _c
87 147 66 241 66 364 _c
66 486 87 580 130 645 _c
173 709 236 742 318 742 _c
_cl}_d
/one{636 0 110 0 544 729 _sc
124 83 _m
285 83 _l
285 639 _l
110 604 _l
110 694 _l
284 729 _l
383 729 _l
383 83 _l
544 83 _l
544 0 _l
124 0 _l
124 83 _l
_cl}_d
/two{{636 0 73 0 536 742 _sc
192 83 _m
536 83 _l
536 0 _l
73 0 _l
73 83 _l
110 121 161 173 226 239 _c
290 304 331 346 348 365 _c
380 400 402 430 414 455 _c
426 479 433 504 433 528 _c
433 566 419 598 392 622 _c
365 646 330 659 286 659 _c
255 659 222 653 188 643 _c
154 632 117 616 78 594 _c
78 694 _l
118 710 155 722 189 730 _c
223 738 255 742 284 742 _c
}_e{359 742 419 723 464 685 _c
509 647 532 597 532 534 _c
532 504 526 475 515 449 _c
504 422 484 390 454 354 _c
446 344 420 317 376 272 _c
332 227 271 164 192 83 _c
_cl}_e}_d
/three{{636 0 76 -13 556 742 _sc
406 393 _m
453 383 490 362 516 330 _c
542 298 556 258 556 212 _c
556 140 531 84 482 45 _c
432 6 362 -13 271 -13 _c
240 -13 208 -10 176 -4 _c
144 1 110 10 76 22 _c
76 117 _l
103 101 133 89 166 81 _c
198 73 232 69 268 69 _c
330 69 377 81 409 105 _c
441 129 458 165 458 212 _c
458 254 443 288 413 312 _c
383 336 341 349 287 349 _c
}_e{202 349 _l
202 430 _l
291 430 _l
339 430 376 439 402 459 _c
428 478 441 506 441 543 _c
441 580 427 609 401 629 _c
374 649 336 659 287 659 _c
260 659 231 656 200 650 _c
169 644 135 635 98 623 _c
98 711 _l
135 721 170 729 203 734 _c
235 739 266 742 296 742 _c
370 742 429 725 473 691 _c
517 657 539 611 539 553 _c
539 513 527 479 504 451 _c
481 423 448 403 406 393 _c
_cl}_e}_d
/four{636 0 49 0 580 729 _sc
378 643 _m
129 254 _l
378 254 _l
378 643 _l
352 729 _m
476 729 _l
476 254 _l
580 254 _l
580 172 _l
476 172 _l
476 0 _l
378 0 _l
378 172 _l
49 172 _l
49 267 _l
352 729 _l
_cl}_d
/six{{636 0 70 -13 573 742 _sc
330 404 _m
286 404 251 388 225 358 _c
199 328 186 286 186 234 _c
186 181 199 139 225 109 _c
251 79 286 64 330 64 _c
374 64 409 79 435 109 _c
461 139 474 181 474 234 _c
474 286 461 328 435 358 _c
409 388 374 404 330 404 _c
526 713 _m
526 623 _l
501 635 476 644 451 650 _c
425 656 400 659 376 659 _c
310 659 260 637 226 593 _c
}_e{192 549 172 482 168 394 _c
187 422 211 444 240 459 _c
269 474 301 482 336 482 _c
409 482 467 459 509 415 _c
551 371 573 310 573 234 _c
573 159 550 99 506 54 _c
462 9 403 -13 330 -13 _c
246 -13 181 19 137 83 _c
92 147 70 241 70 364 _c
70 479 97 571 152 639 _c
206 707 280 742 372 742 _c
396 742 421 739 447 735 _c
472 730 498 723 526 713 _c
_cl}_e}_d
/R{{695 0 98 0 666 729 _sc
444 342 _m
465 334 486 319 506 296 _c
526 272 546 240 566 199 _c
666 0 _l
560 0 _l
467 187 _l
443 235 419 268 397 284 _c
374 300 343 308 304 308 _c
197 308 _l
197 0 _l
98 0 _l
98 729 _l
321 729 _l
404 729 466 711 507 677 _c
548 642 569 589 569 519 _c
569 473 558 434 537 404 _c
515 374 484 353 444 342 _c
197 648 _m
197 389 _l
321 389 _l
}_e{368 389 404 400 428 422 _c
452 444 465 476 465 519 _c
465 561 452 593 428 615 _c
404 637 368 648 321 648 _c
197 648 _l
_cl}_e}_d
/a{{613 0 60 -13 522 560 _sc
343 275 _m
270 275 220 266 192 250 _c
164 233 150 205 150 165 _c
150 133 160 107 181 89 _c
202 70 231 61 267 61 _c
317 61 357 78 387 114 _c
417 149 432 196 432 255 _c
432 275 _l
343 275 _l
522 312 _m
522 0 _l
432 0 _l
432 83 _l
411 49 385 25 355 10 _c
325 -5 287 -13 243 -13 _c
187 -13 142 2 109 33 _c
76 64 60 106 60 159 _c
}_e{60 220 80 266 122 298 _c
163 329 224 345 306 345 _c
432 345 _l
432 354 _l
432 395 418 427 391 450 _c
364 472 326 484 277 484 _c
245 484 215 480 185 472 _c
155 464 127 453 100 439 _c
100 522 _l
132 534 164 544 195 550 _c
226 556 256 560 286 560 _c
365 560 424 539 463 498 _c
502 457 522 395 522 312 _c
_cl}_e}_d
/b{{635 0 91 -13 580 760 _sc
487 273 _m
487 339 473 390 446 428 _c
418 466 381 485 334 485 _c
286 485 249 466 222 428 _c
194 390 181 339 181 273 _c
181 207 194 155 222 117 _c
249 79 286 61 334 61 _c
381 61 418 79 446 117 _c
473 155 487 207 487 273 _c
181 464 _m
199 496 223 520 252 536 _c
281 552 316 560 356 560 _c
422 560 476 533 518 481 _c
559 428 580 359 580 273 _c
}_e{580 187 559 117 518 65 _c
476 13 422 -13 356 -13 _c
316 -13 281 -5 252 10 _c
223 25 199 49 181 82 _c
181 0 _l
91 0 _l
91 760 _l
181 760 _l
181 464 _l
_cl}_e}_d
/e{{615 0 55 -13 562 560 _sc
562 296 _m
562 252 _l
149 252 _l
153 190 171 142 205 110 _c
238 78 284 62 344 62 _c
378 62 412 66 444 74 _c
476 82 509 95 541 113 _c
541 28 _l
509 14 476 3 442 -3 _c
408 -9 373 -13 339 -13 _c
251 -13 182 12 131 62 _c
80 112 55 181 55 268 _c
55 357 79 428 127 481 _c
175 533 241 560 323 560 _c
397 560 455 536 498 489 _c
}_e{540 441 562 377 562 296 _c
472 322 _m
471 371 457 410 431 440 _c
404 469 368 484 324 484 _c
274 484 234 469 204 441 _c
174 413 156 373 152 322 _c
472 322 _l
_cl}_e}_d
/h{634 0 91 0 549 760 _sc
549 330 _m
549 0 _l
459 0 _l
459 327 _l
459 379 448 417 428 443 _c
408 469 378 482 338 482 _c
289 482 251 466 223 435 _c
195 404 181 362 181 309 _c
181 0 _l
91 0 _l
91 760 _l
181 760 _l
181 462 _l
202 494 227 519 257 535 _c
286 551 320 560 358 560 _c
420 560 468 540 500 501 _c
532 462 549 405 549 330 _c
_cl}_d
/m{{974 0 91 0 889 560 _sc
520 442 _m
542 482 569 511 600 531 _c
631 550 668 560 711 560 _c
767 560 811 540 842 500 _c
873 460 889 403 889 330 _c
889 0 _l
799 0 _l
799 327 _l
799 379 789 418 771 444 _c
752 469 724 482 686 482 _c