-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathfwcommsupport5.dae
1598 lines (1598 loc) · 326 KB
/
fwcommsupport5.dae
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
<?xml version="1.0" encoding="utf-8"?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<asset>
<contributor>
<author>Blender User</author>
<authoring_tool>Blender 3.4.1 commit date:2022-12-19, commit time:17:00, hash:55485cb379f7</authoring_tool>
</contributor>
<created>2023-01-14T17:28:38</created>
<modified>2023-01-14T17:28:38</modified>
<unit name="meter" meter="1"/>
<up_axis>Z_UP</up_axis>
</asset>
<library_effects>
<effect id="commsupport5_s3o_mat_001-effect">
<profile_COMMON>
<technique sid="common">
<lambert>
<emission>
<color sid="emission">0 0 0 1</color>
</emission>
<diffuse>
<color sid="diffuse">1 1 1 1</color>
</diffuse>
<index_of_refraction>
<float sid="ior">1.45</float>
</index_of_refraction>
</lambert>
</technique>
</profile_COMMON>
</effect>
</library_effects>
<library_images/>
<library_materials>
<material id="commsupport5_s3o_mat_001-material" name="commsupport5.s3o.mat.001">
<instance_effect url="#commsupport5_s3o_mat_001-effect"/>
</material>
</library_materials>
<library_geometries>
<geometry id="lfoot_001-mesh" name="lfoot.001">
<mesh>
<source id="lfoot_001-mesh-positions">
<float_array id="lfoot_001-mesh-positions-array" count="279">-1.314281 1.783235 -3.072024 1.969651 -1.450965 6.138162 -0.4605937 -1.450965 6.138162 3.409991 1.783235 -3.072024 2.183515 0.5711176 -6.920975 -0.5415596 0.5711176 -6.920975 1.969651 -1.450965 6.138162 3.409991 1.783235 -3.072024 5.095608 -6.506396 -3.179894 2.939864 -4.466005 8.415632 -0.4605937 -1.450965 6.138162 -1.439596 -4.466005 8.415632 -3.414903 -6.506396 -3.179894 -1.314281 1.783235 -3.072024 2.939864 -4.466005 8.415632 -1.439596 -4.466005 8.415632 2.183515 0.5711176 -6.920975 3.390461 -4.700238 -8.919007 2.183515 0.5711176 -6.920975 -0.5415596 0.5711176 -6.920975 -1.51452 -4.700238 -8.919007 3.390461 -4.700238 -8.919007 -0.5415596 0.5711176 -6.920975 -1.51452 -4.700238 -8.919007 -0.3345043 -2.943317 4.21539 1.397025 -4.592019 12.80717 0.3825041 -4.592019 12.80717 2.233422 -2.943317 4.21539 -0.3944393 -3.757388 0.1034964 2.546701 -3.757388 0.1034964 2.403866 -6.424368 14.66922 -0.471951 -6.424368 14.66922 2.403866 -6.424368 14.66922 1.397025 -4.592019 12.80717 4.790936 -6.61308 3.85829 2.233422 -2.943317 4.21539 0.3825041 -4.592019 12.80717 -0.471951 -6.424368 14.66922 -2.488249 -6.61308 3.85829 -0.3345043 -2.943317 4.21539 2.546701 -3.757388 0.1034964 3.46829 -6.778502 -0.3971832 3.46829 -6.778502 -0.3971832 2.546701 -3.757388 0.1034964 -1.280576 -6.778502 -0.3971832 -0.3944393 -3.757388 0.1034964 -0.3944393 -3.757388 0.1034964 -1.280576 -6.778502 -0.3971832 1.664197 -3.635432 -10.6936 -0.8027077 -2.496493 -7.462146 -0.004310429 -3.635432 -10.6936 2.619785 -2.496493 -7.462146 1.776745 -3.643753 -3.755897 -0.1048607 -3.643753 -3.755897 2.222745 -6.708143 -12.25582 -0.5380795 -6.708143 -12.25582 -0.5380795 -6.708143 -12.25582 -0.004310429 -3.635432 -10.6936 -2.092531 -6.905552 -6.85469 -0.8027077 -2.496493 -7.462146 2.619785 -2.496493 -7.462146 1.664197 -3.635432 -10.6936 3.936591 -6.905552 -6.85469 2.222745 -6.708143 -12.25582 -0.1048607 -3.643753 -3.755897 -0.5884854 -6.758349 -3.112178 -0.1048607 -3.643753 -3.755897 1.776745 -3.643753 -3.755897 -0.5884854 -6.758349 -3.112178 2.295193 -6.758349 -3.112178 1.776745 -3.643753 -3.755897 2.295193 -6.758349 -3.112178 -0.471951 -6.424368 14.66922 2.403866 -6.424368 14.66922 -2.488249 -6.61308 3.85829 2.403866 -6.424368 14.66922 -0.471951 -6.424368 14.66922 -2.488249 -6.61308 3.85829 4.790936 -6.61308 3.85829 3.46829 -6.778502 -0.3971832 -1.280576 -6.778502 -0.3971832 2.222745 -6.708143 -12.25582 -0.5380795 -6.708143 -12.25582 -2.092531 -6.905552 -6.85469 -0.5884854 -6.758349 -3.112178 2.295193 -6.758349 -3.112178 3.936591 -6.905552 -6.85469 -1.439596 -4.466005 8.415632 2.939864 -4.466005 8.415632 -3.414903 -6.506396 -3.179894 5.095608 -6.506396 -3.179894 3.390461 -4.700238 -8.919007 -1.51452 -4.700238 -8.919007</float_array>
<technique_common>
<accessor source="#lfoot_001-mesh-positions-array" count="93" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="lfoot_001-mesh-normals">
<float_array id="lfoot_001-mesh-normals-array" count="261">0 0.8022605 0.5969742 0 0.9996036 0.02815145 0 0.7989827 0.601354 0 0.9994007 0.03461772 0 0.9538201 -0.3003786 0 0.9538202 -0.3003786 0.9769397 0.1996367 -0.07572263 0.9379452 0.3157753 0.1433342 0.9681186 0.2494067 -0.02329659 0.9207767 0.3756711 0.1050786 -0.9244453 0.369955 0.09238135 -0.937447 0.3268284 0.1199015 -0.9627482 0.2680555 -0.03552728 -0.9680204 0.2459437 -0.04948103 0 0.6027386 0.7979388 0 0.6027385 0.7979388 0.9291832 0.2289279 -0.2901908 0.9392424 0.2866334 -0.1888518 0 0.3544296 -0.9350827 0 0.3544296 -0.9350827 0 0.3544296 -0.9350827 -0.9359804 0.2478137 -0.2500582 -0.938127 0.2598965 -0.2288483 0 0.8745197 0.48499 0 0.9999594 -0.009023725 0 0.8758956 0.4825008 0 0.9999083 -0.01354414 0 0.98096 -0.1942101 0 0.98096 -0.1942101 0 0.712769 0.7013989 0 0.712769 0.7013989 0.7914008 0.587942 0.1673592 0.7853747 0.5971781 0.1629878 0.852712 0.5223731 0.002921998 0.8214626 0.5648921 0.07807952 -0.831607 0.5358996 0.1457448 -0.8367142 0.5268603 0.1494247 -0.8837215 0.4678523 -0.01227819 -0.8634793 0.5020518 0.04845315 0.8735774 0.453171 -0.1774788 0.900113 0.3230245 -0.2923215 0 0.1634967 -0.986544 0 0.1634967 -0.9865439 -0.8927971 0.4103822 -0.1857417 -0.9107421 0.3119778 -0.2705897 0 0.9999133 -0.0131663 0 0.7601985 -0.649691 0 0.7576484 -0.6526631 0 0.9999268 -0.01210439 0 0.9552795 0.2957043 0 0.9552795 0.2957044 0 0.453206 -0.8914059 0 0.4532061 -0.8914058 -0.9237421 0.2629687 -0.2784741 -0.9225034 0.289848 -0.2549034 -0.9612127 0.2733153 0.03699839 -0.9604274 0.2742997 -0.04836183 0.9116944 0.2712271 -0.3086247 0.9587867 0.2788195 -0.05466032 0.9577906 0.2848065 0.03901863 0.9104125 0.3066676 -0.2776765 -0.9138497 0.2628479 0.3094993 -0.909086 0.2149215 0.3568912 0 0.2024002 0.9793029 0 0.2024002 0.979303 0 0.2024002 0.979303 0.8999044 0.2722257 0.3406838 0.8948941 0.2282244 0.3835079 0 -0.9998477 0.01745295 0 -0.9998477 0.01745295 0 -0.9996141 0.02778291 0 0.9998477 -0.01745301 0 -0.9996134 0.02780783 0 -0.9992454 0.03884333 0 -0.9992453 0.03884345 0 -0.9993329 -0.0365253 -0.003352165 -0.9998615 -0.01630324 0.05305999 -0.998574 0.005895256 0.0220049 -0.9997571 0.001275837 -0.02130162 -0.999759 -0.005320906 -0.09988433 -0.9949882 -0.00467205 0 -0.984869 0.1733012 0 -0.984869 0.1733011 0 -0.9986182 -0.05255228 0 -0.9983926 -0.05667829 0 -0.9538778 -0.3001953 0 -0.9538779 -0.3001952</float_array>
<technique_common>
<accessor source="#lfoot_001-mesh-normals-array" count="87" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="lfoot_001-mesh-map-0">
<float_array id="lfoot_001-mesh-map-0-array" count="366">0.138728 0.298259 0.1736119 0.204689 0.164544 0.298259 0.123428 0.204689 0.1736119 0.204689 0.138728 0.298259 0.1736119 0.204689 0.123428 0.204689 0.136457 0.1655859 0.1736119 0.204689 0.136457 0.1655859 0.165404 0.1655859 0.123428 0.204689 0.138728 0.298259 0.105523 0.203594 0.138728 0.298259 0.128423 0.321397 0.105523 0.203594 0.174943 0.321397 0.164544 0.298259 0.195926 0.203594 0.164544 0.298259 0.1736119 0.204689 0.195926 0.203594 0.138728 0.298259 0.164544 0.298259 0.128423 0.321397 0.128423 0.321397 0.164544 0.298259 0.174943 0.321397 0.136457 0.1655859 0.123428 0.204689 0.105523 0.203594 0.123636 0.145288 0.136457 0.1655859 0.105523 0.203594 0.165404 0.1655859 0.136457 0.1655859 0.175739 0.145288 0.136457 0.1655859 0.123636 0.145288 0.175739 0.145288 0.1736119 0.204689 0.165404 0.1655859 0.195926 0.203594 0.165404 0.1655859 0.175739 0.145288 0.195926 0.203594 0.828411 0.740845 0.931444 0.766786 0.828411 0.756044 0.931444 0.728314 0.931444 0.766786 0.828411 0.740845 0.931444 0.766786 0.931444 0.728314 0.980755 0.767684 0.931444 0.728314 0.980755 0.72362 0.980755 0.767684 0.806081 0.72576 0.828411 0.740845 0.806081 0.768845 0.828411 0.740845 0.828411 0.756044 0.806081 0.768845 0.828411 0.740845 0.806081 0.72576 0.935727 0.689998 0.931444 0.728314 0.828411 0.740845 0.935727 0.689998 0.806081 0.768845 0.828411 0.756044 0.935727 0.799053 0.828411 0.756044 0.931444 0.766786 0.935727 0.799053 0.980755 0.72362 0.931444 0.728314 0.935727 0.689998 0.980755 0.72362 0.935727 0.689998 0.986759 0.709813 0.980755 0.72362 0.986759 0.709813 0.986759 0.78096 0.980755 0.767684 0.980755 0.72362 0.986759 0.78096 0.935727 0.799053 0.980755 0.767684 0.986759 0.78096 0.931444 0.766786 0.980755 0.767684 0.935727 0.799053 0.931444 0.728314 0.828411 0.756044 0.828411 0.740845 0.931444 0.728314 0.931444 0.766786 0.828411 0.756044 0.931444 0.766786 0.931444 0.728314 0.980755 0.767684 0.980755 0.767684 0.931444 0.728314 0.980755 0.72362 0.828411 0.756044 0.806081 0.768845 0.806081 0.72576 0.828411 0.740845 0.828411 0.756044 0.806081 0.72576 0.828411 0.740845 0.806081 0.72576 0.935727 0.689998 0.931444 0.728314 0.828411 0.740845 0.935727 0.689998 0.828411 0.756044 0.931444 0.766786 0.935727 0.799053 0.806081 0.768845 0.828411 0.756044 0.935727 0.799053 0.980755 0.72362 0.931444 0.728314 0.935727 0.689998 0.986759 0.709813 0.980755 0.72362 0.935727 0.689998 0.980755 0.767684 0.980755 0.72362 0.986759 0.709813 0.986759 0.78096 0.980755 0.767684 0.986759 0.709813 0.931444 0.766786 0.980755 0.767684 0.935727 0.799053 0.980755 0.767684 0.986759 0.78096 0.935727 0.799053 0.806081 0.72576 0.806081 0.768845 0.935727 0.799053 0.806081 0.72576 0.806081 0.768845 0.935727 0.799053 0.935727 0.689998 0.806081 0.72576 0.935727 0.799053 0.935727 0.689998 0.935727 0.799053 0.986759 0.709813 0.986759 0.709813 0.935727 0.799053 0.986759 0.78096 0.806081 0.72576 0.806081 0.768845 0.935727 0.689998 0.806081 0.768845 0.986759 0.709813 0.935727 0.689998 0.986759 0.709813 0.806081 0.768845 0.986759 0.78096 0.986759 0.78096 0.806081 0.768845 0.935727 0.799053 0.128423 0.321397 0.174943 0.321397 0.195926 0.203594 0.128423 0.321397 0.195926 0.203594 0.105523 0.203594 0.195926 0.203594 0.123636 0.145288 0.105523 0.203594 0.175739 0.145288 0.123636 0.145288 0.195926 0.203594</float_array>
<technique_common>
<accessor source="#lfoot_001-mesh-map-0-array" count="183" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="lfoot_001-mesh-vertices">
<input semantic="POSITION" source="#lfoot_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="61">
<input semantic="VERTEX" source="#lfoot_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#lfoot_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#lfoot_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 3 3 3 0 1 4 1 0 5 0 1 6 3 3 7 4 4 8 0 1 9 4 4 10 5 5 11 7 6 12 6 7 13 8 8 14 6 7 15 9 9 16 8 8 17 11 10 18 10 11 19 12 12 20 10 11 21 13 13 22 12 12 23 1 0 24 2 2 25 14 14 26 14 14 27 2 2 28 15 15 29 16 16 30 7 6 31 8 8 32 17 17 33 16 16 34 8 8 35 19 18 36 18 19 37 20 19 38 18 19 39 21 20 40 20 19 41 13 13 42 22 21 43 12 12 44 22 21 45 23 22 46 12 12 47 25 23 48 24 24 49 26 25 50 27 26 51 24 24 52 25 23 53 24 24 54 27 26 55 28 27 56 27 26 57 29 28 58 28 27 59 30 29 60 25 23 61 31 30 62 25 23 63 26 25 64 31 30 65 33 31 66 32 32 67 34 33 68 35 34 69 33 31 70 34 33 71 37 35 72 36 36 73 38 37 74 36 36 75 39 38 76 38 37 77 40 39 78 35 34 79 34 33 80 40 39 81 34 33 82 41 40 83 43 41 84 42 42 85 44 41 86 45 42 87 43 41 88 44 41 89 38 37 90 46 43 91 47 44 92 39 38 93 46 43 94 38 37 95 49 45 96 48 46 97 50 47 98 49 45 99 51 48 100 48 46 101 51 48 102 49 45 103 52 49 104 52 49 105 49 45 106 53 50 107 48 46 108 54 51 109 55 52 110 50 47 111 48 46 112 55 52 113 57 53 114 56 54 115 58 55 116 59 56 117 57 53 118 58 55 119 61 57 120 60 58 121 62 59 122 63 60 123 61 57 124 62 59 125 64 61 126 59 56 127 58 55 128 65 62 129 64 61 130 58 55 131 67 63 132 66 64 133 68 65 134 69 65 135 67 63 136 68 65 137 60 58 138 70 66 139 62 59 140 70 66 141 71 67 142 62 59 143 73 68 144 72 69 145 74 70 146 76 71 147 75 71 148 77 71 149 78 72 150 73 68 151 74 70 152 78 72 153 74 70 154 79 73 155 79 73 156 74 70 157 80 74 158 82 75 159 81 76 160 83 77 161 81 76 162 84 78 163 83 77 164 84 78 165 81 76 166 85 79 167 85 79 168 81 76 169 86 80 170 88 81 171 87 82 172 89 83 173 88 81 174 89 83 175 90 84 176 89 83 177 91 85 178 90 84 179 92 86 180 91 85 181 89 83 182</p>
</triangles>
</mesh>
</geometry>
<geometry id="lloleg_001-mesh" name="lloleg.001">
<mesh>
<source id="lloleg_001-mesh-positions">
<float_array id="lloleg_001-mesh-positions-array" count="225">4.407766 -4.789287 -8.719206 -3.878496 -4.789287 -8.719206 2.343385 -14.03229 -8.064554 -2.1908 -14.03229 -8.064554 2.791917 0.5954576 -6.264292 -2.262686 0.5954576 -6.264292 6.248791 -4.795692 -3.240282 2.343385 -14.03229 -8.064554 3.140791 -16.35056 -2.565383 4.407766 -4.789287 -8.719206 -3.878496 -4.789287 -8.719206 -6.226737 -4.795692 -3.240282 -2.1908 -14.03229 -8.064554 -6.226737 -4.795692 -3.240282 -3.685788 -16.35056 -2.565383 3.140791 -16.35056 -2.565383 -2.1908 -14.03229 -8.064554 -3.685788 -16.35056 -2.565383 2.343385 -14.03229 -8.064554 2.791917 0.5954576 -6.264292 6.248791 -4.795692 -3.240282 3.816078 1.935906 -0.7094411 2.791917 0.5954576 -6.264292 3.816078 1.935906 -0.7094411 -2.262686 0.5954576 -6.264292 -3.79401 1.935906 -0.7094411 -2.262686 0.5954576 -6.264292 -3.79401 1.935906 -0.7094411 1.30736 -17.13958 0.7684953 -2.10992 -17.13958 0.7684953 -3.039061 -6.082361 3.785183 1.30736 -17.13958 0.7684953 -2.10992 -17.13958 0.7684953 3.136283 -6.082361 3.785183 -3.039061 -6.082361 3.785183 -2.10992 -17.13958 0.7684953 -6.226737 -4.795692 -3.240282 3.136283 -6.082361 3.785183 1.30736 -17.13958 0.7684953 6.248791 -4.795692 -3.240282 1.859818 1.585134 3.277404 -1.872913 1.585134 3.277404 0.7026234 0.745571 5.273077 1.557845 -4.586178 5.657835 -1.535775 -4.586178 5.657835 -0.6805375 0.745571 5.273077 1.859818 1.585134 3.277404 6.248791 -4.795692 -3.240282 -6.226737 -4.795692 -3.240282 -3.79401 1.935906 -0.7094411 -1.872913 1.585134 3.277404 -1.535775 -4.586178 5.657835 1.557845 -4.586178 5.657835 1.557845 -4.586178 5.657835 0.7026234 0.745571 5.273077 -0.6805375 0.745571 5.273077 0.7026234 0.745571 5.273077 -1.535775 -4.586178 5.657835 -0.6805375 0.745571 5.273077 0.4388517 -11.01145 -4.125195 -1.218095 -11.01145 -4.125195 0.9875912 -23.7192 -8.661208 -1.872937 -23.7192 -8.661208 -1.218095 -12.16612 -0.9753167 0.4241403 -23.0876 1.097328 -1.549616 -23.0876 1.097328 0.4388517 -12.16612 -0.9753167 0.4241403 -23.0876 1.097328 0.4388517 -12.16612 -0.9753167 0.9875912 -23.7192 -8.661208 0.4388517 -11.01145 -4.125195 -1.218095 -12.16612 -0.9753167 -1.549616 -23.0876 1.097328 -1.872937 -23.7192 -8.661208 -1.218095 -11.01145 -4.125195</float_array>
<technique_common>
<accessor source="#lloleg_001-mesh-positions-array" count="75" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="lloleg_001-mesh-normals">
<float_array id="lloleg_001-mesh-normals-array" count="225">0 0.1695402 -0.9855233 0 0.173108 -0.9849029 0 -0.0706498 -0.9975013 0 -0.0706498 -0.9975012 0 0.4148253 -0.909901 0 0.4148254 -0.9099011 0.9300447 -0.2551215 -0.264443 0.9265314 -0.2407631 -0.2890896 0.9496247 -0.2668037 0.1644045 0.9466092 0.05287766 -0.3180172 -0.9019528 0.2073047 -0.378822 -0.9157199 0.08661007 -0.392372 -0.9105378 -0.2126968 -0.3545152 -0.9135813 -0.2208434 -0.3414636 -0.9714338 -0.2090106 0.1123871 0 -0.921466 -0.3884591 0 -0.946829 -0.3217375 0 -0.9486165 -0.3164284 0 -0.9214659 -0.3884595 0.8720735 0.405565 -0.2738704 0.8718975 0.4031752 -0.2779293 0.9407359 0.2742012 0.1995739 0 0.9957157 -0.09246861 0 0.9720973 -0.234578 0 0.9720973 -0.2345781 0 0.9962168 -0.08690243 -0.8380582 0.4227983 -0.3448191 -0.8389351 0.4290583 -0.3348085 0 -0.9731185 -0.2303051 0 -0.9731188 -0.2303043 0 -0.2632054 0.9647399 0 -0.4961045 0.8682629 0 -0.2632054 0.9647398 0 -0.500338 0.8658303 -0.8944759 0.02908015 0.4461694 -0.9050101 -0.1810669 0.3849305 -0.9080104 -0.1775091 0.3794835 0.8939557 0.01198291 0.4479953 0.8710419 -0.2580988 0.4179369 0.9057995 -0.2225816 0.360534 0 0.9809747 0.1941357 0 0.9810869 0.1935685 0 0.07197648 0.9974063 0 0.07197648 0.9974064 0 0.07197648 0.9974064 0 0.07197648 0.9974064 0.8534797 0.1740825 0.4911903 0.8908023 0.1623686 0.424391 -0.8854245 0.1610308 0.4359961 -0.8878897 0.1584979 0.4318916 -0.8564044 0.1657289 0.4889842 0 -0.7812635 0.6242015 0 -0.7812634 0.6242015 0.8171876 0.1721827 0.5500524 0.8194538 0.1709201 0.5470665 0 0.9217543 0.3877744 0 0.9217544 0.3877744 -0.8259413 0.1630415 0.5396652 -0.8126189 0.1705631 0.5572782 0 0.3361741 -0.9417999 0 0.3361741 -0.9417999 0 0.336174 -0.9417999 0 0.336174 -0.9417999 0 0.1864491 0.9824646 0 0.1864491 0.9824646 0 0.1864491 0.9824647 0 0.1864491 0.9824646 0.9991738 0.02762728 0.02980852 0.9983276 0.009478032 0.05702924 0.9987269 0.01550191 0.04800295 0.9991741 0.03815346 0.01398605 -0.9988728 0.03615725 0.0307545 -0.9988753 0.04208219 0.02184867 -0.9988863 0.03812175 0.0278027 -0.9988244 0.04551476 0.01668459</float_array>
<technique_common>
<accessor source="#lloleg_001-mesh-normals-array" count="75" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="lloleg_001-mesh-map-0">
<float_array id="lloleg_001-mesh-map-0-array" count="288">0.47741 0.738991 0.47741 0.829988 0.604637 0.807318 0.47741 0.738991 0.604637 0.807318 0.604637 0.757525 0.403291 0.752881 0.403291 0.815959 0.47741 0.829988 0.403291 0.752881 0.47741 0.829988 0.47741 0.738991 0.604637 0.807318 0.477497 0.850206 0.636547 0.816075 0.47741 0.829988 0.477497 0.850206 0.604637 0.807318 0.477497 0.713204 0.47741 0.738991 0.604637 0.757525 0.477497 0.713204 0.604637 0.757525 0.636547 0.741108 0.604637 0.757525 0.636547 0.816075 0.636547 0.741108 0.604637 0.757525 0.604637 0.807318 0.636547 0.816075 0.47741 0.829988 0.403291 0.815959 0.477497 0.850206 0.403291 0.815959 0.38484 0.828739 0.477497 0.850206 0.38484 0.828739 0.403291 0.815959 0.403291 0.752881 0.38484 0.733772 0.38484 0.828739 0.403291 0.752881 0.403291 0.752881 0.47741 0.738991 0.477497 0.713204 0.38484 0.733772 0.403291 0.752881 0.477497 0.713204 0.1132529 0.827409 0.1132529 0.742352 0.101546 0.765196 0.1132529 0.827409 0.101546 0.765196 0.101546 0.807774 0.101546 0.765196 0.265602 0.819351 0.101546 0.807774 0.265602 0.742408 0.265602 0.819351 0.101546 0.765196 0.265602 0.819351 0.1132529 0.827409 0.101546 0.807774 0.265602 0.819351 0.284693 0.859068 0.1132529 0.827409 0.1132529 0.742352 0.265602 0.742408 0.101546 0.765196 0.284693 0.703628 0.265602 0.742408 0.1132529 0.742352 0.379365 0.758313 0.384569 0.828757 0.379365 0.804821 0.384569 0.733939 0.384569 0.828757 0.379365 0.758313 0.287801 0.762075 0.366908 0.772731 0.287801 0.80062 0.366908 0.772731 0.366908 0.789965 0.287801 0.80062 0.384569 0.733939 0.379365 0.758313 0.265602 0.742408 0.284693 0.703628 0.384569 0.733939 0.265602 0.742408 0.384569 0.828757 0.284693 0.859068 0.265602 0.819351 0.379365 0.804821 0.384569 0.828757 0.265602 0.819351 0.287801 0.762075 0.287801 0.80062 0.265602 0.819351 0.265602 0.742408 0.287801 0.762075 0.265602 0.819351 0.379365 0.758313 0.287801 0.762075 0.265602 0.742408 0.379365 0.758313 0.366908 0.772731 0.287801 0.762075 0.379365 0.758313 0.379365 0.804821 0.366908 0.789965 0.366908 0.772731 0.379365 0.758313 0.366908 0.789965 0.287801 0.80062 0.379365 0.804821 0.265602 0.819351 0.366908 0.789965 0.379365 0.804821 0.287801 0.80062 0.006690979 0.497212 0.006092965 0.511337 0.08695 0.558621 0.006690979 0.497212 0.08695 0.558621 0.087547 0.544496 0.08748298 0.448675 0.01529198 0.471861 0.08688497 0.4628 0.01588898 0.457735 0.01529198 0.471861 0.08748298 0.448675 0.01529198 0.471861 0.08688497 0.4628 0.087547 0.544496 0.006690979 0.497212 0.01529198 0.471861 0.087547 0.544496 0.08688497 0.4628 0.01529198 0.471861 0.087547 0.544496 0.01529198 0.471861 0.006690979 0.497212 0.087547 0.544496</float_array>
<technique_common>
<accessor source="#lloleg_001-mesh-map-0-array" count="144" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="lloleg_001-mesh-vertices">
<input semantic="POSITION" source="#lloleg_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="48">
<input semantic="VERTEX" source="#lloleg_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#lloleg_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#lloleg_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 1 0 3 2 2 4 3 3 5 5 4 6 4 5 7 0 1 8 5 4 9 0 1 10 1 0 11 7 6 12 6 7 13 8 8 14 9 9 15 6 7 16 7 6 17 11 10 18 10 11 19 12 12 20 13 13 21 12 12 22 14 14 23 16 15 24 15 16 25 17 17 26 16 15 27 18 18 28 15 16 29 9 9 30 19 19 31 20 20 32 19 19 33 21 21 34 20 20 35 23 22 36 22 23 37 24 24 38 25 25 39 23 22 40 24 24 41 26 26 42 10 11 43 11 10 44 27 27 45 26 26 46 11 10 47 17 17 48 15 16 49 28 28 50 17 17 51 28 28 52 29 29 53 31 30 54 30 31 55 32 32 56 33 33 57 30 31 58 31 30 59 34 34 60 14 14 61 35 35 62 34 34 63 36 36 64 14 14 65 8 8 66 37 37 67 38 38 68 39 39 69 37 37 70 8 8 71 40 40 72 25 25 73 41 41 74 23 22 75 25 25 76 40 40 77 43 42 78 42 43 79 44 44 80 42 43 81 45 45 82 44 44 83 21 21 84 46 46 85 37 37 86 47 47 87 21 21 88 37 37 89 49 48 90 48 49 91 34 34 92 50 50 93 49 48 94 34 34 95 52 51 96 51 52 97 30 31 98 33 33 99 52 51 100 30 31 101 46 46 102 53 53 103 37 37 104 46 46 105 54 54 106 53 53 107 40 40 108 41 41 109 55 55 110 56 56 111 40 40 112 55 55 113 57 57 114 50 50 115 34 34 116 58 58 117 50 50 118 57 57 119 60 59 120 59 60 121 61 61 122 60 59 123 61 61 124 62 62 125 64 63 126 63 64 127 65 65 128 66 66 129 63 64 130 64 63 131 68 67 132 67 68 133 69 69 134 70 70 135 68 67 136 69 69 137 72 71 138 71 72 139 73 73 140 71 72 141 74 74 142 73 73 143</p>
</triangles>
</mesh>
</geometry>
<geometry id="lupleg_001-mesh" name="lupleg.001">
<mesh>
<source id="lupleg_001-mesh-positions">
<float_array id="lupleg_001-mesh-positions-array" count="204">5.655825 -18.02831 -3.545714 3.447372 -15.33642 2.210095 5.657566 -18.2315 3.091915 3.209581 -15.18084 -3.068109 1.588204 3.903422 2.804732 4.871232 -5.181164 6.648983 1.665714 -5.201251 5.208583 5.809264 4.214966 4.104055 5.809264 4.214966 -3.950681 1.588204 3.903422 -3.724668 4.876057 -4.265355 -8.082431 4.876057 -4.265355 -8.082431 1.588204 3.903422 -3.724668 1.670523 -4.285523 -6.945277 9.409768 1.635143 3.629156 9.130259 -0.1710823 -3.297168 10.6421 -5.340531 4.853792 9.130259 -0.1710823 -3.297168 10.36733 -4.422274 -4.641478 5.809264 4.214966 -3.950681 5.809264 4.214966 4.104055 1.588204 3.903422 2.804732 1.588204 3.903422 -3.724668 9.409768 1.635143 3.629156 4.871232 -5.181164 6.648983 10.6421 -5.340531 4.853792 8.132671 -15.25962 2.078375 5.655825 -18.02831 -3.545714 5.657566 -18.2315 3.091915 8.358321 -15.14849 -2.897769 9.130259 -0.1710823 -3.297168 4.876057 -4.265355 -8.082431 10.36733 -4.422274 -4.641478 5.809264 4.214966 4.104055 5.809264 4.214966 -3.950681 9.409768 1.635143 3.629156 5.809264 4.214966 4.104055 9.130259 -0.1710823 -3.297168 3.447372 -15.33642 2.210095 4.871232 -5.181164 6.648983 5.657566 -18.2315 3.091915 4.871232 -5.181164 6.648983 1.665714 -5.201251 5.208583 1.670523 -4.285523 -6.945277 4.871232 -5.181164 6.648983 8.132671 -15.25962 2.078375 5.657566 -18.2315 3.091915 4.871232 -5.181164 6.648983 1.670523 -4.285523 -6.945277 -1.143191 -1.699294 -2.291402 1.665714 -5.201251 5.208583 -1.147596 -1.968285 1.358029 -1.147596 -1.968285 1.358029 -1.192426 1.392964 1.072491 1.665714 -5.201251 5.208583 -1.192426 1.392964 1.072491 -1.194791 1.392964 -1.483412 1.588204 3.903422 -3.724668 -1.143191 -1.699294 -2.291402 1.670523 -4.285523 -6.945277 -1.194791 1.392964 -1.483412 8.358321 -15.14849 -2.897769 4.876057 -4.265355 -8.082431 5.655825 -18.02831 -3.545714 4.876057 -4.265355 -8.082431 1.670523 -4.285523 -6.945277 3.209581 -15.18084 -3.068109 5.655825 -18.02831 -3.545714</float_array>
<technique_common>
<accessor source="#lupleg_001-mesh-positions-array" count="68" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="lupleg_001-mesh-normals">
<float_array id="lupleg_001-mesh-normals-array" count="201">-0.9077305 -0.4192594 0.01571291 -0.7710433 -0.6367798 0.001968443 -0.7919894 -0.6102555 -0.01847285 -0.9153381 -0.4024401 0.01408344 -0.3727394 0.2441316 0.8952458 -0.4591227 0.24015 0.8552978 -0.441865 -0.006793022 0.897056 -0.05468541 0.2661206 0.9623874 -0.08053988 0.4437219 -0.8925381 0.1827458 0.4142954 -0.8916072 -0.08053988 0.443722 -0.8925381 -0.5547803 0.2501516 -0.7935006 -0.3157895 0.3445199 -0.8840719 -0.3157895 0.3445199 -0.884072 0.9838389 0.1595326 -0.08130478 0.9838389 0.1595326 -0.08130484 0.9984004 -0.02153515 -0.0522772 0.9992058 0.03784769 -0.01246994 0.901573 0.4326268 -4.14417e-4 -0.07360672 0.9972875 0 -0.3153091 0.9489891 9.11495e-5 -0.3217201 0.9468349 0 0.2874919 0.2214107 0.9318401 0.2915557 0.2184545 0.9312749 0.2951165 -0.05706673 0.9537556 0.7435475 -0.6686809 0.001728057 0.8932863 -0.4494705 -0.004003226 0.7649056 -0.6438348 -0.01990944 0.8950195 -0.4449729 0.0306487 0.529532 0.351904 -0.7718546 0.5373746 0.34241 -0.7707037 0.5309549 0.07863891 -0.8437434 0.797247 0.6036534 0 0.7972469 0.6036533 0 0.5461544 0.8049322 -0.2319475 0.5461544 0.8049322 -0.2319475 0.5461544 0.8049321 -0.2319474 -0.6156578 -0.2415419 0.7500821 -0.5881587 -0.2532595 0.7680685 -0.6156578 -0.2415419 0.750082 -0.386151 -0.323456 0.8638656 -0.9877822 -0.1557992 0.003601431 -0.9895466 -0.1437762 -0.01122426 0.4989564 -0.2188186 0.8385469 0.556275 -0.1871637 0.8096469 0.556275 -0.1871637 0.8096468 0.2730159 -0.3226546 0.9062872 -0.7214665 -0.690479 -0.05219966 -0.7213221 -0.6906208 -0.05231988 -0.7215966 -0.6903513 -0.0520913 -0.7220375 -0.6899178 -0.05172383 -0.6819296 0.1530427 0.7152273 -0.7898581 0.04144531 0.6118878 -0.7898581 0.04144531 0.6118878 -0.6703406 0.7420534 6.20208e-4 -0.6699932 0.7423673 2.11024e-4 -0.7544529 0.2086051 -0.6223223 -0.7732422 0.2253372 -0.5927222 -0.7732423 0.2253372 -0.5927222 -0.7058073 0.1680412 -0.6881848 0.5041338 -0.2346426 -0.8311391 0.4801282 -0.2473134 -0.8416133 0.471147 -0.2519466 -0.8453068 -0.310264 -0.3573166 -0.8809433 -0.3394746 -0.3493595 -0.8733298 -0.4816866 -0.3040294 -0.8219149 -0.5031973 -0.2961227 -0.8118522</float_array>
<technique_common>
<accessor source="#lupleg_001-mesh-normals-array" count="67" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="lupleg_001-mesh-map-0">
<float_array id="lupleg_001-mesh-map-0-array" count="228">0.523823 0.618387 0.558089 0.680335 0.560675 0.608896 0.523823 0.618387 0.521843 0.675195 0.558089 0.680335 0.394555 0.570612 0.278916 0.611987 0.394811 0.586115 0.274951 0.598002 0.278916 0.611987 0.394555 0.570612 0.278916 0.682261 0.274951 0.684694 0.382898 0.729163 0.278916 0.682261 0.382898 0.729163 0.383154 0.716924 0.330781 0.67766 0.307789 0.603114 0.396584 0.589933 0.384895 0.692129 0.330781 0.67766 0.396584 0.589933 0.274951 0.598002 0.274951 0.684694 0.278916 0.611987 0.274951 0.684694 0.278916 0.682261 0.278916 0.611987 0.307789 0.603114 0.274951 0.598002 0.394555 0.570612 0.307789 0.603114 0.394555 0.570612 0.396584 0.589933 0.558089 0.680335 0.522845 0.619804 0.560675 0.608896 0.521431 0.673362 0.522845 0.619804 0.558089 0.680335 0.382898 0.729163 0.330781 0.67766 0.384895 0.692129 0.274951 0.684694 0.330781 0.67766 0.382898 0.729163 0.274951 0.684694 0.274951 0.598002 0.330781 0.67766 0.274951 0.598002 0.307789 0.603114 0.330781 0.67766 0.394555 0.570612 0.523823 0.618387 0.560675 0.608896 0.394555 0.570612 0.394811 0.586115 0.523823 0.618387 0.394811 0.586115 0.521843 0.675195 0.523823 0.618387 0.394811 0.586115 0.383154 0.716924 0.521843 0.675195 0.384895 0.692129 0.396584 0.589933 0.522845 0.619804 0.521431 0.673362 0.384895 0.692129 0.522845 0.619804 0.522845 0.619804 0.394555 0.570612 0.560675 0.608896 0.396584 0.589933 0.394555 0.570612 0.522845 0.619804 0.350234 0.666835 0.383154 0.716924 0.394811 0.586115 0.353658 0.627557 0.350234 0.666835 0.394811 0.586115 0.310872 0.63063 0.353658 0.627557 0.394811 0.586115 0.278916 0.611987 0.310872 0.63063 0.394811 0.586115 0.310872 0.63063 0.278916 0.611987 0.310873 0.658139 0.278916 0.611987 0.278916 0.682261 0.310873 0.658139 0.350234 0.666835 0.278916 0.682261 0.383154 0.716924 0.310873 0.658139 0.278916 0.682261 0.350234 0.666835 0.382898 0.729163 0.521431 0.673362 0.558089 0.680335 0.382898 0.729163 0.384895 0.692129 0.521431 0.673362 0.383154 0.716924 0.382898 0.729163 0.521843 0.675195 0.521843 0.675195 0.382898 0.729163 0.558089 0.680335</float_array>
<technique_common>
<accessor source="#lupleg_001-mesh-map-0-array" count="114" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="lupleg_001-mesh-vertices">
<input semantic="POSITION" source="#lupleg_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="38">
<input semantic="VERTEX" source="#lupleg_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#lupleg_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#lupleg_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 1 0 3 3 3 4 0 1 5 5 4 6 4 5 7 6 6 8 7 7 9 4 5 10 5 4 11 9 8 12 8 9 13 10 10 14 12 11 15 11 12 16 13 13 17 15 14 18 14 15 19 16 16 20 18 17 21 17 18 22 16 16 23 20 19 24 19 19 25 21 20 26 19 19 27 22 21 28 21 20 29 23 22 30 7 7 31 24 23 32 23 22 33 24 23 34 25 24 35 27 25 36 26 26 37 28 27 38 29 28 39 26 26 40 27 25 41 31 29 42 30 30 43 32 31 44 8 9 45 30 30 46 31 29 47 34 32 48 33 33 49 17 18 50 36 34 51 35 35 52 37 36 53 39 37 54 38 38 55 40 39 56 41 40 57 6 6 58 38 38 59 42 41 60 3 3 61 1 0 62 42 41 63 43 42 64 3 3 65 18 17 66 16 16 67 26 26 68 29 28 69 18 17 70 26 26 71 45 43 72 44 44 73 46 45 74 25 24 75 47 46 76 45 43 77 49 47 78 48 48 79 50 49 80 51 50 81 49 47 82 50 49 83 53 51 84 52 52 85 54 53 86 4 5 87 53 51 88 6 6 89 55 54 90 21 20 91 56 55 92 21 20 93 22 21 94 56 55 95 58 56 96 57 57 97 59 58 98 60 59 99 12 11 100 58 56 101 62 60 102 61 61 103 63 62 104 62 60 105 32 31 106 61 61 107 65 63 108 64 64 109 66 65 110 66 65 111 64 64 112 67 66 113</p>
</triangles>
</mesh>
</geometry>
<geometry id="rfoot_001-mesh" name="rfoot.001">
<mesh>
<source id="rfoot_001-mesh-positions">
<float_array id="rfoot_001-mesh-positions-array" count="279">-1.057051 -1.450965 6.138162 2.226881 1.783235 -3.072024 1.373194 -1.450965 6.138162 -2.49739 1.783235 -3.072024 -1.270916 0.5711172 -6.920975 1.454159 0.5711172 -6.920975 -2.49739 1.783235 -3.072024 -1.057051 -1.450965 6.138162 -4.183008 -6.506396 -3.179894 -2.027265 -4.466005 8.415632 2.352196 -4.466005 8.415632 1.373194 -1.450965 6.138162 4.327503 -6.506396 -3.179894 2.226881 1.783235 -3.072024 -2.027265 -4.466005 8.415632 2.352196 -4.466005 8.415632 -1.270916 0.5711172 -6.920975 -2.477861 -4.700239 -8.919007 1.454159 0.5711172 -6.920975 -1.270916 0.5711172 -6.920975 2.42712 -4.700239 -8.919007 -2.477861 -4.700239 -8.919007 1.454159 0.5711172 -6.920975 2.42712 -4.700239 -8.919007 -0.4844248 -4.59202 12.80717 1.247104 -2.943317 4.21539 0.5300959 -4.59202 12.80717 -1.320823 -2.943317 4.21539 1.307039 -3.757387 0.1034964 -1.634101 -3.757387 0.1034964 -1.491266 -6.424369 14.66922 1.384551 -6.424369 14.66922 -0.4844248 -4.59202 12.80717 -1.491266 -6.424369 14.66922 -3.878337 -6.613079 3.85829 -1.320823 -2.943317 4.21539 1.384551 -6.424369 14.66922 0.5300959 -4.59202 12.80717 3.400849 -6.613079 3.85829 1.247104 -2.943317 4.21539 -1.634101 -3.757387 0.1034964 -2.555691 -6.778503 -0.3971832 -1.634101 -3.757387 0.1034964 -2.555691 -6.778503 -0.3971832 2.193176 -6.778503 -0.3971832 1.307039 -3.757387 0.1034964 1.307039 -3.757387 0.1034964 2.193176 -6.778503 -0.3971832 1.715308 -2.496493 -7.462146 -0.7515975 -3.635433 -10.6936 0.9169104 -3.635433 -10.6936 -1.707185 -2.496493 -7.462146 -0.8641454 -3.643753 -3.755897 1.017461 -3.643753 -3.755897 -1.310145 -6.708141 -12.25582 1.450679 -6.708141 -12.25582 0.9169104 -3.635433 -10.6936 1.450679 -6.708141 -12.25582 3.005131 -6.905552 -6.85469 1.715308 -2.496493 -7.462146 -0.7515975 -3.635433 -10.6936 -1.707185 -2.496493 -7.462146 -3.023991 -6.905552 -6.85469 -1.310145 -6.708141 -12.25582 1.017461 -3.643753 -3.755897 1.501085 -6.75835 -3.112179 -0.8641454 -3.643753 -3.755897 1.017461 -3.643753 -3.755897 1.501085 -6.75835 -3.112179 -1.382593 -6.75835 -3.112179 -0.8641454 -3.643753 -3.755897 -1.382593 -6.75835 -3.112179 -1.491266 -6.424369 14.66922 1.384551 -6.424369 14.66922 3.400849 -6.613079 3.85829 1.384551 -6.424369 14.66922 -1.491266 -6.424369 14.66922 3.400849 -6.613079 3.85829 -3.878337 -6.613079 3.85829 -2.555691 -6.778503 -0.3971832 2.193176 -6.778503 -0.3971832 1.450679 -6.708141 -12.25582 -1.310145 -6.708141 -12.25582 3.005131 -6.905552 -6.85469 1.501085 -6.75835 -3.112179 -1.382593 -6.75835 -3.112179 -3.023991 -6.905552 -6.85469 -2.027265 -4.466005 8.415632 2.352196 -4.466005 8.415632 4.327503 -6.506396 -3.179894 -4.183008 -6.506396 -3.179894 -2.477861 -4.700239 -8.919007 2.42712 -4.700239 -8.919007</float_array>
<technique_common>
<accessor source="#rfoot_001-mesh-positions-array" count="93" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="rfoot_001-mesh-normals">
<float_array id="rfoot_001-mesh-normals-array" count="267">0 0.9996036 0.02815145 0 0.8022604 0.5969743 0 0.7989827 0.601354 0 0.9994006 0.03461772 0 0.9538201 -0.3003787 -0.9379452 0.3157753 0.1433342 -0.9769397 0.1996367 -0.07572251 -0.9681187 0.2494067 -0.02329653 -0.9207768 0.3756712 0.1050786 0.937447 0.3268285 0.1199015 0.9244453 0.369955 0.09238135 0.9627482 0.2680556 -0.03552728 0.9680204 0.2459438 -0.04948103 0 0.6027386 0.7979388 0 0.6027387 0.7979387 -0.9291832 0.2289279 -0.2901906 -0.9392425 0.2866333 -0.1888518 0 0.3544296 -0.9350827 0 0.3544296 -0.9350828 0 0.3544296 -0.9350828 0.9359804 0.2478137 -0.2500582 0.9381271 0.2598964 -0.2288483 0 0.9999594 -0.009023606 0 0.8745198 0.48499 0 0.8758956 0.4825009 0 0.9999083 -0.0135439 0 0.98096 -0.1942098 0 0.9809601 -0.1942097 0 0.7127692 0.7013986 0 0.7127692 0.7013987 -0.7853745 0.5971784 0.162988 -0.7914005 0.5879423 0.1673593 -0.852712 0.5223733 0.002922058 -0.8214625 0.5648921 0.07807964 0.836714 0.5268604 0.1494247 0.8316068 0.5358999 0.1457449 0.8837215 0.4678524 -0.01227825 0.863479 0.502052 0.04845321 -0.8735774 0.4531709 -0.1774787 -0.900113 0.3230242 -0.2923216 0 0.1634967 -0.9865439 0 0.1634967 -0.9865439 0 0.1634966 -0.986544 0.8927971 0.4103822 -0.1857417 0.9107422 0.3119774 -0.2705898 0 0.7601985 -0.6496909 0 0.9999134 -0.01316642 0 0.7576483 -0.6526632 0 0.9999268 -0.01210445 0 0.9552795 0.2957043 0 0.9552795 0.2957043 0 0.4532063 -0.8914057 0 0.4532063 -0.8914058 0.9225034 0.289848 -0.2549034 0.9237422 0.2629688 -0.2784741 0.9612127 0.2733153 0.03699839 0.9604275 0.2742998 -0.04836183 -0.9587868 0.2788195 -0.05466037 -0.9116944 0.2712271 -0.3086248 -0.9577906 0.2848064 0.03901857 -0.9104125 0.3066675 -0.2776764 0.9138497 0.2628477 0.3094993 0.909086 0.2149214 0.3568913 0 0.2024002 0.9793029 0 0.2024002 0.979303 0 0.2024001 0.979303 0 0.2024001 0.979303 -0.8999043 0.2722256 0.3406838 -0.8948942 0.2282245 0.3835078 0 -0.9998478 0.01745289 0 -0.9998477 0.01745283 0 -0.9996141 0.02778291 0 0.9998477 -0.01745289 0 0.9998478 -0.01745289 0 -0.9996134 0.02780818 0 -0.9992454 0.03884381 0 -0.9992454 0.03884309 0.003352165 -0.9998615 -0.01630336 0 -0.9993329 -0.0365253 -0.05306011 -0.998574 0.00589478 -0.02200496 -0.9997571 0.001275658 0.02130162 -0.999759 -0.005320906 0.09988456 -0.9949882 -0.004672169 0 -0.984869 0.1733012 0 -0.984869 0.1733012 0 -0.9986182 -0.05255222 0 -0.9983926 -0.05667829 0 -0.9538779 -0.3001951 0 -0.9538779 -0.300195</float_array>
<technique_common>
<accessor source="#rfoot_001-mesh-normals-array" count="89" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="rfoot_001-mesh-map-0">
<float_array id="rfoot_001-mesh-map-0-array" count="366">0.1736119 0.204689 0.138728 0.298259 0.164544 0.298259 0.1736119 0.204689 0.123428 0.204689 0.138728 0.298259 0.123428 0.204689 0.1736119 0.204689 0.136457 0.1655859 0.136457 0.1655859 0.1736119 0.204689 0.165404 0.1655859 0.138728 0.298259 0.123428 0.204689 0.105523 0.203594 0.128423 0.321397 0.138728 0.298259 0.105523 0.203594 0.164544 0.298259 0.174943 0.321397 0.195926 0.203594 0.1736119 0.204689 0.164544 0.298259 0.195926 0.203594 0.164544 0.298259 0.138728 0.298259 0.128423 0.321397 0.164544 0.298259 0.128423 0.321397 0.174943 0.321397 0.123428 0.204689 0.136457 0.1655859 0.105523 0.203594 0.136457 0.1655859 0.123636 0.145288 0.105523 0.203594 0.136457 0.1655859 0.165404 0.1655859 0.175739 0.145288 0.123636 0.145288 0.136457 0.1655859 0.175739 0.145288 0.165404 0.1655859 0.1736119 0.204689 0.195926 0.203594 0.175739 0.145288 0.165404 0.1655859 0.195926 0.203594 0.931444 0.766786 0.828411 0.740845 0.828411 0.756044 0.931444 0.766786 0.931444 0.728314 0.828411 0.740845 0.931444 0.728314 0.931444 0.766786 0.980755 0.767684 0.980755 0.72362 0.931444 0.728314 0.980755 0.767684 0.828411 0.740845 0.806081 0.72576 0.806081 0.768845 0.828411 0.756044 0.828411 0.740845 0.806081 0.768845 0.806081 0.72576 0.828411 0.740845 0.935727 0.689998 0.828411 0.740845 0.931444 0.728314 0.935727 0.689998 0.828411 0.756044 0.806081 0.768845 0.935727 0.799053 0.931444 0.766786 0.828411 0.756044 0.935727 0.799053 0.931444 0.728314 0.980755 0.72362 0.935727 0.689998 0.935727 0.689998 0.980755 0.72362 0.986759 0.709813 0.986759 0.709813 0.980755 0.72362 0.986759 0.78096 0.980755 0.72362 0.980755 0.767684 0.986759 0.78096 0.980755 0.767684 0.935727 0.799053 0.986759 0.78096 0.980755 0.767684 0.931444 0.766786 0.935727 0.799053 0.828411 0.756044 0.931444 0.728314 0.828411 0.740845 0.931444 0.766786 0.931444 0.728314 0.828411 0.756044 0.931444 0.728314 0.931444 0.766786 0.980755 0.767684 0.931444 0.728314 0.980755 0.767684 0.980755 0.72362 0.806081 0.768845 0.828411 0.756044 0.806081 0.72576 0.828411 0.756044 0.828411 0.740845 0.806081 0.72576 0.806081 0.72576 0.828411 0.740845 0.935727 0.689998 0.828411 0.740845 0.931444 0.728314 0.935727 0.689998 0.931444 0.766786 0.828411 0.756044 0.935727 0.799053 0.828411 0.756044 0.806081 0.768845 0.935727 0.799053 0.931444 0.728314 0.980755 0.72362 0.935727 0.689998 0.980755 0.72362 0.986759 0.709813 0.935727 0.689998 0.980755 0.72362 0.980755 0.767684 0.986759 0.709813 0.980755 0.767684 0.986759 0.78096 0.986759 0.709813 0.980755 0.767684 0.931444 0.766786 0.935727 0.799053 0.986759 0.78096 0.980755 0.767684 0.935727 0.799053 0.806081 0.768845 0.806081 0.72576 0.935727 0.799053 0.806081 0.768845 0.806081 0.72576 0.935727 0.799053 0.806081 0.72576 0.935727 0.689998 0.935727 0.799053 0.935727 0.799053 0.935727 0.689998 0.986759 0.709813 0.935727 0.799053 0.986759 0.709813 0.986759 0.78096 0.806081 0.768845 0.806081 0.72576 0.935727 0.689998 0.986759 0.709813 0.806081 0.768845 0.935727 0.689998 0.806081 0.768845 0.986759 0.709813 0.986759 0.78096 0.806081 0.768845 0.986759 0.78096 0.935727 0.799053 0.174943 0.321397 0.128423 0.321397 0.195926 0.203594 0.195926 0.203594 0.128423 0.321397 0.105523 0.203594 0.123636 0.145288 0.195926 0.203594 0.105523 0.203594 0.123636 0.145288 0.175739 0.145288 0.195926 0.203594</float_array>
<technique_common>
<accessor source="#rfoot_001-mesh-map-0-array" count="183" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="rfoot_001-mesh-vertices">
<input semantic="POSITION" source="#rfoot_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="61">
<input semantic="VERTEX" source="#rfoot_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#rfoot_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#rfoot_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 1 0 3 3 3 4 0 1 5 3 3 6 1 0 7 4 4 8 4 4 9 1 0 10 5 4 11 7 5 12 6 6 13 8 7 14 9 8 15 7 5 16 8 7 17 11 9 18 10 10 19 12 11 20 13 12 21 11 9 22 12 11 23 2 2 24 0 1 25 14 13 26 2 2 27 14 13 28 15 14 29 6 6 30 16 15 31 8 7 32 16 15 33 17 16 34 8 7 35 19 17 36 18 18 37 20 19 38 21 17 39 19 17 40 20 19 41 22 20 42 13 12 43 12 11 44 23 21 45 22 20 46 12 11 47 25 22 48 24 23 49 26 24 50 25 22 51 27 25 52 24 23 53 27 25 54 25 22 55 28 26 56 29 27 57 27 25 58 28 26 59 24 23 60 30 28 61 31 29 62 26 24 63 24 23 64 31 29 65 33 30 66 32 31 67 34 32 68 32 31 69 35 33 70 34 32 71 37 34 72 36 35 73 38 36 74 39 37 75 37 34 76 38 36 77 35 33 78 40 38 79 34 32 80 34 32 81 40 38 82 41 39 83 43 40 84 42 41 85 44 41 86 42 41 87 45 42 88 44 41 89 46 43 90 38 36 91 47 44 92 46 43 93 39 37 94 38 36 95 49 45 96 48 46 97 50 47 98 51 48 99 48 46 100 49 45 101 48 46 102 51 48 103 52 49 104 48 46 105 52 49 106 53 50 107 54 51 108 49 45 109 55 52 110 49 45 111 50 47 112 55 52 113 57 53 114 56 54 115 58 55 116 56 54 117 59 56 118 58 55 119 61 57 120 60 58 121 62 59 122 60 58 123 63 60 124 62 59 125 59 56 126 64 61 127 58 55 128 64 61 129 65 62 130 58 55 131 67 63 132 66 64 133 68 65 134 66 64 135 69 66 136 68 65 137 70 67 138 61 57 139 62 59 140 71 68 141 70 67 142 62 59 143 73 69 144 72 70 145 74 71 146 76 72 147 75 73 148 77 73 149 72 70 150 78 74 151 74 71 152 74 71 153 78 74 154 79 75 155 74 71 156 79 75 157 80 76 158 82 77 159 81 78 160 83 79 161 84 80 162 82 77 163 83 79 164 82 77 165 84 80 166 85 81 167 82 77 168 85 81 169 86 82 170 88 83 171 87 84 172 89 85 173 89 85 174 87 84 175 90 86 176 91 87 177 89 85 178 90 86 179 91 87 180 92 88 181 89 85 182</p>
</triangles>
</mesh>
</geometry>
<geometry id="rloleg_001-mesh" name="rloleg.001">
<mesh>
<source id="rloleg_001-mesh-positions">
<float_array id="rloleg_001-mesh-positions-array" count="225">3.878496 -4.789287 -8.719206 -4.407765 -4.789287 -8.719206 -2.343385 -14.03229 -8.064554 2.1908 -14.03229 -8.064554 2.262687 0.5954576 -6.264292 -2.791916 0.5954576 -6.264292 -2.343385 -14.03229 -8.064554 -6.248789 -4.795692 -3.240282 -3.140791 -16.35056 -2.565383 -4.407765 -4.789287 -8.719206 6.226737 -4.795692 -3.240282 3.878496 -4.789287 -8.719206 2.1908 -14.03229 -8.064554 6.226737 -4.795692 -3.240282 3.685788 -16.35056 -2.565383 2.1908 -14.03229 -8.064554 -3.140791 -16.35056 -2.565383 3.685788 -16.35056 -2.565383 -2.343385 -14.03229 -8.064554 -2.791916 0.5954576 -6.264292 -6.248789 -4.795692 -3.240282 -3.816077 1.935906 -0.7094411 -3.816077 1.935906 -0.7094411 -2.791916 0.5954576 -6.264292 2.262687 0.5954576 -6.264292 3.79401 1.935906 -0.7094411 2.262687 0.5954576 -6.264292 3.79401 1.935906 -0.7094411 -1.30736 -17.13958 0.7684953 2.10992 -17.13958 0.7684953 -1.30736 -17.13958 0.7684953 3.039061 -6.082361 3.785183 2.10992 -17.13958 0.7684953 -3.136283 -6.082361 3.785183 3.039061 -6.082361 3.785183 2.10992 -17.13958 0.7684953 6.226737 -4.795692 -3.240282 -3.136283 -6.082361 3.785183 -1.30736 -17.13958 0.7684953 -6.248789 -4.795692 -3.240282 -1.859818 1.585134 3.277404 1.872913 1.585134 3.277404 -1.557845 -4.586178 5.657835 -0.7026231 0.745571 5.273077 1.535775 -4.586178 5.657835 0.6805378 0.745571 5.273077 -1.859818 1.585134 3.277404 -6.248789 -4.795692 -3.240282 3.79401 1.935906 -0.7094411 6.226737 -4.795692 -3.240282 1.872913 1.585134 3.277404 -1.557845 -4.586178 5.657835 1.535775 -4.586178 5.657835 -1.557845 -4.586178 5.657835 -0.7026231 0.745571 5.273077 0.6805378 0.745571 5.273077 -0.7026231 0.745571 5.273077 1.535775 -4.586178 5.657835 0.6805378 0.745571 5.273077 1.218095 -11.01145 -4.125195 -0.4388514 -11.01145 -4.125195 -0.9875909 -23.7192 -8.661208 1.872937 -23.7192 -8.661208 -0.42414 -23.0876 1.097328 1.218095 -12.16612 -0.9753167 1.549616 -23.0876 1.097328 -0.4388514 -12.16612 -0.9753167 -0.4388514 -12.16612 -0.9753167 -0.42414 -23.0876 1.097328 -0.9875909 -23.7192 -8.661208 -0.4388514 -11.01145 -4.125195 1.549616 -23.0876 1.097328 1.218095 -12.16612 -0.9753167 1.872937 -23.7192 -8.661208 1.218095 -11.01145 -4.125195</float_array>
<technique_common>
<accessor source="#rloleg_001-mesh-positions-array" count="75" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="rloleg_001-mesh-normals">
<float_array id="rloleg_001-mesh-normals-array" count="216">0 0.1731081 -0.9849029 0 0.1695402 -0.9855233 0 -0.0706498 -0.9975013 0 0.4148254 -0.909901 0 0.4148253 -0.909901 -0.9265314 -0.2407631 -0.2890897 -0.9300447 -0.2551214 -0.264443 -0.9496247 -0.2668036 0.1644045 -0.9466093 0.05287766 -0.3180171 0.91572 0.08661013 -0.3923719 0.9019528 0.2073047 -0.3788219 0.9105378 -0.2126967 -0.3545151 0.9135813 -0.2208434 -0.3414636 0.9714338 -0.2090106 0.1123871 0 -0.946829 -0.3217374 0 -0.9214661 -0.388459 0 -0.9486165 -0.3164284 0 -0.9214658 -0.3884595 -0.8720735 0.4055648 -0.2738703 -0.8718975 0.4031752 -0.2779292 -0.9407359 0.274201 0.1995739 0 0.9720973 -0.234578 0 0.9957157 -0.09246861 0 0.9720973 -0.234578 0 0.9962168 -0.08690243 0.8380582 0.4227982 -0.3448191 0.8389353 0.4290582 -0.3348086 0 -0.9731184 -0.2303053 0 -0.9731186 -0.2303051 0 -0.4961045 0.8682628 0 -0.2632055 0.9647399 0 -0.2632055 0.9647398 0 -0.500338 0.8658303 0.894476 0.02908015 0.4461694 0.9050101 -0.1810669 0.3849305 0.9080105 -0.1775092 0.3794834 -0.8939557 0.01198291 0.4479952 -0.8710418 -0.2580987 0.4179369 -0.9057995 -0.2225815 0.360534 0 0.9809747 0.1941357 0 0.9810869 0.1935685 0 0.07197648 0.9974064 0 0.07197648 0.9974063 0 0.07197648 0.9974064 -0.8534796 0.1740825 0.4911903 -0.8908025 0.1623686 0.4243908 0.8878897 0.1584979 0.4318916 0.8854245 0.1610308 0.4359961 0.8564044 0.1657289 0.4889842 0 -0.7812637 0.6242013 0 -0.7812635 0.6242015 -0.8171876 0.1721827 0.5500525 -0.8194538 0.1709201 0.5470665 0 0.9217544 0.3877744 0 0.9217544 0.3877744 0.8259413 0.1630414 0.5396651 0.8126187 0.1705631 0.5572782 0 0.336174 -0.9418 0 0.336174 -0.9417999 0 0.3361741 -0.9417999 0 0.3361741 -0.9417999 0 0.1864491 0.9824646 0 0.1864491 0.9824646 0 0.1864491 0.9824647 -0.9983276 0.009478032 0.05702924 -0.9991738 0.02762728 0.02980852 -0.9987269 0.01550191 0.04800295 -0.9991741 0.03815346 0.01398605 0.9988753 0.04208213 0.02184867 0.9988728 0.03615719 0.0307545 0.9988863 0.0381217 0.0278027 0.9988244 0.04551476 0.01668459</float_array>
<technique_common>
<accessor source="#rloleg_001-mesh-normals-array" count="72" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="rloleg_001-mesh-map-0">
<float_array id="rloleg_001-mesh-map-0-array" count="288">0.47741 0.829988 0.47741 0.738991 0.604637 0.807318 0.604637 0.807318 0.47741 0.738991 0.604637 0.757525 0.403291 0.815959 0.403291 0.752881 0.47741 0.829988 0.47741 0.829988 0.403291 0.752881 0.47741 0.738991 0.477497 0.850206 0.604637 0.807318 0.636547 0.816075 0.477497 0.850206 0.47741 0.829988 0.604637 0.807318 0.47741 0.738991 0.477497 0.713204 0.604637 0.757525 0.604637 0.757525 0.477497 0.713204 0.636547 0.741108 0.636547 0.816075 0.604637 0.757525 0.636547 0.741108 0.604637 0.807318 0.604637 0.757525 0.636547 0.816075 0.403291 0.815959 0.47741 0.829988 0.477497 0.850206 0.38484 0.828739 0.403291 0.815959 0.477497 0.850206 0.403291 0.815959 0.38484 0.828739 0.403291 0.752881 0.38484 0.828739 0.38484 0.733772 0.403291 0.752881 0.47741 0.738991 0.403291 0.752881 0.477497 0.713204 0.403291 0.752881 0.38484 0.733772 0.477497 0.713204 0.1132529 0.742352 0.1132529 0.827409 0.101546 0.765196 0.101546 0.765196 0.1132529 0.827409 0.101546 0.807774 0.265602 0.819351 0.101546 0.765196 0.101546 0.807774 0.265602 0.819351 0.265602 0.742408 0.101546 0.765196 0.1132529 0.827409 0.265602 0.819351 0.101546 0.807774 0.284693 0.859068 0.265602 0.819351 0.1132529 0.827409 0.265602 0.742408 0.1132529 0.742352 0.101546 0.765196 0.265602 0.742408 0.284693 0.703628 0.1132529 0.742352 0.384569 0.828757 0.379365 0.758313 0.379365 0.804821 0.384569 0.828757 0.384569 0.733939 0.379365 0.758313 0.366908 0.772731 0.287801 0.762075 0.287801 0.80062 0.366908 0.789965 0.366908 0.772731 0.287801 0.80062 0.379365 0.758313 0.384569 0.733939 0.265602 0.742408 0.384569 0.733939 0.284693 0.703628 0.265602 0.742408 0.284693 0.859068 0.384569 0.828757 0.265602 0.819351 0.384569 0.828757 0.379365 0.804821 0.265602 0.819351 0.287801 0.80062 0.287801 0.762075 0.265602 0.819351 0.287801 0.762075 0.265602 0.742408 0.265602 0.819351 0.287801 0.762075 0.379365 0.758313 0.265602 0.742408 0.366908 0.772731 0.379365 0.758313 0.287801 0.762075 0.379365 0.804821 0.379365 0.758313 0.366908 0.789965 0.379365 0.758313 0.366908 0.772731 0.366908 0.789965 0.379365 0.804821 0.287801 0.80062 0.265602 0.819351 0.379365 0.804821 0.366908 0.789965 0.287801 0.80062 0.006092965 0.511337 0.006690979 0.497212 0.08695 0.558621 0.08695 0.558621 0.006690979 0.497212 0.087547 0.544496 0.01529198 0.471861 0.08748298 0.448675 0.08688497 0.4628 0.01529198 0.471861 0.01588898 0.457735 0.08748298 0.448675 0.08688497 0.4628 0.01529198 0.471861 0.087547 0.544496 0.01529198 0.471861 0.006690979 0.497212 0.087547 0.544496 0.01529198 0.471861 0.08688497 0.4628 0.087547 0.544496 0.006690979 0.497212 0.01529198 0.471861 0.087547 0.544496</float_array>
<technique_common>
<accessor source="#rloleg_001-mesh-map-0-array" count="144" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="rloleg_001-mesh-vertices">
<input semantic="POSITION" source="#rloleg_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="48">
<input semantic="VERTEX" source="#rloleg_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#rloleg_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#rloleg_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 2 2 3 0 1 4 3 2 5 5 3 6 4 4 7 1 0 8 1 0 9 4 4 10 0 1 11 7 5 12 6 6 13 8 7 14 7 5 15 9 8 16 6 6 17 11 9 18 10 10 19 12 11 20 12 11 21 13 12 22 14 13 23 16 14 24 15 15 25 17 16 26 18 17 27 15 15 28 16 14 29 19 18 30 9 8 31 20 19 32 21 20 33 19 18 34 20 19 35 23 21 36 22 22 37 24 23 38 22 22 39 25 24 40 24 23 41 11 9 42 26 25 43 10 10 44 26 25 45 27 26 46 10 10 47 16 14 48 17 16 49 28 27 50 28 27 51 17 16 52 29 28 53 31 29 54 30 30 55 32 31 56 31 29 57 33 32 58 30 30 59 14 13 60 34 33 61 35 34 62 36 35 63 34 33 64 14 13 65 37 36 66 8 7 67 38 37 68 37 36 69 39 38 70 8 7 71 25 24 72 40 39 73 41 40 74 25 24 75 22 22 76 40 39 77 43 41 78 42 42 79 44 43 80 45 41 81 43 41 82 44 43 83 46 44 84 21 20 85 37 36 86 21 20 87 47 45 88 37 36 89 49 46 90 48 47 91 34 33 92 48 47 93 50 48 94 34 33 95 52 49 96 51 50 97 31 29 98 51 50 99 33 32 100 31 29 101 53 51 102 46 44 103 37 36 104 54 52 105 46 44 106 53 51 107 41 40 108 40 39 109 55 53 110 40 39 111 56 54 112 55 53 113 50 48 114 57 55 115 34 33 116 50 48 117 58 56 118 57 55 119 60 57 120 59 58 121 61 59 122 61 59 123 59 58 124 62 60 125 64 61 126 63 62 127 65 63 128 64 61 129 66 62 130 63 62 131 68 64 132 67 65 133 69 66 134 67 65 135 70 67 136 69 66 137 72 68 138 71 69 139 73 70 140 74 71 141 72 68 142 73 70 143</p>
</triangles>
</mesh>
</geometry>
<geometry id="rupleg_001-mesh" name="rupleg.001">
<mesh>
<source id="rupleg_001-mesh-positions">
<float_array id="rupleg_001-mesh-positions-array" count="204">-3.447372 -15.33642 2.210095 -5.655825 -18.02831 -3.545714 -5.657566 -18.2315 3.091915 -3.209581 -15.18084 -3.068109 -4.871232 -5.181164 6.648983 -1.588204 3.903422 2.804732 -1.665714 -5.201251 5.208583 -5.809264 4.214966 4.104055 -1.588204 3.903422 -3.724668 -5.809264 4.214966 -3.950681 -4.876057 -4.265355 -8.082431 -1.588204 3.903422 -3.724668 -4.876057 -4.265355 -8.082431 -1.670523 -4.285523 -6.945277 -9.130259 -0.1710823 -3.297168 -9.409768 1.635143 3.629156 -10.6421 -5.340531 4.853792 -10.36733 -4.422274 -4.641478 -9.130259 -0.1710823 -3.297168 -5.809264 4.214966 4.104055 -5.809264 4.214966 -3.950681 -1.588204 3.903422 2.804732 -1.588204 3.903422 -3.724668 -9.409768 1.635143 3.629156 -4.871232 -5.181164 6.648983 -10.6421 -5.340531 4.853792 -5.655825 -18.02831 -3.545714 -8.132671 -15.25962 2.078375 -5.657566 -18.2315 3.091915 -8.358321 -15.14849 -2.897769 -4.876057 -4.265355 -8.082431 -9.130259 -0.1710823 -3.297168 -10.36733 -4.422274 -4.641478 -5.809264 4.214966 -3.950681 -5.809264 4.214966 4.104055 -5.809264 4.214966 4.104055 -9.409768 1.635143 3.629156 -9.130259 -0.1710823 -3.297168 -4.871232 -5.181164 6.648983 -3.447372 -15.33642 2.210095 -5.657566 -18.2315 3.091915 -4.871232 -5.181164 6.648983 -1.665714 -5.201251 5.208583 -1.670523 -4.285523 -6.945277 -8.132671 -15.25962 2.078375 -4.871232 -5.181164 6.648983 -5.657566 -18.2315 3.091915 -4.871232 -5.181164 6.648983 1.143191 -1.699294 -2.291402 -1.670523 -4.285523 -6.945277 -1.665714 -5.201251 5.208583 1.147596 -1.968285 1.358029 1.192426 1.392964 1.072491 1.147596 -1.968285 1.358029 -1.665714 -5.201251 5.208583 1.192426 1.392964 1.072491 1.194791 1.392964 -1.483412 1.143191 -1.699294 -2.291402 -1.588204 3.903422 -3.724668 -1.670523 -4.285523 -6.945277 1.194791 1.392964 -1.483412 -4.876057 -4.265355 -8.082431 -8.358321 -15.14849 -2.897769 -5.655825 -18.02831 -3.545714 -1.670523 -4.285523 -6.945277 -4.876057 -4.265355 -8.082431 -3.209581 -15.18084 -3.068109 -5.655825 -18.02831 -3.545714</float_array>
<technique_common>
<accessor source="#rupleg_001-mesh-positions-array" count="68" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="rupleg_001-mesh-normals">
<float_array id="rupleg_001-mesh-normals-array" count="204">0.7710433 -0.6367797 0.001968443 0.9077306 -0.4192594 0.01571291 0.7919894 -0.6102555 -0.01847285 0.915338 -0.4024401 0.01408344 0.4591227 0.24015 0.8552978 0.3727395 0.2441316 0.8952459 0.4418649 -0.006793022 0.8970559 0.05468541 0.2661205 0.9623874 -0.1827458 0.4142954 -0.8916072 0.08053988 0.443722 -0.8925381 0.08053988 0.443722 -0.892538 0.3157895 0.3445199 -0.8840719 0.5547803 0.2501516 -0.7935006 0.3157895 0.3445199 -0.884072 -0.9838389 0.1595326 -0.08130478 -0.9838389 0.1595326 -0.08130478 -0.9984004 -0.02153515 -0.0522772 -0.901573 0.4326268 -4.1442e-4 -0.9992058 0.03784769 -0.01246994 0.07360672 0.9972875 0 0.07360666 0.9972875 0 0.3153091 0.9489891 9.11436e-5 0.3217201 0.9468349 0 -0.2874919 0.2214107 0.9318401 -0.2915556 0.2184545 0.931275 -0.2951164 -0.05706679 0.9537556 -0.8932863 -0.4494706 -0.004003226 -0.7435475 -0.6686809 0.001728057 -0.7649056 -0.6438348 -0.01990944 -0.8950195 -0.4449729 0.03064876 -0.5373745 0.34241 -0.7707037 -0.529532 0.351904 -0.7718546 -0.5309549 0.07863891 -0.8437434 -0.797247 0.6036534 0 -0.7972469 0.6036534 0 -0.5461544 0.8049322 -0.2319474 -0.5461544 0.8049322 -0.2319475 -0.5461544 0.8049321 -0.2319474 0.5881587 -0.2532595 0.7680685 0.6156578 -0.2415419 0.7500821 0.6156578 -0.2415419 0.750082 0.386151 -0.323456 0.8638656 0.9877822 -0.1557992 0.003601431 0.9895466 -0.1437762 -0.01122426 -0.5562748 -0.1871637 0.8096469 -0.4989564 -0.2188186 0.838547 -0.5562749 -0.1871638 0.8096469 -0.2730158 -0.3226546 0.9062872 0.7213221 -0.6906207 -0.05231988 0.7214666 -0.690479 -0.05219966 0.7215966 -0.6903513 -0.0520913 0.7220374 -0.6899179 -0.05172383 0.7898581 0.04144531 0.6118878 0.6819296 0.1530427 0.7152273 0.7898581 0.04144531 0.6118877 0.6703406 0.7420534 6.20168e-4 0.6699932 0.7423673 2.1101e-4 0.7732422 0.2253372 -0.5927223 0.7544529 0.208605 -0.6223223 0.7732422 0.2253372 -0.5927223 0.7058073 0.1680412 -0.6881848 -0.4801282 -0.2473134 -0.8416133 -0.5041338 -0.2346426 -0.8311391 -0.471147 -0.2519466 -0.8453068 0.3394746 -0.3493595 -0.8733298 0.310264 -0.3573166 -0.8809433 0.4816865 -0.3040294 -0.821915 0.5031972 -0.2961227 -0.8118522</float_array>
<technique_common>
<accessor source="#rupleg_001-mesh-normals-array" count="68" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="rupleg_001-mesh-map-0">
<float_array id="rupleg_001-mesh-map-0-array" count="228">0.558089 0.680335 0.523823 0.618387 0.560675 0.608896 0.521843 0.675195 0.523823 0.618387 0.558089 0.680335 0.278916 0.611987 0.394555 0.570612 0.394811 0.586115 0.278916 0.611987 0.274951 0.598002 0.394555 0.570612 0.274951 0.684694 0.278916 0.682261 0.382898 0.729163 0.382898 0.729163 0.278916 0.682261 0.383154 0.716924 0.307789 0.603114 0.330781 0.67766 0.396584 0.589933 0.330781 0.67766 0.384895 0.692129 0.396584 0.589933 0.274951 0.684694 0.274951 0.598002 0.278916 0.611987 0.278916 0.682261 0.274951 0.684694 0.278916 0.611987 0.274951 0.598002 0.307789 0.603114 0.394555 0.570612 0.394555 0.570612 0.307789 0.603114 0.396584 0.589933 0.522845 0.619804 0.558089 0.680335 0.560675 0.608896 0.522845 0.619804 0.521431 0.673362 0.558089 0.680335 0.330781 0.67766 0.382898 0.729163 0.384895 0.692129 0.330781 0.67766 0.274951 0.684694 0.382898 0.729163 0.274951 0.598002 0.274951 0.684694 0.330781 0.67766 0.307789 0.603114 0.274951 0.598002 0.330781 0.67766 0.523823 0.618387 0.394555 0.570612 0.560675 0.608896 0.394811 0.586115 0.394555 0.570612 0.523823 0.618387 0.521843 0.675195 0.394811 0.586115 0.523823 0.618387 0.383154 0.716924 0.394811 0.586115 0.521843 0.675195 0.396584 0.589933 0.384895 0.692129 0.522845 0.619804 0.384895 0.692129 0.521431 0.673362 0.522845 0.619804 0.394555 0.570612 0.522845 0.619804 0.560675 0.608896 0.394555 0.570612 0.396584 0.589933 0.522845 0.619804 0.383154 0.716924 0.350234 0.666835 0.394811 0.586115 0.350234 0.666835 0.353658 0.627557 0.394811 0.586115 0.353658 0.627557 0.310872 0.63063 0.394811 0.586115 0.310872 0.63063 0.278916 0.611987 0.394811 0.586115 0.278916 0.611987 0.310872 0.63063 0.310873 0.658139 0.278916 0.682261 0.278916 0.611987 0.310873 0.658139 0.278916 0.682261 0.350234 0.666835 0.383154 0.716924 0.278916 0.682261 0.310873 0.658139 0.350234 0.666835 0.521431 0.673362 0.382898 0.729163 0.558089 0.680335 0.384895 0.692129 0.382898 0.729163 0.521431 0.673362 0.382898 0.729163 0.383154 0.716924 0.521843 0.675195 0.382898 0.729163 0.521843 0.675195 0.558089 0.680335</float_array>
<technique_common>
<accessor source="#rupleg_001-mesh-map-0-array" count="114" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="rupleg_001-mesh-vertices">
<input semantic="POSITION" source="#rupleg_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="38">
<input semantic="VERTEX" source="#rupleg_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#rupleg_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#rupleg_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 3 3 3 0 1 4 1 0 5 5 4 6 4 5 7 6 6 8 5 4 9 7 7 10 4 5 11 9 8 12 8 9 13 10 10 14 12 11 15 11 12 16 13 13 17 15 14 18 14 15 19 16 16 20 18 17 21 17 18 22 16 16 23 20 19 24 19 20 25 21 21 26 22 22 27 20 19 28 21 21 29 7 7 30 23 23 31 24 24 32 24 24 33 23 23 34 25 25 35 27 26 36 26 27 37 28 28 38 27 26 39 29 29 40 26 27 41 31 30 42 30 31 43 32 32 44 31 30 45 9 8 46 30 31 47 34 33 48 33 34 49 18 17 50 36 35 51 35 36 52 37 37 53 39 38 54 38 39 55 40 40 56 6 6 57 41 41 58 39 38 59 3 3 60 42 42 61 0 1 62 43 43 63 42 42 64 3 3 65 16 16 66 17 18 67 27 26 68 17 18 69 29 29 70 27 26 71 45 44 72 44 45 73 46 46 74 47 47 75 25 25 76 44 45 77 49 48 78 48 49 79 50 50 80 48 49 81 51 51 82 50 50 83 53 52 84 52 53 85 54 54 86 52 53 87 5 4 88 6 6 89 21 21 90 55 55 91 56 56 92 22 22 93 21 21 94 56 56 95 58 57 96 57 58 97 59 59 98 11 12 99 60 60 100 57 58 101 62 61 102 61 62 103 63 63 104 32 32 105 61 62 106 62 61 107 65 64 108 64 65 109 66 66 110 65 64 111 66 66 112 67 67 113</p>
</triangles>
</mesh>
</geometry>
<geometry id="doodad_015-mesh" name="doodad.015">
<mesh>
<source id="doodad_015-mesh-positions">
<float_array id="doodad_015-mesh-positions-array" count="93">4.704738 -5.475728 -7.638593 1.666816 0.004537403 -2.66586 4.316805 -5.765128 -7.638299 1.666816 0.004537403 -2.66586 0.4462876 -0.9800925 -2.600502 4.316805 -5.765128 -7.638299 4.374864 -6.108966 -7.30264 4.704738 -5.475728 -7.638593 4.374864 -6.108966 -7.30264 4.762759 -5.819577 -7.30301 0.4462876 -0.9800925 -2.600502 0.5560436 -2.127187 -1.534879 4.316805 -5.765128 -7.638299 0.5560436 -2.127187 -1.534879 4.374864 -6.108966 -7.30264 4.762759 -5.819577 -7.30301 1.776684 -1.14255 -1.600204 4.704738 -5.475728 -7.638593 1.776684 -1.14255 -1.600204 1.666816 0.004537403 -2.66586 4.762759 -5.819577 -7.30301 1.776684 -1.14255 -1.600204 -0.0418809 0.6768004 0.1611091 -0.0418809 0.6768004 0.1611091 -0.09585708 1.049879 -0.1972172 -0.09585708 1.049879 -0.1972172 -0.5088897 0.7338321 -0.1899849 -0.5088897 0.7338321 -0.1899849 -0.4549185 0.3607569 0.1683446 -0.4549185 0.3607569 0.1683446 0.5560436 -2.127187 -1.534879</float_array>
<technique_common>
<accessor source="#doodad_015-mesh-positions-array" count="31" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="doodad_015-mesh-normals">
<float_array id="doodad_015-mesh-normals-array" count="93">0.1815153 0.9403093 -0.2878725 -0.195002 0.2603874 -0.9456071 -0.4672708 0.4224854 -0.7766364 -0.7741137 0.1922834 -0.6031379 -0.350162 0.5437937 -0.7626763 0.3907577 -0.5340292 -0.7497475 0.4386731 -0.5887234 -0.6789482 0.9927721 0.09010577 -0.07927614 0.4385585 -0.5887085 -0.6790352 0.5528433 -0.713855 -0.4298552 -0.2916169 -0.8545982 0.429676 -0.8504348 0.06781798 -0.5216909 -0.8627821 -0.4201735 -0.2811785 -0.8627821 -0.4201735 -0.2811785 -0.4423708 -0.8443956 0.302166 0.4125398 -0.3969404 0.8199081 0.9173405 0.3463538 0.1962796 0.9269571 0.2750316 0.255163 0.9245879 0.303042 0.2308741 0.9245879 0.303042 0.2308741 0.4295602 -0.5748884 0.6964061 0.7669689 -0.05897212 0.6389688 0.5487158 -0.2088937 0.8094902 0.4355091 0.8961222 -0.08542305 0.7781916 0.2434096 0.5789383 -0.5132051 0.5951085 -0.6184388 -0.4804672 0.6135684 -0.626646 -0.3340306 -0.6315772 0.699667 -0.9416351 -0.2938953 -0.1641615 -0.9481165 -0.260295 -0.1825424 -0.585775 -0.6100355 0.5335958</float_array>
<technique_common>
<accessor source="#doodad_015-mesh-normals-array" count="31" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="doodad_015-mesh-map-0">
<float_array id="doodad_015-mesh-map-0-array" count="108">0.526384 0.538825 0.419244 0.550966 0.421936 0.557124 0.531979 0.557124 0.526384 0.538825 0.421936 0.557124 0.420191 0.562001 0.421936 0.557124 0.419244 0.550966 0.415501 0.557124 0.420191 0.562001 0.419244 0.550966 0.527306 0.578542 0.531979 0.557124 0.421936 0.557124 0.527306 0.578542 0.421936 0.557124 0.420191 0.562001 0.520711 0.557124 0.415501 0.557124 0.419244 0.550966 0.520711 0.557124 0.419244 0.550966 0.526384 0.538825 0.520711 0.557124 0.420191 0.562001 0.415501 0.557124 0.520711 0.557124 0.527306 0.578542 0.420191 0.562001 0.569093 0.557124 0.520711 0.557124 0.526384 0.538825 0.569766 0.549518 0.569093 0.557124 0.526384 0.538825 0.569766 0.549518 0.526384 0.538825 0.531979 0.557124 0.571645 0.557124 0.569766 0.549518 0.531979 0.557124 0.570973 0.564881 0.571645 0.557124 0.531979 0.557124 0.570973 0.564881 0.531979 0.557124 0.527306 0.578542 0.570973 0.564881 0.527306 0.578542 0.569093 0.557124 0.569093 0.557124 0.527306 0.578542 0.520711 0.557124</float_array>
<technique_common>
<accessor source="#doodad_015-mesh-map-0-array" count="54" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="doodad_015-mesh-vertices">
<input semantic="POSITION" source="#doodad_015-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="18">
<input semantic="VERTEX" source="#doodad_015-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#doodad_015-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#doodad_015-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 4 3 3 3 4 4 5 5 5 6 6 6 5 5 7 7 7 8 9 8 9 8 9 10 0 1 11 11 10 12 10 11 13 2 2 14 13 12 15 12 13 16 14 14 17 16 15 18 15 16 19 7 7 20 18 17 21 17 18 22 19 19 23 18 17 24 14 14 25 20 20 26 21 21 27 11 10 28 8 9 29 22 22 30 21 21 31 1 0 32 24 23 33 23 24 34 3 4 35 25 25 36 1 0 37 10 11 38 26 26 39 24 23 40 4 3 41 28 27 42 27 28 43 10 11 44 29 29 45 4 3 46 30 30 47 28 27 48 11 10 49 22 22 50 23 24 51 30 30 52 16 15 53</p>
</triangles>
</mesh>
</geometry>
<geometry id="doodad_014-mesh" name="doodad.014">
<mesh>
<source id="doodad_014-mesh-positions">
<float_array id="doodad_014-mesh-positions-array" count="93">2.883824 6.995885 -6.916999 -0.532337 2.681383 -1.549618 3.000425 6.619754 -7.183218 -0.532337 2.681383 -1.549618 -0.08071368 1.460391 -2.36856 3.000425 6.619754 -7.183218 3.42544 6.480061 -7.046679 2.883824 6.995885 -6.916999 3.42544 6.480061 -7.046679 3.308804 6.856192 -6.780539 -0.08071368 1.460391 -2.36856 1.290878 0.9446464 -1.986246 3.000425 6.619754 -7.183218 1.290878 0.9446464 -1.986246 3.42544 6.480061 -7.046679 3.308804 6.856192 -6.780539 0.8392958 2.165724 -1.167235 2.883824 6.995885 -6.916999 0.8392958 2.165724 -1.167235 -0.532337 2.681383 -1.549618 3.308804 6.856192 -6.780539 0.8392958 2.165724 -1.167235 -0.4966146 -0.03300279 0.4168875 -0.4966146 -0.03300279 0.4168875 -0.9527736 0.1238873 0.2766469 -0.9527736 0.1238873 0.2766469 -0.819553 -0.2806134 -0.004778802 -0.819553 -0.2806134 -0.004778802 -0.3633973 -0.437509 0.1354641 -0.3633973 -0.437509 0.1354641 1.290878 0.9446464 -1.986246</float_array>
<technique_common>
<accessor source="#doodad_014-mesh-positions-array" count="31" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="doodad_014-mesh-normals">
<float_array id="doodad_014-mesh-normals-array" count="93">-0.8766604 0.3764137 0.2996323 -0.6512125 0.2934395 -0.6998683 -0.829256 -0.01046037 -0.558771 -0.6530213 -0.3871678 -0.650895 -0.8884149 0.0903505 -0.450062 0.32336 0.6067418 -0.7261562 0.4168885 0.6076756 -0.6759693 0.203948 0.9272123 0.3141378 0.4168142 0.6076177 -0.6760672 0.6478703 0.5748484 -0.4998136 0.8320668 -0.5234889 -0.1833693 -0.5225411 -0.5117142 -0.6819821 0.0135625 -0.6775138 -0.735385 0.0135625 -0.6775138 -0.735385 0.7216104 -0.602262 -0.3414072 0.8047361 -0.04957157 0.5915594 0.04011446 0.7579938 0.6510271 0.1338257 0.7331389 0.6667819 0.09608811 0.7450475 0.6600541 0.09608811 0.7450475 0.6600542 0.9155475 -6.8854e-4 0.4022092 0.5345006 0.3859623 0.7518926 0.683893 0.08464705 0.7246553 -0.6880185 0.5023537 0.5237092 0.2543591 0.4435068 0.8594203 -0.9279977 -0.1031094 -0.3580346 -0.9365041 -0.06927752 -0.3437454 0.7383244 -0.6628042 0.1247706 -0.08463543 -0.7894702 -0.6079257 -0.1251982 -0.783827 -0.6082276 0.5658978 -0.8184462 -0.09952604</float_array>
<technique_common>
<accessor source="#doodad_014-mesh-normals-array" count="31" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="doodad_014-mesh-map-0">
<float_array id="doodad_014-mesh-map-0-array" count="108">0.526384 0.538825 0.419244 0.550966 0.421936 0.557124 0.531979 0.557124 0.526384 0.538825 0.421936 0.557124 0.420191 0.562001 0.421936 0.557124 0.419244 0.550966 0.415501 0.557124 0.420191 0.562001 0.419244 0.550966 0.527306 0.578542 0.531979 0.557124 0.421936 0.557124 0.527306 0.578542 0.421936 0.557124 0.420191 0.562001 0.520711 0.557124 0.415501 0.557124 0.419244 0.550966 0.520711 0.557124 0.419244 0.550966 0.526384 0.538825 0.520711 0.557124 0.420191 0.562001 0.415501 0.557124 0.520711 0.557124 0.527306 0.578542 0.420191 0.562001 0.569093 0.557124 0.520711 0.557124 0.526384 0.538825 0.569766 0.549518 0.569093 0.557124 0.526384 0.538825 0.569766 0.549518 0.526384 0.538825 0.531979 0.557124 0.571645 0.557124 0.569766 0.549518 0.531979 0.557124 0.570973 0.564881 0.571645 0.557124 0.531979 0.557124 0.570973 0.564881 0.531979 0.557124 0.527306 0.578542 0.570973 0.564881 0.527306 0.578542 0.569093 0.557124 0.569093 0.557124 0.527306 0.578542 0.520711 0.557124</float_array>
<technique_common>
<accessor source="#doodad_014-mesh-map-0-array" count="54" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="doodad_014-mesh-vertices">
<input semantic="POSITION" source="#doodad_014-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="18">
<input semantic="VERTEX" source="#doodad_014-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#doodad_014-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#doodad_014-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 4 3 3 3 4 4 5 5 5 6 6 6 5 5 7 7 7 8 9 8 9 8 9 10 0 1 11 11 10 12 10 11 13 2 2 14 13 12 15 12 13 16 14 14 17 16 15 18 15 16 19 7 7 20 18 17 21 17 18 22 19 19 23 18 17 24 14 14 25 20 20 26 21 21 27 11 10 28 8 9 29 22 22 30 21 21 31 1 0 32 24 23 33 23 24 34 3 4 35 25 25 36 1 0 37 10 11 38 26 26 39 24 23 40 4 3 41 28 27 42 27 28 43 10 11 44 29 29 45 4 3 46 30 30 47 28 27 48 11 10 49 22 22 50 23 24 51 30 30 52 16 15 53</p>
</triangles>
</mesh>
</geometry>
<geometry id="doodad_013-mesh" name="doodad.013">
<mesh>
<source id="doodad_013-mesh-positions">
<float_array id="doodad_013-mesh-positions-array" count="93">-4.753479 -5.340168 -7.704112 -1.61815 0.05156368 -2.695188 -4.933795 -5.629646 -7.360699 -1.61815 0.05156368 -2.695188 -2.129208 -0.9344281 -1.586091 -4.933795 -5.629646 -7.360699 -4.613707 -5.979273 -7.262885 -4.753479 -5.340168 -7.704112 -4.613707 -5.979273 -7.262885 -4.433475 -5.689803 -7.606298 -2.129208 -0.9344281 -1.586091 -1.147722 -2.09991 -1.209576 -4.933795 -5.629646 -7.360699 -1.147722 -2.09991 -1.209576 -4.613707 -5.979273 -7.262885 -4.433475 -5.689803 -7.606298 -0.6365833 -1.113912 -2.318759 -4.753479 -5.340168 -7.704112 -0.6365833 -1.113912 -2.318759 -1.61815 0.05156368 -2.695188 -4.433475 -5.689803 -7.606298 -0.6365833 -1.113912 -2.318759 0.1349437 0.6738733 0.1159917 0.1349437 0.6738733 0.1159917 -0.2030349 1.053132 0.004490554 -0.2030349 1.053132 0.004490554 -0.3889758 0.7368808 0.3731983 -0.3889758 0.7368808 0.3731983 -0.0509966 0.357626 0.4847055 -0.0509966 0.357626 0.4847055 -1.147722 -2.09991 -1.209576</float_array>
<technique_common>
<accessor source="#doodad_013-mesh-positions-array" count="31" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="doodad_013-mesh-normals">
<float_array id="doodad_013-mesh-normals-array" count="93">-0.1595596 0.9452449 -0.2846977 -0.9269317 0.2767893 -0.253348 -0.8975108 0.4358313 0.06727278 -0.8857973 0.2025437 0.4175395 -0.830038 0.5569133 -0.02974116 -0.4987605 -0.5207425 -0.6928675 -0.4147773 -0.5766494 -0.7038717 0.3814738 0.09177738 -0.9198124 -0.4148983 -0.5766384 -0.7038093 -0.1429547 -0.706078 -0.6935545 0.2372259 -0.8620545 0.4478682 -0.8498057 0.0766524 0.5214929 -0.6486651 -0.415466 0.637669 -0.6486651 -0.415466 0.6376689 0.05534654 -0.8496748 0.5243946 0.9116064 -0.4110622 0.001343905 0.5966637 0.3431538 -0.7254226 0.6523873 0.270819 -0.7078474 0.630105 0.2992483 -0.7165321 0.630105 0.2992483 -0.7165321 0.8065666 -0.5868229 -0.07133936 0.916529 -0.06987988 -0.3938167 0.9670461 -0.2228209 -0.1231777 0.1354265 0.8976085 -0.4194743 0.8728042 0.2335062 -0.4285881 -0.7747704 0.6056535 0.1814238 -0.7669347 0.624264 0.1486799 0.4619337 -0.6437921 0.6100401 -0.5782711 -0.2912724 0.7620782 -0.5970708 -0.2573582 0.759785 0.2000277 -0.6194321 0.7591395</float_array>
<technique_common>
<accessor source="#doodad_013-mesh-normals-array" count="31" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="doodad_013-mesh-map-0">
<float_array id="doodad_013-mesh-map-0-array" count="108">0.526384 0.538825 0.419244 0.550966 0.421936 0.557124 0.531979 0.557124 0.526384 0.538825 0.421936 0.557124 0.420191 0.562001 0.421936 0.557124 0.419244 0.550966 0.415501 0.557124 0.420191 0.562001 0.419244 0.550966 0.527306 0.578542 0.531979 0.557124 0.421936 0.557124 0.527306 0.578542 0.421936 0.557124 0.420191 0.562001 0.520711 0.557124 0.415501 0.557124 0.419244 0.550966 0.520711 0.557124 0.419244 0.550966 0.526384 0.538825 0.520711 0.557124 0.420191 0.562001 0.415501 0.557124 0.520711 0.557124 0.527306 0.578542 0.420191 0.562001 0.569093 0.557124 0.520711 0.557124 0.526384 0.538825 0.569766 0.549518 0.569093 0.557124 0.526384 0.538825 0.569766 0.549518 0.526384 0.538825 0.531979 0.557124 0.571645 0.557124 0.569766 0.549518 0.531979 0.557124 0.570973 0.564881 0.571645 0.557124 0.531979 0.557124 0.570973 0.564881 0.531979 0.557124 0.527306 0.578542 0.570973 0.564881 0.527306 0.578542 0.569093 0.557124 0.569093 0.557124 0.527306 0.578542 0.520711 0.557124</float_array>
<technique_common>
<accessor source="#doodad_013-mesh-map-0-array" count="54" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="doodad_013-mesh-vertices">
<input semantic="POSITION" source="#doodad_013-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="18">
<input semantic="VERTEX" source="#doodad_013-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#doodad_013-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#doodad_013-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 4 3 3 3 4 4 5 5 5 6 6 6 5 5 7 7 7 8 9 8 9 8 9 10 0 1 11 11 10 12 10 11 13 2 2 14 13 12 15 12 13 16 14 14 17 16 15 18 15 16 19 7 7 20 18 17 21 17 18 22 19 19 23 18 17 24 14 14 25 20 20 26 21 21 27 11 10 28 8 9 29 22 22 30 21 21 31 1 0 32 24 23 33 23 24 34 3 4 35 25 25 36 1 0 37 10 11 38 26 26 39 24 23 40 4 3 41 28 27 42 27 28 43 10 11 44 29 29 45 4 3 46 30 30 47 28 27 48 11 10 49 22 22 50 23 24 51 30 30 52 16 15 53</p>
</triangles>
</mesh>
</geometry>
<geometry id="doodad_012-mesh" name="doodad.012">
<mesh>
<source id="doodad_012-mesh-positions">
<float_array id="doodad_012-mesh-positions-array" count="93">-4.753478 6.995883 -6.239257 -1.61815 2.681383 -0.2772813 -4.933795 6.619751 -6.484726 -1.61815 2.681383 -0.2772813 -2.129208 1.460391 -1.120759 -4.933795 6.619751 -6.484726 -4.613706 6.480058 -6.819826 -4.753478 6.995883 -6.239257 -4.613706 6.480058 -6.819826 -4.433475 6.85619 -6.574365 -2.129208 1.460391 -1.120759 -1.147722 0.9446459 -2.231668 -4.933795 6.619751 -6.484726 -1.147722 0.9446459 -2.231668 -4.613706 6.480058 -6.819826 -4.433475 6.85619 -6.574365 -0.6365832 2.165723 -1.388194 -4.753478 6.995883 -6.239257 -0.6365832 2.165723 -1.388194 -1.61815 2.681383 -0.2772813 -4.433475 6.85619 -6.574365 -0.6365832 2.165723 -1.388194 0.1349437 -0.03300267 0.682986 0.1349437 -0.03300267 0.682986 -0.2030349 0.1238873 1.045829 -0.2030349 0.1238873 1.045829 -0.3889758 -0.2806134 0.7768696 -0.3889758 -0.2806134 0.7768696 -0.0509966 -0.4375089 0.414031 -0.0509966 -0.4375089 0.414031 -1.147722 0.9446459 -2.231668</float_array>
<technique_common>
<accessor source="#doodad_012-mesh-positions-array" count="31" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="doodad_012-mesh-normals">
<float_array id="doodad_012-mesh-normals-array" count="90">-0.1595614 0.3977715 0.9035031 -0.9269317 0.2851916 0.2438512 -0.8975107 -0.01365631 0.4407815 -0.8857973 -0.3897433 0.251919 -0.8300383 0.09738993 0.5491374 -0.4987581 0.6242417 -0.6013008 -0.4147744 0.6283504 -0.6581322 0.3814737 0.9241412 -0.02100187 -0.4149022 0.6282871 -0.6581121 -0.1429591 0.6023347 -0.7853379 0.2372254 -0.549588 -0.8010475 -0.8498056 -0.5082643 0.1396352 -0.6486653 -0.6835482 -0.3346571 0.05534613 -0.6240348 -0.779434 0.9116066 -0.05142927 -0.4078341 0.5966625 0.7618355 0.2521915 0.6523872 0.7355757 0.1825357 0.6301054 0.7476601 0.2096942 0.6301054 0.7476601 0.2096942 0.8065663 -7.08137e-4 -0.5911433 0.9165289 0.3823651 -0.1173533 0.9670461 0.09510445 -0.2361716 0.1354262 0.5257385 0.8397969 0.8728042 0.4538506 0.1795342 -0.7747704 -0.1062609 0.6232491 -0.7669348 -0.07149255 0.6377303 0.4619339 -0.6839516 -0.564648 -0.5782708 -0.7918951 -0.1962273 -0.5970709 -0.7854858 -0.1628455 0.2000275 -0.8289708 -0.5222992</float_array>
<technique_common>
<accessor source="#doodad_012-mesh-normals-array" count="30" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="doodad_012-mesh-map-0">
<float_array id="doodad_012-mesh-map-0-array" count="108">0.526384 0.538825 0.419244 0.550966 0.421936 0.557124 0.531979 0.557124 0.526384 0.538825 0.421936 0.557124 0.420191 0.562001 0.421936 0.557124 0.419244 0.550966 0.415501 0.557124 0.420191 0.562001 0.419244 0.550966 0.527306 0.578542 0.531979 0.557124 0.421936 0.557124 0.527306 0.578542 0.421936 0.557124 0.420191 0.562001 0.520711 0.557124 0.415501 0.557124 0.419244 0.550966 0.520711 0.557124 0.419244 0.550966 0.526384 0.538825 0.520711 0.557124 0.420191 0.562001 0.415501 0.557124 0.520711 0.557124 0.527306 0.578542 0.420191 0.562001 0.569093 0.557124 0.520711 0.557124 0.526384 0.538825 0.569766 0.549518 0.569093 0.557124 0.526384 0.538825 0.569766 0.549518 0.526384 0.538825 0.531979 0.557124 0.571645 0.557124 0.569766 0.549518 0.531979 0.557124 0.570973 0.564881 0.571645 0.557124 0.531979 0.557124 0.570973 0.564881 0.531979 0.557124 0.527306 0.578542 0.570973 0.564881 0.527306 0.578542 0.569093 0.557124 0.569093 0.557124 0.527306 0.578542 0.520711 0.557124</float_array>
<technique_common>
<accessor source="#doodad_012-mesh-map-0-array" count="54" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="doodad_012-mesh-vertices">
<input semantic="POSITION" source="#doodad_012-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="18">
<input semantic="VERTEX" source="#doodad_012-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#doodad_012-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#doodad_012-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 4 3 3 3 4 4 5 5 5 6 6 6 5 5 7 7 7 8 9 8 9 8 9 10 0 1 11 11 10 12 10 11 13 2 2 14 13 12 15 12 12 16 14 13 17 16 14 18 15 15 19 7 7 20 18 16 21 17 17 22 19 18 23 18 16 24 14 13 25 20 19 26 21 20 27 11 10 28 8 9 29 22 21 30 21 20 31 1 0 32 24 22 33 23 23 34 3 4 35 25 24 36 1 0 37 10 11 38 26 25 39 24 22 40 4 3 41 28 26 42 27 27 43 10 11 44 29 28 45 4 3 46 30 29 47 28 26 48 11 10 49 22 21 50 23 23 51 30 29 52 16 14 53</p>
</triangles>
</mesh>
</geometry>
<geometry id="doodad_011-mesh" name="doodad.011">
<mesh>
<source id="doodad_011-mesh-positions">
<float_array id="doodad_011-mesh-positions-array" count="93">2.883824 6.995884 -6.916996 -0.5323366 2.681383 -1.549618 3.000426 6.619753 -7.183216 -0.5323366 2.681383 -1.549618 -0.08071321 1.460391 -2.36856 3.000426 6.619753 -7.183216 3.42544 6.48006 -7.046677 2.883824 6.995884 -6.916996 3.42544 6.48006 -7.046677 3.308805 6.856191 -6.780536 -0.08071321 1.460391 -2.36856 1.290878 0.9446464 -1.986245 3.000426 6.619753 -7.183216 1.290878 0.9446464 -1.986245 3.42544 6.48006 -7.046677 3.308805 6.856191 -6.780536 0.8392959 2.165724 -1.167235 2.883824 6.995884 -6.916996 0.8392959 2.165724 -1.167235 -0.5323366 2.681383 -1.549618 3.308805 6.856191 -6.780536 0.8392959 2.165724 -1.167235 -0.4966146 -0.03300279 0.4168873 -0.4966146 -0.03300279 0.4168873 -0.9527734 0.1238873 0.2766465 -0.9527734 0.1238873 0.2766465 -0.8195528 -0.2806133 -0.00477916 -0.8195528 -0.2806133 -0.00477916 -0.3633973 -0.4375088 0.135464 -0.3633973 -0.4375088 0.135464 1.290878 0.9446464 -1.986245</float_array>
<technique_common>
<accessor source="#doodad_011-mesh-positions-array" count="31" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="doodad_011-mesh-normals">
<float_array id="doodad_011-mesh-normals-array" count="93">-0.8766599 0.3764138 0.2996333 -0.6512131 0.2934389 -0.699868 -0.8292561 -0.01046049 -0.5587711 -0.6530212 -0.3871677 -0.6508952 -0.8884146 0.09035027 -0.4500629 0.3233636 0.6067414 -0.7261549 0.4168922 0.607675 -0.6759674 0.2039474 0.9272124 0.3141384 0.4168097 0.607618 -0.6760696 0.647867 0.5748494 -0.4998165 0.8320663 -0.5234897 -0.1833693 -0.5225412 -0.5117141 -0.6819821 0.01356476 -0.6775134 -0.7353854 0.01356476 -0.6775134 -0.7353854 0.7216114 -0.6022608 -0.3414074 0.8047356 -0.0495705 0.5915601 0.04011207 0.7579942 0.6510268 0.1338266 0.7331387 0.6667819 0.09608781 0.7450476 0.660054 0.09608787 0.7450476 0.660054 0.9155477 -6.88637e-4 0.4022086 0.5345004 0.385962 0.7518929 0.6838928 0.08464705 0.7246555 -0.6880187 0.5023537 0.5237089 0.2543588 0.443507 0.8594204 -0.9279977 -0.1031095 -0.3580349 -0.9365041 -0.06927752 -0.3437454 0.7383245 -0.6628041 0.124771 -0.08463549 -0.7894701 -0.6079257 -0.125198 -0.783827 -0.6082277 0.5658979 -0.8184463 -0.09952604</float_array>
<technique_common>
<accessor source="#doodad_011-mesh-normals-array" count="31" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="doodad_011-mesh-map-0">
<float_array id="doodad_011-mesh-map-0-array" count="108">0.526384 0.538825 0.419244 0.550966 0.421936 0.557124 0.531979 0.557124 0.526384 0.538825 0.421936 0.557124 0.420191 0.562001 0.421936 0.557124 0.419244 0.550966 0.415501 0.557124 0.420191 0.562001 0.419244 0.550966 0.527306 0.578542 0.531979 0.557124 0.421936 0.557124 0.527306 0.578542 0.421936 0.557124 0.420191 0.562001 0.520711 0.557124 0.415501 0.557124 0.419244 0.550966 0.520711 0.557124 0.419244 0.550966 0.526384 0.538825 0.520711 0.557124 0.420191 0.562001 0.415501 0.557124 0.520711 0.557124 0.527306 0.578542 0.420191 0.562001 0.569093 0.557124 0.520711 0.557124 0.526384 0.538825 0.569766 0.549518 0.569093 0.557124 0.526384 0.538825 0.569766 0.549518 0.526384 0.538825 0.531979 0.557124 0.571645 0.557124 0.569766 0.549518 0.531979 0.557124 0.570973 0.564881 0.571645 0.557124 0.531979 0.557124 0.570973 0.564881 0.531979 0.557124 0.527306 0.578542 0.570973 0.564881 0.527306 0.578542 0.569093 0.557124 0.569093 0.557124 0.527306 0.578542 0.520711 0.557124</float_array>
<technique_common>
<accessor source="#doodad_011-mesh-map-0-array" count="54" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="doodad_011-mesh-vertices">
<input semantic="POSITION" source="#doodad_011-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="18">
<input semantic="VERTEX" source="#doodad_011-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#doodad_011-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#doodad_011-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 4 3 3 3 4 4 5 5 5 6 6 6 5 5 7 7 7 8 9 8 9 8 9 10 0 1 11 11 10 12 10 11 13 2 2 14 13 12 15 12 13 16 14 14 17 16 15 18 15 16 19 7 7 20 18 17 21 17 18 22 19 19 23 18 17 24 14 14 25 20 20 26 21 21 27 11 10 28 8 9 29 22 22 30 21 21 31 1 0 32 24 23 33 23 24 34 3 4 35 25 25 36 1 0 37 10 11 38 26 26 39 24 23 40 4 3 41 28 27 42 27 28 43 10 11 44 29 29 45 4 3 46 30 30 47 28 27 48 11 10 49 22 22 50 23 24 51 30 30 52 16 15 53</p>
</triangles>
</mesh>
</geometry>
<geometry id="doodad_010-mesh" name="doodad.010">
<mesh>
<source id="doodad_010-mesh-positions">
<float_array id="doodad_010-mesh-positions-array" count="93">-4.404654 6.152875 -6.916998 -2.556037 0.9694691 -1.549619 -4.023887 6.052439 -7.183217 -2.556037 0.9694691 -1.549619 -1.281254 0.7054404 -2.36856 -4.023887 6.052439 -7.183217 -3.680197 6.338845 -7.046678 -4.404654 6.152875 -6.916998 -3.680197 6.338845 -7.046678 -4.060981 6.439252 -6.780538 -1.281254 0.7054404 -2.36856 -0.1170443 1.595313 -1.986246 -4.023887 6.052439 -7.183217 -0.1170443 1.595313 -1.986246 -3.680197 6.338845 -7.046678 -4.060981 6.439252 -6.780538 -1.391879 1.859422 -1.167235 -4.404654 6.152875 -6.916998 -1.391879 1.859422 -1.167235 -2.556037 0.9694691 -1.549619 -4.060981 6.439252 -6.780538 -1.391879 1.859422 -1.167235 -0.2351776 -0.4386419 0.4168874 -0.2351776 -0.4386419 0.4168874 -0.6099553 -0.7423474 0.2766467 -0.6099553 -0.7423474 0.2766467 -0.1963232 -0.8437227 -0.004778921 -0.1963232 -0.8437227 -0.004778921 0.1784574 -0.5400227 0.1354641 0.1784574 -0.5400227 0.1354641 -0.1170443 1.595313 -1.986246</float_array>
<technique_common>
<accessor source="#doodad_010-mesh-positions-array" count="31" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="doodad_010-mesh-normals">
<float_array id="doodad_010-mesh-normals-array" count="93">-0.7837761 -0.5439812 0.2996326 -0.5939407 -0.3967605 -0.6998682 -0.4305681 -0.7087921 -0.5587708 -0.01771146 -0.7589612 -0.6508951 -0.5474089 -0.7055402 -0.4500629 -0.3431894 0.5957531 -0.7261538 -0.2944185 0.6755644 -0.6759663 -0.6782435 0.6643064 0.3141383 -0.2944118 0.6754645 -0.6760692 -0.1441812 0.8540466 -0.4998162 0.8848722 0.4282255 -0.1833689 0.1570534 -0.7143073 -0.6819819 0.5817514 -0.347525 -0.7353855 0.5817514 -0.347525 -0.7353855 0.8931421 0.292811 -0.3414071 0.4684831 0.6561864 0.59156 -0.6215583 0.4356946 0.6510265 -0.5508206 0.5019948 0.6667817 -0.5809175 0.476302 0.660054 -0.5809175 0.476302 0.660054 0.4857498 0.7760634 0.4022098 -0.04407238 0.6578109 0.7518926 0.2906234 0.6248303 0.7246553 -0.7906145 -0.317266 0.5237091 -0.2413254 0.4507316 0.8594202 -0.404322 -0.8416265 -0.3580347 -0.4375208 -0.8309121 -0.3437454 0.9533421 0.274902 0.1247707 0.6246587 -0.4901303 -0.6079258 0.598378 -0.521539 -0.6082276 0.993962 0.04619812 -0.09952616</float_array>
<technique_common>
<accessor source="#doodad_010-mesh-normals-array" count="31" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="doodad_010-mesh-map-0">
<float_array id="doodad_010-mesh-map-0-array" count="108">0.526384 0.538825 0.419244 0.550966 0.421936 0.557124 0.531979 0.557124 0.526384 0.538825 0.421936 0.557124 0.420191 0.562001 0.421936 0.557124 0.419244 0.550966 0.415501 0.557124 0.420191 0.562001 0.419244 0.550966 0.527306 0.578542 0.531979 0.557124 0.421936 0.557124 0.527306 0.578542 0.421936 0.557124 0.420191 0.562001 0.520711 0.557124 0.415501 0.557124 0.419244 0.550966 0.520711 0.557124 0.419244 0.550966 0.526384 0.538825 0.520711 0.557124 0.420191 0.562001 0.415501 0.557124 0.520711 0.557124 0.527306 0.578542 0.420191 0.562001 0.569093 0.557124 0.520711 0.557124 0.526384 0.538825 0.569766 0.549518 0.569093 0.557124 0.526384 0.538825 0.569766 0.549518 0.526384 0.538825 0.531979 0.557124 0.571645 0.557124 0.569766 0.549518 0.531979 0.557124 0.570973 0.564881 0.571645 0.557124 0.531979 0.557124 0.570973 0.564881 0.531979 0.557124 0.527306 0.578542 0.570973 0.564881 0.527306 0.578542 0.569093 0.557124 0.569093 0.557124 0.527306 0.578542 0.520711 0.557124</float_array>
<technique_common>
<accessor source="#doodad_010-mesh-map-0-array" count="54" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="doodad_010-mesh-vertices">
<input semantic="POSITION" source="#doodad_010-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="18">
<input semantic="VERTEX" source="#doodad_010-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#doodad_010-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#doodad_010-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 4 3 3 3 4 4 5 5 5 6 6 6 5 5 7 7 7 8 9 8 9 8 9 10 0 1 11 11 10 12 10 11 13 2 2 14 13 12 15 12 13 16 14 14 17 16 15 18 15 16 19 7 7 20 18 17 21 17 18 22 19 19 23 18 17 24 14 14 25 20 20 26 21 21 27 11 10 28 8 9 29 22 22 30 21 21 31 1 0 32 24 23 33 23 24 34 3 4 35 25 25 36 1 0 37 10 11 38 26 26 39 24 23 40 4 3 41 28 27 42 27 28 43 10 11 44 29 29 45 4 3 46 30 30 47 28 27 48 11 10 49 22 22 50 23 24 51 30 30 52 16 15 53</p>
</triangles>
</mesh>
</geometry>
<geometry id="flare_001-mesh" name="flare.001">
<mesh>
<source id="flare_001-mesh-positions">
<float_array id="flare_001-mesh-positions-array" count="9">0.05951666 -0.03041875 1.395396 0 -0.03041875 23.54128 -0.05951666 -0.03041875 1.395396</float_array>
<technique_common>
<accessor source="#flare_001-mesh-positions-array" count="3" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="flare_001-mesh-normals">
<float_array id="flare_001-mesh-normals-array" count="3">0 1 0</float_array>
<technique_common>
<accessor source="#flare_001-mesh-normals-array" count="1" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="flare_001-mesh-map-0">
<float_array id="flare_001-mesh-map-0-array" count="6">0 0 0 0 0 0</float_array>
<technique_common>
<accessor source="#flare_001-mesh-map-0-array" count="3" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="flare_001-mesh-vertices">
<input semantic="POSITION" source="#flare_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="1">
<input semantic="VERTEX" source="#flare_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#flare_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#flare_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 0 1 2 0 2</p>
</triangles>
</mesh>
</geometry>
<geometry id="gun_001-mesh" name="gun.001">
<mesh>
<source id="gun_001-mesh-positions">
<float_array id="gun_001-mesh-positions-array" count="702">-0.9241591 5.944365 28.3504 0.8633207 5.944365 28.3504 -0.6743866 2.103655 27.64845 0.613548 2.103655 27.64845 1.894758 5.936057 16.86394 1.353927 1.718319 8.918441 0.9514293 1.718241 16.86394 2.684018 5.540686 5.653995 1.231889 4.256538 -18.0355 -0.6742285 0.5715644 -16.94378 0.6133899 0.5715644 -16.94378 -1.292726 4.256538 -18.0355 -1.414766 1.718319 8.918441 -1.955598 5.936057 16.86394 -1.012266 1.718241 16.86394 -2.744858 5.540686 5.653995 0.9514293 10.0808 19.63216 1.353927 9.937323 3.987762 -0.6742285 10.15941 -17.09204 0.6133899 10.15941 -17.09204 -1.414766 9.937323 3.987762 -1.012266 10.0808 19.63216 0.6133899 2.146286 -1.517282 1.231889 5.590268 -6.94924 -1.292726 5.590268 -6.94924 -0.6742285 2.146286 -1.517282 0.6133899 9.879902 -3.579684 -0.6742285 9.879902 -3.579684 -0.6743866 2.103655 27.64845 -0.9241591 5.944365 28.3504 0.613548 2.103655 27.64845 0.8633207 5.944365 28.3504 -0.7104527 7.168462 40.64336 -0.3858584 6.466452 48.81063 -0.3813516 6.439158 40.64336 -0.7190719 7.155419 48.81063 0.6693082 7.155419 48.81063 0.6606863 7.168462 40.64336 0.3360934 6.466452 48.81063 0.3315851 6.439158 40.64336 -0.3858584 6.466452 48.81063 0.3360934 6.466452 48.81063 0.3315851 6.439158 40.64336 -0.3813516 6.439158 40.64336 -0.7104527 7.168462 40.64336 -0.3858584 7.844309 48.81063 -0.7190719 7.155419 48.81063 -0.3813516 7.897851 40.64336 -0.3858584 7.844309 48.81063 0.3315851 7.897851 40.64336 0.3360934 7.844309 48.81063 -0.3813516 7.897851 40.64336 0.3360934 7.844309 48.81063 0.6606863 7.168462 40.64336 0.6693082 7.155419 48.81063 0.3315851 7.897851 40.64336 -0.2027599 4.88801 35.76796 0.2032966 5.284892 27.4319 0.2032966 4.88801 35.76796 -0.2027599 5.284892 27.4319 0.2032966 4.88801 35.76796 0.7657995 4.083405 27.4319 0.7657995 4.0229 35.76796 0.2032966 5.284892 27.4319 -0.7652628 4.083405 27.4319 -0.2027599 4.88801 35.76796 -0.7652628 4.0229 35.76796 -0.2027599 5.284892 27.4319 0.7657995 4.0229 35.76796 0.7657995 4.083405 27.4319 0.2032966 3.157875 35.76796 0.2032966 2.881921 27.4319 -0.2027599 3.157875 35.76796 0.2032966 3.157875 35.76796 -0.2027599 2.881921 27.4319 0.2032966 2.881921 27.4319 -0.7652628 4.083405 27.4319 -0.2027599 3.157875 35.76796 -0.2027599 2.881921 27.4319 -0.7652628 4.0229 35.76796 0.6133899 0.5715644 -16.94378 1.231889 4.256538 -18.0355 -1.292726 4.256538 -18.0355 -0.6742285 0.5715644 -16.94378 0.6133899 10.15941 -17.09204 -0.6742285 10.15941 -17.09204 -0.7569584 13.37426 14.8085 -1.054819 13.05663 5.945687 0.6961185 13.37426 14.8085 0.9939808 13.05663 5.945687 -1.208099 8.460672 16.86394 -0.5377154 8.4689 27.36207 0.4768769 8.4689 27.36207 1.147261 8.460672 16.86394 0.4768769 8.4689 44.95339 0.8633207 5.944365 46.3454 -0.5377154 8.4689 44.95339 -0.9241591 5.944365 46.3454 -0.5840644 -4.68671 -3.643986 0.6023166 -4.68671 -3.643986 -0.5840644 -5.262101 -9.118576 0.6023166 -5.262101 -9.118576 -0.5840644 2.603754 -9.945323 -0.5840644 -5.262101 -9.118576 0.6023166 -5.262101 -9.118576 0.6023166 2.603754 -9.945323 0.6023166 3.179227 -4.470733 -0.5840644 3.179227 -4.470733 -0.5840644 2.603754 -9.945323 0.6023166 2.603754 -9.945323 -0.5840644 -4.68671 -3.643986 -0.5840644 3.179227 -4.470733 0.6023166 -4.68671 -3.643986 0.6023166 3.179227 -4.470733 -0.7569584 13.37426 14.8085 -1.054819 13.05663 5.945687 0.9939808 13.05663 5.945687 0.6961185 13.37426 14.8085 -1.012266 10.0808 19.63216 0.9514293 10.0808 19.63216 0.9939808 13.05663 5.945687 -1.054819 13.05663 5.945687 -1.414766 9.937323 3.987762 1.353927 9.937323 3.987762 -0.5377154 8.4689 27.36207 -1.208099 8.460672 16.86394 1.147261 8.460672 16.86394 0.4768769 8.4689 27.36207 -0.5377154 8.4689 44.95339 0.4768769 8.4689 44.95339 -0.9241591 5.944365 46.3454 -0.5377154 8.4689 44.95339 0.8633207 5.944365 46.3454 0.4768769 8.4689 44.95339 -1.414766 1.718319 8.918441 -1.012266 1.718241 16.86394 0.9514293 1.718241 16.86394 1.353927 1.718319 8.918441 0.613548 2.103655 27.64845 -0.6743866 2.103655 27.64845 1.353927 -3.848255 1.022601 0.6133899 -2.381099 -1.708686 0.6133899 2.146286 -1.517282 -0.6742285 2.146286 -1.517282 0.6133899 -2.381099 -1.708686 -0.6742285 -2.381099 -1.708686 -1.414766 -3.848255 1.022601 -0.6742285 -2.381099 -1.708686 0.6133899 -2.381099 -1.708686 -0.6742285 -2.381099 -1.708686 -1.414766 -3.848255 1.022601 1.353927 -3.848255 1.022601 -1.414766 -3.848255 1.022601 1.353927 -3.848255 1.022601 0.8633207 5.944365 28.3504 -0.9241591 5.944365 28.3504 -0.9241591 5.944365 46.3454 0.8633207 5.944365 46.3454 -0.6742285 10.15941 -17.09204 0.6133899 10.15941 -17.09204 -0.6742285 9.879902 -3.579684 0.6133899 9.879902 -3.579684 1.353927 9.937323 3.987762 -1.414766 9.937323 3.987762 -0.6742285 0.5715644 -16.94378 0.6133899 2.146286 -1.517282 0.6133899 0.5715644 -16.94378 -0.6742285 2.146286 -1.517282 -0.5840644 3.179227 -4.470733 -0.5840644 -4.68671 -3.643986 -0.5840644 -5.262101 -9.118576 -0.5840644 2.603754 -9.945323 0.6023166 -4.68671 -3.643986 0.6023166 3.179227 -4.470733 0.6023166 -5.262101 -9.118576 0.6023166 2.603754 -9.945323 -0.3858584 6.466452 48.81063 -0.7190719 7.155419 48.81063 0.3360934 6.466452 48.81063 0.6693082 7.155419 48.81063 -0.3858584 7.844309 48.81063 0.3360934 7.844309 48.81063 -0.2027599 4.88801 35.76796 0.2032966 4.88801 35.76796 0.7657995 4.0229 35.76796 -0.7652628 4.0229 35.76796 -0.2027599 3.157875 35.76796 0.2032966 3.157875 35.76796 -1.099032 12.30912 19.6226 -0.03049826 12.92605 19.6226 -0.6877533 12.0717 20.88111 -0.03049826 12.45117 20.88111 -1.099032 11.0753 19.6226 -0.6877533 11.31274 20.88111 -0.03049826 10.45838 19.6226 -0.03049826 10.93325 20.88111 -1.099032 12.30912 19.6226 -0.6877533 11.31274 20.88111 -1.099032 11.0753 19.6226 -0.6877533 12.0717 20.88111 -0.6877533 11.31274 20.88111 -0.6877533 12.0717 20.88111 -0.03049826 10.93325 20.88111 -0.03049826 12.45117 20.88111 -0.03049826 12.45117 20.88111 -0.03049826 12.92605 19.6226 0.6267552 12.0717 20.88111 1.038034 12.30912 19.6226 0.6267552 11.31274 20.88111 1.038034 12.30912 19.6226 1.038034 11.0753 19.6226 0.6267552 12.0717 20.88111 -0.03049826 10.93325 20.88111 0.6267552 11.31274 20.88111 -0.03049826 10.45838 19.6226 1.038034 11.0753 19.6226 0.6267552 12.0717 20.88111 0.6267552 11.31274 20.88111 -0.03049826 10.45838 14.58855 -0.7891488 11.0753 14.58855 -0.7891488 11.0753 14.58855 -0.7891488 12.30912 14.58855 -0.7891488 12.30912 14.58855 -0.03049826 12.92605 14.58855 0.7281522 12.30912 14.58855 -0.03049826 12.92605 14.58855 0.7281522 11.0753 14.58855 0.7281522 12.30912 14.58855 -0.03049826 10.45838 14.58855 0.7281522 11.0753 14.58855 -1.955598 5.936057 16.86394 -1.012266 10.0808 19.63216 1.894758 5.936057 16.86394 0.9514293 10.0808 19.63216</float_array>
<technique_common>
<accessor source="#gun_001-mesh-positions-array" count="234" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="gun_001-mesh-normals">
<float_array id="gun_001-mesh-normals-array" count="600">0 -0.1797867 0.9837057 0 -0.1797867 0.9837057 0 -0.1797867 0.9837056 0 -0.1797866 0.9837056 0.9730502 -0.2302707 0.01219654 0.998064 0.03767383 0.04948717 0.97495 -0.2180508 0.04389095 0.9990397 -0.03679692 -0.02378535 0 -0.2840592 -0.9588068 0 -0.06027781 -0.9981817 0 -0.2840592 -0.9588068 0 -0.06027787 -0.9981817 -0.998064 0.03767389 0.04948723 -0.9730501 -0.230271 0.01219654 -0.9749498 -0.2180514 0.04389101 -0.9990397 -0.03679692 -0.02378541 0.9735222 0.2273551 -0.02375411 0.9849787 0.1710318 0.02377289 0 0.1578279 -0.9874666 0 0.1578279 -0.9874666 -0.9735222 0.2273554 -0.02375411 -0.9849786 0.171032 0.02377301 0.9773579 -0.1891733 -0.09478884 0.9997363 -0.009196519 -0.0210458 -0.9997363 -0.00919646 -0.02104586 -0.9773579 -0.1891732 -0.0947889 0.9757475 0.2055811 -0.07518702 -0.9757477 0.205581 -0.07518714 -0.9907705 -0.1105681 0.07841289 -0.9946622 0.08958786 0.05119764 0.9907705 -0.1105679 0.07841283 0.9946622 0.08958792 0.05119758 -0.9009561 -0.4339079 -0.001489222 -0.9108413 -0.4127562 7.21831e-4 -0.9114928 -0.411315 8.71614e-4 -0.9002391 -0.4353932 -0.001645386 0.9108414 -0.4127561 7.21686e-4 0.9002382 -0.4353946 -0.001645624 0.9009554 -0.4339092 -0.00148946 0.9114931 -0.4113148 8.71475e-4 0 -0.9999945 0.003341615 0 -0.9999945 0.003341674 0 -0.9999945 0.003341794 0 -0.9999945 0.003341794 -0.9009392 0.4339452 -1.02977e-4 -0.9108567 0.4127178 0.002047777 -0.9002211 0.4354333 -2.54662e-4 -0.911509 0.4112741 0.002193212 0 0.9999786 0.006555557 0 0.9999786 0.006555616 0 0.9999785 0.006555616 0 0.9999786 0.006555557 0.9108567 0.4127178 0.002047657 0.9009386 0.4339466 -1.03281e-4 0.9002204 0.4354347 -2.54975e-4 0.9115091 0.411274 0.002193033 0 0.9988687 0.04755628 0 0.9988687 0.0475564 0 0.9988687 0.04755628 0.9008662 0.4336841 0.01892918 0.8456883 0.5336484 0.005557298 0.8383569 0.5451075 0.003956556 0.9054756 0.4239184 0.02018284 -0.8456883 0.5336484 0.005557298 -0.9008662 0.4336841 0.01892918 -0.8383569 0.5451076 0.003956556 -0.9054754 0.4239185 0.02018284 0.9009223 -0.4337968 0.01262933 0.8383324 -0.5451452 -0.003956735 0.845726 -0.533613 -0.002177476 0.9055704 -0.4239639 0.01403468 0 -0.9994525 0.03308534 0 -0.9994526 0.03308534 0 -0.9994525 0.03308546 0 -0.9994525 0.03308552 -0.8457259 -0.5336132 -0.002177476 -0.9009223 -0.4337968 0.01262933 -0.9055704 -0.4239639 0.01403468 -0.8383322 -0.5451454 -0.003956735 0.987192 -0.158463 0.01848018 0.9994604 -0.03261125 0.003923237 -0.9994605 -0.03261119 0.003923237 -0.9871921 -0.1584626 0.01848012 0.9933959 0.1143801 -0.009050369 -0.9933959 0.1143798 -0.009050369 -0.9934951 0.1110705 0.02511709 -0.9949313 0.09597951 0.02999776 0.9949313 0.09597933 0.02999794 0.9934951 0.1110711 0.02511703 -0.9823625 0.1795874 0.05208015 -0.9570741 0.2833747 0.06089425 0.9823625 0.1795874 0.05208015 0.9570743 0.2833741 0.06089425 0.988486 0.1513126 0 0.988486 0.1513126 0 -0.988486 0.1513126 0 -0.988486 0.1513126 0 0 -0.9945222 0.1045263 0 -0.9945222 0.1045263 0 -0.9945222 0.1045263 0 -0.1045301 -0.9945217 0 -0.1045301 -0.9945217 0 0.9945206 -0.104541 0 0.9945207 -0.104541 0 0.9945206 -0.104541 0 0.104529 0.9945219 0 0.104529 0.9945219 0 0.9993584 -0.03581589 0 0.9603184 0.2789063 0 0.9993585 -0.03581595 0 0.9603183 0.2789063 0 0.8258603 0.5638749 0 0.8258603 0.5638749 0 0.5316301 -0.8469767 0 0.5316301 -0.8469766 0 0.5316302 -0.8469767 0 0.5316302 -0.8469766 0 0.9999997 -7.83786e-4 0 1 -3.99655e-4 0 0.9999998 -7.83781e-4 0 1 -3.9965e-4 0 1 0 0 0.4828558 0.8756999 0 0.4828556 0.8757001 0 0.4828557 0.8757 0 0.4828559 0.8756999 0 -0.9998488 0.01739239 0 -0.9516528 0.307176 0 -0.9998488 0.01739239 0 -0.9993621 0.03571492 0 -0.9993621 0.03571492 0.9892085 0.06699335 -0.1303018 0.9665517 0.01083314 -0.2562433 0 0.04223924 -0.9991075 0 0.04223924 -0.9991075 0 0.04223924 -0.9991075 -0.9892085 0.06699335 -0.1303018 -0.9665516 0.01083314 -0.2562432 0 -0.8809469 -0.4732152 0 -0.8809469 -0.4732151 0 -0.8809469 -0.4732151 0 -0.880947 -0.473215 0 -0.8173072 0.5762023 0 -1 0 0 0.9997861 0.02068066 0 0.9997861 0.02068066 0 0.9999814 0.006121218 0 0.9999814 0.006121277 0 0.9999713 -0.007587373 0 0.9999713 -0.007587313 0 -0.9948304 0.1015513 0 -0.9948304 0.1015513 0 -0.9948303 0.1015513 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 0 0 1 -0.5045068 0.8530055 0.1336204 -0.4954505 0.8581357 0.1346548 -0.4752727 0.823185 0.3106164 -0.4752736 0.8231845 0.3106161 -0.4752764 -0.8231829 0.310616 -0.5035112 -0.8512103 0.1480457 -0.4945099 -0.8565057 0.1478444 -0.4752829 -0.8231808 0.3106119 -0.9505302 0 0.3106321 -0.9933074 0 0.1155014 -0.9933074 0 0.1155011 -0.9505304 0 0.3106319 -9.55874e-7 0 1 -3.82363e-6 0 1 -9.55923e-7 0 1 0.5045075 0.8530052 0.1336205 0.4752751 0.8231835 0.3106164 0.4752737 0.8231844 0.3106164 0.495451 0.8581354 0.1346548 0.9933074 0 0.1155014 0.9505304 0 0.3106318 0.9933074 0 0.1155012 0.9505305 0 0.3106313 0.4752779 -0.8231821 0.310616 0.4752852 -0.8231797 0.3106112 0.4945107 -0.8565053 0.1478445 0.5035117 -0.85121 0.1480461 -0.6115768 -0.7904992 -0.03293842 -0.6304367 -0.77527 -0.03880798 -0.9981107 0 -0.06144106 -0.9981107 0 -0.06144106 -0.6123124 0.7906026 -0.004610896 -0.6309141 0.7758528 0 0.6123125 0.7906025 -0.004610836 0.6309141 0.7758528 0 0.9981108 0 -0.06144076 0.6115769 -0.7904992 -0.03293842 0.6304368 -0.7752699 -0.03880798 0 -0.5554025 0.8315817 0 -0.5554024 0.8315818 0 -0.5554025 0.8315818</float_array>
<technique_common>
<accessor source="#gun_001-mesh-normals-array" count="200" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="gun_001-mesh-map-0">
<float_array id="gun_001-mesh-map-0-array" count="924">0.852185 0.474546 0.852185 0.49235 0.806682 0.489862 0.852185 0.474546 0.806682 0.489862 0.806682 0.477034 0.833943 0.29145 0.883092 0.367341 0.833942 0.367341 0.878485 0.26027 0.883092 0.367341 0.833943 0.29145 0.821567 0.02731996 0.863874 0.006943941 0.821567 0.013556 0.863874 0.03393197 0.863874 0.006943941 0.821567 0.02731996 0.882997 0.367341 0.833848 0.29145 0.833847 0.367341 0.882997 0.367341 0.878389 0.26027 0.833848 0.29145 0.92972 0.244355 0.931391 0.393782 0.883092 0.367341 0.92972 0.244355 0.883092 0.367341 0.878485 0.26027 0.863874 0.03393197 0.931643 0.02731996 0.863874 0.006943941 0.931643 0.02731996 0.931643 0.013556 0.863874 0.006943941 0.882997 0.367341 0.929624 0.244355 0.878389 0.26027 0.931296 0.393782 0.929624 0.244355 0.882997 0.367341 0.838931 0.191774 0.878485 0.26027 0.833943 0.29145 0.879063 0.13989 0.878485 0.26027 0.838931 0.191774 0.878389 0.26027 0.878967 0.13989 0.838835 0.191774 0.878389 0.26027 0.838835 0.191774 0.833848 0.29145 0.879063 0.13989 0.92905 0.172074 0.878485 0.26027 0.92905 0.172074 0.92972 0.244355 0.878485 0.26027 0.928954 0.172074 0.878967 0.13989 0.878389 0.26027 0.929624 0.244355 0.928954 0.172074 0.878389 0.26027 0.838338 0.47035 0.882997 0.367341 0.833847 0.367341 0.883094 0.477054 0.882997 0.367341 0.838338 0.47035 0.883092 0.367341 0.838433 0.47035 0.833942 0.367341 0.883092 0.367341 0.883189 0.477054 0.838433 0.47035 0.643493 0.847148 0.997328 0.864536 0.997328 0.847016 0.643493 0.864888 0.997328 0.864536 0.643493 0.847148 0.997328 0.808147 0.643493 0.807794 0.643493 0.825784 0.997328 0.808147 0.643493 0.825784 0.997328 0.825916 0.643493 0.825784 0.643493 0.847148 0.997328 0.825916 0.643493 0.847148 0.997328 0.847016 0.997328 0.825916 0.643493 0.847148 0.997328 0.864536 0.643493 0.864888 0.643493 0.847148 0.997328 0.847016 0.997328 0.864536 0.997328 0.825916 0.643493 0.847148 0.643493 0.825784 0.997328 0.825916 0.997328 0.847016 0.643493 0.847148 0.997328 0.808147 0.643493 0.825784 0.643493 0.807794 0.997328 0.825916 0.643493 0.825784 0.997328 0.808147 0.962627 0.451272 0.947908 0.633073 0.962627 0.633073 0.962627 0.451272 0.947908 0.451272 0.947908 0.633073 0.983018 0.451272 0.962627 0.633073 0.983018 0.633073 0.962627 0.451272 0.962627 0.633073 0.983018 0.451272 0.947908 0.633073 0.927517 0.451272 0.927517 0.633073 0.947908 0.633073 0.947908 0.451272 0.927517 0.451272 0.983018 0.451272 0.983018 0.633073 0.962627 0.633073 0.983018 0.451272 0.962627 0.633073 0.962627 0.451272 0.962627 0.633073 0.947908 0.633073 0.947908 0.451272 0.962627 0.633073 0.947908 0.451272 0.962627 0.451272 0.947908 0.633073 0.927517 0.451272 0.947908 0.451272 0.927517 0.633073 0.927517 0.451272 0.947908 0.633073 0.879063 0.13989 0.838931 0.191774 0.82058 0.04442799 0.863521 0.03399997 0.879063 0.13989 0.82058 0.04442799 0.878967 0.13989 0.863426 0.03399997 0.820484 0.04442799 0.838835 0.191774 0.878967 0.13989 0.820484 0.04442799 0.932307 0.04301196 0.879063 0.13989 0.863521 0.03399997 0.932307 0.04301196 0.92905 0.172074 0.879063 0.13989 0.878967 0.13989 0.932212 0.04301196 0.863426 0.03399997 0.928954 0.172074 0.932212 0.04301196 0.878967 0.13989 0.931296 0.393782 0.969675 0.347709 0.929624 0.244355 0.969675 0.347709 0.965973 0.263056 0.929624 0.244355 0.966068 0.263056 0.969771 0.347709 0.92972 0.244355 0.969771 0.347709 0.931391 0.393782 0.92972 0.244355 0.912512 0.467614 0.912416 0.367341 0.882997 0.367341 0.883094 0.477054 0.912512 0.467614 0.882997 0.367341 0.912608 0.467614 0.883189 0.477054 0.883092 0.367341 0.912512 0.367341 0.912608 0.467614 0.883092 0.367341 0.883189 0.477054 0.912608 0.635637 0.883189 0.648933 0.912608 0.467614 0.912608 0.635637 0.883189 0.477054 0.912512 0.635637 0.912512 0.467614 0.883094 0.477054 0.912512 0.635637 0.883094 0.477054 0.883094 0.648933 0.789962 0.888954 0.777064 0.899446 0.776433 0.978978 0.789962 0.888954 0.776433 0.978978 0.788262 0.990094 0.776433 0.978978 0.637658 0.979681 0.788262 0.990094 0.637658 0.979681 0.623919 0.991988 0.788262 0.990094 0.638289 0.900149 0.625619 0.890849 0.637658 0.979681 0.637658 0.979681 0.625619 0.890849 0.623919 0.991988 0.638289 0.900149 0.777064 0.899446 0.789962 0.888954 0.625619 0.890849 0.638289 0.900149 0.789962 0.888954 0.991073 0.262618 0.987459 0.347648 0.966214 0.262618 0.987459 0.347648 0.969828 0.347648 0.966214 0.262618 0.969828 0.347648 0.987459 0.347648 0.990556 0.393926 0.969828 0.347648 0.990556 0.393926 0.966731 0.393926 0.991073 0.262618 0.966214 0.262618 0.99544 0.243833 0.99544 0.243833 0.966214 0.262618 0.961847 0.243833 0.79548 0.004006981 0.785918 0.104432 0.761886 0.004006981 0.785918 0.104432 0.771448 0.104432 0.761886 0.004006981 0.771448 0.104432 0.785918 0.104432 0.785918 0.272709 0.771448 0.104432 0.785918 0.272709 0.771448 0.272709 0.785918 0.272709 0.79143 0.286025 0.765937 0.286025 0.771448 0.272709 0.785918 0.272709 0.765937 0.286025 0.824863 0.367516 0.829747 0.291188 0.801037 0.367516 0.829747 0.291188 0.796153 0.291188 0.801037 0.367516 0.805137 0.471117 0.824863 0.367516 0.801037 0.367516 0.805137 0.471117 0.820763 0.471117 0.824863 0.367516 0.96223 0.06282895 0.949783 0.186623 0.949783 0.006617963 0.96223 0.04090899 0.96223 0.06282895 0.949783 0.006617963 0.98387 0.06282895 0.96223 0.06282895 0.96223 0.04090899 0.98387 0.04090899 0.98387 0.06282895 0.96223 0.04090899 0.996317 0.186623 0.98387 0.06282895 0.996317 0.006617963 0.98387 0.06282895 0.98387 0.04090899 0.996317 0.006617963 0.98387 0.04090899 0.96223 0.04090899 0.996317 0.006617963 0.996317 0.006617963 0.96223 0.04090899 0.949783 0.006617963 0.949783 0.186623 0.996317 0.186623 0.996317 0.006617963 0.949783 0.186623 0.996317 0.006617963 0.949783 0.006617963 0.883242 0.477161 0.861308 0.477161 0.883242 0.648786 0.883242 0.648786 0.861308 0.477161 0.861308 0.648786 0.934999 0.04317796 0.943904 0.04317796 0.943904 0.172438 0.934999 0.04317796 0.943904 0.172438 0.934999 0.172438 0.949026 0.2448289 0.929878 0.2448289 0.934999 0.172438 0.943904 0.172438 0.949026 0.2448289 0.934999 0.172438 0.79902 0.192161 0.820302 0.04431694 0.79902 0.04431694 0.79902 0.192161 0.820302 0.192161 0.820302 0.04431694 0.777064 0.899446 0.638289 0.900149 0.776433 0.978978 0.638289 0.900149 0.637658 0.979681 0.776433 0.978978 0.638289 0.900149 0.777064 0.899446 0.776433 0.978978 0.637658 0.979681 0.638289 0.900149 0.776433 0.978978 0.704578 0.239239 0.758728 0.208496 0.758728 0.141883 0.704578 0.11114 0.704578 0.239239 0.758728 0.141883 0.758647 0.208496 0.704578 0.239239 0.704578 0.11114 0.758647 0.141883 0.758647 0.208496 0.704578 0.11114 0.963593 0.673657 0.946011 0.673657 0.98795 0.643705 0.946011 0.673657 0.921654 0.643705 0.98795 0.643705 0.98795 0.643705 0.921654 0.643705 0.946011 0.673657 0.98795 0.643705 0.946011 0.673657 0.963593 0.673657 0.305558 0.199218 0.336855 0.145566 0.348901 0.166216 0.32965 0.197218 0.305558 0.199218 0.348901 0.166216 0.387403 0.166216 0.39945 0.145566 0.430747 0.199218 0.406654 0.197218 0.387403 0.166216 0.430747 0.199218 0.387403 0.166216 0.336855 0.145566 0.39945 0.145566 0.348901 0.166216 0.336855 0.145566 0.387403 0.166216 0.348901 0.166216 0.387403 0.166216 0.406654 0.197218 0.32965 0.197218 0.348901 0.166216 0.406654 0.197218 0.305558 0.199218 0.32965 0.197218 0.348901 0.166216 0.336855 0.145566 0.305558 0.199218 0.348901 0.166216 0.336855 0.145566 0.387403 0.166216 0.39945 0.145566 0.336855 0.145566 0.348901 0.166216 0.387403 0.166216 0.387403 0.166216 0.406654 0.197218 0.430747 0.199218 0.39945 0.145566 0.387403 0.166216 0.430747 0.199218 0.348901 0.166216 0.32965 0.197218 0.406654 0.197218 0.387403 0.166216 0.348901 0.166216 0.406654 0.197218 0.392007 0.208798 0.429628 0.252455 0.428628 0.208798 0.392007 0.208798 0.393007 0.252455 0.429628 0.252455 0.342021 0.208798 0.393007 0.252455 0.392007 0.208798 0.342021 0.208798 0.343021 0.252455 0.393007 0.252455 0.305406 0.208798 0.343021 0.252455 0.342021 0.208798 0.305406 0.208798 0.306406 0.252455 0.343021 0.252455 0.343021 0.252455 0.305406 0.208798 0.342021 0.208798 0.306406 0.252455 0.305406 0.208798 0.343021 0.252455 0.393007 0.252455 0.342021 0.208798 0.392007 0.208798 0.343021 0.252455 0.342021 0.208798 0.393007 0.252455 0.429628 0.252455 0.392007 0.208798 0.428628 0.208798 0.393007 0.252455 0.392007 0.208798 0.429628 0.252455 0.95643 0.420503 0.911837 0.428272 0.911837 0.396565 0.95643 0.404333 0.95643 0.420503 0.911837 0.396565</float_array>
<technique_common>
<accessor source="#gun_001-mesh-map-0-array" count="462" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="gun_001-mesh-vertices">
<input semantic="POSITION" source="#gun_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="154">
<input semantic="VERTEX" source="#gun_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#gun_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#gun_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 1 0 3 2 2 4 3 3 5 5 4 6 4 5 7 6 6 8 7 7 9 4 5 10 5 4 11 9 8 12 8 9 13 10 10 14 11 11 15 8 9 16 9 8 17 13 12 18 12 13 19 14 14 20 13 12 21 15 15 22 12 13 23 17 16 24 16 17 25 4 5 26 17 16 27 4 5 28 7 7 29 11 11 30 18 18 31 8 9 32 18 18 33 19 19 34 8 9 35 13 12 36 20 20 37 15 15 38 21 21 39 20 20 40 13 12 41 22 22 42 7 7 43 5 4 44 23 23 45 7 7 46 22 22 47 15 15 48 24 24 49 25 25 50 15 15 51 25 25 52 12 13 53 23 23 54 26 26 55 7 7 56 26 26 57 17 16 58 7 7 59 27 27 60 24 24 61 15 15 62 20 20 63 27 27 64 15 15 65 28 28 66 13 12 67 14 14 68 29 29 69 13 12 70 28 28 71 4 5 72 30 30 73 6 6 74 4 5 75 31 31 76 30 30 77 33 32 78 32 33 79 34 34 80 35 35 81 32 33 82 33 32 83 37 36 84 36 37 85 38 38 86 37 36 87 38 38 88 39 39 89 41 40 90 40 41 91 42 42 92 40 41 93 43 43 94 42 42 95 45 44 96 44 45 97 46 46 98 45 44 99 47 47 100 44 45 101 49 48 102 48 49 103 50 50 104 49 48 105 51 51 106 48 49 107 53 52 108 52 53 109 54 54 110 55 55 111 52 53 112 53 52 113 57 56 114 56 57 115 58 57 116 57 56 117 59 58 118 56 57 119 61 59 120 60 60 121 62 61 122 63 62 123 60 60 124 61 59 125 65 63 126 64 64 127 66 65 128 65 63 129 67 66 130 64 64 131 69 67 132 68 68 133 70 69 134 69 67 135 70 69 136 71 70 137 73 71 138 72 72 139 74 73 140 73 71 141 74 73 142 75 74 143 77 75 144 76 76 145 78 77 146 79 78 147 76 76 148 77 75 149 23 23 150 22 22 151 80 79 152 81 80 153 23 23 154 80 79 155 24 24 156 82 81 157 83 82 158 25 25 159 24 24 160 83 82 161 84 83 162 23 23 163 81 80 164 84 83 165 26 26 166 23 23 167 24 24 168 85 84 169 82 81 170 27 27 171 85 84 172 24 24 173 21 21 174 86 85 175 20 20 176 86 85 177 87 86 178 20 20 179 89 87 180 88 88 181 17 16 182 88 88 183 16 17 184 17 16 185 91 89 186 90 90 187 13 12 188 29 29 189 91 89 190 13 12 191 92 91 192 31 31 193 4 5 194 93 92 195 92 91 196 4 5 197 31 31 198 94 93 199 95 94 200 92 91 201 94 93 202 31 31 203 96 95 204 91 89 205 29 29 206 96 95 207 29 29 208 97 96 209 99 97 210 98 98 211 100 99 212 99 97 213 100 99 214 101 99 215 103 100 216 102 100 217 104 101 218 102 100 219 105 100 220 104 101 221 107 102 222 106 103 223 108 104 224 108 104 225 106 103 226 109 104 227 111 105 228 110 106 229 112 106 230 113 105 231 111 105 232 112 106 233 115 107 234 114 108 235 116 109 236 114 108 237 117 110 238 116 109 239 117 110 240 114 108 241 118 111 242 117 110 243 118 111 244 119 112 245 121 113 246 120 114 247 122 115 248 122 115 249 120 114 250 123 116 251 125 117 252 124 118 253 126 119 254 124 118 255 127 120 256 126 119 257 127 120 258 124 118 259 128 121 260 127 120 261 128 121 262 129 121 263 131 122 264 130 123 265 132 124 266 133 125 267 131 122 268 132 124 269 135 126 270 134 127 271 136 128 272 134 127 273 137 127 274 136 128 275 138 129 276 135 126 277 136 128 278 138 129 279 139 130 280 135 126 281 22 22 282 5 4 283 140 131 284 141 132 285 22 22 286 140 131 287 143 133 288 142 134 289 144 135 290 145 135 291 143 133 292 144 135 293 12 13 294 25 25 295 146 136 296 25 25 297 147 137 298 146 136 299 149 138 300 148 139 301 150 140 302 150 140 303 148 139 304 151 141 305 137 127 306 134 127 307 152 142 308 137 127 309 152 142 310 153 142 311 155 143 312 154 143 313 156 143 314 156 143 315 154 143 316 157 143 317 159 144 318 158 145 319 160 146 320 159 144 321 160 146 322 161 147 323 163 148 324 162 149 325 161 147 326 160 146 327 163 148 328 161 147 329 165 150 330 164 151 331 166 152 332 165 150 333 167 152 334 164 151 335 169 153 336 168 154 337 170 155 338 168 154 339 171 156 340 170 155 341 173 157 342 172 157 343 174 157 344 175 157 345 173 157 346 174 157 347 177 158 348 176 158 349 178 158 350 179 158 351 177 158 352 178 158 353 180 158 354 177 158 355 179 158 356 181 158 357 180 158 358 179 158 359 183 158 360 182 158 361 184 158 362 182 158 363 185 158 364 184 158 365 184 158 366 185 158 367 186 158 368 184 158 369 186 158 370 187 158 371 189 159 372 188 160 373 190 161 374 191 162 375 189 159 376 190 161 377 193 163 378 192 164 379 194 165 380 195 166 381 193 163 382 194 165 383 197 167 384 196 168 385 198 169 386 199 170 387 196 168 388 197 167 389 201 171 390 200 172 391 202 173 392 203 158 393 201 171 394 202 173 395 205 174 396 204 175 397 206 176 398 207 177 399 205 174 400 206 176 401 209 178 402 208 179 403 210 180 404 209 178 405 211 181 406 208 179 407 213 182 408 212 183 409 214 184 410 215 185 411 213 182 412 214 184 413 216 158 414 203 158 415 202 173 416 217 158 417 216 158 418 202 173 419 192 164 420 218 186 421 194 165 422 192 164 423 219 187 424 218 186 425 196 168 426 220 188 427 198 169 428 196 168 429 221 189 430 220 188 431 189 159 432 222 190 433 188 160 434 189 159 435 223 191 436 222 190 437 224 192 438 205 174 439 207 177 440 225 193 441 205 174 442 224 192 443 226 194 444 209 178 445 210 180 446 227 194 447 209 178 448 226 194 449 228 195 450 215 185 451 214 184 452 229 196 453 215 185 454 228 195 455 231 197 456 230 198 457 232 199 458 233 197 459 231 197 460 232 199 461</p>
</triangles>
</mesh>
</geometry>
<geometry id="rhand_001-mesh" name="rhand.001">
<mesh>
<source id="rhand_001-mesh-positions">
<float_array id="rhand_001-mesh-positions-array" count="87">2.778011 2.273765 5.130042 3.06574 0.08821594 2.167655 2.422231 -3.274382 4.407196 3.265238 1.538522 2.600985 -0.2379596 -2.260185 4.657442 2.778011 2.273765 5.130042 2.422231 -3.274382 4.407196 0.07467025 1.676382 5.23405 1.305043 -0.9048663 -1.375336 2.422231 -3.274382 4.407196 2.422231 -3.274382 4.407196 -1.005358 -3.818061 -0.2865489 2.778011 2.273765 5.130042 -1.034637 2.942011 -0.3298287 3.265238 1.538522 2.600985 -1.034637 2.942011 -0.3298287 1.337375 2.002555 -1.301305 1.337375 2.002555 -1.301305 -0.2379596 -2.260185 4.657442 2.422231 -3.274382 4.407196 -1.005358 -3.818061 -0.2865489 -2.932014 -2.661181 0.7087253 -2.978288 2.071842 0.5789062 -0.2379596 -2.260185 4.657442 -2.932014 -2.661181 0.7087253 0.07467025 1.676382 5.23405 -2.978288 2.071842 0.5789062 -1.034637 2.942011 -0.3298287 0.07467025 1.676382 5.23405</float_array>
<technique_common>
<accessor source="#rhand_001-mesh-positions-array" count="29" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="rhand_001-mesh-normals">
<float_array id="rhand_001-mesh-normals-array" count="87">0.9689381 -0.1598369 -0.1887094 0.9755342 -0.1206658 0.1837745 0.9840162 -0.08358746 0.1572431 0.9913859 -0.1277752 -0.02876865 0.05978167 -0.1427466 0.9879523 0.05059689 -0.1367784 0.9893087 0.04292088 -0.1317809 0.9903493 0.07110589 -0.1500877 0.9861124 0.8410963 -0.3387994 -0.4216303 0.866032 -0.3812081 -0.3235259 0.6430326 -0.6570332 -0.3934674 0.6430325 -0.6570332 -0.3934674 0.4138026 0.8924484 -0.1797311 0.08719176 0.9943338 0.06081229 0.3996711 0.903696 -0.1536123 0.3463175 0.9362118 -0.05976468 0.1847208 0.9819844 0.0398128 0.8957378 0.003113448 -0.4445717 -0.3091982 -0.8922247 0.3291375 -0.3202452 -0.8881588 0.3295711 -0.3406049 -0.8802959 0.3302537 -0.3544163 -0.8746847 0.3306294 -0.83219 -0.004393815 0.5544733 -0.8310183 -0.001987874 0.5562416 -0.8263828 0.007364511 0.5630608 -0.8366675 -0.01375502 0.5475386 -0.2872654 0.9200154 0.2665523 -0.2872655 0.9200155 0.2665524 -0.2166407 0.9417057 0.2574052</float_array>
<technique_common>
<accessor source="#rhand_001-mesh-normals-array" count="29" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="rhand_001-mesh-map-0">
<float_array id="rhand_001-mesh-map-0-array" count="96">0.293992 0.93805 0.251997 0.981785 0.265938 0.870761 0.285755 0.967072 0.251997 0.981785 0.293992 0.93805 0.251997 0.981785 0.285246 0.891056 0.265938 0.870761 0.251997 0.981785 0.273875 0.96983 0.285246 0.891056 0.362471 0.918178 0.293992 0.93805 0.265938 0.870761 0.362471 0.918178 0.265938 0.870761 0.366151 0.859882 0.367055 0.995156 0.251997 0.981785 0.285755 0.967072 0.361078 0.976357 0.367055 0.995156 0.285755 0.967072 0.361078 0.976357 0.285755 0.967072 0.293992 0.93805 0.361078 0.976357 0.293992 0.93805 0.362471 0.918178 0.265938 0.870761 0.285246 0.891056 0.366151 0.859882 0.285246 0.891056 0.36791 0.883032 0.366151 0.859882 0.285246 0.891056 0.370261 0.977744 0.36791 0.883032 0.273875 0.96983 0.370261 0.977744 0.285246 0.891056 0.367055 0.995156 0.370261 0.977744 0.273875 0.96983 0.251997 0.981785 0.367055 0.995156 0.273875 0.96983</float_array>
<technique_common>
<accessor source="#rhand_001-mesh-map-0-array" count="48" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="rhand_001-mesh-vertices">
<input semantic="POSITION" source="#rhand_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="16">
<input semantic="VERTEX" source="#rhand_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#rhand_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#rhand_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 3 3 3 0 1 4 1 0 5 5 4 6 4 5 7 6 6 8 5 4 9 7 7 10 4 5 11 8 8 12 1 0 13 9 9 14 8 8 15 10 10 16 11 11 17 13 12 18 12 13 19 14 14 20 16 15 21 15 16 22 14 14 23 17 17 24 3 3 25 1 0 26 17 17 27 1 0 28 8 8 29 19 18 30 18 19 31 20 20 32 18 19 33 21 21 34 20 20 35 23 22 36 22 23 37 24 24 38 25 25 39 22 23 40 23 22 41 27 26 42 26 27 43 28 28 44 12 13 45 15 16 46 28 28 47</p>
</triangles>
</mesh>
</geometry>
<geometry id="rloarm_001-mesh" name="rloarm.001">
<mesh>
<source id="rloarm_001-mesh-positions">
<float_array id="rloarm_001-mesh-positions-array" count="105">3.378531 3.822116 13.28634 7.700681 -3.564362 12.14009 3.406302 -6.381305 13.34841 7.687919 1.138841 12.11141 -0.7579885 -3.55084 12.05878 -0.7708036 1.152369 12.0302 7.700681 -3.564362 12.14009 5.910953 -3.33484 3.442938 3.406302 -6.381305 13.34841 -2.045778 -4.329892 -4.73583 -2.045778 -4.329892 -4.73583 -3.743759 -2.957175 -0.2733038 3.406302 -6.381305 13.34841 -0.7579885 -3.55084 12.05878 -3.743759 -2.957175 -0.2733038 -0.7708036 1.152369 12.0302 -0.7579885 -3.55084 12.05878 -3.761311 1.401191 -0.2987825 -3.761311 1.401191 -0.2987825 3.378531 3.822116 13.28634 -0.7708036 1.152369 12.0302 -2.117714 2.667929 -4.768697 3.378531 3.822116 13.28634 3.378531 3.822116 13.28634 5.904045 1.792378 3.41044 7.687919 1.138841 12.11141 3.378531 3.822116 13.28634 7.687919 1.138841 12.11141 5.910953 -3.33484 3.442938 7.700681 -3.564362 12.14009 5.904045 1.792378 3.41044 -2.045778 -4.329892 -4.73583 -2.117714 2.667929 -4.768697 -2.117714 2.667929 -4.768697 -2.045778 -4.329892 -4.73583</float_array>
<technique_common>
<accessor source="#rloarm_001-mesh-positions-array" count="35" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="rloarm_001-mesh-normals">
<float_array id="rloarm_001-mesh-normals-array" count="102">0.2668454 0.006592214 0.9637168 -0.01266497 0.006049573 0.9999016 -0.01084399 0.006053864 0.9999229 0.2668601 0.006600379 0.9637127 -0.2927044 0.00501877 0.9561898 -0.292694 0.005013108 0.956193 0.364 -0.9121272 -0.1884887 0.5182816 -0.8454301 -0.1289649 0.4501965 -0.8791015 -0.1565363 0.3236587 -0.9242674 -0.202423 -0.5313167 -0.8445522 0.06659144 -0.5243312 -0.8492734 0.06173789 -0.5688405 -0.8171529 0.09317523 -0.5805726 -0.8078352 0.1016757 -0.9719105 -0.001493752 0.2353463 -0.9968053 -0.006217539 -0.0796281 -0.9719319 -0.001218616 0.2352595 -0.9964494 -0.004504442 -0.084073 -0.5671733 0.8090913 0.1539021 -0.4712306 0.877269 0.09132856 -0.4575077 0.8853539 0.08267557 -0.1826477 0.9831518 -0.007248103 0.3008771 0.9463888 -0.1175642 0.5197235 0.8532786 -0.0424633 0.5197235 0.8532786 -0.0424633 0.2428265 0.9605842 -0.1353267 0.8817195 -0.001583278 -0.4717714 0.9795294 9.75618e-4 -0.201299 0.9794827 0.001429259 -0.2015235 0.8763554 -4.50625e-4 -0.481665 0.7149258 0.002011954 -0.6991974 0.7141531 0.00405389 -0.6999779 -0.9367881 -0.008742094 -0.349788 -0.9357175 -0.01127493 -0.3525701</float_array>
<technique_common>
<accessor source="#rloarm_001-mesh-normals-array" count="34" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="rloarm_001-mesh-map-0">
<float_array id="rloarm_001-mesh-map-0-array" count="120">0.377453 0.886664 0.377595 0.992482 0.376763 0.846308 0.377836 0.954042 0.377595 0.992482 0.377453 0.886664 0.377595 0.992482 0.40552 0.886857 0.376763 0.846308 0.377595 0.992482 0.405903 0.954235 0.40552 0.886857 0.487159 0.889952 0.377453 0.886664 0.376763 0.846308 0.610422 0.875697 0.487159 0.889952 0.376763 0.846308 0.562513 0.895362 0.610422 0.875697 0.376763 0.846308 0.40552 0.886857 0.562513 0.895362 0.376763 0.846308 0.405903 0.954235 0.562513 0.895362 0.40552 0.886857 0.405903 0.954235 0.562874 0.9578 0.562513 0.895362 0.377595 0.992482 0.562874 0.9578 0.405903 0.954235 0.377595 0.992482 0.611046 0.975947 0.562874 0.9578 0.487569 0.963404 0.377595 0.992482 0.377836 0.954042 0.611046 0.975947 0.377595 0.992482 0.487569 0.963404 0.487159 0.889952 0.377836 0.954042 0.377453 0.886664 0.487569 0.963404 0.377836 0.954042 0.487159 0.889952 0.487569 0.963404 0.487159 0.889952 0.610422 0.875697 0.611046 0.975947 0.487569 0.963404 0.610422 0.875697 0.562513 0.895362 0.611046 0.975947 0.610422 0.875697 0.562874 0.9578 0.611046 0.975947 0.562513 0.895362</float_array>
<technique_common>
<accessor source="#rloarm_001-mesh-map-0-array" count="60" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="rloarm_001-mesh-vertices">
<input semantic="POSITION" source="#rloarm_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="20">
<input semantic="VERTEX" source="#rloarm_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#rloarm_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#rloarm_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 3 3 3 0 1 4 1 0 5 0 1 6 4 4 7 2 2 8 0 1 9 5 5 10 4 4 11 7 6 12 6 7 13 8 8 14 9 9 15 7 6 16 8 8 17 11 10 18 10 11 19 12 12 20 13 13 21 11 10 22 12 12 23 15 14 24 14 15 25 16 16 26 15 14 27 17 17 28 14 15 29 19 18 30 18 19 31 20 18 32 22 20 33 21 21 34 18 19 35 24 22 36 23 23 37 25 24 38 21 21 39 26 25 40 24 22 41 28 26 42 27 27 43 29 28 44 30 29 45 27 27 46 28 26 47 30 29 48 28 26 49 31 30 50 32 31 51 30 29 52 31 30 53 14 15 54 33 32 55 34 33 56 17 17 57 33 32 58 14 15 59</p>
</triangles>
</mesh>
</geometry>
<geometry id="rarm_001-mesh" name="rarm.001">
<mesh>
<source id="rarm_001-mesh-positions">
<float_array id="rarm_001-mesh-positions-array" count="204">-1.100547 -2.330386 3.491357 1.330741 -2.330386 3.491357 -1.100547 -5.396702 1.313053 1.330741 -5.396702 1.313053 -1.100547 -5.396702 -1.917894 -1.100547 -5.396702 1.313053 1.330741 -5.396702 1.313053 1.330741 -5.396702 -1.917894 1.330741 -2.330386 -3.937223 -1.100547 -2.330386 -3.937223 -1.100547 -5.396702 -1.917894 1.330741 -5.396702 -1.917894 -2.935479 -2.315596 -2.190121 -2.935479 -3.731499 -1.016631 -1.100547 -5.396702 -1.917894 -2.935479 -2.317018 1.333024 -1.100547 -5.396702 1.313053 -2.935479 -3.731499 0.3282074 -1.100547 -5.396702 -1.917894 -1.100547 -5.396702 1.313053 3.165676 -3.731499 -1.016631 3.165676 -2.315596 -2.190121 1.330741 -5.396702 -1.917894 3.165676 -3.731499 0.3282074 1.330741 -5.396702 -1.917894 1.330741 -5.396702 1.313053 3.165676 -2.317018 1.333024 1.330741 -5.396702 1.313053 -2.935479 -2.315596 -2.190121 -2.935479 -2.317018 1.333024 -2.935479 -3.731499 0.3282074 -2.935479 -3.731499 -1.016631 3.165676 -2.315596 -2.190121 3.165676 -3.731499 -1.016631 3.165676 -3.731499 0.3282074 3.165676 -2.317018 1.333024 -1.100547 0.8282313 1.313053 1.330741 0.8282313 1.313053 -1.100547 -2.330386 3.491357 1.330741 -2.330386 3.491357 1.330741 0.8282313 -1.917894 -1.100547 0.8282313 -1.917894 -1.100547 -2.330386 -3.937223 1.330741 -2.330386 -3.937223 -1.100547 0.8282313 1.313053 -1.100547 0.8282313 -1.917894 1.330741 0.8282313 1.313053 1.330741 0.8282313 -1.917894 -1.100547 0.8282313 -1.917894 -2.935479 -0.8369694 -1.000471 -2.935479 -2.315596 -2.190121 -1.100547 0.8282313 -1.917894 -1.100547 0.8282313 1.313053 -2.935479 -0.8369694 0.3123099 -2.935479 -2.317018 1.333024 -1.100547 0.8282313 1.313053 3.165676 -0.8369694 -1.000471 1.330741 0.8282313 -1.917894 3.165676 -2.315596 -2.190121 1.330741 0.8282313 1.313053 3.165676 -2.317018 1.333024 3.165676 -0.8369694 0.3123099 1.330741 0.8282313 1.313053 1.330741 0.8282313 -1.917894 -2.935479 -0.8369694 -1.000471 -2.935479 -0.8369694 0.3123099 3.165676 -0.8369694 0.3123099 3.165676 -0.8369694 -1.000471</float_array>
<technique_common>
<accessor source="#rarm_001-mesh-positions-array" count="68" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="rarm_001-mesh-normals">
<float_array id="rarm_001-mesh-normals-array" count="177">0.3103153 -0.5505476 0.7749851 -0.3103154 -0.5505477 0.774985 0 -0.5791375 0.81523 0 -0.5791375 0.81523 0 -1 0 -0.2845191 -0.5272683 -0.8006479 0.284519 -0.5272683 -0.8006479 0 -0.5499997 -0.8351649 0 -0.5499996 -0.835165 -0.7172095 -0.635187 -0.2866147 -0.6515719 -0.4424802 -0.6161699 -0.6538087 -0.4435353 -0.6130341 -0.6937018 -0.4171279 0.5871815 -0.6937019 -0.417128 0.5871814 -0.7245802 -0.6179208 0.3052173 -0.672028 -0.7405258 0 0.6515715 -0.4424804 -0.6161702 0.7172093 -0.6351872 -0.2866148 0.6538084 -0.4435355 -0.6130343 0.6720277 -0.7405261 0 0.7245799 -0.6179209 0.3052175 0.6720276 -0.7405261 0 0.6937015 -0.4171281 0.5871818 0.6937016 -0.4171281 0.5871816 -1 0 0 -1 0 0 -1 0 0 -1 -2.50419e-7 0 1 -5.00837e-7 0 1 0 0 1 1.7586e-7 0 1 0 0 0 0.5677238 0.8232192 0 0.5677237 0.8232191 -0.3106999 0.539626 0.7824765 0.3106998 0.539626 0.7824766 0 0.53864 -0.8425362 0 0.53864 -0.842536 -0.2837926 0.5164942 -0.8078957 0.2837924 0.5164942 -0.8078958 0 1 0 -0.7186127 0.631901 -0.2903393 -0.6541206 0.4353458 -0.618547 -0.6507397 0.4337754 -0.623199 -0.6720274 0.7405263 0 -0.7260096 0.6145711 0.3085653 -0.6940949 0.4086965 0.5926209 -0.6940948 0.4086965 0.5926209 0.6541201 0.4353461 -0.6185473 0.7186124 0.6319013 -0.2903395 0.6507393 0.4337756 -0.6231992 0.6940945 0.4086968 0.5926212 0.7260093 0.6145714 0.3085654 0.672027 0.7405267 0 0.6720271 0.7405267 0 -1 0 0 -1 2.45651e-7 0 1 -2.76088e-7 0 1 0 0</float_array>
<technique_common>
<accessor source="#rarm_001-mesh-normals-array" count="59" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="rarm_001-mesh-map-0">
<float_array id="rarm_001-mesh-map-0-array" count="264">0.682544 0.469427 0.660307 0.468917 0.629353 0.517329 0.682544 0.469427 0.629353 0.517329 0.63828 0.534259 0.629353 0.517329 0.583441 0.517329 0.63828 0.534259 0.583441 0.517329 0.572626 0.534259 0.63828 0.534259 0.554747 0.468917 0.531593 0.469427 0.583441 0.517329 0.583441 0.517329 0.531593 0.469427 0.572626 0.534259 0.596248 0.491038 0.579573 0.468684 0.583441 0.517329 0.579573 0.468684 0.554747 0.468917 0.583441 0.517329 0.660307 0.468917 0.629637 0.468707 0.629353 0.517329 0.629637 0.468707 0.615358 0.491038 0.629353 0.517329 0.615358 0.491038 0.583441 0.517329 0.629353 0.517329 0.615358 0.491038 0.596248 0.491038 0.583441 0.517329 0.579573 0.468684 0.596248 0.491038 0.583441 0.517329 0.554747 0.468917 0.579573 0.468684 0.583441 0.517329 0.583441 0.517329 0.615358 0.491038 0.629353 0.517329 0.596248 0.491038 0.615358 0.491038 0.583441 0.517329 0.629637 0.468707 0.660307 0.468917 0.629353 0.517329 0.615358 0.491038 0.629637 0.468707 0.629353 0.517329 0.629637 0.468707 0.579573 0.468684 0.615358 0.491038 0.579573 0.468684 0.596248 0.491038 0.615358 0.491038 0.596248 0.491038 0.579573 0.468684 0.615358 0.491038 0.579573 0.468684 0.629637 0.468707 0.615358 0.491038 0.63828 0.534317 0.629353 0.517911 0.660307 0.468043 0.63828 0.534317 0.660307 0.468043 0.682544 0.467533 0.583441 0.517911 0.572626 0.534317 0.554747 0.468043 0.554747 0.468043 0.572626 0.534317 0.531593 0.467533 0.583441 0.517911 0.629353 0.517911 0.63828 0.534317 0.572626 0.534317 0.583441 0.517911 0.63828 0.534317 0.596478 0.491621 0.583441 0.517911 0.579573 0.468276 0.579573 0.468276 0.583441 0.517911 0.554747 0.468043 0.629353 0.517911 0.583441 0.517911 0.615133 0.491621 0.583441 0.517911 0.596478 0.491621 0.615133 0.491621 0.629353 0.517911 0.629637 0.468253 0.660307 0.468043 0.629353 0.517911 0.615133 0.491621 0.629637 0.468253 0.583441 0.517911 0.596478 0.491621 0.579573 0.468276 0.583441 0.517911 0.579573 0.468276 0.554747 0.468043 0.629637 0.468253 0.629353 0.517911 0.660307 0.468043 0.615133 0.491621 0.629353 0.517911 0.629637 0.468253 0.583441 0.517911 0.629353 0.517911 0.615133 0.491621 0.596478 0.491621 0.583441 0.517911 0.615133 0.491621 0.615133 0.491621 0.596478 0.491621 0.579573 0.468276 0.615133 0.491621 0.579573 0.468276 0.629637 0.468253 0.579573 0.468276 0.615133 0.491621 0.629637 0.468253 0.596478 0.491621 0.615133 0.491621 0.579573 0.468276</float_array>
<technique_common>
<accessor source="#rarm_001-mesh-map-0-array" count="132" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="rarm_001-mesh-vertices">
<input semantic="POSITION" source="#rarm_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="44">
<input semantic="VERTEX" source="#rarm_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#rarm_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#rarm_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 1 0 3 2 2 4 3 3 5 5 4 6 4 4 7 6 4 8 4 4 9 7 4 10 6 4 11 9 5 12 8 6 13 10 7 14 10 7 15 8 6 16 11 8 17 13 9 18 12 10 19 14 11 20 12 10 21 9 5 22 14 11 23 0 1 24 15 12 25 16 13 26 15 12 27 17 14 28 16 13 29 17 14 30 18 15 31 19 15 32 17 14 33 13 9 34 18 15 35 21 16 36 20 17 37 22 18 38 8 6 39 21 16 40 22 18 41 24 19 42 23 20 43 25 21 44 20 17 45 23 20 46 24 19 47 26 22 48 1 0 49 27 23 50 23 20 51 26 22 52 27 23 53 29 24 54 28 25 55 30 26 56 28 25 57 31 27 58 30 26 59 33 28 60 32 29 61 34 30 62 32 29 63 35 31 64 34 30 65 37 32 66 36 33 67 38 34 68 37 32 69 38 34 70 39 35 71 41 36 72 40 37 73 42 38 74 42 38 75 40 37 76 43 39 77 45 40 78 44 40 79 46 40 80 47 40 81 45 40 82 46 40 83 49 41 84 48 42 85 50 43 86 50 43 87 48 42 88 42 38 89 52 44 90 51 44 91 53 45 92 51 44 93 49 41 94 53 45 95 55 46 96 54 47 97 38 34 98 55 46 99 53 45 100 54 47 101 57 48 102 56 49 103 58 50 104 57 48 105 58 50 106 43 39 107 60 51 108 59 51 109 39 35 110 61 52 111 59 51 112 60 51 113 63 53 114 62 54 115 61 52 116 56 49 117 63 53 118 61 52 119 65 55 120 64 56 121 28 25 122 65 55 123 28 25 124 29 24 125 32 29 126 66 57 127 35 31 128 67 58 129 66 57 130 32 29 131</p>
</triangles>
</mesh>
</geometry>
<geometry id="ruparm_001-mesh" name="ruparm.001">
<mesh>
<source id="ruparm_001-mesh-positions">
<float_array id="ruparm_001-mesh-positions-array" count="483">-5.499906 -12.08298 3.697476 -2.296521 -12.40393 1.338241 -3.36972 -12.55492 -1.257637 -3.297667 -12.18216 3.667144 -5.507023 -12.46705 -1.337852 -6.508247 -12.24519 0.9910507 -2.296521 -12.40393 1.338241 -1.038326 -8.241478 0.5229788 -3.36972 -12.55492 -1.257637 -1.038326 -8.241478 0.5229788 -2.761976 -7.855269 -3.86757 -2.761976 -7.855269 -3.86757 -5.507023 -12.46705 -1.337852 -3.36972 -12.55492 -1.257637 -6.263063 -7.075344 -4.057137 -6.263063 -7.075344 -4.057137 -7.934751 -6.705039 -0.1684359 -5.507023 -12.46705 -1.337852 -6.508247 -12.24519 0.9910507 -6.318902 -7.067279 4.406267 -5.499906 -12.08298 3.697476 -7.934751 -6.705039 -0.1684359 -5.499906 -12.08298 3.697476 -2.710093 -7.871173 4.411684 -3.297667 -12.18216 3.667144 -6.318902 -7.067279 4.406267 -3.297667 -12.18216 3.667144 -1.038326 -8.241478 0.5229788 -2.710093 -7.871173 4.411684 -2.130426 -1.645131 0.2423359 -2.710409 -1.380013 -1.324771 -1.038326 -8.241478 0.5229788 -2.710409 -1.380013 -1.324771 -6.263063 -7.075344 -4.057137 -2.761976 -7.855269 -3.86757 -3.929375 -0.9745066 -1.382405 -3.929375 -0.9745066 -1.382405 -7.934751 -6.705039 -0.1684359 -6.263063 -7.075344 -4.057137 -4.530078 -0.8413935 0.01493293 -7.934751 -6.705039 -0.1684359 -3.988535 -1.096862 1.648297 -2.73121 -1.512018 1.639676 -3.988535 -1.096862 1.648297 -2.73121 -1.512018 1.639676 -1.038326 -8.241478 0.5229788 -5.434178 -11.24112 2.319045 -3.048447 -11.68681 1.940471 -4.713413 -15.62424 1.166548 -3.048447 -11.68681 1.940471 -3.384985 -12.56037 -0.3305171 -4.713413 -15.62424 1.166548 -5.770717 -12.11469 0.04805195 -5.434178 -11.24112 2.319045 -4.713413 -15.62424 1.166548 -3.384985 -12.56037 -0.3305171 -5.770717 -12.11469 0.04805195 -4.713413 -15.62424 1.166548 -6.297546 -0.005390167 2.204741 0.13018 -0.005390167 4.125395 -4.771862 -2.868521 1.291047 0.13018 -0.005390167 4.125395 -1.056201 -3.529259 2.722532 -4.771862 -2.868521 -1.37346 -6.297546 -0.005390167 -2.058468 -4.771862 -2.868521 1.291047 -6.297546 -0.005390167 2.204741 -4.771862 2.637543 -1.37346 -1.056201 3.738745 -2.60648 -4.771862 2.637543 1.291047 -1.056201 3.738745 2.722532 0.13018 -0.005390167 4.125395 0.13018 -0.005390167 -3.814831 -1.056201 -3.529259 2.722532 -1.056201 -3.529259 -2.60648 -1.056201 -3.529259 -2.60648 -4.771862 -2.868521 1.291047 -1.056201 -3.529259 2.722532 -4.771862 -2.868521 -1.37346 0.13018 -0.005390167 -3.814831 -4.771862 -2.868521 -1.37346 -1.056201 -3.529259 -2.60648 -6.297546 -0.005390167 -2.058468 -6.297546 -0.005390167 2.204741 -4.771862 2.637543 1.291047 0.13018 -0.005390167 4.125395 -1.056201 3.738745 2.722532 -11.41693 -0.5951038 -1.460754 -8.42093 1.409326 0.9843912 -11.41693 -0.5951038 1.651382 -8.42093 1.409326 -0.9607023 -1.056201 3.738745 -2.60648 -4.771862 2.637543 -1.37346 -6.297546 -0.005390167 -2.058468 -1.056201 3.738745 2.722532 -1.056201 3.738745 -2.60648 -8.42093 1.409326 0.9843912 -11.41693 -0.5951038 1.651382 -6.297546 -0.005390167 2.204741 -6.297546 -0.005390167 -2.058468 -11.41693 -0.5951038 -1.460754 -11.41693 -0.5951038 1.651382 -8.42093 1.409326 -0.9607023 -6.297546 -0.005390167 -2.058468 -11.41693 -0.5951038 -1.460754 -5.9149 3.4518 -10.20153 -5.811922 3.885935 -10.14735 -4.020488 3.370013 -2.957079 -4.278172 1.949762 -3.15825 -5.450867 3.666218 -10.30007 -5.811922 3.885935 -10.14735 -5.9149 3.4518 -10.20153 -5.553845 3.232078 -10.35417 -5.9149 3.4518 -10.20153 -4.278172 1.949762 -3.15825 -3.151505 1.168884 -3.653357 -5.553845 3.232078 -10.35417 -5.811922 3.885935 -10.14735 -5.450867 3.666218 -10.30007 -2.893823 2.589223 -3.452195 -4.020488 3.370013 -2.957079 -5.450867 3.666218 -10.30007 -5.553845 3.232078 -10.35417 -2.893823 2.589223 -3.452195 -3.151505 1.168884 -3.653357 -2.537672 1.803362 -0.6888331 -2.92111 2.04689 -0.524695 -2.92111 2.04689 -0.524695 -3.023613 1.578899 -0.5856457 -3.023613 1.578899 -0.5856457 -2.640174 1.335377 -0.7497837 -2.640174 1.335377 -0.7497837 -2.537672 1.803362 -0.6888331 -7.340613 8.657319 -6.173632 -7.173175 9.006586 -5.945696 -4.261798 5.000261 -0.4095688 -4.736351 3.86648 -1.192798 -7.173175 9.006586 -5.945696 -7.340613 8.657319 -6.173632 -7.043384 8.527606 -6.484796 -6.876027 8.876873 -6.256868 -7.340613 8.657319 -6.173632 -4.736351 3.86648 -1.192798 -3.824973 3.387576 -2.224363 -7.043384 8.527606 -6.484796 -7.173175 9.006586 -5.945696 -6.876027 8.876873 -6.256868 -3.350342 4.521433 -1.441131 -4.261798 5.000261 -0.4095688 -6.876027 8.876873 -6.256868 -7.043384 8.527606 -6.484796 -3.350342 4.521433 -1.441131 -3.824973 3.387576 -2.224363 -2.633927 2.479759 0.482108 -2.947764 2.625446 0.8190335 -2.947764 2.625446 0.8190335 -3.120422 2.249837 0.5692856 -3.120422 2.249837 0.5692856 -2.806585 2.104151 0.2323639 -2.633927 2.479759 0.482108 -2.806585 2.104151 0.2323639</float_array>
<technique_common>
<accessor source="#ruparm_001-mesh-positions-array" count="161" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="ruparm_001-mesh-normals">
<float_array id="ruparm_001-mesh-normals-array" count="468">-0.04380249 -0.9961421 0.07604205 -0.04381531 -0.996142 0.07603514 -0.04380995 -0.9961413 0.07604771 -0.04381483 -0.9961428 0.07602602 -0.043823 -0.9961413 0.07604026 -0.04380917 -0.9961404 0.07605975 0.87815 -0.3327568 -0.3436941 0.958705 -0.2785129 0.05757814 0.8755432 -0.3260468 -0.3565356 0.9260479 -0.07407385 -0.3700655 0.8724642 -0.3186019 -0.370539 -0.01015824 -0.4762523 -0.8792501 -0.03886693 -0.4626857 -0.88567 0.01277083 -0.4867253 -0.8734619 -0.0533877 -0.4556313 -0.8885663 -0.8859552 -0.3018189 -0.3521204 -0.8859562 -0.3018202 -0.3521168 -0.8859537 -0.3018173 -0.3521254 -0.9662846 -0.2570096 0.01549905 -0.9143441 -0.1991269 0.3525953 -0.9313775 0.1128043 0.3461374 -0.9327573 -0.1741033 0.3156768 0.02798867 0.1010189 0.9944908 -0.0106424 -0.1603206 0.9870077 0.005870819 -0.1709623 0.9852601 0.03668624 0.155543 0.9871477 0.8949362 -0.1915801 0.4029719 0.894937 -0.1915831 0.4029688 0.9178568 -0.01940143 0.3964372 0.9325435 0.1373305 -0.3339205 0.9863843 0.1638884 0.01366317 0.9282655 0.1326417 -0.3474612 0.1340435 0.3594364 -0.9234921 0.1507833 0.3495723 -0.9246966 0.1305155 0.3614943 -0.9231942 0.1585001 0.3449687 -0.9251348 -0.7925873 0.472275 -0.3856964 -0.7925846 0.4722709 -0.3857069 -0.7925881 0.4722762 -0.3856934 -0.8640768 0.5025893 -0.02784854 -0.8178282 0.4661656 0.337412 -0.8190677 0.4695711 0.3295924 0.1176797 0.380756 0.9171567 0.1296755 0.3736568 0.9184579 0.9114745 0.1669033 0.3759757 0.9114802 0.1669075 0.3759598 0.1091476 -0.2359504 0.9656161 0.1091476 -0.2359504 0.9656161 0.1091475 -0.2359504 0.965616 0.9199268 -0.3918259 0.01439774 0.9199268 -0.3918257 0.01439774 0.9199268 -0.3918259 0.01439774 -0.9506381 -0.2151245 0.2236264 -0.9506381 -0.2151245 0.2236264 -0.9506381 -0.2151245 0.2236264 -0.2107073 -0.3538925 -0.9112423 -0.2107073 -0.3538925 -0.9112423 -0.2602656 -0.4166499 0.8710136 -0.2602657 -0.4166499 0.8710137 -0.3012364 -0.3588242 0.8834601 -0.4045842 -0.002283334 0.914498 -0.3849737 -0.226568 0.8946856 -0.8825219 -0.4702715 0 -0.8825217 -0.4702717 0 -0.8825218 -0.4702714 0 -0.8825219 -0.4702712 0 -0.2841514 0.9587795 0 -0.2994622 0.9541082 0 -0.2994142 0.9541233 0 -0.2841513 0.9587795 0 0.9999761 -0.006912708 0 0.9999785 -0.006572008 0 0.9477304 -0.3190724 0 0.9477304 -0.3190724 0 -0.1750784 -0.9845545 0 -0.1750784 -0.9845546 0 -0.2772779 -0.3027797 -0.9118341 -0.3189994 -3.50181e-4 -0.9477549 -0.3404816 -0.20038 -0.9186514 -0.2471058 -0.3480376 -0.9043278 -0.2840029 0.3857125 0.8778203 -0.2166555 0.4527484 0.8649158 -0.2564309 0.4447131 0.8581804 -0.4043182 0.2057908 0.891166 -0.4450303 0.8955156 0 -0.5560619 0.8311409 0 -0.5560619 0.8311409 0 -0.4424946 0.8967712 0 -0.2681717 0.3259127 -0.9065677 -0.3578963 0.1821601 -0.915821 -0.2335895 0.3681012 -0.8999652 0.9532882 0.3020625 0 0.9532882 0.3020625 0 -0.1734657 0.4809724 0.8594041 -0.1501403 0.5068734 0.8488447 0.1144354 -0.9934307 0 0.1144354 -0.9934307 0 0.1144354 -0.9934307 0 -0.1780628 0.4223815 -0.8887562 -0.1545498 0.4503807 -0.8793587 -0.1545498 0.4503807 -0.8793587 -0.9485932 0.1937763 0.2502434 -0.9498834 0.1870008 0.2505043 -0.9292808 0.1203768 0.349209 -0.9278725 0.1204285 0.352916 -0.2852191 0.1850179 -0.9404353 -0.2851778 0.1849246 -0.9404661 -0.2851366 0.1848313 -0.940497 -0.552823 -0.831911 0.04807353 -0.5439551 -0.836807 -0.06218469 -0.5542493 -0.8310783 0.04600644 -0.5387886 -0.8398955 -0.06544172 0.50296 0.8627366 -0.05212277 0.508009 0.8595986 -0.0549311 0.5780811 0.8153107 0.03302943 0.576543 0.8165054 0.03028512 0.9151759 -0.1643655 -0.368018 0.9139248 -0.1709104 -0.3681455 0.9531213 -0.1380318 -0.2692711 0.9531173 -0.1345285 -0.2710527 0.5871808 0.7927352 0.163676 0.5794507 0.7967574 0.1715074 -0.8838767 0.1244121 0.45087 -0.8828282 0.1347643 0.4499479 -0.4959487 -0.86032 0.1178328 -0.5031334 -0.8552654 0.1240084 0.9684045 -0.1787973 -0.1738518 0.9658275 -0.1883546 -0.1780444 -0.8574905 0.07932543 0.5083479 -0.8596063 0.0733217 0.5056689 -0.8314485 -0.03355687 0.5545877 -0.8294311 -0.03536111 0.5574889 -0.4147768 0.6283463 -0.6581346 -0.4148404 0.6283158 -0.6581237 -0.4148404 0.6283157 -0.6581237 -0.4149041 0.6282851 -0.6581128 -0.6419456 -0.7312717 -0.2305377 -0.6527451 -0.6822617 -0.3293067 -0.6435797 -0.7294916 -0.2316188 -0.6486593 -0.6835507 -0.3346636 0.5966587 0.7618375 0.2521947 0.6006888 0.7602937 0.2472374 0.6782686 0.6765075 0.2868615 0.6764574 0.6789363 0.2853963 0.8086695 0.004879593 -0.588243 0.8065667 -7.09759e-4 -0.5911428 0.8657727 -0.01841491 -0.5000985 0.8647158 -0.01784658 -0.5019445 0.7065474 0.5929657 0.3862415 0.7008866 0.5929299 0.3964747 -0.7691781 -0.08095628 0.6338858 -0.7669358 -0.07149434 0.6377288 -0.578269 -0.7918961 -0.1962285 -0.583549 -0.7902453 -0.1870375 0.8953789 -0.1109731 -0.4312559 0.8927319 -0.121948 -0.4337725</float_array>
<technique_common>
<accessor source="#ruparm_001-mesh-normals-array" count="156" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="ruparm_001-mesh-map-0">
<float_array id="ruparm_001-mesh-map-0-array" count="576">0.006911993 0.860554 0.013785 0.933462 0.003678977 0.88498 0.01166194 0.88334 0.013785 0.933462 0.006911993 0.860554 0.01031094 0.956411 0.005560994 0.933624 0.003678977 0.88498 0.013785 0.933462 0.01031094 0.956411 0.003678977 0.88498 0.09605598 0.831918 0.006911993 0.860554 0.003678977 0.88498 0.104327 0.871149 0.09605598 0.831918 0.003678977 0.88498 0.005560994 0.933624 0.104327 0.871149 0.003678977 0.88498 0.12103 0.95083 0.104327 0.871149 0.005560994 0.933624 0.128961 0.988878 0.12103 0.95083 0.005560994 0.933624 0.01031094 0.956411 0.128961 0.988878 0.005560994 0.933624 0.013785 0.933462 0.121203 0.952102 0.01031094 0.956411 0.121203 0.952102 0.128961 0.988878 0.01031094 0.956411 0.103987 0.869967 0.013785 0.933462 0.01166194 0.88334 0.103987 0.869967 0.121203 0.952102 0.013785 0.933462 0.09605598 0.831918 0.01166194 0.88334 0.006911993 0.860554 0.09605598 0.831918 0.103987 0.869967 0.01166194 0.88334 0.243003 0.869975 0.237326 0.856775 0.09605598 0.831918 0.104327 0.871149 0.243003 0.869975 0.09605598 0.831918 0.12103 0.95083 0.243003 0.869975 0.104327 0.871149 0.251689 0.897717 0.243003 0.869975 0.12103 0.95083 0.128961 0.988878 0.251689 0.897717 0.12103 0.95083 0.254539 0.911389 0.251689 0.897717 0.128961 0.988878 0.249067 0.899064 0.128961 0.988878 0.121203 0.952102 0.249067 0.899064 0.254539 0.911389 0.128961 0.988878 0.240177 0.870447 0.121203 0.952102 0.103987 0.869967 0.240177 0.870447 0.249067 0.899064 0.121203 0.952102 0.240177 0.870447 0.103987 0.869967 0.09605598 0.831918 0.237326 0.856775 0.240177 0.870447 0.09605598 0.831918 0.02802497 0.842462 0.09941798 0.82022 0.065521 0.79966 0.01049196 0.778244 0.02802497 0.842462 0.065521 0.79966 0.09941798 0.82022 0.08188498 0.756002 0.065521 0.79966 0.08188498 0.756002 0.01049196 0.778244 0.065521 0.79966 0.006321966 0.772408 0.150835 0.715824 0.116535 0.688905 0.006321966 0.772408 0.116535 0.688905 0.03299498 0.731078 0.150835 0.590226 0.116535 0.610407 0.116535 0.688905 0.150835 0.715824 0.150835 0.590226 0.116535 0.688905 0.03299498 0.574081 0.116535 0.610407 0.116535 0.688905 0.03299498 0.731078 0.03299498 0.574081 0.116535 0.688905 0.006321966 0.538482 0.006321966 0.772408 0.03299498 0.731078 0.03299498 0.574081 0.006321966 0.538482 0.03299498 0.731078 0.116535 0.688905 0.03299498 0.574081 0.03299498 0.731078 0.116535 0.688905 0.116535 0.610407 0.03299498 0.574081 0.116535 0.610407 0.006321966 0.538482 0.03299498 0.574081 0.150835 0.590226 0.006321966 0.538482 0.116535 0.610407 0.116535 0.688905 0.150835 0.715824 0.006321966 0.772408 0.03299498 0.731078 0.116535 0.688905 0.006321966 0.772408 0.198575 0.679871 0.265933 0.607835 0.265933 0.699521 0.198575 0.679871 0.198575 0.622567 0.265933 0.607835 0.116535 0.610407 0.03299498 0.574081 0.006321966 0.538482 0.116535 0.610407 0.006321966 0.538482 0.150835 0.590226 0.006321966 0.538482 0.03299498 0.731078 0.006321966 0.772408 0.03299498 0.574081 0.03299498 0.731078 0.006321966 0.538482 0.150835 0.715824 0.198575 0.679871 0.265933 0.699521 0.116535 0.688905 0.198575 0.679871 0.150835 0.715824 0.150835 0.590226 0.150835 0.715824 0.265933 0.607835 0.265933 0.607835 0.150835 0.715824 0.265933 0.699521 0.198575 0.622567 0.116535 0.610407 0.150835 0.590226 0.198575 0.622567 0.150835 0.590226 0.265933 0.607835 0.116535 0.688905 0.198575 0.622567 0.198575 0.679871 0.116535 0.688905 0.116535 0.610407 0.198575 0.622567 0.419244 0.550966 0.421936 0.557124 0.526384 0.538825 0.526384 0.538825 0.421936 0.557124 0.531979 0.557124 0.419244 0.550966 0.415501 0.557124 0.421936 0.557124 0.421936 0.557124 0.415501 0.557124 0.420191 0.562001 0.531979 0.557124 0.421936 0.557124 0.527306 0.578542 0.421936 0.557124 0.420191 0.562001 0.527306 0.578542 0.415501 0.557124 0.419244 0.550966 0.520711 0.557124 0.419244 0.550966 0.526384 0.538825 0.520711 0.557124 0.420191 0.562001 0.415501 0.557124 0.520711 0.557124 0.420191 0.562001 0.520711 0.557124 0.527306 0.578542 0.520711 0.557124 0.526384 0.538825 0.569093 0.557124 0.526384 0.538825 0.569766 0.549518 0.569093 0.557124 0.569766 0.549518 0.526384 0.538825 0.531979 0.557124 0.569766 0.549518 0.531979 0.557124 0.571645 0.557124 0.571645 0.557124 0.531979 0.557124 0.570973 0.564881 0.570973 0.564881 0.531979 0.557124 0.527306 0.578542 0.520711 0.557124 0.570973 0.564881 0.527306 0.578542 0.520711 0.557124 0.569093 0.557124 0.570973 0.564881 0.419244 0.550966 0.421936 0.557124 0.526384 0.538825 0.526384 0.538825 0.421936 0.557124 0.531979 0.557124 0.421936 0.557124 0.419244 0.550966 0.420191 0.562001 0.419244 0.550966 0.415501 0.557124 0.420191 0.562001 0.531979 0.557124 0.421936 0.557124 0.527306 0.578542 0.421936 0.557124 0.420191 0.562001 0.527306 0.578542 0.415501 0.557124 0.419244 0.550966 0.520711 0.557124 0.419244 0.550966 0.526384 0.538825 0.520711 0.557124 0.420191 0.562001 0.415501 0.557124 0.520711 0.557124 0.420191 0.562001 0.520711 0.557124 0.527306 0.578542 0.520711 0.557124 0.526384 0.538825 0.569093 0.557124 0.526384 0.538825 0.569766 0.549518 0.569093 0.557124 0.526384 0.538825 0.531979 0.557124 0.569766 0.549518 0.569766 0.549518 0.531979 0.557124 0.571645 0.557124 0.571645 0.557124 0.531979 0.557124 0.570973 0.564881 0.531979 0.557124 0.527306 0.578542 0.570973 0.564881 0.527306 0.578542 0.569093 0.557124 0.570973 0.564881 0.527306 0.578542 0.520711 0.557124 0.569093 0.557124</float_array>
<technique_common>
<accessor source="#ruparm_001-mesh-map-0-array" count="288" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="ruparm_001-mesh-vertices">
<input semantic="POSITION" source="#ruparm_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="96">
<input semantic="VERTEX" source="#ruparm_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#ruparm_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#ruparm_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 3 3 3 0 1 4 1 0 5 5 4 6 4 5 7 2 2 8 0 1 9 5 4 10 2 2 11 7 6 12 6 7 13 8 8 14 10 9 15 9 10 16 8 8 17 12 11 18 11 12 19 13 13 20 14 14 21 11 12 22 12 11 23 16 15 24 15 16 25 17 17 26 18 18 27 16 15 28 17 17 29 20 19 30 19 20 31 18 18 32 19 20 33 21 21 34 18 18 35 23 22 36 22 23 37 24 24 38 23 22 39 25 25 40 22 23 41 27 26 42 26 27 43 6 7 44 27 26 45 28 28 46 26 27 47 30 29 48 29 30 49 31 31 50 10 9 51 30 29 52 31 31 53 33 32 54 32 33 55 34 34 56 35 35 57 32 33 58 33 32 59 37 36 60 36 37 61 38 38 62 39 39 63 36 37 64 37 36 65 41 40 66 40 41 67 19 20 68 41 40 69 39 39 70 40 41 71 42 42 72 25 25 73 23 22 74 42 42 75 43 43 76 25 25 77 44 44 78 28 28 79 45 45 80 29 30 81 44 44 82 45 45 83 47 46 84 46 47 85 48 48 86 50 49 87 49 50 88 51 51 89 53 52 90 52 53 91 54 54 92 56 55 93 55 55 94 57 56 95 59 57 96 58 58 97 60 59 98 61 60 99 60 59 100 62 61 101 64 62 102 63 63 103 65 64 104 66 65 105 64 62 106 65 64 107 68 66 108 67 67 109 69 68 110 70 69 111 68 66 112 69 68 113 72 70 114 71 71 115 73 72 116 74 73 117 72 70 118 73 72 119 76 74 120 75 74 121 77 75 122 76 74 123 78 74 124 75 74 125 80 76 126 79 77 127 81 78 128 82 79 129 79 77 130 80 76 131 84 80 132 83 81 133 85 82 134 86 83 135 84 80 136 61 60 137 88 84 138 87 85 139 89 86 140 88 84 141 90 87 142 87 85 143 92 88 144 91 89 145 79 77 146 92 88 147 79 77 148 93 90 149 72 70 150 94 91 151 71 71 152 95 92 153 94 91 154 72 70 155 83 81 156 96 93 157 97 94 158 84 80 159 96 93 160 83 81 161 99 95 162 98 96 163 100 96 164 100 96 165 98 96 166 101 97 167 102 98 168 92 88 169 93 90 170 102 98 171 103 99 172 104 100 173 69 68 174 90 87 175 88 84 176 69 68 177 67 67 178 90 87 179 106 101 180 105 102 181 107 103 182 107 103 183 105 102 184 108 104 185 110 105 186 109 106 187 111 106 188 111 106 189 109 106 190 112 107 191 114 108 192 113 109 193 115 110 194 113 109 195 116 111 196 115 110 197 118 112 198 117 113 199 119 114 200 117 113 201 120 115 202 119 114 203 122 116 204 121 117 205 123 118 206 122 116 207 123 118 208 124 119 209 119 114 210 120 115 211 125 120 212 120 115 213 126 121 214 125 120 215 127 122 216 107 103 217 108 104 218 127 122 219 108 104 220 128 123 221 129 124 222 114 108 223 130 125 224 130 125 225 114 108 226 115 110 227 123 118 228 131 126 229 124 119 230 123 118 231 132 127 232 131 126 233 134 128 234 133 129 235 135 130 236 135 130 237 133 129 238 136 131 239 138 132 240 137 133 241 139 134 242 137 133 243 140 135 244 139 134 245 142 136 246 141 137 247 143 138 248 141 137 249 144 139 250 143 138 251 146 140 252 145 141 253 147 142 254 145 141 255 148 143 256 147 142 257 150 144 258 149 145 259 151 146 260 150 144 261 151 146 262 152 147 263 147 142 264 148 143 265 153 148 266 148 143 267 154 149 268 153 148 269 135 130 270 136 131 271 155 150 272 155 150 273 136 131 274 156 151 275 157 152 276 142 136 277 158 153 278 142 136 279 143 138 280 158 153 281 152 147 282 159 154 283 160 155 284 152 147 285 151 146 286 159 154 287</p>
</triangles>
</mesh>
</geometry>
<geometry id="ac2_001-mesh" name="ac2.001">
<mesh>
<source id="ac2_001-mesh-positions">
<float_array id="ac2_001-mesh-positions-array" count="9">0.05951666 -0.03041875 1.395396 0 -0.03041875 23.54128 -0.05951666 -0.03041875 1.395396</float_array>
<technique_common>
<accessor source="#ac2_001-mesh-positions-array" count="3" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="ac2_001-mesh-normals">
<float_array id="ac2_001-mesh-normals-array" count="3">0 1 0</float_array>
<technique_common>
<accessor source="#ac2_001-mesh-normals-array" count="1" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="ac2_001-mesh-map-0">
<float_array id="ac2_001-mesh-map-0-array" count="6">0 0 0 0 0 0</float_array>
<technique_common>
<accessor source="#ac2_001-mesh-map-0-array" count="3" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="ac2_001-mesh-vertices">
<input semantic="POSITION" source="#ac2_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="1">
<input semantic="VERTEX" source="#ac2_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#ac2_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#ac2_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 0 1 2 0 2</p>
</triangles>
</mesh>
</geometry>
<geometry id="ac1_001-mesh" name="ac1.001">
<mesh>
<source id="ac1_001-mesh-positions">
<float_array id="ac1_001-mesh-positions-array" count="9">0.05951666 -0.03041875 1.395396 0 -0.03041875 23.54128 -0.05951666 -0.03041875 1.395396</float_array>
<technique_common>
<accessor source="#ac1_001-mesh-positions-array" count="3" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="ac1_001-mesh-normals">
<float_array id="ac1_001-mesh-normals-array" count="3">0 1 0</float_array>
<technique_common>
<accessor source="#ac1_001-mesh-normals-array" count="1" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="ac1_001-mesh-map-0">
<float_array id="ac1_001-mesh-map-0-array" count="6">0 0 0 0 0 0</float_array>
<technique_common>
<accessor source="#ac1_001-mesh-map-0-array" count="3" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="ac1_001-mesh-vertices">
<input semantic="POSITION" source="#ac1_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="1">
<input semantic="VERTEX" source="#ac1_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#ac1_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#ac1_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 0 1 2 0 2</p>
</triangles>
</mesh>
</geometry>
<geometry id="gunpod_001-mesh" name="gunpod.001">
<mesh>
<source id="gunpod_001-mesh-positions">
<float_array id="gunpod_001-mesh-positions-array" count="288">2.288481 -0.7864994 -3.684014 2.288481 1.072638 -3.684014 0.3032727 -1.153959 -4.05377 0.3032727 1.494594 -4.05377 4.323442 2.052587 -1.347899 4.323442 -1.839843 -1.347899 4.323442 -1.839843 2.052899 4.323442 2.052587 2.052899 -0.1254846 3.347959 -2.21103 4.323442 2.052587 -1.347899 4.323442 2.052587 2.052899 -0.1254846 3.347959 2.97946 -0.1254846 -2.968092 -2.21103 -0.1254846 3.347959 -2.21103 -0.1254846 -2.968092 2.97946 -0.1254846 3.347959 2.97946 4.323442 -1.839843 2.052899 4.323442 -1.839843 -1.347899 -0.1254846 -2.968092 -2.21103 -0.1254846 -2.968092 2.97946 2.30952 1.072401 4.411026 2.30952 -0.7862615 4.411026 0.3201991 -1.154513 4.8087 0.3201991 1.495227 4.8087 2.288481 -0.7864994 -3.684014 0.3032727 -1.153959 -4.05377 0.3032727 1.494594 -4.05377 2.288481 1.072638 -3.684014 0.3032727 1.494594 -4.05377 0.3032727 -1.153959 -4.05377 2.30952 -0.7862615 4.411026 0.3201991 -1.154513 4.8087 0.3201991 1.495227 4.8087 0.3201991 -1.154513 4.8087 2.30952 1.072401 4.411026 0.3201991 1.495227 4.8087 2.634194 0.7752519 8.844766 2.796332 0.7228932 1.918679 2.067025 0.3937892 1.918679 2.069238 0.5020662 8.844766 2.069238 1.640443 8.844766 2.067025 1.764931 1.918679 2.634194 1.367257 8.844766 2.796332 1.435827 1.918679 2.634194 0.7752519 8.844766 2.634194 1.367257 8.844766 2.796332 0.7228932 1.918679 2.796332 1.435827 1.918679 1.504364 0.7752519 8.844766 2.069238 0.5020662 8.844766 2.067025 0.3937892 1.918679 1.337639 0.7228932 1.918679 1.504364 1.367257 8.844766 1.504364 0.7752519 8.844766 1.337639 0.7228932 1.918679 1.337639 1.435827 1.918679 2.067025 1.764931 1.918679 2.069238 1.640443 8.844766 1.504364 1.367257 8.844766 1.337639 1.435827 1.918679 2.634194 1.367257 8.844766 2.634194 0.7752519 8.844766 2.069238 0.5020662 8.844766 2.069238 1.640443 8.844766 1.504364 0.7752519 8.844766 1.504364 1.367257 8.844766 2.069238 -0.3380451 8.844766 2.067025 -0.223441 1.918679 2.634194 -0.6112308 8.844766 2.796332 -0.552545 1.918679 2.634194 -1.203236 8.844766 2.796332 -1.265479 1.918679 2.067025 -1.594583 1.918679 2.069238 -1.476416 8.844766 2.634194 -0.6112308 8.844766 2.796332 -0.552545 1.918679 2.634194 -1.203236 8.844766 2.796332 -1.265479 1.918679 2.067025 -0.223441 1.918679 2.069238 -0.3380451 8.844766 1.504364 -0.6112308 8.844766 1.337639 -0.552545 1.918679 1.337639 -0.552545 1.918679 1.504364 -1.203236 8.844766 1.337639 -1.265479 1.918679 1.504364 -0.6112308 8.844766 1.504364 -1.203236 8.844766 2.069238 -1.476416 8.844766 2.067025 -1.594583 1.918679 1.337639 -1.265479 1.918679 2.069238 -0.3380451 8.844766 2.634194 -0.6112308 8.844766 2.634194 -1.203236 8.844766 2.069238 -1.476416 8.844766 1.504364 -1.203236 8.844766 1.504364 -0.6112308 8.844766</float_array>
<technique_common>
<accessor source="#gunpod_001-mesh-positions-array" count="96" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="gunpod_001-mesh-normals">
<float_array id="gunpod_001-mesh-normals-array" count="279">0.5044348 0 -0.8634498 0.508342 0 -0.8611553 0.1831065 0 -0.9830931 0.1831069 0 -0.983093 0.9508837 0 -0.3095483 0.9499046 0 -0.3125403 0.9521785 0 0.3055423 0.9512274 0 0.308491 0.3103777 0.9276731 -0.2075774 0.3092139 0.8940605 -0.3241027 0.3127414 0.9274445 0.2050356 0.3132966 0.8923707 0.3248382 -0.9970585 0 -0.07664436 -0.9970059 0 -0.07732683 -0.9967414 0 0.08066487 -0.9967989 0 0.0799511 0.2781364 -0.9378008 -0.2077733 0.2805439 -0.9376229 0.2053254 0.2799006 -0.9021795 -0.3282192 0.2841568 -0.9005243 0.3291063 0.5181381 0 0.855297 0.5142857 0 0.8576191 0.1960259 0 0.9805988 0.1960263 0 0.9805987 0.2536261 -0.7181664 -0.6480054 0.2865473 -0.7333396 -0.6165255 0.2718955 0.7094107 -0.650238 0.309395 0.7259109 -0.6142705 -0.9739832 0 -0.2266203 -0.9739832 0 -0.2266202 0.2945218 -0.7318848 0.6144929 0.2618851 -0.7165019 0.6465612 -0.9715781 0 0.2367194 -0.9715781 0 0.2367194 0.3172388 0.7244635 0.611974 0.2800831 0.7077364 0.6485853 0.4112602 -0.9113684 0.0165171 0.4335544 -0.9010167 0.01412129 0.4126551 -0.9107403 0.01636826 0.4352864 -0.9001843 0.01393359 0.4126403 0.9107062 0.01849925 0.4352727 0.9001557 0.01604002 0.4335397 0.9009883 0.01622974 0.4112448 0.9113343 0.01864957 0.9997262 0 0.02340334 0.9997262 0 0.02340334 0.9997262 0 0.02340334 -0.4353352 -0.9001563 0.01421141 -0.4335975 -0.9009917 0.01439863 -0.4126207 -0.910751 0.01664024 -0.4112213 -0.911381 0.0167886 -0.9997105 0 0.02406501 -0.9997105 0 0.02406507 -0.9997105 0 0.02406507 -0.9997105 0 0.02406507 -0.4353213 0.9001274 0.01631778 -0.4126058 0.9107162 0.01877117 -0.4335825 0.9009628 0.01650696 -0.4112057 0.9113463 0.01892107 -2.85141e-6 0 1 -8.16078e-7 0 1 -7.27581e-7 0 1 -7.41517e-7 0 1 -6.50635e-7 0 1 1.42591e-6 0 1 0.4126496 0.9107275 0.01719999 0.4352813 0.9001737 0.01475578 0.4335489 0.9010062 0.01494425 0.4112544 0.9113556 0.01734942 0.411251 -0.9113481 0.01781725 0.4335386 -0.9010034 0.01540768 0.4126459 -0.9107202 0.01766759 0.4352707 -0.9001711 0.01521885 0.9997261 0 0.02340334 0.9997262 0 0.02340334 0.9997261 0 0.02340334 -0.43533 0.9001454 0.01503354 -0.412615 0.9107379 0.01747196 -0.4335917 0.9009809 0.01522153 -0.4112154 0.9113679 0.01762092 -0.9997105 0 0.02406507 -0.9997104 0 0.02406507 -0.9997105 0 0.02406507 -0.4353194 -0.9001427 0.01549655 -0.4335814 -0.9009779 0.01568496 -0.4126114 -0.9107306 0.0179395 -0.411212 -0.9113603 0.01808875 -2.85141e-6 0 1 3.82941e-7 0 1 -8.16081e-7 0 1 7.41521e-7 0 1 1.87476e-6 0 1 2.85182e-6 0 1</float_array>
<technique_common>
<accessor source="#gunpod_001-mesh-normals-array" count="93" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="gunpod_001-mesh-map-0">
<float_array id="gunpod_001-mesh-map-0-array" count="360">0.860373 0.933533 0.860373 0.954292 0.855414 0.958396 0.855414 0.928822 0.860373 0.933533 0.855414 0.958396 0.891706 0.966054 0.891706 0.922592 0.937317 0.966054 0.891706 0.922592 0.937317 0.922592 0.937317 0.966054 0.891706 0.922592 0.880129 0.908128 0.937317 0.922592 0.880129 0.908128 0.949744 0.908128 0.937317 0.922592 0.880129 0.908128 0.880129 0.978652 0.949744 0.978652 0.949744 0.908128 0.880129 0.908128 0.949744 0.978652 0.891706 0.966054 0.937317 0.966054 0.880129 0.978652 0.880129 0.978652 0.937317 0.966054 0.949744 0.978652 0.968944 0.95429 0.968944 0.933536 0.974278 0.958402 0.968944 0.933536 0.974278 0.928815 0.974278 0.958402 0.855414 0.958396 0.860373 0.954292 0.880129 0.978652 0.860373 0.954292 0.891706 0.966054 0.880129 0.978652 0.860373 0.933533 0.891706 0.922592 0.860373 0.954292 0.860373 0.954292 0.891706 0.922592 0.891706 0.966054 0.855414 0.928822 0.880129 0.908128 0.860373 0.933533 0.880129 0.908128 0.891706 0.922592 0.860373 0.933533 0.880129 0.908128 0.855414 0.928822 0.880129 0.978652 0.855414 0.928822 0.855414 0.958396 0.880129 0.978652 0.937317 0.922592 0.968944 0.95429 0.937317 0.966054 0.937317 0.922592 0.968944 0.933536 0.968944 0.95429 0.937317 0.966054 0.968944 0.95429 0.949744 0.978652 0.968944 0.95429 0.974278 0.958402 0.949744 0.978652 0.974278 0.928815 0.949744 0.908128 0.949744 0.978652 0.974278 0.958402 0.974278 0.928815 0.949744 0.978652 0.937317 0.922592 0.949744 0.908128 0.968944 0.933536 0.949744 0.908128 0.974278 0.928815 0.968944 0.933536 0.997328 0.847016 0.643493 0.847148 0.997328 0.864536 0.643493 0.847148 0.643493 0.864888 0.997328 0.864536 0.997328 0.808147 0.643493 0.807794 0.643493 0.825784 0.997328 0.825916 0.997328 0.808147 0.643493 0.825784 0.643493 0.825784 0.643493 0.847148 0.997328 0.847016 0.997328 0.825916 0.643493 0.825784 0.997328 0.847016 0.643493 0.864888 0.643493 0.847148 0.997328 0.864536 0.643493 0.847148 0.997328 0.847016 0.997328 0.864536 0.643493 0.847148 0.643493 0.825784 0.997328 0.847016 0.643493 0.825784 0.997328 0.825916 0.997328 0.847016 0.643493 0.807794 0.997328 0.808147 0.643493 0.825784 0.997328 0.808147 0.997328 0.825916 0.643493 0.825784 0.758728 0.208496 0.758728 0.141883 0.704578 0.239239 0.758728 0.141883 0.704578 0.11114 0.704578 0.239239 0.758647 0.141883 0.758647 0.208496 0.704578 0.239239 0.704578 0.11114 0.758647 0.141883 0.704578 0.239239 0.997328 0.864536 0.643493 0.864888 0.643493 0.847148 0.997328 0.847016 0.997328 0.864536 0.643493 0.847148 0.997328 0.825916 0.643493 0.825784 0.997328 0.808147 0.643493 0.825784 0.643493 0.807794 0.997328 0.808147 0.997328 0.847016 0.643493 0.847148 0.643493 0.825784 0.997328 0.847016 0.643493 0.825784 0.997328 0.825916 0.643493 0.864888 0.997328 0.864536 0.643493 0.847148 0.997328 0.864536 0.997328 0.847016 0.643493 0.847148 0.643493 0.825784 0.997328 0.847016 0.997328 0.825916 0.643493 0.847148 0.997328 0.847016 0.643493 0.825784 0.643493 0.807794 0.643493 0.825784 0.997328 0.808147 0.643493 0.825784 0.997328 0.825916 0.997328 0.808147 0.758728 0.208496 0.704578 0.239239 0.758728 0.141883 0.758728 0.141883 0.704578 0.239239 0.704578 0.11114 0.704578 0.239239 0.758647 0.141883 0.704578 0.11114 0.704578 0.239239 0.758647 0.208496 0.758647 0.141883</float_array>
<technique_common>
<accessor source="#gunpod_001-mesh-map-0-array" count="180" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="gunpod_001-mesh-vertices">
<input semantic="POSITION" source="#gunpod_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="60">
<input semantic="VERTEX" source="#gunpod_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#gunpod_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#gunpod_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 3 3 3 1 0 4 2 2 5 5 4 6 4 5 7 6 6 8 4 5 9 7 7 10 6 6 11 9 8 12 8 9 13 10 10 14 8 9 15 11 11 16 10 10 17 13 12 18 12 13 19 14 14 20 15 15 21 13 12 22 14 14 23 17 16 24 16 17 25 18 18 26 18 18 27 16 17 28 19 19 29 21 20 30 20 21 31 22 22 32 20 21 33 23 23 34 22 22 35 25 24 36 24 25 37 18 18 38 24 25 39 17 16 40 18 18 41 1 0 42 4 5 43 0 1 44 0 1 45 4 5 46 5 4 47 26 26 48 8 9 49 27 27 50 8 9 51 9 8 52 27 27 53 13 12 54 28 28 55 12 13 56 28 28 57 29 29 58 12 13 59 7 7 60 21 20 61 6 6 62 7 7 63 20 21 64 21 20 65 16 17 66 30 30 67 19 19 68 30 30 69 31 31 70 19 19 71 32 32 72 15 15 73 14 14 74 33 33 75 32 32 76 14 14 77 10 10 78 11 11 79 34 34 80 11 11 81 35 35 82 34 34 83 37 36 84 36 37 85 38 38 86 36 37 87 39 39 88 38 38 89 41 40 90 40 41 91 42 42 92 43 43 93 41 40 94 42 42 95 45 44 96 44 44 97 46 45 98 47 46 99 45 44 100 46 45 101 49 47 102 48 48 103 50 49 104 48 48 105 51 50 106 50 49 107 53 51 108 52 52 109 54 53 110 52 52 111 55 54 112 54 53 113 57 55 114 56 56 115 58 57 116 56 56 117 59 58 118 58 57 119 61 59 120 60 60 121 62 61 122 60 60 123 63 62 124 62 61 125 65 63 126 64 64 127 62 61 128 63 62 129 65 63 130 62 61 131 67 65 132 66 66 133 68 67 134 69 68 135 67 65 136 68 67 137 71 69 138 70 70 139 72 71 140 70 70 141 73 72 142 72 71 143 75 73 144 74 74 145 76 74 146 75 73 147 76 74 148 77 75 149 79 76 150 78 77 151 80 78 152 78 77 153 81 79 154 80 78 155 83 80 156 82 81 157 84 80 158 85 82 159 82 81 160 83 80 161 87 83 162 86 84 163 88 85 164 86 84 165 89 86 166 88 85 167 91 87 168 90 88 169 92 89 170 92 89 171 90 88 172 93 90 173 90 88 174 94 91 175 93 90 176 90 88 177 95 92 178 94 91 179</p>
</triangles>
</mesh>
</geometry>
<geometry id="lhand_001-mesh" name="lhand.001">
<mesh>
<source id="lhand_001-mesh-positions">
<float_array id="lhand_001-mesh-positions-array" count="87">-2.331682 0.08823043 3.410111 -0.6013076 2.27378 5.831751 -0.6546164 -3.274367 5.027857 -2.287788 1.538537 3.885137 -0.6013076 2.27378 5.831751 1.774299 -2.260171 3.914481 -0.6546164 -3.274367 5.027857 1.791857 1.676396 4.570154 -2.57837 -0.9048517 -0.5385559 -0.6546164 -3.274367 5.027857 -0.6546164 -3.274367 5.027857 -0.03310996 -3.818047 -0.7508394 -0.02939367 2.942026 -0.8029601 -0.6013076 2.27378 5.831751 -2.287788 1.538537 3.885137 -2.569355 2.00257 -0.4582773 -0.02939367 2.942026 -0.8029601 -2.569355 2.00257 -0.4582773 -0.6546164 -3.274367 5.027857 1.774299 -2.260171 3.914481 -0.03310996 -3.818047 -0.7508394 2.13306 -2.661167 -0.8522349 1.774299 -2.260171 3.914481 2.108224 2.071856 -0.9877994 2.13306 -2.661167 -0.8522349 1.791857 1.676396 4.570154 -0.02939367 2.942026 -0.8029601 2.108224 2.071856 -0.9877994 1.791857 1.676396 4.570154</float_array>
<technique_common>
<accessor source="#lhand_001-mesh-positions-array" count="29" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="lhand_001-mesh-normals">
<float_array id="lhand_001-mesh-normals-array" count="87">-0.7529501 -0.1206661 0.6469202 -0.9334797 -0.1598369 0.3210417 -0.7735617 -0.08358752 0.6281844 -0.8729495 -0.1277759 0.4707788 0.4508359 -0.1367787 0.8820649 0.4422037 -0.1427468 0.8854825 0.4580036 -0.1317812 0.8791283 0.4314771 -0.1500877 0.8895511 -0.9392259 -0.3387994 0.05540567 -0.9117688 -0.3812079 0.1528345 -0.7536163 -0.6570332 -0.01923644 -0.7536163 -0.6570332 -0.01923644 -0.04510408 0.9943337 0.09626084 -0.4482291 0.8924484 0.0512495 -0.4229315 0.903696 0.06680339 -0.1400665 0.9819844 0.1268393 -0.3298022 0.9362117 0.121401 -0.9980176 0.003113448 0.06285858 0.442126 -0.8881587 0.1252944 0.4323423 -0.8922248 0.1304425 0.4600993 -0.880296 0.1157057 0.4722481 -0.8746847 0.1091253 0.9978038 -0.001987814 0.06621009 0.9979344 -0.004393756 0.06409293 0.9971988 0.00736463 0.0744335 0.9983446 -0.01375508 0.05584847 0.3820556 0.9200155 0.08720815 0.3820555 0.9200154 0.08720815 0.3163191 0.9417055 0.114599</float_array>
<technique_common>
<accessor source="#lhand_001-mesh-normals-array" count="29" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="lhand_001-mesh-map-0">
<float_array id="lhand_001-mesh-map-0-array" count="96">0.251997 0.981785 0.293992 0.93805 0.265938 0.870761 0.251997 0.981785 0.285755 0.967072 0.293992 0.93805 0.285246 0.891056 0.251997 0.981785 0.265938 0.870761 0.273875 0.96983 0.251997 0.981785 0.285246 0.891056 0.293992 0.93805 0.362471 0.918178 0.265938 0.870761 0.265938 0.870761 0.362471 0.918178 0.366151 0.859882 0.251997 0.981785 0.367055 0.995156 0.285755 0.967072 0.367055 0.995156 0.361078 0.976357 0.285755 0.967072 0.285755 0.967072 0.361078 0.976357 0.293992 0.93805 0.293992 0.93805 0.361078 0.976357 0.362471 0.918178 0.285246 0.891056 0.265938 0.870761 0.366151 0.859882 0.36791 0.883032 0.285246 0.891056 0.366151 0.859882 0.370261 0.977744 0.285246 0.891056 0.36791 0.883032 0.370261 0.977744 0.273875 0.96983 0.285246 0.891056 0.370261 0.977744 0.367055 0.995156 0.273875 0.96983 0.367055 0.995156 0.251997 0.981785 0.273875 0.96983</float_array>
<technique_common>
<accessor source="#lhand_001-mesh-map-0-array" count="48" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="lhand_001-mesh-vertices">
<input semantic="POSITION" source="#lhand_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="16">
<input semantic="VERTEX" source="#lhand_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#lhand_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#lhand_001-mesh-map-0" offset="2" set="0"/>
<p>1 0 0 0 1 1 2 2 2 1 0 3 3 3 4 0 1 5 5 4 6 4 5 7 6 6 8 7 7 9 4 5 10 5 4 11 0 1 12 8 8 13 9 9 14 10 10 15 8 8 16 11 11 17 13 12 18 12 13 19 14 14 20 16 15 21 15 16 22 14 14 23 3 3 24 17 17 25 0 1 26 0 1 27 17 17 28 8 8 29 19 18 30 18 19 31 20 20 32 21 21 33 19 18 34 20 20 35 23 22 36 22 23 37 24 24 38 23 22 39 25 25 40 22 23 41 27 26 42 26 27 43 28 28 44 16 15 45 13 12 46 28 28 47</p>
</triangles>
</mesh>
</geometry>
<geometry id="lloarm_001-mesh" name="lloarm.001">
<mesh>
<source id="lloarm_001-mesh-positions">
<float_array id="lloarm_001-mesh-positions-array" count="105">-4.296201 -3.564348 13.71951 0.1753454 3.82213 13.70804 0.1645868 -6.38129 13.77519 -4.291296 1.138855 13.68851 3.853202 -3.550826 11.4517 3.858183 1.152383 11.42078 -4.818445 -3.334826 4.855488 -4.296201 -3.564348 13.71951 0.1645868 -6.38129 13.77519 0.7503447 -4.329878 -5.10395 3.545455 -2.957161 -1.23295 0.7503447 -4.329878 -5.10395 0.1645868 -6.38129 13.77519 3.853202 -3.550826 11.4517 3.858183 1.152383 11.42078 3.545455 -2.957161 -1.23295 3.853202 -3.550826 11.4517 3.555815 1.401205 -1.262104 0.1753454 3.82213 13.70804 3.555815 1.401205 -1.262104 3.858183 1.152383 11.42078 0.1753454 3.82213 13.70804 0.8113239 2.667943 -5.154315 -4.820184 1.792392 4.822309 0.1753454 3.82213 13.70804 -4.291296 1.138855 13.68851 0.1753454 3.82213 13.70804 -4.818445 -3.334826 4.855488 -4.291296 1.138855 13.68851 -4.296201 -3.564348 13.71951 -4.820184 1.792392 4.822309 0.7503447 -4.329878 -5.10395 0.8113239 2.667943 -5.154315 0.8113239 2.667943 -5.154315 0.7503447 -4.329878 -5.10395</float_array>
<technique_common>
<accessor source="#lloarm_001-mesh-positions-array" count="35" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="lloarm_001-mesh-normals">
<float_array id="lloarm_001-mesh-normals-array" count="105">0.2710273 0.006049513 0.9625527 -0.00832504 0.006592094 0.9999437 0.2692733 0.006053805 0.9630448 -0.008338868 0.006600201 0.9999436 0.5302112 0.005018711 0.8478509 0.5302025 0.005013108 0.8478562 -0.5340002 -0.8454303 0.009570538 -0.4003815 -0.9121273 -0.08785599 -0.475371 -0.8791016 -0.03468304 -0.3650211 -0.9242674 -0.1117566 0.5224441 -0.8492735 -0.07607251 0.5304477 -0.8445521 -0.07319235 0.5735732 -0.8171529 -0.05722635 0.5871056 -0.8078351 -0.05205208 0.9422307 -0.006217598 -0.3349071 0.9997056 -0.001493871 -0.02422177 0.9997038 -0.001218736 -0.02431112 0.9407366 -0.004504442 -0.3391083 0.4788114 0.877269 -0.03374683 0.5876801 0.8090913 0.001862704 0.5876801 0.8090913 0.001862704 0.1745481 0.9831517 -0.05427384 0.4633166 0.8853539 -0.03855323 -0.5130047 0.8532786 0.09349793 -0.3210529 0.9463888 -0.03568559 -0.5130047 0.8532786 0.09349793 -0.2695776 0.9605842 -0.06786745 -0.9982528 9.75594e-4 0.05908101 -0.9737792 -0.001583158 -0.2274904 -0.9982657 0.001429021 0.05885213 -0.9711583 -4.50465e-4 -0.2384351 -0.871531 0.002011895 -0.4903364 -0.8709865 0.004053771 -0.4912902 0.8143361 -0.008742094 -0.5803279 0.8125817 -0.01127499 -0.5827382</float_array>
<technique_common>
<accessor source="#lloarm_001-mesh-normals-array" count="35" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="lloarm_001-mesh-map-0">
<float_array id="lloarm_001-mesh-map-0-array" count="120">0.377595 0.992482 0.377453 0.886664 0.376763 0.846308 0.377595 0.992482 0.377836 0.954042 0.377453 0.886664 0.40552 0.886857 0.377595 0.992482 0.376763 0.846308 0.405903 0.954235 0.377595 0.992482 0.40552 0.886857 0.377453 0.886664 0.487159 0.889952 0.376763 0.846308 0.487159 0.889952 0.610422 0.875697 0.376763 0.846308 0.610422 0.875697 0.562513 0.895362 0.376763 0.846308 0.562513 0.895362 0.40552 0.886857 0.376763 0.846308 0.562513 0.895362 0.405903 0.954235 0.40552 0.886857 0.562874 0.9578 0.405903 0.954235 0.562513 0.895362 0.562874 0.9578 0.377595 0.992482 0.405903 0.954235 0.611046 0.975947 0.377595 0.992482 0.562874 0.9578 0.377595 0.992482 0.487569 0.963404 0.377836 0.954042 0.377595 0.992482 0.611046 0.975947 0.487569 0.963404 0.377836 0.954042 0.487159 0.889952 0.377453 0.886664 0.377836 0.954042 0.487569 0.963404 0.487159 0.889952 0.487159 0.889952 0.487569 0.963404 0.610422 0.875697 0.487569 0.963404 0.611046 0.975947 0.610422 0.875697 0.611046 0.975947 0.562513 0.895362 0.610422 0.875697 0.611046 0.975947 0.562874 0.9578 0.562513 0.895362</float_array>
<technique_common>
<accessor source="#lloarm_001-mesh-map-0-array" count="60" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="lloarm_001-mesh-vertices">
<input semantic="POSITION" source="#lloarm_001-mesh-positions"/>
</vertices>
<triangles material="commsupport5_s3o_mat_001-material" count="20">
<input semantic="VERTEX" source="#lloarm_001-mesh-vertices" offset="0"/>
<input semantic="NORMAL" source="#lloarm_001-mesh-normals" offset="1"/>
<input semantic="TEXCOORD" source="#lloarm_001-mesh-map-0" offset="2" set="0"/>