-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.eps
2962 lines (2960 loc) · 60.6 KB
/
1.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
%%BoundingBox: 0 0 772 591
%%LanguageLevel: 2
%%Creator: OriginLab Corporation
%%Title: (C:\Users\Dicky\Desktop\report_10\1.eps)
%%CreationDate: Tue Dec 12 23:26:29 2017
%%EndComments
/OriginLab::PSL1 128 dict dup begin def
/Save0 save def
%%BeginResource: procset OriginLab::PSL1
/wd{1 index where{pop pop pop}{bind def}ifelse}bind def
/setcmykcolor{1 sub 4 1 roll 3{3 index add neg dup 0 lt{pop 0}if 3 1 roll}repeat setrgbcolor pop}wd
/selectfont{dup type/arraytype eq{exch findfont exch makefont setfont}{exch findfont exch scalefont setfont}ifelse}wd
/xshow{1 index length 0 le{}{currentpoint exch 3 index length 1 sub 0 exch 1 exch{dup 5 index exch 1 getinterval show 3 index exch get add 2 copy exch moveto}for pop pop}ifelse pop pop}wd
/glyphshow{matrix currentmatrix exch currentfont dup/FontMatrix get concat currentpoint translate
dup/Metrics get 2 index get 0 4 2 roll gsave/CharProcs get exch 2 copy known not{pop/.notdef}if
get exec fill grestore moveto setmatrix}wd
/grayimage/image load def/rgbtogray{cvx exec dup length 3 idiv 1 sub 0 exch 1 exch{dup 3 mul dup 3 index exch get 255 div .3 mul exch
1 add dup 4 index exch get 255 div .59 mul exch 1 add 4 index exch get 255 div .11 mul add add
255 mul dup 255 gt{255}if round cvi 2 index 3 1 roll put}for dup length 3 idiv 0 exch getinterval}bind def
/colorimage{0 setgray pop pop cvlit/rgbtogray cvx 2 packedarray cvx grayimage}wd
/bd{bind def}bind def/ld{load def}bd/ed{exch def}bd/xd{cvx def}bd
/np/newpath ld/a/arc ld/m/moveto ld/l/lineto ld/c/curveto ld/rm/rmoveto ld/rl/rlineto ld/rc/rcurveto ld/cp/closepath ld/cpt/currentpoint ld
/tr/translate ld/sc/scale ld/ro/rotate ld/t/transform ld/it/itransform ld/dt/dtransform ld/idt/idtransform ld
/mtx/matrix ld/cmtx/currentmatrix ld/dmtx/defaultmatrix ld/smtx/setmatrix ld/catmtx/concatmatrix ld
/sw/setlinewidth ld/scap/setlinecap ld/sj/setlinejoin ld/sm/setmiterlimit ld/sd/setdash ld/rgb/setrgbcolor ld/crgb/currentrgbcolor ld/cmyk/setcmykcolor ld/gs/gsave ld/gr/grestore ld
/st/stroke ld/fi/fill ld/eofi/eofill ld/cl/clip ld/eocl/eoclip ld
/df/definefont ld/ff/findfont ld/sf/setfont ld/scf/scalefont ld/self/selectfont ld/cf/currentfont ld
/s/show ld/xs/xshow ld/gls/glyphshow ld/xgls{cpt 3 1 roll add exch 3 -1 roll gls m}bd
/cd/currentdict ld/i/index ld
/DrawBox{4 2 roll m 1 index 0 rl 0 exch rl neg 0 rl cp}bd
/plus.re { 6 { 3 index } repeat moveto 0 exch rlineto 0 rlineto pop pop neg 0 exch rlineto pop lineto closepath } def
/DrawBcc{4 2 roll m 2 copy 0 lt exch 0 lt xor{dup 0 exch rl exch 0 rl neg 0 exch rl}{exch dup 0 rl exch 0 exch rl neg 0 rl}ifelse cp}bd
/rectline{dup type/arraytype eq{dup length 0 exch 4 exch 4 sub{0 1 3{3 copy add get 4 1 roll pop}for pop 5 1 roll DrawBox}for pop}{DrawBox}ifelse}bd
/rectpath{dup type/arraytype eq{dup length 0 exch 4 exch 4 sub{0 1 3{3 copy add get 4 1 roll pop}for pop 5 1 roll DrawBcc}for pop}{DrawBcc}ifelse}bd
/pathproc{[{/m cvx}{/l cvx}{/c cvx}{/cp cvx}pathforall]cvx}bd
/L1img/image ld/L1idx[{0}
{dup 7 and 3 1 roll -3 bitshift get exch 7 sub 1 mul bitshift 1 and}bind 1 index dup
{dup 1 and 3 1 roll -1 bitshift get exch 1 sub 4 mul bitshift 15 and}bind 1 index dup dup
{get}bind]def
/image{dup type/dicttype eq {dup/ImgCS get 0 get/Indexed eq}{false}ifelse
{begin Width Height 8 ImageMatrix {rgb_string rgb_lookup
cd/DataSource get dup type/filetype eq
{mystring readstring pop}{exec}ifelse
dup length 0 ne
{L1idx BitsPerComponent get 0 1 Width 1 sub
{3 copy exch exec exch 3 mul exch
3 mul dup 5 index exch get exch 1 add dup 6 index exch get exch 1 add 6 index exch get
7 index exch 4 index 2 add exch put 6 index exch 3 index 1 add exch put 5 index exch 2 index exch put pop
}for pop pop pop }{pop pop pop ()}ifelse }false 3 colorimage end} {dup type/dicttype eq
{{dup mark exch L1img pop pop}stopped{cleartomark begin Width Height BitsPerComponent ImageMatrix
{cd/DataSource get dup type/filetype eq {mystring readstring pop}{exec}ifelse
}false 3 colorimage end} if}{L1img}ifelse}ifelse
}bd
/L1imgmask/imagemask ld/imagemask{dup type/dicttype eq
{{dup mark exch L1imgmask pop pop}stopped {cleartomark begin Width Height polarityflag ImageMatrix
{cd/DataSource get dup type/filetype eq {mystring readstring pop}{exec}ifelse
}L1imgmask end}if}{L1imgmask}ifelse
}bd
% Gradient function
/GradientStep 1 150 div def
/GradientStartRGB { /R1 exch def /G1 exch def /B1 exch def } def
/GradientEndRGB { /R2 exch def /G2 exch def /B2 exch def
/GradientSteps GradientLength GradientStep div def
/GradientRStep R2 R1 sub GradientSteps div def
/GradientGStep G2 G1 sub GradientSteps div def
/GradientBStep B2 B1 sub GradientSteps div def
} def
/GradientStepRGB { /R1 R1 GradientRStep add def
/G1 G1 GradientGStep add def
/B1 B1 GradientBStep add def
R1 G1 B1 setrgbcolor
} def
%%EndResource
/rectclip{np rectpath clip np}wd
/rectfill{gs np rectpath fi gr}wd
/rectstroke{gs np dup type/arraytype eq{dup length 6 eq}{false}ifelse{1 index type/arraytype eq{exch}{5 1 roll}ifelse rectline concat st}{rectline st}ifelse gr}wd
%%BeginResource: procset OriginLab::Image
/OriginLab::Image 32 dict dup begin
/BinProc{[currentfile mystring /readstring cvx /pop cvx] cvx bind}bd
/HexProc{[currentfile mystring /readhexstring cvx /pop cvx] cvx bind}bd
/Ascii85Proc{currentfile /ASCII85Decode filter}bd
/LZWA85{currentfile /ASCII85Decode filter /LZWDecode filter}bd
/ImgProcArray[/BinProc /HexProc /Ascii85Proc /LZWA85]def
/ImgDict{/ImgDict 16 dict def ImgDict dup begin /ImageType 1 def /MultipleDataSource false def end}bd
/L2Dec{{[1 0]}{[0 1]}ifelse}bd
/BegImg{ /Img_sv save def
/ImgDir ed ImgProcArray exch get /ImgProc exch ld
dup /polarityflag ed L2Dec /polarity ed /smoothflag ed
tr /dx 2 index def /dy 1 index abs def sc
string /mystring ed /bpc ed /ih ed /iw ed
}bd
/EndImg {Img_sv restore}bd
/DoXImg{ /rgb_lookup ed /hival ed ImgDict dup begin
[/Indexed /DeviceRGB hival rgb_lookup] /L1img where{pop/ImgCS ed}{setcolorspace}ifelse
/rgb_string iw 3 mul string def
/Width iw def
/Height ih def
/Decode [0 1 bpc{2 mul}repeat 1 sub] def
/ImageMatrix
ImgDir 0 eq{[iw 0 0 ih 0 0]}if
ImgDir 1 eq{[iw neg 0 0 ih iw 0]}if
ImgDir 2 eq{[iw 0 0 ih neg 0 ih]}if
ImgDir 3 eq{[iw neg 0 0 ih neg iw ih]}if
def
/DataSource ImgProc def
/BitsPerComponent bpc def
/Interpolate smoothflag def
end image}bd
/DoImg{ ImgDict dup begin
[/DeviceRGB] /L1img where{pop/ImgCS ed}{setcolorspace}ifelse
/rgb_string iw 3 mul string def
/Width iw def
/Height ih def
/Decode [0 1 0 1 0 1] def
/ImageMatrix
ImgDir 0 eq{[iw 0 0 ih 0 0]}if
ImgDir 1 eq{[iw neg 0 0 ih iw 0]}if
ImgDir 2 eq{[iw 0 0 ih neg 0 ih]}if
ImgDir 3 eq{[iw neg 0 0 ih neg iw ih]}if
def
/DataSource ImgProc def
/BitsPerComponent 8 def
/Interpolate smoothflag def
end image}bd
end def
%%EndResource
/initmtx mtx cmtx def
%%BeginFont: /MC1_Arial
12 dict begin
/FontInfo 8 dict dup begin
/ItalicAngle 0 def
/UnderlinePosition -217.00 def
/UnderlineThickness 150.00 def
/StrikeoutPosition 530.00 def
/StrikeoutThickness 102.00 def
/isFixedPitch false def
end readonly def
/FontName /MC1_Arial def
/FontType 3 def
/FontMatrix [1 2048 div 0 0 1 2048 div 0 0] def
/FontBBox [-1361 -665 4096 2129] def
/Encoding 256 array def 0 1 255{Encoding exch/.notdef put}for
Encoding 32/s32 put
Encoding 40/s40 put
Encoding 41/s41 put
Encoding 45/s45 put
Encoding 48/s48 put
Encoding 49/s49 put
Encoding 50/s50 put
Encoding 51/s51 put
Encoding 52/s52 put
Encoding 53/s53 put
Encoding 54/s54 put
Encoding 55/s55 put
Encoding 56/s56 put
Encoding 84/s84 put
Encoding 85/s85 put
Encoding 111/s111 put
Encoding 116/s116 put
Encoding 117/s117 put
/BoundingBoxes 26 dict def
BoundingBoxes begin
/s32 [0 -434 569 1854] def
/s40 [0 -434 682 1854] def
/s41 [0 -434 682 1854] def
/s45 [0 -434 682 1854] def
/s48 [0 -434 1139 1854] def
/s49 [0 -434 1139 1854] def
/s50 [0 -434 1139 1854] def
/s51 [0 -434 1139 1854] def
/s52 [0 -434 1139 1854] def
/s53 [0 -434 1139 1854] def
/s54 [0 -434 1139 1854] def
/s55 [0 -434 1139 1854] def
/s56 [0 -434 1139 1854] def
/s84 [0 -434 1251 1854] def
/s85 [0 -434 1479 1854] def
/s111 [0 -434 1139 1854] def
/s116 [0 -434 569 1854] def
/s117 [0 -434 1139 1854] def
/s8451 [0 -434 1536 1854] def
/s20986 [0 -434 1536 1854] def
/s21387 [0 -434 1536 1854] def
/s27700 [0 -434 1139 1854] def
/s28201 [0 -434 682 1854] def
/s30005 [0 -434 1139 1854] def
/s36755 [0 -434 2048 1854] def
end
/Metrics 26 dict def
Metrics begin
/s32 569 def
/s40 682 def
/s41 682 def
/s45 682 def
/s48 1139 def
/s49 1139 def
/s50 1139 def
/s51 1139 def
/s52 1139 def
/s53 1139 def
/s54 1139 def
/s55 1139 def
/s56 1139 def
/s84 1251 def
/s85 1479 def
/s111 1139 def
/s116 569 def
/s117 1139 def
/s8451 1536 def
/s20986 1536 def
/s21387 1536 def
/s27700 1139 def
/s28201 682 def
/s30005 1139 def
/s36755 2048 def
end
/CharProcs 26 dict def
CharProcs begin
/.notdef {} def
/s40 {
479 -431 m
379.67 -305.67 295.67 -159 227 9 c
158.33 177 124 351 124 531 c
124 689.67 149.67 841.67 201 987 c
261 1155.67 353.67 1323.67 479 1491 c
608 1491 479 1491 608 1491 c
527.33 1352.33 474 1253.33 448 1194 c
407.33 1102 375.33 1006 352 906 c
323.33 781.33 309 656 309 530 c
309 209.33 408.67 -111 608 -431 c
479 -431 608 -431 479 -431 c
closepath } bind def
/s41 {
253 -431 m
124 -431 253 -431 124 -431 c
323.33 -111 423 209.33 423 530 c
423 655.33 408.67 779.67 380 903 c
357.33 1003 325.67 1099 285 1191 c
259 1251 205.33 1351 124 1491 c
253 1491 124 1491 253 1491 c
378.33 1323.67 471 1155.67 531 987 c
582.33 841.67 608 689.67 608 531 c
608 351 573.5 177 504.5 9 c
435.5 -159 351.67 -305.67 253 -431 c
closepath } bind def
/s45 {
65 440 m
65 621 65 440 65 621 c
618 621 65 621 618 621 c
618 440 618 621 618 440 c
65 440 618 440 65 440 c
closepath } bind def
/s48 {
85 723 m
85 896.33 102.83 1035.83 138.5 1141.5 c
174.17 1247.17 227.17 1328.67 297.5 1386 c
367.83 1443.33 456.33 1472 563 1472 c
641.67 1472 710.67 1456.17 770 1424.5 c
829.33 1392.83 878.33 1347.17 917 1287.5 c
955.67 1227.83 986 1155.17 1008 1069.5 c
1030 983.83 1041 868.33 1041 723 c
1041 551 1023.33 412.17 988 306.5 c
952.67 200.83 899.83 119.17 829.5 61.5 c
759.17 3.83 670.33 -25 563 -25 c
421.67 -25 310.67 25.67 230 127 c
133.33 249 85 447.67 85 723 c
closepath 270 723 m
270 482.33 298.17 322.17 354.5 242.5 c
410.83 162.83 480.33 123 563 123 c
645.67 123 715.17 163 771.5 243 c
827.83 323 856 483 856 723 c
856 964.33 827.83 1124.67 771.5 1204 c
715.17 1283.33 645 1323 561 1323 c
478.33 1323 412.33 1288 363 1218 c
301 1128.67 270 963.67 270 723 c
closepath } bind def
/s49 {
763 0 m
583 0 763 0 583 0 c
583 1147 583 0 583 1147 c
539.67 1105.67 482.83 1064.33 412.5 1023 c
342.17 981.67 279 950.67 223 930 c
223 1104 223 930 223 1104 c
323.67 1151.33 411.67 1208.67 487 1276 c
562.33 1343.33 615.67 1408.67 647 1472 c
763 1472 647 1472 763 1472 c
763 0 763 1472 763 0 c
closepath } bind def
/s50 {
1031 173 m
1031 0 1031 173 1031 0 c
62 0 1031 0 62 0 c
60.67 43.33 67.67 85 83 125 c
107.67 191 147.17 256 201.5 320 c
255.83 384 334.33 458 437 542 c
596.33 672.67 704 776.17 760 852.5 c
816 928.83 844 1001 844 1069 c
844 1140.33 818.5 1200.5 767.5 1249.5 c
716.5 1298.5 650 1323 568 1323 c
481.33 1323 412 1297 360 1245 c
308 1193 281.67 1121 281 1029 c
96 1048 281 1029 96 1048 c
108.67 1186 156.33 1291.17 239 1363.5 c
321.67 1435.83 432.67 1472 572 1472 c
712.67 1472 824 1433 906 1355 c
988 1277 1029 1180.33 1029 1065 c
1029 1006.33 1017 948.67 993 892 c
969 835.33 929.17 775.67 873.5 713 c
817.83 650.33 725.33 564.33 596 455 c
488 364.33 418.67 302.83 388 270.5 c
357.33 238.17 332 205.67 312 173 c
1031 173 312 173 1031 173 c
closepath } bind def
/s51 {
86 387 m
266 411 86 387 266 411 c
286.67 309 321.83 235.5 371.5 190.5 c
421.17 145.5 481.67 123 553 123 c
637.67 123 709.17 152.33 767.5 211 c
825.83 269.67 855 342.33 855 429 c
855 511.67 828 579.83 774 633.5 c
720 687.17 651.33 714 568 714 c
534 714 491.67 707.33 441 694 c
461 852 441 694 461 852 c
473 850.67 482.67 850 490 850 c
566.67 850 635.67 870 697 910 c
758.33 950 789 1011.67 789 1095 c
789 1161 766.67 1215.67 722 1259 c
677.33 1302.33 619.67 1324 549 1324 c
479 1324 420.67 1302 374 1258 c
327.33 1214 297.33 1148 284 1060 c
104 1092 284 1060 104 1092 c
126 1212.67 176 1306.17 254 1372.5 c
332 1438.83 429 1472 545 1472 c
625 1472 698.67 1454.83 766 1420.5 c
833.33 1386.17 884.83 1339.33 920.5 1280 c
956.17 1220.67 974 1157.67 974 1091 c
974 1027.67 957 970 923 918 c
889 866 838.67 824.67 772 794 c
858.67 774 926 732.5 974 669.5 c
1022 606.5 1046 527.67 1046 433 c
1046 305 999.33 196.5 906 107.5 c
812.67 18.5 694.67 -26 552 -26 c
423.33 -26 316.5 12.33 231.5 89 c
146.5 165.67 98 265 86 387 c
closepath } bind def
/s52 {
662 0 m
662 351 662 0 662 351 c
26 351 662 351 26 351 c
26 516 26 351 26 516 c
695 1466 26 516 695 1466 c
842 1466 695 1466 842 1466 c
842 516 842 1466 842 516 c
1040 516 842 516 1040 516 c
1040 351 1040 516 1040 351 c
842 351 1040 351 842 351 c
842 0 842 351 842 0 c
662 0 842 0 662 0 c
closepath 662 516 m
662 1177 662 516 662 1177 c
203 516 662 1177 203 516 c
662 516 203 516 662 516 c
closepath } bind def
/s53 {
85 384 m
274 400 85 384 274 400 c
288 308 320.5 238.83 371.5 192.5 c
422.5 146.17 484 123 556 123 c
642.67 123 716 155.67 776 221 c
836 286.33 866 373 866 481 c
866 583.67 837.17 664.67 779.5 724 c
721.83 783.33 646.33 813 553 813 c
495 813 442.67 799.83 396 773.5 c
349.33 747.17 312.67 713 286 671 c
117 693 286 671 117 693 c
259 1446 117 693 259 1446 c
988 1446 259 1446 988 1446 c
988 1274 988 1446 988 1274 c
403 1274 988 1274 403 1274 c
324 880 403 1274 324 880 c
412 941.33 504.33 972 601 972 c
729 972 837 927.67 925 839 c
1013 750.33 1057 636.33 1057 497 c
1057 364.33 1018.33 249.67 941 153 c
847 34.33 718.67 -25 556 -25 c
422.67 -25 313.83 12.33 229.5 87 c
145.17 161.67 97 260.67 85 384 c
closepath } bind def
/s54 {
1019 1107 m
840 1093 1019 1107 840 1093 c
824 1163.67 801.33 1215 772 1247 c
723.33 1298.33 663.33 1324 592 1324 c
534.67 1324 484.33 1308 441 1276 c
384.33 1234.67 339.67 1174.33 307 1095 c
274.33 1015.67 257.33 902.67 256 756 c
299.33 822 352.33 871 415 903 c
477.67 935 543.33 951 612 951 c
732 951 834.17 906.83 918.5 818.5 c
1002.83 730.17 1045 616 1045 476 c
1045 384 1025.17 298.5 985.5 219.5 c
945.83 140.5 891.33 80 822 38 c
752.67 -4 674 -25 586 -25 c
436 -25 313.67 30.17 219 140.5 c
124.33 250.83 77 432.67 77 686 c
77 969.33 129.33 1175.33 234 1304 c
325.33 1416 448.33 1472 603 1472 c
718.33 1472 812.83 1439.67 886.5 1375 c
960.17 1310.33 1004.33 1221 1019 1107 c
closepath 284 475 m
284 413 297.17 353.67 323.5 297 c
349.83 240.33 386.67 197.17 434 167.5 c
481.33 137.83 531 123 583 123 c
659 123 724.33 153.67 779 215 c
833.67 276.33 861 359.67 861 465 c
861 566.33 834 646.17 780 704.5 c
726 762.83 658 792 576 792 c
494.67 792 425.67 762.83 369 704.5 c
312.33 646.17 284 569.67 284 475 c
closepath } bind def
/s55 {
97 1274 m
97 1447 97 1274 97 1447 c
1046 1447 97 1447 1046 1447 c
1046 1307 1046 1447 1046 1307 c
952.67 1207.67 860.17 1075.67 768.5 911 c
676.83 746.33 606 577 556 403 c
520 280.33 497 146 487 0 c
302 0 487 0 302 0 c
304 115.33 326.67 254.67 370 418 c
413.33 581.33 475.5 738.83 556.5 890.5 c
637.5 1042.17 723.67 1170 815 1274 c
97 1274 815 1274 97 1274 c
closepath } bind def
/s56 {
362 795 m
287.33 822.33 232 861.33 196 912 c
160 962.67 142 1023.33 142 1094 c
142 1200.67 180.33 1290.33 257 1363 c
333.67 1435.67 435.67 1472 563 1472 c
691 1472 794 1434.83 872 1360.5 c
950 1286.17 989 1195.67 989 1089 c
989 1021 971.17 961.83 935.5 911.5 c
899.83 861.17 845.67 822.33 773 795 c
863 765.67 931.5 718.33 978.5 653 c
1025.5 587.67 1049 509.67 1049 419 c
1049 293.67 1004.67 188.33 916 103 c
827.33 17.67 710.67 -25 566 -25 c
421.33 -25 304.67 17.83 216 103.5 c
127.33 189.17 83 296 83 424 c
83 519.33 107.17 599.17 155.5 663.5 c
203.83 727.83 272.67 771.67 362 795 c
closepath 326 1100 m
326 1030.67 348.33 974 393 930 c
437.67 886 495.67 864 567 864 c
636.33 864 693.17 885.83 737.5 929.5 c
781.83 973.17 804 1026.67 804 1090 c
804 1156 781.17 1211.5 735.5 1256.5 c
689.83 1301.5 633 1324 565 1324 c
496.33 1324 439.33 1302 394 1258 c
348.67 1214 326 1161.33 326 1100 c
closepath 268 423 m
268 371.67 280.17 322 304.5 274 c
328.83 226 365 188.83 413 162.5 c
461 136.17 512.67 123 568 123 c
654 123 725 150.67 781 206 c
837 261.33 865 331.67 865 417 c
865 503.67 836.17 575.33 778.5 632 c
720.83 688.67 648.67 717 562 717 c
477.33 717 407.17 689 351.5 633 c
295.83 577 268 507 268 423 c
closepath } bind def
/s84 {
531 0 m
531 1293 531 0 531 1293 c
48 1293 531 1293 48 1293 c
48 1466 48 1293 48 1466 c
1210 1466 48 1466 1210 1466 c
1210 1293 1210 1466 1210 1293 c
725 1293 1210 1293 725 1293 c
725 0 725 1293 725 0 c
531 0 725 0 531 0 c
closepath } bind def
/s85 {
1120 1466 m
1314 1466 1120 1466 1314 1466 c
1314 619 1314 1466 1314 619 c
1314 471.67 1297.33 354.67 1264 268 c
1230.67 181.33 1170.5 110.83 1083.5 56.5 c
996.5 2.17 882.33 -25 741 -25 c
603.67 -25 491.33 -1.33 404 46 c
316.67 93.33 254.33 161.83 217 251.5 c
179.67 341.17 161 463.67 161 619 c
161 1466 161 619 161 1466 c
355 1466 161 1466 355 1466 c
355 620 355 1466 355 620 c
355 492.67 366.83 398.83 390.5 338.5 c
414.17 278.17 454.83 231.67 512.5 199 c
570.17 166.33 640.67 150 724 150 c
866.67 150 968.33 182.33 1029 247 c
1089.67 311.67 1120 436 1120 620 c
1120 1466 1120 620 1120 1466 c
closepath } bind def
/s111 {
68 531 m
68 727.67 122.67 873.33 232 968 c
323.33 1046.67 434.67 1086 566 1086 c
712 1086 831.33 1038.17 924 942.5 c
1016.67 846.83 1063 714.67 1063 546 c
1063 409.33 1042.5 301.83 1001.5 223.5 c
960.5 145.17 900.83 84.33 822.5 41 c
744.17 -2.33 658.67 -24 566 -24 c
417.33 -24 297.17 23.67 205.5 119 c
113.83 214.33 68 351.67 68 531 c
closepath 253 531 m
253 395 282.67 293.17 342 225.5 c
401.33 157.83 476 124 566 124 c
655.33 124 729.67 158 789 226 c
848.33 294 878 397.67 878 537 c
878 668.33 848.17 767.83 788.5 835.5 c
728.83 903.17 654.67 937 566 937 c
476 937 401.33 903.33 342 836 c
282.67 768.67 253 667 253 531 c
closepath } bind def
/s116 {
528 161 m
554 2 528 161 554 2 c
503.33 -8.67 458 -14 418 -14 c
352.67 -14 302 -3.67 266 17 c
230 37.67 204.67 64.83 190 98.5 c
175.33 132.17 168 203 168 311 c
168 922 168 311 168 922 c
36 922 168 922 36 922 c
36 1062 36 922 36 1062 c
168 1062 36 1062 168 1062 c
168 1325 168 1062 168 1325 c
347 1433 168 1325 347 1433 c
347 1062 347 1433 347 1062 c
528 1062 347 1062 528 1062 c
528 922 528 1062 528 922 c
347 922 528 922 347 922 c
347 301 347 922 347 301 c
347 249.67 350.17 216.67 356.5 202 c
362.83 187.33 373.17 175.67 387.5 167 c
401.83 158.33 422.33 154 449 154 c
469 154 495.33 156.33 528 161 c
closepath } bind def
/s117 {
831 0 m
831 156 831 0 831 156 c
748.33 36 636 -24 494 -24 c
431.33 -24 372.83 -12 318.5 12 c
264.17 36 223.83 66.17 197.5 102.5 c
171.17 138.83 152.67 183.33 142 236 c
134.67 271.33 131 327.33 131 404 c
131 1062 131 404 131 1062 c
311 1062 131 1062 311 1062 c
311 473 311 1062 311 473 c
311 379 314.67 315.67 322 283 c
333.33 235.67 357.33 198.5 394 171.5 c
430.67 144.5 476 131 530 131 c
584 131 634.67 144.83 682 172.5 c
729.33 200.17 762.83 237.83 782.5 285.5 c
802.17 333.17 812 402.33 812 493 c
812 1062 812 493 812 1062 c
992 1062 812 1062 992 1062 c
992 0 992 1062 992 0 c
831 0 992 0 831 0 c
closepath } bind def
/s8451 {
1688 1264 m
1688 1360 1688 1264 1688 1360 c
1752 1360 1688 1360 1752 1360 c
1752 928 1752 1360 1752 928 c
1688 928 1752 928 1688 928 c
1688 1072 1688 928 1688 1072 c
1666.67 1173.33 1613.33 1252 1528 1308 c
1442.67 1364 1354.67 1392 1264 1392 c
1232 1392 1176 1385.33 1096 1372 c
1016 1358.67 938.67 1297.33 864 1188 c
789.33 1078.67 753.33 930.67 756 744 c
758.67 557.33 794.67 410.67 864 304 c
933.33 197.33 1008 137.33 1088 124 c
1168 110.67 1218.67 104 1240 104 c
1309.33 104 1385.33 122.67 1468 160 c
1550.67 197.33 1618.67 248 1672 312 c
1720 370.67 1748 392 1756 376 c
1764 360 1742.67 318.67 1692 252 c
1641.33 185.33 1565.33 125.33 1464 72 c
1362.67 18.67 1245.33 0 1112 16 c
978.67 32 865.33 98.67 772 216 c
678.67 333.33 626.67 493.33 616 696 c
605.33 898.67 644 1065.33 732 1196 c
820 1326.67 908 1405.33 996 1432 c
1084 1458.67 1157.33 1472 1216 1472 c
1242.67 1472 1288 1465.33 1352 1452 c
1416 1438.67 1478.67 1413.33 1540 1376 c
1601.33 1338.67 1650.67 1301.33 1688 1264 c
closepath 236 1312 m
233.33 1365.33 249.33 1408 284 1440 c
318.67 1472 346.67 1490.67 368 1496 c
389.33 1501.33 408 1504 424 1504 c
445.33 1504 472 1498.67 504 1488 c
536 1477.33 561.33 1453.33 580 1416 c
598.67 1378.67 604 1336 596 1288 c
588 1240 566.67 1202.67 532 1176 c
497.33 1149.33 456 1137.33 408 1140 c
360 1142.67 320 1158.67 288 1188 c
256 1217.33 238.67 1258.67 236 1312 c
closepath 488 1224 m
514.67 1240 526.67 1274.67 524 1328 c
521.33 1381.33 508 1413.33 484 1424 c
460 1434.67 442.67 1440 432 1440 c
405.33 1440 377.33 1429.33 348 1408 c
318.67 1386.67 306.67 1352 312 1304 c
317.33 1256 334.67 1226.67 364 1216 c
393.33 1205.33 413.33 1200 424 1200 c
440 1200 461.33 1208 488 1224 c
closepath } bind def
/s20986 {
1656 1272 m
1656 960 1656 1272 1656 960 c
1656 906.67 1661.33 832 1672 736 c
1544 688 1672 736 1544 688 c
1544 784 1544 688 1544 784 c
1072 784 1544 784 1072 784 c
1072 8 1072 784 1072 8 c
1624 8 1072 8 1624 8 c
1624 360 1624 8 1624 360 c
1624 434.67 1621.33 517.33 1616 608 c
1800 504 1616 608 1800 504 c
1736 456 1800 504 1736 456 c
1736 160 1736 456 1736 160 c
1736 64 1738.67 -32 1744 -128 c
1624 -168 1744 -128 1624 -168 c
1624 -40 1624 -168 1624 -40 c
424 -40 1624 -40 424 -40 c
368 -96 424 -40 368 -96 c
256 -8 368 -96 256 -8 c
312 48 256 -8 312 48 c
312 360 312 48 312 360 c
312 440 309.33 528 304 624 c
488 528 304 624 488 528 c
424 472 488 528 424 472 c
424 8 424 472 424 8 c
960 8 424 8 960 8 c
960 784 960 8 960 784 c
496 784 960 784 496 784 c
432 728 496 784 432 728 c
320 816 432 728 320 816 c
376 864 320 816 376 864 c
376 1192 376 864 376 1192 c
376 1256 373.33 1325.33 368 1400 c
560 1304 368 1400 560 1304 c
488 1256 560 1304 488 1256 c
488 832 488 1256 488 832 c
960 832 488 832 960 832 c
960 1360 960 832 960 1360 c
960 1456 957.33 1549.33 952 1640 c
1136 1552 952 1640 1136 1552 c
1072 1480 1136 1552 1072 1480 c
1072 832 1072 1480 1072 832 c
1544 832 1072 832 1544 832 c
1544 1192 1544 832 1544 1192 c
1544 1256 1541.33 1330.67 1536 1416 c
1720 1328 1536 1416 1720 1328 c
1656 1272 1720 1328 1656 1272 c
closepath } bind def
/s21387 {
592 816 m
1056 816 592 816 1056 816 c
1056 1176 1056 816 1056 1176 c
1056 1256 1053.33 1325.33 1048 1384 c
1232 1288 1048 1384 1232 1288 c
1168 1232 1232 1288 1168 1232 c
1168 816 1168 1232 1168 816 c
1520 816 1168 816 1520 816 c
1624 920 1520 816 1624 920 c
1776 768 1624 920 1776 768 c
1168 768 1776 768 1168 768 c
1168 16 1168 768 1168 16 c
1680 16 1168 16 1680 16 c
1792 128 1680 16 1792 128 c
1952 -32 1792 128 1952 -32 c
616 -32 1952 -32 616 -32 c
546.67 -32 482.67 -40 424 -56 c
352 16 424 -56 352 16 c
1056 16 352 16 1056 16 c
1056 768 1056 16 1056 768 c
856 768 1056 768 856 768 c
786.67 768 722.67 760 664 744 c
592 816 664 744 592 816 c
closepath 368 1304 m
368 1378.67 365.33 1474.67 360 1592 c
480 1512 360 1592 480 1512 c
1592 1512 480 1512 1592 1512 c
1712 1632 1592 1512 1712 1632 c
1880 1464 1712 1632 1880 1464 c
480 1464 1880 1464 480 1464 c
480 840 480 1464 480 840 c
485.33 589.33 457.33 390.67 396 244 c
334.67 97.33 240 -40 112 -168 c
88 -144 112 -168 88 -144 c
168 -37.33 234.67 85.33 288 224 c
341.33 362.67 368 546.67 368 776 c
368 1304 368 776 368 1304 c
closepath 1320 600 m
1344 616 1320 600 1344 616 c
1472 530.67 1560 464 1608 416 c
1656 368 1680 325.33 1680 288 c
1680 266.67 1669.33 238.67 1648 204 c
1626.67 169.33 1610.67 152 1600 152 c
1584 152 1568 176 1552 224 c
1525.33 304 1448 429.33 1320 600 c
closepath } bind def
/s27700 {
944 1664 m
1152 1576 944 1664 1152 1576 c
1072 1512 1152 1576 1072 1512 c
1066.67 1389.33 1077.33 1285.33 1104 1200 c
1130.67 1114.67 1173.33 1010.67 1232 888 c
1440 1058.67 1581.33 1205.33 1656 1328 c
1792 1184 1656 1328 1792 1184 c
1738.67 1178.67 1672 1146.67 1592 1088 c
1506.67 1029.33 1392 949.33 1248 848 c
1456 448 1690.67 205.33 1952 120 c
1952 88 1952 120 1952 88 c
1850.67 82.67 1789.33 50.67 1768 -8 c
1442.67 232 1210.67 621.33 1072 1160 c
1072 40 1072 1160 1072 40 c
1077.33 -93.33 1013.33 -176 880 -208 c
885.33 -133.33 802.67 -74.67 632 -32 c
632 0 632 -32 632 0 c
754.67 -10.67 838.67 -16 884 -16 c
929.33 -16 952 16 952 80 c
952 1368 952 80 952 1368 c
952 1469.33 949.33 1568 944 1664 c
closepath 120 -48 m
104 -24 120 -48 104 -24 c
370.67 242.67 554.67 584 656 1000 c
408 1000 656 1000 408 1000 c
338.67 1000 274.67 992 216 976 c
144 1048 216 976 144 1048 c
648 1048 144 1048 648 1048 c
720 1144 648 1048 720 1144 c
864 1016 720 1144 864 1016 c
784 976 864 1016 784 976 c
650.67 501.33 429.33 160 120 -48 c
closepath } bind def
/s28201 {
888 1464 m
888 1216 888 1464 888 1216 c
1520 1216 888 1216 1520 1216 c
1520 1464 1520 1216 1520 1464 c
888 1464 1520 1464 888 1464 c
closepath 888 1168 m
888 880 888 1168 888 880 c
1520 880 888 880 1520 880 c
1520 1168 1520 880 1520 1168 c
888 1168 1520 1168 888 1168 c
closepath 752 544 m
752 -56 752 544 752 -56 c
984 -56 752 -56 984 -56 c
984 544 984 -56 984 544 c
752 544 984 544 752 544 c
closepath 1080 544 m
1080 -56 1080 544 1080 -56 c
1304 -56 1080 -56 1304 -56 c
1304 544 1304 -56 1304 544 c
1080 544 1304 544 1080 544 c
closepath 1400 544 m
1400 -56 1400 544 1400 -56 c
1632 -56 1400 -56 1632 -56 c
1632 544 1632 -56 1632 544 c
1400 544 1632 544 1400 544 c
closepath 776 720 m
781.33 821.33 784 976 784 1184 c
784 1392 781.33 1528 776 1592 c
888 1512 776 1592 888 1512 c
1504 1512 888 1512 1504 1512 c
1560 1592 1504 1512 1560 1592 c
1680 1504 1560 1592 1680 1504 c
1624 1456 1680 1504 1624 1456 c
1624 1136 1626.67 912 1632 784 c
1520 744 1632 784 1520 744 c
1520 832 1520 744 1520 832 c
888 832 1520 832 888 832 c
888 768 888 832 888 768 c
776 720 888 768 776 720 c
closepath 640 664 m
752 592 640 664 752 592 c
1624 592 752 592 1624 592 c
1672 664 1624 592 1672 664 c
1792 576 1672 664 1792 576 c
1736 520 1792 576 1736 520 c
1736 -56 1736 520 1736 -56 c
1760 -56 1736 -56 1760 -56 c
1856 40 1760 -56 1856 40 c
1976 -104 1856 40 1976 -104 c
696 -104 1976 -104 696 -104 c
626.67 -104 562.67 -112 504 -128 c
432 -56 504 -128 432 -56 c
648 -56 432 -56 648 -56 c
648 472 648 -56 648 472 c
648 525.33 645.33 589.33 640 664 c
closepath 680 1336 m
525.33 749.33 441.33 422.67 428 356 c
414.67 289.33 406.67 208 404 112 c
401.33 16 402.67 -50.67 408 -88 c
408 -109.33 397.33 -120 376 -120 c
354.67 -120 326.67 -113.33 292 -100 c
257.33 -86.67 240 -61.33 240 -24 c
240 8 248 48 264 96 c
280 149.33 288 192 288 224 c
288 256 276 282.67 252 304 c
228 325.33 176 346.67 96 368 c
96 400 96 368 96 400 c
192 389.33 250.67 385.33 272 388 c
293.33 390.67 318.67 414.67 348 460 c
377.33 505.33 477.33 800 648 1344 c
680 1336 648 1344 680 1336 c
closepath 120 1152 m
264 1088 341.33 1034.67 352 992 c
362.67 949.33 357.33 913.33 336 884 c
314.67 854.67 298.67 840 288 840 c
277.33 840 266.67 858.67 256 896 c
234.67 949.33 184 1029.33 104 1136 c
120 1152 104 1136 120 1152 c
closepath 272 1600 m
373.33 1562.67 440 1530.67 472 1504 c
504 1477.33 520 1450.67 520 1424 c
520 1402.67 513.33 1377.33 500 1348 c
486.67 1318.67 474.67 1304 464 1304 c
453.33 1304 440 1322.67 424 1360 c
392 1418.67 336 1493.33 256 1584 c
272 1600 256 1584 272 1600 c
closepath } bind def
/s30005 {
920 1248 m
920 1402.67 917.33 1544 912 1672 c
1096 1584 912 1672 1096 1584 c
1032 1528 1096 1584 1032 1528 c
1032 1248 1032 1528 1032 1248 c
1520 1248 1032 1248 1520 1248 c
1600 1328 1520 1248 1600 1328 c
1712 1216 1600 1328 1712 1216 c
1640 1160 1712 1216 1640 1160 c
1640 733.33 1642.67 466.67 1648 360 c
1528 304 1648 360 1528 304 c
1528 400 1528 304 1528 400 c
1032 400 1528 400 1032 400 c
1032 40 1032 400 1032 40 c
1032 -18.67 1064 -48 1128 -48 c
1680 -48 1128 -48 1680 -48 c
1728 -42.67 1754.67 -14.67 1760 36 c
1765.33 86.67 1770.67 189.33 1776 344 c
1816 344 1776 344 1816 344 c
1816 210.67 1825.33 122.67 1844 80 c
1862.67 37.33 1890.67 2.67 1928 -24 c
1906.67 -66.67 1880 -97.33 1848 -116 c
1816 -134.67 1770.67 -144 1712 -144 c
1088 -144 1712 -144 1088 -144 c
976 -144 920 -90.67 920 16 c
920 400 920 16 920 400 c
440 400 920 400 440 400 c
440 288 440 400 440 288 c
320 232 440 288 320 232 c
325.33 413.33 328 600 328 792 c
328 984 325.33 1160 320 1320 c
448 1248 320 1320 448 1248 c
920 1248 448 1248 920 1248 c
closepath 440 1200 m
440 856 440 1200 440 856 c
920 856 440 856 920 856 c
920 1200 920 856 920 1200 c
440 1200 920 1200 440 1200 c
closepath 1032 1200 m
1032 856 1032 1200 1032 856 c
1528 856 1032 856 1528 856 c
1528 1200 1528 856 1528 1200 c
1032 1200 1528 1200 1032 1200 c
closepath 440 808 m
440 448 440 808 440 448 c
920 448 440 448 920 448 c
920 808 920 448 920 808 c
440 808 920 808 440 808 c
closepath 1032 808 m
1032 448 1032 808 1032 448 c
1528 448 1032 448 1528 448 c
1528 808 1528 448 1528 808 c
1032 808 1528 808 1032 808 c
closepath } bind def
/s36755 {
936 808 m
936 600 936 808 936 600 c
1184 600 936 600 1184 600 c
1184 808 1184 600 1184 808 c
936 808 1184 808 936 808 c
closepath 936 552 m
936 336 936 552 936 336 c
1184 336 936 336 1184 336 c
1184 552 1184 336 1184 552 c
936 552 1184 552 936 552 c
closepath 1312 1520 m
1141.33 1226.67 930.67 1021.33 680 904 c
664 928 680 904 664 928 c
818.67 1034.67 942.67 1154.67 1036 1288 c
1129.33 1421.33 1200 1554.67 1248 1688 c
1408 1592 1248 1688 1408 1592 c
1344 1552 1408 1592 1344 1552 c
1504 1290.67 1712 1136 1968 1088 c
1968 1056 1968 1088 1968 1056 c
1888 1050.67 1840 1021.33 1824 968 c
1616 1080 1445.33 1264 1312 1520 c
closepath 832 -208 m
837.33 -101.33 840 84 840 348 c
840 612 837.33 800 832 912 c
944 856 832 912 944 856 c
1168 856 944 856 1168 856 c
1224 928 1168 856 1224 928 c
1336 840 1224 928 1336 840 c
1280 792 1336 840 1280 792 c
1280 -48 1280 792 1280 -48 c
1280 -128 1240 -181.33 1160 -208 c
1144 -144 1093.33 -104 1008 -88 c
1008 -56 1008 -88 1008 -56 c
1061.33 -61.33 1104 -64 1136 -64 c
1168 -64 1184 -42.67 1184 0 c
1184 288 1184 0 1184 288 c
936 288 1184 288 936 288 c
936 -152 936 288 936 -152 c
832 -208 936 -152 832 -208 c
closepath 1440 112 m
1445.33 186.67 1448 306.67 1448 472 c
1448 637.33 1445.33 760 1440 840 c
1592 760 1440 840 1592 760 c
1544 720 1592 760 1544 720 c
1544 160 1544 720 1544 160 c
1440 112 1544 160 1440 112 c
closepath 1712 680 m
1712 738.67 1709.33 818.67 1704 920 c
1864 848 1704 920 1864 848 c
1808 792 1864 848 1808 792 c
1808 -24 1808 792 1808 -24 c
1813.33 -109.33 1762.67 -168 1656 -200 c
1650.67 -130.67 1581.33 -82.67 1448 -56 c
1448 -24 1448 -56 1448 -24 c
1549.33 -29.33 1618.67 -32 1656 -32 c
1693.33 -32 1712 -10.67 1712 32 c
1712 680 1712 32 1712 680 c
closepath 472 808 m
472 946.67 469.33 1053.33 464 1128 c
632 1048 464 1128 632 1048 c
576 992 632 1048 576 992 c
576 808 576 992 576 808 c
616 808 576 808 616 808 c
696 880 616 808 696 880 c
808 760 696 880 808 760 c
576 760 808 760 576 760 c
576 424 576 760 576 424 c
792 464 576 424 792 464 c
800 432 792 464 800 432 c
576 368 800 432 576 368 c
576 112 578.67 -64 584 -160 c
464 -208 584 -160 464 -208 c
469.33 16 472 197.33 472 336 c
274.67 282.67 168 237.33 152 200 c
80 336 152 200 80 336 c
197.33 352 328 373.33 472 400 c
472 760 472 400 472 760 c
240 760 472 760 240 760 c
176 704 240 760 176 704 c
88 832 176 704 88 832 c
125.33 842.67 160 885.33 192 960 c
224 1034.67 261.33 1136 304 1264 c
288 1264 304 1264 288 1264 c
250.67 1264 202.67 1256 144 1240 c
72 1312 144 1240 72 1312 c
320 1312 72 1312 320 1312 c
352 1440 381.33 1557.33 408 1664 c
560 1576 408 1664 560 1576 c
533.33 1560 512 1537.33 496 1508 c
480 1478.67 456 1413.33 424 1312 c
648 1312 424 1312 648 1312 c
744 1400 648 1312 744 1400 c
864 1264 744 1400 864 1264 c
408 1264 864 1264 408 1264 c
240 808 408 1264 240 808 c
472 808 240 808 472 808 c
closepath 1008 1104 m
1416 1104 1008 1104 1416 1104 c
1496 1184 1416 1104 1496 1184 c
1616 1056 1496 1184 1616 1056 c
1232 1056 1616 1056 1232 1056 c
1024 1088 1232 1056 1024 1088 c
1072 1040 1024 1088 1072 1040 c
1008 1104 1072 1040 1008 1104 c