chorama 0.0.0

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.
Files changed (256) hide show
  1. package/.configs/tsconfig.lib.json +43 -0
  2. package/.configs/tsconfig.website.json +34 -0
  3. package/.github/workflows/static.yml +88 -0
  4. package/.vscode/launch.json +29 -0
  5. package/.vscode/tasks.json +19 -0
  6. package/README.md +127 -0
  7. package/assets/images/disappointed.jpg +0 -0
  8. package/assets/images/skybox/grimmnight_back.png +0 -0
  9. package/assets/images/skybox/grimmnight_bottom.png +0 -0
  10. package/assets/images/skybox/grimmnight_front.png +0 -0
  11. package/assets/images/skybox/grimmnight_left.png +0 -0
  12. package/assets/images/skybox/grimmnight_right.png +0 -0
  13. package/assets/images/skybox/grimmnight_top.png +0 -0
  14. package/assets/images/skybox/miramar_back.png +0 -0
  15. package/assets/images/skybox/miramar_bottom.png +0 -0
  16. package/assets/images/skybox/miramar_front.png +0 -0
  17. package/assets/images/skybox/miramar_left.png +0 -0
  18. package/assets/images/skybox/miramar_right.png +0 -0
  19. package/assets/images/skybox/miramar_top.png +0 -0
  20. package/assets/images/uv.jpg +0 -0
  21. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_GlassPlasticMat_BaseColor.png +0 -0
  22. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_GlassPlasticMat_Normal.png +0 -0
  23. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_GlassPlasticMat_OcclusionRoughMetal.png +0 -0
  24. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_LeatherPartsMat_BaseColor.png +0 -0
  25. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_LeatherPartsMat_Normal.png +0 -0
  26. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_LeatherPartsMat_OcclusionRoughMetal.png +0 -0
  27. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_LensesMat_BaseColor.png +0 -0
  28. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_LensesMat_Normal.png +0 -0
  29. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_LensesMat_OcclusionRoughMetal.png +0 -0
  30. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_MetalPartsMat_BaseColor.png +0 -0
  31. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_MetalPartsMat_Normal.png +0 -0
  32. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_MetalPartsMat_OcclusionRoughMetal.png +0 -0
  33. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_RubberWoodMat_BaseColor.png +0 -0
  34. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_RubberWoodMat_Normal.png +0 -0
  35. package/assets/models/gltf/flight_helmet/FlightHelmet_Materials_RubberWoodMat_OcclusionRoughMetal.png +0 -0
  36. package/assets/models/gltf/flight_helmet/index.bin +0 -0
  37. package/assets/models/gltf/flight_helmet/index.gltf +705 -0
  38. package/assets/models/gltf/object.gltf +23 -0
  39. package/assets/models/gltf/pirate_girl/index.bin +0 -0
  40. package/assets/models/gltf/pirate_girl/index.gltf +2082 -0
  41. package/assets/models/obj/pirate_girl/pirate_girl.obj +18459 -0
  42. package/assets/models/obj/pirate_girl/pirate_girl.png +0 -0
  43. package/astro.config.mjs +45 -0
  44. package/content/guide/api-map.md +89 -0
  45. package/content/guide/camera-and-controls.md +98 -0
  46. package/content/guide/first-scene.md +176 -0
  47. package/content/guide/index.md +72 -0
  48. package/content/guide/installation.md +179 -0
  49. package/content/guide/materials-and-lighting.md +138 -0
  50. package/content/guide/plugins-and-render-pipeline.md +124 -0
  51. package/content/guide/render-targets-and-views.md +147 -0
  52. package/content/guide/scene-graph-and-transforms.md +113 -0
  53. package/content/guide/textures-and-assets.md +120 -0
  54. package/content/guide/troubleshooting.md +49 -0
  55. package/env.d.ts +19 -0
  56. package/examples/addons/rendergraph_gui.js +580 -0
  57. package/examples/camera/orthographic.js +120 -0
  58. package/examples/camera/perspective.js +138 -0
  59. package/examples/lights/directional.js +397 -0
  60. package/examples/lights/multiple_spot_lights.js +304 -0
  61. package/examples/lights/point.js +337 -0
  62. package/examples/lights/spot.js +366 -0
  63. package/examples/loader/gltf_material.js +111 -0
  64. package/examples/loader/gltfloader.js +78 -0
  65. package/examples/loader/objloader.js +95 -0
  66. package/examples/material/cullface.js +111 -0
  67. package/examples/material/materials.js +126 -0
  68. package/examples/material/standard/basic.js +164 -0
  69. package/examples/mesh/circle.js +117 -0
  70. package/examples/mesh/cuboid.js +151 -0
  71. package/examples/mesh/cylinder.js +139 -0
  72. package/examples/mesh/geometries.js +108 -0
  73. package/examples/mesh/meshTopology.js +103 -0
  74. package/examples/mesh/plane.js +117 -0
  75. package/examples/mesh/skinning.js +136 -0
  76. package/examples/mesh/uvsphere.js +113 -0
  77. package/examples/other/rotatingCube.js +93 -0
  78. package/examples/other/rotatingSphere.js +96 -0
  79. package/examples/rendertarget/basic_canvas.js +130 -0
  80. package/examples/rendertarget/depth_texture.js +130 -0
  81. package/examples/rendertarget/image_target.js +140 -0
  82. package/examples/rendertarget/multiple_views.js +158 -0
  83. package/examples/rendertarget/render_masks.js +173 -0
  84. package/examples/rendertarget/split_screen.js +123 -0
  85. package/examples/rendertarget/split_view.js +137 -0
  86. package/examples/skybox/skybox.js +111 -0
  87. package/examples/texture/arrays.js +156 -0
  88. package/examples/texture/textureWrap.js +118 -0
  89. package/examples/transform/propagation.js +92 -0
  90. package/package.json +55 -0
  91. package/rollup.config.js +66 -0
  92. package/scripts/stage-chorama.mjs +29 -0
  93. package/src/caches/cache.js +420 -0
  94. package/src/caches/index.js +2 -0
  95. package/src/caches/uniformbuffers.js +104 -0
  96. package/src/cameracontrols/index.js +258 -0
  97. package/src/constants/index.js +3 -0
  98. package/src/constants/mesh.js +197 -0
  99. package/src/constants/others.js +218 -0
  100. package/src/constants/texture.js +183 -0
  101. package/src/core/constants.js +14 -0
  102. package/src/core/extensions.js +42 -0
  103. package/src/core/index.js +7 -0
  104. package/src/core/layouts/index.js +4 -0
  105. package/src/core/layouts/meshvertex.js +60 -0
  106. package/src/core/layouts/uniform.js +21 -0
  107. package/src/core/layouts/uniformbuffer.js +15 -0
  108. package/src/core/layouts/vertexbuffer.js +43 -0
  109. package/src/core/limits.js +247 -0
  110. package/src/core/resources/blendparams.js +89 -0
  111. package/src/core/resources/framebuffer.js +127 -0
  112. package/src/core/resources/gpubuffer.js +32 -0
  113. package/src/core/resources/gpumesh.js +43 -0
  114. package/src/core/resources/gputexture.js +73 -0
  115. package/src/core/resources/index.js +5 -0
  116. package/src/core/shader.js +62 -0
  117. package/src/core/webgl/bindgroup.js +89 -0
  118. package/src/core/webgl/descriptors.js +104 -0
  119. package/src/core/webgl/index.js +5 -0
  120. package/src/core/webgl/renderpassencoder.js +96 -0
  121. package/src/core/webgl/renderpipeline.js +54 -0
  122. package/src/core/webgl/utils.js +371 -0
  123. package/src/core/webgl/webglrenderdevice.js +235 -0
  124. package/src/function.js +358 -0
  125. package/src/index.js +15 -0
  126. package/src/loader/gltf.js +2172 -0
  127. package/src/loader/index.js +3 -0
  128. package/src/loader/loader.js +174 -0
  129. package/src/loader/obj.js +188 -0
  130. package/src/loader/texture.js +85 -0
  131. package/src/loader/utils.js +16 -0
  132. package/src/material/basic.js +75 -0
  133. package/src/material/depth.js +73 -0
  134. package/src/material/index.js +8 -0
  135. package/src/material/lambert.js +73 -0
  136. package/src/material/material.js +106 -0
  137. package/src/material/normal.js +30 -0
  138. package/src/material/phong.js +86 -0
  139. package/src/material/raw.js +52 -0
  140. package/src/material/standard.js +221 -0
  141. package/src/math/index.js +3 -0
  142. package/src/math/transform.js +38 -0
  143. package/src/mesh/attribute/attribute.js +79 -0
  144. package/src/mesh/attribute/index.js +1 -0
  145. package/src/mesh/attributedata/index.js +1 -0
  146. package/src/mesh/attributedata/separate.js +180 -0
  147. package/src/mesh/builders/base.js +41 -0
  148. package/src/mesh/builders/circle.js +63 -0
  149. package/src/mesh/builders/cuboid.js +135 -0
  150. package/src/mesh/builders/cylinder.js +131 -0
  151. package/src/mesh/builders/index.js +7 -0
  152. package/src/mesh/builders/plane.js +73 -0
  153. package/src/mesh/builders/utils.js +20 -0
  154. package/src/mesh/builders/uvsphere.js +80 -0
  155. package/src/mesh/builders/wireframe.js +62 -0
  156. package/src/mesh/index.js +4 -0
  157. package/src/mesh/mesh.js +149 -0
  158. package/src/objects/bone.js +17 -0
  159. package/src/objects/camera/camera.js +56 -0
  160. package/src/objects/camera/index.js +2 -0
  161. package/src/objects/camera/projection.js +203 -0
  162. package/src/objects/debug/index.js +1 -0
  163. package/src/objects/debug/skeleton.js +28 -0
  164. package/src/objects/index.js +7 -0
  165. package/src/objects/light/ambient.js +20 -0
  166. package/src/objects/light/directional.js +29 -0
  167. package/src/objects/light/index.js +5 -0
  168. package/src/objects/light/point.js +32 -0
  169. package/src/objects/light/shadow/index.js +1 -0
  170. package/src/objects/light/shadow/shadow.js +67 -0
  171. package/src/objects/light/spot.js +56 -0
  172. package/src/objects/mesh.js +141 -0
  173. package/src/objects/object3d.js +167 -0
  174. package/src/objects/skybox.js +38 -0
  175. package/src/plugins/camera/camera.js +19 -0
  176. package/src/plugins/camera/index.js +2 -0
  177. package/src/plugins/camera/nodes/cameraview.js +46 -0
  178. package/src/plugins/camera/nodes/index.js +2 -0
  179. package/src/plugins/camera/nodes/opaquepass.js +79 -0
  180. package/src/plugins/index.js +6 -0
  181. package/src/plugins/light/index.js +2 -0
  182. package/src/plugins/light/light.js +23 -0
  183. package/src/plugins/light/nodes/index.js +1 -0
  184. package/src/plugins/light/nodes/light.js +127 -0
  185. package/src/plugins/meshmaterial/index.js +3 -0
  186. package/src/plugins/meshmaterial/meshmaterial.js +381 -0
  187. package/src/plugins/meshmaterial/nodes/index.js +1 -0
  188. package/src/plugins/meshmaterial/nodes/meshmaterial.js +50 -0
  189. package/src/plugins/meshmaterial/resources/index.js +1 -0
  190. package/src/plugins/meshmaterial/resources/meshmaterialpipelines.js +50 -0
  191. package/src/plugins/shadow/index.js +3 -0
  192. package/src/plugins/shadow/nodes/index.js +3 -0
  193. package/src/plugins/shadow/nodes/shadow.js +272 -0
  194. package/src/plugins/shadow/nodes/shadowOccluder.js +112 -0
  195. package/src/plugins/shadow/nodes/shadowOpaquePass.js +73 -0
  196. package/src/plugins/shadow/resources/ShadowMap.js +99 -0
  197. package/src/plugins/shadow/resources/index.js +2 -0
  198. package/src/plugins/shadow/resources/shadowpipelines.js +25 -0
  199. package/src/plugins/shadow/shadow.js +31 -0
  200. package/src/plugins/skeletonhelper/index.js +1 -0
  201. package/src/plugins/skeletonhelper/skeletonhelper.js +160 -0
  202. package/src/plugins/skybox/index.js +3 -0
  203. package/src/plugins/skybox/nodes/index.js +1 -0
  204. package/src/plugins/skybox/nodes/skybox.js +143 -0
  205. package/src/plugins/skybox/resources/index.js +2 -0
  206. package/src/plugins/skybox/resources/skyboxmesh.js +14 -0
  207. package/src/plugins/skybox/resources/skyboxpipeline.js +6 -0
  208. package/src/plugins/skybox/skybox.js +137 -0
  209. package/src/renderer/core/index.js +179 -0
  210. package/src/renderer/graph/index.js +3 -0
  211. package/src/renderer/graph/nodes.js +34 -0
  212. package/src/renderer/graph/rendergraph.js +182 -0
  213. package/src/renderer/index.js +5 -0
  214. package/src/renderer/plugin.js +36 -0
  215. package/src/renderer/renderer.js +179 -0
  216. package/src/renderer/views.js +28 -0
  217. package/src/rendertarget/canvastarget.js +30 -0
  218. package/src/rendertarget/image.js +132 -0
  219. package/src/rendertarget/index.js +3 -0
  220. package/src/rendertarget/rendertarget.js +89 -0
  221. package/src/shader/basicFragment.glsl +30 -0
  222. package/src/shader/basicVertex.glsl +87 -0
  223. package/src/shader/common/color.glsl +7 -0
  224. package/src/shader/common/common.glsl +25 -0
  225. package/src/shader/common/index.js +4 -0
  226. package/src/shader/common/light.glsl +437 -0
  227. package/src/shader/common/math.glsl +12 -0
  228. package/src/shader/debug/index.js +2 -0
  229. package/src/shader/debug/skeletonFragment.glsl +8 -0
  230. package/src/shader/debug/skeletonVertex.glsl +27 -0
  231. package/src/shader/depthFragment.glsl +37 -0
  232. package/src/shader/index.js +11 -0
  233. package/src/shader/lambertFragment.glsl +126 -0
  234. package/src/shader/normalFragment.glsl +25 -0
  235. package/src/shader/phongFragment.glsl +140 -0
  236. package/src/shader/skyboxFragment.glsl +16 -0
  237. package/src/shader/skyboxVertex.glsl +20 -0
  238. package/src/shader/standardFragment.glsl +274 -0
  239. package/src/texture/index.js +2 -0
  240. package/src/texture/sampler.js +111 -0
  241. package/src/texture/texture.js +234 -0
  242. package/src/utils/index.js +115 -0
  243. package/tsconfig.json +11 -0
  244. package/website/config/index.ts +1 -0
  245. package/website/config/navigation.ts +53 -0
  246. package/website/content.config.ts +92 -0
  247. package/website/layouts/DocLayout.astro +501 -0
  248. package/website/layouts/Example.astro +91 -0
  249. package/website/pages/examples/[...slug].astro +77 -0
  250. package/website/pages/examples/index.astro +98 -0
  251. package/website/pages/examples/samples/[...slug].astro +17 -0
  252. package/website/pages/guide/[slug].astro +30 -0
  253. package/website/pages/guide/index.astro +21 -0
  254. package/website/pages/index.astro +9 -0
  255. package/website/plugins/remark-link-base.js +23 -0
  256. package/website/utils/url.ts +30 -0
@@ -0,0 +1,2082 @@
1
+ {
2
+ "asset" : {
3
+ "generator" : "Khronos glTF Blender I/O v1.6.16",
4
+ "version" : "2.0"
5
+ },
6
+ "scene" : 0,
7
+ "scenes" : [
8
+ {
9
+ "name" : "Scene",
10
+ "nodes" : [
11
+ 78
12
+ ]
13
+ }
14
+ ],
15
+ "nodes" : [
16
+ {
17
+ "name" : "metarig.001_head.002",
18
+ "rotation" : [
19
+ -0.4251091182231903,
20
+ 2.104541891867484e-07,
21
+ -3.898453115880329e-08,
22
+ 0.9051421284675598
23
+ ],
24
+ "scale" : [
25
+ 1,
26
+ 1.0000003576278687,
27
+ 1.0000001192092896
28
+ ],
29
+ "translation" : [
30
+ -1.2049402816662058e-14,
31
+ 0.8652567863464355,
32
+ 1.9390284933251678e-08
33
+ ]
34
+ },
35
+ {
36
+ "children" : [
37
+ 0
38
+ ],
39
+ "name" : "metarig.001_head.001",
40
+ "rotation" : [
41
+ -0.45470210909843445,
42
+ -6.501738880615449e-08,
43
+ 3.1226836227915555e-08,
44
+ 0.8906435966491699
45
+ ],
46
+ "scale" : [
47
+ 1,
48
+ 1,
49
+ 1.0000001192092896
50
+ ],
51
+ "translation" : [
52
+ 3.10579051365778e-09,
53
+ 0.3488887548446655,
54
+ 0.06971721351146698
55
+ ]
56
+ },
57
+ {
58
+ "children" : [
59
+ 1
60
+ ],
61
+ "name" : "metarig.001_head",
62
+ "rotation" : [
63
+ -0.8473331928253174,
64
+ -1.0936589234233907e-07,
65
+ -1.744982682794216e-07,
66
+ 0.5310615301132202
67
+ ],
68
+ "scale" : [
69
+ 1,
70
+ 1.0000001192092896,
71
+ 1
72
+ ],
73
+ "translation" : [
74
+ 8.557302137940717e-14,
75
+ 0.18012620508670807,
76
+ -1.47150842622068e-07
77
+ ]
78
+ },
79
+ {
80
+ "children" : [
81
+ 2
82
+ ],
83
+ "name" : "metarig.001_neck",
84
+ "rotation" : [
85
+ 0.36466896533966064,
86
+ 1.5013183940482122e-07,
87
+ 9.140132561924474e-08,
88
+ 0.9311372637748718
89
+ ],
90
+ "scale" : [
91
+ 1,
92
+ 0.9999998807907104,
93
+ 0.9999998211860657
94
+ ],
95
+ "translation" : [
96
+ 1.5604558660856083e-13,
97
+ 0.5707138180732727,
98
+ -4.270401632311405e-08
99
+ ]
100
+ },
101
+ {
102
+ "name" : "metarig.001_f_index.03.L",
103
+ "rotation" : [
104
+ -0.006972392089664936,
105
+ 0.00015199530753307045,
106
+ 0.004516051150858402,
107
+ 0.999965488910675
108
+ ],
109
+ "scale" : [
110
+ 0.9999999403953552,
111
+ 0.9999999403953552,
112
+ 0.9999999403953552
113
+ ],
114
+ "translation" : [
115
+ 1.3422537392671074e-07,
116
+ 0.059761542826890945,
117
+ 2.9983948479639366e-07
118
+ ]
119
+ },
120
+ {
121
+ "children" : [
122
+ 4
123
+ ],
124
+ "name" : "metarig.001_f_index.02.L",
125
+ "rotation" : [
126
+ -0.006107378751039505,
127
+ -0.009502089582383633,
128
+ -0.01497128140181303,
129
+ 0.9998241662979126
130
+ ],
131
+ "scale" : [
132
+ 1,
133
+ 1.0000003576278687,
134
+ 0.9999998211860657
135
+ ],
136
+ "translation" : [
137
+ 1.1281040990240854e-08,
138
+ 0.09454503655433655,
139
+ -6.747827185904498e-09
140
+ ]
141
+ },
142
+ {
143
+ "children" : [
144
+ 5
145
+ ],
146
+ "name" : "metarig.001_f_index.01.L",
147
+ "rotation" : [
148
+ 0.0786934345960617,
149
+ 0.028293298557400703,
150
+ -0.01590152457356453,
151
+ 0.9963704347610474
152
+ ],
153
+ "scale" : [
154
+ 1.0000001192092896,
155
+ 1.0000003576278687,
156
+ 1
157
+ ],
158
+ "translation" : [
159
+ -6.422821385854149e-09,
160
+ 0.13840292394161224,
161
+ -3.931089764819262e-08
162
+ ]
163
+ },
164
+ {
165
+ "name" : "metarig.001_thumb.03.L",
166
+ "rotation" : [
167
+ 0.011878587305545807,
168
+ 0.00600298959761858,
169
+ -0.02019481174647808,
170
+ 0.9997075796127319
171
+ ],
172
+ "scale" : [
173
+ 0.9999998807907104,
174
+ 1.0000001192092896,
175
+ 0.9999999403953552
176
+ ],
177
+ "translation" : [
178
+ -2.6740750058706908e-08,
179
+ 0.07438235729932785,
180
+ -3.058196540450808e-08
181
+ ]
182
+ },
183
+ {
184
+ "children" : [
185
+ 7
186
+ ],
187
+ "name" : "metarig.001_thumb.02.L",
188
+ "rotation" : [
189
+ -0.025880295783281326,
190
+ -0.03988375887274742,
191
+ -0.011548175476491451,
192
+ 0.9988023638725281
193
+ ],
194
+ "scale" : [
195
+ 1,
196
+ 1.0000001192092896,
197
+ 1
198
+ ],
199
+ "translation" : [
200
+ 4.7801570701722085e-08,
201
+ 0.0868057981133461,
202
+ -1.153755277982782e-07
203
+ ]
204
+ },
205
+ {
206
+ "children" : [
207
+ 8
208
+ ],
209
+ "name" : "metarig.001_thumb.01.L",
210
+ "rotation" : [
211
+ -0.05566782504320145,
212
+ 0.7558951377868652,
213
+ 0.23464730381965637,
214
+ 0.6086577773094177
215
+ ],
216
+ "translation" : [
217
+ -0.030260590836405754,
218
+ -0.007095940876752138,
219
+ 0.013287114910781384
220
+ ]
221
+ },
222
+ {
223
+ "children" : [
224
+ 6,
225
+ 9
226
+ ],
227
+ "name" : "metarig.001_palm.01.L",
228
+ "rotation" : [
229
+ 0.0664849653840065,
230
+ 0.03678729385137558,
231
+ -0.05390362814068794,
232
+ 0.9956510663032532
233
+ ],
234
+ "scale" : [
235
+ 1.0000001192092896,
236
+ 0.9999999403953552,
237
+ 0.9999997615814209
238
+ ],
239
+ "translation" : [
240
+ -0.02673448622226715,
241
+ 0.03832680732011795,
242
+ -0.008355466648936272
243
+ ]
244
+ },
245
+ {
246
+ "name" : "metarig.001_f_middle.03.L",
247
+ "rotation" : [
248
+ 0.0017729474930092692,
249
+ -0.014666618779301643,
250
+ -0.02059306763112545,
251
+ 0.9996787905693054
252
+ ],
253
+ "scale" : [
254
+ 0.9999998211860657,
255
+ 1,
256
+ 1
257
+ ],
258
+ "translation" : [
259
+ -1.3112003216519952e-07,
260
+ 0.061779387295246124,
261
+ 3.3048655723177944e-07
262
+ ]
263
+ },
264
+ {
265
+ "children" : [
266
+ 11
267
+ ],
268
+ "name" : "metarig.001_f_middle.02.L",
269
+ "rotation" : [
270
+ 0.028461188077926636,
271
+ -0.020220067352056503,
272
+ 0.01059671863913536,
273
+ 0.9993342161178589
274
+ ],
275
+ "scale" : [
276
+ 0.9999998807907104,
277
+ 0.9999997615814209,
278
+ 1
279
+ ],
280
+ "translation" : [
281
+ -6.439324096163546e-08,
282
+ 0.10209044069051743,
283
+ -1.0917555925971101e-07
284
+ ]
285
+ },
286
+ {
287
+ "children" : [
288
+ 12
289
+ ],
290
+ "name" : "metarig.001_f_middle.01.L",
291
+ "rotation" : [
292
+ 0.0015146986115723848,
293
+ -0.004462006967514753,
294
+ -0.012412311509251595,
295
+ 0.9999119639396667
296
+ ],
297
+ "scale" : [
298
+ 0.9999999403953552,
299
+ 0.9999999403953552,
300
+ 0.9999999403953552
301
+ ],
302
+ "translation" : [
303
+ 1.8090887010657752e-07,
304
+ 0.11981388926506042,
305
+ -2.000958261305641e-07
306
+ ]
307
+ },
308
+ {
309
+ "children" : [
310
+ 13
311
+ ],
312
+ "name" : "metarig.001_palm.02.L",
313
+ "rotation" : [
314
+ 0.08152461051940918,
315
+ 0.02877335250377655,
316
+ -0.16957096755504608,
317
+ 0.9817186594009399
318
+ ],
319
+ "scale" : [
320
+ 1,
321
+ 0.9999997615814209,
322
+ 1
323
+ ],
324
+ "translation" : [
325
+ 0.01861654594540596,
326
+ 0.06827842444181442,
327
+ -0.015267590060830116
328
+ ]
329
+ },
330
+ {
331
+ "name" : "metarig.001_f_ring.03.L",
332
+ "rotation" : [
333
+ 0.01201961375772953,
334
+ -0.009484833106398582,
335
+ -0.008733753114938736,
336
+ 0.9998446702957153
337
+ ],
338
+ "scale" : [
339
+ 0.9999998211860657,
340
+ 1,
341
+ 0.9999998807907104
342
+ ],
343
+ "translation" : [
344
+ -1.52093790006802e-07,
345
+ 0.05248141288757324,
346
+ 5.395648940975661e-07
347
+ ]
348
+ },
349
+ {
350
+ "children" : [
351
+ 15
352
+ ],
353
+ "name" : "metarig.001_f_ring.02.L",
354
+ "rotation" : [
355
+ -0.0017537736566737294,
356
+ -0.018172163516283035,
357
+ -0.01721552014350891,
358
+ 0.9996851086616516
359
+ ],
360
+ "scale" : [
361
+ 0.9999998807907104,
362
+ 1.0000001192092896,
363
+ 1.0000001192092896
364
+ ],
365
+ "translation" : [
366
+ 1.423442768100358e-07,
367
+ 0.07752843201160431,
368
+ 1.592321154930687e-07
369
+ ]
370
+ },
371
+ {
372
+ "children" : [
373
+ 16
374
+ ],
375
+ "name" : "metarig.001_f_ring.01.L",
376
+ "rotation" : [
377
+ 0.01463029719889164,
378
+ -0.00920381210744381,
379
+ -0.02653435990214348,
380
+ 0.9994984865188599
381
+ ],
382
+ "scale" : [
383
+ 0.9999998211860657,
384
+ 0.9999999403953552,
385
+ 1
386
+ ],
387
+ "translation" : [
388
+ -4.550245691348209e-08,
389
+ 0.11218079179525375,
390
+ -2.6357901106166537e-07
391
+ ]
392
+ },
393
+ {
394
+ "children" : [
395
+ 17
396
+ ],
397
+ "name" : "metarig.001_palm.03.L",
398
+ "rotation" : [
399
+ 0.05797821655869484,
400
+ -0.0015991965774446726,
401
+ -0.2939334809780121,
402
+ 0.9540646076202393
403
+ ],
404
+ "scale" : [
405
+ 1.0000001192092896,
406
+ 1,
407
+ 1
408
+ ],
409
+ "translation" : [
410
+ 0.03789820522069931,
411
+ 0.05702754110097885,
412
+ -0.0181102491915226
413
+ ]
414
+ },
415
+ {
416
+ "name" : "metarig.001_f_pinky.03.L",
417
+ "rotation" : [
418
+ -0.026768522337079048,
419
+ -0.02268834039568901,
420
+ -0.004329653922468424,
421
+ 0.9993748068809509
422
+ ],
423
+ "scale" : [
424
+ 0.9999999403953552,
425
+ 0.9999998211860657,
426
+ 1.0000001192092896
427
+ ],
428
+ "translation" : [
429
+ -9.7470920223941e-09,
430
+ 0.05182848870754242,
431
+ 1.6884213493995048e-07
432
+ ]
433
+ },
434
+ {
435
+ "children" : [
436
+ 19
437
+ ],
438
+ "name" : "metarig.001_f_pinky.02.L",
439
+ "rotation" : [
440
+ -0.006290490739047527,
441
+ -0.009744073264300823,
442
+ -0.004281048197299242,
443
+ 0.999923586845398
444
+ ],
445
+ "scale" : [
446
+ 0.9999998211860657,
447
+ 0.9999999403953552,
448
+ 1
449
+ ],
450
+ "translation" : [
451
+ 9.147909452167369e-08,
452
+ 0.06063663586974144,
453
+ 7.852587202705763e-08
454
+ ]
455
+ },
456
+ {
457
+ "children" : [
458
+ 20
459
+ ],
460
+ "name" : "metarig.001_f_pinky.01.L",
461
+ "rotation" : [
462
+ 0.10072191804647446,
463
+ 0.012340144254267216,
464
+ -0.01179953757673502,
465
+ 0.9947682023048401
466
+ ],
467
+ "scale" : [
468
+ 0.9999999403953552,
469
+ 0.9999998807907104,
470
+ 0.9999999403953552
471
+ ],
472
+ "translation" : [
473
+ 2.0847724613304308e-07,
474
+ 0.11762865632772446,
475
+ 1.0304166409014215e-09
476
+ ]
477
+ },
478
+ {
479
+ "children" : [
480
+ 21
481
+ ],
482
+ "name" : "metarig.001_palm.04.L",
483
+ "rotation" : [
484
+ -0.023204870522022247,
485
+ 0.038945551961660385,
486
+ -0.3970555365085602,
487
+ 0.9166742563247681
488
+ ],
489
+ "scale" : [
490
+ 1,
491
+ 0.9999998211860657,
492
+ 0.9999999403953552
493
+ ],
494
+ "translation" : [
495
+ 0.050373323261737823,
496
+ 0.0196306761354208,
497
+ 0.0012346935691311955
498
+ ]
499
+ },
500
+ {
501
+ "children" : [
502
+ 10,
503
+ 14,
504
+ 18,
505
+ 22
506
+ ],
507
+ "name" : "metarig.001_hand.L",
508
+ "rotation" : [
509
+ -0.010234955698251724,
510
+ 0.7047457695007324,
511
+ -0.01738201640546322,
512
+ 0.7091732025146484
513
+ ],
514
+ "scale" : [
515
+ 0.9999995231628418,
516
+ 0.9999997019767761,
517
+ 0.9999998807907104
518
+ ],
519
+ "translation" : [
520
+ -2.3704139096025756e-07,
521
+ 0.5931364893913269,
522
+ 5.0870827550397735e-08
523
+ ]
524
+ },
525
+ {
526
+ "children" : [
527
+ 23
528
+ ],
529
+ "name" : "metarig.001_forearm.L",
530
+ "rotation" : [
531
+ 0.07429377734661102,
532
+ 0.015735475346446037,
533
+ 0.04296598210930824,
534
+ 0.9961861371994019
535
+ ],
536
+ "scale" : [
537
+ 0.9999998211860657,
538
+ 1,
539
+ 0.9999998211860657
540
+ ],
541
+ "translation" : [
542
+ 7.114954314602073e-08,
543
+ 0.7778196334838867,
544
+ -1.1003995936675892e-08
545
+ ]
546
+ },
547
+ {
548
+ "children" : [
549
+ 24
550
+ ],
551
+ "name" : "metarig.001_upper_arm.L",
552
+ "rotation" : [
553
+ -0.11572477966547012,
554
+ 0.7033221125602722,
555
+ -0.5074800252914429,
556
+ 0.48415887355804443
557
+ ],
558
+ "scale" : [
559
+ 1.000000238418579,
560
+ 1.0000005960464478,
561
+ 1.0000001192092896
562
+ ],
563
+ "translation" : [
564
+ 0.022898629307746887,
565
+ 0.2999228239059448,
566
+ -0.044323552399873734
567
+ ]
568
+ },
569
+ {
570
+ "children" : [
571
+ 25
572
+ ],
573
+ "name" : "metarig.001_shoulder.L",
574
+ "rotation" : [
575
+ -0.5324501991271973,
576
+ -0.26663005352020264,
577
+ -0.36032411456108093,
578
+ 0.7180332541465759
579
+ ],
580
+ "scale" : [
581
+ 0.9999999403953552,
582
+ 1,
583
+ 0.9999998211860657
584
+ ],
585
+ "translation" : [
586
+ 0.03980645537376404,
587
+ 0.5072502493858337,
588
+ 0.11421975493431091
589
+ ]
590
+ },
591
+ {
592
+ "name" : "metarig.001_f_index.03.R",
593
+ "rotation" : [
594
+ -0.006972436793148518,
595
+ -0.00015199802874121815,
596
+ -0.004516041837632656,
597
+ 0.999965488910675
598
+ ],
599
+ "scale" : [
600
+ 1,
601
+ 0.9999998807907104,
602
+ 0.9999998807907104
603
+ ],
604
+ "translation" : [
605
+ -5.1108305143543475e-08,
606
+ 0.059761542826890945,
607
+ -4.076742143865886e-08
608
+ ]
609
+ },
610
+ {
611
+ "children" : [
612
+ 27
613
+ ],
614
+ "name" : "metarig.001_f_index.02.R",
615
+ "rotation" : [
616
+ -0.006107265129685402,
617
+ 0.009502090513706207,
618
+ 0.01497128140181303,
619
+ 0.9998241662979126
620
+ ],
621
+ "scale" : [
622
+ 1.0000001192092896,
623
+ 1.000000238418579,
624
+ 0.9999998807907104
625
+ ],
626
+ "translation" : [
627
+ -1.0198989031096062e-07,
628
+ 0.09454519301652908,
629
+ 7.489960296425124e-08
630
+ ]
631
+ },
632
+ {
633
+ "children" : [
634
+ 28
635
+ ],
636
+ "name" : "metarig.001_f_index.01.R",
637
+ "rotation" : [
638
+ 0.07869338989257812,
639
+ -0.028293294832110405,
640
+ 0.01590154320001602,
641
+ 0.9963704347610474
642
+ ],
643
+ "scale" : [
644
+ 1,
645
+ 1.0000001192092896,
646
+ 1.0000001192092896
647
+ ],
648
+ "translation" : [
649
+ 1.1464985050224641e-07,
650
+ 0.13840267062187195,
651
+ 6.979656852479366e-09
652
+ ]
653
+ },
654
+ {
655
+ "name" : "metarig.001_thumb.03.R",
656
+ "rotation" : [
657
+ 0.01187882386147976,
658
+ -0.00600408436730504,
659
+ 0.020195486024022102,
660
+ 0.9997074604034424
661
+ ],
662
+ "scale" : [
663
+ 0.9999999403953552,
664
+ 1.000000238418579,
665
+ 1
666
+ ],
667
+ "translation" : [
668
+ -1.137442069421013e-07,
669
+ 0.07438249886035919,
670
+ -1.4765257461135661e-08
671
+ ]
672
+ },
673
+ {
674
+ "children" : [
675
+ 30
676
+ ],
677
+ "name" : "metarig.001_thumb.02.R",
678
+ "rotation" : [
679
+ -0.025880711153149605,
680
+ 0.03988488391041756,
681
+ 0.011547576636075974,
682
+ 0.9988023042678833
683
+ ],
684
+ "scale" : [
685
+ 1,
686
+ 1.000000238418579,
687
+ 1.000000238418579
688
+ ],
689
+ "translation" : [
690
+ -2.0754775675868586e-09,
691
+ 0.08680560439825058,
692
+ -1.0115302018220973e-07
693
+ ]
694
+ },
695
+ {
696
+ "children" : [
697
+ 31
698
+ ],
699
+ "name" : "metarig.001_thumb.01.R",
700
+ "rotation" : [
701
+ -0.055668048560619354,
702
+ -0.7558954954147339,
703
+ -0.23464679718017578,
704
+ 0.6086574792861938
705
+ ],
706
+ "scale" : [
707
+ 1.0000001192092896,
708
+ 1.0000001192092896,
709
+ 1.0000001192092896
710
+ ],
711
+ "translation" : [
712
+ 0.030260585248470306,
713
+ -0.0070962668396532536,
714
+ 0.013286897912621498
715
+ ]
716
+ },
717
+ {
718
+ "children" : [
719
+ 29,
720
+ 32
721
+ ],
722
+ "name" : "metarig.001_palm.01.R",
723
+ "rotation" : [
724
+ 0.0664849579334259,
725
+ -0.03678730130195618,
726
+ 0.05390359088778496,
727
+ 0.9956510066986084
728
+ ],
729
+ "scale" : [
730
+ 1.0000001192092896,
731
+ 0.9999998807907104,
732
+ 0.9999997615814209
733
+ ],
734
+ "translation" : [
735
+ 0.02673444338142872,
736
+ 0.03832675516605377,
737
+ -0.008355490863323212
738
+ ]
739
+ },
740
+ {
741
+ "name" : "metarig.001_f_middle.03.R",
742
+ "rotation" : [
743
+ 0.001772989402525127,
744
+ 0.014666611328721046,
745
+ 0.020593062043190002,
746
+ 0.9996787905693054
747
+ ],
748
+ "scale" : [
749
+ 0.9999998807907104,
750
+ 0.9999999403953552,
751
+ 1.0000001192092896
752
+ ],
753
+ "translation" : [
754
+ 1.0075357437244747e-08,
755
+ 0.061779607087373734,
756
+ 3.1516245257989794e-07
757
+ ]
758
+ },
759
+ {
760
+ "children" : [
761
+ 34
762
+ ],
763
+ "name" : "metarig.001_f_middle.02.R",
764
+ "rotation" : [
765
+ 0.02846119925379753,
766
+ 0.020220063626766205,
767
+ -0.010596721433103085,
768
+ 0.9993342161178589
769
+ ],
770
+ "scale" : [
771
+ 0.9999998211860657,
772
+ 0.9999997019767761,
773
+ 1
774
+ ],
775
+ "translation" : [
776
+ -6.001576480230142e-08,
777
+ 0.1020902469754219,
778
+ 3.6853368357014915e-08
779
+ ]
780
+ },
781
+ {
782
+ "children" : [
783
+ 35
784
+ ],
785
+ "name" : "metarig.001_f_middle.01.R",
786
+ "rotation" : [
787
+ 0.0015146620571613312,
788
+ 0.004462002776563168,
789
+ 0.012412309646606445,
790
+ 0.9999119639396667
791
+ ],
792
+ "scale" : [
793
+ 0.9999999403953552,
794
+ 1,
795
+ 0.9999999403953552
796
+ ],
797
+ "translation" : [
798
+ -1.5180046375462553e-07,
799
+ 0.11981363594532013,
800
+ -5.340919528862287e-07
801
+ ]
802
+ },
803
+ {
804
+ "children" : [
805
+ 36
806
+ ],
807
+ "name" : "metarig.001_palm.02.R",
808
+ "rotation" : [
809
+ 0.08152461796998978,
810
+ -0.028773346915841103,
811
+ 0.1695709526538849,
812
+ 0.9817186594009399
813
+ ],
814
+ "scale" : [
815
+ 1.0000001192092896,
816
+ 0.9999998211860657,
817
+ 1.0000001192092896
818
+ ],
819
+ "translation" : [
820
+ -0.0186165701597929,
821
+ 0.06827814877033234,
822
+ -0.015267409384250641
823
+ ]
824
+ },
825
+ {
826
+ "name" : "metarig.001_f_ring.03.R",
827
+ "rotation" : [
828
+ 0.01201963983476162,
829
+ 0.00948483869433403,
830
+ 0.008733797818422318,
831
+ 0.9998446702957153
832
+ ],
833
+ "scale" : [
834
+ 0.9999998807907104,
835
+ 0.9999998807907104,
836
+ 1
837
+ ],
838
+ "translation" : [
839
+ 2.0605934025752504e-07,
840
+ 0.05248165875673294,
841
+ 2.441351343307474e-09
842
+ ]
843
+ },
844
+ {
845
+ "children" : [
846
+ 38
847
+ ],
848
+ "name" : "metarig.001_f_ring.02.R",
849
+ "rotation" : [
850
+ -0.0017537904204800725,
851
+ 0.018172137439250946,
852
+ 0.017215518280863762,
853
+ 0.9996851086616516
854
+ ],
855
+ "scale" : [
856
+ 0.9999998807907104,
857
+ 1,
858
+ 0.9999999403953552
859
+ ],
860
+ "translation" : [
861
+ 1.2575166863371123e-07,
862
+ 0.07752890139818192,
863
+ -2.832221355220099e-07
864
+ ]
865
+ },
866
+ {
867
+ "children" : [
868
+ 39
869
+ ],
870
+ "name" : "metarig.001_f_ring.01.R",
871
+ "rotation" : [
872
+ 0.014630334451794624,
873
+ 0.009203842841088772,
874
+ 0.026534304022789,
875
+ 0.9994984865188599
876
+ ],
877
+ "scale" : [
878
+ 0.9999997615814209,
879
+ 0.9999999403953552,
880
+ 1
881
+ ],
882
+ "translation" : [
883
+ -1.9406014928335935e-07,
884
+ 0.11218071728944778,
885
+ -4.476238757433748e-07
886
+ ]
887
+ },
888
+ {
889
+ "children" : [
890
+ 40
891
+ ],
892
+ "name" : "metarig.001_palm.03.R",
893
+ "rotation" : [
894
+ 0.057978227734565735,
895
+ 0.0015991644468158484,
896
+ 0.2939333915710449,
897
+ 0.9540645480155945
898
+ ],
899
+ "scale" : [
900
+ 1,
901
+ 1,
902
+ 0.9999999403953552
903
+ ],
904
+ "translation" : [
905
+ -0.03789811208844185,
906
+ 0.05702725425362587,
907
+ -0.018110055476427078
908
+ ]
909
+ },
910
+ {
911
+ "name" : "metarig.001_f_pinky.03.R",
912
+ "rotation" : [
913
+ -0.02676851861178875,
914
+ 0.022688332945108414,
915
+ 0.004329646471887827,
916
+ 0.9993748068809509
917
+ ],
918
+ "scale" : [
919
+ 0.9999998211860657,
920
+ 0.9999998211860657,
921
+ 1.0000001192092896
922
+ ],
923
+ "translation" : [
924
+ 1.7738310020831705e-07,
925
+ 0.051828473806381226,
926
+ -1.7051172562787542e-07
927
+ ]
928
+ },
929
+ {
930
+ "children" : [
931
+ 42
932
+ ],
933
+ "name" : "metarig.001_f_pinky.02.R",
934
+ "rotation" : [
935
+ -0.006290503777563572,
936
+ 0.009744091890752316,
937
+ 0.0042810821905732155,
938
+ 0.999923586845398
939
+ ],
940
+ "scale" : [
941
+ 0.9999998807907104,
942
+ 0.9999998807907104,
943
+ 0.9999999403953552
944
+ ],
945
+ "translation" : [
946
+ -1.6750419717936893e-07,
947
+ 0.06063658744096756,
948
+ 5.82132599902252e-07
949
+ ]
950
+ },
951
+ {
952
+ "children" : [
953
+ 43
954
+ ],
955
+ "name" : "metarig.001_f_pinky.01.R",
956
+ "rotation" : [
957
+ 0.10072189569473267,
958
+ -0.012340190820395947,
959
+ 0.011799546889960766,
960
+ 0.9947682023048401
961
+ ],
962
+ "scale" : [
963
+ 1,
964
+ 0.9999998807907104,
965
+ 0.9999998211860657
966
+ ],
967
+ "translation" : [
968
+ -6.115207185075633e-08,
969
+ 0.11762867867946625,
970
+ -1.1100777896899672e-07
971
+ ]
972
+ },
973
+ {
974
+ "children" : [
975
+ 44
976
+ ],
977
+ "name" : "metarig.001_palm.04.R",
978
+ "rotation" : [
979
+ -0.023204844444990158,
980
+ -0.03894554451107979,
981
+ 0.3970555067062378,
982
+ 0.9166743755340576
983
+ ],
984
+ "scale" : [
985
+ 0.9999998807907104,
986
+ 0.9999999403953552,
987
+ 0.9999998807907104
988
+ ],
989
+ "translation" : [
990
+ -0.05037310719490051,
991
+ 0.019630324095487595,
992
+ 0.00123444979544729
993
+ ]
994
+ },
995
+ {
996
+ "children" : [
997
+ 33,
998
+ 37,
999
+ 41,
1000
+ 45
1001
+ ],
1002
+ "name" : "metarig.001_hand.R",
1003
+ "rotation" : [
1004
+ -0.010234900750219822,
1005
+ -0.7047458291053772,
1006
+ 0.017382048070430756,
1007
+ 0.7091731429100037
1008
+ ],
1009
+ "scale" : [
1010
+ 0.9999996423721313,
1011
+ 0.9999997615814209,
1012
+ 0.9999998807907104
1013
+ ],
1014
+ "translation" : [
1015
+ 1.4680234805553027e-10,
1016
+ 0.5931360721588135,
1017
+ 4.681141874129935e-08
1018
+ ]
1019
+ },
1020
+ {
1021
+ "children" : [
1022
+ 46
1023
+ ],
1024
+ "name" : "metarig.001_forearm.R",
1025
+ "rotation" : [
1026
+ 0.07429376244544983,
1027
+ -0.01573542319238186,
1028
+ -0.04296589270234108,
1029
+ 0.9961861371994019
1030
+ ],
1031
+ "scale" : [
1032
+ 0.9999998807907104,
1033
+ 1.0000001192092896,
1034
+ 0.9999999403953552
1035
+ ],
1036
+ "translation" : [
1037
+ -2.0024195634960051e-07,
1038
+ 0.7778199911117554,
1039
+ 3.7748907999457515e-08
1040
+ ]
1041
+ },
1042
+ {
1043
+ "children" : [
1044
+ 47
1045
+ ],
1046
+ "name" : "metarig.001_upper_arm.R",
1047
+ "rotation" : [
1048
+ -0.11572472751140594,
1049
+ -0.7033221125602722,
1050
+ 0.5074800252914429,
1051
+ 0.4841589331626892
1052
+ ],
1053
+ "scale" : [
1054
+ 1.0000001192092896,
1055
+ 1.000000238418579,
1056
+ 1.0000001192092896
1057
+ ],
1058
+ "translation" : [
1059
+ -0.022898489609360695,
1060
+ 0.29992276430130005,
1061
+ -0.044323332607746124
1062
+ ]
1063
+ },
1064
+ {
1065
+ "children" : [
1066
+ 48
1067
+ ],
1068
+ "name" : "metarig.001_shoulder.R",
1069
+ "rotation" : [
1070
+ -0.5324503183364868,
1071
+ 0.266630083322525,
1072
+ 0.3603241741657257,
1073
+ 0.7180331349372864
1074
+ ],
1075
+ "scale" : [
1076
+ 1,
1077
+ 1.000000238418579,
1078
+ 0.9999999403953552
1079
+ ],
1080
+ "translation" : [
1081
+ -0.03980649635195732,
1082
+ 0.5072502493858337,
1083
+ 0.11421976238489151
1084
+ ]
1085
+ },
1086
+ {
1087
+ "children" : [
1088
+ 3,
1089
+ 26,
1090
+ 49
1091
+ ],
1092
+ "name" : "metarig.001_chest",
1093
+ "rotation" : [
1094
+ -0.16856765747070312,
1095
+ -5.749818399181095e-08,
1096
+ -2.4904160511596274e-08,
1097
+ 0.9856901168823242
1098
+ ],
1099
+ "scale" : [
1100
+ 1,
1101
+ 0.9999998211860657,
1102
+ 0.9999998807907104
1103
+ ],
1104
+ "translation" : [
1105
+ -2.4348427936945853e-16,
1106
+ 0.34422412514686584,
1107
+ -7.92290961726394e-08
1108
+ ]
1109
+ },
1110
+ {
1111
+ "children" : [
1112
+ 50
1113
+ ],
1114
+ "name" : "metarig.001_spine",
1115
+ "rotation" : [
1116
+ -0.08587765693664551,
1117
+ 1.5771163930367038e-08,
1118
+ -1.63376405737381e-08,
1119
+ 0.9963057041168213
1120
+ ],
1121
+ "translation" : [
1122
+ 4.778805728412362e-15,
1123
+ 0.3869836628437042,
1124
+ -5.583937578990117e-08
1125
+ ]
1126
+ },
1127
+ {
1128
+ "name" : "metarig.001_toe.L",
1129
+ "rotation" : [
1130
+ -2.1559758067724033e-07,
1131
+ 0.9475014209747314,
1132
+ -0.3197516202926636,
1133
+ 8.62191143369273e-07
1134
+ ],
1135
+ "scale" : [
1136
+ 1,
1137
+ 0.9999999403953552,
1138
+ 1
1139
+ ],
1140
+ "translation" : [
1141
+ 2.6049372436887097e-08,
1142
+ 0.3870205879211426,
1143
+ -1.4890154886870732e-08
1144
+ ]
1145
+ },
1146
+ {
1147
+ "children" : [
1148
+ 52
1149
+ ],
1150
+ "name" : "metarig.001_foot.L",
1151
+ "rotation" : [
1152
+ -1.9683577647811035e-06,
1153
+ -0.8164387345314026,
1154
+ -0.5774320960044861,
1155
+ 3.0787794003117597e-06
1156
+ ],
1157
+ "translation" : [
1158
+ -1.2528227344432707e-08,
1159
+ 1.944818173171825e-08,
1160
+ -8.083181768370196e-08
1161
+ ]
1162
+ },
1163
+ {
1164
+ "name" : "metarig.001_heel.02.L",
1165
+ "rotation" : [
1166
+ 0.5714678764343262,
1167
+ -0.5714645385742188,
1168
+ 0.4164429008960724,
1169
+ 0.41644689440727234
1170
+ ],
1171
+ "scale" : [
1172
+ 0.9999998807907104,
1173
+ 1,
1174
+ 0.9999999403953552
1175
+ ],
1176
+ "translation" : [
1177
+ 0.08265959471464157,
1178
+ 0.2257433384656906,
1179
+ 0.18263496458530426
1180
+ ]
1181
+ },
1182
+ {
1183
+ "children" : [
1184
+ 53,
1185
+ 54
1186
+ ],
1187
+ "name" : "metarig.001_heel.L",
1188
+ "rotation" : [
1189
+ 3.027431034752226e-07,
1190
+ 0.9962244629859924,
1191
+ 0.08681575953960419,
1192
+ 3.6379894936544588e-06
1193
+ ],
1194
+ "scale" : [
1195
+ 1,
1196
+ 1.000000238418579,
1197
+ 0.9999998211860657
1198
+ ],
1199
+ "translation" : [
1200
+ -1.4778374080037793e-09,
1201
+ 0.9062403440475464,
1202
+ -7.040690697124319e-09
1203
+ ]
1204
+ },
1205
+ {
1206
+ "children" : [
1207
+ 55
1208
+ ],
1209
+ "name" : "metarig.001_shin.L",
1210
+ "rotation" : [
1211
+ 0.05611561983823776,
1212
+ 6.713377587175273e-08,
1213
+ 2.728509862492956e-09,
1214
+ 0.9984242916107178
1215
+ ],
1216
+ "scale" : [
1217
+ 1,
1218
+ 0.9999999403953552,
1219
+ 0.9999998807907104
1220
+ ],
1221
+ "translation" : [
1222
+ -2.5762144417740274e-08,
1223
+ 1.1636751890182495,
1224
+ 3.668403181222857e-08
1225
+ ]
1226
+ },
1227
+ {
1228
+ "children" : [
1229
+ 56
1230
+ ],
1231
+ "name" : "metarig.001_thigh.L",
1232
+ "rotation" : [
1233
+ 0.9954863786697388,
1234
+ -9.57980805793568e-09,
1235
+ 1.0190577626190134e-07,
1236
+ 0.09490460157394409
1237
+ ],
1238
+ "scale" : [
1239
+ 1,
1240
+ 0.9999999403953552,
1241
+ 0.9999871850013733
1242
+ ],
1243
+ "translation" : [
1244
+ 0.21317127346992493,
1245
+ 0.15184955298900604,
1246
+ 0.062098003923892975
1247
+ ]
1248
+ },
1249
+ {
1250
+ "name" : "metarig.001_toe.R",
1251
+ "rotation" : [
1252
+ -2.1559695539963286e-07,
1253
+ -0.9475014209747314,
1254
+ 0.3197515606880188,
1255
+ 8.621912002126919e-07
1256
+ ],
1257
+ "scale" : [
1258
+ 1,
1259
+ 0.9999999403953552,
1260
+ 1
1261
+ ],
1262
+ "translation" : [
1263
+ -2.6049409740380725e-08,
1264
+ 0.38702061772346497,
1265
+ -2.2340579164392693e-08
1266
+ ]
1267
+ },
1268
+ {
1269
+ "children" : [
1270
+ 58
1271
+ ],
1272
+ "name" : "metarig.001_foot.R",
1273
+ "rotation" : [
1274
+ -1.96835844690213e-06,
1275
+ 0.8164386749267578,
1276
+ 0.5774321556091309,
1277
+ 3.0787787181907333e-06
1278
+ ],
1279
+ "scale" : [
1280
+ 1,
1281
+ 1,
1282
+ 0.9999999403953552
1283
+ ],
1284
+ "translation" : [
1285
+ 4.233081440929709e-08,
1286
+ 3.477504506577134e-08,
1287
+ -1.156032922722261e-07
1288
+ ]
1289
+ },
1290
+ {
1291
+ "name" : "metarig.001_heel.02.R",
1292
+ "rotation" : [
1293
+ 0.5714679956436157,
1294
+ 0.5714645981788635,
1295
+ -0.4164429008960724,
1296
+ 0.41644686460494995
1297
+ ],
1298
+ "scale" : [
1299
+ 0.9999998807907104,
1300
+ 1,
1301
+ 0.9999999403953552
1302
+ ],
1303
+ "translation" : [
1304
+ -0.08265960961580276,
1305
+ 0.22574329376220703,
1306
+ 0.18263493478298187
1307
+ ]
1308
+ },
1309
+ {
1310
+ "children" : [
1311
+ 59,
1312
+ 60
1313
+ ],
1314
+ "name" : "metarig.001_heel.R",
1315
+ "rotation" : [
1316
+ 3.0274313189693203e-07,
1317
+ -0.9962244629859924,
1318
+ -0.08681580424308777,
1319
+ 3.6379897210281342e-06
1320
+ ],
1321
+ "scale" : [
1322
+ 1,
1323
+ 1.0000003576278687,
1324
+ 0.9999998807907104
1325
+ ],
1326
+ "translation" : [
1327
+ 1.4779133472586636e-09,
1328
+ 0.9062403440475464,
1329
+ -2.3371093504920282e-08
1330
+ ]
1331
+ },
1332
+ {
1333
+ "children" : [
1334
+ 61
1335
+ ],
1336
+ "name" : "metarig.001_shin.R",
1337
+ "rotation" : [
1338
+ 0.05611561983823776,
1339
+ -9.719553872855613e-08,
1340
+ -6.507482996909175e-09,
1341
+ 0.9984242916107178
1342
+ ],
1343
+ "scale" : [
1344
+ 1,
1345
+ 0.9999999403953552,
1346
+ 0.9999998807907104
1347
+ ],
1348
+ "translation" : [
1349
+ 4.874365799878433e-08,
1350
+ 1.163675308227539,
1351
+ -1.816734140902554e-08
1352
+ ]
1353
+ },
1354
+ {
1355
+ "children" : [
1356
+ 62
1357
+ ],
1358
+ "name" : "metarig.001_thigh.R",
1359
+ "rotation" : [
1360
+ 0.9954863786697388,
1361
+ -9.57980628157884e-09,
1362
+ 1.0190576205104662e-07,
1363
+ 0.09490460157394409
1364
+ ],
1365
+ "scale" : [
1366
+ 1,
1367
+ 0.9999999403953552,
1368
+ 0.9999870657920837
1369
+ ],
1370
+ "translation" : [
1371
+ -0.21317125856876373,
1372
+ 0.15184955298900604,
1373
+ 0.06209791451692581
1374
+ ]
1375
+ },
1376
+ {
1377
+ "name" : "metarig.001_spine.003",
1378
+ "rotation" : [
1379
+ -0.09913064539432526,
1380
+ 4.7472092035150126e-08,
1381
+ -4.642892736939075e-09,
1382
+ 0.9950745105743408
1383
+ ],
1384
+ "scale" : [
1385
+ 1,
1386
+ 0.9999998807907104,
1387
+ 0.9999998807907104
1388
+ ],
1389
+ "translation" : [
1390
+ 6.73139243117008e-15,
1391
+ 0.39079827070236206,
1392
+ -1.6624562704237178e-07
1393
+ ]
1394
+ },
1395
+ {
1396
+ "children" : [
1397
+ 64
1398
+ ],
1399
+ "name" : "metarig.001_spine.002",
1400
+ "rotation" : [
1401
+ -0.1298082172870636,
1402
+ -1.2584270336901682e-07,
1403
+ -1.6157017057594203e-08,
1404
+ 0.9915391206741333
1405
+ ],
1406
+ "scale" : [
1407
+ 1,
1408
+ 1,
1409
+ 0.9999998807907104
1410
+ ],
1411
+ "translation" : [
1412
+ 1.1588090038862527e-14,
1413
+ 0.5737075209617615,
1414
+ 6.58704095712892e-08
1415
+ ]
1416
+ },
1417
+ {
1418
+ "children" : [
1419
+ 65
1420
+ ],
1421
+ "name" : "metarig.001_spine.001",
1422
+ "rotation" : [
1423
+ -0.9802563190460205,
1424
+ 7.959847003746745e-09,
1425
+ -2.0965822500329523e-07,
1426
+ 0.1977311074733734
1427
+ ],
1428
+ "scale" : [
1429
+ 1,
1430
+ 1,
1431
+ 0.9999974966049194
1432
+ ],
1433
+ "translation" : [
1434
+ 2.5903128531012953e-08,
1435
+ 0.37959739565849304,
1436
+ -0.14991723001003265
1437
+ ]
1438
+ },
1439
+ {
1440
+ "name" : "metarig.001_spine.006",
1441
+ "rotation" : [
1442
+ -0.09913075715303421,
1443
+ 3.952022353814755e-08,
1444
+ 4.042591594810574e-09,
1445
+ 0.9950745105743408
1446
+ ],
1447
+ "scale" : [
1448
+ 1,
1449
+ 0.9999999403953552,
1450
+ 1
1451
+ ],
1452
+ "translation" : [
1453
+ -1.5048429702346766e-07,
1454
+ 0.39079803228378296,
1455
+ 7.93428185374978e-08
1456
+ ]
1457
+ },
1458
+ {
1459
+ "children" : [
1460
+ 67
1461
+ ],
1462
+ "name" : "metarig.001_spine.005",
1463
+ "rotation" : [
1464
+ -0.12750548124313354,
1465
+ -0.02433960512280464,
1466
+ 0.18591730296611786,
1467
+ 0.973953127861023
1468
+ ],
1469
+ "scale" : [
1470
+ 1,
1471
+ 1.0000001192092896,
1472
+ 1
1473
+ ],
1474
+ "translation" : [
1475
+ -4.5691120220681114e-08,
1476
+ 0.6170991063117981,
1477
+ -2.380308616878324e-09
1478
+ ]
1479
+ },
1480
+ {
1481
+ "children" : [
1482
+ 68
1483
+ ],
1484
+ "name" : "metarig.001_spine.004",
1485
+ "rotation" : [
1486
+ -0.9705970883369446,
1487
+ -0.18527749180793762,
1488
+ -0.028813524171710014,
1489
+ 0.15094149112701416
1490
+ ],
1491
+ "scale" : [
1492
+ 0.9999998211860657,
1493
+ 1.000000238418579,
1494
+ 1
1495
+ ],
1496
+ "translation" : [
1497
+ 0.3023686408996582,
1498
+ 0.3128138482570648,
1499
+ 0.05472060292959213
1500
+ ]
1501
+ },
1502
+ {
1503
+ "name" : "metarig.001_spine.009",
1504
+ "rotation" : [
1505
+ -0.09913086146116257,
1506
+ 1.557883848590791e-07,
1507
+ -4.683055365717337e-08,
1508
+ 0.9950745105743408
1509
+ ],
1510
+ "translation" : [
1511
+ 1.8680577795748832e-07,
1512
+ 0.39079758524894714,
1513
+ -6.47042028845135e-08
1514
+ ]
1515
+ },
1516
+ {
1517
+ "children" : [
1518
+ 70
1519
+ ],
1520
+ "name" : "metarig.001_spine.008",
1521
+ "rotation" : [
1522
+ -0.12750497460365295,
1523
+ 0.024339059367775917,
1524
+ -0.1859176754951477,
1525
+ 0.973953127861023
1526
+ ],
1527
+ "scale" : [
1528
+ 0.9999997019767761,
1529
+ 0.9999998807907104,
1530
+ 1
1531
+ ],
1532
+ "translation" : [
1533
+ -1.1521096965338984e-08,
1534
+ 0.6170991063117981,
1535
+ 2.76211210348265e-07
1536
+ ]
1537
+ },
1538
+ {
1539
+ "children" : [
1540
+ 71
1541
+ ],
1542
+ "name" : "metarig.001_spine.007",
1543
+ "rotation" : [
1544
+ -0.9705972671508789,
1545
+ 0.18527750670909882,
1546
+ 0.02881212718784809,
1547
+ 0.1509413868188858
1548
+ ],
1549
+ "scale" : [
1550
+ 0.9999990463256836,
1551
+ 0.9999998211860657,
1552
+ 0.999999463558197
1553
+ ],
1554
+ "translation" : [
1555
+ -0.3023686110973358,
1556
+ 0.3128136992454529,
1557
+ 0.05472045764327049
1558
+ ]
1559
+ },
1560
+ {
1561
+ "children" : [
1562
+ 51,
1563
+ 57,
1564
+ 63,
1565
+ 66,
1566
+ 69,
1567
+ 72
1568
+ ],
1569
+ "name" : "metarig.001_hips",
1570
+ "rotation" : [
1571
+ 0.10741984844207764,
1572
+ 8.670220807971418e-08,
1573
+ 9.367741249377559e-09,
1574
+ 0.9942137598991394
1575
+ ],
1576
+ "translation" : [
1577
+ 2.079172303889789e-14,
1578
+ 2.196751117706299,
1579
+ -0.1854487657546997
1580
+ ]
1581
+ },
1582
+ {
1583
+ "mesh" : 0,
1584
+ "name" : "girl_model.000",
1585
+ "skin" : 0
1586
+ },
1587
+ {
1588
+ "mesh" : 1,
1589
+ "name" : "girl_model.001",
1590
+ "skin" : 0
1591
+ },
1592
+ {
1593
+ "mesh" : 2,
1594
+ "name" : "girl_model.002",
1595
+ "skin" : 0
1596
+ },
1597
+ {
1598
+ "mesh" : 3,
1599
+ "name" : "girl_model.006",
1600
+ "skin" : 0
1601
+ },
1602
+ {
1603
+ "children" : [
1604
+ 74,
1605
+ 75,
1606
+ 76,
1607
+ 77,
1608
+ 73
1609
+ ],
1610
+ "name" : "metarig.001"
1611
+ }
1612
+ ],
1613
+ "meshes" : [
1614
+ {
1615
+ "name" : "Cube.000",
1616
+ "primitives" : [
1617
+ {
1618
+ "attributes" : {
1619
+ "POSITION" : 0,
1620
+ "NORMAL" : 1,
1621
+ "TEXCOORD_0" : 2,
1622
+ "JOINTS_0" : 3,
1623
+ "WEIGHTS_0" : 4
1624
+ },
1625
+ "indices" : 5
1626
+ }
1627
+ ]
1628
+ },
1629
+ {
1630
+ "name" : "Cube.001",
1631
+ "primitives" : [
1632
+ {
1633
+ "attributes" : {
1634
+ "POSITION" : 7,
1635
+ "NORMAL" : 8,
1636
+ "TEXCOORD_0" : 9,
1637
+ "JOINTS_0" : 10,
1638
+ "WEIGHTS_0" : 11
1639
+ },
1640
+ "indices" : 12
1641
+ }
1642
+ ]
1643
+ },
1644
+ {
1645
+ "name" : "Cube.002",
1646
+ "primitives" : [
1647
+ {
1648
+ "attributes" : {
1649
+ "POSITION" : 13,
1650
+ "NORMAL" : 14,
1651
+ "TEXCOORD_0" : 15,
1652
+ "JOINTS_0" : 16,
1653
+ "WEIGHTS_0" : 17
1654
+ },
1655
+ "indices" : 18
1656
+ }
1657
+ ]
1658
+ },
1659
+ {
1660
+ "name" : "Cube.013",
1661
+ "primitives" : [
1662
+ {
1663
+ "attributes" : {
1664
+ "POSITION" : 19,
1665
+ "NORMAL" : 20,
1666
+ "TEXCOORD_0" : 21,
1667
+ "JOINTS_0" : 22,
1668
+ "WEIGHTS_0" : 23
1669
+ },
1670
+ "indices" : 24
1671
+ }
1672
+ ]
1673
+ }
1674
+ ],
1675
+ "skins" : [
1676
+ {
1677
+ "inverseBindMatrices" : 6,
1678
+ "joints" : [
1679
+ 73,
1680
+ 51,
1681
+ 50,
1682
+ 3,
1683
+ 2,
1684
+ 1,
1685
+ 0,
1686
+ 26,
1687
+ 25,
1688
+ 24,
1689
+ 23,
1690
+ 10,
1691
+ 6,
1692
+ 5,
1693
+ 4,
1694
+ 9,
1695
+ 8,
1696
+ 7,
1697
+ 14,
1698
+ 13,
1699
+ 12,
1700
+ 11,
1701
+ 18,
1702
+ 17,
1703
+ 16,
1704
+ 15,
1705
+ 22,
1706
+ 21,
1707
+ 20,
1708
+ 19,
1709
+ 49,
1710
+ 48,
1711
+ 47,
1712
+ 46,
1713
+ 33,
1714
+ 29,
1715
+ 28,
1716
+ 27,
1717
+ 32,
1718
+ 31,
1719
+ 30,
1720
+ 37,
1721
+ 36,
1722
+ 35,
1723
+ 34,
1724
+ 41,
1725
+ 40,
1726
+ 39,
1727
+ 38,
1728
+ 45,
1729
+ 44,
1730
+ 43,
1731
+ 42,
1732
+ 57,
1733
+ 56,
1734
+ 55,
1735
+ 53,
1736
+ 52,
1737
+ 54,
1738
+ 63,
1739
+ 62,
1740
+ 61,
1741
+ 59,
1742
+ 58,
1743
+ 60,
1744
+ 66,
1745
+ 65,
1746
+ 64,
1747
+ 69,
1748
+ 68,
1749
+ 67,
1750
+ 72,
1751
+ 71,
1752
+ 70
1753
+ ],
1754
+ "name" : "metarig.001"
1755
+ }
1756
+ ],
1757
+ "accessors" : [
1758
+ {
1759
+ "bufferView" : 0,
1760
+ "componentType" : 5126,
1761
+ "count" : 174,
1762
+ "max" : [
1763
+ 0.3229759633541107,
1764
+ 2.479024887084961,
1765
+ 0.2500482201576233
1766
+ ],
1767
+ "min" : [
1768
+ -0.35584747791290283,
1769
+ 2.17891526222229,
1770
+ -0.3078223466873169
1771
+ ],
1772
+ "type" : "VEC3"
1773
+ },
1774
+ {
1775
+ "bufferView" : 1,
1776
+ "componentType" : 5126,
1777
+ "count" : 174,
1778
+ "type" : "VEC3"
1779
+ },
1780
+ {
1781
+ "bufferView" : 2,
1782
+ "componentType" : 5126,
1783
+ "count" : 174,
1784
+ "type" : "VEC2"
1785
+ },
1786
+ {
1787
+ "bufferView" : 3,
1788
+ "componentType" : 5121,
1789
+ "count" : 174,
1790
+ "type" : "VEC4"
1791
+ },
1792
+ {
1793
+ "bufferView" : 4,
1794
+ "componentType" : 5126,
1795
+ "count" : 174,
1796
+ "type" : "VEC4"
1797
+ },
1798
+ {
1799
+ "bufferView" : 5,
1800
+ "componentType" : 5123,
1801
+ "count" : 582,
1802
+ "type" : "SCALAR"
1803
+ },
1804
+ {
1805
+ "bufferView" : 6,
1806
+ "componentType" : 5126,
1807
+ "count" : 74,
1808
+ "type" : "MAT4"
1809
+ },
1810
+ {
1811
+ "bufferView" : 7,
1812
+ "componentType" : 5126,
1813
+ "count" : 220,
1814
+ "max" : [
1815
+ 0.6375221014022827,
1816
+ 2.6366875171661377,
1817
+ 0.015253283083438873
1818
+ ],
1819
+ "min" : [
1820
+ -0.6375219225883484,
1821
+ 0.9614619016647339,
1822
+ -0.791330873966217
1823
+ ],
1824
+ "type" : "VEC3"
1825
+ },
1826
+ {
1827
+ "bufferView" : 8,
1828
+ "componentType" : 5126,
1829
+ "count" : 220,
1830
+ "type" : "VEC3"
1831
+ },
1832
+ {
1833
+ "bufferView" : 9,
1834
+ "componentType" : 5126,
1835
+ "count" : 220,
1836
+ "type" : "VEC2"
1837
+ },
1838
+ {
1839
+ "bufferView" : 10,
1840
+ "componentType" : 5121,
1841
+ "count" : 220,
1842
+ "type" : "VEC4"
1843
+ },
1844
+ {
1845
+ "bufferView" : 11,
1846
+ "componentType" : 5126,
1847
+ "count" : 220,
1848
+ "type" : "VEC4"
1849
+ },
1850
+ {
1851
+ "bufferView" : 12,
1852
+ "componentType" : 5123,
1853
+ "count" : 984,
1854
+ "type" : "SCALAR"
1855
+ },
1856
+ {
1857
+ "bufferView" : 13,
1858
+ "componentType" : 5126,
1859
+ "count" : 158,
1860
+ "max" : [
1861
+ 0.07448271661996841,
1862
+ 3.73846697807312,
1863
+ -0.48577940464019775
1864
+ ],
1865
+ "min" : [
1866
+ -0.07448271661996841,
1867
+ 2.0885844230651855,
1868
+ -1.1106956005096436
1869
+ ],
1870
+ "type" : "VEC3"
1871
+ },
1872
+ {
1873
+ "bufferView" : 14,
1874
+ "componentType" : 5126,
1875
+ "count" : 158,
1876
+ "type" : "VEC3"
1877
+ },
1878
+ {
1879
+ "bufferView" : 15,
1880
+ "componentType" : 5126,
1881
+ "count" : 158,
1882
+ "type" : "VEC2"
1883
+ },
1884
+ {
1885
+ "bufferView" : 16,
1886
+ "componentType" : 5121,
1887
+ "count" : 158,
1888
+ "type" : "VEC4"
1889
+ },
1890
+ {
1891
+ "bufferView" : 17,
1892
+ "componentType" : 5126,
1893
+ "count" : 158,
1894
+ "type" : "VEC4"
1895
+ },
1896
+ {
1897
+ "bufferView" : 18,
1898
+ "componentType" : 5123,
1899
+ "count" : 666,
1900
+ "type" : "SCALAR"
1901
+ },
1902
+ {
1903
+ "bufferView" : 19,
1904
+ "componentType" : 5126,
1905
+ "count" : 4315,
1906
+ "max" : [
1907
+ 1.3263639211654663,
1908
+ 4.314515113830566,
1909
+ 0.24647939205169678
1910
+ ],
1911
+ "min" : [
1912
+ -1.3263639211654663,
1913
+ -0.010138243436813354,
1914
+ -0.5554222464561462
1915
+ ],
1916
+ "type" : "VEC3"
1917
+ },
1918
+ {
1919
+ "bufferView" : 20,
1920
+ "componentType" : 5126,
1921
+ "count" : 4315,
1922
+ "type" : "VEC3"
1923
+ },
1924
+ {
1925
+ "bufferView" : 21,
1926
+ "componentType" : 5126,
1927
+ "count" : 4315,
1928
+ "type" : "VEC2"
1929
+ },
1930
+ {
1931
+ "bufferView" : 22,
1932
+ "componentType" : 5121,
1933
+ "count" : 4315,
1934
+ "type" : "VEC4"
1935
+ },
1936
+ {
1937
+ "bufferView" : 23,
1938
+ "componentType" : 5126,
1939
+ "count" : 4315,
1940
+ "type" : "VEC4"
1941
+ },
1942
+ {
1943
+ "bufferView" : 24,
1944
+ "componentType" : 5123,
1945
+ "count" : 20547,
1946
+ "type" : "SCALAR"
1947
+ }
1948
+ ],
1949
+ "bufferViews" : [
1950
+ {
1951
+ "buffer" : 0,
1952
+ "byteLength" : 2088,
1953
+ "byteOffset" : 0
1954
+ },
1955
+ {
1956
+ "buffer" : 0,
1957
+ "byteLength" : 2088,
1958
+ "byteOffset" : 2088
1959
+ },
1960
+ {
1961
+ "buffer" : 0,
1962
+ "byteLength" : 1392,
1963
+ "byteOffset" : 4176
1964
+ },
1965
+ {
1966
+ "buffer" : 0,
1967
+ "byteLength" : 696,
1968
+ "byteOffset" : 5568
1969
+ },
1970
+ {
1971
+ "buffer" : 0,
1972
+ "byteLength" : 2784,
1973
+ "byteOffset" : 6264
1974
+ },
1975
+ {
1976
+ "buffer" : 0,
1977
+ "byteLength" : 1164,
1978
+ "byteOffset" : 9048
1979
+ },
1980
+ {
1981
+ "buffer" : 0,
1982
+ "byteLength" : 4736,
1983
+ "byteOffset" : 10212
1984
+ },
1985
+ {
1986
+ "buffer" : 0,
1987
+ "byteLength" : 2640,
1988
+ "byteOffset" : 14948
1989
+ },
1990
+ {
1991
+ "buffer" : 0,
1992
+ "byteLength" : 2640,
1993
+ "byteOffset" : 17588
1994
+ },
1995
+ {
1996
+ "buffer" : 0,
1997
+ "byteLength" : 1760,
1998
+ "byteOffset" : 20228
1999
+ },
2000
+ {
2001
+ "buffer" : 0,
2002
+ "byteLength" : 880,
2003
+ "byteOffset" : 21988
2004
+ },
2005
+ {
2006
+ "buffer" : 0,
2007
+ "byteLength" : 3520,
2008
+ "byteOffset" : 22868
2009
+ },
2010
+ {
2011
+ "buffer" : 0,
2012
+ "byteLength" : 1968,
2013
+ "byteOffset" : 26388
2014
+ },
2015
+ {
2016
+ "buffer" : 0,
2017
+ "byteLength" : 1896,
2018
+ "byteOffset" : 28356
2019
+ },
2020
+ {
2021
+ "buffer" : 0,
2022
+ "byteLength" : 1896,
2023
+ "byteOffset" : 30252
2024
+ },
2025
+ {
2026
+ "buffer" : 0,
2027
+ "byteLength" : 1264,
2028
+ "byteOffset" : 32148
2029
+ },
2030
+ {
2031
+ "buffer" : 0,
2032
+ "byteLength" : 632,
2033
+ "byteOffset" : 33412
2034
+ },
2035
+ {
2036
+ "buffer" : 0,
2037
+ "byteLength" : 2528,
2038
+ "byteOffset" : 34044
2039
+ },
2040
+ {
2041
+ "buffer" : 0,
2042
+ "byteLength" : 1332,
2043
+ "byteOffset" : 36572
2044
+ },
2045
+ {
2046
+ "buffer" : 0,
2047
+ "byteLength" : 51780,
2048
+ "byteOffset" : 37904
2049
+ },
2050
+ {
2051
+ "buffer" : 0,
2052
+ "byteLength" : 51780,
2053
+ "byteOffset" : 89684
2054
+ },
2055
+ {
2056
+ "buffer" : 0,
2057
+ "byteLength" : 34520,
2058
+ "byteOffset" : 141464
2059
+ },
2060
+ {
2061
+ "buffer" : 0,
2062
+ "byteLength" : 17260,
2063
+ "byteOffset" : 175984
2064
+ },
2065
+ {
2066
+ "buffer" : 0,
2067
+ "byteLength" : 69040,
2068
+ "byteOffset" : 193244
2069
+ },
2070
+ {
2071
+ "buffer" : 0,
2072
+ "byteLength" : 41094,
2073
+ "byteOffset" : 262284
2074
+ }
2075
+ ],
2076
+ "buffers" : [
2077
+ {
2078
+ "byteLength" : 303380,
2079
+ "uri" : "index.bin"
2080
+ }
2081
+ ]
2082
+ }