dartpy 7.0.0.dev0__cp313-cp313-manylinux_2_39_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of dartpy might be problematic. Click here for more details.

Files changed (994) hide show
  1. dartpy-7.0.0.dev0.dist-info/METADATA +86 -0
  2. dartpy-7.0.0.dev0.dist-info/RECORD +994 -0
  3. dartpy-7.0.0.dev0.dist-info/WHEEL +5 -0
  4. dartpy-7.0.0.dev0.dist-info/licenses/LICENSE +31 -0
  5. dartpy.cpython-313-x86_64-linux-gnu.so +0 -0
  6. dartpy.libs/libBulletCollision-f96eb02c.so.3.25 +0 -0
  7. dartpy.libs/libBulletDynamics-3cff1f18.so.3.25 +0 -0
  8. dartpy.libs/libBulletSoftBody-220f01bd.so.3.25 +0 -0
  9. dartpy.libs/libLinearMath-71568d02.so.3.25 +0 -0
  10. dartpy.libs/libOpenThreads-8bc434db.so.3.3.1 +0 -0
  11. dartpy.libs/libSDL2-2-3db87ac0.0.so.0.3200.56 +0 -0
  12. dartpy.libs/libassimp-44cf3e77.so.5.4.3 +0 -0
  13. dartpy.libs/libccd-4f119cf4.so.2.0 +0 -0
  14. dartpy.libs/libconsole_bridge-f26e11cc.so.1.0 +0 -0
  15. dartpy.libs/libfcl-0400fc28.so.0.7.0 +0 -0
  16. dartpy.libs/libfmt-277170bf.so.11.2.0 +0 -0
  17. dartpy.libs/libfontconfig-582da43c.so.1.14.0 +0 -0
  18. dartpy.libs/libfreetype-64806fc6.so.6.20.4 +0 -0
  19. dartpy.libs/libglfw-6f066845.so.3.4 +0 -0
  20. dartpy.libs/libimgui-ab87b07d.so +0 -0
  21. dartpy.libs/libnlopt-d1ae937b.so.1.0.0 +0 -0
  22. dartpy.libs/liboctomap-38e56f99.so.1.10.0 +0 -0
  23. dartpy.libs/liboctomath-bff26442.so.1.10.0 +0 -0
  24. dartpy.libs/libode-99b67f5b.so.8.2.0 +0 -0
  25. dartpy.libs/libosg-e67375e5.so.3.6.5 +0 -0
  26. dartpy.libs/libosgDB-bcdb6be9.so.3.6.5 +0 -0
  27. dartpy.libs/libosgGA-6af4078b.so.3.6.5 +0 -0
  28. dartpy.libs/libosgManipulator-3270f659.so.3.6.5 +0 -0
  29. dartpy.libs/libosgShadow-127a8d77.so.3.6.5 +0 -0
  30. dartpy.libs/libosgText-87d82d87.so.3.6.5 +0 -0
  31. dartpy.libs/libosgUtil-55896958.so.3.6.5 +0 -0
  32. dartpy.libs/libosgViewer-76d832e3.so.3.6.5 +0 -0
  33. dartpy.libs/libpng16-bd65464e.so.16.50.0 +0 -0
  34. dartpy.libs/libtinyxml2-8d10763c.so.11.0.0 +0 -0
  35. dartpy.libs/liburdfdom_model-7b26ae88.so.4.0 +0 -0
  36. dartpy.libs/liburdfdom_model_state-95a5ad6e.so.4.0 +0 -0
  37. dartpy.libs/liburdfdom_sensor-55a145ea.so.4.0 +0 -0
  38. dartpy.libs/liburdfdom_world-a32c7194.so.4.0 +0 -0
  39. dartpy.libs/libvulkan-08e1e162.so.1.4.328 +0 -0
  40. include/dart/collision/CollisionDetector.hpp +305 -0
  41. include/dart/collision/CollisionFilter.hpp +126 -0
  42. include/dart/collision/CollisionGroup.hpp +546 -0
  43. include/dart/collision/CollisionObject.hpp +90 -0
  44. include/dart/collision/CollisionOption.hpp +71 -0
  45. include/dart/collision/CollisionResult.hpp +109 -0
  46. include/dart/collision/Contact.hpp +103 -0
  47. include/dart/collision/DistanceFilter.hpp +66 -0
  48. include/dart/collision/DistanceOption.hpp +80 -0
  49. include/dart/collision/DistanceResult.hpp +123 -0
  50. include/dart/collision/Option.hpp +42 -0
  51. include/dart/collision/RaycastOption.hpp +58 -0
  52. include/dart/collision/RaycastResult.hpp +80 -0
  53. include/dart/collision/Result.hpp +42 -0
  54. include/dart/collision/SmartPointer.hpp +51 -0
  55. include/dart/collision/all.hpp +17 -0
  56. include/dart/collision/bullet/BulletCollisionDetector.hpp +168 -0
  57. include/dart/collision/bullet/BulletCollisionGroup.hpp +98 -0
  58. include/dart/collision/bullet/BulletCollisionObject.hpp +75 -0
  59. include/dart/collision/bullet/BulletCollisionShape.hpp +62 -0
  60. include/dart/collision/bullet/BulletInclude.hpp +47 -0
  61. include/dart/collision/bullet/BulletTypes.hpp +57 -0
  62. include/dart/collision/bullet/all.hpp +8 -0
  63. include/dart/collision/bullet/bullet.hpp +14 -0
  64. include/dart/collision/bullet/detail/BulletCollisionDispatcher.hpp +70 -0
  65. include/dart/collision/bullet/detail/BulletOverlapFilterCallback.hpp +72 -0
  66. include/dart/collision/collision.hpp +14 -0
  67. include/dart/collision/dart/DARTCollide.hpp +106 -0
  68. include/dart/collision/dart/DARTCollisionDetector.hpp +109 -0
  69. include/dart/collision/dart/DARTCollisionGroup.hpp +82 -0
  70. include/dart/collision/dart/DARTCollisionObject.hpp +63 -0
  71. include/dart/collision/dart/all.hpp +6 -0
  72. include/dart/collision/dart/dart.hpp +14 -0
  73. include/dart/collision/detail/CollisionDetector.hpp +66 -0
  74. include/dart/collision/detail/CollisionGroup.hpp +287 -0
  75. include/dart/collision/detail/Contact-impl.hpp +56 -0
  76. include/dart/collision/detail/UnorderedPairs.hpp +153 -0
  77. include/dart/collision/fcl/BackwardCompatibility.hpp +145 -0
  78. include/dart/collision/fcl/CollisionShapes.hpp +374 -0
  79. include/dart/collision/fcl/FCLCollisionDetector.hpp +204 -0
  80. include/dart/collision/fcl/FCLCollisionGroup.hpp +95 -0
  81. include/dart/collision/fcl/FCLCollisionObject.hpp +72 -0
  82. include/dart/collision/fcl/FCLTypes.hpp +62 -0
  83. include/dart/collision/fcl/TriTriIntersectionTest.hpp +17 -0
  84. include/dart/collision/fcl/all.hpp +9 -0
  85. include/dart/collision/fcl/fcl.hpp +14 -0
  86. include/dart/collision/fcl/tri_tri_intersection_test.hpp +332 -0
  87. include/dart/collision/ode/OdeCollisionDetector.hpp +131 -0
  88. include/dart/collision/ode/OdeCollisionGroup.hpp +87 -0
  89. include/dart/collision/ode/OdeCollisionObject.hpp +89 -0
  90. include/dart/collision/ode/OdeTypes.hpp +51 -0
  91. include/dart/collision/ode/all.hpp +6 -0
  92. include/dart/collision/ode/detail/OdeBox.hpp +58 -0
  93. include/dart/collision/ode/detail/OdeCapsule.hpp +58 -0
  94. include/dart/collision/ode/detail/OdeCylinder.hpp +58 -0
  95. include/dart/collision/ode/detail/OdeGeom.hpp +83 -0
  96. include/dart/collision/ode/detail/OdeHeightmap-impl.hpp +170 -0
  97. include/dart/collision/ode/detail/OdeHeightmap.hpp +70 -0
  98. include/dart/collision/ode/detail/OdeMesh.hpp +83 -0
  99. include/dart/collision/ode/detail/OdePlane.hpp +67 -0
  100. include/dart/collision/ode/detail/OdeSphere.hpp +58 -0
  101. include/dart/collision/ode/ode.hpp +14 -0
  102. include/dart/common/Aspect.hpp +215 -0
  103. include/dart/common/AspectWithVersion.hpp +180 -0
  104. include/dart/common/CAllocator.hpp +65 -0
  105. include/dart/common/Castable.hpp +102 -0
  106. include/dart/common/ClassWithVirtualBase.hpp +47 -0
  107. include/dart/common/Cloneable.hpp +327 -0
  108. include/dart/common/Composite.hpp +205 -0
  109. include/dart/common/CompositeJoiner.hpp +160 -0
  110. include/dart/common/Console.hpp +75 -0
  111. include/dart/common/Deprecated.hpp +126 -0
  112. include/dart/common/EmbeddedAspect.hpp +466 -0
  113. include/dart/common/Empty.hpp +55 -0
  114. include/dart/common/Factory.hpp +146 -0
  115. include/dart/common/Filesystem.hpp +112 -0
  116. include/dart/common/FreeListAllocator.hpp +162 -0
  117. include/dart/common/IncludeWindows.hpp +50 -0
  118. include/dart/common/LocalResource.hpp +76 -0
  119. include/dart/common/LocalResourceRetriever.hpp +63 -0
  120. include/dart/common/LockableReference.hpp +166 -0
  121. include/dart/common/Logging.hpp +146 -0
  122. include/dart/common/Macros.hpp +78 -0
  123. include/dart/common/Memory.hpp +215 -0
  124. include/dart/common/MemoryAllocator.hpp +120 -0
  125. include/dart/common/MemoryAllocatorDebugger.hpp +98 -0
  126. include/dart/common/MemoryManager.hpp +189 -0
  127. include/dart/common/Metaprogramming.hpp +68 -0
  128. include/dart/common/NameManager.hpp +184 -0
  129. include/dart/common/Observer.hpp +85 -0
  130. include/dart/common/Optional.hpp +48 -0
  131. include/dart/common/Platform.hpp +92 -0
  132. include/dart/common/PoolAllocator.hpp +141 -0
  133. include/dart/common/Profile.hpp +56 -0
  134. include/dart/common/ProxyAspect.hpp +93 -0
  135. include/dart/common/RequiresAspect.hpp +79 -0
  136. include/dart/common/Resource.hpp +96 -0
  137. include/dart/common/ResourceRetriever.hpp +82 -0
  138. include/dart/common/SharedLibrary.hpp +201 -0
  139. include/dart/common/Signal.hpp +250 -0
  140. include/dart/common/Singleton.hpp +85 -0
  141. include/dart/common/SmartPointer.hpp +63 -0
  142. include/dart/common/SpecializedForAspect.hpp +207 -0
  143. include/dart/common/StlAllocator.hpp +111 -0
  144. include/dart/common/StlHelpers.hpp +61 -0
  145. include/dart/common/Stopwatch.hpp +143 -0
  146. include/dart/common/String.hpp +71 -0
  147. include/dart/common/SubPtr.hpp +17 -0
  148. include/dart/common/Subject.hpp +84 -0
  149. include/dart/common/Timer.hpp +119 -0
  150. include/dart/common/Uri.hpp +229 -0
  151. include/dart/common/VersionCounter.hpp +68 -0
  152. include/dart/common/Virtual.hpp +51 -0
  153. include/dart/common/all.hpp +53 -0
  154. include/dart/common/common.hpp +14 -0
  155. include/dart/common/detail/Aspect.hpp +102 -0
  156. include/dart/common/detail/AspectWithVersion.hpp +455 -0
  157. include/dart/common/detail/Castable-impl.hpp +109 -0
  158. include/dart/common/detail/Cloneable.hpp +638 -0
  159. include/dart/common/detail/Composite.hpp +241 -0
  160. include/dart/common/detail/CompositeData.hpp +393 -0
  161. include/dart/common/detail/CompositeJoiner.hpp +128 -0
  162. include/dart/common/detail/ConnectionBody.hpp +157 -0
  163. include/dart/common/detail/EmbeddedAspect.hpp +487 -0
  164. include/dart/common/detail/Factory-impl.hpp +200 -0
  165. include/dart/common/detail/LockableReference-impl.hpp +156 -0
  166. include/dart/common/detail/Logging-impl.hpp +162 -0
  167. include/dart/common/detail/Memory-impl.hpp +66 -0
  168. include/dart/common/detail/MemoryAllocator-impl.hpp +97 -0
  169. include/dart/common/detail/MemoryAllocatorDebugger-impl.hpp +201 -0
  170. include/dart/common/detail/MemoryManager-impl.hpp +102 -0
  171. include/dart/common/detail/Metaprogramming-impl.hpp +89 -0
  172. include/dart/common/detail/NameManager.hpp +301 -0
  173. include/dart/common/detail/NoOp.hpp +57 -0
  174. include/dart/common/detail/ProxyAspect.hpp +172 -0
  175. include/dart/common/detail/RequiresAspect.hpp +51 -0
  176. include/dart/common/detail/SharedLibraryManager.hpp +106 -0
  177. include/dart/common/detail/Signal.hpp +242 -0
  178. include/dart/common/detail/Singleton-impl.hpp +74 -0
  179. include/dart/common/detail/SpecializedForAspect.hpp +331 -0
  180. include/dart/common/detail/StlAllocator-impl.hpp +108 -0
  181. include/dart/common/detail/Stopwatch-impl.hpp +242 -0
  182. include/dart/common/detail/SubPtr.hpp +17 -0
  183. include/dart/common/detail/TemplateJoinerDispatchMacro.hpp +59 -0
  184. include/dart/common/detail/sub_ptr.hpp +139 -0
  185. include/dart/common/sub_ptr.hpp +103 -0
  186. include/dart/config.hpp +100 -0
  187. include/dart/constraint/BalanceConstraint.hpp +202 -0
  188. include/dart/constraint/BallJointConstraint.hpp +142 -0
  189. include/dart/constraint/BoxedLcpConstraintSolver.hpp +182 -0
  190. include/dart/constraint/BoxedLcpSolver.hpp +101 -0
  191. include/dart/constraint/ConstrainedGroup.hpp +120 -0
  192. include/dart/constraint/ConstraintBase.hpp +141 -0
  193. include/dart/constraint/ConstraintSolver.hpp +325 -0
  194. include/dart/constraint/ContactConstraint.hpp +286 -0
  195. include/dart/constraint/ContactSurface.hpp +191 -0
  196. include/dart/constraint/DantzigBoxedLcpSolver.hpp +71 -0
  197. include/dart/constraint/DantzigLCPSolver.hpp +87 -0
  198. include/dart/constraint/DynamicJointConstraint.hpp +120 -0
  199. include/dart/constraint/JointConstraint.hpp +182 -0
  200. include/dart/constraint/JointCoulombFrictionConstraint.hpp +149 -0
  201. include/dart/constraint/JointLimitConstraint.hpp +185 -0
  202. include/dart/constraint/LCPSolver.hpp +71 -0
  203. include/dart/constraint/MimicMotorConstraint.hpp +164 -0
  204. include/dart/constraint/PGSLCPSolver.hpp +109 -0
  205. include/dart/constraint/PgsBoxedLcpSolver.hpp +106 -0
  206. include/dart/constraint/ServoMotorConstraint.hpp +151 -0
  207. include/dart/constraint/SmartPointer.hpp +69 -0
  208. include/dart/constraint/SoftContactConstraint.hpp +262 -0
  209. include/dart/constraint/WeldJointConstraint.hpp +133 -0
  210. include/dart/constraint/all.hpp +25 -0
  211. include/dart/constraint/constraint.hpp +14 -0
  212. include/dart/constraint/detail/ConstraintSolver-impl.hpp +78 -0
  213. include/dart/dart.hpp +44 -0
  214. include/dart/dynamics/ArrowShape.hpp +121 -0
  215. include/dart/dynamics/AssimpInputResourceAdaptor.hpp +129 -0
  216. include/dart/dynamics/BallJoint.hpp +143 -0
  217. include/dart/dynamics/BodyNode.hpp +1279 -0
  218. include/dart/dynamics/BoxShape.hpp +90 -0
  219. include/dart/dynamics/Branch.hpp +107 -0
  220. include/dart/dynamics/CapsuleShape.hpp +105 -0
  221. include/dart/dynamics/Chain.hpp +142 -0
  222. include/dart/dynamics/CompositeNode.hpp +114 -0
  223. include/dart/dynamics/ConeShape.hpp +107 -0
  224. include/dart/dynamics/CylinderShape.hpp +96 -0
  225. include/dart/dynamics/DegreeOfFreedom.hpp +415 -0
  226. include/dart/dynamics/EllipsoidShape.hpp +115 -0
  227. include/dart/dynamics/EndEffector.hpp +158 -0
  228. include/dart/dynamics/Entity.hpp +258 -0
  229. include/dart/dynamics/EntityNode.hpp +77 -0
  230. include/dart/dynamics/EulerJoint.hpp +174 -0
  231. include/dart/dynamics/FixedFrame.hpp +105 -0
  232. include/dart/dynamics/FixedJacobianNode.hpp +168 -0
  233. include/dart/dynamics/Frame.hpp +388 -0
  234. include/dart/dynamics/FreeJoint.hpp +369 -0
  235. include/dart/dynamics/GenericJoint.hpp +825 -0
  236. include/dart/dynamics/Group.hpp +270 -0
  237. include/dart/dynamics/HeightmapShape.hpp +195 -0
  238. include/dart/dynamics/HierarchicalIK.hpp +419 -0
  239. include/dart/dynamics/IkFast.hpp +277 -0
  240. include/dart/dynamics/Inertia.hpp +176 -0
  241. include/dart/dynamics/InvalidIndex.hpp +46 -0
  242. include/dart/dynamics/InverseKinematics.hpp +1401 -0
  243. include/dart/dynamics/JacobianNode.hpp +312 -0
  244. include/dart/dynamics/Joint.hpp +1128 -0
  245. include/dart/dynamics/LineSegmentShape.hpp +140 -0
  246. include/dart/dynamics/Linkage.hpp +246 -0
  247. include/dart/dynamics/Marker.hpp +126 -0
  248. include/dart/dynamics/MeshShape.hpp +225 -0
  249. include/dart/dynamics/MetaSkeleton.hpp +1034 -0
  250. include/dart/dynamics/MimicDofProperties.hpp +62 -0
  251. include/dart/dynamics/MultiSphereConvexHullShape.hpp +111 -0
  252. include/dart/dynamics/MultiSphereShape.hpp +42 -0
  253. include/dart/dynamics/Node.hpp +273 -0
  254. include/dart/dynamics/NodeManagerJoiner.hpp +190 -0
  255. include/dart/dynamics/PlanarJoint.hpp +161 -0
  256. include/dart/dynamics/PlaneShape.hpp +105 -0
  257. include/dart/dynamics/PointCloudShape.hpp +186 -0
  258. include/dart/dynamics/PointMass.hpp +709 -0
  259. include/dart/dynamics/PrismaticJoint.hpp +120 -0
  260. include/dart/dynamics/PyramidShape.hpp +122 -0
  261. include/dart/dynamics/ReferentialSkeleton.hpp +550 -0
  262. include/dart/dynamics/RevoluteJoint.hpp +120 -0
  263. include/dart/dynamics/ScrewJoint.hpp +126 -0
  264. include/dart/dynamics/Shape.hpp +231 -0
  265. include/dart/dynamics/ShapeFrame.hpp +291 -0
  266. include/dart/dynamics/ShapeNode.hpp +134 -0
  267. include/dart/dynamics/SharedLibraryIkFast.hpp +147 -0
  268. include/dart/dynamics/SimpleFrame.hpp +247 -0
  269. include/dart/dynamics/Skeleton.hpp +1350 -0
  270. include/dart/dynamics/SmartPointer.hpp +185 -0
  271. include/dart/dynamics/SoftBodyNode.hpp +472 -0
  272. include/dart/dynamics/SoftMeshShape.hpp +100 -0
  273. include/dart/dynamics/SpecializedNodeManager.hpp +230 -0
  274. include/dart/dynamics/SphereShape.hpp +89 -0
  275. include/dart/dynamics/TemplatedJacobianNode.hpp +128 -0
  276. include/dart/dynamics/TranslationalJoint.hpp +105 -0
  277. include/dart/dynamics/TranslationalJoint2D.hpp +156 -0
  278. include/dart/dynamics/UniversalJoint.hpp +128 -0
  279. include/dart/dynamics/VoxelGridShape.hpp +171 -0
  280. include/dart/dynamics/WeldJoint.hpp +116 -0
  281. include/dart/dynamics/ZeroDofJoint.hpp +562 -0
  282. include/dart/dynamics/all.hpp +69 -0
  283. include/dart/dynamics/detail/BasicNodeManager.hpp +539 -0
  284. include/dart/dynamics/detail/BodyNode.hpp +344 -0
  285. include/dart/dynamics/detail/BodyNodeAspect.hpp +177 -0
  286. include/dart/dynamics/detail/BodyNodePtr.hpp +351 -0
  287. include/dart/dynamics/detail/CompositeNode.hpp +93 -0
  288. include/dart/dynamics/detail/DegreeOfFreedomPtr.hpp +338 -0
  289. include/dart/dynamics/detail/EndEffectorAspect.hpp +106 -0
  290. include/dart/dynamics/detail/EntityNode.hpp +81 -0
  291. include/dart/dynamics/detail/EntityNodeAspect.hpp +101 -0
  292. include/dart/dynamics/detail/EulerJointAspect.hpp +93 -0
  293. include/dart/dynamics/detail/FixedFrameAspect.hpp +58 -0
  294. include/dart/dynamics/detail/FixedJacobianNode.hpp +55 -0
  295. include/dart/dynamics/detail/GenericJoint.hpp +2471 -0
  296. include/dart/dynamics/detail/GenericJointAspect.hpp +353 -0
  297. include/dart/dynamics/detail/HeightmapShape-impl.hpp +243 -0
  298. include/dart/dynamics/detail/InverseKinematics.hpp +83 -0
  299. include/dart/dynamics/detail/InverseKinematicsPtr.hpp +341 -0
  300. include/dart/dynamics/detail/JointAspect.hpp +161 -0
  301. include/dart/dynamics/detail/JointPtr.hpp +293 -0
  302. include/dart/dynamics/detail/MarkerAspect.hpp +68 -0
  303. include/dart/dynamics/detail/MetaSkeleton-impl.hpp +151 -0
  304. include/dart/dynamics/detail/Node.hpp +532 -0
  305. include/dart/dynamics/detail/NodeManagerJoiner.hpp +184 -0
  306. include/dart/dynamics/detail/NodePtr.hpp +259 -0
  307. include/dart/dynamics/detail/PlanarJointAspect.hpp +136 -0
  308. include/dart/dynamics/detail/PrismaticJointAspect.hpp +85 -0
  309. include/dart/dynamics/detail/RevoluteJointAspect.hpp +86 -0
  310. include/dart/dynamics/detail/ScrewJointAspect.hpp +90 -0
  311. include/dart/dynamics/detail/ShapeFrameAspect.hpp +169 -0
  312. include/dart/dynamics/detail/ShapeNode.hpp +51 -0
  313. include/dart/dynamics/detail/Skeleton.hpp +92 -0
  314. include/dart/dynamics/detail/SkeletonAspect.hpp +181 -0
  315. include/dart/dynamics/detail/SoftBodyNodeAspect.hpp +132 -0
  316. include/dart/dynamics/detail/SpecializedNodeManager.hpp +324 -0
  317. include/dart/dynamics/detail/TemplatedJacobianNode.hpp +294 -0
  318. include/dart/dynamics/detail/TranslationalJoint2DAspect.hpp +140 -0
  319. include/dart/dynamics/detail/UniversalJointAspect.hpp +86 -0
  320. include/dart/dynamics/dynamics.hpp +14 -0
  321. include/dart/dynamics/ikfast.h +345 -0
  322. include/dart/external/convhull_3d/convhull_3d.h +1878 -0
  323. include/dart/external/convhull_3d/safe_convhull_3d.h +53 -0
  324. include/dart/external/odelcpsolver/common.h +418 -0
  325. include/dart/external/odelcpsolver/error.h +62 -0
  326. include/dart/external/odelcpsolver/lcp.h +75 -0
  327. include/dart/external/odelcpsolver/matrix.h +277 -0
  328. include/dart/external/odelcpsolver/misc.h +82 -0
  329. include/dart/external/odelcpsolver/odeconfig.h +110 -0
  330. include/dart/gui/osg/DefaultEventHandler.hpp +237 -0
  331. include/dart/gui/osg/DragAndDrop.hpp +360 -0
  332. include/dart/gui/osg/GridVisual.hpp +218 -0
  333. include/dart/gui/osg/ImGuiHandler.hpp +113 -0
  334. include/dart/gui/osg/ImGuiViewer.hpp +83 -0
  335. include/dart/gui/osg/ImGuiWidget.hpp +91 -0
  336. include/dart/gui/osg/IncludeImGui.hpp +75 -0
  337. include/dart/gui/osg/InteractiveFrame.hpp +170 -0
  338. include/dart/gui/osg/MouseEventHandler.hpp +76 -0
  339. include/dart/gui/osg/RealTimeWorldNode.hpp +126 -0
  340. include/dart/gui/osg/ShapeFrameNode.hpp +117 -0
  341. include/dart/gui/osg/SupportPolygonVisual.hpp +202 -0
  342. include/dart/gui/osg/TrackballManipulator.hpp +97 -0
  343. include/dart/gui/osg/Utils.hpp +120 -0
  344. include/dart/gui/osg/Viewer.hpp +427 -0
  345. include/dart/gui/osg/WorldNode.hpp +211 -0
  346. include/dart/gui/osg/all.hpp +19 -0
  347. include/dart/gui/osg/detail/CameraModeCallback.hpp +82 -0
  348. include/dart/gui/osg/detail/Utils-impl.hpp +160 -0
  349. include/dart/gui/osg/osg.hpp +14 -0
  350. include/dart/gui/osg/render/BoxShapeNode.hpp +74 -0
  351. include/dart/gui/osg/render/CapsuleShapeNode.hpp +75 -0
  352. include/dart/gui/osg/render/ConeShapeNode.hpp +74 -0
  353. include/dart/gui/osg/render/CylinderShapeNode.hpp +75 -0
  354. include/dart/gui/osg/render/EllipsoidShapeNode.hpp +76 -0
  355. include/dart/gui/osg/render/HeightmapShapeNode.hpp +485 -0
  356. include/dart/gui/osg/render/LineSegmentShapeNode.hpp +75 -0
  357. include/dart/gui/osg/render/MeshShapeNode.hpp +86 -0
  358. include/dart/gui/osg/render/MultiSphereShapeNode.hpp +76 -0
  359. include/dart/gui/osg/render/PlaneShapeNode.hpp +75 -0
  360. include/dart/gui/osg/render/PointCloudShapeNode.hpp +85 -0
  361. include/dart/gui/osg/render/PyramidShapeNode.hpp +75 -0
  362. include/dart/gui/osg/render/ShapeNode.hpp +126 -0
  363. include/dart/gui/osg/render/SoftMeshShapeNode.hpp +75 -0
  364. include/dart/gui/osg/render/SphereShapeNode.hpp +76 -0
  365. include/dart/gui/osg/render/VoxelGridShapeNode.hpp +83 -0
  366. include/dart/gui/osg/render/WarningShapeNode.hpp +64 -0
  367. include/dart/gui/osg/render/all.hpp +19 -0
  368. include/dart/gui/osg/render/render.hpp +14 -0
  369. include/dart/integration/EulerIntegrator.hpp +64 -0
  370. include/dart/integration/Integrator.hpp +104 -0
  371. include/dart/integration/RK4Integrator.hpp +68 -0
  372. include/dart/integration/SemiImplicitEulerIntegrator.hpp +64 -0
  373. include/dart/integration/all.hpp +6 -0
  374. include/dart/integration/integration.hpp +14 -0
  375. include/dart/lcpsolver/Lemke.hpp +54 -0
  376. include/dart/lcpsolver/ODELCPSolver.hpp +88 -0
  377. include/dart/lcpsolver/all.hpp +4 -0
  378. include/dart/lcpsolver/lcpsolver.hpp +14 -0
  379. include/dart/math/ConfigurationSpace.hpp +144 -0
  380. include/dart/math/Constants.hpp +79 -0
  381. include/dart/math/Geometry.hpp +659 -0
  382. include/dart/math/Helpers.hpp +481 -0
  383. include/dart/math/Icosphere.hpp +106 -0
  384. include/dart/math/MathTypes.hpp +100 -0
  385. include/dart/math/Mesh.hpp +108 -0
  386. include/dart/math/Random.hpp +225 -0
  387. include/dart/math/TriMesh.hpp +121 -0
  388. include/dart/math/all.hpp +11 -0
  389. include/dart/math/detail/ConfigurationSpace.hpp +235 -0
  390. include/dart/math/detail/Geometry-impl.hpp +126 -0
  391. include/dart/math/detail/Icosphere-impl.hpp +214 -0
  392. include/dart/math/detail/Mesh-impl.hpp +151 -0
  393. include/dart/math/detail/Random-impl.hpp +353 -0
  394. include/dart/math/detail/TriMesh-impl.hpp +202 -0
  395. include/dart/math/math.hpp +14 -0
  396. include/dart/optimizer/Function.hpp +203 -0
  397. include/dart/optimizer/GenericMultiObjectiveProblem.hpp +174 -0
  398. include/dart/optimizer/GradientDescentSolver.hpp +240 -0
  399. include/dart/optimizer/MultiObjectiveProblem.hpp +168 -0
  400. include/dart/optimizer/MultiObjectiveSolver.hpp +168 -0
  401. include/dart/optimizer/Population.hpp +108 -0
  402. include/dart/optimizer/Problem.hpp +191 -0
  403. include/dart/optimizer/Solver.hpp +182 -0
  404. include/dart/optimizer/all.hpp +10 -0
  405. include/dart/optimizer/ipopt/BackwardCompatibility.hpp +43 -0
  406. include/dart/optimizer/ipopt/IpoptSolver.hpp +223 -0
  407. include/dart/optimizer/ipopt/all.hpp +4 -0
  408. include/dart/optimizer/ipopt/ipopt.hpp +14 -0
  409. include/dart/optimizer/nlopt/NloptSolver.hpp +212 -0
  410. include/dart/optimizer/nlopt/all.hpp +3 -0
  411. include/dart/optimizer/nlopt/nlopt.hpp +14 -0
  412. include/dart/optimizer/optimizer.hpp +14 -0
  413. include/dart/simulation/Recording.hpp +118 -0
  414. include/dart/simulation/SmartPointer.hpp +46 -0
  415. include/dart/simulation/World.hpp +405 -0
  416. include/dart/simulation/all.hpp +5 -0
  417. include/dart/simulation/detail/World-impl.hpp +129 -0
  418. include/dart/simulation/simulation.hpp +14 -0
  419. include/dart/utils/C3D.hpp +107 -0
  420. include/dart/utils/CompositeResourceRetriever.hpp +97 -0
  421. include/dart/utils/DartResourceRetriever.hpp +104 -0
  422. include/dart/utils/FileInfoC3D.hpp +91 -0
  423. include/dart/utils/FileInfoDof.hpp +109 -0
  424. include/dart/utils/FileInfoWorld.hpp +75 -0
  425. include/dart/utils/PackageResourceRetriever.hpp +118 -0
  426. include/dart/utils/SkelParser.hpp +70 -0
  427. include/dart/utils/VskParser.hpp +108 -0
  428. include/dart/utils/XmlHelpers.hpp +243 -0
  429. include/dart/utils/all.hpp +14 -0
  430. include/dart/utils/detail/XmlHelpers-impl.hpp +213 -0
  431. include/dart/utils/mjcf/MjcfParser.hpp +80 -0
  432. include/dart/utils/mjcf/all.hpp +3 -0
  433. include/dart/utils/mjcf/mjcf.hpp +14 -0
  434. include/dart/utils/sdf/SdfParser.hpp +98 -0
  435. include/dart/utils/sdf/all.hpp +3 -0
  436. include/dart/utils/sdf/sdf.hpp +14 -0
  437. include/dart/utils/urdf/BackwardCompatibility.hpp +52 -0
  438. include/dart/utils/urdf/DartLoader.hpp +277 -0
  439. include/dart/utils/urdf/IncludeUrdf.hpp +47 -0
  440. include/dart/utils/urdf/URDFTypes.hpp +42 -0
  441. include/dart/utils/urdf/all.hpp +5 -0
  442. include/dart/utils/urdf/urdf.hpp +14 -0
  443. include/dart/utils/urdf/urdf_world_parser.hpp +83 -0
  444. include/dart/utils/utils.hpp +14 -0
  445. lib64/libdart-collision-bullet.a +0 -0
  446. lib64/libdart-collision-ode.a +0 -0
  447. lib64/libdart-external-odelcpsolver.a +0 -0
  448. lib64/libdart-gui-osg.a +0 -0
  449. lib64/libdart-optimizer-ipopt.a +0 -0
  450. lib64/libdart-optimizer-nlopt.a +0 -0
  451. lib64/libdart-utils-urdf.a +0 -0
  452. lib64/libdart-utils.a +0 -0
  453. lib64/libdart.a +0 -0
  454. lib64/pkgconfig/dart.pc +12 -0
  455. share/dart/cmake/DARTConfig.cmake +194 -0
  456. share/dart/cmake/DARTConfigVersion.cmake +65 -0
  457. share/dart/cmake/DARTFindBullet.cmake +96 -0
  458. share/dart/cmake/DARTFindEigen3.cmake +9 -0
  459. share/dart/cmake/DARTFindIPOPT.cmake +20 -0
  460. share/dart/cmake/DARTFindNLOPT.cmake +17 -0
  461. share/dart/cmake/DARTFindODE.cmake +23 -0
  462. share/dart/cmake/DARTFindOpenSceneGraph.cmake +69 -0
  463. share/dart/cmake/DARTFindassimp.cmake +18 -0
  464. share/dart/cmake/DARTFindfcl.cmake +23 -0
  465. share/dart/cmake/DARTFindfmt.cmake +9 -0
  466. share/dart/cmake/DARTFindimgui.cmake +21 -0
  467. share/dart/cmake/DARTFindoctomap.cmake +17 -0
  468. share/dart/cmake/DARTFindspdlog.cmake +9 -0
  469. share/dart/cmake/DARTFindtinyxml2.cmake +27 -0
  470. share/dart/cmake/DARTFindurdfdom.cmake +29 -0
  471. share/dart/cmake/FindIPOPT.cmake +54 -0
  472. share/dart/cmake/FindNLOPT.cmake +54 -0
  473. share/dart/cmake/FindODE.cmake +54 -0
  474. share/dart/cmake/Findassimp.cmake +56 -0
  475. share/dart/cmake/Findfcl.cmake +67 -0
  476. share/dart/cmake/Findimgui.cmake +70 -0
  477. share/dart/cmake/Findtinyxml2.cmake +54 -0
  478. share/dart/cmake/dart_collision-bulletComponent.cmake +19 -0
  479. share/dart/cmake/dart_collision-bulletTargets-release.cmake +19 -0
  480. share/dart/cmake/dart_collision-bulletTargets.cmake +122 -0
  481. share/dart/cmake/dart_collision-odeComponent.cmake +19 -0
  482. share/dart/cmake/dart_collision-odeTargets-release.cmake +19 -0
  483. share/dart/cmake/dart_collision-odeTargets.cmake +122 -0
  484. share/dart/cmake/dart_dartComponent.cmake +19 -0
  485. share/dart/cmake/dart_dartTargets-release.cmake +19 -0
  486. share/dart/cmake/dart_dartTargets.cmake +125 -0
  487. share/dart/cmake/dart_external-odelcpsolverComponent.cmake +19 -0
  488. share/dart/cmake/dart_external-odelcpsolverTargets-release.cmake +19 -0
  489. share/dart/cmake/dart_external-odelcpsolverTargets.cmake +106 -0
  490. share/dart/cmake/dart_gui-osgComponent.cmake +19 -0
  491. share/dart/cmake/dart_gui-osgTargets-release.cmake +19 -0
  492. share/dart/cmake/dart_gui-osgTargets.cmake +122 -0
  493. share/dart/cmake/dart_optimizer-ipoptComponent.cmake +19 -0
  494. share/dart/cmake/dart_optimizer-ipoptTargets-release.cmake +19 -0
  495. share/dart/cmake/dart_optimizer-ipoptTargets.cmake +123 -0
  496. share/dart/cmake/dart_optimizer-nloptComponent.cmake +19 -0
  497. share/dart/cmake/dart_optimizer-nloptTargets-release.cmake +19 -0
  498. share/dart/cmake/dart_optimizer-nloptTargets.cmake +123 -0
  499. share/dart/cmake/dart_utils-urdfComponent.cmake +19 -0
  500. share/dart/cmake/dart_utils-urdfTargets-release.cmake +19 -0
  501. share/dart/cmake/dart_utils-urdfTargets.cmake +122 -0
  502. share/dart/cmake/dart_utilsComponent.cmake +19 -0
  503. share/dart/cmake/dart_utilsTargets-release.cmake +19 -0
  504. share/dart/cmake/dart_utilsTargets.cmake +122 -0
  505. share/dart/package.xml +42 -0
  506. share/doc/dart/data/c3d/nick_freeform_001.c3d +0 -0
  507. share/doc/dart/data/c3d/squat.c3d +0 -0
  508. share/doc/dart/data/dof/RHand.dof +205 -0
  509. share/doc/dart/data/dof/fixedHand.dof +205 -0
  510. share/doc/dart/data/dof/init_Tpose.dof +240 -0
  511. share/doc/dart/data/dof/same.dof +1003 -0
  512. share/doc/dart/data/dof/simMotion.dof +1817 -0
  513. share/doc/dart/data/dof/simMotion1.dof +1355 -0
  514. share/doc/dart/data/etc/fort.4 +43 -0
  515. share/doc/dart/data/humanJointLimits/neuralnets/net-larm +0 -0
  516. share/doc/dart/data/humanJointLimits/neuralnets/net-lleg +0 -0
  517. share/doc/dart/data/mjcf/openai/LICENSE.md +36 -0
  518. share/doc/dart/data/mjcf/openai/ant.xml +81 -0
  519. share/doc/dart/data/mjcf/openai/half_cheetah.xml +96 -0
  520. share/doc/dart/data/mjcf/openai/hopper.xml +50 -0
  521. share/doc/dart/data/mjcf/openai/humanoid.xml +121 -0
  522. share/doc/dart/data/mjcf/openai/humanoidstandup.xml +121 -0
  523. share/doc/dart/data/mjcf/openai/inverted_double_pendulum.xml +47 -0
  524. share/doc/dart/data/mjcf/openai/inverted_pendulum.xml +27 -0
  525. share/doc/dart/data/mjcf/openai/point.xml +31 -0
  526. share/doc/dart/data/mjcf/openai/pusher.xml +91 -0
  527. share/doc/dart/data/mjcf/openai/reacher.xml +39 -0
  528. share/doc/dart/data/mjcf/openai/robotics/fetch/pick_and_place.xml +35 -0
  529. share/doc/dart/data/mjcf/openai/robotics/fetch/push.xml +32 -0
  530. share/doc/dart/data/mjcf/openai/robotics/fetch/reach.xml +26 -0
  531. share/doc/dart/data/mjcf/openai/robotics/fetch/robot.xml +123 -0
  532. share/doc/dart/data/mjcf/openai/robotics/fetch/shared.xml +66 -0
  533. share/doc/dart/data/mjcf/openai/robotics/fetch/slide.xml +32 -0
  534. share/doc/dart/data/mjcf/openai/robotics/stls/.get +0 -0
  535. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/base_link_collision.stl +0 -0
  536. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/bellows_link_collision.stl +0 -0
  537. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/elbow_flex_link_collision.stl +0 -0
  538. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/estop_link.stl +0 -0
  539. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/forearm_roll_link_collision.stl +0 -0
  540. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/gripper_link.stl +0 -0
  541. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_pan_link_collision.stl +0 -0
  542. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_tilt_link_collision.stl +0 -0
  543. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/l_wheel_link_collision.stl +0 -0
  544. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/laser_link.stl +0 -0
  545. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/r_wheel_link_collision.stl +0 -0
  546. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_lift_link_collision.stl +0 -0
  547. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_pan_link_collision.stl +0 -0
  548. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_fixed_link.stl +0 -0
  549. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_lift_link_collision.stl +0 -0
  550. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/upperarm_roll_link_collision.stl +0 -0
  551. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_flex_link_collision.stl +0 -0
  552. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_roll_link_collision.stl +0 -0
  553. share/doc/dart/data/mjcf/openai/robotics/textures/block.png +0 -0
  554. share/doc/dart/data/mjcf/openai/robotics/textures/block_hidden.png +0 -0
  555. share/doc/dart/data/mjcf/openai/striker.xml +101 -0
  556. share/doc/dart/data/mjcf/openai/swimmer.xml +39 -0
  557. share/doc/dart/data/mjcf/openai/thrower.xml +127 -0
  558. share/doc/dart/data/mjcf/openai/walker2d.xml +62 -0
  559. share/doc/dart/data/mjcf/test/default.xml +17 -0
  560. share/doc/dart/data/mjcf/test/include_default.xml +8 -0
  561. share/doc/dart/data/mjcf/test/include_main.xml +12 -0
  562. share/doc/dart/data/obj/Body_Hip.obj +22830 -0
  563. share/doc/dart/data/obj/BoxSmall.obj +23 -0
  564. share/doc/dart/data/obj/foot.obj +10970 -0
  565. share/doc/dart/data/other/torus1.path +11991 -0
  566. share/doc/dart/data/other/torus1.tris +5329 -0
  567. share/doc/dart/data/other/torus2.path +11991 -0
  568. share/doc/dart/data/other/torus2.tris +12961 -0
  569. share/doc/dart/data/screencap/.KEEP +0 -0
  570. share/doc/dart/data/sdf/atlas/atlas_v3.urdf +914 -0
  571. share/doc/dart/data/sdf/atlas/atlas_v3_no_head.sdf +1541 -0
  572. share/doc/dart/data/sdf/atlas/atlas_v3_no_head.urdf +914 -0
  573. share/doc/dart/data/sdf/atlas/atlas_v3_no_head_soft_feet.sdf +1567 -0
  574. share/doc/dart/data/sdf/atlas/ground.urdf +28 -0
  575. share/doc/dart/data/sdf/atlas/head.dae +8607 -0
  576. share/doc/dart/data/sdf/atlas/head.stl +0 -0
  577. share/doc/dart/data/sdf/atlas/head_camera.dae +2326 -0
  578. share/doc/dart/data/sdf/atlas/head_camera.stl +0 -0
  579. share/doc/dart/data/sdf/atlas/l_clav.dae +1278 -0
  580. share/doc/dart/data/sdf/atlas/l_clav.stl +0 -0
  581. share/doc/dart/data/sdf/atlas/l_farm.dae +1204 -0
  582. share/doc/dart/data/sdf/atlas/l_farm.stl +0 -0
  583. share/doc/dart/data/sdf/atlas/l_foot.dae +1330 -0
  584. share/doc/dart/data/sdf/atlas/l_foot.stl +0 -0
  585. share/doc/dart/data/sdf/atlas/l_hand.dae +964 -0
  586. share/doc/dart/data/sdf/atlas/l_hand.stl +0 -0
  587. share/doc/dart/data/sdf/atlas/l_larm.dae +1378 -0
  588. share/doc/dart/data/sdf/atlas/l_larm.stl +0 -0
  589. share/doc/dart/data/sdf/atlas/l_lglut.dae +897 -0
  590. share/doc/dart/data/sdf/atlas/l_lglut.stl +0 -0
  591. share/doc/dart/data/sdf/atlas/l_lleg.dae +6660 -0
  592. share/doc/dart/data/sdf/atlas/l_lleg.stl +0 -0
  593. share/doc/dart/data/sdf/atlas/l_scap.dae +1531 -0
  594. share/doc/dart/data/sdf/atlas/l_scap.stl +0 -0
  595. share/doc/dart/data/sdf/atlas/l_talus.dae +374 -0
  596. share/doc/dart/data/sdf/atlas/l_talus.stl +0 -0
  597. share/doc/dart/data/sdf/atlas/l_uarm.dae +1204 -0
  598. share/doc/dart/data/sdf/atlas/l_uarm.stl +0 -0
  599. share/doc/dart/data/sdf/atlas/l_uglut.dae +398 -0
  600. share/doc/dart/data/sdf/atlas/l_uglut.stl +0 -0
  601. share/doc/dart/data/sdf/atlas/l_uleg.dae +9087 -0
  602. share/doc/dart/data/sdf/atlas/l_uleg.stl +0 -0
  603. share/doc/dart/data/sdf/atlas/ltorso.dae +614 -0
  604. share/doc/dart/data/sdf/atlas/ltorso.stl +0 -0
  605. share/doc/dart/data/sdf/atlas/mtorso.dae +266 -0
  606. share/doc/dart/data/sdf/atlas/mtorso.stl +0 -0
  607. share/doc/dart/data/sdf/atlas/pelvis.dae +8727 -0
  608. share/doc/dart/data/sdf/atlas/pelvis.stl +0 -0
  609. share/doc/dart/data/sdf/atlas/r_clav.dae +1278 -0
  610. share/doc/dart/data/sdf/atlas/r_clav.stl +0 -0
  611. share/doc/dart/data/sdf/atlas/r_farm.dae +1204 -0
  612. share/doc/dart/data/sdf/atlas/r_farm.stl +0 -0
  613. share/doc/dart/data/sdf/atlas/r_foot.dae +1330 -0
  614. share/doc/dart/data/sdf/atlas/r_foot.stl +0 -0
  615. share/doc/dart/data/sdf/atlas/r_hand.dae +904 -0
  616. share/doc/dart/data/sdf/atlas/r_hand.stl +0 -0
  617. share/doc/dart/data/sdf/atlas/r_larm.dae +1378 -0
  618. share/doc/dart/data/sdf/atlas/r_larm.stl +0 -0
  619. share/doc/dart/data/sdf/atlas/r_lglut.dae +897 -0
  620. share/doc/dart/data/sdf/atlas/r_lglut.stl +0 -0
  621. share/doc/dart/data/sdf/atlas/r_lleg.dae +6661 -0
  622. share/doc/dart/data/sdf/atlas/r_lleg.stl +0 -0
  623. share/doc/dart/data/sdf/atlas/r_scap.dae +1531 -0
  624. share/doc/dart/data/sdf/atlas/r_scap.stl +0 -0
  625. share/doc/dart/data/sdf/atlas/r_talus.dae +374 -0
  626. share/doc/dart/data/sdf/atlas/r_talus.stl +0 -0
  627. share/doc/dart/data/sdf/atlas/r_uarm.dae +1144 -0
  628. share/doc/dart/data/sdf/atlas/r_uarm.stl +0 -0
  629. share/doc/dart/data/sdf/atlas/r_uglut.dae +398 -0
  630. share/doc/dart/data/sdf/atlas/r_uglut.stl +0 -0
  631. share/doc/dart/data/sdf/atlas/r_uleg.dae +9087 -0
  632. share/doc/dart/data/sdf/atlas/r_uleg.stl +0 -0
  633. share/doc/dart/data/sdf/atlas/utorso.dae +28342 -0
  634. share/doc/dart/data/sdf/atlas/utorso.stl +0 -0
  635. share/doc/dart/data/sdf/atlas/utorso_mod.dae +16508 -0
  636. share/doc/dart/data/sdf/atlas/utorso_mod.stl +0 -0
  637. share/doc/dart/data/sdf/atlas/utorso_pack.dae +8521 -0
  638. share/doc/dart/data/sdf/atlas/utorso_pack.stl +0 -0
  639. share/doc/dart/data/sdf/benchmark.world +2510 -0
  640. share/doc/dart/data/sdf/double_pendulum.world +168 -0
  641. share/doc/dart/data/sdf/double_pendulum_with_base.world +263 -0
  642. share/doc/dart/data/sdf/empty.world +13 -0
  643. share/doc/dart/data/sdf/ground.world +48 -0
  644. share/doc/dart/data/sdf/materials/textures/atlas_cage_and_camera_diffuse_flat.jpg +0 -0
  645. share/doc/dart/data/sdf/materials/textures/drc_extremities_diffuse.jpg +0 -0
  646. share/doc/dart/data/sdf/materials/textures/drc_labels_1.jpg +0 -0
  647. share/doc/dart/data/sdf/materials/textures/drc_torso_head_diffuse.jpg +0 -0
  648. share/doc/dart/data/sdf/materials/textures/extremities_diffuse_unplugged.jpg +0 -0
  649. share/doc/dart/data/sdf/materials/textures/right_leg_diffuse_unplugged.jpg +0 -0
  650. share/doc/dart/data/sdf/materials/textures/torso_diffuse_unplugged.jpg +0 -0
  651. share/doc/dart/data/sdf/quad.sdf +867 -0
  652. share/doc/dart/data/sdf/test/force_torque_test.world +173 -0
  653. share/doc/dart/data/sdf/test/force_torque_test2.world +214 -0
  654. share/doc/dart/data/sdf/test/issue1193_revolute_test.sdf +70 -0
  655. share/doc/dart/data/sdf/test/issue1193_revolute_with_offset_test.sdf +70 -0
  656. share/doc/dart/data/sdf/test/issue1624_cubes.sdf +5037 -0
  657. share/doc/dart/data/sdf/test/single_bodynode_skeleton.world +55 -0
  658. share/doc/dart/data/sdf/test/test_issue1583.model +45 -0
  659. share/doc/dart/data/sdf/test/test_issue1596.model +182 -0
  660. share/doc/dart/data/sdf/test/test_skeleton_joint.world +278 -0
  661. share/doc/dart/data/skel/biped.skel +850 -0
  662. share/doc/dart/data/skel/bullet_collision.skel +174 -0
  663. share/doc/dart/data/skel/chain.skel +212 -0
  664. share/doc/dart/data/skel/cube.skel +71 -0
  665. share/doc/dart/data/skel/cubes.skel +137 -0
  666. share/doc/dart/data/skel/empty.skel +10 -0
  667. share/doc/dart/data/skel/freeChain.skel +212 -0
  668. share/doc/dart/data/skel/fullbody1.skel +1177 -0
  669. share/doc/dart/data/skel/ground.skel +31 -0
  670. share/doc/dart/data/skel/joint_limit.skel +123 -0
  671. share/doc/dart/data/skel/kima/abdomen.dae +18933 -0
  672. share/doc/dart/data/skel/kima/head.dae +34634 -0
  673. share/doc/dart/data/skel/kima/kima_human_edited.skel +933 -0
  674. share/doc/dart/data/skel/kima/kima_human_left_arm.skel +323 -0
  675. share/doc/dart/data/skel/kima/kima_human_left_leg.skel +327 -0
  676. share/doc/dart/data/skel/kima/l-clavicle.dae +20111 -0
  677. share/doc/dart/data/skel/kima/l-foot.dae +28208 -0
  678. share/doc/dart/data/skel/kima/pelvis.dae +35919 -0
  679. share/doc/dart/data/skel/kima/r-clavicle.dae +20090 -0
  680. share/doc/dart/data/skel/kima/thorax.dae +47337 -0
  681. share/doc/dart/data/skel/mesh_collision.skel +137 -0
  682. share/doc/dart/data/skel/shapes.skel +378 -0
  683. share/doc/dart/data/skel/skateboard.skel +222 -0
  684. share/doc/dart/data/skel/softBodies.skel +284 -0
  685. share/doc/dart/data/skel/soft_cubes.skel +134 -0
  686. share/doc/dart/data/skel/soft_open_chain.skel +241 -0
  687. share/doc/dart/data/skel/sphere.skel +74 -0
  688. share/doc/dart/data/skel/spheres.skel +118 -0
  689. share/doc/dart/data/skel/test/SimplePendulum.skel +141 -0
  690. share/doc/dart/data/skel/test/ball_joints.skel +49 -0
  691. share/doc/dart/data/skel/test/box_stacking.skel +346 -0
  692. share/doc/dart/data/skel/test/boxes.skel +52 -0
  693. share/doc/dart/data/skel/test/chainwhipa.skel +193 -0
  694. share/doc/dart/data/skel/test/collision_of_prescribed_joints_test.skel +249 -0
  695. share/doc/dart/data/skel/test/dof_attribute_test.skel +206 -0
  696. share/doc/dart/data/skel/test/double_pendulum.skel +76 -0
  697. share/doc/dart/data/skel/test/double_pendulum_ball_joint.skel +76 -0
  698. share/doc/dart/data/skel/test/double_pendulum_euler_joint.skel +78 -0
  699. share/doc/dart/data/skel/test/double_pendulum_with_base.skel +1390 -0
  700. share/doc/dart/data/skel/test/drop.skel +116 -0
  701. share/doc/dart/data/skel/test/drop_BENCHMARK.skel +10 -0
  702. share/doc/dart/data/skel/test/drop_unrotated_box.skel +156 -0
  703. share/doc/dart/data/skel/test/empty.skel +10 -0
  704. share/doc/dart/data/skel/test/file_info_world_test.skel +1177 -0
  705. share/doc/dart/data/skel/test/free_joints.skel +49 -0
  706. share/doc/dart/data/skel/test/gazebo/drop_test.skel +161 -0
  707. share/doc/dart/data/skel/test/gazebo/force_torque_test.skel +138 -0
  708. share/doc/dart/data/skel/test/gazebo/force_torque_test2.skel +171 -0
  709. share/doc/dart/data/skel/test/hybrid_dynamics_test.skel +172 -0
  710. share/doc/dart/data/skel/test/joint_actuator_type_test.skel +185 -0
  711. share/doc/dart/data/skel/test/joint_dynamics_elements_test.skel +103 -0
  712. share/doc/dart/data/skel/test/joint_friction_test.skel +80 -0
  713. share/doc/dart/data/skel/test/joint_limit_test.skel +80 -0
  714. share/doc/dart/data/skel/test/planar_joint.skel +167 -0
  715. share/doc/dart/data/skel/test/serial_chain_BENCHMARK.skel +10 -0
  716. share/doc/dart/data/skel/test/serial_chain_ball_joint.skel +212 -0
  717. share/doc/dart/data/skel/test/serial_chain_ball_joint_20.skel +412 -0
  718. share/doc/dart/data/skel/test/serial_chain_ball_joint_40.skel +812 -0
  719. share/doc/dart/data/skel/test/serial_chain_eulerxyz_joint.skel +224 -0
  720. share/doc/dart/data/skel/test/serial_chain_revolute_joint.skel +244 -0
  721. share/doc/dart/data/skel/test/simple_tree_structure.skel +108 -0
  722. share/doc/dart/data/skel/test/simple_tree_structure_ball_joint.skel +108 -0
  723. share/doc/dart/data/skel/test/simple_tree_structure_euler_joint.skel +111 -0
  724. share/doc/dart/data/skel/test/single_pendulum.skel +55 -0
  725. share/doc/dart/data/skel/test/single_pendulum_ball_joint.skel +55 -0
  726. share/doc/dart/data/skel/test/single_pendulum_euler_joint.skel +56 -0
  727. share/doc/dart/data/skel/test/spheres.skel +118 -0
  728. share/doc/dart/data/skel/test/test_adaptive_deformable.skel +88 -0
  729. share/doc/dart/data/skel/test/test_articulated_bodies.skel +112 -0
  730. share/doc/dart/data/skel/test/test_articulated_bodies_10bodies.skel +401 -0
  731. share/doc/dart/data/skel/test/test_double_pendulum.skel +105 -0
  732. share/doc/dart/data/skel/test/test_drop_box.skel +87 -0
  733. share/doc/dart/data/skel/test/test_drop_box_offset.skel +87 -0
  734. share/doc/dart/data/skel/test/test_drop_low_stiffness.skel +86 -0
  735. share/doc/dart/data/skel/test/test_drop_sphere.skel +86 -0
  736. share/doc/dart/data/skel/test/test_shapes.skel +324 -0
  737. share/doc/dart/data/skel/test/test_single_body.skel +55 -0
  738. share/doc/dart/data/skel/test/test_single_pendulum.skel +55 -0
  739. share/doc/dart/data/skel/test/translational_joints.skel +49 -0
  740. share/doc/dart/data/skel/test/tree_structure.skel +428 -0
  741. share/doc/dart/data/skel/test/tree_structure_ball_joint.skel +441 -0
  742. share/doc/dart/data/skel/test/tree_structure_euler_joint.skel +441 -0
  743. share/doc/dart/data/skel/two_cubes.skel +118 -0
  744. share/doc/dart/data/skel/vehicle.skel +322 -0
  745. share/doc/dart/data/test/hello_world.txt +1 -0
  746. share/doc/dart/data/urdf/KR5/KR5 sixx R650.urdf +397 -0
  747. share/doc/dart/data/urdf/KR5/ground.urdf +28 -0
  748. share/doc/dart/data/urdf/KR5/meshes/base_link.STL +0 -0
  749. share/doc/dart/data/urdf/KR5/meshes/bicep.STL +0 -0
  750. share/doc/dart/data/urdf/KR5/meshes/elbow.STL +0 -0
  751. share/doc/dart/data/urdf/KR5/meshes/forearm.STL +0 -0
  752. share/doc/dart/data/urdf/KR5/meshes/palm.STL +0 -0
  753. share/doc/dart/data/urdf/KR5/meshes/shoulder.STL +0 -0
  754. share/doc/dart/data/urdf/KR5/meshes/wrist.STL +0 -0
  755. share/doc/dart/data/urdf/drchubo/CMakeLists.txt +5 -0
  756. share/doc/dart/data/urdf/drchubo/drchubo.urdf +1508 -0
  757. share/doc/dart/data/urdf/drchubo/meshes/convhull_LAP_merged.stl +0 -0
  758. share/doc/dart/data/urdf/drchubo/meshes/convhull_LAR_merged.stl +0 -0
  759. share/doc/dart/data/urdf/drchubo/meshes/convhull_LEP_merged.stl +0 -0
  760. share/doc/dart/data/urdf/drchubo/meshes/convhull_LF1.stl +0 -0
  761. share/doc/dart/data/urdf/drchubo/meshes/convhull_LF2.stl +0 -0
  762. share/doc/dart/data/urdf/drchubo/meshes/convhull_LF3.stl +0 -0
  763. share/doc/dart/data/urdf/drchubo/meshes/convhull_LHP_merged.stl +0 -0
  764. share/doc/dart/data/urdf/drchubo/meshes/convhull_LHR_merged.stl +0 -0
  765. share/doc/dart/data/urdf/drchubo/meshes/convhull_LHY_merged.stl +0 -0
  766. share/doc/dart/data/urdf/drchubo/meshes/convhull_LKP_merged.stl +0 -0
  767. share/doc/dart/data/urdf/drchubo/meshes/convhull_LSP_merged.stl +0 -0
  768. share/doc/dart/data/urdf/drchubo/meshes/convhull_LSR_merged.stl +0 -0
  769. share/doc/dart/data/urdf/drchubo/meshes/convhull_LSY_merged.stl +0 -0
  770. share/doc/dart/data/urdf/drchubo/meshes/convhull_LWP_merged.stl +0 -0
  771. share/doc/dart/data/urdf/drchubo/meshes/convhull_LWR_merged.stl +0 -0
  772. share/doc/dart/data/urdf/drchubo/meshes/convhull_LWY_merged.stl +0 -0
  773. share/doc/dart/data/urdf/drchubo/meshes/convhull_NK1_merged.stl +0 -0
  774. share/doc/dart/data/urdf/drchubo/meshes/convhull_NK2.stl +0 -0
  775. share/doc/dart/data/urdf/drchubo/meshes/convhull_NKY_merged.stl +0 -0
  776. share/doc/dart/data/urdf/drchubo/meshes/convhull_RAP_merged.stl +0 -0
  777. share/doc/dart/data/urdf/drchubo/meshes/convhull_RAR_merged.stl +0 -0
  778. share/doc/dart/data/urdf/drchubo/meshes/convhull_REP_merged.stl +0 -0
  779. share/doc/dart/data/urdf/drchubo/meshes/convhull_RF1.stl +0 -0
  780. share/doc/dart/data/urdf/drchubo/meshes/convhull_RF2.stl +0 -0
  781. share/doc/dart/data/urdf/drchubo/meshes/convhull_RF3.stl +0 -0
  782. share/doc/dart/data/urdf/drchubo/meshes/convhull_RHP_merged.stl +0 -0
  783. share/doc/dart/data/urdf/drchubo/meshes/convhull_RHR_merged.stl +0 -0
  784. share/doc/dart/data/urdf/drchubo/meshes/convhull_RHY_merged.stl +0 -0
  785. share/doc/dart/data/urdf/drchubo/meshes/convhull_RKP_merged.stl +0 -0
  786. share/doc/dart/data/urdf/drchubo/meshes/convhull_RSP_merged.stl +0 -0
  787. share/doc/dart/data/urdf/drchubo/meshes/convhull_RSR_merged.stl +0 -0
  788. share/doc/dart/data/urdf/drchubo/meshes/convhull_RSY_merged.stl +0 -0
  789. share/doc/dart/data/urdf/drchubo/meshes/convhull_RWP_merged.stl +0 -0
  790. share/doc/dart/data/urdf/drchubo/meshes/convhull_RWR_merged.stl +0 -0
  791. share/doc/dart/data/urdf/drchubo/meshes/convhull_RWY_merged.stl +0 -0
  792. share/doc/dart/data/urdf/drchubo/meshes/convhull_TSY_merged.stl +0 -0
  793. share/doc/dart/data/urdf/drchubo/meshes/convhull_Torso_merged.stl +0 -0
  794. share/doc/dart/data/urdf/drchubo/package.xml +11 -0
  795. share/doc/dart/data/urdf/test/invalid.urdf +1 -0
  796. share/doc/dart/data/urdf/test/invalid_mesh.stl +1 -0
  797. share/doc/dart/data/urdf/test/invalid_mesh.urdf +10 -0
  798. share/doc/dart/data/urdf/test/issue838.urdf +86 -0
  799. share/doc/dart/data/urdf/test/joint_properties.urdf +60 -0
  800. share/doc/dart/data/urdf/test/missing_mesh.urdf +10 -0
  801. share/doc/dart/data/urdf/test/missing_package.urdf +10 -0
  802. share/doc/dart/data/urdf/test/primitive_geometry.urdf +12 -0
  803. share/doc/dart/data/urdf/test/testWorld.urdf +9 -0
  804. share/doc/dart/data/urdf/wam/meshes/images/base_gray_128x.jpg +0 -0
  805. share/doc/dart/data/urdf/wam/meshes/images/forearm_256x.jpg +0 -0
  806. share/doc/dart/data/urdf/wam/meshes/images/lpu_128x.jpg +0 -0
  807. share/doc/dart/data/urdf/wam/meshes/images/shoulder_256x.jpg +0 -0
  808. share/doc/dart/data/urdf/wam/meshes/images/upperarm_128x.jpg +0 -0
  809. share/doc/dart/data/urdf/wam/meshes/images/wrist_yaw_128x.jpg +0 -0
  810. share/doc/dart/data/urdf/wam/meshes/wam/wam1.STL +0 -0
  811. share/doc/dart/data/urdf/wam/meshes/wam/wam1.dae +187 -0
  812. share/doc/dart/data/urdf/wam/meshes/wam/wam1_collision.STL +0 -0
  813. share/doc/dart/data/urdf/wam/meshes/wam/wam2.STL +0 -0
  814. share/doc/dart/data/urdf/wam/meshes/wam/wam2.dae +187 -0
  815. share/doc/dart/data/urdf/wam/meshes/wam/wam2_collision.STL +0 -0
  816. share/doc/dart/data/urdf/wam/meshes/wam/wam3.STL +0 -0
  817. share/doc/dart/data/urdf/wam/meshes/wam/wam3.dae +187 -0
  818. share/doc/dart/data/urdf/wam/meshes/wam/wam3_collision.STL +0 -0
  819. share/doc/dart/data/urdf/wam/meshes/wam/wam4.STL +0 -0
  820. share/doc/dart/data/urdf/wam/meshes/wam/wam4.dae +187 -0
  821. share/doc/dart/data/urdf/wam/meshes/wam/wam4_collision.STL +0 -0
  822. share/doc/dart/data/urdf/wam/meshes/wam/wam5.STL +0 -0
  823. share/doc/dart/data/urdf/wam/meshes/wam/wam5.dae +187 -0
  824. share/doc/dart/data/urdf/wam/meshes/wam/wam5_collision.STL +0 -0
  825. share/doc/dart/data/urdf/wam/meshes/wam/wam6.STL +0 -0
  826. share/doc/dart/data/urdf/wam/meshes/wam/wam6.dae +187 -0
  827. share/doc/dart/data/urdf/wam/meshes/wam/wam6_collision.STL +0 -0
  828. share/doc/dart/data/urdf/wam/meshes/wam/wam7.STL +0 -0
  829. share/doc/dart/data/urdf/wam/meshes/wam/wam7.dae +137 -0
  830. share/doc/dart/data/urdf/wam/meshes/wam/wam7_collision.STL +0 -0
  831. share/doc/dart/data/urdf/wam/meshes/wam/wam_base.STL +0 -0
  832. share/doc/dart/data/urdf/wam/meshes/wam/wam_base.dae +103 -0
  833. share/doc/dart/data/urdf/wam/meshes/wam/wam_base_collision.STL +0 -0
  834. share/doc/dart/data/urdf/wam/wam.urdf +230 -0
  835. share/doc/dart/data/vsk/Nick01.vsk +398 -0
  836. share/doc/dart/data/vsk/SehoonVSK3.vsk +398 -0
  837. share/doc/dart/data/vsk/Yuting.vsk +398 -0
  838. share/doc/dart/data/vsk/test/empty.vsk +3 -0
  839. share/doc/dart/examples/CMakeLists.txt +44 -0
  840. share/doc/dart/examples/README.md +33 -0
  841. share/doc/dart/examples/add_delete_skels/CMakeLists.txt +19 -0
  842. share/doc/dart/examples/add_delete_skels/main.cpp +165 -0
  843. share/doc/dart/examples/atlas_puppet/CMakeLists.txt +19 -0
  844. share/doc/dart/examples/atlas_puppet/README.md +20 -0
  845. share/doc/dart/examples/atlas_puppet/main.cpp +930 -0
  846. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.cpp +71 -0
  847. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.hpp +56 -0
  848. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.cpp +187 -0
  849. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.hpp +85 -0
  850. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.cpp +134 -0
  851. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.hpp +75 -0
  852. share/doc/dart/examples/atlas_simbicon/CMakeLists.txt +19 -0
  853. share/doc/dart/examples/atlas_simbicon/Controller.cpp +996 -0
  854. share/doc/dart/examples/atlas_simbicon/Controller.hpp +203 -0
  855. share/doc/dart/examples/atlas_simbicon/README.md +20 -0
  856. share/doc/dart/examples/atlas_simbicon/State.cpp +674 -0
  857. share/doc/dart/examples/atlas_simbicon/State.hpp +336 -0
  858. share/doc/dart/examples/atlas_simbicon/StateMachine.cpp +222 -0
  859. share/doc/dart/examples/atlas_simbicon/StateMachine.hpp +134 -0
  860. share/doc/dart/examples/atlas_simbicon/TerminalCondition.cpp +111 -0
  861. share/doc/dart/examples/atlas_simbicon/TerminalCondition.hpp +102 -0
  862. share/doc/dart/examples/atlas_simbicon/main.cpp +102 -0
  863. share/doc/dart/examples/biped_stand/CMakeLists.txt +19 -0
  864. share/doc/dart/examples/biped_stand/README.md +20 -0
  865. share/doc/dart/examples/biped_stand/main.cpp +287 -0
  866. share/doc/dart/examples/box_stacking/CMakeLists.txt +19 -0
  867. share/doc/dart/examples/box_stacking/README.md +20 -0
  868. share/doc/dart/examples/box_stacking/main.cpp +417 -0
  869. share/doc/dart/examples/boxes/CMakeLists.txt +19 -0
  870. share/doc/dart/examples/boxes/README.md +20 -0
  871. share/doc/dart/examples/boxes/main.cpp +157 -0
  872. share/doc/dart/examples/drag_and_drop/CMakeLists.txt +19 -0
  873. share/doc/dart/examples/drag_and_drop/README.md +20 -0
  874. share/doc/dart/examples/drag_and_drop/main.cpp +101 -0
  875. share/doc/dart/examples/empty/CMakeLists.txt +19 -0
  876. share/doc/dart/examples/empty/README.md +20 -0
  877. share/doc/dart/examples/empty/main.cpp +164 -0
  878. share/doc/dart/examples/fetch/CMakeLists.txt +19 -0
  879. share/doc/dart/examples/fetch/README.md +20 -0
  880. share/doc/dart/examples/fetch/main.cpp +246 -0
  881. share/doc/dart/examples/hardcoded_design/CMakeLists.txt +19 -0
  882. share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.cpp +71 -0
  883. share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.hpp +56 -0
  884. share/doc/dart/examples/hardcoded_design/README.md +27 -0
  885. share/doc/dart/examples/hardcoded_design/main.cpp +186 -0
  886. share/doc/dart/examples/heightmap/CMakeLists.txt +19 -0
  887. share/doc/dart/examples/heightmap/README.md +20 -0
  888. share/doc/dart/examples/heightmap/main.cpp +460 -0
  889. share/doc/dart/examples/hello_world/CMakeLists.txt +19 -0
  890. share/doc/dart/examples/hello_world/README.md +20 -0
  891. share/doc/dart/examples/hello_world/main.cpp +114 -0
  892. share/doc/dart/examples/hubo_puppet/CMakeLists.txt +19 -0
  893. share/doc/dart/examples/hubo_puppet/README.md +20 -0
  894. share/doc/dart/examples/hubo_puppet/main.cpp +1464 -0
  895. share/doc/dart/examples/human_joint_limits/CMakeLists.txt +49 -0
  896. share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.cpp +411 -0
  897. share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.hpp +182 -0
  898. share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.cpp +432 -0
  899. share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.hpp +179 -0
  900. share/doc/dart/examples/human_joint_limits/main.cpp +157 -0
  901. share/doc/dart/examples/hybrid_dynamics/CMakeLists.txt +19 -0
  902. share/doc/dart/examples/hybrid_dynamics/README.md +17 -0
  903. share/doc/dart/examples/hybrid_dynamics/main.cpp +187 -0
  904. share/doc/dart/examples/imgui/CMakeLists.txt +19 -0
  905. share/doc/dart/examples/imgui/README.md +20 -0
  906. share/doc/dart/examples/imgui/main.cpp +289 -0
  907. share/doc/dart/examples/joint_constraints/CMakeLists.txt +19 -0
  908. share/doc/dart/examples/joint_constraints/Controller.cpp +110 -0
  909. share/doc/dart/examples/joint_constraints/Controller.hpp +105 -0
  910. share/doc/dart/examples/joint_constraints/README.md +22 -0
  911. share/doc/dart/examples/joint_constraints/main.cpp +242 -0
  912. share/doc/dart/examples/mixed_chain/CMakeLists.txt +19 -0
  913. share/doc/dart/examples/mixed_chain/README.md +35 -0
  914. share/doc/dart/examples/mixed_chain/main.cpp +188 -0
  915. share/doc/dart/examples/operational_space_control/CMakeLists.txt +19 -0
  916. share/doc/dart/examples/operational_space_control/README.md +20 -0
  917. share/doc/dart/examples/operational_space_control/main.cpp +338 -0
  918. share/doc/dart/examples/point_cloud/CMakeLists.txt +19 -0
  919. share/doc/dart/examples/point_cloud/README.md +20 -0
  920. share/doc/dart/examples/point_cloud/main.cpp +740 -0
  921. share/doc/dart/examples/rerun/CMakeLists.txt +19 -0
  922. share/doc/dart/examples/rigid_chain/CMakeLists.txt +19 -0
  923. share/doc/dart/examples/rigid_chain/README.md +19 -0
  924. share/doc/dart/examples/rigid_chain/main.cpp +110 -0
  925. share/doc/dart/examples/rigid_cubes/CMakeLists.txt +19 -0
  926. share/doc/dart/examples/rigid_cubes/README.md +91 -0
  927. share/doc/dart/examples/rigid_cubes/main.cpp +201 -0
  928. share/doc/dart/examples/rigid_loop/CMakeLists.txt +19 -0
  929. share/doc/dart/examples/rigid_loop/README.md +34 -0
  930. share/doc/dart/examples/rigid_loop/main.cpp +127 -0
  931. share/doc/dart/examples/rigid_shapes/CMakeLists.txt +19 -0
  932. share/doc/dart/examples/rigid_shapes/README.md +19 -0
  933. share/doc/dart/examples/rigid_shapes/main.cpp +250 -0
  934. share/doc/dart/examples/simple_frames/CMakeLists.txt +19 -0
  935. share/doc/dart/examples/simple_frames/README.md +27 -0
  936. share/doc/dart/examples/simple_frames/main.cpp +124 -0
  937. share/doc/dart/examples/simulation_event_handler/CMakeLists.txt +19 -0
  938. share/doc/dart/examples/simulation_event_handler/README.md +189 -0
  939. share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.cpp +572 -0
  940. share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.hpp +211 -0
  941. share/doc/dart/examples/simulation_event_handler/main.cpp +277 -0
  942. share/doc/dart/examples/soft_bodies/CMakeLists.txt +19 -0
  943. share/doc/dart/examples/soft_bodies/README.md +20 -0
  944. share/doc/dart/examples/soft_bodies/main.cpp +219 -0
  945. share/doc/dart/examples/speed_test/CMakeLists.txt +19 -0
  946. share/doc/dart/examples/speed_test/README.md +20 -0
  947. share/doc/dart/examples/speed_test/main.cpp +250 -0
  948. share/doc/dart/examples/tinkertoy/CMakeLists.txt +19 -0
  949. share/doc/dart/examples/tinkertoy/README.md +20 -0
  950. share/doc/dart/examples/tinkertoy/TinkertoyWidget.cpp +208 -0
  951. share/doc/dart/examples/tinkertoy/TinkertoyWidget.hpp +70 -0
  952. share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.cpp +35 -0
  953. share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.hpp +470 -0
  954. share/doc/dart/examples/tinkertoy/main.cpp +186 -0
  955. share/doc/dart/examples/vehicle/CMakeLists.txt +19 -0
  956. share/doc/dart/examples/vehicle/README.md +22 -0
  957. share/doc/dart/examples/vehicle/main.cpp +195 -0
  958. share/doc/dart/examples/wam_ikfast/CMakeLists.txt +22 -0
  959. share/doc/dart/examples/wam_ikfast/Helpers.cpp +148 -0
  960. share/doc/dart/examples/wam_ikfast/Helpers.hpp +46 -0
  961. share/doc/dart/examples/wam_ikfast/InputHandler.cpp +110 -0
  962. share/doc/dart/examples/wam_ikfast/InputHandler.hpp +73 -0
  963. share/doc/dart/examples/wam_ikfast/README.md +20 -0
  964. share/doc/dart/examples/wam_ikfast/WamWorld.cpp +46 -0
  965. share/doc/dart/examples/wam_ikfast/WamWorld.hpp +53 -0
  966. share/doc/dart/examples/wam_ikfast/ikfast/CMakeLists.txt +11 -0
  967. share/doc/dart/examples/wam_ikfast/ikfast/ikfast71.Transform6D.4_6_9_10_11_12_f8.cpp +14930 -0
  968. share/doc/dart/examples/wam_ikfast/osgWamIkFast.cpp +96 -0
  969. share/doc/dart/tutorials/CMakeLists.txt +12 -0
  970. share/doc/dart/tutorials/README.md +45 -0
  971. share/doc/dart/tutorials/tutorial_biped/CMakeLists.txt +19 -0
  972. share/doc/dart/tutorials/tutorial_biped/README +18 -0
  973. share/doc/dart/tutorials/tutorial_biped/main.cpp +374 -0
  974. share/doc/dart/tutorials/tutorial_biped_finished/CMakeLists.txt +19 -0
  975. share/doc/dart/tutorials/tutorial_biped_finished/README +18 -0
  976. share/doc/dart/tutorials/tutorial_biped_finished/main.cpp +532 -0
  977. share/doc/dart/tutorials/tutorial_collisions/CMakeLists.txt +19 -0
  978. share/doc/dart/tutorials/tutorial_collisions/README +18 -0
  979. share/doc/dart/tutorials/tutorial_collisions/main.cpp +506 -0
  980. share/doc/dart/tutorials/tutorial_collisions_finished/CMakeLists.txt +19 -0
  981. share/doc/dart/tutorials/tutorial_collisions_finished/README +18 -0
  982. share/doc/dart/tutorials/tutorial_collisions_finished/main.cpp +679 -0
  983. share/doc/dart/tutorials/tutorial_dominoes/CMakeLists.txt +19 -0
  984. share/doc/dart/tutorials/tutorial_dominoes/README +18 -0
  985. share/doc/dart/tutorials/tutorial_dominoes/main.cpp +394 -0
  986. share/doc/dart/tutorials/tutorial_dominoes_finished/CMakeLists.txt +19 -0
  987. share/doc/dart/tutorials/tutorial_dominoes_finished/README +18 -0
  988. share/doc/dart/tutorials/tutorial_dominoes_finished/main.cpp +559 -0
  989. share/doc/dart/tutorials/tutorial_multi_pendulum/CMakeLists.txt +19 -0
  990. share/doc/dart/tutorials/tutorial_multi_pendulum/README +18 -0
  991. share/doc/dart/tutorials/tutorial_multi_pendulum/main.cpp +443 -0
  992. share/doc/dart/tutorials/tutorial_multi_pendulum_finished/CMakeLists.txt +19 -0
  993. share/doc/dart/tutorials/tutorial_multi_pendulum_finished/README +18 -0
  994. share/doc/dart/tutorials/tutorial_multi_pendulum_finished/main.cpp +512 -0
@@ -0,0 +1,187 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
3
+ <asset>
4
+ <contributor>
5
+ <author>dmh</author>
6
+ <authoring_tool>OpenCOLLADA for 3ds Max; Version: 1.2.5; Revision: 673; Platform: Win32; Configuration: Release Max9</authoring_tool>
7
+ <source_data>file:///D:/Re2_components_20110111/Re2_DAE_Conversion_Source/Re2_DAE_conversion3.max</source_data>
8
+ </contributor>
9
+ <created>2011-02-01T18:23:07</created>
10
+ <modified>2011-02-01T18:23:07</modified>
11
+ <unit name="meter" meter="1.0"/>
12
+ <up_axis>Y_UP</up_axis>
13
+ </asset>
14
+ <library_effects>
15
+ <effect id="upperarmM">
16
+ <profile_COMMON>
17
+ <newparam sid="upperarm_128x_jpg-surface">
18
+ <surface type="2D">
19
+ <init_from>upperarm_128x_jpg</init_from>
20
+ </surface>
21
+ </newparam>
22
+ <newparam sid="upperarm_128x_jpg-sampler">
23
+ <sampler2D>
24
+ <source>upperarm_128x_jpg-surface</source>
25
+ </sampler2D>
26
+ </newparam>
27
+ <technique sid="common">
28
+ <blinn>
29
+ <emission>
30
+ <color>0 0 0 1</color>
31
+ </emission>
32
+ <ambient>
33
+ <color>0 0 0 1</color>
34
+ </ambient>
35
+ <diffuse>
36
+ <texture texture="upperarm_128x_jpg-sampler" texcoord="CHANNEL1"/>
37
+ </diffuse>
38
+ <specular>
39
+ <color>0.9 0.9 0.9 1</color>
40
+ </specular>
41
+ <shininess>
42
+ <float>40</float>
43
+ </shininess>
44
+ <reflective>
45
+ <color>0 0 0 1</color>
46
+ </reflective>
47
+ <transparent opaque="A_ONE">
48
+ <color>1 1 1 1</color>
49
+ </transparent>
50
+ <transparency>
51
+ <float>1</float>
52
+ </transparency>
53
+ </blinn>
54
+ </technique>
55
+ </profile_COMMON>
56
+ <extra>
57
+ <technique profile="OpenCOLLADA3dsMax">
58
+ <extended_shader>
59
+ <apply_reflection_dimming>0</apply_reflection_dimming>
60
+ <dim_level>0</dim_level>
61
+ <falloff_type>0</falloff_type>
62
+ <index_of_refraction>1.5</index_of_refraction>
63
+ <opacity_type>0</opacity_type>
64
+ <reflection_level>3</reflection_level>
65
+ <wire_size>1</wire_size>
66
+ <wire_units>0</wire_units>
67
+ </extended_shader>
68
+ <shader>
69
+ <ambient_diffuse_lock>1</ambient_diffuse_lock>
70
+ <ambient_diffuse_texture_lock>0</ambient_diffuse_texture_lock>
71
+ <diffuse_specular_lock>0</diffuse_specular_lock>
72
+ <soften>0.1</soften>
73
+ <use_self_illum_color>0</use_self_illum_color>
74
+ </shader>
75
+ </technique>
76
+ </extra>
77
+ </effect>
78
+ </library_effects>
79
+ <library_materials>
80
+ <material id="upperarmM-material" name="upperarmM">
81
+ <instance_effect url="#upperarmM"/>
82
+ </material>
83
+ </library_materials>
84
+ <library_geometries>
85
+ <geometry id="geom-wamUpperArmLink3" name="wamUpperArmLink3">
86
+ <mesh>
87
+ <source id="geom-wamUpperArmLink3-positions">
88
+ <float_array id="geom-wamUpperArmLink3-positions-array" count="2256">0.023157 0.038 0.465 0.038799 0.021792 0.465 0.0445 0.034825 0.485797 0.0445 0.01499 0.469255 0.0445 -1.0325074129e-16 0.465 0.0445 -0.01495 0.469233 0.038799 -0.021792 0.465 0.041325 -0.038 0.485163 0.0445 -0.034825 0.485797 0.023157 -0.038 0.465 0.041325 0.038 0.485162 0.037589 0.038 0.481446 0.024072 0.038 0.46793 -0.041325 -0.038 0.485162 -0.023157 -0.038 0.465 -0.038799 -0.021792 0.465 -0.0445 -0.01499 0.469255 -0.0445 -0.034825 0.485797 -0.0445 -1.0325074129e-16 0.465 -0.0445 0.01495 0.469233 -0.038799 0.021792 0.465 -0.0445 0.034825 0.485796 -0.023157 0.038 0.465 -0.041325 0.038 0.485162 0.065028 0.038 0.579913 0.059091 0.038 0.58402 0.055471 0.038 0.584442 0.065028 -0.038 0.579913 0.065487 -0.038 0.580598 0.073474 -0.038 0.573351 0.048622 0.038 0.586646 0.068351 0.038 0.578474 0.072836 -0.038 0.572828 0.05547 -0.038 0.584442 0.045 0.038 0.586 0.072837 0.038 0.572828 0.07902 -0.038 0.564091 0.055711 -0.038 0.585231 0.03785 0.038 0.586123 0.075598 0.038 0.570487 0.078258 -0.038 0.563776 0.045 -0.038 0.586 0.031223 0.038 0.58326 0.078258 0.038 0.563776 0.081646 -0.038 0.553622 0.045 -0.038 0.586825 0.027661 0.038 0.582486 0.080231 0.038 0.560711 0.080825 -0.038 0.553542 0.031223 -0.038 0.58326 0.019544 0.038 0.575456 0.080825 0.038 0.553541 0.081123 -0.038 0.54285 0.030908 -0.038 0.584022 0.018961 0.038 0.576039 0.081825 0.038 0.55 0.080314 -0.038 0.543011 0.019544 -0.038 0.575456 -0.022607 0.038 0.533305 0.080314 0.038 0.54301 0.077486 -0.038 0.532661 0.018961 -0.038 0.576039 -0.034933 0.038 0.522146 0.079022 0.038 0.535908 0.076758 -0.038 0.53305 -0.022607 -0.038 0.533305 -0.027 0.038 0.522698 0.076758 0.038 0.533049 0.071039 -0.038 0.523961 -0.034933 -0.038 0.522146 -0.039664 0.038 0.515065 0.071039 0.038 0.523961 0.070456 -0.038 0.524544 -0.027 -0.038 0.522698 -0.041325 0.038 0.506713 0.070456 0.038 0.524544 0.046063 -0.038 0.498984 -0.039664 -0.038 0.515065 -0.041325 0.038 0.485162 0.046063 0.038 0.498984 0.045479 -0.038 0.499568 -0.041325 -0.038 0.506713 -0.027 0.038 0.475001 0.045479 0.038 0.499568 0.042558 -0.038 0.493736 -0.027 -0.038 0.475001 -0.041325 -0.038 0.485162 -0.025418 -0.038 0.469603 -0.023157 -0.038 0.465 -0.021172 -0.038 0.465913 -0.017 -0.038 0.465001 0.041915 -0.038 0.494333 0.041325 -0.038 0.487547 0.040511 -0.038 0.488158 0.041325 -0.038 0.485163 0.037589 -0.038 0.481446 0.024072 -0.038 0.46793 0.023157 -0.038 0.465 0.017001 -0.038 0.465001 -0.025418 0.038 0.469603 -0.023157 0.038 0.465 -0.021172 0.038 0.465913 -0.017 0.038 0.465001 0.042558 0.038 0.493736 0.041915 0.038 0.494333 0.040511 0.038 0.488158 0.041325 0.038 0.487547 0.041325 0.038 0.485162 0.037589 0.038 0.481446 0.024072 0.038 0.46793 0.023157 0.038 0.465 0.021172 0.038 0.465912 0.017001 0.038 0.465001 0.055711 -0.038 0.585231 0.045 -0.034825 0.59 0.065 -0.034825 0.584641 0.065487 -0.038 0.580598 0.079641 -0.034825 0.57 0.073474 -0.038 0.573351 0.07902 -0.038 0.564091 0.085 -0.034825 0.55 0.081646 -0.038 0.553622 0.081123 -0.038 0.54285 0.081955 -0.034825 0.534693 0.077486 -0.038 0.532661 0.071039 -0.038 0.523961 0.073284 -0.034825 0.521716 0.046063 -0.038 0.498984 0.048308 -0.034825 0.496739 0.0445 -0.034825 0.487547 0.0445 -0.034825 0.485797 0.041325 -0.038 0.485163 0.041325 -0.038 0.487547 0.04549 -0.034825 0.492522 0.042558 -0.038 0.493736 0.045 -0.038 0.586825 0.030908 -0.038 0.584022 0.029693 -0.034825 0.586955 0.018961 -0.038 0.576039 0.016716 -0.034825 0.578284 -0.037178 -0.034825 0.524391 -0.034933 -0.038 0.522146 -0.039664 -0.038 0.515065 -0.042597 -0.034825 0.51628 -0.041325 -0.038 0.506713 -0.0445 -0.034825 0.506713 -0.041325 -0.038 0.485162 -0.0445 -0.034825 0.485797 -0.0445 0.034825 0.506713 -0.0445 0.034825 0.485796 -0.041325 0.038 0.485162 -0.041325 0.038 0.506713 -0.042597 0.034825 0.51628 -0.039664 0.038 0.515065 -0.037178 0.034825 0.524391 -0.034933 0.038 0.522146 0.016716 0.034825 0.578284 0.018961 0.038 0.576039 0.027661 0.038 0.582486 0.032639 0.034825 0.588042 0.03785 0.038 0.586123 0.051257 0.034825 0.589508 0.048622 0.038 0.586646 0.059091 0.038 0.58402 0.068511 0.034825 0.582361 0.068351 0.038 0.578474 0.075598 0.038 0.570487 0.08064 0.034825 0.56816 0.080231 0.038 0.560711 0.085 0.034825 0.55 0.081825 0.038 0.55 0.081955 0.034825 0.534693 0.079022 0.038 0.535908 0.073284 0.034825 0.521716 0.071039 0.038 0.523961 0.048308 0.034825 0.496739 0.046063 0.038 0.498984 0.04549 0.034825 0.492522 0.042558 0.038 0.493736 0.0445 0.034825 0.485797 0.041325 0.038 0.487547 0.041325 0.038 0.485162 0.03329 -0.028 0.486 0.040868 -0.014902 0.486 0.0445 -0.028 0.486 0.040868 0.014902 0.486 0.03329 0.028 0.486 0.0445 0.028 0.486 0.0435 -1.07913677994e-16 0.486 -0.040868 0.014902 0.486 -0.0445 0.028 0.486 -0.03329 0.028 0.486 -0.0435 -1.07913677994e-16 0.486 -0.0445 -0.028 0.486 -0.040868 -0.014902 0.486 -0.03329 -0.028 0.486 0.0445 -0.028 0.486 0.044734 -0.032 0.49 0.029466 -0.032 0.49 0.03329 -0.028 0.486 0.029861 0.031632 0.488325 0.044734 0.032 0.49 0.0445 0.028 0.486 0.03329 0.028 0.486 -0.029466 0.032 0.49 -0.03329 0.028 0.486 -0.0445 0.028 0.486 -0.0445 0.032 0.49 -0.0445 -0.028 0.486 -0.03329 -0.028 0.486 -0.029466 -0.032 0.49 -0.0445 -0.032 0.49 0.0445 0.028 0.486 0.044734 0.032 0.49 0.0445 0.034825 0.485797 0.0445 -0.034825 0.485797 0.044734 -0.032 0.49 0.0445 -0.028 0.486 0.0445 -0.034825 0.487547 0.046016 -0.032 0.493637 0.04549 -0.034825 0.492522 0.048308 -0.034825 0.496739 0.048308 -0.032 0.496739 0.073284 -0.032 0.521716 0.073284 -0.034825 0.521716 0.081955 -0.032 0.534693 0.081955 -0.034825 0.534693 0.085 -0.032 0.55 0.085 -0.034825 0.55 0.046016 0.032 0.493637 0.04549 0.034825 0.492522 0.048308 0.032 0.496739 0.048308 0.034825 0.496739 0.073284 0.032 0.521716 0.073284 0.034825 0.521716 0.081955 0.032 0.534693 0.081955 0.034825 0.534693 0.085 0.032 0.55 0.085 0.034825 0.55 0.080628 0.032 0.568182 0.08064 0.034825 0.56816 0.068496 0.032 0.582371 0.068511 0.034825 0.582361 0.051276 0.032 0.589504 0.051257 0.034825 0.589508 0.080628 -0.032 0.568182 0.079641 -0.034825 0.57 0.065 -0.034825 0.584641 0.068496 -0.032 0.582371 0.051276 -0.032 0.589504 0.032664 0.032 0.588049 0.032639 0.034825 0.588042 0.016716 0.032 0.578284 -0.037178 0.032 0.524391 0.016716 0.034825 0.578284 0.045 -0.034825 0.59 0.032664 -0.032 0.588049 0.029693 -0.034825 0.586955 0.016716 -0.032 0.578284 0.016716 -0.034825 0.578284 -0.037178 -0.032 0.524391 -0.037178 -0.034825 0.524391 -0.037178 0.034825 0.524391 -0.042597 0.032 0.51628 -0.042597 0.034825 0.51628 -0.0445 0.032 0.506713 -0.0445 0.034825 0.506713 -0.0445 0.032 0.49 -0.0445 0.034825 0.485796 -0.0445 0.028 0.486 -0.0445 -0.028 0.486 -0.0445 -0.032 0.49 -0.0445 -0.034825 0.485797 -0.0445 -0.034825 0.506713 -0.0445 -0.032 0.506713 -0.042597 -0.034825 0.51628 -0.042597 -0.032 0.51628 -0.0445 0.01495 0.469233 -0.0445 -0.01499 0.469255 0.0445 0.01499 0.469255 0.0445 -0.01495 0.469233 0.027225 -0.0115 0.52084 0.015806 0.0115 0.532247 0.027271 0.0115 0.52076 0.015692 -0.0115 0.532313 4.8e-05 0.0115 0.536499 -4.8e-05 -0.0115 0.536499 -0.015692 0.0115 0.532313 -0.015806 -0.0115 0.532247 0.0315 -0.0115 0.505 0.0315 0.0115 0.505 0.027271 -0.0115 0.48924 0.027225 0.0115 0.48916 0.015806 -0.0115 0.477753 0.015692 0.0115 0.477687 4.8e-05 -0.0115 0.473501 -4.8e-05 0.0115 0.473501 -0.015692 -0.0115 0.477687 -0.015806 0.0115 0.477753 -0.027225 -0.0115 0.48916 -0.027271 0.0115 0.48924 -0.0315 -0.0115 0.505 -0.0315 0.0115 0.505 -0.027271 -0.0115 0.52076 -0.027225 0.0115 0.52084 0.0 0.0115 0.4955 0.0 0.032 0.4955 -0.006717 0.0115 0.498282 -0.0095 0.0115 0.505 -0.006756 0.032 0.498323 -0.009499 0.032 0.505038 -0.006718 0.0115 0.511717 -0.006714 0.032 0.51172 0.0 0.0115 0.5145 0.0 0.032 0.5145 0.0 -0.032 0.4955 0.0 -0.0115 0.4955 -0.006714 -0.032 0.49828 -0.009499 -0.032 0.504962 -0.006718 -0.0115 0.498283 -0.0095 -0.0115 0.505 -0.006756 -0.032 0.511677 -0.006717 -0.0115 0.511718 0.0 -0.032 0.5145 0.0 -0.0115 0.5145 0.006714 -0.032 0.51172 0.006718 -0.0115 0.511717 0.0095 -0.0115 0.505 0.009499 -0.032 0.505038 0.006717 -0.0115 0.498282 0.006756 -0.032 0.498323 0.006717 0.0115 0.511718 0.006756 0.032 0.511677 0.0095 0.0115 0.505 0.009499 0.032 0.504962 0.006714 0.032 0.49828 0.006718 0.0115 0.498283 -0.015692 0.0115 0.532313 -0.027225 0.0115 0.52084 -0.0095 0.0115 0.505 -0.027271 -0.0115 0.52076 -0.015806 -0.0115 0.532247 -0.006717 -0.0115 0.511718 -0.006717 0.0115 0.498282 -0.006718 0.0115 0.511717 0.0 -0.0115 0.5145 -0.0095 -0.0115 0.505 -0.0315 0.0115 0.505 4.8e-05 0.0115 0.536499 -4.8e-05 -0.0115 0.536499 -0.0315 -0.0115 0.505 0.0 0.0115 0.4955 0.0 0.0115 0.5145 0.006718 -0.0115 0.511717 -0.006718 -0.0115 0.498283 -0.027271 0.0115 0.48924 0.015806 0.0115 0.532247 0.015692 -0.0115 0.532313 -0.027225 -0.0115 0.48916 0.006717 0.0115 0.511718 -0.015806 0.0115 0.477753 -0.015692 -0.0115 0.477687 0.0095 -0.0115 0.505 0.027271 0.0115 0.52076 0.006718 0.0115 0.498283 4.8e-05 -0.0115 0.473501 0.027225 -0.0115 0.52084 0.0095 0.0115 0.505 0.015806 -0.0115 0.477753 0.006717 -0.0115 0.498282 -4.8e-05 0.0115 0.473501 0.0315 0.0115 0.505 0.0 -0.0115 0.4955 0.0315 -0.0115 0.505 0.015692 0.0115 0.477687 0.027225 0.0115 0.48916 0.027271 -0.0115 0.48924 -0.023825 0.044 0.522698 -0.023825 0.044 0.475001 0.035344 0.044 0.483691 0.021827 0.044 0.470175 -0.021825 0.044 0.470176 -0.020361 0.044 0.53106 0.037338 0.044 0.488272 0.021789 0.044 0.573211 0.039004 0.044 0.4956 0.043234 0.044 0.501813 0.032438 0.044 0.580326 0.068211 0.044 0.526789 0.045 0.044 0.582825 0.073957 0.044 0.534545 0.054547 0.044 0.581405 0.077199 0.044 0.543627 0.063262 0.044 0.577275 0.077665 0.044 0.553229 0.070381 0.044 0.570815 0.075325 0.044 0.562561 0.017001 0.044 0.468176 -0.017 0.044 0.468176 0.021827 -0.044 0.470175 -0.023825 -0.044 0.475001 -0.023825 -0.044 0.522698 0.017001 -0.044 0.468176 -0.021825 -0.044 0.470176 -0.017 -0.044 0.468176 0.035344 -0.044 0.483691 0.037338 -0.044 0.488272 -0.020361 -0.044 0.53106 0.021789 -0.044 0.573211 0.039004 -0.044 0.4956 0.043234 -0.044 0.501813 0.068211 -0.044 0.526789 0.073957 -0.044 0.534544 0.032438 -0.044 0.580326 0.077199 -0.044 0.543626 0.045 -0.044 0.582825 0.077666 -0.044 0.553229 0.054547 -0.044 0.581405 0.075325 -0.044 0.562561 0.063262 -0.044 0.577275 0.070382 -0.044 0.570814 0.077665 0.044 0.553229 0.080827 0.040825 0.553529 0.075325 0.044 0.562561 0.07826 0.040825 0.563777 0.070381 0.044 0.570815 0.072828 0.040825 0.572838 0.063262 0.044 0.577275 0.077199 0.044 0.543627 0.080308 0.040825 0.542977 0.073957 0.044 0.534545 0.076749 0.040825 0.53303 0.068211 0.044 0.526789 0.070456 0.040825 0.524544 0.043234 0.044 0.501813 0.045479 0.040825 0.499568 0.039004 0.044 0.4956 0.041914 0.040825 0.494334 0.037338 0.044 0.488272 0.040511 0.040825 0.488158 0.035344 0.044 0.483691 0.037589 0.040825 0.481446 0.021827 0.044 0.470175 0.024072 0.040825 0.46793 0.017001 0.044 0.468176 0.017001 0.040825 0.465001 -0.017 0.044 0.468176 -0.017 0.040825 0.465001 -0.021825 0.044 0.470176 -0.024071 0.040825 0.46793 -0.023825 0.044 0.475001 -0.027 0.040825 0.475001 -0.023825 0.044 0.522698 -0.027 0.040825 0.522698 -0.020361 0.044 0.53106 -0.022607 0.040825 0.533305 0.021789 0.044 0.573211 0.019544 0.040825 0.575456 0.032438 0.044 0.580326 0.031223 0.040825 0.58326 0.045 0.044 0.582825 0.045 0.040825 0.586 0.054547 0.044 0.581405 0.05545 0.040825 0.58445 0.065001 0.040825 0.579933 -0.020361 -0.044 0.53106 -0.022607 -0.040825 0.533305 0.021789 -0.044 0.573211 -0.023825 -0.044 0.522698 -0.027 -0.040825 0.522698 -0.023825 -0.044 0.475001 -0.027 -0.040825 0.475001 0.019544 -0.040825 0.575456 0.032438 -0.044 0.580326 0.031223 -0.040825 0.58326 0.045 -0.044 0.582825 0.045 -0.040825 0.586 0.054547 -0.044 0.581405 0.05545 -0.040825 0.58445 0.063262 -0.044 0.577275 0.065001 -0.040825 0.579933 0.070382 -0.044 0.570814 0.072828 -0.040825 0.572838 0.075325 -0.044 0.562561 0.07826 -0.040825 0.563777 0.077666 -0.044 0.553229 0.080827 -0.040825 0.553529 0.077199 -0.044 0.543626 0.080308 -0.040825 0.542977 0.073957 -0.044 0.534544 0.076749 -0.040825 0.53303 0.068211 -0.044 0.526789 0.070456 -0.040825 0.524544 0.043234 -0.044 0.501813 0.045479 -0.040825 0.499568 0.039004 -0.044 0.4956 0.041914 -0.040825 0.494334 0.037338 -0.044 0.488272 0.040511 -0.040825 0.488158 0.035344 -0.044 0.483691 0.037589 -0.040825 0.481446 0.021827 -0.044 0.470175 0.017001 -0.044 0.468176 0.017001 -0.040825 0.465001 -0.017 -0.044 0.468176 -0.017 -0.040825 0.465001 -0.021825 -0.044 0.470176 0.024072 -0.040825 0.46793 -0.024071 -0.040825 0.46793 -0.027 0.040825 0.522698 -0.027 0.038 0.522698 -0.027 0.040825 0.475001 -0.022607 0.040825 0.533305 -0.022607 0.038 0.533305 0.019544 0.040825 0.575456 0.019544 0.038 0.575456 0.031223 0.040825 0.58326 0.031223 0.038 0.58326 0.045 0.040825 0.586 0.045 0.038 0.586 0.05545 0.040825 0.58445 0.055471 0.038 0.584442 0.065001 0.040825 0.579933 0.065028 0.038 0.579913 0.072828 0.040825 0.572838 0.072837 0.038 0.572828 0.07826 0.040825 0.563777 0.078258 0.038 0.563776 0.080827 0.040825 0.553529 0.080825 0.038 0.553541 0.080308 0.040825 0.542977 0.080314 0.038 0.54301 0.076749 0.040825 0.53303 0.076758 0.038 0.533049 0.070456 0.040825 0.524544 0.070456 0.038 0.524544 0.045479 0.040825 0.499568 0.045479 0.038 0.499568 0.041914 0.040825 0.494334 0.041915 0.038 0.494333 0.040511 0.040825 0.488158 0.040511 0.038 0.488158 0.037589 0.040825 0.481446 0.037589 0.038 0.481446 0.024072 0.040825 0.46793 0.024072 0.038 0.46793 0.017001 0.040825 0.465001 0.017001 0.038 0.465001 -0.025418 0.038 0.469603 -0.024071 0.040825 0.46793 -0.017 0.038 0.465001 -0.017 0.040825 0.465001 -0.027 -0.040825 0.475001 -0.027 -0.038 0.475001 -0.027 -0.040825 0.522698 -0.027 -0.038 0.522698 -0.022607 -0.040825 0.533305 -0.022607 -0.038 0.533305 0.019544 -0.040825 0.575456 0.019544 -0.038 0.575456 0.031223 -0.040825 0.58326 0.031223 -0.038 0.58326 0.045 -0.040825 0.586 0.045 -0.038 0.586 0.05545 -0.040825 0.58445 0.05547 -0.038 0.584442 0.065001 -0.040825 0.579933 0.065028 -0.038 0.579913 0.072828 -0.040825 0.572838 0.072836 -0.038 0.572828 0.07826 -0.040825 0.563777 0.078258 -0.038 0.563776 0.080827 -0.040825 0.553529 0.080825 -0.038 0.553542 0.080308 -0.040825 0.542977 0.080314 -0.038 0.543011 0.076749 -0.040825 0.53303 0.076758 -0.038 0.53305 0.070456 -0.040825 0.524544 0.070456 -0.038 0.524544 0.045479 -0.040825 0.499568 0.045479 -0.038 0.499568 0.041914 -0.040825 0.494334 0.041915 -0.038 0.494333 0.040511 -0.040825 0.488158 0.040511 -0.038 0.488158 0.037589 -0.040825 0.481446 0.037589 -0.038 0.481446 0.024072 -0.040825 0.46793 0.024072 -0.038 0.46793 0.017001 -0.040825 0.465001 -0.024071 -0.040825 0.46793 -0.025418 -0.038 0.469603 -0.017 -0.040825 0.465001 -0.021172 -0.038 0.465913 0.017001 -0.038 0.465001 -0.017 -0.038 0.465001 -0.027 0.038 0.475001 0.0 0.032 0.5145 0.032664 0.032 0.588049 0.051276 0.032 0.589504 0.068496 0.032 0.582371 0.006756 0.032 0.511677 0.080628 0.032 0.568182 0.085 0.032 0.55 0.009499 0.032 0.504962 0.081955 0.032 0.534693 0.073284 0.032 0.521716 0.048308 0.032 0.496739 0.046016 0.032 0.493637 0.044734 0.032 0.49 0.006714 0.032 0.49828 0.029861 0.031632 0.488325 0.0 0.032 0.4955 -0.029466 0.032 0.49 -0.006756 0.032 0.498323 -0.0445 0.032 0.49 -0.009499 0.032 0.505038 -0.0445 0.032 0.506713 -0.042597 0.032 0.51628 -0.006714 0.032 0.51172 -0.037178 0.032 0.524391 0.016716 0.032 0.578284 0.0 -0.032 0.5145 0.016716 -0.032 0.578284 -0.037178 -0.032 0.524391 -0.006756 -0.032 0.511677 -0.042597 -0.032 0.51628 -0.0445 -0.032 0.506713 -0.009499 -0.032 0.504962 -0.0445 -0.032 0.49 -0.006714 -0.032 0.49828 -0.029466 -0.032 0.49 0.0 -0.032 0.4955 0.044734 -0.032 0.49 0.006756 -0.032 0.498323 0.029466 -0.032 0.49 0.046016 -0.032 0.493637 0.048308 -0.032 0.496739 0.073284 -0.032 0.521716 0.009499 -0.032 0.505038 0.081955 -0.032 0.534693 0.085 -0.032 0.55 0.006714 -0.032 0.51172 0.080628 -0.032 0.568182 0.068496 -0.032 0.582371 0.051276 -0.032 0.589504 0.032664 -0.032 0.588049 0.0 0.0445 0.465 -0.022176 0.038579 8.5662588134e-18 1.5e-05 0.0445 9.88098491916e-18 -0.023157 0.038 0.465 -0.038467 0.022367 4.96647167836e-18 -0.038799 0.021792 0.465 -0.0445 0.0 0.0 -0.0445 -1.0325074129e-16 0.465 0.022262 0.03853 8.55537862776e-18 0.023157 0.038 0.465 0.038523 0.022271 4.94515539629e-18 0.038799 0.021792 0.465 -0.038523 -0.022271 -4.94515539629e-18 -0.038799 -0.021792 0.465 -0.022261 -0.03853 -8.55537862776e-18 -0.023157 -0.038 0.465 -1.5e-05 -0.0445 -9.88098491916e-18 0.0 -0.0445 0.465 0.022177 -0.038579 -8.5662588134e-18 0.023157 -0.038 0.465 0.0445 -1.0325074129e-16 0.465 0.0445 0.0 0.0 0.038799 -0.021792 0.465 0.038468 -0.022367 -4.96647167836e-18 1.5e-05 0.0445 9.88098491916e-18 0.021676 0.037713 8.37396818554e-18 0.022262 0.03853 8.55537862776e-18 -0.022176 0.038579 8.5662588134e-18 -1.8e-05 0.0435 9.65894031424e-18 -0.038467 0.022367 4.96647167836e-18 -0.021764 0.037662 8.36264391069e-18 -0.0445 0.0 0.0 -0.037656 0.021773 4.83457718303e-18 -0.038523 -0.022271 -4.94515539629e-18 -0.0435 0.0 0.0 -0.022261 -0.03853 -8.55537862776e-18 -0.037601 -0.021868 -4.8556714205e-18 -1.5e-05 -0.0445 -9.88098491916e-18 -0.021676 -0.037713 -8.37396818554e-18 0.022177 -0.038579 -8.5662588134e-18 1.8e-05 -0.0435 -9.65894031424e-18 0.038468 -0.022367 -4.96647167836e-18 0.021764 -0.037662 -8.36264391069e-18 0.0445 0.0 0.0 0.037656 -0.021773 -4.83457718303e-18 0.038523 0.022271 4.94515539629e-18 0.0435 0.0 0.0 0.037601 0.021868 4.8556714205e-18 -0.029 0.028 0.452683 -0.025668 0.032 0.456683 0.026012 0.031632 0.455008 0.029 0.028 0.452683 -0.035601 0.014902 0.452683 0.035601 0.014902 0.452683 -0.037894 -1.00515817891e-16 0.452683 0.037894 -1.00515817891e-16 0.452683 -0.035601 -0.014902 0.452683 0.035601 -0.014902 0.452683 -0.029 -0.028 0.452683 0.029 -0.028 0.452683 -0.025668 -0.032 0.456683 0.025668 -0.032 0.456683 -0.029466 0.032 0.49 0.029861 0.031632 0.488325 0.026012 0.031632 0.455008 -0.025668 0.032 0.456683 -0.025668 -0.032 0.456683 0.025668 -0.032 0.456683 0.029466 -0.032 0.49 -0.029466 -0.032 0.49 0.0 0.0445 0.465 -0.023157 0.038 0.465 -0.023157 -0.038 0.465 0.0 -0.0445 0.465 0.023157 -0.038 0.465 0.023157 0.038 0.465 -0.029466 -0.032 0.49 -0.03329 -0.028 0.486 -0.040868 -0.014902 0.486 -0.0435 -1.07913677994e-16 0.486 -0.040868 0.014902 0.486 -0.03329 0.028 0.486 -0.029466 0.032 0.49 0.029861 0.031632 0.488325 0.03329 0.028 0.486 0.040868 0.014902 0.486 0.0435 -1.07913677994e-16 0.486 0.040868 -0.014902 0.486 0.03329 -0.028 0.486 0.029466 -0.032 0.49 0.029 0.028 0.452683 0.026012 0.031632 0.455008 0.035601 0.014902 0.452683 0.037894 -1.00515817891e-16 0.452683 0.035601 -0.014902 0.452683 0.029 -0.028 0.452683 0.025668 -0.032 0.456683 -0.025668 -0.032 0.456683 -0.025668 0.032 0.456683 -0.029 0.028 0.452683 -0.035601 0.014902 0.452683 -0.037894 -1.00515817891e-16 0.452683 -0.035601 -0.014902 0.452683 -0.029 -0.028 0.452683</float_array>
89
+ <technique_common>
90
+ <accessor source="#geom-wamUpperArmLink3-positions-array" count="752" stride="3">
91
+ <param name="X" type="float"/>
92
+ <param name="Y" type="float"/>
93
+ <param name="Z" type="float"/>
94
+ </accessor>
95
+ </technique_common>
96
+ </source>
97
+ <source id="geom-wamUpperArmLink3-normals">
98
+ <float_array id="geom-wamUpperArmLink3-normals-array" count="2271">0.7225931 0.4365482 -0.5359897 0.6079414 0.587371 -0.5342308 0.6506105 0.5293621 -0.5445014 0.7908466 0.2498736 -0.5586812 0.9875459 5.31515e-05 -0.1573306 0.7879993 -0.2628349 -0.5567537 0.7340175 -0.436287 -0.5204537 0.6487077 -0.5217977 -0.5539905 0.6216384 -0.5014857 -0.601729 0.6037608 -0.5826768 -0.5440225 0.6081788 0.5775543 -0.5445637 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.6144019 0.4908609 -0.6177101 -0.6037518 -0.5826682 -0.5440418 -0.648708 -0.5218906 -0.5539027 -0.7338383 -0.4362552 -0.5207328 -0.7882932 -0.2634127 -0.5560642 -0.62186 -0.501576 -0.6014247 -0.9875459 -5.31515e-05 -0.1573306 -0.7905242 0.2493312 -0.5593795 -0.7226808 0.4365751 -0.5358492 -0.659394 0.5242935 -0.5388097 -0.611344 0.579471 -0.5389544 -0.6344274 0.5202688 -0.5716836 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 0.9999999 2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 0.9999999 2.22044582721e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 0.9999999 2.22044582721e-16 0.0 1.0 2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 0.9999999 2.22044582721e-16 0.0 0.9999999 2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 1.0 2.22044604925e-16 0.0 0.9999999 2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 0.9999999 2.22044582721e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 0.9999999 2.22044582721e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -0.9999999 -2.22044582721e-16 -0.005981257 -0.6883959 0.7253105 0.2225773 -0.5636755 0.7954429 0.3725043 -0.6771543 0.6345887 0.4724777 -0.6576597 0.5867269 0.6331797 -0.6797486 0.3701694 0.5989821 -0.528483 0.601603 0.7526305 -0.6109002 0.2456589 0.7264335 -0.687195 0.00757874 0.7528962 -0.6447673 0.1319928 0.7406247 -0.6556333 -0.1470374 0.6447496 -0.6460082 -0.4086213 0.6599934 -0.6985856 -0.2763818 0.5539078 -0.6977158 -0.4542894 0.5459902 -0.7055277 -0.4518024 0.5460373 -0.7055244 -0.4517506 0.5501919 -0.7051834 -0.4472194 0.7071064 -0.7071072 -1.57009338864e-16 0.7052308 -0.7052316 -0.07278715 0.7071064 -0.7071072 -1.57009338864e-16 0.7055617 -0.7055067 -0.06665639 0.6533747 -0.7069587 -0.2707603 0.6533899 -0.7069625 -0.270713 -0.01868186 -0.7069792 0.7069875 -0.2706179 -0.7070782 0.6533043 -0.2706158 -0.7070786 0.6533047 -0.4472341 -0.7052218 0.5501308 -0.4518049 -0.705528 0.5459877 -0.5459945 -0.705525 0.4518014 -0.5501354 -0.705223 0.4472266 -0.6533241 -0.7070749 0.2705781 -0.6533166 -0.7070784 0.2705875 -0.7052383 -0.7052276 0.07275305 -0.7055367 -0.7055375 0.0665937 -0.7071064 -0.7071071 -1.57009316659e-16 -0.7071064 -0.7071072 -1.57009338864e-16 -0.7071064 0.7071072 1.57009338864e-16 -0.7055367 0.7055375 0.0665937 -0.7071064 0.7071072 1.57009338864e-16 -0.7052383 0.7052277 0.07275306 -0.6533166 0.7070783 0.2705875 -0.6533242 0.7070749 0.2705781 -0.5459945 0.7055249 0.4518014 -0.5501355 0.7052228 0.4472267 -0.4665898 0.6923161 0.5504475 -0.4610504 0.7060637 0.5375003 -0.3958718 0.6148 0.6821337 -0.225644 0.6860086 0.6917202 -0.1021834 0.6400831 0.7614803 0.1161412 0.6816281 0.7224225 0.03551089 0.6852202 0.7274698 0.3047128 0.6049786 0.7356296 0.4287091 0.6816134 0.5929685 0.4893267 0.6851777 0.5395283 0.6106462 0.6401469 0.4661793 0.6486161 0.6860646 0.329564 0.7622045 0.6148719 0.2024274 0.7210938 0.6927876 -0.008308058 0.7069864 0.7069802 -0.01868816 0.6533088 0.7070764 -0.2706116 0.6533116 0.7070751 -0.2706082 0.5459894 0.7055257 -0.4518065 0.5501288 0.7052236 -0.4472338 0.5501206 0.7052243 -0.4472427 0.5460325 0.7054936 -0.4518045 0.6608751 0.7068261 -0.2522716 0.6503434 0.7141472 -0.2589352 0.690788 0.717795 -0.08707736 0.6826065 0.7264453 -0.07953357 0.7071064 0.7071072 1.57009338864e-16 0.0 -2.22044604925e-16 1.0 0.0 -2.22044582721e-16 0.9999999 0.0 -2.22044604925e-16 1.0 0.0 -2.22044582721e-16 0.9999999 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044582721e-16 0.9999999 0.0 -2.22044582721e-16 0.9999999 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044582721e-16 0.9999999 0.0 0.7071074 0.7071061 0.0 0.7071074 0.7071061 0.0 0.7071075 0.7071061 0.0 0.7071075 0.7071062 -0.0622683 -0.7039116 0.7075529 -0.02383396 -0.6053593 0.7955955 -0.0514337 -0.677182 0.7340158 0.0 -0.5391392 0.8422167 0.0 -0.7071075 0.7071062 0.0 -0.7071074 0.7071061 0.0 -0.7071074 0.7071061 0.0 -0.7071074 0.7071061 0.0 0.7071075 0.7071062 0.0 0.7071074 0.7071061 0.0 0.7071074 0.7071061 0.0 0.7071074 0.7071061 0.9406703 -0.2550533 -0.2238015 0.9999305 -0.000350568 -0.01178556 0.996084 -0.02898428 -0.0835267 0.9703031 0.1163602 -0.2120665 0.9994983 -0.02091314 -0.02378503 0.9999305 0.000350568 -0.01178556 0.9962912 -0.04536806 -0.07311369 0.8796161 0.05763664 -0.4721794 0.9375753 -0.04940235 -0.3442556 0.7730017 1.40866007747e-16 -0.6344041 0.7680529 0.01377755 -0.6402382 0.773016 1.40862099762e-16 -0.6343865 0.773016 1.40862077558e-16 -0.6343864 0.9238762 8.49746273346e-17 -0.3826917 0.923876 8.49746051301e-17 -0.3826916 0.9998038 -4.39762226634e-18 0.01980513 0.9997439 -0.00835433 0.02103455 0.8870162 -0.0664116 -0.4569374 0.9471465 0.06299168 -0.3145562 0.7680529 -0.01377755 -0.6402382 0.7730017 1.40866007747e-16 -0.6344041 0.773016 1.40862099762e-16 -0.6343865 0.773016 1.40862077558e-16 -0.6343864 0.9238762 8.49746273346e-17 -0.3826917 0.923876 8.49746051301e-17 -0.3826916 0.9998038 -4.39762226634e-18 0.01980513 0.9998042 -0.00011306 0.01978841 0.8902726 -0.000123427 0.4554282 0.89149 -0.00043555 0.4530401 0.5869985 -7.32750000002e-05 0.809588 0.5885534 -0.000259255 0.8084583 0.1577033 -0.000336603 0.9874865 0.1556639 -0.000167261 0.98781 0.9209675 -0.06521231 0.3841436 0.8375369 0.03000284 0.5455563 0.441999 0.1132168 0.889842 0.6446148 -0.1661735 0.7462294 0.21303 -0.2456533 0.9456599 -0.3101752 -0.000274314 0.9506794 -0.3075396 -0.000554996 0.9515351 -0.6190827 -0.000121072 0.7853258 -0.7730238 -1.40860012543e-16 0.6343771 -0.619097 -1.74374870099e-16 0.7853146 -0.03813173 0.1988435 0.9792892 -0.2671004 -0.04443045 0.9626439 -0.448484 0.1129236 0.8866287 -0.6325945 0.01254369 0.7743815 -0.6343904 -1.71643321778e-16 0.7730128 -0.7730238 -1.40860012543e-16 0.6343771 -0.7730237 -1.40860012543e-16 0.6343771 -0.7730237 -1.40860012543e-16 0.6343771 -0.9238892 -8.49676107251e-17 0.3826601 -0.9238892 -8.49676107251e-17 0.3826601 -0.9951847 -2.17642015521e-17 0.09801725 -0.9951847 -2.17642037725e-17 0.09801726 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9951847 -2.17642037725e-17 0.09801726 -0.9951847 -2.17642015521e-17 0.09801725 -0.9238892 -8.49676107251e-17 0.3826601 -0.9238892 -8.49675885206e-17 0.38266 -1.0 0.0 0.0 -1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.5013837 0.00079397 0.8652247 0.864938 -0.000779702 0.5018781 0.8663613 0.000327903 0.4994177 0.4978626 -0.000790656 0.8672556 0.00178708 0.000801836 0.9999982 -0.00178708 -0.000801836 0.9999982 -0.4978626 0.000790656 0.8672556 -0.5013837 -0.00079397 0.8652247 0.9999998 -0.000322136 0.000438485 0.9999998 0.000322136 -0.000438485 0.866361 -0.000327905 -0.4994183 0.8649379 0.000779412 -0.5018784 0.5013834 -0.000794803 -0.8652248 0.497862 0.000789925 -0.8672559 0.0017876 -0.000802228 -0.9999981 -0.001787604 0.000802228 -0.9999981 -0.497862 -0.000789925 -0.8672559 -0.5013834 0.000794803 -0.8652248 -0.8649379 -0.000779412 -0.5018783 -0.866361 0.000327905 -0.4994183 -0.9999998 -0.000322136 -0.000438485 -0.9999998 0.000322136 0.000438485 -0.8663613 -0.000327903 0.4994176 -0.864938 0.000779702 0.5018781 -0.001275806 0.000471571 -0.9999991 1.93961e-05 -2.58422999998e-05 -1.0 -0.7068468 -0.00040437 -0.7073664 -0.9999998 -0.000692858 4.52107e-05 -0.7100257 0.000801457 -0.7041753 -0.9999928 0.000377955 0.003756657 -0.7070042 -0.000299786 0.7072092 -0.7062547 6.01647999998e-05 0.7079577 -1.60385e-05 -2.52731000002e-05 1.0 0.001274728 0.000470434 0.999999 -1.94063e-05 2.58423000002e-05 -1.0 0.001275811 -0.000471571 -0.9999991 -0.7062547 -5.97049999998e-05 -0.7079578 -0.9999928 -0.000377257 -0.003754112 -0.7070042 0.000300107 -0.7072093 -0.9999997 0.000692858 -4.59499e-05 -0.7100248 -0.000799412 0.7041763 -0.7068488 0.000405286 0.7073646 -0.001274718 -0.000470434 0.999999 1.60385e-05 2.52730999998e-05 1.0 0.7062547 -6.01648000002e-05 0.7079577 0.7070042 0.000299786 0.7072092 0.9999928 -0.000377955 0.003756657 0.9999998 0.000692858 4.52107e-05 0.7100257 -0.000801457 -0.7041753 0.7068468 0.00040437 -0.7073664 0.7068488 -0.000405286 0.7073646 0.7100248 0.000799412 0.7041763 0.9999997 -0.000692858 -4.59499e-05 0.9999928 0.000377257 -0.003754112 0.7070042 -0.000300107 -0.7072093 0.7062547 5.97050000002e-05 -0.7079578 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 0.9999999 2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 0.9999999 2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 0.9999999 2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 0.9999999 2.22044582721e-16 0.0 0.9999999 2.22044582721e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 0.9999999 2.22044582721e-16 0.0 1.0 2.22044604925e-16 0.0 0.9999999 2.22044582721e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.7035443 0.7072762 0.06917924 0.7036365 0.7071413 0.06961855 0.6531509 0.707287 0.2704422 0.6531562 0.7072653 0.2704861 0.5468256 0.7071534 0.4482363 0.5466463 0.707018 0.4486684 0.3934498 0.7073121 0.5872878 0.6932479 0.707328 -0.1381823 0.693668 0.7071145 -0.1371634 0.6233287 0.7073864 -0.3332654 0.6238436 0.7072017 -0.3326934 0.535068 0.7062628 -0.463568 0.5375242 0.706062 -0.4610252 0.5478054 0.7053971 -0.4498044 0.5440617 0.7056329 -0.4539593 0.6484604 0.7069629 -0.2823163 0.6484755 0.7069582 -0.2822932 0.6866141 0.693916 -0.2168911 0.6835263 0.6914741 -0.2337848 0.5831353 0.7017405 -0.4092842 0.5976658 0.6995564 -0.3916841 0.4050654 0.7012433 -0.5866685 0.3856394 0.6987334 -0.6025395 0.1533601 0.6987441 -0.6987399 0.128403 0.7012539 -0.7012529 -0.1284047 0.7012553 -0.7012512 -0.1533886 0.698778 -0.6986997 -0.4999449 0.7072212 -0.4998932 -0.4999742 0.7072201 -0.4998654 -0.70122 0.7012805 -0.1284376 -0.69873 0.69873 -0.1534697 -0.7012547 0.7012547 0.1283876 -0.6987309 0.6987563 0.1533454 -0.5866019 0.7013248 0.4050207 -0.6024389 0.6988305 0.3856205 -0.4518136 0.7055301 0.5459778 -0.4472363 0.705231 0.5501173 -0.2705577 0.7071663 0.6532339 -0.2705638 0.7071669 0.6532306 -0.01616039 0.7070239 0.707005 -0.01883586 0.7070426 0.70692 0.2050731 0.7071598 0.676661 0.2057061 0.7073357 0.6762848 0.392663 0.7071194 0.5880459 -0.586607 -0.7013329 0.4049992 -0.6024684 -0.6988159 0.3856012 -0.4472257 -0.7052244 0.5501342 -0.7012416 -0.7012653 0.1284021 -0.6987402 -0.6987402 0.1533761 -0.7012532 -0.7012532 -0.1284048 -0.6987016 -0.698776 -0.1533886 -0.4517988 -0.7055345 0.5459845 -0.2705914 -0.7071669 0.6532193 -0.270579 -0.7071663 0.653225 -0.0187048 -0.7069921 0.7069741 -0.01605363 -0.7070808 0.7069505 0.2058641 -0.7071597 0.6764209 0.2051043 -0.7073421 0.6764609 0.3934978 -0.7071198 0.5874872 0.3924998 -0.7073218 0.5879114 0.5469384 -0.7070048 0.4483332 0.5465181 -0.7071475 0.4486205 0.6530907 -0.7072625 0.2706518 0.6530869 -0.7072701 0.2706408 0.7035915 -0.7071782 0.06970123 0.7037699 -0.7070424 0.06927457 0.6935024 -0.7072827 -0.1371338 0.6934855 -0.7070927 -0.1381946 0.6236783 -0.7073272 -0.3327366 0.6235006 -0.7071577 -0.333429 0.5373811 -0.7061297 -0.4610884 0.535045 -0.7061968 -0.4636949 0.5440672 -0.7056589 -0.4539126 0.5478643 -0.7053644 -0.4497841 0.648443 -0.7069628 -0.2823566 0.6484251 -0.7069583 -0.2824092 0.6835475 -0.6914686 -0.2337393 0.6866032 -0.6939449 -0.2168334 0.5976486 -0.6995667 -0.3916921 0.5831352 -0.7017343 -0.4092947 0.3856376 -0.6987311 -0.6025435 0.1284047 -0.7012553 -0.7012512 0.1533643 -0.6987416 -0.6987414 -0.1534697 -0.698732 -0.6987279 -0.1284375 -0.7012825 -0.701218 -0.499867 -0.7072203 -0.4999725 0.405063 -0.7012447 -0.5866685 -0.499893 -0.7072213 -0.4999451 -0.9807897 -4.33137969935e-17 0.195068 -0.9807897 -4.33137969935e-17 0.195068 -0.9869635 0.03214046 -0.1577023 -0.8314824 -1.2335714672e-16 0.5555512 -0.8314824 -1.2335714672e-16 0.5555512 -0.6344008 -1.71641434399e-16 0.7730043 -0.6344008 -1.71641456603e-16 0.7730044 -0.3826796 -2.05142836052e-16 0.9238812 -0.3826795 -2.05142813847e-16 0.9238811 -0.02430436 -2.21979012949e-16 0.9997046 -0.02434215 -0.000143734 0.9997036 0.2913906 -0.000395672 0.9566041 0.2898704 -0.000796497 0.9570655 0.5567526 -0.000306404 0.8306783 0.5548207 -0.000719088 0.8319697 0.7734557 0.000357701 0.6338502 0.7728435 6.98349999999e-05 0.6345966 0.9238222 -0.000647122 0.3828213 0.9238129 -0.000696207 0.3828437 0.9951132 -0.000378795 0.09873998 0.9951997 -8.06599e-05 0.09786444 0.9810755 -0.000385901 -0.1936254 0.9806221 1.93856e-05 -0.1959086 0.8823802 -0.000580302 -0.4705368 0.8816833 -0.000244846 -0.4718415 0.757239 -0.000120695 -0.6531379 0.7572181 1.45031142651e-16 -0.6531622 0.7702444 1.41608680337e-16 -0.6377488 0.7702256 6.62702000001e-05 -0.6377715 0.9168394 0.00040008 -0.3992559 0.91682 0.000409586 -0.3993005 0.9501709 5.68929000001e-05 -0.3117293 0.9501789 6.92124801915e-17 -0.3117053 0.8264544 1.25011934138e-16 -0.5630037 0.8264545 1.25011934138e-16 -0.5630037 0.5555599 1.84624848742e-16 -0.8314764 0.5555599 1.84624893151e-16 -0.8314766 0.1950961 2.17777840206e-16 -0.9807842 0.1950961 2.17777818001e-16 -0.9807841 -0.6350021 -0.1054791 -0.7652755 -0.837082 0.02923682 -0.5462956 -0.1950962 2.17777840206e-16 -0.9807842 -0.2067878 -0.03352118 -0.9778114 -0.9898578 3.15440562559e-17 -0.1420618 -0.9869636 -0.03214048 -0.1577023 -0.9807897 -4.33137969935e-17 0.195068 -0.9807897 -4.33137969935e-17 0.195068 -0.8314824 -1.23357124515e-16 0.5555511 -0.8314824 -1.2335714672e-16 0.5555512 -0.6344008 -1.71641434399e-16 0.7730043 -0.6344008 -1.71641456603e-16 0.7730044 -0.3826796 -2.05142836052e-16 0.9238812 -0.3826795 -2.05142813847e-16 0.9238811 -0.02453191 -2.21977791703e-16 0.9996991 -0.02449289 0.000148099 0.9997 0.2897788 0.000506503 0.9570935 0.2912308 0.000876324 0.9566524 0.5549265 0.000343748 0.8318993 0.5568528 0.000711118 0.830611 0.7728723 -9.86281000001e-05 0.6345615 0.7734553 0.000175552 0.6338509 0.9239202 0.000672811 0.3825847 0.9239261 0.000688845 0.3825702 0.9952168 0.000355409 0.09769011 0.9951235 4.23976e-05 0.09863639 0.9806103 0.000483294 -0.1959673 0.9810786 2.35831e-05 -0.19361 0.8817321 0.000758917 -0.4717498 0.8824615 0.000383871 -0.4703846 0.7573389 0.000138482 -0.6530221 0.757363 1.44993816953e-16 -0.6529941 0.7701741 1.41627531924e-16 -0.6378337 0.7701929 -6.62695999999e-05 -0.637811 0.9168799 -0.000400047 -0.3991629 0.9168994 -0.000409543 -0.3991182 0.9501572 -5.68918999999e-05 -0.3117711 0.9501493 6.92324420015e-17 -0.3117952 0.8264544 1.25011934138e-16 -0.5630037 0.8264545 1.25011911933e-16 -0.5630036 0.5555599 1.84624848742e-16 -0.8314764 0.5555599 1.84624870947e-16 -0.8314765 0.1950961 2.17777840206e-16 -0.9807842 -0.8679463 -0.07819407 -0.4904641 -0.7035643 -0.05898001 -0.7081797 -0.4134529 -0.1266576 -0.9016732 -0.1399222 -0.05037125 -0.9888803 0.1950961 2.17777818001e-16 -0.9807841 -0.107401 2.20760254521e-16 -0.9942158 -0.9898578 3.15440562559e-17 -0.1420618 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.00263369 -0.9999233 0.01209337 -0.003857349 -0.9998815 0.01489809 -0.004976214 -0.9997233 0.02299095 0.01339898 -0.9975722 0.06833814 -0.000361635 -0.9999981 0.001937447 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 0.9999999 2.22044582721e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 0.9999999 2.22044582721e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 -0.4983254 0.8669901 -0.000306366 1.63136e-05 0.9999998 0.000606493 0.000719579 0.9999998 2.3212500222e-08 -0.5128484 0.858479 0.000488655 -0.8650391 0.5017042 -0.000488543 -0.8719416 0.4896099 0.000172106 -0.9999998 0.000513382 -0.000184321 -1.0 -9.97454e-05 -0.000156924 0.5130906 0.8583344 -9.24456999981e-06 0.5002182 0.8658993 0.000159237 0.8658613 0.5002842 0.000154942 0.8718442 0.4897832 -0.000454006 -0.8658535 -0.5002975 0.000154961 -0.8718439 -0.4897837 -0.000454779 -0.5000463 -0.8659986 0.000456955 -0.5129359 -0.8584269 -0.000294498 -0.000919377 -0.9999996 0.000296906 -0.000197394 -0.9999999 0.000320909 0.4983209 -0.8669926 -0.000305573 0.5128482 -0.8584792 0.000489757 1.0 9.97454e-05 -0.000156924 0.9999999 -0.000493221 -0.000183309 0.8719418 -0.4896095 0.000172937 0.8650496 -0.501686 -0.000486717 0.0 -2.22044604925e-16 1.0 0.0 -2.22044582721e-16 0.9999999 0.0 -2.22044582721e-16 0.9999999 0.0 -2.22044582721e-16 0.9999999 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044582721e-16 0.9999999 0.0 -2.22044604925e-16 1.0 0.0 -2.22044582721e-16 0.9999999 0.0 -2.22044582721e-16 0.9999999 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.01758963 -0.7142861 0.6996326 0.005895015 -0.254078 0.9671658 0.00083424 -0.5480714 0.8364311 0.0 -0.1795438 0.98375 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 0.7071074 0.7071061 0.0 0.7071074 0.7071061 0.0 0.7071074 0.7071061 0.0 0.7071074 0.7071061 -0.00618267 -0.9999806 0.000714263 -0.006786351 -0.999977 -0.000242879 -0.006491972 -0.9999788 0.000223863 -0.00714702 -0.9999741 -0.000814731 0.0 1.0 2.22044604925e-16 0.0 0.9999999 2.22044582721e-16 0.0 1.0 2.22044604925e-16 0.0 1.0 2.22044604925e-16 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 -2.22044604925e-16 1.0 0.0 2.22044604925e-16 -1.0 0.0 2.22044604925e-16 -1.0 0.0 2.22044604925e-16 -1.0 -0.7417974 -0.6651261 0.08569733 -0.8281466 -0.5510054 0.1027918 -0.7003878 -0.7081814 0.08908443 -0.7816252 -0.6140906 0.1093384 -0.9392539 -0.3140402 0.1384948 -0.9316228 -0.3305303 0.1510914 -0.9867297 -0.003004557 0.1623433 -0.9867275 -0.002842078 0.1623597 -0.938958 0.308635 0.1519952 -0.9347421 0.3271344 0.1387094 -0.8221604 0.5570309 0.1173399 -0.7690152 0.6323116 0.09379602 -0.8221604 0.5570309 -0.1173399 -0.9389579 0.3086349 -0.1519951 -0.9347421 0.3271344 -0.1387094 -0.7690152 0.6323116 -0.09379602 -0.9867297 -0.003004559 -0.1623433 -0.9867275 -0.002842078 -0.1623597 -0.9392539 -0.3140402 -0.1384948 -0.9316228 -0.3305303 -0.1510914 -0.8281471 -0.5509644 -0.1030076 -0.7678955 -0.6315504 -0.1071482 -0.7236134 -0.6852586 -0.08248889 -0.6823485 -0.7259114 -0.08633116 -0.7144566 0.6937242 0.09109697 -0.680747 0.7283964 0.07760231 -0.7144566 0.6937242 -0.09109697 -0.680747 0.7283964 -0.07760231</float_array>
99
+ <technique_common>
100
+ <accessor source="#geom-wamUpperArmLink3-normals-array" count="757" stride="3">
101
+ <param name="X" type="float"/>
102
+ <param name="Y" type="float"/>
103
+ <param name="Z" type="float"/>
104
+ </accessor>
105
+ </technique_common>
106
+ </source>
107
+ <source id="geom-wamUpperArmLink3-map1">
108
+ <float_array id="geom-wamUpperArmLink3-map1-array" count="2808">0.3888623 0.1211565 0 0.3564118 0.1231986 0 0.1791809 0.9363049 0 0.3425304 0.122485 0 0.3455296 0.1573836 0 0.265485 0.8543704 0 0.2783048 0.8359729 0 0.4255829 0.3263929 0 0.4239153 0.3393296 0 0.4388666 0.3520659 0 0.1916092 0.9134255 0 0.1889863 0.9038237 0 0.1916092 0.8826636 0 0.1889999 0.86156 0 0.1916092 0.8519018 0 0.1787901 0.8335043 0 0.9247877 0.8618511 0 0.9247877 0.8669536 0 0.9003732 0.8618511 0 0.9003732 0.8669536 0 0.8876014 0.8618511 0 0.8876014 0.8669536 0 0.8109838 0.8669536 0 0.8134168 0.8618511 0 0.8261885 0.8669536 0 0.8261885 0.8618511 0 0.2945074 0.9150232 0 0.2898361 0.8965339 0 0.2875972 0.9150232 0 0.2898361 0.8544622 0 0.2945074 0.8359729 0 0.2875972 0.8359729 0 0.2882136 0.8754981 0 0.3882485 0.09030186 0 0.3880171 0.1172799 0 0.3549083 0.05911569 0 0.3550166 0.05797845 0 0.3483841 0.05694181 0 0.3484242 0.05810273 0 0.3610044 0.06441015 0 0.3418999 0.06035851 0 0.361252 0.06339297 0 0.3420855 0.06144208 0 0.36617 0.07353942 0 0.3361262 0.06792933 0 0.3665366 0.07273225 0 0.3364414 0.06884299 0 0.3708387 0.09023888 0 0.3315632 0.07900081 0 0.3713118 0.08981389 0 0.3319804 0.07966648 0 0.3723609 0.1097581 0 0.3285897 0.0926705 0 0.372869 0.1097809 0 0.3290736 0.0930307 0 0.3716405 0.1938889 0 0.3274784 0.1077427 0 0.3719483 0.2173491 0 0.3279866 0.1077655 0 0.3688042 0.2087369 0 0.3270511 0.1575942 0 0.3708233 0.229091 0 0.3275601 0.157617 0 0.3678218 0.2389528 0 0.3262167 0.1662953 0 0.3476106 0.2554035 0 0.2852208 0.5040946 0 0.2808281 0.5057243 0 0.3582458 0.2600383 0 0.3445361 0.2590752 0 0.2790393 0.5088366 0 0.3415248 0.2612781 0 0.3410824 0.258365 0 0.3388947 0.2550122 0 0.3267567 0.1663655 0 0.3239935 0.1736052 0 0.3246127 0.1738357 0 0.3229342 0.1759377 0 0.2750543 0.5132951 0 0.2873122 0.5023076 0 0.3228787 0.183376 0 0.3832711 0.1929803 0 0.3808053 0.1873338 0 0.379064 0.1932669 0 0.4219979 0.1932669 0 0.4202565 0.1873338 0 0.4177908 0.1929803 0 0.4219979 0.1907965 0 0.4202565 0.1821998 0 0.4219979 0.1837738 0 0.4219979 0.177821 0 0.4202565 0.177821 0 0.4202565 0.1425631 0 0.4219979 0.1425631 0 0.4202565 0.1242447 0 0.4219979 0.1242447 0 0.4202565 0.1026371 0 0.4219979 0.1026371 0 0.3808053 0.1821998 0 0.2737209 0.5174962 0 0.2917177 0.5036635 0 0.379064 0.1837738 0 0.3808053 0.177821 0 0.2704914 0.5243666 0 0.2939447 0.5033442 0 0.379064 0.177821 0 0.3808053 0.1425631 0 0.2687699 0.5337636 0 0.297994 0.5075703 0 0.379064 0.1425631 0 0.3808053 0.1242447 0 0.379064 0.1242447 0 0.3808053 0.1026371 0 0.379064 0.1026371 0 0.3808053 0.07697119 0 0.379064 0.07700223 0 0.3808053 0.05694181 0 0.379064 0.05695595 0 0.4202565 0.07697119 0 0.4219979 0.07440487 0 0.4202565 0.05694181 0 0.3912908 0.2166177 0 0.4097465 0.2166488 0 0.1315111 0.738609 0 0.1315111 0.8289522 0 0.1315111 0.8329399 0 0.1315111 0.7346212 0 0.1365109 0.738609 0 0.1365109 0.7346212 0 0.1424083 0.738609 0 0.1424083 0.7346212 0 0.1527106 0.738609 0 0.155302 0.7346212 0 0.1551763 0.7442554 0 0.1551763 0.8233057 0 0.1527106 0.8289522 0 0.1553014 0.8329399 0 0.1424083 0.8329399 0 0.1424083 0.8289522 0 0.1365109 0.8329399 0 0.1365109 0.8289522 0 0.1655118 0.7626769 0 0.1654983 0.8049405 0 0.7729789 0.9050252 0 0.7729789 0.9101278 0 0.7973934 0.9050252 0 0.7973934 0.9101278 0 0.8101652 0.9050252 0 0.8843499 0.9050252 0 0.8867828 0.9101278 0 0.2675179 0.5380363 0 0.3001802 0.5087587 0 0.8715782 0.9050252 0 0.8791136 0.9101278 0 0.2669147 0.5531312 0 0.3035074 0.5154733 0 0.8101652 0.9101278 0 0.8715782 0.9101278 0 0.2664065 0.5531084 0 0.3054647 0.518098 0 0.4648769 0.294971 0 0.4671157 0.2764817 0 0.2661943 0.637262 0 0.3077798 0.5266889 0 0.4602056 0.2764817 0 0.4664993 0.3160068 0 0.265485 0.6606764 0 0.31024 0.5351796 0 0.4671157 0.355532 0 0.4391228 0.3456917 0 0.4243391 0.3710313 0 0.4648769 0.3370427 0 0.2687742 0.6523531 0 0.3104555 0.5403039 0 0.4602056 0.355532 0 0.2664082 0.6725104 0 0.3117972 0.5551467 0 0.2692385 0.6826341 0 0.311289 0.5551239 0 0.2784461 0.704563 0 0.3113707 0.6049982 0 0.2891526 0.7008867 0 0.3108617 0.6049753 0 0.2921618 0.7048315 0 0.2951331 0.707303 0 0.295625 0.7044319 0 0.2978685 0.701278 0 0.3120555 0.6137676 0 0.3115148 0.6137892 0 0.3135291 0.6214462 0 0.3141519 0.6212715 0 0.3151708 0.6236983 0 0.3150985 0.6311347 0 0.3626265 0.1182564 0 0.3611915 0.1525218 0 0.3601563 0.1561488 0 0.36257 0.1628543 0 0.8602081 0.9533522 0 0.86019 0.9584547 0 0.843842 0.9533522 0 0.8438402 0.9584547 0 0.825332 0.9533522 0 0.8253536 0.9584547 0 0.8062727 0.9533522 0 0.8063324 0.9584547 0 0.7883064 0.9533522 0 0.7883407 0.9584547 0 0.7729789 0.9533522 0 0.7729789 0.9584547 0 0.6506024 0.9476101 0 0.6506024 0.9527127 0 0.7367532 0.9476101 0 0.6314439 0.9476101 0 0.3483042 0.1567082 0 0.6314439 0.9527127 0 0.5553102 0.9476101 0 0.5553102 0.9527127 0 0.7465031 0.9527127 0 0.7495249 0.9476101 0 0.7367532 0.9527127 0 0.3390112 0.09922771 0 0.3532857 0.1084032 0 0.3675602 0.09922771 0 0.43167 0.276702 0 0.417686 0.2778133 0 0.4174715 0.2764817 0 0.4438874 0.2930834 0 0.4315259 0.2780753 0 0.4509132 0.3212565 0 0.4434924 0.2941768 0 0.4508347 0.3539578 0 0.450334 0.3217606 0 0.4436349 0.3820238 0 0.4502404 0.3535828 0 0.4313078 0.3980502 0 0.443153 0.3811295 0 0.4171099 0.3978303 0 0.431094 0.396719 0 0.4048918 0.3814485 0 0.4172541 0.396457 0 0.3978662 0.3532755 0 0.4052875 0.3803555 0 0.3979453 0.3205745 0 0.3984461 0.3527717 0 0.4051451 0.2925086 0 0.3985395 0.3209496 0 0.405627 0.2934029 0 0.2891241 0.8146932 0 0.2978569 0.8034061 0 0.2899181 0.7752013 0 0.2893647 0.7650152 0 0.2871647 0.7832989 0 0.302992 0.7834535 0 0.2790847 0.814486 0 0.2858287 0.7587098 0 0.2827166 0.7845663 0 0.3030602 0.76042 0 0.2704167 0.8027887 0 0.2791806 0.7782606 0 0.2981285 0.7404872 0 0.265485 0.782856 0 0.2813806 0.7599772 0 0.2786272 0.7680746 0 0.2894606 0.7287902 0 0.2655533 0.7598225 0 0.2979671 0.6133996 0 0.2832749 0.5950764 0 0.2830637 0.6268691 0 0.2849729 0.6394347 0 0.2982802 0.6197486 0 0.2794213 0.7285827 0 0.2706883 0.73987 0 0.2982802 0.5609618 0 0.2829398 0.5554017 0 0.2974504 0.5292222 0 0.2831304 0.549027 0 0.427894 0.3890439 0 0.426696 0.38569 0 0.425771 0.387931 0 0.4231763 0.3889379 0 0.9024064 0.5855771 0 0.9023883 0.5804745 0 0.8860403 0.5855771 0 0.8860385 0.5804745 0 0.8675303 0.5855771 0 0.8675538 0.5804745 0 0.8484711 0.5855771 0 0.8485326 0.5804745 0 0.8305047 0.5855771 0 0.8305408 0.5804745 0 0.8151773 0.5855771 0 0.8151773 0.5804745 0 0.3499664 0.1503304 0 0.9544218 0.9284381 0 0.9544218 0.9233355 0 0.8682711 0.9284381 0 0.8682711 0.9233355 0 0.8491126 0.9284381 0 0.8491126 0.9233355 0 0.7729789 0.9284381 0 0.7729789 0.9233355 0 0.9671935 0.9284381 0 0.9641717 0.9233355 0 0.4281929 0.164332 0 0.4423707 0.1804512 0 0.4038349 0.06255805 0 0.4101213 0.05694181 0 0.4281929 0.1806122 0 0.4423707 0.2026954 0 0.4281929 0.2028309 0 0.4423707 0.2249142 0 0.4281929 0.2250751 0 0.4423707 0.2411943 0 0.08647037 0.747176 0 0.08423151 0.8248316 0 0.08647037 0.8290495 0 0.0945443 0.7378579 0 0.0945443 0.8383676 0 0.1037303 0.7346211 0 0.1037303 0.8416044 0 0.1129162 0.7378579 0 0.1129162 0.8383676 0 0.1209901 0.747176 0 0.1209901 0.8290495 0 0.6211889 0.6854153 0 0.5590885 0.745127 0 0.6444763 0.8112848 0 0.6099568 0.8106066 0 0.5553102 0.7537714 0 0.6364126 0.679457 0 0.6529369 0.808146 0 0.7440599 0.6815666 0 0.6645634 0.8011411 0 0.6779482 0.7988705 0 0.7666549 0.686524 0 0.741735 0.8001226 0 0.7856349 0.699751 0 0.7590266 0.7978941 0 0.7957379 0.7139587 0 0.7749098 0.7907453 0 0.801271 0.7304758 0 0.7879947 0.7793313 0 0.8017725 0.7478318 0 0.7972154 0.7646021 0 0.6013125 0.8068258 0 0.5587467 0.7625573 0 0.4657682 0.08877905 0 0.4608364 0.06884633 0 0.4520725 0.09337433 0 0.4485366 0.08706883 0 0.452626 0.1035605 0 0.4521685 0.05714917 0 0.4656998 0.1118126 0 0.4440884 0.08833624 0 0.4498726 0.1116579 0 0.4421291 0.05694181 0 0.4605648 0.1317651 0 0.4518319 0.1430524 0 0.441335 0.09643368 0 0.4417925 0.142845 0 0.4333962 0.06822905 0 0.4331246 0.1311478 0 0.4418884 0.1066199 0 0.4454244 0.1129253 0 0.4282612 0.08818161 0 0.4281929 0.1112151 0 0.7069771 0.9071772 0 0.7069771 0.9020746 0 0.7164308 0.9071772 0 0.7164327 0.9020746 0 0.727586 0.9071772 0 0.727586 0.9020746 0 0.7397093 0.9071772 0 0.7397093 0.9020746 0 0.2221375 0.8122246 0 0.2221375 0.7937353 0 0.2221375 0.7726995 0 0.2221375 0.7516637 0 0.2221375 0.7331743 0 0.2402092 0.7275279 0 0.2426749 0.7331743 0 0.2426749 0.7516637 0 0.2426749 0.7726995 0 0.2426749 0.7937353 0 0.2426749 0.8122246 0 0.1376044 0.7939375 0 0.1376044 0.7649994 0 0.1334658 0.7939375 0 0.1334633 0.7649994 0 0.1417449 0.7649994 0 0.141769 0.7939375 0 0.3317009 0.2249454 0 0.3357076 0.1922567 0 0.3357076 0.2576341 0 0.2862306 0.4125594 0 0.2664065 0.3313018 0 0.265485 0.4388699 0 0.2844348 0.422042 0 0.2665426 0.4524251 0 0.2697845 0.4640218 0 0.2860849 0.4315585 0 0.2769251 0.4810279 0 0.2901773 0.4356329 0 0.2836053 0.4663186 0 0.2943483 0.4318927 0 0.3165753 0.3937214 0 0.2961442 0.4224101 0 0.460342 0.3920796 0 0.3097912 0.4086596 0 0.3983881 0.05798268 0 0.3974892 0.06497515 0 0.3865489 0.06890254 0 0.1540971 0.8609431 0 0.1518838 0.8694562 0 0.4507808 0.1746318 0 0.4486275 0.1795552 0 0.4485656 0.164332 0 0.2755957 0.5515916 0 0.2221375 0.9398247 0 0.2779363 0.5578671 0 0.2776747 0.5731408 0 0.3155911 0.3887663 0 0.3152841 0.3833674 0 0.3157106 0.3335159 0 0.294494 0.4128936 0 0.3140191 0.3118276 0 0.3088322 0.2932729 0 0.2904017 0.4088192 0 0.2991213 0.2790496 0 0.2876683 0.2764817 0 0.2769693 0.2860716 0 0.2693208 0.3057621 0 0.7494844 0.664282 0 0.7978711 0.5969479 0 0.7335834 0.5395977 0 0.7579814 0.6601809 0 0.8019696 0.6054451 0 0.7988637 0.6143532 0 0.7150143 0.6662493 0 0.7064424 0.6634287 0 0.7181477 0.5342122 0 0.6106545 0.5403417 0 0.6945623 0.6568632 0 0.4123089 0.6543217 0 0.4258383 0.3192996 0 0.438732 0.3192996 0 0.4147091 0.6511652 0 0.4100624 0.6415493 0 0.4127478 0.6400151 0 0.4094812 0.6283702 0 0.681102 0.655094 0 0.4122405 0.6285096 0 0.4118403 0.5297546 0 0.4145995 0.5298939 0 0.4156651 0.5167056 0 0.2425281 0.8335043 0 0.2447113 0.8427723 0 0.4271294 0.5190338 0 0.4249576 0.5167056 0 0.3038236 0.8359729 0 0.4181316 0.3710313 0 0.4200777 0.3655191 0 0.4180729 0.3510039 0 0.1046042 0.8557908 0 0.1068518 0.8617033 0 0.2749383 0.5735549 0 0.2787504 0.6225941 0 0.276014 0.6230081 0 0.6174065 0.6587281 0 0.4469831 0.3408171 0 0.4459043 0.3408171 0 0.6000451 0.6571483 0 0.2748891 0.636543 0 0.2773506 0.6394347 0 0.2758005 0.6301455 0 0.5882604 0.5461398 0 0.3984795 0.5185272 0 0.4011304 0.5167056 0 0.3998308 0.5385728 0 0.4025982 0.5384791 0 0.4032862 0.6450077 0 0.4005188 0.6451014 0 0.3998685 0.6565689 0 0.4025413 0.6581432 0 0.3978662 0.6658772 0 0.4002478 0.6688059 0 0.4391228 0.3032427 0 0.4391228 0.3077246 0 0.5839059 0.6505979 0 0.5697877 0.5600666 0 0.5704012 0.6396809 0 0.5602225 0.5746418 0 0.560638 0.6253049 0 0.5553102 0.591354 0 0.5554576 0.6087192 0 0.5989405 0.903209 0 0.5989405 0.9083115 0 0.6083941 0.903209 0 0.608396 0.9083115 0 0.6195493 0.903209 0 0.6195493 0.9083115 0 0.6316726 0.903209 0 0.6316726 0.9083115 0 0.1787901 0.7275279 0 0.1787901 0.7460172 0 0.1787901 0.7670531 0 0.1787901 0.7880889 0 0.1787901 0.8065783 0 0.1993275 0.7275279 0 0.1993275 0.7460172 0 0.1993275 0.7670531 0 0.1993275 0.7880889 0 0.1993275 0.8065783 0 0.1968618 0.8122246 0 0.3025342 0.6978198 0 0.3151708 0.6978198 0 0.3025342 0.688338 0 0.3151708 0.688283 0 0.3151708 0.7072974 0 0.3025342 0.707303 0 0.3996076 0.832163 0 0.3978662 0.8321842 0 0.3996076 0.8078551 0 0.3978662 0.8078283 0 0.3996076 0.7815822 0 0.3978662 0.7815469 0 0.3996076 0.7590698 0 0.3996076 0.6829924 0 0.3978662 0.7590698 0 0.3978662 0.6829924 0 0.3978662 0.4246913 0 0.3978662 0.4971578 0 0.4184036 0.5025191 0 0.4184036 0.41933 0 0.2954839 0.193044 0 0.314209 0.08784689 0 0.3069036 0.06748489 0 0.2963769 0.05694181 0 0.291343 0.1889315 0 0.2848888 0.05847954 0 0.2749418 0.0718201 0 0.2871874 0.1927104 0 0.2694413 0.08989486 0 0.2673798 0.1114146 0 0.2669525 0.1612661 0 0.2665534 0.1666333 0 0.265485 0.1714962 0 0.2854081 0.2020819 0 0.2710952 0.1882689 0 0.2870414 0.2116336 0 0.2971869 0.2469976 0 0.2911823 0.2157461 0 0.3036101 0.2622952 0 0.295338 0.2119672 0 0.3110364 0.2459433 0 0.3144743 0.2346466 0 0.2971172 0.2025957 0 0.3157631 0.2211967 0 0.3166838 0.1136286 0 0.1787901 0.7133414 0 0.1790853 0.05694181 0 0.2159426 0.05694181 0 0.1925185 0.05694181 0 0.1925185 0.7133414 0 0.2059516 0.05694181 0 0.206306 0.7133414 0 0.2221376 0.7133414 0 0.2317741 0.05694181 0 0.2321286 0.7133414 0 0.2455617 0.05694181 0 0.2455617 0.7133414 0 0.2592901 0.05694181 0 0.2589948 0.7133414 0 0.880372 0.5620756 0 0.880372 0.5671781 0 0.8352583 0.5620756 0 0.8352583 0.5671781 0 0.9112368 0.7140643 0 0.9112368 0.7089618 0 0.890142 0.7140643 0 0.890142 0.7089618 0 0.8652579 0.7140643 0 0.8652579 0.7089618 0 0.846383 0.7140643 0 0.8463469 0.7089618 0 0.8291319 0.7140643 0 0.8290831 0.7089618 0 0.8149947 0.7140643 0 0.8149802 0.7089618 0 0.1457857 0.7133414 0 0.1594555 0.05694181 0 0.1457764 0.05694181 0 0.1600602 0.7133414 0 0.1694977 0.05694181 0 0.1320628 0.05694181 0 0.1315111 0.7133414 0 0.3923618 0.09030186 0 0.3919598 0.1740769 0 0.4125745 0.1704915 0 0.4127916 0.09750281 0 0.09840928 0.8718931 0 0.08423151 0.8557908 0 0.08423151 0.8720061 0 0.09840928 0.8942531 0 0.08423151 0.8942531 0 0.09840928 0.9165001 0 0.08423151 0.916613 0 0.09840928 0.9327152 0 0.1456889 0.9311441 0 0.1315111 0.8542197 0 0.1456889 0.8703219 0 0.1315111 0.8704349 0 0.1456889 0.8926818 0 0.1315111 0.8926818 0 0.1456889 0.9149289 0 0.1315111 0.9150418 0 0.7413944 0.8399103 0 0.7413944 0.8348077 0 0.6962807 0.8399103 0 0.6962807 0.8348077 0 0.8692372 0.9383438 0 0.8692372 0.9434463 0 0.8481426 0.9383438 0 0.8481426 0.9434463 0 0.8232585 0.9383438 0 0.3134466 0.8085275 0 0.3161266 0.8069452 0 0.3123527 0.7866388 0 0.3151196 0.7867937 0 0.3128792 0.7372784 0 0.3156462 0.7374333 0 0.3125238 0.7301652 0 0.3152033 0.7285828 0 0.1515461 0.7539291 0 0.1517855 0.7654533 0 0.1500707 0.7621716 0 0.8232585 0.9434463 0 0.8043836 0.9383438 0 0.8043455 0.9434463 0 0.7871324 0.9383438 0 0.7870837 0.9434463 0 0.7729952 0.9383438 0 0.772979 0.9434463 0 0.1047406 0.8710589 0 0.1216663 0.7133414 0 0.1222187 0.05694181 0 0.1079534 0.7133414 0 0.1079441 0.05694181 0 0.09427369 0.7133414 0 0.09366959 0.05694181 0 0.1325017 0.7522597 0 0.1323574 0.7579062 0 0.141769 0.7579062 0 0.08423151 0.7133414 0 0.2856435 0.5879831 0 0.2982802 0.587979 0 0.1394118 0.7522597 0 0.2982802 0.5784971 0 0.2856435 0.5785508 0 0.2982802 0.5690139 0 0.2856435 0.5690718 0 0.3564118 0.1934149 0 0.3522707 0.1934149 0 0.3563865 0.1644768 0 0.3522472 0.1644768 0 0.3481301 0.1934149 0 0.3481283 0.1644768 0 0.2363153 0.9103667 0 0.2221375 0.8942475 0 0.2363153 0.8940865 0 0.2221375 0.8720032 0 0.2363153 0.8718677 0 0.2221375 0.8497844 0 0.2363153 0.8496234 0 0.2221375 0.8335043 0 0.2425103 0.848776 0 0.1519076 0.8542197 0 0.4328821 0.448268 0 0.4328568 0.41933 0 0.428741 0.448268 0 0.4287175 0.41933 0 0.4245986 0.41933 0 0.4246004 0.448268 0 0.2091852 0.8624423 0 0.2050662 0.8624423 0 0.2091833 0.8335043 0 0.2050428 0.8335043 0 0.2009269 0.8624423 0 0.2009017 0.8335043 0 0.4112226 0.8198372 0 0.4094812 0.8247721 0 0.4094812 0.8004642 0 0.4112226 0.7916049 0 0.4094812 0.7741913 0 0.4112226 0.7699973 0 0.4094812 0.7516788 0 0.4112226 0.7516788 0 0.3425651 0.185699 0 0.3450308 0.180301 0 0.4094812 0.6756014 0 0.4112226 0.6756014 0 0.1497896 0.7654762 0 0.2243231 0.9293885 0 0.3912551 0.07023083 0 0.4097318 0.06320994 0 0.296323 0.6773371 0 0.2221554 0.924553 0 0.1794654 0.8956442 0 0.1814226 0.8851291 0 0.1794654 0.8700094 0 0.3450308 0.1644768 0 0.3425651 0.1644768 0 0.3270321 0.1922567 0 0.3264807 0.2428142 0 0.3286034 0.2391496 0 0.1517855 0.7939375 0 0.1517855 0.7781132 0 0.1493198 0.7727153 0 0.4160043 0.06871174 0 0.4169344 0.06291823 0 0.1369229 0.8213446 0 0.1495596 0.821339 0 0.1369229 0.8118614 0 0.2784841 0.6314748 0 0.1495596 0.8118614 0 0.1369229 0.8023797 0 0.1495596 0.8023245 0 0.4253602 0.5319136 0 0.3151708 0.6505946 0 0.1493198 0.7939375 0 0.3115284 0.6550764 0 0.3028424 0.6505946 0 0.3050751 0.6550764 0 0.3672859 0.1711144 0 0.3680911 0.1241198 0 0.3657239 0.1182564 0 0.3025342 0.6811897 0 0.3151708 0.6811347 0 0.3025342 0.6716529 0 0.3151708 0.6716529 0 0.3025342 0.6621753 0 0.3151708 0.6621697 0 0.3059101 0.8486013 0 0.3037998 0.8512095 0 0.462356 0.3797769 0 0.4602056 0.3768116 0 0.379064 0.2308352 0 0.3810211 0.2409282 0 0.379064 0.2524428 0 0.3258678 0.9328814 0 0.3361855 0.2764817 0 0.3358588 0.9328814 0 0.3163485 0.4810279 0 0.3165753 0.4600329 0 0.3141096 0.4603633 0 0.3141096 0.4761875 0 0.3330853 0.1648241 0 0.3357076 0.1698202 0 0.3356986 0.122485 0 0.4093311 0.3183663 0 0.4117788 0.3238072 0 0.4099034 0.3710313 0 0.3423804 0.9328814 0 0.3427071 0.2764817 0 0.3526981 0.2764817 0 0.2982802 0.6924568 0 0.2982802 0.6642246 0 0.304627 0.5716339 0 0.3072534 0.5666488 0 0.3072061 0.613984 0 0.2543547 0.7275279 0 0.2519674 0.732439 0 0.2541893 0.805252 0 0.6100021 0.891994 0 0.6077896 0.8841898 0 0.5938831 0.8984863 0 0.5900882 0.8913159 0 0.3442016 0.2049425 0 0.3422445 0.2122984 0 0.3442016 0.2312239 0 0.3422445 0.2275043 0 0.6702018 0.8112848 0 0.670313 0.80555 0 0.7779615 0.8076609 0 0.3408078 0.08231336 0 0.342157 0.08727872 0 0.3627824 0.08307134 0 0.9404636 0.9101278 0 0.9460269 0.9042232 0 0.9266489 0.8995854 0 0.9308546 0.8926507 0 0.2760293 0.8981128 0 0.2779865 0.8870543 0 0.2760293 0.8737569 0 0.3885738 0.2764817 0 0.3785501 0.2764817 0 0.3783799 0.9328814 0 0.6816561 0.9327009 0 0.4148763 0.3457515 0 0.417351 0.3361986 0 0.4152708 0.3212166 0 0.6817698 0.9269662 0 0.5740089 0.9305887 0 0.1338255 0.8124126 0 0.1322374 0.8092822 0 0.1324214 0.8213446 0 0.2879068 0.258999 0 0.4179833 0.3224108 0 0.4183499 0.3052326 0 0.4208178 0.3076952 0 0.28116 0.2545172 0 0.2780915 0.258999 0 0.8970044 0.6851918 0 0.8970044 0.679457 0 0.9584174 0.6851918 0 0.9584174 0.679457 0 0.3689174 0.9328814 0 0.3690875 0.2764817 0 0.358893 0.9328814 0 0.64581 0.9202226 0 0.64581 0.9144878 0 0.5843971 0.9202226 0 0.5843971 0.9144878 0 0.2086199 0.7275279 0 0.2086199 0.8094014 0 0.2110856 0.7322314 0 0.2110856 0.8046981 0 0.4258383 0.3032427 0 0.4262297 0.3077246 0 0.4391228 0.3148178 0 0.4258383 0.3148178 0 0.4455135 0.3452989 0 0.4469831 0.3452989 0 0.4041711 0.0814954 0 0.4169344 0.0814954 0 0.4144212 0.07732405 0 0.5797777 0.907985 0 0.5746042 0.9017494 0 0.5689096 0.9196659 0 0.626739 0.8890694 0 0.626183 0.8809849 0 0.6427176 0.889964 0 0.6436838 0.8819755 0 0.6565202 0.894619 0 0.6587858 0.8870767 0 0.7013094 0.9180694 0 0.7035751 0.910527 0 0.7123465 0.921311 0 0.712873 0.9132599 0 0.7251889 0.9207914 0 0.7236965 0.9128206 0 0.7332674 0.9217115 0 0.7355331 0.9141692 0 0.7575056 0.9344025 0 0.7597712 0.9268602 0 0.5621812 0.9325752 0 0.5553102 0.9287335 0 0.5626682 0.9145893 0 0.7542895 0.8302871 0 0.7587363 0.8370693 0 0.7452937 0.8331322 0 0.7455557 0.8412381 0 0.6863875 0.8350356 0 0.6866494 0.8431416 0 0.6786634 0.8327295 0 0.6753291 0.8397645 0 0.9235201 0.5342122 0 0.9279671 0.5409965 0 0.9145253 0.537057 0 0.9147858 0.545163 0 0.8318952 0.539713 0 0.8321558 0.547819 0 0.8185105 0.5357168 0 0.8151773 0.5427511 0 0.8109838 0.8447915 0 0.9179535 0.8325499 0 0.9170315 0.8244925 0 0.9408571 0.8331413 0 0.9421513 0.8251404 0 0.9610011 0.8399834 0 0.9642429 0.8326448 0 0.9724394 0.8486434 0 0.9767681 0.8421193 0 0.6600477 0.8630694 0 0.6613245 0.8710791 0 0.7620856 0.8467926 0 0.643809 0.8611805 0 0.6407269 0.8686822 0 0.5673352 0.8297607 0 0.5642531 0.8372624 0 0.7633632 0.8548013 0 0.7821985 0.8403522 0 0.7854227 0.8477385 0 0.7964742 0.8288721 0 0.801078 0.8351477 0 0.5612341 0.8244925 0 0.5553102 0.8295438 0 0.8802709 0.6957541 0 0.8837967 0.6884505 0 0.8638677 0.6898494 0 0.8658449 0.6819825 0 0.8469797 0.687554 0 0.8473431 0.679457 0 0.8310971 0.6890498 0 0.8298885 0.6810931 0 0.8175257 0.6942029 0 0.8149802 0.6867467 0 0.9112875 0.8923215 0 0.9139727 0.8846762 0 0.8956441 0.8889419 0 0.8968361 0.8809849 0 0.8811004 0.8897673 0 0.8809194 0.8818949 0 0.8316831 0.9004915 0 0.8315021 0.892619 0 0.82018 0.9006873 0 0.821811 0.892786 0 0.8079363 0.8967766 0 0.8114924 0.8894886 0 0.7999027 0.895519 0 0.7997218 0.8876466 0 0.7731599 0.901323 0 0.7729789 0.8934505 0 0.8952471 0.5681368 0 0.8875223 0.5658306 0 0.8872617 0.5577247 0 0.8286191 0.5677239 0 0.8283585 0.5596179 0 0.8196242 0.5705687 0 0.8985801 0.5611038 0 0.8151773 0.5637845 0 0.2681079 0.8639722 0 0.265485 0.8851323 0 0.2680943 0.9062359 0 0.265485 0.9158941 0 0.277914 0.9387735 0</float_array>
109
+ <technique_common>
110
+ <accessor source="#geom-wamUpperArmLink3-map1-array" count="936" stride="3">
111
+ <param name="S" type="float"/>
112
+ <param name="T" type="float"/>
113
+ <param name="P" type="float"/>
114
+ </accessor>
115
+ </technique_common>
116
+ </source>
117
+ <source id="geom-wamUpperArmLink3-map1-textangents">
118
+ <float_array id="geom-wamUpperArmLink3-map1-textangents-array" count="2808">-0.5675259 0.1193752 0.7928251 -0.7031704 0.01871892 0.7107708 -0.6573277 0.05715656 0.749095 0.5300797 -0.7698891 0.04366509 0.5912353 -0.7987447 0.002053272 0.5943959 -0.7864975 0.0784506 0.139104 -0.8731391 -9.74069e-6 0.5278171 -0.7699169 -0.04845053 0.5736486 -0.8089561 1.00604e-4 0.5890315 -0.7806868 -0.09655812 0.3766187 -0.8287652 -0.411678 0.4145437 -0.7954284 -0.4420934 0.4139115 -0.795875 -0.4418825 0.366399 -0.838535 -0.4032502 0.3601911 -0.8429368 -0.3995603 -0.6980477 0.02213405 0.7141916 0.7208303 0.6931116 0 0.7208303 0.6931116 0 0.7208303 0.6931116 0 -0.6576017 0.05714544 0.7511953 -0.3808652 -0.8389611 -0.3886978 -0.3883589 -0.8299717 -0.3981525 -0.3719195 -0.845309 -0.3833796 0.5273387 0.7705138 0.04843227 0.5738988 0.8089188 1.87213e-4 0.589163 0.7807429 0.09630548 -0.4238906 -0.7970418 -0.4301641 -0.4205369 -0.7994075 -0.4290435 0.139104 0.8731394 -2.20342e-5 0.5305812 0.7692945 -0.04367804 0.5911384 0.7987117 -0.001797356 0.5894622 0.7923709 -0.07295392 0.3456269 0.8401483 -0.4167677 0.3598202 0.830751 -0.4240326 0.3488664 0.8367409 -0.4211451 0.372407 0.8158596 -0.4423643 0.7208204 0.6931219 0 0.7208346 0.6931071 0 0.7208131 0.6931295 0 -0.693109 -0.7208328 0 -0.6931084 -0.7208334 0 -0.693108 -0.7208337 0 0.7208078 0.6931349 0 0.7208363 0.6931054 0 -0.6931078 -0.720834 0 -0.6931093 -0.7208325 0 0.7208215 0.6931207 0 0.7208348 0.693107 0 -0.6931079 -0.7208339 0 -0.6931083 -0.7208335 0 0.720828 0.693114 0 0.7208342 0.6931075 0 -0.6931072 -0.7208346 0 -0.6931078 -0.7208339 0 0.7208367 0.693105 0 0.7208317 0.6931101 0 -0.6931068 -0.7208349 0 -0.693106 -0.7208356 0 0.7208418 0.6930996 0 0.7208278 0.6931142 0 -0.693107 -0.7208347 0 -0.693105 -0.7208367 0 0.7208437 0.6930976 0 0.7208299 0.693112 0 -0.6931075 -0.7208343 0 -0.6931045 -0.7208371 0 0.7208451 0.6930962 0 0.7208597 0.693081 0 -0.693107 -0.7208347 0 -0.693105 -0.7208367 0 0.7208415 0.6931 0 0.7208604 0.6930803 0 -0.693106 -0.7208356 0 -0.6931067 -0.720835 0 0.7208392 0.6931024 0 0.7208419 0.6930996 0 -0.6931068 -0.7208349 0 -0.6931076 -0.7208342 0 0.7208343 0.6931075 0 0.7208175 0.6931249 0 -0.6931085 -0.7208333 0 -0.6931082 -0.7208336 0 0.7208362 0.6931055 0 0.7208233 0.6931189 0 -0.6931136 -0.7208283 0 -0.693108 -0.7208338 0 0.7208315 0.6931103 0 0.720852 0.6930891 0 -0.693117 -0.7208251 0 -0.6931081 -0.7208336 0 0.7208339 0.6931079 0 0.7208591 0.6930817 0 -0.6931139 -0.7208281 0 -0.6931079 -0.7208338 0 0.7208358 0.6931059 0 0.7208562 0.6930847 0 -0.6931074 -0.7208343 0 -0.6931074 -0.7208343 0 -0.6931074 -0.7208343 0 -0.6931085 -0.7208333 0 -0.6931052 -0.7208365 0 -0.693104 -0.7208376 0 -0.6930972 -0.7208441 0 -0.6931037 -0.7208379 0 -0.6931064 -0.7208352 0 -0.6931086 -0.7208331 0 -0.6931077 -0.7208341 0 -0.6931084 -0.7208334 0 -0.6359243 -0.7717514 0 -0.6359256 -0.7717504 0 -0.6359256 -0.7717504 0 -0.6359269 -0.7717493 0 0.7208335 0.6931083 0 0.7208364 0.6931053 0 0.7208351 0.6931066 0 0.7208366 0.693105 0 0.7208462 0.693095 0 0.7208388 0.6931028 0 0.7208386 0.693103 0 0.7208406 0.6931008 0 0.720836 0.6931057 0 0.7208301 0.6931118 0 0.9275866 -0.3736082 0 0.9275866 -0.3736082 0 0.9275858 -0.3736102 0 0.9275874 -0.3736063 0 -0.001313466 -0.6717693 0.7078038 0.01678833 -0.5733174 0.8156786 0.09513559 -0.6753778 0.6852581 0.2586209 -0.6178652 0.7370236 0.2718291 -0.6206652 0.7311843 0.2526053 -0.4968735 0.8009196 -0.8963003 -0.3617647 -0.1540327 -0.8627918 -0.4362902 -0.2306158 -0.7333602 -0.5457332 -0.3859296 -0.7965806 -0.5146596 -0.3169766 0.513533 -0.3395578 0.7692189 0.5814482 -0.3460037 0.7300364 0.4847721 -0.2233478 0.80369 -0.3814521 -0.8942325 0.1316513 -0.2878086 -0.9559435 0.029829 -0.1239028 -0.9692651 -0.120288 -0.2017748 -0.9772311 -0.03556003 0.6493669 0.0454673 0.7489593 0.656999 0.01214966 0.7448922 0.6849073 0.02973383 0.7236872 0.6209448 0.2020966 0.7475678 0.6572476 0.2341215 0.7135646 0.6131929 0.2346119 0.7452985 -0.7099787 -0.04117766 -0.6870482 -0.6838108 7.54625e-4 -0.7228643 -0.6602992 -0.009657998 -0.7480614 -0.4984312 -0.413841 -0.7592281 -0.5341718 -0.4458637 -0.7143784 -0.5538656 -0.4413923 -0.6978964 -0.5429121 -0.450562 -0.7086748 -0.5429094 -0.4505602 -0.708678 -0.5425769 -0.4504558 -0.7089985 0 -1 0 0.05133174 -0.994702 -0.0513318 0 -1 0 0.04703019 -0.9955569 -0.04702653 -0.5965829 -0.4755843 -0.6456674 -0.5556503 -0.4620787 -0.6905076 -0.598651 -0.4755394 -0.6436267 -0.5573865 -0.4592639 -0.6910117 -0.9823746 -0.08700403 0.1129642 -0.9625389 -0.252686 -0.02349225 -0.9822164 -0.09292761 0.1064449 -0.9464824 0.08446914 0.2841992 -0.9464818 0.08446702 0.2841979 -0.5221332 -0.5167633 0.6772958 -0.5221392 -0.5167588 0.6772956 -0.5109231 -0.4900291 0.7062776 -0.5108866 -0.4899772 0.70634 -0.5100913 -0.4887713 0.7077488 -0.5100395 -0.4887334 0.7078122 -0.5269758 -0.5069468 0.6809104 -0.5208195 -0.5160633 0.6787087 -0.5666997 -0.5387889 0.6222911 -0.5690637 -0.5387984 0.6199188 0 -1 0 0.05130824 -0.994707 0.05130746 0.0469843 -0.9955653 0.04698435 0 -1 0 0 1 0 -0.0469843 0.9955653 0.04698435 0 1 0 -0.05130824 0.994707 0.05130747 0.5897968 0.4955737 0.6365719 0.5404258 0.4865975 0.6855484 0.5876209 0.4955662 0.6387535 0.5387622 0.4891774 0.6850011 0.5154148 0.4827578 0.708018 0.5155912 0.482405 0.70813 0.5089243 0.4729386 0.7190167 0.5178609 0.4831518 0.705962 0.47865 0.4140098 0.7675571 -0.801207 0.5831795 -0.0763024 -0.8907746 0.4055834 0.115964 -0.8601098 0.5096268 0.01161413 -0.1855447 -0.5863477 -0.7700382 -0.2333239 -0.6426138 -0.7247097 -0.2390063 -0.5997945 -0.7517057 -0.03247891 -0.6910991 -0.7075363 0.009720672 -0.6824823 -0.7249841 -0.002747075 -0.642511 -0.7648072 0.001584095 -0.6849302 -0.727244 0.2193012 -0.6623733 -0.7145793 0.2132893 -0.6505339 -0.7258092 0.1692197 -0.573842 -0.7830005 -0.09199001 0.7042234 0.6704962 -0.02122909 0.6282381 0.7746048 -0.0162475 0.6780494 0.721398 0.3237189 -0.5080582 -0.7808274 0.3441907 -0.5883695 -0.728334 0.3465131 -0.5993354 -0.7193996 -0.6953202 0.2300188 0.6776934 -0.6961381 0.252383 0.6574047 -0.6439101 0.1770353 0.7431598 -0.6680312 0.1790605 0.7175821 0.6000835 -0.2441246 -0.7502099 0.6252118 -0.27751 -0.724392 0.5500406 -0.2710362 -0.7710689 -0.6238417 0.01453092 0.7781075 -0.6955818 0.0642596 0.6884821 -0.6839571 -0.001332219 0.7119185 -0.5828964 0.1817777 0.7824118 -0.6761644 0.2228047 0.7011194 -0.6910877 0.2281415 0.6850631 -0.7552021 0.2198858 0.6136205 -0.7551985 0.2198645 0.6136304 -0.5379548 -0.4904291 0.6847441 -0.5162822 -0.4817724 0.7080571 -0.5379541 -0.49043 0.6847449 -0.5162526 -0.4816468 0.7081642 -0.5162507 -0.4816493 0.7081638 -0.5162537 -0.4817576 0.708088 -0.5413599 -0.4909757 0.6813989 -0.5457751 -0.4931363 0.6758153 0.7482266 -0.2233076 -0.619884 0.7135443 -0.240805 -0.6574846 0.7564471 -0.2191912 -0.6093899 0.7286669 -0.1405312 -0.6693082 0.7568924 -0.1420634 -0.6377604 0.721335 -0.1414126 -0.6770398 0.7004942 -0.1364443 -0.7004933 -1 0 1.23467e-8 -1 0 0 -1 0 8.23114e-9 -1 0 0 -1 0 -1.23467e-8 -1 0 -8.23114e-9 -1 0 0 -1 0 2.48655e-6 -1 0 -1.54823e-6 -1 0 0 -1 0 2.54253e-7 -1 0 1.28641e-6 -1 0 -3.34844e-6 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1.3044e-6 -0.7052802 0.7089287 6.08519e-4 -0.6019004 0.7910257 -0.003522697 -0.672484 0.7291911 1.51586e-6 -0.5391392 0.8422167 1.65987e-6 0.7071074 -0.7071061 8.29933e-7 0.7071074 -0.7071061 8.29933e-7 0.7071074 -0.7071062 0 0.7071075 -0.7071061 -7.12114e-6 0.7071074 0.7071061 -3.56057e-6 0.7071074 0.7071062 -3.56057e-6 0.7071074 0.7071061 0 0.7071075 0.7071061 -0.2530508 -0.01194805 -0.9437689 -3.50605e-4 1.1178e-6 -0.9999997 -0.02874167 0.003431575 -0.9778576 0.1145444 0.01505262 -0.9825947 -0.02090591 1.44206e-4 -0.9989884 3.50624e-4 -2.69587e-6 -0.9999996 -0.04462999 -0.003967953 -0.9864776 0.06637189 -0.002969418 -0.9886018 -0.04623181 -0.01671061 -0.9938499 0 0 -1 0.02489639 -0.008382856 -0.9983429 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.008339346 -0.001046261 -0.9953169 -0.08409946 0.02223389 -0.9702837 0.06015245 0.01752179 -0.9919528 -0.02489639 0.008382856 -0.9983429 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1.13361e-4 -1.41306e-5 -0.9999991 -1.08615e-4 5.86922e-5 -0.9999981 -5.43385e-4 -1.07878e-4 -0.9999973 -3.67788e-6 8.78421e-5 -0.9999972 -0.001645956 -8.77569e-4 -0.9999977 -6.86647e-4 -4.0735e-4 -0.999999 -8.01563e-4 -2.62855e-4 -0.9999987 -9.58444e-5 3.25562e-4 -0.9999986 -8.78626e-5 1.55479e-4 -0.9999984 -0.05821152 0.02743632 -0.9837161 0.02807805 -0.01089752 -0.9819611 -0.847076 -0.4253181 -0.03585261 -0.5341876 -0.8197431 0.006194445 -0.7534239 -0.6534884 0.01193988 0.01008098 0.2163055 -0.9322495 0.06826521 -0.08360951 -0.9236479 -0.2372289 -0.004723303 -0.8990395 -0.06421498 0.2110322 -0.8680707 -2.99031e-5 2.98301e-4 -0.9999981 -1.32824e-4 6.26191e-4 -0.9999976 -4.02762e-4 4.71671e-4 -0.9999986 0 0 -1 0 0 -1 -0.0100949 -0.1818552 -0.8975587 0.04601575 0.03145196 -0.958079 -0.04012278 -0.10379 -0.9742665 0.03275109 -0.04279376 -0.9901812 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.6313205 0.7692992 0 -0.6313206 0.7692991 0 -0.3753093 0.9061415 0 -0.3753093 0.9061415 0 -0.09754526 0.9903926 0 -0.09754528 0.9903926 0 0 1 -5.13847e-7 0 1 8.36537e-7 0 1 6.39509e-7 0 1 -4.31753e-6 0 1 -4.95969e-6 0 1 -5.18708e-6 -0.09754528 0.9903926 0 -0.09754526 0.9903926 0 -0.3753093 0.9061415 0 -0.3753093 0.9061415 0 -0.6313206 0.7692991 0 -0.6313205 0.7692992 0 0 1 -7.5456e-8 0 1 -3.14755e-6 0 4.1274e-7 -1 0 7.77619e-8 -1 0.001500721 -4.80012e-5 -0.9999989 -6.22122e-4 4.81399e-4 -0.9999984 3.18591e-4 -1.03897e-4 -0.9999994 -1.55884e-4 8.22187e-4 -0.9999984 2.22094e-4 0.001936323 -0.9999981 5.15258e-4 -6.1906e-4 -0.9999975 1.7323e-6 -8.01834e-4 -0.999999 1.73673e-6 8.01834e-4 -0.999999 -1.5587e-4 -8.22195e-4 -0.9999984 5.15275e-4 6.1905e-4 -0.9999975 -3.22136e-4 3.61388e-7 -0.9999998 3.22136e-4 -2.47543e-7 -0.9999998 -3.17879e-4 -1.05137e-4 -0.9999994 6.22947e-4 4.79398e-4 -0.9999984 -0.001499012 -4.99548e-5 -0.9999989 -2.20223e-4 0.001932519 -0.9999981 -5.12784e-4 -6.21456e-4 -0.9999975 1.57712e-4 8.20294e-4 -0.9999984 -3.64753e-7 -8.02229e-4 -0.999999 -2.10585e-7 8.02229e-4 -0.999999 1.58027e-4 -8.20113e-4 -0.9999984 -5.12316e-4 6.21728e-4 -0.9999975 -2.19913e-4 -0.001931984 -0.9999981 -0.001501165 4.87072e-5 -0.9999989 6.21862e-4 -4.81269e-4 -0.9999984 -3.18599e-4 1.03888e-4 -0.9999994 3.22136e-4 -3.64479e-7 -0.9999998 -3.22136e-4 -3.61387e-7 -0.9999998 3.18594e-4 1.03892e-4 -0.9999994 -6.22118e-4 -4.81407e-4 -0.9999984 0.001500736 4.79924e-5 -0.9999989 2.22106e-4 -0.001936344 -0.9999981 -3.4427e-7 -4.71572e-4 0.9999997 -5.02839e-7 2.58423e-5 1 -5.87651e-4 -1.55651e-5 0.9999993 0.6534325 0.6529527 1.54868e-4 -4.17372e-5 0.9244945 -8.73805e-5 0.6510304 0.6564396 -3.05439e-4 -3.45667e-5 -0.001173003 0.9999993 -0.003473824 0.9246983 -4.77222e-5 -0.653629 0.6534396 -1.14464e-4 -0.654337 0.652763 2.29687e-5 5.91619e-5 2.5964e-5 1 -1.78611e-4 -2.45341e-4 0.9999999 5.02447e-7 -2.52731e-5 1 -1.02536e-6 4.70433e-4 0.9999997 0.9238984 1.79294e-5 -3.29557e-6 0.9236666 -0.001178445 -6.00623e-5 0.6543811 0.6528068 -2.27842e-5 0.6543362 0.6527621 2.27934e-5 0.003471471 0.9246979 -4.76346e-5 0.6536288 0.6534393 -1.14586e-4 0.6534263 0.6532367 1.14795e-4 4.24055e-5 0.9244938 -8.73814e-5 -0.6510313 0.6564387 -3.04659e-4 -0.6534319 0.6529556 1.55217e-4 5.87573e-4 -1.41928e-5 0.9999993 3.45656e-5 -0.001170096 0.9999993 3.44559e-7 -4.70435e-4 0.9999997 5.02852e-7 2.52731e-5 1 5.91623e-5 -2.59636e-5 1 -1.7861e-4 2.45342e-4 0.9999999 3.77953e-4 -1.2784e-6 0.9999997 -6.92857e-4 -3.88996e-7 0.9999994 -3.58107e-4 6.58968e-5 0.9999998 1.10767e-4 2.55165e-5 1 5.02935e-4 6.31035e-4 0.9999988 -8.23377e-4 2.51117e-4 0.9999996 5.86116e-4 1.27372e-5 0.9999993 3.16707e-5 0.001167177 0.9999993 -0.6510313 -0.6564387 -3.04659e-4 -0.6534319 -0.6529556 1.55217e-4 4.24055e-5 -0.9244938 -8.73814e-5 0.003471471 -0.9246979 -4.76346e-5 0.6536288 -0.6534393 -1.14586e-4 0.6543362 -0.6527621 2.27934e-5 -5.9201e-5 -2.52756e-5 1 1.7811e-4 2.46295e-4 0.9999999 0.6540337 -0.6535531 -1.54035e-4 0.6502938 -0.6556961 3.07472e-4 -0.964048 0.2657283 0 -0.9640512 0.2657165 0 -0.9640493 0.2657235 0 -0.96405 -0.2657208 0 -0.9640501 -0.2657206 0 -0.96405 -0.2657207 0 -0.9640468 0.2657325 0 -0.9640519 0.265714 0 -0.9640501 -0.2657205 0 -0.9640501 -0.2657206 0 -0.9640483 0.265727 0 -0.9640503 0.2657198 0 -0.9640502 -0.2657203 0 -0.9640501 -0.2657205 0 -0.9640491 0.2657241 0 -0.964049 0.2657246 0 -0.9640501 -0.2657204 0 -0.9640501 -0.2657205 0 -0.9640501 0.2657205 0 -0.9640491 0.2657242 0 -0.9640501 -0.2657207 0 -0.9640502 -0.2657201 0 -0.9640501 0.2657207 0 -0.9640507 0.2657183 0 -0.9640501 -0.2657204 0 -0.9640501 -0.2657204 0 -0.9640509 0.2657176 0 -0.9640504 0.2657194 0 -0.96405 -0.2657208 0 -0.9640502 -0.2657202 0 -0.9640503 0.26572 0 -0.9640501 -0.2657206 0 -0.9640503 -0.2657199 0 -0.9640504 0.2657193 0 -0.9640501 0.2657207 0 -0.9640501 -0.2657204 0 -0.9640502 -0.2657203 0 -0.9640498 0.2657217 0 -0.9640499 0.2657212 0 -0.9640501 -0.2657206 0 0.6931085 -0.7208332 0 0.693106 -0.7208357 0 0.6931068 -0.7208349 0 0.6931071 -0.7208347 0 0.6931077 -0.720834 0 0.6931083 -0.7208335 0 0.6931076 -0.7208342 0 0.6931072 -0.7208345 0 0.6931082 -0.7208336 0 0.6931071 -0.7208346 0 0.693108 -0.7208338 0 0.6931077 -0.7208341 0 0.6931076 -0.7208341 0 0.6931073 -0.7208344 0 0.6931067 -0.720835 0 0.6931086 -0.7208332 0 0.6931082 -0.7208336 0 0.693103 -0.7208385 0 0.6930983 -0.7208431 0 0.6930911 -0.72085 0 0.6931062 -0.7208355 0 0.6931094 -0.7208325 0 -0.6656958 0.7462232 0 -0.6656957 0.7462233 0 -0.6656959 0.7462231 0 -0.6656967 0.7462224 0 -0.6656963 0.7462227 0 -0.6656976 0.7462216 0 -0.6656974 0.7462218 0 -0.6656976 0.7462216 0 -0.6656957 0.7462233 0 -0.6656954 0.7462236 0 -0.6656942 0.7462246 0 -0.6656966 0.7462225 0 -0.6656959 0.7462232 0 -0.6656963 0.7462228 0 -0.6656957 0.7462233 0 -0.6656951 0.7462239 0 -0.6656955 0.7462235 0 -0.6656965 0.7462226 0 -0.6656973 0.7462219 0 -0.6656979 0.7462213 0 -0.665698 0.7462213 0 -0.6656993 0.7462201 0 -0.09869082 0.9710064 0.193145 -0.09702623 0.9713704 0.1921774 0.03302106 0.9393465 0.3286801 0.03533583 0.9398747 0.3268125 0.149513 0.8804241 0.4424507 0.1571506 0.8813577 0.4377987 0.2485642 0.8066391 0.5314935 -0.2359448 0.9651848 0.04269132 -0.2321953 0.9661872 0.04036256 -0.3637353 0.9189142 -0.1124077 -0.3608073 0.9198145 -0.1144354 -0.4493432 0.8629027 -0.2259569 -0.4472176 0.8645115 -0.224019 -0.4392475 0.8702796 -0.2138277 -0.4427303 0.8677429 -0.2168937 -0.3261089 0.9331393 -0.07351412 -0.3297474 0.9321478 -0.06974367 -0.2855697 0.9559643 -0.01623244 -0.294693 0.9528213 -0.03083955 -0.4113428 0.8850596 -0.1743841 -0.3961696 0.8943709 -0.162294 -0.5222146 0.7713246 -0.3436479 -0.528846 0.7554442 -0.3595664 0.9791982 -0.08461994 -0.1302946 0.9170711 -0.241611 -0.297794 0.9791418 -0.06680337 -0.1124823 -0.9835122 -0.09004396 -0.09004448 -0.9764719 -0.1071726 -0.1071846 -0.9764807 0.1071588 0.1071595 0.8374717 0.3397797 0.3518505 0.8374581 0.3397996 0.3518754 0.979338 0.1267274 0.08826112 0.06737564 0.980438 -0.1121947 0.08519366 0.9770473 -0.1294059 0.2934161 0.8417615 -0.387527 -0.110785 0.9817994 0.06896548 -0.1273614 0.9782429 0.08732317 -0.2969146 0.9047108 0.2741325 -0.2860308 0.9156629 0.2586926 0.7888611 -0.6097255 0.03333884 0.7915899 -0.6065188 0.02888592 0.6676122 -0.7044116 0.1868264 0.8587107 -0.4801176 -0.1149635 0.8589822 -0.4797407 -0.1145017 0.9008473 -0.3068314 -0.2862326 0.9033087 -0.3047124 -0.2805951 0.8905554 -0.1644824 -0.4156456 0.8904082 -0.1642289 -0.4159664 0.2618799 0.8064305 0.525212 0.3133749 0.7291604 0.6060163 -0.6454 0.744959 0.1096318 -0.6283489 0.7520794 0.1267252 -0.753229 0.6529548 -0.0316912 0.3488412 -0.9090868 -0.182375 0.3621085 -0.9076751 -0.1628704 0.5302573 -0.8379578 0.005229269 0.1658705 -0.9185801 -0.3340694 0.1395946 -0.9200554 -0.3415414 0.6558657 -0.7364905 0.1499475 0.6579022 -0.7336952 0.155128 0.7306627 -0.6082371 0.2822547 0.7370213 -0.603522 0.2754843 0.7800164 -0.4475623 0.4269142 -0.8938761 -0.2972957 0.3175356 -0.8935405 -0.295593 0.3192258 -0.8754181 -0.4417992 0.1677485 -0.876271 -0.4403769 0.1670631 -0.8163996 -0.5676651 0.0173161 -0.818307 -0.5649637 0.01549972 -0.7234971 -0.669109 -0.1353945 -0.7247565 -0.6674941 -0.1366632 -0.6072879 -0.7379484 -0.2783789 0.1709721 -0.8543904 0.4848113 0.1709664 -0.8543786 0.4848209 0.2808505 -0.882553 0.3664127 0.2789161 -0.8840425 0.3642419 0.4021626 -0.8823181 0.223256 0.3971288 -0.8862875 0.21627 0.5173251 -0.8473255 0.05755221 0.5102236 -0.8521973 0.04804783 0.5905426 -0.8019073 -0.07421261 0.5885933 -0.8026838 -0.08110547 0.5820641 -0.8073881 -0.07057475 0.5839295 -0.8068179 -0.06093266 0.4779122 -0.8631585 0.09361209 0.4871147 -0.8567735 0.1045277 0.4548702 -0.8746025 0.1540148 0.4395204 -0.8814022 0.1594633 0.5473403 -0.8262297 0.004988032 0.5503755 -0.8240154 -0.02325922 0.6697176 -0.6909863 -0.2262402 0.9835122 -0.09004393 0.09004446 0.9764794 -0.107162 0.107162 0.9764471 0.1072335 -0.1072342 0.9791387 0.06695339 -0.1123787 0.9791762 0.08481812 -0.1302489 0.8417602 0.2934155 -0.3875291 0.9046924 -0.2969461 0.2741533 0.9156583 -0.2860462 0.2586932 0.9793499 -0.1266009 0.08835316 -0.04602807 -0.8175814 -0.5454258 -0.04603452 -0.8175638 -0.5454429 0.8417149 0.2933971 -0.387552 0.9835038 0.09006271 -0.090071 0.9792941 -0.108783 0.07053314 0.6626909 -0.707814 -0.2093714 0.545735 -0.8257664 0.02039366 0.7798081 -0.4461317 0.4283447 -0.6072751 -0.737927 -0.2783806 0.7230476 -0.6843548 -0.06655962 0.6006471 -0.7797945 0.08750118 0.617685 -0.7726796 0.07041521 0.9792902 0.1088871 0.07042835 0.3137779 0.7287414 0.6063177 -0.9835127 0.09004296 0.09004309 0.2934009 0.8417145 -0.3875493 0.9064979 -0.2521188 -0.3127029 -0.1913206 0.9619485 0 -0.1913207 0.9619485 0 0.1554131 0.9725671 3.44234e-4 -0.544874 0.815502 0 -0.544874 0.815502 0 -0.7692828 0.6313466 0 -0.7692828 0.6313465 0 -0.9061249 0.3753247 0 -0.9061249 0.3753247 0 -0.7692828 0.6313465 0 -0.9849507 0.02394567 0 -0.9849736 0.02398348 8.18476e-6 -0.9461809 -0.2882156 -1.96487e-5 -0.9466517 -0.2867164 3.94887e-5 -0.8216381 -0.5506935 -1.52909e-5 -0.822903 -0.5487744 3.59453e-5 -0.6269517 -0.7650378 5.26302e-5 -0.6277591 -0.7645164 1.02239e-5 -0.3786916 -0.9138565 -3.15586e-5 -0.3787008 -0.9138161 3.40824e-5 -0.6276903 -0.7644326 -1.02749e-5 -0.09767624 -0.9843926 -1.83675e-5 -0.09680853 -0.9844621 3.91834e-6 0.1915454 -0.9705364 -1.84654e-5 0.1938036 -0.9700856 -9.27857e-7 0.4654596 -0.8728591 -2.80459e-5 0.4667571 -0.8721824 1.18137e-5 0.6513588 -0.7551764 -8.90236e-6 0.6513908 -0.7551644 0 0.6349426 -0.7668551 0 0.6349669 -0.7668385 -6.20812e-6 0.6513908 -0.7551644 0 -0.3922855 0.9008329 2.48095e-5 -0.3923205 0.9007937 -2.5432e-5 -0.6349699 0.7668423 -6.20472e-6 -0.3103661 0.9460158 -1.7705e-6 -0.3103406 0.9460188 0 -0.5531446 0.8119819 0 -0.5531445 0.8119819 0 0.8155038 -0.5448877 0 0.8155038 -0.5448876 0 0.5531445 -0.8119819 0 0.9619375 -0.1913471 0 0.9619375 -0.1913471 0 0.6773395 0.5687813 0.04894319 0.5300155 0.8125064 -0.00691723 0.9619375 0.1913472 0 0.9532848 0.2016173 4.7918e-4 0.7470251 0.616341 -0.02551966 0.1406209 0.9798184 0 0.1553355 0.9717128 -0.00214852 -0.1913206 0.9619485 0 -0.1913207 0.9619485 0 -0.5448739 0.815502 0 -0.544874 0.815502 0 -0.7692828 0.6313466 0 -0.7692828 0.6313465 0 -0.7692828 0.6313465 0 -0.9061249 0.3753247 0 -0.9061249 0.3753247 0 -0.9849842 0.02417082 0 -0.9849606 0.02413177 -8.456e-6 -0.9467813 -0.2866565 2.44367e-5 -0.9463335 -0.2880895 -4.23378e-5 -0.8229518 -0.5489579 1.64628e-5 -0.8216859 -0.5508693 -3.40163e-5 -0.6277438 -0.7645686 -1.44188e-5 -0.6270461 -0.7651518 -2.56545e-5 -0.627681 -0.7644922 1.44846e-5 -0.3784457 -0.9139247 3.29336e-5 -0.3784433 -0.9139595 -3.35998e-5 -0.09662937 -0.9844105 1.75299e-5 -0.09756685 -0.9843332 -2.08764e-6 0.1938324 -0.9699276 2.41535e-5 0.1915012 -0.970393 -1.1783e-6 0.4666189 -0.872142 3.76139e-5 0.4652627 -0.8728526 -1.90513e-5 0.6512493 -0.7552829 1.01971e-5 0.6512125 -0.7552966 0 0.6512421 -0.7552746 -1.02176e-5 0.6350337 -0.7667931 0 -0.6350062 0.7668059 6.20805e-6 -0.6350337 0.7667931 0 -0.392187 0.9008562 -2.48226e-5 -0.3921519 0.9008955 2.53788e-5 -0.3104073 0.9460008 1.77297e-6 -0.3104329 0.9459978 0 -0.5531446 0.8119819 0 -0.5531445 0.8119819 0 -0.5531446 0.8119819 0 -0.8155038 0.5448877 0 -0.8155038 0.5448876 0 -0.9619375 0.1913471 0 0.4827885 0.8565294 0.01358759 0.65358 0.6512117 0.02270851 -0.8894895 -0.4080507 -0.001313896 -0.9767339 -0.1382316 -5.51751e-4 -0.6826168 -0.6770737 0.0131378 -0.9619375 0.1913471 0 -0.4654246 -0.819479 0.02606978 -0.988465 -0.1067798 0 -0.5531445 0.8119819 0 -0.7692828 0.6313465 0 0.6350093 -0.7668096 6.20467e-6 0.6512125 -0.7552966 0 -0.6269792 -0.7650701 2.57797e-5 -0.7692828 0.6313465 0 0.140621 0.9798184 0 0.5531446 -0.8119819 0 -0.6349426 0.7668551 0 0.651365 -0.7551836 8.88682e-6 -0.6270206 -0.765122 -5.23679e-5 0.4819699 0.7377772 0.01381262 -0.6931075 -0.7208342 0 -0.6931075 -0.7208343 0 -0.6931074 -0.7208343 0 -0.6931076 -0.7208341 0 -0.6931075 -0.7208342 0 -0.6931075 -0.7208342 0 -0.6931076 -0.7208341 0 -0.6931076 -0.7208342 0 -0.6931075 -0.7208343 0 -0.6931075 -0.7208343 0 -0.6931078 -0.720834 0 -0.6931078 -0.720834 0 -0.692878 -0.7207044 0.006891451 -0.6928834 -0.7206785 0.01341102 -0.6929688 -0.7205919 0.02002099 -0.6929379 -0.7197272 0.03999727 -0.6930406 -0.7207743 0.001647093 -0.6931083 -0.7208335 0 -0.6931085 -0.7208333 0 -0.6931074 -0.7208343 0 -0.693107 -0.7208347 0 -0.6931073 -0.7208345 0 -0.6931077 -0.7208341 0 -0.693108 -0.7208337 0 -0.6931077 -0.720834 0 0.7208344 0.6931073 0 0.7208345 0.6931072 0 0.7208341 0.6931076 0 0.7208337 0.693108 0 0.7208335 0.6931083 0 0.7208343 0.6931075 0 0.7208337 0.693108 0 0.7208342 0.6931075 0 0.7208344 0.6931073 0 0.7208345 0.6931072 0 0.7208333 0.6931085 0 0.7208336 0.6931082 0 0.7208327 0.6931091 0 0.7208334 0.6931084 0 0.7208344 0.6931073 0 0.7208339 0.6931079 0 0.7208343 0.6931074 0 0.7208342 0.6931075 0 0.7208341 0.6931076 0 0.7208337 0.6931081 0 0.7208344 0.6931073 0 0.7208343 0.6931074 0 0.7208346 0.6931071 0 0.7208344 0.6931073 0 0.7208346 0.6931071 0 -0.8385554 -2.50314e-5 -0.4819818 -0.964402 1.99699e-7 1.5733e-5 -0.9660134 -1.18833e-13 6.95124e-4 -0.8307495 4.81891e-6 -0.4962831 -0.4845492 -1.26662e-4 -0.8354602 -0.4739821 -1.408e-5 -0.8441102 -0.8285864 -1.27827e-4 -0.494991 -0.4858232 4.74239e-6 -0.837657 -4.96087e-4 -1.55334e-5 -0.9662966 9.64441e-5 1.35432e-5 -0.9669109 -0.8283428 2.4224e-6 0.4951623 -0.83768 -4.03106e-5 0.4839162 -0.4832719 -4.0062e-5 0.8364175 -0.8364648 4.11653e-5 0.4832143 -0.471563 1.2268e-4 0.8394111 0.8285101 2.41575e-6 -0.4952624 0.4738478 -1.14867e-4 -0.8434781 0.8323407 -4.39014e-5 -0.4808318 0.4828433 4.05714e-5 -0.8356459 0.4738261 -1.15141e-4 -0.8434385 -0.4832829 4.00692e-5 0.8364066 -0.8365231 -1.18204e-4 0.4830265 -0.4715595 -1.22902e-4 0.8394037 0.4738483 1.15063e-4 -0.8434779 0.8323887 1.26069e-4 -0.4806392 0.8285589 -7.70082e-5 -0.4950889 -0.836565 1.18122e-4 0.4830506 -0.9650216 -2.66214e-5 8.87218e-4 -0.8271566 -7.87444e-5 0.494251 -0.9639104 2.76368e-5 1.90253e-4 -0.8385574 2.49662e-5 -0.4819773 -0.8307497 -4.82961e-6 -0.4962828 9.64441e-5 -1.35432e-5 -0.9669109 0.4828325 -4.05642e-5 -0.8356569 0.4738257 1.14945e-4 -0.8434389 -4.76589e-4 1.54492e-5 -0.9662985 -0.4739801 1.41503e-5 -0.8441075 -0.485803 -4.72455e-6 -0.8376627 -0.4845289 1.26198e-4 -0.8354657 -0.8285865 1.28115e-4 -0.4949906 -0.9640507 0 0.2657183 -0.9640493 0 0.2657233 -0.9640488 0 0.2657251 -0.9640519 0 0.2657138 -0.9640512 0 0.2657165 -0.9640523 0 0.2657125 -0.964052 0 0.2657137 -0.9640549 0 0.2657031 -0.9640537 0 0.2657076 -0.9640507 0 0.2657182 -0.9640534 0 0.2657087 -0.9640502 0 0.2657201 -0.9640495 0 0.2657229 -0.9640506 0 0.2657187 -0.9640507 0 0.2657185 -0.9640509 0 0.2657177 -0.9640507 0 0.2657184 -0.9640537 0 0.2657076 -0.9640519 0 0.2657141 -0.9640524 0 0.2657123 -0.9640537 0 0.2657074 -0.9640491 0 0.2657242 -0.9640497 0 0.2657219 -0.9640481 0 0.2657278 0.02670669 0.7144706 -0.6991556 0.0297321 0.2181075 -0.829552 0.02688555 0.5351431 -0.8166599 -3.63111e-6 0.5480406 -0.836384 1.59985e-4 0.2437606 -0.9278884 7.80521e-7 0.1731299 -0.9486071 -8.86317e-7 0 -1 -9.98516e-7 0 -1 -7.22039e-8 0 -1 -7.22039e-8 0 -1 7.60631e-8 0 -1 1.26284e-6 0 -1 1.77104e-6 0 -1 3.32881e-6 0 -1 -1.16481e-5 -0.7071074 -0.7071061 -1.16481e-5 -0.7071075 -0.7071061 -4.23776e-6 -0.7071074 -0.7071061 -1.90584e-5 -0.7071074 -0.7071061 -0.03920375 0.9992311 -4.71339e-4 -0.03920237 0.9992308 5.08745e-4 -0.03920553 0.9992308 3.08311e-5 -0.03920367 0.9992306 0.001094322 -1.00854e-6 -1 0 -6.57837e-7 -1 0 -6.57837e-7 -1 0 -3.07132e-7 -1 0 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 -0.6701334 0.05678687 0.7400652 -0.5530736 0.07131665 0.8179507 -0.7120208 0.05145909 0.6977117 -0.05859651 0.9927248 -0.1021714 -0.03894512 0.9954723 -0.08670716 -0.05739368 0.9931821 -0.09902007 -0.1245523 0.9922035 0.002100128 -0.1459408 0.9892003 2.43272e-4 -0.1398066 0.9900695 0.001667067 -0.1600133 0.9871036 -2.14457e-4 -0.1623422 0.9867234 9.96089e-7 -0.1623586 0.9867207 8.95072e-7 -0.1597578 0.9871451 1.14722e-4 -0.1467612 0.9890792 3.24886e-5 -0.1400074 0.99005 0.001909827 -0.1237237 0.9922978 -0.003276615 0.1400074 0.99005 -0.001909827 0.1597578 0.9871451 -1.14719e-4 0.1467613 0.9890792 -3.24934e-5 0.1237237 0.9922978 0.003276615 0.1623422 0.9867234 -9.9609e-7 0.1623586 0.9867207 -8.95114e-7 0.1459408 0.9892003 -2.43272e-4 0.1600133 0.9871036 2.14457e-4 0.1247295 0.9921823 -0.001982057 0.1396756 0.990087 -0.001852876 0.5493245 0.04578897 -0.8171214 0.68903 0.02841194 -0.7241757 0.7285937 0.02340632 -0.6820862 -0.726761 0.0265782 0.6863081 -0.6281008 0.0127259 0.7658602 -0.5380101 0.003114827 0.809258 -0.1270719 0.9918929 -6.18314e-4 -0.7236731 -0.0828169 -0.6851559 -0.6228925 -0.0705248 -0.7680213 -0.6884731 -0.07832872 -0.7193344 0.1270719 0.9918929 6.18314e-4 0.6227333 -0.0718578 0.7680254 0.7235201 -0.08415065 0.685155 0.688311 -0.07966131 0.7193424</float_array>
119
+ <technique_common>
120
+ <accessor source="#geom-wamUpperArmLink3-map1-textangents-array" count="936" stride="3">
121
+ <param name="X" type="float"/>
122
+ <param name="Y" type="float"/>
123
+ <param name="Z" type="float"/>
124
+ </accessor>
125
+ </technique_common>
126
+ </source>
127
+ <source id="geom-wamUpperArmLink3-map1-texbinormals">
128
+ <float_array id="geom-wamUpperArmLink3-map1-texbinormals-array" count="2808">-0.3795522 0.8354318 -0.3974843 -0.3687218 0.8451314 -0.3870364 -0.3782912 0.8368034 -0.3957978 -0.2316546 -0.1046444 0.9671534 -0.3519879 -0.2582307 0.8996785 -0.4641836 -0.266553 0.8446793 -5.07563e-5 -1.92422e-5 1 0.2453514 0.1075716 0.9634475 0.3558356 0.2524427 0.8998076 0.4689528 0.2490185 0.8473919 0.661118 -0.07060447 0.7469525 0.4552037 -0.2394129 0.8575961 0.6650135 -0.06712045 0.7438091 0.7079721 -0.02997444 0.705604 0.5757355 -0.1361424 0.8062219 -0.3765479 0.8384268 -0.3940206 0.6931116 -0.7208303 0 0.6931116 -0.7208303 0 0.6931116 -0.7208303 0 -0.4359705 0.7843269 -0.4413175 0.7003038 0.0127589 -0.7137309 0.6542809 0.05565396 -0.754201 0.5684511 0.1190957 -0.8140513 -0.2458909 0.1077377 0.9632914 -0.3559034 0.2522924 0.8998229 -0.4688583 0.2492856 0.8473657 0.6584884 0.05488847 -0.7505867 0.4491539 0.2274393 -0.8640209 -4.85687e-5 3.29733e-5 1 0.2311407 -0.1044976 0.9672922 0.3518868 -0.2584121 0.899666 0.4592102 -0.2635091 0.8483448 0.7118155 0.05453486 0.7002461 0.5900735 0.1493949 0.7934068 0.6658792 0.09482982 0.7400082 0.6773587 0.08689631 0.7305027 0.6931219 -0.7208204 0 0.6931071 -0.7208346 0 0.6931295 -0.7208131 0 0.7208328 -0.693109 0 0.7208334 -0.6931084 0 0.7208337 -0.693108 0 0.6931349 -0.7208078 0 0.6931054 -0.7208363 0 0.720834 -0.6931078 0 0.7208325 -0.6931093 0 0.6931207 -0.7208215 0 0.693107 -0.7208348 0 0.7208339 -0.6931079 0 0.7208335 -0.6931083 0 0.693114 -0.720828 0 0.6931075 -0.7208342 0 0.7208346 -0.6931072 0 0.7208339 -0.6931078 0 0.693105 -0.7208367 0 0.6931101 -0.7208317 0 0.7208349 -0.6931068 0 0.7208356 -0.693106 0 0.6930996 -0.7208418 0 0.6931142 -0.7208278 0 0.7208347 -0.693107 0 0.7208367 -0.693105 0 0.6930976 -0.7208437 0 0.693112 -0.7208299 0 0.7208343 -0.6931075 0 0.7208371 -0.6931045 0 0.6930962 -0.7208451 0 0.693081 -0.7208597 0 0.7208347 -0.693107 0 0.7208367 -0.693105 0 0.6931 -0.7208415 0 0.6930803 -0.7208604 0 0.7208356 -0.693106 0 0.720835 -0.6931067 0 0.6931024 -0.7208392 0 0.6930996 -0.7208419 0 0.7208349 -0.6931068 0 0.7208342 -0.6931076 0 0.6931075 -0.7208343 0 0.6931249 -0.7208175 0 0.7208333 -0.6931085 0 0.7208336 -0.6931082 0 0.6931055 -0.7208362 0 0.6931189 -0.7208233 0 0.7208283 -0.6931136 0 0.7208338 -0.693108 0 0.6931103 -0.7208315 0 0.6930891 -0.720852 0 0.7208251 -0.693117 0 0.7208336 -0.6931081 0 0.6931079 -0.7208339 0 0.6930817 -0.7208591 0 0.7208281 -0.6931139 0 0.7208338 -0.6931079 0 0.6931059 -0.7208358 0 0.6930847 -0.7208562 0 0.7208343 -0.6931074 0 0.7208343 -0.6931074 0 0.7208343 -0.6931074 0 0.7208333 -0.6931085 0 0.7208365 -0.6931052 0 0.7208376 -0.693104 0 0.7208441 -0.6930972 0 0.7208379 -0.6931037 0 0.7208352 -0.6931064 0 0.7208331 -0.6931086 0 0.7208341 -0.6931077 0 0.7208334 -0.6931084 0 0.7717514 -0.6359243 0 0.7717504 -0.6359256 0 0.7717504 -0.6359256 0 0.7717493 -0.6359269 0 0.6931083 -0.7208335 0 0.6931053 -0.7208364 0 0.6931066 -0.7208351 0 0.693105 -0.7208366 0 0.693095 -0.7208462 0 0.6931028 -0.7208388 0 0.693103 -0.7208386 0 0.6931008 -0.7208406 0 0.6931057 -0.720836 0 0.6931118 -0.7208301 0 0.3736082 0.9275866 0 0.3736082 0.9275866 0 0.3736102 0.9275858 0 0.3736063 0.9275874 0 0.9999812 -0.005264946 -0.00314125 0.9747697 0.1915608 0.1145799 0.9227991 0.3306499 0.1977687 0.8422174 0.520438 0.1407628 0.8870651 0.4578733 0.05888515 0.9399171 0.3286098 -0.09258181 0.1504193 -0.6787336 0.7188148 0.1525445 -0.6804992 0.7166945 0.2298808 -0.7486566 0.6218264 0.08129925 -0.6108764 0.7875407 0.4023367 0.9060207 0.1313452 0.5077857 0.8614748 0.003866124 0.6234956 0.7645138 -0.1636213 0.6692586 -0.1793281 0.7210647 0.5920391 -0.1535602 0.7911441 0.6756154 -0.1752378 0.7161253 0.6263464 -0.1571099 0.7635487 0.07008016 0.9901911 -0.1208731 -0.1182843 0.9890553 0.08819532 -0.01499557 0.9995263 -0.0268751 -0.4392748 0.889705 0.1243486 -0.3615009 0.9319753 0.02718761 -0.2651999 0.9605129 -0.08416642 0.2211219 -0.9601453 -0.1709564 -0.00602679 -0.999971 0.004657279 0.1165769 -0.9890836 -0.09013041 0.5787037 -0.8130793 0.06327692 0.6373854 -0.7705331 0.00431073 0.5041042 -0.852379 0.1390286 0.6380714 -0.7699768 7.13518e-4 0.6380334 -0.7700083 7.62967e-4 0.6347385 -0.7727096 0.00518626 0.7071072 0 0.7071064 0.7071072 0 0.7071064 0.7071072 0 0.7071064 0.7070792 0 0.7071343 0.382589 -0.8765216 0.2921225 0.5138729 -0.8443769 0.1515334 0.3786298 -0.8770075 0.2957995 0.5119787 -0.8459321 0.1492538 0.1424185 -0.701774 0.6980188 0.1243141 -0.5503026 0.8256592 0.1422681 -0.6820228 0.7173595 0.1269793 -0.7522902 0.6464795 0.1269801 -0.7522901 0.6464795 0.8085211 -0.5529195 0.2014293 0.8085167 -0.5529245 0.201433 0.7341246 -0.6761859 0.06191687 0.731346 -0.679573 0.05756366 0.6646026 -0.7463095 -0.03640649 0.6612189 -0.7490846 -0.04076632 0.5431405 -0.818147 -0.1887694 0.5490362 -0.8123953 -0.1964004 0.4255215 -0.8390663 -0.3389678 0.421755 -0.8395278 -0.3425139 0.7071071 0 -0.7071064 0.7071014 0 -0.7071121 0.7071072 0 -0.7071064 0.7071072 0 -0.7071064 0.7071072 0 0.7071064 0.7071072 0 0.7071064 0.7071072 0 0.7071064 0.7071015 0 0.7071121 0.3922971 -0.8658214 0.3105742 0.5298778 -0.8304963 0.1717717 0.3961782 -0.8653602 0.3069114 0.5315542 -0.8289765 0.1739198 0.6604822 -0.7502131 0.03071803 0.6568986 -0.7531753 0.03480201 0.7233269 -0.6879394 -0.0594779 0.7205915 -0.6911275 -0.05559314 0.7821665 -0.6012467 -0.1634563 0.3639613 0.5939085 0.717499 0.3636821 0.5934529 0.7180174 0.3212983 0.5242913 0.7885975 -0.8987977 0.4250775 -0.1071064 -0.945642 0.3247931 0.01645396 -0.9650823 0.2318994 0.1218146 -0.9736568 0.1838467 -0.1348807 -0.9931847 -0.09121586 0.07255165 -0.9947618 0.07999867 -0.06363348 -0.999368 -0.02693727 0.02319312 -0.9749478 -0.1758689 -0.1361869 -0.969955 -0.2302005 -0.07870907 -0.9368352 -0.3460152 0.0511202 0.8985198 0.3584997 -0.2532588 0.9522065 0.2494813 -0.1762437 0.9930972 0.0958008 -0.06767738 -0.8940945 -0.4398368 -0.08449057 -0.834961 -0.5481887 0.04826313 -0.8000648 -0.5903869 0.1064872 0.5243811 0.8097958 0.263164 0.5674113 0.7638217 0.3076051 0.4601775 0.8667643 0.1922401 0.3605548 0.9268803 0.1043703 -0.5104914 -0.8497172 -0.1318305 -0.4307101 -0.9021115 -0.02614617 -0.3275975 -0.9398583 0.09667582 0.1668759 0.9791889 0.1155054 0.2762896 0.9418572 0.1912303 -0.006926037 0.9999646 -0.004782767 0.2722036 0.9620167 -0.02071377 0.1486497 0.9747871 -0.1664131 0.1485661 0.9734208 -0.1742986 -0.01060215 0.9371163 -0.3488563 -0.01061821 0.9371222 -0.3488399 -0.5323926 0.8282255 0.1749307 -0.6598086 0.7508432 0.02978305 -0.5323901 0.8282262 0.1749345 -0.6563846 0.7536562 0.03408219 -0.6563929 0.7536492 0.03407587 -0.6597953 0.7508539 0.02980963 -0.5193393 0.8336206 0.1880514 -0.5277503 0.8301976 0.179587 -0.001464919 -0.9413767 0.3373542 -0.1156302 -0.966642 0.2285452 0.001263013 -0.9404794 0.3398484 -0.04888812 -0.9868633 0.1539828 0.06369058 -0.9553882 0.2884039 -0.04257796 -0.9861004 0.1606021 -0.09648074 -0.9906477 0.09648062 1.23467e-8 0 1 0 0 1 8.23114e-9 0 1 0 0 1 -1.23467e-8 0 1 -8.23114e-9 0 1 0 0 1 2.48655e-6 0 1 -1.54823e-6 0 1 0 0 1 2.54253e-7 0 1 1.28641e-6 0 1 -3.34844e-6 0 1 0 0 1 0 0.7071075 0.7071061 0 0.7071074 0.7071061 0 0.7071075 0.7071061 0 0.7071074 0.7071061 0.9980594 -0.0441447 -0.04391568 0.9997157 -0.01859676 -0.01491954 0.9986701 -0.04021419 -0.03226231 1 8.17261e-7 -1.27668e-6 -1 1.1737e-6 -1.1737e-6 -1 5.86852e-7 -5.86851e-7 -1 5.86852e-7 -5.86851e-7 -1 0 0 1 5.03541e-6 5.0354e-6 1 2.5177e-6 2.5177e-6 1 2.5177e-6 2.5177e-6 1 0 0 0.2192684 -0.974558 -0.04645415 0.01178556 -0.9999305 -5.2498e-6 0.08338846 -0.9964994 -0.005947989 0.2123861 -0.9771368 0.00978956 0.02377681 -0.9997171 -6.4189e-4 0.01178556 -0.9999305 6.82799e-6 0.07322069 -0.9973155 6.98913e-4 0.470944 -0.8814974 0.03426554 0.3446649 -0.9387258 -2.49332e-4 0.634404 -0.7730016 0 0.639901 -0.7681306 0.02240749 0.6343865 -0.773016 0 0.6343864 -0.7730161 0 0.3826917 -0.9238761 0 0.3826917 -0.9238761 0 -0.01980513 -0.9998039 0 -0.02102502 -0.9997782 0.00122711 0.4535963 -0.889206 -0.05969151 0.3150412 -0.9490751 0.002339832 0.639901 -0.7681306 -0.02240749 0.634404 -0.7730016 0 0.6343865 -0.773016 0 0.6343864 -0.7730161 0 0.3826917 -0.9238761 0 0.3826917 -0.9238761 0 -0.01980513 -0.9998039 0 -0.01978841 -0.9998042 1.63711e-5 -0.4554282 -0.8902725 -2.78595e-6 -0.45304 -0.8914901 3.42348e-4 -0.809588 -0.5869985 -4.85858e-5 -0.8084566 -0.5885528 0.001847184 -0.8095877 -0.5869984 7.95016e-4 -0.8084579 -0.5885534 8.02736e-4 -0.9874865 -0.1577033 4.3303e-5 -0.9878101 -0.1556639 6.25893e-5 -0.3851392 -0.9228538 -0.002948183 -0.5456327 -0.8380008 -0.00630185 -0.08439995 0.08440003 0.9928511 -0.02168235 0.02168237 0.9995298 0.1178068 -0.117807 0.9860239 -0.764435 -0.6261485 -0.1535486 -0.8940067 -0.4473226 -0.0255824 -0.7206795 -0.6656696 0.1936624 -0.9744116 -0.2240806 0.0176064 -0.9506794 0.3101752 1.20954e-4 -0.9515353 0.3075395 3.18966e-4 -0.7853257 0.6190825 6.08304e-4 -0.6343771 0.7730237 0 -0.7853145 0.619097 0 -0.9992119 0.03956181 0.003222548 -0.9624751 0.2687799 -0.03740335 -0.8928538 0.4502075 -0.01119127 -0.7737786 0.6312456 -0.05287462 -0.7730128 0.6343904 0 -0.6343771 0.7730237 0 -0.6343771 0.7730237 0 -0.6343771 0.7730237 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 5.13847e-7 1 0 -8.36537e-7 1 0 -6.39509e-7 1 0 4.31753e-6 1 0 4.95969e-6 1 0 5.18708e-6 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 7.5456e-8 1 0 3.14755e-6 1 0 -1 -4.1274e-7 0 -1 -7.77619e-8 -0.8652237 -0.5013843 -0.001274394 -0.5018784 -0.8649382 -1.04151e-4 -0.4994177 -0.8663613 -6.90978e-5 -0.8672559 -0.4978625 -2.74145e-4 -0.5018787 -0.8649362 -0.001786263 -0.8652249 -0.5013839 -1.35428e-4 -0.9999984 -0.00178708 -2.99355e-7 -0.9999984 0.00178708 -3.0379e-7 -0.8672559 0.4978626 -2.74161e-4 -0.8652249 0.5013839 -1.35447e-4 -4.38485e-4 -0.9999999 -2.20136e-7 4.38485e-4 -0.9999999 3.88795e-7 0.4994183 -0.866361 -6.7668e-5 0.5018786 -0.8649381 -1.02006e-4 0.8652239 -0.5013841 -0.001271936 0.5018789 -0.8649361 -0.001782035 0.8652251 -0.5013837 -1.32086e-4 0.8672562 -0.497862 -2.71617e-4 0.9999984 -0.001787599 1.06931e-6 0.9999984 0.001787604 1.22348e-6 0.8672562 0.497862 -2.71254e-4 0.8652251 0.5013837 -1.31545e-4 0.5018788 0.8649361 -0.001781416 0.8652239 0.5013841 -0.001274425 0.5018785 0.8649381 -1.04169e-4 0.4994182 0.866361 -6.911e-5 4.38485e-4 0.9999999 -2.23227e-7 -4.38485e-4 0.9999999 -2.20136e-7 -0.4994176 0.8663614 -6.91036e-5 -0.5018783 0.8649382 -1.0416e-4 -0.8652237 0.5013843 -0.001274411 -0.5018787 0.8649362 -0.001786288 -0.9999992 -0.001275805 -9.45903e-7 -1 1.93961e-5 -5.0334e-7 -0.7073663 -0.706847 -4.26687e-4 -4.04418e-4 1.67534e-4 0.9999999 -6.92862e-4 9.44858e-5 0.9999998 8.01695e-4 -3.29794e-4 0.9999996 -0.7041758 -0.7100252 -8.57203e-4 3.77759e-4 5.30275e-5 0.9999999 -2.99536e-4 -1.24451e-4 0.9999999 6.00851e-5 2.5043e-5 1 0.7079578 -0.7062548 -2.35469e-5 0.7072093 -0.7070042 -4.71414e-5 1 -1.60385e-5 -5.02852e-7 0.9999992 0.001274729 4.25685e-7 3.56753e-6 -2.58423e-5 1 6.56275e-5 4.71488e-4 0.9999999 -2.4716e-5 5.96776e-5 1 -5.96261e-5 2.48515e-5 1 -3.77061e-4 5.29292e-5 0.9999999 2.99856e-4 -1.24584e-4 0.9999999 1.24311e-4 -3.00079e-4 0.9999999 6.92863e-4 9.44863e-5 0.9999998 -7.99649e-4 -3.28953e-4 0.9999996 4.05333e-4 1.67914e-4 0.9999999 0.7073644 -0.7068489 -4.25661e-4 0.7041767 -0.7100242 -8.55138e-4 0.9999992 -0.001274718 -9.44231e-7 1 1.60385e-5 -5.03258e-7 0.7079578 0.7062548 -2.35475e-5 0.7072093 0.7070042 -4.71427e-5 0.003756658 0.9999929 -1.41452e-7 4.52104e-5 1 4.20321e-7 0.7072092 0.7070043 2.06667e-4 0.7079578 0.7062548 -9.64392e-5 -0.7041756 0.7100259 -9.38964e-5 -0.7073661 0.706847 -7.59931e-4 0.7073644 0.7068489 -4.23601e-4 0.7041767 0.7100242 -8.51026e-4 -7.99649e-4 3.28953e-4 0.9999996 4.05333e-4 -1.67914e-4 0.9999999 6.92863e-4 -9.44863e-5 0.9999998 -3.77061e-4 -5.29292e-5 0.9999999 2.99856e-4 1.24584e-4 0.9999999 -5.96261e-5 -2.48515e-5 1 -0.7079578 0.7062547 -2.40608e-5 -0.7072093 0.7070042 -4.81705e-5 -1.67983e-4 -4.03796e-4 0.9999999 3.34601e-4 8.00768e-4 0.9999996 0.2657283 0.964048 0 0.2657165 0.9640512 0 0.2657235 0.9640493 0 0.2657208 -0.96405 0 0.2657206 -0.9640501 0 0.2657207 -0.96405 0 0.2657325 0.9640468 0 0.265714 0.9640519 0 0.2657205 -0.9640501 0 0.2657206 -0.9640501 0 0.265727 0.9640483 0 0.2657198 0.9640503 0 0.2657203 -0.9640502 0 0.2657205 -0.9640501 0 0.2657241 0.9640491 0 0.2657246 0.964049 0 0.2657204 -0.9640501 0 0.2657205 -0.9640501 0 0.2657205 0.9640501 0 0.2657242 0.9640491 0 0.2657207 -0.9640501 0 0.2657201 -0.9640502 0 0.2657207 0.9640501 0 0.2657183 0.9640507 0 0.2657204 -0.9640501 0 0.2657204 -0.9640501 0 0.2657176 0.9640509 0 0.2657194 0.9640504 0 0.2657208 -0.96405 0 0.2657202 -0.9640502 0 0.26572 0.9640503 0 0.2657206 -0.9640501 0 0.2657199 -0.9640503 0 0.2657193 0.9640504 0 0.2657207 0.9640501 0 0.2657204 -0.9640501 0 0.2657203 -0.9640502 0 0.2657217 0.9640498 0 0.2657212 0.9640499 0 0.2657206 -0.9640501 0 -0.7208332 -0.6931085 0 -0.7208357 -0.693106 0 -0.7208349 -0.6931068 0 -0.7208347 -0.6931071 0 -0.720834 -0.6931077 0 -0.7208335 -0.6931083 0 -0.7208342 -0.6931076 0 -0.7208345 -0.6931072 0 -0.7208336 -0.6931082 0 -0.7208346 -0.6931071 0 -0.7208338 -0.693108 0 -0.7208341 -0.6931077 0 -0.7208341 -0.6931076 0 -0.7208344 -0.6931073 0 -0.720835 -0.6931067 0 -0.7208332 -0.6931086 0 -0.7208336 -0.6931082 0 -0.7208385 -0.693103 0 -0.7208431 -0.6930983 0 -0.72085 -0.6930911 0 -0.7208355 -0.6931062 0 -0.7208325 -0.6931094 0 -0.7462232 -0.6656958 0 -0.7462233 -0.6656957 0 -0.7462231 -0.6656959 0 -0.7462224 -0.6656967 0 -0.7462227 -0.6656963 0 -0.7462216 -0.6656976 0 -0.7462218 -0.6656974 0 -0.7462216 -0.6656976 0 -0.7462233 -0.6656957 0 -0.7462236 -0.6656954 0 -0.7462246 -0.6656942 0 -0.7462225 -0.6656966 0 -0.7462232 -0.6656959 0 -0.7462228 -0.6656963 0 -0.7462233 -0.6656957 0 -0.7462239 -0.6656951 0 -0.7462235 -0.6656955 0 -0.7462226 -0.6656965 0 -0.7462219 -0.6656973 0 -0.7462213 -0.6656979 0 -0.7462213 -0.665698 0 -0.7462201 -0.6656993 0 0.7036946 0.2067346 -0.6797608 0.7038363 0.2048708 -0.6801782 0.7565013 0.1921414 -0.62513 0.7563911 0.1892817 -0.6261349 0.8236965 0.1366759 -0.5503124 0.8223815 0.1286538 -0.5541993 0.8849286 0.03338817 -0.4645283 0.680531 0.1975683 -0.7055809 0.6814057 0.1932467 -0.7059334 0.6911821 0.1882403 -0.6977341 0.6922673 0.1847616 -0.6975881 0.7150528 0.1966915 -0.6708293 0.7145465 0.1955857 -0.6716916 0.711481 0.1930899 -0.6756561 0.7121837 0.1947885 -0.674427 0.6864823 0.1844974 -0.7033511 0.6846963 0.1895568 -0.7037466 0.6683243 0.1874211 -0.7198722 0.66751 0.1830903 -0.7217398 0.698437 0.1885816 -0.6903787 0.6950983 0.181679 -0.6955797 0.7478435 0.2286351 -0.6232624 0.7521954 0.2332434 -0.6162788 0.0321897 -0.7102661 0.7031969 0.01067477 -0.7601749 0.6496308 0.03242665 -0.7096979 0.7037594 0 0.7071089 -0.7071047 0 0.7071464 -0.7070672 0 0.7071089 -0.7071047 0.06641417 -0.7920649 0.6068133 0.06642525 -0.792074 0.6068002 0.02711845 -0.7039037 0.7097776 0.7096836 0.03176915 0.7038039 0.7101831 0.03122799 0.7033241 0.8117302 -0.01415217 0.5838612 0.7040811 0.02960941 0.709502 0.7037306 0.02825166 0.709905 0.7524005 0.04786427 0.6569646 0.7444399 0.04432569 0.6662165 -0.4129742 -0.5730112 -0.7078916 -0.4128135 -0.5725155 -0.7083862 -0.42518 -0.5859343 -0.6898572 -0.4185927 -0.5816659 -0.697456 -0.4180193 -0.5819862 -0.6975327 -0.421929 -0.6362519 -0.6458789 -0.4164032 -0.6373726 -0.6483552 -0.3989845 -0.7175528 -0.5709021 -0.3989102 -0.7179644 -0.5704365 0.8814042 0.02110636 -0.471891 0.9269299 -0.09713931 -0.3624431 -0.482051 -0.521263 0.70421 -0.4824003 -0.5216121 0.7037121 -0.4791836 -0.5183958 0.7082717 0.619889 0.3760347 -0.6887202 0.6149563 0.3702605 -0.6962298 0.5925412 0.3704947 -0.7152822 0.6930024 0.3536201 -0.6282519 0.7014165 0.3391377 -0.6268975 0.6029789 0.3959685 -0.6925499 0.6042102 0.3955402 -0.691721 0.6196363 0.4440057 -0.6472324 0.6118647 0.4504262 -0.6501829 0.6210433 0.5459442 -0.5623612 0.4372755 -0.6409238 0.6308778 0.4373655 -0.6416571 0.6300695 0.4281053 -0.5875658 0.686653 0.4267136 -0.5885993 0.6866341 0.4138519 -0.5736272 0.7068794 0.4109798 -0.5758842 0.7067199 0.4145463 -0.588671 0.6939869 0.4128808 -0.5903068 0.6935902 0.4486341 -0.6141313 0.6492844 0.7376159 0.4388094 0.5131951 0.7376137 0.4388149 0.5131935 0.6522644 0.4582447 0.6037905 0.6529059 0.4553737 0.6052674 0.5964029 0.4414701 0.6703788 0.5998098 0.4329595 0.672885 0.5834343 0.4040614 0.7045132 0.5899074 0.392958 0.705403 0.6012804 0.3776287 0.7041722 0.6052721 0.3727672 0.7033422 0.6030869 0.3731528 0.7050129 0.5978114 0.3793278 0.7062096 0.5890534 0.4021624 0.7009148 0.581361 0.4158517 0.6993474 0.5700286 0.4207405 0.7057229 0.5783771 0.4154315 0.7020659 0.581227 0.3893508 0.7145496 0.5929846 0.3759668 0.7120521 0.6263244 0.3851277 0.6777864 0 0.7071089 0.7071047 0 0.7071069 0.7071067 0 0.7071089 0.7071047 0.03224084 0.7097179 0.7037478 0.03201757 0.7102538 0.7032172 -0.01415143 0.8117314 0.5838594 0.0478319 0.7523357 0.6570411 0.0442804 0.7443493 0.6663207 0.02695593 0.7038855 0.7098018 0.8648228 0.2440329 -0.4387818 0.8648375 0.2440238 -0.4387579 -0.01413794 0.8117512 0.5838322 0 0.7071393 0.7070743 0.0271534 0.7043578 0.7093256 0.6241973 0.3829767 0.68096 0.59332 0.3745178 -0.7125362 0.621192 0.5470845 -0.5610874 0.4486377 -0.6141412 0.6492725 -0.5203269 -0.4811263 -0.7055334 -0.5173132 -0.4781128 -0.7097853 -0.5176612 -0.4784607 -0.709297 0.0273017 -0.7043413 0.7093363 0.9269338 -0.09769135 -0.3622847 0 0.7071073 -0.7071063 0.8117499 -0.01414222 0.583834 0.006713342 -0.768871 0.6393687 0 0 1 0 0 1 0.03168268 -0.005416554 0.9994833 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 4.80591e-6 -1.43893e-4 1 9.62922e-5 -3.8429e-4 0.9999999 2.6909e-4 -7.50728e-4 0.9999997 1.5775e-4 -2.6313e-4 1 4.292e-4 -5.78097e-4 0.9999997 -2.42939e-4 2.67884e-4 0.9999999 -4.74128e-5 5.23046e-5 1 5.85613e-4 -2.77205e-4 0.9999998 6.56356e-4 -2.34708e-4 0.9999998 -6.05637e-5 3.62888e-5 1 3.7511e-4 -5.5879e-5 0.9999999 8.06604e-5 -3.95167e-6 1 3.82213e-4 5.64076e-5 0.9999999 -1.88262e-5 -4.71756e-6 1 5.25387e-4 2.48036e-4 0.9999998 2.10242e-4 1.26058e-4 1 9.72254e-5 7.2071e-5 1 0 0 1 0 0 1 -4.70662e-5 -4.7068e-5 1 0 0 1 3.56728e-4 1.82885e-4 -0.9999999 3.85853e-4 1.39817e-4 -0.9999999 5.50177e-5 3.74651e-5 -1 5.46123e-5 1.60455e-5 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.1100092 0.04556869 0.9928854 0.02838204 -0.01000463 0.9995471 0 0 1 -0.00741708 0.03269401 0.9994379 -0.04694626 0.09806003 0.9940726 0 0 1 -0.03139313 0.007228339 0.999481 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -4.9526e-6 1.48265e-4 1 -1.23131e-4 4.91929e-4 0.9999999 -2.96157e-4 8.25873e-4 0.9999996 -1.76911e-4 2.95199e-4 0.9999999 -4.24549e-4 5.71515e-4 0.9999997 6.6978e-5 -7.38505e-5 1 -1.52219e-4 9.12156e-5 1 8.55191e-5 -5.12681e-5 1 -6.08886e-4 2.88168e-4 0.9999998 -6.49436e-4 2.32149e-4 0.9999998 -3.51978e-4 5.23575e-5 0.9999999 -4.2399e-5 2.08172e-6 1 -4.78708e-4 -7.07637e-5 0.9999999 -2.29062e-5 -5.73466e-6 1 -6.87101e-4 -3.24489e-4 0.9999997 -3.29691e-4 -1.97564e-4 0.9999999 -1.11555e-4 -8.2688e-5 1 0 0 1 -9.81871e-5 -9.81909e-5 1 0 0 1 -5.50174e-5 -3.74649e-5 -1 0 0 -1 -3.56711e-4 -1.82848e-4 -0.9999999 -3.85819e-4 -1.39773e-4 -0.9999999 -5.46114e-5 -1.60452e-5 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.07488913 0.02639831 0.9968424 -0.05904184 0.02445667 0.9979559 0.05402237 -0.1145667 -0.9919456 0.007611521 -0.04979599 -0.9987304 0.03185491 -0.05148389 -0.9981657 0 0 -1 0.05440482 -0.06260233 -0.9965546 0 0 -1 0 0 -1 0 0 1 4.70655e-5 4.70673e-5 1 0 0 1 -1.19262e-4 1.31432e-4 1 0 0 1 0 0 1 0 0 1 0 0 -1 8.5575e-5 8.55784e-5 1 -3.10221e-4 1.85783e-4 0.9999999 0.01591226 -0.02910669 0.9994496 0.7208342 -0.6931075 0 0.7208343 -0.6931075 0 0.7208343 -0.6931074 0 0.7208341 -0.6931076 0 0.7208342 -0.6931075 0 0.7208342 -0.6931075 0 0.7208341 -0.6931076 0 0.7208342 -0.6931076 0 0.7208343 -0.6931075 0 0.7208343 -0.6931075 0 0.720834 -0.6931078 0 0.720834 -0.6931078 0 0.7208976 -0.6929654 0.0102797 0.720921 -0.6929761 0.007544074 0.7209035 -0.6929254 0.01234706 0.7207961 -0.6907991 0.05700425 0.7208397 -0.693101 0.001082168 0.7208335 -0.6931083 0 0.7208333 -0.6931085 0 0.7208343 -0.6931074 0 0.7208347 -0.693107 0 0.7208345 -0.6931073 0 0.7208341 -0.6931077 0 0.7208337 -0.693108 0 0.720834 -0.6931077 0 0.6931073 -0.7208344 0 0.6931072 -0.7208345 0 0.6931076 -0.7208341 0 0.693108 -0.7208337 0 0.6931083 -0.7208335 0 0.6931075 -0.7208343 0 0.693108 -0.7208337 0 0.6931075 -0.7208342 0 0.6931073 -0.7208344 0 0.6931072 -0.7208345 0 0.6931085 -0.7208333 0 0.6931082 -0.7208336 0 0.6931091 -0.7208327 0 0.6931084 -0.7208334 0 0.6931073 -0.7208344 0 0.6931079 -0.7208339 0 0.6931074 -0.7208343 0 0.6931075 -0.7208342 0 0.6931076 -0.7208341 0 0.6931081 -0.7208337 0 0.6931073 -0.7208344 0 0.6931074 -0.7208343 0 0.6931071 -0.7208346 0 0.6931073 -0.7208344 0 0.6931071 -0.7208346 0 1.30232e-4 1 -2.78513e-4 2.16965e-7 0.9999998 6.06493e-4 1.65802e-11 1 2.32125e-8 -2.46331e-4 0.9999999 4.22054e-4 3.56812e-4 0.9999999 -3.58551e-4 -1.57187e-4 1 7.15828e-5 -3.64302e-4 0.9999999 3.5158e-4 4.25066e-4 0.9999999 -2.40868e-4 1.84313e-4 1 -1.61699e-5 1.56922e-4 1 1.40224e-5 -2.58879e-6 1 -9.22284e-6 4.35723e-5 1 1.58726e-4 1.1341e-4 1 1.13424e-4 1.16552e-4 1 1.16567e-4 -3.33414e-4 0.9999999 -3.33455e-4 6.89147e-6 -1 6.65081e-6 3.37671e-4 -0.9999999 3.25879e-4 -1.192e-4 -1 -1.15037e-4 -1.55205e-4 1 -4.11278e-5 4.5479e-4 0.9999999 1.18978e-4 1.13421e-4 -1 1.13442e-4 3.3447e-4 -0.9999999 3.34532e-4 -3.33975e-4 -0.9999999 -3.34036e-4 3.38246e-4 0.9999999 3.26434e-4 -3.42082e-4 0.9999999 -3.30136e-4 2.19547e-4 1 2.1188e-4 1.22606e-4 -0.9999999 4.56867e-4 2.78593e-5 -1 2.9688e-4 -8.09066e-5 -1 -2.94722e-4 -2.86082e-5 -0.9999999 3.20914e-4 1.29894e-4 -1 -2.77792e-4 -2.46887e-4 -0.9999999 4.23006e-4 1.56922e-4 -1 1.40224e-5 -1.55185e-4 -1 -4.11226e-5 4.54017e-4 -0.9999999 1.18775e-4 1.83301e-4 -1 -1.60785e-5 -1.57947e-4 -1 7.19264e-5 4.23482e-4 -0.9999999 -2.39959e-4 3.5548e-4 -0.9999999 -3.57213e-4 -3.65123e-4 -0.9999999 3.52373e-4 0.2657183 0 0.9640507 0.2657233 0 0.9640493 0.2657251 0 0.9640488 0.2657138 0 0.9640519 0.2657165 0 0.9640512 0.2657125 0 0.9640523 0.2657137 0 0.964052 0.2657031 0 0.9640549 0.2657076 0 0.9640537 0.2657182 0 0.9640507 0.2657087 0 0.9640534 0.2657201 0 0.9640502 0.2657229 0 0.9640495 0.2657187 0 0.9640506 0.2657185 0 0.9640507 0.2657177 0 0.9640509 0.2657184 0 0.9640507 0.2657076 0 0.9640537 0.2657141 0 0.9640519 0.2657123 0 0.9640524 0.2657074 0 0.9640537 0.2657242 0 0.9640491 0.2657219 0 0.9640497 0.2657278 0 0.9640481 -0.9994885 0.006778332 -0.03125215 -0.9993824 0.00310401 -0.0350029 -0.9996208 0.01438849 -0.02348034 -0.9999997 -6.99774e-4 -4.54186e-4 -0.9999826 -0.005659184 -0.00165911 -1 1.45329e-7 -7.96283e-7 -1 0 8.86317e-7 -1 0 9.98516e-7 -1 0 7.22039e-8 -1 0 7.22039e-8 -1 0 -7.60631e-8 -1 0 -1.26284e-6 -1 0 -1.77104e-6 -1 0 -3.32881e-6 -1 8.23646e-6 8.23644e-6 -1 8.23646e-6 8.23644e-6 -1 2.99655e-6 2.99654e-6 -1 1.34764e-5 1.34763e-5 -0.9992121 -0.03920008 0.006205918 -0.9992082 -0.03920493 0.006771612 -0.9992101 -0.03920492 0.006495757 -0.9992057 -0.03921048 0.007109581 -1 1.00854e-6 0 -1 6.57837e-7 0 -1 6.57837e-7 0 -1 3.07132e-7 0 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0.02565118 -0.9947016 0.09955299 0.04523697 -0.9920908 0.1170877 0.02575899 -0.9946891 0.09964965 -0.6209882 0.04388986 0.7825901 -0.7126992 0.03314842 0.7006861 -0.5575639 0.05039127 0.8286032 -0.5464976 -0.07036872 0.834499 -0.3106435 -0.04606401 0.9494097 -0.607875 -0.08716626 0.7892338 -0.3263037 -0.05269003 0.9437953 -0.002964537 -4.88755e-4 0.9999955 -0.002804223 -4.62324e-4 0.999996 0.3046883 0.04919967 0.9511806 0.3235961 0.04798469 0.9449778 0.5517665 0.07642574 0.8304895 0.6271425 0.0807528 0.7747073 0.5517665 -0.07642574 0.8304895 0.3046883 -0.04919967 0.9511806 0.3235961 -0.04798469 0.9449778 0.6271425 -0.0807528 0.7747073 -0.00296454 4.88755e-4 0.9999955 -0.002804223 4.62324e-4 0.999996 -0.3106435 0.04606401 0.9494097 -0.3263037 0.05269003 0.9437953 -0.5464565 0.07036343 0.8345264 -0.6251585 0.08964462 0.7753326 0.05979869 0.9935952 0.09587875 0.04026692 0.9961869 0.07739658 0.04196497 0.9959906 0.07900452 -0.07854685 -0.9959119 -0.04460861 -0.090956 -0.9941601 -0.0580758 -0.08754616 -0.9946754 -0.05437386 0.688044 0.08859467 0.7202405 -0.1134932 0.9935387 -2.18656e-4 -0.1176456 0.9930466 0.004226653 -0.1200135 0.9927492 0.006763564 0.688044 -0.08859467 0.7202405 -0.1184963 -0.9929494 0.003177582 -0.1144646 -0.9934267 -0.001138478 -0.1209398 -0.9926429 0.005795545</float_array>
129
+ <technique_common>
130
+ <accessor source="#geom-wamUpperArmLink3-map1-texbinormals-array" count="936" stride="3">
131
+ <param name="X" type="float"/>
132
+ <param name="Y" type="float"/>
133
+ <param name="Z" type="float"/>
134
+ </accessor>
135
+ </technique_common>
136
+ </source>
137
+ <vertices id="geom-wamUpperArmLink3-vertices">
138
+ <input semantic="POSITION" source="#geom-wamUpperArmLink3-positions"/>
139
+ </vertices>
140
+ <triangles material="upperarmM_1" count="709">
141
+ <input semantic="VERTEX" source="#geom-wamUpperArmLink3-vertices" offset="0"/>
142
+ <input semantic="NORMAL" source="#geom-wamUpperArmLink3-normals" offset="1"/>
143
+ <input semantic="TEXCOORD" source="#geom-wamUpperArmLink3-map1" offset="2" set="1"/>
144
+ <input semantic="TEXTANGENT" source="#geom-wamUpperArmLink3-map1-textangents" offset="3" set="1"/>
145
+ <input semantic="TEXBINORMAL" source="#geom-wamUpperArmLink3-map1-texbinormals" offset="3" set="1"/>
146
+ <p>1 0 3 0 0 1 1 1 2 2 4 2 3 3 931 3 1 0 5 4 2 2 6 5 4 4 932 6 1 0 5 4 3 3 931 3 3 3 931 3 5 5 933 7 4 4 932 6 6 6 934 8 4 4 932 6 5 5 933 7 5 5 933 7 7 7 935 9 6 6 934 8 7 7 9 10 5 5 7 11 8 8 169 12 9 9 170 13 6 6 8 14 7 7 9 10 2 2 4 2 0 1 1 1 11 10 292 15 12 11 34 16 11 12 33 17 0 13 0 18 10 14 213 19 2 2 4 2 11 10 292 15 14 15 266 20 13 16 265 21 15 17 267 22 16 18 11 23 15 17 10 24 13 16 2 25 13 16 265 21 17 19 269 26 16 18 268 27 16 18 11 23 18 20 12 28 15 17 10 24 18 20 12 28 19 21 13 29 20 22 14 30 19 21 13 29 21 23 15 31 20 22 14 30 19 21 13 29 18 20 12 28 16 18 11 23 22 24 274 32 20 22 272 33 21 23 273 34 23 25 275 35 22 24 274 32 21 23 273 34 25 26 67 36 24 27 66 37 26 28 70 38 28 29 36 39 27 30 35 40 29 31 37 41 25 26 67 36 26 28 70 38 30 32 78 42 25 26 67 36 31 33 79 43 24 27 66 37 32 34 38 44 29 31 37 41 27 30 35 40 27 30 35 40 28 29 36 39 33 35 39 45 26 28 70 38 34 36 99 46 30 32 78 42 31 33 79 43 35 37 100 47 24 27 66 37 29 31 37 41 32 34 38 44 36 38 40 48 37 39 41 49 33 35 39 45 28 29 36 39 38 40 103 50 30 32 78 42 34 36 99 46 35 37 100 47 31 33 79 43 39 41 104 51 40 42 42 52 36 38 40 48 32 34 38 44 33 35 39 45 37 39 41 49 41 43 43 53 34 36 99 46 42 44 107 54 38 40 103 50 39 41 104 51 43 45 108 55 35 37 100 47 36 38 40 48 40 42 42 52 44 46 44 56 45 47 45 57 41 43 43 53 37 39 41 49 46 48 150 58 38 40 103 50 42 44 107 54 47 49 151 59 43 45 108 55 39 41 104 51 48 50 46 60 44 46 44 56 40 42 42 52 41 43 43 53 45 47 45 57 49 51 47 61 42 44 107 54 50 52 154 62 46 48 150 58 47 49 151 59 51 53 155 63 43 45 108 55 44 46 44 56 48 50 46 60 52 54 48 64 53 55 49 65 49 51 47 61 45 47 45 57 54 56 158 66 46 48 150 58 50 52 154 62 47 49 151 59 55 57 159 67 51 53 155 63 56 58 50 68 52 54 48 64 48 50 46 60 49 51 47 61 53 55 49 65 57 59 51 69 50 52 154 62 58 60 162 70 54 56 158 66 55 57 159 67 59 61 163 71 51 53 155 63 52 54 48 64 56 58 50 68 60 62 52 72 61 63 53 73 57 59 51 69 53 55 49 65 62 64 166 74 54 56 158 66 58 60 162 70 59 61 163 71 55 57 159 67 63 65 167 75 64 66 54 76 60 62 52 72 56 58 50 68 57 59 51 69 61 63 53 73 65 67 55 77 58 60 162 70 66 68 172 78 62 64 166 74 63 65 167 75 67 69 173 79 59 61 163 71 60 62 52 72 64 66 54 76 68 70 56 80 69 71 57 81 65 67 55 77 61 63 53 73 62 64 166 74 66 68 172 78 70 72 175 82 63 65 167 75 71 73 176 83 67 69 173 79 72 74 58 84 68 70 56 80 64 66 54 76 69 71 57 81 73 75 59 85 65 67 55 77 74 76 177 86 70 72 175 82 66 68 172 78 75 77 178 87 67 69 173 79 71 73 176 83 68 70 56 80 72 74 58 84 76 78 60 88 69 71 57 81 77 79 61 89 73 75 59 85 74 76 177 86 66 68 172 78 78 80 179 90 71 73 176 83 79 81 180 91 75 77 178 87 80 82 62 92 76 78 60 88 72 74 58 84 81 83 63 93 73 75 59 85 77 79 61 89 82 84 181 94 78 80 179 90 66 68 172 78 83 85 182 95 75 77 178 87 79 81 180 91 76 78 60 88 80 82 62 92 84 86 64 96 73 75 59 85 81 83 63 93 85 87 65 97 81 83 63 93 86 88 68 98 85 87 65 97 87 89 69 99 85 87 65 97 86 88 68 98 86 88 68 98 88 90 71 100 87 89 69 99 89 91 72 101 87 89 69 99 88 90 71 100 88 90 71 100 90 92 73 102 89 91 72 101 91 93 74 103 84 86 64 96 80 82 62 92 84 86 64 96 91 93 74 103 92 94 75 104 93 95 76 105 92 94 75 104 91 93 74 103 95 96 80 106 94 97 77 107 93 95 76 105 92 94 75 104 93 95 76 105 94 97 77 107 94 98 193 108 96 99 194 109 97 100 195 110 96 99 194 109 98 101 196 111 97 100 195 110 82 84 181 94 99 102 183 112 78 80 179 90 100 103 184 113 78 80 179 90 99 102 183 112 100 103 184 113 99 102 183 112 101 104 185 114 100 103 184 113 101 104 185 114 102 105 186 115 102 105 186 115 101 104 185 114 99 102 183 112 79 81 180 91 103 106 187 116 83 85 182 95 104 107 188 117 83 85 182 95 103 106 187 116 105 108 189 118 104 107 188 117 106 109 190 119 103 106 187 116 106 109 190 119 104 107 188 117 107 110 191 120 105 108 189 118 106 109 190 119 105 108 189 118 107 110 191 120 108 111 192 121 111 112 278 122 110 113 277 123 109 114 276 124 109 114 276 124 112 115 279 125 111 112 278 122 112 115 279 125 110 113 277 123 111 112 278 122 114 116 765 126 113 117 705 127 115 118 766 128 116 119 745 129 115 118 744 130 113 117 407 131 115 118 409 132 116 119 410 133 117 120 411 134 118 121 703 135 117 120 411 134 116 119 410 133 119 122 676 136 117 120 412 137 118 121 413 138 117 120 728 139 119 122 730 140 120 123 731 141 121 124 732 142 120 123 731 141 119 122 730 140 121 124 415 143 122 125 416 144 120 123 414 145 124 126 706 146 123 127 702 147 122 125 418 148 123 127 748 149 120 123 746 150 122 125 747 151 124 126 419 152 125 128 420 153 123 127 417 154 126 129 465 155 123 127 417 154 125 128 420 153 125 128 420 153 127 130 466 156 126 129 465 155 128 131 467 157 126 129 465 155 127 130 466 156 130 132 470 158 129 133 469 159 131 134 831 160 132 135 832 161 131 134 831 160 129 133 469 159 129 133 472 162 133 136 474 163 132 135 473 164 134 137 723 165 132 135 473 164 133 136 474 163 127 130 466 156 134 137 723 165 128 131 467 157 133 136 474 163 128 131 467 157 134 137 723 165 135 138 704 166 113 117 305 167 114 116 306 168 137 139 719 169 136 140 718 170 114 116 306 168 135 138 704 166 114 116 306 168 136 140 718 170 136 140 476 171 137 139 477 172 138 141 478 173 139 142 479 174 138 141 478 173 137 139 477 172 139 142 479 174 140 143 480 175 138 141 478 173 141 144 481 176 138 141 478 173 140 143 480 175 142 145 482 177 141 144 481 176 140 143 480 175 140 143 480 175 143 146 483 178 142 145 482 177 144 147 484 179 142 145 482 177 143 146 483 178 143 146 483 178 145 148 485 180 144 147 484 179 146 149 827 181 144 147 486 182 145 148 487 183 146 149 827 181 145 148 487 183 147 150 828 184 149 151 445 185 148 152 444 186 150 153 829 187 150 153 829 187 148 152 444 186 151 154 830 188 148 152 443 189 152 155 447 190 151 154 446 191 151 154 446 191 152 155 447 190 153 156 448 192 152 155 447 190 154 157 449 193 153 156 448 192 154 157 449 193 155 158 451 194 153 156 448 192 154 157 449 193 156 159 452 195 155 158 451 194 155 158 451 194 156 159 452 195 157 160 453 196 156 159 452 195 158 161 454 197 157 160 453 196 156 159 806 198 159 162 811 199 158 161 810 200 158 161 455 201 159 162 456 202 160 163 675 203 159 162 777 204 161 164 779 205 160 163 778 206 160 163 778 206 161 164 779 205 162 165 780 207 162 165 458 208 161 164 457 209 163 166 727 210 164 167 793 211 163 166 792 212 161 164 791 213 163 166 459 214 164 167 742 215 165 168 743 216 165 168 461 217 164 167 460 218 166 169 462 219 166 169 462 219 164 167 460 218 167 170 798 220 166 169 463 221 167 170 464 222 168 171 643 223 168 171 708 224 167 170 707 225 169 172 709 226 168 171 799 227 169 172 800 228 170 173 807 229 170 173 807 229 171 174 808 230 172 175 809 231 170 173 807 229 169 172 800 228 171 174 808 230 171 174 625 232 173 176 627 233 172 175 626 234 172 175 626 234 173 176 627 233 174 177 628 235 173 176 627 233 175 178 629 236 174 177 628 235 174 177 628 235 175 178 629 236 176 179 630 237 175 178 629 236 177 180 631 238 176 179 630 237 178 181 632 239 176 179 630 237 177 180 631 238 177 180 803 240 179 182 805 241 178 181 804 242 180 183 635 243 178 181 633 244 179 182 634 245 180 183 635 243 179 182 634 245 181 184 701 246 183 185 27 247 182 186 26 248 184 187 28 249 186 188 30 250 185 189 29 251 187 190 31 252 188 191 32 253 187 190 31 252 185 189 29 251 183 185 27 247 184 187 28 249 188 191 32 253 187 190 31 252 188 191 32 253 184 187 28 249 190 192 161 254 189 193 160 255 191 194 164 256 192 195 165 257 189 193 160 255 190 192 161 254 192 195 165 257 190 192 161 254 193 196 168 258 192 195 165 257 193 196 168 258 194 197 171 259 195 198 174 260 194 197 171 259 193 196 168 258 197 199 651 261 196 200 650 262 198 201 652 263 198 201 652 263 196 200 650 262 199 202 656 264 201 203 753 265 200 204 752 266 202 205 754 267 203 206 755 268 202 205 754 267 200 204 752 266 205 207 698 269 204 208 697 270 206 209 710 271 207 210 711 272 206 209 710 271 204 208 697 270 209 211 716 273 208 212 715 274 210 213 717 275 211 214 729 276 210 213 717 275 208 212 715 274 213 215 82 277 212 216 81 278 214 217 83 279 216 218 85 280 215 219 84 281 217 220 86 282 215 219 84 281 216 218 85 280 218 221 87 283 219 222 88 284 218 221 87 283 216 218 85 280 219 222 88 284 220 223 89 285 218 221 87 283 221 224 90 286 220 223 89 285 222 225 91 287 219 222 88 284 222 225 91 287 220 223 89 285 222 225 91 287 223 226 92 288 221 224 90 286 224 227 93 289 221 224 90 286 223 226 92 288 223 226 92 288 225 228 94 290 224 227 93 289 226 229 95 291 224 227 93 289 225 228 94 290 225 228 94 290 227 230 96 292 226 229 95 291 228 231 97 293 226 229 95 291 227 230 96 292 214 217 83 279 229 232 98 294 213 215 82 277 230 233 101 295 229 232 98 294 214 217 83 279 231 234 102 296 229 232 98 294 230 233 101 295 232 235 105 297 231 234 102 296 230 233 101 295 233 236 106 298 231 234 102 296 232 235 105 297 232 235 105 297 234 237 109 299 233 236 106 298 235 238 110 300 233 236 106 298 234 237 109 299 234 237 109 299 236 239 111 301 235 238 110 300 237 240 112 302 235 238 110 300 236 239 111 301 237 240 112 302 236 239 111 301 238 241 113 303 237 240 112 302 238 241 113 303 239 242 114 304 240 243 115 305 239 242 114 304 238 241 113 303 239 242 114 304 240 243 115 305 241 244 116 306 242 245 117 307 241 244 116 306 240 243 115 305 241 244 520 308 242 245 521 309 243 246 522 310 244 247 523 311 243 246 522 310 242 245 521 309 227 230 96 292 245 248 118 312 228 231 97 293 246 249 119 313 228 231 97 293 245 248 118 312 247 250 834 314 246 249 833 315 248 251 835 316 245 248 118 312 248 251 120 317 246 249 119 313 247 250 689 318 248 251 690 319 249 252 691 320 251 253 525 321 250 254 524 322 244 247 523 311 243 246 522 310 244 247 523 311 250 254 524 322 250 254 524 322 251 253 525 321 252 255 526 323 253 256 527 324 252 255 526 323 254 257 528 325 254 257 528 325 252 255 526 323 251 253 525 321 255 258 692 326 247 250 689 318 249 252 691 320 255 258 692 326 249 252 691 320 256 259 693 327 257 260 694 328 255 258 692 326 256 259 693 327 256 259 693 327 258 261 695 329 257 260 694 328 259 262 696 330 257 260 694 328 258 261 695 329 258 261 695 329 260 263 699 331 259 262 696 330 261 264 700 332 259 262 696 330 260 263 699 331 262 265 529 333 253 256 527 324 254 257 528 325 253 256 123 334 262 265 126 335 263 266 127 336 264 267 128 337 263 266 127 336 262 265 126 335 263 266 127 336 264 267 128 337 265 268 129 338 266 269 130 339 265 268 129 338 264 267 128 337 265 268 129 338 266 269 130 339 267 270 131 340 268 271 132 341 267 270 131 340 266 269 130 339 267 270 131 340 268 271 132 341 269 272 133 342 271 273 135 343 270 274 134 344 272 275 136 345 273 276 137 346 271 273 135 343 272 275 136 345 271 273 135 343 273 276 137 346 274 277 138 347 275 278 139 348 274 277 138 347 273 276 137 346 275 278 139 348 276 279 140 349 274 277 138 347 275 278 139 348 261 264 125 350 276 279 140 349 276 279 140 349 261 264 125 350 260 263 124 351 277 280 141 352 269 272 133 342 268 271 132 341 269 272 133 342 277 280 141 352 270 274 134 344 278 281 142 353 270 274 134 344 277 280 141 352 270 274 134 344 278 281 142 353 272 275 136 345 214 217 83 279 212 216 81 278 279 282 121 354 279 282 121 354 212 216 81 278 280 283 122 355 217 220 86 282 280 283 122 355 212 216 81 278 280 283 122 355 217 220 86 282 215 219 84 281 282 284 601 356 281 285 600 357 283 286 602 358 284 287 669 359 281 285 667 360 282 284 668 361 282 284 668 361 285 288 670 362 284 287 669 359 286 289 671 363 284 287 669 359 285 288 670 362 285 288 670 362 287 290 672 364 286 289 671 363 288 291 673 365 286 289 671 363 287 290 672 364 281 285 600 357 289 292 603 366 283 286 602 358 283 286 602 358 289 292 603 366 290 293 604 367 291 294 605 368 290 293 604 367 289 292 603 366 290 293 604 367 291 294 605 368 292 295 606 369 293 296 607 370 292 295 606 369 291 294 605 368 292 295 303 371 293 296 304 372 294 297 307 373 293 296 304 372 295 298 308 374 294 297 307 373 296 299 309 375 294 297 307 373 295 298 308 374 295 298 308 374 297 300 310 376 296 299 309 375 298 301 311 377 296 299 309 375 297 300 310 376 297 300 310 376 299 302 312 378 298 301 311 377 298 301 609 379 299 302 610 380 300 303 611 381 301 304 612 382 300 303 611 381 299 302 610 380 302 305 613 383 300 303 611 381 301 304 612 382 301 304 612 382 303 306 614 384 302 305 613 383 304 307 615 385 302 305 613 383 303 306 614 384 303 306 614 384 288 291 608 386 304 307 615 385 287 290 672 364 304 307 674 387 288 291 673 365 306 308 515 388 305 309 514 389 307 310 516 390 307 310 661 391 308 311 662 392 309 312 663 393 307 310 516 390 309 312 517 394 306 308 515 388 308 311 662 392 310 313 664 395 309 312 663 393 310 313 664 395 308 311 662 392 311 314 665 396 311 314 665 396 312 315 666 397 310 313 664 395 312 315 721 398 311 314 720 399 313 316 722 400 313 316 722 400 314 317 724 401 312 315 721 398 316 318 386 402 315 319 385 403 317 320 387 404 317 320 683 405 318 321 684 406 319 322 685 407 317 320 387 404 319 322 388 408 316 318 386 402 318 321 684 406 320 323 686 409 319 322 685 407 320 323 686 409 318 321 684 406 321 324 687 410 321 324 687 410 322 325 688 411 320 323 686 409 322 325 737 412 321 324 736 413 323 326 738 414 323 326 738 414 324 327 739 415 322 325 737 412 324 327 739 415 323 326 738 414 325 328 740 416 325 328 740 416 326 329 741 417 324 327 739 415 328 330 658 418 327 331 657 419 326 329 655 420 326 329 655 420 325 328 654 421 328 330 658 418 330 332 660 422 329 333 659 423 327 331 657 419 327 331 657 419 328 330 658 418 330 332 660 422 314 317 724 401 313 316 722 400 331 334 725 424 331 334 725 424 332 335 726 425 314 317 724 401 332 335 678 426 331 334 677 427 333 336 679 428 333 336 679 428 334 337 680 429 332 335 678 426 336 338 682 430 335 339 681 431 334 337 680 429 334 337 680 429 333 336 679 428 336 338 682 430 335 339 518 432 336 338 519 433 305 309 514 389 305 309 514 389 306 308 515 388 335 339 518 432 329 333 389 434 330 332 390 435 315 319 385 403 315 319 385 403 316 318 386 402 329 333 389 434 338 340 248 436 337 341 247 437 339 342 249 438 341 343 347 439 340 344 346 440 342 345 348 441 339 342 249 438 343 346 250 442 338 340 248 436 339 342 249 438 337 341 247 437 344 347 251 443 342 345 348 441 345 348 349 444 341 343 347 439 346 349 350 445 342 345 348 441 340 344 346 440 338 340 248 436 343 346 250 442 347 350 252 446 348 351 253 447 344 347 251 443 337 341 247 437 349 352 351 448 341 343 347 439 345 348 349 444 340 344 346 440 350 353 352 449 346 349 350 445 343 346 250 442 351 354 254 450 347 350 252 446 352 355 255 451 344 347 251 443 348 351 253 447 345 348 349 444 353 356 353 452 349 352 351 448 354 357 354 453 346 349 350 445 350 353 352 449 355 358 256 454 347 350 252 446 351 354 254 450 348 351 253 447 356 359 257 455 352 355 255 451 357 360 355 456 349 352 351 448 353 356 353 452 358 361 356 457 354 357 354 453 350 353 352 449 359 362 258 458 352 355 255 451 356 359 257 455 355 358 256 454 351 354 254 450 360 363 259 459 358 361 356 457 361 364 357 460 354 357 354 453 353 356 353 452 362 365 358 461 357 360 355 456 356 359 257 455 363 366 260 462 359 362 258 458 364 367 261 463 360 363 259 459 351 354 254 450 361 364 357 460 365 368 359 464 354 357 354 453 366 369 360 465 357 360 355 456 362 365 358 461 367 370 262 466 359 362 258 458 363 366 260 462 368 371 361 467 354 357 354 453 365 368 359 464 362 365 358 461 369 372 362 468 366 369 360 465 360 363 259 459 364 367 261 463 370 373 263 469 371 374 264 470 367 370 262 466 363 366 260 462 372 375 363 471 354 357 354 453 368 371 361 467 373 376 364 472 366 369 360 465 369 372 362 468 374 377 270 473 370 373 263 469 364 367 261 463 371 374 264 470 375 378 271 474 367 370 262 466 367 370 262 466 374 377 270 473 364 367 261 463 368 371 361 467 376 379 365 475 372 375 363 471 369 372 362 468 372 375 363 471 373 376 364 472 374 377 270 473 367 370 262 466 375 378 271 474 373 376 364 472 372 375 363 471 376 379 365 475 378 380 325 476 377 381 324 477 379 382 326 478 380 383 327 479 378 380 325 476 379 382 326 478 381 384 328 480 378 380 325 476 380 383 327 479 377 381 324 477 382 385 329 481 383 386 330 482 379 382 326 478 377 381 324 477 383 386 330 482 382 385 329 481 384 387 331 483 385 388 332 484 383 386 330 482 382 385 329 481 385 388 332 484 385 388 332 484 384 387 331 483 386 389 333 485 386 389 333 485 387 390 334 486 388 391 335 487 384 387 331 483 387 390 334 486 386 389 333 485 387 390 334 486 389 392 336 488 388 391 335 487 388 391 335 487 389 392 336 488 390 393 337 489 389 392 336 488 391 394 338 490 390 393 337 489 390 393 337 489 391 394 338 490 392 395 339 491 391 394 338 490 393 396 340 492 392 395 339 491 392 395 339 491 393 396 340 492 394 397 341 493 393 396 340 492 395 398 342 494 394 397 341 493 396 399 343 495 394 397 341 493 395 398 342 494 397 400 344 496 381 384 328 480 380 383 327 479 398 401 345 497 381 384 328 480 397 400 344 496 400 402 433 498 399 403 432 499 401 404 434 500 403 405 436 501 402 406 435 502 400 402 433 498 400 402 433 498 402 406 435 502 399 403 432 499 404 407 437 503 402 406 435 502 403 405 436 501 401 404 434 500 399 403 432 499 405 408 438 504 407 409 440 505 406 410 439 506 408 411 441 507 401 404 434 500 405 408 438 504 407 409 440 505 407 409 440 505 405 408 438 504 406 410 439 506 408 411 441 507 406 410 439 506 409 412 442 508 410 413 450 509 408 411 441 507 409 412 442 508 410 413 450 509 411 414 468 510 408 411 441 507 411 414 468 510 412 415 471 511 408 411 441 507 408 411 441 507 412 415 471 511 413 416 475 512 414 417 488 513 413 416 475 512 412 415 471 511 413 416 475 512 414 417 488 513 415 418 489 514 416 419 490 515 415 418 489 514 414 417 488 513 415 418 489 514 416 419 490 515 417 420 491 516 418 421 492 517 417 420 491 516 416 419 490 515 419 422 493 518 417 420 491 516 418 421 492 517 420 423 494 519 419 422 493 518 418 421 492 517 422 424 774 520 421 425 773 521 423 426 775 522 424 427 776 523 423 426 775 522 425 428 836 524 426 429 837 525 425 428 836 524 427 430 838 526 429 431 840 527 428 432 839 528 421 425 773 521 431 433 842 529 430 434 841 530 428 432 839 528 433 435 844 531 432 436 843 532 430 434 841 530 435 437 846 533 434 438 845 534 432 436 843 532 437 439 848 535 436 440 847 536 434 438 845 534 439 441 850 537 438 442 849 538 436 440 847 536 441 443 852 539 440 444 851 540 438 442 849 538 443 445 854 541 442 446 853 542 440 444 851 540 444 447 860 543 442 446 858 544 445 448 861 545 447 449 815 546 446 450 814 547 444 447 812 548 449 451 865 549 448 452 864 550 446 450 862 551 451 453 869 552 450 454 868 553 448 452 866 554 453 455 871 555 452 456 870 556 450 454 868 553 455 457 873 557 454 458 872 558 452 456 870 556 457 459 876 559 456 460 875 560 454 458 874 561 459 461 878 562 458 462 877 563 456 460 875 560 461 463 880 564 460 464 879 565 458 462 877 563 463 465 882 566 462 466 881 567 460 464 879 565 464 467 857 568 427 430 838 526 462 466 855 569 466 468 801 570 465 469 797 571 467 470 802 572 469 471 887 573 468 472 886 574 465 469 883 575 471 473 889 576 470 474 888 577 468 472 886 574 472 475 890 578 467 470 885 579 473 476 891 580 474 477 892 581 473 476 891 580 475 478 893 582 476 479 898 583 475 478 897 584 477 480 899 585 478 481 900 586 477 480 899 585 479 482 901 587 480 483 902 588 479 482 901 587 481 484 903 589 482 485 904 590 481 484 903 589 483 486 905 591 484 487 788 592 483 486 787 593 485 488 789 594 486 489 790 595 485 488 789 594 487 490 907 596 488 491 908 597 487 490 907 596 489 492 909 598 490 493 910 599 489 492 909 598 491 494 911 600 492 495 912 601 491 494 911 600 493 496 913 602 494 497 914 603 493 496 913 602 495 498 915 604 496 499 916 605 495 498 915 604 497 500 917 606 498 501 918 607 497 500 917 606 499 502 919 608 500 503 920 609 499 502 919 608 501 504 921 610 503 505 820 611 502 506 819 612 504 507 821 613 505 508 927 614 504 507 926 615 506 509 928 616 507 510 929 617 501 504 923 618 502 506 924 619 470 474 888 577 508 511 896 620 506 509 895 621 471 473 889 576 508 511 896 620 470 474 888 577 508 511 930 622 505 508 927 614 506 509 928 616 503 505 820 611 504 507 821 613 505 508 822 623 507 510 929 617 502 506 924 619 503 505 925 624 469 471 887 573 471 473 889 576 468 472 886 574 500 503 920 609 501 504 921 610 507 510 922 625 466 468 884 626 469 471 887 573 465 469 883 575 498 501 918 607 499 502 919 608 500 503 920 609 472 475 890 578 466 468 884 626 467 470 885 579 496 499 916 605 497 500 917 606 498 501 918 607 474 477 892 581 472 475 890 578 473 476 891 580 494 497 914 603 495 498 915 604 496 499 916 605 492 495 912 601 493 496 913 602 494 497 914 603 490 493 910 599 491 494 911 600 492 495 912 601 488 491 908 597 489 492 909 598 490 493 910 599 476 479 894 627 474 477 892 581 475 478 893 582 486 489 790 595 487 490 907 596 488 491 908 597 478 481 900 586 476 479 898 583 477 480 899 585 484 487 788 592 485 488 789 594 486 489 790 595 480 483 902 588 478 481 900 586 479 482 901 587 482 485 904 590 483 486 905 591 484 487 906 628 482 485 904 590 480 483 902 588 481 484 903 589 453 455 871 555 455 457 873 557 452 456 870 556 457 459 783 629 454 458 781 630 455 457 782 631 459 461 878 562 456 460 875 560 457 459 876 559 441 443 852 539 438 442 849 538 439 441 850 537 441 443 852 539 443 445 854 541 440 444 851 540 461 463 880 564 458 462 877 563 459 461 878 562 439 441 850 537 436 440 847 536 437 439 848 535 446 450 862 551 447 449 863 632 449 451 865 549 463 465 882 566 460 464 879 565 461 463 880 564 437 439 848 535 434 438 845 534 435 437 846 533 464 467 857 568 462 466 855 569 463 465 856 633 435 437 846 533 432 436 843 532 433 435 844 531 426 429 837 525 427 430 838 526 464 467 857 568 433 435 844 531 430 434 841 530 431 433 842 529 424 427 776 523 425 428 836 524 426 429 837 525 431 433 842 529 428 432 839 528 429 431 840 527 422 424 774 520 423 426 775 522 424 427 776 523 429 431 840 527 421 425 773 521 422 424 774 520 444 447 812 548 445 448 813 634 447 449 815 546 448 452 866 554 449 451 867 635 451 453 869 552 443 445 859 636 445 448 861 545 442 446 858 544 450 454 868 553 451 453 869 552 453 455 871 555 510 512 210 637 509 513 209 638 511 514 211 639 513 515 214 640 512 516 212 641 509 513 209 638 515 517 216 642 514 518 215 643 512 516 212 641 517 519 623 644 516 520 622 645 514 518 620 646 519 521 636 647 518 522 624 648 516 520 622 645 521 523 638 649 520 524 637 650 518 522 624 648 523 525 640 651 522 526 639 652 520 524 637 650 525 527 642 653 524 528 641 654 522 526 639 652 527 529 200 655 526 530 199 656 524 528 197 657 529 531 202 658 528 532 201 659 526 530 199 656 531 533 204 660 530 534 203 661 528 532 201 659 533 535 206 662 532 536 205 663 530 534 203 661 535 537 208 664 534 538 207 665 532 536 205 663 537 539 576 666 536 540 575 667 534 538 573 668 539 541 369 669 538 542 368 670 536 540 366 671 541 543 371 672 540 544 370 673 538 542 368 670 543 545 373 674 542 546 372 675 540 544 370 673 545 547 19 676 544 548 18 677 542 546 16 678 547 549 21 679 546 550 20 680 544 548 18 677 549 551 218 681 548 552 217 682 511 514 211 639 551 553 25 683 550 554 24 684 549 551 23 685 550 554 24 684 551 553 25 683 546 550 20 680 553 555 294 686 552 556 293 687 554 557 295 688 555 558 296 689 554 557 295 688 556 559 297 690 557 560 298 691 556 559 297 690 558 561 299 692 559 562 578 693 558 561 577 694 560 563 579 695 561 564 580 696 560 563 579 695 562 565 581 697 563 566 582 698 562 565 581 697 564 567 583 699 565 568 584 700 564 567 583 699 566 569 585 701 567 570 586 702 566 569 585 701 568 571 587 703 569 572 281 704 568 571 280 705 570 573 282 706 571 574 283 707 570 573 282 706 572 575 284 708 573 576 285 709 572 575 284 708 574 577 286 710 575 578 287 711 574 577 286 710 576 579 288 712 577 580 289 713 576 579 288 712 578 581 290 714 579 582 617 715 578 581 616 716 580 583 618 717 581 584 496 718 580 583 495 719 582 585 497 720 583 586 498 721 582 585 497 720 584 587 499 722 585 588 500 723 584 587 499 722 586 589 501 724 587 590 144 725 586 589 143 726 588 591 145 727 589 592 146 728 588 591 145 727 590 593 147 729 592 594 302 730 591 595 301 731 552 556 293 687 594 596 153 732 593 597 152 733 591 595 148 734 595 598 156 735 590 593 147 729 593 597 152 733 592 594 149 736 594 596 153 732 591 595 148 734 552 556 293 687 553 555 294 686 592 594 302 730 593 597 152 733 594 596 153 732 596 599 157 737 595 598 156 735 593 597 152 733 596 599 157 737 590 593 147 729 595 598 156 735 589 592 146 728 554 557 295 688 555 558 296 689 553 555 294 686 587 590 144 725 588 591 145 727 589 592 146 728 586 589 501 724 587 590 502 738 585 588 500 723 556 559 297 690 557 560 298 691 555 558 296 689 584 587 499 722 585 588 500 723 583 586 498 721 558 561 299 692 559 562 300 739 557 560 298 691 582 585 497 720 583 586 498 721 581 584 496 718 560 563 579 695 561 564 580 696 559 562 578 693 580 583 618 717 581 584 619 740 579 582 617 715 562 565 581 697 563 566 582 698 561 564 580 696 577 580 289 713 578 581 290 714 579 582 291 741 575 578 287 711 576 579 288 712 577 580 289 713 573 576 285 709 574 577 286 710 575 578 287 711 572 575 284 708 573 576 285 709 571 574 283 707 564 567 583 699 565 568 584 700 563 566 582 698 570 573 282 706 571 574 283 707 569 572 281 704 566 569 585 701 567 570 586 702 565 568 584 700 568 571 587 703 569 572 588 742 567 570 586 702 515 517 216 642 512 516 212 641 513 515 214 640 509 513 209 638 510 512 210 637 513 515 214 640 514 518 620 646 515 517 621 743 517 519 623 644 511 514 211 639 597 600 219 744 510 512 210 637 516 520 622 645 517 519 623 644 519 521 636 647 541 543 371 672 543 545 373 674 540 544 370 673 545 547 19 676 542 546 16 678 543 545 17 745 545 547 19 676 547 549 21 679 544 548 18 677 518 522 624 648 519 521 636 647 521 523 638 649 538 542 368 670 539 541 369 669 541 543 371 672 546 550 20 680 547 549 21 679 550 554 24 684 520 524 637 650 521 523 638 649 523 525 640 651 536 540 366 671 537 539 367 746 539 541 369 669 522 526 639 652 523 525 640 651 525 527 642 653 534 538 573 668 535 537 574 747 537 539 576 666 524 528 197 657 525 527 198 748 527 529 200 655 532 536 205 663 533 535 206 662 535 537 208 664 526 530 199 656 527 529 200 655 529 531 202 658 530 534 203 661 531 533 204 660 533 535 206 662 528 532 201 659 529 531 202 658 531 533 204 660 548 552 22 749 549 551 23 685 550 554 24 684 597 600 219 744 511 514 211 639 548 552 217 682 599 601 535 750 598 602 534 751 600 603 536 752 601 604 537 753 600 603 536 752 602 605 538 754 600 603 536 752 598 602 534 751 602 605 538 754 601 604 537 753 602 605 538 754 603 606 539 755 604 607 540 756 603 606 539 755 602 605 538 754 602 605 538 754 605 608 541 757 604 607 540 756 606 609 542 758 604 607 540 756 605 608 541 757 606 609 542 758 605 608 541 757 607 610 543 759 608 611 544 760 607 610 543 759 605 608 541 757 608 611 544 760 605 608 541 757 609 612 545 761 610 613 546 762 609 612 545 761 605 608 541 757 611 614 547 763 610 613 546 762 605 608 541 757 613 615 549 764 612 616 548 765 611 614 547 763 610 613 546 762 611 614 547 763 612 616 548 765 614 617 550 766 612 616 548 765 613 615 549 764 615 618 551 767 614 617 550 766 613 615 549 764 614 617 550 766 615 618 551 767 616 619 552 768 616 619 552 768 617 620 553 769 618 621 554 770 615 618 551 767 617 620 553 769 616 619 552 768 619 622 555 771 618 621 554 770 617 620 553 769 617 620 553 769 620 623 556 772 619 622 555 771 621 624 557 773 619 622 555 771 620 623 556 772 621 624 557 773 620 623 556 772 622 625 558 774 598 602 534 751 622 625 558 774 620 623 556 772 598 602 534 751 599 601 535 750 622 625 558 774 624 626 395 775 623 627 394 776 625 628 396 777 626 629 397 778 625 628 396 777 623 627 394 776 627 630 398 779 625 628 396 777 626 629 397 778 628 631 399 780 627 630 398 779 629 632 400 781 629 632 400 781 627 630 398 779 626 629 397 778 630 633 401 782 628 631 399 780 631 634 402 783 628 631 399 780 629 632 400 781 631 634 402 783 630 633 401 782 631 634 402 783 632 635 403 784 633 636 404 785 632 635 403 784 631 634 402 783 635 637 406 786 634 638 405 787 633 636 404 785 636 639 408 788 632 635 403 784 633 636 404 785 634 638 405 787 636 639 408 788 633 636 404 785 634 638 405 787 635 637 406 786 637 640 421 789 639 641 423 790 638 642 422 791 640 643 424 792 637 640 421 789 640 643 424 792 638 642 422 791 635 637 406 786 640 643 424 792 637 640 421 789 642 644 426 793 641 645 425 794 640 643 424 792 639 641 423 790 640 643 424 792 641 645 425 794 640 643 424 792 643 646 427 795 642 644 426 793 644 647 428 796 642 644 426 793 643 646 427 795 643 646 427 795 623 627 394 776 645 648 429 797 646 649 430 798 645 648 429 797 623 627 394 776 644 647 428 796 643 646 427 795 645 648 429 797 646 649 430 798 623 627 394 776 647 650 431 799 624 626 395 775 647 650 431 799 623 627 394 776 649 651 590 800 648 652 589 801 650 653 591 802 651 654 592 803 648 652 589 801 649 651 590 800 652 655 593 804 651 654 592 803 649 651 590 800 653 656 568 805 651 654 566 806 652 655 567 807 652 655 567 807 654 657 569 808 653 656 568 805 653 656 568 805 654 657 569 808 655 658 570 809 657 659 595 810 656 660 594 811 648 652 589 801 658 661 795 812 656 660 794 813 659 662 796 814 656 660 594 811 650 653 591 802 648 652 589 801 657 659 763 815 659 662 764 816 656 660 762 817 654 657 569 808 660 663 571 818 655 658 570 809 655 658 570 809 660 663 571 818 661 664 572 819 660 663 816 820 662 665 818 821 661 664 817 822 661 664 749 823 662 665 750 824 663 666 751 825 662 665 644 826 664 667 646 827 663 666 645 828 663 666 645 828 664 667 646 827 665 668 647 829 666 669 648 830 665 668 647 829 664 667 646 827 667 670 649 831 665 668 647 829 666 669 648 830 668 671 562 832 658 661 559 833 659 662 560 834 669 672 563 835 658 661 559 833 668 671 562 832 670 673 564 836 669 672 563 835 668 671 562 832 671 674 565 837 669 672 563 835 670 673 564 836 666 669 648 830 671 674 653 838 667 670 649 831 667 670 561 839 671 674 565 837 670 673 564 836 672 675 223 840 673 676 224 841 674 677 225 842 675 678 226 843 676 679 227 844 672 675 223 840 677 680 228 845 678 681 229 846 675 678 226 843 679 682 230 847 680 683 231 848 677 680 228 845 681 684 232 849 682 685 233 850 679 682 230 847 683 686 234 851 684 687 235 852 681 684 232 849 685 688 236 853 686 689 237 854 683 686 234 851 687 690 238 855 688 691 239 856 685 688 236 853 689 692 240 857 690 693 241 858 687 690 238 855 691 694 242 859 692 695 243 860 689 692 240 857 693 696 244 861 694 697 245 862 691 694 242 859 674 677 225 842 695 698 246 863 693 696 244 861 676 679 227 844 673 676 224 841 672 675 223 840 673 676 224 841 695 698 246 863 674 677 225 842 676 679 227 844 675 678 226 843 678 681 229 846 694 697 245 862 693 696 244 861 695 698 246 863 678 681 229 846 677 680 228 845 680 683 231 848 692 695 243 860 691 694 242 859 694 697 245 862 680 683 231 848 679 682 230 847 682 685 233 850 690 693 241 858 689 692 240 857 692 695 243 860 682 685 233 850 681 684 232 849 684 687 235 852 688 691 239 856 687 690 238 855 690 693 241 858 684 687 235 852 683 686 234 851 686 689 237 854 686 689 237 854 685 688 236 853 688 691 239 856 697 699 771 864 696 700 770 865 698 701 772 866 698 701 314 867 696 700 313 868 699 702 315 869 696 700 313 868 700 703 316 870 699 702 315 869 699 702 315 869 700 703 316 870 701 704 317 871 700 703 316 870 702 705 318 872 701 704 317 871 701 704 317 871 702 705 318 872 703 706 319 873 702 705 318 872 704 707 320 874 703 706 319 873 703 706 319 873 704 707 320 874 705 708 321 875 704 707 320 874 706 709 322 876 705 708 321 875 705 708 321 875 706 709 322 876 707 710 323 877 708 711 825 878 707 712 824 879 706 713 823 880 709 714 826 881 707 712 824 879 708 711 825 878 711 715 597 882 710 716 596 883 712 717 598 884 713 718 599 885 712 717 598 884 710 716 596 883 715 719 531 886 714 720 530 887 716 721 532 888 714 720 530 887 717 722 533 889 716 721 532 888 718 723 391 890 719 724 392 891 723 725 393 892 721 726 221 893 720 727 220 894 722 728 222 895 739 729 714 896 738 730 713 897 731 731 712 898 732 732 785 899 731 731 784 900 738 730 786 901 738 730 508 902 740 733 509 903 732 732 503 904 733 734 504 905 732 732 503 904 740 733 509 903 740 733 509 903 741 735 510 906 733 734 504 905 734 736 505 907 733 734 504 905 741 735 510 906 741 735 510 906 742 737 511 908 734 736 505 907 735 738 506 909 734 736 505 907 742 737 511 908 742 737 511 908 743 739 512 910 735 738 506 909 736 740 507 911 735 738 506 909 743 739 512 910 747 741 380 912 748 742 381 913 728 743 377 914 728 743 377 914 729 744 378 915 747 741 380 912 748 742 381 913 749 745 382 916 727 746 376 917 727 746 376 917 728 743 377 914 748 742 381 913 749 745 382 916 750 747 383 918 726 748 375 919 726 748 375 919 727 746 376 917 749 745 382 916 750 747 383 918 751 749 384 920 725 750 374 921 725 750 374 921 726 748 375 919 750 747 383 918 751 749 735 922 745 751 734 923 724 752 733 924 724 752 759 925 725 750 760 926 751 749 761 927 743 739 512 910 744 753 513 928 736 740 507 911 737 754 757 929 736 740 756 930 744 753 758 931 746 755 379 932 747 741 380 912 729 744 378 915 729 744 767 933 730 756 768 934 746 755 769 935</p>
147
+ </triangles>
148
+ </mesh>
149
+ </geometry>
150
+ </library_geometries>
151
+ <library_lights>
152
+ <light id="EnvironmentAmbientLight" name="EnvironmentAmbientLight">
153
+ <technique_common>
154
+ <ambient>
155
+ <color>0 0 0</color>
156
+ </ambient>
157
+ </technique_common>
158
+ </light>
159
+ </library_lights>
160
+ <library_images>
161
+ <image id="upperarm_128x_jpg">
162
+ <init_from>../images/upperarm_128x.jpg</init_from>
163
+ </image>
164
+ </library_images>
165
+ <library_visual_scenes>
166
+ <visual_scene id="MaxScene">
167
+ <node name="EnvironmentAmbientLight">
168
+ <instance_light url="#EnvironmentAmbientLight"/>
169
+ </node>
170
+ <node id="node-wamUpperArmLink3" name="wamUpperArmLink3">
171
+ <matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
172
+ <instance_geometry url="#geom-wamUpperArmLink3">
173
+ <bind_material>
174
+ <technique_common>
175
+ <instance_material symbol="upperarmM_1" target="#upperarmM-material">
176
+ <bind_vertex_input semantic="CHANNEL1" input_semantic="TEXCOORD" input_set="1"/>
177
+ </instance_material>
178
+ </technique_common>
179
+ </bind_material>
180
+ </instance_geometry>
181
+ </node>
182
+ </visual_scene>
183
+ </library_visual_scenes>
184
+ <scene>
185
+ <instance_visual_scene url="#MaxScene"/>
186
+ </scene>
187
+ </COLLADA>