forked from KiCad/kicad-packages3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DE170-XX-XX.wrl
7928 lines (7927 loc) · 818 KB
/
DE170-XX-XX.wrl
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
#VRML V2.0 utf8
#kicad StepUp wrl exported
Shape {
appearance Appearance {material DEF PIN-01 Material {
ambientIntensity 0.271
diffuseColor 0.824 0.820 0.781
specularColor 0.328 0.258 0.172
emissiveColor 0.0 0.0 0.0
shininess 0.70
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF MET-01 Material {
ambientIntensity 0.249999
diffuseColor 0.298 0.298 0.298
specularColor 0.398 0.398 0.398
emissiveColor 0.0 0.0 0.0
shininess 0.056122
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF PIN-02 Material {
ambientIntensity 0.379
diffuseColor 0.859 0.738 0.496
specularColor 0.137 0.145 0.184
emissiveColor 0.0 0.0 0.0
shininess 0.40
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF IC-BODY-EPOXY-04 Material {
ambientIntensity 0.293
diffuseColor 0.148 0.145 0.145
specularColor 0.180 0.168 0.160
emissiveColor 0.0 0.0 0.0
shininess 0.35
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF RES-SMD-01 Material {
diffuseColor 0.082 0.086 0.094
emissiveColor 0.000 0.000 0.000
specularColor 0.066 0.063 0.063
ambientIntensity 0.638
transparency 0.0
shininess 0.3
}
}
}
Shape {
appearance Appearance {material DEF IC-BODY-EPOXY-01 Material {
ambientIntensity 0.117
diffuseColor 0.250 0.262 0.281
specularColor 0.316 0.281 0.176
emissiveColor 0.0 0.0 0.0
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF CAP-CERAMIC-05 Material {
ambientIntensity 0.179
diffuseColor 0.273 0.273 0.273
specularColor 0.203 0.188 0.176
emissiveColor 0.0 0.0 0.0
shininess 0.15
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF CAP-CERAMIC-06 Material {
ambientIntensity 0.453
diffuseColor 0.379 0.270 0.215
specularColor 0.223 0.223 0.223
emissiveColor 0.0 0.0 0.0
shininess 0.15
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF RES-THT-01 Material {
ambientIntensity 0.149
diffuseColor 0.883 0.711 0.492
specularColor 0.043 0.121 0.281
emissiveColor 0.0 0.0 0.0
shininess 0.40
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF PLASTIC-BLUE-01 Material {
ambientIntensity 0.565
diffuseColor 0.137 0.402 0.727
specularColor 0.359 0.379 0.270
emissiveColor 0.0 0.0 0.0
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF PLASTIC-GREEN-01 Material {
ambientIntensity 0.315
diffuseColor 0.340 0.680 0.445
specularColor 0.176 0.105 0.195
emissiveColor 0.0 0.0 0.0
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF PLASTIC-ORANGE-01 Material {
ambientIntensity 0.284
diffuseColor 0.809 0.426 0.148
specularColor 0.039 0.102 0.145
emissiveColor 0.0 0.0 0.0
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF RED-BODY Material {
ambientIntensity 0.683
diffuseColor 0.700 0.100 0.050
emissiveColor 0.000 0.000 0.000
specularColor 0.300 0.400 0.150
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF CAP-CERAMIC-02 Material {
ambientIntensity 0.683
diffuseColor 0.578 0.336 0.352
specularColor 0.105 0.273 0.270
emissiveColor 0.0 0.0 0.0
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF PLASTIC-YELLOW-01 Material {
ambientIntensity 0.522
diffuseColor 0.832 0.680 0.066
specularColor 0.160 0.203 0.320
emissiveColor 0.0 0.0 0.0
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF PLASTIC-WHITE-01 Material {
ambientIntensity 0.494
diffuseColor 0.895 0.891 0.813
specularColor 0.047 0.055 0.109
emissiveColor 0.0 0.0 0.0
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF IC-LABEL-01 Material {
ambientIntensity 0.082
diffuseColor 0.691 0.664 0.598
specularColor 0.000 0.000 0.000
emissiveColor 0.0 0.0 0.0
shininess 0.01
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF LED-RED Material {
ambientIntensity 0.789
diffuseColor 0.700 0.100 0.050
emissiveColor 0.000 0.000 0.000
specularColor 0.300 0.400 0.150
shininess 0.125
transparency 0.10
}
}
}
Shape {
appearance Appearance {material DEF LED-GREEN Material {
ambientIntensity 0.789
diffuseColor 0.400 0.700 0.150
emissiveColor 0.000 0.000 0.000
specularColor 0.600 0.300 0.100
shininess 0.05
transparency 0.10
}
}
}
Shape {
appearance Appearance {material DEF LED-BLUE Material {
ambientIntensity 0.789
diffuseColor 0.100 0.250 0.700
emissiveColor 0.000 0.000 0.000
specularColor 0.500 0.600 0.300
shininess 0.125
transparency 0.10
}
}
}
Shape {
appearance Appearance {material DEF LED-YELLOW Material {
ambientIntensity 0.522
diffuseColor 0.98 0.840 0.066
specularColor 0.160 0.203 0.320
emissiveColor 0.0 0.0 0.0
shininess 0.125
transparency 0.10
}
}
}
Shape {
appearance Appearance {material DEF LED-WHITE Material {
ambientIntensity 0.494
diffuseColor 0.895 0.891 0.813
specularColor 0.047 0.055 0.109
emissiveColor 0.0 0.0 0.0
shininess 0.125
transparency 0.10
}
}
}
Shape {
appearance Appearance {material DEF GLASS-19 Material {
ambientIntensity 2.018212
diffuseColor 0.400769 0.441922 0.459091
specularColor 0.573887 0.649271 0.810811
emissiveColor 0.000000 0.000000 0.000000
shininess 0.127273
transparency 0.37
}
}
}
Shape {
appearance Appearance {material DEF GLASS-29 Material {
ambientIntensity 0.234375
diffuseColor 0.566681 0.580872 0.580874
specularColor 0.617761 0.429816 0.400140
emissiveColor 0.000000 0.000000 0.000000
shininess 0.072727
transparency 0.38
}
}
}
Shape {
appearance Appearance {material DEF GLASS-13 Material {
ambientIntensity 0.250000
diffuseColor 0.000000 0.631244 0.748016
specularColor 0.915152 0.915152 0.915152
emissiveColor 0.000000 0.000000 0.000000
shininess 0.642424
transparency 0.39
}
}
}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [7.28345 0.7874 0.51181,7.28345 0.7874 0.11811,5.70865 0.7874 0.11811,5.70865 0.7874 0.51181]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,0,2,-1]
coord Coordinate { point [5.70865 0.499999 0.11811,5.70865 0.7874 0.11811,7.28345 0.7874 0.11811,7.28345 0.499999 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,1,0,-1]
coord Coordinate { point [7.28345 0.7874 0.51181,7.28345 0.499999 0.11811,7.28345 0.7874 0.11811,7.28345 0.499999 0.51181]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [7.28345 0.7874 0.51181,5.70865 0.7874 0.51181,5.70865 0.499999 0.51181,7.28345 0.499999 0.51181]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [5.70865 0.7874 0.11811,5.70865 0.499999 0.11811,5.70865 0.7874 0.51181,5.70865 0.499999 0.51181]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [5.70865 0.499999 0.11811,7.28345 0 0.11811,5.70865 0 0.11811,7.28345 0.499999 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,0,4,-1,5,0,3,-1,5,1,0,-1]
coord Coordinate { point [11.0354 0.499999 0.51181,7.28345 0.499999 0.11811,7.28345 0.499999 0.51181,12.5 0.499999 0.55118,11.0354 0.499999 0.55118,12.5 0.499999 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,2,3,5,-1,2,5,0,-1]
coord Coordinate { point [5.70865 0.499999 0.51181,2.03543 0.499999 0.51181,2.03543 0.499999 0.55118,11.0354 0.499999 0.55118,11.0354 0.499999 0.51181,7.28345 0.499999 0.51181]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,0,5,-1,4,3,0,-1]
coord Coordinate { point [2.03543 0.499999 0.51181,0.499999 0.499999 0.55118,2.03543 0.499999 0.55118,0.499999 0.499999 0.11811,5.70865 0.499999 0.11811,5.70865 0.499999 0.51181]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,6,8,9,-1,3,5,10,-1,11,3,10,-1,11,10,12,-1,13,14,15,-1,16,13,15,-1,17,16,15,-1,18,19,7,-1,20,13,16,-1,18,21,19,-1,20,22,13,-1,23,2,24,-1,25,4,3,-1,23,0,2,-1,25,26,4,-1,27,23,24,-1,28,29,22,-1,28,30,29,-1,27,24,31,-1,32,33,34,-1,32,34,26,-1,35,17,36,-1,37,38,21,-1,37,39,38,-1,40,22,20,-1,40,28,22,-1,41,32,26,-1,41,26,25,-1,42,35,36,-1,42,40,20,-1,43,25,44,-1,43,41,25,-1,42,20,35,-1,45,28,40,-1,45,46,28,-1,47,48,46,-1,47,49,48,-1,50,21,18,-1,51,42,36,-1,50,37,21,-1,52,0,23,-1,53,46,45,-1,52,54,0,-1,53,47,46,-1,55,56,32,-1,55,32,41,-1,57,45,51,-1,57,53,45,-1,58,59,56,-1,60,47,53,-1,60,61,47,-1,62,63,64,-1,58,65,59,-1,62,64,54,-1,66,18,67,-1,66,50,18,-1,68,69,61,-1,68,70,69,-1,71,72,73,-1,71,74,72,-1,71,75,74,-1,76,56,55,-1,77,61,60,-1,76,58,56,-1,77,68,61,-1,78,55,79,-1,78,76,55,-1,80,81,37,-1,80,37,50,-1,82,60,83,-1,82,77,60,-1,84,54,52,-1,84,62,54,-1,85,68,77,-1,86,87,58,-1,85,88,68,-1,86,58,76,-1,89,52,90,-1,89,84,52,-1,91,92,88,-1,91,93,92,-1,94,95,87,-1,96,97,81,-1,96,98,97,-1,94,99,95,-1,100,88,85,-1,100,91,88,-1,101,87,86,-1,101,94,87,-1,102,86,103,-1,102,101,86,-1,104,85,105,-1,104,100,85,-1,106,107,91,-1,106,91,100,-1,108,109,107,-1,108,110,109,-1,111,112,94,-1,113,81,80,-1,111,94,101,-1,113,96,81,-1,114,62,84,-1,115,107,106,-1,115,108,107,-1,114,116,62,-1,117,118,119,-1,117,119,112,-1,120,115,106,-1,121,112,111,-1,120,106,122,-1,123,124,125,-1,126,127,108,-1,121,117,112,-1,126,108,115,-1,128,121,111,-1,123,125,116,-1,128,111,129,-1,130,80,131,-1,130,113,80,-1,132,133,127,-1,132,134,133,-1,135,136,137,-1,138,137,117,-1,138,117,121,-1,139,127,126,-1,139,132,127,-1,140,135,137,-1,141,142,96,-1,141,96,113,-1,143,139,126,-1,144,137,138,-1,143,126,145,-1,144,140,137,-1,146,147,132,-1,148,116,114,-1,148,123,116,-1,146,132,139,-1,149,150,147,-1,151,144,138,-1,151,138,152,-1,153,114,154,-1,155,149,147,-1,153,148,114,-1,156,157,142,-1,156,158,157,-1,159,147,146,-1,160,161,140,-1,159,155,147,-1,160,140,144,-1,162,163,161,-1,164,159,146,-1,164,146,165,-1,162,166,163,-1,167,168,155,-1,167,155,159,-1,169,162,161,-1,169,161,160,-1,170,171,168,-1,172,160,173,-1,170,174,171,-1,172,169,160,-1,175,142,141,-1,175,156,142,-1,176,168,167,-1,177,178,179,-1,176,170,168,-1,180,181,123,-1,180,123,148,-1,182,179,162,-1,182,162,169,-1,183,167,184,-1,183,176,167,-1,185,186,170,-1,187,177,179,-1,188,189,181,-1,185,170,176,-1,188,190,189,-1,191,175,141,-1,192,179,182,-1,193,194,186,-1,193,195,194,-1,192,187,179,-1,191,141,196,-1,197,182,198,-1,197,192,182,-1,199,200,201,-1,202,186,185,-1,202,193,186,-1,203,199,204,-1,203,204,205,-1,206,187,192,-1,207,156,175,-1,208,185,209,-1,206,205,187,-1,207,210,156,-1,208,202,185,-1,211,188,181,-1,212,213,193,-1,212,193,202,-1,211,181,180,-1,214,203,205,-1,215,216,213,-1,217,200,199,-1,215,218,216,-1,217,199,203,-1,219,206,220,-1,221,211,180,-1,221,180,222,-1,219,205,206,-1,219,214,205,-1,223,224,210,-1,223,225,224,-1,226,219,220,-1,227,213,212,-1,227,215,213,-1,228,229,214,-1,228,214,219,-1,230,227,212,-1,230,212,231,-1,232,200,217,-1,232,228,233,-1,234,215,227,-1,232,217,229,-1,234,235,215,-1,232,229,228,-1,72,199,201,-1,72,201,73,-1,199,236,237,-1,238,239,240,-1,199,237,241,-1,199,241,1,-1,199,1,242,-1,199,242,64,-1,199,64,63,-1,199,63,125,-1,243,244,235,-1,199,125,124,-1,243,245,244,-1,199,124,189,-1,199,189,190,-1,199,190,239,-1,199,239,238,-1,199,238,246,-1,247,210,207,-1,199,246,248,-1,199,248,249,-1,247,223,210,-1,199,249,250,-1,199,250,251,-1,199,251,252,-1,199,252,253,-1,199,253,254,-1,199,254,34,-1,255,188,211,-1,199,34,33,-1,199,33,59,-1,255,240,188,-1,256,36,17,-1,199,59,65,-1,199,65,95,-1,199,95,99,-1,199,99,119,-1,199,119,118,-1,199,118,136,-1,199,136,135,-1,199,135,163,-1,199,163,166,-1,199,166,178,-1,199,178,177,-1,199,177,204,-1,36,72,257,-1,36,257,258,-1,36,258,191,-1,36,191,196,-1,36,196,130,-1,36,130,131,-1,259,243,235,-1,36,131,66,-1,36,66,67,-1,36,67,6,-1,260,238,240,-1,259,235,234,-1,36,6,9,-1,36,9,261,-1,36,261,262,-1,36,262,263,-1,36,263,264,-1,36,264,265,-1,36,265,266,-1,257,247,207,-1,36,266,230,-1,36,230,231,-1,36,231,208,-1,257,207,258,-1,36,208,209,-1,36,209,183,-1,36,183,184,-1,36,184,164,-1,36,164,165,-1,236,36,256,-1,36,165,143,-1,36,143,145,-1,36,145,120,-1,36,120,122,-1,36,122,104,-1,36,104,105,-1,36,105,82,-1,36,82,83,-1,36,83,57,-1,36,57,51,-1,267,223,247,-1,267,268,223,-1,265,259,234,-1,269,240,255,-1,265,234,266,-1,269,260,240,-1,270,17,15,-1,270,271,256,-1,270,256,17,-1,272,236,256,-1,273,255,274,-1,273,269,255,-1,275,276,268,-1,275,277,276,-1,248,246,278,-1,279,243,259,-1,279,280,243,-1,281,271,270,-1,282,281,270,-1,283,284,280,-1,283,285,284,-1,286,268,267,-1,286,275,268,-1,287,278,260,-1,287,260,269,-1,288,236,272,-1,289,248,278,-1,290,286,267,-1,291,280,279,-1,291,283,280,-1,290,267,292,-1,293,271,281,-1,75,294,295,-1,293,296,271,-1,297,288,272,-1,297,272,296,-1,298,295,275,-1,298,275,286,-1,263,279,264,-1,263,291,279,-1,298,75,295,-1,72,290,292,-1,72,292,257,-1,299,278,287,-1,237,236,288,-1,299,289,278,-1,300,287,301,-1,300,299,287,-1,250,249,302,-1,303,304,283,-1,303,283,291,-1,305,296,293,-1,305,297,296,-1,306,305,293,-1,306,293,307,-1,308,309,304,-1,308,310,309,-1,74,75,298,-1,74,290,72,-1,311,302,289,-1,311,289,299,-1,312,250,302,-1,313,304,303,-1,313,308,304,-1,314,312,302,-1,315,297,305,-1,314,302,311,-1,315,316,297,-1,317,314,311,-1,317,311,318,-1,252,251,319,-1,320,241,237,-1,320,237,316,-1,261,303,262,-1,261,313,303,-1,321,319,312,-1,321,312,314,-1,322,252,319,-1,8,323,308,-1,8,308,313,-1,324,316,315,-1,324,320,316,-1,325,324,315,-1,325,315,326,-1,327,319,321,-1,327,322,319,-1,19,328,323,-1,19,329,328,-1,330,327,321,-1,330,321,331,-1,10,5,322,-1,10,322,327,-1,7,19,323,-1,7,323,8,-1,4,254,253,-1,24,2,320,-1,24,320,324,-1,4,253,5,-1,0,242,1,-1]
coord Coordinate { point [0.772369 -16.2559 0.11811,1.25071 -16.7441 0.11811,0.772369 -16.7441 0.11811,0.506754 -8.25589 0.11811,0.772369 -8.25589 0.11811,0.772369 -8.74408 0.11811,11.7493 -5.25589 0.11811,12.2276 -5.25589 0.11811,12.2276 -5.74408 0.11811,11.7493 -5.74408 0.11811,0.506754 -8.74408 0.11811,0.499999 -8.25589 0.11811,0.499999 -8.74408 0.11811,12.4932 -19.2559 0.11811,12.5 -19.2559 0.11811,12.5 -19.5 0.11811,12.2276 -19.2559 0.11811,11.7493 -19.2559 0.11811,12.2276 -4.74408 0.11811,12.4932 -5.25589 0.11811,12.2276 -18.7441 0.11811,12.4932 -4.74408 0.11811,12.4932 -18.7441 0.11811,0.506754 -16.2559 0.11811,0.506754 -16.7441 0.11811,0.506754 -7.74408 0.11811,0.772369 -7.74408 0.11811,0.499999 -16.2559 0.11811,12.4932 -18.2559 0.11811,12.5 -18.7441 0.11811,12.5 -18.2559 0.11811,0.499999 -16.7441 0.11811,0.772369 -7.25589 0.11811,1.25071 -7.25589 0.11811,1.25071 -7.74408 0.11811,11.7493 -18.7441 0.11811,11.6142 -19.0826 0.11811,12.4932 -4.2559 0.11811,12.5 -4.74408 0.11811,12.5 -4.2559 0.11811,12.2276 -18.2559 0.11811,0.506754 -7.25589 0.11811,11.7493 -18.2559 0.11811,0.499999 -7.25589 0.11811,0.499999 -7.74408 0.11811,12.2276 -17.7441 0.11811,12.4932 -17.7441 0.11811,12.4932 -17.2559 0.11811,12.5 -17.7441 0.11811,12.5 -17.2559 0.11811,12.2276 -4.2559 0.11811,11.7493 -17.7441 0.11811,0.506754 -15.7441 0.11811,12.2276 -17.2559 0.11811,0.772369 -15.7441 0.11811,0.506754 -6.74408 0.11811,0.772369 -6.74408 0.11811,11.7493 -17.2559 0.11811,0.772369 -6.25589 0.11811,1.25071 -6.74408 0.11811,12.2276 -16.7441 0.11811,12.4932 -16.7441 0.11811,0.772369 -15.2559 0.11811,1.25071 -15.2559 0.11811,1.25071 -15.7441 0.11811,1.25071 -6.25589 0.11811,11.7493 -4.2559 0.11811,11.7493 -4.74408 0.11811,12.4932 -16.2559 0.11811,12.5 -16.7441 0.11811,12.5 -16.2559 0.11811,7.28345 0.499999 0.11811,11.6142 -0.185039 0.11811,7.28345 0 0.11811,11.7493 0.255905 0.11811,12.5 0.499999 0.11811,0.506754 -6.25589 0.11811,12.2276 -16.2559 0.11811,0.499999 -6.25589 0.11811,0.499999 -6.74408 0.11811,12.2276 -3.74409 0.11811,12.4932 -3.74409 0.11811,11.7493 -16.2559 0.11811,11.7493 -16.7441 0.11811,0.506754 -15.2559 0.11811,12.2276 -15.7441 0.11811,0.506754 -5.74408 0.11811,0.772369 -5.74408 0.11811,12.4932 -15.7441 0.11811,0.499999 -15.2559 0.11811,0.499999 -15.7441 0.11811,12.4932 -15.2559 0.11811,12.5 -15.7441 0.11811,12.5 -15.2559 0.11811,0.772369 -5.2559 0.11811,1.25071 -5.74408 0.11811,12.4932 -3.2559 0.11811,12.5 -3.74409 0.11811,12.5 -3.2559 0.11811,1.25071 -5.2559 0.11811,12.2276 -15.2559 0.11811,0.506754 -5.2559 0.11811,0.499999 -5.2559 0.11811,0.499999 -5.74408 0.11811,11.7493 -15.2559 0.11811,11.7493 -15.7441 0.11811,12.2276 -14.7441 0.11811,12.4932 -14.7441 0.11811,12.4932 -14.2559 0.11811,12.5 -14.7441 0.11811,12.5 -14.2559 0.11811,0.506754 -4.74409 0.11811,0.772369 -4.74409 0.11811,12.2276 -3.2559 0.11811,0.506754 -14.7441 0.11811,12.2276 -14.2559 0.11811,0.772369 -14.7441 0.11811,0.772369 -4.2559 0.11811,1.25071 -4.2559 0.11811,1.25071 -4.74409 0.11811,11.7493 -14.2559 0.11811,0.506754 -4.2559 0.11811,11.7493 -14.7441 0.11811,0.772369 -14.2559 0.11811,1.25071 -14.2559 0.11811,1.25071 -14.7441 0.11811,12.2276 -13.7441 0.11811,12.4932 -13.7441 0.11811,0.499999 -4.2559 0.11811,0.499999 -4.74408 0.11811,11.7493 -3.2559 0.11811,11.7493 -3.74409 0.11811,12.4932 -13.2559 0.11811,12.5 -13.7441 0.11811,12.5 -13.2559 0.11811,1.25071 -3.2559 0.11811,1.25071 -3.74409 0.11811,0.772369 -3.74409 0.11811,0.506754 -3.74409 0.11811,12.2276 -13.2559 0.11811,0.772369 -3.2559 0.11811,12.2276 -2.74409 0.11811,12.4932 -2.74409 0.11811,11.7493 -13.2559 0.11811,0.506754 -3.2559 0.11811,11.7493 -13.7441 0.11811,12.2276 -12.7441 0.11811,12.4932 -12.7441 0.11811,0.506754 -14.2559 0.11811,12.5 -12.2559 0.11811,12.5 -12.7441 0.11811,0.499999 -3.2559 0.11811,0.499999 -3.74409 0.11811,0.499999 -14.2559 0.11811,0.499999 -14.7441 0.11811,12.4932 -12.2559 0.11811,12.4932 -2.2559 0.11811,12.5 -2.74409 0.11811,12.5 -2.2559 0.11811,12.2276 -12.2559 0.11811,0.506754 -2.74409 0.11811,0.772369 -2.74409 0.11811,0.772369 -2.2559 0.11811,1.25071 -2.74409 0.11811,11.7493 -12.2559 0.11811,11.7493 -12.7441 0.11811,1.25071 -2.2559 0.11811,12.2276 -11.7441 0.11811,12.4932 -11.7441 0.11811,0.506754 -2.2559 0.11811,12.4932 -11.2559 0.11811,12.5 -11.7441 0.11811,0.499999 -2.2559 0.11811,0.499999 -2.74409 0.11811,12.5 -11.2559 0.11811,12.2276 -2.2559 0.11811,12.2276 -11.2559 0.11811,1.25071 -1.2559 0.11811,1.25071 -1.74409 0.11811,0.772369 -1.74409 0.11811,0.506754 -13.7441 0.11811,0.772369 -13.7441 0.11811,0.506754 -1.74409 0.11811,11.7493 -11.2559 0.11811,11.7493 -11.7441 0.11811,12.2276 -10.7441 0.11811,12.4932 -10.7441 0.11811,0.772369 -1.2559 0.11811,0.772369 -13.2559 0.11811,1.25071 -13.7441 0.11811,1.25071 -13.2559 0.11811,11.7493 -2.2559 0.11811,0.506754 -1.2559 0.11811,12.4932 -10.2559 0.11811,12.5 -10.7441 0.11811,12.5 -10.2559 0.11811,11.7493 -2.74409 0.11811,0.499999 -1.2559 0.11811,0.499999 -1.74409 0.11811,1.37795 -0.185039 0.11811,5.70865 0.499999 0.11811,5.70865 0 0.11811,12.2276 -10.2559 0.11811,1.25071 -0.255905 0.11811,1.25071 -0.744093 0.11811,0.772369 -0.744093 0.11811,0.506754 -0.744093 0.11811,12.2276 -1.74409 0.11811,11.7493 -10.2559 0.11811,11.7493 -10.7441 0.11811,12.4932 -1.74409 0.11811,0.506754 -13.2559 0.11811,12.2276 -9.74408 0.11811,12.4932 -9.74408 0.11811,0.772369 -0.255905 0.11811,12.4932 -9.25589 0.11811,12.5 -9.74408 0.11811,1.25071 0.255905 0.11811,12.5 -9.25589 0.11811,0.506754 -0.255905 0.11811,0.499999 -0.744093 0.11811,0.499999 -13.2559 0.11811,0.499999 -13.7441 0.11811,12.4932 -1.2559 0.11811,12.5 -1.74409 0.11811,12.5 -1.2559 0.11811,0.499999 -0.255905 0.11811,12.2276 -9.25589 0.11811,0.506754 0.255905 0.11811,0.772369 0.255905 0.11811,11.7493 -9.25589 0.11811,11.7493 -9.74408 0.11811,0.499999 0.499999 0.11811,0.499999 0.255905 0.11811,12.2276 -8.74408 0.11811,12.4932 -8.74408 0.11811,1.37795 -19.0826 0.11811,1.25071 -17.7441 0.11811,1.25071 -12.2559 0.11811,1.25071 -12.7441 0.11811,0.772369 -12.7441 0.11811,1.25071 -17.2559 0.11811,1.25071 -16.2559 0.11811,12.4932 -8.25589 0.11811,12.5 -8.74408 0.11811,12.5 -8.25589 0.11811,1.25071 -11.7441 0.11811,12.2276 -1.2559 0.11811,1.25071 -11.2559 0.11811,1.25071 -10.7441 0.11811,1.25071 -10.2559 0.11811,1.25071 -9.74408 0.11811,1.25071 -9.25589 0.11811,1.25071 -8.74408 0.11811,1.25071 -8.25589 0.11811,0.506754 -12.7441 0.11811,1.25071 -19.2559 0.11811,11.7493 -1.2559 0.11811,11.7493 -1.74409 0.11811,12.2276 -8.25589 0.11811,0.772369 -12.2559 0.11811,11.7493 -6.25589 0.11811,11.7493 -6.74408 0.11811,11.7493 -7.25589 0.11811,11.7493 -7.74408 0.11811,11.7493 -8.25589 0.11811,11.7493 -8.74408 0.11811,12.2276 -0.744093 0.11811,12.4932 -0.744093 0.11811,0.506754 -12.2559 0.11811,0.499999 -19.5 0.11811,0.772369 -19.2559 0.11811,1.25071 -18.7441 0.11811,0.499999 -12.2559 0.11811,0.499999 -12.7441 0.11811,12.4932 -0.255905 0.11811,12.5 -0.744093 0.11811,12.5 -0.255905 0.11811,0.772369 -11.7441 0.11811,12.2276 -7.74408 0.11811,12.4932 -7.74408 0.11811,0.506754 -19.2559 0.11811,0.499999 -19.2559 0.11811,12.4932 -7.25589 0.11811,12.5 -7.74408 0.11811,12.5 -7.25589 0.11811,12.2276 -0.255905 0.11811,0.506754 -11.7441 0.11811,1.25071 -18.2559 0.11811,0.772369 -11.2559 0.11811,11.7493 -0.255905 0.11811,12.2276 -7.25589 0.11811,11.7493 -0.744093 0.11811,0.506754 -18.7441 0.11811,12.5 0.255905 0.11811,12.4932 0.255905 0.11811,0.772369 -18.7441 0.11811,0.772369 -18.2559 0.11811,12.2276 0.255905 0.11811,0.506754 -11.2559 0.11811,0.499999 -11.2559 0.11811,0.499999 -11.7441 0.11811,0.772369 -10.7441 0.11811,12.2276 -6.74408 0.11811,12.4932 -6.74408 0.11811,0.506754 -18.2559 0.11811,0.499999 -18.2559 0.11811,0.499999 -18.7441 0.11811,12.4932 -6.25589 0.11811,12.5 -6.74408 0.11811,12.5 -6.25589 0.11811,0.506754 -10.7441 0.11811,0.772369 -10.2559 0.11811,12.2276 -6.25589 0.11811,0.506754 -10.2559 0.11811,0.506754 -17.7441 0.11811,0.772369 -17.7441 0.11811,0.499999 -10.2559 0.11811,0.499999 -10.7441 0.11811,0.772369 -9.74408 0.11811,0.772369 -17.2559 0.11811,0.506754 -9.74408 0.11811,0.772369 -9.25589 0.11811,12.4932 -5.74408 0.11811,0.506754 -17.2559 0.11811,0.499999 -17.2559 0.11811,0.499999 -17.7441 0.11811,0.506754 -9.25589 0.11811,12.5 -5.74408 0.11811,12.5 -5.25589 0.11811,0.499999 -9.25589 0.11811,0.499999 -9.74408 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,3,0,-1]
coord Coordinate { point [12.5 0.255905 0.15748,12.5 0.499999 0.55118,12.5 0.255905 0.55118,12.5 0.499999 0.11811,12.5 0.255905 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,3,5,-1,1,0,7,-1,7,0,8,-1,9,10,11,-1,12,9,11,-1,3,6,13,-1,14,3,13,-1,15,16,17,-1,17,16,18,-1,9,12,19,-1,20,9,19,-1,21,22,23,-1,24,21,23,-1,15,17,25,-1,26,15,25,-1,27,28,29,-1,30,27,29,-1,31,21,32,-1,21,24,32,-1,33,34,35,-1,36,33,35,-1,37,27,38,-1,27,30,38,-1,39,40,41,-1,40,42,41,-1,43,33,44,-1,33,36,44,-1,45,46,47,-1,47,46,48,-1,40,39,49,-1,50,40,49,-1,51,52,53,-1,53,52,54,-1,45,47,55,-1,56,45,55,-1,57,58,59,-1,60,57,59,-1,51,53,61,-1,62,51,61,-1,63,64,65,-1,66,63,65,-1,67,57,68,-1,57,60,68,-1,69,70,71,-1,71,70,72,-1,73,63,74,-1,63,66,74,-1,75,76,77,-1,78,75,77,-1,79,69,80,-1,69,71,80,-1,81,82,83,-1,84,81,83,-1,85,75,86,-1,75,78,86,-1,87,88,89,-1,90,87,89,-1,81,84,91,-1,92,81,91,-1,93,94,95,-1,95,94,96,-1,87,90,97,-1,98,87,97,-1,99,100,101,-1,102,99,101,-1,103,93,104,-1,93,95,104,-1,105,106,107,-1,107,106,108,-1,109,99,110,-1,99,102,110,-1,111,112,113,-1,114,111,113,-1,115,105,116,-1,105,107,116,-1,117,118,119,-1,120,111,121,-1,111,114,121,-1,122,117,123,-1,117,119,123,-1,118,117,114,-1,113,118,114,-1,112,111,107,-1,108,112,107,-1,106,105,102,-1,101,106,102,-1,100,99,95,-1,96,100,95,-1,94,93,90,-1,89,94,90,-1,88,87,84,-1,83,88,84,-1,82,81,78,-1,77,82,78,-1,76,75,71,-1,72,76,71,-1,70,69,66,-1,65,70,66,-1,64,63,60,-1,59,64,60,-1,58,57,53,-1,54,58,53,-1,52,51,47,-1,48,52,47,-1,46,45,39,-1,41,46,39,-1,42,40,36,-1,35,42,36,-1,34,33,30,-1,29,34,30,-1,28,27,24,-1,23,28,24,-1,22,21,17,-1,18,22,17,-1,16,15,12,-1,11,16,12,-1,10,9,6,-1,5,10,6,-1,4,3,0,-1,2,4,0,-1]
coord Coordinate { point [12.4409 -19.3937 0.55118,12.5 -19.5 0.55118,12.5 -19.2559 0.55118,12.4409 -18.6063 0.55118,12.5 -18.7441 0.55118,12.5 -18.2559 0.55118,12.4409 -18.3937 0.55118,11.0354 -19.5 0.55118,11.0354 -19.3937 0.55118,12.4409 -17.6063 0.55118,12.5 -17.7441 0.55118,12.5 -17.2559 0.55118,12.4409 -17.3937 0.55118,11.0354 -18.3937 0.55118,11.0354 -18.6063 0.55118,12.4409 -16.6063 0.55118,12.5 -16.7441 0.55118,12.4409 -16.3937 0.55118,12.5 -16.2559 0.55118,11.0354 -17.3937 0.55118,11.0354 -17.6063 0.55118,12.4409 -15.6063 0.55118,12.5 -15.7441 0.55118,12.5 -15.2559 0.55118,12.4409 -15.3937 0.55118,11.0354 -16.3937 0.55118,11.0354 -16.6063 0.55118,12.4409 -14.6063 0.55118,12.5 -14.7441 0.55118,12.5 -14.2559 0.55118,12.4409 -14.3937 0.55118,11.0354 -15.6063 0.55118,11.0354 -15.3937 0.55118,12.4409 -13.6063 0.55118,12.5 -13.7441 0.55118,12.5 -13.2559 0.55118,12.4409 -13.3937 0.55118,11.0354 -14.6063 0.55118,11.0354 -14.3937 0.55118,12.4409 -12.3937 0.55118,12.4409 -12.6063 0.55118,12.5 -12.2559 0.55118,12.5 -12.7441 0.55118,11.0354 -13.6063 0.55118,11.0354 -13.3937 0.55118,12.4409 -11.6063 0.55118,12.5 -11.7441 0.55118,12.4409 -11.3937 0.55118,12.5 -11.2559 0.55118,11.0354 -12.3937 0.55118,11.0354 -12.6063 0.55118,12.4409 -10.6063 0.55118,12.5 -10.7441 0.55118,12.4409 -10.3937 0.55118,12.5 -10.2559 0.55118,11.0354 -11.3937 0.55118,11.0354 -11.6063 0.55118,12.4409 -9.60628 0.55118,12.5 -9.74408 0.55118,12.5 -9.25589 0.55118,12.4409 -9.39368 0.55118,11.0354 -10.3937 0.55118,11.0354 -10.6063 0.55118,12.4409 -8.60628 0.55118,12.5 -8.74408 0.55118,12.5 -8.25589 0.55118,12.4409 -8.39368 0.55118,11.0354 -9.60628 0.55118,11.0354 -9.39368 0.55118,12.4409 -7.60628 0.55118,12.5 -7.74408 0.55118,12.4409 -7.39369 0.55118,12.5 -7.25589 0.55118,11.0354 -8.60628 0.55118,11.0354 -8.39368 0.55118,12.4409 -6.60629 0.55118,12.5 -6.74408 0.55118,12.5 -6.25589 0.55118,12.4409 -6.39369 0.55118,11.0354 -7.60628 0.55118,11.0354 -7.39369 0.55118,12.4409 -5.60629 0.55118,12.5 -5.74408 0.55118,12.5 -5.25589 0.55118,12.4409 -5.39369 0.55118,11.0354 -6.60629 0.55118,11.0354 -6.39369 0.55118,12.4409 -4.60629 0.55118,12.5 -4.74408 0.55118,12.5 -4.2559 0.55118,12.4409 -4.39369 0.55118,11.0354 -5.39369 0.55118,11.0354 -5.60629 0.55118,12.4409 -3.60629 0.55118,12.5 -3.74409 0.55118,12.4409 -3.39369 0.55118,12.5 -3.2559 0.55118,11.0354 -4.39369 0.55118,11.0354 -4.60629 0.55118,12.4409 -2.60629 0.55118,12.5 -2.74409 0.55118,12.5 -2.2559 0.55118,12.4409 -2.3937 0.55118,11.0354 -3.60629 0.55118,11.0354 -3.39369 0.55118,12.4409 -1.6063 0.55118,12.5 -1.74409 0.55118,12.4409 -1.3937 0.55118,12.5 -1.2559 0.55118,11.0354 -2.60629 0.55118,11.0354 -2.3937 0.55118,12.4409 -0.606298 0.55118,12.5 -0.744093 0.55118,12.5 -0.255905 0.55118,12.4409 -0.3937 0.55118,11.0354 -1.6063 0.55118,11.0354 -1.3937 0.55118,12.4409 0.3937 0.55118,12.5 0.255905 0.55118,12.5 0.499999 0.55118,11.0354 -0.606298 0.55118,11.0354 -0.3937 0.55118,11.0354 0.3937 0.55118,11.0354 0.499999 0.55118]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [11.0354 0.499999 0.98425,11.0354 0.499999 0.55118,2.03543 0.499999 0.55118,2.03543 0.499999 0.98425]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,1,3,2,-1,0,2,4,-1,5,6,7,-1,6,8,7,-1,9,5,10,-1,5,7,10,-1,11,12,13,-1,12,14,13,-1,15,11,16,-1,11,13,16,-1,17,18,19,-1,18,20,19,-1,17,19,21,-1,22,17,21,-1,23,24,25,-1,24,26,25,-1,23,25,27,-1,28,23,27,-1,29,30,31,-1,30,32,31,-1,32,33,31,-1,29,31,34,-1,35,36,37,-1,36,38,37,-1,38,39,37,-1,35,37,40,-1,41,42,43,-1,42,44,43,-1,44,45,43,-1,41,43,46,-1,47,48,49,-1,48,50,49,-1,50,51,49,-1,47,49,52,-1,53,54,55,-1,54,56,55,-1,56,57,55,-1,53,55,58,-1,59,60,61,-1,60,62,61,-1,63,59,64,-1,59,61,64,-1,65,66,67,-1,66,68,67,-1,69,65,70,-1,65,67,70,-1,71,72,73,-1,72,74,73,-1,75,71,76,-1,71,73,76,-1,77,78,79,-1,78,80,79,-1,81,77,82,-1,77,79,82,-1,83,84,85,-1,84,86,85,-1,87,83,88,-1,83,85,88,-1,89,90,91,-1,90,92,91,-1,93,89,94,-1,89,91,94,-1,95,96,97,-1,96,98,97,-1,99,95,97,-1,99,97,100,-1,101,102,103,-1,102,104,103,-1,101,103,105,-1,106,101,105,-1,107,108,109,-1,108,110,109,-1,111,107,109,-1,111,109,112,-1,113,114,115,-1,114,116,115,-1,113,115,117,-1,118,113,117,-1,119,120,121,-1,121,120,122,-1,123,121,122,-1,4,2,5,-1,9,4,5,-1,10,7,11,-1,15,10,11,-1,16,13,17,-1,22,16,17,-1,21,19,23,-1,28,21,23,-1,27,25,30,-1,29,27,30,-1,34,31,36,-1,35,34,36,-1,40,37,42,-1,41,40,42,-1,46,43,48,-1,47,46,48,-1,52,49,54,-1,53,52,54,-1,58,55,59,-1,63,58,59,-1,64,61,65,-1,69,64,65,-1,70,67,71,-1,75,70,71,-1,76,73,77,-1,81,76,77,-1,82,79,83,-1,87,82,83,-1,88,85,89,-1,93,88,89,-1,94,91,95,-1,99,94,95,-1,100,97,101,-1,106,100,101,-1,105,103,107,-1,111,105,107,-1,112,109,113,-1,118,112,113,-1,117,115,121,-1,123,117,121,-1]
coord Coordinate { point [0.499999 -19.5 0.55118,2.03543 -19.5 0.55118,0.55118 -19.3937 0.55118,2.03543 -19.3937 0.55118,0.499999 -19.2559 0.55118,0.55118 -18.6063 0.55118,2.03543 -18.6063 0.55118,0.55118 -18.3937 0.55118,2.03543 -18.3937 0.55118,0.499999 -18.7441 0.55118,0.499999 -18.2559 0.55118,0.55118 -17.6063 0.55118,2.03543 -17.6063 0.55118,0.55118 -17.3937 0.55118,2.03543 -17.3937 0.55118,0.499999 -17.7441 0.55118,0.499999 -17.2559 0.55118,0.55118 -16.6063 0.55118,2.03543 -16.6063 0.55118,0.55118 -16.3937 0.55118,2.03543 -16.3937 0.55118,0.499999 -16.2559 0.55118,0.499999 -16.7441 0.55118,0.55118 -15.6063 0.55118,2.03543 -15.6063 0.55118,0.55118 -15.3937 0.55118,2.03543 -15.3937 0.55118,0.499999 -15.2559 0.55118,0.499999 -15.7441 0.55118,0.499999 -14.7441 0.55118,0.55118 -14.6063 0.55118,0.55118 -14.3937 0.55118,2.03543 -14.6063 0.55118,2.03543 -14.3937 0.55118,0.499999 -14.2559 0.55118,0.499999 -13.7441 0.55118,0.55118 -13.6063 0.55118,0.55118 -13.3937 0.55118,2.03543 -13.6063 0.55118,2.03543 -13.3937 0.55118,0.499999 -13.2559 0.55118,0.499999 -12.7441 0.55118,0.55118 -12.6063 0.55118,0.55118 -12.3937 0.55118,2.03543 -12.6063 0.55118,2.03543 -12.3937 0.55118,0.499999 -12.2559 0.55118,0.499999 -11.7441 0.55118,0.55118 -11.6063 0.55118,0.55118 -11.3937 0.55118,2.03543 -11.6063 0.55118,2.03543 -11.3937 0.55118,0.499999 -11.2559 0.55118,0.499999 -10.7441 0.55118,0.55118 -10.6063 0.55118,0.55118 -10.3937 0.55118,2.03543 -10.6063 0.55118,2.03543 -10.3937 0.55118,0.499999 -10.2559 0.55118,0.55118 -9.60628 0.55118,2.03543 -9.60628 0.55118,0.55118 -9.39368 0.55118,2.03543 -9.39368 0.55118,0.499999 -9.74408 0.55118,0.499999 -9.25589 0.55118,0.55118 -8.60628 0.55118,2.03543 -8.60628 0.55118,0.55118 -8.39368 0.55118,2.03543 -8.39368 0.55118,0.499999 -8.74408 0.55118,0.499999 -8.25589 0.55118,0.55118 -7.60628 0.55118,2.03543 -7.60628 0.55118,0.55118 -7.39369 0.55118,2.03543 -7.39369 0.55118,0.499999 -7.74408 0.55118,0.499999 -7.25589 0.55118,0.55118 -6.60629 0.55118,2.03543 -6.60629 0.55118,0.55118 -6.39369 0.55118,2.03543 -6.39369 0.55118,0.499999 -6.74408 0.55118,0.499999 -6.25589 0.55118,0.55118 -5.60629 0.55118,2.03543 -5.60629 0.55118,0.55118 -5.39369 0.55118,2.03543 -5.39369 0.55118,0.499999 -5.74408 0.55118,0.499999 -5.2559 0.55118,0.55118 -4.60629 0.55118,2.03543 -4.60629 0.55118,0.55118 -4.39369 0.55118,2.03543 -4.39369 0.55118,0.499999 -4.74408 0.55118,0.499999 -4.2559 0.55118,0.55118 -3.60629 0.55118,2.03543 -3.60629 0.55118,0.55118 -3.39369 0.55118,2.03543 -3.39369 0.55118,0.499999 -3.74409 0.55118,0.499999 -3.2559 0.55118,0.55118 -2.60629 0.55118,2.03543 -2.60629 0.55118,0.55118 -2.3937 0.55118,2.03543 -2.3937 0.55118,0.499999 -2.2559 0.55118,0.499999 -2.74409 0.55118,0.55118 -1.6063 0.55118,2.03543 -1.6063 0.55118,0.55118 -1.3937 0.55118,2.03543 -1.3937 0.55118,0.499999 -1.74409 0.55118,0.499999 -1.2559 0.55118,0.55118 -0.606298 0.55118,2.03543 -0.606298 0.55118,0.55118 -0.3937 0.55118,2.03543 -0.3937 0.55118,0.499999 -0.255905 0.55118,0.499999 -0.744093 0.55118,2.03543 0.3937 0.55118,2.03543 0.499999 0.55118,0.55118 0.3937 0.55118,0.499999 0.499999 0.55118,0.499999 0.255905 0.55118]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,0,-1,3,0,2,-1]
coord Coordinate { point [0.499999 0.255905 0.15748,0.499999 0.255905 0.55118,0.499999 0.499999 0.55118,0.499999 0.499999 0.11811,0.499999 0.255905 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 0.255905 0.0699537,0.562654 0.255905 0.0531982,0.474616 0.255905 -0.0301625,1.16987 0.255905 0.736599,1.24401 0.255905 0.766468,1.24099 0.255905 0.643902,1.33093 0.255905 0.0676766,1.33093 0.255905 -0.0504334,1.2624 0.255905 -0.00904487,1.16291 0.255905 0.610735,1.30521 0.255905 0.0860837,0.435694 0.255905 0.00739818,0.662463 0.255905 0.822569,0.649495 0.255905 0.704413,0.622714 0.255905 0.70857,1.27844 0.255905 0.102915,0.712019 0.255905 0.807301,1.18829 0.255905 0.0212505,0.381889 0.255905 0.59055,0.499999 0.255905 0.59055,0.499999 0.255905 0.55118,1.25071 0.255905 0.11811,0.519786 0.255905 0.0920393,0.381889 0.255905 0.15748,1.1104 0.255905 0.0397242,0.61077 0.255905 0.826656,0.59569 0.255905 0.706513,1.03058 0.255905 0.0459318,0.38758 0.255905 0.642091,0.503108 0.255905 0.617473,0.499999 0.255905 0.11811,0.506754 0.255905 0.11811,1.09205 0.255905 0.718393,0.559431 0.255905 0.819366,0.569847 0.255905 0.69835,1.08052 0.255905 0.59055,0.406336 0.255905 0.0528281,0.404381 0.255905 0.691148,0.512273 0.255905 0.642979,0.510919 0.255905 0.80105,0.546545 0.255905 0.68451,0.43148 0.255905 0.735358,0.527011 0.255905 0.665723,0.467572 0.255905 0.77259,1.01236 0.255905 0.712276,0.772369 0.255905 0.11811,0.950763 0.255905 0.0397242,0.872866 0.255905 0.0212505,0.913453 0.255905 0.59055,0.798762 0.255905 -0.00904487,0.388082 0.255905 0.103745,0.738296 0.255905 0.0991288,0.499999 0.255905 0.15748,0.705722 0.255905 0.0776788,0.730234 0.255905 -0.0504334,0.932676 0.255905 0.718393,0.828423 0.255905 0.61162,0.674823 0.255905 0.0538777,0.854855 0.255905 0.736599,0.679998 0.255905 -0.0704884,0.647726 0.255905 0.0431436,0.626518 0.255905 -0.0785903,0.74807 0.255905 0.646514,0.618824 0.255905 0.0393722,0.572597 0.255905 -0.0743142,0.780723 0.255905 0.766468,0.674624 0.255905 0.694261,0.58988 0.255905 0.0427932,0.521063 0.255905 -0.0578845,1.31271 0.255905 0.689191,1.31271 0.255905 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 0.255905 0.0920393,0.506754 -0.255905 0.11811,0.519786 -0.255905 0.0920393,0.506754 0.255905 0.11811,0.538805 0.255905 0.0699537,0.538805 -0.255905 0.0699537,0.562654 0.255905 0.0531982,0.562654 -0.255905 0.0531982,0.58988 0.255905 0.0427932,0.58988 -0.255905 0.0427932,0.618824 0.255905 0.0393722,0.618824 -0.255905 0.0393722,0.647726 0.255905 0.0431436,0.647726 -0.255905 0.0431436,0.674823 0.255905 0.0538777,0.674823 -0.255905 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -0.255905 -0.0301625,0.562654 -0.255905 0.0531982,0.538805 -0.255905 0.0699537,1.24099 -0.255905 0.643902,1.24401 -0.255905 0.766468,1.16987 -0.255905 0.736599,1.2624 -0.255905 -0.00904487,1.33093 -0.255905 -0.0504334,1.33093 -0.255905 0.0676766,1.16291 -0.255905 0.610735,1.30521 -0.255905 0.0860837,0.622714 -0.255905 0.70857,0.649495 -0.255905 0.704413,0.662463 -0.255905 0.822569,0.435694 -0.255905 0.00739818,1.27844 -0.255905 0.102915,0.712019 -0.255905 0.807301,1.18829 -0.255905 0.0212505,0.499999 -0.255905 0.55118,0.499999 -0.255905 0.59055,0.381889 -0.255905 0.59055,0.519786 -0.255905 0.0920393,1.25071 -0.255905 0.11811,0.381889 -0.255905 0.15748,1.1104 -0.255905 0.0397242,0.59569 -0.255905 0.706513,0.61077 -0.255905 0.826656,1.03058 -0.255905 0.0459318,0.503108 -0.255905 0.617473,0.38758 -0.255905 0.642091,0.506754 -0.255905 0.11811,0.499999 -0.255905 0.11811,1.09205 -0.255905 0.718393,1.08052 -0.255905 0.59055,0.569847 -0.255905 0.69835,0.559431 -0.255905 0.819366,0.406336 -0.255905 0.0528281,0.512273 -0.255905 0.642979,0.404381 -0.255905 0.691148,0.510919 -0.255905 0.80105,0.546545 -0.255905 0.68451,0.43148 -0.255905 0.735358,0.527011 -0.255905 0.665723,0.467572 -0.255905 0.77259,1.01236 -0.255905 0.712276,0.913453 -0.255905 0.59055,0.772369 -0.255905 0.11811,0.872866 -0.255905 0.0212505,0.950763 -0.255905 0.0397242,0.798762 -0.255905 -0.00904487,0.388082 -0.255905 0.103745,0.499999 -0.255905 0.15748,0.738296 -0.255905 0.0991288,0.705722 -0.255905 0.0776788,0.932676 -0.255905 0.718393,0.730234 -0.255905 -0.0504334,0.828423 -0.255905 0.61162,0.854855 -0.255905 0.736599,0.674823 -0.255905 0.0538777,0.679998 -0.255905 -0.0704884,0.626518 -0.255905 -0.0785903,0.647726 -0.255905 0.0431436,0.74807 -0.255905 0.646514,0.780723 -0.255905 0.766468,0.572597 -0.255905 -0.0743142,0.618824 -0.255905 0.0393722,0.674624 -0.255905 0.694261,0.58988 -0.255905 0.0427932,0.521063 -0.255905 -0.0578845,1.31271 -0.255905 0.689191,1.31271 -0.255905 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -0.255905 0.15748,0.499999 -0.744093 0.55118,0.499999 -0.255905 0.55118,0.499999 -0.744093 0.15748,0.499999 -0.255905 0.11811,0.499999 -0.744093 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -0.744093 0.0699537,0.562654 -0.744093 0.0531982,0.474616 -0.744093 -0.0301625,1.16987 -0.744093 0.736599,1.24401 -0.744093 0.766468,1.24099 -0.744093 0.643902,1.33093 -0.744093 0.0676766,1.33093 -0.744093 -0.0504334,1.2624 -0.744093 -0.00904487,1.16291 -0.744093 0.610735,1.30521 -0.744093 0.0860837,0.435694 -0.744093 0.00739818,0.662463 -0.744093 0.822569,0.649495 -0.744093 0.704413,0.622714 -0.744093 0.70857,1.27844 -0.744093 0.102915,0.712019 -0.744093 0.807301,1.18829 -0.744093 0.0212505,0.381889 -0.744093 0.59055,0.499999 -0.744093 0.59055,0.499999 -0.744093 0.55118,1.25071 -0.744093 0.11811,0.519786 -0.744093 0.0920393,0.381889 -0.744093 0.15748,1.1104 -0.744093 0.0397242,0.61077 -0.744093 0.826656,0.59569 -0.744093 0.706513,1.03058 -0.744093 0.0459318,0.38758 -0.744093 0.642091,0.503108 -0.744093 0.617473,0.499999 -0.744093 0.11811,0.506754 -0.744093 0.11811,1.09205 -0.744093 0.718393,0.559431 -0.744093 0.819366,0.569847 -0.744093 0.69835,1.08052 -0.744093 0.59055,0.406336 -0.744093 0.0528281,0.404381 -0.744093 0.691148,0.512273 -0.744093 0.642979,0.510919 -0.744093 0.80105,0.546545 -0.744093 0.68451,0.43148 -0.744093 0.735358,0.527011 -0.744093 0.665723,0.467572 -0.744093 0.77259,1.01236 -0.744093 0.712276,0.772369 -0.744093 0.11811,0.950763 -0.744093 0.0397242,0.872866 -0.744093 0.0212505,0.913453 -0.744093 0.59055,0.798762 -0.744093 -0.00904487,0.388082 -0.744093 0.103745,0.738296 -0.744093 0.0991288,0.499999 -0.744093 0.15748,0.705722 -0.744093 0.0776788,0.730234 -0.744093 -0.0504334,0.932676 -0.744093 0.718393,0.828423 -0.744093 0.61162,0.674823 -0.744093 0.0538777,0.854855 -0.744093 0.736599,0.679998 -0.744093 -0.0704884,0.647726 -0.744093 0.0431436,0.626518 -0.744093 -0.0785903,0.74807 -0.744093 0.646514,0.618824 -0.744093 0.0393722,0.572597 -0.744093 -0.0743142,0.780723 -0.744093 0.766468,0.674624 -0.744093 0.694261,0.58988 -0.744093 0.0427932,0.521063 -0.744093 -0.0578845,1.31271 -0.744093 0.689191,1.31271 -0.744093 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -0.744093 0.0920393,0.506754 -1.2559 0.11811,0.519786 -1.2559 0.0920393,0.506754 -0.744093 0.11811,0.538805 -0.744093 0.0699537,0.538805 -1.2559 0.0699537,0.562654 -0.744093 0.0531982,0.562654 -1.2559 0.0531982,0.58988 -0.744093 0.0427932,0.58988 -1.2559 0.0427932,0.618824 -0.744093 0.0393722,0.618824 -1.2559 0.0393722,0.647726 -0.744093 0.0431436,0.647726 -1.2559 0.0431436,0.674823 -0.744093 0.0538777,0.674823 -1.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -1.2559 -0.0301625,0.562654 -1.2559 0.0531982,0.538805 -1.2559 0.0699537,1.24099 -1.2559 0.643902,1.24401 -1.2559 0.766468,1.16987 -1.2559 0.736599,1.2624 -1.2559 -0.00904487,1.33093 -1.2559 -0.0504334,1.33093 -1.2559 0.0676766,1.16291 -1.2559 0.610735,1.30521 -1.2559 0.0860837,0.622714 -1.2559 0.70857,0.649495 -1.2559 0.704413,0.662463 -1.2559 0.822569,0.435694 -1.2559 0.00739818,1.27844 -1.2559 0.102915,0.712019 -1.2559 0.807301,1.18829 -1.2559 0.0212505,0.499999 -1.2559 0.55118,0.499999 -1.2559 0.59055,0.381889 -1.2559 0.59055,0.519786 -1.2559 0.0920393,1.25071 -1.2559 0.11811,0.381889 -1.2559 0.15748,1.1104 -1.2559 0.0397242,0.59569 -1.2559 0.706513,0.61077 -1.2559 0.826656,1.03058 -1.2559 0.0459318,0.503108 -1.2559 0.617473,0.38758 -1.2559 0.642091,0.506754 -1.2559 0.11811,0.499999 -1.2559 0.11811,1.09205 -1.2559 0.718393,1.08052 -1.2559 0.59055,0.569847 -1.2559 0.69835,0.559431 -1.2559 0.819366,0.406336 -1.2559 0.0528281,0.512273 -1.2559 0.642979,0.404381 -1.2559 0.691148,0.510919 -1.2559 0.80105,0.546545 -1.2559 0.68451,0.43148 -1.2559 0.735358,0.527011 -1.2559 0.665723,0.467572 -1.2559 0.77259,1.01236 -1.2559 0.712276,0.913453 -1.2559 0.59055,0.772369 -1.2559 0.11811,0.872866 -1.2559 0.0212505,0.950763 -1.2559 0.0397242,0.798762 -1.2559 -0.00904487,0.388082 -1.2559 0.103745,0.499999 -1.2559 0.15748,0.738296 -1.2559 0.0991288,0.705722 -1.2559 0.0776788,0.932676 -1.2559 0.718393,0.730234 -1.2559 -0.0504334,0.828423 -1.2559 0.61162,0.854855 -1.2559 0.736599,0.674823 -1.2559 0.0538777,0.679998 -1.2559 -0.0704884,0.626518 -1.2559 -0.0785903,0.647726 -1.2559 0.0431436,0.74807 -1.2559 0.646514,0.780723 -1.2559 0.766468,0.572597 -1.2559 -0.0743142,0.618824 -1.2559 0.0393722,0.674624 -1.2559 0.694261,0.58988 -1.2559 0.0427932,0.521063 -1.2559 -0.0578845,1.31271 -1.2559 0.689191,1.31271 -1.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -1.2559 0.15748,0.499999 -1.74409 0.55118,0.499999 -1.2559 0.55118,0.499999 -1.74409 0.15748,0.499999 -1.2559 0.11811,0.499999 -1.74409 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -1.74409 0.0699537,0.562654 -1.74409 0.0531982,0.474616 -1.74409 -0.0301625,1.16987 -1.74409 0.736599,1.24401 -1.74409 0.766468,1.24099 -1.74409 0.643902,1.33093 -1.74409 0.0676766,1.33093 -1.74409 -0.0504334,1.2624 -1.74409 -0.00904487,1.16291 -1.74409 0.610735,1.30521 -1.74409 0.0860837,0.435694 -1.74409 0.00739818,0.662463 -1.74409 0.822569,0.649495 -1.74409 0.704413,0.622714 -1.74409 0.70857,1.27844 -1.74409 0.102915,0.712019 -1.74409 0.807301,1.18829 -1.74409 0.0212505,0.381889 -1.74409 0.59055,0.499999 -1.74409 0.59055,0.499999 -1.74409 0.55118,1.25071 -1.74409 0.11811,0.519786 -1.74409 0.0920393,0.381889 -1.74409 0.15748,1.1104 -1.74409 0.0397242,0.61077 -1.74409 0.826656,0.59569 -1.74409 0.706513,1.03058 -1.74409 0.0459318,0.38758 -1.74409 0.642091,0.503108 -1.74409 0.617473,0.499999 -1.74409 0.11811,0.506754 -1.74409 0.11811,1.09205 -1.74409 0.718393,0.559431 -1.74409 0.819366,0.569847 -1.74409 0.69835,1.08052 -1.74409 0.59055,0.406336 -1.74409 0.0528281,0.404381 -1.74409 0.691148,0.512273 -1.74409 0.642979,0.510919 -1.74409 0.80105,0.546545 -1.74409 0.68451,0.43148 -1.74409 0.735358,0.527011 -1.74409 0.665723,0.467572 -1.74409 0.77259,1.01236 -1.74409 0.712276,0.772369 -1.74409 0.11811,0.950763 -1.74409 0.0397242,0.872866 -1.74409 0.0212505,0.913453 -1.74409 0.59055,0.798762 -1.74409 -0.00904487,0.388082 -1.74409 0.103745,0.738296 -1.74409 0.0991288,0.499999 -1.74409 0.15748,0.705722 -1.74409 0.0776788,0.730234 -1.74409 -0.0504334,0.932676 -1.74409 0.718393,0.828423 -1.74409 0.61162,0.674823 -1.74409 0.0538777,0.854855 -1.74409 0.736599,0.679998 -1.74409 -0.0704884,0.647726 -1.74409 0.0431436,0.626518 -1.74409 -0.0785903,0.74807 -1.74409 0.646514,0.618824 -1.74409 0.0393722,0.572597 -1.74409 -0.0743142,0.780723 -1.74409 0.766468,0.674624 -1.74409 0.694261,0.58988 -1.74409 0.0427932,0.521063 -1.74409 -0.0578845,1.31271 -1.74409 0.689191,1.31271 -1.74409 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -1.74409 0.0920393,0.506754 -2.2559 0.11811,0.519786 -2.2559 0.0920393,0.506754 -1.74409 0.11811,0.538805 -1.74409 0.0699537,0.538805 -2.2559 0.0699537,0.562654 -1.74409 0.0531982,0.562654 -2.2559 0.0531982,0.58988 -1.74409 0.0427932,0.58988 -2.2559 0.0427932,0.618824 -1.74409 0.0393722,0.618824 -2.2559 0.0393722,0.647726 -1.74409 0.0431436,0.647726 -2.2559 0.0431436,0.674823 -1.74409 0.0538777,0.674823 -2.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -2.2559 -0.0301625,0.562654 -2.2559 0.0531982,0.538805 -2.2559 0.0699537,1.24099 -2.2559 0.643902,1.24401 -2.2559 0.766468,1.16987 -2.2559 0.736599,1.2624 -2.2559 -0.00904487,1.33093 -2.2559 -0.0504334,1.33093 -2.2559 0.0676766,1.16291 -2.2559 0.610735,1.30521 -2.2559 0.0860837,0.622714 -2.2559 0.70857,0.649495 -2.2559 0.704413,0.662463 -2.2559 0.822569,0.435694 -2.2559 0.00739818,1.27844 -2.2559 0.102915,0.712019 -2.2559 0.807301,1.18829 -2.2559 0.0212505,0.499999 -2.2559 0.55118,0.499999 -2.2559 0.59055,0.381889 -2.2559 0.59055,0.519786 -2.2559 0.0920393,1.25071 -2.2559 0.11811,0.381889 -2.2559 0.15748,1.1104 -2.2559 0.0397242,0.59569 -2.2559 0.706513,0.61077 -2.2559 0.826656,1.03058 -2.2559 0.0459318,0.503108 -2.2559 0.617473,0.38758 -2.2559 0.642091,0.506754 -2.2559 0.11811,0.499999 -2.2559 0.11811,1.09205 -2.2559 0.718393,1.08052 -2.2559 0.59055,0.569847 -2.2559 0.69835,0.559431 -2.2559 0.819366,0.406336 -2.2559 0.0528281,0.512273 -2.2559 0.642979,0.404381 -2.2559 0.691148,0.510919 -2.2559 0.80105,0.546545 -2.2559 0.68451,0.43148 -2.2559 0.735358,0.527011 -2.2559 0.665723,0.467572 -2.2559 0.77259,1.01236 -2.2559 0.712276,0.913453 -2.2559 0.59055,0.772369 -2.2559 0.11811,0.872866 -2.2559 0.0212505,0.950763 -2.2559 0.0397242,0.798762 -2.2559 -0.00904487,0.388082 -2.2559 0.103745,0.499999 -2.2559 0.15748,0.738296 -2.2559 0.0991288,0.705722 -2.2559 0.0776788,0.932676 -2.2559 0.718393,0.730234 -2.2559 -0.0504334,0.828423 -2.2559 0.61162,0.854855 -2.2559 0.736599,0.674823 -2.2559 0.0538777,0.679998 -2.2559 -0.0704884,0.626518 -2.2559 -0.0785903,0.647726 -2.2559 0.0431436,0.74807 -2.2559 0.646514,0.780723 -2.2559 0.766468,0.572597 -2.2559 -0.0743142,0.618824 -2.2559 0.0393722,0.674624 -2.2559 0.694261,0.58988 -2.2559 0.0427932,0.521063 -2.2559 -0.0578845,1.31271 -2.2559 0.689191,1.31271 -2.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,0,4,3,-1,5,4,0,-1]
coord Coordinate { point [0.499999 -2.2559 0.15748,0.499999 -2.74409 0.55118,0.499999 -2.2559 0.55118,0.499999 -2.74409 0.15748,0.499999 -2.74409 0.11811,0.499999 -2.2559 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -2.74409 0.0699537,0.562654 -2.74409 0.0531982,0.474616 -2.74409 -0.0301625,1.16987 -2.74409 0.736599,1.24401 -2.74409 0.766468,1.24099 -2.74409 0.643902,1.33093 -2.74409 0.0676766,1.33093 -2.74409 -0.0504334,1.2624 -2.74409 -0.00904487,1.16291 -2.74409 0.610735,1.30521 -2.74409 0.0860837,0.435694 -2.74409 0.00739818,0.662463 -2.74409 0.822569,0.649495 -2.74409 0.704413,0.622714 -2.74409 0.70857,1.27844 -2.74409 0.102915,0.712019 -2.74409 0.807301,1.18829 -2.74409 0.0212505,0.381889 -2.74409 0.59055,0.499999 -2.74409 0.59055,0.499999 -2.74409 0.55118,1.25071 -2.74409 0.11811,0.519786 -2.74409 0.0920393,0.381889 -2.74409 0.15748,1.1104 -2.74409 0.0397242,0.61077 -2.74409 0.826656,0.59569 -2.74409 0.706513,1.03058 -2.74409 0.0459318,0.38758 -2.74409 0.642091,0.503108 -2.74409 0.617473,0.499999 -2.74409 0.11811,0.506754 -2.74409 0.11811,1.09205 -2.74409 0.718393,0.559431 -2.74409 0.819366,0.569847 -2.74409 0.69835,1.08052 -2.74409 0.59055,0.406336 -2.74409 0.0528281,0.404381 -2.74409 0.691148,0.512273 -2.74409 0.642979,0.510919 -2.74409 0.80105,0.546545 -2.74409 0.68451,0.43148 -2.74409 0.735358,0.527011 -2.74409 0.665723,0.467572 -2.74409 0.77259,1.01236 -2.74409 0.712276,0.772369 -2.74409 0.11811,0.950763 -2.74409 0.0397242,0.872866 -2.74409 0.0212505,0.913453 -2.74409 0.59055,0.798762 -2.74409 -0.00904487,0.388082 -2.74409 0.103745,0.738296 -2.74409 0.0991288,0.499999 -2.74409 0.15748,0.705722 -2.74409 0.0776788,0.730234 -2.74409 -0.0504334,0.932676 -2.74409 0.718393,0.828423 -2.74409 0.61162,0.674823 -2.74409 0.0538777,0.854855 -2.74409 0.736599,0.679998 -2.74409 -0.0704884,0.647726 -2.74409 0.0431436,0.626518 -2.74409 -0.0785903,0.74807 -2.74409 0.646514,0.618824 -2.74409 0.0393722,0.572597 -2.74409 -0.0743142,0.780723 -2.74409 0.766468,0.674624 -2.74409 0.694261,0.58988 -2.74409 0.0427932,0.521063 -2.74409 -0.0578845,1.31271 -2.74409 0.689191,1.31271 -2.74409 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -2.74409 0.0920393,0.506754 -3.2559 0.11811,0.519786 -3.2559 0.0920393,0.506754 -2.74409 0.11811,0.538805 -2.74409 0.0699537,0.538805 -3.2559 0.0699537,0.562654 -2.74409 0.0531982,0.562654 -3.2559 0.0531982,0.58988 -2.74409 0.0427932,0.58988 -3.2559 0.0427932,0.618824 -2.74409 0.0393722,0.618824 -3.2559 0.0393722,0.647726 -2.74409 0.0431436,0.647726 -3.2559 0.0431436,0.674823 -2.74409 0.0538777,0.674823 -3.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -3.2559 -0.0301625,0.562654 -3.2559 0.0531982,0.538805 -3.2559 0.0699537,1.24099 -3.2559 0.643902,1.24401 -3.2559 0.766468,1.16987 -3.2559 0.736599,1.2624 -3.2559 -0.00904487,1.33093 -3.2559 -0.0504334,1.33093 -3.2559 0.0676766,1.16291 -3.2559 0.610735,1.30521 -3.2559 0.0860837,0.622714 -3.2559 0.70857,0.649495 -3.2559 0.704413,0.662463 -3.2559 0.822569,0.435694 -3.2559 0.00739818,1.27844 -3.2559 0.102915,0.712019 -3.2559 0.807301,1.18829 -3.2559 0.0212505,0.499999 -3.2559 0.55118,0.499999 -3.2559 0.59055,0.381889 -3.2559 0.59055,0.519786 -3.2559 0.0920393,1.25071 -3.2559 0.11811,0.381889 -3.2559 0.15748,1.1104 -3.2559 0.0397242,0.59569 -3.2559 0.706513,0.61077 -3.2559 0.826656,1.03058 -3.2559 0.0459318,0.503108 -3.2559 0.617473,0.38758 -3.2559 0.642091,0.506754 -3.2559 0.11811,0.499999 -3.2559 0.11811,1.09205 -3.2559 0.718393,1.08052 -3.2559 0.59055,0.569847 -3.2559 0.69835,0.559431 -3.2559 0.819366,0.406336 -3.2559 0.0528281,0.512273 -3.2559 0.642979,0.404381 -3.2559 0.691148,0.510919 -3.2559 0.80105,0.546545 -3.2559 0.68451,0.43148 -3.2559 0.735358,0.527011 -3.2559 0.665723,0.467572 -3.2559 0.77259,1.01236 -3.2559 0.712276,0.913453 -3.2559 0.59055,0.772369 -3.2559 0.11811,0.872866 -3.2559 0.0212505,0.950763 -3.2559 0.0397242,0.798762 -3.2559 -0.00904487,0.388082 -3.2559 0.103745,0.499999 -3.2559 0.15748,0.738296 -3.2559 0.0991288,0.705722 -3.2559 0.0776788,0.932676 -3.2559 0.718393,0.730234 -3.2559 -0.0504334,0.828423 -3.2559 0.61162,0.854855 -3.2559 0.736599,0.674823 -3.2559 0.0538777,0.679998 -3.2559 -0.0704884,0.626518 -3.2559 -0.0785903,0.647726 -3.2559 0.0431436,0.74807 -3.2559 0.646514,0.780723 -3.2559 0.766468,0.572597 -3.2559 -0.0743142,0.618824 -3.2559 0.0393722,0.674624 -3.2559 0.694261,0.58988 -3.2559 0.0427932,0.521063 -3.2559 -0.0578845,1.31271 -3.2559 0.689191,1.31271 -3.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -3.2559 0.15748,0.499999 -3.74409 0.55118,0.499999 -3.2559 0.55118,0.499999 -3.74409 0.15748,0.499999 -3.2559 0.11811,0.499999 -3.74409 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -3.74409 0.0699537,0.562654 -3.74409 0.0531982,0.474616 -3.74409 -0.0301625,1.16987 -3.74409 0.736599,1.24401 -3.74409 0.766468,1.24099 -3.74409 0.643902,1.33093 -3.74409 0.0676766,1.33093 -3.74409 -0.0504334,1.2624 -3.74409 -0.00904487,1.16291 -3.74409 0.610735,1.30521 -3.74409 0.0860837,0.435694 -3.74409 0.00739818,0.662463 -3.74409 0.822569,0.649495 -3.74409 0.704413,0.622714 -3.74409 0.70857,1.27844 -3.74409 0.102915,0.712019 -3.74409 0.807301,1.18829 -3.74409 0.0212505,0.381889 -3.74409 0.59055,0.499999 -3.74409 0.59055,0.499999 -3.74409 0.55118,1.25071 -3.74409 0.11811,0.519786 -3.74409 0.0920393,0.381889 -3.74409 0.15748,1.1104 -3.74409 0.0397242,0.61077 -3.74409 0.826656,0.59569 -3.74409 0.706513,1.03058 -3.74409 0.0459318,0.38758 -3.74409 0.642091,0.503108 -3.74409 0.617473,0.499999 -3.74409 0.11811,0.506754 -3.74409 0.11811,1.09205 -3.74409 0.718393,0.559431 -3.74409 0.819366,0.569847 -3.74409 0.69835,1.08052 -3.74409 0.59055,0.406336 -3.74409 0.0528281,0.404381 -3.74409 0.691148,0.512273 -3.74409 0.642979,0.510919 -3.74409 0.80105,0.546545 -3.74409 0.68451,0.43148 -3.74409 0.735358,0.527011 -3.74409 0.665723,0.467572 -3.74409 0.77259,1.01236 -3.74409 0.712276,0.772369 -3.74409 0.11811,0.950763 -3.74409 0.0397242,0.872866 -3.74409 0.0212505,0.913453 -3.74409 0.59055,0.798762 -3.74409 -0.00904487,0.388082 -3.74409 0.103745,0.738296 -3.74409 0.0991288,0.499999 -3.74409 0.15748,0.705722 -3.74409 0.0776788,0.730234 -3.74409 -0.0504334,0.932676 -3.74409 0.718393,0.828423 -3.74409 0.61162,0.674823 -3.74409 0.0538777,0.854855 -3.74409 0.736599,0.679998 -3.74409 -0.0704884,0.647726 -3.74409 0.0431436,0.626518 -3.74409 -0.0785903,0.74807 -3.74409 0.646514,0.618824 -3.74409 0.0393722,0.572597 -3.74409 -0.0743142,0.780723 -3.74409 0.766468,0.674624 -3.74409 0.694261,0.58988 -3.74409 0.0427932,0.521063 -3.74409 -0.0578845,1.31271 -3.74409 0.689191,1.31271 -3.74409 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -3.74409 0.0920393,0.506754 -4.2559 0.11811,0.519786 -4.2559 0.0920393,0.506754 -3.74409 0.11811,0.538805 -3.74409 0.0699537,0.538805 -4.2559 0.0699537,0.562654 -3.74409 0.0531982,0.562654 -4.2559 0.0531982,0.58988 -3.74409 0.0427932,0.58988 -4.2559 0.0427932,0.618824 -3.74409 0.0393722,0.618824 -4.2559 0.0393722,0.647726 -3.74409 0.0431436,0.647726 -4.2559 0.0431436,0.674823 -3.74409 0.0538777,0.674823 -4.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -4.2559 -0.0301625,0.562654 -4.2559 0.0531982,0.538805 -4.2559 0.0699537,1.24099 -4.2559 0.643902,1.24401 -4.2559 0.766468,1.16987 -4.2559 0.736599,1.2624 -4.2559 -0.00904487,1.33093 -4.2559 -0.0504334,1.33093 -4.2559 0.0676766,1.16291 -4.2559 0.610735,1.30521 -4.2559 0.0860837,0.622714 -4.2559 0.70857,0.649495 -4.2559 0.704413,0.662463 -4.2559 0.822569,0.435694 -4.2559 0.00739818,1.27844 -4.2559 0.102915,0.712019 -4.2559 0.807301,1.18829 -4.2559 0.0212505,0.499999 -4.2559 0.55118,0.499999 -4.2559 0.59055,0.381889 -4.2559 0.59055,0.519786 -4.2559 0.0920393,1.25071 -4.2559 0.11811,0.381889 -4.2559 0.15748,1.1104 -4.2559 0.0397242,0.59569 -4.2559 0.706513,0.61077 -4.2559 0.826656,1.03058 -4.2559 0.0459318,0.503108 -4.2559 0.617473,0.38758 -4.2559 0.642091,0.506754 -4.2559 0.11811,0.499999 -4.2559 0.11811,1.09205 -4.2559 0.718393,1.08052 -4.2559 0.59055,0.569847 -4.2559 0.69835,0.559431 -4.2559 0.819366,0.406336 -4.2559 0.0528281,0.512273 -4.2559 0.642979,0.404381 -4.2559 0.691148,0.510919 -4.2559 0.80105,0.546545 -4.2559 0.68451,0.43148 -4.2559 0.735358,0.527011 -4.2559 0.665723,0.467572 -4.2559 0.77259,1.01236 -4.2559 0.712276,0.913453 -4.2559 0.59055,0.772369 -4.2559 0.11811,0.872866 -4.2559 0.0212505,0.950763 -4.2559 0.0397242,0.798762 -4.2559 -0.00904487,0.388082 -4.2559 0.103745,0.499999 -4.2559 0.15748,0.738296 -4.2559 0.0991288,0.705722 -4.2559 0.0776788,0.932676 -4.2559 0.718393,0.730234 -4.2559 -0.0504334,0.828423 -4.2559 0.61162,0.854855 -4.2559 0.736599,0.674823 -4.2559 0.0538777,0.679998 -4.2559 -0.0704884,0.626518 -4.2559 -0.0785903,0.647726 -4.2559 0.0431436,0.74807 -4.2559 0.646514,0.780723 -4.2559 0.766468,0.572597 -4.2559 -0.0743142,0.618824 -4.2559 0.0393722,0.674624 -4.2559 0.694261,0.58988 -4.2559 0.0427932,0.521063 -4.2559 -0.0578845,1.31271 -4.2559 0.689191,1.31271 -4.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -4.2559 0.15748,0.499999 -4.74408 0.55118,0.499999 -4.2559 0.55118,0.499999 -4.74409 0.15748,0.499999 -4.2559 0.11811,0.499999 -4.74408 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -4.74409 0.0699537,0.562654 -4.74409 0.0531982,0.474616 -4.74409 -0.0301625,1.16987 -4.74409 0.736599,1.24401 -4.74409 0.766468,1.24099 -4.74409 0.643902,1.33093 -4.74409 0.0676766,1.33093 -4.74409 -0.0504334,1.2624 -4.74409 -0.00904487,1.16291 -4.74409 0.610735,1.30521 -4.74409 0.0860837,0.435694 -4.74409 0.00739818,0.662463 -4.74409 0.822569,0.649495 -4.74409 0.704413,0.622714 -4.74409 0.70857,1.27844 -4.74409 0.102915,0.712019 -4.74409 0.807301,1.18829 -4.74409 0.0212505,0.381889 -4.74409 0.59055,0.499999 -4.74409 0.59055,0.499999 -4.74408 0.55118,1.25071 -4.74409 0.11811,0.519786 -4.74409 0.0920393,0.381889 -4.74409 0.15748,1.1104 -4.74409 0.0397242,0.61077 -4.74409 0.826656,0.59569 -4.74409 0.706513,1.03058 -4.74409 0.0459318,0.38758 -4.74409 0.642091,0.503108 -4.74409 0.617473,0.499999 -4.74408 0.11811,0.506754 -4.74409 0.11811,1.09205 -4.74409 0.718393,0.559431 -4.74409 0.819366,0.569847 -4.74409 0.69835,1.08052 -4.74409 0.59055,0.406336 -4.74409 0.0528281,0.404381 -4.74409 0.691148,0.512273 -4.74409 0.642979,0.510919 -4.74409 0.80105,0.546545 -4.74409 0.68451,0.43148 -4.74409 0.735358,0.527011 -4.74409 0.665723,0.467572 -4.74409 0.77259,1.01236 -4.74409 0.712276,0.772369 -4.74409 0.11811,0.950763 -4.74409 0.0397242,0.872866 -4.74409 0.0212505,0.913453 -4.74409 0.59055,0.798762 -4.74409 -0.00904487,0.388082 -4.74409 0.103745,0.738296 -4.74409 0.0991288,0.499999 -4.74409 0.15748,0.705722 -4.74409 0.0776788,0.730234 -4.74409 -0.0504334,0.932676 -4.74409 0.718393,0.828423 -4.74409 0.61162,0.674823 -4.74409 0.0538777,0.854855 -4.74409 0.736599,0.679998 -4.74409 -0.0704884,0.647726 -4.74409 0.0431436,0.626518 -4.74409 -0.0785903,0.74807 -4.74409 0.646514,0.618824 -4.74409 0.0393722,0.572597 -4.74409 -0.0743142,0.780723 -4.74409 0.766468,0.674624 -4.74409 0.694261,0.58988 -4.74409 0.0427932,0.521063 -4.74409 -0.0578845,1.31271 -4.74409 0.689191,1.31271 -4.74409 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -4.74409 0.0920393,0.506754 -5.2559 0.11811,0.519786 -5.2559 0.0920393,0.506754 -4.74409 0.11811,0.538805 -4.74409 0.0699537,0.538805 -5.2559 0.0699537,0.562654 -4.74409 0.0531982,0.562654 -5.2559 0.0531982,0.58988 -4.74409 0.0427932,0.58988 -5.2559 0.0427932,0.618824 -4.74409 0.0393722,0.618824 -5.2559 0.0393722,0.647726 -4.74409 0.0431436,0.647726 -5.2559 0.0431436,0.674823 -4.74409 0.0538777,0.674823 -5.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -5.2559 -0.0301625,0.562654 -5.2559 0.0531982,0.538805 -5.2559 0.0699537,1.24099 -5.2559 0.643902,1.24401 -5.2559 0.766468,1.16987 -5.2559 0.736599,1.2624 -5.2559 -0.00904487,1.33093 -5.2559 -0.0504334,1.33093 -5.2559 0.0676766,1.16291 -5.2559 0.610735,1.30521 -5.2559 0.0860837,0.622714 -5.2559 0.70857,0.649495 -5.2559 0.704413,0.662463 -5.2559 0.822569,0.435694 -5.2559 0.00739818,1.27844 -5.2559 0.102915,0.712019 -5.2559 0.807301,1.18829 -5.2559 0.0212505,0.499999 -5.2559 0.55118,0.499999 -5.2559 0.59055,0.381889 -5.2559 0.59055,0.519786 -5.2559 0.0920393,1.25071 -5.2559 0.11811,0.381889 -5.2559 0.15748,1.1104 -5.2559 0.0397242,0.59569 -5.2559 0.706513,0.61077 -5.2559 0.826656,1.03058 -5.2559 0.0459318,0.503108 -5.2559 0.617473,0.38758 -5.2559 0.642091,0.506754 -5.2559 0.11811,0.499999 -5.2559 0.11811,1.09205 -5.2559 0.718393,1.08052 -5.2559 0.59055,0.569847 -5.2559 0.69835,0.559431 -5.2559 0.819366,0.406336 -5.2559 0.0528281,0.512273 -5.2559 0.642979,0.404381 -5.2559 0.691148,0.510919 -5.2559 0.80105,0.546545 -5.2559 0.68451,0.43148 -5.2559 0.735358,0.527011 -5.2559 0.665723,0.467572 -5.2559 0.77259,1.01236 -5.2559 0.712276,0.913453 -5.2559 0.59055,0.772369 -5.2559 0.11811,0.872866 -5.2559 0.0212505,0.950763 -5.2559 0.0397242,0.798762 -5.2559 -0.00904487,0.388082 -5.2559 0.103745,0.499999 -5.2559 0.15748,0.738296 -5.2559 0.0991288,0.705722 -5.2559 0.0776788,0.932676 -5.2559 0.718393,0.730234 -5.2559 -0.0504334,0.828423 -5.2559 0.61162,0.854855 -5.2559 0.736599,0.674823 -5.2559 0.0538777,0.679998 -5.2559 -0.0704884,0.626518 -5.2559 -0.0785903,0.647726 -5.2559 0.0431436,0.74807 -5.2559 0.646514,0.780723 -5.2559 0.766468,0.572597 -5.2559 -0.0743142,0.618824 -5.2559 0.0393722,0.674624 -5.2559 0.694261,0.58988 -5.2559 0.0427932,0.521063 -5.2559 -0.0578845,1.31271 -5.2559 0.689191,1.31271 -5.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -5.2559 0.15748,0.499999 -5.74408 0.55118,0.499999 -5.2559 0.55118,0.499999 -5.74408 0.15748,0.499999 -5.2559 0.11811,0.499999 -5.74408 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -5.74408 0.0699537,0.562654 -5.74408 0.0531982,0.474616 -5.74408 -0.0301625,1.16987 -5.74408 0.736599,1.24401 -5.74408 0.766468,1.24099 -5.74408 0.643902,1.33093 -5.74408 0.0676766,1.33093 -5.74408 -0.0504334,1.2624 -5.74408 -0.00904487,1.16291 -5.74408 0.610735,1.30521 -5.74408 0.0860837,0.435694 -5.74408 0.00739818,0.662463 -5.74408 0.822569,0.649495 -5.74408 0.704413,0.622714 -5.74408 0.70857,1.27844 -5.74408 0.102915,0.712019 -5.74408 0.807301,1.18829 -5.74408 0.0212505,0.381889 -5.74408 0.59055,0.499999 -5.74408 0.59055,0.499999 -5.74408 0.55118,1.25071 -5.74408 0.11811,0.519786 -5.74408 0.0920393,0.381889 -5.74408 0.15748,1.1104 -5.74408 0.0397242,0.61077 -5.74408 0.826656,0.59569 -5.74408 0.706513,1.03058 -5.74408 0.0459318,0.38758 -5.74408 0.642091,0.503108 -5.74408 0.617473,0.499999 -5.74408 0.11811,0.506754 -5.74408 0.11811,1.09205 -5.74408 0.718393,0.559431 -5.74408 0.819366,0.569847 -5.74408 0.69835,1.08052 -5.74408 0.59055,0.406336 -5.74408 0.0528281,0.404381 -5.74408 0.691148,0.512273 -5.74408 0.642979,0.510919 -5.74408 0.80105,0.546545 -5.74408 0.68451,0.43148 -5.74408 0.735358,0.527011 -5.74408 0.665723,0.467572 -5.74408 0.77259,1.01236 -5.74408 0.712276,0.772369 -5.74408 0.11811,0.950763 -5.74408 0.0397242,0.872866 -5.74408 0.0212505,0.913453 -5.74408 0.59055,0.798762 -5.74408 -0.00904487,0.388082 -5.74408 0.103745,0.738296 -5.74408 0.0991288,0.499999 -5.74408 0.15748,0.705722 -5.74408 0.0776788,0.730234 -5.74408 -0.0504334,0.932676 -5.74408 0.718393,0.828423 -5.74408 0.61162,0.674823 -5.74408 0.0538777,0.854855 -5.74408 0.736599,0.679998 -5.74408 -0.0704884,0.647726 -5.74408 0.0431436,0.626518 -5.74408 -0.0785903,0.74807 -5.74408 0.646514,0.618824 -5.74408 0.0393722,0.572597 -5.74408 -0.0743142,0.780723 -5.74408 0.766468,0.674624 -5.74408 0.694261,0.58988 -5.74408 0.0427932,0.521063 -5.74408 -0.0578845,1.31271 -5.74408 0.689191,1.31271 -5.74408 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -5.74408 0.0920393,0.506754 -6.25589 0.11811,0.519786 -6.25589 0.0920393,0.506754 -5.74408 0.11811,0.538805 -5.74408 0.0699537,0.538805 -6.25589 0.0699537,0.562654 -5.74408 0.0531982,0.562654 -6.25589 0.0531982,0.58988 -5.74408 0.0427932,0.58988 -6.25589 0.0427932,0.618824 -5.74408 0.0393722,0.618824 -6.25589 0.0393722,0.647726 -5.74408 0.0431436,0.647726 -6.25589 0.0431436,0.674823 -5.74408 0.0538777,0.674823 -6.25589 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -6.25589 -0.0301625,0.562654 -6.25589 0.0531982,0.538805 -6.25589 0.0699537,1.24099 -6.25589 0.643902,1.24401 -6.25589 0.766468,1.16987 -6.25589 0.736599,1.2624 -6.25589 -0.00904487,1.33093 -6.25589 -0.0504334,1.33093 -6.25589 0.0676766,1.16291 -6.25589 0.610735,1.30521 -6.25589 0.0860837,0.622714 -6.25589 0.70857,0.649495 -6.25589 0.704413,0.662463 -6.25589 0.822569,0.435694 -6.25589 0.00739818,1.27844 -6.25589 0.102915,0.712019 -6.25589 0.807301,1.18829 -6.25589 0.0212505,0.499999 -6.25589 0.55118,0.499999 -6.25589 0.59055,0.381889 -6.25589 0.59055,0.519786 -6.25589 0.0920393,1.25071 -6.25589 0.11811,0.381889 -6.25589 0.15748,1.1104 -6.25589 0.0397242,0.59569 -6.25589 0.706513,0.61077 -6.25589 0.826656,1.03058 -6.25589 0.0459318,0.503108 -6.25589 0.617473,0.38758 -6.25589 0.642091,0.506754 -6.25589 0.11811,0.499999 -6.25589 0.11811,1.09205 -6.25589 0.718393,1.08052 -6.25589 0.59055,0.569847 -6.25589 0.69835,0.559431 -6.25589 0.819366,0.406336 -6.25589 0.0528281,0.512273 -6.25589 0.642979,0.404381 -6.25589 0.691148,0.510919 -6.25589 0.80105,0.546545 -6.25589 0.68451,0.43148 -6.25589 0.735358,0.527011 -6.25589 0.665723,0.467572 -6.25589 0.77259,1.01236 -6.25589 0.712276,0.913453 -6.25589 0.59055,0.772369 -6.25589 0.11811,0.872866 -6.25589 0.0212505,0.950763 -6.25589 0.0397242,0.798762 -6.25589 -0.00904487,0.388082 -6.25589 0.103745,0.499999 -6.25589 0.15748,0.738296 -6.25589 0.0991288,0.705722 -6.25589 0.0776788,0.932676 -6.25589 0.718393,0.730234 -6.25589 -0.0504334,0.828423 -6.25589 0.61162,0.854855 -6.25589 0.736599,0.674823 -6.25589 0.0538777,0.679998 -6.25589 -0.0704884,0.626518 -6.25589 -0.0785903,0.647726 -6.25589 0.0431436,0.74807 -6.25589 0.646514,0.780723 -6.25589 0.766468,0.572597 -6.25589 -0.0743142,0.618824 -6.25589 0.0393722,0.674624 -6.25589 0.694261,0.58988 -6.25589 0.0427932,0.521063 -6.25589 -0.0578845,1.31271 -6.25589 0.689191,1.31271 -6.25589 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -6.25589 0.15748,0.499999 -6.74408 0.55118,0.499999 -6.25589 0.55118,0.499999 -6.74408 0.15748,0.499999 -6.25589 0.11811,0.499999 -6.74408 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -6.74408 0.0699537,0.562654 -6.74408 0.0531982,0.474616 -6.74408 -0.0301625,1.16987 -6.74408 0.736599,1.24401 -6.74408 0.766468,1.24099 -6.74408 0.643902,1.33093 -6.74408 0.0676766,1.33093 -6.74408 -0.0504334,1.2624 -6.74408 -0.00904487,1.16291 -6.74408 0.610735,1.30521 -6.74408 0.0860837,0.435694 -6.74408 0.00739818,0.662463 -6.74408 0.822569,0.649495 -6.74408 0.704413,0.622714 -6.74408 0.70857,1.27844 -6.74408 0.102915,0.712019 -6.74408 0.807301,1.18829 -6.74408 0.0212505,0.381889 -6.74408 0.59055,0.499999 -6.74408 0.59055,0.499999 -6.74408 0.55118,1.25071 -6.74408 0.11811,0.519786 -6.74408 0.0920393,0.381889 -6.74408 0.15748,1.1104 -6.74408 0.0397242,0.61077 -6.74408 0.826656,0.59569 -6.74408 0.706513,1.03058 -6.74408 0.0459318,0.38758 -6.74408 0.642091,0.503108 -6.74408 0.617473,0.499999 -6.74408 0.11811,0.506754 -6.74408 0.11811,1.09205 -6.74408 0.718393,0.559431 -6.74408 0.819366,0.569847 -6.74408 0.69835,1.08052 -6.74408 0.59055,0.406336 -6.74408 0.0528281,0.404381 -6.74408 0.691148,0.512273 -6.74408 0.642979,0.510919 -6.74408 0.80105,0.546545 -6.74408 0.68451,0.43148 -6.74408 0.735358,0.527011 -6.74408 0.665723,0.467572 -6.74408 0.77259,1.01236 -6.74408 0.712276,0.772369 -6.74408 0.11811,0.950763 -6.74408 0.0397242,0.872866 -6.74408 0.0212505,0.913453 -6.74408 0.59055,0.798762 -6.74408 -0.00904487,0.388082 -6.74408 0.103745,0.738296 -6.74408 0.0991288,0.499999 -6.74408 0.15748,0.705722 -6.74408 0.0776788,0.730234 -6.74408 -0.0504334,0.932676 -6.74408 0.718393,0.828423 -6.74408 0.61162,0.674823 -6.74408 0.0538777,0.854855 -6.74408 0.736599,0.679998 -6.74408 -0.0704884,0.647726 -6.74408 0.0431436,0.626518 -6.74408 -0.0785903,0.74807 -6.74408 0.646514,0.618824 -6.74408 0.0393722,0.572597 -6.74408 -0.0743142,0.780723 -6.74408 0.766468,0.674624 -6.74408 0.694261,0.58988 -6.74408 0.0427932,0.521063 -6.74408 -0.0578845,1.31271 -6.74408 0.689191,1.31271 -6.74408 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -6.74408 0.0920393,0.506754 -7.25589 0.11811,0.519786 -7.25589 0.0920393,0.506754 -6.74408 0.11811,0.538805 -6.74408 0.0699537,0.538805 -7.25589 0.0699537,0.562654 -6.74408 0.0531982,0.562654 -7.25589 0.0531982,0.58988 -6.74408 0.0427932,0.58988 -7.25589 0.0427932,0.618824 -6.74408 0.0393722,0.618824 -7.25589 0.0393722,0.647726 -6.74408 0.0431436,0.647726 -7.25589 0.0431436,0.674823 -6.74408 0.0538777,0.674823 -7.25589 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -7.25589 -0.0301625,0.562654 -7.25589 0.0531982,0.538805 -7.25589 0.0699537,1.24099 -7.25589 0.643902,1.24401 -7.25589 0.766468,1.16987 -7.25589 0.736599,1.2624 -7.25589 -0.00904487,1.33093 -7.25589 -0.0504334,1.33093 -7.25589 0.0676766,1.16291 -7.25589 0.610735,1.30521 -7.25589 0.0860837,0.622714 -7.25589 0.70857,0.649495 -7.25589 0.704413,0.662463 -7.25589 0.822569,0.435694 -7.25589 0.00739818,1.27844 -7.25589 0.102915,0.712019 -7.25589 0.807301,1.18829 -7.25589 0.0212505,0.499999 -7.25589 0.55118,0.499999 -7.25589 0.59055,0.381889 -7.25589 0.59055,0.519786 -7.25589 0.0920393,1.25071 -7.25589 0.11811,0.381889 -7.25589 0.15748,1.1104 -7.25589 0.0397242,0.59569 -7.25589 0.706513,0.61077 -7.25589 0.826656,1.03058 -7.25589 0.0459318,0.503108 -7.25589 0.617473,0.38758 -7.25589 0.642091,0.506754 -7.25589 0.11811,0.499999 -7.25589 0.11811,1.09205 -7.25589 0.718393,1.08052 -7.25589 0.59055,0.569847 -7.25589 0.69835,0.559431 -7.25589 0.819366,0.406336 -7.25589 0.0528281,0.512273 -7.25589 0.642979,0.404381 -7.25589 0.691148,0.510919 -7.25589 0.80105,0.546545 -7.25589 0.68451,0.43148 -7.25589 0.735358,0.527011 -7.25589 0.665723,0.467572 -7.25589 0.77259,1.01236 -7.25589 0.712276,0.913453 -7.25589 0.59055,0.772369 -7.25589 0.11811,0.872866 -7.25589 0.0212505,0.950763 -7.25589 0.0397242,0.798762 -7.25589 -0.00904487,0.388082 -7.25589 0.103745,0.499999 -7.25589 0.15748,0.738296 -7.25589 0.0991288,0.705722 -7.25589 0.0776788,0.932676 -7.25589 0.718393,0.730234 -7.25589 -0.0504334,0.828423 -7.25589 0.61162,0.854855 -7.25589 0.736599,0.674823 -7.25589 0.0538777,0.679998 -7.25589 -0.0704884,0.626518 -7.25589 -0.0785903,0.647726 -7.25589 0.0431436,0.74807 -7.25589 0.646514,0.780723 -7.25589 0.766468,0.572597 -7.25589 -0.0743142,0.618824 -7.25589 0.0393722,0.674624 -7.25589 0.694261,0.58988 -7.25589 0.0427932,0.521063 -7.25589 -0.0578845,1.31271 -7.25589 0.689191,1.31271 -7.25589 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -7.25589 0.15748,0.499999 -7.74408 0.55118,0.499999 -7.25589 0.55118,0.499999 -7.74408 0.15748,0.499999 -7.25589 0.11811,0.499999 -7.74408 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -7.74408 0.0699537,0.562654 -7.74408 0.0531982,0.474616 -7.74408 -0.0301625,1.16987 -7.74408 0.736599,1.24401 -7.74408 0.766468,1.24099 -7.74408 0.643902,1.33093 -7.74408 0.0676766,1.33093 -7.74408 -0.0504334,1.2624 -7.74408 -0.00904487,1.16291 -7.74408 0.610735,1.30521 -7.74408 0.0860837,0.435694 -7.74408 0.00739818,0.662463 -7.74408 0.822569,0.649495 -7.74408 0.704413,0.622714 -7.74408 0.70857,1.27844 -7.74408 0.102915,0.712019 -7.74408 0.807301,1.18829 -7.74408 0.0212505,0.381889 -7.74408 0.59055,0.499999 -7.74408 0.59055,0.499999 -7.74408 0.55118,1.25071 -7.74408 0.11811,0.519786 -7.74408 0.0920393,0.381889 -7.74408 0.15748,1.1104 -7.74408 0.0397242,0.61077 -7.74408 0.826656,0.59569 -7.74408 0.706513,1.03058 -7.74408 0.0459318,0.38758 -7.74408 0.642091,0.503108 -7.74408 0.617473,0.499999 -7.74408 0.11811,0.506754 -7.74408 0.11811,1.09205 -7.74408 0.718393,0.559431 -7.74408 0.819366,0.569847 -7.74408 0.69835,1.08052 -7.74408 0.59055,0.406336 -7.74408 0.0528281,0.404381 -7.74408 0.691148,0.512273 -7.74408 0.642979,0.510919 -7.74408 0.80105,0.546545 -7.74408 0.68451,0.43148 -7.74408 0.735358,0.527011 -7.74408 0.665723,0.467572 -7.74408 0.77259,1.01236 -7.74408 0.712276,0.772369 -7.74408 0.11811,0.950763 -7.74408 0.0397242,0.872866 -7.74408 0.0212505,0.913453 -7.74408 0.59055,0.798762 -7.74408 -0.00904487,0.388082 -7.74408 0.103745,0.738296 -7.74408 0.0991288,0.499999 -7.74408 0.15748,0.705722 -7.74408 0.0776788,0.730234 -7.74408 -0.0504334,0.932676 -7.74408 0.718393,0.828423 -7.74408 0.61162,0.674823 -7.74408 0.0538777,0.854855 -7.74408 0.736599,0.679998 -7.74408 -0.0704884,0.647726 -7.74408 0.0431436,0.626518 -7.74408 -0.0785903,0.74807 -7.74408 0.646514,0.618824 -7.74408 0.0393722,0.572597 -7.74408 -0.0743142,0.780723 -7.74408 0.766468,0.674624 -7.74408 0.694261,0.58988 -7.74408 0.0427932,0.521063 -7.74408 -0.0578845,1.31271 -7.74408 0.689191,1.31271 -7.74408 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -7.74408 0.0920393,0.506754 -8.25589 0.11811,0.519786 -8.25589 0.0920393,0.506754 -7.74408 0.11811,0.538805 -7.74408 0.0699537,0.538805 -8.25589 0.0699537,0.562654 -7.74408 0.0531982,0.562654 -8.25589 0.0531982,0.58988 -7.74408 0.0427932,0.58988 -8.25589 0.0427932,0.618824 -7.74408 0.0393722,0.618824 -8.25589 0.0393722,0.647726 -7.74408 0.0431436,0.647726 -8.25589 0.0431436,0.674823 -7.74408 0.0538777,0.674823 -8.25589 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -8.25589 -0.0301625,0.562654 -8.25589 0.0531982,0.538805 -8.25589 0.0699537,1.24099 -8.25589 0.643902,1.24401 -8.25589 0.766468,1.16987 -8.25589 0.736599,1.2624 -8.25589 -0.00904487,1.33093 -8.25589 -0.0504334,1.33093 -8.25589 0.0676766,1.16291 -8.25589 0.610735,1.30521 -8.25589 0.0860837,0.622714 -8.25589 0.70857,0.649495 -8.25589 0.704413,0.662463 -8.25589 0.822569,0.435694 -8.25589 0.00739818,1.27844 -8.25589 0.102915,0.712019 -8.25589 0.807301,1.18829 -8.25589 0.0212505,0.499999 -8.25589 0.55118,0.499999 -8.25589 0.59055,0.381889 -8.25589 0.59055,0.519786 -8.25589 0.0920393,1.25071 -8.25589 0.11811,0.381889 -8.25589 0.15748,1.1104 -8.25589 0.0397242,0.59569 -8.25589 0.706513,0.61077 -8.25589 0.826656,1.03058 -8.25589 0.0459318,0.503108 -8.25589 0.617473,0.38758 -8.25589 0.642091,0.506754 -8.25589 0.11811,0.499999 -8.25589 0.11811,1.09205 -8.25589 0.718393,1.08052 -8.25589 0.59055,0.569847 -8.25589 0.69835,0.559431 -8.25589 0.819366,0.406336 -8.25589 0.0528281,0.512273 -8.25589 0.642979,0.404381 -8.25589 0.691148,0.510919 -8.25589 0.80105,0.546545 -8.25589 0.68451,0.43148 -8.25589 0.735358,0.527011 -8.25589 0.665723,0.467572 -8.25589 0.77259,1.01236 -8.25589 0.712276,0.913453 -8.25589 0.59055,0.772369 -8.25589 0.11811,0.872866 -8.25589 0.0212505,0.950763 -8.25589 0.0397242,0.798762 -8.25589 -0.00904487,0.388082 -8.25589 0.103745,0.499999 -8.25589 0.15748,0.738296 -8.25589 0.0991288,0.705722 -8.25589 0.0776788,0.932676 -8.25589 0.718393,0.730234 -8.25589 -0.0504334,0.828423 -8.25589 0.61162,0.854855 -8.25589 0.736599,0.674823 -8.25589 0.0538777,0.679998 -8.25589 -0.0704884,0.626518 -8.25589 -0.0785903,0.647726 -8.25589 0.0431436,0.74807 -8.25589 0.646514,0.780723 -8.25589 0.766468,0.572597 -8.25589 -0.0743142,0.618824 -8.25589 0.0393722,0.674624 -8.25589 0.694261,0.58988 -8.25589 0.0427932,0.521063 -8.25589 -0.0578845,1.31271 -8.25589 0.689191,1.31271 -8.25589 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -8.25589 0.15748,0.499999 -8.74408 0.55118,0.499999 -8.25589 0.55118,0.499999 -8.74408 0.15748,0.499999 -8.25589 0.11811,0.499999 -8.74408 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -8.74408 0.0699537,0.562654 -8.74408 0.0531982,0.474616 -8.74408 -0.0301625,1.16987 -8.74408 0.736599,1.24401 -8.74408 0.766468,1.24099 -8.74408 0.643902,1.33093 -8.74408 0.0676766,1.33093 -8.74408 -0.0504334,1.2624 -8.74408 -0.00904487,1.16291 -8.74408 0.610735,1.30521 -8.74408 0.0860837,0.435694 -8.74408 0.00739818,0.662463 -8.74408 0.822569,0.649495 -8.74408 0.704413,0.622714 -8.74408 0.70857,1.27844 -8.74408 0.102915,0.712019 -8.74408 0.807301,1.18829 -8.74408 0.0212505,0.381889 -8.74408 0.59055,0.499999 -8.74408 0.59055,0.499999 -8.74408 0.55118,1.25071 -8.74408 0.11811,0.519786 -8.74408 0.0920393,0.381889 -8.74408 0.15748,1.1104 -8.74408 0.0397242,0.61077 -8.74408 0.826656,0.59569 -8.74408 0.706513,1.03058 -8.74408 0.0459318,0.38758 -8.74408 0.642091,0.503108 -8.74408 0.617473,0.499999 -8.74408 0.11811,0.506754 -8.74408 0.11811,1.09205 -8.74408 0.718393,0.559431 -8.74408 0.819366,0.569847 -8.74408 0.69835,1.08052 -8.74408 0.59055,0.406336 -8.74408 0.0528281,0.404381 -8.74408 0.691148,0.512273 -8.74408 0.642979,0.510919 -8.74408 0.80105,0.546545 -8.74408 0.68451,0.43148 -8.74408 0.735358,0.527011 -8.74408 0.665723,0.467572 -8.74408 0.77259,1.01236 -8.74408 0.712276,0.772369 -8.74408 0.11811,0.950763 -8.74408 0.0397242,0.872866 -8.74408 0.0212505,0.913453 -8.74408 0.59055,0.798762 -8.74408 -0.00904487,0.388082 -8.74408 0.103745,0.738296 -8.74408 0.0991288,0.499999 -8.74408 0.15748,0.705722 -8.74408 0.0776788,0.730234 -8.74408 -0.0504334,0.932676 -8.74408 0.718393,0.828423 -8.74408 0.61162,0.674823 -8.74408 0.0538777,0.854855 -8.74408 0.736599,0.679998 -8.74408 -0.0704884,0.647726 -8.74408 0.0431436,0.626518 -8.74408 -0.0785903,0.74807 -8.74408 0.646514,0.618824 -8.74408 0.0393722,0.572597 -8.74408 -0.0743142,0.780723 -8.74408 0.766468,0.674624 -8.74408 0.694261,0.58988 -8.74408 0.0427932,0.521063 -8.74408 -0.0578845,1.31271 -8.74408 0.689191,1.31271 -8.74408 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -8.74408 0.0920393,0.506754 -9.25589 0.11811,0.519786 -9.25589 0.0920393,0.506754 -8.74408 0.11811,0.538805 -8.74408 0.0699537,0.538805 -9.25589 0.0699537,0.562654 -8.74408 0.0531982,0.562654 -9.25589 0.0531982,0.58988 -8.74408 0.0427932,0.58988 -9.25589 0.0427932,0.618824 -8.74408 0.0393722,0.618824 -9.25589 0.0393722,0.647726 -8.74408 0.0431436,0.647726 -9.25589 0.0431436,0.674823 -8.74408 0.0538777,0.674823 -9.25589 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -9.25589 -0.0301625,0.562654 -9.25589 0.0531982,0.538805 -9.25589 0.0699537,1.24099 -9.25589 0.643902,1.24401 -9.25589 0.766468,1.16987 -9.25589 0.736599,1.2624 -9.25589 -0.00904487,1.33093 -9.25589 -0.0504334,1.33093 -9.25589 0.0676766,1.16291 -9.25589 0.610735,1.30521 -9.25589 0.0860837,0.622714 -9.25589 0.70857,0.649495 -9.25589 0.704413,0.662463 -9.25589 0.822569,0.435694 -9.25589 0.00739818,1.27844 -9.25589 0.102915,0.712019 -9.25589 0.807301,1.18829 -9.25589 0.0212505,0.499999 -9.25589 0.55118,0.499999 -9.25589 0.59055,0.381889 -9.25589 0.59055,0.519786 -9.25589 0.0920393,1.25071 -9.25589 0.11811,0.381889 -9.25589 0.15748,1.1104 -9.25589 0.0397242,0.59569 -9.25589 0.706513,0.61077 -9.25589 0.826656,1.03058 -9.25589 0.0459318,0.503108 -9.25589 0.617473,0.38758 -9.25589 0.642091,0.506754 -9.25589 0.11811,0.499999 -9.25589 0.11811,1.09205 -9.25589 0.718393,1.08052 -9.25589 0.59055,0.569847 -9.25589 0.69835,0.559431 -9.25589 0.819366,0.406336 -9.25589 0.0528281,0.512273 -9.25589 0.642979,0.404381 -9.25589 0.691148,0.510919 -9.25589 0.80105,0.546545 -9.25589 0.68451,0.43148 -9.25589 0.735358,0.527011 -9.25589 0.665723,0.467572 -9.25589 0.77259,1.01236 -9.25589 0.712276,0.913453 -9.25589 0.59055,0.772369 -9.25589 0.11811,0.872866 -9.25589 0.0212505,0.950763 -9.25589 0.0397242,0.798762 -9.25589 -0.00904487,0.388082 -9.25589 0.103745,0.499999 -9.25589 0.15748,0.738296 -9.25589 0.0991288,0.705722 -9.25589 0.0776788,0.932676 -9.25589 0.718393,0.730234 -9.25589 -0.0504334,0.828423 -9.25589 0.61162,0.854855 -9.25589 0.736599,0.674823 -9.25589 0.0538777,0.679998 -9.25589 -0.0704884,0.626518 -9.25589 -0.0785903,0.647726 -9.25589 0.0431436,0.74807 -9.25589 0.646514,0.780723 -9.25589 0.766468,0.572597 -9.25589 -0.0743142,0.618824 -9.25589 0.0393722,0.674624 -9.25589 0.694261,0.58988 -9.25589 0.0427932,0.521063 -9.25589 -0.0578845,1.31271 -9.25589 0.689191,1.31271 -9.25589 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -9.25589 0.15748,0.499999 -9.74408 0.55118,0.499999 -9.25589 0.55118,0.499999 -9.74408 0.15748,0.499999 -9.25589 0.11811,0.499999 -9.74408 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -9.74408 0.0699537,0.562654 -9.74408 0.0531982,0.474616 -9.74408 -0.0301625,1.16987 -9.74408 0.736599,1.24401 -9.74408 0.766468,1.24099 -9.74408 0.643902,1.33093 -9.74408 0.0676766,1.33093 -9.74408 -0.0504334,1.2624 -9.74408 -0.00904487,1.16291 -9.74408 0.610735,1.30521 -9.74408 0.0860837,0.435694 -9.74408 0.00739818,0.662463 -9.74408 0.822569,0.649495 -9.74408 0.704413,0.622714 -9.74408 0.70857,1.27844 -9.74408 0.102915,0.712019 -9.74408 0.807301,1.18829 -9.74408 0.0212505,0.381889 -9.74408 0.59055,0.499999 -9.74408 0.59055,0.499999 -9.74408 0.55118,1.25071 -9.74408 0.11811,0.519786 -9.74408 0.0920393,0.381889 -9.74408 0.15748,1.1104 -9.74408 0.0397242,0.61077 -9.74408 0.826656,0.59569 -9.74408 0.706513,1.03058 -9.74408 0.0459318,0.38758 -9.74408 0.642091,0.503108 -9.74408 0.617473,0.499999 -9.74408 0.11811,0.506754 -9.74408 0.11811,1.09205 -9.74408 0.718393,0.559431 -9.74408 0.819366,0.569847 -9.74408 0.69835,1.08052 -9.74408 0.59055,0.406336 -9.74408 0.0528281,0.404381 -9.74408 0.691148,0.512273 -9.74408 0.642979,0.510919 -9.74408 0.80105,0.546545 -9.74408 0.68451,0.43148 -9.74408 0.735358,0.527011 -9.74408 0.665723,0.467572 -9.74408 0.77259,1.01236 -9.74408 0.712276,0.772369 -9.74408 0.11811,0.950763 -9.74408 0.0397242,0.872866 -9.74408 0.0212505,0.913453 -9.74408 0.59055,0.798762 -9.74408 -0.00904487,0.388082 -9.74408 0.103745,0.738296 -9.74408 0.0991288,0.499999 -9.74408 0.15748,0.705722 -9.74408 0.0776788,0.730234 -9.74408 -0.0504334,0.932676 -9.74408 0.718393,0.828423 -9.74408 0.61162,0.674823 -9.74408 0.0538777,0.854855 -9.74408 0.736599,0.679998 -9.74408 -0.0704884,0.647726 -9.74408 0.0431436,0.626518 -9.74408 -0.0785903,0.74807 -9.74408 0.646514,0.618824 -9.74408 0.0393722,0.572597 -9.74408 -0.0743142,0.780723 -9.74408 0.766468,0.674624 -9.74408 0.694261,0.58988 -9.74408 0.0427932,0.521063 -9.74408 -0.0578845,1.31271 -9.74408 0.689191,1.31271 -9.74408 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -9.74408 0.0920393,0.506754 -10.2559 0.11811,0.519786 -10.2559 0.0920393,0.506754 -9.74408 0.11811,0.538805 -9.74408 0.0699537,0.538805 -10.2559 0.0699537,0.562654 -9.74408 0.0531982,0.562654 -10.2559 0.0531982,0.58988 -9.74408 0.0427932,0.58988 -10.2559 0.0427932,0.618824 -9.74408 0.0393722,0.618824 -10.2559 0.0393722,0.647726 -9.74408 0.0431436,0.647726 -10.2559 0.0431436,0.674823 -9.74408 0.0538777,0.674823 -10.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -10.2559 -0.0301625,0.562654 -10.2559 0.0531982,0.538805 -10.2559 0.0699537,1.24099 -10.2559 0.643902,1.24401 -10.2559 0.766468,1.16987 -10.2559 0.736599,1.2624 -10.2559 -0.00904487,1.33093 -10.2559 -0.0504334,1.33093 -10.2559 0.0676766,1.16291 -10.2559 0.610735,1.30521 -10.2559 0.0860837,0.622714 -10.2559 0.70857,0.649495 -10.2559 0.704413,0.662463 -10.2559 0.822569,0.435694 -10.2559 0.00739818,1.27844 -10.2559 0.102915,0.712019 -10.2559 0.807301,1.18829 -10.2559 0.0212505,0.499999 -10.2559 0.55118,0.499999 -10.2559 0.59055,0.381889 -10.2559 0.59055,0.519786 -10.2559 0.0920393,1.25071 -10.2559 0.11811,0.381889 -10.2559 0.15748,1.1104 -10.2559 0.0397242,0.59569 -10.2559 0.706513,0.61077 -10.2559 0.826656,1.03058 -10.2559 0.0459318,0.503108 -10.2559 0.617473,0.38758 -10.2559 0.642091,0.506754 -10.2559 0.11811,0.499999 -10.2559 0.11811,1.09205 -10.2559 0.718393,1.08052 -10.2559 0.59055,0.569847 -10.2559 0.69835,0.559431 -10.2559 0.819366,0.406336 -10.2559 0.0528281,0.512273 -10.2559 0.642979,0.404381 -10.2559 0.691148,0.510919 -10.2559 0.80105,0.546545 -10.2559 0.68451,0.43148 -10.2559 0.735358,0.527011 -10.2559 0.665723,0.467572 -10.2559 0.77259,1.01236 -10.2559 0.712276,0.913453 -10.2559 0.59055,0.772369 -10.2559 0.11811,0.872866 -10.2559 0.0212505,0.950763 -10.2559 0.0397242,0.798762 -10.2559 -0.00904487,0.388082 -10.2559 0.103745,0.499999 -10.2559 0.15748,0.738296 -10.2559 0.0991288,0.705722 -10.2559 0.0776788,0.932676 -10.2559 0.718393,0.730234 -10.2559 -0.0504334,0.828423 -10.2559 0.61162,0.854855 -10.2559 0.736599,0.674823 -10.2559 0.0538777,0.679998 -10.2559 -0.0704884,0.626518 -10.2559 -0.0785903,0.647726 -10.2559 0.0431436,0.74807 -10.2559 0.646514,0.780723 -10.2559 0.766468,0.572597 -10.2559 -0.0743142,0.618824 -10.2559 0.0393722,0.674624 -10.2559 0.694261,0.58988 -10.2559 0.0427932,0.521063 -10.2559 -0.0578845,1.31271 -10.2559 0.689191,1.31271 -10.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -10.2559 0.15748,0.499999 -10.7441 0.55118,0.499999 -10.2559 0.55118,0.499999 -10.7441 0.15748,0.499999 -10.2559 0.11811,0.499999 -10.7441 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -10.7441 0.0699537,0.562654 -10.7441 0.0531982,0.474616 -10.7441 -0.0301625,1.16987 -10.7441 0.736599,1.24401 -10.7441 0.766468,1.24099 -10.7441 0.643902,1.33093 -10.7441 0.0676766,1.33093 -10.7441 -0.0504334,1.2624 -10.7441 -0.00904487,1.16291 -10.7441 0.610735,1.30521 -10.7441 0.0860837,0.435694 -10.7441 0.00739818,0.662463 -10.7441 0.822569,0.649495 -10.7441 0.704413,0.622714 -10.7441 0.70857,1.27844 -10.7441 0.102915,0.712019 -10.7441 0.807301,1.18829 -10.7441 0.0212505,0.381889 -10.7441 0.59055,0.499999 -10.7441 0.59055,0.499999 -10.7441 0.55118,1.25071 -10.7441 0.11811,0.519786 -10.7441 0.0920393,0.381889 -10.7441 0.15748,1.1104 -10.7441 0.0397242,0.61077 -10.7441 0.826656,0.59569 -10.7441 0.706513,1.03058 -10.7441 0.0459318,0.38758 -10.7441 0.642091,0.503108 -10.7441 0.617473,0.499999 -10.7441 0.11811,0.506754 -10.7441 0.11811,1.09205 -10.7441 0.718393,0.559431 -10.7441 0.819366,0.569847 -10.7441 0.69835,1.08052 -10.7441 0.59055,0.406336 -10.7441 0.0528281,0.404381 -10.7441 0.691148,0.512273 -10.7441 0.642979,0.510919 -10.7441 0.80105,0.546545 -10.7441 0.68451,0.43148 -10.7441 0.735358,0.527011 -10.7441 0.665723,0.467572 -10.7441 0.77259,1.01236 -10.7441 0.712276,0.772369 -10.7441 0.11811,0.950763 -10.7441 0.0397242,0.872866 -10.7441 0.0212505,0.913453 -10.7441 0.59055,0.798762 -10.7441 -0.00904487,0.388082 -10.7441 0.103745,0.738296 -10.7441 0.0991288,0.499999 -10.7441 0.15748,0.705722 -10.7441 0.0776788,0.730234 -10.7441 -0.0504334,0.932676 -10.7441 0.718393,0.828423 -10.7441 0.61162,0.674823 -10.7441 0.0538777,0.854855 -10.7441 0.736599,0.679998 -10.7441 -0.0704884,0.647726 -10.7441 0.0431436,0.626518 -10.7441 -0.0785903,0.74807 -10.7441 0.646514,0.618824 -10.7441 0.0393722,0.572597 -10.7441 -0.0743142,0.780723 -10.7441 0.766468,0.674624 -10.7441 0.694261,0.58988 -10.7441 0.0427932,0.521063 -10.7441 -0.0578845,1.31271 -10.7441 0.689191,1.31271 -10.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -10.7441 0.0920393,0.506754 -11.2559 0.11811,0.519786 -11.2559 0.0920393,0.506754 -10.7441 0.11811,0.538805 -10.7441 0.0699537,0.538805 -11.2559 0.0699537,0.562654 -10.7441 0.0531982,0.562654 -11.2559 0.0531982,0.58988 -10.7441 0.0427932,0.58988 -11.2559 0.0427932,0.618824 -10.7441 0.0393722,0.618824 -11.2559 0.0393722,0.647726 -10.7441 0.0431436,0.647726 -11.2559 0.0431436,0.674823 -10.7441 0.0538777,0.674823 -11.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -11.2559 -0.0301625,0.562654 -11.2559 0.0531982,0.538805 -11.2559 0.0699537,1.24099 -11.2559 0.643902,1.24401 -11.2559 0.766468,1.16987 -11.2559 0.736599,1.2624 -11.2559 -0.00904487,1.33093 -11.2559 -0.0504334,1.33093 -11.2559 0.0676766,1.16291 -11.2559 0.610735,1.30521 -11.2559 0.0860837,0.622714 -11.2559 0.70857,0.649495 -11.2559 0.704413,0.662463 -11.2559 0.822569,0.435694 -11.2559 0.00739818,1.27844 -11.2559 0.102915,0.712019 -11.2559 0.807301,1.18829 -11.2559 0.0212505,0.499999 -11.2559 0.55118,0.499999 -11.2559 0.59055,0.381889 -11.2559 0.59055,0.519786 -11.2559 0.0920393,1.25071 -11.2559 0.11811,0.381889 -11.2559 0.15748,1.1104 -11.2559 0.0397242,0.59569 -11.2559 0.706513,0.61077 -11.2559 0.826656,1.03058 -11.2559 0.0459318,0.503108 -11.2559 0.617473,0.38758 -11.2559 0.642091,0.506754 -11.2559 0.11811,0.499999 -11.2559 0.11811,1.09205 -11.2559 0.718393,1.08052 -11.2559 0.59055,0.569847 -11.2559 0.69835,0.559431 -11.2559 0.819366,0.406336 -11.2559 0.0528281,0.512273 -11.2559 0.642979,0.404381 -11.2559 0.691148,0.510919 -11.2559 0.80105,0.546545 -11.2559 0.68451,0.43148 -11.2559 0.735358,0.527011 -11.2559 0.665723,0.467572 -11.2559 0.77259,1.01236 -11.2559 0.712276,0.913453 -11.2559 0.59055,0.772369 -11.2559 0.11811,0.872866 -11.2559 0.0212505,0.950763 -11.2559 0.0397242,0.798762 -11.2559 -0.00904487,0.388082 -11.2559 0.103745,0.499999 -11.2559 0.15748,0.738296 -11.2559 0.0991288,0.705722 -11.2559 0.0776788,0.932676 -11.2559 0.718393,0.730234 -11.2559 -0.0504334,0.828423 -11.2559 0.61162,0.854855 -11.2559 0.736599,0.674823 -11.2559 0.0538777,0.679998 -11.2559 -0.0704884,0.626518 -11.2559 -0.0785903,0.647726 -11.2559 0.0431436,0.74807 -11.2559 0.646514,0.780723 -11.2559 0.766468,0.572597 -11.2559 -0.0743142,0.618824 -11.2559 0.0393722,0.674624 -11.2559 0.694261,0.58988 -11.2559 0.0427932,0.521063 -11.2559 -0.0578845,1.31271 -11.2559 0.689191,1.31271 -11.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -11.2559 0.15748,0.499999 -11.7441 0.55118,0.499999 -11.2559 0.55118,0.499999 -11.7441 0.15748,0.499999 -11.2559 0.11811,0.499999 -11.7441 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -11.7441 0.0699537,0.562654 -11.7441 0.0531982,0.474616 -11.7441 -0.0301625,1.16987 -11.7441 0.736599,1.24401 -11.7441 0.766468,1.24099 -11.7441 0.643902,1.33093 -11.7441 0.0676766,1.33093 -11.7441 -0.0504334,1.2624 -11.7441 -0.00904487,1.16291 -11.7441 0.610735,1.30521 -11.7441 0.0860837,0.435694 -11.7441 0.00739818,0.662463 -11.7441 0.822569,0.649495 -11.7441 0.704413,0.622714 -11.7441 0.70857,1.27844 -11.7441 0.102915,0.712019 -11.7441 0.807301,1.18829 -11.7441 0.0212505,0.381889 -11.7441 0.59055,0.499999 -11.7441 0.59055,0.499999 -11.7441 0.55118,1.25071 -11.7441 0.11811,0.519786 -11.7441 0.0920393,0.381889 -11.7441 0.15748,1.1104 -11.7441 0.0397242,0.61077 -11.7441 0.826656,0.59569 -11.7441 0.706513,1.03058 -11.7441 0.0459318,0.38758 -11.7441 0.642091,0.503108 -11.7441 0.617473,0.499999 -11.7441 0.11811,0.506754 -11.7441 0.11811,1.09205 -11.7441 0.718393,0.559431 -11.7441 0.819366,0.569847 -11.7441 0.69835,1.08052 -11.7441 0.59055,0.406336 -11.7441 0.0528281,0.404381 -11.7441 0.691148,0.512273 -11.7441 0.642979,0.510919 -11.7441 0.80105,0.546545 -11.7441 0.68451,0.43148 -11.7441 0.735358,0.527011 -11.7441 0.665723,0.467572 -11.7441 0.77259,1.01236 -11.7441 0.712276,0.772369 -11.7441 0.11811,0.950763 -11.7441 0.0397242,0.872866 -11.7441 0.0212505,0.913453 -11.7441 0.59055,0.798762 -11.7441 -0.00904487,0.388082 -11.7441 0.103745,0.738296 -11.7441 0.0991288,0.499999 -11.7441 0.15748,0.705722 -11.7441 0.0776788,0.730234 -11.7441 -0.0504334,0.932676 -11.7441 0.718393,0.828423 -11.7441 0.61162,0.674823 -11.7441 0.0538777,0.854855 -11.7441 0.736599,0.679998 -11.7441 -0.0704884,0.647726 -11.7441 0.0431436,0.626518 -11.7441 -0.0785903,0.74807 -11.7441 0.646514,0.618824 -11.7441 0.0393722,0.572597 -11.7441 -0.0743142,0.780723 -11.7441 0.766468,0.674624 -11.7441 0.694261,0.58988 -11.7441 0.0427932,0.521063 -11.7441 -0.0578845,1.31271 -11.7441 0.689191,1.31271 -11.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -11.7441 0.0920393,0.506754 -12.2559 0.11811,0.519786 -12.2559 0.0920393,0.506754 -11.7441 0.11811,0.538805 -11.7441 0.0699537,0.538805 -12.2559 0.0699537,0.562654 -11.7441 0.0531982,0.562654 -12.2559 0.0531982,0.58988 -11.7441 0.0427932,0.58988 -12.2559 0.0427932,0.618824 -11.7441 0.0393722,0.618824 -12.2559 0.0393722,0.647726 -11.7441 0.0431436,0.647726 -12.2559 0.0431436,0.674823 -11.7441 0.0538777,0.674823 -12.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -12.2559 -0.0301625,0.562654 -12.2559 0.0531982,0.538805 -12.2559 0.0699537,1.24099 -12.2559 0.643902,1.24401 -12.2559 0.766468,1.16987 -12.2559 0.736599,1.2624 -12.2559 -0.00904487,1.33093 -12.2559 -0.0504334,1.33093 -12.2559 0.0676766,1.16291 -12.2559 0.610735,1.30521 -12.2559 0.0860837,0.622714 -12.2559 0.70857,0.649495 -12.2559 0.704413,0.662463 -12.2559 0.822569,0.435694 -12.2559 0.00739818,1.27844 -12.2559 0.102915,0.712019 -12.2559 0.807301,1.18829 -12.2559 0.0212505,0.499999 -12.2559 0.55118,0.499999 -12.2559 0.59055,0.381889 -12.2559 0.59055,0.519786 -12.2559 0.0920393,1.25071 -12.2559 0.11811,0.381889 -12.2559 0.15748,1.1104 -12.2559 0.0397242,0.59569 -12.2559 0.706513,0.61077 -12.2559 0.826656,1.03058 -12.2559 0.0459318,0.503108 -12.2559 0.617473,0.38758 -12.2559 0.642091,0.506754 -12.2559 0.11811,0.499999 -12.2559 0.11811,1.09205 -12.2559 0.718393,1.08052 -12.2559 0.59055,0.569847 -12.2559 0.69835,0.559431 -12.2559 0.819366,0.406336 -12.2559 0.0528281,0.512273 -12.2559 0.642979,0.404381 -12.2559 0.691148,0.510919 -12.2559 0.80105,0.546545 -12.2559 0.68451,0.43148 -12.2559 0.735358,0.527011 -12.2559 0.665723,0.467572 -12.2559 0.77259,1.01236 -12.2559 0.712276,0.913453 -12.2559 0.59055,0.772369 -12.2559 0.11811,0.872866 -12.2559 0.0212505,0.950763 -12.2559 0.0397242,0.798762 -12.2559 -0.00904487,0.388082 -12.2559 0.103745,0.499999 -12.2559 0.15748,0.738296 -12.2559 0.0991288,0.705722 -12.2559 0.0776788,0.932676 -12.2559 0.718393,0.730234 -12.2559 -0.0504334,0.828423 -12.2559 0.61162,0.854855 -12.2559 0.736599,0.674823 -12.2559 0.0538777,0.679998 -12.2559 -0.0704884,0.626518 -12.2559 -0.0785903,0.647726 -12.2559 0.0431436,0.74807 -12.2559 0.646514,0.780723 -12.2559 0.766468,0.572597 -12.2559 -0.0743142,0.618824 -12.2559 0.0393722,0.674624 -12.2559 0.694261,0.58988 -12.2559 0.0427932,0.521063 -12.2559 -0.0578845,1.31271 -12.2559 0.689191,1.31271 -12.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -12.2559 0.15748,0.499999 -12.7441 0.55118,0.499999 -12.2559 0.55118,0.499999 -12.7441 0.15748,0.499999 -12.2559 0.11811,0.499999 -12.7441 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -12.7441 0.0699537,0.562654 -12.7441 0.0531982,0.474616 -12.7441 -0.0301625,1.16987 -12.7441 0.736599,1.24401 -12.7441 0.766468,1.24099 -12.7441 0.643902,1.33093 -12.7441 0.0676766,1.33093 -12.7441 -0.0504334,1.2624 -12.7441 -0.00904487,1.16291 -12.7441 0.610735,1.30521 -12.7441 0.0860837,0.435694 -12.7441 0.00739818,0.662463 -12.7441 0.822569,0.649495 -12.7441 0.704413,0.622714 -12.7441 0.70857,1.27844 -12.7441 0.102915,0.712019 -12.7441 0.807301,1.18829 -12.7441 0.0212505,0.381889 -12.7441 0.59055,0.499999 -12.7441 0.59055,0.499999 -12.7441 0.55118,1.25071 -12.7441 0.11811,0.519786 -12.7441 0.0920393,0.381889 -12.7441 0.15748,1.1104 -12.7441 0.0397242,0.61077 -12.7441 0.826656,0.59569 -12.7441 0.706513,1.03058 -12.7441 0.0459318,0.38758 -12.7441 0.642091,0.503108 -12.7441 0.617473,0.499999 -12.7441 0.11811,0.506754 -12.7441 0.11811,1.09205 -12.7441 0.718393,0.559431 -12.7441 0.819366,0.569847 -12.7441 0.69835,1.08052 -12.7441 0.59055,0.406336 -12.7441 0.0528281,0.404381 -12.7441 0.691148,0.512273 -12.7441 0.642979,0.510919 -12.7441 0.80105,0.546545 -12.7441 0.68451,0.43148 -12.7441 0.735358,0.527011 -12.7441 0.665723,0.467572 -12.7441 0.77259,1.01236 -12.7441 0.712276,0.772369 -12.7441 0.11811,0.950763 -12.7441 0.0397242,0.872866 -12.7441 0.0212505,0.913453 -12.7441 0.59055,0.798762 -12.7441 -0.00904487,0.388082 -12.7441 0.103745,0.738296 -12.7441 0.0991288,0.499999 -12.7441 0.15748,0.705722 -12.7441 0.0776788,0.730234 -12.7441 -0.0504334,0.932676 -12.7441 0.718393,0.828423 -12.7441 0.61162,0.674823 -12.7441 0.0538777,0.854855 -12.7441 0.736599,0.679998 -12.7441 -0.0704884,0.647726 -12.7441 0.0431436,0.626518 -12.7441 -0.0785903,0.74807 -12.7441 0.646514,0.618824 -12.7441 0.0393722,0.572597 -12.7441 -0.0743142,0.780723 -12.7441 0.766468,0.674624 -12.7441 0.694261,0.58988 -12.7441 0.0427932,0.521063 -12.7441 -0.0578845,1.31271 -12.7441 0.689191,1.31271 -12.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -12.7441 0.0920393,0.506754 -13.2559 0.11811,0.519786 -13.2559 0.0920393,0.506754 -12.7441 0.11811,0.538805 -12.7441 0.0699537,0.538805 -13.2559 0.0699537,0.562654 -12.7441 0.0531982,0.562654 -13.2559 0.0531982,0.58988 -12.7441 0.0427932,0.58988 -13.2559 0.0427932,0.618824 -12.7441 0.0393722,0.618824 -13.2559 0.0393722,0.647726 -12.7441 0.0431436,0.647726 -13.2559 0.0431436,0.674823 -12.7441 0.0538777,0.674823 -13.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -13.2559 -0.0301625,0.562654 -13.2559 0.0531982,0.538805 -13.2559 0.0699537,1.24099 -13.2559 0.643902,1.24401 -13.2559 0.766468,1.16987 -13.2559 0.736599,1.2624 -13.2559 -0.00904487,1.33093 -13.2559 -0.0504334,1.33093 -13.2559 0.0676766,1.16291 -13.2559 0.610735,1.30521 -13.2559 0.0860837,0.622714 -13.2559 0.70857,0.649495 -13.2559 0.704413,0.662463 -13.2559 0.822569,0.435694 -13.2559 0.00739818,1.27844 -13.2559 0.102915,0.712019 -13.2559 0.807301,1.18829 -13.2559 0.0212505,0.499999 -13.2559 0.55118,0.499999 -13.2559 0.59055,0.381889 -13.2559 0.59055,0.519786 -13.2559 0.0920393,1.25071 -13.2559 0.11811,0.381889 -13.2559 0.15748,1.1104 -13.2559 0.0397242,0.59569 -13.2559 0.706513,0.61077 -13.2559 0.826656,1.03058 -13.2559 0.0459318,0.503108 -13.2559 0.617473,0.38758 -13.2559 0.642091,0.506754 -13.2559 0.11811,0.499999 -13.2559 0.11811,1.09205 -13.2559 0.718393,1.08052 -13.2559 0.59055,0.569847 -13.2559 0.69835,0.559431 -13.2559 0.819366,0.406336 -13.2559 0.0528281,0.512273 -13.2559 0.642979,0.404381 -13.2559 0.691148,0.510919 -13.2559 0.80105,0.546545 -13.2559 0.68451,0.43148 -13.2559 0.735358,0.527011 -13.2559 0.665723,0.467572 -13.2559 0.77259,1.01236 -13.2559 0.712276,0.913453 -13.2559 0.59055,0.772369 -13.2559 0.11811,0.872866 -13.2559 0.0212505,0.950763 -13.2559 0.0397242,0.798762 -13.2559 -0.00904487,0.388082 -13.2559 0.103745,0.499999 -13.2559 0.15748,0.738296 -13.2559 0.0991288,0.705722 -13.2559 0.0776788,0.932676 -13.2559 0.718393,0.730234 -13.2559 -0.0504334,0.828423 -13.2559 0.61162,0.854855 -13.2559 0.736599,0.674823 -13.2559 0.0538777,0.679998 -13.2559 -0.0704884,0.626518 -13.2559 -0.0785903,0.647726 -13.2559 0.0431436,0.74807 -13.2559 0.646514,0.780723 -13.2559 0.766468,0.572597 -13.2559 -0.0743142,0.618824 -13.2559 0.0393722,0.674624 -13.2559 0.694261,0.58988 -13.2559 0.0427932,0.521063 -13.2559 -0.0578845,1.31271 -13.2559 0.689191,1.31271 -13.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -13.2559 0.15748,0.499999 -13.7441 0.55118,0.499999 -13.2559 0.55118,0.499999 -13.7441 0.15748,0.499999 -13.2559 0.11811,0.499999 -13.7441 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -13.7441 0.0699537,0.562654 -13.7441 0.0531982,0.474616 -13.7441 -0.0301625,1.16987 -13.7441 0.736599,1.24401 -13.7441 0.766468,1.24099 -13.7441 0.643902,1.33093 -13.7441 0.0676766,1.33093 -13.7441 -0.0504334,1.2624 -13.7441 -0.00904487,1.16291 -13.7441 0.610735,1.30521 -13.7441 0.0860837,0.435694 -13.7441 0.00739818,0.662463 -13.7441 0.822569,0.649495 -13.7441 0.704413,0.622714 -13.7441 0.70857,1.27844 -13.7441 0.102915,0.712019 -13.7441 0.807301,1.18829 -13.7441 0.0212505,0.381889 -13.7441 0.59055,0.499999 -13.7441 0.59055,0.499999 -13.7441 0.55118,1.25071 -13.7441 0.11811,0.519786 -13.7441 0.0920393,0.381889 -13.7441 0.15748,1.1104 -13.7441 0.0397242,0.61077 -13.7441 0.826656,0.59569 -13.7441 0.706513,1.03058 -13.7441 0.0459318,0.38758 -13.7441 0.642091,0.503108 -13.7441 0.617473,0.499999 -13.7441 0.11811,0.506754 -13.7441 0.11811,1.09205 -13.7441 0.718393,0.559431 -13.7441 0.819366,0.569847 -13.7441 0.69835,1.08052 -13.7441 0.59055,0.406336 -13.7441 0.0528281,0.404381 -13.7441 0.691148,0.512273 -13.7441 0.642979,0.510919 -13.7441 0.80105,0.546545 -13.7441 0.68451,0.43148 -13.7441 0.735358,0.527011 -13.7441 0.665723,0.467572 -13.7441 0.77259,1.01236 -13.7441 0.712276,0.772369 -13.7441 0.11811,0.950763 -13.7441 0.0397242,0.872866 -13.7441 0.0212505,0.913453 -13.7441 0.59055,0.798762 -13.7441 -0.00904487,0.388082 -13.7441 0.103745,0.738296 -13.7441 0.0991288,0.499999 -13.7441 0.15748,0.705722 -13.7441 0.0776788,0.730234 -13.7441 -0.0504334,0.932676 -13.7441 0.718393,0.828423 -13.7441 0.61162,0.674823 -13.7441 0.0538777,0.854855 -13.7441 0.736599,0.679998 -13.7441 -0.0704884,0.647726 -13.7441 0.0431436,0.626518 -13.7441 -0.0785903,0.74807 -13.7441 0.646514,0.618824 -13.7441 0.0393722,0.572597 -13.7441 -0.0743142,0.780723 -13.7441 0.766468,0.674624 -13.7441 0.694261,0.58988 -13.7441 0.0427932,0.521063 -13.7441 -0.0578845,1.31271 -13.7441 0.689191,1.31271 -13.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -13.7441 0.0920393,0.506754 -14.2559 0.11811,0.519786 -14.2559 0.0920393,0.506754 -13.7441 0.11811,0.538805 -13.7441 0.0699537,0.538805 -14.2559 0.0699537,0.562654 -13.7441 0.0531982,0.562654 -14.2559 0.0531982,0.58988 -13.7441 0.0427932,0.58988 -14.2559 0.0427932,0.618824 -13.7441 0.0393722,0.618824 -14.2559 0.0393722,0.647726 -13.7441 0.0431436,0.647726 -14.2559 0.0431436,0.674823 -13.7441 0.0538777,0.674823 -14.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -14.2559 -0.0301625,0.562654 -14.2559 0.0531982,0.538805 -14.2559 0.0699537,1.24099 -14.2559 0.643902,1.24401 -14.2559 0.766468,1.16987 -14.2559 0.736599,1.2624 -14.2559 -0.00904487,1.33093 -14.2559 -0.0504334,1.33093 -14.2559 0.0676766,1.16291 -14.2559 0.610735,1.30521 -14.2559 0.0860837,0.622714 -14.2559 0.70857,0.649495 -14.2559 0.704413,0.662463 -14.2559 0.822569,0.435694 -14.2559 0.00739818,1.27844 -14.2559 0.102915,0.712019 -14.2559 0.807301,1.18829 -14.2559 0.0212505,0.499999 -14.2559 0.55118,0.499999 -14.2559 0.59055,0.381889 -14.2559 0.59055,0.519786 -14.2559 0.0920393,1.25071 -14.2559 0.11811,0.381889 -14.2559 0.15748,1.1104 -14.2559 0.0397242,0.59569 -14.2559 0.706513,0.61077 -14.2559 0.826656,1.03058 -14.2559 0.0459318,0.503108 -14.2559 0.617473,0.38758 -14.2559 0.642091,0.506754 -14.2559 0.11811,0.499999 -14.2559 0.11811,1.09205 -14.2559 0.718393,1.08052 -14.2559 0.59055,0.569847 -14.2559 0.69835,0.559431 -14.2559 0.819366,0.406336 -14.2559 0.0528281,0.512273 -14.2559 0.642979,0.404381 -14.2559 0.691148,0.510919 -14.2559 0.80105,0.546545 -14.2559 0.68451,0.43148 -14.2559 0.735358,0.527011 -14.2559 0.665723,0.467572 -14.2559 0.77259,1.01236 -14.2559 0.712276,0.913453 -14.2559 0.59055,0.772369 -14.2559 0.11811,0.872866 -14.2559 0.0212505,0.950763 -14.2559 0.0397242,0.798762 -14.2559 -0.00904487,0.388082 -14.2559 0.103745,0.499999 -14.2559 0.15748,0.738296 -14.2559 0.0991288,0.705722 -14.2559 0.0776788,0.932676 -14.2559 0.718393,0.730234 -14.2559 -0.0504334,0.828423 -14.2559 0.61162,0.854855 -14.2559 0.736599,0.674823 -14.2559 0.0538777,0.679998 -14.2559 -0.0704884,0.626518 -14.2559 -0.0785903,0.647726 -14.2559 0.0431436,0.74807 -14.2559 0.646514,0.780723 -14.2559 0.766468,0.572597 -14.2559 -0.0743142,0.618824 -14.2559 0.0393722,0.674624 -14.2559 0.694261,0.58988 -14.2559 0.0427932,0.521063 -14.2559 -0.0578845,1.31271 -14.2559 0.689191,1.31271 -14.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -14.2559 0.15748,0.499999 -14.7441 0.55118,0.499999 -14.2559 0.55118,0.499999 -14.7441 0.15748,0.499999 -14.2559 0.11811,0.499999 -14.7441 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -14.7441 0.0699537,0.562654 -14.7441 0.0531982,0.474616 -14.7441 -0.0301625,1.16987 -14.7441 0.736599,1.24401 -14.7441 0.766468,1.24099 -14.7441 0.643902,1.33093 -14.7441 0.0676766,1.33093 -14.7441 -0.0504334,1.2624 -14.7441 -0.00904487,1.16291 -14.7441 0.610735,1.30521 -14.7441 0.0860837,0.435694 -14.7441 0.00739818,0.662463 -14.7441 0.822569,0.649495 -14.7441 0.704413,0.622714 -14.7441 0.70857,1.27844 -14.7441 0.102915,0.712019 -14.7441 0.807301,1.18829 -14.7441 0.0212505,0.381889 -14.7441 0.59055,0.499999 -14.7441 0.59055,0.499999 -14.7441 0.55118,1.25071 -14.7441 0.11811,0.519786 -14.7441 0.0920393,0.381889 -14.7441 0.15748,1.1104 -14.7441 0.0397242,0.61077 -14.7441 0.826656,0.59569 -14.7441 0.706513,1.03058 -14.7441 0.0459318,0.38758 -14.7441 0.642091,0.503108 -14.7441 0.617473,0.499999 -14.7441 0.11811,0.506754 -14.7441 0.11811,1.09205 -14.7441 0.718393,0.559431 -14.7441 0.819366,0.569847 -14.7441 0.69835,1.08052 -14.7441 0.59055,0.406336 -14.7441 0.0528281,0.404381 -14.7441 0.691148,0.512273 -14.7441 0.642979,0.510919 -14.7441 0.80105,0.546545 -14.7441 0.68451,0.43148 -14.7441 0.735358,0.527011 -14.7441 0.665723,0.467572 -14.7441 0.77259,1.01236 -14.7441 0.712276,0.772369 -14.7441 0.11811,0.950763 -14.7441 0.0397242,0.872866 -14.7441 0.0212505,0.913453 -14.7441 0.59055,0.798762 -14.7441 -0.00904487,0.388082 -14.7441 0.103745,0.738296 -14.7441 0.0991288,0.499999 -14.7441 0.15748,0.705722 -14.7441 0.0776788,0.730234 -14.7441 -0.0504334,0.932676 -14.7441 0.718393,0.828423 -14.7441 0.61162,0.674823 -14.7441 0.0538777,0.854855 -14.7441 0.736599,0.679998 -14.7441 -0.0704884,0.647726 -14.7441 0.0431436,0.626518 -14.7441 -0.0785903,0.74807 -14.7441 0.646514,0.618824 -14.7441 0.0393722,0.572597 -14.7441 -0.0743142,0.780723 -14.7441 0.766468,0.674624 -14.7441 0.694261,0.58988 -14.7441 0.0427932,0.521063 -14.7441 -0.0578845,1.31271 -14.7441 0.689191,1.31271 -14.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -14.7441 0.0920393,0.506754 -15.2559 0.11811,0.519786 -15.2559 0.0920393,0.506754 -14.7441 0.11811,0.538805 -14.7441 0.0699537,0.538805 -15.2559 0.0699537,0.562654 -14.7441 0.0531982,0.562654 -15.2559 0.0531982,0.58988 -14.7441 0.0427932,0.58988 -15.2559 0.0427932,0.618824 -14.7441 0.0393722,0.618824 -15.2559 0.0393722,0.647726 -14.7441 0.0431436,0.647726 -15.2559 0.0431436,0.674823 -14.7441 0.0538777,0.674823 -15.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -15.2559 -0.0301625,0.562654 -15.2559 0.0531982,0.538805 -15.2559 0.0699537,1.24099 -15.2559 0.643902,1.24401 -15.2559 0.766468,1.16987 -15.2559 0.736599,1.2624 -15.2559 -0.00904487,1.33093 -15.2559 -0.0504334,1.33093 -15.2559 0.0676766,1.16291 -15.2559 0.610735,1.30521 -15.2559 0.0860837,0.622714 -15.2559 0.70857,0.649495 -15.2559 0.704413,0.662463 -15.2559 0.822569,0.435694 -15.2559 0.00739818,1.27844 -15.2559 0.102915,0.712019 -15.2559 0.807301,1.18829 -15.2559 0.0212505,0.499999 -15.2559 0.55118,0.499999 -15.2559 0.59055,0.381889 -15.2559 0.59055,0.519786 -15.2559 0.0920393,1.25071 -15.2559 0.11811,0.381889 -15.2559 0.15748,1.1104 -15.2559 0.0397242,0.59569 -15.2559 0.706513,0.61077 -15.2559 0.826656,1.03058 -15.2559 0.0459318,0.503108 -15.2559 0.617473,0.38758 -15.2559 0.642091,0.506754 -15.2559 0.11811,0.499999 -15.2559 0.11811,1.09205 -15.2559 0.718393,1.08052 -15.2559 0.59055,0.569847 -15.2559 0.69835,0.559431 -15.2559 0.819366,0.406336 -15.2559 0.0528281,0.512273 -15.2559 0.642979,0.404381 -15.2559 0.691148,0.510919 -15.2559 0.80105,0.546545 -15.2559 0.68451,0.43148 -15.2559 0.735358,0.527011 -15.2559 0.665723,0.467572 -15.2559 0.77259,1.01236 -15.2559 0.712276,0.913453 -15.2559 0.59055,0.772369 -15.2559 0.11811,0.872866 -15.2559 0.0212505,0.950763 -15.2559 0.0397242,0.798762 -15.2559 -0.00904487,0.388082 -15.2559 0.103745,0.499999 -15.2559 0.15748,0.738296 -15.2559 0.0991288,0.705722 -15.2559 0.0776788,0.932676 -15.2559 0.718393,0.730234 -15.2559 -0.0504334,0.828423 -15.2559 0.61162,0.854855 -15.2559 0.736599,0.674823 -15.2559 0.0538777,0.679998 -15.2559 -0.0704884,0.626518 -15.2559 -0.0785903,0.647726 -15.2559 0.0431436,0.74807 -15.2559 0.646514,0.780723 -15.2559 0.766468,0.572597 -15.2559 -0.0743142,0.618824 -15.2559 0.0393722,0.674624 -15.2559 0.694261,0.58988 -15.2559 0.0427932,0.521063 -15.2559 -0.0578845,1.31271 -15.2559 0.689191,1.31271 -15.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -15.2559 0.15748,0.499999 -15.7441 0.55118,0.499999 -15.2559 0.55118,0.499999 -15.7441 0.15748,0.499999 -15.2559 0.11811,0.499999 -15.7441 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -15.7441 0.0699537,0.562654 -15.7441 0.0531982,0.474616 -15.7441 -0.0301625,1.16987 -15.7441 0.736599,1.24401 -15.7441 0.766468,1.24099 -15.7441 0.643902,1.33093 -15.7441 0.0676766,1.33093 -15.7441 -0.0504334,1.2624 -15.7441 -0.00904487,1.16291 -15.7441 0.610735,1.30521 -15.7441 0.0860837,0.435694 -15.7441 0.00739818,0.662463 -15.7441 0.822569,0.649495 -15.7441 0.704413,0.622714 -15.7441 0.70857,1.27844 -15.7441 0.102915,0.712019 -15.7441 0.807301,1.18829 -15.7441 0.0212505,0.381889 -15.7441 0.59055,0.499999 -15.7441 0.59055,0.499999 -15.7441 0.55118,1.25071 -15.7441 0.11811,0.519786 -15.7441 0.0920393,0.381889 -15.7441 0.15748,1.1104 -15.7441 0.0397242,0.61077 -15.7441 0.826656,0.59569 -15.7441 0.706513,1.03058 -15.7441 0.0459318,0.38758 -15.7441 0.642091,0.503108 -15.7441 0.617473,0.499999 -15.7441 0.11811,0.506754 -15.7441 0.11811,1.09205 -15.7441 0.718393,0.559431 -15.7441 0.819366,0.569847 -15.7441 0.69835,1.08052 -15.7441 0.59055,0.406336 -15.7441 0.0528281,0.404381 -15.7441 0.691148,0.512273 -15.7441 0.642979,0.510919 -15.7441 0.80105,0.546545 -15.7441 0.68451,0.43148 -15.7441 0.735358,0.527011 -15.7441 0.665723,0.467572 -15.7441 0.77259,1.01236 -15.7441 0.712276,0.772369 -15.7441 0.11811,0.950763 -15.7441 0.0397242,0.872866 -15.7441 0.0212505,0.913453 -15.7441 0.59055,0.798762 -15.7441 -0.00904487,0.388082 -15.7441 0.103745,0.738296 -15.7441 0.0991288,0.499999 -15.7441 0.15748,0.705722 -15.7441 0.0776788,0.730234 -15.7441 -0.0504334,0.932676 -15.7441 0.718393,0.828423 -15.7441 0.61162,0.674823 -15.7441 0.0538777,0.854855 -15.7441 0.736599,0.679998 -15.7441 -0.0704884,0.647726 -15.7441 0.0431436,0.626518 -15.7441 -0.0785903,0.74807 -15.7441 0.646514,0.618824 -15.7441 0.0393722,0.572597 -15.7441 -0.0743142,0.780723 -15.7441 0.766468,0.674624 -15.7441 0.694261,0.58988 -15.7441 0.0427932,0.521063 -15.7441 -0.0578845,1.31271 -15.7441 0.689191,1.31271 -15.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -15.7441 0.0920393,0.506754 -16.2559 0.11811,0.519786 -16.2559 0.0920393,0.506754 -15.7441 0.11811,0.538805 -15.7441 0.0699537,0.538805 -16.2559 0.0699537,0.562654 -15.7441 0.0531982,0.562654 -16.2559 0.0531982,0.58988 -15.7441 0.0427932,0.58988 -16.2559 0.0427932,0.618824 -15.7441 0.0393722,0.618824 -16.2559 0.0393722,0.647726 -15.7441 0.0431436,0.647726 -16.2559 0.0431436,0.674823 -15.7441 0.0538777,0.674823 -16.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -16.2559 -0.0301625,0.562654 -16.2559 0.0531982,0.538805 -16.2559 0.0699537,1.24099 -16.2559 0.643902,1.24401 -16.2559 0.766468,1.16987 -16.2559 0.736599,1.2624 -16.2559 -0.00904487,1.33093 -16.2559 -0.0504334,1.33093 -16.2559 0.0676766,1.16291 -16.2559 0.610735,1.30521 -16.2559 0.0860837,0.622714 -16.2559 0.70857,0.649495 -16.2559 0.704413,0.662463 -16.2559 0.822569,0.435694 -16.2559 0.00739818,1.27844 -16.2559 0.102915,0.712019 -16.2559 0.807301,1.18829 -16.2559 0.0212505,0.499999 -16.2559 0.55118,0.499999 -16.2559 0.59055,0.381889 -16.2559 0.59055,0.519786 -16.2559 0.0920393,1.25071 -16.2559 0.11811,0.381889 -16.2559 0.15748,1.1104 -16.2559 0.0397242,0.59569 -16.2559 0.706513,0.61077 -16.2559 0.826656,1.03058 -16.2559 0.0459318,0.503108 -16.2559 0.617473,0.38758 -16.2559 0.642091,0.506754 -16.2559 0.11811,0.499999 -16.2559 0.11811,1.09205 -16.2559 0.718393,1.08052 -16.2559 0.59055,0.569847 -16.2559 0.69835,0.559431 -16.2559 0.819366,0.406336 -16.2559 0.0528281,0.512273 -16.2559 0.642979,0.404381 -16.2559 0.691148,0.510919 -16.2559 0.80105,0.546545 -16.2559 0.68451,0.43148 -16.2559 0.735358,0.527011 -16.2559 0.665723,0.467572 -16.2559 0.77259,1.01236 -16.2559 0.712276,0.913453 -16.2559 0.59055,0.772369 -16.2559 0.11811,0.872866 -16.2559 0.0212505,0.950763 -16.2559 0.0397242,0.798762 -16.2559 -0.00904487,0.388082 -16.2559 0.103745,0.499999 -16.2559 0.15748,0.738296 -16.2559 0.0991288,0.705722 -16.2559 0.0776788,0.932676 -16.2559 0.718393,0.730234 -16.2559 -0.0504334,0.828423 -16.2559 0.61162,0.854855 -16.2559 0.736599,0.674823 -16.2559 0.0538777,0.679998 -16.2559 -0.0704884,0.626518 -16.2559 -0.0785903,0.647726 -16.2559 0.0431436,0.74807 -16.2559 0.646514,0.780723 -16.2559 0.766468,0.572597 -16.2559 -0.0743142,0.618824 -16.2559 0.0393722,0.674624 -16.2559 0.694261,0.58988 -16.2559 0.0427932,0.521063 -16.2559 -0.0578845,1.31271 -16.2559 0.689191,1.31271 -16.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -16.2559 0.15748,0.499999 -16.7441 0.55118,0.499999 -16.2559 0.55118,0.499999 -16.7441 0.15748,0.499999 -16.2559 0.11811,0.499999 -16.7441 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -16.7441 0.0699537,0.562654 -16.7441 0.0531982,0.474616 -16.7441 -0.0301625,1.16987 -16.7441 0.736599,1.24401 -16.7441 0.766468,1.24099 -16.7441 0.643902,1.33093 -16.7441 0.0676766,1.33093 -16.7441 -0.0504334,1.2624 -16.7441 -0.00904487,1.16291 -16.7441 0.610735,1.30521 -16.7441 0.0860837,0.435694 -16.7441 0.00739818,0.662463 -16.7441 0.822569,0.649495 -16.7441 0.704413,0.622714 -16.7441 0.70857,1.27844 -16.7441 0.102915,0.712019 -16.7441 0.807301,1.18829 -16.7441 0.0212505,0.381889 -16.7441 0.59055,0.499999 -16.7441 0.59055,0.499999 -16.7441 0.55118,1.25071 -16.7441 0.11811,0.519786 -16.7441 0.0920393,0.381889 -16.7441 0.15748,1.1104 -16.7441 0.0397242,0.61077 -16.7441 0.826656,0.59569 -16.7441 0.706513,1.03058 -16.7441 0.0459318,0.38758 -16.7441 0.642091,0.503108 -16.7441 0.617473,0.499999 -16.7441 0.11811,0.506754 -16.7441 0.11811,1.09205 -16.7441 0.718393,0.559431 -16.7441 0.819366,0.569847 -16.7441 0.69835,1.08052 -16.7441 0.59055,0.406336 -16.7441 0.0528281,0.404381 -16.7441 0.691148,0.512273 -16.7441 0.642979,0.510919 -16.7441 0.80105,0.546545 -16.7441 0.68451,0.43148 -16.7441 0.735358,0.527011 -16.7441 0.665723,0.467572 -16.7441 0.77259,1.01236 -16.7441 0.712276,0.772369 -16.7441 0.11811,0.950763 -16.7441 0.0397242,0.872866 -16.7441 0.0212505,0.913453 -16.7441 0.59055,0.798762 -16.7441 -0.00904487,0.388082 -16.7441 0.103745,0.738296 -16.7441 0.0991288,0.499999 -16.7441 0.15748,0.705722 -16.7441 0.0776788,0.730234 -16.7441 -0.0504334,0.932676 -16.7441 0.718393,0.828423 -16.7441 0.61162,0.674823 -16.7441 0.0538777,0.854855 -16.7441 0.736599,0.679998 -16.7441 -0.0704884,0.647726 -16.7441 0.0431436,0.626518 -16.7441 -0.0785903,0.74807 -16.7441 0.646514,0.618824 -16.7441 0.0393722,0.572597 -16.7441 -0.0743142,0.780723 -16.7441 0.766468,0.674624 -16.7441 0.694261,0.58988 -16.7441 0.0427932,0.521063 -16.7441 -0.0578845,1.31271 -16.7441 0.689191,1.31271 -16.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -16.7441 0.0920393,0.506754 -17.2559 0.11811,0.519786 -17.2559 0.0920393,0.506754 -16.7441 0.11811,0.538805 -16.7441 0.0699537,0.538805 -17.2559 0.0699537,0.562654 -16.7441 0.0531982,0.562654 -17.2559 0.0531982,0.58988 -16.7441 0.0427932,0.58988 -17.2559 0.0427932,0.618824 -16.7441 0.0393722,0.618824 -17.2559 0.0393722,0.647726 -16.7441 0.0431436,0.647726 -17.2559 0.0431436,0.674823 -16.7441 0.0538777,0.674823 -17.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -17.2559 -0.0301625,0.562654 -17.2559 0.0531982,0.538805 -17.2559 0.0699537,1.24099 -17.2559 0.643902,1.24401 -17.2559 0.766468,1.16987 -17.2559 0.736599,1.2624 -17.2559 -0.00904487,1.33093 -17.2559 -0.0504334,1.33093 -17.2559 0.0676766,1.16291 -17.2559 0.610735,1.30521 -17.2559 0.0860837,0.622714 -17.2559 0.70857,0.649495 -17.2559 0.704413,0.662463 -17.2559 0.822569,0.435694 -17.2559 0.00739818,1.27844 -17.2559 0.102915,0.712019 -17.2559 0.807301,1.18829 -17.2559 0.0212505,0.499999 -17.2559 0.55118,0.499999 -17.2559 0.59055,0.381889 -17.2559 0.59055,0.519786 -17.2559 0.0920393,1.25071 -17.2559 0.11811,0.381889 -17.2559 0.15748,1.1104 -17.2559 0.0397242,0.59569 -17.2559 0.706513,0.61077 -17.2559 0.826656,1.03058 -17.2559 0.0459318,0.503108 -17.2559 0.617473,0.38758 -17.2559 0.642091,0.506754 -17.2559 0.11811,0.499999 -17.2559 0.11811,1.09205 -17.2559 0.718393,1.08052 -17.2559 0.59055,0.569847 -17.2559 0.69835,0.559431 -17.2559 0.819366,0.406336 -17.2559 0.0528281,0.512273 -17.2559 0.642979,0.404381 -17.2559 0.691148,0.510919 -17.2559 0.80105,0.546545 -17.2559 0.68451,0.43148 -17.2559 0.735358,0.527011 -17.2559 0.665723,0.467572 -17.2559 0.77259,1.01236 -17.2559 0.712276,0.913453 -17.2559 0.59055,0.772369 -17.2559 0.11811,0.872866 -17.2559 0.0212505,0.950763 -17.2559 0.0397242,0.798762 -17.2559 -0.00904487,0.388082 -17.2559 0.103745,0.499999 -17.2559 0.15748,0.738296 -17.2559 0.0991288,0.705722 -17.2559 0.0776788,0.932676 -17.2559 0.718393,0.730234 -17.2559 -0.0504334,0.828423 -17.2559 0.61162,0.854855 -17.2559 0.736599,0.674823 -17.2559 0.0538777,0.679998 -17.2559 -0.0704884,0.626518 -17.2559 -0.0785903,0.647726 -17.2559 0.0431436,0.74807 -17.2559 0.646514,0.780723 -17.2559 0.766468,0.572597 -17.2559 -0.0743142,0.618824 -17.2559 0.0393722,0.674624 -17.2559 0.694261,0.58988 -17.2559 0.0427932,0.521063 -17.2559 -0.0578845,1.31271 -17.2559 0.689191,1.31271 -17.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -17.2559 0.15748,0.499999 -17.7441 0.55118,0.499999 -17.2559 0.55118,0.499999 -17.7441 0.15748,0.499999 -17.2559 0.11811,0.499999 -17.7441 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -17.7441 0.0699537,0.562654 -17.7441 0.0531982,0.474616 -17.7441 -0.0301625,1.16987 -17.7441 0.736599,1.24401 -17.7441 0.766468,1.24099 -17.7441 0.643902,1.33093 -17.7441 0.0676766,1.33093 -17.7441 -0.0504334,1.2624 -17.7441 -0.00904487,1.16291 -17.7441 0.610735,1.30521 -17.7441 0.0860837,0.435694 -17.7441 0.00739818,0.662463 -17.7441 0.822569,0.649495 -17.7441 0.704413,0.622714 -17.7441 0.70857,1.27844 -17.7441 0.102915,0.712019 -17.7441 0.807301,1.18829 -17.7441 0.0212505,0.381889 -17.7441 0.59055,0.499999 -17.7441 0.59055,0.499999 -17.7441 0.55118,1.25071 -17.7441 0.11811,0.519786 -17.7441 0.0920393,0.381889 -17.7441 0.15748,1.1104 -17.7441 0.0397242,0.61077 -17.7441 0.826656,0.59569 -17.7441 0.706513,1.03058 -17.7441 0.0459318,0.38758 -17.7441 0.642091,0.503108 -17.7441 0.617473,0.499999 -17.7441 0.11811,0.506754 -17.7441 0.11811,1.09205 -17.7441 0.718393,0.559431 -17.7441 0.819366,0.569847 -17.7441 0.69835,1.08052 -17.7441 0.59055,0.406336 -17.7441 0.0528281,0.404381 -17.7441 0.691148,0.512273 -17.7441 0.642979,0.510919 -17.7441 0.80105,0.546545 -17.7441 0.68451,0.43148 -17.7441 0.735358,0.527011 -17.7441 0.665723,0.467572 -17.7441 0.77259,1.01236 -17.7441 0.712276,0.772369 -17.7441 0.11811,0.950763 -17.7441 0.0397242,0.872866 -17.7441 0.0212505,0.913453 -17.7441 0.59055,0.798762 -17.7441 -0.00904487,0.388082 -17.7441 0.103745,0.738296 -17.7441 0.0991288,0.499999 -17.7441 0.15748,0.705722 -17.7441 0.0776788,0.730234 -17.7441 -0.0504334,0.932676 -17.7441 0.718393,0.828423 -17.7441 0.61162,0.674823 -17.7441 0.0538777,0.854855 -17.7441 0.736599,0.679998 -17.7441 -0.0704884,0.647726 -17.7441 0.0431436,0.626518 -17.7441 -0.0785903,0.74807 -17.7441 0.646514,0.618824 -17.7441 0.0393722,0.572597 -17.7441 -0.0743142,0.780723 -17.7441 0.766468,0.674624 -17.7441 0.694261,0.58988 -17.7441 0.0427932,0.521063 -17.7441 -0.0578845,1.31271 -17.7441 0.689191,1.31271 -17.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -17.7441 0.0920393,0.506754 -18.2559 0.11811,0.519786 -18.2559 0.0920393,0.506754 -17.7441 0.11811,0.538805 -17.7441 0.0699537,0.538805 -18.2559 0.0699537,0.562654 -17.7441 0.0531982,0.562654 -18.2559 0.0531982,0.58988 -17.7441 0.0427932,0.58988 -18.2559 0.0427932,0.618824 -17.7441 0.0393722,0.618824 -18.2559 0.0393722,0.647726 -17.7441 0.0431436,0.647726 -18.2559 0.0431436,0.674823 -17.7441 0.0538777,0.674823 -18.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -18.2559 -0.0301625,0.562654 -18.2559 0.0531982,0.538805 -18.2559 0.0699537,1.24099 -18.2559 0.643902,1.24401 -18.2559 0.766468,1.16987 -18.2559 0.736599,1.2624 -18.2559 -0.00904487,1.33093 -18.2559 -0.0504334,1.33093 -18.2559 0.0676766,1.16291 -18.2559 0.610735,1.30521 -18.2559 0.0860837,0.622714 -18.2559 0.70857,0.649495 -18.2559 0.704413,0.662463 -18.2559 0.822569,0.435694 -18.2559 0.00739818,1.27844 -18.2559 0.102915,0.712019 -18.2559 0.807301,1.18829 -18.2559 0.0212505,0.499999 -18.2559 0.55118,0.499999 -18.2559 0.59055,0.381889 -18.2559 0.59055,0.519786 -18.2559 0.0920393,1.25071 -18.2559 0.11811,0.381889 -18.2559 0.15748,1.1104 -18.2559 0.0397242,0.59569 -18.2559 0.706513,0.61077 -18.2559 0.826656,1.03058 -18.2559 0.0459318,0.503108 -18.2559 0.617473,0.38758 -18.2559 0.642091,0.506754 -18.2559 0.11811,0.499999 -18.2559 0.11811,1.09205 -18.2559 0.718393,1.08052 -18.2559 0.59055,0.569847 -18.2559 0.69835,0.559431 -18.2559 0.819366,0.406336 -18.2559 0.0528281,0.512273 -18.2559 0.642979,0.404381 -18.2559 0.691148,0.510919 -18.2559 0.80105,0.546545 -18.2559 0.68451,0.43148 -18.2559 0.735358,0.527011 -18.2559 0.665723,0.467572 -18.2559 0.77259,1.01236 -18.2559 0.712276,0.913453 -18.2559 0.59055,0.772369 -18.2559 0.11811,0.872866 -18.2559 0.0212505,0.950763 -18.2559 0.0397242,0.798762 -18.2559 -0.00904487,0.388082 -18.2559 0.103745,0.499999 -18.2559 0.15748,0.738296 -18.2559 0.0991288,0.705722 -18.2559 0.0776788,0.932676 -18.2559 0.718393,0.730234 -18.2559 -0.0504334,0.828423 -18.2559 0.61162,0.854855 -18.2559 0.736599,0.674823 -18.2559 0.0538777,0.679998 -18.2559 -0.0704884,0.626518 -18.2559 -0.0785903,0.647726 -18.2559 0.0431436,0.74807 -18.2559 0.646514,0.780723 -18.2559 0.766468,0.572597 -18.2559 -0.0743142,0.618824 -18.2559 0.0393722,0.674624 -18.2559 0.694261,0.58988 -18.2559 0.0427932,0.521063 -18.2559 -0.0578845,1.31271 -18.2559 0.689191,1.31271 -18.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -18.2559 0.15748,0.499999 -18.7441 0.55118,0.499999 -18.2559 0.55118,0.499999 -18.7441 0.15748,0.499999 -18.2559 0.11811,0.499999 -18.7441 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,13,14,-1,15,10,8,-1,12,16,13,-1,17,15,8,-1,18,19,20,-1,21,15,17,-1,22,0,11,-1,18,20,23,-1,24,21,17,-1,25,14,26,-1,27,21,24,-1,25,12,14,-1,28,29,19,-1,30,31,22,-1,28,19,18,-1,32,3,9,-1,33,26,34,-1,32,9,35,-1,33,25,26,-1,36,22,11,-1,36,30,22,-1,37,38,29,-1,37,29,28,-1,39,33,34,-1,39,34,40,-1,41,38,37,-1,41,42,38,-1,43,39,40,-1,43,42,41,-1,43,40,42,-1,44,32,35,-1,45,46,47,-1,45,21,27,-1,44,35,48,-1,45,47,49,-1,45,27,46,-1,50,30,36,-1,51,45,49,-1,23,52,30,-1,23,30,50,-1,53,51,49,-1,53,49,54,-1,55,44,48,-1,55,48,56,-1,57,53,54,-1,58,55,56,-1,57,54,59,-1,60,59,61,-1,60,57,59,-1,62,58,56,-1,63,61,64,-1,65,58,62,-1,63,60,61,-1,66,65,62,-1,20,52,23,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,16,66,13,-1,16,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [0.538805 -18.7441 0.0699537,0.562654 -18.7441 0.0531982,0.474616 -18.7441 -0.0301625,1.16987 -18.7441 0.736599,1.24401 -18.7441 0.766468,1.24099 -18.7441 0.643902,1.33093 -18.7441 0.0676766,1.33093 -18.7441 -0.0504334,1.2624 -18.7441 -0.00904487,1.16291 -18.7441 0.610735,1.30521 -18.7441 0.0860837,0.435694 -18.7441 0.00739818,0.662463 -18.7441 0.822569,0.649495 -18.7441 0.704413,0.622714 -18.7441 0.70857,1.27844 -18.7441 0.102915,0.712019 -18.7441 0.807301,1.18829 -18.7441 0.0212505,0.381889 -18.7441 0.59055,0.499999 -18.7441 0.59055,0.499999 -18.7441 0.55118,1.25071 -18.7441 0.11811,0.519786 -18.7441 0.0920393,0.381889 -18.7441 0.15748,1.1104 -18.7441 0.0397242,0.61077 -18.7441 0.826656,0.59569 -18.7441 0.706513,1.03058 -18.7441 0.0459318,0.38758 -18.7441 0.642091,0.503108 -18.7441 0.617473,0.499999 -18.7441 0.11811,0.506754 -18.7441 0.11811,1.09205 -18.7441 0.718393,0.559431 -18.7441 0.819366,0.569847 -18.7441 0.69835,1.08052 -18.7441 0.59055,0.406336 -18.7441 0.0528281,0.404381 -18.7441 0.691148,0.512273 -18.7441 0.642979,0.510919 -18.7441 0.80105,0.546545 -18.7441 0.68451,0.43148 -18.7441 0.735358,0.527011 -18.7441 0.665723,0.467572 -18.7441 0.77259,1.01236 -18.7441 0.712276,0.772369 -18.7441 0.11811,0.950763 -18.7441 0.0397242,0.872866 -18.7441 0.0212505,0.913453 -18.7441 0.59055,0.798762 -18.7441 -0.00904487,0.388082 -18.7441 0.103745,0.738296 -18.7441 0.0991288,0.499999 -18.7441 0.15748,0.705722 -18.7441 0.0776788,0.730234 -18.7441 -0.0504334,0.932676 -18.7441 0.718393,0.828423 -18.7441 0.61162,0.674823 -18.7441 0.0538777,0.854855 -18.7441 0.736599,0.679998 -18.7441 -0.0704884,0.647726 -18.7441 0.0431436,0.626518 -18.7441 -0.0785903,0.74807 -18.7441 0.646514,0.618824 -18.7441 0.0393722,0.572597 -18.7441 -0.0743142,0.780723 -18.7441 0.766468,0.674624 -18.7441 0.694261,0.58988 -18.7441 0.0427932,0.521063 -18.7441 -0.0578845,1.31271 -18.7441 0.689191,1.31271 -18.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [0.519786 -18.7441 0.0920393,0.506754 -19.2559 0.11811,0.519786 -19.2559 0.0920393,0.506754 -18.7441 0.11811,0.538805 -18.7441 0.0699537,0.538805 -19.2559 0.0699537,0.562654 -18.7441 0.0531982,0.562654 -19.2559 0.0531982,0.58988 -18.7441 0.0427932,0.58988 -19.2559 0.0427932,0.618824 -18.7441 0.0393722,0.618824 -19.2559 0.0393722,0.647726 -18.7441 0.0431436,0.647726 -19.2559 0.0431436,0.674823 -18.7441 0.0538777,0.674823 -19.2559 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,6,15,17,-1,18,19,20,-1,14,2,21,-1,17,15,22,-1,23,18,20,-1,17,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,19,28,29,-1,21,30,31,-1,20,19,29,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,25,26,35,-1,14,21,36,-1,21,31,36,-1,28,37,38,-1,29,28,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,48,46,-1,48,27,46,-1,49,47,46,-1,36,31,50,-1,31,51,23,-1,49,46,52,-1,50,31,23,-1,49,52,53,-1,45,44,54,-1,55,49,53,-1,56,45,54,-1,56,54,57,-1,55,53,58,-1,59,55,58,-1,60,59,61,-1,59,58,61,-1,56,57,62,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,18,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,68,67,1,-1,66,63,16,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [0.474616 -19.2559 -0.0301625,0.562654 -19.2559 0.0531982,0.538805 -19.2559 0.0699537,1.24099 -19.2559 0.643902,1.24401 -19.2559 0.766468,1.16987 -19.2559 0.736599,1.2624 -19.2559 -0.00904487,1.33093 -19.2559 -0.0504334,1.33093 -19.2559 0.0676766,1.16291 -19.2559 0.610735,1.30521 -19.2559 0.0860837,0.622714 -19.2559 0.70857,0.649495 -19.2559 0.704413,0.662463 -19.2559 0.822569,0.435694 -19.2559 0.00739818,1.27844 -19.2559 0.102915,0.712019 -19.2559 0.807301,1.18829 -19.2559 0.0212505,0.499999 -19.2559 0.55118,0.499999 -19.2559 0.59055,0.381889 -19.2559 0.59055,0.519786 -19.2559 0.0920393,1.25071 -19.2559 0.11811,0.381889 -19.2559 0.15748,1.1104 -19.2559 0.0397242,0.59569 -19.2559 0.706513,0.61077 -19.2559 0.826656,1.03058 -19.2559 0.0459318,0.503108 -19.2559 0.617473,0.38758 -19.2559 0.642091,0.506754 -19.2559 0.11811,0.499999 -19.2559 0.11811,1.09205 -19.2559 0.718393,1.08052 -19.2559 0.59055,0.569847 -19.2559 0.69835,0.559431 -19.2559 0.819366,0.406336 -19.2559 0.0528281,0.512273 -19.2559 0.642979,0.404381 -19.2559 0.691148,0.510919 -19.2559 0.80105,0.546545 -19.2559 0.68451,0.43148 -19.2559 0.735358,0.527011 -19.2559 0.665723,0.467572 -19.2559 0.77259,1.01236 -19.2559 0.712276,0.913453 -19.2559 0.59055,0.772369 -19.2559 0.11811,0.872866 -19.2559 0.0212505,0.950763 -19.2559 0.0397242,0.798762 -19.2559 -0.00904487,0.388082 -19.2559 0.103745,0.499999 -19.2559 0.15748,0.738296 -19.2559 0.0991288,0.705722 -19.2559 0.0776788,0.932676 -19.2559 0.718393,0.730234 -19.2559 -0.0504334,0.828423 -19.2559 0.61162,0.854855 -19.2559 0.736599,0.674823 -19.2559 0.0538777,0.679998 -19.2559 -0.0704884,0.626518 -19.2559 -0.0785903,0.647726 -19.2559 0.0431436,0.74807 -19.2559 0.646514,0.780723 -19.2559 0.766468,0.572597 -19.2559 -0.0743142,0.618824 -19.2559 0.0393722,0.674624 -19.2559 0.694261,0.58988 -19.2559 0.0427932,0.521063 -19.2559 -0.0578845,1.31271 -19.2559 0.689191,1.31271 -19.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,3,0,-1]
coord Coordinate { point [0.499999 -19.2559 0.15748,0.499999 -19.5 0.55118,0.499999 -19.2559 0.55118,0.499999 -19.5 0.11811,0.499999 -19.2559 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,7,5,4,-1,7,3,0,-1,7,0,5,-1]
coord Coordinate { point [11.0354 -19.5 0.51181,12.5 -19.5 0.55118,11.0354 -19.5 0.55118,12.5 -19.5 0.11811,0.499999 -19.5 0.55118,2.03543 -19.5 0.51181,2.03543 -19.5 0.55118,0.499999 -19.5 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,0,-1,3,0,2,-1]
coord Coordinate { point [12.5 -19.2559 0.15748,12.5 -19.2559 0.55118,12.5 -19.5 0.55118,12.5 -19.5 0.11811,12.5 -19.2559 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,10,8,-1,13,14,15,-1,16,12,8,-1,17,12,16,-1,13,18,14,-1,19,0,11,-1,20,21,22,-1,23,17,16,-1,20,22,24,-1,25,17,23,-1,26,15,27,-1,28,29,19,-1,26,13,15,-1,30,31,21,-1,32,3,9,-1,30,21,20,-1,32,9,33,-1,34,19,11,-1,35,27,36,-1,34,28,19,-1,35,26,27,-1,37,38,31,-1,37,31,30,-1,39,35,36,-1,39,36,40,-1,41,38,37,-1,42,43,44,-1,41,45,38,-1,42,44,46,-1,47,32,33,-1,48,39,40,-1,48,45,41,-1,47,33,49,-1,48,40,45,-1,42,17,25,-1,42,25,43,-1,50,42,46,-1,51,28,34,-1,24,52,28,-1,53,50,46,-1,24,28,51,-1,53,46,54,-1,55,47,49,-1,55,49,56,-1,57,53,54,-1,57,54,58,-1,59,55,56,-1,60,58,61,-1,60,57,58,-1,62,59,56,-1,63,61,64,-1,63,60,61,-1,65,59,62,-1,66,65,62,-1,22,52,24,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,18,66,14,-1,18,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [12.4612 -19.2559 0.0699537,12.4373 -19.2559 0.0531982,12.5254 -19.2559 -0.0301625,11.8301 -19.2559 0.736599,11.756 -19.2559 0.766468,11.759 -19.2559 0.643902,11.669 -19.2559 0.0676766,11.669 -19.2559 -0.0504334,11.7376 -19.2559 -0.00904487,11.8371 -19.2559 0.610735,11.6948 -19.2559 0.0860837,12.5643 -19.2559 0.00739818,11.7215 -19.2559 0.102915,12.3375 -19.2559 0.822569,12.3505 -19.2559 0.704413,12.3773 -19.2559 0.70857,11.8117 -19.2559 0.0212505,11.7493 -19.2559 0.11811,12.288 -19.2559 0.807301,12.4802 -19.2559 0.0920393,12.6181 -19.2559 0.59055,12.5 -19.2559 0.59055,12.5 -19.2559 0.55118,11.8896 -19.2559 0.0397242,12.6181 -19.2559 0.15748,11.9694 -19.2559 0.0459318,12.3892 -19.2559 0.826656,12.4043 -19.2559 0.706513,12.5 -19.2559 0.11811,12.4932 -19.2559 0.11811,12.6124 -19.2559 0.642091,12.4969 -19.2559 0.617473,11.9079 -19.2559 0.718393,11.9194 -19.2559 0.59055,12.5936 -19.2559 0.0528281,12.4405 -19.2559 0.819366,12.4301 -19.2559 0.69835,12.5956 -19.2559 0.691148,12.4877 -19.2559 0.642979,12.4891 -19.2559 0.80105,12.4534 -19.2559 0.68451,12.5685 -19.2559 0.735358,12.2276 -19.2559 0.11811,12.0492 -19.2559 0.0397242,12.1271 -19.2559 0.0212505,12.473 -19.2559 0.665723,12.2012 -19.2559 -0.00904487,11.9876 -19.2559 0.712276,12.5324 -19.2559 0.77259,12.0865 -19.2559 0.59055,12.2617 -19.2559 0.0991288,12.6119 -19.2559 0.103745,12.5 -19.2559 0.15748,12.2943 -19.2559 0.0776788,12.2697 -19.2559 -0.0504334,12.0673 -19.2559 0.718393,12.1716 -19.2559 0.61162,12.3252 -19.2559 0.0538777,12.32 -19.2559 -0.0704884,12.1451 -19.2559 0.736599,12.3522 -19.2559 0.0431436,12.3735 -19.2559 -0.0785903,12.2519 -19.2559 0.646514,12.3811 -19.2559 0.0393722,12.4274 -19.2559 -0.0743142,12.2193 -19.2559 0.766468,12.3253 -19.2559 0.694261,12.4101 -19.2559 0.0427932,12.4789 -19.2559 -0.0578845,11.6873 -19.2559 0.689191,11.6873 -19.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,9,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [12.4932 -19.2559 0.11811,12.4932 -18.7441 0.11811,12.4802 -18.7441 0.0920393,12.4802 -19.2559 0.0920393,12.4612 -18.7441 0.0699537,12.4612 -19.2559 0.0699537,12.4373 -18.7441 0.0531982,12.4373 -19.2559 0.0531982,12.4101 -18.7441 0.0427932,12.4101 -19.2559 0.0427932,12.3811 -18.7441 0.0393722,12.3811 -19.2559 0.0393722,12.3522 -19.2559 0.0431436,12.3522 -18.7441 0.0431436,12.3252 -19.2559 0.0538777,12.3252 -18.7441 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,17,18,19,-1,6,15,20,-1,14,2,21,-1,20,15,22,-1,23,17,19,-1,20,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,21,28,29,-1,18,30,31,-1,19,18,31,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,14,21,36,-1,25,26,35,-1,21,29,36,-1,30,37,38,-1,31,30,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,27,46,-1,48,47,46,-1,49,48,46,-1,36,29,50,-1,29,51,23,-1,50,29,23,-1,49,46,52,-1,49,52,53,-1,45,44,54,-1,55,45,54,-1,56,49,53,-1,55,54,57,-1,56,53,58,-1,59,56,58,-1,60,59,61,-1,55,57,62,-1,59,58,61,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,17,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,66,63,16,-1,68,67,1,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [12.5254 -18.7441 -0.0301625,12.4373 -18.7441 0.0531982,12.4612 -18.7441 0.0699537,11.759 -18.7441 0.643902,11.756 -18.7441 0.766468,11.8301 -18.7441 0.736599,11.7376 -18.7441 -0.00904487,11.669 -18.7441 -0.0504334,11.669 -18.7441 0.0676766,11.8371 -18.7441 0.610735,11.6948 -18.7441 0.0860837,12.3773 -18.7441 0.70857,12.3505 -18.7441 0.704413,12.3375 -18.7441 0.822569,12.5643 -18.7441 0.00739818,11.7215 -18.7441 0.102915,12.288 -18.7441 0.807301,12.5 -18.7441 0.55118,12.5 -18.7441 0.59055,12.6181 -18.7441 0.59055,11.8117 -18.7441 0.0212505,12.4802 -18.7441 0.0920393,11.7493 -18.7441 0.11811,12.6181 -18.7441 0.15748,11.8896 -18.7441 0.0397242,12.4043 -18.7441 0.706513,12.3892 -18.7441 0.826656,11.9694 -18.7441 0.0459318,12.4932 -18.7441 0.11811,12.5 -18.7441 0.11811,12.4969 -18.7441 0.617473,12.6124 -18.7441 0.642091,11.9079 -18.7441 0.718393,11.9194 -18.7441 0.59055,12.4301 -18.7441 0.69835,12.4405 -18.7441 0.819366,12.5936 -18.7441 0.0528281,12.4877 -18.7441 0.642979,12.5956 -18.7441 0.691148,12.4891 -18.7441 0.80105,12.4534 -18.7441 0.68451,12.5685 -18.7441 0.735358,12.473 -18.7441 0.665723,12.5324 -18.7441 0.77259,11.9876 -18.7441 0.712276,12.0865 -18.7441 0.59055,12.2276 -18.7441 0.11811,12.0492 -18.7441 0.0397242,12.1271 -18.7441 0.0212505,12.2012 -18.7441 -0.00904487,12.6119 -18.7441 0.103745,12.5 -18.7441 0.15748,12.2617 -18.7441 0.0991288,12.2943 -18.7441 0.0776788,12.0673 -18.7441 0.718393,12.1716 -18.7441 0.61162,12.2697 -18.7441 -0.0504334,12.1451 -18.7441 0.736599,12.3252 -18.7441 0.0538777,12.32 -18.7441 -0.0704884,12.3735 -18.7441 -0.0785903,12.3522 -18.7441 0.0431436,12.2519 -18.7441 0.646514,12.2193 -18.7441 0.766468,12.4274 -18.7441 -0.0743142,12.3811 -18.7441 0.0393722,12.3253 -18.7441 0.694261,12.4101 -18.7441 0.0427932,12.4789 -18.7441 -0.0578845,11.6873 -18.7441 0.689191,11.6873 -18.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [12.5 -18.7441 0.15748,12.5 -18.2559 0.55118,12.5 -18.7441 0.55118,12.5 -18.2559 0.15748,12.5 -18.7441 0.11811,12.5 -18.2559 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,10,8,-1,13,14,15,-1,16,12,8,-1,17,12,16,-1,13,18,14,-1,19,0,11,-1,20,21,22,-1,23,17,16,-1,20,22,24,-1,25,17,23,-1,26,15,27,-1,28,29,19,-1,26,13,15,-1,30,31,21,-1,32,3,9,-1,30,21,20,-1,32,9,33,-1,34,19,11,-1,35,27,36,-1,34,28,19,-1,35,26,27,-1,37,38,31,-1,37,31,30,-1,39,35,36,-1,39,36,40,-1,41,38,37,-1,42,43,44,-1,41,45,38,-1,42,44,46,-1,47,32,33,-1,48,39,40,-1,48,45,41,-1,47,33,49,-1,48,40,45,-1,42,17,25,-1,42,25,43,-1,50,42,46,-1,51,28,34,-1,24,52,28,-1,53,50,46,-1,24,28,51,-1,53,46,54,-1,55,47,49,-1,55,49,56,-1,57,53,54,-1,57,54,58,-1,59,55,56,-1,60,58,61,-1,60,57,58,-1,62,59,56,-1,63,61,64,-1,63,60,61,-1,65,59,62,-1,66,65,62,-1,22,52,24,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,18,66,14,-1,18,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [12.4612 -18.2559 0.0699537,12.4373 -18.2559 0.0531982,12.5254 -18.2559 -0.0301625,11.8301 -18.2559 0.736599,11.756 -18.2559 0.766468,11.759 -18.2559 0.643902,11.669 -18.2559 0.0676766,11.669 -18.2559 -0.0504334,11.7376 -18.2559 -0.00904487,11.8371 -18.2559 0.610735,11.6948 -18.2559 0.0860837,12.5643 -18.2559 0.00739818,11.7215 -18.2559 0.102915,12.3375 -18.2559 0.822569,12.3505 -18.2559 0.704413,12.3773 -18.2559 0.70857,11.8117 -18.2559 0.0212505,11.7493 -18.2559 0.11811,12.288 -18.2559 0.807301,12.4802 -18.2559 0.0920393,12.6181 -18.2559 0.59055,12.5 -18.2559 0.59055,12.5 -18.2559 0.55118,11.8896 -18.2559 0.0397242,12.6181 -18.2559 0.15748,11.9694 -18.2559 0.0459318,12.3892 -18.2559 0.826656,12.4043 -18.2559 0.706513,12.5 -18.2559 0.11811,12.4932 -18.2559 0.11811,12.6124 -18.2559 0.642091,12.4969 -18.2559 0.617473,11.9079 -18.2559 0.718393,11.9194 -18.2559 0.59055,12.5936 -18.2559 0.0528281,12.4405 -18.2559 0.819366,12.4301 -18.2559 0.69835,12.5956 -18.2559 0.691148,12.4877 -18.2559 0.642979,12.4891 -18.2559 0.80105,12.4534 -18.2559 0.68451,12.5685 -18.2559 0.735358,12.2276 -18.2559 0.11811,12.0492 -18.2559 0.0397242,12.1271 -18.2559 0.0212505,12.473 -18.2559 0.665723,12.2012 -18.2559 -0.00904487,11.9876 -18.2559 0.712276,12.5324 -18.2559 0.77259,12.0865 -18.2559 0.59055,12.2617 -18.2559 0.0991288,12.6119 -18.2559 0.103745,12.5 -18.2559 0.15748,12.2943 -18.2559 0.0776788,12.2697 -18.2559 -0.0504334,12.0673 -18.2559 0.718393,12.1716 -18.2559 0.61162,12.3252 -18.2559 0.0538777,12.32 -18.2559 -0.0704884,12.1451 -18.2559 0.736599,12.3522 -18.2559 0.0431436,12.3735 -18.2559 -0.0785903,12.2519 -18.2559 0.646514,12.3811 -18.2559 0.0393722,12.4274 -18.2559 -0.0743142,12.2193 -18.2559 0.766468,12.3253 -18.2559 0.694261,12.4101 -18.2559 0.0427932,12.4789 -18.2559 -0.0578845,11.6873 -18.2559 0.689191,11.6873 -18.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,9,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [12.4932 -18.2559 0.11811,12.4932 -17.7441 0.11811,12.4802 -17.7441 0.0920393,12.4802 -18.2559 0.0920393,12.4612 -17.7441 0.0699537,12.4612 -18.2559 0.0699537,12.4373 -17.7441 0.0531982,12.4373 -18.2559 0.0531982,12.4101 -17.7441 0.0427932,12.4101 -18.2559 0.0427932,12.3811 -17.7441 0.0393722,12.3811 -18.2559 0.0393722,12.3522 -18.2559 0.0431436,12.3522 -17.7441 0.0431436,12.3252 -18.2559 0.0538777,12.3252 -17.7441 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,17,18,19,-1,6,15,20,-1,14,2,21,-1,20,15,22,-1,23,17,19,-1,20,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,21,28,29,-1,18,30,31,-1,19,18,31,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,14,21,36,-1,25,26,35,-1,21,29,36,-1,30,37,38,-1,31,30,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,27,46,-1,48,47,46,-1,49,48,46,-1,36,29,50,-1,29,51,23,-1,50,29,23,-1,49,46,52,-1,49,52,53,-1,45,44,54,-1,55,45,54,-1,56,49,53,-1,55,54,57,-1,56,53,58,-1,59,56,58,-1,60,59,61,-1,55,57,62,-1,59,58,61,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,17,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,66,63,16,-1,68,67,1,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [12.5254 -17.7441 -0.0301625,12.4373 -17.7441 0.0531982,12.4612 -17.7441 0.0699537,11.759 -17.7441 0.643902,11.756 -17.7441 0.766468,11.8301 -17.7441 0.736599,11.7376 -17.7441 -0.00904487,11.669 -17.7441 -0.0504334,11.669 -17.7441 0.0676766,11.8371 -17.7441 0.610735,11.6948 -17.7441 0.0860837,12.3773 -17.7441 0.70857,12.3505 -17.7441 0.704413,12.3375 -17.7441 0.822569,12.5643 -17.7441 0.00739818,11.7215 -17.7441 0.102915,12.288 -17.7441 0.807301,12.5 -17.7441 0.55118,12.5 -17.7441 0.59055,12.6181 -17.7441 0.59055,11.8117 -17.7441 0.0212505,12.4802 -17.7441 0.0920393,11.7493 -17.7441 0.11811,12.6181 -17.7441 0.15748,11.8896 -17.7441 0.0397242,12.4043 -17.7441 0.706513,12.3892 -17.7441 0.826656,11.9694 -17.7441 0.0459318,12.4932 -17.7441 0.11811,12.5 -17.7441 0.11811,12.4969 -17.7441 0.617473,12.6124 -17.7441 0.642091,11.9079 -17.7441 0.718393,11.9194 -17.7441 0.59055,12.4301 -17.7441 0.69835,12.4405 -17.7441 0.819366,12.5936 -17.7441 0.0528281,12.4877 -17.7441 0.642979,12.5956 -17.7441 0.691148,12.4891 -17.7441 0.80105,12.4534 -17.7441 0.68451,12.5685 -17.7441 0.735358,12.473 -17.7441 0.665723,12.5324 -17.7441 0.77259,11.9876 -17.7441 0.712276,12.0865 -17.7441 0.59055,12.2276 -17.7441 0.11811,12.0492 -17.7441 0.0397242,12.1271 -17.7441 0.0212505,12.2012 -17.7441 -0.00904487,12.6119 -17.7441 0.103745,12.5 -17.7441 0.15748,12.2617 -17.7441 0.0991288,12.2943 -17.7441 0.0776788,12.0673 -17.7441 0.718393,12.1716 -17.7441 0.61162,12.2697 -17.7441 -0.0504334,12.1451 -17.7441 0.736599,12.3252 -17.7441 0.0538777,12.32 -17.7441 -0.0704884,12.3735 -17.7441 -0.0785903,12.3522 -17.7441 0.0431436,12.2519 -17.7441 0.646514,12.2193 -17.7441 0.766468,12.4274 -17.7441 -0.0743142,12.3811 -17.7441 0.0393722,12.3253 -17.7441 0.694261,12.4101 -17.7441 0.0427932,12.4789 -17.7441 -0.0578845,11.6873 -17.7441 0.689191,11.6873 -17.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [12.5 -17.7441 0.15748,12.5 -17.2559 0.55118,12.5 -17.7441 0.55118,12.5 -17.2559 0.15748,12.5 -17.7441 0.11811,12.5 -17.2559 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,10,8,-1,13,14,15,-1,16,12,8,-1,17,12,16,-1,13,18,14,-1,19,0,11,-1,20,21,22,-1,23,17,16,-1,20,22,24,-1,25,17,23,-1,26,15,27,-1,28,29,19,-1,26,13,15,-1,30,31,21,-1,32,3,9,-1,30,21,20,-1,32,9,33,-1,34,19,11,-1,35,27,36,-1,34,28,19,-1,35,26,27,-1,37,38,31,-1,37,31,30,-1,39,35,36,-1,39,36,40,-1,41,38,37,-1,42,43,44,-1,41,45,38,-1,42,44,46,-1,47,32,33,-1,48,39,40,-1,48,45,41,-1,47,33,49,-1,48,40,45,-1,42,17,25,-1,42,25,43,-1,50,42,46,-1,51,28,34,-1,24,52,28,-1,53,50,46,-1,24,28,51,-1,53,46,54,-1,55,47,49,-1,55,49,56,-1,57,53,54,-1,57,54,58,-1,59,55,56,-1,60,58,61,-1,60,57,58,-1,62,59,56,-1,63,61,64,-1,63,60,61,-1,65,59,62,-1,66,65,62,-1,22,52,24,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,18,66,14,-1,18,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [12.4612 -17.2559 0.0699537,12.4373 -17.2559 0.0531982,12.5254 -17.2559 -0.0301625,11.8301 -17.2559 0.736599,11.756 -17.2559 0.766468,11.759 -17.2559 0.643902,11.669 -17.2559 0.0676766,11.669 -17.2559 -0.0504334,11.7376 -17.2559 -0.00904487,11.8371 -17.2559 0.610735,11.6948 -17.2559 0.0860837,12.5643 -17.2559 0.00739818,11.7215 -17.2559 0.102915,12.3375 -17.2559 0.822569,12.3505 -17.2559 0.704413,12.3773 -17.2559 0.70857,11.8117 -17.2559 0.0212505,11.7493 -17.2559 0.11811,12.288 -17.2559 0.807301,12.4802 -17.2559 0.0920393,12.6181 -17.2559 0.59055,12.5 -17.2559 0.59055,12.5 -17.2559 0.55118,11.8896 -17.2559 0.0397242,12.6181 -17.2559 0.15748,11.9694 -17.2559 0.0459318,12.3892 -17.2559 0.826656,12.4043 -17.2559 0.706513,12.5 -17.2559 0.11811,12.4932 -17.2559 0.11811,12.6124 -17.2559 0.642091,12.4969 -17.2559 0.617473,11.9079 -17.2559 0.718393,11.9194 -17.2559 0.59055,12.5936 -17.2559 0.0528281,12.4405 -17.2559 0.819366,12.4301 -17.2559 0.69835,12.5956 -17.2559 0.691148,12.4877 -17.2559 0.642979,12.4891 -17.2559 0.80105,12.4534 -17.2559 0.68451,12.5685 -17.2559 0.735358,12.2276 -17.2559 0.11811,12.0492 -17.2559 0.0397242,12.1271 -17.2559 0.0212505,12.473 -17.2559 0.665723,12.2012 -17.2559 -0.00904487,11.9876 -17.2559 0.712276,12.5324 -17.2559 0.77259,12.0865 -17.2559 0.59055,12.2617 -17.2559 0.0991288,12.6119 -17.2559 0.103745,12.5 -17.2559 0.15748,12.2943 -17.2559 0.0776788,12.2697 -17.2559 -0.0504334,12.0673 -17.2559 0.718393,12.1716 -17.2559 0.61162,12.3252 -17.2559 0.0538777,12.32 -17.2559 -0.0704884,12.1451 -17.2559 0.736599,12.3522 -17.2559 0.0431436,12.3735 -17.2559 -0.0785903,12.2519 -17.2559 0.646514,12.3811 -17.2559 0.0393722,12.4274 -17.2559 -0.0743142,12.2193 -17.2559 0.766468,12.3253 -17.2559 0.694261,12.4101 -17.2559 0.0427932,12.4789 -17.2559 -0.0578845,11.6873 -17.2559 0.689191,11.6873 -17.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,9,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [12.4932 -17.2559 0.11811,12.4932 -16.7441 0.11811,12.4802 -16.7441 0.0920393,12.4802 -17.2559 0.0920393,12.4612 -16.7441 0.0699537,12.4612 -17.2559 0.0699537,12.4373 -16.7441 0.0531982,12.4373 -17.2559 0.0531982,12.4101 -16.7441 0.0427932,12.4101 -17.2559 0.0427932,12.3811 -16.7441 0.0393722,12.3811 -17.2559 0.0393722,12.3522 -17.2559 0.0431436,12.3522 -16.7441 0.0431436,12.3252 -17.2559 0.0538777,12.3252 -16.7441 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,17,18,19,-1,6,15,20,-1,14,2,21,-1,20,15,22,-1,23,17,19,-1,20,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,21,28,29,-1,18,30,31,-1,19,18,31,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,14,21,36,-1,25,26,35,-1,21,29,36,-1,30,37,38,-1,31,30,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,27,46,-1,48,47,46,-1,49,48,46,-1,36,29,50,-1,29,51,23,-1,50,29,23,-1,49,46,52,-1,49,52,53,-1,45,44,54,-1,55,45,54,-1,56,49,53,-1,55,54,57,-1,56,53,58,-1,59,56,58,-1,60,59,61,-1,55,57,62,-1,59,58,61,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,17,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,66,63,16,-1,68,67,1,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [12.5254 -16.7441 -0.0301625,12.4373 -16.7441 0.0531982,12.4612 -16.7441 0.0699537,11.759 -16.7441 0.643902,11.756 -16.7441 0.766468,11.8301 -16.7441 0.736599,11.7376 -16.7441 -0.00904487,11.669 -16.7441 -0.0504334,11.669 -16.7441 0.0676766,11.8371 -16.7441 0.610735,11.6948 -16.7441 0.0860837,12.3773 -16.7441 0.70857,12.3505 -16.7441 0.704413,12.3375 -16.7441 0.822569,12.5643 -16.7441 0.00739818,11.7215 -16.7441 0.102915,12.288 -16.7441 0.807301,12.5 -16.7441 0.55118,12.5 -16.7441 0.59055,12.6181 -16.7441 0.59055,11.8117 -16.7441 0.0212505,12.4802 -16.7441 0.0920393,11.7493 -16.7441 0.11811,12.6181 -16.7441 0.15748,11.8896 -16.7441 0.0397242,12.4043 -16.7441 0.706513,12.3892 -16.7441 0.826656,11.9694 -16.7441 0.0459318,12.4932 -16.7441 0.11811,12.5 -16.7441 0.11811,12.4969 -16.7441 0.617473,12.6124 -16.7441 0.642091,11.9079 -16.7441 0.718393,11.9194 -16.7441 0.59055,12.4301 -16.7441 0.69835,12.4405 -16.7441 0.819366,12.5936 -16.7441 0.0528281,12.4877 -16.7441 0.642979,12.5956 -16.7441 0.691148,12.4891 -16.7441 0.80105,12.4534 -16.7441 0.68451,12.5685 -16.7441 0.735358,12.473 -16.7441 0.665723,12.5324 -16.7441 0.77259,11.9876 -16.7441 0.712276,12.0865 -16.7441 0.59055,12.2276 -16.7441 0.11811,12.0492 -16.7441 0.0397242,12.1271 -16.7441 0.0212505,12.2012 -16.7441 -0.00904487,12.6119 -16.7441 0.103745,12.5 -16.7441 0.15748,12.2617 -16.7441 0.0991288,12.2943 -16.7441 0.0776788,12.0673 -16.7441 0.718393,12.1716 -16.7441 0.61162,12.2697 -16.7441 -0.0504334,12.1451 -16.7441 0.736599,12.3252 -16.7441 0.0538777,12.32 -16.7441 -0.0704884,12.3735 -16.7441 -0.0785903,12.3522 -16.7441 0.0431436,12.2519 -16.7441 0.646514,12.2193 -16.7441 0.766468,12.4274 -16.7441 -0.0743142,12.3811 -16.7441 0.0393722,12.3253 -16.7441 0.694261,12.4101 -16.7441 0.0427932,12.4789 -16.7441 -0.0578845,11.6873 -16.7441 0.689191,11.6873 -16.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [12.5 -16.7441 0.15748,12.5 -16.2559 0.55118,12.5 -16.7441 0.55118,12.5 -16.2559 0.15748,12.5 -16.7441 0.11811,12.5 -16.2559 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,10,8,-1,13,14,15,-1,16,12,8,-1,17,12,16,-1,13,18,14,-1,19,0,11,-1,20,21,22,-1,23,17,16,-1,20,22,24,-1,25,17,23,-1,26,15,27,-1,28,29,19,-1,26,13,15,-1,30,31,21,-1,32,3,9,-1,30,21,20,-1,32,9,33,-1,34,19,11,-1,35,27,36,-1,34,28,19,-1,35,26,27,-1,37,38,31,-1,37,31,30,-1,39,35,36,-1,39,36,40,-1,41,38,37,-1,42,43,44,-1,41,45,38,-1,42,44,46,-1,47,32,33,-1,48,39,40,-1,48,45,41,-1,47,33,49,-1,48,40,45,-1,42,17,25,-1,42,25,43,-1,50,42,46,-1,51,28,34,-1,24,52,28,-1,53,50,46,-1,24,28,51,-1,53,46,54,-1,55,47,49,-1,55,49,56,-1,57,53,54,-1,57,54,58,-1,59,55,56,-1,60,58,61,-1,60,57,58,-1,62,59,56,-1,63,61,64,-1,63,60,61,-1,65,59,62,-1,66,65,62,-1,22,52,24,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,18,66,14,-1,18,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [12.4612 -16.2559 0.0699537,12.4373 -16.2559 0.0531982,12.5254 -16.2559 -0.0301625,11.8301 -16.2559 0.736599,11.756 -16.2559 0.766468,11.759 -16.2559 0.643902,11.669 -16.2559 0.0676766,11.669 -16.2559 -0.0504334,11.7376 -16.2559 -0.00904487,11.8371 -16.2559 0.610735,11.6948 -16.2559 0.0860837,12.5643 -16.2559 0.00739818,11.7215 -16.2559 0.102915,12.3375 -16.2559 0.822569,12.3505 -16.2559 0.704413,12.3773 -16.2559 0.70857,11.8117 -16.2559 0.0212505,11.7493 -16.2559 0.11811,12.288 -16.2559 0.807301,12.4802 -16.2559 0.0920393,12.6181 -16.2559 0.59055,12.5 -16.2559 0.59055,12.5 -16.2559 0.55118,11.8896 -16.2559 0.0397242,12.6181 -16.2559 0.15748,11.9694 -16.2559 0.0459318,12.3892 -16.2559 0.826656,12.4043 -16.2559 0.706513,12.5 -16.2559 0.11811,12.4932 -16.2559 0.11811,12.6124 -16.2559 0.642091,12.4969 -16.2559 0.617473,11.9079 -16.2559 0.718393,11.9194 -16.2559 0.59055,12.5936 -16.2559 0.0528281,12.4405 -16.2559 0.819366,12.4301 -16.2559 0.69835,12.5956 -16.2559 0.691148,12.4877 -16.2559 0.642979,12.4891 -16.2559 0.80105,12.4534 -16.2559 0.68451,12.5685 -16.2559 0.735358,12.2276 -16.2559 0.11811,12.0492 -16.2559 0.0397242,12.1271 -16.2559 0.0212505,12.473 -16.2559 0.665723,12.2012 -16.2559 -0.00904487,11.9876 -16.2559 0.712276,12.5324 -16.2559 0.77259,12.0865 -16.2559 0.59055,12.2617 -16.2559 0.0991288,12.6119 -16.2559 0.103745,12.5 -16.2559 0.15748,12.2943 -16.2559 0.0776788,12.2697 -16.2559 -0.0504334,12.0673 -16.2559 0.718393,12.1716 -16.2559 0.61162,12.3252 -16.2559 0.0538777,12.32 -16.2559 -0.0704884,12.1451 -16.2559 0.736599,12.3522 -16.2559 0.0431436,12.3735 -16.2559 -0.0785903,12.2519 -16.2559 0.646514,12.3811 -16.2559 0.0393722,12.4274 -16.2559 -0.0743142,12.2193 -16.2559 0.766468,12.3253 -16.2559 0.694261,12.4101 -16.2559 0.0427932,12.4789 -16.2559 -0.0578845,11.6873 -16.2559 0.689191,11.6873 -16.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,9,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [12.4932 -16.2559 0.11811,12.4932 -15.7441 0.11811,12.4802 -15.7441 0.0920393,12.4802 -16.2559 0.0920393,12.4612 -15.7441 0.0699537,12.4612 -16.2559 0.0699537,12.4373 -15.7441 0.0531982,12.4373 -16.2559 0.0531982,12.4101 -15.7441 0.0427932,12.4101 -16.2559 0.0427932,12.3811 -15.7441 0.0393722,12.3811 -16.2559 0.0393722,12.3522 -16.2559 0.0431436,12.3522 -15.7441 0.0431436,12.3252 -16.2559 0.0538777,12.3252 -15.7441 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,17,18,19,-1,6,15,20,-1,14,2,21,-1,20,15,22,-1,23,17,19,-1,20,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,21,28,29,-1,18,30,31,-1,19,18,31,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,14,21,36,-1,25,26,35,-1,21,29,36,-1,30,37,38,-1,31,30,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,27,46,-1,48,47,46,-1,49,48,46,-1,36,29,50,-1,29,51,23,-1,50,29,23,-1,49,46,52,-1,49,52,53,-1,45,44,54,-1,55,45,54,-1,56,49,53,-1,55,54,57,-1,56,53,58,-1,59,56,58,-1,60,59,61,-1,55,57,62,-1,59,58,61,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,17,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,66,63,16,-1,68,67,1,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [12.5254 -15.7441 -0.0301625,12.4373 -15.7441 0.0531982,12.4612 -15.7441 0.0699537,11.759 -15.7441 0.643902,11.756 -15.7441 0.766468,11.8301 -15.7441 0.736599,11.7376 -15.7441 -0.00904487,11.669 -15.7441 -0.0504334,11.669 -15.7441 0.0676766,11.8371 -15.7441 0.610735,11.6948 -15.7441 0.0860837,12.3773 -15.7441 0.70857,12.3505 -15.7441 0.704413,12.3375 -15.7441 0.822569,12.5643 -15.7441 0.00739818,11.7215 -15.7441 0.102915,12.288 -15.7441 0.807301,12.5 -15.7441 0.55118,12.5 -15.7441 0.59055,12.6181 -15.7441 0.59055,11.8117 -15.7441 0.0212505,12.4802 -15.7441 0.0920393,11.7493 -15.7441 0.11811,12.6181 -15.7441 0.15748,11.8896 -15.7441 0.0397242,12.4043 -15.7441 0.706513,12.3892 -15.7441 0.826656,11.9694 -15.7441 0.0459318,12.4932 -15.7441 0.11811,12.5 -15.7441 0.11811,12.4969 -15.7441 0.617473,12.6124 -15.7441 0.642091,11.9079 -15.7441 0.718393,11.9194 -15.7441 0.59055,12.4301 -15.7441 0.69835,12.4405 -15.7441 0.819366,12.5936 -15.7441 0.0528281,12.4877 -15.7441 0.642979,12.5956 -15.7441 0.691148,12.4891 -15.7441 0.80105,12.4534 -15.7441 0.68451,12.5685 -15.7441 0.735358,12.473 -15.7441 0.665723,12.5324 -15.7441 0.77259,11.9876 -15.7441 0.712276,12.0865 -15.7441 0.59055,12.2276 -15.7441 0.11811,12.0492 -15.7441 0.0397242,12.1271 -15.7441 0.0212505,12.2012 -15.7441 -0.00904487,12.6119 -15.7441 0.103745,12.5 -15.7441 0.15748,12.2617 -15.7441 0.0991288,12.2943 -15.7441 0.0776788,12.0673 -15.7441 0.718393,12.1716 -15.7441 0.61162,12.2697 -15.7441 -0.0504334,12.1451 -15.7441 0.736599,12.3252 -15.7441 0.0538777,12.32 -15.7441 -0.0704884,12.3735 -15.7441 -0.0785903,12.3522 -15.7441 0.0431436,12.2519 -15.7441 0.646514,12.2193 -15.7441 0.766468,12.4274 -15.7441 -0.0743142,12.3811 -15.7441 0.0393722,12.3253 -15.7441 0.694261,12.4101 -15.7441 0.0427932,12.4789 -15.7441 -0.0578845,11.6873 -15.7441 0.689191,11.6873 -15.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [12.5 -15.7441 0.15748,12.5 -15.2559 0.55118,12.5 -15.7441 0.55118,12.5 -15.2559 0.15748,12.5 -15.7441 0.11811,12.5 -15.2559 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,10,8,-1,13,14,15,-1,16,12,8,-1,17,12,16,-1,13,18,14,-1,19,0,11,-1,20,21,22,-1,23,17,16,-1,20,22,24,-1,25,17,23,-1,26,15,27,-1,28,29,19,-1,26,13,15,-1,30,31,21,-1,32,3,9,-1,30,21,20,-1,32,9,33,-1,34,19,11,-1,35,27,36,-1,34,28,19,-1,35,26,27,-1,37,38,31,-1,37,31,30,-1,39,35,36,-1,39,36,40,-1,41,38,37,-1,42,43,44,-1,41,45,38,-1,42,44,46,-1,47,32,33,-1,48,39,40,-1,48,45,41,-1,47,33,49,-1,48,40,45,-1,42,17,25,-1,42,25,43,-1,50,42,46,-1,51,28,34,-1,24,52,28,-1,53,50,46,-1,24,28,51,-1,53,46,54,-1,55,47,49,-1,55,49,56,-1,57,53,54,-1,57,54,58,-1,59,55,56,-1,60,58,61,-1,60,57,58,-1,62,59,56,-1,63,61,64,-1,63,60,61,-1,65,59,62,-1,66,65,62,-1,22,52,24,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,18,66,14,-1,18,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [12.4612 -15.2559 0.0699537,12.4373 -15.2559 0.0531982,12.5254 -15.2559 -0.0301625,11.8301 -15.2559 0.736599,11.756 -15.2559 0.766468,11.759 -15.2559 0.643902,11.669 -15.2559 0.0676766,11.669 -15.2559 -0.0504334,11.7376 -15.2559 -0.00904487,11.8371 -15.2559 0.610735,11.6948 -15.2559 0.0860837,12.5643 -15.2559 0.00739818,11.7215 -15.2559 0.102915,12.3375 -15.2559 0.822569,12.3505 -15.2559 0.704413,12.3773 -15.2559 0.70857,11.8117 -15.2559 0.0212505,11.7493 -15.2559 0.11811,12.288 -15.2559 0.807301,12.4802 -15.2559 0.0920393,12.6181 -15.2559 0.59055,12.5 -15.2559 0.59055,12.5 -15.2559 0.55118,11.8896 -15.2559 0.0397242,12.6181 -15.2559 0.15748,11.9694 -15.2559 0.0459318,12.3892 -15.2559 0.826656,12.4043 -15.2559 0.706513,12.5 -15.2559 0.11811,12.4932 -15.2559 0.11811,12.6124 -15.2559 0.642091,12.4969 -15.2559 0.617473,11.9079 -15.2559 0.718393,11.9194 -15.2559 0.59055,12.5936 -15.2559 0.0528281,12.4405 -15.2559 0.819366,12.4301 -15.2559 0.69835,12.5956 -15.2559 0.691148,12.4877 -15.2559 0.642979,12.4891 -15.2559 0.80105,12.4534 -15.2559 0.68451,12.5685 -15.2559 0.735358,12.2276 -15.2559 0.11811,12.0492 -15.2559 0.0397242,12.1271 -15.2559 0.0212505,12.473 -15.2559 0.665723,12.2012 -15.2559 -0.00904487,11.9876 -15.2559 0.712276,12.5324 -15.2559 0.77259,12.0865 -15.2559 0.59055,12.2617 -15.2559 0.0991288,12.6119 -15.2559 0.103745,12.5 -15.2559 0.15748,12.2943 -15.2559 0.0776788,12.2697 -15.2559 -0.0504334,12.0673 -15.2559 0.718393,12.1716 -15.2559 0.61162,12.3252 -15.2559 0.0538777,12.32 -15.2559 -0.0704884,12.1451 -15.2559 0.736599,12.3522 -15.2559 0.0431436,12.3735 -15.2559 -0.0785903,12.2519 -15.2559 0.646514,12.3811 -15.2559 0.0393722,12.4274 -15.2559 -0.0743142,12.2193 -15.2559 0.766468,12.3253 -15.2559 0.694261,12.4101 -15.2559 0.0427932,12.4789 -15.2559 -0.0578845,11.6873 -15.2559 0.689191,11.6873 -15.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,9,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [12.4932 -15.2559 0.11811,12.4932 -14.7441 0.11811,12.4802 -14.7441 0.0920393,12.4802 -15.2559 0.0920393,12.4612 -14.7441 0.0699537,12.4612 -15.2559 0.0699537,12.4373 -14.7441 0.0531982,12.4373 -15.2559 0.0531982,12.4101 -14.7441 0.0427932,12.4101 -15.2559 0.0427932,12.3811 -14.7441 0.0393722,12.3811 -15.2559 0.0393722,12.3522 -15.2559 0.0431436,12.3522 -14.7441 0.0431436,12.3252 -15.2559 0.0538777,12.3252 -14.7441 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,17,18,19,-1,6,15,20,-1,14,2,21,-1,20,15,22,-1,23,17,19,-1,20,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,21,28,29,-1,18,30,31,-1,19,18,31,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,14,21,36,-1,25,26,35,-1,21,29,36,-1,30,37,38,-1,31,30,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,27,46,-1,48,47,46,-1,49,48,46,-1,36,29,50,-1,29,51,23,-1,50,29,23,-1,49,46,52,-1,49,52,53,-1,45,44,54,-1,55,45,54,-1,56,49,53,-1,55,54,57,-1,56,53,58,-1,59,56,58,-1,60,59,61,-1,55,57,62,-1,59,58,61,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,17,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,66,63,16,-1,68,67,1,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [12.5254 -14.7441 -0.0301625,12.4373 -14.7441 0.0531982,12.4612 -14.7441 0.0699537,11.759 -14.7441 0.643902,11.756 -14.7441 0.766468,11.8301 -14.7441 0.736599,11.7376 -14.7441 -0.00904487,11.669 -14.7441 -0.0504334,11.669 -14.7441 0.0676766,11.8371 -14.7441 0.610735,11.6948 -14.7441 0.0860837,12.3773 -14.7441 0.70857,12.3505 -14.7441 0.704413,12.3375 -14.7441 0.822569,12.5643 -14.7441 0.00739818,11.7215 -14.7441 0.102915,12.288 -14.7441 0.807301,12.5 -14.7441 0.55118,12.5 -14.7441 0.59055,12.6181 -14.7441 0.59055,11.8117 -14.7441 0.0212505,12.4802 -14.7441 0.0920393,11.7493 -14.7441 0.11811,12.6181 -14.7441 0.15748,11.8896 -14.7441 0.0397242,12.4043 -14.7441 0.706513,12.3892 -14.7441 0.826656,11.9694 -14.7441 0.0459318,12.4932 -14.7441 0.11811,12.5 -14.7441 0.11811,12.4969 -14.7441 0.617473,12.6124 -14.7441 0.642091,11.9079 -14.7441 0.718393,11.9194 -14.7441 0.59055,12.4301 -14.7441 0.69835,12.4405 -14.7441 0.819366,12.5936 -14.7441 0.0528281,12.4877 -14.7441 0.642979,12.5956 -14.7441 0.691148,12.4891 -14.7441 0.80105,12.4534 -14.7441 0.68451,12.5685 -14.7441 0.735358,12.473 -14.7441 0.665723,12.5324 -14.7441 0.77259,11.9876 -14.7441 0.712276,12.0865 -14.7441 0.59055,12.2276 -14.7441 0.11811,12.0492 -14.7441 0.0397242,12.1271 -14.7441 0.0212505,12.2012 -14.7441 -0.00904487,12.6119 -14.7441 0.103745,12.5 -14.7441 0.15748,12.2617 -14.7441 0.0991288,12.2943 -14.7441 0.0776788,12.0673 -14.7441 0.718393,12.1716 -14.7441 0.61162,12.2697 -14.7441 -0.0504334,12.1451 -14.7441 0.736599,12.3252 -14.7441 0.0538777,12.32 -14.7441 -0.0704884,12.3735 -14.7441 -0.0785903,12.3522 -14.7441 0.0431436,12.2519 -14.7441 0.646514,12.2193 -14.7441 0.766468,12.4274 -14.7441 -0.0743142,12.3811 -14.7441 0.0393722,12.3253 -14.7441 0.694261,12.4101 -14.7441 0.0427932,12.4789 -14.7441 -0.0578845,11.6873 -14.7441 0.689191,11.6873 -14.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [12.5 -14.7441 0.15748,12.5 -14.2559 0.55118,12.5 -14.7441 0.55118,12.5 -14.2559 0.15748,12.5 -14.7441 0.11811,12.5 -14.2559 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,10,8,-1,13,14,15,-1,16,12,8,-1,17,12,16,-1,13,18,14,-1,19,0,11,-1,20,21,22,-1,23,17,16,-1,20,22,24,-1,25,17,23,-1,26,15,27,-1,28,29,19,-1,26,13,15,-1,30,31,21,-1,32,3,9,-1,30,21,20,-1,32,9,33,-1,34,19,11,-1,35,27,36,-1,34,28,19,-1,35,26,27,-1,37,38,31,-1,37,31,30,-1,39,35,36,-1,39,36,40,-1,41,38,37,-1,42,43,44,-1,41,45,38,-1,42,44,46,-1,47,32,33,-1,48,39,40,-1,48,45,41,-1,47,33,49,-1,48,40,45,-1,42,17,25,-1,42,25,43,-1,50,42,46,-1,51,28,34,-1,24,52,28,-1,53,50,46,-1,24,28,51,-1,53,46,54,-1,55,47,49,-1,55,49,56,-1,57,53,54,-1,57,54,58,-1,59,55,56,-1,60,58,61,-1,60,57,58,-1,62,59,56,-1,63,61,64,-1,63,60,61,-1,65,59,62,-1,66,65,62,-1,22,52,24,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,18,66,14,-1,18,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [12.4612 -14.2559 0.0699537,12.4373 -14.2559 0.0531982,12.5254 -14.2559 -0.0301625,11.8301 -14.2559 0.736599,11.756 -14.2559 0.766468,11.759 -14.2559 0.643902,11.669 -14.2559 0.0676766,11.669 -14.2559 -0.0504334,11.7376 -14.2559 -0.00904487,11.8371 -14.2559 0.610735,11.6948 -14.2559 0.0860837,12.5643 -14.2559 0.00739818,11.7215 -14.2559 0.102915,12.3375 -14.2559 0.822569,12.3505 -14.2559 0.704413,12.3773 -14.2559 0.70857,11.8117 -14.2559 0.0212505,11.7493 -14.2559 0.11811,12.288 -14.2559 0.807301,12.4802 -14.2559 0.0920393,12.6181 -14.2559 0.59055,12.5 -14.2559 0.59055,12.5 -14.2559 0.55118,11.8896 -14.2559 0.0397242,12.6181 -14.2559 0.15748,11.9694 -14.2559 0.0459318,12.3892 -14.2559 0.826656,12.4043 -14.2559 0.706513,12.5 -14.2559 0.11811,12.4932 -14.2559 0.11811,12.6124 -14.2559 0.642091,12.4969 -14.2559 0.617473,11.9079 -14.2559 0.718393,11.9194 -14.2559 0.59055,12.5936 -14.2559 0.0528281,12.4405 -14.2559 0.819366,12.4301 -14.2559 0.69835,12.5956 -14.2559 0.691148,12.4877 -14.2559 0.642979,12.4891 -14.2559 0.80105,12.4534 -14.2559 0.68451,12.5685 -14.2559 0.735358,12.2276 -14.2559 0.11811,12.0492 -14.2559 0.0397242,12.1271 -14.2559 0.0212505,12.473 -14.2559 0.665723,12.2012 -14.2559 -0.00904487,11.9876 -14.2559 0.712276,12.5324 -14.2559 0.77259,12.0865 -14.2559 0.59055,12.2617 -14.2559 0.0991288,12.6119 -14.2559 0.103745,12.5 -14.2559 0.15748,12.2943 -14.2559 0.0776788,12.2697 -14.2559 -0.0504334,12.0673 -14.2559 0.718393,12.1716 -14.2559 0.61162,12.3252 -14.2559 0.0538777,12.32 -14.2559 -0.0704884,12.1451 -14.2559 0.736599,12.3522 -14.2559 0.0431436,12.3735 -14.2559 -0.0785903,12.2519 -14.2559 0.646514,12.3811 -14.2559 0.0393722,12.4274 -14.2559 -0.0743142,12.2193 -14.2559 0.766468,12.3253 -14.2559 0.694261,12.4101 -14.2559 0.0427932,12.4789 -14.2559 -0.0578845,11.6873 -14.2559 0.689191,11.6873 -14.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,9,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [12.4932 -14.2559 0.11811,12.4932 -13.7441 0.11811,12.4802 -13.7441 0.0920393,12.4802 -14.2559 0.0920393,12.4612 -13.7441 0.0699537,12.4612 -14.2559 0.0699537,12.4373 -13.7441 0.0531982,12.4373 -14.2559 0.0531982,12.4101 -13.7441 0.0427932,12.4101 -14.2559 0.0427932,12.3811 -13.7441 0.0393722,12.3811 -14.2559 0.0393722,12.3522 -14.2559 0.0431436,12.3522 -13.7441 0.0431436,12.3252 -14.2559 0.0538777,12.3252 -13.7441 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,17,18,19,-1,6,15,20,-1,14,2,21,-1,20,15,22,-1,23,17,19,-1,20,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,21,28,29,-1,18,30,31,-1,19,18,31,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,14,21,36,-1,25,26,35,-1,21,29,36,-1,30,37,38,-1,31,30,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,27,46,-1,48,47,46,-1,49,48,46,-1,36,29,50,-1,29,51,23,-1,50,29,23,-1,49,46,52,-1,49,52,53,-1,45,44,54,-1,55,45,54,-1,56,49,53,-1,55,54,57,-1,56,53,58,-1,59,56,58,-1,60,59,61,-1,55,57,62,-1,59,58,61,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,17,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,66,63,16,-1,68,67,1,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [12.5254 -13.7441 -0.0301625,12.4373 -13.7441 0.0531982,12.4612 -13.7441 0.0699537,11.759 -13.7441 0.643902,11.756 -13.7441 0.766468,11.8301 -13.7441 0.736599,11.7376 -13.7441 -0.00904487,11.669 -13.7441 -0.0504334,11.669 -13.7441 0.0676766,11.8371 -13.7441 0.610735,11.6948 -13.7441 0.0860837,12.3773 -13.7441 0.70857,12.3505 -13.7441 0.704413,12.3375 -13.7441 0.822569,12.5643 -13.7441 0.00739818,11.7215 -13.7441 0.102915,12.288 -13.7441 0.807301,12.5 -13.7441 0.55118,12.5 -13.7441 0.59055,12.6181 -13.7441 0.59055,11.8117 -13.7441 0.0212505,12.4802 -13.7441 0.0920393,11.7493 -13.7441 0.11811,12.6181 -13.7441 0.15748,11.8896 -13.7441 0.0397242,12.4043 -13.7441 0.706513,12.3892 -13.7441 0.826656,11.9694 -13.7441 0.0459318,12.4932 -13.7441 0.11811,12.5 -13.7441 0.11811,12.4969 -13.7441 0.617473,12.6124 -13.7441 0.642091,11.9079 -13.7441 0.718393,11.9194 -13.7441 0.59055,12.4301 -13.7441 0.69835,12.4405 -13.7441 0.819366,12.5936 -13.7441 0.0528281,12.4877 -13.7441 0.642979,12.5956 -13.7441 0.691148,12.4891 -13.7441 0.80105,12.4534 -13.7441 0.68451,12.5685 -13.7441 0.735358,12.473 -13.7441 0.665723,12.5324 -13.7441 0.77259,11.9876 -13.7441 0.712276,12.0865 -13.7441 0.59055,12.2276 -13.7441 0.11811,12.0492 -13.7441 0.0397242,12.1271 -13.7441 0.0212505,12.2012 -13.7441 -0.00904487,12.6119 -13.7441 0.103745,12.5 -13.7441 0.15748,12.2617 -13.7441 0.0991288,12.2943 -13.7441 0.0776788,12.0673 -13.7441 0.718393,12.1716 -13.7441 0.61162,12.2697 -13.7441 -0.0504334,12.1451 -13.7441 0.736599,12.3252 -13.7441 0.0538777,12.32 -13.7441 -0.0704884,12.3735 -13.7441 -0.0785903,12.3522 -13.7441 0.0431436,12.2519 -13.7441 0.646514,12.2193 -13.7441 0.766468,12.4274 -13.7441 -0.0743142,12.3811 -13.7441 0.0393722,12.3253 -13.7441 0.694261,12.4101 -13.7441 0.0427932,12.4789 -13.7441 -0.0578845,11.6873 -13.7441 0.689191,11.6873 -13.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [12.5 -13.7441 0.15748,12.5 -13.2559 0.55118,12.5 -13.7441 0.55118,12.5 -13.2559 0.15748,12.5 -13.7441 0.11811,12.5 -13.2559 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,10,8,-1,13,14,15,-1,16,12,8,-1,17,12,16,-1,13,18,14,-1,19,0,11,-1,20,21,22,-1,23,17,16,-1,20,22,24,-1,25,17,23,-1,26,15,27,-1,28,29,19,-1,26,13,15,-1,30,31,21,-1,32,3,9,-1,30,21,20,-1,32,9,33,-1,34,19,11,-1,35,27,36,-1,34,28,19,-1,35,26,27,-1,37,38,31,-1,37,31,30,-1,39,35,36,-1,39,36,40,-1,41,38,37,-1,42,43,44,-1,41,45,38,-1,42,44,46,-1,47,32,33,-1,48,39,40,-1,48,45,41,-1,47,33,49,-1,48,40,45,-1,42,17,25,-1,42,25,43,-1,50,42,46,-1,51,28,34,-1,24,52,28,-1,53,50,46,-1,24,28,51,-1,53,46,54,-1,55,47,49,-1,55,49,56,-1,57,53,54,-1,57,54,58,-1,59,55,56,-1,60,58,61,-1,60,57,58,-1,62,59,56,-1,63,61,64,-1,63,60,61,-1,65,59,62,-1,66,65,62,-1,22,52,24,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,18,66,14,-1,18,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [12.4612 -13.2559 0.0699537,12.4373 -13.2559 0.0531982,12.5254 -13.2559 -0.0301625,11.8301 -13.2559 0.736599,11.756 -13.2559 0.766468,11.759 -13.2559 0.643902,11.669 -13.2559 0.0676766,11.669 -13.2559 -0.0504334,11.7376 -13.2559 -0.00904487,11.8371 -13.2559 0.610735,11.6948 -13.2559 0.0860837,12.5643 -13.2559 0.00739818,11.7215 -13.2559 0.102915,12.3375 -13.2559 0.822569,12.3505 -13.2559 0.704413,12.3773 -13.2559 0.70857,11.8117 -13.2559 0.0212505,11.7493 -13.2559 0.11811,12.288 -13.2559 0.807301,12.4802 -13.2559 0.0920393,12.6181 -13.2559 0.59055,12.5 -13.2559 0.59055,12.5 -13.2559 0.55118,11.8896 -13.2559 0.0397242,12.6181 -13.2559 0.15748,11.9694 -13.2559 0.0459318,12.3892 -13.2559 0.826656,12.4043 -13.2559 0.706513,12.5 -13.2559 0.11811,12.4932 -13.2559 0.11811,12.6124 -13.2559 0.642091,12.4969 -13.2559 0.617473,11.9079 -13.2559 0.718393,11.9194 -13.2559 0.59055,12.5936 -13.2559 0.0528281,12.4405 -13.2559 0.819366,12.4301 -13.2559 0.69835,12.5956 -13.2559 0.691148,12.4877 -13.2559 0.642979,12.4891 -13.2559 0.80105,12.4534 -13.2559 0.68451,12.5685 -13.2559 0.735358,12.2276 -13.2559 0.11811,12.0492 -13.2559 0.0397242,12.1271 -13.2559 0.0212505,12.473 -13.2559 0.665723,12.2012 -13.2559 -0.00904487,11.9876 -13.2559 0.712276,12.5324 -13.2559 0.77259,12.0865 -13.2559 0.59055,12.2617 -13.2559 0.0991288,12.6119 -13.2559 0.103745,12.5 -13.2559 0.15748,12.2943 -13.2559 0.0776788,12.2697 -13.2559 -0.0504334,12.0673 -13.2559 0.718393,12.1716 -13.2559 0.61162,12.3252 -13.2559 0.0538777,12.32 -13.2559 -0.0704884,12.1451 -13.2559 0.736599,12.3522 -13.2559 0.0431436,12.3735 -13.2559 -0.0785903,12.2519 -13.2559 0.646514,12.3811 -13.2559 0.0393722,12.4274 -13.2559 -0.0743142,12.2193 -13.2559 0.766468,12.3253 -13.2559 0.694261,12.4101 -13.2559 0.0427932,12.4789 -13.2559 -0.0578845,11.6873 -13.2559 0.689191,11.6873 -13.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,9,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [12.4932 -13.2559 0.11811,12.4932 -12.7441 0.11811,12.4802 -12.7441 0.0920393,12.4802 -13.2559 0.0920393,12.4612 -12.7441 0.0699537,12.4612 -13.2559 0.0699537,12.4373 -12.7441 0.0531982,12.4373 -13.2559 0.0531982,12.4101 -12.7441 0.0427932,12.4101 -13.2559 0.0427932,12.3811 -12.7441 0.0393722,12.3811 -13.2559 0.0393722,12.3522 -13.2559 0.0431436,12.3522 -12.7441 0.0431436,12.3252 -13.2559 0.0538777,12.3252 -12.7441 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,17,18,19,-1,6,15,20,-1,14,2,21,-1,20,15,22,-1,23,17,19,-1,20,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,21,28,29,-1,18,30,31,-1,19,18,31,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,14,21,36,-1,25,26,35,-1,21,29,36,-1,30,37,38,-1,31,30,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,27,46,-1,48,47,46,-1,49,48,46,-1,36,29,50,-1,29,51,23,-1,50,29,23,-1,49,46,52,-1,49,52,53,-1,45,44,54,-1,55,45,54,-1,56,49,53,-1,55,54,57,-1,56,53,58,-1,59,56,58,-1,60,59,61,-1,55,57,62,-1,59,58,61,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,17,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,66,63,16,-1,68,67,1,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [12.5254 -12.7441 -0.0301625,12.4373 -12.7441 0.0531982,12.4612 -12.7441 0.0699537,11.759 -12.7441 0.643902,11.756 -12.7441 0.766468,11.8301 -12.7441 0.736599,11.7376 -12.7441 -0.00904487,11.669 -12.7441 -0.0504334,11.669 -12.7441 0.0676766,11.8371 -12.7441 0.610735,11.6948 -12.7441 0.0860837,12.3773 -12.7441 0.70857,12.3505 -12.7441 0.704413,12.3375 -12.7441 0.822569,12.5643 -12.7441 0.00739818,11.7215 -12.7441 0.102915,12.288 -12.7441 0.807301,12.5 -12.7441 0.55118,12.5 -12.7441 0.59055,12.6181 -12.7441 0.59055,11.8117 -12.7441 0.0212505,12.4802 -12.7441 0.0920393,11.7493 -12.7441 0.11811,12.6181 -12.7441 0.15748,11.8896 -12.7441 0.0397242,12.4043 -12.7441 0.706513,12.3892 -12.7441 0.826656,11.9694 -12.7441 0.0459318,12.4932 -12.7441 0.11811,12.5 -12.7441 0.11811,12.4969 -12.7441 0.617473,12.6124 -12.7441 0.642091,11.9079 -12.7441 0.718393,11.9194 -12.7441 0.59055,12.4301 -12.7441 0.69835,12.4405 -12.7441 0.819366,12.5936 -12.7441 0.0528281,12.4877 -12.7441 0.642979,12.5956 -12.7441 0.691148,12.4891 -12.7441 0.80105,12.4534 -12.7441 0.68451,12.5685 -12.7441 0.735358,12.473 -12.7441 0.665723,12.5324 -12.7441 0.77259,11.9876 -12.7441 0.712276,12.0865 -12.7441 0.59055,12.2276 -12.7441 0.11811,12.0492 -12.7441 0.0397242,12.1271 -12.7441 0.0212505,12.2012 -12.7441 -0.00904487,12.6119 -12.7441 0.103745,12.5 -12.7441 0.15748,12.2617 -12.7441 0.0991288,12.2943 -12.7441 0.0776788,12.0673 -12.7441 0.718393,12.1716 -12.7441 0.61162,12.2697 -12.7441 -0.0504334,12.1451 -12.7441 0.736599,12.3252 -12.7441 0.0538777,12.32 -12.7441 -0.0704884,12.3735 -12.7441 -0.0785903,12.3522 -12.7441 0.0431436,12.2519 -12.7441 0.646514,12.2193 -12.7441 0.766468,12.4274 -12.7441 -0.0743142,12.3811 -12.7441 0.0393722,12.3253 -12.7441 0.694261,12.4101 -12.7441 0.0427932,12.4789 -12.7441 -0.0578845,11.6873 -12.7441 0.689191,11.6873 -12.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [12.5 -12.7441 0.15748,12.5 -12.2559 0.55118,12.5 -12.7441 0.55118,12.5 -12.2559 0.15748,12.5 -12.7441 0.11811,12.5 -12.2559 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,10,8,-1,13,14,15,-1,16,12,8,-1,17,12,16,-1,13,18,14,-1,19,0,11,-1,20,21,22,-1,23,17,16,-1,20,22,24,-1,25,17,23,-1,26,15,27,-1,28,29,19,-1,26,13,15,-1,30,31,21,-1,32,3,9,-1,30,21,20,-1,32,9,33,-1,34,19,11,-1,35,27,36,-1,34,28,19,-1,35,26,27,-1,37,38,31,-1,37,31,30,-1,39,35,36,-1,39,36,40,-1,41,38,37,-1,42,43,44,-1,41,45,38,-1,42,44,46,-1,47,32,33,-1,48,39,40,-1,48,45,41,-1,47,33,49,-1,48,40,45,-1,42,17,25,-1,42,25,43,-1,50,42,46,-1,51,28,34,-1,24,52,28,-1,53,50,46,-1,24,28,51,-1,53,46,54,-1,55,47,49,-1,55,49,56,-1,57,53,54,-1,57,54,58,-1,59,55,56,-1,60,58,61,-1,60,57,58,-1,62,59,56,-1,63,61,64,-1,63,60,61,-1,65,59,62,-1,66,65,62,-1,22,52,24,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,18,66,14,-1,18,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [12.4612 -12.2559 0.0699537,12.4373 -12.2559 0.0531982,12.5254 -12.2559 -0.0301625,11.8301 -12.2559 0.736599,11.756 -12.2559 0.766468,11.759 -12.2559 0.643902,11.669 -12.2559 0.0676766,11.669 -12.2559 -0.0504334,11.7376 -12.2559 -0.00904487,11.8371 -12.2559 0.610735,11.6948 -12.2559 0.0860837,12.5643 -12.2559 0.00739818,11.7215 -12.2559 0.102915,12.3375 -12.2559 0.822569,12.3505 -12.2559 0.704413,12.3773 -12.2559 0.70857,11.8117 -12.2559 0.0212505,11.7493 -12.2559 0.11811,12.288 -12.2559 0.807301,12.4802 -12.2559 0.0920393,12.6181 -12.2559 0.59055,12.5 -12.2559 0.59055,12.5 -12.2559 0.55118,11.8896 -12.2559 0.0397242,12.6181 -12.2559 0.15748,11.9694 -12.2559 0.0459318,12.3892 -12.2559 0.826656,12.4043 -12.2559 0.706513,12.5 -12.2559 0.11811,12.4932 -12.2559 0.11811,12.6124 -12.2559 0.642091,12.4969 -12.2559 0.617473,11.9079 -12.2559 0.718393,11.9194 -12.2559 0.59055,12.5936 -12.2559 0.0528281,12.4405 -12.2559 0.819366,12.4301 -12.2559 0.69835,12.5956 -12.2559 0.691148,12.4877 -12.2559 0.642979,12.4891 -12.2559 0.80105,12.4534 -12.2559 0.68451,12.5685 -12.2559 0.735358,12.2276 -12.2559 0.11811,12.0492 -12.2559 0.0397242,12.1271 -12.2559 0.0212505,12.473 -12.2559 0.665723,12.2012 -12.2559 -0.00904487,11.9876 -12.2559 0.712276,12.5324 -12.2559 0.77259,12.0865 -12.2559 0.59055,12.2617 -12.2559 0.0991288,12.6119 -12.2559 0.103745,12.5 -12.2559 0.15748,12.2943 -12.2559 0.0776788,12.2697 -12.2559 -0.0504334,12.0673 -12.2559 0.718393,12.1716 -12.2559 0.61162,12.3252 -12.2559 0.0538777,12.32 -12.2559 -0.0704884,12.1451 -12.2559 0.736599,12.3522 -12.2559 0.0431436,12.3735 -12.2559 -0.0785903,12.2519 -12.2559 0.646514,12.3811 -12.2559 0.0393722,12.4274 -12.2559 -0.0743142,12.2193 -12.2559 0.766468,12.3253 -12.2559 0.694261,12.4101 -12.2559 0.0427932,12.4789 -12.2559 -0.0578845,11.6873 -12.2559 0.689191,11.6873 -12.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,9,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [12.4932 -12.2559 0.11811,12.4932 -11.7441 0.11811,12.4802 -11.7441 0.0920393,12.4802 -12.2559 0.0920393,12.4612 -11.7441 0.0699537,12.4612 -12.2559 0.0699537,12.4373 -11.7441 0.0531982,12.4373 -12.2559 0.0531982,12.4101 -11.7441 0.0427932,12.4101 -12.2559 0.0427932,12.3811 -11.7441 0.0393722,12.3811 -12.2559 0.0393722,12.3522 -12.2559 0.0431436,12.3522 -11.7441 0.0431436,12.3252 -12.2559 0.0538777,12.3252 -11.7441 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,17,18,19,-1,6,15,20,-1,14,2,21,-1,20,15,22,-1,23,17,19,-1,20,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,21,28,29,-1,18,30,31,-1,19,18,31,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,14,21,36,-1,25,26,35,-1,21,29,36,-1,30,37,38,-1,31,30,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,27,46,-1,48,47,46,-1,49,48,46,-1,36,29,50,-1,29,51,23,-1,50,29,23,-1,49,46,52,-1,49,52,53,-1,45,44,54,-1,55,45,54,-1,56,49,53,-1,55,54,57,-1,56,53,58,-1,59,56,58,-1,60,59,61,-1,55,57,62,-1,59,58,61,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,17,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,66,63,16,-1,68,67,1,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [12.5254 -11.7441 -0.0301625,12.4373 -11.7441 0.0531982,12.4612 -11.7441 0.0699537,11.759 -11.7441 0.643902,11.756 -11.7441 0.766468,11.8301 -11.7441 0.736599,11.7376 -11.7441 -0.00904487,11.669 -11.7441 -0.0504334,11.669 -11.7441 0.0676766,11.8371 -11.7441 0.610735,11.6948 -11.7441 0.0860837,12.3773 -11.7441 0.70857,12.3505 -11.7441 0.704413,12.3375 -11.7441 0.822569,12.5643 -11.7441 0.00739818,11.7215 -11.7441 0.102915,12.288 -11.7441 0.807301,12.5 -11.7441 0.55118,12.5 -11.7441 0.59055,12.6181 -11.7441 0.59055,11.8117 -11.7441 0.0212505,12.4802 -11.7441 0.0920393,11.7493 -11.7441 0.11811,12.6181 -11.7441 0.15748,11.8896 -11.7441 0.0397242,12.4043 -11.7441 0.706513,12.3892 -11.7441 0.826656,11.9694 -11.7441 0.0459318,12.4932 -11.7441 0.11811,12.5 -11.7441 0.11811,12.4969 -11.7441 0.617473,12.6124 -11.7441 0.642091,11.9079 -11.7441 0.718393,11.9194 -11.7441 0.59055,12.4301 -11.7441 0.69835,12.4405 -11.7441 0.819366,12.5936 -11.7441 0.0528281,12.4877 -11.7441 0.642979,12.5956 -11.7441 0.691148,12.4891 -11.7441 0.80105,12.4534 -11.7441 0.68451,12.5685 -11.7441 0.735358,12.473 -11.7441 0.665723,12.5324 -11.7441 0.77259,11.9876 -11.7441 0.712276,12.0865 -11.7441 0.59055,12.2276 -11.7441 0.11811,12.0492 -11.7441 0.0397242,12.1271 -11.7441 0.0212505,12.2012 -11.7441 -0.00904487,12.6119 -11.7441 0.103745,12.5 -11.7441 0.15748,12.2617 -11.7441 0.0991288,12.2943 -11.7441 0.0776788,12.0673 -11.7441 0.718393,12.1716 -11.7441 0.61162,12.2697 -11.7441 -0.0504334,12.1451 -11.7441 0.736599,12.3252 -11.7441 0.0538777,12.32 -11.7441 -0.0704884,12.3735 -11.7441 -0.0785903,12.3522 -11.7441 0.0431436,12.2519 -11.7441 0.646514,12.2193 -11.7441 0.766468,12.4274 -11.7441 -0.0743142,12.3811 -11.7441 0.0393722,12.3253 -11.7441 0.694261,12.4101 -11.7441 0.0427932,12.4789 -11.7441 -0.0578845,11.6873 -11.7441 0.689191,11.6873 -11.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [12.5 -11.7441 0.15748,12.5 -11.2559 0.55118,12.5 -11.7441 0.55118,12.5 -11.2559 0.15748,12.5 -11.7441 0.11811,12.5 -11.2559 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,10,8,-1,13,14,15,-1,16,12,8,-1,17,12,16,-1,13,18,14,-1,19,0,11,-1,20,21,22,-1,23,17,16,-1,20,22,24,-1,25,17,23,-1,26,15,27,-1,28,29,19,-1,26,13,15,-1,30,31,21,-1,32,3,9,-1,30,21,20,-1,32,9,33,-1,34,19,11,-1,35,27,36,-1,34,28,19,-1,35,26,27,-1,37,38,31,-1,37,31,30,-1,39,35,36,-1,39,36,40,-1,41,38,37,-1,42,43,44,-1,41,45,38,-1,42,44,46,-1,47,32,33,-1,48,39,40,-1,48,45,41,-1,47,33,49,-1,48,40,45,-1,42,17,25,-1,42,25,43,-1,50,42,46,-1,51,28,34,-1,24,52,28,-1,53,50,46,-1,24,28,51,-1,53,46,54,-1,55,47,49,-1,55,49,56,-1,57,53,54,-1,57,54,58,-1,59,55,56,-1,60,58,61,-1,60,57,58,-1,62,59,56,-1,63,61,64,-1,63,60,61,-1,65,59,62,-1,66,65,62,-1,22,52,24,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,18,66,14,-1,18,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [12.4612 -11.2559 0.0699537,12.4373 -11.2559 0.0531982,12.5254 -11.2559 -0.0301625,11.8301 -11.2559 0.736599,11.756 -11.2559 0.766468,11.759 -11.2559 0.643902,11.669 -11.2559 0.0676766,11.669 -11.2559 -0.0504334,11.7376 -11.2559 -0.00904487,11.8371 -11.2559 0.610735,11.6948 -11.2559 0.0860837,12.5643 -11.2559 0.00739818,11.7215 -11.2559 0.102915,12.3375 -11.2559 0.822569,12.3505 -11.2559 0.704413,12.3773 -11.2559 0.70857,11.8117 -11.2559 0.0212505,11.7493 -11.2559 0.11811,12.288 -11.2559 0.807301,12.4802 -11.2559 0.0920393,12.6181 -11.2559 0.59055,12.5 -11.2559 0.59055,12.5 -11.2559 0.55118,11.8896 -11.2559 0.0397242,12.6181 -11.2559 0.15748,11.9694 -11.2559 0.0459318,12.3892 -11.2559 0.826656,12.4043 -11.2559 0.706513,12.5 -11.2559 0.11811,12.4932 -11.2559 0.11811,12.6124 -11.2559 0.642091,12.4969 -11.2559 0.617473,11.9079 -11.2559 0.718393,11.9194 -11.2559 0.59055,12.5936 -11.2559 0.0528281,12.4405 -11.2559 0.819366,12.4301 -11.2559 0.69835,12.5956 -11.2559 0.691148,12.4877 -11.2559 0.642979,12.4891 -11.2559 0.80105,12.4534 -11.2559 0.68451,12.5685 -11.2559 0.735358,12.2276 -11.2559 0.11811,12.0492 -11.2559 0.0397242,12.1271 -11.2559 0.0212505,12.473 -11.2559 0.665723,12.2012 -11.2559 -0.00904487,11.9876 -11.2559 0.712276,12.5324 -11.2559 0.77259,12.0865 -11.2559 0.59055,12.2617 -11.2559 0.0991288,12.6119 -11.2559 0.103745,12.5 -11.2559 0.15748,12.2943 -11.2559 0.0776788,12.2697 -11.2559 -0.0504334,12.0673 -11.2559 0.718393,12.1716 -11.2559 0.61162,12.3252 -11.2559 0.0538777,12.32 -11.2559 -0.0704884,12.1451 -11.2559 0.736599,12.3522 -11.2559 0.0431436,12.3735 -11.2559 -0.0785903,12.2519 -11.2559 0.646514,12.3811 -11.2559 0.0393722,12.4274 -11.2559 -0.0743142,12.2193 -11.2559 0.766468,12.3253 -11.2559 0.694261,12.4101 -11.2559 0.0427932,12.4789 -11.2559 -0.0578845,11.6873 -11.2559 0.689191,11.6873 -11.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,9,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [12.4932 -11.2559 0.11811,12.4932 -10.7441 0.11811,12.4802 -10.7441 0.0920393,12.4802 -11.2559 0.0920393,12.4612 -10.7441 0.0699537,12.4612 -11.2559 0.0699537,12.4373 -10.7441 0.0531982,12.4373 -11.2559 0.0531982,12.4101 -10.7441 0.0427932,12.4101 -11.2559 0.0427932,12.3811 -10.7441 0.0393722,12.3811 -11.2559 0.0393722,12.3522 -11.2559 0.0431436,12.3522 -10.7441 0.0431436,12.3252 -11.2559 0.0538777,12.3252 -10.7441 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,17,18,19,-1,6,15,20,-1,14,2,21,-1,20,15,22,-1,23,17,19,-1,20,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,21,28,29,-1,18,30,31,-1,19,18,31,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,14,21,36,-1,25,26,35,-1,21,29,36,-1,30,37,38,-1,31,30,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,27,46,-1,48,47,46,-1,49,48,46,-1,36,29,50,-1,29,51,23,-1,50,29,23,-1,49,46,52,-1,49,52,53,-1,45,44,54,-1,55,45,54,-1,56,49,53,-1,55,54,57,-1,56,53,58,-1,59,56,58,-1,60,59,61,-1,55,57,62,-1,59,58,61,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,17,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,66,63,16,-1,68,67,1,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [12.5254 -10.7441 -0.0301625,12.4373 -10.7441 0.0531982,12.4612 -10.7441 0.0699537,11.759 -10.7441 0.643902,11.756 -10.7441 0.766468,11.8301 -10.7441 0.736599,11.7376 -10.7441 -0.00904487,11.669 -10.7441 -0.0504334,11.669 -10.7441 0.0676766,11.8371 -10.7441 0.610735,11.6948 -10.7441 0.0860837,12.3773 -10.7441 0.70857,12.3505 -10.7441 0.704413,12.3375 -10.7441 0.822569,12.5643 -10.7441 0.00739818,11.7215 -10.7441 0.102915,12.288 -10.7441 0.807301,12.5 -10.7441 0.55118,12.5 -10.7441 0.59055,12.6181 -10.7441 0.59055,11.8117 -10.7441 0.0212505,12.4802 -10.7441 0.0920393,11.7493 -10.7441 0.11811,12.6181 -10.7441 0.15748,11.8896 -10.7441 0.0397242,12.4043 -10.7441 0.706513,12.3892 -10.7441 0.826656,11.9694 -10.7441 0.0459318,12.4932 -10.7441 0.11811,12.5 -10.7441 0.11811,12.4969 -10.7441 0.617473,12.6124 -10.7441 0.642091,11.9079 -10.7441 0.718393,11.9194 -10.7441 0.59055,12.4301 -10.7441 0.69835,12.4405 -10.7441 0.819366,12.5936 -10.7441 0.0528281,12.4877 -10.7441 0.642979,12.5956 -10.7441 0.691148,12.4891 -10.7441 0.80105,12.4534 -10.7441 0.68451,12.5685 -10.7441 0.735358,12.473 -10.7441 0.665723,12.5324 -10.7441 0.77259,11.9876 -10.7441 0.712276,12.0865 -10.7441 0.59055,12.2276 -10.7441 0.11811,12.0492 -10.7441 0.0397242,12.1271 -10.7441 0.0212505,12.2012 -10.7441 -0.00904487,12.6119 -10.7441 0.103745,12.5 -10.7441 0.15748,12.2617 -10.7441 0.0991288,12.2943 -10.7441 0.0776788,12.0673 -10.7441 0.718393,12.1716 -10.7441 0.61162,12.2697 -10.7441 -0.0504334,12.1451 -10.7441 0.736599,12.3252 -10.7441 0.0538777,12.32 -10.7441 -0.0704884,12.3735 -10.7441 -0.0785903,12.3522 -10.7441 0.0431436,12.2519 -10.7441 0.646514,12.2193 -10.7441 0.766468,12.4274 -10.7441 -0.0743142,12.3811 -10.7441 0.0393722,12.3253 -10.7441 0.694261,12.4101 -10.7441 0.0427932,12.4789 -10.7441 -0.0578845,11.6873 -10.7441 0.689191,11.6873 -10.7441 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [12.5 -10.7441 0.15748,12.5 -10.2559 0.55118,12.5 -10.7441 0.55118,12.5 -10.2559 0.15748,12.5 -10.7441 0.11811,12.5 -10.2559 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,10,8,-1,13,14,15,-1,16,12,8,-1,17,12,16,-1,13,18,14,-1,19,0,11,-1,20,21,22,-1,23,17,16,-1,20,22,24,-1,25,17,23,-1,26,15,27,-1,28,29,19,-1,26,13,15,-1,30,31,21,-1,32,3,9,-1,30,21,20,-1,32,9,33,-1,34,19,11,-1,35,27,36,-1,34,28,19,-1,35,26,27,-1,37,38,31,-1,37,31,30,-1,39,35,36,-1,39,36,40,-1,41,38,37,-1,42,43,44,-1,41,45,38,-1,42,44,46,-1,47,32,33,-1,48,39,40,-1,48,45,41,-1,47,33,49,-1,48,40,45,-1,42,17,25,-1,42,25,43,-1,50,42,46,-1,51,28,34,-1,24,52,28,-1,53,50,46,-1,24,28,51,-1,53,46,54,-1,55,47,49,-1,55,49,56,-1,57,53,54,-1,57,54,58,-1,59,55,56,-1,60,58,61,-1,60,57,58,-1,62,59,56,-1,63,61,64,-1,63,60,61,-1,65,59,62,-1,66,65,62,-1,22,52,24,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,18,66,14,-1,18,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [12.4612 -10.2559 0.0699537,12.4373 -10.2559 0.0531982,12.5254 -10.2559 -0.0301625,11.8301 -10.2559 0.736599,11.756 -10.2559 0.766468,11.759 -10.2559 0.643902,11.669 -10.2559 0.0676766,11.669 -10.2559 -0.0504334,11.7376 -10.2559 -0.00904487,11.8371 -10.2559 0.610735,11.6948 -10.2559 0.0860837,12.5643 -10.2559 0.00739818,11.7215 -10.2559 0.102915,12.3375 -10.2559 0.822569,12.3505 -10.2559 0.704413,12.3773 -10.2559 0.70857,11.8117 -10.2559 0.0212505,11.7493 -10.2559 0.11811,12.288 -10.2559 0.807301,12.4802 -10.2559 0.0920393,12.6181 -10.2559 0.59055,12.5 -10.2559 0.59055,12.5 -10.2559 0.55118,11.8896 -10.2559 0.0397242,12.6181 -10.2559 0.15748,11.9694 -10.2559 0.0459318,12.3892 -10.2559 0.826656,12.4043 -10.2559 0.706513,12.5 -10.2559 0.11811,12.4932 -10.2559 0.11811,12.6124 -10.2559 0.642091,12.4969 -10.2559 0.617473,11.9079 -10.2559 0.718393,11.9194 -10.2559 0.59055,12.5936 -10.2559 0.0528281,12.4405 -10.2559 0.819366,12.4301 -10.2559 0.69835,12.5956 -10.2559 0.691148,12.4877 -10.2559 0.642979,12.4891 -10.2559 0.80105,12.4534 -10.2559 0.68451,12.5685 -10.2559 0.735358,12.2276 -10.2559 0.11811,12.0492 -10.2559 0.0397242,12.1271 -10.2559 0.0212505,12.473 -10.2559 0.665723,12.2012 -10.2559 -0.00904487,11.9876 -10.2559 0.712276,12.5324 -10.2559 0.77259,12.0865 -10.2559 0.59055,12.2617 -10.2559 0.0991288,12.6119 -10.2559 0.103745,12.5 -10.2559 0.15748,12.2943 -10.2559 0.0776788,12.2697 -10.2559 -0.0504334,12.0673 -10.2559 0.718393,12.1716 -10.2559 0.61162,12.3252 -10.2559 0.0538777,12.32 -10.2559 -0.0704884,12.1451 -10.2559 0.736599,12.3522 -10.2559 0.0431436,12.3735 -10.2559 -0.0785903,12.2519 -10.2559 0.646514,12.3811 -10.2559 0.0393722,12.4274 -10.2559 -0.0743142,12.2193 -10.2559 0.766468,12.3253 -10.2559 0.694261,12.4101 -10.2559 0.0427932,12.4789 -10.2559 -0.0578845,11.6873 -10.2559 0.689191,11.6873 -10.2559 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,9,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [12.4932 -10.2559 0.11811,12.4932 -9.74408 0.11811,12.4802 -9.74408 0.0920393,12.4802 -10.2559 0.0920393,12.4612 -9.74408 0.0699537,12.4612 -10.2559 0.0699537,12.4373 -9.74408 0.0531982,12.4373 -10.2559 0.0531982,12.4101 -9.74408 0.0427932,12.4101 -10.2559 0.0427932,12.3811 -9.74408 0.0393722,12.3811 -10.2559 0.0393722,12.3522 -10.2559 0.0431436,12.3522 -9.74408 0.0431436,12.3252 -10.2559 0.0538777,12.3252 -9.74407 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,17,18,19,-1,6,15,20,-1,14,2,21,-1,20,15,22,-1,23,17,19,-1,20,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,21,28,29,-1,18,30,31,-1,19,18,31,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,14,21,36,-1,25,26,35,-1,21,29,36,-1,30,37,38,-1,31,30,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,27,46,-1,48,47,46,-1,49,48,46,-1,36,29,50,-1,29,51,23,-1,50,29,23,-1,49,46,52,-1,49,52,53,-1,45,44,54,-1,55,45,54,-1,56,49,53,-1,55,54,57,-1,56,53,58,-1,59,56,58,-1,60,59,61,-1,55,57,62,-1,59,58,61,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,17,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,66,63,16,-1,68,67,1,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [12.5254 -9.74408 -0.0301625,12.4373 -9.74408 0.0531982,12.4612 -9.74408 0.0699537,11.759 -9.74408 0.643902,11.756 -9.74408 0.766468,11.8301 -9.74408 0.736599,11.7376 -9.74408 -0.00904487,11.669 -9.74407 -0.0504334,11.669 -9.74407 0.0676766,11.8371 -9.74408 0.610735,11.6948 -9.74408 0.0860837,12.3773 -9.74408 0.70857,12.3505 -9.74408 0.704413,12.3375 -9.74408 0.822569,12.5643 -9.74408 0.00739818,11.7215 -9.74408 0.102915,12.288 -9.74407 0.807301,12.5 -9.74408 0.55118,12.5 -9.74407 0.59055,12.6181 -9.74407 0.59055,11.8117 -9.74408 0.0212505,12.4802 -9.74408 0.0920393,11.7493 -9.74408 0.11811,12.6181 -9.74407 0.15748,11.8896 -9.74408 0.0397242,12.4043 -9.74408 0.706513,12.3892 -9.74408 0.826656,11.9694 -9.74408 0.0459318,12.4932 -9.74408 0.11811,12.5 -9.74408 0.11811,12.4969 -9.74408 0.617473,12.6124 -9.74408 0.642091,11.9079 -9.74408 0.718393,11.9194 -9.74408 0.59055,12.4301 -9.74408 0.69835,12.4405 -9.74408 0.819366,12.5936 -9.74408 0.0528281,12.4877 -9.74408 0.642979,12.5956 -9.74408 0.691148,12.4891 -9.74408 0.80105,12.4534 -9.74408 0.68451,12.5685 -9.74408 0.735358,12.473 -9.74408 0.665723,12.5324 -9.74408 0.77259,11.9876 -9.74408 0.712276,12.0865 -9.74408 0.59055,12.2276 -9.74408 0.11811,12.0492 -9.74408 0.0397242,12.1271 -9.74408 0.0212505,12.2012 -9.74408 -0.00904487,12.6119 -9.74408 0.103745,12.5 -9.74407 0.15748,12.2617 -9.74408 0.0991288,12.2943 -9.74408 0.0776788,12.0673 -9.74408 0.718393,12.1716 -9.74408 0.61162,12.2697 -9.74407 -0.0504334,12.1451 -9.74408 0.736599,12.3252 -9.74407 0.0538777,12.32 -9.74408 -0.0704884,12.3735 -9.74408 -0.0785903,12.3522 -9.74408 0.0431436,12.2519 -9.74408 0.646514,12.2193 -9.74408 0.766468,12.4274 -9.74408 -0.0743142,12.3811 -9.74408 0.0393722,12.3253 -9.74407 0.694261,12.4101 -9.74408 0.0427932,12.4789 -9.74408 -0.0578845,11.6873 -9.74407 0.689191,11.6873 -9.74407 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [12.5 -9.74407 0.15748,12.5 -9.25589 0.55118,12.5 -9.74408 0.55118,12.5 -9.25589 0.15748,12.5 -9.74408 0.11811,12.5 -9.25589 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,10,8,-1,13,14,15,-1,16,12,8,-1,17,12,16,-1,13,18,14,-1,19,0,11,-1,20,21,22,-1,23,17,16,-1,20,22,24,-1,25,17,23,-1,26,15,27,-1,28,29,19,-1,26,13,15,-1,30,31,21,-1,32,3,9,-1,30,21,20,-1,32,9,33,-1,34,19,11,-1,35,27,36,-1,34,28,19,-1,35,26,27,-1,37,38,31,-1,37,31,30,-1,39,35,36,-1,39,36,40,-1,41,38,37,-1,42,43,44,-1,41,45,38,-1,42,44,46,-1,47,32,33,-1,48,39,40,-1,48,45,41,-1,47,33,49,-1,48,40,45,-1,42,17,25,-1,42,25,43,-1,50,42,46,-1,51,28,34,-1,24,52,28,-1,53,50,46,-1,24,28,51,-1,53,46,54,-1,55,47,49,-1,55,49,56,-1,57,53,54,-1,57,54,58,-1,59,55,56,-1,60,58,61,-1,60,57,58,-1,62,59,56,-1,63,61,64,-1,63,60,61,-1,65,59,62,-1,66,65,62,-1,22,52,24,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,18,66,14,-1,18,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [12.4612 -9.25589 0.0699537,12.4373 -9.25589 0.0531982,12.5254 -9.25589 -0.0301625,11.8301 -9.25589 0.736599,11.756 -9.25589 0.766468,11.759 -9.25589 0.643902,11.669 -9.25589 0.0676766,11.669 -9.25589 -0.0504334,11.7376 -9.25589 -0.00904487,11.8371 -9.25589 0.610735,11.6948 -9.25589 0.0860837,12.5643 -9.25589 0.00739818,11.7215 -9.25589 0.102915,12.3375 -9.25589 0.822569,12.3505 -9.25589 0.704413,12.3773 -9.25589 0.70857,11.8117 -9.25589 0.0212505,11.7493 -9.25589 0.11811,12.288 -9.25589 0.807301,12.4802 -9.25589 0.0920393,12.6181 -9.25589 0.59055,12.5 -9.25589 0.59055,12.5 -9.25589 0.55118,11.8896 -9.25589 0.0397242,12.6181 -9.25589 0.15748,11.9694 -9.25589 0.0459318,12.3892 -9.25589 0.826656,12.4043 -9.25589 0.706513,12.5 -9.25589 0.11811,12.4932 -9.25589 0.11811,12.6124 -9.25589 0.642091,12.4969 -9.25589 0.617473,11.9079 -9.25589 0.718393,11.9194 -9.25589 0.59055,12.5936 -9.25589 0.0528281,12.4405 -9.25589 0.819366,12.4301 -9.25589 0.69835,12.5956 -9.25589 0.691148,12.4877 -9.25589 0.642979,12.4891 -9.25589 0.80105,12.4534 -9.25589 0.68451,12.5685 -9.25589 0.735358,12.2276 -9.25589 0.11811,12.0492 -9.25589 0.0397242,12.1271 -9.25589 0.0212505,12.473 -9.25589 0.665723,12.2012 -9.25589 -0.00904487,11.9876 -9.25589 0.712276,12.5324 -9.25589 0.77259,12.0865 -9.25589 0.59055,12.2617 -9.25589 0.0991288,12.6119 -9.25589 0.103745,12.5 -9.25589 0.15748,12.2943 -9.25589 0.0776788,12.2697 -9.25589 -0.0504334,12.0673 -9.25589 0.718393,12.1716 -9.25589 0.61162,12.3252 -9.25589 0.0538777,12.32 -9.25589 -0.0704884,12.1451 -9.25589 0.736599,12.3522 -9.25589 0.0431436,12.3735 -9.25589 -0.0785903,12.2519 -9.25589 0.646514,12.3811 -9.25589 0.0393722,12.4274 -9.25589 -0.0743142,12.2193 -9.25589 0.766468,12.3253 -9.25589 0.694261,12.4101 -9.25589 0.0427932,12.4789 -9.25589 -0.0578845,11.6873 -9.25589 0.689191,11.6873 -9.25589 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,9,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [12.4932 -9.25589 0.11811,12.4932 -8.74408 0.11811,12.4802 -8.74408 0.0920393,12.4802 -9.25589 0.0920393,12.4612 -8.74408 0.0699537,12.4612 -9.25589 0.0699537,12.4373 -8.74408 0.0531982,12.4373 -9.25589 0.0531982,12.4101 -8.74408 0.0427932,12.4101 -9.25589 0.0427932,12.3811 -8.74408 0.0393722,12.3811 -9.25589 0.0393722,12.3522 -9.25589 0.0431436,12.3522 -8.74408 0.0431436,12.3252 -9.25589 0.0538777,12.3252 -8.74408 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,17,18,19,-1,6,15,20,-1,14,2,21,-1,20,15,22,-1,23,17,19,-1,20,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,21,28,29,-1,18,30,31,-1,19,18,31,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,14,21,36,-1,25,26,35,-1,21,29,36,-1,30,37,38,-1,31,30,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,27,46,-1,48,47,46,-1,49,48,46,-1,36,29,50,-1,29,51,23,-1,50,29,23,-1,49,46,52,-1,49,52,53,-1,45,44,54,-1,55,45,54,-1,56,49,53,-1,55,54,57,-1,56,53,58,-1,59,56,58,-1,60,59,61,-1,55,57,62,-1,59,58,61,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,17,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,66,63,16,-1,68,67,1,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [12.5254 -8.74408 -0.0301625,12.4373 -8.74408 0.0531982,12.4612 -8.74408 0.0699537,11.759 -8.74408 0.643902,11.756 -8.74408 0.766468,11.8301 -8.74408 0.736599,11.7376 -8.74408 -0.00904487,11.669 -8.74408 -0.0504334,11.669 -8.74408 0.0676766,11.8371 -8.74408 0.610735,11.6948 -8.74408 0.0860837,12.3773 -8.74408 0.70857,12.3505 -8.74408 0.704413,12.3375 -8.74408 0.822569,12.5643 -8.74408 0.00739818,11.7215 -8.74408 0.102915,12.288 -8.74408 0.807301,12.5 -8.74408 0.55118,12.5 -8.74408 0.59055,12.6181 -8.74408 0.59055,11.8117 -8.74408 0.0212505,12.4802 -8.74408 0.0920393,11.7493 -8.74408 0.11811,12.6181 -8.74408 0.15748,11.8896 -8.74408 0.0397242,12.4043 -8.74408 0.706513,12.3892 -8.74408 0.826656,11.9694 -8.74408 0.0459318,12.4932 -8.74408 0.11811,12.5 -8.74408 0.11811,12.4969 -8.74408 0.617473,12.6124 -8.74408 0.642091,11.9079 -8.74408 0.718393,11.9194 -8.74408 0.59055,12.4301 -8.74408 0.69835,12.4405 -8.74408 0.819366,12.5936 -8.74408 0.0528281,12.4877 -8.74408 0.642979,12.5956 -8.74408 0.691148,12.4891 -8.74408 0.80105,12.4534 -8.74408 0.68451,12.5685 -8.74408 0.735358,12.473 -8.74408 0.665723,12.5324 -8.74408 0.77259,11.9876 -8.74408 0.712276,12.0865 -8.74408 0.59055,12.2276 -8.74408 0.11811,12.0492 -8.74408 0.0397242,12.1271 -8.74408 0.0212505,12.2012 -8.74408 -0.00904487,12.6119 -8.74408 0.103745,12.5 -8.74408 0.15748,12.2617 -8.74408 0.0991288,12.2943 -8.74408 0.0776788,12.0673 -8.74408 0.718393,12.1716 -8.74408 0.61162,12.2697 -8.74408 -0.0504334,12.1451 -8.74408 0.736599,12.3252 -8.74408 0.0538777,12.32 -8.74408 -0.0704884,12.3735 -8.74408 -0.0785903,12.3522 -8.74408 0.0431436,12.2519 -8.74408 0.646514,12.2193 -8.74408 0.766468,12.4274 -8.74408 -0.0743142,12.3811 -8.74408 0.0393722,12.3253 -8.74408 0.694261,12.4101 -8.74408 0.0427932,12.4789 -8.74408 -0.0578845,11.6873 -8.74408 0.689191,11.6873 -8.74408 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]
coord Coordinate { point [12.5 -8.74408 0.15748,12.5 -8.25589 0.55118,12.5 -8.74408 0.55118,12.5 -8.25589 0.15748,12.5 -8.74408 0.11811,12.5 -8.25589 0.11811]
}}
appearance Appearance{material USE IC-BODY-EPOXY-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,3,5,9,-1,10,6,8,-1,11,0,2,-1,12,10,8,-1,13,14,15,-1,16,12,8,-1,17,12,16,-1,13,18,14,-1,19,0,11,-1,20,21,22,-1,23,17,16,-1,20,22,24,-1,25,17,23,-1,26,15,27,-1,28,29,19,-1,26,13,15,-1,30,31,21,-1,32,3,9,-1,30,21,20,-1,32,9,33,-1,34,19,11,-1,35,27,36,-1,34,28,19,-1,35,26,27,-1,37,38,31,-1,37,31,30,-1,39,35,36,-1,39,36,40,-1,41,38,37,-1,42,43,44,-1,41,45,38,-1,42,44,46,-1,47,32,33,-1,48,39,40,-1,48,45,41,-1,47,33,49,-1,48,40,45,-1,42,17,25,-1,42,25,43,-1,50,42,46,-1,51,28,34,-1,24,52,28,-1,53,50,46,-1,24,28,51,-1,53,46,54,-1,55,47,49,-1,55,49,56,-1,57,53,54,-1,57,54,58,-1,59,55,56,-1,60,58,61,-1,60,57,58,-1,62,59,56,-1,63,61,64,-1,63,60,61,-1,65,59,62,-1,66,65,62,-1,22,52,24,-1,67,63,64,-1,67,64,68,-1,1,67,68,-1,18,66,14,-1,18,65,66,-1,2,1,68,-1,4,69,5,-1,4,70,69,-1]
coord Coordinate { point [12.4612 -8.25589 0.0699537,12.4373 -8.25589 0.0531982,12.5254 -8.25589 -0.0301625,11.8301 -8.25589 0.736599,11.756 -8.25589 0.766468,11.759 -8.25589 0.643902,11.669 -8.25589 0.0676766,11.669 -8.25589 -0.0504334,11.7376 -8.25589 -0.00904487,11.8371 -8.25589 0.610735,11.6948 -8.25589 0.0860837,12.5643 -8.25589 0.00739818,11.7215 -8.25589 0.102915,12.3375 -8.25589 0.822569,12.3505 -8.25589 0.704413,12.3773 -8.25589 0.70857,11.8117 -8.25589 0.0212505,11.7493 -8.25589 0.11811,12.288 -8.25589 0.807301,12.4802 -8.25589 0.0920393,12.6181 -8.25589 0.59055,12.5 -8.25589 0.59055,12.5 -8.25589 0.55118,11.8896 -8.25589 0.0397242,12.6181 -8.25589 0.15748,11.9694 -8.25589 0.0459318,12.3892 -8.25589 0.826656,12.4043 -8.25589 0.706513,12.5 -8.25589 0.11811,12.4932 -8.25589 0.11811,12.6124 -8.25589 0.642091,12.4969 -8.25589 0.617473,11.9079 -8.25589 0.718393,11.9194 -8.25589 0.59055,12.5936 -8.25589 0.0528281,12.4405 -8.25589 0.819366,12.4301 -8.25589 0.69835,12.5956 -8.25589 0.691148,12.4877 -8.25589 0.642979,12.4891 -8.25589 0.80105,12.4534 -8.25589 0.68451,12.5685 -8.25589 0.735358,12.2276 -8.25589 0.11811,12.0492 -8.25589 0.0397242,12.1271 -8.25589 0.0212505,12.473 -8.25589 0.665723,12.2012 -8.25589 -0.00904487,11.9876 -8.25589 0.712276,12.5324 -8.25589 0.77259,12.0865 -8.25589 0.59055,12.2617 -8.25589 0.0991288,12.6119 -8.25589 0.103745,12.5 -8.25589 0.15748,12.2943 -8.25589 0.0776788,12.2697 -8.25589 -0.0504334,12.0673 -8.25589 0.718393,12.1716 -8.25589 0.61162,12.3252 -8.25589 0.0538777,12.32 -8.25589 -0.0704884,12.1451 -8.25589 0.736599,12.3522 -8.25589 0.0431436,12.3735 -8.25589 -0.0785903,12.2519 -8.25589 0.646514,12.3811 -8.25589 0.0393722,12.4274 -8.25589 -0.0743142,12.2193 -8.25589 0.766468,12.3253 -8.25589 0.694261,12.4101 -8.25589 0.0427932,12.4789 -8.25589 -0.0578845,11.6873 -8.25589 0.689191,11.6873 -8.25589 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,9,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [12.4932 -8.25589 0.11811,12.4932 -7.74408 0.11811,12.4802 -7.74408 0.0920393,12.4802 -8.25589 0.0920393,12.4612 -7.74408 0.0699537,12.4612 -8.25589 0.0699537,12.4373 -7.74408 0.0531982,12.4373 -8.25589 0.0531982,12.4101 -7.74408 0.0427932,12.4101 -8.25589 0.0427932,12.3811 -7.74408 0.0393722,12.3811 -8.25589 0.0393722,12.3522 -8.25589 0.0431436,12.3522 -7.74408 0.0431436,12.3252 -8.25589 0.0538777,12.3252 -7.74408 0.0538777]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,3,5,-1,6,8,10,-1,11,12,13,-1,0,2,14,-1,6,10,15,-1,12,16,13,-1,17,18,19,-1,6,15,20,-1,14,2,21,-1,20,15,22,-1,23,17,19,-1,20,22,24,-1,25,11,26,-1,24,22,27,-1,11,13,26,-1,21,28,29,-1,18,30,31,-1,19,18,31,-1,9,5,32,-1,33,9,32,-1,34,25,35,-1,14,21,36,-1,25,26,35,-1,21,29,36,-1,30,37,38,-1,31,30,38,-1,34,35,39,-1,40,34,39,-1,38,37,41,-1,37,42,41,-1,40,39,43,-1,33,32,44,-1,41,42,43,-1,42,40,43,-1,45,33,44,-1,27,22,46,-1,47,27,46,-1,48,47,46,-1,49,48,46,-1,36,29,50,-1,29,51,23,-1,50,29,23,-1,49,46,52,-1,49,52,53,-1,45,44,54,-1,55,45,54,-1,56,49,53,-1,55,54,57,-1,56,53,58,-1,59,56,58,-1,60,59,61,-1,55,57,62,-1,59,58,61,-1,62,57,63,-1,64,60,65,-1,60,61,65,-1,62,63,66,-1,23,51,17,-1,64,65,67,-1,68,64,67,-1,12,66,16,-1,66,63,16,-1,68,67,1,-1,68,1,0,-1,3,69,4,-1,69,70,4,-1]
coord Coordinate { point [12.5254 -7.74408 -0.0301625,12.4373 -7.74408 0.0531982,12.4612 -7.74408 0.0699537,11.759 -7.74408 0.643902,11.756 -7.74408 0.766468,11.8301 -7.74408 0.736599,11.7376 -7.74408 -0.00904487,11.669 -7.74408 -0.0504334,11.669 -7.74408 0.0676766,11.8371 -7.74408 0.610735,11.6948 -7.74408 0.0860837,12.3773 -7.74408 0.70857,12.3505 -7.74408 0.704413,12.3375 -7.74408 0.822569,12.5643 -7.74408 0.00739818,11.7215 -7.74408 0.102915,12.288 -7.74408 0.807301,12.5 -7.74408 0.55118,12.5 -7.74408 0.59055,12.6181 -7.74408 0.59055,11.8117 -7.74408 0.0212505,12.4802 -7.74408 0.0920393,11.7493 -7.74408 0.11811,12.6181 -7.74408 0.15748,11.8896 -7.74408 0.0397242,12.4043 -7.74408 0.706513,12.3892 -7.74408 0.826656,11.9694 -7.74408 0.0459318,12.4932 -7.74408 0.11811,12.5 -7.74408 0.11811,12.4969 -7.74408 0.617473,12.6124 -7.74408 0.642091,11.9079 -7.74408 0.718393,11.9194 -7.74408 0.59055,12.4301 -7.74408 0.69835,12.4405 -7.74408 0.819366,12.5936 -7.74408 0.0528281,12.4877 -7.74408 0.642979,12.5956 -7.74408 0.691148,12.4891 -7.74408 0.80105,12.4534 -7.74408 0.68451,12.5685 -7.74408 0.735358,12.473 -7.74408 0.665723,12.5324 -7.74408 0.77259,11.9876 -7.74408 0.712276,12.0865 -7.74408 0.59055,12.2276 -7.74408 0.11811,12.0492 -7.74408 0.0397242,12.1271 -7.74408 0.0212505,12.2012 -7.74408 -0.00904487,12.6119 -7.74408 0.103745,12.5 -7.74408 0.15748,12.2617 -7.74408 0.0991288,12.2943 -7.74408 0.0776788,12.0673 -7.74408 0.718393,12.1716 -7.74408 0.61162,12.2697 -7.74408 -0.0504334,12.1451 -7.74408 0.736599,12.3252 -7.74408 0.0538777,12.32 -7.74408 -0.0704884,12.3735 -7.74408 -0.0785903,12.3522 -7.74408 0.0431436,12.2519 -7.74408 0.646514,12.2193 -7.74408 0.766468,12.4274 -7.74408 -0.0743142,12.3811 -7.74408 0.0393722,12.3253 -7.74408 0.694261,12.4101 -7.74408 0.0427932,12.4789 -7.74408 -0.0578845,11.6873 -7.74408 0.689191,11.6873 -7.74408 0.807301]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,3,-1,4,3,0,-1]