summaryrefslogtreecommitdiff
path: root/info/examples/lgc2/gradient.eps
blob: b34b17b1cf3b8abf71d707204dc33fc3b53c69a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
%!PS-Adobe-2.0 EPSF-2.0
%%BoundingBox: 92 663 206 720
%%HiResBoundingBox: 92.220 663.270 205.620 719.970
%%Creator: dvips(k) 5.94b Copyright 2004 Radical Eye Software
%%Title: epsf.dvi
%%EndComments
%DVIPSWebPage: (www.radicaleye.com)
%DVIPSCommandLine: dvips -j -E -Ppp epsf.dvi -o 3-5-4.eps
%DVIPSParameters: dpi=600, compressed
%DVIPSSource:  TeX output 2005.11.28:1833
%%BeginProcSet: texc.pro 0 0
%!
/TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S
N}B/A{dup}B/TR{translate}N/isls false N/vsize 11 72 mul N/hsize 8.5 72
mul N/landplus90{false}def/@rigin{isls{[0 landplus90{1 -1}{-1 1}ifelse 0
0 0]concat}if 72 Resolution div 72 VResolution div neg scale isls{
landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div hsize
mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul TR[
matrix currentmatrix{A A round sub abs 0.00001 lt{round}if}forall round
exch round exch]setmatrix}N/@landscape{/isls true N}B/@manualfeed{
statusdict/manualfeed true put}B/@copies{/#copies X}B/FMat[1 0 0 -1 0 0]
N/FBB[0 0 0 0]N/nn 0 N/IEn 0 N/ctr 0 N/df-tail{/nn 8 dict N nn begin
/FontType 3 N/FontMatrix fntrx N/FontBBox FBB N string/base X array
/BitMaps X/BuildChar{CharBuilder}N/Encoding IEn N end A{/foo setfont}2
array copy cvx N load 0 nn put/ctr 0 N[}B/sf 0 N/df{/sf 1 N/fntrx FMat N
df-tail}B/dfs{div/sf X/fntrx[sf 0 0 sf neg 0 0]N df-tail}B/E{pop nn A
definefont setfont}B/Cw{Cd A length 5 sub get}B/Ch{Cd A length 4 sub get
}B/Cx{128 Cd A length 3 sub get sub}B/Cy{Cd A length 2 sub get 127 sub}
B/Cdx{Cd A length 1 sub get}B/Ci{Cd A type/stringtype ne{ctr get/ctr ctr
1 add N}if}B/id 0 N/rw 0 N/rc 0 N/gp 0 N/cp 0 N/G 0 N/CharBuilder{save 3
1 roll S A/base get 2 index get S/BitMaps get S get/Cd X pop/ctr 0 N Cdx
0 Cx Cy Ch sub Cx Cw add Cy setcachedevice Cw Ch true[1 0 0 -1 -.1 Cx
sub Cy .1 sub]/id Ci N/rw Cw 7 add 8 idiv string N/rc 0 N/gp 0 N/cp 0 N{
rc 0 ne{rc 1 sub/rc X rw}{G}ifelse}imagemask restore}B/G{{id gp get/gp
gp 1 add N A 18 mod S 18 idiv pl S get exec}loop}B/adv{cp add/cp X}B
/chg{rw cp id gp 4 index getinterval putinterval A gp add/gp X adv}B/nd{
/cp 0 N rw exit}B/lsh{rw cp 2 copy get A 0 eq{pop 1}{A 255 eq{pop 254}{
A A add 255 and S 1 and or}ifelse}ifelse put 1 adv}B/rsh{rw cp 2 copy
get A 0 eq{pop 128}{A 255 eq{pop 127}{A 2 idiv S 128 and or}ifelse}
ifelse put 1 adv}B/clr{rw cp 2 index string putinterval adv}B/set{rw cp
fillstr 0 4 index getinterval putinterval adv}B/fillstr 18 string 0 1 17
{2 copy 255 put pop}for N/pl[{adv 1 chg}{adv 1 chg nd}{1 add chg}{1 add
chg nd}{adv lsh}{adv lsh nd}{adv rsh}{adv rsh nd}{1 add adv}{/rc X nd}{
1 add set}{1 add clr}{adv 2 chg}{adv 2 chg nd}{pop nd}]A{bind pop}
forall N/D{/cc X A type/stringtype ne{]}if nn/base get cc ctr put nn
/BitMaps get S ctr S sf 1 ne{A A length 1 sub A 2 index S get sf div put
}if put/ctr ctr 1 add N}B/I{cc 1 add D}B/bop{userdict/bop-hook known{
bop-hook}if/SI save N @rigin 0 0 moveto/V matrix currentmatrix A 1 get A
mul exch 0 get A mul add .99 lt{/QV}{/RV}ifelse load def pop pop}N/eop{
SI restore userdict/eop-hook known{eop-hook}if showpage}N/@start{
userdict/start-hook known{start-hook}if pop/VResolution X/Resolution X
1000 div/DVImag X/IEn 256 array N 2 string 0 1 255{IEn S A 360 add 36 4
index cvrs cvn put}for pop 65781.76 div/vsize X 65781.76 div/hsize X}N
/p{show}N/RMat[1 0 0 -1 0 0]N/BDot 260 string N/Rx 0 N/Ry 0 N/V{}B/RV/v{
/Ry X/Rx X V}B statusdict begin/product where{pop false[(Display)(NeXT)
(LaserWriter 16/600)]{A length product length le{A length product exch 0
exch getinterval eq{pop true exit}if}{pop}ifelse}forall}{false}ifelse
end{{gsave TR -.1 .1 TR 1 1 scale Rx Ry false RMat{BDot}imagemask
grestore}}{{gsave TR -.1 .1 TR Rx Ry scale 1 1 false RMat{BDot}
imagemask grestore}}ifelse B/QV{gsave newpath transform round exch round
exch itransform moveto Rx 0 rlineto 0 Ry neg rlineto Rx neg 0 rlineto
fill grestore}B/a{moveto}B/delta 0 N/tail{A/delta X 0 rmoveto}B/M{S p
delta add tail}B/b{S p tail}B/c{-4 M}B/d{-3 M}B/e{-2 M}B/f{-1 M}B/g{0 M}
B/h{1 M}B/i{2 M}B/j{3 M}B/k{4 M}B/w{0 rmoveto}B/l{p -4 w}B/m{p -3 w}B/n{
p -2 w}B/o{p -1 w}B/q{p 1 w}B/r{p 2 w}B/s{p 3 w}B/t{p 4 w}B/x{0 S
rmoveto}B/y{3 2 roll p a}B/bos{/SS save N}B/eos{SS restore}B end

%%EndProcSet
%%BeginProcSet: special.pro 0 0
%!
TeXDict begin/SDict 200 dict N SDict begin/@SpecialDefaults{/hs 612 N
/vs 792 N/ho 0 N/vo 0 N/hsc 1 N/vsc 1 N/ang 0 N/CLIP 0 N/rwiSeen false N
/rhiSeen false N/letter{}N/note{}N/a4{}N/legal{}N}B/@scaleunit 100 N
/@hscale{@scaleunit div/hsc X}B/@vscale{@scaleunit div/vsc X}B/@hsize{
/hs X/CLIP 1 N}B/@vsize{/vs X/CLIP 1 N}B/@clip{/CLIP 2 N}B/@hoffset{/ho
X}B/@voffset{/vo X}B/@angle{/ang X}B/@rwi{10 div/rwi X/rwiSeen true N}B
/@rhi{10 div/rhi X/rhiSeen true N}B/@llx{/llx X}B/@lly{/lly X}B/@urx{
/urx X}B/@ury{/ury X}B/magscale true def end/@MacSetUp{userdict/md known
{userdict/md get type/dicttype eq{userdict begin md length 10 add md
maxlength ge{/md md dup length 20 add dict copy def}if end md begin
/letter{}N/note{}N/legal{}N/od{txpose 1 0 mtx defaultmatrix dtransform S
atan/pa X newpath clippath mark{transform{itransform moveto}}{transform{
itransform lineto}}{6 -2 roll transform 6 -2 roll transform 6 -2 roll
transform{itransform 6 2 roll itransform 6 2 roll itransform 6 2 roll
curveto}}{{closepath}}pathforall newpath counttomark array astore/gc xdf
pop ct 39 0 put 10 fz 0 fs 2 F/|______Courier fnt invertflag{PaintBlack}
if}N/txpose{pxs pys scale ppr aload pop por{noflips{pop S neg S TR pop 1
-1 scale}if xflip yflip and{pop S neg S TR 180 rotate 1 -1 scale ppr 3
get ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg TR}if xflip
yflip not and{pop S neg S TR pop 180 rotate ppr 3 get ppr 1 get neg sub
neg 0 TR}if yflip xflip not and{ppr 1 get neg ppr 0 get neg TR}if}{
noflips{TR pop pop 270 rotate 1 -1 scale}if xflip yflip and{TR pop pop
90 rotate 1 -1 scale ppr 3 get ppr 1 get neg sub neg ppr 2 get ppr 0 get
neg sub neg TR}if xflip yflip not and{TR pop pop 90 rotate ppr 3 get ppr
1 get neg sub neg 0 TR}if yflip xflip not and{TR pop pop 270 rotate ppr
2 get ppr 0 get neg sub neg 0 S TR}if}ifelse scaleby96{ppr aload pop 4
-1 roll add 2 div 3 1 roll add 2 div 2 copy TR .96 dup scale neg S neg S
TR}if}N/cp{pop pop showpage pm restore}N end}if}if}N/normalscale{
Resolution 72 div VResolution 72 div neg scale magscale{DVImag dup scale
}if 0 setgray}N/psfts{S 65781.76 div N}N/startTexFig{/psf$SavedState
save N userdict maxlength dict begin/magscale true def normalscale
currentpoint TR/psf$ury psfts/psf$urx psfts/psf$lly psfts/psf$llx psfts
/psf$y psfts/psf$x psfts currentpoint/psf$cy X/psf$cx X/psf$sx psf$x
psf$urx psf$llx sub div N/psf$sy psf$y psf$ury psf$lly sub div N psf$sx
psf$sy scale psf$cx psf$sx div psf$llx sub psf$cy psf$sy div psf$ury sub
TR/showpage{}N/erasepage{}N/setpagedevice{pop}N/copypage{}N/p 3 def
@MacSetUp}N/doclip{psf$llx psf$lly psf$urx psf$ury currentpoint 6 2 roll
newpath 4 copy 4 2 roll moveto 6 -1 roll S lineto S lineto S lineto
closepath clip newpath moveto}N/endTexFig{end psf$SavedState restore}N
/@beginspecial{SDict begin/SpecialSave save N gsave normalscale
currentpoint TR @SpecialDefaults count/ocount X/dcount countdictstack N}
N/@setspecial{CLIP 1 eq{newpath 0 0 moveto hs 0 rlineto 0 vs rlineto hs
neg 0 rlineto closepath clip}if ho vo TR hsc vsc scale ang rotate
rwiSeen{rwi urx llx sub div rhiSeen{rhi ury lly sub div}{dup}ifelse
scale llx neg lly neg TR}{rhiSeen{rhi ury lly sub div dup scale llx neg
lly neg TR}if}ifelse CLIP 2 eq{newpath llx lly moveto urx lly lineto urx
ury lineto llx ury lineto closepath clip}if/showpage{}N/erasepage{}N
/setpagedevice{pop}N/copypage{}N newpath}N/@endspecial{count ocount sub{
pop}repeat countdictstack dcount sub{end}repeat grestore SpecialSave
restore end}N/@defspecial{SDict begin}N/@fedspecial{end}B/li{lineto}B
/rl{rlineto}B/rc{rcurveto}B/np{/SaveX currentpoint/SaveY X N 1
setlinecap newpath}N/st{stroke SaveX SaveY moveto}N/fil{fill SaveX SaveY
moveto}N/ellipse{/endangle X/startangle X/yrad X/xrad X/savematrix
matrix currentmatrix N TR xrad yrad scale 0 0 1 startangle endangle arc
savematrix setmatrix}N end

%%EndProcSet
TeXDict begin 40258437 52099154 1000 600 600 (epsf.dvi)
@start end
%%EndProlog
%%BeginSetup
%%Feature: *Resolution 600dpi
TeXDict begin
 end
%%EndSetup
TeXDict begin 1 0 bop 166 475 a @beginspecial -57 @llx
-142 @lly 57 @urx -85 @ury 1140 @rwi @setspecial
%%BeginDocument: 3-5-4.1
%!PS
%%BoundingBox: -57 -142 57 -85 
%%Creator: MetaPost
%%CreationDate: 2005.11.28:1833
%%Pages: 1
%%EndProlog
%%Page: 1 1
gsave newpath 56.6929 -113.3858 moveto
56.6929 -105.86752 50.71877 -98.65807 40.08711 -93.34224 curveto
29.45546 -88.02643 15.03656 -85.03935 0 -85.03935 curveto
-15.03656 -85.03935 -29.45546 -88.02643 -40.08711 -93.34224 curveto
-50.71877 -98.65807 -56.6929 -105.86752 -56.6929 -113.3858 curveto
-56.6929 -120.90408 -50.71877 -128.11354 -40.08711 -133.42937 curveto
-29.45546 -138.74518 -15.03656 -141.73225 0 -141.73225 curveto
15.03656 -141.73225 29.45546 -138.74518 40.08711 -133.42937 curveto
50.71877 -128.11354 56.6929 -120.90408 56.6929 -113.3858 curveto closepath clip
 1 0 1 setrgbcolor
newpath 173.5683 -113.3858 moveto
173.5683 -82.38715 161.2523 -52.66182 139.3346 -30.74411 curveto
117.41689 -8.8264 87.69156 3.4896 56.6929 3.4896 curveto
25.69424 3.4896 -4.03108 -8.8264 -25.94879 -30.74411 curveto
-47.8665 -52.66182 -60.1825 -82.38715 -60.1825 -113.3858 curveto
-60.1825 -144.38446 -47.8665 -174.10979 -25.94879 -196.0275 curveto
-4.03108 -217.9452 25.69424 -230.2612 56.6929 -230.2612 curveto
87.69156 -230.2612 117.41689 -217.9452 139.3346 -196.0275 curveto
161.2523 -174.10979 173.5683 -144.38446 173.5683 -113.3858 curveto closepath
 fill
 0.98012 0.01988 0.98012 setrgbcolor
newpath 172.40019 -113.3858 moveto
172.40019 -82.69696 160.20728 -53.26872 138.50862 -31.57008 curveto
116.80998 -9.87143 87.38174 2.32149 56.6929 2.32149 curveto
26.00406 2.32149 -3.42418 -9.87143 -25.12282 -31.57008 curveto
-46.82147 -53.26872 -59.01439 -82.69696 -59.01439 -113.3858 curveto
-59.01439 -144.07465 -46.82147 -173.50288 -25.12282 -195.20152 curveto
-3.42418 -216.90018 26.00406 -229.0931 56.6929 -229.0931 curveto
87.38174 -229.0931 116.80998 -216.90018 138.50862 -195.20152 curveto
160.20728 -173.50288 172.40019 -144.07465 172.40019 -113.3858 curveto closepath
 fill
 0.96039 0.03961 0.96039 setrgbcolor
newpath 171.2303 -113.3858 moveto
171.2303 -83.00725 159.16066 -53.87656 137.68141 -32.3973 curveto
116.20215 -10.91805 87.07146 1.1516 56.6929 1.1516 curveto
26.31435 1.1516 -2.81635 -10.91805 -24.29561 -32.3973 curveto
-45.77486 -53.87656 -57.8445 -83.00725 -57.8445 -113.3858 curveto
-57.8445 -143.76436 -45.77486 -172.89505 -24.29561 -194.37431 curveto
-2.81635 -215.85356 26.31435 -227.9232 56.6929 -227.9232 curveto
87.07146 -227.9232 116.20215 -215.85356 137.68141 -194.37431 curveto
159.16066 -172.89505 171.2303 -143.76436 171.2303 -113.3858 curveto closepath
 fill
 0.9409 0.0591 0.9409 setrgbcolor
newpath 170.06218 -113.3858 moveto
170.06218 -83.31706 158.11565 -54.48346 136.85544 -33.22327 curveto
115.59525 -11.96306 86.76164 -0.01653 56.6929 -0.01653 curveto
26.62416 -0.01653 -2.20944 -11.96306 -23.46964 -33.22327 curveto
-44.72984 -54.48346 -56.67638 -83.31706 -56.67638 -113.3858 curveto
-56.67638 -143.45454 -44.72984 -172.28815 -23.46964 -193.54834 curveto
-2.20944 -214.80855 26.62416 -226.75508 56.6929 -226.75508 curveto
86.76164 -226.75508 115.59525 -214.80855 136.85544 -193.54834 curveto
158.11565 -172.28815 170.06218 -143.45454 170.06218 -113.3858 curveto closepath
 fill
 0.92162 0.07838 0.92162 setrgbcolor
newpath 168.89407 -113.3858 moveto
168.89407 -83.62688 157.07062 -55.09036 136.02948 -34.04922 curveto
114.98834 -13.00809 86.45183 -1.18463 56.6929 -1.18463 curveto
26.93398 -1.18463 -1.60254 -13.00809 -22.64368 -34.04922 curveto
-43.68481 -55.09036 -55.50827 -83.62688 -55.50827 -113.3858 curveto
-55.50827 -143.14473 -43.68481 -171.68124 -22.64368 -192.72238 curveto
-1.60254 -213.76352 26.93398 -225.58698 56.6929 -225.58698 curveto
86.45183 -225.58698 114.98834 -213.76352 136.02948 -192.72238 curveto
157.07062 -171.68124 168.89407 -143.14473 168.89407 -113.3858 curveto closepath
 fill
 0.9025 0.0975 0.9025 setrgbcolor
newpath 167.72418 -113.3858 moveto
167.72418 -83.93716 156.02402 -55.6982 135.20226 -34.87645 curveto
114.38051 -14.05469 86.14154 -2.35452 56.6929 -2.35452 curveto
27.24426 -2.35452 -0.9947 -14.05469 -21.81645 -34.87645 curveto
-42.63821 -55.6982 -54.33838 -83.93716 -54.33838 -113.3858 curveto
-54.33838 -142.83444 -42.63821 -171.07341 -21.81645 -191.89516 curveto
-0.9947 -212.71692 27.24426 -224.41708 56.6929 -224.41708 curveto
86.14154 -224.41708 114.38051 -212.71692 135.20226 -191.89516 curveto
156.02402 -171.07341 167.72418 -142.83444 167.72418 -113.3858 curveto closepath
 fill
 0.8836 0.1164 0.8836 setrgbcolor
newpath 166.55606 -113.3858 moveto
166.55606 -84.247 154.97899 -56.3051 134.3763 -35.70241 curveto
113.7736 -15.09972 85.83171 -3.52264 56.6929 -3.52264 curveto
27.5541 -3.52264 -0.3878 -15.09972 -20.9905 -35.70241 curveto
-41.59319 -56.3051 -53.17026 -84.247 -53.17026 -113.3858 curveto
-53.17026 -142.52461 -41.59319 -170.4665 -20.9905 -191.0692 curveto
-0.3878 -211.67189 27.5541 -223.24896 56.6929 -223.24896 curveto
85.83171 -223.24896 113.7736 -211.67189 134.3763 -191.0692 curveto
154.97899 -170.4665 166.55606 -142.52461 166.55606 -113.3858 curveto closepath
 fill
 0.86488 0.13512 0.86488 setrgbcolor
newpath 165.38617 -113.3858 moveto
165.38617 -84.55728 153.93237 -56.91293 133.54907 -36.52963 curveto
113.16577 -16.14633 85.52142 -4.69254 56.6929 -4.69254 curveto
27.86438 -4.69254 0.22003 -16.14633 -20.16327 -36.52963 curveto
-40.54657 -56.91293 -52.00037 -84.55728 -52.00037 -113.3858 curveto
-52.00037 -142.21432 -40.54657 -169.85867 -20.16327 -190.24197 curveto
0.22003 -210.62527 27.86438 -222.07907 56.6929 -222.07907 curveto
85.52142 -222.07907 113.16577 -210.62527 133.54907 -190.24197 curveto
153.93237 -169.85867 165.38617 -142.21432 165.38617 -113.3858 curveto closepath
 fill
 0.84639 0.15361 0.84639 setrgbcolor
newpath 164.21806 -113.3858 moveto
164.21806 -84.8671 152.88736 -57.51985 132.72311 -37.35559 curveto
112.55885 -17.19135 85.21161 -5.86064 56.6929 -5.86064 curveto
28.1742 -5.86064 0.82695 -17.19135 -19.33731 -37.35559 curveto
-39.50156 -57.51985 -50.83226 -84.8671 -50.83226 -113.3858 curveto
-50.83226 -141.90451 -39.50156 -169.25175 -19.33731 -189.41602 curveto
0.82695 -209.58026 28.1742 -220.91096 56.6929 -220.91096 curveto
85.21161 -220.91096 112.55885 -209.58026 132.72311 -189.41602 curveto
152.88736 -169.25175 164.21806 -141.90451 164.21806 -113.3858 curveto closepath
 fill
 0.82811 0.17189 0.82811 setrgbcolor
newpath 163.04994 -113.3858 moveto
163.04994 -85.17691 151.84233 -58.12675 131.89714 -38.18156 curveto
111.95195 -18.23637 84.9018 -7.02876 56.6929 -7.02876 curveto
28.48401 -7.02876 1.43385 -18.23637 -18.51134 -38.18156 curveto
-38.45653 -58.12675 -49.66414 -85.17691 -49.66414 -113.3858 curveto
-49.66414 -141.5947 -38.45653 -168.64485 -18.51134 -188.59004 curveto
1.43385 -208.53523 28.48401 -219.74284 56.6929 -219.74284 curveto
84.9018 -219.74284 111.95195 -208.53523 131.89714 -188.59004 curveto
151.84233 -168.64485 163.04994 -141.5947 163.04994 -113.3858 curveto closepath
 fill
 0.80998 0.19002 0.80998 setrgbcolor
newpath 161.88005 -113.3858 moveto
161.88005 -85.4872 150.79572 -58.73459 131.06992 -39.00879 curveto
111.34412 -19.28299 84.5915 -8.19865 56.6929 -8.19865 curveto
28.7943 -8.19865 2.04169 -19.28299 -17.68411 -39.00879 curveto
-37.40991 -58.73459 -48.49425 -85.4872 -48.49425 -113.3858 curveto
-48.49425 -141.28441 -37.40991 -168.03702 -17.68411 -187.76282 curveto
2.04169 -207.48862 28.7943 -218.57295 56.6929 -218.57295 curveto
84.5915 -218.57295 111.34412 -207.48862 131.06992 -187.76282 curveto
150.79572 -168.03702 161.88005 -141.28441 161.88005 -113.3858 curveto closepath
 fill
 0.7921 0.2079 0.7921 setrgbcolor
newpath 160.71194 -113.3858 moveto
160.71194 -85.79701 149.7507 -59.34149 130.24396 -39.83475 curveto
110.73721 -20.328 84.2817 -9.36676 56.6929 -9.36676 curveto
29.10411 -9.36676 2.64859 -20.328 -16.85815 -39.83475 curveto
-36.3649 -59.34149 -47.32614 -85.79701 -47.32614 -113.3858 curveto
-47.32614 -140.9746 -36.3649 -167.43011 -16.85815 -186.93686 curveto
2.64859 -206.4436 29.10411 -217.40485 56.6929 -217.40485 curveto
84.2817 -217.40485 110.73721 -206.4436 130.24396 -186.93686 curveto
149.7507 -167.43011 160.71194 -140.9746 160.71194 -113.3858 curveto closepath
 fill
 0.77441 0.22559 0.77441 setrgbcolor
newpath 159.54382 -113.3858 moveto
159.54382 -86.10683 148.70569 -59.9484 129.418 -40.6607 curveto
110.13031 -21.37302 83.97188 -10.53488 56.6929 -10.53488 curveto
29.41393 -10.53488 3.2555 -21.37302 -16.0322 -40.6607 curveto
-35.31989 -59.9484 -46.15802 -86.10683 -46.15802 -113.3858 curveto
-46.15802 -140.66478 -35.31989 -166.82321 -16.0322 -186.1109 curveto
3.2555 -205.39859 29.41393 -216.23672 56.6929 -216.23672 curveto
83.97188 -216.23672 110.13031 -205.39859 129.418 -186.1109 curveto
148.70569 -166.82321 159.54382 -140.66478 159.54382 -113.3858 curveto closepath
 fill
 0.7569 0.2431 0.7569 setrgbcolor
newpath 158.37393 -113.3858 moveto
158.37393 -86.41711 147.65906 -60.55623 128.59077 -41.48793 curveto
109.52248 -22.41965 83.66159 -11.70477 56.6929 -11.70477 curveto
29.72421 -11.70477 3.86333 -22.41965 -15.20497 -41.48793 curveto
-34.27325 -60.55623 -44.98813 -86.41711 -44.98813 -113.3858 curveto
-44.98813 -140.35449 -34.27325 -166.21538 -15.20497 -185.28368 curveto
3.86333 -204.35196 29.72421 -215.06683 56.6929 -215.06683 curveto
83.66159 -215.06683 109.52248 -204.35196 128.59077 -185.28368 curveto
147.65906 -166.21538 158.37393 -140.35449 158.37393 -113.3858 curveto closepath
 fill
 0.7396 0.2604 0.7396 setrgbcolor
newpath 157.20581 -113.3858 moveto
157.20581 -86.72694 146.61404 -61.16313 127.7648 -42.3139 curveto
108.91557 -23.46466 83.35176 -12.8729 56.6929 -12.8729 curveto
30.03404 -12.8729 4.47023 -23.46466 -14.379 -42.3139 curveto
-33.22824 -61.16313 -43.82 -86.72694 -43.82 -113.3858 curveto
-43.82 -140.04466 -33.22824 -165.60847 -14.379 -184.4577 curveto
4.47023 -203.30695 30.03404 -213.89871 56.6929 -213.89871 curveto
83.35176 -213.89871 108.91557 -203.30695 127.7648 -184.4577 curveto
146.61404 -165.60847 157.20581 -140.04466 157.20581 -113.3858 curveto closepath
 fill
 0.7225 0.2775 0.7225 setrgbcolor
newpath 156.0377 -113.3858 moveto
156.0377 -87.03676 145.56903 -61.77003 126.93884 -43.13986 curveto
108.30867 -24.50967 83.04195 -14.041 56.6929 -14.041 curveto
30.34386 -14.041 5.07713 -24.50967 -13.55304 -43.13986 curveto
-32.18323 -61.77003 -42.6519 -87.03676 -42.6519 -113.3858 curveto
-42.6519 -139.73485 -32.18323 -165.00157 -13.55304 -183.63174 curveto
5.07713 -202.26193 30.34386 -212.7306 56.6929 -212.7306 curveto
83.04195 -212.7306 108.30867 -202.26193 126.93884 -183.63174 curveto
145.56903 -165.00157 156.0377 -139.73485 156.0377 -113.3858 curveto closepath
 fill
 0.7056 0.2944 0.7056 setrgbcolor
newpath 154.86781 -113.3858 moveto
154.86781 -87.34705 144.52242 -62.37788 126.11162 -43.96709 curveto
107.70082 -25.55629 82.73166 -15.21089 56.6929 -15.21089 curveto
30.65414 -15.21089 5.68498 -25.55629 -12.72581 -43.96709 curveto
-31.13661 -62.37788 -41.48201 -87.34705 -41.48201 -113.3858 curveto
-41.48201 -139.42456 -31.13661 -164.39372 -12.72581 -182.80452 curveto
5.68498 -201.21532 30.65414 -211.56071 56.6929 -211.56071 curveto
82.73166 -211.56071 107.70082 -201.21532 126.11162 -182.80452 curveto
144.52242 -164.39372 154.86781 -139.42456 154.86781 -113.3858 curveto closepath
 fill
 0.6889 0.3111 0.6889 setrgbcolor
newpath 153.69969 -113.3858 moveto
153.69969 -87.65686 143.47739 -62.98479 125.28566 -44.79305 curveto
107.09392 -26.60132 82.42184 -16.37901 56.6929 -16.37901 curveto
30.96396 -16.37901 6.29189 -26.60132 -11.89986 -44.79305 curveto
-30.09158 -62.98479 -40.31389 -87.65686 -40.31389 -113.3858 curveto
-40.31389 -139.11475 -30.09158 -163.78682 -11.89986 -181.97856 curveto
6.29189 -200.17029 30.96396 -210.3926 56.6929 -210.3926 curveto
82.42184 -210.3926 107.09392 -200.17029 125.28566 -181.97856 curveto
143.47739 -163.78682 153.69969 -139.11475 153.69969 -113.3858 curveto closepath
 fill
 0.67241 0.32759 0.67241 setrgbcolor
newpath 152.53159 -113.3858 moveto
152.53159 -87.96667 142.43237 -63.59169 124.4597 -45.619 curveto
106.48701 -27.64633 82.11203 -17.54712 56.6929 -17.54712 curveto
31.27377 -17.54712 6.89879 -27.64633 -11.0739 -45.619 curveto
-29.04657 -63.59169 -39.14578 -87.96667 -39.14578 -113.3858 curveto
-39.14578 -138.80493 -29.04657 -163.17992 -11.0739 -181.1526 curveto
6.89879 -199.12527 31.27377 -209.22449 56.6929 -209.22449 curveto
82.11203 -209.22449 106.48701 -199.12527 124.4597 -181.1526 curveto
142.43237 -163.17992 152.53159 -138.80493 152.53159 -113.3858 curveto closepath
 fill
 0.6561 0.3439 0.6561 setrgbcolor
newpath 151.3617 -113.3858 moveto
151.3617 -88.27696 141.38576 -64.19952 123.63248 -46.44623 curveto
105.87918 -28.69295 81.80174 -18.71701 56.6929 -18.71701 curveto
31.58406 -18.71701 7.50662 -28.69295 -10.24667 -46.44623 curveto
-27.99995 -64.19952 -37.97589 -88.27696 -37.97589 -113.3858 curveto
-37.97589 -138.49464 -27.99995 -162.57208 -10.24667 -180.32538 curveto
7.50662 -198.07866 31.58406 -208.0546 56.6929 -208.0546 curveto
81.80174 -208.0546 105.87918 -198.07866 123.63248 -180.32538 curveto
141.38576 -162.57208 151.3617 -138.49464 151.3617 -113.3858 curveto closepath
 fill
 0.64 0.36 0.64 setrgbcolor
newpath 150.19357 -113.3858 moveto
150.19357 -88.58678 140.34073 -64.80643 122.8065 -47.2722 curveto
105.27228 -29.73798 81.49193 -19.88513 56.6929 -19.88513 curveto
31.89388 -19.88513 8.11353 -29.73798 -9.4207 -47.2722 curveto
-26.95493 -64.80643 -36.80777 -88.58678 -36.80777 -113.3858 curveto
-36.80777 -138.18483 -26.95493 -161.96518 -9.4207 -179.4994 curveto
8.11353 -197.03363 31.89388 -206.88647 56.6929 -206.88647 curveto
81.49193 -206.88647 105.27228 -197.03363 122.8065 -179.4994 curveto
140.34073 -161.96518 150.19357 -138.18483 150.19357 -113.3858 curveto closepath
 fill
 0.62408 0.37592 0.62408 setrgbcolor
newpath 149.02368 -113.3858 moveto
149.02368 -88.89706 139.29413 -65.41426 121.97928 -48.09943 curveto
104.66444 -30.78458 81.18164 -21.05502 56.6929 -21.05502 curveto
32.20416 -21.05502 8.72136 -30.78458 -8.59348 -48.09943 curveto
-25.90833 -65.41426 -35.63788 -88.89706 -35.63788 -113.3858 curveto
-35.63788 -137.87454 -25.90833 -161.35735 -8.59348 -178.67218 curveto
8.72136 -195.98703 32.20416 -205.71658 56.6929 -205.71658 curveto
81.18164 -205.71658 104.66444 -195.98703 121.97928 -178.67218 curveto
139.29413 -161.35735 149.02368 -137.87454 149.02368 -113.3858 curveto closepath
 fill
 0.6084 0.3916 0.6084 setrgbcolor
newpath 147.85558 -113.3858 moveto
147.85558 -89.2069 138.2491 -66.02116 121.15332 -48.92538 curveto
104.05754 -31.8296 80.87181 -22.22313 56.6929 -22.22313 curveto
32.51399 -22.22313 9.32826 -31.8296 -7.76752 -48.92538 curveto
-24.8633 -66.02116 -34.46977 -89.2069 -34.46977 -113.3858 curveto
-34.46977 -137.56471 -24.8633 -160.75044 -7.76752 -177.84622 curveto
9.32826 -194.942 32.51399 -204.54848 56.6929 -204.54848 curveto
80.87181 -204.54848 104.05754 -194.942 121.15332 -177.84622 curveto
138.2491 -160.75044 147.85558 -137.56471 147.85558 -113.3858 curveto closepath
 fill
 0.59291 0.40709 0.59291 setrgbcolor
newpath 146.68745 -113.3858 moveto
146.68745 -89.51671 137.20409 -66.62807 120.32736 -49.75134 curveto
103.45064 -32.87462 80.562 -23.39125 56.6929 -23.39125 curveto
32.8238 -23.39125 9.93517 -32.87462 -6.94156 -49.75134 curveto
-23.81828 -66.62807 -33.30165 -89.51671 -33.30165 -113.3858 curveto
-33.30165 -137.2549 -23.81828 -160.14354 -6.94156 -177.02026 curveto
9.93517 -193.89699 32.8238 -203.38036 56.6929 -203.38036 curveto
80.562 -203.38036 103.45064 -193.89699 120.32736 -177.02026 curveto
137.20409 -160.14354 146.68745 -137.2549 146.68745 -113.3858 curveto closepath
 fill
 0.57759 0.42241 0.57759 setrgbcolor
newpath 145.51756 -113.3858 moveto
145.51756 -89.827 136.15747 -67.2359 119.50014 -50.57857 curveto
102.8428 -33.92123 80.25171 -24.56114 56.6929 -24.56114 curveto
33.1341 -24.56114 10.543 -33.92123 -6.11433 -50.57857 curveto
-22.77167 -67.2359 -32.13176 -89.827 -32.13176 -113.3858 curveto
-32.13176 -136.94461 -22.77167 -159.5357 -6.11433 -176.19304 curveto
10.543 -192.85037 33.1341 -202.21046 56.6929 -202.21046 curveto
80.25171 -202.21046 102.8428 -192.85037 119.50014 -176.19304 curveto
136.15747 -159.5357 145.51756 -136.94461 145.51756 -113.3858 curveto closepath
 fill
 0.5625 0.4375 0.5625 setrgbcolor
newpath 144.34946 -113.3858 moveto
144.34946 -90.13681 135.11244 -67.84282 118.67416 -51.40454 curveto
102.23589 -34.96626 79.9419 -25.72925 56.6929 -25.72925 curveto
33.44391 -25.72925 11.14992 -34.96626 -5.28836 -51.40454 curveto
-21.72664 -67.84282 -30.96365 -90.13681 -30.96365 -113.3858 curveto
-30.96365 -136.6348 -21.72664 -158.92879 -5.28836 -175.36707 curveto
11.14992 -191.80534 33.44391 -201.04236 56.6929 -201.04236 curveto
79.9419 -201.04236 102.23589 -191.80534 118.67416 -175.36707 curveto
135.11244 -158.92879 144.34946 -136.6348 144.34946 -113.3858 curveto closepath
 fill
 0.5476 0.4524 0.5476 setrgbcolor
newpath 143.18134 -113.3858 moveto
143.18134 -90.44662 134.06743 -68.44972 117.8482 -52.2305 curveto
101.62898 -36.01128 79.63208 -26.89737 56.6929 -26.89737 curveto
33.75372 -26.89737 11.75682 -36.01128 -4.4624 -52.2305 curveto
-20.68163 -68.44972 -29.79553 -90.44662 -29.79553 -113.3858 curveto
-29.79553 -136.32498 -20.68163 -158.32188 -4.4624 -174.5411 curveto
11.75682 -190.76033 33.75372 -199.87424 56.6929 -199.87424 curveto
79.63208 -199.87424 101.62898 -190.76033 117.8482 -174.5411 curveto
134.06743 -158.32188 143.18134 -136.32498 143.18134 -113.3858 curveto closepath
 fill
 0.5329 0.4671 0.5329 setrgbcolor
newpath 142.01144 -113.3858 moveto
142.01144 -90.75691 133.02081 -69.05756 117.02098 -53.05772 curveto
101.02115 -37.05789 79.3218 -28.06726 56.6929 -28.06726 curveto
34.06401 -28.06726 12.36465 -37.05789 -3.63518 -53.05772 curveto
-19.63501 -69.05756 -28.62564 -90.75691 -28.62564 -113.3858 curveto
-28.62564 -136.0147 -19.63501 -157.71405 -3.63518 -173.71388 curveto
12.36465 -189.71371 34.06401 -198.70435 56.6929 -198.70435 curveto
79.3218 -198.70435 101.02115 -189.71371 117.02098 -173.71388 curveto
133.02081 -157.71405 142.01144 -136.0147 142.01144 -113.3858 curveto closepath
 fill
 0.5184 0.4816 0.5184 setrgbcolor
newpath 140.84334 -113.3858 moveto
140.84334 -91.06673 131.9758 -69.66446 116.19502 -53.88368 curveto
100.41425 -38.1029 79.01198 -29.23537 56.6929 -29.23537 curveto
34.37383 -29.23537 12.97156 -38.1029 -2.80922 -53.88368 curveto
-18.59 -69.66446 -27.45753 -91.06673 -27.45753 -113.3858 curveto
-27.45753 -135.70488 -18.59 -157.10715 -2.80922 -172.88792 curveto
12.97156 -188.6687 34.37383 -197.53624 56.6929 -197.53624 curveto
79.01198 -197.53624 100.41425 -188.6687 116.19502 -172.88792 curveto
131.9758 -157.10715 140.84334 -135.70488 140.84334 -113.3858 curveto closepath
 fill
 0.5041 0.4959 0.5041 setrgbcolor
newpath 139.67522 -113.3858 moveto
139.67522 -91.37654 130.93077 -70.27136 115.36905 -54.70966 curveto
99.80734 -39.14793 78.70216 -30.40349 56.6929 -30.40349 curveto
34.68364 -30.40349 13.57846 -39.14793 -1.98325 -54.70966 curveto
-17.54497 -70.27136 -26.28941 -91.37654 -26.28941 -113.3858 curveto
-26.28941 -135.39507 -17.54497 -156.50024 -1.98325 -172.06195 curveto
13.57846 -187.62367 34.68364 -196.36812 56.6929 -196.36812 curveto
78.70216 -196.36812 99.80734 -187.62367 115.36905 -172.06195 curveto
130.93077 -156.50024 139.67522 -135.39507 139.67522 -113.3858 curveto closepath
 fill
 0.48999 0.51001 0.48999 setrgbcolor
newpath 138.50533 -113.3858 moveto
138.50533 -91.68683 129.88416 -70.8792 114.54184 -55.53687 curveto
99.19951 -40.19455 78.39188 -31.57338 56.6929 -31.57338 curveto
34.99393 -31.57338 14.1863 -40.19455 -1.15604 -55.53687 curveto
-16.49835 -70.8792 -25.11952 -91.68683 -25.11952 -113.3858 curveto
-25.11952 -135.08478 -16.49835 -155.89241 -1.15604 -171.23474 curveto
14.1863 -186.57706 34.99393 -195.19823 56.6929 -195.19823 curveto
78.39188 -195.19823 99.19951 -186.57706 114.54184 -171.23474 curveto
129.88416 -155.89241 138.50533 -135.08478 138.50533 -113.3858 curveto closepath
 fill
 0.4761 0.5239 0.4761 setrgbcolor
newpath 137.33722 -113.3858 moveto
137.33722 -91.99666 128.83914 -71.4861 113.71587 -56.36284 curveto
98.5926 -41.23956 78.08205 -32.74149 56.6929 -32.74149 curveto
35.30376 -32.74149 14.7932 -41.23956 -0.33006 -56.36284 curveto
-15.45334 -71.4861 -23.95142 -91.99666 -23.95142 -113.3858 curveto
-23.95142 -134.77495 -15.45334 -155.2855 -0.33006 -170.40877 curveto
14.7932 -185.53204 35.30376 -194.03012 56.6929 -194.03012 curveto
78.08205 -194.03012 98.5926 -185.53204 113.71587 -170.40877 curveto
128.83914 -155.2855 137.33722 -134.77495 137.33722 -113.3858 curveto closepath
 fill
 0.46239 0.53761 0.46239 setrgbcolor
newpath 136.16731 -113.3858 moveto
136.16731 -92.30695 127.79253 -72.09393 112.88864 -57.19006 curveto
97.98477 -42.28618 77.77176 -33.91139 56.6929 -33.91139 curveto
35.61404 -33.91139 15.40103 -42.28618 0.49716 -57.19006 curveto
-14.40672 -72.09393 -22.78151 -92.30695 -22.78151 -113.3858 curveto
-22.78151 -134.46466 -14.40672 -154.67767 0.49716 -169.58154 curveto
15.40103 -184.48543 35.61404 -192.86021 56.6929 -192.86021 curveto
77.77176 -192.86021 97.98477 -184.48543 112.88864 -169.58154 curveto
127.79253 -154.67767 136.16731 -134.46466 136.16731 -113.3858 curveto closepath
 fill
 0.4489 0.5511 0.4489 setrgbcolor
newpath 134.9992 -113.3858 moveto
134.9992 -92.61676 126.74751 -72.70084 112.06268 -58.01602 curveto
97.37787 -43.33119 77.46194 -35.0795 56.6929 -35.0795 curveto
35.92386 -35.0795 16.00793 -43.33119 1.32312 -58.01602 curveto
-13.36171 -72.70084 -21.6134 -92.61676 -21.6134 -113.3858 curveto
-21.6134 -134.15485 -13.36171 -154.07077 1.32312 -168.75558 curveto
16.00793 -183.44041 35.92386 -191.69211 56.6929 -191.69211 curveto
77.46194 -191.69211 97.37787 -183.44041 112.06268 -168.75558 curveto
126.74751 -154.07077 134.9992 -134.15485 134.9992 -113.3858 curveto closepath
 fill
 0.43561 0.56439 0.43561 setrgbcolor
newpath 133.8311 -113.3858 moveto
133.8311 -92.92657 125.70248 -73.30775 111.23672 -58.84198 curveto
96.77095 -44.37622 77.15213 -36.2476 56.6929 -36.2476 curveto
36.23367 -36.2476 16.61485 -44.37622 2.14908 -58.84198 curveto
-12.31668 -73.30775 -20.4453 -92.92657 -20.4453 -113.3858 curveto
-20.4453 -133.84503 -12.31668 -153.46385 2.14908 -167.92963 curveto
16.61485 -182.39539 36.23367 -190.524 56.6929 -190.524 curveto
77.15213 -190.524 96.77095 -182.39539 111.23672 -167.92963 curveto
125.70248 -153.46385 133.8311 -133.84503 133.8311 -113.3858 curveto closepath
 fill
 0.42249 0.57751 0.42249 setrgbcolor
newpath 132.6612 -113.3858 moveto
132.6612 -93.23686 124.65587 -73.91559 110.4095 -59.6692 curveto
96.16312 -45.42284 76.84184 -37.41751 56.6929 -37.41751 curveto
36.54396 -37.41751 17.22269 -45.42284 2.9763 -59.6692 curveto
-11.27007 -73.91559 -19.27539 -93.23686 -19.27539 -113.3858 curveto
-19.27539 -133.53474 -11.27007 -152.85602 2.9763 -167.1024 curveto
17.22269 -181.34877 36.54396 -189.3541 56.6929 -189.3541 curveto
76.84184 -189.3541 96.16312 -181.34877 110.4095 -167.1024 curveto
124.65587 -152.85602 132.6612 -133.53474 132.6612 -113.3858 curveto closepath
 fill
 0.40959 0.59041 0.40959 setrgbcolor
newpath 131.49309 -113.3858 moveto
131.49309 -93.54668 123.61086 -74.52249 109.58354 -60.49516 curveto
95.55621 -46.46785 76.53203 -38.58562 56.6929 -38.58562 curveto
36.85378 -38.58562 17.82959 -46.46785 3.80226 -60.49516 curveto
-10.22505 -74.52249 -18.10728 -93.54668 -18.10728 -113.3858 curveto
-18.10728 -133.22493 -10.22505 -152.24911 3.80226 -166.27644 curveto
17.82959 -180.30376 36.85378 -188.18599 56.6929 -188.18599 curveto
76.53203 -188.18599 95.55621 -180.30376 109.58354 -166.27644 curveto
123.61086 -152.24911 131.49309 -133.22493 131.49309 -113.3858 curveto closepath
 fill
 0.39691 0.60309 0.39691 setrgbcolor
newpath 130.32498 -113.3858 moveto
130.32498 -93.85649 122.56583 -75.1294 108.75757 -61.32114 curveto
94.94931 -47.51288 76.22221 -39.75372 56.6929 -39.75372 curveto
37.16359 -39.75372 18.4365 -47.51288 4.62823 -61.32114 curveto
-9.18002 -75.1294 -16.93918 -93.85649 -16.93918 -113.3858 curveto
-16.93918 -132.91512 -9.18002 -151.64221 4.62823 -165.45047 curveto
18.4365 -179.25873 37.16359 -187.01788 56.6929 -187.01788 curveto
76.22221 -187.01788 94.94931 -179.25873 108.75757 -165.45047 curveto
122.56583 -151.64221 130.32498 -132.91512 130.32498 -113.3858 curveto closepath
 fill
 0.3844 0.6156 0.3844 setrgbcolor
newpath 129.15508 -113.3858 moveto
129.15508 -94.1668 121.51921 -75.73723 107.93034 -62.14836 curveto
94.34148 -48.5595 75.91191 -40.92363 56.6929 -40.92363 curveto
37.47389 -40.92363 19.04433 -48.5595 5.45546 -62.14836 curveto
-8.1334 -75.73723 -15.76927 -94.1668 -15.76927 -113.3858 curveto
-15.76927 -132.60481 -8.1334 -151.03438 5.45546 -164.62325 curveto
19.04433 -178.21211 37.47389 -185.84798 56.6929 -185.84798 curveto
75.91191 -185.84798 94.34148 -178.21211 107.93034 -164.62325 curveto
121.51921 -151.03438 129.15508 -132.60481 129.15508 -113.3858 curveto closepath
 fill
 0.3721 0.6279 0.3721 setrgbcolor
newpath 127.98697 -113.3858 moveto
127.98697 -94.47661 120.4742 -76.34413 107.10439 -62.97432 curveto
93.73457 -49.6045 75.6021 -42.09174 56.6929 -42.09174 curveto
37.7837 -42.09174 19.65123 -49.6045 6.28142 -62.97432 curveto
-7.0884 -76.34413 -14.60117 -94.47661 -14.60117 -113.3858 curveto
-14.60117 -132.295 -7.0884 -150.42747 6.28142 -163.79729 curveto
19.65123 -177.1671 37.7837 -184.67987 56.6929 -184.67987 curveto
75.6021 -184.67987 93.73457 -177.1671 107.10439 -163.79729 curveto
120.4742 -150.42747 127.98697 -132.295 127.98697 -113.3858 curveto closepath
 fill
 0.36 0.64 0.36 setrgbcolor
newpath 126.81886 -113.3858 moveto
126.81886 -94.78642 119.42918 -76.95103 106.27843 -63.80028 curveto
93.12767 -50.64952 75.29228 -43.25984 56.6929 -43.25984 curveto
38.09352 -43.25984 20.25813 -50.64952 7.10738 -63.80028 curveto
-6.04338 -76.95103 -13.43306 -94.78642 -13.43306 -113.3858 curveto
-13.43306 -131.98518 -6.04338 -149.82057 7.10738 -162.97133 curveto
20.25813 -176.12209 38.09352 -183.51176 56.6929 -183.51176 curveto
75.29228 -183.51176 93.12767 -176.12209 106.27843 -162.97133 curveto
119.42918 -149.82057 126.81886 -131.98518 126.81886 -113.3858 curveto closepath
 fill
 0.3481 0.6519 0.3481 setrgbcolor
newpath 125.64896 -113.3858 moveto
125.64896 -95.09671 118.38255 -77.55887 105.4512 -64.6275 curveto
92.51984 -51.69615 74.982 -44.42975 56.6929 -44.42975 curveto
38.40381 -44.42975 20.86597 -51.69615 7.9346 -64.6275 curveto
-4.99675 -77.55887 -12.26315 -95.09671 -12.26315 -113.3858 curveto
-12.26315 -131.6749 -4.99675 -149.21274 7.9346 -162.1441 curveto
20.86597 -175.07545 38.40381 -182.34186 56.6929 -182.34186 curveto
74.982 -182.34186 92.51984 -175.07545 105.4512 -162.1441 curveto
118.38255 -149.21274 125.64896 -131.6749 125.64896 -113.3858 curveto closepath
 fill
 0.3364 0.6636 0.3364 setrgbcolor
newpath 124.48085 -113.3858 moveto
124.48085 -95.40652 117.33754 -78.16579 104.62523 -65.45348 curveto
91.91292 -52.74117 74.67218 -45.59785 56.6929 -45.59785 curveto
38.71362 -45.59785 21.47289 -52.74117 8.76057 -65.45348 curveto
-3.95174 -78.16579 -11.09505 -95.40652 -11.09505 -113.3858 curveto
-11.09505 -131.36508 -3.95174 -148.60582 8.76057 -161.31813 curveto
21.47289 -174.03044 38.71362 -181.17375 56.6929 -181.17375 curveto
74.67218 -181.17375 91.91292 -174.03044 104.62523 -161.31813 curveto
117.33754 -148.60582 124.48085 -131.36508 124.48085 -113.3858 curveto closepath
 fill
 0.3249 0.6751 0.3249 setrgbcolor
newpath 123.31274 -113.3858 moveto
123.31274 -95.71634 116.29253 -78.77269 103.79927 -66.27943 curveto
91.30602 -53.78618 74.36237 -46.76596 56.6929 -46.76596 curveto
39.02344 -46.76596 22.07979 -53.78618 9.58653 -66.27943 curveto
-2.90672 -78.77269 -9.92694 -95.71634 -9.92694 -113.3858 curveto
-9.92694 -131.05527 -2.90672 -147.99892 9.58653 -160.49217 curveto
22.07979 -172.98543 39.02344 -180.00565 56.6929 -180.00565 curveto
74.36237 -180.00565 91.30602 -172.98543 103.79927 -160.49217 curveto
116.29253 -147.99892 123.31274 -131.05527 123.31274 -113.3858 curveto closepath
 fill
 0.3136 0.6864 0.3136 setrgbcolor
newpath 122.14284 -113.3858 moveto
122.14284 -96.02663 115.24591 -79.38052 102.97205 -67.10666 curveto
90.69818 -54.8328 74.05208 -47.93587 56.6929 -47.93587 curveto
39.33372 -47.93587 22.68762 -54.8328 10.41376 -67.10666 curveto
-1.8601 -79.38052 -8.75703 -96.02663 -8.75703 -113.3858 curveto
-8.75703 -130.74498 -1.8601 -147.39108 10.41376 -159.66495 curveto
22.68762 -171.93881 39.33372 -178.83574 56.6929 -178.83574 curveto
74.05208 -178.83574 90.69818 -171.93881 102.97205 -159.66495 curveto
115.24591 -147.39108 122.14284 -130.74498 122.14284 -113.3858 curveto closepath
 fill
 0.3025 0.6975 0.3025 setrgbcolor
newpath 120.97473 -113.3858 moveto
120.97473 -96.33644 114.20088 -79.98743 102.14609 -67.93262 curveto
90.09128 -55.87782 73.74226 -49.10397 56.6929 -49.10397 curveto
39.64354 -49.10397 23.29453 -55.87782 11.23972 -67.93262 curveto
-0.81508 -79.98743 -7.58893 -96.33644 -7.58893 -113.3858 curveto
-7.58893 -130.43517 -0.81508 -146.78418 11.23972 -158.83899 curveto
23.29453 -170.89378 39.64354 -177.66763 56.6929 -177.66763 curveto
73.74226 -177.66763 90.09128 -170.89378 102.14609 -158.83899 curveto
114.20088 -146.78418 120.97473 -130.43517 120.97473 -113.3858 curveto closepath
 fill
 0.2916 0.7084 0.2916 setrgbcolor
newpath 119.80484 -113.3858 moveto
119.80484 -96.64673 113.15428 -80.59526 101.31886 -68.75984 curveto
89.48344 -56.92442 73.43198 -50.27386 56.6929 -50.27386 curveto
39.95383 -50.27386 23.90236 -56.92442 12.06694 -68.75984 curveto
0.23152 -80.59526 -6.41904 -96.64673 -6.41904 -113.3858 curveto
-6.41904 -130.12488 0.23152 -146.17635 12.06694 -158.01176 curveto
23.90236 -169.84718 39.95383 -176.49774 56.6929 -176.49774 curveto
73.43198 -176.49774 89.48344 -169.84718 101.31886 -158.01176 curveto
113.15428 -146.17635 119.80484 -130.12488 119.80484 -113.3858 curveto closepath
 fill
 0.2809 0.7191 0.2809 setrgbcolor
newpath 118.63672 -113.3858 moveto
118.63672 -96.95656 112.10925 -81.20216 100.49289 -69.58582 curveto
88.87654 -57.96945 73.12215 -51.44199 56.6929 -51.44199 curveto
40.26366 -51.44199 24.50926 -57.96945 12.89291 -69.58582 curveto
1.27655 -81.20216 -5.25092 -96.95656 -5.25092 -113.3858 curveto
-5.25092 -129.81505 1.27655 -145.56944 12.89291 -157.18579 curveto
24.50926 -168.80215 40.26366 -175.32962 56.6929 -175.32962 curveto
73.12215 -175.32962 88.87654 -168.80215 100.49289 -157.18579 curveto
112.10925 -145.56944 118.63672 -129.81505 118.63672 -113.3858 curveto closepath
 fill
 0.2704 0.7296 0.2704 setrgbcolor
newpath 117.46861 -113.3858 moveto
117.46861 -97.26637 111.06422 -81.80907 99.66693 -70.41177 curveto
88.26964 -59.01448 72.81233 -52.61009 56.6929 -52.61009 curveto
40.57347 -52.61009 25.11617 -59.01448 13.71887 -70.41177 curveto
2.32158 -81.80907 -4.08281 -97.26637 -4.08281 -113.3858 curveto
-4.08281 -129.50523 2.32158 -144.96254 13.71887 -156.35983 curveto
25.11617 -167.75713 40.57347 -174.16151 56.6929 -174.16151 curveto
72.81233 -174.16151 88.26964 -167.75713 99.66693 -156.35983 curveto
111.06422 -144.96254 117.46861 -129.50523 117.46861 -113.3858 curveto closepath
 fill
 0.2601 0.7399 0.2601 setrgbcolor
newpath 116.29872 -113.3858 moveto
116.29872 -97.57666 110.01762 -82.4169 98.8397 -71.239 curveto
87.6618 -60.06108 72.50204 -53.77998 56.6929 -53.77998 curveto
40.88376 -53.77998 25.724 -60.06108 14.5461 -71.239 curveto
3.36818 -82.4169 -2.91292 -97.57666 -2.91292 -113.3858 curveto
-2.91292 -129.19495 3.36818 -144.3547 14.5461 -155.53261 curveto
25.724 -166.71053 40.88376 -172.99162 56.6929 -172.99162 curveto
72.50204 -172.99162 87.6618 -166.71053 98.8397 -155.53261 curveto
110.01762 -144.3547 116.29872 -129.19495 116.29872 -113.3858 curveto closepath
 fill
 0.25 0.75 0.25 setrgbcolor
newpath 115.1306 -113.3858 moveto
115.1306 -97.88647 108.9726 -83.0238 98.01375 -72.06496 curveto
87.0549 -61.10611 72.19223 -54.9481 56.6929 -54.9481 curveto
41.19357 -54.9481 26.3309 -61.10611 15.37206 -72.06496 curveto
4.41321 -83.0238 -1.7448 -97.88647 -1.7448 -113.3858 curveto
-1.7448 -128.88513 4.41321 -143.7478 15.37206 -154.70665 curveto
26.3309 -165.6655 41.19357 -171.8235 56.6929 -171.8235 curveto
72.19223 -171.8235 87.0549 -165.6655 98.01375 -154.70665 curveto
108.9726 -143.7478 115.1306 -128.88513 115.1306 -113.3858 curveto closepath
 fill
 0.24011 0.75989 0.24011 setrgbcolor
newpath 113.9625 -113.3858 moveto
113.9625 -98.19629 107.92758 -83.63072 97.18779 -72.89091 curveto
86.44798 -62.15112 71.88242 -56.11621 56.6929 -56.11621 curveto
41.50339 -56.11621 26.93782 -62.15112 16.19801 -72.89091 curveto
5.45822 -83.63072 -0.57669 -98.19629 -0.57669 -113.3858 curveto
-0.57669 -128.57532 5.45822 -143.14088 16.19801 -153.88069 curveto
26.93782 -164.62048 41.50339 -170.6554 56.6929 -170.6554 curveto
71.88242 -170.6554 86.44798 -164.62048 97.18779 -153.88069 curveto
107.92758 -143.14088 113.9625 -128.57532 113.9625 -113.3858 curveto closepath
 fill
 0.2304 0.7696 0.2304 setrgbcolor
newpath 112.7926 -113.3858 moveto
112.7926 -98.50658 106.88097 -84.23854 96.36057 -73.71814 curveto
85.84016 -63.19774 71.57213 -57.2861 56.6929 -57.2861 curveto
41.81367 -57.2861 27.54564 -63.19774 17.02524 -73.71814 curveto
6.50484 -84.23854 0.5932 -98.50658 0.5932 -113.3858 curveto
0.5932 -128.26503 6.50484 -142.53307 17.02524 -153.05347 curveto
27.54564 -163.57387 41.81367 -169.4855 56.6929 -169.4855 curveto
71.57213 -169.4855 85.84016 -163.57387 96.36057 -153.05347 curveto
106.88097 -142.53307 112.7926 -128.26503 112.7926 -113.3858 curveto closepath
 fill
 0.2209 0.7791 0.2209 setrgbcolor
newpath 111.62448 -113.3858 moveto
111.62448 -98.81639 105.83595 -84.84546 95.53459 -74.54411 curveto
85.23325 -64.24275 71.26231 -58.45422 56.6929 -58.45422 curveto
42.12349 -58.45422 28.15256 -64.24275 17.85121 -74.54411 curveto
7.54985 -84.84546 1.76132 -98.81639 1.76132 -113.3858 curveto
1.76132 -127.95522 7.54985 -141.92615 17.85121 -152.2275 curveto
28.15256 -162.52885 42.12349 -168.31738 56.6929 -168.31738 curveto
71.26231 -168.31738 85.23325 -162.52885 95.53459 -152.2275 curveto
105.83595 -141.92615 111.62448 -127.95522 111.62448 -113.3858 curveto closepath
 fill
 0.21161 0.78839 0.21161 setrgbcolor
newpath 110.45638 -113.3858 moveto
110.45638 -99.1262 104.79092 -85.45236 94.70863 -75.37007 curveto
84.62634 -65.28778 70.9525 -59.62233 56.6929 -59.62233 curveto
42.4333 -59.62233 28.75946 -65.28778 18.67717 -75.37007 curveto
8.59488 -85.45236 2.92943 -99.1262 2.92943 -113.3858 curveto
2.92943 -127.6454 8.59488 -141.31924 18.67717 -151.40154 curveto
28.75946 -161.48383 42.4333 -167.14928 56.6929 -167.14928 curveto
70.9525 -167.14928 84.62634 -161.48383 94.70863 -151.40154 curveto
104.79092 -141.31924 110.45638 -127.6454 110.45638 -113.3858 curveto closepath
 fill
 0.2025 0.7975 0.2025 setrgbcolor
newpath 109.28648 -113.3858 moveto
109.28648 -99.4365 103.74431 -86.0602 93.88141 -76.1973 curveto
84.01851 -66.3344 70.64221 -60.79222 56.6929 -60.79222 curveto
42.74359 -60.79222 29.3673 -66.3344 19.5044 -76.1973 curveto
9.6415 -86.0602 4.09932 -99.4365 4.09932 -113.3858 curveto
4.09932 -127.33511 9.6415 -140.71141 19.5044 -150.57431 curveto
29.3673 -160.43721 42.74359 -165.97939 56.6929 -165.97939 curveto
70.64221 -165.97939 84.01851 -160.43721 93.88141 -150.57431 curveto
103.74431 -140.71141 109.28648 -127.33511 109.28648 -113.3858 curveto closepath
 fill
 0.1936 0.8064 0.1936 setrgbcolor
newpath 108.11836 -113.3858 moveto
108.11836 -99.74632 102.6993 -86.6671 93.05545 -77.02325 curveto
83.4116 -67.37941 70.33238 -61.96034 56.6929 -61.96034 curveto
43.05342 -61.96034 29.9742 -67.37941 20.33035 -77.02325 curveto
10.68651 -86.6671 5.26744 -99.74632 5.26744 -113.3858 curveto
5.26744 -127.02528 10.68651 -140.1045 20.33035 -149.74835 curveto
29.9742 -159.3922 43.05342 -164.81126 56.6929 -164.81126 curveto
70.33238 -164.81126 83.4116 -159.3922 93.05545 -149.74835 curveto
102.6993 -140.1045 108.11836 -127.02528 108.11836 -113.3858 curveto closepath
 fill
 0.18489 0.81511 0.18489 setrgbcolor
newpath 106.94847 -113.3858 moveto
106.94847 -100.05661 101.65268 -87.27493 92.22823 -77.85048 curveto
82.80377 -68.42603 70.0221 -63.13023 56.6929 -63.13023 curveto
43.36371 -63.13023 30.58203 -68.42603 21.15758 -77.85048 curveto
11.73312 -87.27493 6.43733 -100.05661 6.43733 -113.3858 curveto
6.43733 -126.715 11.73312 -139.49667 21.15758 -148.92113 curveto
30.58203 -158.34558 43.36371 -163.64137 56.6929 -163.64137 curveto
70.0221 -163.64137 82.80377 -158.34558 92.22823 -148.92113 curveto
101.65268 -139.49667 106.94847 -126.715 106.94847 -113.3858 curveto closepath
 fill
 0.17639 0.82361 0.17639 setrgbcolor
newpath 105.78036 -113.3858 moveto
105.78036 -100.36642 100.60767 -87.88184 91.40227 -78.67644 curveto
82.19687 -69.47104 69.71228 -64.29834 56.6929 -64.29834 curveto
43.67352 -64.29834 31.18893 -69.47104 21.98354 -78.67644 curveto
12.77814 -87.88184 7.60544 -100.36642 7.60544 -113.3858 curveto
7.60544 -126.40518 12.77814 -138.88977 21.98354 -148.09517 curveto
31.18893 -157.30057 43.67352 -162.47327 56.6929 -162.47327 curveto
69.71228 -162.47327 82.19687 -157.30057 91.40227 -148.09517 curveto
100.60767 -138.88977 105.78036 -126.40518 105.78036 -113.3858 curveto closepath
 fill
 0.1681 0.8319 0.1681 setrgbcolor
newpath 104.61224 -113.3858 moveto
104.61224 -100.67624 99.56264 -88.48874 90.5763 -79.50241 curveto
81.58997 -70.51607 69.40247 -65.46646 56.6929 -65.46646 curveto
43.98334 -65.46646 31.79584 -70.51607 22.80951 -79.50241 curveto
13.82317 -88.48874 8.77356 -100.67624 8.77356 -113.3858 curveto
8.77356 -126.09537 13.82317 -138.28287 22.80951 -147.2692 curveto
31.79584 -156.25554 43.98334 -161.30515 56.6929 -161.30515 curveto
69.40247 -161.30515 81.58997 -156.25554 90.5763 -147.2692 curveto
99.56264 -138.28287 104.61224 -126.09537 104.61224 -113.3858 curveto closepath
 fill
 0.15999 0.84001 0.15999 setrgbcolor
newpath 103.44235 -113.3858 moveto
103.44235 -100.98653 98.51602 -89.09657 89.74907 -80.32964 curveto
80.98213 -71.56268 69.09218 -66.63635 56.6929 -66.63635 curveto
44.29362 -66.63635 32.40367 -71.56268 23.63673 -80.32964 curveto
14.86978 -89.09657 9.94345 -100.98653 9.94345 -113.3858 curveto
9.94345 -125.78508 14.86978 -137.67503 23.63673 -146.44197 curveto
32.40367 -155.20892 44.29362 -160.13525 56.6929 -160.13525 curveto
69.09218 -160.13525 80.98213 -155.20892 89.74907 -146.44197 curveto
98.51602 -137.67503 103.44235 -125.78508 103.44235 -113.3858 curveto closepath
 fill
 0.1521 0.8479 0.1521 setrgbcolor
newpath 102.27425 -113.3858 moveto
102.27425 -101.29634 97.47101 -89.70348 88.92311 -81.1556 curveto
80.37523 -72.6077 68.78236 -67.80446 56.6929 -67.80446 curveto
44.60344 -67.80446 33.01057 -72.6077 24.46269 -81.1556 curveto
15.9148 -89.70348 11.11156 -101.29634 11.11156 -113.3858 curveto
11.11156 -125.47527 15.9148 -137.06813 24.46269 -145.61601 curveto
33.01057 -154.16391 44.60344 -158.96715 56.6929 -158.96715 curveto
68.78236 -158.96715 80.37523 -154.16391 88.92311 -145.61601 curveto
97.47101 -137.06813 102.27425 -125.47527 102.27425 -113.3858 curveto closepath
 fill
 0.14441 0.85559 0.14441 setrgbcolor
newpath 101.10612 -113.3858 moveto
101.10612 -101.60616 96.42598 -90.3104 88.09715 -81.98155 curveto
79.76831 -73.65273 68.47255 -68.97258 56.6929 -68.97258 curveto
44.91325 -68.97258 33.6175 -73.65273 25.28865 -81.98155 curveto
16.95982 -90.3104 12.27968 -101.60616 12.27968 -113.3858 curveto
12.27968 -125.16545 16.95982 -136.46121 25.28865 -144.79005 curveto
33.6175 -153.11888 44.91325 -157.79903 56.6929 -157.79903 curveto
68.47255 -157.79903 79.76831 -153.11888 88.09715 -144.79005 curveto
96.42598 -136.46121 101.10612 -125.16545 101.10612 -113.3858 curveto closepath
 fill
 0.1369 0.8631 0.1369 setrgbcolor
newpath 99.93623 -113.3858 moveto
99.93623 -101.91646 95.37936 -90.91823 87.26993 -82.80878 curveto
79.16048 -74.69934 68.16225 -70.14247 56.6929 -70.14247 curveto
45.22356 -70.14247 34.22533 -74.69934 26.11588 -82.80878 curveto
18.00644 -90.91823 13.44957 -101.91646 13.44957 -113.3858 curveto
13.44957 -124.85515 18.00644 -135.85338 26.11588 -143.96283 curveto
34.22533 -152.07227 45.22356 -156.62914 56.6929 -156.62914 curveto
68.16225 -156.62914 79.16048 -152.07227 87.26993 -143.96283 curveto
95.37936 -135.85338 99.93623 -124.85515 99.93623 -113.3858 curveto closepath
 fill
 0.1296 0.8704 0.1296 setrgbcolor
newpath 98.76811 -113.3858 moveto
98.76811 -102.22627 94.33435 -91.52513 86.44395 -83.63475 curveto
78.55357 -75.74435 67.85243 -71.3106 56.6929 -71.3106 curveto
45.53337 -71.3106 34.83223 -75.74435 26.94185 -83.63475 curveto
19.05145 -91.52513 14.61769 -102.22627 14.61769 -113.3858 curveto
14.61769 -124.54533 19.05145 -135.24648 26.94185 -143.13686 curveto
34.83223 -151.02725 45.53337 -155.46101 56.6929 -155.46101 curveto
67.85243 -155.46101 78.55357 -151.02725 86.44395 -143.13686 curveto
94.33435 -135.24648 98.76811 -124.54533 98.76811 -113.3858 curveto closepath
 fill
 0.1225 0.8775 0.1225 setrgbcolor
newpath 97.6 -113.3858 moveto
97.6 -102.53609 93.28934 -92.13203 85.618 -84.46071 curveto
77.94667 -76.78937 67.54262 -72.4787 56.6929 -72.4787 curveto
45.84319 -72.4787 35.43913 -76.78937 27.7678 -84.46071 curveto
20.09647 -92.13203 15.7858 -102.53609 15.7858 -113.3858 curveto
15.7858 -124.23552 20.09647 -134.63957 27.7678 -142.3109 curveto
35.43913 -149.98224 45.84319 -154.29291 56.6929 -154.29291 curveto
67.54262 -154.29291 77.94667 -149.98224 85.618 -142.3109 curveto
93.28934 -134.63957 97.6 -124.23552 97.6 -113.3858 curveto closepath fill
 0.1156 0.8844 0.1156 setrgbcolor
newpath 96.43011 -113.3858 moveto
96.43011 -102.84637 92.2427 -92.73987 84.79077 -85.28793 curveto
77.33884 -77.836 67.23233 -73.64859 56.6929 -73.64859 curveto
46.15347 -73.64859 36.04697 -77.836 28.59503 -85.28793 curveto
21.1431 -92.73987 16.95569 -102.84637 16.95569 -113.3858 curveto
16.95569 -123.92523 21.1431 -134.03174 28.59503 -141.48367 curveto
36.04697 -148.93561 46.15347 -153.12302 56.6929 -153.12302 curveto
67.23233 -153.12302 77.33884 -148.93561 84.79077 -141.48367 curveto
92.2427 -134.03174 96.43011 -123.92523 96.43011 -113.3858 curveto closepath
 fill
 0.1089 0.8911 0.1089 setrgbcolor
newpath 95.262 -113.3858 moveto
95.262 -103.15619 91.1977 -93.34677 83.96481 -86.11389 curveto
76.73193 -78.88101 66.92252 -74.81671 56.6929 -74.81671 curveto
46.46329 -74.81671 36.65387 -78.88101 29.42099 -86.11389 curveto
22.18811 -93.34677 18.12381 -103.15619 18.12381 -113.3858 curveto
18.12381 -123.61542 22.18811 -133.42484 29.42099 -140.65771 curveto
36.65387 -147.8906 46.46329 -151.9549 56.6929 -151.9549 curveto
66.92252 -151.9549 76.73193 -147.8906 83.96481 -140.65771 curveto
91.1977 -133.42484 95.262 -123.61542 95.262 -113.3858 curveto closepath fill
 0.1024 0.8976 0.1024 setrgbcolor
newpath 94.09389 -113.3858 moveto
94.09389 -103.466 90.15268 -93.95367 83.13885 -86.93985 curveto
76.12503 -79.92603 66.6127 -75.98482 56.6929 -75.98482 curveto
46.7731 -75.98482 37.26077 -79.92603 30.24695 -86.93985 curveto
23.23312 -93.95367 19.29192 -103.466 19.29192 -113.3858 curveto
19.29192 -123.3056 23.23312 -132.81793 30.24695 -139.83176 curveto
37.26077 -146.84558 46.7731 -150.78679 56.6929 -150.78679 curveto
66.6127 -150.78679 76.12503 -146.84558 83.13885 -139.83176 curveto
90.15268 -132.81793 94.09389 -123.3056 94.09389 -113.3858 curveto closepath
 fill
 0.0961 0.9039 0.0961 setrgbcolor
newpath 92.924 -113.3858 moveto
92.924 -103.77629 89.10606 -94.56151 82.31163 -87.76707 curveto
75.5172 -80.97264 66.30241 -77.15471 56.6929 -77.15471 curveto
47.08339 -77.15471 37.8686 -80.97264 31.07417 -87.76707 curveto
24.27974 -94.56151 20.4618 -103.77629 20.4618 -113.3858 curveto
20.4618 -122.99532 24.27974 -132.2101 31.07417 -139.00453 curveto
37.8686 -145.79897 47.08339 -149.6169 56.6929 -149.6169 curveto
66.30241 -149.6169 75.5172 -145.79897 82.31163 -139.00453 curveto
89.10606 -132.2101 92.924 -122.99532 92.924 -113.3858 curveto closepath fill
 0.09 0.91 0.09 setrgbcolor
newpath 91.75587 -113.3858 moveto
91.75587 -104.0861 88.06104 -95.16843 81.48566 -88.59305 curveto
74.91028 -82.01767 65.9926 -78.32283 56.6929 -78.32283 curveto
47.3932 -78.32283 38.47552 -82.01767 31.90015 -88.59305 curveto
25.32477 -95.16843 21.62993 -104.0861 21.62993 -113.3858 curveto
21.62993 -122.6855 25.32477 -131.60318 31.90015 -138.17856 curveto
38.47552 -144.75394 47.3932 -148.44878 56.6929 -148.44878 curveto
65.9926 -148.44878 74.91028 -144.75394 81.48566 -138.17856 curveto
88.06104 -131.60318 91.75587 -122.6855 91.75587 -113.3858 curveto closepath
 fill
 0.08409 0.91591 0.08409 setrgbcolor
newpath 90.58598 -113.3858 moveto
90.58598 -104.3964 87.01442 -95.77626 80.65843 -89.42027 curveto
74.30244 -83.06429 65.68231 -79.49272 56.6929 -79.49272 curveto
47.70349 -79.49272 39.08336 -83.06429 32.72737 -89.42027 curveto
26.37138 -95.77626 22.79982 -104.3964 22.79982 -113.3858 curveto
22.79982 -122.37521 26.37138 -130.99535 32.72737 -137.35133 curveto
39.08336 -143.70732 47.70349 -147.27888 56.6929 -147.27888 curveto
65.68231 -147.27888 74.30244 -143.70732 80.65843 -137.35133 curveto
87.01442 -130.99535 90.58598 -122.37521 90.58598 -113.3858 curveto closepath
 fill
 0.0784 0.9216 0.0784 setrgbcolor
newpath 89.41788 -113.3858 moveto
89.41788 -104.70622 85.9694 -96.38316 79.83247 -90.24623 curveto
73.69554 -84.1093 65.37248 -80.66083 56.6929 -80.66083 curveto
48.01332 -80.66083 39.69026 -84.1093 33.55333 -90.24623 curveto
27.4164 -96.38316 23.96793 -104.70622 23.96793 -113.3858 curveto
23.96793 -122.06538 27.4164 -130.38844 33.55333 -136.52538 curveto
39.69026 -142.66231 48.01332 -146.11078 56.6929 -146.11078 curveto
65.37248 -146.11078 73.69554 -142.66231 79.83247 -136.52538 curveto
85.9694 -130.38844 89.41788 -122.06538 89.41788 -113.3858 curveto closepath
 fill
 0.0729 0.9271 0.0729 setrgbcolor
newpath 88.24976 -113.3858 moveto
88.24976 -105.01604 84.92438 -96.99007 79.00652 -91.07219 curveto
73.08864 -85.15433 65.06267 -81.82895 56.6929 -81.82895 curveto
48.32314 -81.82895 40.29716 -85.15433 34.37929 -91.07219 curveto
28.46143 -96.99007 25.13605 -105.01604 25.13605 -113.3858 curveto
25.13605 -121.75557 28.46143 -129.78154 34.37929 -135.69942 curveto
40.29716 -141.61728 48.32314 -144.94266 56.6929 -144.94266 curveto
65.06267 -144.94266 73.08864 -141.61728 79.00652 -135.69942 curveto
84.92438 -129.78154 88.24976 -121.75557 88.24976 -113.3858 curveto closepath
 fill
 0.0676 0.9324 0.0676 setrgbcolor
newpath 87.07986 -113.3858 moveto
87.07986 -105.32632 83.87778 -97.5979 78.17929 -91.89941 curveto
72.4808 -86.20093 64.75238 -82.99884 56.6929 -82.99884 curveto
48.63342 -82.99884 40.905 -86.20093 35.20651 -91.89941 curveto
29.50803 -97.5979 26.30594 -105.32632 26.30594 -113.3858 curveto
26.30594 -121.44528 29.50803 -129.1737 35.20651 -134.8722 curveto
40.905 -140.57068 48.63342 -143.77277 56.6929 -143.77277 curveto
64.75238 -143.77277 72.4808 -140.57068 78.17929 -134.8722 curveto
83.87778 -129.1737 87.07986 -121.44528 87.07986 -113.3858 curveto closepath
 fill
 0.0625 0.9375 0.0625 setrgbcolor
newpath 85.91176 -113.3858 moveto
85.91176 -105.63614 82.83275 -98.2048 77.35332 -92.72539 curveto
71.8739 -87.24596 64.44257 -84.16695 56.6929 -84.16695 curveto
48.94324 -84.16695 41.5119 -87.24596 36.03249 -92.72539 curveto
30.55305 -98.2048 27.47404 -105.63614 27.47404 -113.3858 curveto
27.47404 -121.13547 30.55305 -128.5668 36.03249 -134.04622 curveto
41.5119 -139.52565 48.94324 -142.60466 56.6929 -142.60466 curveto
64.44257 -142.60466 71.8739 -139.52565 77.35332 -134.04622 curveto
82.83275 -128.5668 85.91176 -121.13547 85.91176 -113.3858 curveto closepath
 fill
 0.0576 0.9424 0.0576 setrgbcolor
newpath 84.74364 -113.3858 moveto
84.74364 -105.94595 81.78773 -98.8117 76.52736 -93.55135 curveto
71.267 -88.29097 64.13275 -85.33507 56.6929 -85.33507 curveto
49.25305 -85.33507 42.1188 -88.29097 36.85844 -93.55135 curveto
31.59807 -98.8117 28.64217 -105.94595 28.64217 -113.3858 curveto
28.64217 -120.82565 31.59807 -127.9599 36.85844 -133.22026 curveto
42.1188 -138.48064 49.25305 -141.43654 56.6929 -141.43654 curveto
64.13275 -141.43654 71.267 -138.48064 76.52736 -133.22026 curveto
81.78773 -127.9599 84.74364 -120.82565 84.74364 -113.3858 curveto closepath
 fill
 0.0529 0.9471 0.0529 setrgbcolor
newpath 83.57375 -113.3858 moveto
83.57375 -106.25624 80.74112 -99.41954 75.70013 -94.37857 curveto
70.65916 -89.33759 63.82246 -86.50496 56.6929 -86.50496 curveto
49.56334 -86.50496 42.72664 -89.33759 37.68567 -94.37857 curveto
32.64468 -99.41954 29.81206 -106.25624 29.81206 -113.3858 curveto
29.81206 -120.51537 32.64468 -127.35207 37.68567 -132.39304 curveto
42.72664 -137.43402 49.56334 -140.26665 56.6929 -140.26665 curveto
63.82246 -140.26665 70.65916 -137.43402 75.70013 -132.39304 curveto
80.74112 -127.35207 83.57375 -120.51537 83.57375 -113.3858 curveto closepath
 fill
 0.0484 0.9516 0.0484 setrgbcolor
newpath 82.40564 -113.3858 moveto
82.40564 -106.56606 79.69609 -100.02646 74.87418 -95.20453 curveto
70.05225 -90.38261 63.51265 -87.67307 56.6929 -87.67307 curveto
49.87315 -87.67307 43.33356 -90.38261 38.51163 -95.20453 curveto
33.68971 -100.02646 30.98016 -106.56606 30.98016 -113.3858 curveto
30.98016 -120.20555 33.68971 -126.74515 38.51163 -131.56708 curveto
43.33356 -136.38899 49.87315 -139.09854 56.6929 -139.09854 curveto
63.51265 -139.09854 70.05225 -136.38899 74.87418 -131.56708 curveto
79.69609 -126.74515 82.40564 -120.20555 82.40564 -113.3858 curveto closepath
 fill
 0.0441 0.9559 0.0441 setrgbcolor
newpath 81.23752 -113.3858 moveto
81.23752 -106.87587 78.65108 -100.63336 74.04822 -96.03049 curveto
69.44534 -91.42763 63.20284 -88.84119 56.6929 -88.84119 curveto
50.18297 -88.84119 43.94046 -91.42763 39.33759 -96.03049 curveto
34.73473 -100.63336 32.14828 -106.87587 32.14828 -113.3858 curveto
32.14828 -119.89574 34.73473 -126.13824 39.33759 -130.74112 curveto
43.94046 -135.34398 50.18297 -137.93042 56.6929 -137.93042 curveto
63.20284 -137.93042 69.44534 -135.34398 74.04822 -130.74112 curveto
78.65108 -126.13824 81.23752 -119.89574 81.23752 -113.3858 curveto closepath
 fill
 0.04 0.96 0.04 setrgbcolor
newpath 80.06763 -113.3858 moveto
80.06763 -107.18617 77.60446 -101.2412 73.221 -96.85771 curveto
68.83751 -92.47424 62.89253 -90.01108 56.6929 -90.01108 curveto
50.49327 -90.01108 44.5483 -92.47424 40.16481 -96.85771 curveto
35.78134 -101.2412 33.31818 -107.18617 33.31818 -113.3858 curveto
33.31818 -119.58543 35.78134 -125.53041 40.16481 -129.9139 curveto
44.5483 -134.29736 50.49327 -136.76053 56.6929 -136.76053 curveto
62.89253 -136.76053 68.83751 -134.29736 73.221 -129.9139 curveto
77.60446 -125.53041 80.06763 -119.58543 80.06763 -113.3858 curveto closepath
 fill
 0.0361 0.9639 0.0361 setrgbcolor
newpath 78.89952 -113.3858 moveto
78.89952 -107.49599 76.55945 -101.8481 72.39502 -97.68369 curveto
68.2306 -93.51926 62.58272 -91.17918 56.6929 -91.17918 curveto
50.80309 -91.17918 45.1552 -93.51926 40.99078 -97.68369 curveto
36.82635 -101.8481 34.48628 -107.49599 34.48628 -113.3858 curveto
34.48628 -119.27562 36.82635 -124.92351 40.99078 -129.08792 curveto
45.1552 -133.25235 50.80309 -135.59242 56.6929 -135.59242 curveto
62.58272 -135.59242 68.2306 -133.25235 72.39502 -129.08792 curveto
76.55945 -124.92351 78.89952 -119.27562 78.89952 -113.3858 curveto closepath
 fill
 0.0324 0.9676 0.0324 setrgbcolor
newpath 77.72961 -113.3858 moveto
77.72961 -107.80627 75.51282 -102.45593 71.5678 -98.51091 curveto
67.62277 -94.56589 62.27243 -92.34909 56.6929 -92.34909 curveto
51.11337 -92.34909 45.76303 -94.56589 41.81801 -98.51091 curveto
37.87299 -102.45593 35.65619 -107.80627 35.65619 -113.3858 curveto
35.65619 -118.96533 37.87299 -124.31567 41.81801 -128.2607 curveto
45.76303 -132.20572 51.11337 -134.42252 56.6929 -134.42252 curveto
62.27243 -134.42252 67.62277 -132.20572 71.5678 -128.2607 curveto
75.51282 -124.31567 77.72961 -118.96533 77.72961 -113.3858 curveto closepath
 fill
 0.0289 0.9711 0.0289 setrgbcolor
newpath 76.56151 -113.3858 moveto
76.56151 -108.11609 74.4678 -103.06284 70.74184 -99.33687 curveto
67.01587 -95.6109 61.96262 -93.5172 56.6929 -93.5172 curveto
51.42319 -93.5172 46.36993 -95.6109 42.64397 -99.33687 curveto
38.918 -103.06284 36.8243 -108.11609 36.8243 -113.3858 curveto
36.8243 -118.65552 38.918 -123.70877 42.64397 -127.43474 curveto
46.36993 -131.1607 51.42319 -133.25441 56.6929 -133.25441 curveto
61.96262 -133.25441 67.01587 -131.1607 70.74184 -127.43474 curveto
74.4678 -123.70877 76.56151 -118.65552 76.56151 -113.3858 curveto closepath
 fill
 0.0256 0.9744 0.0256 setrgbcolor
newpath 75.3934 -113.3858 moveto
75.3934 -108.4259 73.42279 -103.66974 69.91588 -100.16283 curveto
66.40897 -96.65591 61.6528 -94.6853 56.6929 -94.6853 curveto
51.733 -94.6853 46.97684 -96.65591 43.46992 -100.16283 curveto
39.96301 -103.66974 37.9924 -108.4259 37.9924 -113.3858 curveto
37.9924 -118.3457 39.96301 -123.10187 43.46992 -126.60878 curveto
46.97684 -130.11569 51.733 -132.0863 56.6929 -132.0863 curveto
61.6528 -132.0863 66.40897 -130.11569 69.91588 -126.60878 curveto
73.42279 -123.10187 75.3934 -118.3457 75.3934 -113.3858 curveto closepath fill
 0.02249 0.97751 0.02249 setrgbcolor
newpath 74.2235 -113.3858 moveto
74.2235 -108.73619 72.37617 -104.27757 69.08865 -100.99005 curveto
65.80113 -97.70253 61.34251 -95.85521 56.6929 -95.85521 curveto
52.04329 -95.85521 47.58467 -97.70253 44.29715 -100.99005 curveto
41.00963 -104.27757 39.16231 -108.73619 39.16231 -113.3858 curveto
39.16231 -118.03542 41.00963 -122.49403 44.29715 -125.78156 curveto
47.58467 -129.06908 52.04329 -130.9164 56.6929 -130.9164 curveto
61.34251 -130.9164 65.80113 -129.06908 69.08865 -125.78156 curveto
72.37617 -122.49403 74.2235 -118.03542 74.2235 -113.3858 curveto closepath fill
 0.01959 0.98041 0.01959 setrgbcolor
newpath 73.05539 -113.3858 moveto
73.05539 -109.046 71.33116 -104.88448 68.2627 -101.81601 curveto
65.19423 -98.74754 61.0327 -97.02332 56.6929 -97.02332 curveto
52.3531 -97.02332 48.19157 -98.74754 45.12311 -101.81601 curveto
42.05464 -104.88448 40.33041 -109.046 40.33041 -113.3858 curveto
40.33041 -117.7256 42.05464 -121.88713 45.12311 -124.9556 curveto
48.19157 -128.02406 52.3531 -129.74829 56.6929 -129.74829 curveto
61.0327 -129.74829 65.19423 -128.02406 68.2627 -124.9556 curveto
71.33116 -121.88713 73.05539 -117.7256 73.05539 -113.3858 curveto closepath
 fill
 0.0169 0.9831 0.0169 setrgbcolor
newpath 71.88728 -113.3858 moveto
71.88728 -109.35582 70.28613 -105.4914 67.43672 -102.64198 curveto
64.58731 -99.79257 60.72289 -98.19142 56.6929 -98.19142 curveto
52.66292 -98.19142 48.7985 -99.79257 45.94908 -102.64198 curveto
43.09967 -105.4914 41.49852 -109.35582 41.49852 -113.3858 curveto
41.49852 -117.41579 43.09967 -121.28021 45.94908 -124.12962 curveto
48.7985 -126.97903 52.66292 -128.58018 56.6929 -128.58018 curveto
60.72289 -128.58018 64.58731 -126.97903 67.43672 -124.12962 curveto
70.28613 -121.28021 71.88728 -117.41579 71.88728 -113.3858 curveto closepath
 fill
 0.0144 0.9856 0.0144 setrgbcolor
newpath 70.71738 -113.3858 moveto
70.71738 -109.66612 69.23952 -106.09923 66.6095 -103.46921 curveto
63.97948 -100.83919 60.41258 -99.36133 56.6929 -99.36133 curveto
52.97322 -99.36133 49.40633 -100.83919 46.7763 -103.46921 curveto
44.14629 -106.09923 42.66843 -109.66612 42.66843 -113.3858 curveto
42.66843 -117.10548 44.14629 -120.67238 46.7763 -123.3024 curveto
49.40633 -125.93242 52.97322 -127.41028 56.6929 -127.41028 curveto
60.41258 -127.41028 63.97948 -125.93242 66.6095 -123.3024 curveto
69.23952 -120.67238 70.71738 -117.10548 70.71738 -113.3858 curveto closepath
 fill
 0.0121 0.9879 0.0121 setrgbcolor
newpath 69.54927 -113.3858 moveto
69.54927 -109.97594 68.19449 -106.70613 65.78354 -104.29517 curveto
63.37257 -101.88422 60.10277 -100.52943 56.6929 -100.52943 curveto
53.28304 -100.52943 50.01323 -101.88422 47.60226 -104.29517 curveto
45.19131 -106.70613 43.83653 -109.97594 43.83653 -113.3858 curveto
43.83653 -116.79567 45.19131 -120.06548 47.60226 -122.47644 curveto
50.01323 -124.88739 53.28304 -126.24217 56.6929 -126.24217 curveto
60.10277 -126.24217 63.37257 -124.88739 65.78354 -122.47644 curveto
68.19449 -120.06548 69.54927 -116.79567 69.54927 -113.3858 curveto closepath
 fill
 0.01 0.99 0.01 setrgbcolor
newpath 68.38116 -113.3858 moveto
68.38116 -110.28575 67.14948 -107.31303 64.95758 -105.12112 curveto
62.76567 -102.92923 59.79295 -101.69754 56.6929 -101.69754 curveto
53.59285 -101.69754 50.62013 -102.92923 48.42822 -105.12112 curveto
46.23633 -107.31303 45.00464 -110.28575 45.00464 -113.3858 curveto
45.00464 -116.48586 46.23633 -119.45857 48.42822 -121.65048 curveto
50.62013 -123.84238 53.59285 -125.07407 56.6929 -125.07407 curveto
59.79295 -125.07407 62.76567 -123.84238 64.95758 -121.65048 curveto
67.14948 -119.45857 68.38116 -116.48586 68.38116 -113.3858 curveto closepath
 fill
 0.0081 0.9919 0.0081 setrgbcolor
newpath 67.21126 -113.3858 moveto
67.21126 -110.59604 66.10286 -107.92087 64.13036 -105.94835 curveto
62.15784 -103.97585 59.48267 -102.86745 56.6929 -102.86745 curveto
53.90314 -102.86745 51.22797 -103.97585 49.25545 -105.94835 curveto
47.28294 -107.92087 46.17455 -110.59604 46.17455 -113.3858 curveto
46.17455 -116.17557 47.28294 -118.85074 49.25545 -120.82326 curveto
51.22797 -122.79576 53.90314 -123.90416 56.6929 -123.90416 curveto
59.48267 -123.90416 62.15784 -122.79576 64.13036 -120.82326 curveto
66.10286 -118.85074 67.21126 -116.17557 67.21126 -113.3858 curveto closepath
 fill
 0.0064 0.9936 0.0064 setrgbcolor
newpath 66.04315 -113.3858 moveto
66.04315 -110.90585 65.05785 -108.52777 63.30438 -106.77432 curveto
61.55093 -105.02086 59.17285 -104.03555 56.6929 -104.03555 curveto
54.21295 -104.03555 51.83487 -105.02086 50.08142 -106.77432 curveto
48.32796 -108.52777 47.34265 -110.90585 47.34265 -113.3858 curveto
47.34265 -115.86575 48.32796 -118.24384 50.08142 -119.99728 curveto
51.83487 -121.75075 54.21295 -122.73605 56.6929 -122.73605 curveto
59.17285 -122.73605 61.55093 -121.75075 63.30438 -119.99728 curveto
65.05785 -118.24384 66.04315 -115.86575 66.04315 -113.3858 curveto closepath
 fill
 0.0049 0.9951 0.0049 setrgbcolor
newpath 64.87505 -113.3858 moveto
64.87505 -111.21567 64.01283 -109.13467 62.47842 -107.60028 curveto
60.94403 -106.06587 58.86304 -105.20366 56.6929 -105.20366 curveto
54.52277 -105.20366 52.44177 -106.06587 50.90738 -107.60028 curveto
49.37297 -109.13467 48.51076 -111.21567 48.51076 -113.3858 curveto
48.51076 -115.55594 49.37297 -117.63693 50.90738 -119.17133 curveto
52.44177 -120.70573 54.52277 -121.56795 56.6929 -121.56795 curveto
58.86304 -121.56795 60.94403 -120.70573 62.47842 -119.17133 curveto
64.01283 -117.63693 64.87505 -115.55594 64.87505 -113.3858 curveto closepath
 fill
 0.0036 0.9964 0.0036 setrgbcolor
newpath 63.70514 -113.3858 moveto
63.70514 -111.52596 62.9662 -109.74251 61.6512 -108.4275 curveto
60.3362 -107.1125 58.55275 -106.37357 56.6929 -106.37357 curveto
54.83305 -106.37357 53.0496 -107.1125 51.7346 -108.4275 curveto
50.4196 -109.74251 49.68066 -111.52596 49.68066 -113.3858 curveto
49.68066 -115.24565 50.4196 -117.0291 51.7346 -118.3441 curveto
53.0496 -119.6591 54.83305 -120.39804 56.6929 -120.39804 curveto
58.55275 -120.39804 60.3362 -119.6591 61.6512 -118.3441 curveto
62.9662 -117.0291 63.70514 -115.24565 63.70514 -113.3858 curveto closepath fill
 0.0025 0.9975 0.0025 setrgbcolor
newpath 62.53703 -113.3858 moveto
62.53703 -111.83577 61.92119 -110.34943 60.82524 -109.25346 curveto
59.72928 -108.15752 58.24294 -107.54167 56.6929 -107.54167 curveto
55.14287 -107.54167 53.65652 -108.15752 52.56056 -109.25346 curveto
51.46461 -110.34943 50.84877 -111.83577 50.84877 -113.3858 curveto
50.84877 -114.93584 51.46461 -116.42218 52.56056 -117.51814 curveto
53.65652 -118.61409 55.14287 -119.22993 56.6929 -119.22993 curveto
58.24294 -119.22993 59.72928 -118.61409 60.82524 -117.51814 curveto
61.92119 -116.42218 62.53703 -114.93584 62.53703 -113.3858 curveto closepath
 fill
 0.0016 0.9984 0.0016 setrgbcolor
newpath 61.36714 -113.3858 moveto
61.36714 -112.14606 60.87457 -110.95724 59.99802 -110.08069 curveto
59.12146 -109.20413 57.93265 -108.71156 56.6929 -108.71156 curveto
55.45316 -108.71156 54.26434 -109.20413 53.38779 -110.08069 curveto
52.51123 -110.95724 52.01866 -112.14606 52.01866 -113.3858 curveto
52.01866 -114.62555 52.51123 -115.81436 53.38779 -116.69092 curveto
54.26434 -117.56747 55.45316 -118.06004 56.6929 -118.06004 curveto
57.93265 -118.06004 59.12146 -117.56747 59.99802 -116.69092 curveto
60.87457 -115.81436 61.36714 -114.62555 61.36714 -113.3858 curveto closepath
 fill
 0.0009 0.9991 0.0009 setrgbcolor
newpath 60.19902 -113.3858 moveto
60.19902 -112.45589 59.82956 -111.56416 59.17206 -110.90665 curveto
58.51454 -110.24915 57.62282 -109.87968 56.6929 -109.87968 curveto
55.76299 -109.87968 54.87126 -110.24915 54.21375 -110.90665 curveto
53.55624 -111.56416 53.18678 -112.45589 53.18678 -113.3858 curveto
53.18678 -114.31572 53.55624 -115.20744 54.21375 -115.86496 curveto
54.87126 -116.52246 55.76299 -116.89192 56.6929 -116.89192 curveto
57.62282 -116.89192 58.51454 -116.52246 59.17206 -115.86496 curveto
59.82956 -115.20744 60.19902 -114.31572 60.19902 -113.3858 curveto closepath
 fill
 0.0004 0.9996 0.0004 setrgbcolor
newpath 59.03091 -113.3858 moveto
59.03091 -112.7657 58.78453 -112.17107 58.34608 -111.73262 curveto
57.90764 -111.29417 57.313 -111.04779 56.6929 -111.04779 curveto
56.0728 -111.04779 55.47816 -111.29417 55.03972 -111.73262 curveto
54.60127 -112.17107 54.35489 -112.7657 54.35489 -113.3858 curveto
54.35489 -114.0059 54.60127 -114.60054 55.03972 -115.03899 curveto
55.47816 -115.47743 56.0728 -115.72382 56.6929 -115.72382 curveto
57.313 -115.72382 57.90764 -115.47743 58.34608 -115.03899 curveto
58.78453 -114.60054 59.03091 -114.0059 59.03091 -113.3858 curveto closepath
 fill
 0.0001 0.9999 0.0001 setrgbcolor
newpath 57.86102 -113.3858 moveto
57.86102 -113.07599 57.73793 -112.7789 57.51886 -112.55984 curveto
57.2998 -112.34077 57.00272 -112.21768 56.6929 -112.21768 curveto
56.38309 -112.21768 56.086 -112.34077 55.86694 -112.55984 curveto
55.64787 -112.7789 55.52478 -113.07599 55.52478 -113.3858 curveto
55.52478 -113.69562 55.64787 -113.9927 55.86694 -114.21176 curveto
56.086 -114.43083 56.38309 -114.55392 56.6929 -114.55392 curveto
57.00272 -114.55392 57.2998 -114.43083 57.51886 -114.21176 curveto
57.73793 -113.9927 57.86102 -113.69562 57.86102 -113.3858 curveto closepath
 fill
grestore
showpage
%%EOF

%%EndDocument
 @endspecial eop end
%%Trailer

userdict /end-hook known{end-hook}if
%%EOF