-
Notifications
You must be signed in to change notification settings - Fork 5
/
designs.scad
1037 lines (1021 loc) · 338 KB
/
designs.scad
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
/*
**
** Designs Library
**
*/
// Author: Steven Nemetz
/*
REVISION HISTORY
v0.4 Update OPi
v0.3 Update BPi
v0.2 Update designs
*/
// Module names are of the form poly_<inkscape-path-id>().
// As a result you can associate a polygon in this OpenSCAD program with the
// corresponding SVG element in the Inkscape document by looking for
// the XML element with the attribute id="inkscape-path-id".
// Paths have their own variables so they can be imported and used
// in polygon(points) structures in other programs.
// The NN_points is the list of all polygon XY vertices.
// There may be an NN_paths variable as well. If it exists then it
// defines the nested paths. Both must be used in the
// polygon(points, paths) variant of the command.
//height = 5;
//width = 1.0;
// helper functions to determine the X,Y dimensions of the profiles
function min_x(shape_points) = min([ for (x = shape_points) min(x[0])]);
function max_x(shape_points) = max([ for (x = shape_points) max(x[0])]);
function min_y(shape_points) = min([ for (x = shape_points) min(x[1])]);
function max_y(shape_points) = max([ for (x = shape_points) max(x[1])]);
module design_bpi(h, w, res=4) {
profile_scale = 25.4/90; //made in inkscape in mm
path3347_0_points = [[-274.935065,233.167485],[-271.073294,225.468542],[-264.316514,213.311795],[-261.451634,208.427545],[-256.932574,210.965595],[-253.742116,213.033779],[-252.417364,214.442135],[-253.099221,216.207646],[-254.733314,219.134525],[-257.074704,223.592295],[-253.511573,224.089390],[-244.903784,224.296145],[-232.703574,224.296145],[-232.703574,228.988535],[-232.703574,233.680925],[-253.819324,233.680925],[-268.732317,233.530101],[-274.935065,233.167485],[-274.935065,233.167485]];
path3347_1_points = [[-176.394914,228.988535],[-176.394914,224.296145],[-159.502324,224.296145],[-142.609724,224.296145],[-142.609724,228.988535],[-142.609724,233.680925],[-159.502324,233.680925],[-176.394914,233.680925],[-176.394914,228.988535],[-176.394914,228.988535]];
path3347_2_points = [[-86.301074,228.988535],[-86.301074,224.296145],[-69.408474,224.296145],[-52.515874,224.296145],[-52.515874,228.988535],[-52.515874,233.680925],[-69.408474,233.680925],[-86.301074,233.680925],[-86.301074,228.988535],[-86.301074,228.988535]];
path3347_3_points = [[3.792776,228.988535],[3.792776,224.296145],[20.685376,224.296145],[37.577966,224.296145],[37.577966,228.988535],[37.577966,233.680925],[20.685376,233.680925],[3.792776,233.680925],[3.792776,228.988535],[3.792776,228.988535]];
path3347_4_points = [[93.886626,228.988535],[93.886626,224.296145],[110.779216,224.296145],[127.671816,224.296145],[127.671816,228.988535],[127.671816,233.680925],[110.779216,233.680925],[93.886626,233.680925],[93.886626,228.988535],[93.886626,228.988535]];
path3347_5_points = [[183.980476,228.988535],[183.980476,224.296145],[200.873066,224.296145],[217.765666,224.296145],[217.765666,228.988535],[217.765666,233.680925],[200.873066,233.680925],[183.980476,233.680925],[183.980476,228.988535],[183.980476,228.988535]];
path3347_6_points = [[251.550856,228.988535],[251.609511,226.407722],[251.902788,225.000005],[252.606648,224.413455],[253.897056,224.296145],[255.554051,224.143786],[256.243246,223.777475],[251.194133,214.462829],[242.971756,200.228745],[241.196146,197.277085],[245.367516,194.832495],[248.593471,193.106010],[250.491806,192.387915],[251.278529,193.109919],[252.716178,195.075772],[256.726015,201.538065],[264.569045,214.911375],[271.032905,226.407725],[274.935065,233.680925],[263.242955,233.680925],[251.550855,233.680925],[251.550855,228.988535],[251.550856,228.988535]];
path3347_7_points = [[-87.451914,210.453605],[-90.806843,206.131186],[-94.685578,200.304889],[-103.216104,185.615750],[-111.446758,169.336371],[-114.950653,161.522274],[-117.780804,154.416935],[-120.598740,145.746047],[-123.953837,134.058276],[-127.188600,121.748000],[-129.645534,111.209595],[-130.063753,108.007770],[-130.259611,103.739581],[-130.050758,93.285089],[-129.152001,82.408075],[-127.696364,73.670495],[-125.084103,64.660234],[-121.730211,55.689515],[-117.645826,46.777312],[-112.842086,37.942597],[-107.330129,29.204345],[-101.121093,20.581528],[-94.226115,12.093121],[-86.656334,3.758095],[-79.931183,-3.718713],[-78.698052,-5.600004],[-78.583891,-6.114921],[-78.793254,-6.360705],[-80.058181,-7.066756],[-81.713439,-8.453716],[-85.751268,-12.749425],[-90.019383,-18.205954],[-93.630424,-23.781425],[-97.675094,-30.942075],[-92.671884,-35.882925],[-88.607641,-40.612953],[-85.861964,-45.046925],[-83.780874,-49.650685],[-82.136712,-48.549220],[-78.569054,-45.366535],[-73.962082,-41.408263],[-69.303484,-38.293656],[-64.172095,-35.780611],[-58.146744,-33.627025],[-52.821183,-32.352955],[-46.928795,-31.630283],[-40.595538,-31.447706],[-33.947367,-31.793925],[-27.110238,-32.657638],[-20.210108,-34.027545],[-13.372931,-35.892344],[-6.724664,-38.240735],[-2.413184,-39.757006],[-0.340694,-40.108445],[2.018616,-29.903815],[6.661746,-7.228955],[8.504495,1.712469],[9.249218,6.718937],[9.236126,8.155063],[8.980095,9.097650],[8.491647,9.710097],[7.781306,10.155805],[5.127482,11.016440],[0.649557,11.983650],[-10.767084,13.667615],[-14.285352,13.844353],[-18.492370,13.735460],[-28.047258,12.789230],[-37.580957,11.085830],[-45.242674,8.882165],[-45.898595,8.753224],[-46.394759,8.926749],[-46.924919,10.113714],[-46.867360,12.308104],[-46.256286,15.374958],[-43.510409,23.586224],[-38.960924,33.667845],[-35.903332,39.338094],[-32.165292,45.598884],[-23.235313,59.056445],[-13.345888,72.369248],[-3.671914,83.866015],[1.973333,89.173680],[9.103084,94.475875],[17.466638,99.650300],[26.813297,104.574659],[36.892359,109.126653],[47.453124,113.183986],[58.244893,116.624359],[69.016966,119.325475],[79.091031,120.778968],[91.730705,121.636713],[104.621390,121.805630],[115.448486,121.192645],[121.957680,120.701262],[125.120226,120.952065],[125.227599,121.950322],[124.943849,124.092245],[123.425415,130.547665],[108.219198,184.388111],[102.329856,204.353495],[101.634443,205.505913],[100.368049,206.140381],[97.900813,206.409302],[93.602875,206.465075],[87.188915,206.203698],[80.385775,205.435435],[73.284392,204.184090],[65.975699,202.473465],[58.550633,200.327364],[51.100127,197.769590],[43.715116,194.823946],[36.486536,191.514235],[25.449342,185.829761],[10.394676,176.556665],[4.079049,172.367700],[-2.150157,167.802417],[-8.266657,162.893335],[-14.244165,157.672974],[-20.056393,152.173855],[-25.677056,146.428495],[-31.079867,140.469415],[-36.238538,134.329135],[-41.126785,128.040174],[-45.718319,121.635051],[-49.986856,115.146287],[-53.906107,108.606401],[-57.449787,102.047912],[-60.591610,95.503340],[-63.305288,89.005204],[-65.564534,82.586025],[-68.609801,72.293216],[-70.734518,63.287949],[-72.095681,54.781564],[-72.850284,45.985405],[-73.492214,34.254435],[-75.233914,40.823775],[-76.430670,46.310296],[-77.236117,52.218893],[-77.651862,58.484837],[-77.679512,65.043400],[-77.320673,71.829854],[-76.576951,78.779472],[-75.449953,85.827525],[-73.941284,92.909285],[-69.529864,109.621116],[-67.353894,116.401807],[-65.093846,122.384365],[-62.671788,127.757801],[-60.009792,132.711127],[-57.029927,137.433354],[-53.654265,142.113495],[-39.778624,159.294274],[-23.728225,178.053105],[-18.210316,184.734954],[-16.531747,187.135231],[-15.915255,188.453395],[-16.256999,189.003717],[-17.382447,189.733019],[-22.585752,191.957941],[-49.011055,201.078735],[-72.958256,208.859632],[-84.058504,212.095935],[-85.860378,211.613500],[-87.451914,210.453605],[-87.451914,210.453605]];
path3347_8_points = [[-239.976774,181.532805],[-243.965304,178.701415],[-241.426351,173.781234],[-235.792441,164.020004],[-230.038000,154.463230],[-227.137454,150.156415],[-225.332331,151.037190],[-222.465722,153.033534],[-219.826501,155.176470],[-218.703544,156.497025],[-221.201238,161.320683],[-226.604056,170.515892],[-232.143173,179.485978],[-235.049764,183.634265],[-236.884199,183.135970],[-239.976774,181.532805],[-239.976774,181.532805]];
path3347_9_points = [[211.813676,146.187315],[203.247482,131.470290],[196.813126,119.809695],[198.076274,118.464785],[201.342306,116.333185],[206.034696,113.641365],[214.344546,128.203225],[220.115627,138.559198],[222.321606,143.009055],[217.565406,145.785675],[213.142006,148.318305],[211.813676,146.187315],[211.813676,146.187315]];
path3347_10_points = [[-194.981894,103.536895],[-197.841008,101.391759],[-198.463878,100.505412],[-198.514524,99.779835],[-195.629899,94.379078],[-190.219911,85.042446],[-184.896654,76.195244],[-182.272224,72.262775],[-180.410995,73.027946],[-177.478753,74.768794],[-174.770062,76.653317],[-173.579484,77.849515],[-176.011839,82.740270],[-181.436331,92.184376],[-187.044102,101.424701],[-190.026294,105.704115],[-191.859451,105.177279],[-194.981894,103.536895],[-194.981894,103.536895]];
path3347_11_points = [[69.486206,95.124715],[60.124236,93.742425],[54.742541,92.704065],[48.813979,91.133969],[42.540408,89.112358],[36.123688,86.719454],[29.765677,84.035478],[23.668234,81.140652],[18.033217,78.115197],[13.062486,75.039335],[7.654770,71.213554],[2.517605,67.190040],[-2.356856,62.960849],[-6.976456,58.518036],[-11.349040,53.853657],[-15.482453,48.959766],[-19.384540,43.828421],[-23.063144,38.451675],[-26.525316,32.768610],[-29.465873,27.341565],[-31.386953,23.155027],[-31.809608,21.834601],[-31.790694,21.193485],[-17.410204,19.264125],[-3.426664,17.731735],[-0.051564,20.931745],[5.828763,25.755890],[12.467788,29.825304],[19.804509,33.124388],[27.777922,35.637542],[36.327024,37.349169],[45.390812,38.243670],[54.908284,38.305444],[64.818436,37.518895],[74.363896,35.934298],[85.158941,33.447447],[95.929295,30.386176],[105.400686,27.078315],[115.940846,22.547315],[119.225516,21.136725],[121.908878,19.963931],[125.065716,18.096315],[127.156530,16.668255],[128.750306,15.956608],[129.411950,16.026635],[130.010707,16.464400],[131.101398,18.694661],[132.186041,23.150418],[133.428299,30.334699],[137.040316,54.900945],[141.064026,82.942445],[140.983604,83.740929],[140.587954,84.590128],[139.040034,86.284788],[136.798393,87.714656],[134.241156,88.567965],[123.917906,91.311345],[115.447599,93.260404],[106.284646,94.680795],[97.520449,95.269989],[86.558601,95.563385],[76.260165,95.526466],[69.486206,95.124715],[69.486206,95.124715]];
path3347_12_points = [[164.143496,63.514605],[155.741736,49.026525],[151.227076,41.275135],[153.291996,40.030085],[158.019146,37.148605],[159.976661,36.083821],[160.944566,35.821785],[164.217970,41.144716],[169.696159,50.896048],[174.786612,60.361776],[176.896806,64.827895],[172.242766,67.897095],[168.030596,70.251315],[164.143496,63.514605],[164.143496,63.514605]];
path3347_13_points = [[-149.388804,25.895645],[-153.508554,23.199185],[-151.876657,19.339637],[-147.496792,11.038831],[-142.380738,1.975488],[-138.540274,-4.171675],[-137.734526,-5.116530],[-136.877589,-5.375845],[-135.516623,-4.906798],[-133.198784,-3.666565],[-130.241296,-1.790854],[-128.830764,-0.453155],[-129.370955,1.081924],[-131.038710,4.409875],[-136.351551,13.998027],[-141.958574,23.418566],[-143.994055,26.537000],[-145.049064,27.778755],[-146.672563,27.303141],[-149.388804,25.895645],[-149.388804,25.895645]];
path3347_14_points = [[114.331876,-22.708305],[106.153556,-36.947695],[110.900046,-39.658535],[114.336767,-41.483891],[115.934196,-42.065815],[132.364206,-13.566185],[131.091837,-12.533414],[128.221389,-10.800264],[125.172853,-9.172929],[123.366216,-8.457605],[120.359264,-12.648704],[114.331876,-22.708305],[114.331876,-22.708305]];
path3347_15_points = [[-104.858334,-52.392795],[-107.615523,-54.439850],[-108.395530,-55.277115],[-108.612244,-55.839415],[-100.465954,-70.538155],[-92.576614,-84.298405],[-88.007024,-81.799885],[-84.669369,-79.554520],[-83.927263,-78.622637],[-83.801674,-77.816725],[-86.498810,-72.474339],[-91.945222,-62.934379],[-97.423003,-53.834404],[-100.214244,-49.811975],[-104.858334,-52.392795],[-104.858334,-52.392795]];
path3347_16_points = [[69.321176,-100.650965],[61.179086,-114.942145],[65.851936,-117.640005],[69.271288,-119.426215],[70.930406,-119.932235],[79.328553,-105.674611],[87.317276,-91.526105],[86.018579,-90.505159],[83.097198,-88.746644],[78.234626,-86.349855],[75.298117,-90.555100],[69.321176,-100.650965],[69.321176,-100.650965]];
path3347_17_points = [[-59.319844,-130.159795],[-62.468143,-132.120994],[-63.777614,-133.352015],[-55.620994,-148.163055],[-47.464384,-162.263035],[-42.952504,-159.729015],[-39.765711,-157.701479],[-38.439674,-156.385175],[-46.440812,-141.732349],[-54.719494,-127.655785],[-59.319844,-130.159795],[-59.319844,-130.159795]];
path3347_18_points = [[27.254716,-173.394935],[19.065766,-187.784065],[16.038456,-193.052835],[20.791726,-195.639885],[24.357922,-197.229659],[25.605585,-197.528570],[26.257176,-197.418995],[34.621332,-183.290965],[42.270356,-169.540455],[40.944701,-168.487648],[37.962913,-166.688034],[34.817756,-164.993035],[33.001996,-164.254075],[31.072148,-166.947668],[27.254716,-173.394935],[27.254716,-173.394935]];
path3347_19_points = [[7.752986,-207.455525],[2.331346,-216.813195],[-0.537814,-221.526985],[-5.007614,-213.563775],[-9.477414,-205.600565],[-14.090534,-208.144395],[-17.352517,-210.157176],[-18.717164,-211.424225],[-12.552234,-222.920575],[-6.373784,-233.680925],[-0.111884,-233.680925],[3.406099,-233.621835],[5.420017,-233.304076],[6.524644,-232.516917],[7.314756,-231.049625],[11.854086,-222.837945],[18.033687,-212.138104],[19.189500,-209.549354],[19.285316,-208.354425],[17.689726,-207.092658],[14.548086,-205.182875],[10.305476,-202.811635],[7.752986,-207.455525],[7.752986,-207.455525]];
scale([profile_scale, -profile_scale, 1])
union() {
linear_extrude(height=h)
polygon(path3347_0_points);
linear_extrude(height=h)
polygon(path3347_1_points);
linear_extrude(height=h)
polygon(path3347_2_points);
linear_extrude(height=h)
polygon(path3347_3_points);
linear_extrude(height=h)
polygon(path3347_4_points);
linear_extrude(height=h)
polygon(path3347_5_points);
linear_extrude(height=h)
polygon(path3347_6_points);
linear_extrude(height=h)
polygon(path3347_7_points);
linear_extrude(height=h)
polygon(path3347_8_points);
linear_extrude(height=h)
polygon(path3347_9_points);
linear_extrude(height=h)
polygon(path3347_10_points);
linear_extrude(height=h)
polygon(path3347_11_points);
linear_extrude(height=h)
polygon(path3347_12_points);
linear_extrude(height=h)
polygon(path3347_13_points);
linear_extrude(height=h)
polygon(path3347_14_points);
linear_extrude(height=h)
polygon(path3347_15_points);
linear_extrude(height=h)
polygon(path3347_16_points);
linear_extrude(height=h)
polygon(path3347_17_points);
linear_extrude(height=h)
polygon(path3347_18_points);
linear_extrude(height=h)
polygon(path3347_19_points);
}
}
module design_odroid(h, w, res=4) {
profile_scale = 25.4/90; //made in inkscape in mm
path3392_0_points = [[118.351927,79.867918],[116.075326,77.238252],[114.805852,74.898008],[114.255425,72.021386],[114.135967,67.782588],[114.247344,63.420080],[114.854611,60.565445],[116.367471,58.212317],[119.195627,55.354328],[121.464268,53.384696],[123.601526,51.936468],[125.640932,51.006960],[127.616017,50.593491],[129.560311,50.693378],[131.507343,51.303938],[133.490645,52.422489],[135.543747,54.046348],[137.450954,55.975568],[138.683175,57.851506],[139.367659,59.937173],[139.631657,62.495578],[139.796607,67.439658],[132.599107,67.815058],[127.934466,68.331817],[126.528120,68.795218],[125.707085,69.439835],[125.447356,70.299069],[125.724930,71.406322],[127.795967,74.498488],[129.193085,76.037011],[130.429081,76.734773],[131.911840,76.689690],[134.049247,75.999678],[135.920866,75.422076],[137.334516,75.247190],[138.279421,75.441659],[138.744805,75.972120],[138.719889,76.805213],[138.193899,77.907576],[135.595587,80.786668],[133.402377,82.485020],[131.208753,83.664720],[129.020316,84.326065],[126.842665,84.469355],[124.681400,84.094887],[122.542122,83.202960],[120.430431,81.793870],[118.351927,79.867918],[118.351927,79.867918]];
path3392_1_points = [[222.227177,82.503848],[219.621426,79.995426],[217.679809,76.739613],[216.415511,72.976624],[215.841718,68.946674],[215.971618,64.889977],[216.818395,61.046749],[218.395236,57.657205],[220.715327,54.961558],[224.319196,52.486336],[227.694577,50.985868],[229.973870,50.807329],[232.325105,51.318512],[234.643444,52.426823],[236.824047,54.039665],[238.762076,56.064444],[240.352692,58.408564],[241.491055,60.979431],[242.072327,63.684448],[242.439167,67.439658],[234.615797,67.812328],[229.090548,68.395599],[227.409749,68.822132],[226.792437,69.274618],[227.067504,71.194091],[227.831447,72.867412],[228.992381,74.245637],[230.458420,75.279821],[232.137676,75.921020],[233.938266,76.120289],[235.768301,75.828683],[237.535897,74.997258],[239.205186,74.074364],[240.404866,73.750005],[241.133290,73.948918],[241.388811,74.595839],[241.169782,75.615502],[240.474556,76.932644],[237.648927,80.158308],[235.718694,81.721806],[233.741521,82.929608],[231.741239,83.778090],[229.741677,84.263626],[227.766667,84.382595],[225.840038,84.131370],[223.985622,83.506329],[222.227247,82.503848],[222.227177,82.503848]];
path3392_2_points = [[-83.064923,81.750398],[-83.178505,81.177103],[-82.876503,80.604715],[-81.261193,79.726798],[-80.425725,79.441957],[-79.788734,78.954768],[-79.323381,78.075920],[-79.002824,76.616104],[-78.688741,71.196329],[-78.631763,61.180968],[-78.688607,51.160262],[-79.002962,45.741013],[-79.324121,44.282457],[-79.790556,43.404893],[-80.429235,42.918530],[-81.267123,42.633578],[-82.968444,41.662998],[-83.361272,40.991159],[-83.357543,40.297048],[-82.556198,39.546873],[-80.687414,38.963959],[-73.641823,38.277948],[-66.457971,38.144559],[-64.212386,38.301833],[-62.766679,38.649833],[-62.047587,39.219619],[-61.981849,40.042251],[-63.517383,42.570298],[-64.690930,44.413639],[-65.498342,46.533271],[-65.964524,49.019277],[-66.114383,51.961738],[-66.114383,58.051618],[-59.855683,58.051618],[-53.596993,58.051618],[-53.596993,50.687178],[-53.684963,46.798900],[-54.051194,44.473224],[-54.849164,43.241125],[-56.232353,42.633578],[-57.933688,41.663035],[-58.326352,40.991218],[-58.322433,40.297048],[-57.494139,39.540679],[-55.532612,38.959871],[-47.982443,38.280588],[-41.103525,38.323240],[-38.792035,38.616308],[-37.227623,39.092878],[-36.406612,39.754703],[-36.325328,40.603538],[-36.980093,41.641138],[-38.367233,42.869258],[-40.014641,44.441749],[-40.515489,45.503151],[-40.837084,47.018203],[-41.050469,52.219889],[-40.870703,61.668078],[-40.576322,70.340787],[-40.135908,75.548890],[-39.404434,78.274175],[-38.236873,79.498428],[-37.041796,80.311218],[-36.530702,81.026815],[-36.694851,81.641773],[-37.525502,82.152646],[-41.151344,82.848358],[-47.338303,83.086388],[-53.525908,82.768006],[-57.452198,81.957404],[-58.388099,81.435275],[-58.543570,80.871396],[-57.846912,80.292870],[-56.226423,79.726798],[-54.834724,79.107917],[-54.039840,77.809281],[-53.680891,75.299927],[-53.596993,71.048888],[-53.596993,63.058578],[-59.855683,63.058578],[-66.114383,63.058578],[-66.095183,69.630198],[-65.923934,74.057021],[-65.310167,76.894064],[-64.056828,78.623269],[-61.966863,79.726578],[-60.592618,80.689171],[-60.352671,81.270177],[-60.476063,81.825818],[-61.705617,82.381886],[-64.301091,82.773345],[-71.768843,83.068514],[-79.237412,82.723485],[-81.833908,82.314696],[-83.064893,81.750418],[-83.064923,81.750398]];
path3392_3_points = [[-28.789973,79.957048],[-29.350121,78.306965],[-29.512399,76.684239],[-29.275158,75.085786],[-28.636743,73.508519],[-27.595503,71.949354],[-26.149786,70.405206],[-22.038313,67.349618],[-17.826708,64.482481],[-15.238433,62.238678],[-14.636495,61.221221],[-14.332852,60.120669],[-14.529318,57.939979],[-15.645554,56.236005],[-16.491624,55.731350],[-17.499283,55.548148],[-18.723269,55.701132],[-19.340433,56.316514],[-19.437734,57.628941],[-19.102133,59.873058],[-18.756852,62.244345],[-18.960400,63.657639],[-19.899305,64.477558],[-21.760093,65.068718],[-23.564201,65.365804],[-24.996645,65.177825],[-26.259533,64.434985],[-27.554973,63.067488],[-28.717807,61.472207],[-29.182120,60.236084],[-28.982823,59.038512],[-28.154823,57.558888],[-26.255965,55.439022],[-23.578927,53.595575],[-20.273701,52.111967],[-16.490283,51.071618],[-14.613000,50.913061],[-12.727300,51.214974],[-10.734122,52.005251],[-8.534403,53.311788],[-6.020858,55.175265],[-5.228893,56.083946],[-4.675667,57.169810],[-4.072036,60.450759],[-3.783173,66.173448],[-3.125839,73.649258],[-2.617756,76.294685],[-2.065223,77.707198],[-1.440993,79.175095],[-1.886801,80.531559],[-3.157264,81.691841],[-5.007000,82.571191],[-7.190626,83.084862],[-9.462759,83.148104],[-11.578015,82.676169],[-13.291013,81.584308],[-14.088997,80.927145],[-14.793102,80.708090],[-15.497204,80.927145],[-16.295183,81.584308],[-17.255860,82.167535],[-18.761170,82.645150],[-22.580713,83.086388],[-25.028049,82.955078],[-26.708658,82.475451],[-27.877609,81.518958],[-28.789973,79.957048],[-28.789973,79.957048]];
path3392_4_points = [[5.914047,81.921148],[5.779125,80.867230],[6.466037,79.969658],[6.966643,78.754077],[7.370411,76.015569],[7.738197,67.439658],[7.370411,58.863750],[6.966643,56.125243],[6.466037,54.909658],[5.757833,54.323412],[5.523268,53.758030],[5.729666,53.231173],[6.344351,52.760503],[8.667877,52.058370],[12.232437,51.792928],[16.634533,52.250233],[17.890120,52.832343],[18.546907,53.659408],[19.032797,54.522498],[19.712733,54.726743],[20.780939,54.240853],[22.431637,53.033538],[25.176768,51.220377],[27.344173,50.697248],[28.290108,50.924563],[29.186268,51.480529],[30.955467,53.586598],[31.857206,55.183098],[32.246828,56.536605],[32.143440,57.823314],[31.566147,59.219418],[30.245805,60.903975],[28.554663,61.675696],[26.456896,61.540606],[23.916677,60.504728],[22.626063,59.963010],[21.703866,60.044859],[20.969842,60.846417],[20.243747,62.463828],[19.335326,66.856589],[19.040108,72.438016],[19.354785,77.408807],[19.739799,79.102931],[20.276047,79.969658],[21.023280,80.585622],[21.248277,81.164954],[20.982104,81.693630],[20.255828,82.157629],[17.547232,82.835501],[13.371017,83.086388],[8.401597,82.744098],[6.725248,82.373588],[5.914047,81.921148],[5.914047,81.921148]];
path3392_5_points = [[39.719727,79.905878],[38.546683,78.298874],[37.586900,76.289773],[36.357552,71.421615],[36.132552,66.014068],[36.428204,63.330732],[37.012767,60.779798],[37.892270,58.520838],[39.091964,56.484222],[40.567381,54.702872],[42.274053,53.209708],[44.167512,52.037650],[46.203287,51.219621],[48.336912,50.788540],[50.523917,50.777328],[53.110836,50.938407],[54.549635,50.677588],[55.170659,49.814645],[55.304257,48.169358],[54.687858,45.324389],[53.205877,42.786808],[52.318183,41.608269],[51.932607,40.596518],[52.043078,39.755704],[52.643525,39.089980],[53.727876,38.603498],[55.290061,38.300409],[59.823647,38.261018],[65.944037,38.649678],[66.569907,57.829728],[66.973723,67.955750],[67.476083,73.936101],[68.246811,76.973713],[68.785882,77.764908],[69.455727,78.271518],[70.495715,78.969465],[70.955103,79.638115],[70.861188,80.383044],[70.241267,81.309828],[68.877557,82.146973],[66.219951,82.695493],[55.717097,83.086388],[48.392664,83.013322],[44.128057,82.626503],[41.658627,81.674499],[39.719727,79.905878],[39.719727,79.905878]];
path3392_6_points = [[76.011407,81.921148],[75.899193,80.853194],[76.640727,79.921868],[77.210175,78.341560],[77.584941,74.456458],[77.739607,59.968398],[77.819070,46.050333],[78.042820,41.493485],[78.362017,39.436368],[79.012800,38.825475],[80.025727,38.394435],[82.701641,38.067683],[85.517016,38.447647],[86.704268,38.900004],[87.599107,39.525868],[88.238032,40.958708],[88.709462,43.747506],[89.101197,52.957988],[89.101197,64.888018],[93.071177,60.918038],[94.956012,58.889983],[95.943412,57.396419],[96.123280,56.232684],[95.585517,55.194118],[94.799411,53.713448],[94.953497,52.616538],[95.793306,52.227957],[97.260062,51.968073],[101.211120,51.816795],[105.080086,52.127506],[106.444228,52.445108],[107.140377,52.865008],[107.005504,53.596415],[106.148458,54.795359],[102.833167,57.930938],[99.325705,61.193886],[98.260633,62.530698],[97.871727,63.430468],[99.686498,66.883901],[104.037417,73.072458],[108.098156,79.115533],[109.109411,81.184847],[109.214747,82.219178],[108.114271,82.727552],[106.249835,82.986449],[101.374922,82.866560],[96.881684,82.081005],[95.494342,81.507820],[95.061797,80.851278],[94.940979,79.861334],[94.369696,78.355544],[92.245387,74.614938],[89.101197,69.987858],[89.101197,74.585648],[89.474892,78.063784],[89.879396,79.301587],[90.373347,79.969658],[91.120597,80.585622],[91.345607,81.164954],[91.079445,81.693630],[90.353177,82.157629],[87.644589,82.835501],[83.468377,83.086388],[78.498953,82.744098],[76.822604,82.373588],[76.011407,81.921148],[76.011407,81.921148]];
path3392_7_points = [[146.108757,81.921148],[145.973836,80.867230],[146.660757,79.969658],[147.161357,78.754077],[147.565122,76.015569],[147.932907,67.439658],[147.565122,58.863750],[147.161357,56.125243],[146.660757,54.909658],[145.952550,54.323412],[145.717983,53.758030],[145.924381,53.231173],[146.539066,52.760503],[148.862592,52.058370],[152.427147,51.792928],[156.829247,52.250233],[158.084834,52.832343],[158.741617,53.659408],[159.227513,54.522498],[159.907451,54.726743],[160.975655,54.240853],[162.626347,53.033538],[165.218012,51.278093],[167.266198,50.681356],[169.089319,51.240210],[171.005787,52.951538],[172.167023,54.736185],[172.608073,56.566594],[172.424437,58.306136],[171.711618,59.818185],[170.565118,60.966114],[169.080438,61.613295],[167.353081,61.623102],[165.478547,60.858908],[163.451938,59.699006],[162.776402,59.515840],[162.250702,59.644848],[161.422779,60.982337],[160.516107,63.997378],[159.526696,68.655080],[159.284848,72.746614],[159.787595,76.186242],[161.031967,78.888228],[162.094671,80.969034],[162.237279,81.782694],[162.075087,82.296098],[161.063816,82.691157],[159.166799,82.945755],[153.924436,83.061963],[148.765815,82.701500],[146.973477,82.360261],[146.108757,81.921148],[146.108757,81.921148]];
path3392_8_points = [[177.381117,81.886948],[177.288768,80.840043],[178.048367,79.911398],[178.613287,78.678410],[178.979365,75.852068],[179.091167,65.742848],[178.767667,52.418768],[186.194507,52.174268],[192.543966,51.769225],[197.380457,51.138748],[199.338087,50.886407],[200.926168,51.108695],[202.361267,51.876537],[203.859947,53.260858],[205.248692,55.159291],[206.161878,57.660621],[206.740581,61.350295],[207.125877,66.813758],[208.156837,79.957018],[208.249860,80.749422],[208.083944,81.359119],[207.511064,81.813946],[206.383191,82.141739],[201.870355,82.527565],[193.361217,82.739288],[182.363645,82.603934],[178.858327,82.304173],[177.381117,81.886978],[177.381117,81.886948],[195.454937,78.161658],[196.304519,74.673112],[196.711697,69.316445],[196.624490,63.849855],[195.990917,60.031538],[195.433500,58.950878],[194.787779,58.294350],[194.097523,58.041558],[193.406501,58.172103],[192.758481,58.665587],[192.197233,59.501615],[191.510127,62.119708],[191.317768,67.782190],[191.602660,73.820270],[192.229413,78.623854],[192.628678,80.059556],[193.062637,80.582848],[194.217683,79.871621],[195.454937,78.161658],[195.454937,78.161658]];
path3392_8_paths = [[0,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]];
path3392_9_points = [[247.499577,81.921078],[247.364656,80.867161],[248.051577,79.969598],[248.616631,78.112445],[249.017715,73.865279],[249.330691,61.346235],[248.995934,48.703122],[248.587354,44.300870],[248.018877,42.226598],[247.488421,41.416637],[247.481747,40.631764],[247.940659,39.904238],[248.806958,39.266319],[251.528926,38.388338],[255.182067,38.255898],[259.963487,38.649648],[260.310377,57.990558],[260.973306,73.685156],[261.597778,77.464815],[262.503647,79.371688],[263.561721,81.058528],[263.692197,81.763069],[263.512817,82.249138],[262.490593,82.657040],[260.585483,82.924331],[255.332701,83.061785],[250.166662,82.710911],[248.369981,82.367791],[247.499557,81.921118],[247.499577,81.921078]];
path3392_10_points = [[-154.455163,32.918288],[-155.133994,31.135602],[-155.674099,27.791808],[-156.280895,18.566483],[-156.161096,9.533495],[-155.792955,6.430122],[-155.200243,4.984028],[-149.715683,4.461174],[-137.988843,4.106088],[-126.504858,3.749224],[-119.127418,2.893425],[-116.542388,2.187858],[-114.460478,1.248877],[-112.707181,0.040256],[-111.107993,-1.474232],[-109.421516,-3.669438],[-108.415704,-6.672117],[-107.822387,-11.854965],[-107.373393,-20.590672],[-107.216980,-34.475050],[-107.619263,-39.544726],[-108.400152,-43.577127],[-109.603353,-46.730555],[-111.272577,-49.163310],[-113.451530,-51.033692],[-116.183923,-52.500002],[-118.831154,-53.083215],[-123.725647,-53.663544],[-137.463473,-54.546892],[-155.613683,-55.230712],[-155.613683,-69.625712],[-155.613683,-84.020702],[-135.888053,-84.365482],[-126.151341,-84.433466],[-118.961167,-84.216421],[-113.624923,-83.672262],[-109.450003,-82.758902],[-104.433015,-80.902769],[-99.575289,-78.337271],[-94.963997,-75.147221],[-90.686309,-71.417430],[-86.829396,-67.232710],[-83.480428,-62.677875],[-80.726577,-57.837734],[-78.655013,-52.797102],[-77.194411,-47.738504],[-76.431100,-42.364872],[-76.209564,-34.601718],[-76.374283,-22.374552],[-76.701079,-9.812338],[-77.247900,-2.304510],[-78.326408,2.512194],[-80.248263,7.001038],[-82.088107,10.395124],[-84.314450,13.732560],[-86.879484,16.965488],[-89.735398,20.046051],[-92.834383,22.926392],[-96.128631,25.558654],[-99.570330,27.894978],[-103.111673,29.887508],[-107.735402,32.015415],[-112.434069,33.210098],[-119.596353,33.838755],[-131.610933,34.268588],[-142.612914,34.524146],[-149.255742,34.433453],[-152.787223,33.922751],[-154.455163,32.918288],[-154.455163,32.918288]];
path3392_11_points = [[-228.840383,33.175818],[-233.731713,31.247948],[-238.452578,28.787757],[-242.944236,25.847094],[-247.147945,22.477814],[-251.004964,18.731768],[-254.456551,14.660808],[-257.443965,10.316787],[-259.908463,5.751558],[-261.753372,1.332190],[-262.814758,-3.279131],[-263.367531,-10.014976],[-263.686603,-20.807912],[-263.692197,-34.230087],[-262.942490,-44.344911],[-262.240698,-48.490058],[-261.297640,-52.201956],[-260.095835,-55.611802],[-258.617803,-58.850792],[-256.865013,-61.876970],[-254.686024,-64.936815],[-249.357644,-70.858850],[-243.249064,-76.019586],[-240.094824,-78.127807],[-236.976683,-79.821712],[-232.588648,-81.725977],[-228.641030,-82.802425],[-223.854286,-83.278494],[-216.948873,-83.381622],[-210.325124,-83.263680],[-205.592840,-82.828605],[-201.844553,-81.934279],[-198.172793,-80.438582],[-194.605844,-78.551441],[-191.130285,-76.290233],[-187.791558,-73.699694],[-184.635109,-70.824557],[-181.706381,-67.709558],[-179.050818,-64.399429],[-176.713864,-60.938906],[-174.740963,-57.372722],[-172.366605,-52.217614],[-171.100849,-47.354235],[-170.524338,-40.001910],[-170.217713,-27.379962],[-170.080806,-15.765212],[-170.296239,-8.196131],[-170.983319,-2.982963],[-172.261353,1.564048],[-174.051295,6.129186],[-176.241891,10.415940],[-178.828588,14.419192],[-181.806835,18.133820],[-185.172082,21.554706],[-188.919776,24.676731],[-193.045367,27.494775],[-197.544303,30.003718],[-201.307996,31.676473],[-205.031492,32.769899],[-209.366153,33.425364],[-214.963343,33.784238],[-223.473147,33.782788],[-228.840383,33.175818],[-228.840383,33.175818]];
path3392_12_points = [[-12.669273,33.471698],[-13.007885,32.216730],[-13.285183,29.444430],[-13.541363,20.986508],[-13.630401,14.652746],[-14.030245,10.685965],[-14.939988,8.088163],[-16.558723,5.861338],[-19.576093,2.349258],[-40.654693,1.723388],[-61.733293,1.097518],[-62.090663,-12.564582],[-61.998835,-22.557662],[-61.703010,-25.865485],[-61.276213,-27.398512],[-59.383033,-27.839070],[-55.094594,-28.172350],[-41.877953,-28.387302],[-29.482936,-28.555776],[-25.060817,-28.937142],[-21.623464,-29.567564],[-19.021758,-30.485267],[-17.106579,-31.728481],[-15.728807,-33.335430],[-14.739323,-35.344342],[-14.029147,-37.880162],[-13.744152,-40.518420],[-13.857155,-43.157990],[-14.340977,-45.697744],[-15.168434,-48.036554],[-16.312347,-50.073294],[-17.745534,-51.706836],[-19.440813,-52.836052],[-21.889665,-53.292632],[-26.903765,-53.768430],[-41.705483,-54.552412],[-61.733293,-55.230712],[-61.733293,-69.625712],[-61.733293,-84.020702],[-39.637753,-84.362022],[-27.501401,-84.469355],[-19.900464,-84.217590],[-14.830036,-83.444571],[-10.285213,-81.988142],[-5.984383,-80.076415],[-2.005123,-77.704550],[1.637526,-74.915246],[4.928525,-71.751200],[7.852832,-68.255110],[10.395407,-64.469674],[12.541211,-60.437590],[14.275201,-56.201556],[15.582338,-51.804269],[16.447581,-47.288428],[16.855891,-42.696730],[16.792225,-38.071873],[16.241544,-33.456555],[15.188808,-28.893474],[13.618976,-24.425327],[11.517007,-20.094812],[7.971557,-13.748892],[12.323977,-4.980532],[14.769424,0.256030],[16.096721,4.652825],[16.681981,10.156894],[16.901317,18.715278],[17.126227,33.642718],[2.664517,33.993248],[-7.805233,33.984638],[-11.189537,33.782653],[-12.669273,33.471698],[-12.669273,33.471698]];
path3392_13_points = [[64.556157,32.563278],[61.459751,31.358098],[58.200672,29.741884],[51.619695,25.583010],[45.663613,20.699970],[43.185655,18.178548],[41.182817,15.706078],[38.355809,11.619076],[36.187635,8.013841],[34.591934,4.492480],[33.482345,0.657100],[32.772507,-3.890192],[32.376058,-9.547290],[32.177887,-25.782472],[32.494825,-42.479607],[33.000258,-48.394139],[33.851471,-53.153374],[35.134315,-57.107857],[36.934644,-60.608134],[39.338311,-64.004751],[42.431167,-67.648252],[46.626540,-71.950069],[50.963116,-75.602859],[55.460279,-78.615013],[60.137415,-80.994925],[65.013907,-82.750986],[70.109140,-83.891587],[75.442499,-84.425122],[81.033367,-84.359982],[87.269630,-83.509349],[93.313296,-81.792026],[99.082663,-79.265065],[104.496032,-75.985516],[109.471703,-72.010430],[113.927976,-67.396857],[117.783151,-62.201848],[120.955527,-56.482452],[122.880945,-51.924960],[124.023826,-47.356794],[124.668104,-41.050227],[125.097717,-31.277532],[125.190488,-17.941634],[124.427393,-7.099731],[123.712085,-2.510816],[122.767436,1.578454],[121.588321,5.209364],[120.169617,8.423198],[118.448524,11.266079],[116.103644,14.368935],[110.135573,20.784550],[103.451494,26.529991],[100.211605,28.795131],[97.237497,30.465208],[93.959440,31.709538],[90.025090,32.700605],[85.647291,33.424745],[81.038888,33.868294],[76.412728,34.017586],[71.981656,33.858957],[67.958517,33.378743],[64.556157,32.563278],[64.556157,32.563278]];
path3392_14_points = [[141.295647,33.472788],[140.956613,28.557400],[140.678972,15.819416],[140.422477,-25.397612],[140.422477,-83.394832],[155.455717,-83.394832],[170.488957,-83.394832],[170.163647,-24.876062],[169.838327,33.642718],[156.003577,33.994328],[145.976286,33.986173],[142.726334,33.784076],[141.295647,33.472788],[141.295647,33.472788]];
path3392_15_points = [[185.141907,33.448788],[184.749633,31.729324],[184.510161,28.481325],[184.447932,19.467814],[184.871823,10.544447],[185.240002,7.409128],[185.698437,5.847418],[187.199254,5.099328],[190.429156,4.597265],[203.202867,4.226908],[214.011219,3.967126],[218.037719,3.594190],[221.330046,3.016369],[224.026407,2.201524],[226.265011,1.117516],[228.184065,-0.267796],[229.921777,-1.986552],[231.266831,-4.077121],[232.077033,-7.533740],[232.536042,-13.757157],[232.827517,-24.148122],[232.894798,-36.733343],[232.637077,-40.973925],[232.100531,-44.183635],[231.221724,-46.615333],[229.937219,-48.521880],[228.183579,-50.156136],[225.897367,-51.770962],[223.417672,-52.892131],[219.463730,-53.665049],[213.176376,-54.199386],[203.696447,-54.604812],[184.859197,-55.230672],[184.504567,-69.387522],[184.149937,-83.544372],[208.287597,-83.156642],[224.997206,-82.643971],[230.675353,-82.053363],[235.159671,-81.057916],[238.893116,-79.521137],[242.318646,-77.306534],[245.879217,-74.277613],[250.017787,-70.297882],[254.065906,-66.106829],[257.226203,-62.198892],[259.605604,-58.210343],[261.311036,-53.777449],[262.449424,-48.536479],[263.127695,-42.123702],[263.452774,-34.175387],[263.531587,-24.327802],[263.512987,-0.935362],[259.517527,7.180578],[257.577285,10.665657],[255.227243,14.113539],[252.528994,17.462989],[249.544131,20.652773],[246.334247,23.621655],[242.960934,26.308401],[239.485787,28.651777],[235.970397,30.590548],[232.079242,32.199752],[227.380793,33.151603],[219.947254,33.681555],[207.850827,34.025068],[192.075807,34.054219],[187.131151,33.821301],[185.141907,33.448788],[185.141907,33.448788]];
scale([profile_scale, -profile_scale, 1])
union() {
linear_extrude(height=h)
polygon(path3392_0_points);
linear_extrude(height=h)
polygon(path3392_1_points);
linear_extrude(height=h)
polygon(path3392_2_points);
linear_extrude(height=h)
polygon(path3392_3_points);
linear_extrude(height=h)
polygon(path3392_4_points);
linear_extrude(height=h)
polygon(path3392_5_points);
linear_extrude(height=h)
polygon(path3392_6_points);
linear_extrude(height=h)
polygon(path3392_7_points);
linear_extrude(height=h)
polygon(path3392_8_points, path3392_8_paths);
linear_extrude(height=h)
polygon(path3392_9_points);
linear_extrude(height=h)
polygon(path3392_10_points);
linear_extrude(height=h)
polygon(path3392_11_points);
linear_extrude(height=h)
polygon(path3392_12_points);
linear_extrude(height=h)
polygon(path3392_13_points);
linear_extrude(height=h)
polygon(path3392_14_points);
linear_extrude(height=h)
polygon(path3392_15_points);
}
}
module design_opi(h, w, res=4) {
profile_scale = 25.4/90; //made in inkscape in mm
path3347_0_points = [[-20.744915,256.731178],[-21.572557,256.069039],[-21.916795,255.141108],[-22.732295,253.532531],[-24.938801,250.979288],[-32.084852,244.283936],[-40.475000,237.545312],[-44.236626,234.937980],[-47.229295,233.253678],[-50.281025,232.130023],[-53.993738,231.142687],[-62.234964,229.717626],[-69.618675,229.259790],[-72.259495,229.481488],[-73.810575,230.050478],[-75.798326,230.921026],[-78.937215,231.652838],[-81.880846,232.339124],[-83.399155,233.100208],[-84.410579,233.675351],[-86.135545,233.914568],[-87.882869,234.189957],[-88.948045,234.852068],[-90.388489,235.514176],[-93.038045,235.789568],[-95.910925,235.370816],[-99.550991,234.083146],[-104.068334,231.879437],[-109.573045,228.712568],[-116.135545,225.005708],[-119.137084,223.104586],[-122.404085,220.541978],[-125.860115,217.508318],[-111.801875,201.102068],[-97.030395,183.974108],[-96.253907,183.954264],[-94.666981,184.433733],[-89.986345,186.552238],[-84.901834,188.882741],[-81.567425,189.852068],[-79.831064,190.104257],[-78.588675,190.710588],[-76.307322,191.467201],[-72.073045,192.080728],[-62.094825,193.183678],[-58.210319,193.363553],[-56.758459,193.030068],[-55.541090,192.341529],[-54.488882,191.243358],[-53.532506,189.680975],[-51.629935,184.945258],[-28.563335,116.760988],[-12.583856,70.442143],[-7.743440,57.309767],[-5.268085,51.604738],[-2.698045,47.820818],[-2.409155,51.817648],[-2.543034,55.107726],[-2.899654,56.304218],[-3.435485,57.129688],[-11.114312,78.277197],[-26.752624,123.733592],[-42.149569,169.416058],[-49.104295,191.241778],[-48.610003,192.323502],[-47.225429,193.807649],[-42.375235,197.576392],[-35.733321,201.734368],[-28.479295,205.467938],[-23.570145,207.779018],[-20.668605,208.602068],[-20.026295,209.215808],[-19.534241,211.305747],[-18.780885,221.406548],[-18.325132,234.275814],[-18.191231,245.822306],[-18.374432,254.128793],[-18.583462,256.467901],[-18.869985,257.278048],[-20.744985,256.731178],[-20.744915,256.731178]];
path3347_1_points = [[9.793735,235.086438],[9.768410,218.295194],[10.002141,213.859335],[10.397985,212.145048],[12.254346,211.490278],[15.360365,210.864998],[18.333029,210.194607],[19.868805,209.431388],[20.886771,208.845683],[22.614455,208.602068],[24.361779,208.326676],[25.426955,207.664568],[26.301841,206.993311],[27.591665,206.695928],[29.812839,205.871471],[32.926955,203.933098],[39.589875,199.702238],[42.391709,197.866258],[45.037565,195.557328],[47.572345,192.911588],[25.914435,125.991198],[3.298415,57.147298],[2.707904,54.445712],[2.633625,50.651548],[2.926955,46.079338],[5.594435,49.941898],[7.305761,52.949074],[7.692047,54.081180],[7.674415,54.755058],[7.723408,55.763763],[8.441895,58.646046],[12.867384,73.131012],[40.532595,158.680198],[51.281665,191.727068],[62.908355,191.727068],[71.412898,191.462116],[74.013345,191.165325],[75.114455,190.789568],[76.199620,190.127461],[77.995005,189.852068],[80.098385,189.613593],[81.924055,189.040228],[86.599405,187.246458],[89.646855,186.264508],[104.220495,204.662328],[111.813363,214.346577],[115.972775,220.010252],[117.443948,222.767922],[117.404323,223.405309],[116.972095,223.734158],[115.520789,224.476348],[114.590065,225.314268],[113.160481,226.496321],[110.509755,228.065868],[102.487055,232.441674],[98.598835,234.940418],[96.612512,235.555781],[93.197120,235.765913],[89.596591,235.568548],[87.054855,234.961418],[82.820989,233.046824],[78.442843,231.516808],[73.999129,230.380815],[69.568559,229.648288],[65.229844,229.328672],[61.061698,229.431410],[57.142831,229.965948],[53.551955,230.941728],[45.880129,233.949963],[40.338475,236.570688],[36.475650,239.269342],[32.424754,242.710756],[28.485651,246.619092],[24.958205,250.718518],[19.801955,257.285368],[14.978955,257.318768],[10.155955,257.352168],[9.793735,235.086538],[9.793735,235.086438]];
path3347_2_points = [[122.169755,181.852448],[115.752380,173.450092],[113.083205,169.501288],[114.187841,167.615527],[116.843665,164.173268],[119.939294,159.960344],[122.101315,156.221698],[125.041295,149.539568],[127.283645,144.630418],[128.059404,141.875937],[128.055829,138.807214],[127.338710,135.963929],[125.973835,133.885758],[68.083205,91.493188],[25.170721,59.925456],[14.180856,51.396776],[9.700655,47.351098],[7.099345,43.683448],[10.169405,44.733818],[12.504259,45.726453],[13.806715,46.637998],[72.827635,90.004748],[131.281295,132.517678],[134.135375,130.494748],[139.514214,125.932195],[146.548768,119.189903],[152.660458,112.836532],[154.564423,110.608396],[155.270705,109.440738],[155.890334,107.727643],[157.380075,105.503618],[160.426955,101.512128],[160.813334,101.147699],[161.439954,100.973612],[163.833560,101.299653],[176.119775,105.370908],[190.875085,110.633318],[190.885385,114.093608],[191.168174,116.707651],[191.833185,118.133318],[192.495293,119.094107],[192.770685,120.590448],[193.499094,123.456322],[195.250375,127.709808],[197.026538,132.255269],[197.081408,133.594468],[196.653995,134.674488],[192.462115,142.265418],[186.839745,152.099068],[185.069486,155.138053],[184.333185,156.875638],[183.782404,157.946737],[182.458185,159.383318],[181.133966,160.909444],[180.583185,162.195818],[180.423815,163.157180],[179.950810,164.001249],[178.094529,165.324083],[175.075611,166.137472],[170.955325,166.414568],[166.407088,166.689961],[164.891043,166.988057],[164.176935,167.352068],[163.110076,168.014179],[161.358715,168.289568],[158.592568,168.937393],[155.085915,170.494938],[146.967305,174.941118],[143.452669,177.629820],[139.278145,181.869859],[135.324804,186.680171],[132.473715,191.079688],[131.619225,192.225691],[131.053176,192.196593],[130.239086,191.626841],[127.400267,188.447604],[122.169735,181.852448],[122.169755,181.852448]];
path3347_3_points = [[-141.185945,180.584218],[-146.554162,176.002882],[-151.957465,172.554428],[-159.013445,169.097628],[-160.839115,168.526937],[-162.942495,168.289568],[-164.737880,168.014176],[-165.823045,167.352068],[-167.835664,166.689957],[-171.860885,166.414568],[-174.876519,166.324285],[-176.922612,165.919907],[-178.556187,165.001139],[-180.334265,163.367688],[-182.707406,160.665054],[-184.179295,158.445818],[-187.299075,152.820818],[-190.724421,146.828354],[-193.929740,140.599693],[-196.302281,135.391249],[-197.229295,132.459438],[-196.929462,130.693360],[-196.110674,128.165434],[-193.400485,122.130418],[-192.794035,120.068182],[-192.541795,117.396038],[-192.293134,114.940476],[-191.695295,113.398938],[-191.001872,112.247088],[-190.523415,110.728398],[-189.785417,109.690078],[-187.593102,108.593054],[-176.604295,105.358188],[-163.277234,102.007298],[-161.762897,102.054547],[-161.604295,102.911458],[-160.550277,105.435518],[-157.903117,109.605341],[-154.435154,114.301194],[-150.918725,118.403348],[-146.200399,122.789229],[-140.256655,127.688868],[-133.440255,132.954378],[-129.006655,129.776148],[-50.446199,73.079244],[-25.718848,54.950600],[-16.487755,47.853878],[-14.960838,46.795597],[-11.611081,45.328196],[-8.161674,44.127805],[-6.335805,43.870558],[-8.949715,48.555088],[-11.560070,51.821921],[-12.702752,52.682075],[-13.683945,52.977068],[-18.226072,55.727819],[-29.219930,63.217487],[-63.963625,87.838068],[-121.616050,129.600878],[-128.742005,135.347659],[-129.612600,136.491114],[-129.729295,137.263648],[-129.348548,139.010751],[-128.237272,141.905029],[-124.008935,150.698718],[-123.166795,153.286468],[-122.209011,155.326994],[-119.906245,158.885108],[-116.645695,163.523928],[-126.115055,174.578628],[-135.713455,185.799288],[-141.185945,180.584218],[-141.185945,180.584218]];
path3347_4_points = [[-7.385545,110.008028],[-10.174212,108.181874],[-12.064881,106.239292],[-13.139320,104.066803],[-13.479295,101.550928],[-13.250502,98.530726],[-12.700425,96.323718],[-10.356675,91.572968],[-9.251476,88.835252],[-8.791795,86.638368],[-8.473409,84.742934],[-7.707925,82.729968],[-5.506154,78.135288],[-5.041795,75.646038],[-4.855415,74.236807],[-4.407315,73.280088],[-2.297935,68.201968],[-1.050480,65.160897],[0.024563,63.937331],[0.473661,64.014679],[0.851134,64.555483],[1.353175,67.039568],[1.821660,69.618572],[2.525045,71.211438],[3.139948,72.595287],[3.395705,74.671738],[3.640668,76.637966],[4.229625,77.756798],[4.961244,79.018364],[5.549215,81.327748],[7.277773,89.134369],[8.251232,92.120364],[9.074475,93.711438],[9.698609,95.095287],[9.958205,97.171738],[10.233597,99.156768],[10.895705,100.320818],[11.606344,101.062095],[11.815529,102.045640],[11.559691,103.216017],[10.875262,104.517793],[8.366367,107.293802],[4.580305,109.930188],[1.982019,110.746984],[-1.414976,111.035708],[-4.805794,110.791122],[-7.385545,110.007988],[-7.385545,110.008028]];
path3347_5_points = [[-44.651165,98.827958],[-46.471969,96.981722],[-47.229295,95.273868],[-47.522348,93.844249],[-48.226925,92.666938],[-48.844988,90.777402],[-48.930055,87.635388],[-48.661692,85.459865],[-48.101932,83.963917],[-47.043000,82.807019],[-45.277115,81.648648],[-38.714615,77.127528],[-27.540357,68.362055],[-20.346270,63.241144],[-18.043016,61.921404],[-16.496276,61.361608],[-15.626539,61.511359],[-15.354295,62.320258],[-16.649072,66.201106],[-19.218745,71.948718],[-19.800025,73.774388],[-20.041795,75.877768],[-20.317184,77.673149],[-20.979295,78.758318],[-21.641403,79.931547],[-21.916795,81.938648],[-22.113229,83.971979],[-22.585505,85.208278],[-23.759360,87.801992],[-25.642565,93.098908],[-28.030905,100.320818],[-35.051975,100.546788],[-38.726244,100.586718],[-41.245231,100.368276],[-43.067388,99.809382],[-44.651165,98.827958],[-44.651165,98.827958]];
path3347_6_points = [[28.081085,99.617688],[26.221245,96.102068],[23.681905,90.210888],[22.596960,87.180328],[22.145705,84.875588],[21.870316,83.442709],[21.208205,82.508318],[20.546097,81.560846],[20.270705,80.096518],[19.995316,78.255344],[19.333205,76.401848],[17.458205,72.677288],[16.787339,70.738691],[16.490895,68.692918],[16.065506,66.659616],[15.084645,64.751008],[14.109332,62.983363],[13.753601,61.297859],[14.026995,60.036070],[14.939055,59.539568],[16.599869,60.365738],[18.864455,62.352068],[21.060193,64.349673],[22.555475,65.202958],[23.672474,65.599054],[26.037854,67.143683],[38.043405,76.180188],[43.708331,80.318376],[46.578405,82.039568],[46.964299,82.392149],[47.235506,83.327938],[47.438601,86.217409],[47.197173,89.244522],[46.912727,90.352364],[46.520705,90.945818],[45.858597,91.841551],[45.583205,93.181478],[44.922240,95.093364],[43.253803,96.951214],[41.049576,98.357470],[38.781245,98.914568],[36.871989,99.189957],[35.739455,99.852068],[35.214661,100.283616],[34.337213,100.576483],[31.982518,100.760196],[29.591698,100.431249],[28.081085,99.617688],[28.081085,99.617688]];
path3347_7_points = [[181.051955,77.376318],[174.014185,74.725254],[170.369998,73.040808],[169.459339,72.338307],[168.963687,71.610147],[168.639545,69.720438],[167.978705,64.921529],[166.781711,58.835921],[165.477245,53.432508],[164.493985,50.680188],[163.939027,49.545796],[163.708205,48.069088],[163.263447,46.175207],[162.194135,44.037838],[160.680065,41.727068],[89.015525,41.727068],[45.994146,41.620637],[21.528550,41.178794],[14.822856,40.774648],[11.038529,40.217713],[9.603044,39.485013],[9.587203,39.045570],[9.943875,38.553568],[14.626715,38.060825],[28.243618,37.691424],[86.411005,37.252348],[151.734379,36.789898],[160.403089,36.224675],[161.612500,35.780313],[161.833205,35.198308],[162.108594,33.758208],[162.770705,32.820818],[163.432813,31.735649],[163.708205,29.940268],[163.963805,27.836888],[164.578325,26.011218],[165.484858,22.567170],[166.424923,16.488361],[167.161958,9.603380],[167.459405,3.740818],[167.458465,-0.964202],[179.685945,-5.524332],[187.573966,-8.424696],[189.995502,-9.052580],[191.739170,-9.059367],[193.057806,-8.390383],[194.204244,-6.990955],[196.991875,-1.782072],[199.557719,2.024068],[203.663989,6.780453],[208.949414,12.099511],[215.052725,17.593668],[218.083465,20.179038],[218.083465,39.317498],[218.083465,58.455958],[214.164715,61.810268],[211.201385,64.179241],[209.580225,65.164568],[207.106740,67.643082],[202.094325,73.602068],[196.978603,79.537993],[195.189832,81.325778],[194.256685,81.961068],[181.051955,77.376318],[181.051955,77.376318]];
path3347_8_points = [[-197.979295,79.977068],[-198.773826,78.872288],[-199.104295,77.795888],[-201.205545,75.074238],[-206.103895,70.006056],[-211.691248,64.680874],[-215.859505,61.188228],[-217.144696,59.999315],[-217.804994,57.371411],[-218.048537,51.301542],[-218.083465,39.786738],[-218.083465,19.902218],[-210.116865,12.182638],[-204.120447,6.018424],[-199.117246,0.217022],[-195.688837,-4.496312],[-194.746922,-6.218311],[-194.416795,-7.396322],[-194.141402,-8.548887],[-193.479295,-9.366682],[-192.817184,-10.477577],[-192.541795,-12.334812],[-192.215267,-14.086448],[-191.745818,-14.300821],[-191.017765,-14.138712],[-178.331545,-10.105132],[-169.482404,-7.046929],[-167.958717,-6.070828],[-167.801545,-5.199032],[-168.876912,-1.384308],[-169.495316,3.587836],[-169.598832,8.892780],[-169.129535,13.705908],[-167.539625,23.217318],[-166.934272,25.856601],[-166.192765,27.257018],[-165.600595,28.278976],[-165.354295,30.008318],[-165.078902,31.755638],[-164.416795,32.820818],[-163.754684,33.769043],[-163.479295,35.235188],[-163.283724,35.832679],[-162.132245,36.283334],[-153.572980,36.824098],[-87.709105,37.023168],[-32.453047,37.232914],[-16.146958,37.499115],[-9.662225,37.848838],[-7.385545,38.721468],[-10.198045,39.989898],[-14.783168,40.631231],[-27.188157,41.057913],[-87.811905,41.509158],[-151.539329,41.964674],[-160.995170,42.482934],[-162.615623,42.876802],[-163.114715,43.384158],[-164.485235,46.636218],[-165.099007,48.461888],[-165.354295,50.565268],[-165.629684,52.360649],[-166.291795,53.445818],[-166.953902,54.935222],[-167.229295,57.702498],[-167.555546,62.202116],[-168.339935,67.856508],[-169.450565,74.333238],[-182.636805,77.736708],[-195.397145,80.864496],[-197.076681,80.793626],[-197.979295,79.977068],[-197.979295,79.977068]];
path3347_9_points = [[-63.404795,69.010308],[-65.940626,66.895568],[-67.931316,64.785267],[-69.387793,62.642876],[-70.320983,60.431864],[-70.741810,58.115701],[-70.661203,55.657856],[-70.090085,53.021799],[-69.039385,50.170998],[-67.411985,46.414568],[-46.070635,46.414568],[-30.998312,46.624653],[-24.729295,47.129758],[-25.255918,47.906712],[-26.522055,48.770388],[-37.367755,56.727068],[-47.996875,64.695818],[-53.917405,68.680188],[-57.224091,70.824387],[-59.073655,71.700988],[-60.680831,70.899822],[-63.404795,69.010308],[-63.404795,69.010308]];
path3347_10_points = [[52.145705,69.056508],[43.355215,62.758088],[33.726145,56.238238],[26.359316,51.045018],[23.399563,48.550174],[22.181195,47.117738],[28.283579,46.623309],[43.005075,46.421928],[63.864455,46.429928],[65.096795,49.000748],[66.122864,52.235709],[66.859275,56.403318],[67.080906,59.247212],[66.731461,61.227949],[65.461236,63.198713],[62.920525,66.012688],[59.735044,69.050032],[57.151144,70.492553],[55.956476,70.652011],[54.758230,70.456269],[52.145705,69.057198],[52.145705,69.056508]];
path3347_11_points = [[-11.625585,32.015028],[-17.685151,28.294026],[-30.567016,19.434646],[-73.948045,-11.700422],[-114.800409,-41.058502],[-127.588710,-49.962904],[-132.714075,-53.201862],[-135.818831,-51.388958],[-141.161434,-47.424209],[-146.231275,-43.266160],[-148.517745,-40.873352],[-152.106685,-36.380672],[-155.657185,-32.457212],[-167.302615,-36.166902],[-186.682415,-42.256462],[-192.215962,-44.302167],[-193.833182,-45.181709],[-194.416795,-45.841832],[-194.851239,-47.564064],[-195.895755,-50.011952],[-196.835222,-52.956017],[-196.741265,-55.860662],[-195.558777,-59.252629],[-193.446539,-63.751614],[-190.900784,-68.384741],[-188.417745,-72.179132],[-185.695755,-76.397882],[-184.005235,-79.703157],[-181.996701,-82.751842],[-179.901402,-85.232372],[-177.950585,-86.833182],[-174.482105,-88.030623],[-169.794695,-88.516862],[-165.500386,-88.813811],[-162.763445,-89.431512],[-156.976105,-91.514342],[-153.332601,-92.953262],[-150.413605,-94.676132],[-145.289275,-97.983922],[-143.584195,-99.230852],[-141.509612,-101.317719],[-136.987776,-106.983784],[-133.195445,-112.927151],[-132.032742,-115.360645],[-131.604295,-117.092852],[-131.230999,-118.294616],[-130.333505,-119.410452],[-129.899942,-119.567093],[-129.331272,-119.366665],[-127.603449,-117.671317],[-120.489755,-107.539622],[-114.435101,-98.193893],[-111.916795,-93.875062],[-113.445666,-91.399141],[-117.121465,-86.484212],[-121.372605,-80.524606],[-124.284725,-75.537022],[-127.945645,-67.094100],[-129.595265,-61.772333],[-129.725159,-59.935416],[-129.423413,-58.463028],[-128.713755,-57.216582],[-127.619915,-56.057492],[-108.008337,-41.483118],[-68.191869,-12.510996],[-28.800161,15.910734],[-10.462865,28.833928],[-9.159493,29.634821],[-7.597885,31.180319],[-6.385072,32.781867],[-6.128085,33.750908],[-7.892524,33.390538],[-11.625585,32.015028],[-11.625585,32.015028]];
path3347_12_points = [[8.200305,32.243768],[13.168937,28.194897],[25.625019,18.823222],[65.481385,-10.304132],[124.697515,-53.242462],[127.084849,-55.618134],[127.727672,-56.859730],[128.009135,-58.219834],[127.933642,-59.760450],[127.505594,-61.543578],[125.609445,-66.085382],[122.204895,-73.585382],[120.525413,-77.264611],[117.043305,-82.478752],[113.972165,-86.876312],[116.965475,-90.308972],[127.094095,-101.391332],[134.229395,-109.041032],[136.230125,-106.794852],[138.547655,-103.702312],[140.078180,-101.980105],[143.174410,-99.291877],[146.609430,-96.640662],[149.156325,-95.029492],[153.864455,-92.389982],[156.591853,-91.103863],[159.199745,-90.528902],[161.151676,-90.205112],[162.301955,-89.522882],[164.213290,-88.860771],[167.995005,-88.585382],[172.222404,-88.267189],[175.205305,-87.502162],[178.576035,-85.842742],[180.162575,-84.202054],[182.187895,-81.066572],[185.740555,-75.460382],[188.763245,-70.772882],[194.109455,-61.138222],[197.647855,-54.784822],[196.083385,-51.294472],[193.309004,-44.919349],[192.578485,-42.213722],[191.676565,-41.025376],[188.914841,-39.452096],[175.420775,-34.006992],[158.551955,-27.640642],[157.145705,-29.729502],[153.575778,-34.597258],[149.313159,-39.853847],[145.497313,-44.151628],[143.267705,-46.142962],[141.061954,-47.471764],[137.992585,-49.844402],[134.958130,-52.037021],[132.836335,-52.933002],[127.900328,-49.771987],[115.548772,-41.185553],[76.051955,-12.980202],[21.509752,26.157203],[12.616827,32.102522],[9.057055,33.796498],[7.778725,34.139375],[7.258872,34.083772],[8.200305,32.243768],[8.200305,32.243768]];
path3347_13_points = [[-64.747145,32.117738],[-66.243289,29.525371],[-67.199077,27.133702],[-67.705687,24.638005],[-67.854295,21.733558],[-67.743213,19.037060],[-67.229310,17.074638],[-66.041599,15.241906],[-63.909095,12.934478],[-62.027448,11.136400],[-60.352033,9.888273],[-58.747961,9.204839],[-57.080342,9.100838],[-55.214290,9.591012],[-53.014916,10.690100],[-47.076645,14.773988],[-36.600435,21.986978],[-33.756081,23.789632],[-30.545105,26.222848],[-27.335637,28.644184],[-24.494915,30.418278],[-22.674120,31.574561],[-21.916795,32.510538],[-23.576858,32.813039],[-28.096831,33.060762],[-42.955215,33.289618],[-59.565374,33.033794],[-63.325785,32.672225],[-64.747145,32.117738],[-64.747145,32.117738]];
path3347_14_points = [[21.208205,32.574428],[21.737793,31.797474],[23.011065,30.933798],[30.276685,25.743788],[37.145705,20.927088],[40.309525,18.853912],[45.941415,14.644788],[51.390864,10.597853],[54.116035,8.914618],[56.123608,9.579097],[59.008411,11.218818],[61.941562,13.303207],[64.094175,15.301688],[65.114227,16.772135],[65.761700,18.407126],[66.102753,20.453015],[66.203545,23.156158],[65.931611,27.094416],[65.270705,29.070868],[64.608597,30.014602],[64.333205,31.469948],[64.256492,32.050145],[63.877668,32.491916],[61.321565,33.035467],[42.770705,33.289618],[27.542191,33.079533],[21.208205,32.574428],[21.208205,32.574428]];
path3347_15_points = [[2.724365,27.195868],[4.415674,20.705841],[8.943385,6.233008],[25.215675,-42.647882],[47.965675,-110.349732],[48.152433,-111.739352],[47.886775,-112.931369],[47.066890,-114.152086],[45.590965,-115.627802],[42.745953,-117.923042],[40.106875,-119.604272],[36.170195,-122.028162],[33.173253,-123.927636],[28.800256,-126.189858],[24.561347,-128.085692],[21.966665,-128.886002],[20.676841,-129.169959],[19.801955,-129.835382],[18.599083,-130.497493],[16.520705,-130.772882],[14.399465,-131.117119],[13.093535,-131.944762],[12.771498,-139.642686],[12.663825,-155.716312],[12.770773,-171.715388],[13.092595,-179.189662],[16.968275,-178.708502],[20.020704,-177.738927],[21.034291,-176.988394],[21.710645,-176.058172],[23.207626,-173.783236],[25.578411,-171.045273],[32.077058,-164.919419],[39.477905,-159.158917],[42.976442,-156.877643],[46.052275,-155.242072],[51.353175,-152.689922],[53.367355,-152.084712],[56.484305,-151.660034],[64.559078,-151.345613],[72.642622,-151.733344],[75.770535,-152.186356],[77.800065,-152.809912],[80.219586,-153.798991],[82.265915,-154.210382],[84.139319,-154.528768],[86.143125,-155.294252],[90.731481,-157.494816],[93.199235,-157.960382],[95.305037,-157.421274],[98.730233,-155.933012],[107.927275,-150.883382],[114.651825,-147.117252],[117.735451,-145.191667],[120.972265,-142.653512],[124.318165,-139.679132],[108.750805,-123.009072],[98.958980,-112.590825],[95.864073,-109.633284],[93.508129,-107.924888],[91.544868,-107.276704],[89.628009,-107.499798],[84.548375,-109.804092],[80.521061,-111.371111],[77.338075,-112.022882],[75.344539,-112.298274],[74.176955,-112.960382],[73.096967,-113.374525],[70.730291,-113.667129],[63.852336,-113.891174],[56.974016,-113.639423],[54.606883,-113.337282],[53.526255,-112.918782],[29.548285,-42.903732],[12.481690,6.697633],[6.854549,22.443924],[4.270735,29.007818],[2.366075,31.883388],[2.724365,27.195888],[2.724365,27.195868]];
path3347_16_points = [[-5.199065,26.179548],[-7.602586,20.505081],[-12.307722,7.205614],[-28.431905,-41.710382],[-50.617795,-109.913512],[-52.071875,-113.897882],[-61.782755,-113.897882],[-68.854170,-113.626896],[-71.095871,-113.329350],[-72.073045,-112.960382],[-73.447974,-112.298274],[-75.940005,-112.022882],[-78.725671,-111.786278],[-80.806555,-111.217432],[-85.201845,-109.880732],[-86.148391,-109.757887],[-87.025253,-109.908300],[-87.994662,-110.524430],[-89.218849,-111.798733],[-93.080480,-117.091685],[-99.907995,-127.326812],[-112.423335,-146.936852],[-112.469606,-148.326764],[-111.310935,-149.211582],[-106.672055,-152.031992],[-104.313357,-153.570478],[-102.716195,-154.210382],[-100.990575,-154.761163],[-98.323045,-156.085382],[-95.745664,-157.300433],[-93.551376,-157.872347],[-91.867923,-157.785153],[-90.823045,-157.022882],[-89.875576,-156.360771],[-88.411245,-156.085382],[-86.638919,-155.843246],[-84.950945,-155.261082],[-80.792021,-153.541761],[-76.082597,-152.335002],[-70.736232,-151.624323],[-64.666485,-151.393242],[-59.648565,-151.480286],[-56.093524,-151.826246],[-53.192150,-152.567364],[-50.135235,-153.839882],[-42.541795,-157.321832],[-39.325171,-159.545978],[-34.473028,-163.736777],[-29.114180,-168.864115],[-24.377445,-173.897882],[-20.938265,-177.120418],[-19.300244,-178.174408],[-17.887285,-178.729802],[-15.076035,-179.342982],[-15.594205,-156.282832],[-16.301340,-136.789159],[-16.875768,-133.344926],[-17.787515,-131.997782],[-19.610167,-131.132694],[-21.639955,-130.772882],[-23.655856,-130.533612],[-25.445145,-129.958342],[-31.873715,-126.738852],[-36.515928,-124.061499],[-41.488729,-120.695969],[-45.563943,-117.528983],[-47.513395,-115.447262],[-41.085104,-93.911522],[-25.039825,-43.671692],[-8.952192,6.663888],[-2.422065,28.429838],[-2.704143,28.798219],[-3.272114,28.536958],[-5.199065,26.179548],[-5.199065,26.179548]];
path3347_17_points = [[11.833205,21.678038],[12.244596,19.971752],[13.233675,17.693658],[14.224459,15.331493],[14.639925,13.423078],[14.919332,12.133254],[15.583205,11.258368],[16.245316,10.193188],[16.520705,8.445868],[16.796097,6.698544],[17.458205,5.633368],[18.120316,4.568188],[18.395705,2.820868],[18.671097,1.073544],[19.333205,0.008368],[19.995316,-1.076801],[20.270705,-2.872182],[20.529461,-4.975562],[21.151585,-6.801232],[22.538395,-10.772882],[23.448153,-13.323173],[24.924985,-16.163512],[26.090987,-17.842756],[27.309083,-18.756432],[29.120214,-19.135365],[32.065325,-19.210382],[36.726808,-18.772634],[38.475856,-18.184053],[39.990755,-17.312202],[42.136419,-15.307563],[43.917508,-12.750734],[45.133333,-9.997320],[45.583205,-7.402922],[45.858597,-5.718253],[46.520705,-4.679132],[47.245094,-3.963085],[47.422375,-3.196292],[47.077611,-2.584981],[46.235865,-2.335382],[44.438365,-1.371516],[41.833205,0.945868],[39.365088,3.263252],[37.897065,4.227118],[33.852684,6.977323],[25.190335,13.589518],[16.543484,20.205407],[12.536335,22.964518],[12.039750,22.591837],[11.833205,21.678038],[11.833205,21.678038]];
path3347_18_points = [[-19.104295,18.265628],[-24.729295,14.252418],[-29.345017,11.081849],[-37.151165,5.182248],[-42.758821,0.739540],[-45.775072,-2.025903],[-46.998903,-4.008843],[-47.229295,-6.104042],[-46.847010,-9.279584],[-45.764882,-12.342006],[-44.080007,-15.087506],[-41.889475,-17.312282],[-40.418322,-18.236251],[-38.646924,-18.819013],[-33.040365,-19.210382],[-28.302916,-18.938489],[-27.040151,-18.614762],[-26.604295,-18.180192],[-25.333145,-14.270481],[-22.775475,-8.676232],[-22.169034,-6.850562],[-21.916795,-4.747182],[-21.641403,-2.951801],[-20.979295,-1.866632],[-20.317184,-0.919163],[-20.041795,0.545168],[-19.800025,2.317494],[-19.218745,4.005468],[-16.470186,10.269754],[-15.651990,12.797932],[-15.354295,14.516098],[-15.078903,15.948977],[-14.416795,16.883368],[-13.689218,17.894120],[-13.506641,19.303634],[-13.837734,20.551398],[-14.651165,21.076898],[-16.442674,20.240671],[-19.104295,18.265628],[-19.104295,18.265628]];
path3347_19_points = [[-0.797895,17.392818],[-1.998413,14.611372],[-3.383850,10.350346],[-4.531522,6.039996],[-5.018745,3.110578],[-5.310421,1.158647],[-5.979295,0.008368],[-6.641403,-1.194508],[-6.916795,-3.272882],[-7.163099,-5.333278],[-7.755265,-6.492932],[-8.488781,-7.893349],[-9.074915,-10.532632],[-10.767175,-18.013422],[-11.384173,-20.262313],[-11.470519,-21.742821],[-10.945928,-22.946711],[-9.730115,-24.365752],[-7.921997,-26.028120],[-5.936446,-27.386416],[-3.831456,-28.426359],[-1.665020,-29.133671],[0.504868,-29.494071],[2.620214,-29.493281],[4.623024,-29.117021],[6.455305,-28.351012],[9.443045,-26.377869],[11.730176,-24.238394],[13.193097,-22.074429],[13.708205,-20.027812],[13.432816,-18.034238],[12.770705,-16.866632],[12.108598,-15.781467],[11.833205,-13.986082],[11.752166,-12.477048],[11.354819,-10.972232],[8.685825,-5.471982],[7.598118,-2.940318],[7.145705,-1.006142],[6.827319,0.675271],[6.061835,2.599218],[3.841074,7.312072],[3.479402,8.765876],[3.395705,10.252818],[3.120316,12.048199],[2.458205,13.133368],[1.796098,14.060848],[1.520705,15.477118],[1.276234,16.830950],[0.675565,17.711187],[-0.082184,17.953315],[-0.797895,17.392818],[-0.797895,17.392818]];
path3347_20_points = [[51.676955,-172.022882],[49.647913,-172.684993],[45.583205,-172.960382],[41.531596,-173.214586],[39.534035,-173.825752],[38.273488,-174.630823],[35.993855,-175.351212],[32.100784,-176.485757],[24.565735,-180.076882],[20.548351,-182.300442],[18.681345,-183.816692],[19.547664,-185.406344],[22.230983,-188.458776],[30.824954,-196.887238],[40.015922,-204.972600],[43.445489,-207.596155],[45.356555,-208.585382],[46.594693,-209.273859],[48.395705,-210.929132],[50.273158,-212.584404],[51.695075,-213.272882],[52.968654,-213.823663],[54.489455,-215.147882],[55.989414,-216.474772],[57.212885,-217.031982],[59.164331,-218.013266],[62.414545,-220.359752],[66.339895,-223.126129],[69.914545,-225.116962],[74.867355,-227.414192],[76.537865,-228.020642],[78.268195,-228.272882],[79.863150,-228.685967],[81.208205,-229.679132],[83.047891,-230.678188],[85.865195,-231.085382],[88.901578,-231.559633],[90.093226,-232.146258],[91.051955,-232.960382],[92.841074,-234.284601],[94.759755,-234.835382],[96.441609,-235.087453],[97.661335,-235.693502],[98.978813,-236.423054],[100.895705,-236.972082],[102.279016,-237.339833],[100.247915,-237.520212],[97.964930,-237.334983],[96.676955,-236.710382],[95.228338,-236.048274],[92.559125,-235.772882],[89.871380,-235.584146],[88.378205,-235.130382],[86.745137,-234.215238],[83.987128,-233.203718],[81.001459,-232.382183],[78.685415,-232.036992],[77.075315,-231.768986],[76.088645,-231.144752],[74.855089,-230.106606],[72.666269,-228.846186],[70.327049,-227.777493],[68.642295,-227.314532],[67.227903,-226.761264],[65.270705,-225.460382],[63.164978,-224.159484],[61.393495,-223.606232],[59.796673,-223.309700],[57.686194,-222.396624],[51.208205,-218.351372],[45.583205,-214.942142],[42.412562,-212.925203],[36.737793,-208.762832],[25.133715,-199.487042],[17.115507,-192.886167],[14.102305,-190.701315],[12.536335,-189.858862],[12.067641,-190.093031],[11.826025,-190.779673],[11.964738,-193.179833],[12.833886,-196.398260],[14.314885,-199.773872],[18.042235,-206.710382],[21.454005,-210.946815],[27.462835,-217.246933],[33.433138,-222.966276],[35.580220,-224.781762],[36.729325,-225.460382],[37.901319,-225.918222],[39.140295,-227.018992],[41.150560,-228.643737],[44.176955,-230.361362],[53.417555,-235.365252],[57.662754,-237.639468],[60.159095,-238.585382],[61.212785,-238.860774],[61.989455,-239.522882],[62.936924,-240.184993],[64.401255,-240.460382],[66.173581,-240.703641],[67.861555,-241.288502],[72.330445,-243.290436],[77.336496,-245.138747],[81.873597,-246.495531],[84.935635,-247.022882],[86.367844,-247.298274],[87.301955,-247.960382],[88.780216,-248.622493],[91.520705,-248.897882],[94.261194,-249.173274],[95.739455,-249.835382],[97.630801,-250.497493],[101.364455,-250.772882],[105.098109,-251.048274],[106.989455,-251.710382],[108.466040,-252.372493],[111.202505,-252.647882],[114.506919,-252.928531],[117.349025,-253.603282],[121.639355,-254.448118],[128.425685,-255.137712],[134.750232,-255.761801],[137.930345,-256.449152],[146.029392,-257.013952],[164.180345,-257.343372],[203.195056,-257.352168],[210.493207,-257.016018],[212.010804,-256.744774],[212.458205,-256.397882],[211.778107,-255.735774],[210.142975,-255.460382],[207.527220,-254.909601],[204.489455,-253.585382],[201.718440,-252.261163],[199.744015,-251.710382],[198.591698,-251.297297],[197.797235,-250.304132],[197.055365,-249.310967],[196.029515,-248.897882],[193.387347,-247.937237],[188.652613,-245.623813],[183.474197,-242.810373],[179.500985,-240.349682],[177.484456,-239.103647],[176.130665,-238.585382],[174.997767,-238.021747],[173.512355,-236.666622],[171.376436,-234.879894],[168.679555,-233.278552],[166.492759,-231.996838],[165.583205,-230.978562],[165.238967,-230.390578],[164.411325,-230.143402],[162.535650,-229.177863],[159.671655,-226.862152],[156.934682,-224.547934],[155.364395,-223.585382],[154.240896,-222.982733],[151.528041,-220.884062],[139.184955,-210.454292],[135.859517,-207.810156],[133.996685,-206.710382],[131.920820,-205.195734],[128.083205,-201.554132],[124.187215,-197.912529],[121.971015,-196.397882],[120.301599,-195.407723],[117.720235,-193.027132],[114.199241,-189.808324],[110.270705,-186.802892],[105.095735,-182.908022],[102.137067,-180.741467],[96.208205,-177.554222],[91.331266,-175.199074],[87.882357,-173.801871],[85.175757,-173.132383],[82.525745,-172.960382],[79.516854,-172.684993],[77.926955,-172.022882],[76.766862,-171.644607],[73.994292,-171.348096],[64.801955,-171.085382],[55.609617,-171.348096],[52.837048,-171.644607],[51.676955,-172.022882],[51.676955,-172.022882]];
path3347_21_points = [[-38.258855,-182.231522],[-39.382659,-182.997126],[-41.361065,-183.667172],[-46.252939,-185.396744],[-56.275435,-190.054722],[-60.972765,-193.190686],[-67.001886,-198.152713],[-72.203122,-203.045630],[-73.818383,-204.873930],[-74.416795,-205.974262],[-75.322916,-207.923938],[-77.501465,-211.272282],[-80.745008,-216.343521],[-83.744575,-222.882262],[-86.292066,-230.192178],[-87.541795,-235.750312],[-87.817184,-237.182521],[-88.479295,-238.116632],[-89.414604,-239.027806],[-89.149129,-239.767727],[-87.787016,-240.257695],[-85.432415,-240.419012],[-81.218701,-240.060765],[-77.015046,-239.138641],[-73.174093,-237.753765],[-70.048485,-236.007262],[-67.532148,-234.517512],[-65.628125,-233.897882],[-63.309384,-233.165502],[-59.893646,-231.181050],[-55.765037,-228.263557],[-51.307684,-224.732053],[-42.943247,-217.103135],[-39.804416,-213.643783],[-37.873345,-210.846542],[-34.357725,-205.215642],[-32.854524,-202.727129],[-32.229295,-200.817842],[-31.988428,-199.611861],[-31.409325,-198.814262],[-30.660479,-197.005473],[-30.011525,-193.368312],[-28.853935,-184.913512],[-28.274165,-181.397882],[-33.008905,-181.397882],[-36.504154,-181.642764],[-38.258855,-182.231522],[-38.258855,-182.231522]];
scale([profile_scale, -profile_scale, 1])
union() {
linear_extrude(height=h)
polygon(path3347_0_points);
linear_extrude(height=h)
polygon(path3347_1_points);
linear_extrude(height=h)
polygon(path3347_2_points);
linear_extrude(height=h)
polygon(path3347_3_points);
linear_extrude(height=h)
polygon(path3347_4_points);
linear_extrude(height=h)
polygon(path3347_5_points);
linear_extrude(height=h)
polygon(path3347_6_points);
linear_extrude(height=h)
polygon(path3347_7_points);
linear_extrude(height=h)
polygon(path3347_8_points);
linear_extrude(height=h)
polygon(path3347_9_points);
linear_extrude(height=h)
polygon(path3347_10_points);
linear_extrude(height=h)
polygon(path3347_11_points);
linear_extrude(height=h)
polygon(path3347_12_points);
linear_extrude(height=h)
polygon(path3347_13_points);
linear_extrude(height=h)
polygon(path3347_14_points);
linear_extrude(height=h)
polygon(path3347_15_points);
linear_extrude(height=h)
polygon(path3347_16_points);
linear_extrude(height=h)
polygon(path3347_17_points);
linear_extrude(height=h)
polygon(path3347_18_points);
linear_extrude(height=h)
polygon(path3347_19_points);
linear_extrude(height=h)
polygon(path3347_20_points);
linear_extrude(height=h)
polygon(path3347_21_points);
}
}
module design_parallella(h, w, res=4) {
profile_scale = 25.4/90; //made in inkscape in mm
path3405_0_points = [[-55.150435,208.612054],[-58.680384,208.157834],[-62.502885,206.973024],[-67.415622,204.923827],[-71.769511,202.472268],[-75.524677,199.644311],[-78.641245,196.465924],[-80.372925,194.385294],[-84.599355,192.854784],[-88.825785,191.324244],[-99.866075,180.914254],[-109.522688,171.645880],[-110.992758,169.896031],[-111.588685,168.640194],[-112.898686,165.526197],[-114.446713,162.673213],[-116.207488,160.122514],[-118.155735,157.915374],[-120.961871,155.695832],[-125.525775,152.609454],[-134.378725,146.429194],[-137.643666,143.594289],[-140.738671,140.510472],[-143.458776,137.396201],[-145.599015,134.469934],[-146.112835,133.674284],[-139.632395,129.128694],[-132.790015,124.457184],[-131.534695,125.747104],[-127.807786,130.080023],[-122.777865,134.549854],[-119.769105,136.616044],[-115.355733,139.270814],[-108.870215,144.077904],[-106.321275,146.382584],[-103.991526,148.920177],[-101.833282,151.747693],[-99.798855,154.922144],[-97.180575,159.353214],[-94.353195,163.108964],[-92.030765,165.580224],[-85.778075,171.577694],[-80.692660,176.127890],[-79.290436,177.003253],[-77.709225,177.652654],[-74.388695,178.627974],[-73.195826,178.905947],[-71.730760,179.640240],[-68.919015,181.916024],[-67.456415,183.881794],[-66.932534,184.801038],[-65.626510,186.212973],[-62.261745,188.957664],[-58.767893,190.557195],[-54.252015,191.371124],[-51.128765,191.874964],[-49.945090,192.019203],[-48.727965,191.668434],[-45.920876,190.390590],[-43.908456,189.120704],[-42.189236,187.465715],[-40.261745,185.032564],[-38.395872,182.811525],[-36.420200,181.380334],[-33.673303,180.401445],[-29.493755,179.537314],[-26.659511,178.846670],[-24.260035,177.879254],[-20.695495,176.235844],[-16.937244,174.360399],[-13.964265,172.283084],[-12.565151,171.314439],[-11.263365,171.185284],[-9.987255,171.277584],[-9.903155,179.830434],[-9.974455,189.020704],[-11.051144,189.944977],[-13.725379,191.279285],[-22.486565,194.566394],[-27.945475,196.356914],[-30.333235,198.909024],[-33.406431,201.867872],[-36.511968,204.217978],[-39.619390,205.939387],[-42.698245,207.012144],[-45.084045,207.781064],[-46.149405,208.039844],[-47.214755,208.304224],[-49.972669,208.721497],[-55.150525,208.612044],[-55.150435,208.612054]];
path3405_1_points = [[45.681305,208.059054],[40.819935,206.532590],[36.237085,204.087054],[32.193606,200.912067],[29.025745,197.578064],[28.410962,196.859178],[27.530672,196.297758],[22.986175,194.700344],[15.233139,191.935823],[13.208621,190.951809],[12.386205,190.219524],[12.269889,182.846053],[12.635215,175.844184],[14.054625,176.389114],[16.629047,177.921583],[19.860151,179.427152],[28.735255,182.543204],[32.941245,183.867276],[35.335209,184.836983],[36.771548,185.907405],[38.104665,187.533624],[40.201598,190.059880],[42.221600,191.974734],[44.339882,193.420471],[46.731655,194.539374],[48.796394,195.103800],[51.683305,195.252314],[54.838668,195.056615],[57.886835,194.426690],[60.892665,193.344203],[63.921015,191.790814],[65.776633,190.468702],[67.654384,188.740497],[69.296213,186.870050],[70.444065,185.121214],[71.339855,183.362174],[76.291505,181.601334],[81.883245,179.460334],[90.815715,171.277594],[99.108145,163.474994],[100.733485,160.105024],[104.224775,154.056744],[108.357435,148.971404],[111.981319,145.706630],[118.155465,141.560854],[123.623351,137.845287],[128.066602,134.340445],[131.537047,131.001513],[134.086515,127.783674],[135.012021,126.593960],[135.606845,126.238554],[146.434365,132.489544],[146.174427,133.609125],[144.679469,135.881315],[139.466045,141.885794],[133.421435,147.264349],[125.057765,152.983194],[120.643940,155.978282],[117.855365,158.376384],[116.033489,160.497292],[114.338650,162.963684],[112.884718,165.591341],[111.785565,168.196044],[110.953065,170.580884],[100.033985,180.890704],[89.114905,191.200514],[85.629175,192.418984],[81.112619,194.209950],[79.987318,195.099700],[78.773935,196.485994],[76.841876,198.548641],[74.603893,200.493080],[69.402757,203.921574],[63.555725,206.559958],[57.447995,208.196714],[51.478565,208.602998],[45.681305,208.059054],[45.681305,208.059054]];
path3405_2_points = [[49.432555,188.713764],[47.683632,188.012567],[46.126822,186.928948],[42.004595,182.231244],[40.619991,180.762244],[38.910906,179.561884],[36.639938,178.494919],[33.569685,177.426104],[26.485147,175.105407],[21.596879,173.236727],[18.310091,171.562269],[16.029995,169.824244],[14.488895,168.208793],[13.669325,166.436803],[13.328982,163.531111],[13.225565,158.514554],[13.261072,151.843277],[13.935025,149.041924],[15.412283,143.899924],[16.650885,137.398445],[17.544225,130.221466],[17.985695,123.052964],[18.154665,116.542204],[19.688905,116.371504],[39.291965,115.148924],[42.601403,115.028404],[44.466717,115.351428],[45.721078,116.515027],[47.197655,118.916234],[50.653815,125.325824],[52.005075,128.178394],[51.377175,130.671634],[49.559282,137.199299],[48.232385,141.000924],[47.616840,141.513478],[46.653445,141.821484],[44.828128,142.471438],[43.362534,143.683252],[42.289201,145.306587],[41.640667,147.191105],[41.449472,149.186469],[41.748152,151.142338],[42.569247,152.908376],[43.945295,154.334244],[45.562370,155.168703],[47.237509,155.446485],[48.886361,155.219209],[50.424575,154.538493],[51.767798,153.455954],[52.831678,152.023211],[53.531865,150.291882],[53.784005,148.313584],[53.362584,145.577604],[52.115375,143.499674],[51.378885,142.730734],[52.678435,138.698074],[54.837425,131.333324],[55.696865,128.001254],[54.571815,125.181274],[52.182559,120.064137],[48.768225,113.959054],[47.331855,111.558824],[45.531255,111.312024],[33.778831,111.374504],[19.114435,112.150894],[17.605915,112.297434],[16.795395,109.634974],[14.643465,100.112054],[13.302045,93.251584],[13.985225,88.526304],[14.794725,83.689164],[36.601525,82.560134],[58.282005,81.542974],[62.560175,86.613104],[76.237995,103.575654],[77.609725,105.496924],[76.002925,113.629004],[72.843535,128.727674],[72.427208,129.317459],[71.414615,129.734024],[69.459433,130.616383],[67.946260,131.998195],[66.897758,133.733405],[66.336591,135.675955],[66.285421,137.679791],[66.766910,139.598855],[67.803720,141.287092],[69.418515,142.598444],[70.905310,143.123932],[72.581500,143.215240],[74.258358,142.885770],[75.747155,142.148924],[76.916787,141.085993],[77.797417,139.789197],[78.383045,138.329931],[78.667671,136.779589],[78.645295,135.209568],[78.309915,133.691261],[77.655532,132.296065],[76.676145,131.095374],[75.770115,130.240234],[76.329405,128.101364],[79.299645,115.538964],[81.710565,105.115444],[81.124675,103.967014],[75.812821,96.587462],[64.612695,82.941794],[59.954885,77.433584],[56.944465,77.610524],[15.510035,78.635514],[15.995235,72.958074],[16.672385,62.716404],[16.701985,57.989834],[17.993195,57.989834],[30.757295,57.546944],[63.493375,56.489334],[65.423375,56.489334],[69.959295,62.322104],[86.883441,84.863583],[92.829908,93.392052],[96.331775,99.024194],[97.315625,100.870164],[96.538155,105.163574],[93.350015,120.485664],[92.713651,122.432559],[92.004275,122.811444],[90.561508,123.110860],[89.075057,123.918650],[87.737651,125.099125],[86.742015,126.516594],[85.964675,129.619564],[85.983571,131.448552],[86.607935,133.115974],[87.404573,134.413531],[88.364103,135.414406],[89.460781,136.113717],[90.668867,136.506582],[91.962620,136.588118],[93.316296,136.353446],[96.100455,134.915944],[98.357815,132.697514],[98.772037,130.842812],[98.540082,128.557927],[97.761585,126.291637],[96.536175,124.492724],[96.225000,124.119194],[96.203515,123.430725],[97.396055,118.596174],[99.771147,108.283512],[101.199845,100.758224],[100.129736,97.851503],[96.925297,92.496368],[91.595363,84.706439],[84.148765,74.495334],[67.452725,52.899854],[65.249911,52.668409],[59.188867,52.662333],[33.827395,53.348504],[18.331285,53.782704],[15.739485,53.788704],[15.539615,52.455874],[14.305145,46.690324],[13.429479,42.187642],[13.270535,37.369584],[13.356064,33.099720],[13.556663,32.560624],[13.945765,32.481554],[66.204815,29.530394],[69.172435,29.309944],[76.858375,39.513904],[84.852195,50.118904],[86.529611,50.382598],[92.654805,50.200304],[104.652599,49.497131],[115.483388,48.455547],[125.251385,47.063236],[134.060805,45.307884],[138.262205,44.332994],[140.154395,38.745924],[142.046555,33.158854],[143.405165,32.972634],[145.337903,32.475246],[146.983595,31.552779],[148.340942,30.206217],[149.408645,28.436544],[150.087375,25.879424],[149.896445,23.284250],[148.905452,20.941798],[147.183995,19.142844],[145.697110,18.415646],[144.007216,18.086327],[142.279404,18.166901],[140.678765,18.669384],[139.142044,19.675628],[137.923997,21.001740],[137.041240,22.563888],[136.510391,24.278243],[136.348066,26.060973],[136.570882,27.828247],[137.195456,29.496234],[138.238405,30.981104],[138.929475,31.731354],[137.054605,36.532954],[135.179695,41.334554],[132.219455,42.008764],[124.753210,43.426734],[115.927114,44.646295],[106.516961,45.576014],[97.298545,46.124454],[89.896585,46.457504],[87.146165,46.618774],[79.092985,35.922424],[71.039795,25.226064],[68.038795,25.406044],[37.271383,26.502940],[13.350225,26.959434],[14.434705,17.409184],[15.677515,5.861324],[15.671515,3.699204],[16.646845,3.552004],[27.375415,3.073354],[49.537559,2.106440],[68.155075,0.943364],[76.073795,0.311074],[77.158085,1.544074],[85.294725,10.588494],[92.347075,18.399914],[96.548475,18.220044],[111.438659,16.992423],[123.857585,15.218914],[124.831757,14.291265],[126.408435,12.084484],[128.359085,9.083754],[130.009635,9.072154],[132.797454,8.515157],[135.160675,6.903734],[136.143113,5.743454],[136.828815,4.489273],[137.457605,1.341724],[137.419406,-0.738208],[136.791715,-2.445946],[135.891356,-3.879792],[134.774828,-4.915946],[133.412716,-5.574520],[131.775605,-5.875626],[130.067521,-5.843949],[128.587686,-5.457165],[127.249183,-4.679359],[125.965095,-3.474616],[124.490747,-1.231907],[123.797436,1.235117],[123.908000,3.731948],[124.845275,6.064084],[125.717065,7.466494],[123.949835,9.545564],[121.669645,12.129874],[118.530024,12.878316],[111.882892,13.647505],[103.836527,14.241804],[96.499205,14.465574],[94.147675,14.455574],[85.917705,5.348084],[78.601356,-2.581621],[77.368595,-3.557604],[76.614605,-3.640726],[63.487087,-2.762933],[42.949931,-1.802327],[23.913205,-1.127196],[15.286975,-1.105826],[13.874355,-12.908556],[17.847245,-13.134856],[43.932015,-13.922977],[68.711425,-15.400746],[72.814249,-15.843618],[75.196371,-16.313305],[76.556065,-17.031480],[77.591605,-18.219816],[85.767355,-30.278446],[87.046522,-30.770427],[91.296725,-31.270456],[110.803235,-33.719936],[113.053985,-34.157606],[113.654185,-33.330336],[115.138140,-31.626106],[116.757181,-30.467392],[118.598165,-29.808570],[120.747945,-29.604016],[122.464670,-29.744811],[123.978221,-30.167896],[125.336082,-30.892324],[126.585735,-31.937146],[128.150437,-34.106435],[128.741115,-36.863026],[128.696058,-38.539384],[128.330102,-40.079300],[127.669626,-41.455704],[126.741009,-42.641528],[125.570628,-43.609704],[124.184864,-44.333161],[122.610093,-44.784831],[120.872695,-44.937646],[117.851846,-44.441819],[115.376302,-43.063432],[113.607653,-40.935977],[112.707485,-38.192946],[112.325485,-36.841536],[108.690075,-36.402156],[88.667495,-34.786466],[83.698345,-34.412356],[81.577145,-31.067256],[76.322796,-23.259282],[74.476897,-20.924823],[73.403775,-19.978496],[68.898854,-19.434562],[60.041722,-18.965245],[31.456725,-18.336046],[13.180575,-18.136066],[13.377495,-20.211376],[13.767175,-32.656816],[13.827695,-41.723526],[13.540305,-47.361716],[13.193735,-55.618555],[13.630105,-61.899886],[14.020985,-63.700486],[17.922285,-63.923086],[46.123127,-65.947441],[53.937394,-66.907357],[57.452765,-67.821766],[60.944277,-73.386418],[68.173322,-85.895551],[82.697235,-112.166656],[85.269265,-117.118316],[90.079125,-118.044026],[94.267456,-118.766866],[94.877012,-118.699563],[95.074285,-118.385976],[96.507654,-116.448792],[98.649195,-114.827246],[99.978836,-114.427934],[101.501241,-114.295073],[103.024766,-114.428549],[104.357765,-114.828246],[106.030400,-115.878914],[107.322025,-117.278165],[108.218216,-118.929408],[108.704547,-120.736056],[108.766596,-122.601518],[108.389937,-124.429207],[107.560144,-126.122532],[106.262795,-127.584906],[104.520845,-128.642405],[102.506952,-129.171368],[100.437601,-129.145140],[98.529275,-128.537066],[96.446995,-126.816726],[95.033565,-124.511416],[94.314255,-122.669536],[92.851532,-122.149418],[88.351265,-121.456786],[82.500395,-120.556486],[79.806245,-115.265016],[73.091427,-102.692527],[61.668275,-82.456126],[55.180625,-71.151866],[45.231395,-70.171036],[15.200245,-69.322886],[15.643045,-72.280636],[17.097410,-81.938383],[17.767785,-91.041896],[17.959821,-91.409518],[19.246326,-91.617263],[29.401115,-91.852776],[44.548232,-92.400218],[49.022651,-92.828404],[50.843835,-93.319406],[58.113739,-105.569306],[65.651415,-119.389556],[67.674865,-123.462036],[69.279005,-123.329006],[71.345960,-123.507041],[73.268649,-124.358812],[74.970303,-125.835012],[76.374155,-127.886336],[76.890420,-129.460029],[77.065479,-131.363837],[76.898626,-133.263207],[76.389155,-134.823586],[75.454482,-136.194859],[74.319573,-137.228239],[73.031055,-137.918349],[71.635556,-138.259810],[70.179706,-138.247244],[68.710131,-137.875274],[67.273462,-137.138520],[65.916325,-136.031606],[64.357718,-133.937161],[63.502326,-131.566106],[63.393584,-129.134774],[64.074925,-126.859496],[64.762255,-125.520486],[63.031095,-122.011946],[58.512944,-113.647572],[51.947015,-102.530406],[48.360555,-96.646036],[46.195855,-96.457056],[29.273669,-95.740793],[21.476428,-95.708180],[17.988835,-95.960636],[17.672495,-102.487806],[17.489305,-108.865056],[25.391485,-108.865056],[34.691025,-109.056586],[36.088385,-109.248116],[41.588395,-117.834516],[53.618985,-137.012996],[55.623075,-140.402686],[55.560175,-144.945426],[55.497275,-149.488176],[56.713005,-150.330376],[57.822323,-151.366426],[58.700460,-152.717720],[59.277749,-154.246401],[59.484525,-155.814616],[59.034890,-158.765997],[58.400931,-159.934665],[57.427285,-161.069266],[56.170603,-162.088497],[54.839290,-162.740705],[53.475798,-163.033312],[52.122580,-162.973738],[50.822087,-162.569406],[49.616770,-161.827735],[48.549082,-160.756148],[47.661475,-159.362066],[47.160893,-157.986928],[46.975080,-156.538437],[47.460226,-153.659037],[48.941847,-151.199152],[50.001627,-150.275054],[51.244875,-149.634066],[52.367505,-149.228516],[52.196115,-145.371956],[52.024715,-141.515396],[49.932965,-138.019506],[33.829955,-113.101566],[31.969051,-112.813758],[25.233935,-112.951516],[17.041595,-113.216506],[16.522965,-117.417916],[16.080752,-120.928235],[16.171615,-122.543211],[16.537677,-122.865354],[17.181880,-122.984152],[19.497875,-122.972366],[24.607865,-123.165206],[26.191675,-123.355426],[27.785715,-125.938516],[36.796395,-141.726036],[38.475985,-145.027116],[38.476985,-152.572106],[38.478985,-160.117096],[39.223735,-160.304016],[40.173215,-160.749699],[41.134796,-161.559522],[42.678425,-163.845326],[43.161588,-165.472123],[43.258308,-167.112627],[43.002209,-168.702066],[42.426916,-170.175666],[41.566054,-171.468653],[40.453247,-172.516252],[39.122119,-173.253691],[37.606295,-173.616196],[35.715926,-173.536366],[34.034865,-172.934575],[32.612299,-171.837744],[31.497415,-170.272796],[30.984456,-168.744613],[30.812539,-166.937032],[30.981809,-165.130360],[31.492415,-163.604906],[33.065901,-161.590867],[34.857585,-160.338476],[35.208937,-160.091960],[35.393841,-159.230547],[35.477735,-153.209586],[35.477735,-146.277446],[33.971345,-143.458156],[25.462995,-129.467786],[23.749705,-126.812756],[19.735065,-126.916936],[15.536935,-127.204966],[14.983946,-130.784725],[13.850465,-143.283746],[13.155157,-152.705617],[13.114705,-158.231516],[13.696332,-168.764779],[14.427774,-177.129616],[15.294416,-183.194068],[16.281645,-186.826176],[16.970700,-187.910623],[17.995279,-188.598921],[19.510911,-188.955013],[21.673125,-189.042846],[26.324675,-188.716386],[33.377035,-187.949236],[41.234052,-186.912408],[47.013105,-185.414112],[49.229876,-184.453074],[51.054933,-183.330060],[52.530869,-182.029537],[53.700275,-180.535966],[56.165731,-177.662137],[59.931677,-175.202563],[65.779538,-172.758683],[74.490735,-169.931936],[82.349465,-167.037828],[85.918649,-165.285303],[89.324426,-163.279932],[95.875909,-158.363056],[102.464205,-151.992006],[112.784375,-141.275876],[121.206239,-132.381072],[128.110807,-124.350011],[133.985607,-116.579890],[139.318165,-108.467906],[144.564666,-99.134786],[147.672055,-92.835836],[143.213645,-91.780806],[124.710794,-87.197655],[107.051595,-82.184086],[104.050585,-81.242186],[101.608375,-77.872896],[95.297370,-68.609886],[87.866435,-56.953506],[83.707765,-50.607526],[77.004121,-49.427653],[69.208815,-48.547676],[68.508009,-48.905090],[67.657975,-50.025696],[66.083349,-51.921733],[64.165159,-53.233705],[62.027290,-53.968221],[59.793627,-54.131892],[57.588055,-53.731330],[55.534457,-52.773144],[53.756719,-51.263946],[52.378725,-49.210346],[51.778731,-47.575032],[51.526569,-45.890334],[51.604856,-44.207157],[51.996210,-42.576408],[52.683247,-41.048994],[53.648586,-39.675819],[54.874842,-38.507791],[56.344635,-37.595816],[59.423556,-36.922286],[62.705765,-37.119326],[64.662438,-38.054571],[66.502274,-39.622647],[67.935292,-41.516795],[68.671515,-43.430256],[68.849355,-44.542436],[73.649315,-45.063226],[80.653192,-45.972897],[85.144285,-46.909216],[86.644785,-47.349856],[89.780955,-52.523926],[98.855704,-66.857770],[106.082895,-77.388866],[108.426535,-78.438870],[114.024994,-80.326561],[131.359695,-85.457346],[142.641564,-88.404040],[148.936765,-89.795586],[150.969814,-84.111767],[153.212675,-76.004106],[154.163296,-70.697230],[154.650514,-65.098133],[154.767500,-57.111911],[154.607425,-44.643656],[154.566680,-39.253544],[154.881416,-35.168516],[155.855510,-30.270608],[157.792835,-22.441856],[160.396950,-11.555333],[162.038372,-3.120715],[162.891391,3.944998],[163.130295,10.724804],[162.976030,16.507728],[162.330067,21.888995],[160.889303,28.629332],[158.350635,38.489464],[156.592861,44.809710],[155.049262,49.457990],[153.357708,53.395347],[151.156065,57.582824],[148.009821,63.778984],[146.375045,68.146884],[145.933365,69.094264],[144.631885,67.368684],[142.531575,64.452794],[141.499115,63.262474],[138.154075,63.634424],[128.477114,65.113130],[118.162465,67.339384],[115.429782,67.932809],[114.457545,67.904334],[113.376586,66.479208],[111.601375,65.216344],[108.846834,64.607535],[106.066635,65.058124],[103.868431,66.555312],[102.324350,68.774427],[101.580557,71.405602],[101.783215,74.138974],[102.446173,75.551047],[103.559406,76.923164],[104.913301,78.043551],[106.298245,78.700434],[107.697985,78.912019],[109.092660,78.823467],[111.702225,77.845858],[113.797762,75.967414],[114.549903,74.752819],[115.050095,73.387944],[115.289538,72.552302],[115.934272,72.023928],[121.306345,70.621204],[128.860630,69.042619],[136.604905,67.756054],[139.438846,67.458403],[140.462415,67.980914],[142.944785,71.322684],[144.092807,73.149943],[144.609742,74.586824],[144.620191,76.401556],[144.248755,79.362364],[143.399155,84.461107],[142.213154,89.365422],[140.499331,94.754825],[138.066265,101.308834],[133.922095,112.761464],[130.915005,120.714114],[128.579190,124.570268],[125.446752,128.133080],[121.115032,131.792142],[115.181365,135.937044],[106.503695,141.960774],[103.532639,144.779548],[100.529831,148.361677],[97.717323,152.415573],[95.317165,156.649654],[93.773845,159.726874],[86.184465,166.883484],[78.595055,174.040054],[72.866685,176.062134],[68.172701,177.842889],[66.313005,178.962414],[65.487735,180.296034],[64.551645,182.514545],[62.603595,184.899384],[59.336174,187.024180],[55.161305,188.532334],[51.929866,189.083775],[49.432385,188.714494],[49.432555,188.713764]];
path3405_3_points = [[-64.967245,183.815744],[-65.854043,183.492068],[-66.559175,182.676444],[-67.949283,180.988740],[-69.866570,179.406970],[-72.042532,178.119360],[-74.208665,177.314134],[-76.888976,176.584308],[-77.186007,176.352069],[-77.067235,176.088384],[-76.887854,175.733587],[-77.045035,175.488004],[-77.372361,175.149088],[-77.077270,174.912568],[-74.561065,174.728744],[-72.080673,174.842775],[-71.057605,175.478994],[-69.724505,176.229244],[-68.297553,177.192152],[-65.988293,179.333770],[-63.925358,181.533440],[-63.237385,182.670504],[-63.427623,182.923305],[-63.272185,183.260894],[-63.153134,183.803973],[-63.680155,183.983834],[-64.967255,183.815744],[-64.967245,183.815744]];
path3405_4_points = [[-46.800625,183.811744],[-48.562945,183.265654],[-49.591405,182.830954],[-50.619420,182.151885],[-52.558925,179.754934],[-54.348155,177.203009],[-54.489819,176.739698],[-54.255275,176.582994],[-53.677179,176.256358],[-53.951915,175.778604],[-54.269161,175.441074],[-53.938596,175.207654],[-51.244575,175.028354],[-48.600501,175.130573],[-48.148332,175.354358],[-47.895305,175.778604],[-47.448279,176.348545],[-46.776365,176.533024],[-45.843021,177.050153],[-44.348715,179.408074],[-42.692900,182.416984],[-42.664227,182.782680],[-42.993475,182.830954],[-43.332211,182.968034],[-43.298355,183.431154],[-43.258357,183.803551],[-43.637668,183.970349],[-46.800625,183.811744],[-46.800625,183.811744]];
path3405_5_points = [[-58.711735,183.121064],[-60.084885,182.530854],[-61.256015,181.809099],[-63.502795,179.554404],[-66.256015,176.403354],[-65.805865,176.228754],[-65.373565,175.992413],[-65.715865,175.388474],[-65.754168,175.214047],[-65.395945,175.103384],[-63.171925,175.028354],[-60.612289,175.135448],[-59.776295,175.778604],[-59.205588,176.336119],[-58.493955,176.550374],[-57.397271,177.160845],[-55.375815,179.551374],[-53.800543,181.724533],[-53.500195,182.530854],[-53.934011,182.767019],[-53.591795,183.371134],[-53.529192,183.545097],[-53.803735,183.654147],[-55.617465,183.721264],[-57.671431,183.596514],[-58.711735,183.121064],[-58.711735,183.121064]];
path3405_6_points = [[-41.740735,179.354474],[-42.875743,176.867584],[-42.863232,176.471383],[-42.550305,176.316294],[-42.115865,176.061459],[-42.109765,175.591344],[-42.129770,175.281361],[-41.789336,175.112502],[-39.127745,175.028354],[-36.425436,175.125242],[-35.645805,175.628554],[-35.205698,176.061202],[-34.577475,176.228754],[-33.937633,176.410474],[-33.537685,176.998544],[-33.302480,177.803660],[-33.417468,178.345070],[-35.120185,179.232844],[-37.827186,180.466054],[-39.513235,181.739794],[-40.116325,182.230754],[-41.740735,179.354474],[-41.740735,179.354474]];
path3405_7_points = [[-27.648205,177.501904],[-27.999415,176.151454],[-28.210105,175.028354],[-26.543865,175.028354],[-24.838709,175.271667],[-24.604830,175.641372],[-24.694055,176.234724],[-25.226510,176.925032],[-26.133833,177.468194],[-27.059803,177.711416],[-27.648205,177.501904],[-27.648205,177.501904]];
path3405_8_points = [[-45.088515,168.146254],[-45.635816,167.460184],[-46.371645,167.170924],[-46.860814,167.020175],[-47.288621,166.514387],[-48.607125,163.324454],[-50.014575,159.573204],[-49.143435,159.480004],[-48.439518,159.260865],[-48.448715,158.504674],[-48.625135,157.622654],[-44.828875,157.622654],[-41.032605,157.622654],[-40.852545,158.522954],[-40.532768,159.265150],[-39.696795,159.423254],[-38.721115,159.423254],[-37.783665,163.166644],[-36.846205,167.217994],[-37.602175,167.525954],[-38.193525,167.656748],[-38.169845,168.276204],[-37.981545,169.026454],[-41.307465,169.026454],[-44.633395,169.026454],[-45.088515,168.146354],[-45.088515,168.146254]];
path3405_9_points = [[-31.267545,168.276104],[-31.594908,167.683850],[-32.304485,167.525854],[-32.805610,167.464138],[-33.147144,167.054927],[-33.955055,163.849634],[-34.751245,159.798284],[-33.897185,159.423154],[-33.204549,159.280204],[-33.180995,158.522854],[-33.313135,157.622554],[-29.377765,157.622554],[-25.442405,157.622554],[-25.442405,158.340694],[-25.072121,159.152532],[-23.961325,159.423154],[-23.673202,159.543016],[-23.462939,160.025594],[-23.085565,162.816864],[-22.785459,166.727717],[-22.991933,167.176768],[-23.491755,167.225754],[-24.104461,167.390814],[-24.242005,168.126054],[-24.242005,169.026354],[-27.660625,169.026354],[-30.667524,168.930698],[-31.102640,168.707733],[-31.267545,168.276104],[-31.267545,168.276104]];
path3405_10_points = [[-17.126025,168.839904],[-17.339705,168.076114],[-17.534249,167.648059],[-18.216165,167.525944],[-18.850632,167.403821],[-19.211193,166.787644],[-19.498865,162.574294],[-19.590465,159.273194],[-18.765195,159.178194],[-18.109476,158.952683],[-17.939915,158.352914],[-17.939915,157.622594],[-14.338715,157.622594],[-11.262691,157.710107],[-10.821919,157.889852],[-10.737515,158.222794],[-10.531195,158.705092],[-9.687165,158.822994],[-8.782234,158.978029],[-8.642025,159.948374],[-9.092175,163.174324],[-9.537115,166.968074],[-9.649006,168.406628],[-10.212345,168.817734],[-13.973338,169.009877],[-17.126035,168.839934],[-17.126025,168.839904]];
path3405_11_points = [[-85.431375,167.803744],[-86.113405,166.881274],[-84.737555,167.087594],[-83.361715,167.068394],[-85.053865,164.633504],[-86.582063,162.848453],[-87.584285,162.424254],[-88.375895,162.211277],[-89.063615,161.523954],[-89.704685,160.623654],[-88.908445,160.623654],[-88.112195,160.623654],[-89.188105,159.157964],[-90.264015,157.507414],[-88.653345,157.322554],[-87.147648,157.496083],[-86.203595,158.597984],[-82.653305,163.549634],[-79.942085,167.225854],[-78.397315,167.225854],[-77.092791,167.351655],[-76.355875,167.774644],[-75.859215,168.524894],[-80.304275,168.726354],[-84.749345,168.726354],[-85.431375,167.803844],[-85.431375,167.803744]];
path3405_12_points = [[-72.961755,168.177464],[-73.353966,167.389935],[-71.963975,167.225844],[-70.469535,167.225844],[-71.984525,164.900074],[-73.384879,162.993493],[-74.419465,162.424244],[-75.785965,161.598974],[-76.055653,161.020572],[-75.445665,160.923744],[-74.658815,160.772794],[-75.547205,159.197264],[-76.435585,157.772694],[-74.753215,157.681394],[-72.842785,157.831444],[-70.893995,161.073814],[-68.168515,165.650344],[-67.163765,167.225864],[-65.544005,167.225864],[-64.123556,167.358417],[-63.432655,167.976114],[-62.941075,168.726364],[-67.703085,168.726364],[-71.753978,168.634890],[-72.961755,168.177574],[-72.961755,168.177464]];
path3405_13_points = [[-60.199405,167.976004],[-60.541245,167.225754],[-58.899585,167.225754],[-57.257925,167.225754],[-58.371625,164.975004],[-59.458175,163.068845],[-60.421695,162.724254],[-61.231758,162.560082],[-61.706345,161.959874],[-62.003359,161.058447],[-61.304365,160.923654],[-60.612750,160.748648],[-61.154315,159.273104],[-61.754515,157.733414],[-59.933505,157.683314],[-58.112505,157.772614],[-56.968425,160.473514],[-54.900685,165.200094],[-53.977015,167.225764],[-52.195965,167.225764],[-50.471555,167.466112],[-50.141425,167.840672],[-50.050615,168.450714],[-54.954085,168.726264],[-59.857575,168.726264],[-60.199405,167.976014],[-60.199405,167.976004]];
path3405_14_points = [[-67.409285,149.087044],[-67.909945,148.221749],[-68.869275,147.961674],[-69.955715,147.869274],[-71.671785,143.367774],[-73.387835,138.866274],[-72.358575,138.772274],[-71.491545,138.451537],[-71.881155,136.990634],[-71.077551,136.694590],[-67.681985,136.615514],[-63.341835,136.615514],[-63.063835,137.590834],[-62.640921,138.412144],[-61.677415,138.658864],[-60.630851,139.016085],[-59.943485,140.909614],[-58.585595,145.319434],[-57.910446,147.893942],[-58.135391,148.253611],[-58.753515,148.319414],[-59.587684,148.441965],[-59.361135,149.350224],[-59.068465,150.120014],[-63.052105,150.120014],[-67.035735,150.120014],[-67.409285,149.087004],[-67.409285,149.087044]];
path3405_15_points = [[-51.295975,149.219844],[-51.734756,148.487000],[-52.595345,148.319544],[-53.580865,148.319544],[-54.818955,143.893064],[-56.054825,139.091464],[-55.789964,138.821494],[-55.113045,138.716344],[-54.327018,138.571063],[-54.343925,137.665994],[-54.514375,136.615644],[-50.065145,136.615644],[-45.615905,136.615644],[-45.418865,137.665994],[-45.083159,138.557147],[-44.110035,138.716494],[-42.998255,138.716614],[-42.168365,143.293014],[-41.343085,148.094464],[-42.285525,148.319544],[-43.058638,148.452182],[-43.043275,149.219844],[-42.863215,150.120144],[-46.922675,150.120144],[-50.982135,150.120144],[-51.295975,149.219844],[-51.295975,149.219844]];
path3405_16_points = [[-36.846205,149.219844],[-36.846205,148.319544],[-34.895555,148.319544],[-33.619173,148.293657],[-33.042706,147.965278],[-32.988549,146.958326],[-33.279095,144.896724],[-33.613285,142.649814],[-34.704575,142.558714],[-35.636288,142.326124],[-35.889895,141.492274],[-35.818999,140.652463],[-34.890725,140.516954],[-33.980861,140.396394],[-33.959515,139.691674],[-34.208435,137.816054],[-34.295335,136.765704],[-32.050675,136.765704],[-29.806005,136.765704],[-29.264585,142.167504],[-28.592695,147.944424],[-27.971431,148.226557],[-26.352105,148.319554],[-24.241985,148.319554],[-24.241985,149.219854],[-24.241985,150.120154],[-30.544085,150.120154],[-36.846185,150.120154],[-36.846185,149.219854],[-36.846205,149.219844]];
path3405_17_points = [[-18.039935,149.920064],[-18.240005,149.038794],[-18.432804,148.473644],[-19.215335,148.263544],[-20.190655,148.169544],[-20.378455,146.068844],[-20.603535,141.192214],[-20.640835,138.416294],[-19.590485,138.416294],[-18.702689,138.276944],[-18.540135,137.515994],[-18.540135,136.615694],[-15.239035,136.615694],[-11.937935,136.615694],[-11.937935,137.474124],[-11.135765,139.499804],[-10.503440,140.647311],[-10.077225,142.067888],[-9.632305,146.744064],[-9.485485,150.120194],[-13.662695,150.120194],[-18.039965,149.920114],[-18.039935,149.920064]];
path3405_18_points = [[-97.994355,148.765974],[-98.712743,147.943690],[-99.538815,147.719344],[-100.203191,147.522237],[-101.029554,146.631038],[-104.486695,140.967094],[-105.882195,138.566294],[-105.096405,138.468494],[-104.452601,138.117682],[-104.816925,136.840694],[-104.830395,136.554246],[-104.393086,136.396429],[-101.094865,136.315524],[-97.156605,136.315524],[-96.655725,137.365874],[-96.067740,138.221233],[-95.184735,138.416224],[-94.587535,138.504181],[-94.020366,139.040547],[-91.789175,143.093464],[-89.363715,147.895064],[-90.113965,148.019424],[-90.823571,148.242075],[-90.397055,149.153054],[-89.929885,149.820024],[-93.623125,149.816024],[-97.316365,149.812024],[-97.994355,148.765394],[-97.994355,148.765974]];
path3405_19_points = [[-83.061615,148.919744],[-83.556656,148.187452],[-84.461895,148.019444],[-85.090734,147.947638],[-85.640764,147.447244],[-87.726585,143.450844],[-89.963915,138.649244],[-89.031505,138.416244],[-88.338253,138.319652],[-88.281255,137.966094],[-88.645575,137.065794],[-88.591136,136.831998],[-88.045200,136.695422],[-84.594225,136.615644],[-81.244357,136.697632],[-80.360715,137.008444],[-79.851384,138.035150],[-78.604795,138.667034],[-78.016635,138.876893],[-77.499105,139.481043],[-75.730565,143.443064],[-73.832665,148.019444],[-74.695885,148.019444],[-75.504171,148.280252],[-75.248455,149.239564],[-75.153292,149.566506],[-75.516514,149.739797],[-78.813245,149.820044],[-82.688695,149.820044],[-83.061615,148.919744],[-83.061615,148.919744]];
path3405_20_points = [[-56.449765,127.687664],[-56.791415,126.487264],[-57.149408,125.662869],[-58.171435,125.511944],[-59.149806,125.383425],[-59.501935,124.836714],[-61.454415,114.961624],[-60.272875,114.708334],[-59.091345,114.708334],[-59.261795,113.657984],[-59.432245,112.607634],[-54.474725,112.607634],[-49.517205,112.607634],[-49.320165,113.657984],[-48.978589,114.554072],[-47.942025,114.708334],[-46.956494,114.835120],[-46.621265,115.383564],[-45.247295,125.436914],[-45.533930,125.710099],[-46.299365,125.812044],[-47.199664,125.962088],[-47.349715,126.862394],[-47.349715,127.912744],[-51.833495,127.912744],[-56.449765,127.687664],[-56.449765,127.687664]];
path3405_21_points = [[-40.199645,126.901974],[-40.326885,125.812044],[-37.951385,125.812044],[-35.575885,125.812044],[-35.773395,123.786364],[-36.307074,119.723213],[-36.714268,119.259335],[-37.445485,119.209834],[-38.391296,119.078032],[-38.757755,118.534614],[-38.842318,117.342542],[-37.705115,117.109134],[-36.463325,117.109134],[-36.667285,114.858384],[-36.871235,112.607634],[-34.307875,112.607634],[-32.104166,112.702613],[-31.796860,112.904394],[-31.738265,113.282864],[-31.294355,119.209834],[-30.850455,124.986764],[-30.431435,125.420073],[-28.477465,125.511944],[-26.110735,125.511944],[-25.962185,126.487264],[-25.928385,127.587884],[-33.057765,127.852514],[-40.072425,127.991904],[-40.199665,126.901974],[-40.199645,126.901974]];
path3405_22_points = [[-21.040935,127.712664],[-21.241005,126.512264],[-21.241005,125.511944],[-18.840205,125.511944],[-16.439405,125.511944],[-16.439405,122.360894],[-16.439405,119.209834],[-17.807975,119.209834],[-19.176535,119.209834],[-19.083435,118.084464],[-18.835159,117.104370],[-17.789895,116.870654],[-16.589495,116.782254],[-16.589495,114.619934],[-16.589495,112.457624],[-14.879395,112.368024],[-13.169295,112.278524],[-12.824275,113.559834],[-12.669485,117.100534],[-13.025455,122.231434],[-13.060493,124.832750],[-12.414515,126.026024],[-11.654241,127.076197],[-11.608313,127.409842],[-11.835812,127.640830],[-13.262951,127.869743],[-16.239375,127.912754],[-21.040975,127.712674],[-21.040935,127.712664]];
path3405_23_points = [[-105.892755,127.388794],[-109.667535,127.295394],[-110.164325,126.253624],[-110.755586,125.400085],[-111.680785,125.211864],[-112.700465,125.211864],[-114.819445,120.335234],[-117.137825,114.933434],[-117.114401,114.508544],[-116.369845,114.408254],[-115.593858,114.292239],[-115.548895,113.733034],[-115.916085,112.532634],[-115.968160,112.251045],[-115.737781,112.092684],[-113.899255,112.007454],[-109.374635,112.200784],[-107.337791,112.498269],[-106.755235,113.401184],[-106.292669,114.244570],[-105.289435,114.408254],[-104.156005,114.408254],[-102.158275,119.735034],[-100.163935,125.286884],[-101.099725,125.511964],[-101.813670,125.611848],[-101.815925,126.037134],[-101.428225,127.257960],[-101.707845,127.547444],[-105.892755,127.388814],[-105.892755,127.388794]];
path3405_24_points = [[-93.005775,126.562294],[-93.505026,125.683569],[-94.496345,125.511944],[-95.458918,125.360795],[-95.908745,124.686664],[-99.567115,114.521374],[-98.516765,114.408234],[-97.545346,114.188429],[-97.759085,113.077324],[-98.051765,112.307534],[-93.310515,112.307534],[-88.569275,112.307534],[-88.291265,113.432914],[-87.872109,114.400978],[-86.805335,114.647264],[-85.597395,114.736264],[-84.140975,119.598934],[-82.537985,124.986784],[-82.627786,125.410583],[-83.469335,125.511964],[-84.354553,125.620187],[-84.254585,126.281744],[-83.961915,127.332094],[-88.293945,127.612664],[-92.625965,127.612664],[-93.005775,126.562314],[-93.005775,126.562294]];
path3405_25_points = [[-75.192885,126.637294],[-75.599741,125.807844],[-76.641015,125.572664],[-77.838015,125.483364],[-79.345295,120.170844],[-80.852575,114.858344],[-79.705565,114.766044],[-78.558555,114.673744],[-78.747745,113.490664],[-78.936925,112.307544],[-77.294705,112.307544],[-72.459845,112.502884],[-69.267215,112.698244],[-69.078665,113.703284],[-68.735740,114.561345],[-67.648095,114.710244],[-66.406065,114.713244],[-65.376335,119.437894],[-64.215975,124.837804],[-64.289654,125.400832],[-65.184275,125.513034],[-66.118760,125.646203],[-66.086165,126.563384],[-65.889115,127.613734],[-70.415435,127.613734],[-74.941755,127.613734],[-75.192885,126.638404],[-75.192885,126.637294]];
path3405_26_points = [[-125.250515,127.090054],[-127.676155,126.989764],[-128.171635,125.950754],[-128.667115,124.911724],[-126.768585,124.911724],[-124.870055,124.911724],[-126.398315,121.776154],[-127.850171,119.075168],[-128.323571,118.699604],[-128.906305,118.625104],[-129.807735,118.414399],[-130.480715,117.634294],[-131.021851,116.437823],[-130.177325,116.208814],[-129.277025,116.052164],[-130.179975,113.904114],[-131.005245,111.868084],[-128.866735,111.990494],[-126.805885,112.157464],[-125.551645,115.008414],[-122.537325,121.535594],[-120.777255,125.211824],[-118.732745,125.211824],[-116.911009,125.336147],[-116.230375,126.097204],[-115.772515,127.147554],[-125.250515,127.090054],[-125.250515,127.090054]];
path3405_27_points = [[-150.422275,125.230904],[-152.666465,118.839194],[-156.068765,109.306514],[-159.186578,100.933365],[-161.382001,93.915880],[-162.927394,87.258420],[-164.095115,79.965344],[-164.672160,76.257435],[-165.370215,73.448284],[-166.412978,70.841993],[-168.024145,67.742664],[-171.154752,61.826499],[-173.383620,56.760628],[-175.328216,50.933408],[-177.606005,42.733194],[-180.341972,32.053926],[-181.925261,24.337059],[-182.653282,17.740849],[-182.823445,10.423554],[-182.510624,0.988780],[-181.039525,-8.842736],[-179.819914,-15.108112],[-179.138525,-17.328926],[-163.322665,-13.668776],[-164.059395,-9.052166],[-165.299213,-2.093803],[-166.049029,3.867495],[-166.342258,9.193313],[-166.212315,14.245234],[-165.197770,23.075147],[-162.857645,33.247094],[-160.645845,41.934064],[-159.589437,46.031458],[-158.231076,49.993217],[-156.494177,54.016921],[-154.302155,58.300154],[-152.084625,62.809904],[-151.681485,63.849614],[-150.143955,67.892714],[-148.637095,72.094114],[-147.906525,75.395214],[-145.902775,87.399214],[-144.158928,93.594260],[-141.055615,102.104114],[-136.257485,115.760104],[-149.882185,125.269074],[-150.422275,125.230874],[-150.422275,125.230904]];
path3405_28_points = [[144.864365,121.118904],[139.238115,117.745484],[140.360604,113.568269],[144.033775,103.454564],[146.677741,96.269732],[148.426844,90.710265],[149.618327,85.546365],[150.589435,79.548234],[151.586269,73.590075],[152.872735,68.868145],[154.884218,64.134068],[158.056105,58.139464],[159.703584,54.896703],[161.132536,51.401223],[164.070225,41.633964],[166.941347,30.515465],[168.557736,22.990133],[169.270955,17.021626],[169.432565,10.573604],[169.078445,1.606573],[167.541875,-8.182646],[166.732055,-12.710026],[173.254490,-14.357473],[179.525675,-15.633476],[181.620855,-5.161776],[182.488674,2.311489],[182.823445,10.573604],[182.594210,17.444662],[181.793000,24.272984],[180.260810,32.054219],[177.838635,41.784014],[175.395313,50.709754],[173.391371,56.811257],[171.113277,61.963825],[167.847495,68.042764],[166.356493,70.959283],[165.301056,73.713123],[164.539704,76.755688],[163.930955,80.538384],[162.853590,87.348670],[161.469500,93.482980],[159.542080,99.833345],[156.834725,107.291794],[152.404495,119.584674],[150.566265,124.294144],[144.864365,121.118904],[144.864365,121.118904]];
path3405_29_points = [[-19.233015,102.511984],[-19.440405,101.321514],[-19.619821,100.463750],[-20.715835,100.246164],[-21.991255,100.153864],[-22.246975,94.373134],[-22.331375,88.146054],[-21.899681,87.813620],[-20.968405,87.699714],[-19.924820,87.548018],[-19.683555,86.574344],[-19.590455,85.448964],[-15.112275,85.365664],[-11.696129,85.386580],[-10.310675,85.606794],[-10.091830,87.845654],[-10.091955,94.092934],[-10.242005,102.288604],[-19.233015,102.512004],[-19.233015,102.511984]];
path3405_30_points = [[-101.126335,102.181874],[-103.056146,101.993809],[-103.602155,101.492004],[-103.946095,100.280914],[-103.999341,99.931988],[-103.771004,99.770699],[-101.695345,99.869514],[-99.274755,99.817514],[-100.117275,96.252594],[-100.952075,92.951494],[-102.200775,92.859694],[-103.305970,92.612774],[-103.757375,91.659294],[-103.974051,90.292635],[-102.868215,90.100574],[-101.678505,89.875504],[-102.123965,87.849824],[-102.472252,86.317952],[-102.396938,85.567115],[-101.677219,85.320221],[-100.092295,85.300174],[-97.616465,85.300174],[-96.154795,91.976234],[-94.436645,99.327484],[-93.850931,99.898404],[-91.792165,100.002704],[-89.770818,100.101954],[-89.233885,100.602904],[-88.893345,101.803304],[-88.893783,102.142639],[-89.425331,102.314575],[-93.769965,102.343124],[-101.126335,102.180744],[-101.126335,102.181874]];
path3405_31_points = [[-84.074455,101.466824],[-84.262015,100.266424],[-81.823705,100.003834],[-79.385385,100.003834],[-79.580635,99.028514],[-80.256485,95.427314],[-80.737075,92.801434],[-82.014395,92.801434],[-83.088238,92.676127],[-83.472665,92.126214],[-83.590521,90.701907],[-82.423905,90.400634],[-81.367113,90.279199],[-81.377885,89.441154],[-81.756815,86.890304],[-81.943855,85.298934],[-79.370065,85.298934],[-76.796295,85.298934],[-76.594785,86.724414],[-75.376005,93.947124],[-74.358715,99.874104],[-71.813585,100.003834],[-69.568349,100.108494],[-69.233312,100.353687],[-69.087615,100.829114],[-68.791215,102.029514],[-70.272568,102.327047],[-76.281265,102.404634],[-83.886895,102.404634],[-84.074455,101.466824],[-84.074455,101.466824]];
path3405_32_points = [[-61.304365,101.204234],[-61.651514,100.158365],[-62.831245,100.003834],[-64.155315,99.731614],[-64.905565,94.301934],[-65.592949,88.624228],[-65.267738,88.037041],[-64.423895,87.999834],[-63.191975,87.999834],[-63.306445,86.799434],[-63.420925,85.599034],[-57.936165,85.599034],[-52.451415,85.599034],[-52.451415,86.799434],[-52.451415,87.999834],[-51.100965,87.999834],[-49.729035,88.074834],[-48.563165,99.328584],[-48.762781,99.888453],[-49.782035,100.003804],[-51.013955,100.003804],[-50.899475,101.204204],[-50.785005,102.404604],[-55.943275,102.404604],[-61.101555,102.404604],[-61.304365,101.204204],[-61.304365,101.204234]];
path3405_33_points = [[-40.504315,101.279234],[-40.758243,100.294358],[-41.872885,100.061574],[-43.164285,99.911524],[-43.703785,93.926784],[-44.227295,87.999804],[-42.937555,87.999804],[-41.647805,87.999804],[-41.647805,86.799404],[-41.647805,85.599004],[-36.095955,85.599004],[-30.544105,85.599004],[-30.544105,86.799404],[-30.544105,87.999804],[-29.221665,87.999804],[-27.899225,87.999804],[-27.731265,90.775734],[-27.406015,96.777734],[-27.248725,100.003804],[-28.596315,100.003804],[-29.943905,100.003804],[-29.943905,101.204204],[-29.943905,102.404604],[-35.177545,102.404604],[-40.411175,102.404604],[-40.504275,101.279234],[-40.504315,101.279234]];
path3405_34_points = [[-122.190855,101.382134],[-122.550565,100.194854],[-122.555762,99.954382],[-122.280686,99.799858],[-120.491945,99.641794],[-118.254925,99.553694],[-119.319805,96.027524],[-120.384685,92.501344],[-121.537185,92.501344],[-122.528621,92.357158],[-122.982345,91.731554],[-123.220876,90.412053],[-122.224675,90.100544],[-121.174325,89.874514],[-121.774525,87.549694],[-122.374725,85.224884],[-120.027345,84.998844],[-117.679965,84.998844],[-116.404225,89.725424],[-114.346655,97.077874],[-113.564825,99.703744],[-111.246875,99.703744],[-108.928935,99.703744],[-108.599475,100.648824],[-108.270015,101.849224],[-115.139785,102.104544],[-122.009555,102.104544],[-122.190855,101.382174],[-122.190855,101.382134]];
path3405_35_points = [[-137.858255,100.620574],[-138.438221,99.622267],[-139.431355,99.345144],[-140.530775,99.253544],[-142.418965,94.051524],[-144.482155,87.974494],[-144.488100,87.228643],[-143.686805,87.099494],[-142.902761,86.982648],[-142.897765,86.377124],[-143.262495,85.176724],[-143.274710,84.927962],[-142.992630,84.782980],[-141.058305,84.698694],[-136.394445,84.891114],[-134.118205,85.083514],[-133.863645,86.166544],[-133.463869,87.095580],[-132.416685,87.338254],[-131.224285,87.426954],[-129.464105,93.040174],[-127.565165,99.028494],[-127.683991,99.308334],[-128.301695,99.403614],[-129.332284,99.643724],[-129.097405,100.778554],[-128.668765,101.804414],[-133.026675,101.804414],[-137.384585,101.804414],[-137.858255,100.620584],[-137.858255,100.620574]];
path3405_36_points = [[-86.480655,74.020604],[-86.662815,72.686604],[-86.870288,71.939043],[-88.088295,71.735824],[-89.513765,71.644324],[-90.148575,66.842724],[-90.995445,60.315544],[-91.207505,58.589974],[-89.801385,58.589974],[-88.395265,58.589974],[-88.597775,57.239524],[-88.800295,55.889074],[-83.248445,55.889074],[-77.696595,55.889074],[-77.494075,57.239524],[-77.291565,58.589974],[-75.980905,58.589974],[-75.090466,58.619648],[-74.608169,59.219289],[-73.904425,65.192174],[-73.250275,71.119144],[-73.332828,71.692042],[-74.517025,71.794374],[-75.940795,71.794374],[-75.755695,73.144824],[-75.570595,74.495274],[-80.934545,74.495274],[-85.379234,74.411074],[-86.196866,74.267040],[-86.480655,74.020574],[-86.480655,74.020604]];
path3405_37_points = [[-64.813285,73.219874],[-64.905585,71.944454],[-66.331055,71.852954],[-67.760395,71.552854],[-68.360375,65.192174],[-68.956705,58.796664],[-67.606485,58.755664],[-66.256035,58.958184],[-66.256035,57.573654],[-66.256035,56.189134],[-60.571385,56.189134],[-54.886745,56.189134],[-54.794445,57.464554],[-54.702145,58.739984],[-53.276665,58.831484],[-52.177733,59.005662],[-51.851195,59.375454],[-51.100885,70.218844],[-50.945645,71.794374],[-52.298715,71.794374],[-53.651795,71.794374],[-53.651795,73.144824],[-53.651795,74.495274],[-59.186385,74.495274],[-64.720985,74.495274],[-64.813285,73.219844],[-64.813285,73.219874]];
path3405_38_points = [[-45.249015,73.144874],[-45.249015,71.794424],[-42.548105,71.794424],[-39.847205,71.794424],[-39.847205,69.737744],[-40.040015,65.836444],[-40.232815,63.991824],[-41.508405,63.991824],[-42.846905,63.656374],[-43.148305,62.166674],[-42.945994,61.410165],[-41.662415,61.290924],[-40.176525,61.290924],[-40.356545,58.740074],[-40.536555,56.189224],[-37.676035,56.189224],[-35.760587,56.226841],[-34.809988,56.602139],[-34.485529,57.708792],[-34.448505,59.940474],[-34.247375,67.067844],[-34.051345,71.794424],[-31.277595,71.794424],[-28.503845,71.794424],[-28.396435,73.144874],[-28.289035,74.495324],[-36.769025,74.495324],[-45.249015,74.495324],[-45.249015,73.144874],[-45.249015,73.144874]];
path3405_39_points = [[-20.040605,73.312174],[-20.202284,72.267383],[-21.316035,72.036754],[-22.591455,71.944454],[-22.777305,69.693704],[-23.002385,63.016474],[-23.041585,58.590004],[-21.541085,58.590004],[-20.040585,58.590004],[-20.040585,57.239554],[-20.040585,55.889104],[-15.138955,55.889104],[-10.066055,56.060364],[-10.314295,57.035694],[-10.735635,58.148514],[-11.629665,60.549314],[-12.370665,62.785089],[-12.529965,65.573914],[-12.388893,68.351070],[-11.637785,70.492054],[-10.737485,73.486454],[-10.737485,74.495304],[-15.389035,74.495304],[-20.040585,74.495304],[-20.040585,73.312154],[-20.040605,73.312174]];
path3405_40_points = [[-125.714555,73.973514],[-127.703935,73.869344],[-127.891065,72.699044],[-128.228958,71.678200],[-129.352835,71.436524],[-130.627475,71.344324],[-131.721325,65.974794],[-133.000295,59.447614],[-133.185415,58.289974],[-131.963075,58.289974],[-130.740745,58.289974],[-130.943255,56.939524],[-131.145775,55.589074],[-126.044075,55.589074],[-120.942375,55.589074],[-120.739855,56.939524],[-120.537345,58.289974],[-119.258685,58.289974],[-117.980025,58.289974],[-116.981195,64.066894],[-115.843385,70.669094],[-115.898189,71.377440],[-116.933115,71.494374],[-118.161835,71.494374],[-117.976735,72.844824],[-117.791635,74.195274],[-120.758405,74.136474],[-125.714555,73.973554],[-125.714555,73.973514]];
path3405_41_points = [[-107.504125,73.820094],[-107.791525,72.655564],[-108.444079,71.785197],[-109.954505,71.498434],[-110.329445,71.337552],[-110.649626,70.540647],[-111.630295,65.117194],[-112.671945,58.740074],[-111.355455,58.647974],[-110.038965,58.555874],[-110.238915,57.222514],[-110.438865,55.889154],[-105.002995,55.889154],[-99.567115,55.889154],[-99.567115,56.764904],[-99.266671,58.253599],[-97.937295,58.590054],[-96.671785,58.590054],[-95.849595,64.667074],[-94.876235,71.269274],[-95.002309,71.699005],[-96.099295,71.794454],[-97.473515,71.794454],[-97.281555,72.994854],[-97.089605,74.195254],[-102.239085,74.195254],[-106.285839,74.113075],[-107.504125,73.820124],[-107.504125,73.820094]];
path3405_42_points = [[-147.099425,72.315574],[-148.439545,68.599724],[-149.535995,65.482214],[-150.740715,62.370784],[-152.230378,58.987793],[-152.459215,57.864244],[-151.414155,57.689724],[-150.678409,57.515020],[-150.638895,56.437894],[-150.734195,55.186064],[-145.932595,55.262664],[-141.009265,55.460824],[-140.705715,56.711064],[-140.387084,57.676502],[-139.476995,57.936174],[-138.217815,58.238474],[-135.466955,70.894104],[-135.703639,71.257719],[-136.528765,71.435874],[-137.449131,71.640345],[-137.354035,72.484244],[-137.079645,73.668044],[-141.859945,73.895104],[-146.640255,73.895104],[-147.099445,72.315554],[-147.099425,72.315574]];
path3405_43_points = [[-111.030315,43.990484],[-111.731740,43.637135],[-112.039715,42.516244],[-112.239465,41.184214],[-113.555845,41.184214],[-114.872215,40.898624],[-115.920395,28.655044],[-116.077865,27.079514],[-114.724795,27.079514],[-113.371715,27.079514],[-113.371715,25.729064],[-113.371715,24.378614],[-107.819865,24.378614],[-102.268015,24.378614],[-102.268015,25.879114],[-102.268015,27.379614],[-100.908155,27.379614],[-99.887504,27.481360],[-99.439125,27.754744],[-98.967375,34.263184],[-98.453645,40.790354],[-98.645938,41.096019],[-99.685055,41.184214],[-101.067615,41.184214],[-101.067615,42.534674],[-101.067615,43.885124],[-103.423135,43.885124],[-107.999665,44.008914],[-111.030315,43.990514],[-111.030315,43.990484]];
path3405_44_points = [[-89.763845,43.985484],[-89.963915,42.635044],[-90.112650,41.636077],[-91.089295,41.480064],[-92.556635,41.254994],[-93.232265,36.082854],[-93.723935,29.255584],[-93.881935,27.379954],[-92.387215,27.379954],[-90.892495,27.379954],[-91.075065,25.838404],[-91.257645,24.296844],[-85.659955,24.437104],[-79.886165,24.753474],[-79.545715,26.154774],[-79.237696,27.224575],[-78.084045,27.379954],[-76.951516,27.520058],[-76.636675,28.355284],[-76.310145,33.982154],[-75.957765,40.059184],[-75.781895,41.484654],[-77.284185,41.484654],[-78.786485,41.484654],[-78.634275,42.835114],[-78.482055,44.185564],[-84.022915,44.185564],[-89.763845,43.985494],[-89.763845,43.985484]];
path3405_45_points = [[-67.156315,42.835114],[-67.156315,41.484654],[-68.618035,41.484654],[-70.079765,41.484654],[-70.261955,39.458984],[-70.643865,32.406634],[-70.843585,27.379954],[-69.450105,27.379954],[-68.056615,27.379954],[-68.056615,26.029504],[-68.056615,24.679054],[-62.204665,24.679054],[-56.352715,24.679054],[-56.352715,25.554814],[-56.049004,27.046890],[-54.688445,27.379954],[-53.388485,27.379954],[-53.233745,28.655384],[-52.907355,35.707734],[-52.735715,41.484654],[-54.262495,41.484654],[-55.789285,41.484654],[-55.586775,42.835114],[-55.384265,44.185564],[-61.270285,44.185564],[-67.156315,44.185564],[-67.156315,42.835114],[-67.156315,42.835114]];
path3405_46_points = [[-46.749515,42.835114],[-46.749515,41.484654],[-43.898565,41.484654],[-41.047605,41.484654],[-41.047605,37.757954],[-41.229765,33.556554],[-41.675044,33.195282],[-42.695265,33.081854],[-43.522583,33.000876],[-44.023715,32.697107],[-44.344615,31.056184],[-44.106871,30.489538],[-42.848205,30.380954],[-41.347705,30.380954],[-41.347705,27.530004],[-41.347705,24.679054],[-38.346705,24.679054],[-35.345705,24.679054],[-35.345705,28.532644],[-35.148805,36.935444],[-34.951895,41.484654],[-31.997755,41.484654],[-29.043605,41.484654],[-29.043605,42.835114],[-29.043605,44.185564],[-37.896555,44.185564],[-46.749515,44.185564],[-46.749515,42.835114],[-46.749515,42.835114]];
path3405_47_points = [[-23.283125,42.760114],[-23.191625,41.334634],[-20.265655,41.248734],[-17.339675,41.162834],[-17.339675,37.122354],[-17.339675,33.081864],[-18.840175,33.081864],[-20.340675,33.081864],[-20.340675,31.581364],[-20.340675,30.080864],[-18.915205,30.081164],[-17.489725,30.081464],[-17.489725,27.305104],[-17.489725,24.528744],[-14.459915,24.443744],[-11.430105,24.358744],[-11.233845,27.566464],[-11.037575,35.979254],[-11.037575,41.184584],[-9.837175,41.184584],[-8.636775,41.383294],[-9.399675,42.883794],[-10.162575,44.185594],[-16.768575,44.185594],[-23.374565,44.185594],[-23.283065,42.760114],[-23.283125,42.760114]];
path3405_48_points = [[-131.571915,43.667264],[-132.367905,43.513144],[-132.855646,43.169232],[-133.174225,41.559714],[-133.403304,40.997253],[-134.528775,40.884484],[-135.534301,40.788432],[-135.882655,40.509364],[-136.479425,34.432334],[-137.076185,27.755114],[-136.911940,26.915553],[-135.879225,26.779784],[-134.678825,26.779784],[-134.678825,25.429334],[-134.678825,24.078884],[-129.427075,24.078884],[-124.175325,24.078884],[-124.175325,25.579384],[-124.175325,27.079884],[-122.838465,27.079884],[-121.940671,27.118132],[-121.461863,27.707053],[-120.874635,33.381984],[-120.362695,39.459014],[-120.188515,41.184584],[-121.461885,41.184584],[-122.735255,41.184584],[-122.627855,42.535044],[-122.520445,43.885494],[-126.423905,43.833094],[-131.571915,43.667304],[-131.571915,43.667264]];
path3405_49_points = [[-152.427685,43.362414],[-154.066605,43.254423],[-154.948336,42.979650],[-155.308226,42.370559],[-155.381625,41.259614],[-155.331659,40.882949],[-155.051076,40.680968],[-153.049955,40.584384],[-150.714175,40.584384],[-151.237385,36.458014],[-151.772555,32.256614],[-152.984925,32.181614],[-153.977179,32.064137],[-154.189425,31.506394],[-154.374475,30.155944],[-154.332161,29.585094],[-153.292025,29.480714],[-152.028615,29.480714],[-152.242355,26.629764],[-152.456105,23.778814],[-150.041205,23.778814],[-147.626315,23.778814],[-147.457605,25.354344],[-146.821505,31.731464],[-146.074265,38.483714],[-145.788465,40.659444],[-143.231675,40.884514],[-140.680825,40.884514],[-140.680825,41.760274],[-140.498665,43.110724],[-140.550358,43.361047],[-141.139375,43.496085],[-145.075195,43.523704],[-152.427685,43.362444],[-152.427685,43.362414]];
path3405_50_points = [[-94.465415,10.574384],[-94.465415,9.073884],[-91.614465,9.073884],[-88.763515,9.073884],[-88.763515,4.722434],[-88.763515,0.370984],[-90.264015,0.370984],[-91.764515,0.370984],[-91.764515,-1.129516],[-91.764515,-2.630016],[-90.264015,-2.630016],[-88.763515,-2.630016],[-88.763515,-5.631016],[-88.763515,-8.632016],[-85.912565,-8.632016],[-83.061615,-8.632016],[-83.061615,0.220934],[-83.061615,9.073884],[-80.060615,9.073884],[-77.059615,9.073884],[-77.059615,10.574384],[-77.059615,12.074884],[-85.762515,12.074884],[-94.465415,12.074884],[-94.465415,10.574384],[-94.465415,10.574384]];
path3405_51_points = [[-68.356715,10.574384],[-68.356715,9.073884],[-69.857215,9.073884],[-71.357715,9.073884],[-71.357715,1.721434],[-71.357715,-5.631016],[-69.857215,-5.631016],[-68.356715,-5.631016],[-68.356715,-6.981466],[-68.356715,-8.331916],[-62.504765,-8.331916],[-56.652815,-8.331916],[-56.652815,-6.981466],[-56.652815,-5.631016],[-55.152315,-5.631016],[-53.651815,-5.631016],[-53.651815,1.721434],[-53.651815,9.073884],[-55.152315,9.073884],[-56.652815,9.073884],[-56.652815,10.574384],[-56.652815,12.074884],[-62.504765,12.074884],[-68.356715,12.074884],[-68.356715,10.574384],[-68.356715,10.574384]];
path3405_52_points = [[-44.648815,10.574384],[-44.648815,9.073884],[-46.149315,9.073884],[-47.649815,9.073884],[-47.649815,1.721434],[-47.649815,-5.631016],[-46.149315,-5.631016],[-44.648815,-5.631016],[-44.648815,-6.981466],[-44.648815,-8.331916],[-38.646805,-8.331916],[-32.644805,-8.331916],[-32.644805,-6.981466],[-32.644805,-5.631016],[-31.144305,-5.631016],[-29.643805,-5.631016],[-29.643805,1.721434],[-29.643805,9.073884],[-31.144305,9.073884],[-32.644805,9.073884],[-32.644805,10.574384],[-32.644805,12.074884],[-38.646805,12.074884],[-44.648815,12.074884],[-44.648815,10.574384],[-44.648815,10.574384]];
path3405_53_points = [[-20.440735,11.874814],[-20.640805,10.374314],[-20.640805,9.073884],[-22.141305,9.073884],[-23.641805,9.073884],[-23.641805,1.721434],[-23.641805,-5.631016],[-22.141305,-5.631016],[-20.640805,-5.631016],[-20.640805,-7.131516],[-20.640805,-8.632016],[-15.519375,-8.632016],[-10.464291,-8.426115],[-9.500913,-8.103942],[-9.237005,-7.578026],[-8.486755,-6.653766],[-7.736505,-6.162186],[-7.736505,2.956344],[-7.736505,12.074884],[-13.988585,12.074884],[-20.440735,11.874814],[-20.440735,11.874814]];
path3405_54_points = [[-133.103295,11.555074],[-137.979925,11.459774],[-137.979925,9.924414],[-137.979925,8.389044],[-135.421235,8.548674],[-132.862555,8.708304],[-132.945455,4.314554],[-133.028355,-0.079206],[-134.303775,-0.171506],[-135.579205,-0.263806],[-135.579205,-1.747056],[-135.579205,-3.230296],[-134.228755,-3.230296],[-132.878305,-3.230296],[-132.878305,-6.081246],[-132.878305,-8.932196],[-130.237525,-8.932196],[-127.596755,-8.932196],[-127.723615,-2.647396],[-127.636515,6.205554],[-127.422595,8.773704],[-124.732185,8.773704],[-122.041785,8.773704],[-122.133285,10.199184],[-122.224785,11.624654],[-125.225785,11.637454],[-133.103405,11.554954],[-133.103295,11.555074]];
path3405_55_points = [[-116.672815,10.274284],[-116.672815,8.773784],[-113.971915,8.773784],[-111.271015,8.773784],[-111.271015,4.422334],[-111.271015,0.070884],[-112.771515,0.070884],[-114.272015,0.070884],[-114.272015,-1.429616],[-114.272015,-2.930116],[-112.771515,-2.930116],[-111.271015,-2.930116],[-111.271015,-5.781066],[-111.271015,-8.632016],[-108.574655,-8.632016],[-105.878285,-8.632016],[-105.798685,0.145904],[-105.719085,8.923834],[-102.943165,9.010134],[-100.167235,9.096434],[-100.167235,10.435624],[-100.167235,11.774814],[-108.419985,11.774814],[-116.672735,11.774814],[-116.672735,10.274314],[-116.672815,10.274284]];
path3405_56_points = [[-152.459745,11.250744],[-155.685825,11.154244],[-155.685825,9.663894],[-155.685825,8.173544],[-156.842835,8.173544],[-157.999835,8.173544],[-158.191145,6.147874],[-158.373265,-0.945911],[-158.124045,-6.181046],[-157.662225,-6.444695],[-156.853215,-6.481146],[-155.951790,-6.572226],[-155.744445,-7.806786],[-155.652945,-9.232256],[-150.717735,-9.232256],[-145.782525,-9.232256],[-145.782525,-7.731756],[-145.782525,-6.231256],[-144.582125,-6.231256],[-143.381725,-6.231256],[-143.381725,1.121194],[-143.381725,8.473644],[-144.582125,8.473644],[-145.782525,8.473644],[-145.782525,9.974144],[-145.782525,11.474644],[-147.508095,11.410944],[-152.459745,11.250734],[-152.459745,11.250744]];
path3405_57_points = [[-87.600295,-21.154086],[-91.388735,-21.253586],[-91.237495,-22.595356],[-91.086265,-23.937116],[-92.639385,-23.937116],[-94.192515,-23.937116],[-94.043505,-24.912446],[-93.719935,-30.089166],[-93.363755,-36.166196],[-93.182135,-38.041826],[-91.908125,-38.041826],[-91.075047,-38.124438],[-90.577655,-38.443436],[-90.268115,-40.217546],[-90.264115,-41.042826],[-87.309215,-41.042826],[-81.682345,-40.853236],[-79.010365,-40.663656],[-79.115605,-39.352736],[-79.220855,-38.041826],[-77.793195,-38.041826],[-76.365545,-38.041826],[-76.561585,-33.315246],[-76.758615,-26.262896],[-76.759615,-23.937116],[-78.243675,-23.937116],[-79.727725,-23.937116],[-79.819225,-22.511646],[-79.910725,-21.086166],[-81.861375,-21.070366],[-87.600455,-21.154066],[-87.600295,-21.154086]];
path3405_58_points = [[-68.150365,-21.129886],[-68.356715,-22.636666],[-68.356715,-23.937096],[-69.740385,-23.937096],[-71.124055,-23.937096],[-70.918535,-30.464276],[-70.564995,-37.516626],[-70.162611,-37.928811],[-69.086735,-38.041806],[-67.945499,-38.166237],[-67.756515,-38.917556],[-67.685837,-39.994139],[-67.065199,-40.533601],[-61.722405,-40.742706],[-56.052615,-40.742706],[-56.052615,-39.392256],[-56.052615,-38.041806],[-54.627135,-38.042026],[-53.201665,-38.042256],[-53.289165,-31.364806],[-53.504815,-24.312226],[-54.976365,-23.937096],[-56.319795,-23.937096],[-56.411295,-22.511626],[-56.502795,-21.086146],[-62.223415,-21.004846],[-68.150395,-21.129896],[-68.150365,-21.129886]];
path3405_59_points = [[-47.649815,-22.436596],[-47.649815,-23.937096],[-44.648815,-23.937096],[-41.647805,-23.937096],[-41.647805,-28.138496],[-41.647805,-32.339896],[-42.998255,-32.339896],[-44.348715,-32.339896],[-44.348715,-33.840396],[-44.348715,-35.340896],[-42.848205,-35.340896],[-41.347705,-35.340896],[-41.347705,-38.041806],[-41.347705,-40.742706],[-38.421735,-40.742746],[-35.495755,-40.742796],[-35.601915,-32.339946],[-35.708065,-23.937096],[-32.675935,-23.937096],[-29.643805,-23.937096],[-29.643805,-22.436596],[-29.643805,-20.936096],[-38.646805,-20.936096],[-47.649815,-20.936096],[-47.649815,-22.436596],[-47.649815,-22.436596]];
path3405_60_points = [[-20.740835,-21.136166],[-20.940425,-22.561646],[-20.939825,-23.787046],[-22.365785,-23.787046],[-23.791745,-23.787046],[-23.791745,-30.989446],[-23.791745,-38.191856],[-22.382755,-38.282656],[-20.973765,-38.373456],[-20.882265,-39.633106],[-20.790865,-40.892766],[-14.638815,-40.892766],[-8.486765,-40.892766],[-8.407565,-31.374466],[-8.328365,-21.856166],[-9.217965,-21.396136],[-10.995818,-21.030543],[-15.324195,-20.936106],[-20.740895,-21.136176],[-20.740835,-21.136166]];
path3405_61_points = [[-113.628005,-22.661676],[-113.538905,-24.087146],[-114.805775,-24.179446],[-116.072655,-24.271746],[-116.068655,-25.830016],[-115.620465,-32.790086],[-115.174345,-38.266916],[-113.821935,-38.341916],[-112.696334,-38.454668],[-112.467395,-39.017136],[-112.282335,-40.367586],[-112.086493,-40.755135],[-111.428895,-40.955907],[-106.695555,-41.042816],[-101.289735,-41.042816],[-101.440005,-39.709576],[-101.289536,-38.327858],[-99.842745,-38.041816],[-99.090246,-37.846868],[-98.992475,-36.616336],[-99.367595,-29.639006],[-99.717235,-24.087156],[-101.142715,-23.995656],[-102.568185,-23.904156],[-102.568185,-22.570146],[-102.568185,-21.236136],[-108.142705,-21.236136],[-113.717225,-21.236136],[-113.628025,-22.661616],[-113.628005,-22.661676]];
path3405_62_points = [[-150.235395,-21.768936],[-155.138405,-21.851536],[-155.036995,-23.269446],[-154.935575,-24.687356],[-156.060955,-24.780556],[-157.037250,-25.024928],[-157.164215,-26.131006],[-156.488985,-33.090206],[-155.835875,-38.792116],[-154.560445,-38.884416],[-153.466919,-39.100606],[-153.280435,-39.934766],[-153.187683,-40.926821],[-152.612444,-41.432002],[-148.160605,-41.576156],[-143.531775,-41.493056],[-143.580375,-40.067576],[-143.628975,-38.642106],[-142.455015,-38.642106],[-141.665218,-38.610806],[-141.336255,-38.073228],[-141.729045,-32.817166],[-142.353135,-26.413026],[-142.529225,-24.537396],[-143.700025,-24.537396],[-144.431417,-24.484771],[-144.856164,-24.222005],[-145.250115,-22.436696],[-145.332415,-21.686446],[-150.235435,-21.769046],[-150.235395,-21.768936]];
path3405_63_points = [[-134.935105,-22.961776],[-134.846005,-24.387246],[-136.129275,-24.480346],[-137.412545,-24.573446],[-137.224225,-26.731126],[-136.608615,-33.390286],[-136.180345,-38.266916],[-135.834315,-38.546123],[-134.828915,-38.642046],[-133.703309,-38.754798],[-133.474365,-39.317266],[-133.289315,-40.667716],[-133.096919,-41.054451],[-132.470528,-41.255313],[-128.012695,-41.342946],[-122.917035,-41.342946],[-123.021025,-39.842256],[-123.125015,-38.341566],[-121.807785,-38.341756],[-120.490555,-38.341946],[-120.667695,-36.846306],[-121.222105,-29.793956],[-121.599375,-24.237236],[-122.855255,-24.237236],[-124.175930,-23.899815],[-124.475465,-22.412096],[-124.475465,-21.536336],[-129.749875,-21.536336],[-135.024295,-21.536336],[-134.935195,-22.961816],[-134.935105,-22.961776]];
path3405_64_points = [[164.402345,-22.211526],[161.314495,-34.890746],[160.893297,-38.377630],[160.909305,-44.644006],[161.073976,-57.293480],[160.906190,-65.944026],[160.317977,-72.347362],[159.221365,-78.255206],[157.054301,-86.106265],[153.988833,-94.196700],[150.067160,-102.457483],[145.331477,-110.819585],[139.823982,-119.213978],[133.586870,-127.571633],[126.662339,-135.823522],[119.092585,-143.900616],[114.865075,-148.175576],[115.609955,-148.905746],[120.556265,-153.418686],[124.757665,-157.201446],[129.333135,-152.518876],[138.200980,-142.929771],[146.067810,-133.314501],[153.055760,-123.513426],[159.286965,-113.366906],[164.884521,-102.516347],[169.136832,-91.960743],[172.141215,-81.417159],[173.994985,-70.602656],[174.480029,-59.732562],[174.158725,-47.044806],[173.999932,-43.055619],[174.188480,-39.547726],[174.809852,-35.750003],[175.949535,-30.891326],[177.203805,-24.816266],[164.752655,-21.536296],[164.402345,-22.211526],[164.402345,-22.211526]];
path3405_65_points = [[-169.036425,-24.309696],[-176.969155,-26.214476],[-176.012405,-30.769846],[-174.384653,-38.210115],[-174.294805,-44.644386],[-174.420135,-59.799436],[-174.284554,-68.231430],[-173.730375,-73.453986],[-171.793636,-83.065091],[-168.945053,-92.526166],[-165.154165,-101.923731],[-160.390515,-111.344306],[-153.622920,-122.569061],[-146.055746,-133.213266],[-137.316460,-143.761066],[-127.032525,-154.696606],[-121.024275,-160.764166],[-115.172315,-155.507656],[-108.784575,-149.721236],[-108.548726,-149.317207],[-108.747200,-148.565070],[-111.260395,-144.204176],[-114.272015,-139.046406],[-112.621465,-138.875796],[-111.089275,-138.632768],[-111.063528,-138.178217],[-111.425035,-137.367626],[-111.879145,-136.489466],[-116.883735,-136.407166],[-121.888325,-136.324866],[-124.555495,-133.352056],[-129.352946,-127.742591],[-133.919923,-121.882358],[-138.206778,-115.852064],[-142.163863,-109.732411],[-145.741529,-103.604105],[-148.890128,-97.547851],[-151.560013,-91.644353],[-153.701535,-85.974316],[-155.918178,-78.214146],[-157.312883,-70.383226],[-157.932803,-62.104496],[-157.825095,-53.000896],[-157.508394,-41.600076],[-158.078875,-34.936376],[-159.671066,-27.525031],[-161.032655,-22.712946],[-169.036425,-24.309616],[-169.036425,-24.309696]];
path3405_66_points = [[-84.113585,-52.971356],[-89.216915,-53.060756],[-89.110045,-54.404436],[-89.003175,-55.748116],[-90.387395,-55.748116],[-91.771615,-55.748116],[-91.619035,-56.873486],[-90.264015,-68.638226],[-88.945675,-68.952516],[-87.568463,-69.283828],[-87.263015,-70.777656],[-87.263015,-71.653416],[-81.830995,-71.653416],[-76.398975,-71.653416],[-76.506385,-70.302966],[-76.613785,-68.952516],[-75.295115,-68.952516],[-73.976445,-68.952516],[-74.151995,-66.926836],[-74.699345,-60.324636],[-75.071135,-55.748116],[-76.515525,-55.748116],[-77.779250,-55.619807],[-77.959915,-54.722306],[-78.146975,-53.253557],[-78.667245,-52.814566],[-84.113585,-52.971386],[-84.113585,-52.971356]];
path3405_67_points = [[-66.856215,-54.097536],[-66.856215,-55.447986],[-68.236135,-55.447986],[-69.616045,-55.447986],[-69.441355,-57.173556],[-68.955935,-62.950486],[-68.385000,-68.315827],[-67.897470,-68.901301],[-66.992665,-68.952486],[-65.879143,-69.065613],[-65.651715,-69.627706],[-65.466665,-70.978156],[-65.270000,-71.365887],[-64.604941,-71.566638],[-59.805725,-71.653386],[-54.325735,-71.653386],[-54.477955,-70.302936],[-54.630165,-68.952486],[-53.196645,-68.952486],[-51.763125,-68.952486],[-51.959895,-65.426306],[-52.346755,-58.674056],[-52.536835,-55.447986],[-53.994625,-55.447986],[-55.452415,-55.447986],[-55.452415,-54.097536],[-55.452415,-52.747086],[-61.154315,-52.747086],[-66.856215,-52.747086],[-66.856215,-54.097536],[-66.856215,-54.097536]];
path3405_68_points = [[-46.749515,-54.092536],[-46.749515,-55.447586],[-43.941955,-55.447586],[-41.134405,-55.447586],[-40.943085,-57.473256],[-40.749645,-61.524616],[-40.747645,-63.550276],[-42.098095,-63.550276],[-43.448545,-63.550276],[-43.448545,-64.884286],[-43.448545,-66.218286],[-42.023075,-66.309786],[-40.597595,-66.401286],[-40.510895,-69.027156],[-40.424195,-71.653036],[-37.603495,-71.653036],[-34.782805,-71.653036],[-34.961435,-63.550336],[-35.140065,-55.447636],[-32.224705,-55.447636],[-29.309345,-55.447636],[-29.401645,-54.172206],[-29.493945,-52.896786],[-38.121825,-52.817186],[-46.749705,-52.737586],[-46.749705,-54.092636],[-46.749515,-54.092536]];
path3405_69_points = [[-23.641805,-54.247176],[-23.641805,-55.747676],[-20.790855,-55.747676],[-17.939905,-55.747676],[-17.939905,-59.632536],[-17.939905,-63.517386],[-19.365385,-63.608886],[-20.790855,-63.700386],[-20.790855,-65.050836],[-20.790855,-66.401286],[-19.376835,-66.492286],[-17.962805,-66.583286],[-17.876305,-69.193186],[-17.789805,-71.803086],[-14.863835,-71.888986],[-11.937855,-71.974886],[-11.937855,-63.861326],[-11.937855,-55.747756],[-9.837155,-55.747756],[-7.736455,-55.747756],[-7.736455,-54.247256],[-7.736455,-52.746756],[-15.689105,-52.746756],[-23.641755,-52.746756],[-23.641755,-54.247256],[-23.641805,-54.247176]];
path3405_70_points = [[-110.774335,-54.397226],[-110.589235,-55.747676],[-111.872235,-55.747676],[-113.155225,-55.747676],[-112.973625,-57.323196],[-111.974605,-64.075446],[-111.157195,-69.252176],[-109.881315,-69.252176],[-108.737921,-69.416857],[-108.353685,-70.525226],[-108.025631,-71.524921],[-107.525835,-71.909226],[-102.337255,-71.803996],[-97.724765,-71.587826],[-97.922075,-70.420006],[-98.119375,-69.252176],[-96.892595,-69.252176],[-96.048473,-69.211447],[-95.723794,-68.543366],[-96.416065,-62.049776],[-97.165065,-55.972746],[-98.498385,-55.747676],[-99.830445,-55.747676],[-100.032955,-54.397226],[-100.235465,-53.046776],[-105.597455,-53.046776],[-110.959435,-53.046776],[-110.774335,-54.397226],[-110.774335,-54.397226]];
path3405_71_points = [[-147.743055,-53.637146],[-153.454845,-53.797026],[-153.202225,-55.072446],[-152.949605,-56.347876],[-150.608545,-56.347876],[-148.267495,-56.347876],[-147.603365,-59.723996],[-146.778505,-63.775346],[-146.832875,-64.343147],[-147.809055,-64.450576],[-149.000355,-64.450576],[-148.691335,-65.801026],[-148.269073,-66.967073],[-147.244035,-67.151476],[-146.527661,-67.176257],[-146.096714,-67.523910],[-145.162655,-70.827696],[-144.810975,-72.253176],[-142.484005,-72.253176],[-140.157035,-72.253176],[-140.735055,-69.777346],[-143.379545,-56.761746],[-140.992355,-56.216946],[-138.602975,-56.008516],[-138.767565,-55.052826],[-139.222986,-53.573328],[-140.596385,-53.412076],[-147.743055,-53.637146],[-147.743055,-53.637146]];
path3405_72_points = [[-131.495715,-54.315136],[-131.211125,-55.672646],[-131.436421,-55.957737],[-132.398195,-56.047776],[-133.699935,-56.047776],[-132.993335,-60.024096],[-131.744985,-66.701326],[-131.203225,-69.402226],[-129.940815,-69.494426],[-128.827149,-69.737870],[-128.489215,-70.769856],[-128.300005,-71.953036],[-123.268265,-71.953036],[-118.236525,-71.953036],[-118.497865,-70.827656],[-118.669266,-69.437098],[-117.573115,-69.252136],[-116.372715,-68.930676],[-118.338405,-56.740146],[-118.699453,-56.193275],[-119.750245,-55.989896],[-120.873109,-55.748636],[-121.174325,-54.697286],[-121.324375,-53.496886],[-126.495005,-53.414786],[-131.665645,-53.332686],[-131.495715,-54.315066],[-131.495715,-54.315136]];
path3405_73_points = [[-20.640805,-84.107126],[-20.640805,-85.457576],[-21.997345,-85.457576],[-23.353885,-85.457576],[-23.272785,-91.684656],[-23.191685,-97.911726],[-21.916265,-98.004026],[-20.802589,-98.234630],[-20.640835,-99.279456],[-20.640835,-100.462596],[-16.325925,-100.462596],[-12.011005,-100.462596],[-11.798805,-94.985776],[-11.899775,-88.697136],[-12.087378,-87.042986],[-11.794725,-83.732026],[-11.675575,-82.756696],[-16.158205,-82.756696],[-20.640835,-82.756696],[-20.640835,-84.107146],[-20.640805,-84.107126]];
path3405_74_points = [[-108.265925,-83.732006],[-108.193387,-84.858956],[-107.841110,-85.465231],[-106.980776,-85.711311],[-105.384065,-85.757676],[-102.868215,-85.925596],[-102.117965,-89.417076],[-101.367715,-93.000406],[-102.558705,-93.260176],[-103.431424,-93.351553],[-103.634115,-93.635306],[-103.342025,-94.818516],[-102.975470,-95.501541],[-101.901185,-95.718816],[-100.778703,-95.968011],[-100.373835,-97.011426],[-99.827405,-99.337206],[-99.543985,-100.462576],[-97.154755,-100.462576],[-94.765515,-100.330936],[-96.097185,-94.103866],[-97.624675,-86.917216],[-97.820495,-85.826006],[-95.562955,-85.712006],[-93.099135,-85.391736],[-93.092135,-84.121116],[-93.291815,-83.056776],[-100.780715,-83.056776],[-108.269615,-83.056776],[-108.265615,-83.732006],[-108.265925,-83.732006]];
path3405_75_points = [[-87.886635,-84.182156],[-87.704435,-85.307526],[-85.082925,-85.394226],[-82.459425,-85.694326],[-81.861215,-89.358866],[-81.263005,-92.885046],[-82.461415,-92.960046],[-83.574008,-93.219533],[-83.474255,-94.723136],[-83.124176,-95.518966],[-82.025695,-95.660946],[-80.764705,-95.660946],[-80.337635,-97.986726],[-79.910565,-100.312496],[-77.434735,-100.399696],[-74.958915,-100.185606],[-76.012905,-93.346186],[-77.171685,-86.132816],[-77.179304,-85.749768],[-76.899636,-85.548496],[-74.582195,-85.457586],[-72.265990,-85.368796],[-72.014233,-85.167792],[-72.068865,-84.782366],[-72.253915,-83.581966],[-72.461058,-83.294546],[-73.462421,-83.136833],[-80.163425,-83.056786],[-88.068835,-83.056786],[-87.886635,-84.182166],[-87.886635,-84.182156]];
path3405_76_points = [[-64.155315,-84.257156],[-64.305365,-85.307506],[-65.355715,-85.457556],[-66.187369,-85.512593],[-66.506960,-86.183088],[-65.806995,-92.402776],[-65.056745,-97.986736],[-63.723275,-98.061736],[-62.549110,-98.205408],[-62.297805,-99.187116],[-62.204705,-100.312486],[-56.988465,-100.394786],[-51.772215,-100.477086],[-51.965335,-99.269426],[-52.158445,-98.061766],[-50.778065,-98.061766],[-49.397695,-98.061766],[-49.563405,-96.936396],[-50.046055,-91.909716],[-50.525305,-86.732996],[-50.687625,-85.457566],[-52.019685,-85.457566],[-53.351755,-85.457566],[-53.351755,-84.257166],[-53.351755,-83.056766],[-58.753555,-83.056766],[-64.155355,-83.056766],[-64.155355,-84.257166],[-64.155315,-84.257156]];
path3405_77_points = [[-42.548105,-84.257156],[-42.548105,-85.457556],[-43.902105,-85.457556],[-45.256105,-85.457556],[-45.111995,-86.582936],[-44.625725,-92.659956],[-44.148375,-97.836686],[-42.830495,-98.061756],[-41.845100,-98.182807],[-41.647805,-98.787466],[-41.569170,-99.762767],[-40.978373,-100.259293],[-36.130945,-100.462556],[-30.978395,-100.462556],[-31.092875,-99.262156],[-31.207355,-98.061756],[-29.779065,-98.061756],[-28.350785,-98.061756],[-28.545925,-94.235486],[-28.742285,-87.933386],[-28.743285,-85.457556],[-30.093735,-85.457556],[-31.229550,-85.342206],[-31.444185,-84.731856],[-31.523330,-83.754276],[-32.133074,-83.257998],[-37.178195,-83.056756],[-42.547885,-83.056756],[-42.547885,-84.257156],[-42.548105,-84.257156]];
path3405_78_points = [[-127.632625,-84.479946],[-127.263435,-85.859486],[-124.824855,-86.011826],[-122.544765,-85.907706],[-121.718265,-88.902296],[-120.678336,-93.093893],[-120.900816,-93.530931],[-121.600625,-93.560256],[-122.595908,-93.772783],[-122.345365,-95.015976],[-121.879434,-95.802286],[-120.874095,-95.961056],[-119.732275,-95.961056],[-119.102845,-98.033326],[-118.473425,-100.434126],[-117.842818,-100.677501],[-116.040515,-100.762656],[-114.049028,-100.678080],[-113.775763,-100.525980],[-113.800705,-100.259446],[-117.437475,-86.836786],[-117.639915,-85.757656],[-115.237625,-85.757656],[-112.835335,-85.757656],[-113.140035,-84.557256],[-113.444725,-83.356856],[-120.644025,-83.356856],[-127.843315,-83.356856],[-127.632625,-84.479946],[-127.632625,-84.479946]];
path3405_79_points = [[-143.846035,-84.174126],[-143.473245,-85.532586],[-143.488478,-86.236731],[-144.378675,-86.357856],[-145.450665,-86.357856],[-143.542435,-91.984736],[-141.425505,-98.136786],[-141.013861,-98.534112],[-140.174425,-98.661956],[-139.224944,-98.857317],[-138.660505,-99.862356],[-138.188975,-101.062756],[-133.883045,-101.062756],[-129.577125,-100.957486],[-129.917815,-99.874916],[-129.942225,-98.715435],[-128.771525,-98.366456],[-128.115975,-98.361456],[-128.752005,-96.485826],[-130.626585,-90.408796],[-131.865145,-86.207396],[-133.072635,-86.117496],[-134.137468,-85.871581],[-134.554495,-84.917096],[-134.828875,-83.806566],[-139.440575,-83.723566],[-143.333475,-83.732472],[-143.845760,-83.882043],[-143.846035,-84.173716],[-143.846035,-84.174126]];
path3405_80_points = [[-60.438875,-111.866356],[-60.246915,-113.066756],[-61.450865,-113.066756],[-62.654815,-113.338916],[-60.672945,-123.945386],[-60.289163,-124.350566],[-59.371845,-124.470566],[-58.361783,-124.637078],[-58.038075,-125.670966],[-57.846115,-126.871366],[-53.171735,-126.871366],[-48.497355,-126.871366],[-48.700165,-125.670966],[-48.902965,-124.470566],[-47.683695,-124.470566],[-46.657586,-124.353606],[-46.608135,-123.645286],[-47.203925,-119.068766],[-47.976544,-113.633062],[-48.406909,-113.091558],[-49.173145,-113.066756],[-50.209709,-112.902493],[-50.535565,-111.866356],[-50.727525,-110.665956],[-55.679175,-110.665956],[-60.630825,-110.665956],[-60.438875,-111.866356],[-60.438875,-111.866356]];
path3405_81_points = [[-43.148305,-111.391666],[-43.077293,-112.307752],[-42.731666,-112.810858],[-40.421015,-113.066756],[-38.863187,-113.086930],[-38.089555,-113.464417],[-37.773941,-114.674669],[-37.590165,-117.193136],[-37.401345,-119.969066],[-38.661795,-119.969066],[-39.737444,-120.088917],[-39.734675,-120.906876],[-39.547105,-122.107276],[-38.372315,-122.369866],[-37.197515,-122.369866],[-36.986605,-124.620616],[-36.775695,-126.871366],[-34.410145,-126.871366],[-32.592939,-126.784642],[-32.050935,-126.496236],[-32.496535,-119.819016],[-32.940355,-113.291836],[-30.394055,-113.066756],[-27.843205,-113.066756],[-27.843205,-112.053926],[-28.001593,-111.180467],[-28.781025,-110.853526],[-36.433575,-110.665956],[-43.148305,-110.665956],[-43.148305,-111.391666],[-43.148305,-111.391666]];
path3405_82_points = [[-20.534205,-111.121116],[-20.566405,-112.321516],[-20.623980,-112.953021],[-21.592145,-113.066756],[-22.499983,-113.180676],[-22.928285,-113.504416],[-22.843885,-119.281336],[-22.591495,-124.620616],[-21.483865,-124.712716],[-20.538999,-124.943722],[-20.283465,-125.763066],[-20.190665,-126.721336],[-15.539115,-126.721336],[-10.887565,-126.721336],[-10.956765,-124.770686],[-11.211265,-118.483266],[-11.264964,-114.946085],[-11.055495,-113.008226],[-10.867474,-111.993680],[-11.036595,-111.267966],[-11.326597,-110.937022],[-11.986430,-110.756408],[-15.859135,-110.665976],[-19.546683,-110.751483],[-20.534155,-111.121136],[-20.534205,-111.121116]];
path3405_83_points = [[-98.847695,-111.444086],[-98.482955,-112.644486],[-98.498550,-113.254348],[-99.384535,-113.366856],[-100.472085,-113.591936],[-98.620015,-119.293836],[-96.763275,-124.770666],[-95.637615,-124.770666],[-94.636659,-124.938785],[-94.165315,-125.821016],[-93.818675,-126.871366],[-89.490495,-126.871366],[-85.162315,-126.590796],[-85.454985,-125.540446],[-85.557940,-124.880010],[-84.704735,-124.770666],[-83.661815,-124.427826],[-86.551775,-113.892036],[-86.927170,-113.486702],[-87.835935,-113.366856],[-88.853753,-113.188493],[-89.328255,-112.166456],[-89.687905,-110.966056],[-94.359525,-110.966056],[-98.221101,-111.045797],[-98.798813,-111.190211],[-98.847695,-111.444086],[-98.847695,-111.444086]];
path3405_84_points = [[-79.875755,-112.166456],[-79.683805,-113.366856],[-80.772505,-113.366856],[-81.567226,-113.466450],[-81.842565,-113.741986],[-80.399425,-119.368866],[-78.974935,-124.620616],[-77.882595,-124.534516],[-76.894494,-124.633863],[-76.427275,-125.659896],[-76.064305,-126.871366],[-71.583935,-126.871366],[-67.103555,-126.871366],[-67.306365,-125.670966],[-67.509175,-124.470566],[-66.397455,-124.470566],[-65.491628,-124.359162],[-65.421915,-123.795336],[-66.578935,-118.093436],[-67.599785,-113.066756],[-68.878555,-113.066756],[-69.915630,-112.957975],[-70.157315,-112.491106],[-70.244828,-111.615883],[-70.818796,-111.162417],[-75.294665,-110.966056],[-80.067705,-110.966056],[-79.875755,-112.166456],[-79.875755,-112.166456]];
path3405_85_points = [[-131.754015,-111.489246],[-134.080955,-111.591546],[-133.629635,-112.464306],[-133.230296,-113.682612],[-134.071195,-113.967056],[-134.668780,-114.011145],[-134.679521,-114.615812],[-132.035075,-120.341296],[-129.623275,-125.365086],[-128.722795,-125.184996],[-127.865271,-125.228678],[-127.193125,-126.238226],[-126.452913,-127.298041],[-125.144545,-127.469766],[-121.264055,-127.276366],[-118.802935,-127.084766],[-119.238375,-126.242716],[-119.613705,-125.232001],[-118.773525,-125.070766],[-117.873215,-124.973366],[-120.233115,-119.346496],[-122.593005,-113.816996],[-123.658305,-113.725396],[-124.621025,-113.444408],[-125.197285,-112.449976],[-125.670965,-111.266136],[-127.549015,-111.326536],[-131.754015,-111.489226],[-131.754015,-111.489246]];
path3405_86_points = [[-116.816385,-111.791336],[-116.449195,-112.991736],[-116.490898,-113.549516],[-117.238035,-113.666956],[-118.173325,-113.797896],[-115.044995,-121.694636],[-113.666326,-124.644703],[-113.203844,-125.016497],[-112.588475,-125.070766],[-111.655759,-125.259101],[-111.060535,-126.121116],[-110.559655,-127.171466],[-106.409805,-127.171466],[-102.259965,-127.171466],[-102.714145,-126.084466],[-103.168315,-124.902176],[-102.169025,-124.713756],[-101.169745,-124.620656],[-103.144355,-118.998406],[-105.118965,-113.376166],[-106.221075,-113.371166],[-107.200415,-113.196670],[-107.669815,-112.316176],[-108.016465,-111.265826],[-112.526795,-111.265826],[-116.315646,-111.345911],[-116.820190,-111.503628],[-116.816385,-111.791006],[-116.816385,-111.791336]];
path3405_87_points = [[-22.216335,-136.038406],[-22.441405,-137.274836],[-22.441405,-138.275166],[-20.190655,-138.275166],[-17.939905,-138.275166],[-17.939905,-141.257146],[-17.939905,-144.239136],[-18.915235,-144.333136],[-19.739146,-144.575650],[-19.890555,-145.477526],[-19.740221,-146.378178],[-18.929085,-146.620886],[-18.078125,-146.937373],[-17.878735,-148.571536],[-17.789835,-150.429176],[-15.689135,-150.429176],[-13.588435,-150.429176],[-13.393145,-147.878326],[-13.168075,-141.968606],[-13.138275,-138.609736],[-11.862855,-138.517436],[-10.748213,-138.284648],[-10.494285,-137.299776],[-10.401185,-136.174406],[-12.895125,-136.172406],[-18.690165,-135.986326],[-22.216345,-136.037726],[-22.216335,-136.038406]];
path3405_88_points = [[-89.963915,-136.446556],[-89.671245,-137.505376],[-89.543035,-138.150776],[-90.103685,-138.275166],[-91.010595,-138.569316],[-89.002625,-143.664506],[-86.967171,-147.853903],[-86.432842,-148.388665],[-85.832685,-148.472056],[-84.945155,-148.668637],[-84.366025,-149.498736],[-83.879545,-150.518896],[-80.244505,-150.358966],[-76.526045,-150.130666],[-76.743695,-149.270436],[-76.867518,-148.593708],[-76.126875,-148.478566],[-75.309035,-148.199456],[-77.209665,-143.101816],[-79.010265,-138.283286],[-80.092225,-138.279286],[-81.040474,-138.113272],[-81.453515,-137.299896],[-81.732825,-136.324576],[-85.848375,-136.241076],[-89.963915,-136.446606],[-89.963915,-136.446556]];
path3405_89_points = [[-72.990025,-137.216486],[-72.945576,-138.131033],[-73.725115,-138.275166],[-74.658815,-138.539286],[-71.546495,-147.381796],[-71.000564,-148.279651],[-70.146555,-148.478566],[-69.321080,-148.652393],[-68.865055,-149.378866],[-68.525225,-150.279166],[-64.547095,-150.279166],[-60.568965,-150.279166],[-60.861635,-149.509376],[-61.088184,-148.601072],[-60.254015,-148.478566],[-59.609128,-148.372612],[-59.357705,-148.103436],[-60.659725,-143.076766],[-61.957765,-138.425216],[-63.052595,-138.332316],[-63.999083,-138.088016],[-64.395145,-137.281966],[-64.642875,-136.324526],[-68.915755,-136.241126],[-73.188635,-136.157726],[-72.990025,-137.216416],[-72.990025,-137.216486]];
path3405_90_points = [[-55.660595,-137.224486],[-55.649236,-138.135810],[-56.521625,-138.274836],[-57.553115,-138.507436],[-55.421315,-147.202806],[-54.983698,-148.007552],[-54.092285,-148.178136],[-53.208903,-148.345505],[-52.881765,-149.228486],[-52.684715,-150.278836],[-48.644145,-150.278836],[-44.603575,-150.278836],[-44.701175,-149.303506],[-44.633584,-148.460243],[-43.796245,-148.232116],[-43.000544,-148.036282],[-42.948415,-147.481866],[-43.787695,-142.551256],[-44.472215,-138.274836],[-45.577445,-138.274836],[-46.544589,-138.115155],[-46.879715,-137.224486],[-47.076765,-136.174136],[-51.453885,-136.174136],[-55.831005,-136.174136],[-55.660555,-137.224486],[-55.660595,-137.224486]];
path3405_91_points = [[-40.204265,-137.224486],[-40.081645,-138.274836],[-37.897125,-138.274836],[-35.712605,-138.274836],[-35.545535,-139.250156],[-35.177075,-142.251156],[-34.975685,-144.276836],[-36.095995,-144.276836],[-37.007935,-144.384976],[-37.035355,-144.952056],[-36.850305,-146.002406],[-36.564311,-146.275066],[-35.809455,-146.377536],[-35.152228,-146.448981],[-34.765638,-146.805635],[-34.374605,-149.228486],[-34.046653,-150.025091],[-32.269685,-150.217526],[-30.244005,-150.306226],[-30.248005,-149.467246],[-30.696935,-143.826656],[-31.143525,-138.649926],[-30.619545,-138.362293],[-28.894005,-138.274806],[-27.011618,-138.180611],[-26.643255,-137.699146],[-26.737196,-136.807180],[-27.479115,-136.355578],[-33.667455,-136.174106],[-40.327335,-136.174106],[-40.204715,-137.224456],[-40.204265,-137.224486]];
path3405_92_points = [[-106.169315,-136.639186],[-105.711465,-137.689536],[-105.253605,-138.574936],[-106.167705,-138.574936],[-107.081815,-138.574936],[-106.446025,-139.850356],[-103.688295,-144.952056],[-101.737709,-148.225973],[-101.200131,-148.690771],[-100.631435,-148.778336],[-99.781573,-148.968285],[-99.164705,-149.678636],[-98.632885,-150.578936],[-95.016545,-150.578936],[-91.994488,-150.497501],[-91.595999,-150.339615],[-91.616405,-150.053756],[-91.998865,-148.750142],[-91.371435,-148.478236],[-90.975920,-148.392518],[-91.013051,-147.843270],[-92.953995,-143.601606],[-95.115536,-139.375980],[-95.691715,-138.759014],[-96.308055,-138.574936],[-97.197676,-138.250778],[-97.766515,-137.456056],[-98.216665,-136.487226],[-102.192995,-136.481226],[-106.169315,-136.639686],[-106.169315,-136.639186]];
path3405_93_points = [[105.701315,-157.868196],[99.599585,-163.555246],[92.936889,-168.442177],[85.956416,-172.371832],[78.901355,-175.187056],[70.681405,-177.781166],[64.698879,-180.004207],[60.667125,-182.150246],[58.431505,-184.797286],[56.214381,-187.437967],[53.142115,-189.556866],[49.727625,-191.113005],[45.510677,-192.421733],[40.693397,-193.431186],[35.477905,-194.089496],[28.125445,-194.875356],[21.672424,-195.311656],[17.173775,-195.007976],[15.926635,-194.693646],[15.688755,-201.451156],[15.738491,-207.198915],[15.894584,-208.128471],[16.185645,-208.428486],[21.932236,-208.613910],[29.926045,-208.115866],[37.278505,-207.295426],[44.716462,-206.285758],[51.284276,-204.690398],[57.084160,-202.477875],[62.218325,-199.616716],[65.873869,-196.622307],[68.789005,-193.401316],[69.648337,-192.534521],[71.287287,-191.684068],[79.012815,-189.156686],[86.650222,-186.642538],[92.797005,-183.865936],[100.123719,-179.645855],[107.201815,-174.599536],[113.955787,-168.479722],[118.305515,-163.839336],[109.002415,-155.199246],[108.657662,-155.162319],[108.081679,-155.522785],[105.701315,-157.868196],[105.701315,-157.868196]];
path3405_94_points = [[-108.870215,-161.878936],[-114.810975,-167.378616],[-111.994545,-170.299337],[-106.919565,-174.741936],[-100.937458,-179.034915],[-94.615465,-182.899726],[-87.861163,-186.194826],[-79.522065,-188.991266],[-71.971830,-191.456980],[-69.132915,-192.862606],[-65.898513,-196.348123],[-61.604465,-199.948106],[-56.897499,-202.546553],[-51.350710,-204.668323],[-45.116358,-206.265352],[-38.346705,-207.289576],[-29.524895,-208.243806],[-23.500866,-208.721497],[-18.515793,-208.679568],[-14.366763,-208.104312],[-10.850865,-206.982016],[-9.448115,-206.380726],[-9.611455,-199.448806],[-9.826011,-193.918491],[-10.181125,-192.235166],[-16.439405,-192.097886],[-21.732673,-192.104036],[-25.892555,-191.829086],[-34.445405,-190.943356],[-41.298524,-190.047952],[-46.599465,-188.853876],[-48.913975,-188.394786],[-51.681000,-187.637765],[-54.110255,-186.068966],[-56.060955,-183.334566],[-58.068378,-180.581528],[-60.458405,-178.460366],[-64.082038,-176.663020],[-69.504329,-174.706738],[-75.302638,-173.049650],[-80.054325,-172.149886],[-83.848213,-171.684552],[-85.181995,-170.957656],[-87.415965,-169.192706],[-90.567015,-166.586646],[-94.615465,-163.372656],[-99.769385,-159.112666],[-102.770385,-156.599416],[-108.870215,-161.878936],[-108.870215,-161.878936]];
path3405_95_points = [[-66.331035,-158.588406],[-66.818890,-158.842595],[-66.547625,-159.754316],[-66.041888,-160.430260],[-64.484935,-160.382626],[-62.730835,-160.199286],[-61.756215,-162.516486],[-60.635745,-165.208816],[-60.729938,-165.486927],[-61.272255,-165.583936],[-62.000736,-165.717552],[-61.706345,-166.620166],[-61.243550,-167.211923],[-60.502685,-167.384536],[-59.655378,-167.675331],[-58.837785,-169.035086],[-58.028275,-170.685636],[-56.408135,-170.685636],[-55.191313,-170.600732],[-54.949805,-170.310516],[-58.828715,-160.357376],[-57.052945,-160.182136],[-55.452415,-160.051626],[-55.745085,-159.151326],[-56.037755,-158.381536],[-60.921805,-158.416336],[-66.331035,-158.588396],[-66.331035,-158.588406]];
path3405_96_points = [[-50.350715,-158.503106],[-50.058035,-159.412366],[-49.942658,-160.067040],[-50.658235,-160.182156],[-51.551115,-160.406876],[-50.175775,-164.758326],[-48.872638,-168.322130],[-48.460023,-168.802919],[-47.954385,-168.885056],[-47.216323,-169.067748],[-46.794475,-169.785356],[-46.480635,-170.685656],[-43.140075,-170.685656],[-39.799525,-170.685656],[-39.997255,-169.785356],[-40.040509,-169.028175],[-39.420905,-168.885056],[-38.646805,-168.617126],[-39.547105,-164.383556],[-40.447405,-160.319046],[-41.410945,-160.126146],[-42.208419,-159.893920],[-42.549405,-159.281856],[-42.712735,-158.848528],[-43.186831,-158.616302],[-46.537525,-158.447616],[-50.350715,-158.503116],[-50.350715,-158.503106]];
path3405_97_points = [[-34.942425,-159.272596],[-34.921411,-160.045983],[-35.653315,-160.182156],[-36.272148,-160.250881],[-36.492423,-160.765556],[-35.789995,-164.983756],[-35.046755,-168.810036],[-34.182825,-168.885036],[-33.447181,-169.055036],[-33.137995,-169.795216],[-32.955965,-170.705396],[-29.574315,-170.620496],[-26.192655,-170.535596],[-26.289155,-169.710326],[-26.219038,-169.018855],[-25.455515,-168.885046],[-24.525385,-168.885046],[-24.704435,-167.009426],[-25.087915,-162.732996],[-25.292345,-160.332196],[-26.249445,-160.239496],[-27.041136,-160.009906],[-27.299795,-159.339196],[-27.392995,-158.531576],[-31.258635,-158.447276],[-35.124275,-158.362976],[-34.942365,-159.272536],[-34.942425,-159.272596]];
path3405_98_points = [[-19.531915,-158.573096],[-19.740505,-159.481926],[-19.916504,-160.051386],[-20.682925,-160.182156],[-21.625345,-160.182156],[-21.408605,-164.451976],[-21.048675,-168.953476],[-20.193815,-169.185156],[-19.624705,-169.341473],[-19.386255,-169.860386],[-19.259282,-170.242209],[-18.815120,-170.453773],[-15.764185,-170.620156],[-12.238005,-170.704656],[-12.238005,-169.944886],[-12.062474,-169.316135],[-11.220185,-169.185106],[-10.476049,-169.081945],[-10.077929,-168.478616],[-9.854685,-164.008386],[-9.817185,-160.182106],[-10.707565,-160.182106],[-11.450891,-160.029541],[-11.692895,-159.356836],[-11.787895,-158.531556],[-15.555625,-158.447956],[-19.531955,-158.572996],[-19.531915,-158.573096]];
path3405_99_points = [[-95.065615,-158.860426],[-94.550765,-159.910776],[-93.852756,-160.645445],[-92.355105,-160.782356],[-90.674295,-160.782356],[-89.118705,-163.010356],[-87.563115,-165.411156],[-88.013265,-165.583956],[-88.453435,-165.959086],[-87.786626,-167.084716],[-86.575835,-167.684656],[-85.747944,-168.007660],[-84.731735,-169.030826],[-82.954896,-170.494242],[-81.986666,-170.765695],[-80.931795,-170.745396],[-80.117735,-170.625916],[-82.379875,-167.448126],[-86.662815,-160.946826],[-85.362385,-160.782356],[-83.888985,-160.609396],[-84.214095,-159.560946],[-84.712165,-158.685456],[-89.888895,-158.683456],[-95.065615,-158.860326],[-95.065615,-158.860426]];
path3405_100_points = [[-81.261015,-158.915026],[-80.793845,-159.815326],[-80.093056,-160.358150],[-78.618125,-160.489606],[-76.909565,-160.496606],[-75.522905,-162.965126],[-74.406293,-165.128145],[-74.462950,-165.432095],[-74.847685,-165.528596],[-75.512645,-165.770115],[-75.074445,-166.644596],[-74.500509,-167.200401],[-73.746025,-167.384296],[-72.883631,-167.690053],[-71.957915,-169.034846],[-71.013565,-170.685396],[-69.360565,-170.685396],[-67.707565,-170.685396],[-68.292505,-169.710066],[-73.158315,-160.640616],[-71.500055,-160.482006],[-69.841805,-160.482006],[-70.307365,-159.581706],[-70.772925,-158.681406],[-76.016975,-158.681406],[-81.261015,-158.914736],[-81.261015,-158.915026]];
path3405_101_points = [[-54.478455,-177.507706],[-55.532993,-177.716671],[-55.571295,-178.355566],[-55.533205,-178.928142],[-55.870025,-179.088496],[-56.352715,-179.300556],[-54.211015,-182.751706],[-52.435506,-185.227920],[-51.482425,-185.990796],[-50.132495,-186.590996],[-49.076981,-187.069900],[-47.159185,-187.191196],[-45.151856,-187.028625],[-44.999099,-186.771975],[-45.309035,-186.350916],[-45.451370,-186.065822],[-44.983925,-185.990796],[-44.398725,-185.755796],[-46.236665,-182.154596],[-47.800959,-179.377190],[-48.271181,-178.904000],[-48.719915,-178.788396],[-49.355335,-178.609141],[-49.750515,-178.038146],[-50.243501,-177.416397],[-51.618705,-177.340326],[-54.478455,-177.507706],[-54.478455,-177.507706]];
path3405_102_points = [[-43.675065,-178.038146],[-43.678120,-178.631866],[-44.090225,-178.788396],[-44.508711,-178.899803],[-44.538020,-179.410590],[-43.182665,-182.689696],[-41.860831,-185.305093],[-40.961435,-185.934326],[-40.344701,-186.164956],[-39.991375,-186.609546],[-39.396468,-187.094501],[-37.154185,-187.191196],[-34.911476,-187.103646],[-34.633728,-186.923896],[-34.658555,-186.590996],[-34.661840,-186.134367],[-34.330355,-185.990796],[-33.973078,-185.891121],[-33.914414,-185.399888],[-34.845075,-182.089496],[-35.804936,-179.410931],[-36.173521,-178.979467],[-36.639015,-178.843556],[-37.296570,-178.597230],[-37.628265,-178.018286],[-37.789423,-177.603399],[-38.189386,-177.385746],[-40.815025,-177.287896],[-43.818475,-177.287896],[-43.675065,-178.038146],[-43.675065,-178.038146]];
path3405_103_points = [[-32.944905,-178.030146],[-32.720640,-178.675467],[-31.436985,-178.788206],[-30.409713,-178.870433],[-29.794858,-179.256583],[-29.433543,-180.155857],[-29.166895,-181.777456],[-29.094054,-183.068020],[-29.637255,-183.289706],[-30.114599,-183.397445],[-30.126065,-183.764406],[-29.943905,-184.364606],[-29.236295,-184.490106],[-28.610991,-184.728746],[-28.260975,-185.765536],[-27.855885,-186.879673],[-26.717835,-187.133246],[-25.860448,-187.165558],[-25.512223,-186.779343],[-26.042605,-182.839556],[-26.642805,-179.058486],[-25.121435,-178.788206],[-23.848188,-178.684603],[-23.695965,-178.112986],[-23.834483,-177.726561],[-24.384140,-177.516065],[-28.368385,-177.354916],[-32.944905,-177.272116],[-32.944905,-178.030186],[-32.944905,-178.030146]];
path3405_104_points = [[-19.140305,-178.028146],[-19.293700,-178.641758],[-19.934595,-178.788616],[-20.728875,-178.788616],[-20.534795,-181.084646],[-20.340705,-184.685846],[-20.223770,-185.781741],[-19.611325,-185.991016],[-19.026753,-186.145361],[-18.786055,-186.666246],[-18.672430,-187.042943],[-18.319590,-187.244917],[-16.002785,-187.341466],[-13.720548,-187.245103],[-13.151835,-186.741266],[-12.864224,-186.311566],[-12.388055,-186.141066],[-12.054727,-186.051541],[-11.864355,-185.595982],[-11.703595,-182.464846],[-11.717389,-179.478188],[-12.057845,-178.788616],[-12.592255,-178.113396],[-12.715892,-177.733439],[-13.129936,-177.521445],[-15.914235,-177.352996],[-19.140305,-177.267796],[-19.140305,-178.028196],[-19.140305,-178.028146]];
scale([profile_scale, -profile_scale, 1])
union() {
linear_extrude(height=h)
polygon(path3405_0_points);
linear_extrude(height=h)
polygon(path3405_1_points);
linear_extrude(height=h)
polygon(path3405_2_points);
linear_extrude(height=h)
polygon(path3405_3_points);
linear_extrude(height=h)
polygon(path3405_4_points);
linear_extrude(height=h)
polygon(path3405_5_points);
linear_extrude(height=h)
polygon(path3405_6_points);
linear_extrude(height=h)
polygon(path3405_7_points);
linear_extrude(height=h)
polygon(path3405_8_points);
linear_extrude(height=h)
polygon(path3405_9_points);
linear_extrude(height=h)
polygon(path3405_10_points);
linear_extrude(height=h)
polygon(path3405_11_points);
linear_extrude(height=h)
polygon(path3405_12_points);
linear_extrude(height=h)
polygon(path3405_13_points);
linear_extrude(height=h)
polygon(path3405_14_points);
linear_extrude(height=h)
polygon(path3405_15_points);
linear_extrude(height=h)
polygon(path3405_16_points);
linear_extrude(height=h)
polygon(path3405_17_points);
linear_extrude(height=h)
polygon(path3405_18_points);
linear_extrude(height=h)
polygon(path3405_19_points);
linear_extrude(height=h)
polygon(path3405_20_points);
linear_extrude(height=h)
polygon(path3405_21_points);
linear_extrude(height=h)
polygon(path3405_22_points);
linear_extrude(height=h)
polygon(path3405_23_points);
linear_extrude(height=h)
polygon(path3405_24_points);
linear_extrude(height=h)
polygon(path3405_25_points);
linear_extrude(height=h)
polygon(path3405_26_points);
linear_extrude(height=h)
polygon(path3405_27_points);
linear_extrude(height=h)
polygon(path3405_28_points);
linear_extrude(height=h)
polygon(path3405_29_points);
linear_extrude(height=h)
polygon(path3405_30_points);
linear_extrude(height=h)
polygon(path3405_31_points);
linear_extrude(height=h)
polygon(path3405_32_points);
linear_extrude(height=h)
polygon(path3405_33_points);
linear_extrude(height=h)
polygon(path3405_34_points);
linear_extrude(height=h)
polygon(path3405_35_points);
linear_extrude(height=h)
polygon(path3405_36_points);
linear_extrude(height=h)
polygon(path3405_37_points);
linear_extrude(height=h)
polygon(path3405_38_points);
linear_extrude(height=h)
polygon(path3405_39_points);
linear_extrude(height=h)
polygon(path3405_40_points);
linear_extrude(height=h)
polygon(path3405_41_points);
linear_extrude(height=h)
polygon(path3405_42_points);
linear_extrude(height=h)
polygon(path3405_43_points);
linear_extrude(height=h)
polygon(path3405_44_points);
linear_extrude(height=h)
polygon(path3405_45_points);
linear_extrude(height=h)
polygon(path3405_46_points);
linear_extrude(height=h)
polygon(path3405_47_points);
linear_extrude(height=h)
polygon(path3405_48_points);
linear_extrude(height=h)
polygon(path3405_49_points);
linear_extrude(height=h)
polygon(path3405_50_points);
linear_extrude(height=h)
polygon(path3405_51_points);
linear_extrude(height=h)
polygon(path3405_52_points);
linear_extrude(height=h)
polygon(path3405_53_points);
linear_extrude(height=h)
polygon(path3405_54_points);
linear_extrude(height=h)
polygon(path3405_55_points);
linear_extrude(height=h)
polygon(path3405_56_points);
linear_extrude(height=h)
polygon(path3405_57_points);
linear_extrude(height=h)
polygon(path3405_58_points);
linear_extrude(height=h)
polygon(path3405_59_points);
linear_extrude(height=h)
polygon(path3405_60_points);
linear_extrude(height=h)
polygon(path3405_61_points);
linear_extrude(height=h)
polygon(path3405_62_points);
linear_extrude(height=h)
polygon(path3405_63_points);
linear_extrude(height=h)
polygon(path3405_64_points);
linear_extrude(height=h)
polygon(path3405_65_points);
linear_extrude(height=h)
polygon(path3405_66_points);
linear_extrude(height=h)
polygon(path3405_67_points);
linear_extrude(height=h)
polygon(path3405_68_points);
linear_extrude(height=h)
polygon(path3405_69_points);
linear_extrude(height=h)
polygon(path3405_70_points);
linear_extrude(height=h)
polygon(path3405_71_points);
linear_extrude(height=h)
polygon(path3405_72_points);
linear_extrude(height=h)
polygon(path3405_73_points);
linear_extrude(height=h)
polygon(path3405_74_points);
linear_extrude(height=h)
polygon(path3405_75_points);
linear_extrude(height=h)
polygon(path3405_76_points);
linear_extrude(height=h)
polygon(path3405_77_points);
linear_extrude(height=h)
polygon(path3405_78_points);
linear_extrude(height=h)
polygon(path3405_79_points);
linear_extrude(height=h)
polygon(path3405_80_points);
linear_extrude(height=h)
polygon(path3405_81_points);
linear_extrude(height=h)
polygon(path3405_82_points);
linear_extrude(height=h)
polygon(path3405_83_points);
linear_extrude(height=h)
polygon(path3405_84_points);
linear_extrude(height=h)
polygon(path3405_85_points);
linear_extrude(height=h)
polygon(path3405_86_points);
linear_extrude(height=h)
polygon(path3405_87_points);
linear_extrude(height=h)
polygon(path3405_88_points);
linear_extrude(height=h)
polygon(path3405_89_points);
linear_extrude(height=h)
polygon(path3405_90_points);
linear_extrude(height=h)
polygon(path3405_91_points);
linear_extrude(height=h)
polygon(path3405_92_points);
linear_extrude(height=h)
polygon(path3405_93_points);
linear_extrude(height=h)
polygon(path3405_94_points);
linear_extrude(height=h)
polygon(path3405_95_points);
linear_extrude(height=h)
polygon(path3405_96_points);
linear_extrude(height=h)
polygon(path3405_97_points);
linear_extrude(height=h)
polygon(path3405_98_points);
linear_extrude(height=h)
polygon(path3405_99_points);
linear_extrude(height=h)
polygon(path3405_100_points);
linear_extrude(height=h)
polygon(path3405_101_points);
linear_extrude(height=h)
polygon(path3405_102_points);
linear_extrude(height=h)
polygon(path3405_103_points);
linear_extrude(height=h)
polygon(path3405_104_points);
}
}
module design_pine64(h, w, res=4) {
profile_scale = 25.4/90; //made in inkscape in mm
path3366_0_points = [[-5.126945,105.614050],[-5.209009,96.752099],[-5.434624,93.965505],[-5.892658,91.970632],[-6.665133,90.539084],[-7.834075,89.442462],[-11.689445,87.340400],[-35.561205,76.916590],[-56.151705,68.122000],[-47.279945,64.003090],[-19.181025,51.677170],[0.046145,43.470160],[21.131475,52.500890],[47.381024,63.957661],[53.115960,66.711984],[54.865745,67.913720],[54.270459,68.565685],[51.098925,70.138539],[28.623055,79.878200],[6.357435,89.810760],[5.816486,91.005652],[5.453412,93.790644],[5.185555,105.114790],[5.185555,119.531250],[0.029305,119.531250],[-5.126945,119.531250],[-5.126945,105.614050],[-5.126945,105.614050]];
path3366_1_points = [[-74.963135,40.104330],[-86.426035,13.768270],[-87.945310,10.122789],[-88.324435,8.353740],[-86.149557,8.882953],[-79.499891,11.397131],[-48.251945,24.165570],[-21.765691,35.307068],[-16.171162,37.879649],[-14.501945,38.968260],[-16.085440,40.108758],[-19.892565,41.980970],[-63.838575,60.849590],[-64.498284,60.924213],[-65.169137,60.605239],[-66.939621,58.049245],[-69.940723,51.707109],[-74.963135,40.104330],[-74.963135,40.104330]];
path3366_2_points = [[60.966805,60.104430],[52.998055,56.444900],[31.462585,47.009860],[19.814169,41.821551],[14.809005,39.182830],[15.095158,38.752191],[16.205467,38.035584],[21.211835,35.603021],[44.560555,25.750400],[71.635055,14.612700],[83.258520,9.987510],[88.324435,8.295120],[86.481729,13.307581],[81.605842,24.996413],[69.918545,51.562500],[66.654045,59.296870],[66.007502,60.680444],[65.017580,61.251598],[63.424080,61.047277],[60.966805,60.104430],[60.966805,60.104430]];
path3366_3_points = [[-20.595695,25.683570],[-49.658195,13.163780],[-61.236945,8.439960],[-62.559075,7.768141],[-62.778957,7.402301],[-62.643195,7.076170],[-41.220695,-2.269360],[-16.845695,-12.647910],[-5.415594,-17.665475],[-2.074652,-18.841710],[-0.088415,-19.219000],[10.563944,-15.234105],[31.920966,-6.398551],[52.883888,2.608330],[59.749197,5.713728],[62.353945,7.107210],[61.747807,7.791787],[60.263675,8.672790],[29.191012,21.971576],[0.498055,33.844020],[-6.278315,31.567740],[-20.595695,25.683570],[-20.595695,25.683570]];
path3366_4_points = [[-76.376945,-24.945380],[-76.376945,-51.297010],[-73.798815,-50.671630],[-67.470695,-48.288750],[-26.455065,-30.278620],[-18.675284,-26.715849],[-15.439445,-24.841470],[-19.776846,-22.490004],[-30.205065,-17.780170],[-50.595695,-8.818120],[-66.972118,-1.623706],[-72.505708,0.589528],[-75.132365,1.406250],[-75.474365,1.146657],[-75.750781,0.280934],[-76.131500,-3.790562],[-76.376945,-24.945380],[-76.376945,-24.945380]];
path3366_5_points = [[61.435555,-3.851140],[32.607435,-16.605510],[20.523935,-22.156520],[15.498055,-24.876310],[19.422372,-27.092940],[28.857435,-31.434230],[57.879655,-44.191140],[74.403095,-51.093750],[74.956176,-50.795175],[75.405032,-49.809530],[76.027650,-45.237524],[76.346105,-36.298708],[76.435555,-21.914060],[76.185046,-2.159948],[75.692308,0.783788],[75.301684,1.265801],[74.794935,1.371140],[70.193855,-0.177381],[61.435555,-3.851140],[61.435555,-3.851140]];
path3366_6_points = [[-22.001945,-38.407220],[-48.472485,-49.802610],[-52.936019,-51.868066],[-54.800615,-53.046130],[-46.501308,-57.024355],[-28.085195,-65.017929],[-9.319312,-72.865633],[0.029305,-76.406250],[3.155610,-75.425051],[9.726467,-72.831329],[28.391118,-64.905551],[46.401825,-56.827398],[52.155252,-54.043206],[54.137155,-52.795350],[45.281295,-48.609582],[26.956614,-40.682074],[8.587366,-33.017424],[-0.402195,-29.620230],[-7.342566,-32.238100],[-22.001945,-38.407220],[-22.001945,-38.407220]];
path3366_7_points = [[42.216805,-69.016580],[24.134035,-77.037440],[18.736174,-79.688716],[17.164082,-80.705124],[16.669775,-81.327680],[17.726345,-82.142420],[20.283985,-83.550580],[28.013681,-87.281616],[36.081269,-90.789702],[40.709155,-92.343750],[42.222454,-91.619429],[43.508075,-89.877980],[49.395096,-75.298220],[51.899564,-68.393172],[52.820985,-65.168330],[51.894009,-65.224336],[49.585689,-65.968561],[42.216805,-69.016580],[42.216805,-69.016580]];
path3366_8_points = [[-50.481075,-72.421870],[-43.704095,-89.765620],[-42.704742,-91.414452],[-41.309771,-92.207957],[-39.424557,-92.167872],[-36.954475,-91.315930],[-21.384873,-84.142573],[-17.832532,-82.271999],[-16.601725,-81.299370],[-16.688156,-80.861174],[-17.152636,-80.355551],[-18.912465,-79.392330],[-35.488905,-72.254510],[-45.856061,-67.903473],[-51.183975,-66.093750],[-52.080383,-66.251276],[-52.297283,-67.041163],[-50.481075,-72.421870],[-50.481075,-72.421870]];
path3366_9_points = [[-5.685775,-89.218220],[-16.610485,-93.586550],[-20.417274,-95.305387],[-21.575502,-96.045536],[-22.001115,-96.575410],[-19.081510,-100.478681],[-12.060875,-108.528530],[-3.921032,-116.993628],[-1.516545,-118.923477],[0.011415,-119.531250],[1.374775,-119.080247],[3.289045,-117.684042],[9.073985,-111.796870],[19.841667,-99.440682],[21.448633,-97.065420],[21.600638,-96.456393],[21.429845,-96.091350],[12.682921,-92.068441],[1.345475,-87.416350],[-1.337196,-87.727841],[-5.685775,-89.218220],[-5.685775,-89.218220]];
scale([profile_scale, -profile_scale, 1])
union() {
linear_extrude(height=h)
polygon(path3366_0_points);
linear_extrude(height=h)
polygon(path3366_1_points);
linear_extrude(height=h)
polygon(path3366_2_points);
linear_extrude(height=h)
polygon(path3366_3_points);
linear_extrude(height=h)
polygon(path3366_4_points);
linear_extrude(height=h)
polygon(path3366_5_points);
linear_extrude(height=h)
polygon(path3366_6_points);
linear_extrude(height=h)
polygon(path3366_7_points);
linear_extrude(height=h)
polygon(path3366_8_points);
linear_extrude(height=h)
polygon(path3366_9_points);
}
}
module design_rpi(h, w, res=4) {
profile_scale = 25.4/90; //made in inkscape in mm
path3347_0_points = [[-11.715223,314.593316],[-18.997063,312.931675],[-26.038964,310.783131],[-32.814597,308.161442],[-39.297631,305.080365],[-45.461733,301.553658],[-51.280573,297.595080],[-56.727820,293.218386],[-61.777143,288.437336],[-66.148168,283.469956],[-69.077679,279.039996],[-70.565085,275.148566],[-70.767813,273.405147],[-70.609793,271.796776],[-69.713758,269.354192],[-68.113028,266.885887],[-65.843669,264.419024],[-62.941743,261.980767],[-59.443314,259.598279],[-55.384445,257.298723],[-50.801200,255.109261],[-45.729643,253.057056],[-40.569924,251.288531],[-35.007767,249.802042],[-17.184733,246.393196],[-7.205578,245.508539],[6.427039,245.300484],[20.569803,245.742547],[32.079397,246.808246],[38.856224,247.996331],[45.335034,249.472603],[51.419957,251.200333],[57.015127,253.142791],[62.024674,255.263249],[66.352730,257.524977],[69.903427,259.891245],[72.580897,262.325326],[74.621910,265.072794],[75.813319,267.888356],[76.135688,270.834234],[75.569583,273.972654],[74.095568,277.365838],[71.694207,281.076011],[68.346065,285.165395],[64.031707,289.696216],[59.687457,293.709884],[55.020918,297.448290],[50.061241,300.895184],[44.837574,304.034321],[39.379067,306.849452],[33.714867,309.324330],[27.874124,311.442707],[21.885987,313.188336],[13.877898,314.664381],[4.810541,315.423920],[-4.119396,315.416912],[-11.715223,314.593316],[-11.715223,314.593316]];
path3347_1_points = [[-121.247233,247.059146],[-127.277674,245.844505],[-133.183642,244.227223],[-138.946036,242.223172],[-144.545754,239.848220],[-149.963694,237.118236],[-155.180755,234.049090],[-160.177836,230.656652],[-164.935833,226.956790],[-169.435646,222.965375],[-173.658174,218.698275],[-177.584314,214.171361],[-181.194965,209.400501],[-184.471025,204.401565],[-187.393392,199.190423],[-189.942965,193.782943],[-192.100643,188.194996],[-194.959697,178.996313],[-196.693996,170.902183],[-197.452338,162.955001],[-197.383523,154.197166],[-196.853881,147.271813],[-195.921864,141.220104],[-194.562469,135.992146],[-192.750697,131.538043],[-190.461545,127.807900],[-187.670013,124.751823],[-184.351099,122.319916],[-180.479803,120.462286],[-177.918961,119.763326],[-174.726890,119.327020],[-167.210692,119.207195],[-159.454477,120.032450],[-155.962384,120.777496],[-152.981513,121.732426],[-147.407247,124.223460],[-141.877792,127.234900],[-136.424151,130.728903],[-131.077328,134.667625],[-125.868324,139.013221],[-120.828143,143.727847],[-115.987788,148.773660],[-111.378261,154.112814],[-107.030565,159.707465],[-102.975703,165.519771],[-99.244679,171.511885],[-95.868495,177.645964],[-92.878153,183.884164],[-90.304657,190.188641],[-88.179009,196.521549],[-86.532213,202.845046],[-84.706012,212.865219],[-84.499227,216.422739],[-84.685833,219.720046],[-85.631248,225.928798],[-87.055269,231.010064],[-89.089447,235.321136],[-91.865333,239.219306],[-94.450274,241.930248],[-97.254804,244.122292],[-100.324527,245.807605],[-103.705049,246.998359],[-107.441976,247.706721],[-111.580912,247.944860],[-116.167462,247.724945],[-121.247233,247.059146],[-121.247233,247.059146]];
path3347_2_points = [[103.752997,246.310736],[101.226558,245.220023],[98.854690,243.842747],[96.652055,242.194368],[94.633316,240.290350],[92.813135,238.146153],[91.206174,235.777239],[89.827098,233.199069],[88.690567,230.427106],[87.864985,227.526940],[87.255846,224.185183],[86.693174,216.587049],[87.015102,208.453021],[88.234177,200.603416],[91.212886,189.431454],[95.034721,179.287849],[100.134569,169.185730],[106.947317,158.138226],[113.251744,149.056478],[119.312687,141.449301],[125.752418,134.596909],[133.193207,127.779516],[141.245072,121.454017],[149.248536,116.385868],[157.093011,112.602072],[164.667907,110.129636],[168.319703,109.393617],[171.862633,108.995564],[175.282873,108.938853],[178.566600,109.226860],[181.699990,109.862960],[184.669218,110.850529],[187.460462,112.192943],[190.059897,113.893576],[191.551914,115.259888],[193.052208,117.099595],[195.983044,122.011194],[198.663242,128.252382],[200.903637,135.447166],[201.888064,140.158136],[202.594950,145.487008],[203.174448,157.129292],[202.638841,168.635694],[201.951844,173.794712],[200.984837,178.267886],[197.453637,189.014980],[195.321374,194.094966],[192.947796,198.975643],[190.335250,203.654310],[187.486080,208.128266],[184.402632,212.394810],[181.087253,216.451240],[177.542288,220.294855],[173.770082,223.922954],[169.772981,227.332835],[165.553332,230.521798],[161.113479,233.487140],[156.455768,236.226162],[151.582546,238.736161],[146.496157,241.014436],[141.179683,242.945256],[135.344643,244.576886],[129.246544,245.877667],[123.140897,246.815939],[117.283211,247.360041],[111.928996,247.478315],[107.333762,247.139100],[103.753017,246.310736],[103.752997,246.310736]];
path3347_3_points = [[-11.559733,220.794576],[-17.159957,219.517537],[-22.808041,217.750764],[-28.408260,215.543897],[-33.864887,212.946580],[-39.082198,210.008455],[-43.964468,206.779165],[-48.415971,203.308351],[-52.340983,199.645656],[-55.885220,195.718858],[-59.087591,191.609138],[-61.944459,187.336146],[-64.452191,182.919533],[-66.607151,178.378947],[-68.405704,173.734038],[-69.844214,169.004457],[-70.919047,164.209854],[-71.626567,159.369877],[-71.963139,154.504178],[-71.925129,149.632405],[-71.508900,144.774209],[-70.710819,139.949239],[-69.527249,135.177145],[-67.954555,130.477578],[-65.989103,125.870186],[-62.815100,119.719182],[-59.406528,114.186803],[-55.699141,109.208951],[-51.628692,104.721526],[-47.130933,100.660430],[-42.141619,96.961562],[-36.596501,93.560824],[-30.431333,90.394116],[-21.339205,86.543025],[-12.856788,83.975510],[-4.342181,82.540411],[4.846517,82.086566],[11.438418,82.329668],[17.858055,83.078439],[24.109287,84.334179],[30.195972,86.098187],[36.121969,88.371763],[41.891138,91.156205],[47.507338,94.452813],[52.974427,98.262886],[58.761516,102.998338],[63.470403,107.780480],[67.539280,113.114305],[71.406337,119.504806],[75.123838,126.834538],[77.507651,133.299496],[78.875714,140.016763],[79.545967,148.103416],[79.591211,157.019381],[79.256295,160.916199],[78.644749,164.623259],[76.476961,172.021153],[72.858227,180.319166],[68.970408,187.500925],[64.698338,193.772681],[59.981836,199.212852],[54.760717,203.899856],[47.439813,209.074040],[39.678828,213.414838],[31.559352,216.901465],[23.162974,219.513136],[14.571287,221.229068],[5.865880,222.028475],[-2.871657,221.890572],[-11.559733,220.794576],[-11.559733,220.794576]];
path3347_4_points = [[-214.295443,113.114626],[-216.985062,110.651320],[-220.741531,106.059436],[-224.773035,100.382970],[-228.287763,94.665916],[-231.189964,88.885214],[-233.583718,82.938869],[-235.473172,76.858839],[-236.862472,70.677081],[-237.755764,64.425555],[-238.157195,58.136217],[-238.070910,51.841026],[-237.501056,45.571940],[-236.451778,39.360917],[-234.927224,33.239915],[-232.931538,27.240892],[-230.468868,21.395807],[-227.543359,15.736616],[-224.159158,10.295279],[-220.320411,5.103753],[-216.031263,0.193996],[-209.887667,-5.646074],[-203.657573,-10.491692],[-198.126517,-13.798361],[-195.868607,-14.704434],[-194.080033,-15.021584],[-192.441468,-14.792752],[-190.896034,-14.115521],[-189.447369,-13.003787],[-188.099110,-11.471446],[-185.718355,-7.200525],[-183.782867,-1.413925],[-182.321740,5.777186],[-181.364069,14.261642],[-180.938952,23.928274],[-181.075483,34.665916],[-182.056043,47.134316],[-183.965767,59.820816],[-186.647243,72.233329],[-189.943061,83.879765],[-193.695807,94.268034],[-197.748070,102.906047],[-199.837330,106.414929],[-201.942440,109.301714],[-204.043723,111.504890],[-206.121503,112.962946],[-208.369030,113.912563],[-210.367998,114.252294],[-212.287203,113.985270],[-214.295443,113.114626],[-214.295443,113.114626]];
path3347_5_points = [[206.152137,110.751236],[204.485081,109.307477],[202.661768,107.114774],[198.766318,100.886391],[194.905685,92.873788],[191.519767,83.884666],[188.613695,73.892982],[186.094229,63.086255],[184.005823,51.832144],[182.392927,40.498307],[181.299993,29.452404],[180.771472,19.062092],[180.851816,9.695030],[181.585477,1.718876],[183.230621,-6.938115],[185.228852,-13.204870],[186.376474,-15.479452],[187.631685,-17.201527],[189.000927,-18.386112],[190.490637,-19.048224],[191.657456,-19.124877],[193.112744,-18.845489],[196.741784,-17.333035],[201.083861,-14.739744],[205.845079,-11.294501],[210.731546,-7.226189],[215.449364,-2.763691],[219.704639,1.864108],[223.203477,6.428326],[226.201015,11.138282],[228.866707,15.935127],[231.199628,20.809117],[233.198854,25.750506],[234.863460,30.749551],[236.192521,35.796508],[237.185114,40.881632],[237.840313,45.995179],[238.157195,51.127404],[238.134834,56.268563],[237.772306,61.408913],[237.068687,66.538708],[236.023052,71.648204],[234.634477,76.727657],[232.902037,81.767322],[230.824807,86.757456],[228.580485,91.236257],[225.943842,95.734150],[220.098987,104.026485],[217.193472,107.440561],[214.501032,110.113000],[212.173014,111.853620],[210.360767,112.472236],[208.461179,111.963917],[206.152137,110.751236],[206.152137,110.751236]];
path3347_6_points = [[-101.559733,95.491666],[-107.902717,94.376384],[-114.095068,92.641258],[-120.061059,90.329060],[-125.724959,87.482563],[-131.011040,84.144536],[-135.843572,80.357751],[-140.146826,76.164981],[-143.845073,71.608996],[-147.414357,66.051124],[-150.498607,60.084504],[-153.052103,53.808422],[-155.029123,47.322166],[-155.789926,43.512896],[-156.338465,39.034221],[-156.796026,29.006068],[-156.396355,19.112525],[-155.873355,14.802115],[-155.134003,11.228416],[-153.208374,4.805609],[-150.988466,-1.350550],[-148.479372,-7.234610],[-145.686186,-12.841120],[-142.614002,-18.164627],[-139.267912,-23.199682],[-135.653012,-27.940832],[-131.774394,-32.382626],[-127.637153,-36.519613],[-123.246381,-40.346341],[-118.607173,-43.857360],[-113.724622,-47.047217],[-108.603822,-49.910461],[-103.249866,-52.441641],[-97.667849,-54.635306],[-91.862863,-56.486004],[-87.587550,-57.491667],[-83.014909,-58.190263],[-78.257207,-58.583250],[-73.426716,-58.672087],[-68.635703,-58.458234],[-63.996439,-57.943147],[-59.621192,-57.128288],[-55.622233,-56.015114],[-48.767771,-53.370750],[-42.526429,-50.219660],[-36.879852,-46.544626],[-31.809689,-42.328425],[-27.297587,-37.553839],[-23.325192,-32.203646],[-19.874151,-26.260628],[-16.926113,-19.707564],[-14.421317,-12.728846],[-12.819706,-6.577597],[-11.979482,-0.546399],[-11.758853,6.072166],[-12.226050,15.578438],[-13.523907,24.638189],[-15.668115,33.288357],[-18.674364,41.565877],[-22.558347,49.507687],[-27.335754,57.150723],[-33.022275,64.531920],[-39.633603,71.688216],[-44.673207,76.421427],[-49.739851,80.584507],[-54.887815,84.206397],[-60.171379,87.316044],[-65.644823,89.942389],[-71.362427,92.114377],[-77.378470,93.860952],[-83.747233,95.211056],[-88.660286,96.033185],[-92.173941,96.336779],[-95.927366,96.147664],[-101.559733,95.491666],[-101.559733,95.491666]];
path3347_7_points = [[96.252767,92.791966],[85.480707,90.882486],[81.746083,90.095973],[78.029041,88.930735],[74.053456,87.285908],[69.543207,85.060626],[61.178379,80.401921],[54.591761,75.947871],[48.744993,70.905387],[42.599717,64.481376],[38.551624,59.760781],[35.245723,55.324649],[32.274474,50.576708],[29.230337,44.920686],[24.928655,35.761387],[21.945012,27.492324],[20.010889,19.209742],[18.857767,10.009886],[18.518351,3.445964],[18.657859,-2.818970],[19.286258,-8.826061],[20.413518,-14.616455],[22.049609,-20.231299],[24.204500,-25.711740],[26.888159,-31.098922],[30.110557,-36.433994],[34.424888,-42.494532],[38.610792,-47.006154],[43.480569,-50.705375],[49.846517,-54.328714],[56.941498,-57.650302],[63.390441,-59.777468],[69.981484,-60.907049],[77.502767,-61.235884],[85.967454,-60.764726],[93.988959,-59.295510],[101.970493,-56.726624],[110.315267,-52.956454],[118.624252,-48.182312],[126.253535,-42.660544],[133.196104,-36.399888],[139.444947,-29.409083],[144.993052,-21.696867],[149.833406,-13.271979],[153.958999,-4.143158],[157.362817,5.680856],[158.796742,10.876192],[159.579618,15.395298],[159.892921,20.897197],[159.918127,29.040916],[159.802801,37.281158],[159.423709,42.649575],[158.551857,46.908575],[156.958247,51.820566],[154.074129,59.051839],[150.715581,65.506892],[146.840973,71.227079],[142.408676,76.253754],[137.377061,80.628269],[131.704499,84.391977],[125.349360,87.586232],[118.270017,90.252386],[112.155611,91.911391],[106.223246,92.913572],[100.809954,93.220056],[96.252767,92.791966],[96.252767,92.791966]];
path3347_8_points = [[172.659017,-40.171564],[165.466068,-44.134419],[156.996499,-49.367927],[148.891997,-54.814239],[142.794247,-59.415504],[129.962417,-69.426914],[120.507150,-77.398839],[108.457887,-88.671482],[96.440851,-100.701910],[87.082267,-110.947184],[82.769598,-116.615017],[79.917452,-121.514702],[79.095539,-123.556327],[78.706515,-125.261719],[78.772966,-126.582813],[79.317477,-127.471544],[82.751292,-128.561357],[89.327217,-129.787394],[96.078767,-130.521924],[102.802906,-130.707514],[109.470072,-130.359441],[116.050700,-129.492982],[122.515225,-128.123413],[128.834084,-126.266012],[134.977713,-123.936055],[140.916547,-121.148817],[146.621022,-117.919578],[152.061575,-114.263612],[157.208641,-110.196197],[162.032657,-105.732609],[166.504057,-100.888125],[170.593278,-95.678021],[174.270756,-90.117576],[177.506927,-84.222064],[181.558228,-74.873096],[184.472859,-65.465337],[186.237917,-56.050684],[186.840497,-46.681034],[186.677352,-40.619955],[186.264397,-37.540404],[185.632499,-36.976058],[184.626144,-36.680285],[181.628251,-36.867737],[177.547086,-38.049313],[172.659017,-40.171564],[172.659017,-40.171564]];
path3347_9_points = [[-186.830283,-38.781224],[-187.739856,-39.771777],[-188.190908,-41.566584],[-188.037013,-50.734354],[-187.038833,-59.933304],[-184.977925,-69.024811],[-181.921514,-77.883157],[-177.936823,-86.382622],[-173.091076,-94.397488],[-167.451496,-101.802034],[-161.085307,-108.470543],[-154.059733,-114.277294],[-147.982171,-118.277397],[-141.451215,-121.798476],[-134.582433,-124.805496],[-127.491392,-127.263422],[-120.293659,-129.137220],[-113.104801,-130.391854],[-106.040387,-130.992290],[-99.215983,-130.903494],[-91.252202,-130.139972],[-85.524678,-129.057754],[-82.000136,-127.647876],[-81.053586,-126.817263],[-80.645303,-125.901374],[-81.085177,-123.343270],[-82.732771,-119.578067],[-85.302035,-115.160820],[-88.506923,-110.646584],[-94.284235,-103.971279],[-101.942802,-96.157217],[-110.962586,-87.652886],[-120.823552,-78.906775],[-131.005661,-70.367374],[-140.988878,-62.483172],[-150.253164,-55.702659],[-158.278483,-50.474324],[-168.590983,-44.125494],[-171.819095,-42.427496],[-176.787283,-40.231417],[-181.599367,-38.331399],[-184.359163,-37.521584],[-186.830283,-38.781224],[-186.830283,-38.781224]];
path3347_10_points = [[-4.997233,-65.669504],[-14.149554,-66.681829],[-23.109700,-68.462845],[-31.676291,-70.924618],[-39.647948,-73.979212],[-46.823293,-77.538696],[-53.000947,-81.515133],[-57.979530,-85.820590],[-59.956239,-88.069222],[-61.557663,-90.367134],[-64.143971,-95.125249],[-65.597283,-99.177346],[-66.025848,-102.974950],[-65.537913,-106.969584],[-64.177474,-111.385069],[-61.961883,-115.490771],[-58.682245,-119.598929],[-54.129663,-124.021784],[-50.465244,-127.058675],[-46.453800,-129.962976],[-37.601764,-135.262053],[-27.997405,-139.695507],[-18.064573,-143.039834],[-10.543212,-144.334006],[-0.804177,-145.068249],[8.807893,-145.144374],[12.833615,-144.904959],[15.948357,-144.464194],[23.062193,-142.688986],[29.932920,-140.454364],[36.518410,-137.783087],[42.776538,-134.697909],[48.665177,-131.221587],[54.142201,-127.376878],[59.165483,-123.186538],[63.692897,-118.673324],[67.328145,-114.277952],[69.845787,-110.172695],[71.402783,-106.040222],[72.156097,-101.563204],[72.061881,-97.950113],[71.198010,-94.319636],[69.606237,-90.726796],[67.328318,-87.226615],[64.406007,-83.874115],[60.881059,-80.724318],[56.795227,-77.832247],[52.190267,-75.252924],[45.416181,-72.105979],[39.309754,-69.871376],[32.600392,-68.157667],[24.017497,-66.573404],[16.834082,-65.457313],[11.270371,-64.986550],[4.826540,-65.083239],[-4.997233,-65.669504],[-4.997233,-65.669504]];
path3347_11_points = [[-124.059733,-146.907664],[-125.977707,-147.603681],[-126.730894,-148.407931],[-126.321021,-149.329102],[-124.749813,-150.375884],[-122.742688,-151.741128],[-121.482047,-153.252880],[-121.112231,-154.653326],[-121.306490,-155.231243],[-121.777583,-155.684654],[-124.910299,-156.337207],[-130.949963,-156.983904],[-138.094578,-157.766349],[-144.915511,-158.869719],[-150.243249,-160.072051],[-152.908283,-161.151384],[-152.974302,-161.652187],[-152.458317,-162.359601],[-149.922623,-164.150854],[-147.216524,-165.984149],[-146.090983,-167.367804],[-146.788809,-167.977843],[-148.688831,-168.852689],[-154.934723,-170.929354],[-165.079750,-174.194185],[-171.630871,-177.133754],[-173.390212,-178.383142],[-174.048872,-179.433108],[-173.539450,-180.244281],[-171.794543,-180.777294],[-167.311309,-182.123481],[-165.561963,-182.979141],[-164.876423,-183.650944],[-167.576102,-185.351675],[-174.017043,-188.613014],[-181.476561,-192.531755],[-187.850778,-196.471116],[-192.142905,-199.755978],[-193.196688,-200.941998],[-193.356153,-201.711224],[-192.531932,-202.214672],[-191.364503,-202.107644],[-189.286113,-202.022398],[-186.371399,-202.551954],[-183.775482,-203.406237],[-182.958048,-203.864503],[-182.653483,-204.295174],[-184.512371,-206.074450],[-188.981603,-209.279694],[-194.680755,-213.401706],[-199.911896,-217.700962],[-203.593322,-221.227642],[-204.514861,-222.404447],[-204.643333,-223.031924],[-202.994409,-223.478399],[-199.848943,-223.732574],[-196.612106,-224.078064],[-194.743523,-224.744044],[-195.027127,-225.775186],[-196.674506,-227.953412],[-203.734273,-235.365624],[-210.626607,-242.502405],[-212.654056,-244.881103],[-213.316473,-246.001364],[-212.703856,-246.336130],[-211.259678,-246.576104],[-206.739823,-246.682304],[-201.490656,-246.784869],[-200.654178,-247.295479],[-200.465983,-248.248024],[-200.881777,-249.312525],[-202.055394,-250.814574],[-206.233513,-254.640764],[-210.909874,-258.801412],[-215.103462,-263.240311],[-217.985830,-266.997831],[-218.676417,-268.321190],[-218.728533,-269.114344],[-216.446879,-269.513395],[-211.650903,-269.356854],[-205.064423,-268.804674],[-207.480643,-275.272504],[-210.118631,-281.351527],[-213.068063,-286.884574],[-215.177906,-290.727762],[-215.797303,-292.743944],[-212.265572,-293.252042],[-204.395023,-293.469404],[-195.603731,-293.650409],[-189.858263,-294.070694],[-186.281793,-294.661664],[-189.731523,-298.194494],[-191.982321,-300.989815],[-192.522609,-302.073824],[-192.549533,-302.749454],[-191.592177,-303.307118],[-189.681989,-303.639656],[-183.777997,-303.670925],[-176.387323,-302.926404],[-169.059733,-301.489234],[-162.894207,-300.067589],[-159.919113,-299.718144],[-159.451917,-300.209407],[-159.208668,-300.951529],[-159.333581,-302.927020],[-160.172992,-305.121948],[-161.606043,-307.013644],[-163.085344,-308.798846],[-163.247659,-309.434357],[-162.998803,-309.845044],[-160.796801,-309.988507],[-156.596773,-309.305784],[-151.075350,-307.939488],[-144.909163,-306.032234],[-137.020533,-303.771584],[-136.372356,-303.964682],[-135.970080,-304.499328],[-135.862237,-306.325385],[-136.615017,-308.713989],[-138.146433,-311.129374],[-139.563496,-313.274644],[-139.795886,-314.050037],[-139.645273,-314.480644],[-138.658331,-314.590847],[-136.879736,-314.307952],[-131.683763,-312.810815],[-125.529718,-310.485140],[-119.889963,-307.826834],[-116.515936,-306.048574],[-114.553847,-305.270314],[-113.442308,-305.367693],[-112.619933,-306.216354],[-111.959931,-307.753729],[-111.972479,-309.531885],[-112.633569,-311.420158],[-113.919193,-313.287884],[-114.786809,-314.825772],[-114.605520,-315.243692],[-114.057913,-315.423920],[-111.994985,-315.060278],[-108.860503,-313.712794],[-102.311221,-309.823650],[-94.598403,-303.918304],[-90.756063,-300.783774],[-89.302713,-304.262114],[-88.432004,-307.124485],[-88.379463,-309.121874],[-88.763727,-310.695832],[-88.437164,-311.467126],[-87.470688,-311.477400],[-85.935212,-310.768299],[-81.440920,-307.358552],[-75.521603,-301.571044],[-70.108463,-295.802834],[-68.255973,-298.016064],[-66.947656,-300.358577],[-66.403483,-302.882614],[-66.087168,-304.952011],[-65.326673,-306.201434],[-64.619134,-306.079850],[-63.365045,-305.263810],[-59.539463,-301.862207],[-54.494411,-296.624319],[-48.874373,-290.177834],[-44.974013,-285.490334],[-42.941703,-290.049544],[-40.909393,-294.608754],[-36.695573,-290.518294],[-33.130827,-286.677606],[-29.572317,-282.126610],[-26.101453,-277.010682],[-22.799644,-271.475199],[-19.748300,-265.665538],[-17.028831,-259.727077],[-14.722645,-253.805194],[-12.911153,-248.045264],[-11.480874,-240.501130],[-11.158468,-232.897797],[-11.923802,-225.898993],[-12.708080,-222.833704],[-13.756743,-220.168444],[-16.406836,-215.678225],[-19.826883,-211.455155],[-23.849495,-207.679140],[-28.307283,-204.530084],[-33.546233,-201.382334],[-41.771743,-207.925394],[-51.607188,-215.319173],[-62.560980,-222.771286],[-74.456392,-230.184073],[-87.116694,-237.459876],[-100.365158,-244.501037],[-114.025055,-251.209898],[-127.919656,-257.488800],[-141.872233,-263.240084],[-152.421892,-267.219787],[-155.235266,-268.113041],[-156.423201,-268.266257],[-155.997342,-267.672706],[-153.969338,-266.325656],[-145.153483,-261.344144],[-124.979617,-250.018414],[-107.200437,-239.295594],[-91.186897,-228.780344],[-76.309953,-218.077324],[-65.670698,-209.480169],[-55.489043,-200.322445],[-47.850600,-192.581878],[-45.636838,-189.861067],[-44.840983,-188.236194],[-45.349256,-185.400965],[-46.767597,-181.947406],[-48.936288,-178.091704],[-51.695609,-174.050047],[-54.885844,-170.038625],[-58.347273,-166.273625],[-61.920179,-162.971235],[-65.444843,-160.347644],[-71.355842,-157.272602],[-79.275769,-154.148865],[-88.189029,-151.334685],[-97.080023,-149.188314],[-104.902755,-147.912202],[-112.978038,-147.024636],[-119.849241,-146.648747],[-124.059733,-146.907664],[-124.059733,-146.907664]];
path3347_12_points = [[115.874067,-147.266054],[108.684953,-148.308251],[101.459935,-149.803878],[94.363272,-151.693893],[87.559224,-153.919255],[81.212052,-156.420923],[75.486013,-159.139856],[70.545368,-162.017014],[66.554377,-164.993354],[62.469079,-169.171125],[58.594057,-174.262266],[55.335542,-179.668959],[53.099767,-184.793384],[51.506907,-189.589064],[56.536087,-194.729014],[64.962400,-202.793759],[74.682801,-211.109653],[85.593660,-219.605156],[97.591347,-228.208729],[110.572231,-236.848830],[124.432683,-245.453919],[139.069072,-253.952457],[154.377767,-262.272904],[164.145343,-267.664266],[166.473712,-269.165346],[166.824085,-269.512747],[166.565267,-269.551584],[158.102021,-266.729512],[144.341724,-261.192080],[128.333824,-254.220687],[113.127767,-247.096734],[93.328850,-236.793743],[75.143138,-226.162770],[58.972589,-215.453492],[51.768611,-210.147512],[45.219157,-204.915584],[41.270557,-201.616614],[37.424197,-203.578874],[32.856368,-206.576580],[28.185859,-210.742073],[24.076438,-215.407716],[21.191867,-219.905874],[20.023372,-222.678486],[19.134580,-225.636764],[18.526544,-228.761711],[18.200316,-232.034329],[18.397492,-238.946589],[19.734527,-246.221564],[21.898759,-253.454557],[24.654064,-260.694276],[27.966886,-267.861054],[31.803667,-274.875224],[36.147762,-281.335334],[41.198152,-287.686353],[45.623125,-292.376501],[47.184919,-293.613819],[48.090967,-293.854004],[49.155888,-292.384323],[50.456557,-289.629344],[51.670361,-287.045738],[52.526437,-285.988074],[53.838367,-287.187240],[56.148157,-290.029694],[60.652119,-295.366652],[66.115899,-301.059173],[70.895166,-305.483224],[72.514253,-306.712064],[73.345587,-307.014774],[73.964216,-305.566810],[74.221517,-302.845714],[74.520032,-300.612526],[75.279132,-298.486666],[76.294147,-296.896798],[77.360407,-296.271584],[85.263857,-303.849154],[91.052501,-309.086558],[93.080173,-310.590881],[94.141677,-311.037784],[95.119756,-309.821841],[95.832807,-307.444584],[96.687428,-303.525452],[97.232866,-302.471950],[97.955196,-302.000685],[98.928021,-302.095303],[100.224946,-302.739450],[104.085517,-305.610914],[109.450172,-309.650308],[114.124467,-312.762094],[117.286683,-314.274331],[119.530977,-314.684863],[120.225594,-314.483537],[120.590759,-314.014642],[120.593148,-313.280798],[120.199437,-312.284624],[119.490995,-310.286451],[119.255449,-308.127350],[119.492647,-306.263518],[120.202437,-305.151154],[121.153111,-305.211468],[123.016633,-305.823733],[128.405557,-308.291894],[134.457080,-311.121139],[140.239982,-313.305361],[144.845758,-314.545128],[146.423318,-314.717266],[147.365907,-314.541004],[147.567865,-314.061064],[147.303453,-313.216213],[145.503227,-310.695434],[143.720698,-308.217495],[142.787832,-305.991483],[142.794640,-304.389475],[143.178552,-303.938749],[143.831137,-303.783554],[152.503017,-306.193284],[158.831730,-308.065055],[164.138702,-309.339372],[168.007623,-309.931556],[170.022187,-309.756924],[170.181706,-309.331516],[169.936816,-308.592089],[168.438917,-306.582424],[166.667992,-304.076986],[166.283543,-302.880026],[166.252677,-301.763384],[166.785719,-300.261485],[167.388244,-299.887146],[168.347112,-299.764201],[171.730893,-300.273459],[177.731097,-301.791184],[184.074617,-303.008456],[191.123536,-303.707989],[197.088042,-303.783221],[199.104326,-303.553425],[200.178327,-303.127594],[200.154307,-302.596806],[199.612784,-301.627713],[197.348627,-298.926054],[195.106478,-296.201988],[194.588784,-295.208642],[194.593867,-294.648244],[199.003429,-294.057143],[208.595447,-293.647504],[223.104157,-292.952984],[223.532068,-292.583875],[223.478666,-291.887155],[221.852557,-289.290374],[219.384063,-285.190226],[216.460529,-279.292438],[214.015672,-273.610977],[212.983207,-270.159814],[213.280148,-269.567268],[214.300527,-269.231160],[219.216917,-269.222314],[224.076511,-269.199199],[225.317810,-268.896795],[225.854737,-268.389454],[225.515086,-267.545035],[224.341008,-265.954595],[220.210224,-261.299489],[214.903692,-255.951803],[209.862717,-251.439204],[207.932493,-249.463450],[207.658944,-248.702110],[207.856694,-248.078670],[208.533439,-247.583288],[209.696872,-247.206120],[213.514577,-246.767054],[217.700216,-246.301236],[219.968637,-245.582684],[219.685751,-244.552821],[218.017006,-242.379318],[210.800517,-234.925244],[203.480872,-227.381427],[201.985965,-225.358535],[201.765083,-224.767113],[201.889667,-224.449144],[204.032138,-223.962596],[207.553687,-223.799914],[210.870893,-223.626990],[212.522087,-223.115794],[212.229673,-222.407342],[211.039657,-221.077254],[206.672758,-217.145078],[200.833274,-212.505079],[194.933087,-208.343074],[191.129344,-205.685680],[189.542467,-204.180144],[190.178181,-203.544766],[191.867488,-202.933706],[197.009877,-202.162034],[199.103903,-201.884141],[200.336187,-201.407244],[200.272184,-200.806075],[199.385603,-199.806630],[195.536227,-196.878331],[189.571101,-193.153183],[182.273267,-189.162024],[175.579904,-185.410743],[173.613793,-184.055270],[172.974867,-183.302914],[173.994902,-182.402064],[176.017117,-181.552694],[180.132109,-180.027515],[180.950518,-179.347594],[181.129757,-178.615414],[180.595321,-178.005515],[179.200601,-177.169675],[174.397441,-175.044224],[167.854533,-172.687173],[160.706137,-170.546634],[155.243736,-168.862265],[152.971767,-167.703924],[154.083482,-166.448610],[156.756337,-164.531084],[159.278303,-162.599644],[159.928068,-161.822089],[160.027247,-161.310864],[159.252726,-160.784824],[157.628334,-160.195962],[152.430352,-158.949228],[145.634135,-157.809584],[138.440517,-157.015954],[131.798987,-156.369617],[129.826494,-155.987285],[128.662354,-155.501509],[128.238699,-154.864285],[128.487656,-154.027611],[130.731927,-151.563904],[132.933259,-149.065863],[133.392580,-148.175956],[133.311477,-147.694734],[130.916900,-147.055923],[126.775839,-146.760820],[121.543308,-146.825524],[115.874317,-147.266134],[115.874067,-147.266054]];
scale([profile_scale, -profile_scale, 1])
union() {
linear_extrude(height=h)
polygon(path3347_0_points);
linear_extrude(height=h)
polygon(path3347_1_points);
linear_extrude(height=h)
polygon(path3347_2_points);
linear_extrude(height=h)
polygon(path3347_3_points);
linear_extrude(height=h)
polygon(path3347_4_points);
linear_extrude(height=h)
polygon(path3347_5_points);
linear_extrude(height=h)
polygon(path3347_6_points);
linear_extrude(height=h)
polygon(path3347_7_points);
linear_extrude(height=h)
polygon(path3347_8_points);
linear_extrude(height=h)
polygon(path3347_9_points);
linear_extrude(height=h)
polygon(path3347_10_points);
linear_extrude(height=h)
polygon(path3347_11_points);
linear_extrude(height=h)
polygon(path3347_12_points);
}
}
// END v2 designs
module design_opi_old(h, w, res=4) {
profile_scale = 25.4/90; //made in inkscape in mm
path3347_0_points = [[12.609542,179.439836],[7.940404,175.884098],[3.199395,173.260181],[-1.814089,171.556084],[-7.300648,170.759807],[-13.460885,170.859352],[-20.495402,171.842718],[-28.604803,173.697906],[-37.989688,176.412916],[-46.744281,178.980785],[-52.723799,180.336081],[-56.269426,180.534449],[-57.236151,180.217175],[-57.722348,179.631536],[-58.353169,178.611255],[-59.366478,177.775735],[-60.622516,177.211196],[-61.981528,177.003856],[-63.265361,176.749887],[-64.316709,176.058386],[-65.027078,175.034965],[-65.287978,173.785236],[-65.459911,172.535507],[-65.928045,171.512086],[-66.620883,170.820585],[-67.466928,170.566616],[-68.371240,170.106729],[-69.222740,168.854562],[-69.925700,167.001355],[-70.384388,164.738346],[-71.395780,161.640972],[-73.729095,158.366490],[-77.492146,154.793806],[-82.792748,150.801826],[-89.321031,146.563427],[-92.037901,145.140465],[-94.619331,144.104819],[-97.237378,143.398857],[-100.064098,142.964947],[-107.031778,142.682756],[-111.606850,142.557823],[-115.464072,142.118689],[-118.786323,141.256813],[-121.756485,139.863657],[-124.557439,137.830680],[-127.372065,135.049343],[-130.383244,131.411105],[-133.773858,126.807426],[-135.619825,123.886985],[-136.508258,121.603369],[-136.467110,119.822481],[-135.524338,118.410226],[-134.341532,116.821807],[-133.550310,114.648763],[-133.146427,111.973251],[-133.125640,108.877426],[-133.483705,105.443443],[-134.216379,101.753456],[-135.319418,97.889622],[-136.788578,93.934096],[-139.096271,89.285196],[-141.863240,85.729364],[-145.502043,82.852292],[-150.425238,80.239676],[-154.522563,78.039886],[-158.418523,75.383801],[-161.672782,72.606059],[-163.845008,70.041296],[-165.576888,66.961538],[-167.050428,63.687551],[-169.058309,57.302611],[-169.510563,54.564520],[-169.540302,52.377921],[-169.106481,50.929247],[-168.168058,50.404926],[-167.189815,50.223520],[-166.388718,49.729594],[-165.847436,48.998580],[-165.648638,48.105916],[-165.372390,46.959285],[-164.620233,45.536767],[-162.147688,42.588276],[-160.788330,41.012018],[-159.675134,39.099532],[-158.922975,37.092211],[-158.646728,35.231446],[-158.462564,33.624657],[-157.961128,32.308832],[-157.219001,31.419759],[-156.312768,31.093226],[-155.536825,30.875059],[-154.913324,30.247267],[-154.105757,27.923078],[-153.854278,24.441189],[-154.123100,20.122129],[-154.876434,15.286428],[-156.078492,10.254618],[-157.693486,5.347227],[-159.685628,0.884786],[-162.506044,-4.897693],[-163.854600,-9.046558],[-164.024198,-10.765475],[-163.882553,-12.384498],[-162.741158,-15.734204],[-160.976243,-19.126547],[-158.995533,-22.152721],[-156.830728,-24.786176],[-154.513531,-27.000360],[-152.075644,-28.768722],[-149.548768,-30.064711],[-146.964605,-30.861776],[-144.354858,-31.133364],[-141.042973,-31.544487],[-137.953111,-32.847808],[-134.906606,-35.148251],[-131.724788,-38.550744],[-129.441231,-41.588214],[-127.772705,-44.375395],[-126.877118,-46.603431],[-126.912378,-47.963464],[-127.158985,-48.947448],[-126.838860,-50.151586],[-126.022022,-51.423401],[-124.778488,-52.610414],[-123.271924,-54.491500],[-122.184365,-57.495735],[-121.525052,-61.585589],[-121.303228,-66.723534],[-121.099858,-73.211235],[-120.717753,-75.475983],[-120.035019,-77.308598],[-118.966393,-78.874531],[-117.426614,-80.339233],[-112.592548,-83.626754],[-107.689418,-86.299147],[-102.800461,-87.974955],[-97.118497,-88.848873],[-89.836348,-89.115594],[-83.070251,-89.394352],[-76.858428,-90.172004],[-71.241801,-91.431382],[-66.261290,-93.155316],[-61.957819,-95.326638],[-58.372308,-97.928177],[-55.545681,-100.942766],[-53.518858,-104.353234],[-51.884527,-107.452341],[-49.833105,-110.534359],[-47.626797,-113.242697],[-45.527808,-115.220764],[-42.970492,-116.752894],[-39.678083,-118.122113],[-35.949699,-119.272333],[-32.084456,-120.147468],[-28.381474,-120.691430],[-25.139870,-120.848133],[-22.658762,-120.561490],[-21.237268,-119.775414],[-17.898164,-116.918739],[-11.922668,-112.783464],[-7.256113,-110.237095],[-2.195191,-108.664434],[4.371170,-107.836043],[13.554042,-107.522484],[21.511266,-107.584061],[27.174640,-108.003969],[30.677395,-108.799882],[31.660175,-109.344364],[32.152762,-109.989474],[32.792214,-111.030915],[33.812584,-111.883764],[35.073390,-112.460013],[36.434152,-112.671654],[37.717992,-112.855849],[38.769342,-113.357370],[39.479713,-114.099621],[39.740612,-115.006004],[39.952449,-115.546495],[40.556252,-115.946684],[42.749508,-116.357049],[45.939891,-116.298885],[49.746909,-115.833980],[53.790070,-115.024120],[57.688883,-113.931093],[61.062858,-112.616685],[63.531502,-111.142684],[65.177289,-109.449216],[66.736810,-107.209381],[68.034135,-104.714746],[68.893332,-102.256874],[70.660216,-97.476421],[73.448434,-93.077496],[77.179092,-89.110984],[81.773295,-85.627770],[87.152146,-82.678739],[93.236752,-80.314774],[99.948215,-78.586761],[107.207642,-77.545584],[114.376870,-76.692029],[119.541461,-75.560103],[123.074208,-74.035962],[125.347902,-72.005764],[128.578366,-68.150644],[131.869152,-64.757074],[133.607851,-62.817125],[135.012942,-60.545159],[136.069729,-58.020991],[136.763520,-55.324435],[137.079619,-52.535308],[137.003332,-49.733423],[136.519964,-46.998597],[135.614822,-44.410644],[134.561942,-40.983589],[134.428261,-37.426946],[135.209834,-33.747795],[136.902714,-29.953213],[139.502953,-26.050277],[143.006605,-22.046067],[147.409724,-17.947660],[152.708362,-13.762134],[158.501372,-9.174458],[162.769119,-5.041335],[165.575942,-1.291074],[166.986182,2.148016],[167.387477,4.948835],[167.386089,7.803668],[167.004547,10.645689],[166.265385,13.408074],[165.191133,16.023995],[163.804322,18.426628],[162.127485,20.549147],[160.183152,22.324726],[158.729386,23.921147],[157.538880,26.156051],[156.734485,28.733097],[156.439052,31.355946],[156.274851,33.753397],[155.827770,35.716697],[155.166095,37.043250],[154.358112,37.530456],[153.434166,37.955161],[152.456800,39.111537],[151.542505,40.822975],[150.807772,42.912866],[150.630718,45.466446],[151.126098,48.844732],[152.166793,52.729992],[153.625686,56.804492],[155.375657,60.750501],[157.289588,64.250287],[159.240359,66.986116],[161.100852,68.640256],[162.231830,69.620231],[162.929130,70.975378],[163.226583,72.645204],[163.158015,74.569220],[162.058134,78.937857],[159.900116,83.597364],[156.954588,88.063813],[153.492178,91.853281],[151.651713,93.342920],[149.783513,94.481840],[147.921407,95.209553],[146.099222,95.465566],[144.204326,95.996316],[141.669797,97.425542],[135.781916,102.001284],[130.635739,107.236511],[129.028338,109.490095],[128.431422,111.174946],[128.155175,112.580401],[127.403017,114.132635],[126.289825,115.643040],[124.930472,116.923006],[123.450628,118.738158],[122.350824,121.568477],[121.665606,125.287211],[121.429522,129.767606],[121.094933,135.024188],[120.026647,139.429849],[118.127887,143.060553],[115.301876,145.992266],[111.451837,148.300954],[106.480993,150.062584],[100.292568,151.353119],[92.789782,152.248526],[85.975340,153.082659],[79.556720,154.325190],[73.633639,155.934542],[68.305815,157.869141],[63.672967,160.087410],[59.834811,162.547774],[56.891067,165.208658],[54.941452,168.028486],[53.814303,169.847151],[52.448472,171.336479],[51.016274,172.342779],[49.690022,172.712366],[48.545561,172.960379],[47.608349,173.635661],[46.975098,174.635078],[46.742522,175.855496],[46.450363,177.288768],[45.616240,178.591941],[44.303684,179.758342],[42.576225,180.781300],[38.130723,182.370203],[32.787981,183.305276],[27.056246,183.533148],[21.443763,183.000447],[16.458780,181.653800],[14.360427,180.658569],[12.609542,179.439836],[12.609542,179.439836],[15.459292,158.027386],[15.386640,157.580209],[15.651046,157.001650],[17.072875,155.547191],[19.488457,153.857630],[22.661472,152.126586],[27.547085,149.655189],[31.006891,147.216235],[32.192652,145.795769],[33.010602,144.127626],[33.456955,142.126545],[33.527925,139.707264],[32.528571,133.273049],[29.982250,124.142883],[20.127542,95.066306],[8.415145,61.953121],[2.583242,46.563126],[2.320975,46.508984],[1.890881,46.925055],[0.560783,49.091210],[-3.744121,58.223174],[-9.794453,72.732963],[-17.053198,91.394526],[-26.915739,117.835202],[-31.865860,132.719459],[-32.845369,137.093494],[-33.012698,140.097104],[-32.506490,142.236512],[-31.465388,144.017946],[-29.571238,146.075811],[-27.060313,147.965664],[-24.259715,149.477984],[-21.496548,150.403256],[-15.532860,152.195457],[-10.166278,154.591506],[-7.440467,155.754714],[-3.671535,156.832766],[0.642725,157.705520],[5.004522,158.252836],[15.955172,159.463016],[16.139176,159.465720],[16.107016,159.195940],[15.459292,158.027386],[15.459292,158.027386],[-3.855448,92.698556],[-4.278867,91.088439],[-4.315544,88.407897],[-3.489343,81.336660],[-1.898187,74.487083],[-0.978670,72.083617],[-0.063418,70.861406],[0.808426,70.982450],[1.749839,72.125917],[2.647558,74.099824],[3.388322,76.712186],[6.230042,89.448466],[6.734249,92.428502],[6.408575,94.134357],[5.871906,94.599845],[5.052615,94.855240],[2.465962,94.880356],[-1.491299,94.093986],[-2.976224,93.436615],[-3.855448,92.698556],[-3.855448,92.698556],[-46.500188,143.208376],[-43.666398,137.832647],[-38.614596,126.236958],[-25.158966,92.844371],[-12.737330,59.947961],[-8.978019,48.972494],[-8.072398,45.778112],[-7.953718,44.465076],[-11.567276,46.181155],[-20.451760,51.463442],[-47.643930,68.614647],[-76.751079,87.694704],[-88.029286,95.388056],[-94.994058,100.479626],[-99.132927,104.005344],[-100.322109,105.327177],[-100.980051,106.513499],[-101.148447,107.683186],[-100.868992,108.955117],[-99.133308,112.281226],[-95.288685,117.950164],[-90.434541,123.301770],[-83.603058,129.273894],[-73.826418,136.804386],[-68.722228,140.429802],[-64.235731,143.216393],[-60.299282,145.180012],[-56.845235,146.336512],[-53.805947,146.701746],[-51.113773,146.291566],[-48.701068,145.121825],[-46.500188,143.208376],[-46.500188,143.208376],[-39.852518,81.254356],[-41.187737,79.190204],[-41.250868,78.202101],[-40.852775,77.141742],[-38.498195,74.499545],[-33.774558,70.654186],[-27.005956,65.862470],[-24.747854,64.587833],[-23.682098,64.337056],[-23.464111,65.470129],[-23.843807,67.615295],[-25.862450,73.610079],[-28.670435,79.657756],[-30.036807,81.869039],[-31.200168,83.094676],[-33.659944,84.327222],[-35.639285,84.491465],[-37.562155,83.497233],[-39.852518,81.254356],[-39.852518,81.254356],[70.397732,143.828796],[75.383124,141.590297],[76.463062,140.890137],[76.564523,140.691035],[76.341142,140.610186],[76.171208,140.385315],[76.425847,139.773379],[78.068374,137.556919],[84.903142,130.333906],[93.776986,121.400929],[100.406672,114.236316],[105.438242,108.331016],[98.507802,102.969726],[80.135940,90.031035],[50.636732,70.106867],[23.126637,51.957112],[14.216400,46.285103],[10.722112,44.341656],[11.792253,48.375961],[15.139476,58.843809],[26.583372,92.729246],[36.216447,120.331666],[39.447434,128.924540],[42.006665,134.837676],[44.183096,138.665437],[46.265686,141.002186],[48.543392,142.442288],[51.305172,143.580106],[57.372778,145.823413],[59.465149,146.391735],[61.259400,146.595461],[63.002658,146.437811],[64.942048,145.922004],[70.397732,143.828796],[70.397732,143.828796],[33.370422,82.162356],[29.858449,77.384548],[25.774705,70.870264],[22.530710,65.004275],[21.664718,63.059634],[21.537982,62.171356],[22.634889,62.593824],[25.105637,64.189921],[32.703222,69.889936],[38.248106,74.476883],[40.921065,77.423507],[41.325371,78.530614],[41.185455,79.526339],[40.559236,80.510247],[39.504632,81.581906],[37.572787,83.144804],[36.073050,83.746749],[34.755552,83.411384],[33.370422,82.162356],[33.370422,82.162356],[119.052882,90.958206],[123.249315,86.460676],[126.937005,81.449982],[129.990371,76.118785],[132.283832,70.659746],[134.387981,64.036370],[134.899662,61.606753],[135.045932,59.487691],[134.822929,57.471064],[134.226789,55.348752],[131.899652,49.954596],[128.408366,42.968569],[126.090762,39.099256],[124.681021,38.779621],[121.216071,38.504193],[109.038781,38.103559],[70.122282,38.026386],[15.635582,38.603336],[52.778252,63.543726],[94.355520,91.107084],[104.780219,97.644976],[108.920982,99.757046],[112.245335,97.172390],[119.052882,90.958206],[119.052882,90.958206],[43.837292,50.939366],[40.050929,48.850902],[37.384945,47.029848],[35.839057,45.478626],[35.412981,44.199660],[36.106433,43.195371],[37.919130,42.468182],[40.850788,42.020516],[44.901122,41.854796],[47.451895,42.161521],[50.124579,43.034185],[52.776773,44.363381],[55.266076,46.039704],[57.450085,47.953747],[59.186399,49.996106],[60.332615,52.057374],[60.746332,54.028146],[60.531934,55.334459],[59.860278,56.172822],[58.688675,56.535439],[56.974434,56.414510],[51.747279,54.690820],[43.837292,50.939366],[43.837292,50.939366],[-57.119088,66.957606],[-15.224348,39.376246],[-15.268021,39.184775],[-15.849776,38.999464],[-18.531563,38.650741],[-29.296423,38.064817],[-45.983350,37.673161],[-67.056768,37.530456],[-121.106458,37.530456],[-127.039768,46.838396],[-129.343560,50.740659],[-131.230168,54.484907],[-132.504902,57.645890],[-132.973078,59.798356],[-132.581032,62.311831],[-131.469644,65.472068],[-129.736039,69.119608],[-127.477343,73.094995],[-121.773174,81.391472],[-118.521952,85.393648],[-115.134138,89.085836],[-111.913910,92.472689],[-109.230426,94.745663],[-107.826113,95.363806],[-106.239364,95.582714],[-104.364640,95.362130],[-102.096400,94.661799],[-95.957213,91.660874],[-86.977480,86.257895],[-57.119088,66.957606],[-57.119088,66.957606],[-57.790108,54.294086],[-59.455266,52.523170],[-60.342638,50.968690],[-60.437415,49.616448],[-59.724788,48.452250],[-58.189949,47.461899],[-55.818090,46.631201],[-48.504078,45.391976],[-39.706149,44.681847],[-35.567588,44.827086],[-35.898251,45.365310],[-37.226786,46.440611],[-41.988354,49.640121],[-48.074057,53.300971],[-53.705658,56.298516],[-54.416060,56.325140],[-55.422949,55.956095],[-57.790108,54.294086],[-57.790108,54.294086],[-10.556418,29.231426],[-26.715674,18.025050],[-57.721443,-2.713200],[-88.318521,-22.858908],[-103.251708,-32.287654],[-104.479239,-32.219485],[-106.029497,-31.353427],[-107.847109,-29.781350],[-109.876698,-27.595128],[-114.350309,-21.747734],[-119.007333,-14.546223],[-123.404768,-6.725571],[-127.099615,0.979244],[-129.648875,7.833246],[-130.355472,10.711511],[-130.609548,13.101456],[-130.239347,16.142961],[-129.209473,19.483029],[-127.677691,22.716817],[-125.801768,25.439486],[-120.964438,31.093226],[-64.651788,31.093226],[-42.537614,30.950929],[-25.145665,30.558619],[-13.982935,29.968161],[-11.208463,29.614837],[-10.605363,29.426487],[-10.556418,29.231426],[-10.556418,29.231426],[-54.798028,20.345296],[-55.251290,19.157649],[-55.365592,17.602995],[-54.769384,14.040369],[-53.393545,10.952826],[-52.533309,9.992026],[-51.622218,9.635776],[-50.331756,10.136833],[-48.061041,11.501096],[-41.860128,15.985806],[-33.779408,22.335846],[-43.561028,22.422946],[-47.473885,22.286035],[-50.896814,21.848630],[-53.461099,21.178948],[-54.798028,20.345206],[-54.798028,20.345296],[131.130262,21.684416],[136.102382,12.275626],[130.639082,-0.309464],[127.558378,-6.876774],[124.314970,-12.823378],[120.994946,-18.045624],[117.684397,-22.439860],[114.469411,-25.902436],[111.436078,-28.329700],[108.670485,-29.618000],[107.414994,-29.802647],[106.258722,-29.663684],[101.425205,-27.062313],[91.039513,-20.823049],[60.817819,-1.984520],[30.006063,17.744557],[18.882796,25.097006],[13.016672,29.256836],[13.082719,29.446122],[13.726502,29.629591],[16.640686,29.975548],[28.229371,30.558832],[46.077232,30.950216],[68.478772,31.093226],[126.158112,31.093226],[131.130262,21.684416],[131.130262,21.684416],[40.297892,25.372626],[39.799035,25.040683],[39.655376,24.555887],[40.394881,23.172885],[42.438867,21.313931],[45.709792,19.069336],[51.269639,16.112476],[53.452996,15.390340],[55.238917,15.172405],[56.627609,15.458676],[57.619276,16.249157],[58.214125,17.543852],[58.412362,19.342766],[57.943179,21.238398],[56.641998,22.913993],[54.668371,24.316443],[52.181851,25.392635],[49.341991,26.089460],[46.308343,26.353807],[43.240459,26.132566],[40.297892,25.372626],[40.297892,25.372626],[-12.918688,-0.099504],[-29.280728,-47.770704],[-33.852227,-60.562301],[-37.318970,-68.331749],[-38.915965,-70.834594],[-40.570257,-72.683612],[-42.393011,-74.079376],[-44.495388,-75.222454],[-48.607853,-76.924136],[-50.320676,-77.264023],[-52.037913,-77.234126],[-53.934577,-76.812582],[-56.185685,-75.977529],[-62.451288,-72.979444],[-67.829537,-69.914028],[-74.337601,-65.668338],[-81.154858,-60.803438],[-87.460688,-55.880394],[-94.613498,-49.763198],[-98.495889,-45.695448],[-99.400781,-44.172685],[-99.716194,-42.853368],[-99.518169,-41.634525],[-98.882748,-40.413184],[-94.248382,-36.601349],[-83.455848,-28.738369],[-51.676896,-6.547669],[-20.107133,14.781521],[-9.576084,21.567614],[-5.307798,23.871806],[-7.342684,16.645617],[-12.918688,-0.099504],[-12.918688,-0.099504],[-24.996428,4.544226],[-27.745530,2.689416],[-29.863986,0.834178],[-31.348393,-1.009835],[-32.195350,-2.830969],[-32.401456,-4.617571],[-31.963308,-6.357989],[-30.877506,-8.040567],[-29.140648,-9.653654],[-28.110901,-10.323550],[-27.183803,-10.626232],[-26.308214,-10.514767],[-25.432998,-9.942223],[-23.479130,-7.226161],[-20.913098,-2.102584],[-17.742965,5.249682],[-16.925400,7.601842],[-16.799478,8.602986],[-19.472218,7.619271],[-24.996428,4.544226],[-24.996428,4.544226],[59.579342,-8.979504],[76.479399,-20.315319],[89.772412,-29.742611],[98.471751,-36.533777],[100.790470,-38.713437],[101.590782,-39.961214],[101.361044,-41.020317],[100.703521,-42.392327],[98.295276,-45.886694],[94.746358,-50.067569],[90.437076,-54.558206],[85.747741,-58.981861],[81.058662,-62.961786],[76.750149,-66.121235],[73.202512,-68.083464],[67.620275,-70.782845],[63.497072,-73.486794],[61.772364,-74.641012],[59.696411,-75.460469],[57.398719,-75.945932],[55.008794,-76.098165],[52.656140,-75.917933],[50.470263,-75.406000],[48.580669,-74.563132],[47.116862,-73.390094],[44.850109,-68.924734],[40.549390,-58.839331],[28.313942,-27.793024],[10.366712,19.004776],[9.660884,20.994278],[9.788702,21.891737],[10.896239,21.791414],[13.129562,20.787566],[28.605002,11.126949],[59.579342,-8.979534],[59.579342,-8.979504],[21.163712,5.880726],[21.733312,4.683157],[23.214045,2.612104],[28.010322,-2.986604],[31.147862,-6.019038],[33.965887,-8.046049],[36.408132,-9.035375],[38.418332,-8.954754],[40.242018,-8.138723],[41.382523,-7.202902],[41.830651,-6.127278],[41.577211,-4.891839],[40.613009,-3.476572],[38.928850,-1.861466],[33.363892,2.048316],[27.664192,5.399973],[23.850204,7.118462],[22.594441,7.382831],[21.743015,7.259981],[21.273560,6.756938],[21.163712,5.880726],[21.163712,5.880726],[20.485372,-26.564944],[32.436020,-58.909998],[36.071449,-69.330476],[37.406642,-73.847634],[36.954602,-75.250012],[35.723800,-77.189654],[31.677812,-81.655894],[29.803433,-83.273455],[27.968924,-84.523124],[25.927604,-85.451819],[23.432790,-86.106454],[16.095949,-86.781211],[3.984942,-86.922724],[-7.555380,-86.759909],[-15.117305,-86.117948],[-17.861275,-85.545327],[-20.156534,-84.766567],[-24.128768,-82.475494],[-26.516576,-80.491074],[-28.471981,-78.375481],[-29.793200,-76.381782],[-30.278448,-74.763044],[-28.945035,-69.458096],[-25.416143,-58.310159],[-14.599991,-26.562651],[-3.486132,4.324805],[0.414893,14.397678],[2.269292,18.197536],[4.107234,14.659342],[8.154372,5.040171],[20.485372,-26.564944],[20.485372,-26.564944],[0.073372,-3.215984],[-1.241108,-6.679572],[-1.723909,-9.612623],[-1.383932,-12.369736],[-0.230078,-15.305514],[1.339310,-17.929278],[2.863993,-19.496506],[4.279472,-20.056231],[5.521250,-19.657483],[6.524829,-18.349294],[7.225711,-16.180695],[7.559398,-13.200718],[7.461392,-9.458394],[6.408720,-2.134294],[5.667173,0.100931],[4.791020,1.377446],[3.786912,1.689632],[2.661501,1.031868],[1.421437,-0.601464],[0.073372,-3.215984],[0.073372,-3.215984]];
path3347_0_paths = [[0,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]];
path3347_1_points = [[36.239662,-121.254634],[31.057519,-122.601344],[25.153312,-123.249564],[22.661161,-123.467432],[20.620304,-123.949209],[19.241346,-124.623676],[18.734892,-125.419614],[19.057712,-126.358353],[19.984346,-127.648340],[23.398126,-131.097240],[28.474359,-135.396683],[34.711170,-140.177039],[41.606686,-145.068676],[48.659035,-149.701963],[55.366341,-153.707269],[61.226732,-156.714964],[66.339046,-159.195404],[70.620788,-161.588830],[73.951235,-163.776132],[76.209666,-165.638199],[77.275361,-167.055921],[77.323207,-167.560931],[77.027598,-167.910188],[75.345655,-168.081889],[72.108812,-167.451914],[66.014343,-165.532396],[58.918330,-162.793250],[51.239909,-159.443532],[43.398216,-155.692299],[35.812387,-151.748606],[28.901558,-147.821511],[23.084864,-144.120068],[18.781442,-140.853334],[12.204971,-135.191176],[8.704771,-132.629741],[7.806075,-132.356069],[7.313810,-132.670706],[7.065052,-134.815744],[7.760408,-137.055061],[9.704149,-140.059252],[12.682791,-143.621085],[16.482846,-147.533324],[20.890828,-151.588737],[25.693251,-155.580088],[30.676628,-159.300145],[35.627472,-162.541674],[41.216923,-165.794723],[46.388164,-168.490719],[51.500494,-170.743169],[56.913214,-172.665580],[62.985620,-174.371459],[70.077013,-175.974313],[88.753952,-179.324974],[99.536571,-180.751898],[112.303010,-181.917745],[125.962802,-182.790948],[139.425477,-183.339939],[151.600568,-183.533148],[161.397604,-183.339008],[167.726119,-182.725949],[169.248909,-182.252460],[169.540302,-181.972250],[169.495642,-181.662404],[167.797856,-180.298614],[164.079025,-177.929854],[152.773062,-171.509934],[146.359872,-167.845804],[140.356240,-164.029710],[135.434959,-160.513221],[132.268822,-157.747904],[129.161252,-154.780668],[124.739046,-151.099207],[113.475990,-142.675315],[101.530175,-134.639640],[96.254520,-131.443450],[91.952122,-129.155594],[84.439179,-125.967619],[76.693374,-123.353053],[68.909551,-121.339528],[61.282552,-119.954675],[54.007221,-119.226128],[47.278400,-119.181517],[41.290933,-119.848475],[36.239662,-121.254634],[36.239662,-121.254634]];
path3347_2_points = [[-26.178508,-129.976394],[-30.298715,-132.640108],[-35.648450,-137.028622],[-41.680423,-142.576651],[-47.847344,-148.718911],[-53.601923,-154.890119],[-58.396869,-160.524990],[-61.684894,-165.058240],[-62.592783,-166.735105],[-62.918708,-167.924584],[-62.567103,-169.132116],[-61.533784,-169.957668],[-59.906233,-170.405373],[-57.771930,-170.479368],[-55.218358,-170.183786],[-52.332998,-169.522763],[-45.916838,-167.120934],[-38.869677,-163.407694],[-32.152111,-159.066375],[-25.951877,-154.285284],[-20.456710,-149.252731],[-15.854348,-144.157024],[-12.332528,-139.186470],[-10.078985,-134.529377],[-9.486486,-132.377225],[-9.281458,-130.374054],[-9.518367,-128.389954],[-10.250772,-126.959487],[-11.498813,-126.082178],[-13.282633,-125.757551],[-15.622371,-125.985134],[-18.538169,-126.764452],[-26.178508,-129.976394],[-26.178508,-129.976394]];
rotate([0,0,90]) scale([profile_scale, -profile_scale, 1])
union() {
linear_extrude(height=h)
polygon(path3347_0_points, path3347_0_paths);
linear_extrude(height=h)
polygon(path3347_1_points);
linear_extrude(height=h)
polygon(path3347_2_points);
}
}
module design_parallella_old(h, w, res=4) {
profile_scale = 25.4/90; //made in inkscape in mm
path3347_0_points = [[-55.150435,208.612419],[-58.680384,208.158199],[-62.502885,206.973389],[-67.415622,204.924192],[-71.769511,202.472633],[-75.524677,199.644676],[-78.641245,196.466289],[-80.372925,194.385659],[-84.599355,192.855149],[-88.825785,191.324609],[-99.866075,180.914619],[-109.522688,171.646245],[-110.992758,169.896396],[-111.588685,168.640559],[-112.898686,165.526562],[-114.446712,162.673578],[-116.207488,160.122879],[-118.155735,157.915739],[-120.961871,155.696197],[-125.525775,152.609819],[-134.378725,146.429559],[-137.643666,143.594654],[-140.738671,140.510837],[-143.458776,137.396566],[-145.599015,134.470299],[-146.112835,133.674649],[-139.632395,129.129059],[-132.790015,124.447859],[-131.741415,125.516999],[-128.029654,129.849888],[-123.054045,134.344469],[-120.701735,136.082409],[-116.769985,136.035009],[-112.838225,135.987509],[-112.191335,137.034199],[-111.481819,137.867519],[-110.617675,138.173949],[-110.033625,138.358162],[-109.369689,139.004404],[-106.739925,143.006879],[-104.543771,146.723250],[-104.213385,147.909669],[-104.199180,148.473049],[-103.106595,150.020999],[-99.574115,155.321629],[-97.758083,158.122549],[-96.647485,158.823829],[-95.246485,159.730173],[-92.392855,162.946479],[-89.063615,167.051999],[-89.650975,167.280769],[-89.690401,167.553408],[-89.054898,168.348453],[-85.277785,172.028229],[-80.758356,176.075948],[-78.163255,177.489449],[-75.808482,178.251072],[-75.800904,178.010223],[-76.400895,177.340359],[-77.064981,176.502764],[-77.033825,176.023759],[-76.857395,175.725924],[-77.033525,175.495559],[-77.369290,175.152434],[-77.080346,174.913793],[-74.561125,174.729129],[-72.080733,174.843160],[-71.057665,175.479379],[-69.724565,176.229629],[-68.297614,177.192537],[-65.988354,179.334155],[-63.925422,181.533825],[-63.237455,182.670889],[-63.427685,182.923690],[-63.272255,183.261279],[-63.075977,183.622840],[-63.302127,183.817063],[-65.398475,183.798729],[-67.523315,183.646689],[-67.156065,184.332929],[-65.273940,186.613822],[-62.480055,188.827229],[-60.418905,190.034229],[-60.561605,189.264449],[-60.854275,188.364149],[-58.866822,188.235045],[-56.485155,188.674239],[-55.348415,189.124389],[-52.664455,190.634429],[-50.460381,191.997833],[-49.925689,192.132303],[-49.751155,191.909859],[-51.259605,190.657059],[-52.267032,189.850739],[-52.427395,189.419149],[-52.238455,189.209387],[-52.424395,189.000659],[-52.686418,188.689904],[-52.403569,188.447449],[-50.379635,188.233629],[-48.634624,188.350778],[-47.799985,188.833829],[-46.699045,189.434029],[-45.526215,189.809159],[-44.893599,189.977594],[-44.194225,189.359009],[-43.303705,188.533729],[-39.933085,184.604939],[-38.944789,183.105684],[-38.990809,182.867939],[-39.332885,182.776279],[-40.197594,182.037423],[-41.595185,179.583489],[-42.874135,176.904852],[-42.878217,176.481633],[-42.562095,176.320199],[-42.117553,176.063613],[-42.109885,175.592219],[-42.129894,175.282236],[-41.789460,175.113377],[-39.127865,175.029229],[-36.439529,175.125385],[-35.656605,175.609479],[-34.535915,176.284699],[-33.762493,176.688270],[-33.127565,178.255309],[-32.258215,180.130929],[-30.364995,179.659389],[-29.024719,179.147674],[-28.925865,178.458989],[-28.941856,177.858917],[-28.346965,177.730129],[-27.738485,177.586749],[-27.864285,176.756789],[-28.109302,175.763267],[-28.030703,175.246954],[-26.420775,175.089279],[-24.996980,175.272660],[-24.608485,175.779479],[-24.376295,177.048879],[-24.233725,177.718069],[-22.662405,177.099919],[-17.997203,174.915139],[-14.335005,172.578229],[-12.614726,171.383718],[-11.186265,171.127929],[-9.837325,171.127929],[-9.842325,180.055909],[-10.077135,189.346099],[-11.341200,190.171583],[-14.114441,191.440289],[-22.126695,194.436399],[-27.963515,196.376129],[-30.342475,198.918819],[-33.410940,201.872245],[-36.514636,204.219762],[-39.621305,205.940237],[-42.698685,207.012539],[-45.084475,207.781459],[-46.149835,208.040239],[-47.215185,208.304619],[-49.973099,208.721892],[-55.150955,208.612439],[-55.150435,208.612419]];
path3347_1_points = [[45.681305,208.059419],[40.819935,206.532955],[36.237085,204.087419],[32.193606,200.912432],[29.025745,197.578429],[28.410962,196.859543],[27.530672,196.298123],[22.986175,194.700709],[15.233139,191.936188],[13.208621,190.952174],[12.386205,190.219889],[12.269889,182.846418],[12.635215,175.844549],[14.054625,176.389479],[16.629047,177.921948],[19.860151,179.427517],[28.735255,182.543569],[32.941245,183.867641],[35.335209,184.837348],[36.771548,185.907770],[38.104665,187.533989],[40.201598,190.060245],[42.221600,191.975099],[44.339882,193.420836],[46.731655,194.539739],[48.796394,195.104165],[51.683305,195.252679],[54.838668,195.056980],[57.886835,194.427055],[60.892665,193.344568],[63.921015,191.791179],[65.776633,190.469067],[67.654384,188.740862],[69.296213,186.870415],[70.444065,185.121579],[71.339855,183.362539],[76.291505,181.601699],[81.883245,179.460699],[90.815715,171.277959],[99.108145,163.475359],[100.733485,160.105389],[104.224775,154.057109],[108.357435,148.971769],[111.981319,145.706995],[118.155465,141.561219],[123.623351,137.845652],[128.066602,134.340810],[131.537047,131.001878],[134.086515,127.784039],[135.012021,126.594325],[135.606845,126.238919],[146.434365,132.489909],[146.174427,133.609490],[144.679469,135.881680],[139.466045,141.886159],[133.421435,147.264714],[125.057765,152.983559],[120.643940,155.978647],[117.855365,158.376749],[116.033489,160.497657],[114.338650,162.964049],[112.884718,165.591706],[111.785565,168.196409],[110.953065,170.581249],[100.033985,180.891069],[89.114905,191.200879],[85.629175,192.419349],[81.112619,194.210315],[79.987318,195.100065],[78.773935,196.486359],[76.841876,198.549006],[74.603893,200.493445],[69.402758,203.921939],[63.555725,206.560323],[57.447995,208.197079],[51.478565,208.603363],[45.681305,208.059419],[45.681305,208.059419]];
path3347_2_points = [[49.432555,188.714129],[47.683632,188.012932],[46.126823,186.929313],[42.004595,182.231609],[40.619991,180.762609],[38.910906,179.562249],[36.639938,178.495284],[33.569685,177.426469],[26.485147,175.105773],[21.596879,173.237092],[18.310091,171.562634],[16.029995,169.824609],[14.488895,168.209158],[13.669325,166.437168],[13.328982,163.531476],[13.225565,158.514919],[13.261035,151.843642],[13.935025,149.042289],[15.412283,143.900289],[16.650885,137.398810],[17.544225,130.221831],[17.985695,123.053329],[18.154665,116.542569],[19.688905,116.371869],[39.291965,115.149289],[42.601403,115.028769],[44.466718,115.351793],[45.721078,116.515392],[47.197655,118.916599],[50.653815,125.326189],[52.005075,128.178759],[51.377175,130.671999],[49.559282,137.199664],[48.232385,141.001289],[47.616840,141.513843],[46.653445,141.821849],[44.828128,142.471803],[43.362534,143.683617],[42.289201,145.306952],[41.640668,147.191470],[41.449472,149.186834],[41.748153,151.142703],[42.569247,152.908741],[43.945295,154.334609],[45.562370,155.169068],[47.237509,155.446850],[48.886361,155.219574],[50.424575,154.538858],[51.767798,153.456319],[52.831678,152.023576],[53.531865,150.292247],[53.784005,148.313949],[53.362584,145.577969],[52.115375,143.500039],[51.378885,142.731099],[52.678435,138.698439],[54.837425,131.333689],[55.696865,128.001619],[54.571815,125.181639],[52.182559,120.064502],[48.768225,113.959419],[47.331855,111.559189],[45.531255,111.312389],[33.778831,111.374869],[19.114435,112.151259],[17.605915,112.297799],[16.795395,109.635339],[14.643465,100.112419],[13.302045,93.251949],[13.985225,88.526669],[14.794725,83.689529],[36.601525,82.560499],[58.282005,81.543339],[62.560175,86.613469],[76.237995,103.576019],[77.609725,105.497289],[76.002925,113.629369],[72.843535,128.728039],[72.427208,129.317824],[71.414615,129.734389],[69.459433,130.616748],[67.946260,131.998560],[66.897758,133.733770],[66.336591,135.676320],[66.285421,137.680156],[66.766910,139.599220],[67.803720,141.287457],[69.418515,142.598809],[70.905310,143.124297],[72.581500,143.215605],[74.258358,142.886135],[75.747155,142.149289],[76.916787,141.086358],[77.797417,139.789562],[78.383045,138.330296],[78.667671,136.779954],[78.645295,135.209933],[78.309915,133.691626],[77.655532,132.296430],[76.676145,131.095739],[75.770115,130.240599],[76.329405,128.101729],[79.299645,115.539329],[81.710565,105.115809],[81.124675,103.967379],[75.812821,96.587827],[64.612695,82.942159],[59.954885,77.433949],[56.944465,77.610889],[15.510035,78.635879],[15.995235,72.958439],[16.672385,62.716769],[16.701985,57.990199],[17.993195,57.990199],[30.757295,57.547309],[63.493375,56.489699],[65.423375,56.489699],[69.959295,62.322469],[86.883441,84.863948],[92.829908,93.392417],[96.331775,99.024559],[97.315625,100.870529],[96.538155,105.163939],[93.350015,120.486029],[92.713651,122.432924],[92.004275,122.811809],[90.561508,123.111225],[89.075058,123.919015],[87.737651,125.099490],[86.742015,126.516959],[85.964675,129.619929],[85.983571,131.448917],[86.607935,133.116339],[87.404573,134.413896],[88.364103,135.414771],[89.460781,136.114082],[90.668868,136.506947],[91.962620,136.588483],[93.316296,136.353811],[96.100455,134.916309],[98.357815,132.697879],[98.772037,130.843177],[98.540083,128.558292],[97.761585,126.292002],[96.536175,124.493089],[96.225000,124.119559],[96.203515,123.431090],[97.396055,118.596539],[99.771148,108.283877],[101.199845,100.758589],[100.129736,97.851868],[96.925298,92.496733],[91.595363,84.706804],[84.148765,74.495699],[67.452725,52.900219],[65.249911,52.668774],[59.188868,52.662698],[33.827395,53.348869],[18.331285,53.783069],[15.739485,53.789069],[15.539615,52.456239],[14.305145,46.690689],[13.429479,42.188007],[13.270535,37.369949],[13.356064,33.100085],[13.556663,32.560989],[13.945765,32.481919],[66.204815,29.530759],[69.172435,29.310309],[76.858375,39.514269],[84.852195,50.119269],[86.529611,50.382963],[92.654805,50.200669],[104.652599,49.497496],[115.483388,48.455912],[125.251385,47.063601],[134.060805,45.308249],[138.262205,44.333359],[140.154395,38.746289],[142.046555,33.159219],[143.405165,32.972999],[145.337903,32.475611],[146.983595,31.553144],[148.340942,30.206582],[149.408645,28.436909],[150.087375,25.879789],[149.896445,23.284615],[148.905452,20.942163],[147.183995,19.143209],[145.697110,18.416011],[144.007216,18.086692],[142.279404,18.167266],[140.678765,18.669749],[139.142044,19.675993],[137.923997,21.002105],[137.041240,22.564253],[136.510391,24.278608],[136.348066,26.061338],[136.570882,27.828612],[137.195456,29.496599],[138.238405,30.981469],[138.929475,31.731719],[137.054605,36.533319],[135.179695,41.334919],[132.219455,42.009129],[124.753210,43.427099],[115.927114,44.646660],[106.516961,45.576379],[97.298545,46.124819],[89.896585,46.457869],[87.146165,46.619139],[79.092985,35.922789],[71.039795,25.226429],[68.038795,25.406409],[37.271383,26.503305],[13.350225,26.959799],[14.434705,17.409549],[15.677515,5.861689],[15.671515,3.699569],[16.646845,3.552369],[27.375415,3.073719],[49.537559,2.106805],[68.155075,0.943729],[76.073795,0.311439],[77.158085,1.544439],[85.294725,10.588859],[92.347075,18.400279],[96.548475,18.220409],[111.438659,16.992788],[123.857585,15.219279],[124.831758,14.291630],[126.408435,12.084849],[128.359085,9.084119],[130.009635,9.072519],[132.797454,8.515522],[135.160675,6.904099],[136.143113,5.743819],[136.828815,4.489638],[137.457605,1.342089],[137.419406,-0.737843],[136.791715,-2.445581],[135.891356,-3.879427],[134.774828,-4.915581],[133.412716,-5.574155],[131.775605,-5.875261],[130.067521,-5.843584],[128.587686,-5.456800],[127.249183,-4.678994],[125.965095,-3.474251],[124.490747,-1.231542],[123.797436,1.235482],[123.908000,3.732313],[124.845275,6.064449],[125.717065,7.466859],[123.949835,9.545929],[121.669645,12.130239],[118.530024,12.878681],[111.882893,13.647870],[103.836528,14.242169],[96.499205,14.465939],[94.147675,14.455939],[85.917705,5.348449],[78.601356,-2.581256],[77.368595,-3.557239],[76.614605,-3.640361],[63.487087,-2.762568],[42.949931,-1.801962],[23.913205,-1.126831],[15.286975,-1.105461],[13.874355,-12.908191],[17.847245,-13.134491],[43.932015,-13.922612],[68.711425,-15.400381],[72.814249,-15.843253],[75.196371,-16.312940],[76.556065,-17.031115],[77.591605,-18.219451],[85.767355,-30.278081],[87.046523,-30.770062],[91.296725,-31.270091],[110.803235,-33.719571],[113.053985,-34.157241],[113.654185,-33.329971],[115.138140,-31.625741],[116.757181,-30.467027],[118.598165,-29.808205],[120.747945,-29.603651],[122.464670,-29.744446],[123.978221,-30.167531],[125.336082,-30.891959],[126.585735,-31.936781],[128.150438,-34.106070],[128.741115,-36.862661],[128.696058,-38.539019],[128.330102,-40.078935],[127.669626,-41.455339],[126.741009,-42.641163],[125.570628,-43.609339],[124.184864,-44.332796],[122.610093,-44.784466],[120.872695,-44.937281],[117.851846,-44.441454],[115.376303,-43.063067],[113.607653,-40.935612],[112.707485,-38.192581],[112.325485,-36.841171],[108.690075,-36.401791],[88.667495,-34.786101],[83.698345,-34.411991],[81.577145,-31.066891],[76.322796,-23.258917],[74.476897,-20.924458],[73.403775,-19.978131],[68.898854,-19.434197],[60.041723,-18.964880],[31.456725,-18.335681],[13.180575,-18.135701],[13.377495,-20.211011],[13.767175,-32.656451],[13.827695,-41.723161],[13.540305,-47.361351],[13.193735,-55.618190],[13.630105,-61.899521],[14.020985,-63.700121],[17.922285,-63.922721],[46.123128,-65.947076],[53.937394,-66.906992],[57.452765,-67.821401],[60.944277,-73.386053],[68.173323,-85.895186],[82.697235,-112.166291],[85.269265,-117.117951],[90.079125,-118.043661],[94.267456,-118.766501],[94.877012,-118.699198],[95.074285,-118.385611],[96.507654,-116.448427],[98.649195,-114.826881],[99.978836,-114.427585],[101.501241,-114.294833],[103.024766,-114.428606],[104.357765,-114.828881],[106.030400,-115.879549],[107.322025,-117.278800],[108.218216,-118.930043],[108.704548,-120.736691],[108.766596,-122.602153],[108.389937,-124.429842],[107.560144,-126.123167],[106.262795,-127.585541],[104.520845,-128.643040],[102.506953,-129.172003],[100.437601,-129.145775],[98.529275,-128.537701],[96.446995,-126.817361],[95.033565,-124.512051],[94.314255,-122.670171],[92.851533,-122.150053],[88.351265,-121.457421],[82.500395,-120.557121],[79.806245,-115.265651],[73.091428,-102.693162],[61.668275,-82.456761],[55.180625,-71.152501],[45.231395,-70.171671],[15.200245,-69.323521],[15.643045,-72.281271],[17.097410,-81.939018],[17.767785,-91.042531],[17.959821,-91.410153],[19.246326,-91.617898],[29.401115,-91.853411],[44.548233,-92.400853],[49.022651,-92.829039],[50.843835,-93.320041],[58.113739,-105.569941],[65.651415,-119.390191],[67.674865,-123.462671],[69.279005,-123.329641],[71.345960,-123.507676],[73.268649,-124.359447],[74.970303,-125.835647],[76.374155,-127.886971],[76.890420,-129.460664],[77.065479,-131.364472],[76.898626,-133.263842],[76.389155,-134.824221],[75.454482,-136.195494],[74.319573,-137.228874],[73.031055,-137.918984],[71.635556,-138.260445],[70.179706,-138.247879],[68.710131,-137.875909],[67.273462,-137.139155],[65.916325,-136.032241],[64.357718,-133.937796],[63.502326,-131.566741],[63.393584,-129.135409],[64.074925,-126.860131],[64.762255,-125.521121],[63.031095,-122.012581],[58.512944,-113.648207],[51.947015,-102.531041],[48.360555,-96.646671],[46.195855,-96.457691],[29.273669,-95.741428],[21.476428,-95.708815],[17.988835,-95.961271],[17.672495,-102.488441],[17.489305,-108.865691],[25.391485,-108.865691],[34.691025,-109.057221],[36.088385,-109.248751],[41.588395,-117.835151],[53.618985,-137.013631],[55.623075,-140.403321],[55.560175,-144.946061],[55.497275,-149.488811],[56.713005,-150.331011],[57.822323,-151.367061],[58.700460,-152.718355],[59.277749,-154.247036],[59.484525,-155.815251],[59.034890,-158.766632],[58.400931,-159.935300],[57.427285,-161.069901],[56.170603,-162.089132],[54.839290,-162.741340],[53.475798,-163.033947],[52.122580,-162.974373],[50.822087,-162.570041],[49.616770,-161.828370],[48.549082,-160.756783],[47.661475,-159.362701],[47.160893,-157.987563],[46.975080,-156.539072],[47.460226,-153.659672],[48.941847,-151.199787],[50.001627,-150.275689],[51.244875,-149.634701],[52.367505,-149.229151],[52.196115,-145.372591],[52.024715,-141.516031],[49.932965,-138.020141],[33.829955,-113.102201],[31.969051,-112.814393],[25.233935,-112.952151],[17.041595,-113.217141],[16.522965,-117.418551],[16.080752,-120.928870],[16.171615,-122.543846],[16.537677,-122.865989],[17.181880,-122.984787],[19.497875,-122.973001],[24.607865,-123.165841],[26.191675,-123.356061],[27.785715,-125.939151],[36.796395,-141.726671],[38.475985,-145.027751],[38.477985,-152.572741],[38.478985,-160.117731],[39.223735,-160.304651],[40.173215,-160.750334],[41.134796,-161.560157],[42.678425,-163.845961],[43.161588,-165.472758],[43.258308,-167.113262],[43.002209,-168.702701],[42.426916,-170.176301],[41.566054,-171.469287],[40.453247,-172.516887],[39.122119,-173.254326],[37.606295,-173.616831],[35.715926,-173.537001],[34.034865,-172.935210],[32.612299,-171.838379],[31.497415,-170.273431],[30.984456,-168.745248],[30.812539,-166.937667],[30.981809,-165.130995],[31.492415,-163.605541],[33.065901,-161.591502],[34.857585,-160.339111],[35.208937,-160.092595],[35.393841,-159.231182],[35.477735,-153.210221],[35.477735,-146.278081],[33.971345,-143.458791],[25.462995,-129.468421],[23.749705,-126.813391],[19.735065,-126.917571],[15.536935,-127.205601],[14.983946,-130.785360],[13.850465,-143.284381],[13.155158,-152.706252],[13.114705,-158.232151],[13.696332,-168.765414],[14.427774,-177.130251],[15.294416,-183.194703],[16.281645,-186.826811],[16.970700,-187.911258],[17.995279,-188.599556],[19.510911,-188.955648],[21.673125,-189.043481],[26.324675,-188.717021],[33.377035,-187.949871],[41.234052,-186.913043],[47.013105,-185.414747],[49.229876,-184.453709],[51.054933,-183.330695],[52.530869,-182.030172],[53.700275,-180.536601],[56.165731,-177.662772],[59.931678,-175.203198],[65.779538,-172.759318],[74.490735,-169.932571],[82.349465,-167.038463],[85.918649,-165.285938],[89.324426,-163.280567],[95.875909,-158.363691],[102.464205,-151.992641],[112.784375,-141.276511],[121.206239,-132.381707],[128.110808,-124.350646],[133.985608,-116.580525],[139.318165,-108.468541],[144.564666,-99.135421],[147.672055,-92.836471],[143.213645,-91.781441],[124.710794,-87.198290],[107.051595,-82.184721],[104.050585,-81.242821],[101.608375,-77.873531],[95.297370,-68.610521],[87.866435,-56.954141],[83.707765,-50.608161],[77.004121,-49.428288],[69.208815,-48.548311],[68.508009,-48.905725],[67.657975,-50.026331],[66.083349,-51.922368],[64.165159,-53.234340],[62.027290,-53.968856],[59.793628,-54.132527],[57.588055,-53.731965],[55.534458,-52.773779],[53.756719,-51.264581],[52.378725,-49.210981],[51.778731,-47.575667],[51.526569,-45.890969],[51.604856,-44.207792],[51.996210,-42.577043],[52.683247,-41.049629],[53.648586,-39.676454],[54.874842,-38.508426],[56.344635,-37.596451],[59.423556,-36.922921],[62.705765,-37.119961],[64.662438,-38.055206],[66.502274,-39.623282],[67.935292,-41.517430],[68.671515,-43.430891],[68.849355,-44.543071],[73.649315,-45.063861],[80.653193,-45.973532],[85.144285,-46.909851],[86.644785,-47.350491],[89.780955,-52.524561],[98.855704,-66.858405],[106.082895,-77.389501],[108.426535,-78.439505],[114.024994,-80.327196],[131.359695,-85.457981],[142.641564,-88.404675],[148.936765,-89.796221],[150.969814,-84.112402],[153.212675,-76.004741],[154.163296,-70.697865],[154.650514,-65.098768],[154.767500,-57.112546],[154.607425,-44.644291],[154.566680,-39.254179],[154.881416,-35.169151],[155.855510,-30.271243],[157.792835,-22.442491],[160.396950,-11.555968],[162.038373,-3.121350],[162.891391,3.944363],[163.130295,10.724169],[162.976030,16.507093],[162.330068,21.888360],[160.889303,28.628697],[158.350635,38.488829],[156.592861,44.809075],[155.049263,49.457355],[153.357708,53.394712],[151.156065,57.582189],[148.009821,63.778349],[146.375045,68.146249],[145.933365,69.093629],[144.631885,67.368049],[142.531575,64.452159],[141.499115,63.261839],[138.154075,63.633789],[128.477114,65.112495],[118.162465,67.338749],[115.429783,67.932174],[114.457545,67.903699],[113.376586,66.478573],[111.601375,65.215709],[108.846834,64.606900],[106.066635,65.057489],[103.868431,66.554677],[102.324350,68.773792],[101.580557,71.404967],[101.783215,74.138339],[102.446173,75.550412],[103.559406,76.922529],[104.913301,78.042916],[106.298245,78.699799],[107.697985,78.911384],[109.092660,78.822832],[111.702225,77.845223],[113.797762,75.966779],[114.549903,74.752184],[115.050095,73.387309],[115.289538,72.551667],[115.934273,72.023293],[121.306345,70.620569],[128.860630,69.041984],[136.604905,67.755419],[139.438846,67.457768],[140.462415,67.980279],[142.944785,71.322049],[144.092808,73.149307],[144.609743,74.586189],[144.620191,76.400921],[144.248755,79.361729],[143.399155,84.460472],[142.213154,89.364787],[140.499331,94.754190],[138.066265,101.308199],[133.922095,112.760829],[130.915005,120.713479],[128.579190,124.569633],[125.446753,128.132445],[121.115032,131.791507],[115.181365,135.936409],[106.503695,141.960139],[103.532639,144.778913],[100.529831,148.361042],[97.717323,152.414938],[95.317165,156.649019],[93.773845,159.726239],[86.184465,166.882849],[78.595055,174.039419],[72.866685,176.061499],[68.172701,177.842254],[66.313005,178.961779],[65.487735,180.295399],[64.551645,182.513910],[62.603595,184.898749],[59.336174,187.023545],[55.161305,188.531699],[51.929866,189.083140],[49.432385,188.713859],[49.432555,188.714129]];
path3347_3_points = [[-46.800625,183.812599],[-48.562945,183.266509],[-49.591405,182.831809],[-50.619420,182.152740],[-52.558925,179.755789],[-54.348155,177.203864],[-54.489819,176.740553],[-54.255275,176.583849],[-53.677179,176.257213],[-53.951915,175.779459],[-54.269161,175.441929],[-53.938596,175.208509],[-51.244575,175.029209],[-48.600501,175.131428],[-48.148332,175.355213],[-47.895305,175.779459],[-47.448279,176.349400],[-46.776365,176.533879],[-45.843021,177.051008],[-44.348715,179.408929],[-42.692900,182.417839],[-42.664227,182.783535],[-42.993475,182.831809],[-43.332211,182.968889],[-43.298355,183.432009],[-43.258343,183.804406],[-43.637630,183.971204],[-46.800625,183.812599],[-46.800625,183.812599]];
path3347_4_points = [[-58.711735,183.121919],[-60.084885,182.531709],[-61.256015,181.809954],[-63.502795,179.555259],[-66.256015,176.404209],[-65.805865,176.229609],[-65.373565,175.993268],[-65.715865,175.389329],[-65.754168,175.214902],[-65.395945,175.104239],[-63.171925,175.029209],[-60.612289,175.136303],[-59.776295,175.779459],[-59.205588,176.336974],[-58.493955,176.551229],[-57.397271,177.161700],[-55.375815,179.552229],[-53.800543,181.725388],[-53.500195,182.531709],[-53.934011,182.767874],[-53.591795,183.371989],[-53.529192,183.545953],[-53.803735,183.655002],[-55.617465,183.722119],[-57.671431,183.597369],[-58.711735,183.121919],[-58.711735,183.121919]];
path3347_5_points = [[-45.088515,168.147109],[-45.635816,167.461039],[-46.371645,167.171779],[-46.860814,167.021030],[-47.288621,166.515242],[-48.607125,163.325309],[-50.014575,159.574059],[-49.143435,159.480859],[-48.439518,159.261720],[-48.448715,158.505529],[-48.625135,157.623419],[-44.828875,157.623419],[-41.032605,157.623419],[-40.852545,158.523719],[-40.532767,159.265915],[-39.696795,159.424019],[-38.721115,159.424019],[-37.783665,163.167409],[-36.846205,167.218759],[-37.602175,167.526719],[-38.193525,167.657513],[-38.169845,168.276969],[-37.981545,169.027219],[-41.307465,169.027219],[-44.633395,169.027219],[-45.088515,168.147119],[-45.088515,168.147109]];
path3347_6_points = [[-31.267545,168.276959],[-31.594908,167.684705],[-32.304485,167.526709],[-32.805610,167.464993],[-33.147144,167.055782],[-33.955055,163.850489],[-34.751245,159.799139],[-33.897185,159.424009],[-33.204549,159.281059],[-33.180995,158.523709],[-33.313135,157.623409],[-29.377765,157.623409],[-25.442405,157.623409],[-25.442405,158.341549],[-25.072121,159.153387],[-23.961325,159.424009],[-23.673202,159.543871],[-23.462939,160.026449],[-23.085565,162.817719],[-22.785459,166.728572],[-22.991933,167.177623],[-23.491755,167.226609],[-24.104461,167.391669],[-24.242005,168.126909],[-24.242005,169.027209],[-27.660625,169.027209],[-30.667524,168.931553],[-31.102640,168.708588],[-31.267545,168.276959],[-31.267545,168.276959]];
path3347_7_points = [[-17.139635,168.827129],[-17.339705,168.076879],[-17.534990,167.648543],[-18.221615,167.526709],[-18.992146,167.329414],[-19.265405,166.251289],[-19.508865,162.124909],[-19.590465,159.273959],[-18.765195,159.179059],[-18.109476,158.953548],[-17.939915,158.353779],[-17.939915,157.623459],[-14.338715,157.623459],[-11.262691,157.710972],[-10.821919,157.890717],[-10.737515,158.223659],[-10.531195,158.705957],[-9.687165,158.823859],[-8.782234,158.978894],[-8.642025,159.949239],[-9.092175,163.175189],[-9.537115,166.969359],[-9.641239,168.331418],[-10.011815,168.845099],[-13.724144,169.022864],[-17.139645,168.827099],[-17.139635,168.827129]];
path3347_8_points = [[-85.431375,167.804599],[-86.113405,166.882129],[-84.737555,167.088449],[-83.361715,167.069249],[-85.053865,164.634359],[-86.582063,162.849308],[-87.584285,162.425109],[-88.375895,162.212132],[-89.063615,161.524809],[-89.704685,160.624509],[-88.908445,160.624509],[-88.112195,160.624509],[-89.188105,159.158819],[-90.264015,157.508269],[-88.653345,157.323409],[-87.147648,157.496938],[-86.203595,158.598839],[-82.653305,163.550489],[-79.942085,167.226709],[-78.397315,167.226709],[-77.092791,167.352510],[-76.355875,167.775499],[-75.859215,168.525749],[-80.304275,168.727209],[-84.749345,168.727209],[-85.431375,167.804699],[-85.431375,167.804599]];
path3347_9_points = [[-72.961755,168.178319],[-73.353966,167.390712],[-71.963975,167.226609],[-70.469535,167.226609],[-71.984525,164.900839],[-73.384879,162.994258],[-74.419465,162.425009],[-75.785965,161.599739],[-76.055653,161.021337],[-75.445665,160.924509],[-74.658815,160.773559],[-75.547205,159.198029],[-76.435585,157.773459],[-74.753215,157.682159],[-72.842785,157.832209],[-70.893995,161.074579],[-68.168515,165.651109],[-67.163765,167.226629],[-65.544005,167.226629],[-64.123556,167.359182],[-63.432655,167.976879],[-62.941075,168.727129],[-67.703085,168.727129],[-71.753977,168.635655],[-72.961755,168.178339],[-72.961755,168.178319]];
path3347_10_points = [[-60.199405,167.976859],[-60.541245,167.226609],[-58.899585,167.226609],[-57.257925,167.226609],[-58.371625,164.975859],[-59.458175,163.069700],[-60.421695,162.725109],[-61.231758,162.560937],[-61.706345,161.960729],[-62.003359,161.059302],[-61.304365,160.924509],[-60.612750,160.749503],[-61.154315,159.273959],[-61.754515,157.734269],[-59.933505,157.684069],[-58.112505,157.773369],[-56.968425,160.474269],[-54.900685,165.200849],[-53.977015,167.226519],[-52.195965,167.226519],[-50.471555,167.466867],[-50.141425,167.841427],[-50.050615,168.451469],[-54.954085,168.727019],[-59.857575,168.727019],[-60.199405,167.976769],[-60.199405,167.976859]];
path3347_11_points = [[-67.409285,149.087899],[-67.909945,148.222604],[-68.869275,147.962529],[-69.955715,147.870129],[-71.671785,143.368629],[-73.387835,138.867129],[-72.358575,138.773129],[-71.491545,138.452392],[-71.881155,136.991489],[-71.077551,136.695445],[-67.681985,136.616369],[-63.341835,136.616369],[-63.063835,137.591689],[-62.640921,138.412999],[-61.677415,138.659719],[-60.630851,139.016940],[-59.943485,140.910469],[-58.585595,145.320289],[-57.910446,147.894797],[-58.135391,148.254466],[-58.753515,148.320269],[-59.587684,148.442820],[-59.361135,149.351079],[-59.068465,150.120869],[-63.052105,150.120869],[-67.035735,150.120869],[-67.409285,149.087859],[-67.409285,149.087899]];
path3347_12_points = [[-51.295975,149.220609],[-51.734756,148.487765],[-52.595345,148.320309],[-53.580865,148.320309],[-54.818955,143.893829],[-56.054825,139.092229],[-55.789964,138.822259],[-55.113045,138.717109],[-54.327018,138.571828],[-54.343925,137.666759],[-54.514375,136.616409],[-50.065145,136.616409],[-45.615905,136.616409],[-45.418865,137.666759],[-45.083159,138.557912],[-44.110035,138.717259],[-42.998255,138.717379],[-42.168365,143.293779],[-41.343085,148.095229],[-42.285525,148.320309],[-43.058638,148.452947],[-43.043275,149.220609],[-42.863215,150.120909],[-46.922675,150.120909],[-50.982135,150.120909],[-51.295975,149.220609],[-51.295975,149.220609]];
path3347_13_points = [[-36.846205,149.220609],[-36.846205,148.320309],[-34.895555,148.320309],[-33.619173,148.294422],[-33.042706,147.966043],[-32.988549,146.959091],[-33.279095,144.897489],[-33.613285,142.650579],[-34.704575,142.559479],[-35.636287,142.326889],[-35.889895,141.493039],[-35.818999,140.653228],[-34.890725,140.517719],[-33.980861,140.397159],[-33.959515,139.692439],[-34.208435,137.816819],[-34.295335,136.766469],[-32.050675,136.766469],[-29.806005,136.766469],[-29.264585,142.168269],[-28.592695,147.945189],[-27.971431,148.227322],[-26.352105,148.320319],[-24.241985,148.320319],[-24.241985,149.220619],[-24.241985,150.120919],[-30.544085,150.120919],[-36.846185,150.120919],[-36.846185,149.220619],[-36.846205,149.220609]];
path3347_14_points = [[-18.039935,149.920829],[-18.240005,149.039559],[-18.432804,148.474409],[-19.215335,148.264309],[-20.190655,148.170209],[-20.378455,146.069509],[-20.603535,141.192879],[-20.640835,138.416959],[-19.590485,138.416959],[-18.702689,138.277609],[-18.540135,137.516659],[-18.540135,136.616359],[-15.239035,136.616359],[-11.937935,136.616359],[-11.937935,137.474789],[-11.135765,139.500469],[-10.503440,140.647976],[-10.077225,142.068553],[-9.632305,146.744729],[-9.485485,150.120859],[-13.662695,150.120859],[-18.039965,149.920779],[-18.039935,149.920829]];
path3347_15_points = [[-97.994355,148.766739],[-98.712742,147.944455],[-99.538815,147.720109],[-100.203191,147.523002],[-101.029554,146.631803],[-104.486695,140.967859],[-105.882195,138.567059],[-105.096405,138.469259],[-104.452601,138.118447],[-104.816925,136.841459],[-104.830395,136.555011],[-104.393086,136.397194],[-101.094865,136.316289],[-97.156605,136.316289],[-96.655725,137.366639],[-96.067740,138.221998],[-95.184735,138.416989],[-94.587535,138.504946],[-94.020366,139.041312],[-91.789175,143.094229],[-89.363715,147.895829],[-90.113965,148.020189],[-90.823571,148.242840],[-90.397055,149.153819],[-89.929885,149.820789],[-93.623125,149.816789],[-97.316365,149.812789],[-97.994355,148.766159],[-97.994355,148.766739]];
path3347_16_points = [[-83.061615,148.920509],[-83.556656,148.188217],[-84.461895,148.020209],[-85.090734,147.948403],[-85.640764,147.448009],[-87.726585,143.451609],[-89.963915,138.650009],[-89.031505,138.417009],[-88.338253,138.320417],[-88.281255,137.966859],[-88.645575,137.066559],[-88.591136,136.832763],[-88.045200,136.696187],[-84.594225,136.616409],[-81.244357,136.698397],[-80.360715,137.009209],[-79.851384,138.035915],[-78.604795,138.667799],[-78.016635,138.877658],[-77.499105,139.481808],[-75.730565,143.443829],[-73.832665,148.020209],[-74.695885,148.020209],[-75.504171,148.281017],[-75.248455,149.240329],[-75.153292,149.567271],[-75.516514,149.740562],[-78.813245,149.820809],[-82.688695,149.820809],[-83.061615,148.920509],[-83.061615,148.920509]];
path3347_17_points = [[-56.449765,127.688429],[-56.791415,126.488029],[-57.149408,125.663634],[-58.171435,125.512709],[-59.149806,125.384190],[-59.501935,124.837479],[-61.454415,114.962389],[-60.272875,114.709099],[-59.091345,114.709099],[-59.261795,113.658749],[-59.432245,112.608399],[-54.474725,112.608399],[-49.517205,112.608399],[-49.320165,113.658749],[-48.978589,114.554837],[-47.942025,114.709099],[-46.956494,114.835885],[-46.621265,115.384329],[-45.247295,125.437679],[-45.533930,125.710864],[-46.299365,125.812809],[-47.199664,125.962853],[-47.349715,126.863159],[-47.349715,127.913509],[-51.833495,127.913509],[-56.449765,127.688429],[-56.449765,127.688429]];
path3347_18_points = [[-40.199645,126.902739],[-40.326885,125.812809],[-37.951385,125.812809],[-35.575885,125.812809],[-35.773395,123.787129],[-36.307074,119.723978],[-36.714268,119.260100],[-37.445485,119.210599],[-38.391296,119.078797],[-38.757755,118.535379],[-38.842318,117.343307],[-37.705115,117.109899],[-36.463325,117.109899],[-36.667285,114.859149],[-36.871235,112.608399],[-34.307875,112.608399],[-32.104166,112.703378],[-31.796860,112.905159],[-31.738265,113.283629],[-31.294355,119.210599],[-30.850455,124.987529],[-30.431435,125.420838],[-28.477465,125.512709],[-26.110735,125.512709],[-25.962185,126.488029],[-25.928385,127.588649],[-33.057765,127.853279],[-40.072425,127.992669],[-40.199665,126.902739],[-40.199645,126.902739]];
path3347_19_points = [[-21.040935,127.713429],[-21.241005,126.513029],[-21.241005,125.512709],[-18.840205,125.512709],[-16.439405,125.512709],[-16.439405,122.361659],[-16.439405,119.210599],[-17.807975,119.210599],[-19.176535,119.210599],[-19.083435,118.085229],[-18.835159,117.105135],[-17.789895,116.871419],[-16.589495,116.783019],[-16.589495,114.620699],[-16.589495,112.458389],[-14.879395,112.368889],[-13.169295,112.279389],[-12.824275,113.560699],[-12.669485,117.101399],[-13.025455,122.232299],[-13.060493,124.833615],[-12.414515,126.026889],[-11.654241,127.077062],[-11.608313,127.410707],[-11.835812,127.641695],[-13.262951,127.870608],[-16.239375,127.913619],[-21.040975,127.713539],[-21.040935,127.713429]];
path3347_20_points = [[-105.892755,127.389559],[-109.667535,127.296159],[-110.164325,126.254389],[-110.755586,125.400850],[-111.680785,125.212629],[-112.700465,125.212629],[-114.819445,120.335999],[-117.137825,114.934199],[-117.114401,114.509309],[-116.369845,114.409019],[-115.593858,114.293004],[-115.548895,113.733799],[-115.916085,112.533399],[-115.968160,112.251810],[-115.737781,112.093449],[-113.899255,112.008219],[-109.374635,112.201549],[-107.337791,112.499034],[-106.755235,113.401949],[-106.292669,114.245335],[-105.289435,114.409019],[-104.156005,114.409019],[-102.158275,119.735799],[-100.163935,125.287649],[-101.099725,125.512729],[-101.813670,125.612613],[-101.815925,126.037899],[-101.428225,127.258725],[-101.707845,127.548209],[-105.892755,127.389579],[-105.892755,127.389559]];
path3347_21_points = [[-93.005775,126.563059],[-93.505026,125.684334],[-94.496345,125.512709],[-95.458918,125.361560],[-95.908745,124.687429],[-99.567115,114.522139],[-98.516765,114.408999],[-97.545346,114.189194],[-97.759085,113.078089],[-98.051765,112.308299],[-93.310515,112.308299],[-88.569275,112.308299],[-88.291265,113.433679],[-87.872109,114.401743],[-86.805335,114.648029],[-85.597395,114.737029],[-84.140975,119.599699],[-82.537985,124.987549],[-82.627786,125.411348],[-83.469335,125.512729],[-84.354553,125.620952],[-84.254585,126.282509],[-83.961915,127.332859],[-88.293945,127.613429],[-92.625965,127.613429],[-93.005775,126.563079],[-93.005775,126.563059]];
path3347_22_points = [[-75.192885,126.638059],[-75.599741,125.808609],[-76.641015,125.573429],[-77.838015,125.484129],[-79.345295,120.171609],[-80.852575,114.859109],[-79.705565,114.766809],[-78.558555,114.674509],[-78.747745,113.491429],[-78.936925,112.308309],[-77.294705,112.308309],[-72.459845,112.503649],[-69.267215,112.699009],[-69.078665,113.704049],[-68.735740,114.562110],[-67.648095,114.711009],[-66.406065,114.714009],[-65.376335,119.438659],[-64.215975,124.838569],[-64.289654,125.401597],[-65.184275,125.513799],[-66.118760,125.646968],[-66.086165,126.564149],[-65.889115,127.614499],[-70.415435,127.614499],[-74.941755,127.614499],[-75.192885,126.639169],[-75.192885,126.638059]];
path3347_23_points = [[-125.250515,127.090819],[-127.676155,126.990529],[-128.171635,125.951519],[-128.667115,124.912489],[-126.768585,124.912489],[-124.870055,124.912489],[-126.398315,121.776919],[-127.850171,119.075933],[-128.323571,118.700369],[-128.906305,118.625869],[-129.807735,118.415164],[-130.480715,117.635059],[-131.021851,116.438588],[-130.177325,116.209579],[-129.277025,116.052929],[-130.179975,113.904879],[-131.005245,111.868849],[-128.866735,111.991259],[-126.805885,112.158229],[-125.551645,115.009179],[-122.537325,121.536359],[-120.777255,125.212589],[-118.732745,125.212589],[-116.911009,125.336912],[-116.230375,126.097969],[-115.772515,127.148319],[-125.250515,127.090819],[-125.250515,127.090819]];
path3347_24_points = [[-150.422275,125.231669],[-152.666465,118.839959],[-156.068765,109.307279],[-159.186578,100.934130],[-161.382001,93.916645],[-162.927394,87.259185],[-164.095115,79.966109],[-164.672160,76.258200],[-165.370215,73.449049],[-166.412978,70.842758],[-168.024145,67.743429],[-171.154752,61.827264],[-173.383620,56.761393],[-175.328216,50.934173],[-177.606005,42.733959],[-180.341972,32.054691],[-181.925261,24.337824],[-182.653282,17.741614],[-182.823445,10.424319],[-182.510624,0.989545],[-181.039525,-8.841971],[-179.819914,-15.107347],[-179.138525,-17.328161],[-163.322665,-13.668011],[-164.062145,-9.051401],[-165.408129,-1.378025],[-166.077185,4.780239],[-166.277295,7.839059],[-164.657785,7.931259],[-163.038275,8.023459],[-162.947575,9.598989],[-162.856875,11.174509],[-164.598945,11.174509],[-166.341025,11.174509],[-166.126535,15.150839],[-165.228720,22.951198],[-163.021765,32.781709],[-161.243371,39.531797],[-160.923099,40.236508],[-160.622985,40.284209],[-160.043015,41.034459],[-159.737715,42.510129],[-159.933795,43.350749],[-159.926061,44.339338],[-159.345034,46.632279],[-157.246785,52.471189],[-154.083985,58.699709],[-152.084645,62.508269],[-151.835875,62.910039],[-152.117715,60.618789],[-152.498815,57.931899],[-151.440925,57.690019],[-150.669536,57.519687],[-150.633365,56.435359],[-150.734195,55.180699],[-145.932595,55.260099],[-141.009265,55.461089],[-140.705715,56.711329],[-140.387084,57.676767],[-139.476995,57.936439],[-138.217815,58.238739],[-135.466955,70.894369],[-135.703639,71.257984],[-136.528765,71.436139],[-137.449131,71.640610],[-137.354035,72.484509],[-137.079645,73.668309],[-141.876925,73.895369],[-146.674205,73.895369],[-147.014255,72.544919],[-147.420479,71.455263],[-148.037025,71.194469],[-148.579043,71.371602],[-148.450425,72.393129],[-147.423945,78.881739],[-146.460695,84.698159],[-145.263034,89.884313],[-143.629268,95.187375],[-141.357705,101.354519],[-136.245875,115.749119],[-149.882205,125.269729],[-150.422295,125.231529],[-150.422275,125.231669]];
path3347_25_points = [[144.864365,121.119669],[139.238115,117.746249],[140.360604,113.569034],[144.033775,103.455329],[146.677741,96.270497],[148.426844,90.711030],[149.618327,85.547130],[150.589435,79.548999],[151.586269,73.590840],[152.872735,68.868910],[154.884218,64.134833],[158.056105,58.140229],[159.703584,54.897468],[161.132536,51.401988],[164.070225,41.634729],[166.941347,30.516230],[168.557736,22.990898],[169.270955,17.022391],[169.432565,10.574369],[169.078445,1.607338],[167.541875,-8.181881],[166.732055,-12.709261],[173.254490,-14.356708],[179.525675,-15.632711],[181.620855,-5.161011],[182.488674,2.312254],[182.823445,10.574369],[182.594210,17.445427],[181.793000,24.273749],[180.260810,32.054984],[177.838635,41.784779],[175.395313,50.710519],[173.391371,56.812022],[171.113277,61.964590],[167.847495,68.043529],[166.356493,70.960048],[165.301056,73.713888],[164.539704,76.756453],[163.930955,80.539149],[162.853590,87.349435],[161.469500,93.483745],[159.542080,99.834110],[156.834725,107.292559],[152.404495,119.585439],[150.566265,124.294909],[144.864365,121.119669],[144.864365,121.119669]];
path3347_26_points = [[-19.233015,102.512349],[-19.440405,101.321879],[-19.619821,100.464115],[-20.715835,100.246529],[-21.991255,100.154229],[-22.246975,94.373499],[-22.331375,88.146419],[-21.899681,87.813985],[-20.968405,87.700079],[-19.924820,87.548383],[-19.683555,86.574709],[-19.590455,85.449329],[-15.112275,85.366029],[-11.696129,85.386945],[-10.310675,85.607159],[-10.091830,87.846019],[-10.091955,94.093299],[-10.242005,102.288969],[-19.233015,102.512369],[-19.233015,102.512349]];
path3347_27_points = [[-101.126335,102.182239],[-103.056146,101.994174],[-103.602155,101.492369],[-103.946095,100.281279],[-103.999341,99.932353],[-103.771004,99.771064],[-101.695345,99.869879],[-99.274755,99.817879],[-100.117275,96.252959],[-100.952075,92.951859],[-102.200775,92.860059],[-103.305970,92.613139],[-103.757375,91.659659],[-103.974051,90.293000],[-102.868215,90.100939],[-101.678505,89.875869],[-102.123965,87.850189],[-102.472252,86.318317],[-102.396938,85.567480],[-101.677219,85.320586],[-100.092295,85.300539],[-97.616465,85.300539],[-96.154795,91.976599],[-94.436645,99.327849],[-93.850931,99.898769],[-91.792165,100.003069],[-89.770818,100.102282],[-89.233885,100.603269],[-88.893345,101.803669],[-88.893783,102.143004],[-89.425331,102.314940],[-93.769965,102.343489],[-101.126335,102.181109],[-101.126335,102.182239]];
path3347_28_points = [[-84.074455,101.467189],[-84.262015,100.266789],[-81.823705,100.004199],[-79.385385,100.004199],[-79.580635,99.028879],[-80.256485,95.427679],[-80.737075,92.801799],[-82.014395,92.801799],[-83.088238,92.676492],[-83.472665,92.126579],[-83.590521,90.702272],[-82.423905,90.400999],[-81.367113,90.279564],[-81.377885,89.441519],[-81.756815,86.890669],[-81.943855,85.299299],[-79.370065,85.299299],[-76.796295,85.299299],[-76.594785,86.724779],[-75.376005,93.947489],[-74.358715,99.874469],[-71.813585,100.004199],[-69.568349,100.108859],[-69.233312,100.354052],[-69.087615,100.829479],[-68.791215,102.029879],[-70.272568,102.327412],[-76.281265,102.404999],[-83.886895,102.404999],[-84.074455,101.467189],[-84.074455,101.467189]];
path3347_29_points = [[-61.304365,101.204599],[-61.651514,100.158730],[-62.831245,100.004199],[-64.155315,99.731979],[-64.905565,94.302299],[-65.592949,88.624593],[-65.267738,88.037406],[-64.423895,88.000199],[-63.191975,88.000199],[-63.306445,86.799799],[-63.420925,85.599399],[-57.936165,85.599399],[-52.451415,85.599399],[-52.451415,86.799799],[-52.451415,88.000199],[-51.100965,88.000199],[-49.729035,88.075199],[-48.563165,99.328949],[-48.762781,99.888818],[-49.782035,100.004169],[-51.013955,100.004169],[-50.899475,101.204569],[-50.785005,102.404969],[-55.943275,102.404969],[-61.101555,102.404969],[-61.304365,101.204569],[-61.304365,101.204599]];
path3347_30_points = [[-40.504315,101.279599],[-40.758243,100.294723],[-41.872885,100.061939],[-43.164285,99.911889],[-43.703785,93.927149],[-44.227295,88.000169],[-42.937555,88.000169],[-41.647805,88.000169],[-41.647805,86.799769],[-41.647805,85.599369],[-36.095955,85.599369],[-30.544105,85.599369],[-30.544105,86.799769],[-30.544105,88.000169],[-29.221665,88.000169],[-27.899225,88.000169],[-27.731265,90.776099],[-27.406015,96.778099],[-27.248725,100.004169],[-28.596315,100.004169],[-29.943905,100.004169],[-29.943905,101.204569],[-29.943905,102.404969],[-35.177545,102.404969],[-40.411175,102.404969],[-40.504275,101.279599],[-40.504315,101.279599]];
path3347_31_points = [[-122.190855,101.382499],[-122.550565,100.195219],[-122.555762,99.954747],[-122.280686,99.800223],[-120.491945,99.642159],[-118.254925,99.554059],[-119.319805,96.027889],[-120.384685,92.501709],[-121.537185,92.501709],[-122.528621,92.357523],[-122.982345,91.731919],[-123.220876,90.412418],[-122.224675,90.100909],[-121.174325,89.874879],[-121.774525,87.550059],[-122.374725,85.225249],[-120.027345,84.999209],[-117.679965,84.999209],[-116.404225,89.725789],[-114.346655,97.078239],[-113.564825,99.704109],[-111.246875,99.704109],[-108.928935,99.704109],[-108.599475,100.649189],[-108.270015,101.849589],[-115.139785,102.104909],[-122.009555,102.104909],[-122.190855,101.382539],[-122.190855,101.382499]];
path3347_32_points = [[-137.858255,100.620939],[-138.438221,99.622632],[-139.431355,99.345509],[-140.530775,99.253909],[-142.418965,94.051889],[-144.482155,87.974859],[-144.488100,87.229008],[-143.686805,87.099859],[-142.902761,86.983013],[-142.897765,86.377489],[-143.262495,85.177089],[-143.274710,84.928327],[-142.992630,84.783345],[-141.058305,84.699059],[-136.394445,84.891479],[-134.118205,85.083879],[-133.863645,86.166909],[-133.463869,87.095945],[-132.416685,87.338619],[-131.224285,87.427319],[-129.464105,93.040539],[-127.565165,99.028859],[-127.683991,99.308699],[-128.301695,99.403979],[-129.332284,99.644089],[-129.097405,100.778919],[-128.668765,101.804779],[-133.026675,101.804779],[-137.384585,101.804779],[-137.858255,100.620949],[-137.858255,100.620939]];
path3347_33_points = [[-86.480655,74.020969],[-86.662815,72.686969],[-86.870288,71.939408],[-88.088295,71.736189],[-89.513765,71.644689],[-90.148575,66.843089],[-90.995445,60.315909],[-91.207505,58.590339],[-89.801385,58.590339],[-88.395265,58.590339],[-88.597775,57.239889],[-88.800295,55.889439],[-83.248445,55.889439],[-77.696595,55.889439],[-77.494075,57.239889],[-77.291565,58.590339],[-75.980905,58.590339],[-75.090466,58.620013],[-74.608169,59.219654],[-73.904425,65.192539],[-73.250275,71.119509],[-73.332828,71.692407],[-74.517025,71.794739],[-75.940795,71.794739],[-75.755695,73.145189],[-75.570595,74.495639],[-80.934545,74.495639],[-85.379234,74.411439],[-86.196866,74.267405],[-86.480655,74.020939],[-86.480655,74.020969]];
path3347_34_points = [[-64.813285,73.220239],[-64.905585,71.944819],[-66.331055,71.853319],[-67.760395,71.553219],[-68.360375,65.192539],[-68.956705,58.797029],[-67.606485,58.756029],[-66.256035,58.958549],[-66.256035,57.574019],[-66.256035,56.189499],[-60.571385,56.189499],[-54.886745,56.189499],[-54.794445,57.464919],[-54.702145,58.740349],[-53.276665,58.831849],[-52.177733,59.006027],[-51.851195,59.375819],[-51.100885,70.219209],[-50.945645,71.794739],[-52.298715,71.794739],[-53.651795,71.794739],[-53.651795,73.145189],[-53.651795,74.495639],[-59.186385,74.495639],[-64.720985,74.495639],[-64.813285,73.220209],[-64.813285,73.220239]];
path3347_35_points = [[-45.249015,73.145239],[-45.249015,71.794789],[-42.548105,71.794789],[-39.847205,71.794789],[-39.847205,69.738109],[-40.040015,65.836809],[-40.232815,63.992189],[-41.508405,63.992189],[-42.846905,63.656739],[-43.148305,62.167039],[-42.945994,61.410530],[-41.662415,61.291289],[-40.176525,61.291289],[-40.356545,58.740439],[-40.536555,56.189589],[-37.676035,56.189589],[-35.760587,56.227206],[-34.809988,56.602504],[-34.485529,57.709158],[-34.448505,59.940839],[-34.247375,67.068209],[-34.051345,71.794789],[-31.277595,71.794789],[-28.503845,71.794789],[-28.396435,73.145239],[-28.289035,74.495689],[-36.769025,74.495689],[-45.249015,74.495689],[-45.249015,73.145239],[-45.249015,73.145239]];
path3347_36_points = [[-20.040605,73.312539],[-20.202284,72.267748],[-21.316035,72.037119],[-22.591455,71.944819],[-22.786745,69.393969],[-23.011825,62.716739],[-23.041625,58.590369],[-21.541125,58.590369],[-20.040625,58.590369],[-20.040625,57.239919],[-20.040625,55.889469],[-15.138995,55.889469],[-10.066095,56.060729],[-10.314335,57.036059],[-10.735675,58.148879],[-11.629705,60.549679],[-12.370705,62.785454],[-12.530005,65.574279],[-12.388933,68.351435],[-11.637825,70.492419],[-10.737525,73.486819],[-10.737525,74.495669],[-15.389075,74.495669],[-20.040625,74.495669],[-20.040625,73.312519],[-20.040605,73.312539]];
path3347_37_points = [[-125.714555,73.973879],[-127.703935,73.869709],[-127.891065,72.699409],[-128.228958,71.678565],[-129.352835,71.436889],[-130.627475,71.344589],[-131.721325,65.975059],[-133.000295,59.447879],[-133.185415,58.290239],[-131.963075,58.290239],[-130.740745,58.290239],[-130.943255,56.939789],[-131.145775,55.589339],[-126.044075,55.589339],[-120.942375,55.589339],[-120.739855,56.939789],[-120.537345,58.290239],[-119.258685,58.290239],[-117.980025,58.290239],[-116.981195,64.067159],[-115.843385,70.669359],[-115.898189,71.377705],[-116.933115,71.494639],[-118.161835,71.494639],[-117.976735,72.845089],[-117.791635,74.195539],[-120.758405,74.136739],[-125.714555,73.973819],[-125.714555,73.973879]];
path3347_38_points = [[-107.504125,73.820459],[-107.791525,72.655929],[-108.444079,71.785562],[-109.954505,71.498799],[-110.329445,71.337918],[-110.649626,70.541012],[-111.630295,65.117559],[-112.671945,58.740439],[-111.355455,58.648339],[-110.038965,58.556239],[-110.238915,57.222879],[-110.438865,55.889519],[-105.002995,55.889519],[-99.567115,55.889519],[-99.567115,56.765269],[-99.266671,58.253964],[-97.937295,58.590419],[-96.671785,58.590419],[-95.849595,64.667439],[-94.876235,71.269639],[-95.002309,71.699370],[-96.099295,71.794819],[-97.473515,71.794819],[-97.281555,72.995219],[-97.089605,74.195619],[-102.239085,74.195619],[-106.285839,74.113440],[-107.504125,73.820489],[-107.504125,73.820459]];
path3347_39_points = [[-111.030315,43.990849],[-111.731740,43.637500],[-112.039715,42.516609],[-112.239465,41.184579],[-113.555845,41.184579],[-114.872215,40.898989],[-115.920395,28.655409],[-116.077865,27.079879],[-114.724795,27.079879],[-113.371715,27.079879],[-113.371715,25.729429],[-113.371715,24.378979],[-107.819865,24.378979],[-102.268015,24.378979],[-102.268015,25.879479],[-102.268015,27.379979],[-100.908155,27.379979],[-99.887504,27.481725],[-99.439125,27.755109],[-98.967375,34.263549],[-98.453645,40.790719],[-98.645938,41.096384],[-99.685055,41.184579],[-101.067615,41.184579],[-101.067615,42.535039],[-101.067615,43.885489],[-103.423135,43.885489],[-107.999665,44.009279],[-111.030315,43.990879],[-111.030315,43.990849]];
path3347_40_points = [[-89.763845,43.985849],[-89.963915,42.635409],[-90.112650,41.636442],[-91.089295,41.480429],[-92.556635,41.255359],[-93.232265,36.083219],[-93.723935,29.255949],[-93.881935,27.380319],[-92.387215,27.380319],[-90.892495,27.380319],[-91.075065,25.838769],[-91.257645,24.297209],[-85.659955,24.437469],[-79.886165,24.753839],[-79.545715,26.155139],[-79.237696,27.224940],[-78.084045,27.380319],[-76.951516,27.520423],[-76.636675,28.355649],[-76.310145,33.982519],[-75.957765,40.059549],[-75.781895,41.485019],[-77.284185,41.485019],[-78.786485,41.485019],[-78.634275,42.835479],[-78.482055,44.185929],[-84.022915,44.185929],[-89.763845,43.985859],[-89.763845,43.985849]];
path3347_41_points = [[-67.156315,42.835479],[-67.156315,41.485019],[-68.618035,41.485019],[-70.079765,41.485019],[-70.261955,39.459349],[-70.643865,32.406999],[-70.843585,27.380319],[-69.450105,27.380319],[-68.056615,27.380319],[-68.056615,26.029869],[-68.056615,24.679419],[-62.204665,24.679419],[-56.352715,24.679419],[-56.352715,25.555179],[-56.049004,27.047255],[-54.688445,27.380319],[-53.388485,27.380319],[-53.233745,28.655749],[-52.907355,35.708099],[-52.735715,41.485019],[-54.262495,41.485019],[-55.789285,41.485019],[-55.586775,42.835479],[-55.384265,44.185929],[-61.270285,44.185929],[-67.156315,44.185929],[-67.156315,42.835479],[-67.156315,42.835479]];
path3347_42_points = [[-46.749515,42.835479],[-46.749515,41.485019],[-43.898565,41.485019],[-41.047605,41.485019],[-41.047605,37.758319],[-41.229765,33.556919],[-41.675044,33.195647],[-42.695265,33.082219],[-43.522583,33.001241],[-44.023715,32.697472],[-44.344615,31.056549],[-44.106871,30.489903],[-42.848205,30.381319],[-41.347705,30.381319],[-41.347705,27.530369],[-41.347705,24.679419],[-38.346705,24.679419],[-35.345705,24.679419],[-35.345705,28.533009],[-35.148805,36.935809],[-34.951895,41.485019],[-31.997755,41.485019],[-29.043605,41.485019],[-29.043605,42.835479],[-29.043605,44.185929],[-37.896555,44.185929],[-46.749515,44.185929],[-46.749515,42.835479],[-46.749515,42.835479]];
path3347_43_points = [[-23.283125,42.760479],[-23.191625,41.334999],[-20.265655,41.249099],[-17.339675,41.163199],[-17.339675,37.122719],[-17.339675,33.082229],[-18.840175,33.082229],[-20.340675,33.082229],[-20.340675,31.581729],[-20.340675,30.081229],[-18.915205,30.081529],[-17.489725,30.081829],[-17.489725,27.305469],[-17.489725,24.529109],[-14.459915,24.444109],[-11.430105,24.359109],[-11.233845,27.566829],[-11.037575,35.979619],[-11.037575,41.184949],[-9.837175,41.184949],[-8.636775,41.383659],[-9.399675,42.884159],[-10.162575,44.185959],[-16.768575,44.185959],[-23.374565,44.185959],[-23.283065,42.760479],[-23.283125,42.760479]];
path3347_44_points = [[-131.571915,43.667629],[-132.367905,43.513509],[-132.855646,43.169597],[-133.174225,41.560079],[-133.403304,40.997618],[-134.528775,40.884849],[-135.534301,40.788797],[-135.882655,40.509729],[-136.479425,34.432699],[-137.076185,27.755479],[-136.911940,26.915918],[-135.879225,26.780149],[-134.678825,26.780149],[-134.678825,25.429699],[-134.678825,24.079249],[-129.427075,24.079249],[-124.175325,24.079249],[-124.175325,25.579749],[-124.175325,27.080249],[-122.838465,27.080249],[-121.940671,27.118497],[-121.461863,27.707418],[-120.874635,33.382349],[-120.362695,39.459379],[-120.188515,41.184949],[-121.461885,41.184949],[-122.735255,41.184949],[-122.627855,42.535409],[-122.520445,43.885859],[-126.423905,43.833459],[-131.571915,43.667669],[-131.571915,43.667629]];
path3347_45_points = [[-152.427685,43.362779],[-154.066605,43.254788],[-154.948336,42.980015],[-155.308226,42.370924],[-155.381625,41.259979],[-155.331659,40.883314],[-155.051076,40.681333],[-153.049955,40.584749],[-150.714175,40.584749],[-151.237385,36.458379],[-151.772555,32.256979],[-152.984925,32.181979],[-153.977179,32.064502],[-154.189425,31.506759],[-154.374475,30.156309],[-154.332161,29.585459],[-153.292025,29.481079],[-152.028615,29.481079],[-152.242355,26.630129],[-152.456105,23.779179],[-150.041205,23.779179],[-147.626315,23.779179],[-147.457605,25.354709],[-146.821505,31.731829],[-146.074265,38.484079],[-145.788465,40.659809],[-143.231675,40.884879],[-140.680825,40.884879],[-140.680825,41.760639],[-140.498665,43.111089],[-140.550358,43.361412],[-141.139375,43.496450],[-145.075195,43.524069],[-152.427685,43.362809],[-152.427685,43.362779]];
path3347_46_points = [[-94.465415,10.574749],[-94.465415,9.074249],[-91.614465,9.074249],[-88.763515,9.074249],[-88.763515,4.722799],[-88.763515,0.371349],[-90.264015,0.371349],[-91.764515,0.371349],[-91.764515,-1.129151],[-91.764515,-2.629651],[-90.264015,-2.629651],[-88.763515,-2.629651],[-88.763515,-5.630651],[-88.763515,-8.631651],[-85.912565,-8.631651],[-83.061615,-8.631651],[-83.061615,0.221299],[-83.061615,9.074249],[-80.060615,9.074249],[-77.059615,9.074249],[-77.059615,10.574749],[-77.059615,12.075249],[-85.762515,12.075249],[-94.465415,12.075249],[-94.465415,10.574749],[-94.465415,10.574749]];
path3347_47_points = [[-68.356715,10.574749],[-68.356715,9.074249],[-69.857215,9.074249],[-71.357715,9.074249],[-71.357715,1.721799],[-71.357715,-5.630651],[-69.857215,-5.630651],[-68.356715,-5.630651],[-68.356715,-6.981101],[-68.356715,-8.331551],[-62.504765,-8.331551],[-56.652815,-8.331551],[-56.652815,-6.981101],[-56.652815,-5.630651],[-55.152315,-5.630651],[-53.651815,-5.630651],[-53.651815,1.721799],[-53.651815,9.074249],[-55.152315,9.074249],[-56.652815,9.074249],[-56.652815,10.574749],[-56.652815,12.075249],[-62.504765,12.075249],[-68.356715,12.075249],[-68.356715,10.574749],[-68.356715,10.574749]];
path3347_48_points = [[-44.648815,10.574749],[-44.648815,9.074249],[-46.149315,9.074249],[-47.649815,9.074249],[-47.649815,1.721799],[-47.649815,-5.630651],[-46.149315,-5.630651],[-44.648815,-5.630651],[-44.648815,-6.981101],[-44.648815,-8.331551],[-38.646805,-8.331551],[-32.644805,-8.331551],[-32.644805,-6.981101],[-32.644805,-5.630651],[-31.144305,-5.630651],[-29.643805,-5.630651],[-29.643805,1.721799],[-29.643805,9.074249],[-31.144305,9.074249],[-32.644805,9.074249],[-32.644805,10.574749],[-32.644805,12.075249],[-38.646805,12.075249],[-44.648815,12.075249],[-44.648815,10.574749],[-44.648815,10.574749]];
path3347_49_points = [[-20.440735,11.875179],[-20.640805,10.374679],[-20.640805,9.074249],[-22.141305,9.074249],[-23.641805,9.074249],[-23.641805,1.721799],[-23.641805,-5.630651],[-22.141305,-5.630651],[-20.640805,-5.630651],[-20.640805,-7.131151],[-20.640805,-8.631651],[-15.519375,-8.631651],[-10.464291,-8.425750],[-9.500913,-8.103577],[-9.237005,-7.577661],[-8.486755,-6.653401],[-7.736505,-6.161821],[-7.736505,2.956709],[-7.736505,12.075249],[-13.988585,12.075249],[-20.440735,11.875179],[-20.440735,11.875179]];
path3347_50_points = [[-133.103295,11.555439],[-137.979925,11.460139],[-137.979925,9.924779],[-137.979925,8.389409],[-135.421235,8.549039],[-132.862555,8.708669],[-132.945455,4.314919],[-133.028355,-0.078841],[-134.303775,-0.171141],[-135.579205,-0.263441],[-135.579205,-1.746691],[-135.579205,-3.229931],[-134.228755,-3.229931],[-132.878305,-3.229931],[-132.878305,-6.080881],[-132.878305,-8.931831],[-130.237525,-8.931831],[-127.596755,-8.931831],[-127.723615,-2.647031],[-127.636515,6.205919],[-127.422595,8.774069],[-124.732185,8.774069],[-122.041785,8.774069],[-122.133285,10.199549],[-122.224785,11.625019],[-125.225785,11.637819],[-133.103405,11.555319],[-133.103295,11.555439]];
path3347_51_points = [[-116.672815,10.274649],[-116.672815,8.774149],[-113.971915,8.774149],[-111.271015,8.774149],[-111.271015,4.422699],[-111.271015,0.071249],[-112.771515,0.071249],[-114.272015,0.071249],[-114.272015,-1.429251],[-114.272015,-2.929751],[-112.771515,-2.929751],[-111.271015,-2.929751],[-111.271015,-5.780701],[-111.271015,-8.631651],[-108.574655,-8.631651],[-105.878285,-8.631651],[-105.798685,0.146269],[-105.719085,8.924199],[-102.943165,9.010499],[-100.167235,9.096799],[-100.167235,10.435989],[-100.167235,11.775179],[-108.419985,11.775179],[-116.672735,11.775179],[-116.672735,10.274679],[-116.672815,10.274649]];
path3347_52_points = [[-152.459745,11.251109],[-155.685825,11.154609],[-155.685825,9.664259],[-155.685825,8.173909],[-156.842835,8.173909],[-157.999835,8.173909],[-158.191145,6.148239],[-158.373265,-0.945546],[-158.124045,-6.180681],[-157.662225,-6.444330],[-156.853215,-6.480781],[-155.951790,-6.571861],[-155.744445,-7.806421],[-155.652945,-9.231891],[-150.717735,-9.231891],[-145.782525,-9.231891],[-145.782525,-7.731391],[-145.782525,-6.230891],[-144.582125,-6.230891],[-143.381725,-6.230891],[-143.381725,1.121559],[-143.381725,8.474009],[-144.582125,8.474009],[-145.782525,8.474009],[-145.782525,9.974509],[-145.782525,11.475009],[-147.508095,11.411309],[-152.459745,11.251099],[-152.459745,11.251109]];
path3347_53_points = [[-87.600295,-21.153721],[-91.388735,-21.253221],[-91.237495,-22.594991],[-91.086265,-23.936751],[-92.639385,-23.936751],[-94.192515,-23.936751],[-94.043505,-24.912081],[-93.719935,-30.088801],[-93.363755,-36.165831],[-93.182135,-38.041461],[-91.908125,-38.041461],[-91.075047,-38.124073],[-90.577655,-38.443071],[-90.268115,-40.217181],[-90.264115,-41.042461],[-87.309215,-41.042461],[-81.682345,-40.852871],[-79.010365,-40.663291],[-79.115605,-39.352371],[-79.220855,-38.041461],[-77.793195,-38.041461],[-76.365545,-38.041461],[-76.561585,-33.314881],[-76.758615,-26.262531],[-76.759615,-23.936751],[-78.243675,-23.936751],[-79.727725,-23.936751],[-79.819225,-22.511281],[-79.910725,-21.085801],[-81.861375,-21.070001],[-87.600455,-21.153701],[-87.600295,-21.153721]];
path3347_54_points = [[-68.150365,-21.129521],[-68.356715,-22.636301],[-68.356715,-23.936731],[-69.740385,-23.936731],[-71.124055,-23.936731],[-70.918535,-30.463911],[-70.564995,-37.516261],[-70.162611,-37.928446],[-69.086735,-38.041441],[-67.945499,-38.165872],[-67.756515,-38.917191],[-67.685837,-39.993774],[-67.065199,-40.533236],[-61.722405,-40.742341],[-56.052615,-40.742341],[-56.052615,-39.391891],[-56.052615,-38.041441],[-54.627135,-38.041661],[-53.201665,-38.041891],[-53.289165,-31.364441],[-53.504815,-24.311861],[-54.976365,-23.936731],[-56.319795,-23.936731],[-56.411295,-22.511261],[-56.502795,-21.085781],[-62.223415,-21.004481],[-68.150395,-21.129531],[-68.150365,-21.129521]];
path3347_55_points = [[-47.649815,-22.436231],[-47.649815,-23.936731],[-44.648815,-23.936731],[-41.647805,-23.936731],[-41.647805,-28.138131],[-41.647805,-32.339531],[-42.998255,-32.339531],[-44.348715,-32.339531],[-44.348715,-33.840031],[-44.348715,-35.340531],[-42.848205,-35.340531],[-41.347705,-35.340531],[-41.347705,-38.041441],[-41.347705,-40.742341],[-38.421735,-40.742381],[-35.495755,-40.742431],[-35.601915,-32.339581],[-35.708065,-23.936731],[-32.675935,-23.936731],[-29.643805,-23.936731],[-29.643805,-22.436231],[-29.643805,-20.935731],[-38.646805,-20.935731],[-47.649815,-20.935731],[-47.649815,-22.436231],[-47.649815,-22.436231]];
path3347_56_points = [[-20.740835,-21.135801],[-20.940425,-22.561281],[-20.939825,-23.786681],[-22.365785,-23.786681],[-23.791745,-23.786681],[-23.791745,-30.989081],[-23.791745,-38.191491],[-22.382755,-38.282291],[-20.973765,-38.373091],[-20.882265,-39.632741],[-20.790865,-40.892401],[-14.638815,-40.892401],[-8.486765,-40.892401],[-8.407565,-31.374101],[-8.328365,-21.855801],[-9.217965,-21.395771],[-10.995817,-21.030178],[-15.324195,-20.935741],[-20.740895,-21.135811],[-20.740835,-21.135801]];
path3347_57_points = [[-113.628005,-22.661311],[-113.538905,-24.086781],[-114.805775,-24.179081],[-116.072655,-24.271381],[-116.068655,-25.829651],[-115.620465,-32.789721],[-115.174345,-38.266551],[-113.821935,-38.341551],[-112.696334,-38.454303],[-112.467395,-39.016771],[-112.282335,-40.367221],[-112.086493,-40.754770],[-111.428895,-40.955542],[-106.695555,-41.042451],[-101.289735,-41.042451],[-101.440005,-39.709211],[-101.289574,-38.327493],[-99.842745,-38.041451],[-99.090246,-37.846503],[-98.992475,-36.615971],[-99.367595,-29.638641],[-99.717235,-24.086791],[-101.142715,-23.995291],[-102.568185,-23.903791],[-102.568185,-22.569781],[-102.568185,-21.235771],[-108.142705,-21.235771],[-113.717225,-21.235771],[-113.628125,-22.661251],[-113.628005,-22.661311]];
path3347_58_points = [[-150.235395,-21.768571],[-155.138405,-21.851171],[-155.036995,-23.269081],[-154.935575,-24.686991],[-156.060955,-24.780191],[-157.037250,-25.024563],[-157.164215,-26.130641],[-156.488985,-33.089841],[-155.835875,-38.791751],[-154.560445,-38.884051],[-153.466919,-39.100241],[-153.280435,-39.934401],[-153.187669,-40.926456],[-152.612406,-41.431637],[-148.160605,-41.575791],[-143.531775,-41.492691],[-143.580375,-40.067211],[-143.628975,-38.641741],[-142.455015,-38.641741],[-141.665218,-38.610441],[-141.336255,-38.072863],[-141.729045,-32.816801],[-142.353135,-26.412661],[-142.529225,-24.537031],[-143.700025,-24.537031],[-144.431417,-24.484406],[-144.856164,-24.221640],[-145.250115,-22.436331],[-145.332415,-21.686081],[-150.235435,-21.768681],[-150.235395,-21.768571]];
path3347_59_points = [[-134.935105,-22.961411],[-134.846005,-24.386881],[-136.129275,-24.479981],[-137.412545,-24.573081],[-137.224225,-26.730761],[-136.608615,-33.389921],[-136.180345,-38.266551],[-135.834315,-38.545758],[-134.828915,-38.641681],[-133.703309,-38.754433],[-133.474365,-39.316901],[-133.289315,-40.667351],[-133.096919,-41.054086],[-132.470528,-41.254948],[-128.012695,-41.342581],[-122.917035,-41.342581],[-123.021025,-39.841891],[-123.125015,-38.341201],[-121.807785,-38.341391],[-120.490555,-38.341581],[-120.667695,-36.845941],[-121.222105,-29.793591],[-121.599375,-24.236871],[-122.855255,-24.236871],[-124.175930,-23.899450],[-124.475465,-22.411731],[-124.475465,-21.535971],[-129.749875,-21.535971],[-135.024295,-21.535971],[-134.935095,-22.961451],[-134.935105,-22.961411]];
path3347_60_points = [[164.402345,-22.211161],[161.314495,-34.890381],[160.893297,-38.377265],[160.909305,-44.643641],[161.073976,-57.293115],[160.906190,-65.943661],[160.317977,-72.346997],[159.221365,-78.254841],[157.054301,-86.105900],[153.988833,-94.196335],[150.067160,-102.457118],[145.331477,-110.819220],[139.823982,-119.213613],[133.586870,-127.571268],[126.662339,-135.823157],[119.092585,-143.900251],[114.865075,-148.175211],[115.609955,-148.905381],[120.556265,-153.418321],[124.757665,-157.201081],[129.333135,-152.518511],[138.200980,-142.929406],[146.067810,-133.314136],[153.055760,-123.513061],[159.286965,-113.366541],[164.884521,-102.515982],[169.136832,-91.960378],[172.141215,-81.416794],[173.994985,-70.602291],[174.480029,-59.732197],[174.158725,-47.044441],[173.999932,-43.055254],[174.188480,-39.547361],[174.809852,-35.749638],[175.949535,-30.890961],[177.203805,-24.815901],[164.752655,-21.535931],[164.402345,-22.211161],[164.402345,-22.211161]];
path3347_61_points = [[-169.036425,-24.308951],[-176.969155,-26.213731],[-176.012405,-30.769101],[-174.384653,-38.209370],[-174.294805,-44.643641],[-174.420135,-59.798691],[-174.284554,-68.230685],[-173.730375,-73.453241],[-171.793636,-83.064346],[-168.945053,-92.525421],[-165.154165,-101.922986],[-160.390515,-111.343561],[-153.622920,-122.568316],[-146.055746,-133.212521],[-137.316460,-143.760321],[-127.032525,-154.695861],[-121.024275,-160.763421],[-115.172315,-155.506911],[-108.784575,-149.720491],[-108.548726,-149.316462],[-108.747200,-148.564325],[-111.260395,-144.203431],[-114.272015,-139.045661],[-112.621465,-138.875051],[-111.089275,-138.632023],[-111.063528,-138.177472],[-111.425035,-137.366881],[-111.879145,-136.488721],[-116.883735,-136.406421],[-121.888325,-136.324121],[-124.555495,-133.351311],[-129.445203,-127.569459],[-134.425171,-121.211875],[-138.134829,-116.077846],[-139.088113,-114.531942],[-139.213605,-113.966661],[-139.400035,-112.766261],[-139.907781,-111.840225],[-140.501275,-111.563681],[-141.206833,-110.991297],[-142.350946,-109.418347],[-145.488958,-104.117966],[-148.983553,-97.356967],[-151.902975,-90.829781],[-153.285025,-87.040671],[-151.634825,-86.595041],[-149.833025,-86.306601],[-150.086855,-84.980811],[-150.492265,-83.806611],[-152.471425,-83.718311],[-154.450575,-83.630011],[-154.949945,-81.917751],[-156.309393,-76.289838],[-157.333095,-70.305601],[-157.978251,-61.838326],[-157.908785,-56.646721],[-157.546015,-47.568701],[-157.573193,-39.429472],[-158.063435,-34.980911],[-159.671795,-27.520948],[-161.032655,-22.712281],[-169.036425,-24.308951],[-169.036425,-24.308951],[-117.912985,-139.925781],[-117.374325,-140.976131],[-118.473425,-139.925781],[-119.136921,-139.124118],[-119.012085,-138.875431],[-117.912985,-139.925781],[-117.912985,-139.925781]];
path3347_61_paths = [[0,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]];
path3347_62_points = [[-84.113585,-52.970991],[-89.216915,-53.060391],[-89.110045,-54.404071],[-89.003175,-55.747751],[-90.387395,-55.747751],[-91.771615,-55.747751],[-91.619035,-56.873121],[-90.264015,-68.637861],[-88.945675,-68.952151],[-87.568463,-69.283463],[-87.263015,-70.777291],[-87.263015,-71.653051],[-81.830995,-71.653051],[-76.398975,-71.653051],[-76.506385,-70.302601],[-76.613785,-68.952151],[-75.295115,-68.952151],[-73.976445,-68.952151],[-74.151995,-66.926471],[-74.699345,-60.324271],[-75.071135,-55.747751],[-76.515525,-55.747751],[-77.779250,-55.619442],[-77.959915,-54.721941],[-78.146975,-53.253192],[-78.667245,-52.814201],[-84.113585,-52.971021],[-84.113585,-52.970991]];
path3347_63_points = [[-66.856215,-54.097171],[-66.856215,-55.447621],[-68.236135,-55.447621],[-69.616045,-55.447621],[-69.441355,-57.173191],[-68.955935,-62.950121],[-68.385000,-68.315462],[-67.897470,-68.900936],[-66.992665,-68.952121],[-65.879143,-69.065248],[-65.651715,-69.627341],[-65.466665,-70.977791],[-65.270000,-71.365522],[-64.604941,-71.566273],[-59.805725,-71.653021],[-54.325735,-71.653021],[-54.477955,-70.302571],[-54.630165,-68.952121],[-53.196645,-68.952121],[-51.763125,-68.952121],[-51.959895,-65.425941],[-52.346755,-58.673691],[-52.536835,-55.447621],[-53.994625,-55.447621],[-55.452415,-55.447621],[-55.452415,-54.097171],[-55.452415,-52.746721],[-61.154315,-52.746721],[-66.856215,-52.746721],[-66.856215,-54.097171],[-66.856215,-54.097171]];
path3347_64_points = [[-46.749515,-54.092171],[-46.749515,-55.447221],[-43.941955,-55.447221],[-41.134405,-55.447221],[-40.943085,-57.472891],[-40.749645,-61.524251],[-40.747645,-63.549911],[-42.098095,-63.549911],[-43.448545,-63.549911],[-43.448545,-64.883921],[-43.448545,-66.217921],[-42.023075,-66.309421],[-40.597595,-66.400921],[-40.510895,-69.026791],[-40.424195,-71.652671],[-37.603495,-71.652671],[-34.782805,-71.652671],[-34.961435,-63.549971],[-35.140065,-55.447271],[-32.224705,-55.447271],[-29.309345,-55.447271],[-29.401645,-54.171841],[-29.493945,-52.896421],[-38.121825,-52.816821],[-46.749705,-52.737221],[-46.749705,-54.092271],[-46.749515,-54.092171]];
path3347_65_points = [[-23.641805,-54.246811],[-23.641805,-55.747311],[-20.790855,-55.747311],[-17.939905,-55.747311],[-17.939905,-59.632171],[-17.939905,-63.517021],[-19.365385,-63.608521],[-20.790855,-63.700021],[-20.790855,-65.050471],[-20.790855,-66.400921],[-19.376835,-66.491921],[-17.962805,-66.582921],[-17.876305,-69.192821],[-17.789805,-71.802721],[-14.863835,-71.888621],[-11.937855,-71.974521],[-11.937855,-63.860961],[-11.937855,-55.747391],[-9.837155,-55.747391],[-7.736455,-55.747391],[-7.736455,-54.246891],[-7.736455,-52.746391],[-15.689105,-52.746391],[-23.641755,-52.746391],[-23.641755,-54.246891],[-23.641805,-54.246811]];
path3347_66_points = [[-110.774335,-54.396861],[-110.589235,-55.747311],[-111.872235,-55.747311],[-113.155225,-55.747311],[-112.973625,-57.322831],[-111.974605,-64.075081],[-111.157195,-69.251811],[-109.881315,-69.251811],[-108.737921,-69.416492],[-108.353685,-70.524861],[-108.025631,-71.524556],[-107.525835,-71.908861],[-102.337255,-71.803631],[-97.724765,-71.587461],[-97.922075,-70.419641],[-98.119375,-69.251811],[-96.892595,-69.251811],[-96.048473,-69.211082],[-95.723794,-68.543001],[-96.416065,-62.049411],[-97.165065,-55.972381],[-98.498385,-55.747311],[-99.830445,-55.747311],[-100.032955,-54.396861],[-100.235465,-53.046411],[-105.597455,-53.046411],[-110.959435,-53.046411],[-110.774335,-54.396861],[-110.774335,-54.396861]];
path3347_67_points = [[-147.743055,-53.636781],[-153.454845,-53.796661],[-153.202225,-55.072081],[-152.949605,-56.347511],[-150.608545,-56.347511],[-148.267495,-56.347511],[-147.603365,-59.723631],[-146.778505,-63.774981],[-146.832875,-64.342782],[-147.809055,-64.450211],[-149.000355,-64.450211],[-148.691335,-65.800661],[-148.269073,-66.966708],[-147.244035,-67.151111],[-146.527661,-67.175892],[-146.096714,-67.523545],[-145.162655,-70.827331],[-144.810975,-72.252811],[-142.484005,-72.252811],[-140.157035,-72.252811],[-140.735055,-69.776981],[-143.379545,-56.761381],[-140.992355,-56.216581],[-138.602975,-56.008151],[-138.767565,-55.052461],[-139.222986,-53.572963],[-140.596385,-53.411711],[-147.743055,-53.636781],[-147.743055,-53.636781]];
path3347_68_points = [[-131.495715,-54.314771],[-131.211125,-55.672281],[-131.436421,-55.957372],[-132.398195,-56.047411],[-133.699935,-56.047411],[-132.993335,-60.023731],[-131.744985,-66.700961],[-131.203225,-69.401861],[-129.940815,-69.494061],[-128.827149,-69.737505],[-128.489215,-70.769491],[-128.300005,-71.952671],[-123.268265,-71.952671],[-118.236525,-71.952671],[-118.497865,-70.827291],[-118.669266,-69.436733],[-117.573115,-69.251771],[-116.372715,-68.930311],[-118.338405,-56.739781],[-118.699453,-56.192910],[-119.750245,-55.989531],[-120.873109,-55.748271],[-121.174325,-54.696921],[-121.324375,-53.496521],[-126.495005,-53.414421],[-131.665645,-53.332321],[-131.495715,-54.314701],[-131.495715,-54.314771]];
path3347_69_points = [[-20.640805,-84.106761],[-20.640805,-85.457211],[-21.997345,-85.457211],[-23.353885,-85.457211],[-23.272785,-91.684291],[-23.191685,-97.911361],[-21.916265,-98.003661],[-20.802589,-98.234265],[-20.640835,-99.279091],[-20.640835,-100.462231],[-16.325925,-100.462231],[-12.011005,-100.462231],[-11.798805,-94.985411],[-11.899775,-88.696771],[-12.087378,-87.042621],[-11.794725,-83.731661],[-11.675575,-82.756331],[-16.158205,-82.756331],[-20.640835,-82.756331],[-20.640835,-84.106781],[-20.640805,-84.106761]];
path3347_70_points = [[-108.265925,-83.731641],[-108.193387,-84.858591],[-107.841110,-85.464866],[-106.980776,-85.710946],[-105.384065,-85.757311],[-102.868215,-85.925231],[-102.117965,-89.416711],[-101.367715,-93.000041],[-102.558705,-93.259811],[-103.431424,-93.351188],[-103.634115,-93.634941],[-103.342025,-94.818151],[-102.975470,-95.501176],[-101.901185,-95.718451],[-100.778703,-95.967646],[-100.373835,-97.011061],[-99.827405,-99.336841],[-99.543985,-100.462211],[-97.154755,-100.462211],[-94.765515,-100.330571],[-96.097185,-94.103501],[-97.624675,-86.916851],[-97.820495,-85.825641],[-95.562955,-85.711641],[-93.099135,-85.391371],[-93.092135,-84.120751],[-93.291815,-83.056411],[-100.780715,-83.056411],[-108.269615,-83.056411],[-108.265615,-83.731641],[-108.265925,-83.731641]];
path3347_71_points = [[-87.886635,-84.181791],[-87.704435,-85.307161],[-85.082925,-85.393861],[-82.459425,-85.693961],[-81.861215,-89.358501],[-81.263005,-92.884681],[-82.461415,-92.959681],[-83.574008,-93.219168],[-83.474255,-94.722771],[-83.124176,-95.518601],[-82.025695,-95.660581],[-80.764705,-95.660581],[-80.337635,-97.986361],[-79.910565,-100.312131],[-77.434735,-100.399331],[-74.958915,-100.185241],[-76.012905,-93.345821],[-77.171685,-86.132451],[-77.179304,-85.749403],[-76.899636,-85.548131],[-74.582195,-85.457221],[-72.265990,-85.368431],[-72.014233,-85.167427],[-72.068865,-84.782001],[-72.253915,-83.581601],[-72.461058,-83.294181],[-73.462421,-83.136468],[-80.163425,-83.056421],[-88.068835,-83.056421],[-87.886635,-84.181801],[-87.886635,-84.181791]];
path3347_72_points = [[-64.155315,-84.256791],[-64.305365,-85.307141],[-65.355715,-85.457191],[-66.187369,-85.512227],[-66.506960,-86.182723],[-65.806995,-92.402411],[-65.056745,-97.986371],[-63.723275,-98.061371],[-62.549110,-98.205043],[-62.297805,-99.186751],[-62.204705,-100.312121],[-56.988465,-100.394421],[-51.772215,-100.476721],[-51.965335,-99.269061],[-52.158445,-98.061401],[-50.778065,-98.061401],[-49.397695,-98.061401],[-49.563405,-96.936031],[-50.046055,-91.909351],[-50.525305,-86.732631],[-50.687625,-85.457201],[-52.019685,-85.457201],[-53.351755,-85.457201],[-53.351755,-84.256801],[-53.351755,-83.056401],[-58.753555,-83.056401],[-64.155355,-83.056401],[-64.155355,-84.256801],[-64.155315,-84.256791]];
path3347_73_points = [[-42.548105,-84.256791],[-42.548105,-85.457191],[-43.902105,-85.457191],[-45.256105,-85.457191],[-45.111995,-86.582571],[-44.625725,-92.659591],[-44.148375,-97.836321],[-42.830495,-98.061391],[-41.845100,-98.182442],[-41.647805,-98.787101],[-41.569170,-99.762402],[-40.978373,-100.258928],[-36.130945,-100.462191],[-30.978395,-100.462191],[-31.092875,-99.261791],[-31.207355,-98.061391],[-29.779065,-98.061391],[-28.350785,-98.061391],[-28.545925,-94.235121],[-28.742285,-87.933021],[-28.743285,-85.457191],[-30.093735,-85.457191],[-31.229550,-85.341841],[-31.444185,-84.731491],[-31.523330,-83.753911],[-32.133074,-83.257633],[-37.178195,-83.056391],[-42.547885,-83.056391],[-42.547885,-84.256791],[-42.548105,-84.256791]];
path3347_74_points = [[-127.632625,-84.479581],[-127.263435,-85.859121],[-124.824855,-86.011461],[-122.544765,-85.907341],[-121.718265,-88.901931],[-120.678336,-93.093528],[-120.900816,-93.530566],[-121.600625,-93.559891],[-122.595908,-93.772418],[-122.345365,-95.015611],[-121.879434,-95.801921],[-120.874095,-95.960691],[-119.732275,-95.960691],[-119.102845,-98.032961],[-118.473425,-100.433761],[-117.842818,-100.677136],[-116.040515,-100.762291],[-114.049028,-100.677715],[-113.775763,-100.525615],[-113.800705,-100.259081],[-117.437475,-86.836421],[-117.639915,-85.757291],[-115.237625,-85.757291],[-112.835335,-85.757291],[-113.140035,-84.556891],[-113.444725,-83.356491],[-120.644025,-83.356491],[-127.843315,-83.356491],[-127.632625,-84.479581],[-127.632625,-84.479581]];
path3347_75_points = [[-143.846035,-84.173761],[-143.473245,-85.532221],[-143.488478,-86.236366],[-144.378675,-86.357491],[-145.450665,-86.357491],[-143.542435,-91.984371],[-141.425505,-98.136421],[-141.013861,-98.533747],[-140.174425,-98.661591],[-139.224944,-98.856952],[-138.660505,-99.861991],[-138.188975,-101.062391],[-133.883045,-101.062391],[-129.577125,-100.957121],[-129.917815,-99.874551],[-129.942225,-98.715070],[-128.771525,-98.366091],[-128.115975,-98.361091],[-128.752005,-96.485461],[-130.626585,-90.408431],[-131.865145,-86.207031],[-133.072635,-86.117131],[-134.137468,-85.871216],[-134.554495,-84.916731],[-134.828875,-83.806201],[-139.440575,-83.723201],[-143.333475,-83.732107],[-143.845760,-83.881678],[-143.846035,-84.173351],[-143.846035,-84.173761]];
path3347_76_points = [[-60.438875,-111.865991],[-60.246915,-113.066391],[-61.450865,-113.066391],[-62.654815,-113.338551],[-60.672945,-123.945021],[-60.289163,-124.350201],[-59.371845,-124.470201],[-58.361783,-124.636713],[-58.038075,-125.670601],[-57.846115,-126.871001],[-53.171735,-126.871001],[-48.497355,-126.871001],[-48.700165,-125.670601],[-48.902965,-124.470201],[-47.683695,-124.470201],[-46.657586,-124.353241],[-46.608135,-123.644921],[-47.203925,-119.068401],[-47.976544,-113.632697],[-48.406909,-113.091193],[-49.173145,-113.066391],[-50.209709,-112.902128],[-50.535565,-111.865991],[-50.727525,-110.665591],[-55.679175,-110.665591],[-60.630825,-110.665591],[-60.438875,-111.865991],[-60.438875,-111.865991]];
path3347_77_points = [[-43.148305,-111.391301],[-43.077293,-112.307387],[-42.731666,-112.810493],[-40.421015,-113.066391],[-38.863187,-113.086565],[-38.089555,-113.464052],[-37.773941,-114.674304],[-37.590165,-117.192771],[-37.401345,-119.968701],[-38.661795,-119.968701],[-39.737444,-120.088552],[-39.734675,-120.906511],[-39.547105,-122.106911],[-38.372315,-122.369501],[-37.197515,-122.369501],[-36.986605,-124.620251],[-36.775695,-126.871001],[-34.410145,-126.871001],[-32.592939,-126.784277],[-32.050935,-126.495871],[-32.496535,-119.818651],[-32.940355,-113.291471],[-30.394055,-113.066391],[-27.843205,-113.066391],[-27.843205,-112.053561],[-28.001593,-111.180102],[-28.781025,-110.853161],[-36.433575,-110.665591],[-43.148305,-110.665591],[-43.148305,-111.391301],[-43.148305,-111.391301]];
path3347_78_points = [[-20.534205,-111.120751],[-20.566405,-112.321151],[-20.623980,-112.952656],[-21.592145,-113.066391],[-22.499983,-113.180311],[-22.928285,-113.504051],[-22.843885,-119.280971],[-22.591495,-124.620251],[-21.483865,-124.712351],[-20.538999,-124.943357],[-20.283465,-125.762701],[-20.190665,-126.720971],[-15.539115,-126.720971],[-10.887565,-126.720971],[-10.956765,-124.770321],[-11.211265,-118.482901],[-11.264964,-114.945720],[-11.055495,-113.007861],[-10.867474,-111.993315],[-11.036595,-111.267601],[-11.326597,-110.936657],[-11.986430,-110.756043],[-15.859135,-110.665611],[-19.546683,-110.751156],[-20.534155,-111.120771],[-20.534205,-111.120751]];
path3347_79_points = [[-98.847695,-111.443721],[-98.482955,-112.644121],[-98.498550,-113.253983],[-99.384535,-113.366491],[-100.472085,-113.591571],[-98.620015,-119.293471],[-96.763275,-124.770301],[-95.637615,-124.770301],[-94.636659,-124.938420],[-94.165315,-125.820651],[-93.818675,-126.871001],[-89.490495,-126.871001],[-85.162315,-126.590431],[-85.454985,-125.540081],[-85.557940,-124.879645],[-84.704735,-124.770301],[-83.661815,-124.427461],[-86.551775,-113.891671],[-86.927170,-113.486337],[-87.835935,-113.366491],[-88.853753,-113.188128],[-89.328255,-112.166091],[-89.687905,-110.965691],[-94.359525,-110.965691],[-98.221101,-111.045432],[-98.798813,-111.189846],[-98.847695,-111.443721],[-98.847695,-111.443721]];
path3347_80_points = [[-79.875755,-112.166091],[-79.683805,-113.366491],[-80.772505,-113.366491],[-81.567226,-113.466085],[-81.842565,-113.741621],[-80.399425,-119.368501],[-78.974935,-124.620251],[-77.882595,-124.534151],[-76.894494,-124.633498],[-76.427275,-125.659531],[-76.064305,-126.871001],[-71.583935,-126.871001],[-67.103555,-126.871001],[-67.306365,-125.670601],[-67.509175,-124.470201],[-66.397455,-124.470201],[-65.491628,-124.358797],[-65.421915,-123.794971],[-66.578935,-118.093071],[-67.599785,-113.066391],[-68.878555,-113.066391],[-69.915630,-112.957610],[-70.157315,-112.490741],[-70.244828,-111.615518],[-70.818796,-111.162052],[-75.294665,-110.965691],[-80.067705,-110.965691],[-79.875755,-112.166091],[-79.875755,-112.166091]];
path3347_81_points = [[-131.754015,-111.488881],[-134.080955,-111.591181],[-133.629635,-112.463941],[-133.230296,-113.682247],[-134.071195,-113.966691],[-134.668780,-114.010780],[-134.679521,-114.615447],[-132.035075,-120.340931],[-129.623275,-125.364721],[-128.722795,-125.184631],[-127.865271,-125.228313],[-127.193125,-126.237861],[-126.452913,-127.297676],[-125.144545,-127.469401],[-121.264055,-127.276001],[-118.802935,-127.084401],[-119.238375,-126.242351],[-119.613705,-125.231636],[-118.773525,-125.070401],[-117.873215,-124.973001],[-120.233115,-119.346131],[-122.593005,-113.816631],[-123.658305,-113.725031],[-124.621025,-113.444043],[-125.197285,-112.449611],[-125.670965,-111.265771],[-127.549015,-111.326171],[-131.754015,-111.488861],[-131.754015,-111.488881]];
path3347_82_points = [[-116.816385,-111.790971],[-116.449195,-112.991371],[-116.490898,-113.549151],[-117.238035,-113.666591],[-118.173325,-113.797531],[-115.044995,-121.694271],[-113.666326,-124.644338],[-113.203844,-125.016132],[-112.588475,-125.070401],[-111.655759,-125.258736],[-111.060535,-126.120751],[-110.559655,-127.171101],[-106.409805,-127.171101],[-102.259965,-127.171101],[-102.714145,-126.084101],[-103.168315,-124.901811],[-102.169025,-124.713391],[-101.169745,-124.620291],[-103.144355,-118.998041],[-105.118965,-113.375801],[-106.221075,-113.370801],[-107.200415,-113.196305],[-107.669815,-112.315811],[-108.016465,-111.265461],[-112.526795,-111.265461],[-116.315646,-111.345546],[-116.820190,-111.503263],[-116.816385,-111.790641],[-116.816385,-111.790971]];
path3347_83_points = [[-22.216335,-136.038041],[-22.441405,-137.274471],[-22.441405,-138.274801],[-20.190655,-138.274801],[-17.939905,-138.274801],[-17.939905,-141.256781],[-17.939905,-144.238771],[-18.915235,-144.332771],[-19.739146,-144.575285],[-19.890555,-145.477161],[-19.740221,-146.377813],[-18.929085,-146.620521],[-18.078125,-146.937008],[-17.878735,-148.571171],[-17.789835,-150.428811],[-15.689135,-150.428811],[-13.588435,-150.428811],[-13.393145,-147.877961],[-13.168075,-141.968241],[-13.138275,-138.609371],[-11.862855,-138.517071],[-10.748212,-138.284283],[-10.494285,-137.299411],[-10.401185,-136.174041],[-12.895125,-136.173041],[-18.690165,-135.986961],[-22.216345,-136.038361],[-22.216335,-136.038041]];
path3347_84_points = [[-89.963915,-136.446191],[-89.671245,-137.505011],[-89.543035,-138.150411],[-90.103685,-138.274801],[-91.010595,-138.568951],[-89.002625,-143.664141],[-86.967171,-147.853538],[-86.432842,-148.388300],[-85.832685,-148.471691],[-84.945155,-148.668272],[-84.366025,-149.498371],[-83.879545,-150.518531],[-80.244505,-150.358601],[-76.526045,-150.130301],[-76.743695,-149.270071],[-76.867518,-148.593343],[-76.126875,-148.478201],[-75.309035,-148.199091],[-77.209665,-143.101451],[-79.010265,-138.282921],[-80.092225,-138.278921],[-81.040474,-138.112907],[-81.453515,-137.299531],[-81.732825,-136.324211],[-85.848375,-136.240711],[-89.963915,-136.446241],[-89.963915,-136.446191]];
path3347_85_points = [[-72.990025,-137.216121],[-72.945576,-138.130668],[-73.725115,-138.274801],[-74.658815,-138.538921],[-71.546495,-147.381431],[-71.000564,-148.279286],[-70.146555,-148.478201],[-69.321080,-148.652028],[-68.865055,-149.378501],[-68.525225,-150.278801],[-64.547095,-150.278801],[-60.568965,-150.278801],[-60.861635,-149.509011],[-61.088184,-148.600707],[-60.254015,-148.478201],[-59.609128,-148.372247],[-59.357705,-148.103071],[-60.659725,-143.076401],[-61.957765,-138.424851],[-63.052595,-138.331951],[-63.999082,-138.087651],[-64.395145,-137.281601],[-64.642875,-136.324161],[-68.915755,-136.240761],[-73.188635,-136.157361],[-72.990025,-137.216051],[-72.990025,-137.216121]];
path3347_86_points = [[-55.660595,-137.224121],[-55.649236,-138.135445],[-56.521625,-138.274471],[-57.553115,-138.507071],[-55.421315,-147.202441],[-54.983698,-148.007187],[-54.092285,-148.177771],[-53.208903,-148.345140],[-52.881765,-149.228121],[-52.684715,-150.278471],[-48.644145,-150.278471],[-44.603575,-150.278471],[-44.701175,-149.303141],[-44.633584,-148.459878],[-43.796245,-148.231751],[-43.000544,-148.035917],[-42.948415,-147.481501],[-43.787695,-142.550891],[-44.472215,-138.274471],[-45.577445,-138.274471],[-46.544589,-138.114790],[-46.879715,-137.224121],[-47.076765,-136.173771],[-51.453885,-136.173771],[-55.831005,-136.173771],[-55.660555,-137.224121],[-55.660595,-137.224121]];
path3347_87_points = [[-40.204265,-137.224121],[-40.081645,-138.274471],[-37.897125,-138.274471],[-35.712605,-138.274471],[-35.545535,-139.249791],[-35.177075,-142.250791],[-34.975685,-144.276471],[-36.095995,-144.276471],[-37.007935,-144.384611],[-37.035355,-144.951691],[-36.850305,-146.002041],[-36.564311,-146.274701],[-35.809455,-146.377171],[-35.152228,-146.448616],[-34.765638,-146.805270],[-34.374605,-149.228121],[-34.046653,-150.024726],[-32.269685,-150.217161],[-30.244005,-150.305861],[-30.248005,-149.466881],[-30.696935,-143.826291],[-31.143525,-138.649561],[-30.619545,-138.361928],[-28.894005,-138.274441],[-27.011618,-138.180246],[-26.643255,-137.698781],[-26.737196,-136.806815],[-27.479115,-136.355213],[-33.667455,-136.173741],[-40.327335,-136.173741],[-40.204715,-137.224091],[-40.204265,-137.224121]];
path3347_88_points = [[-106.169315,-136.638821],[-105.711465,-137.689171],[-105.253605,-138.574571],[-106.167705,-138.574571],[-107.081815,-138.574571],[-106.446025,-139.849991],[-103.688295,-144.951691],[-101.737709,-148.225608],[-101.200131,-148.690406],[-100.631435,-148.777971],[-99.781573,-148.967920],[-99.164705,-149.678271],[-98.632885,-150.578571],[-95.016545,-150.578571],[-91.994488,-150.497136],[-91.595999,-150.339250],[-91.616405,-150.053391],[-91.998865,-148.749777],[-91.371435,-148.477871],[-90.975920,-148.392153],[-91.013051,-147.842905],[-92.953995,-143.601241],[-95.115536,-139.375615],[-95.691715,-138.758649],[-96.308055,-138.574571],[-97.197676,-138.250413],[-97.766515,-137.455691],[-98.216665,-136.486861],[-102.192995,-136.480861],[-106.169315,-136.639321],[-106.169315,-136.638821]];
path3347_89_points = [[105.701315,-157.868591],[99.599585,-163.555641],[92.936889,-168.442572],[85.956416,-172.372227],[78.901355,-175.187451],[70.681405,-177.781561],[64.698879,-180.004602],[60.667125,-182.150641],[58.431505,-184.797681],[56.214381,-187.438362],[53.142115,-189.557261],[49.727625,-191.113400],[45.510677,-192.422128],[40.693397,-193.431581],[35.477905,-194.089891],[28.125445,-194.875751],[21.672424,-195.312051],[17.173775,-195.008371],[15.926635,-194.694041],[15.688755,-201.451551],[15.738491,-207.199310],[15.894584,-208.128866],[16.185645,-208.428881],[21.932236,-208.614305],[29.926045,-208.116261],[37.278505,-207.295821],[44.716462,-206.286153],[51.284276,-204.690793],[57.084160,-202.478270],[62.218325,-199.617111],[65.873869,-196.622702],[68.789005,-193.401711],[69.648337,-192.534916],[71.287287,-191.684463],[79.012815,-189.157081],[86.650222,-186.642933],[92.797005,-183.866331],[100.123719,-179.646250],[107.201815,-174.599931],[113.955787,-168.480117],[118.305515,-163.839731],[109.002415,-155.199641],[108.657662,-155.162714],[108.081679,-155.523180],[105.701315,-157.868591],[105.701315,-157.868591]];
path3347_90_points = [[-108.870215,-161.879331],[-114.810975,-167.379011],[-111.994545,-170.299732],[-106.919565,-174.742331],[-100.937458,-179.035310],[-94.615465,-182.900121],[-87.861163,-186.195221],[-79.522065,-188.991661],[-71.971830,-191.457375],[-69.132915,-192.863001],[-65.898513,-196.348518],[-61.604465,-199.948501],[-56.897499,-202.546948],[-51.350710,-204.668718],[-45.116358,-206.265747],[-38.346705,-207.289971],[-29.524895,-208.244201],[-23.500866,-208.721892],[-18.515793,-208.679963],[-14.366763,-208.104707],[-10.850865,-206.982411],[-9.448115,-206.381121],[-9.611455,-199.449201],[-9.826011,-193.918886],[-10.181125,-192.235561],[-16.439405,-192.095741],[-21.813456,-192.097302],[-26.192655,-191.806731],[-34.723845,-190.929031],[-39.786002,-190.308235],[-44.076312,-189.486687],[-47.709079,-188.437396],[-50.798605,-187.133371],[-53.836871,-185.196848],[-56.004965,-182.620591],[-58.234303,-179.938724],[-61.679172,-177.736447],[-67.610873,-175.398137],[-77.300705,-172.308171],[-80.000764,-171.387738],[-80.539585,-170.924251],[-80.408862,-170.663372],[-80.619388,-170.095431],[-82.364115,-167.470631],[-86.662815,-160.947201],[-85.362385,-160.782731],[-83.888985,-160.609771],[-84.214095,-159.561321],[-84.712165,-158.685831],[-89.888895,-158.683831],[-95.065615,-158.860701],[-94.550765,-159.911051],[-93.852756,-160.645632],[-92.355105,-160.782531],[-90.674295,-160.782531],[-89.118705,-163.010531],[-87.563115,-165.411331],[-88.013265,-165.584131],[-88.453435,-165.959261],[-87.783937,-167.087081],[-86.561465,-167.684831],[-85.241441,-168.419055],[-84.735653,-168.991787],[-84.671635,-169.394891],[-87.984167,-167.664186],[-93.105595,-164.449351],[-96.200535,-161.684821],[-96.978675,-160.805716],[-97.685865,-160.493821],[-98.739815,-159.949286],[-100.423255,-158.531781],[-102.754665,-156.599611],[-108.870215,-161.879131],[-108.870215,-161.879331]];
path3347_91_points = [[-66.331035,-158.588801],[-66.818890,-158.842990],[-66.547625,-159.754711],[-66.041888,-160.430655],[-64.484935,-160.383021],[-62.730835,-160.199681],[-61.756215,-162.516881],[-60.635745,-165.209211],[-60.729938,-165.487322],[-61.272255,-165.584331],[-62.000736,-165.717947],[-61.706345,-166.620561],[-61.243550,-167.212318],[-60.502685,-167.384931],[-59.655378,-167.675726],[-58.837785,-169.035481],[-58.028275,-170.686031],[-56.408135,-170.686031],[-55.191313,-170.601127],[-54.949805,-170.310911],[-58.828715,-160.357771],[-57.052945,-160.182531],[-55.452415,-160.052021],[-55.745085,-159.151721],[-56.037755,-158.381931],[-60.921805,-158.416731],[-66.331035,-158.588791],[-66.331035,-158.588801]];
path3347_92_points = [[-50.350715,-158.503501],[-50.058035,-159.412761],[-49.942657,-160.067435],[-50.658235,-160.182551],[-51.551115,-160.407271],[-50.175775,-164.758721],[-48.872637,-168.322525],[-48.460023,-168.803314],[-47.954385,-168.885451],[-47.216323,-169.068143],[-46.794475,-169.785751],[-46.480635,-170.686051],[-43.140075,-170.686051],[-39.799525,-170.686051],[-39.997255,-169.785751],[-40.040509,-169.028570],[-39.420905,-168.885451],[-38.646805,-168.617521],[-39.547105,-164.383951],[-40.447405,-160.319441],[-41.410945,-160.126541],[-42.208419,-159.894315],[-42.549405,-159.282251],[-42.712735,-158.848923],[-43.186831,-158.616697],[-46.537525,-158.448011],[-50.350715,-158.503511],[-50.350715,-158.503501]];
path3347_93_points = [[-34.942425,-159.272991],[-34.921411,-160.046378],[-35.653315,-160.182551],[-36.272148,-160.251276],[-36.492423,-160.765951],[-35.789995,-164.984151],[-35.046755,-168.810431],[-34.182825,-168.885431],[-33.447181,-169.055431],[-33.137995,-169.795611],[-32.955965,-170.705791],[-29.574315,-170.620891],[-26.192655,-170.535991],[-26.289155,-169.710721],[-26.219038,-169.019250],[-25.455515,-168.885441],[-24.525385,-168.885441],[-24.704435,-167.009821],[-25.087915,-162.733391],[-25.292345,-160.332591],[-26.249445,-160.239891],[-27.041136,-160.010301],[-27.299795,-159.339591],[-27.393095,-158.531971],[-31.258735,-158.447671],[-35.124375,-158.363371],[-34.942465,-159.272931],[-34.942425,-159.272991]];
path3347_94_points = [[-19.531915,-158.573491],[-19.740505,-159.482321],[-19.916504,-160.051781],[-20.682925,-160.182551],[-21.625345,-160.182551],[-21.408605,-164.452371],[-21.048675,-168.953871],[-20.193815,-169.185551],[-19.624705,-169.341868],[-19.386255,-169.860781],[-19.259282,-170.242604],[-18.815120,-170.454168],[-15.764185,-170.620551],[-12.238005,-170.705051],[-12.238005,-169.945281],[-12.062474,-169.316530],[-11.220185,-169.185501],[-10.476049,-169.082340],[-10.077929,-168.479011],[-9.854685,-164.008781],[-9.817185,-160.182501],[-10.707565,-160.182501],[-11.450891,-160.029936],[-11.692895,-159.357231],[-11.787895,-158.531951],[-15.555625,-158.448351],[-19.531955,-158.573391],[-19.531915,-158.573491]];
path3347_95_points = [[-81.261015,-158.915381],[-80.793845,-159.815681],[-80.093056,-160.358505],[-78.618125,-160.489961],[-76.909565,-160.496961],[-75.522905,-162.965481],[-74.406293,-165.128500],[-74.462950,-165.432450],[-74.847685,-165.528951],[-75.512645,-165.770470],[-75.074445,-166.644951],[-74.500509,-167.200756],[-73.746025,-167.384651],[-72.883631,-167.690408],[-71.957915,-169.035201],[-71.013565,-170.685751],[-69.360565,-170.685751],[-67.707565,-170.685751],[-68.292505,-169.710421],[-73.158315,-160.640971],[-71.500055,-160.482361],[-69.841805,-160.482361],[-70.307365,-159.582061],[-70.772925,-158.681761],[-76.016975,-158.681761],[-81.261015,-158.915091],[-81.261015,-158.915381]];
path3347_96_points = [[-54.478455,-177.508061],[-55.532993,-177.717026],[-55.571295,-178.355921],[-55.533205,-178.928497],[-55.870025,-179.088851],[-56.352715,-179.300911],[-54.211015,-182.752061],[-52.360139,-185.338341],[-51.370615,-185.991151],[-50.350715,-186.591351],[-49.651499,-187.089316],[-47.489205,-187.191551],[-45.194061,-187.033690],[-45.001080,-186.777628],[-45.309035,-186.351271],[-45.451370,-186.066177],[-44.983925,-185.991151],[-44.398725,-185.756151],[-46.236665,-182.154951],[-47.800959,-179.377545],[-48.271181,-178.904355],[-48.719915,-178.788751],[-49.355335,-178.609496],[-49.750515,-178.038501],[-50.243501,-177.416752],[-51.618705,-177.340681],[-54.478455,-177.508061],[-54.478455,-177.508061]];
path3347_97_points = [[-43.675065,-178.038501],[-43.678120,-178.632221],[-44.090225,-178.788751],[-44.508711,-178.900158],[-44.538020,-179.410945],[-43.182665,-182.690051],[-41.860831,-185.305448],[-40.961435,-185.934681],[-40.344701,-186.165311],[-39.991375,-186.609901],[-39.396468,-187.094856],[-37.154185,-187.191551],[-34.911476,-187.104001],[-34.633728,-186.924251],[-34.658555,-186.591351],[-34.661840,-186.134722],[-34.330355,-185.991151],[-33.973078,-185.891476],[-33.914414,-185.400243],[-34.845075,-182.089851],[-35.804936,-179.411286],[-36.173521,-178.979822],[-36.639015,-178.843911],[-37.296570,-178.597585],[-37.628265,-178.018641],[-37.789423,-177.603754],[-38.189386,-177.386101],[-40.815025,-177.288251],[-43.818475,-177.288251],[-43.675065,-178.038501],[-43.675065,-178.038501]];
path3347_98_points = [[-32.944905,-178.030501],[-32.720640,-178.675822],[-31.436985,-178.788561],[-30.409713,-178.870788],[-29.794858,-179.256938],[-29.433543,-180.156212],[-29.166895,-181.777811],[-29.094054,-183.068375],[-29.637255,-183.290061],[-30.114599,-183.397800],[-30.126065,-183.764761],[-29.943905,-184.364961],[-29.236295,-184.490461],[-28.610991,-184.729101],[-28.260975,-185.765891],[-27.855885,-186.880028],[-26.717835,-187.133601],[-25.860448,-187.165913],[-25.512223,-186.779698],[-26.042605,-182.839911],[-26.642805,-179.058841],[-25.121435,-178.788561],[-23.848188,-178.684958],[-23.695965,-178.113341],[-23.834483,-177.726916],[-24.384140,-177.516420],[-28.368385,-177.355271],[-32.944905,-177.272471],[-32.944905,-178.030541],[-32.944905,-178.030501]];
path3347_99_points = [[-19.140305,-178.028501],[-19.293700,-178.642113],[-19.934595,-178.788971],[-20.728875,-178.788971],[-20.534795,-181.085001],[-20.340705,-184.686201],[-20.223770,-185.782096],[-19.611325,-185.991371],[-19.026753,-186.145716],[-18.786055,-186.666601],[-18.672430,-187.043298],[-18.319590,-187.245272],[-16.002785,-187.341821],[-13.720548,-187.245458],[-13.151835,-186.741621],[-12.864224,-186.311921],[-12.388055,-186.141421],[-12.054727,-186.051896],[-11.864355,-185.596337],[-11.703595,-182.465201],[-11.717389,-179.478543],[-12.057845,-178.788971],[-12.592255,-178.113751],[-12.715892,-177.733794],[-13.129936,-177.521800],[-15.914235,-177.353351],[-19.140305,-177.268151],[-19.140305,-178.028551],[-19.140305,-178.028501]];
rotate([0,0,90]) scale([profile_scale, -profile_scale, 1])
union() {
linear_extrude(height=h)
polygon(path3347_0_points);
linear_extrude(height=h)
polygon(path3347_1_points);
linear_extrude(height=h)
polygon(path3347_2_points);
linear_extrude(height=h)
polygon(path3347_3_points);
linear_extrude(height=h)
polygon(path3347_4_points);
linear_extrude(height=h)
polygon(path3347_5_points);
linear_extrude(height=h)
polygon(path3347_6_points);
linear_extrude(height=h)
polygon(path3347_7_points);
linear_extrude(height=h)
polygon(path3347_8_points);
linear_extrude(height=h)
polygon(path3347_9_points);
linear_extrude(height=h)
polygon(path3347_10_points);
linear_extrude(height=h)
polygon(path3347_11_points);
linear_extrude(height=h)
polygon(path3347_12_points);
linear_extrude(height=h)
polygon(path3347_13_points);
linear_extrude(height=h)
polygon(path3347_14_points);
linear_extrude(height=h)
polygon(path3347_15_points);
linear_extrude(height=h)
polygon(path3347_16_points);
linear_extrude(height=h)
polygon(path3347_17_points);
linear_extrude(height=h)
polygon(path3347_18_points);
linear_extrude(height=h)
polygon(path3347_19_points);
linear_extrude(height=h)
polygon(path3347_20_points);
linear_extrude(height=h)
polygon(path3347_21_points);
linear_extrude(height=h)
polygon(path3347_22_points);
linear_extrude(height=h)
polygon(path3347_23_points);
linear_extrude(height=h)
polygon(path3347_24_points);
linear_extrude(height=h)
polygon(path3347_25_points);
linear_extrude(height=h)
polygon(path3347_26_points);
linear_extrude(height=h)
polygon(path3347_27_points);
linear_extrude(height=h)
polygon(path3347_28_points);
linear_extrude(height=h)
polygon(path3347_29_points);
linear_extrude(height=h)
polygon(path3347_30_points);
linear_extrude(height=h)
polygon(path3347_31_points);
linear_extrude(height=h)
polygon(path3347_32_points);
linear_extrude(height=h)
polygon(path3347_33_points);
linear_extrude(height=h)
polygon(path3347_34_points);
linear_extrude(height=h)
polygon(path3347_35_points);
linear_extrude(height=h)
polygon(path3347_36_points);
linear_extrude(height=h)
polygon(path3347_37_points);
linear_extrude(height=h)
polygon(path3347_38_points);
linear_extrude(height=h)
polygon(path3347_39_points);
linear_extrude(height=h)
polygon(path3347_40_points);
linear_extrude(height=h)
polygon(path3347_41_points);
linear_extrude(height=h)
polygon(path3347_42_points);
linear_extrude(height=h)
polygon(path3347_43_points);
linear_extrude(height=h)
polygon(path3347_44_points);
linear_extrude(height=h)
polygon(path3347_45_points);
linear_extrude(height=h)
polygon(path3347_46_points);
linear_extrude(height=h)
polygon(path3347_47_points);
linear_extrude(height=h)
polygon(path3347_48_points);
linear_extrude(height=h)
polygon(path3347_49_points);
linear_extrude(height=h)
polygon(path3347_50_points);
linear_extrude(height=h)
polygon(path3347_51_points);
linear_extrude(height=h)
polygon(path3347_52_points);
linear_extrude(height=h)
polygon(path3347_53_points);
linear_extrude(height=h)
polygon(path3347_54_points);
linear_extrude(height=h)
polygon(path3347_55_points);
linear_extrude(height=h)
polygon(path3347_56_points);
linear_extrude(height=h)
polygon(path3347_57_points);
linear_extrude(height=h)
polygon(path3347_58_points);
linear_extrude(height=h)
polygon(path3347_59_points);
linear_extrude(height=h)
polygon(path3347_60_points);
linear_extrude(height=h)
polygon(path3347_61_points, path3347_61_paths);
linear_extrude(height=h)
polygon(path3347_62_points);
linear_extrude(height=h)
polygon(path3347_63_points);
linear_extrude(height=h)
polygon(path3347_64_points);
linear_extrude(height=h)
polygon(path3347_65_points);
linear_extrude(height=h)
polygon(path3347_66_points);
linear_extrude(height=h)
polygon(path3347_67_points);
linear_extrude(height=h)
polygon(path3347_68_points);
linear_extrude(height=h)
polygon(path3347_69_points);
linear_extrude(height=h)
polygon(path3347_70_points);
linear_extrude(height=h)
polygon(path3347_71_points);
linear_extrude(height=h)
polygon(path3347_72_points);
linear_extrude(height=h)
polygon(path3347_73_points);
linear_extrude(height=h)
polygon(path3347_74_points);
linear_extrude(height=h)
polygon(path3347_75_points);
linear_extrude(height=h)
polygon(path3347_76_points);
linear_extrude(height=h)
polygon(path3347_77_points);
linear_extrude(height=h)
polygon(path3347_78_points);
linear_extrude(height=h)
polygon(path3347_79_points);
linear_extrude(height=h)
polygon(path3347_80_points);
linear_extrude(height=h)
polygon(path3347_81_points);
linear_extrude(height=h)
polygon(path3347_82_points);
linear_extrude(height=h)
polygon(path3347_83_points);
linear_extrude(height=h)
polygon(path3347_84_points);
linear_extrude(height=h)
polygon(path3347_85_points);
linear_extrude(height=h)
polygon(path3347_86_points);
linear_extrude(height=h)
polygon(path3347_87_points);
linear_extrude(height=h)
polygon(path3347_88_points);
linear_extrude(height=h)
polygon(path3347_89_points);
linear_extrude(height=h)
polygon(path3347_90_points);
linear_extrude(height=h)
polygon(path3347_91_points);
linear_extrude(height=h)
polygon(path3347_92_points);
linear_extrude(height=h)
polygon(path3347_93_points);
linear_extrude(height=h)
polygon(path3347_94_points);
linear_extrude(height=h)
polygon(path3347_95_points);
linear_extrude(height=h)
polygon(path3347_96_points);
linear_extrude(height=h)
polygon(path3347_97_points);
linear_extrude(height=h)
polygon(path3347_98_points);
linear_extrude(height=h)
polygon(path3347_99_points);
}
}
module design_pine64_old(h, w, res=4) {
profile_scale = 25.4/90; //made in inkscape in mm
path4200_0_points = [[-8.510838,116.218740],[-8.772501,105.616272],[-9.302988,100.135870],[-9.727370,99.431046],[-10.650536,98.628041],[-15.227261,96.131282],[-43.940548,83.401360],[-53.878335,79.020251],[-59.311761,76.325170],[-61.633781,74.505167],[-62.063312,73.669897],[-62.237348,72.749290],[-62.291285,71.613838],[-61.981038,70.607522],[-60.993550,69.555064],[-59.015766,68.281185],[-50.837086,64.368043],[-34.940548,57.465860],[-10.165508,46.592800],[-5.300309,44.674430],[-1.040759,43.667256],[2.528549,43.583072],[5.323022,44.433670],[11.696730,47.404729],[35.059452,57.476720],[51.055971,64.386704],[59.209136,68.222766],[61.170558,69.436923],[62.162459,70.421213],[62.515277,71.355176],[62.559452,72.418350],[62.402229,74.230293],[61.867559,74.981909],[60.728282,75.811819],[55.734198,78.250112],[45.616562,82.632360],[22.559452,92.734520],[12.809452,97.024810],[8.559452,98.853640],[8.559452,114.661190],[8.559452,130.468740],[0.059452,130.468740],[-8.440548,130.468740],[-8.510848,116.218740],[-8.510838,116.218740],[6.291662,105.218740],[6.143028,104.239248],[6.021310,104.714052],[5.908862,109.468740],[6.021310,114.223427],[6.143028,114.698232],[6.291662,113.718740],[6.449560,109.468740],[6.291662,105.218740],[6.291662,105.218740]];
path4200_0_paths = [[0,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]];
path4200_1_points = [[-73.795128,65.718740],[-82.441658,45.968740],[-93.561398,20.619450],[-96.198080,14.069265],[-97.428755,8.964862],[-97.503901,7.062278],[-97.212017,5.650076],[-96.547928,4.771237],[-95.506458,4.468740],[-93.790016,4.701018],[-90.076700,5.990937],[-67.440548,15.302200],[-17.440548,36.086280],[-14.581197,37.363683],[-12.868271,38.468805],[-11.990664,39.679797],[-11.637268,41.274810],[-11.560355,42.374049],[-11.728667,43.295844],[-12.357422,44.171906],[-13.661841,45.133945],[-19.158549,47.842796],[-29.940548,52.476080],[-46.940548,59.989610],[-59.356747,65.525361],[-63.722937,67.178563],[-67.083199,68.136012],[-69.604041,68.433232],[-71.451970,68.105745],[-72.793497,67.189074],[-73.795128,65.718740],[-73.795128,65.718740]];
path4200_2_points = [[52.559452,62.414690],[27.059452,51.259680],[13.809452,45.180000],[12.926640,43.552473],[12.559452,40.982150],[12.693186,39.180199],[13.311910,37.974346],[14.741904,37.020661],[17.309452,35.975210],[38.059452,27.445870],[61.559452,17.640580],[81.459652,9.534060],[90.760680,5.956676],[95.709652,4.468740],[96.852624,4.782056],[97.460801,5.798884],[97.503901,7.634544],[96.951644,10.404359],[93.939933,19.207732],[88.183422,33.131570],[79.187216,53.983930],[74.323831,64.426852],[72.842368,66.867671],[71.674617,68.053606],[70.580745,68.433816],[69.320922,68.457460],[66.991654,67.981032],[63.069036,66.687922],[52.559452,62.414690],[52.559452,62.414690]];
path4200_3_points = [[-13.440548,34.872070],[-26.940548,28.999650],[-36.440548,25.102220],[-56.440548,16.696240],[-63.902864,13.402724],[-67.986045,11.288436],[-69.745273,9.681248],[-70.235728,7.909030],[-70.289155,6.916192],[-70.056513,6.054967],[-69.280347,5.180795],[-67.703201,4.149117],[-61.116153,1.035007],[-48.235728,-4.443840],[-20.940548,-16.094010],[-6.521795,-22.244799],[-2.902694,-23.281251],[-0.069528,-23.531260],[3.521653,-22.825789],[10.218450,-20.512430],[36.056042,-9.880380],[59.040491,0.058281],[69.360012,4.784030],[70.190237,6.240421],[70.360012,8.318720],[69.928268,9.708834],[68.786674,10.916090],[66.606609,12.185514],[63.059452,13.762130],[48.059452,20.169150],[38.059452,24.460510],[14.059452,34.531590],[4.783364,38.377224],[1.869997,39.204158],[-0.312668,39.443740],[-5.252985,38.090515],[-13.440548,34.872070],[-13.440548,34.872070]];
path4200_4_points = [[-84.440548,-26.531260],[-84.440548,-57.531260],[-80.256268,-57.531260],[-76.106818,-56.969701],[-72.006268,-55.619570],[-43.440548,-43.032130],[-21.690548,-33.410940],[-17.151069,-31.209548],[-14.676289,-29.667593],[-13.646138,-28.263964],[-13.440548,-26.477550],[-13.681459,-24.488897],[-14.314132,-23.637506],[-15.582979,-22.699050],[-20.913283,-20.013868],[-31.440548,-15.339210],[-39.940548,-11.528890],[-55.940548,-4.524760],[-72.135688,2.558810],[-76.289615,3.907697],[-80.385688,4.468740],[-84.440548,4.468740],[-84.440548,-26.531260],[-84.440548,-26.531260],[-80.440548,0.468740],[-80.751635,-0.237510],[-81.499568,-0.531260],[-82.065950,-0.237510],[-81.940548,0.468740],[-80.881528,1.468740],[-80.570085,1.174990],[-80.440548,0.468740],[-80.440548,0.468740],[-80.440548,-52.031260],[-80.734298,-53.090635],[-81.440548,-53.531260],[-82.146798,-53.090635],[-82.440548,-52.031260],[-82.146798,-50.971885],[-81.440548,-50.531260],[-80.734298,-50.971885],[-80.440548,-52.031260],[-80.440548,-52.031260]];
path4200_4_paths = [[0,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]];
path4200_5_points = [[69.059452,1.509970],[56.897107,-4.094057],[42.059452,-10.531260],[17.320922,-21.334470],[15.351728,-22.343280],[14.218881,-23.341610],[13.699554,-24.639093],[13.570922,-26.545360],[13.688039,-28.489822],[14.244244,-29.793819],[15.523420,-30.817366],[17.809452,-31.920480],[36.559452,-40.015710],[57.559452,-49.282760],[65.946383,-53.076201],[72.243770,-55.633332],[76.785216,-57.077303],[79.904322,-57.531260],[81.727668,-57.431921],[82.842109,-57.005939],[83.495189,-56.061367],[83.934452,-54.406260],[84.375859,-44.010947],[84.559452,-23.406260],[84.559452,4.468740],[79.809452,4.414940],[77.381780,4.204901],[74.736672,3.638781],[69.059452,1.509990],[69.059452,1.509970],[82.305662,-37.281260],[82.180852,-39.758799],[82.078641,-38.557823],[81.984212,-26.531260],[82.078641,-14.504698],[82.180852,-13.303721],[82.305662,-15.781260],[82.305662,-37.281260],[82.305662,-37.281260]];
path4200_5_paths = [[0,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]];
path4200_6_points = [[-9.940548,-31.272450],[-26.940548,-38.594160],[-49.440548,-48.194860],[-55.927869,-50.987450],[-59.397554,-52.815464],[-60.842489,-54.360306],[-61.255558,-56.303380],[-61.310012,-57.486171],[-61.098422,-58.492890],[-60.436835,-59.442411],[-59.141296,-60.453609],[-53.912549,-63.136530],[-43.940548,-67.492650],[-11.471081,-81.053643],[-3.843932,-83.759610],[0.064572,-84.531260],[4.485933,-83.487598],[12.892181,-80.459696],[24.883345,-75.602179],[40.059452,-69.069670],[58.832132,-61.193440],[60.256247,-60.345506],[61.135397,-59.014574],[61.448072,-57.256394],[61.172762,-55.126720],[60.284315,-53.667234],[57.898705,-52.014180],[53.310663,-49.773801],[45.814922,-46.552340],[28.059452,-38.991290],[19.085601,-35.079934],[10.521780,-31.750874],[3.594823,-29.449986],[-0.468438,-28.623150],[-4.683115,-29.439274],[-9.940548,-31.272450],[-9.940548,-31.272450]];