diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 17df945..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,212 +0,0 @@ -name: Build CLI - -on: - push: - branches: - - main - paths-ignore: - - '**.md' - pull_request: - branches: - - main - paths-ignore: - - '**.md' - -jobs: - build: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-16.04, macos-latest, ubuntu-latest] - include: - - os: ubuntu-16.04 - arch: linux - zip_name: cleanmodels-cli.linux.amd64 - executable: cleanmodels-cli - swipl-executable: swipl - - os: macos-latest - arch: macosx - zip_name: cleanmodels-cli.macosx.amd64 - executable: cleanmodels-cli - swipl-executable: swipl - - os: ubuntu-latest - arch: windows - zip_name: cleanmodels-cli.windows.amd64 - executable: cleanmodels-cli.exe - swipl-executable: swipl.exe - toolchain: -D CMAKE_TOOLCHAIN_FILE=cmake/cross/linux_win64.cmake - - name: Building ${{ matrix.zip_name }} - - steps: - - uses: actions/checkout@v2 - - name: Checkout SWI-Prolog - uses: actions/checkout@v2 - with: - repository: plenarius/swipl - path: ./swipl - - - name: Set outputs - id: vars - run: | - echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" - - - name: Update Embedded Version String with sha code - run: sed -i'.bak' -e "s:version('\(.*\)')\.:version\('\1 [${{ steps.vars.outputs.sha_short }}]'\)\.:g" cleanmodels.pl - - - name: Install Ubuntu Build Dependencies - if: matrix.arch == 'linux' - run: sudo apt-get install ninja-build - - - name: Install MacOS Build Dependencies - if: matrix.arch == 'macosx' - run: brew install ninja - - - name: Install Windows Build Dependencies - if: matrix.arch == 'windows' - run: | - sudo dpkg --add-architecture i386 - sudo apt-get update - sudo apt-get install wine-stable wine-binfmt - sudo apt-get install ninja-build mingw-w64 libz-mingw-w64-dev - sudo ln -s /usr/lib/gcc/x86_64-w64-mingw32/?.?-win32/libgcc_s_seh-1.dll /usr/x86_64-w64-mingw32/lib/libgcc_s_seh-1.dll - sudo update-binfmts --import /usr/share/binfmts/wine - - - name: Create Build Environment - run: cmake -E make_directory ./swipl/build - - - name: Configure CMake - env: - MINGW64_ROOT: /usr/x86_64-w64-mingw32/ - working-directory: ./swipl - shell: cmake -P {0} - run: | - set(ENV{PATH} "$ENV{GITHUB_WORKSPACE}:$ENV{PATH}") - execute_process( - COMMAND cmake ${{ matrix.toolchain }} - -B build - -S . - -D CMAKE_BUILD_TYPE=Release - -D USE_GMP=OFF - -D USE_TCMALLOC=OFF - -D SWIPL_SHARED_LIB=OFF - -D SWIPL_PACKAGES=OFF - -D INSTALL_DOCUMENTATION=OFF - -D MULTI_THREADED=OFF - -D BUILD_SWIPL_LD=OFF - -D BUILD_TESTING=OFF - -G Ninja - RESULT_VARIABLE result - ) - if (NOT result EQUAL 0) - message(FATAL_ERROR "Bad exit status") - endif() - - - name: Build SWI Prolog - shell: cmake -P {0} - working-directory: ./swipl/build - run: | - execute_process( - COMMAND ninja - RESULT_VARIABLE result - ) - if (NOT result EQUAL 0) - message(FATAL_ERROR "Build failed") - endif() - - - name: Build Clean Models CLI - shell: bash - run: ./swipl/build/src/${{ matrix.swipl-executable }} -g go --stand_alone --foreign=save -o ${{ matrix.executable }} -c cleanmodels.pl - - - name: Restore Resource Hacker from Cache - if: matrix.arch == 'windows' - id: resourcehacker - uses: actions/cache@v1 - with: - path: resourcehacker - key: resourcehacker - - - name: Install Resource Hacker - if: | - matrix.arch == 'windows' && - steps.resourcehacker.outputs.cache-hit != 'true' - run: | - mkdir resourcehacker - cd resourcehacker - wget http://www.angusj.com/resourcehacker/resource_hacker.zip - unzip resource_hacker.zip - - - name: Update Windows Resource File - env: - TERM: dumb - if: matrix.arch == 'windows' - run: | - xvfb-run --server-args="-screen 0, 1280x720x24" -a \ - wineconsole --backend=curses ".\resourcehacker\ResourceHacker.exe" -open ".\build\cleanmodels-cli.rc" -save ".\cleanmodels-cli.res" -action compile -log CON - - - name: Update Windows Executable - env: - TERM: dumb - if: matrix.arch == 'windows' - run: | - xvfb-run --server-args="-screen 0, 1280x720x24" -a \ - wineconsole --backend=curses ".\resourcehacker\ResourceHacker.exe" -open ".\${{ matrix.executable }}" -save ".\temp.exe" -action addoverwrite -res ".\cleanmodels-cli.res" -mask ,,, - mv temp.exe ${{ matrix.executable }} - - - name: Compress - run: | - mkdir zips - zip ${{ github.workspace }}/zips/${{ matrix.zip_name }}.zip ${{ matrix.executable }} last_dirs.pl - - - name: Upload Binaries - uses: actions/upload-artifact@v2 - if: github.event_name == 'push' - with: - path: ${{ github.workspace }}/zips - name: ${{ matrix.zip_name }}.zip - - release: - name: Uploading Release - needs: build - runs-on: ubuntu-latest - if: github.event_name == 'push' - steps: - - uses: actions/checkout@v2 - - - name: Set outputs - id: vars - run: | - echo "::set-output name=version::$(grep version\(\' cleanmodels.pl | cut -d" " -f4 | cut -d"'" -f1)" - - - name: Download Artifacts - uses: actions/download-artifact@v2 - with: - path: ${{ github.workspace }}/zips - - - name: Tag With Version and Release - uses: "marvinpinto/action-automatic-releases@latest" - if: github.event_name == 'push' - with: - repo_token: "${{ secrets.GITHUB_TOKEN }}" - automatic_release_tag: "build${{ steps.vars.outputs.version }}-HEAD" - prerelease: false - draft: false - title: "build${{ steps.vars.outputs.version }}-HEAD" - files: | - ./zips/cleanmodels-cli.linux.amd64.zip - ./zips/cleanmodels-cli.macosx.amd64.zip - ./zips/cleanmodels-cli.windows.amd64.zip - - - name: Tag With Latest and Release - uses: "marvinpinto/action-automatic-releases@latest" - if: github.event_name == 'push' - with: - repo_token: "${{ secrets.GITHUB_TOKEN }}" - automatic_release_tag: "latest" - prerelease: false - draft: false - title: "build${{ steps.vars.outputs.version }}-HEAD" - files: | - ./zips/cleanmodels-cli.linux.amd64.zip - ./zips/cleanmodels-cli.macosx.amd64.zip - ./zips/cleanmodels-cli.windows.amd64.zip \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..3a6f627 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,137 @@ +name: CI + +on: + push: + branches: [main, v4-go-rewrite] + tags: ["v*"] + pull_request: + branches: [main] + +permissions: + contents: read + +jobs: + test: + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v6 + - uses: actions/setup-go@v6 + with: + go-version-file: go.mod + cache: false + + - name: Vet + run: go vet ./... + + - name: Test + run: go test -race -count=1 ./... + + release: + if: startsWith(github.ref, 'refs/tags/v') + needs: test + runs-on: ubuntu-latest + permissions: + contents: write + strategy: + matrix: + include: + - goos: linux + goarch: amd64 + - goos: linux + goarch: arm64 + - goos: darwin + goarch: amd64 + - goos: darwin + goarch: arm64 + - goos: windows + goarch: amd64 + steps: + - uses: actions/checkout@v6 + - uses: actions/setup-go@v6 + with: + go-version-file: go.mod + cache: false + + - name: Build + env: + GOOS: ${{ matrix.goos }} + GOARCH: ${{ matrix.goarch }} + CGO_ENABLED: "0" + VERSION_TAG: ${{ github.ref_name }} + CLIENT_KEY: ${{ secrets.REPORT_CLIENT_KEY }} + run: | + EXT="" + if [ "${GOOS}" = "windows" ]; then EXT=".exe"; fi + go build -trimpath \ + -ldflags="-s -w -X main.version=${VERSION_TAG} -X main.clientKey=${CLIENT_KEY}" \ + -o "cleanmodels-${GOOS}-${GOARCH}${EXT}" \ + ./cmd/cleanmodels + + - name: Compress + run: | + EXT="" + if [ "${{ matrix.goos }}" = "windows" ]; then EXT=".exe"; fi + ARCHIVE="cleanmodels-${{ matrix.goos }}-${{ matrix.goarch }}.zip" + zip "${ARCHIVE}" "cleanmodels-${{ matrix.goos }}-${{ matrix.goarch }}${EXT}" + + - name: Upload artifact + uses: actions/upload-artifact@v6 + with: + name: cleanmodels-${{ matrix.goos }}-${{ matrix.goarch }} + path: "*.zip" + + wasm: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - uses: actions/setup-go@v6 + with: + go-version-file: go.mod + cache: false + + - name: Build cleanmodels.wasm + env: + GOOS: js + GOARCH: wasm + VERSION_TAG: ${{ github.ref_name }} + run: | + mkdir -p dist/wasm + go build -trimpath \ + -ldflags="-s -w -X main.version=${VERSION_TAG}" \ + -o dist/wasm/cleanmodels.wasm \ + ./cmd/cleanmodels-wasm + cp "$(go env GOROOT)/lib/wasm/wasm_exec.js" dist/wasm/wasm_exec.js + ls -la dist/wasm/ + + - name: Package wasm bundle + if: startsWith(github.ref, 'refs/tags/v') + working-directory: dist/wasm + run: zip ../../cleanmodels-wasm.zip cleanmodels.wasm wasm_exec.js + + - name: Upload wasm artifact + if: startsWith(github.ref, 'refs/tags/v') + uses: actions/upload-artifact@v6 + with: + name: cleanmodels-wasm + path: cleanmodels-wasm.zip + + publish: + if: startsWith(github.ref, 'refs/tags/v') + needs: [release, wasm] + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Download all artifacts + uses: actions/download-artifact@v7 + with: + merge-multiple: true + + - name: Create release + uses: softprops/action-gh-release@v3 + with: + generate_release_notes: true + files: "*.zip" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bbbdb75 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +# Binaries +/cleanmodels +/cleanmodels.exe +dist/ + +# Test output +*.test +coverage.out + +# IDE +.idea/ +.vscode/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Dependency +vendor/ diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..b505f31 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,38 @@ +# cleanmodels + +Go library and CLI for parsing, validating, repairing, and compiling NWN:EE MDL model files. Paired with [cleanmodels-qt](https://github.com/plenarius/cleanmodels-qt) as its desktop GUI. + +## Design Context + +### Users +NWN community modders who build, fix, and maintain 3D model files (.mdl) for Neverwinter Nights: Enhanced Edition. These users range from experienced 3D artists to module builders with limited technical background. They work in a pipeline that includes 3D editors (NWMax/Blender), the game's toolset, and cleanmodels as the quality gate before assets ship. + +### Brand Personality +**Fast, precise, flexible.** The tool should feel like a sharp instrument — quick to produce correct results, trustworthy in its output, and accommodating of the wide variety of models found in the NWN community (old, malformed, hand-edited, tool-exported). It never corrupts data and always explains what it changed. + +### Aesthetic Direction +- **Go library API**: Follow Go stdlib conventions. Simple public API surface. Zero external dependencies is a hard requirement. +- **Anti-references**: Not a framework, not a plugin system, not a kitchen sink. NWN MDL only. + +### CLI UX Direction + +**Audience**: All paths — modders running one-offs from a terminal, shell scripts automating batch jobs, CI pipelines validating models, and as the Qt GUI backend via JSON-lines. + +**Emotional goal**: Confident + informed. The user trusts the tool completely and understands exactly what it did and why. + +**Output personality**: Speaks when it has something to say. Never chatty, never cute. Color-coded severity when outputting to a TTY (auto-detect); plain text when piped. Errors include context (file, offset, what was expected vs found) and suggestions when actionable ("this looks like a binary MDL — did you mean --decompile?"). + +**Batch output**: Per-file streaming progress — the user watches it work through the list. Summary at the end. + +**Help structure**: Subcommands (`cleanmodels check`, `cleanmodels compile`, `cleanmodels repair`) instead of 60+ flat flags. Each subcommand has its own focused flag set. Common flags (--json, --json-lines, --quiet, --verbose, --workers) shared across subcommands. + +**Anti-references**: No ASCII art banners, no emoji, no "oopsie" language, no walls of text, no progress bars for sub-second operations. Not enterprise-verbose either — no XML, no Java stack traces, no config file ceremony. + +**Machine output**: JSON-lines (NDJSON) is the contract with the Qt GUI. `--json` for single structured results. Both must be stable, parseable, and complete (every fix, warning, check result included). + +### Design Principles +1. **Speed is a feature** — The legacy Prolog tool was too slow. Every operation should feel instant on single models, and batch processing should saturate I/O, not CPU. +2. **Correctness over convenience** — Binary output must match the game's own compiler. Checks should catch real issues, not generate noise. When in doubt, preserve the original data. +3. **Approachable complexity** — Deep options exist (pivot repair, tilefade slicing, walkmesh material remapping) but the default "all fixes" path should produce a good result without configuration. Subcommands group complexity so the common path is simple. +4. **Explain what changed** — Every fix, warning, and repair should produce a human-readable message. The JSON-lines protocol is the contract between CLI and GUI. +5. **Stay focused** — NWN MDL files only. No scope creep into other formats, game engines, or unrelated tooling. diff --git a/CLEAN.md b/CLEAN.md new file mode 100644 index 0000000..e9478ea --- /dev/null +++ b/CLEAN.md @@ -0,0 +1,195 @@ +# Clean pipeline + +`cleanmodels check` and `cleanmodels repair` are the validation and auto-fix +half of the toolchain. `check` runs read-only diagnostics; `repair` runs the +same diagnostics with `fix=true` so the registered fixers can mutate the +model, plus a set of optional structural/tile/placeable transforms that live +outside the check registry. Together they're what we mean by "cleaning" a +model. + +We try to be honest about what we cover, what we just warn about, and where +we differ from the legacy Prolog tool. Expect drift in edge cases — file an +issue with a minimal reproducing fixture if you hit one. + +## CLI surface + +``` +cleanmodels check [flags] +cleanmodels repair [flags] +``` + +Both accept a single file or a directory (recursive with `--recursive`). +`check` runs every check in the registry with `fix=false`. `repair` runs the +same checks with `fix=true` and additionally applies whichever optional +transforms are enabled by flag. Pass `--dry-run` to repair to see what would +change without writing anything. + +Checks can be selected explicitly: + +``` +--include-check geometry.foo,parameters.bar +--exclude-check tiles.x +``` + +These take comma-separated check names; the empty set means "all". + +`cleanmodels-qt` (the Qt frontend) exposes the same checks as a tree of +selectable items — same registry on both sides, no separate wiring. + +## What runs in the registry + +48 checks live in [pkg/checks/](pkg/checks/), grouped by file: + +- **structural.go** (9 checks) — root/dummy invariants, parent links, name +uniqueness, name length, supermodel reference, classification. +- **geometry.go** (9 checks) — vertex/face counts, degenerate faces, +multi-edges, normals, AABB tree shape, walkmesh material clamping. +- **parameters.go** (9 checks) — alpha/diffuse/specular ranges, tex slot +counts, materialname / texture resref length validation, render hint +validity. +- **node_types.go** (7 checks) — node-type-specific field validation +(rotatetexture only on tiles, danglymesh-required fields, etc.). +- **emitters.go** (7 checks) — emitter percent ranges, blend/render/update +string validity, particle limits, lifetime sanity. +- **animations.go** (4 checks) — controller key time ordering, animation +length, transtime, animroot reference. +- **tiles.go** (3 checks) — tile classification implications: walkmesh +presence, day2night/night2day length floor, tilefade Z constraints. + +Each check returns a list of `CheckResult` values; running with `fix=true` +asks each check to mutate the model in place when it can. Some checks are +diagnostic-only (e.g. parameter range warnings); those are noted in the +result message. + +## What `repair` does on top of the checks + +Repair-only operations live in `pkg/mdl/repair_*.go` and are guarded by +explicit flags. They are not run by `check` and are not part of the registry: + +- **Geometric repairs** — `--strip-degenerate`, `--split-multi-edge`, +`--snap-vertices`, `--scale`, `--scale-x/-y/-z`. +- **Pivot/structure** — `--fix-pivots`, `--fix-aabb`, `--reparent-children`, +`--wrap-root`. +- **Tile-specific transforms** — `--tilefade-z`, `--retile-water`, +`--retile-ground`, `--rotate-water`, `--rotate-ground`, `--raise`, +`--lower`, `--chamfer`, `--water` + `--dynamic-water`, +`--foliage`, `--splotch`. +- **Placeable transforms** — `--placeable-transparency`, +`--standardize-texture0`, `--strip-ee-extras`. +- **Material/render overrides** — `--render-override`, `--shadow-override`, +`--force-white`, `--merge-by-bitmap`, `--cull-invisible`. +- **Walkmesh** — `--remap-walkmesh-material FROM:TO`. +- **Tilefade undo** — `--tilefade-undo`. +- **Animation length floor** — `--fix-animations`. + +Each of these returns a list of human-readable messages summarising what was +done; they go straight into the JSON `repairs` array per file. + +### Chamfer + +`--chamfer add` walks every mesh node, projects vertices into world space via +the parent chain, finds open boundary edges sitting on `X = ±5` or +`Y = ±5` whose face normal points roughly upward, and synthesises two +"Rosenkrantz Chamfer" triangles per edge. The new triangles are tagged with +smoothing group `1048576` and material `21` so they can be deleted again +later; vertex coordinates are offset 3 cm outward and 3 cm down. The world → +local back-projection means chamfering on a non-tile-aligned mesh inside a +nested transform chain still snaps to the tile grid. + +`--chamfer delete` is the inverse: every face whose smoothing group is +`1048576` and whose world-space geometry matches one of the chamfer patterns +in `is_chamfer/3` (axis-aligned or corner-aligned, off-axis vertex within +1–5 cm of the boundary) is removed. Vertices and tverts that no remaining +face references are then dropped, and per-vertex normals/colors/tangents/ +weights/dangly constraints are compacted in lockstep. + +Implementation lives in `pkg/mdl/repair_chamfer.go` and +`pkg/mdl/repair_chamfer_add.go`; the world-space transform composer is +`pkg/mdl/transforms.go`, half-edge enumeration is `pkg/mdl/halfedge.go`. + +### Dynamic water + +`--water` flags a node as a water plane (matched against the bitmap key list +plus the eight stock `shiny_water` bitmaps). `--dynamic-water` then chooses +how the flagged node should behave: + +- `**yes`** — leave the existing animmesh intact (no-op). +- `**no`** — drop the `AnimMeshData` (sampleperiod, animverts, animtverts, +clip rect) so the node serialises as a plain trimesh. Flat, static water. +- `**wavy`** — tessellate the plane to a 2 m pitch, weld the resulting +duplicate vertices, ensure a `default` 10 s animation exists, and emit +six per-vertex keyframes (`v, v', v'', v''', v'''', v`) into `animverts`, +with `Z`-perturbations driven by the legacy `perturb/12` polynomial. UVs +are static across frames. The per-tile wave amplitudes come from a +seeded RNG keyed on `model_name + node_name` so two runs over the same +input produce byte-identical output. + +For `wavy`, the pre-pass also bakes the node's local transform chain into +the vertex positions and reparents the node directly under the model root, +matching the legacy raise-to-tile + zero-orientation + zero-position +sequence. This is needed because the perturb function operates in tile-local +coordinates. + +Implementation: `pkg/mdl/repair_water.go`. Tessellator and welder are +shared utilities (`pkg/mdl/tessellate.go`, `pkg/mdl/weld.go`). + +## Testing strategy + +- Unit tests for every individual repair: see `pkg/mdl/repair_*_test.go`. +These build small synthetic meshes with hand-crafted edge cases and +assert post-conditions on vertex / face counts, indices, controllers, and +AABB structure. +- Integration tests for the check registry: `pkg/checks/*_test.go` walk the +fixture sets in `tests/fixtures/`. + - `tests/fixtures/clean/` (5 files): models that pass every registered + check. Adding new checks should not require changing these fixtures. + - `tests/fixtures/broken/` (7 files): models that intentionally trip a + specific check; each fixture is paired with the exact check it should + fire. +- Determinism tests for the new repairs that involve any randomness: +`TestApplyWavyWater_Deterministic` runs the wavy-water generator twice +on the same input and asserts byte-identical animvert output. +- The `compile` / `decompile` oracle suites (see `COMPILE.md`, +`DECOMPILE.md`) indirectly exercise some of the repair paths because +several repairs run before compile in the end-to-end test harness. + +## Known divergences from the legacy Prolog tool + +- **Welder**: the legacy welder buckets vertices by a hash of position + +weight + constraint + color, and refuses to merge two vertices when +their averaged face normals are nearly opposite (dot < −0.9, the +back-of-thin-sheet case). We do bit-exact position welding by default and +expose `WeldOptions.PreserveOpposite` for callers that want the normal +divergence guard. The wavy-water repair turns it off because water is a +flat plane; for general re-welding callers should set it. +- `**weld_tverts`** (legacy) and the Prolog `recompute_normals` step are +not yet ported — the welder doesn't touch the UV index space, and we +rely on `compiler_normals.go` to regenerate per-corner normals during +compile when smoothing groups are present. +- `**make_midpoint_tvert`** in the legacy tessellator dedupes against +existing TVerts; we don't, so a heavily tessellated water plane produces +more TVerts than the Prolog version. Visually identical, slightly +larger MDX block. +- **Chamfer patterns**: legacy `is_chamfer/3` enumerates 24 explicit +rotations (3 vertex permutations × 8 boundary cases). We collapse those +into two predicates (`isChamferAxisAligned`, `isChamferCornerAligned`) +iterated over 3 vertex permutations × 8 boundary signs. Coverage should +be identical; if you hit a chamfer that survives `--chamfer delete`, +please file an issue with the offending face. + +## Known gaps + +- The Prolog tool has a small "MDL ASCII repair" step that fixes +whitespace and parameter ordering on the way in. We rely on the parser +being permissive and the writer being canonical instead, so there's no +separate ASCII-cleaning pass. +- `--chamfer add` is conservative about face normal: we require the cross +product of `(V2-V1, V3-V1)` to point upward (`Z > 0.866`) and have +small horizontal component perpendicular to the boundary. Faces wound +the other way (CCW vs CW) won't qualify. The legacy code also requires +this, but it's worth knowing if you have a tile that uses non-standard +face winding. +- Multi-channel UV welding: we don't currently weld TVerts1/2/3. If you +use those channels and want them re-welded after a repair, file an +issue with a sample. + diff --git a/COMPILE.md b/COMPILE.md new file mode 100644 index 0000000..52e7704 --- /dev/null +++ b/COMPILE.md @@ -0,0 +1,267 @@ +# Compile pipeline + +`cleanmodels compile` turns an ASCII `.mdl` file into the binary, MDX-paired +form NWN:EE loads at runtime. The intent is to produce output that the engine +treats as interchangeable with what its own internal compiler would emit from +the same source — so a hak built from `cleanmodels`-compiled binaries doesn't +need the engine to recompile anything at load time. + +We don't claim byte-for-byte equality with the game compiler. We do try to +match it semantically, and we have a test harness that diffs against +game-compiled binaries to catch drift. + +## CLI surface + +``` +cleanmodels compile [flags] [output] +``` + +Compile is intentionally narrow: it parses ASCII, runs the binary writer, and +writes the result. It doesn't repair or validate — for that, run +`cleanmodels check` or `cleanmodels repair` first (or chain them with `--fix` +on `check` / `--all` on `repair`). Pointing it at a directory batch-compiles +every `.mdl` inside. + +The compile path is also reachable as part of an end-to-end ASCII → repair → +binary flow when `compile=true` is set after a `repair` invocation; see +`[cmd/cleanmodels/process.go](cmd/cleanmodels/process.go)`. + +## File layout we produce + +``` +[ 0 .. 11 ] header_file: {0, core_len, mdx_len} +[12 .. 12+core_len-1] core block: model header + node tree + animations +[12+core_len .. EOF] MDX block: per-GPU-vertex streams (positions, + UVs, normals, colors, tangents, + bitangents, skin weights) +``` + +Pointers in the file come in two flavours: + +- **Core-relative** `p` → file offset `12 + p` +- **MDX-relative** `p` → file offset `12 + core_len + p` + +These conventions are inherited from the format itself (xoreos `NWN1MDL.bt` +binary template) and are reflected one-to-one in the compiler: +`pkg/mdl/compiler.go` writes everything via a `patchBuf` so we can reserve a +4-byte placeholder, write the data it should point to, and patch the offset +back into the right slot. Every read in `binary.go` mirrors a write here. + +## Compilation order + +1. **Pre-pass** — `assignNodeIDs` walks the geometry tree iteratively (DFS, + cycle-guarded by a visited set) and gives every node a sequential part + number. Skin nodes need stable part numbers to encode bone references. +2. **Geometry header** — `header_geometry` (112 bytes) + `header_model` (120 + bytes) + animation pointer array. Animation list pointers are written as + placeholders and patched once each animation's core offset is known. +3. **Geometry node tree** — `writeNode` walks DFS; each node writes its + own 112-byte `header_node`, type-specific sub-headers (mesh, skin, dangly, + AABB, light, emitter, reference), then deferred face/MDX data, then its + children. +4. **Animation blocks** — `writeAnimation` per animation, each with its own + `header_animation` and an animation-node tree. Animation nodes reuse + geometry node IDs so bone references stay consistent. +5. **File header** — `{0, core_len, mdx_len}` is written last with the final + buffer sizes, then `core` and `vol` are appended. + +The trickiest part is ordering inside a mesh node. Type-specific sub-headers +(skin, dangly, AABB) must sit at fixed offsets the decompiler expects. To +avoid them being shifted by variable-length face data, the compiler defers +the face array write until after all sub-headers, and patches the faces +pointer back into the placeholder slot it left in the mesh header. + +## Mesh compilation + +`writeMeshHeaderInner` (`[compiler_mesh.go](pkg/mdl/compiler_mesh.go)`) does +the heavy lifting: + +1. **Generate normals if missing** — `generateNormals` in + `[compiler_normals.go](pkg/mdl/compiler_normals.go)` follows + nwnmdlcomp's algorithm: sum unnormalised face normals across faces that + share a vertex AND have overlapping smoothing-group bits, then normalise. + We skip generation when the mesh already carries per-vertex normals. +2. **Build expanded mesh** — `buildExpandedMesh` deduplicates vertices into + GPU vertices (one per unique attribute combination). The dedup key + includes: + - Position bits, UV0/UV1/UV2/UV3 bits, normal bits, color bits + - **Material index** of the originating face + - **Smoothing group** of the originating face + The material/SG fields aren't obvious — they're there because the game + compiler splits at material and smoothing-group boundaries even when + the rest of the attributes match. Without them, multi-material body parts + over-merge by 30–50%, which then perturbs Mikktspace tangents at the + boundaries (see "Known divergences" below). +3. **Resolve tangents** — `resolveTangents` in + `[compiler_tangents.go](pkg/mdl/compiler_tangents.go)` decides what to + write into the tangent / bitangent MDX streams. Three cases: + - `mesh.Tangents` already populated (parsed from ASCII or recovered by + the decompiler) and covers every GPU vertex → expand and split into + tangent/bitangent. Authored handedness is preserved. + - Mesh declares `RenderHint NormalAndSpecMapped` and has UVs + + normals → generate via `generateTangents` (Mikktspace, accumulated in + float64 for stability, Gram–Schmidt orthogonalised against the vertex + normal, with a fallback orthogonal axis when the accumulated tangent + collapses to zero). + - Otherwise → leave both MDX pointers at `-1` ("not present"). The + engine still works; it just regenerates them at load. +4. **Write the 512-byte mesh header** — fixed offsets, every field mirrored + from the read in `binary.go readMeshHeader`. Pointers to + positions / UVs / normals / colors / tangents / bitangents are + placeholders, patched after each block is written into MDX. +5. **Append vertex streams to MDX** — positions, then UVs (per stage), + normals, RGBA colors (4 bytes each), tangents (Vec3), bitangents (Vec3). + The tangent/bitangent split mirrors what the decompiler reconstructs into + `Vec4{tangent.xyz, w=sign(dot(cross(n, t), bitangent))}`. + +## Faces, AABB, skin, danglymesh + +- **Faces** are written by `writeMeshFaceData` after all sub-headers are +emitted. Each face record carries the recomputed face normal and plane +distance, the material index, three legacy `0xFFFF` slots, and the three +GPU vertex indices. +- **AABB walkmesh** trees come from `RebuildAABB` (in `pkg/mdl/repair_walkmesh.go`) +if the user asked for it, or are read from ASCII as-is. Tree topology +(split order) may differ from the game's median-split, but pathing and +collision are unaffected because the same faces end up in the same leaves. +- **Skin** writes per-bone weights into MDX after positions/UVs/normals; +bone references are resolved through the part-number map populated in +the pre-pass. +- **Danglymesh** constraints are written after the mesh header so they sit at +the offset the decompiler expects. + +## Tangent generation, in detail + +The Mikktspace-style accumulation is straightforward: + +``` +For each triangle: + e1 = p1 - p0; e2 = p2 - p0 + du1 = uv1 - uv0; du2 = uv2 - uv0 + r = 1 / (du1.x * du2.y - du2.x * du1.y) + t = (e1 * du2.y - e2 * du1.y) * r + b = (e2 * du1.x - e1 * du2.x) * r + Accumulate t, b into each of the triangle's 3 vertices. + +For each vertex: + t = normalize(t - n * dot(n, t)) // Gram-Schmidt + cross_nt = cross(n, t) + w = sign(dot(cross_nt, accumulated_b)) + bitangent = cross_nt * w +``` + +Edge cases handled in code: degenerate UV triangles (skipped), zero-length +accumulated tangent (fall back to an arbitrary axis perpendicular to the +normal), degenerate normal (fall back to `+X`). + +Why we write the bitangent explicitly even though it's reconstructible: +because the decompiler needs it to recover `W` handedness without ambiguity. +`binary.go readMDXTangents` reads both Vec3 streams and computes +`w = sign(dot(cross(n, t), b))` to populate `Vec4.W`. Without the bitangent +stream we'd have to pick a fixed handedness convention, and any model with +mirrored UVs would render incorrectly. + +## How we test it + + +| Layer | Tests | What they catch | +| -------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | +| **Unit** — algorithms | `TestGenerateTangentsSimpleQuad`, `TestGenerateTangentsNoUVs`, `TestGenerateTangentsDegenerateUVs`, `TestCompilerHeaderSizes`, `TestMeshHeaderSize` | Header byte layouts, tangent direction on known geometry, NaN/inf handling | +| **Roundtrip** — compile → decompile preserves data | `TestRoundtripDummy`, `TestRoundtripTrimesh`, `TestRoundtripAnimation`, `TestRoundtripLight`, `TestRoundtripEmitter`, `TestRoundtripDanglymesh`, `TestRoundtripSkin`, `TestRoundtripReference`, `TestRoundtripAlphaZero`, `TestRoundtripAlphaDefault`, `TestRoundtripAnimationControllers`, `TestRoundtripEmitterControllerOrder`, `TestRoundtripNodeNameCase`, `TestRoundtripTangentsNormalSpecMapped`, `TestRoundtripNoTangentsWithoutUVs`, `TestRoundtripPreservesAuthoredTangents`, `TestRoundtripGeometryPreserved` | We can read back what we wrote without losing fields | +| **Batch** — compile a folder | `TestBatchCompilePlaceables`, `TestBatchCompileDecompiled`, `TestOracleCompileAll` | Real-world ASCII files don't crash the compiler; output is decodable | +| **Oracle** — diff against game-compiled binaries | `TestOracleCompare`, `TestOracleVertexParity`, `TestOracleTangents` | Our output matches what NWN:EE itself produces | + + +The oracle suite is the strongest signal we have. It compares our binary +output against binaries the game compiler produced from the same ASCII +sources. The fixtures and methodology live in +`[tests/fixtures/oracle/README.md](tests/fixtures/oracle/README.md)`. + +### Oracle coverage today + +26 fixture pairs in `ascii/` ↔ `game_binary/`, plus 18 tangent pairs. +Coverage spans: + +- Static placeables and UI assets (perfect-parity baselines) +- Tileset tiles with AABB walkmeshes +- Character body parts (head, neck, torso) — exercises skin +- Dangly meshes (`squid`, `c_marilithe`, `plc_guillo2`, `c_marilith2`) +- Emitters (`zlc_o23`, `c_elemashm`, `PLC_D01`, `c_marilith2`) +- Lights (`plc_dd27`, `plc_nc03`) +- Animations (1 anim → 67 anims across the suite) +- Hak-sourced ASCII overrides (Layonara `wsf10` tiles, `tin01` stair tiles) + +What `TestOracleVertexParity` enforces: per-mesh-node GPU vertex count +matches the game **exactly** unless the divergence is recorded in +`vertParityBaseline`. New fixtures default to strict equality, so a +regression in dedup behaviour fails loudly. Stale baseline entries also fail +the test, which keeps the baseline honest. + +What `TestOracleTangents` enforces: mean `|dot(ourTangent, gameTangent)|` +across all matched face corners must clear **0.96**, and the bad-corner +ratio (`|dot| < 0.5`) must stay below **5%**. The empirical floor across +the current fixture set is 0.969 mean alignment. + +## Known divergences (intentional, not bugs) + +These show up as documented baseline entries in `vertParityBaseline` or as +notes in the fixture README: + +- **Vertex deduplication philosophy on body parts.** The game compiler +doesn't bit-deduplicate identical face-corner GPU vertices the way we do. +On character body parts (`Red_M_Torso.mdl`, `pmh0_head001.mdl`) the game +binary ends up with more unique GPU verts per node than ours, even though +every face's per-corner attributes are bit-identical. Both produce +identical render output — this is purely a count difference in the GPU +vertex array. We could mirror the game's behaviour to close the gap, but +the cost is wasted MDX bytes for no visual benefit. +- **AABB tree split order.** Median-split may pick a different splitting +axis than the game; pathing and collision are driven by face-to-leaf +assignments, which match. +- **Tangent / bitangent values.** Both compilers run independent +tangent-generation passes; we use Mikktspace, the game uses an +unspecified algorithm. We validate alignment direction (mean ≥0.96, bad +corners ≤5%), not bit equality. +- **Degenerate face elimination.** The game compiler silently strips faces +with duplicate vertex indices (e.g. `18 0 9` where two refs collapse). +We keep them. `tdc01_g02_03.mdl` exercises this; the ASCII has 19 faces +on `object01`, the game binary has 16. + +## Known gaps + +- **MDL classification drift.** A few sources we received had ASCII +classifications that don't match the binary the game shipped (e.g. +`c_nightmare.mdl` ASCII `Tile`, binary `Character`). These are excluded +from the structural diff because no compiler choice can make them match. +- **Hak-only binaries with no surviving ASCII.** Some shipped haks include +pre-compiled binaries whose ASCII source was never re-emitted. We skip +these in the oracle suite (`hakBinaryOnlySkipList` in `oracle_test.go`) +because there's no apples-to-apples comparison to make. +- **Material/SG dedup matching is empirical.** We worked back to the +current `vertKey` shape from observed behaviour against the game's +output. We don't have access to the game's compiler source; if there's +another field the game's dedup considers (e.g. a per-corner attribute +we're not aware of), we'd see it as a parity delta on a fixture we don't +yet have. +- **No fuzz harness.** Parsing untrusted ASCII is bounded by alloc tracking +and a max-depth guard, but we haven't exercised the parser/compiler with +random or adversarial inputs. +- **Bone limit and triangle limit are check-only.** The compiler will write +binaries that exceed engine limits if asked; the `bone_limit` and +`triangle_limit` checks (`pkg/checks/geometry.go`) flag them but don't +refuse compilation. + +## Useful entry points + + +| Concern | File / function | +| ---------------------------- | ------------------------------------------------------------------------ | +| Top-level orchestration | `pkg/mdl/compiler.go` — `Compile`, `writeModel` | +| Mesh header + MDX writes | `pkg/mdl/compiler_mesh.go` — `writeMeshHeaderInner`, `buildExpandedMesh` | +| Tangent generation | `pkg/mdl/compiler_tangents.go` — `resolveTangents`, `generateTangents` | +| Normal generation | `pkg/mdl/compiler_normals.go` — `generateNormals` | +| Node tree + sub-headers | `pkg/mdl/compiler_node.go`, `compiler_controllers.go` | +| Format constants and offsets | `pkg/mdl/binary.go` (read side defines the layout we mirror) | +| Oracle fixtures and workflow | `tests/fixtures/oracle/README.md` | + + diff --git a/DECOMPILE.md b/DECOMPILE.md new file mode 100644 index 0000000..7d61528 --- /dev/null +++ b/DECOMPILE.md @@ -0,0 +1,279 @@ +# Decompile pipeline + +`cleanmodels decompile` reads a binary `.mdl` (the format the engine loads) +and emits an ASCII `.mdl` you can edit, diff, or feed back through the +compiler. It's the inverse of `cleanmodels compile`, and the two share the +same in-memory `Model` type so a clean roundtrip means no data was lost in +either direction. + +## CLI surface + +``` +cleanmodels decompile [flags] [output] +``` + +Flags worth knowing: + +- `--force` / `-f` — treat input as binary even if auto-detection fails +(we sniff for the all-zero file-header `{0, ...}` signature; some odd +inputs slip past). +- `-o` directory — write decompiled `.mdl` files alongside their inputs in +batch mode. + +In batch mode (`` is a directory) every `.mdl` inside is processed. +ASCII files are passed through; binary files are decompiled. + +## What "decompile" means here + +The output is intended to be: + +1. **Human-readable.** The writer follows `output_models.pl`'s parameter + ordering so the result looks like ASCII files authored in toolset. +2. **Re-compilable.** Anything we read in, we can write back out as ASCII + that the same compiler (and the game's compiler) accepts. +3. **Lossless for the fields we model.** A field that exists in our + `MeshData` / `Node` / `Animation` types makes it through both directions + intact. Fields the binary stores but we don't model — engine-managed + pointers, padding, deprecated proxy lists — are not preserved (and + shouldn't be; the compiler regenerates them). + +## File layout we read + +``` +[ 0 .. 11 ] header_file: {0, p_start_mdx, size_mdx} +[12 .. 12+core_len-1] core block: model header + node tree + animations +[12+core_len .. EOF] MDX block: per-vertex streams +``` + +Pointer conventions, mirroring the format itself (xoreos `NWN1MDL.bt`): + +- **Core-relative** `p` → `goToPointer(p)` = `12 + p` +- **MDX-relative** `p` → `goToMDXPointer(p)` = `12 + mdxOffset + p` + +Negative MDX pointers (`-1`) mean "stream not present" — the engine would +generate it at load time. We preserve that signal: on the way back out, the +compiler only emits MDX data the source actually carried (or that the +compiler chose to bake). + +## Walk order + +`Decompile` (`[pkg/mdl/binary.go](pkg/mdl/binary.go)`) is structured +top-down: + +1. `**readFileHeader`** — read `{p_start_mdx, size_mdx}`, set up alloc + tracking. We cap total bytes read at `fileSize * 16` to defuse hostile + inputs that try to make us allocate gigabytes from a small file. +2. `**readModelHeader**` — model name, classification, supermodel, animation + scale, list of animation pointers, root node pointer. If the layout is + non-standard but the model name is recoverable, we emit a + `WarnTruncatedData` warning and return whatever geometry we can. +3. `**readNode` (depth-first)** — for each node, read the 112-byte + `header_node` (parent pointer, child list, controller blocks, content + bits indicating which type-specific sub-headers follow), then dispatch to + `readMeshHeader` / `readSkinHeader` / `readDanglyHeader` / + `readAABBHeader` / `readLightHeader` / `readEmitterHeader` / + `readReferenceHeader` based on the bits. +4. **Animations** — each animation pointer is followed once (`seenAnims` + guards against repeats). Each animation has its own node tree which + reuses geometry node IDs. +5. **Skin resolution** — bone references in skin meshes are stored as part + numbers in the binary; after the geometry tree is read, we walk + `pendingSkins` and resolve them to node names. + +The decompiler is **non-fatal on errors**. Truncated data, out-of-bounds +pointers, and unknown controller types are recorded as +`DecompileWarning`s on the resulting model but never abort the read. The +caller decides how to surface them (the CLI prints them; tests can assert +on them). Warning kinds: + +- `WarnTruncatedData` — pointer ran past EOF, or a fixed-size record +couldn't be fully read. +- `WarnPointerOutOfBounds` — a pointer was out of range and the read was +skipped. +- `WarnUnknownController` — a controller type ID we don't have a mapping +for; the controller is dropped with its type ID logged so we can decide +whether to extend coverage. +- `WarnGeneral` — anything else worth surfacing. + +## Mesh decompilation + +`readMeshHeader` reads exactly 512 bytes of fixed-layout header, then seeks +to MDX pointers to pull each per-vertex stream into the in-memory mesh: + + +| MDX stream | Format | Read by | +| ------------------------ | ------------------------------------------------------ | ------------------------------- | +| Positions | `count_vertexes × Vec3` | `readMDXVec3Array` | +| UV0 / UV1 / UV2 / UV3 | `count_vertexes × 2 floats` | `readMDXTexCoords` | +| Normals | `count_vertexes × Vec3` | `readMDXVec3Array` | +| Colors | `count_vertexes × RGBA bytes` → unpacked to `Vec3` 0–1 | `readMDXColors` | +| Tangents + bitangents | `count_vertexes × Vec3` each | `readMDXTangents` | +| Skin weights / bone refs | per-vertex `4 × float + 4 × int16` | `resolveSkinWeights` (deferred) | + + +After reading per-vertex data, we `seek` back to the position right after +the 512-byte mesh header so subsequent type-specific sub-headers (skin, +dangly, AABB) are read from the right offset. The decompiler enforces this +with a `defer d.seek(headerEnd)` so an early return inside MDX reads can't +desynchronise the cursor. + +### Tangent reconstruction + +The binary stores tangent and bitangent as two separate `Vec3` MDX streams. +We read both, then for each vertex compute: + +``` +w = sign(dot(cross(normal, tangent), bitangent)) +mesh.Tangents[i] = Vec4{tangent.xyz, w} +``` + +That's the inverse of what the compiler does, and means the in-memory +representation is the more compact `Vec4` (XYZ + handedness) the ASCII +format also uses. If the bitangent stream is missing or corrupt, `W` +defaults to `+1`, which is the correct fallback for the (common) case where +no UV mirroring is involved. + +If the binary doesn't carry tangents at all (`p_mdx_tangent = -1`), +`mesh.Tangents` stays empty, the ASCII writer doesn't emit a `tangents` +block, and the next compile will either bake tangents (for normal-mapped +meshes) or leave the pointers unset for the engine to generate at load +time. + +## Skin meshes + +Skin nodes carry a per-vertex bone weight table and a per-mesh +`bone_part_numbers` array indexing into the geometry node tree. Because the +bone references resolve to node names that may not have been read yet +(forward references in DFS order are possible), `readSkinHeader` queues a +`pendingSkin` record. After the whole geometry tree has been walked, +`resolveSkinWeights` matches part numbers back to node names and fills out +the in-memory skin's `BoneRefs` field. + +## AABB walkmeshes + +`readAABBHeader` reads the root pointer, then `readAABBTree` walks the +binary tree iteratively (not recursively — these can be deep) and flattens +it into a list of `AabbEntry` records. Tree topology is preserved as-is for +diagnostic purposes; on the way back out, the compiler can either re-emit +the same tree or rebuild it with `RebuildAABB`. Either way pathing and +collision are unaffected because the same faces end up in the same leaves. + +## Animations + +Each animation block has its own `header_geometry` (animation name, +length, transition time, animation root, events, root anim node) and its +own node tree mirroring the geometry tree's shape. Animation nodes carry +content bits indicating which type-specific data the animation overrides +(positions, controllers, etc.). + +`readAnimNode` decodes the same 112-byte node header layout as geometry +nodes, then dispatches the type-specific sub-headers based on content +bits. Controllers are read in column-format (a single shared time/data +buffer per node, with per-controller stride / column-count metadata). + +`readControllers` (`[binary.go:1418](pkg/mdl/binary.go)`) handles +type-specific dispatch: 60+ controller IDs across light, emitter, mesh, +node, skin, and AABB nodes, each with their own value layout +(scalar / Vec3 / Vec4 / quaternion / RGB / sampling-period). When we +encounter an ID we don't have a mapping for, we emit +`WarnUnknownController` with the ID so we can extend coverage; the +controller itself is dropped (no guess about what its data means). + +## Safety / defensive reads + +Decompilation runs on untrusted input — model files arrive from haks of +unknown provenance. The decompiler: + +- Tracks total allocations against `maxAlloc = fileSize * 16`. Any +allocation that would push past the cap is silently dropped (with a +warning). This kills "1 KB file claims to have 2 GB of vertices" +scenarios. +- Bounds-checks every pointer against `fileSize` before seeking. Pointers +past EOF or negative are skipped. +- Caps node-tree depth at 10 000 to defuse cyclic / pathological parent +pointers. +- Detects revisits via `visitedPtrs` so a node pointing back to its own +parent doesn't infinite-loop. +- Recovers gracefully from a non-standard header by trying to extract the +model name with a heuristic scan and returning a model with no geometry +(rather than panicking). + +## How we test it + + +| Layer | Tests | What they catch | +| ----------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | +| **Unit** | `TestDecompileFileHeader`, `TestDecompileNodeTypes` | Header parsing, dispatch on each node type | +| **Bulk fixture sweep** | `TestDecompileAllFixtures` (`tests/fixtures/clean/`, `tests/fixtures/broken/`) | Real-world files don't crash the decompiler | +| **Roundtrip — ASCII → bin → ASCII** | `TestRoundtripFixtures`, `TestASCIIRoundtripFixtures`, `TestWriteAndParse` | The two pipelines compose cleanly on the fixture corpus | +| **Roundtrip — bin → ASCII → bin** | `TestRoundtripGeometryPreserved`, `TestRoundtripPreservesAuthoredTangents` and the 11 type-specific roundtrip tests in `compiler_roundtrip_test.go` | Fields survive the trip, including alpha=0, controller order, node-name case | +| **Oracle** (cross-compiler) | `TestOracleCompare`, `TestOracleVertexParity` | Decompiling our binary produces the same `Model` as decompiling the game's binary, modulo documented baselines | +| **Regression** | `TestRegression_AlphaZeroPreserved`, `TestRegression_AABBRestoreOnError`, `TestRegression_SnapFloatNegative` | Specific bugs we've hit before, locked down so they don't recur | + + +The decompiler also gets exercised indirectly by every compile test: each +roundtrip test compiles a model and then decompiles the binary back to +verify the round trip. So the decompile path runs on every PR even when +the changes were nominally compile-only. + +### `tests/fixtures/broken/` + +A growing corpus of binaries known to trigger non-fatal warnings or to hit +recovery paths. The decompiler is expected to read these without panicking +and emit a model with appropriate `Warnings` populated. + +## Known divergences (intentional, not bugs) + +- **Engine-managed fields aren't preserved.** Fields like `p_geometry` +(filled by the engine at load), padding bytes, and deprecated proxy lists +are not surfaced into the in-memory `Model`. A bin → ASCII → bin +roundtrip will not be byte-identical because the compiler regenerates +these from a known template. +- **Vertex deduplication is not inferred.** When we read a binary mesh, we +read the GPU vertex array as-is. We don't try to reconstruct the +pre-deduplication ASCII vertex/UV indexing the original author may have +used. The ASCII output therefore has one vertex/UV per face corner. This +is the same layout `nwnmdlcomp` and the game compiler would accept and +re-emit. +- **AABB tree is preserved verbatim.** We don't recompute the tree on read; +whatever split the original compiler chose is what shows up in the +ASCII. The compiler's `RebuildAABB` is a separate, opt-in step. + +## Known gaps + +- **Unknown controllers are dropped.** When we see a controller type ID +we don't recognise, we log a warning and skip it. We've covered every +controller type we've encountered in the fixture corpus, but engine +versions or community extensions could introduce new ones we'd miss +silently apart from the warning. +- **No checksum / signature validation.** The binary format has no +built-in integrity field, so we have no way to detect a partially +corrupted file beyond "pointer out of bounds" warnings. A binary that's +corrupted in a way that keeps pointers in-bounds will read as a model +with subtly wrong data. +- **Limited fuzz coverage.** Decompiler defensive paths (bounds checks, +alloc tracking, depth caps) are exercised by the `broken/` fixture set +and by hand-crafted truncated inputs in `TestDecompileFileHeader`, but +there's no continuous fuzz harness. +- **Hak-only binaries with no surviving ASCII can't be cross-validated.** +We can decompile them, but we can't compare against an ASCII baseline +to know whether what we recovered matches author intent. The oracle +suite skips these (see `hakBinaryOnlySkipList` in +`pkg/mdl/oracle_test.go`). +- **Single-file output destination.** When decompiling to a fixed output +path (rather than a directory), batch mode will overwrite the same +destination file once per input. Use directory output for batch mode. + +## Useful entry points + + +| Concern | File / function | +| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------- | +| Top-level orchestration | `pkg/mdl/binary.go` — `Decompile`, `readModelHeader` | +| Mesh + MDX reads | `pkg/mdl/binary.go` — `readMeshHeader`, `readMDXVec3Array`, `readMDXTangents`, `readMDXColors` | +| Type-specific node sub-headers | `pkg/mdl/binary.go` — `readSkinHeader`, `readDanglyHeader`, `readAABBHeader`, `readLightHeader`, `readEmitterHeader`, `readReferenceHeader` | +| Animations + controllers | `pkg/mdl/binary.go` — `readAnimation`, `readAnimNode`, `readControllers`, `readAnimControllers` | +| ASCII output | `pkg/mdl/writer.go` — follows `output_models.pl` parameter ordering | +| Warnings model | `pkg/mdl/types.go` — `DecompileWarning`, `DecompileWarnKind` | + + diff --git a/DESIGN.md b/DESIGN.md new file mode 100644 index 0000000..a485f12 --- /dev/null +++ b/DESIGN.md @@ -0,0 +1,212 @@ +--- + +name: cleanmodels +description: CLI output design for the NWN MDL validator, repair tool, and compiler +colors: + ansi-red: '#cc0000' + ansi-yellow: '#c4a000' + ansi-green: '#4e9a06' + ansi-dim: '#888888' + ansi-default: '#d3d7cf' + json-key: '#5fafff' +typography: + body: + fontFamily: 'ui-monospace, SF Mono, Menlo, Consolas, Liberation Mono, monospace' + fontSize: '14px' + fontWeight: 400 + lineHeight: '1.4' + label: + fontFamily: 'ui-monospace, SF Mono, Menlo, Consolas, Liberation Mono, monospace' + fontSize: '14px' + fontWeight: 700 +spacing: + indent: '2 spaces' + separator: ', ' +components: + severity-error: + textColor: '{colors.ansi-red}' + severity-warning: + textColor: '{colors.ansi-yellow}' + severity-info: + textColor: '{colors.ansi-dim}' + severity-success: + textColor: '{colors.ansi-green}' + filename: + textColor: '{colors.ansi-default}' +typography: '{typography.label}' + +--- + +# Design System: cleanmodels + +## 1. Overview + +**Creative North Star: "The Compiler That Talks Back"** + +cleanmodels' interface is its terminal output and its JSON-lines stream. Both are designed to feel like a well-engineered compiler: terse, predictable, color-coded by severity, and safe to pipe. The reference points are `rustc`, `clang`, and `eslint --quiet`. The anti-reference is anything chatty, ASCII-decorated, or fond of itself. + +The CLI runs in three contexts: a developer's interactive terminal, a shell script or CI pipeline, and the Qt GUI's backend process. The same binary serves all three with no mode flag — TTY detection picks the right surface automatically. Color and progress are gifts to the human reader; pipes get plain ASCII; `--json` and NDJSON streams get a stable schema the GUI can rely on without scraping prose. + +This system explicitly rejects ASCII-art banners, emoji decoration, chatty error messages, and progress bars on operations that finish in milliseconds. It rejects "enterprise" framing language and rejects hidden side effects: every change is announced. + +**Key Characteristics:** + +- Severity is the color axis. Red = error, yellow = warning, green = success/repair, dim = info. +- Filename is bold, severity tags are colored, body text is plain. +- One line per diagnostic. Indentation conveys nesting, not decoration. +- Output is identical across Linux, macOS, and Windows. +- Machine streams (`--json`, NDJSON) are first-class, stable, and complete. + +## 2. Colors + +A minimal ANSI palette that maps directly to severity. Concrete hex values are listed for documentation, but the CLI emits standard ANSI escape sequences so the user's terminal theme controls the actual rendering. + +### Primary + +- **ANSI Red** (`\033[31m`, ~`#cc0000`): Errors and fatal diagnostics. The only color that signals "you must read this." Used on severity tags, error counts, and the` ERROR:` prefix. +- **ANSI Yellow** (`\033[33m`, ~`#c4a000`): Warnings. Things the user should know about but that didn't stop the operation. Used on severity tags, warning counts, parse warnings, and decompile warnings. +- **ANSI Green** (`\033[32m`, ~`#4e9a06`): Success and repair. Used on` [REPAIR]`tags, the`[FIXED]`suffix, repair counts, the`clean`verdict, and the`ok` summary. +- **ANSI Dim** (`\033[2m`, ~`#888888`): Informational severity (`SevInfo`), the` [ACTION]`tag, and helper text. Hidden from default output; surfaced under`--verbose`. + +### Neutral + +- **Default Foreground** (terminal default): All body text — diagnostic messages, node names, file paths, JSON output. The user's terminal owns this color; the tool never sets it. +- **Bold** (`\033[1m`): Filenames at the head of a diagnostic block. Reserved for that role. + +### Named Rules + +**The Severity-Only Rule.** Color is reserved for severity. Don't tint information, decoration, or "branding" — the moment a non-severity element gets a color, the severity signal degrades. Filenames may be bold but are never colored. + +**The TTY Rule.** Color and styling are emitted only when stdout is a TTY. When piped, redirected, or run with `--color=never` or `NO_COLOR`, output is plain ASCII. When run with `--color=always`, color is forced regardless. The detection is per-stream — stderr can be styled while stdout JSON stays plain. + +## 3. Typography + +**Body Font:** Whatever the user's terminal uses. cleanmodels does not ship typography; it produces ASCII text and trusts the terminal to render it. The schema field `body` describes the assumed monospace stack for documentation purposes only. + +**Character:** Monospace, single-weight, single-size, no fallback fonts. Output renders identically in a 24x80 terminal, a tiling window manager pane, and a CI log viewer. + +### Hierarchy + +- **Filename** (bold, default color): The first token of every per-file output block. Bold is the only weight contrast in use. +- **Severity Tag** (`[REPAIR]`, `[WARN]`, `[ACTION]`, severity name in `[severity]`): Bracketed, colored, fixed-width-ish. Always at the start of a detail line. +- **Body** (default weight, default color): Diagnostic messages, node names, suggestions. No emphasis, no italics, no underlines. +- **Helper text** (`{severity-info.textColor}` / dim): Stats blocks under `--verbose`, batch summary footers. + +### Named Rules + +**The ASCII-Only Rule.** Output uses ASCII characters exclusively. No smart quotes, no em-dashes, no Unicode arrows or box-drawing characters in default output. `--help` may use Unicode in section dividers; everything else stays portable. + +**The One-Line Rule.** Every diagnostic fits on one logical line. Multi-line context (e.g. a code excerpt) is reserved for parse errors that genuinely need it. + +## 4. Elevation + +Not applicable. The CLI is a flat surface — there are no layers, no hover states, and no z-axis. Hierarchy is conveyed by indentation, severity color, and bracketed tags only. + +The closest analog is the in-place batch progress view (`batch.go`'s `livePainter`), which uses ANSI cursor-up and clear-line escapes to repaint a fixed window of recent lines. This is mechanical, not aesthetic — the rendering targets a pinned tail buffer, not a stacking model. + +### Named Rules + +**The Flat-Surface Rule.** Indentation is the only depth cue. Two-space indent under a filename header for diagnostic lines; no further nesting. If something needs three levels of indentation, it should be its own diagnostic instead. + +## 5. Components + +### Single-File Diagnostic Block + +The basic unit of human-readable output. One filename header, zero or more detail lines. + +``` + + [] (): [ <[FIXED]-green>] + [REPAIR-green] + [WARN-yellow] decompile [] off=: + [ACTION-dim] +``` + +The header summary lists fix/warning/error counts in that order, separated by `,` , each colored to match its severity. + +### Batch Progress (Streaming) + +When processing many files, each file completion emits one line in the form: + +``` +[/] ............................... repair[s] +``` + +When `--json` or `--ndjson` is set, the same per-file completion emits a JSON event instead (see schema below). + +### Batch Progress (Live, TTY only) + +`batch.go` paints a rolling window of the last N completed files using ANSI cursor-up + clear-line escapes. Disabled when stdout is piped, and below a four-file threshold — for one-, two-, or three-file batches the streaming line-per-file form is calmer and avoids cursor flashes for an operation that completes in <1s. The cursor is hidden during the live phase and restored on exit. + +Batch lines are width-aware on TTY: when `termWriter.cols > 0`, the dot leader between the basename and the status shrinks so the assembled line fits within `cols-1` columns, preserving a minimum of three dots. When piped or width is unknown, the historical 50-char filename region is preserved verbatim. + +### JSON-Lines Event Schema + +The contract between CLI and GUI. Stable across releases. + +```json +{"type": "batch_start", "total": 1234} +{"type": "file_start", "file": "foo.mdl", "index": 1, "total": 1234} +{"type": "file_done", "file": "foo.mdl", "index": 1, "total": 1234, "fixes": 3, + "result": { "file": "foo.mdl", "checks": [...], "repairs": [...], "actions": [...], "warnings": [...] }} +{"type": "batch_done", "message": "1234 files, 421 repaired, 12 errors"} +``` + +Field rules: + +- `type` is always present and stable. +- `result` matches `Result` in `process.go` exactly. Only present on `file_done`. +- Empty arrays are omitted (`omitempty`); consumers must treat missing as empty. +- `error` on `Result` is set if the file failed to process; other arrays may still be populated. + +### Exit Codes + +- `0` — success, no errors +- `1` — at least one file produced a `SevError` or `SevFatal` check +- `2` — usage error: invalid argument, unknown flag, invalid `--color` value, or no `.mdl` files found at the input path. Printed to stderr; no JSON event. +- `64..78` — reserved for `sysexits.h` semantics if a future subcommand needs them + +A scripted batch over a directory that resolves to zero files exits `2`, not `0`. This makes "wrong path" errors visible in CI; if a clean directory is expected, wrap the call accordingly. + +### Stream Routing (stdout vs stderr) + +Single rule, applied uniformly to single-file and batch invocations: + +| Mode | stdout | stderr | +|---|---|---| +| Plain (default) | per-file detail + final summary | nothing (errors only on failure) | +| `--json` | JSON object or array | final human summary, single-line | +| `--json-lines` | NDJSON event stream (incl. summary event) | nothing | +| `--quiet` | nothing | nothing (errors only on failure) | + +Errors, the empty-batch hint, and `cleanmodels: ` diagnostics always go to stderr regardless of mode. The stdout stream is reserved for output a downstream consumer would care about: human prose in plain mode, machine data in `--json` modes, nothing in `--quiet`. + +This means a user running `cleanmodels check ./tiles > log.txt` captures the entire human report (per-file lines and summary) in `log.txt` in plain mode, and gets a machine-clean JSON file in `--json` mode with the human-readable summary still visible on the terminal. + +### `--help` Surface + +Subcommand-grouped help, one block per subcommand. Long-form flags use `--kebab-case`; short-form aliases are explicit (`-v`, `-q`, `-j`). Examples appear in a final `Examples:` section. The `--help` text is the only place where Unicode dividers and slightly verbose copy are permitted. + +## 6. Do's and Don'ts + +### Do + +- **Do** color severity tags only. Filenames bold; everything else default. +- **Do** detect TTY per stream. Honour `NO_COLOR`, `--color=never`, and `--color=always`. +- **Do** emit one line per diagnostic. Indent two spaces under the filename header. +- **Do** keep the JSON event schema additive. New fields are okay; renaming or removing existing fields is a breaking change. +- **Do** announce every change in `[REPAIR]` / `[FIXED]` form. Silent fixes erode trust. +- **Do** preserve the original file when the operation fails. The user's source is sacred. + +### Don't + +- **Don't** print ASCII art, banners, splash logos, or emoji in normal output. `--help` may be slightly more decorative; nothing else. +- **Don't** apologise. "Oh no, something went wrong!" is not how a compiler talks. State what, where, what to do. +- **Don't** show progress bars on operations that finish in milliseconds. Stream per-file lines for batches; nothing for single files. +- **Don't** use chatty enterprise framing ("Initializing pipeline orchestration..."). The tool just runs. +- **Don't** colour anything that isn't severity. Tinting filenames, paths, or counts blue/cyan/magenta corrupts the severity signal. +- **Don't** emit smart quotes, em-dashes, or non-ASCII characters in machine output. JSON consumers will choke; locale-different terminals will render mojibake. +- **Don't** scrape the human-readable log to detect outcomes. The JSON event schema is the contract; if it doesn't expose what the GUI needs, extend it. +- **Don't** mix stdout and stderr. Stdout carries diagnostics and JSON; stderr carries usage errors and panics. A consumer should be able to redirect either independently. +- **Don't** depend on terminal width. Wrap nothing; let the terminal handle long lines. Wrapping breaks copy-paste and grepping. + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a308b9e --- /dev/null +++ b/Makefile @@ -0,0 +1,29 @@ +.PHONY: build build-all test clean lint + +MODULE := github.com/plenarius/cleanmodels +BINARY := cleanmodels +CMD := ./cmd/cleanmodels + +build: + go build -o $(BINARY) $(CMD) + +build-all: + GOOS=windows GOARCH=amd64 go build -o dist/$(BINARY).exe $(CMD) + GOOS=darwin GOARCH=arm64 go build -o dist/$(BINARY)-darwin-arm64 $(CMD) + GOOS=darwin GOARCH=amd64 go build -o dist/$(BINARY)-darwin-amd64 $(CMD) + GOOS=linux GOARCH=amd64 go build -o dist/$(BINARY)-linux-amd64 $(CMD) + +test: + go test ./... + +test-coverage: + go test -coverprofile=coverage.out ./... + go tool cover -html=coverage.out + +lint: + go vet ./... + +clean: + rm -f $(BINARY) + rm -rf dist/ + rm -f coverage.out diff --git a/PRODUCT.md b/PRODUCT.md new file mode 100644 index 0000000..8ad74a9 --- /dev/null +++ b/PRODUCT.md @@ -0,0 +1,48 @@ +# Product + +## Register + +product + +## Users + +NWN community modders who build, fix, and maintain 3D model files (`.mdl`) for Neverwinter Nights: Enhanced Edition. The audience spans experienced 3D artists comfortable in NWMax/Blender, module builders with limited technical background, and HAK packagers who run the tool over hundreds of files at a time. The shared context is a content pipeline: 3D editor → ASCII MDL → cleanmodels (validate, repair, compile) → game-loadable binary. + +The CLI is invoked three ways: directly at a terminal, from shell scripts and CI pipelines, and as the backend of the Qt GUI (`cleanmodels-qt`). All three paths must work without surprises. + +## Product Purpose + +The quality gate for NWN MDL files. cleanmodels validates ASCII model sources against the format the game compiler expects, repairs known issues (pivots, tilefade, tangents, dangly constraints, walkmesh materials, water, chamfers), and compiles to game-binary MDLs that are bit-faithful to what the game itself would produce. + +It exists because the legacy Prolog tool was slow, opaque, and occasionally destructive, and because users running large HAK pipelines need to bulk-compile thousands of models confidently and ship the binaries with HAKs so the game doesn't compile on first load. Success looks like: HAK builders trust the binaries, individual modders use it as a save-step linter, and CI pipelines treat its exit codes as authoritative. + +## Brand Personality + +**Fast, precise, flexible.** A sharp instrument: quick to produce correct results, trustworthy in its output, and accommodating of the wide variety of models found in the wild (old, malformed, hand-edited, tool-exported, decompiled). + +Emotional goal: confident and informed. The user trusts the tool and understands exactly what it changed. Output reads like a well-written compiler error, not a chatbot. + +## Anti-references + +- ASCII art banners, splash logos, emoji in normal output. Reserved for `--help` at most, never used in machine-consumable streams. +- Chatty or apologetic language ("Oh no, something went wrong!"). Errors state what, where, and what to do. +- Progress bars on operations that finish in milliseconds. Streaming per-file lines for batches; nothing for single files. +- Enterprise-verbose framing ("Initializing pipeline orchestration..."). The tool just does the thing. +- Hidden side effects, silent reformatting, or destructive defaults. Every change is announced in the log; `--dry-run` is real. +- Flat 60-flag CLI surfaces. Subcommands carry the cognitive load (`check`, `compile`, `decompile`, `clean`). + +## Design Principles + +1. **Speed is a feature.** The legacy Prolog implementation was the friction. Every operation should feel instant on single models and saturate I/O on batches. Slow paths are bugs. +2. **Correctness over convenience.** Binary output must match the game's compiler when given the same ASCII source. Checks should catch real issues, not generate noise. When in doubt, preserve the original data and explain. +3. **Approachable complexity.** Deep options exist (pivot repair, tilefade slicing, walkmesh remap, dangly constraint smoothing) but the default path produces a good result without configuration. Subcommands group complexity so the common path stays simple. +4. **Explain what changed.** Every fix, warning, and repair produces a human-readable message. The JSON-lines protocol is the contract between CLI and GUI. The debug log and per-file fix counts are the user's audit trail. +5. **Stay focused.** NWN MDL files only. No scope creep into other formats, game engines, or unrelated tooling. + +## Accessibility & Inclusion + +- **TTY-aware output.** ANSI color and styling auto-detected when stdout is a terminal; disabled when piped or redirected. `NO_COLOR` env honored. `--color=always|never|auto` overrides. +- **Machine-readable mode.** `--json` for single structured results, NDJSON streaming for batches. The schema is stable and complete enough that the GUI never needs to scrape the human-readable log. +- **Plain-language errors.** No jargon-only failures. Every error includes file, location (offset / line / node name when applicable), expected vs found, and a one-line suggestion. +- **Cross-platform parity.** Linux, macOS, Windows. Path handling is correct on all three; line endings respected; output identical wherever the user invokes it. +- **Locale-safe.** ASCII-only diagnostic strings; no smart quotes or em-dashes in machine output. Numbers and floats use `.` as decimal separator regardless of locale. diff --git a/README.md b/README.md index d7e8990..5542592 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,224 @@ # cleanmodels -Continued development on OldManBeard's CleanModels application for Neverwinter Nights -# Download +Validate, repair, compile, and decompile Neverwinter Nights MDL model files. -You can download binaries from the [Releases](https://github.com/plenarius/cleanmodels/releases) tab. +A complete rewrite of [OldManBeard's CleanModels](https://neverwintervault.org/project/nwn1/other/tool/cleanmodels-0) in Go — zero dependencies, single static binary, cross-platform. -# Installation +## Download + +Grab the latest binary for your platform from the [Releases](https://github.com/plenarius/cleanmodels/releases) page. + +| Platform | File | +|---|---| +| Linux (x86_64) | `cleanmodels-linux-amd64.zip` | +| Linux (ARM64) | `cleanmodels-linux-arm64.zip` | +| macOS (Intel) | `cleanmodels-darwin-amd64.zip` | +| macOS (Apple Silicon) | `cleanmodels-darwin-arm64.zip` | +| Windows (x86_64) | `cleanmodels-windows-amd64.zip` | + +> **Looking for the legacy Prolog version?** The last Prolog-based release is +> [build3.7.0-HEAD](https://github.com/plenarius/cleanmodels/releases/tag/build3.7.0-HEAD). +> The GUI companion is at [cleanmodels-qt](https://github.com/plenarius/cleanmodels-qt). + +## Building from source + +Requires [Go 1.22+](https://go.dev/dl/). No external dependencies. -On Ubuntu/Debian ``` -$ git clone https://github.com/plenarius/cleanmodels -$ cd cleanmodels -$ sudo apt-get install swi-prolog -$ swipl -g go -o cleanmodels --stand_alone=true --foreign=save -c cleanmodels.pl +git clone https://github.com/plenarius/cleanmodels +cd cleanmodels +go build -o cleanmodels ./cmd/cleanmodels ``` -This will create an executable `cleanmodels` binary which you can run with `cleanmodels last_dirs.pl` or see `cleanmodels --help` for some command line switches. +## Usage + +cleanmodels uses subcommands. Run `cleanmodels --help` for full flag details. + +Most flags have short aliases for interactive use (e.g. `-r` for `--recursive`, `-v` for `--verbose`). The tables below show both forms. + +### Quick start + +```bash +# Check a single model +cleanmodels check plc_torch.mdl + +# Check an entire directory recursively +cleanmodels check -r models/ + +# Repair all common issues in a tileset, output to a separate folder +cleanmodels repair -a -r tiles/ repaired/ + +# Decompile a binary MDL to ASCII +cleanmodels decompile plc_torch.mdl plc_torch.mdl +``` + +### Batch processing + +Point any subcommand at a directory to process all `.mdl` files inside it. No shell loops or scripts needed. + +```bash +# All MDLs in a flat directory +cleanmodels repair -a models/ + +# Recursive (includes subdirectories) +cleanmodels repair -a -r haks/ + +# Output to a separate folder (originals untouched) +cleanmodels repair -a -r haks/ cleaned/ + +# Control parallelism (defaults to CPU count) +cleanmodels repair -a -r -w 4 haks/ +``` + +A live progress bar is shown automatically when output is a terminal. + +### Output and logging + +Warnings and progress are written to **stderr**. Structured results (JSON) go to **stdout**. This matters when redirecting output: + +```bash +# Save warnings/progress to a file +cleanmodels check -r -v models/ 2> log.txt + +# Save everything (stdout + stderr) +cleanmodels check -r -v models/ &> log.txt + +# See output on screen AND save to file +cleanmodels check -r -v models/ 2>&1 | tee log.txt + +# Machine-readable JSON output +cleanmodels check -r -j models/ > results.json +``` + +### check — validate models + +```bash +cleanmodels check models/ +cleanmodels check -r -j haks/ +cleanmodels check -f -n plc_torch.mdl +cleanmodels check --exclude-checks emitter_spread,missing_bitmap models/ +``` + +| Flag | Short | Description | +|---|---|---| +| `--fix` | `-f` | Auto-fix safe issues (duplicate names, invalid parents) | +| `--dry-run` | `-n` | Report what would be fixed without writing output | +| `--include-checks` | | Comma-separated check names to run exclusively | +| `--exclude-checks` | | Comma-separated check names to skip | + +### repair — fix and transform models + +```bash +cleanmodels repair -a plc_torch.mdl repaired/ +cleanmodels repair --fix-pivots --fix-aabb walkables/ +cleanmodels repair --scale 2.0 plc_chair.mdl +cleanmodels repair --fix-tilefade --tilefade-z 5.0 tiles/ +``` + +| Flag | Short | Description | +|---|---|---| +| `--all` | `-a` | Enable all structural repairs | +| `--dry-run` | `-n` | Report what would be fixed without writing output | +| `--fix-pivots` | | Repair walkmesh pivot points | +| `--fix-aabb` | | Rebuild AABB trees from walkmesh geometry | +| `--fix-tilefade` | | Slice tile geometry for tilefade | +| `--tilefade-z` | | Z height for tilefade slicing (default: 5.0) | +| `--strip-degenerate` | | Remove zero-area faces | +| `--fix-animations` | | Clamp negative/too-short animation lengths | +| `--reparent-children` | | Reparent children of AABB/light nodes | +| `--wrap-root` | | Wrap non-dummy root nodes in a dummy parent | +| `--split-multiedge` | | Split faces sharing multiple edges | +| `--check` | | Run validation checks after repair | +| `--scale` | | Scale all vertex positions | +| `--scale-x/y/z` | | Scale individual axes | +| `--classification` | | Override classification (CHARACTER, DOOR, EFFECT, ITEM, TILE) | +| `--snap` | | Vertex snapping mode: `binary`, `decimal`, `fine` | +| `--render` | | Force render flag: `all`, `none` | +| `--shadow` | | Force shadow flag: `all`, `none` | +| `--force-white` | | Set ambient/diffuse to 1,1,1 | +| `--merge-by-bitmap` | | Merge sibling trimeshes sharing a bitmap | +| `--cull-invisible` | | Convert invisible meshes to dummy nodes | + +### compile — ASCII to binary MDL + +```bash +cleanmodels compile plc_torch.mdl plc_torch.mdl +cleanmodels compile -r models/ compiled/ +``` + +### decompile — binary to ASCII MDL + +```bash +cleanmodels decompile plc_torch.mdl plc_torch.mdl +cleanmodels decompile -f mystery_file.bin output.mdl +``` + +| Flag | Short | Description | +|---|---|---| +| `--force` | `-f` | Treat input as binary even if auto-detection fails | + +### Common flags + +These flags work with all subcommands: + +| Flag | Short | Description | +|---|---|---| +| `--json` | `-j` | Output results as JSON to stdout | +| `--json-lines` | | Stream NDJSON events (for GUI/tool integration) | +| `--verbose` | `-v` | Show all warnings and info | +| `--quiet` | `-q` | Suppress all output except errors | +| `--workers N` | `-w N` | Parallel workers for batch mode (default: CPU count) | +| `--recursive` | `-r` | Process directories recursively | + +### report — submit a bug report + +If you encounter a model that crashes or produces incorrect output, you can submit a report directly from the CLI. Reports are sent to a relay that creates a GitHub issue — no GitHub account required. + +```bash +# Report a problematic model +cleanmodels report model.mdl + +# Include details about what went wrong +cleanmodels report --error "missing faces after decompile" model.mdl + +# Report multiple files with context +cleanmodels report --command "repair --fix-pivots" --notes "visual artifacts" tile1.mdl tile2.mdl +``` + +| Flag | Description | +|---|---| +| `--command` | The cleanmodels command that was run | +| `--error` | Error output or description of the problem (optional) | +| `--notes` | Additional notes or context | + +### Legacy mode + +For backwards compatibility with [cleanmodels-qt](https://github.com/plenarius/cleanmodels-qt) and existing scripts, the old flat-flag interface still works: + +```bash +cleanmodels --check --fix-pivots input/ output/ +cleanmodels --decompile-only model.mdl output.mdl +``` + +## What it does + +cleanmodels understands the full MDL format for Neverwinter Nights: Enhanced Edition, including all nine geometry node types (dummy, trimesh, danglymesh, skin, animmesh, emitter, light, reference, aabb) and their complete parameter sets. + +**Validation** — 100+ checks across structural integrity, geometry correctness, parameter bounds, animation consistency, emitter configuration, and tile-specific rules. + +**Repair** — Walkmesh pivot point reconstruction, AABB tree rebuilding, tilefade slice computation, degenerate face removal, animation length clamping, and more. + +**Compile/Decompile** — Convert between ASCII and binary MDL formats. The binary compiler has been validated against the NWN:EE game compiler across 32,707 stock models and 49,111 community models. + +## Specifications + +The MDL parser and compiler trace to these references: + +- [nwn.wiki MDL Format](https://nwn.wiki/display/NWN1/MDL) — parameter-level documentation +- [xoreos-docs](https://github.com/xoreos/xoreos-docs) — Torlack's binary MDL specification and 010 Editor templates +- [neverwinter.nim](https://github.com/niv/neverwinter.nim) — Nim MDL implementation +- [nwnmdlcomp](https://github.com/nwneetools/nwnmdlcomp) — C++ MDL compiler reference -# Usage +## License -Currently the command line interface is not of very much use without editing `last_dirs.pl` file which is used to set the configuration variables. There are some command line switches though, see `--help` for more information. The full set of configuration options will eventually be available as switches. +MIT diff --git a/RELEASE-v4.md b/RELEASE-v4.md new file mode 100644 index 0000000..00ba271 --- /dev/null +++ b/RELEASE-v4.md @@ -0,0 +1,106 @@ +# cleanmodels v4 + cleanmodels-qt v1.0 + +Two coordinated releases of the NWN MDL toolchain. + +- **cleanmodels v4** — Go rewrite of the Prolog-based **cleanmodels 3.x** that the community has been running on EE. Same defaults, same repair set, new repairs added, a few legacy ones not yet ported. Single static binary, no SWI-Prolog runtime, five platforms. +- **cleanmodels-qt v1.0** — Qt6 + CMake rewrite of the GUI (last shipped as `build0.8.0-HEAD` on Qt5 + qmake). Talks to v4 over its JSON-lines protocol; the legacy Prolog CLI is no longer supported. + +**Get it:** + +- cleanmodels: +- cleanmodels-qt: + +## cleanmodels: changes since 3.7 + +**Rewritten in Go.** Single static binary, no SWI-Prolog install. Linux x86_64/ARM64, macOS Intel/Apple Silicon, Windows x86_64. + +**Binary compiler folded in.** v3 stopped at ASCII output and handed the binary compile to `nwnmdlcomp`. v4 does both. Output diffed against the engine's own compiler over **32,707 stock and 49,111 community models** (see "Known divergences" below for where output isn't byte-identical). + +**Tangents baked at compile time.** Normal-mapped models get tangent and bitangent vectors written into the binary via [mikktspace](http://mikktspace.com/) instead of being derived by the engine on load. + +**Compiler correctness fixes** that 3.7 + `nwnmdlcomp` (and the engine's own compiler) get wrong: + +- **Danglymesh constraints follow GPU vert expansion.** The MDX vertex section stores per-corner GPU verts (one per unique pos+UV+normal+colour), so an ASCII vert with N distinct UV uses becomes N GPU verts. Existing compilers wrote the un-expanded constraint count and left the trailing GPU verts with undefined behaviour in the engine's dangle simulation — visibly, this is the tail-tearing on `c_squirrel` and most stock danglymesh models. v4 expands constraints along the same mapping so verts and constraints stay 1:1. +- **Smart skin-bone truncation.** Stock files like `c_fox` and `c_dogzombie` carry verts with 5–6 bone influences in their ASCII; the binary format hard-caps at 4 per vertex. Existing compilers keep the first 4 listed and let the kept weights sum to less than 1.0, leaving those verts under-bound. v4 keeps the four heaviest weights and renormalizes the kept set to 1.0. + +**Performance.** Same workload, same disk, same flags, on a 330-file binary tile corpus (~21 MB, 2,030 repairs applied): + + +| Tool | Workers | Wall time | Per file | Memory | +| --------- | ------- | --------- | -------- | ------ | +| Prolog v3 | 1 | 129 s | 391 ms | 244 MB | +| Go v4 | 1 | 5.0 s | 15 ms | 16 MB | +| Go v4 | 8 | **4.4 s** | 13 ms | 16 MB | + + +~26× single-threaded, ~29× with parallel workers, ~1/15th memory. + +**Subcommand CLI.** `cleanmodels check | repair | compile | decompile | report`. The legacy flag form (`cleanmodels --check --fix-pivots in/ out/`) still works for existing scripts. + +**New repairs.** Chamfer add/delete, dynamic water (flat/wavy/untouched), additional tilefade slicing/undo work, plus two EE-cleanup flags: `--standardize-texture0` (emit `texture0` instead of `bitmap`) and `--strip-ee-extras` (drop `wirecolor`/`specular`/`shininess` on output). + +**New validation checks.** Resref-length warning (16-char engine cap on bitmap, texture, and material names — catches missing-texture bugs before they ship), PLT bitmap matching for character models, and a node-type field validation matrix (danglymesh, skin, emitter, light, aabb, misplaced-tile, and misplaced-dangly checks). Total registry is now 48 checks across structure, geometry, parameters, node types, animations, and tiles. + +**`cleanmodels report`.** Uploads the file plus log and opens a tracked GitHub issue without requiring the user to have an account. Available in the GUI too. + +**WASM build.** `cleanmodels-wasm.zip` runs the same pipeline in a browser page. Two static files, small JS API; useful if you maintain a model viewer or wiki tool that wants to accept binary `.mdl` drops. + +**JSON-lines output.** `--json` for single results, NDJSON streaming for batches. Stable schema; this is what the Qt GUI consumes. + +## cleanmodels-qt: changes since build0.8.0 + +**Qt6 + CMake.** Replaces Qt5 + qmake. C++17. Qt5 builds are gone. + +**Talks to v4, not Prolog 3.x.** UI surface aligned to the new subcommand interface (Clean / Decompile / Compile modes). Findings come over JSON-lines from v4 instead of text-scraped from Prolog output. + +**3D viewport** — new in this release. Drop a binary or ASCII MDL onto the preview pane: + +- **BioWare DDS textures load directly.** The engine's proprietary DDS variant — used for almost every stock creature and tile texture — isn't readable by standard image libraries. The viewport decodes BC1 and BC3 blocks inline, so creatures show up textured instead of grey. +- **Skinned meshes render against their skeleton.** Animals, dragons, and any other skin-weighted geometry display correctly bound to the bone hierarchy. +- **Animations play back live.** The viewport picks an idle on load and exposes the model's full animation list for stepping through. +- Reference-model overlay (compare two models side by side, with a preferred-pose hint applied to the reference). + +**Report Issue** integrated — same upload/track flow as `cleanmodels report`, available under Help and on right-click for failed files. + +**Five-platform packaging matching the CLI** (Linux x86_64/ARM64, macOS Intel/Apple Silicon, Windows x86_64). Linux ships as an AppImage (was: tarball that needed Qt5 installed). The matching cleanmodels CLI is bundled inside each Qt download next to the GUI binary, so a single download is enough to use either tool. + +## Migration notes + +The Qt GUI looks for `cleanmodels` (or the older `cleanmodels-cli` name) on `PATH` or alongside the GUI binary, and now ships with the matching v4 CLI bundled in that second slot, so no separate install is needed. If you keep an older `cleanmodels` higher on `PATH`, **it will not work** — the GUI requires v4. + +Two behaviour changes worth knowing: + +- **Per-axis scaling actually scales per axis.** The old GUI averaged X/Y/Z into a single number before passing it through. Presets that depended on that averaging will produce different output. +- **An empty input directory now exits non-zero.** Wrong-path bugs in CI used to silently succeed; they now fail loudly. Wrap with a guard if "directory might be empty" is intentional. + +## Known divergences from the game compiler + +Binary output is **not** byte-identical to the engine's own compiler in a few cases. All documented and tested: + +- Vertex deduplication on character body parts produces fewer GPU verts than the game does. Identical render output, smaller MDX block. +- AABB tree split axis can differ. Pathing and collision are unaffected; the same faces end up in the same leaves. +- Tangent values match within tolerance (mean alignment ≥ 0.96, bad-corner ratio ≤ 5%), not bit-for-bit. + +Two legacy steps not yet ported (UV-space TVert welding and tessellator midpoint-TVert dedup). Both are documented in `CLEAN.md` — same render output, marginally larger MDX block on heavily tessellated water meshes. + +## Downloads + +Per-platform builds and checksums live on the GitHub release pages: + +- cleanmodels: [github.com/plenarius/cleanmodels/releases/latest](https://github.com/plenarius/cleanmodels/releases/latest) — Linux x86_64/ARM64, macOS Intel/Apple Silicon, Windows x86_64, and a browser WASM bundle. +- cleanmodels-qt: [github.com/plenarius/cleanmodels-qt/releases/latest](https://github.com/plenarius/cleanmodels-qt/releases/latest) — Linux x86_64/ARM64, macOS Intel/Apple Silicon, Windows x86_64. + +The Qt download bundles the matching cleanmodels CLI next to the GUI binary. If you only want the CLI (CI scripts, headless servers, the WASM build), grab it from the cleanmodels release page directly. + +The last Prolog releases stay published: + +- cleanmodels Prolog: [build3.7.0-HEAD](https://github.com/plenarius/cleanmodels/releases/tag/build3.7.0-HEAD) +- cleanmodels-qt Qt5: [build0.8.0-HEAD](https://github.com/plenarius/cleanmodels-qt/releases/tag/build0.8.0-HEAD) + +## Thanks + +To OldManBeard for designing the original CleanModels. + +Format documentation and reference implementations: [nwn.wiki](https://nwn.wiki/display/NWN1/MDL), [xoreos-docs](https://github.com/xoreos/xoreos-docs), [neverwinter.nim](https://github.com/niv/neverwinter.nim), [nwnmdlcomp](https://github.com/nwneetools/nwnmdlcomp), [varenx/borealis_nwn_model_viewer](https://github.com/varenx/borealis_nwn_model_viewer) (Qt animation player + skinmesh rendering reference), and [dunahan/nwn_mdl_webviewer](https://github.com/dunahan/nwn_mdl_webviewer) (WebGL renderer cross-reference). + +Morten S. Mikkelsen for [mikktspace](http://mikktspace.com/). diff --git a/build/cleanmodels-cli.rc b/build/cleanmodels-cli.rc deleted file mode 100644 index d71a03d..0000000 Binary files a/build/cleanmodels-cli.rc and /dev/null differ diff --git a/cmd/cleanmodels-wasm/main.go b/cmd/cleanmodels-wasm/main.go new file mode 100644 index 0000000..11e904b --- /dev/null +++ b/cmd/cleanmodels-wasm/main.go @@ -0,0 +1,194 @@ +// Package main exposes the cleanmodels MDL pipeline to JavaScript via +// WebAssembly. The build target is GOOS=js GOARCH=wasm; this file is +// intentionally excluded from every other target by the build tag below. +// +// JS surface (attached to the global `cleanmodels` object): +// +// cleanmodels.version() +// → string. Build version, "dev" for unreleased binaries. +// +// cleanmodels.decompile(bytes: Uint8Array) +// → { ok: true, ascii: string } — success +// → { ok: false, error: string } — failure +// Binary MDL → ASCII MDL. Primary use case for in-browser viewers +// that already understand ASCII MDL. +// +// cleanmodels.compile(ascii: string) +// → { ok: true, binary: Uint8Array, warnings: ParseError[] } +// → { ok: false, error: string } +// ASCII MDL → binary MDL. +// +// cleanmodels.parse(ascii: string) +// → { ok: true, warnings: ParseError[] } +// → { ok: false, error: string } +// Validate ASCII without producing output. Cheap linter. +// +// Where ParseError = { line: number, message: string }. +// +// All entrypoints are synchronous and run on the JS main thread. +// Decompile of a typical tile MDL is well under 10 ms in the browser; +// callers that load very large meshes should consider running this +// inside a Web Worker to keep the page responsive. + +//go:build js && wasm + +package main + +import ( + "bytes" + "fmt" + "syscall/js" + + "github.com/plenarius/cleanmodels/pkg/mdl" +) + +// version is overridden at link time by the release build: +// +// go build -ldflags="-X main.version=v1.2.3" ./cmd/cleanmodels-wasm +var version = "dev" + +func main() { + api := map[string]any{ + "version": js.FuncOf(jsVersion), + "decompile": js.FuncOf(jsDecompile), + "compile": js.FuncOf(jsCompile), + "parse": js.FuncOf(jsParse), + } + js.Global().Set("cleanmodels", js.ValueOf(api)) + + // syscall/js exposes Go callables only while the runtime is alive, + // so we block forever. JS unloads the module by dropping the page. + select {} +} + +func jsVersion(this js.Value, args []js.Value) any { + return version +} + +// jsDecompile takes a Uint8Array of binary MDL bytes and returns the +// equivalent ASCII MDL string. +func jsDecompile(this js.Value, args []js.Value) (result any) { + defer func() { + if r := recover(); r != nil { + result = errResult(fmt.Sprintf("decompile: panic: %v", r)) + } + }() + + if len(args) < 1 { + return errResult("decompile: expected 1 argument (Uint8Array)") + } + src := args[0] + if src.Type() != js.TypeObject { + return errResult("decompile: argument must be a Uint8Array") + } + + n := src.Get("length").Int() + data := make([]byte, n) + js.CopyBytesToGo(data, src) + + model, err := mdl.Decompile(bytes.NewReader(data), int64(n)) + if err != nil { + return errResult(fmt.Sprintf("decompile: %v", err)) + } + + var out bytes.Buffer + if err := mdl.Write(model, &out); err != nil { + return errResult(fmt.Sprintf("write ascii: %v", err)) + } + + return map[string]any{ + "ok": true, + "ascii": out.String(), + } +} + +// jsCompile takes an ASCII MDL string and returns the binary form as a +// Uint8Array, plus any non-fatal parse warnings. +func jsCompile(this js.Value, args []js.Value) (result any) { + defer func() { + if r := recover(); r != nil { + result = errResult(fmt.Sprintf("compile: panic: %v", r)) + } + }() + + if len(args) < 1 { + return errResult("compile: expected 1 argument (string)") + } + src := args[0] + if src.Type() != js.TypeString { + return errResult("compile: argument must be a string") + } + asciiBytes := []byte(src.String()) + + parsed, err := mdl.Parse(bytes.NewReader(asciiBytes)) + if err != nil { + return errResult(fmt.Sprintf("parse ascii: %v", err)) + } + if parsed == nil || parsed.Model == nil { + return errResult("parse ascii: produced no model") + } + + var out bytes.Buffer + if err := mdl.Compile(parsed.Model, &out); err != nil { + return errResult(fmt.Sprintf("compile: %v", err)) + } + + dst := js.Global().Get("Uint8Array").New(out.Len()) + js.CopyBytesToJS(dst, out.Bytes()) + + return map[string]any{ + "ok": true, + "binary": dst, + "warnings": parseErrorsToJS(parsed.Errors), + } +} + +// jsParse parses an ASCII MDL string and returns any diagnostics +// without producing binary output. Useful for in-browser linting. +func jsParse(this js.Value, args []js.Value) (result any) { + defer func() { + if r := recover(); r != nil { + result = errResult(fmt.Sprintf("parse: panic: %v", r)) + } + }() + + if len(args) < 1 { + return errResult("parse: expected 1 argument (string)") + } + src := args[0] + if src.Type() != js.TypeString { + return errResult("parse: argument must be a string") + } + + parsed, err := mdl.Parse(bytes.NewReader([]byte(src.String()))) + if err != nil { + return errResult(fmt.Sprintf("parse: %v", err)) + } + + warnings := []mdl.ParseError{} + if parsed != nil { + warnings = parsed.Errors + } + return map[string]any{ + "ok": true, + "warnings": parseErrorsToJS(warnings), + } +} + +func parseErrorsToJS(errs []mdl.ParseError) []any { + out := make([]any, 0, len(errs)) + for _, e := range errs { + out = append(out, map[string]any{ + "line": e.Line, + "message": e.Message, + }) + } + return out +} + +func errResult(msg string) any { + return map[string]any{ + "ok": false, + "error": msg, + } +} diff --git a/cmd/cleanmodels/batch.go b/cmd/cleanmodels/batch.go new file mode 100644 index 0000000..caa0f61 --- /dev/null +++ b/cmd/cleanmodels/batch.go @@ -0,0 +1,243 @@ +package main + +import ( + "encoding/json" + "fmt" + "io/fs" + "os" + "path/filepath" + "strings" + "sync" +) + +func collectMDLFiles(root string, recursive bool) ([]string, error) { + if recursive { + var out []string + err := filepath.WalkDir(root, func(path string, d fs.DirEntry, err error) error { + if err != nil { + return err + } + if d.IsDir() { + return nil + } + if strings.EqualFold(filepath.Ext(path), ".mdl") { + out = append(out, path) + } + return nil + }) + return out, err + } + var out []string + entries, err := os.ReadDir(root) + if err != nil { + return nil, err + } + for _, e := range entries { + if !e.IsDir() && strings.EqualFold(filepath.Ext(e.Name()), ".mdl") { + out = append(out, filepath.Join(root, e.Name())) + } + } + return out, nil +} + +func batchOutputPath(root, outputDir, filePath string) (string, error) { + if outputDir == "" { + return "", nil + } + rel, err := filepath.Rel(root, filePath) + if err != nil { + rel = filepath.Base(filePath) + } + out := filepath.Join(outputDir, rel) + if err := os.MkdirAll(filepath.Dir(out), 0755); err != nil { + return "", fmt.Errorf("create output dir: %w", err) + } + return out, nil +} + +// runBatch processes every MDL under root. +// +// Stream routing rule (single source of truth): +// +// - Per-file diagnostic lines and the final human summary go to stdout in +// plain mode (errTw is unused there) so a `> log.txt` redirect captures +// the whole batch report. +// - In --json mode the JSON array goes to stdout; the human summary moves +// to stderr (via errTw) to keep stdout machine-clean. +// - In --json-lines mode every event (including a "summary" event) is on +// stdout; no human summary is emitted. +// - Errors and the empty-batch hint always go to stderr regardless of mode. +func runBatch(root, outputDir string, o procOpts, tw, errTw *termWriter) int { + files, err := collectMDLFiles(root, o.recursive) + if err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: %v\n", err) + return exitErrors + } + + if len(files) == 0 { + if !o.quiet { + fmt.Fprintf(os.Stderr, "cleanmodels: %s\n", suggestRecursive(root)) + } + return exitUsage + } + + total := len(files) + + var ( + mu sync.Mutex + jsonBuf []Result + totalW int + totalE int + totalRepairs int + procN int + exitCode = exitOK + ) + + bo := o + if !o.jsonLines { + bo.jsonOut = true + } + + // Use live progress (in-place rewriting) only when stdout is a real TTY, + // not in machine-output modes, and only above a small-batch threshold — + // for 2 or 3 files the streaming line-per-file form is calmer and avoids + // flashing cursor moves for an operation that completes in <1s. + // FORCE_COLOR alone is not enough — cursor control requires a real terminal. + // In verbose mode we stream a per-file detail block under each batch + // line. That's incompatible with the live-progress UI, which rewrites + // lines in place and caps the visible viewport at ~20 lines — verbose + // has to mean "show me everything", so we drop the in-place renderer + // and fall through to streaming output instead. + const liveProgressMinFiles = 4 + useLive := total >= liveProgressMinFiles && + isTerminal(int(os.Stdout.Fd())) && + !o.jsonOut && !o.jsonLines && !o.quiet && !o.verbose + var lp *liveProgress + if useLive { + lp = newLiveProgress(tw, total) + fmt.Fprintf(tw.w, "%s", ansiHideCursor) + defer fmt.Fprintf(tw.w, "%s", ansiShowCursor) + lp.render() + } + + // Build a file-index map so workers can report by sorted position. + fileIdx := make(map[string]int, total) + for i, p := range files { + fileIdx[p] = i + } + + jobs := make(chan string, total) + var wg sync.WaitGroup + + worker := func() { + defer wg.Done() + for path := range jobs { + baseName := filepath.Base(path) + idx := fileIdx[path] + + outPath, mkdirErr := batchOutputPath(root, outputDir, path) + if mkdirErr != nil { + mu.Lock() + totalE++ + procN++ + if o.jsonLines { + emitEvent(Event{Type: "error", File: baseName, Message: mkdirErr.Error(), Index: procN, Total: total}) + } else if lp != nil { + lp.update(idx, baseName, Result{Error: mkdirErr.Error()}, nil) + lp.render() + } else if !bo.quiet { + tw.printBatchLine(procN, total, baseName, Result{Error: mkdirErr.Error()}, nil) + } + mu.Unlock() + continue + } + + mu.Lock() + procN++ + seqIdx := procN + mu.Unlock() + + if o.jsonLines { + emitEvent(Event{Type: "start", File: baseName, Index: seqIdx, Total: total}) + } + + res, _, parseErrs, err := processOne(path, outPath, bo) + if err != nil && res.Error == "" { + res.Error = err.Error() + } + w, e := tally(res, len(parseErrs)) + fixes := countFixes(res) + + mu.Lock() + totalW += w + totalE += e + totalRepairs += fixes + if e > 0 { + exitCode = exitErrors + } + if o.jsonLines { + if res.Error != "" { + emitEvent(Event{Type: "error", File: baseName, Message: res.Error, Index: seqIdx, Total: total}) + } else { + emitEvent(Event{Type: "done", File: baseName, Fixes: fixes, Index: seqIdx, Total: total, Result: &res}) + } + } else if o.jsonOut && !o.jsonLines { + jsonBuf = append(jsonBuf, res) + } else if lp != nil { + lp.update(idx, baseName, res, parseErrs) + lp.render() + } else if !o.quiet { + tw.printBatchLine(seqIdx, total, baseName, res, parseErrs) + if o.verbose { + tw.printResultDetail(res, parseErrs, true) + } + } + mu.Unlock() + } + } + + nw := o.workers + if nw < 1 { + nw = 1 + } + if nw > len(files) { + nw = len(files) + } + for i := 0; i < nw; i++ { + wg.Add(1) + go worker() + } + for _, p := range files { + jobs <- p + } + close(jobs) + wg.Wait() + + if o.jsonLines { + emitEvent(Event{Type: "summary", Total: procN, Fixes: totalRepairs, + Message: fmt.Sprintf("Processed %d files, %d warnings, %d errors", procN, totalW, totalE)}) + } else if o.jsonOut { + enc := json.NewEncoder(os.Stdout) + enc.SetIndent("", " ") + if err := enc.Encode(jsonBuf); err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: json encode: %v\n", err) + return exitErrors + } + } + + if lp != nil { + lp.finish() + } + + switch { + case o.quiet, o.jsonLines: + // Quiet emits nothing; json-lines already emitted a summary event. + case o.jsonOut: + // Stdout carries the JSON array; route the human counts to stderr. + errTw.printBatchSummary(procN, totalRepairs, totalW, totalE) + default: + // Plain mode: per-file lines went to stdout, summary follows them. + tw.printBatchSummary(procN, totalRepairs, totalW, totalE) + } + return exitCode +} diff --git a/cmd/cleanmodels/cmd_check.go b/cmd/cleanmodels/cmd_check.go new file mode 100644 index 0000000..71b2306 --- /dev/null +++ b/cmd/cleanmodels/cmd_check.go @@ -0,0 +1,82 @@ +package main + +import ( + "encoding/json" + "errors" + "flag" + "fmt" + "os" + + "github.com/plenarius/cleanmodels/pkg/checks" +) + +func cmdCheck(args []string) int { + fs := flag.NewFlagSet("cleanmodels check", flag.ContinueOnError) + fs.SetOutput(os.Stderr) + + fix := fs.Bool("fix", false, "auto-fix safe issues (duplicate names, invalid parents)") + includeStr := fs.String("include-checks", "", "comma-separated check names to run (exclusive)") + excludeStr := fs.String("exclude-checks", "", "comma-separated check names to skip") + dryRun := fs.Bool("dry-run", false, "report what would be fixed without writing output") + listChecks := fs.Bool("list", false, "list all available checks as JSON and exit") + + fs.BoolVar(fix, "f", false, "alias for --fix") + fs.BoolVar(dryRun, "n", false, "alias for --dry-run") + + var cf commonFlags + cf.register(fs) + + fs.Usage = func() { + fmt.Fprintf(os.Stderr, "Usage: cleanmodels check [flags] [output]\n\n") + fmt.Fprintf(os.Stderr, "Run validation checks on MDL models.\n\n") + fmt.Fprintf(os.Stderr, "Flags:\n") + fs.PrintDefaults() + } + + if err := fs.Parse(args); err != nil { + if errors.Is(err, flag.ErrHelp) { + return exitOK + } + return exitUsage + } + if err := cf.validate(); err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: %v\n", err) + return exitUsage + } + + if *listChecks { + enc := json.NewEncoder(os.Stdout) + enc.SetIndent("", " ") + if err := enc.Encode(checks.ListAll()); err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: %v\n", err) + return exitErrors + } + return exitOK + } + + pos := fs.Args() + if len(pos) < 1 { + fs.Usage() + return exitUsage + } + + inputPath := pos[0] + var outputPath string + if len(pos) >= 2 { + outputPath = pos[1] + } + + opts := procOpts{ + check: true, + dryRun: *dryRun, + include: parseNameSet(*includeStr), + exclude: parseNameSet(*excludeStr), + } + cf.apply(&opts) + + if *fix { + setAllRepairs(&opts) + } + + return dispatch(inputPath, outputPath, opts) +} diff --git a/cmd/cleanmodels/cmd_compile.go b/cmd/cleanmodels/cmd_compile.go new file mode 100644 index 0000000..0d9cf44 --- /dev/null +++ b/cmd/cleanmodels/cmd_compile.go @@ -0,0 +1,52 @@ +package main + +import ( + "errors" + "flag" + "fmt" + "os" +) + +func cmdCompile(args []string) int { + fs := flag.NewFlagSet("cleanmodels compile", flag.ContinueOnError) + fs.SetOutput(os.Stderr) + + var cf commonFlags + cf.register(fs) + + fs.Usage = func() { + fmt.Fprintf(os.Stderr, "Usage: cleanmodels compile [flags] [output]\n\n") + fmt.Fprintf(os.Stderr, "Compile ASCII MDL to binary format.\n\n") + fmt.Fprintf(os.Stderr, "Flags:\n") + fs.PrintDefaults() + } + + if err := fs.Parse(args); err != nil { + if errors.Is(err, flag.ErrHelp) { + return exitOK + } + return exitUsage + } + if err := cf.validate(); err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: %v\n", err) + return exitUsage + } + pos := fs.Args() + if len(pos) < 1 { + fs.Usage() + return exitUsage + } + + inputPath := pos[0] + var outputPath string + if len(pos) >= 2 { + outputPath = pos[1] + } + + opts := procOpts{ + compile: true, + } + cf.apply(&opts) + + return dispatch(inputPath, outputPath, opts) +} diff --git a/cmd/cleanmodels/cmd_decompile.go b/cmd/cleanmodels/cmd_decompile.go new file mode 100644 index 0000000..0acda1f --- /dev/null +++ b/cmd/cleanmodels/cmd_decompile.go @@ -0,0 +1,57 @@ +package main + +import ( + "errors" + "flag" + "fmt" + "os" +) + +func cmdDecompile(args []string) int { + fs := flag.NewFlagSet("cleanmodels decompile", flag.ContinueOnError) + fs.SetOutput(os.Stderr) + + force := fs.Bool("force", false, "treat input as binary even if auto-detection fails") + + fs.BoolVar(force, "f", false, "alias for --force") + + var cf commonFlags + cf.register(fs) + + fs.Usage = func() { + fmt.Fprintf(os.Stderr, "Usage: cleanmodels decompile [flags] [output]\n\n") + fmt.Fprintf(os.Stderr, "Decompile binary MDL to ASCII format.\n\n") + fmt.Fprintf(os.Stderr, "Flags:\n") + fs.PrintDefaults() + } + + if err := fs.Parse(args); err != nil { + if errors.Is(err, flag.ErrHelp) { + return exitOK + } + return exitUsage + } + if err := cf.validate(); err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: %v\n", err) + return exitUsage + } + pos := fs.Args() + if len(pos) < 1 { + fs.Usage() + return exitUsage + } + + inputPath := pos[0] + var outputPath string + if len(pos) >= 2 { + outputPath = pos[1] + } + + opts := procOpts{ + decompileOnly: true, + forceBin: *force, + } + cf.apply(&opts) + + return dispatch(inputPath, outputPath, opts) +} diff --git a/cmd/cleanmodels/cmd_repair.go b/cmd/cleanmodels/cmd_repair.go new file mode 100644 index 0000000..e0b0a89 --- /dev/null +++ b/cmd/cleanmodels/cmd_repair.go @@ -0,0 +1,184 @@ +package main + +import ( + "errors" + "flag" + "fmt" + "os" + "strings" +) + +func cmdRepair(args []string) int { + fs := flag.NewFlagSet("cleanmodels repair", flag.ContinueOnError) + fs.SetOutput(os.Stderr) + + // Core repairs + fixAll := fs.Bool("all", false, "enable all repairs") + fixPivots := fs.Bool("fix-pivots", false, "repair walkmesh pivot points") + fixAABB := fs.Bool("fix-aabb", false, "rebuild AABB trees from walkmesh geometry") + fixTilefade := fs.Bool("fix-tilefade", false, "slice tile geometry for tilefade") + tilefadeZ := fs.Float64("tilefade-z", 5.0, "Z height for tilefade slicing") + stripDegen := fs.Bool("strip-degenerate", false, "remove zero-area faces") + fixAnims := fs.Bool("fix-animations", false, "clamp negative/too-short animation lengths") + reparentChildren := fs.Bool("reparent-children", false, "reparent children of AABB/light nodes") + wrapRoot := fs.Bool("wrap-root", false, "wrap non-dummy root nodes in a dummy parent") + splitMultiEdge := fs.Bool("split-multiedge", false, "split faces at multiple edges") + check := fs.Bool("check", false, "run validation checks after repair") + + // Pivot sub-options + pivotAllowSplit := fs.Bool("pivot-allow-split", true, "allow mesh splitting when pivot search fails") + pivotBelowZ0 := fs.String("pivot-below-z0", "disallow", "Z>=0 constraint: disallow, allow, slice") + pivotMoveBad := fs.String("pivot-move-bad", "no", "fallback placement: no, top, middle, bottom") + pivotSmoothing := fs.String("pivot-smoothing", "use", "smoothing group handling: use, protect, ignore") + pivotMinFaces := fs.Int("pivot-min-faces", 4, "minimum faces per split side") + pivotSplitFirst := fs.String("pivot-split-first", "concave", "split priority: convex, concave") + + // Transforms + scaleFactor := fs.Float64("scale", 0, "scale all vertex positions") + scaleX := fs.Float64("scale-x", 0, "scale X axis") + scaleY := fs.Float64("scale-y", 0, "scale Y axis") + scaleZ := fs.Float64("scale-z", 0, "scale Z axis") + classification := fs.String("classification", "", "override classification (CHARACTER, DOOR, EFFECT, ITEM, TILE)") + snapMode := fs.String("snap", "", "vertex snapping: binary, decimal, fine") + renderOverride := fs.String("render", "", "force render flag: all, none") + shadowOverride := fs.String("shadow", "", "force shadow flag: all, none") + forceWhite := fs.Bool("force-white", false, "set ambient/diffuse to 1,1,1") + mergeByBitmap := fs.Bool("merge-by-bitmap", false, "merge sibling trimeshes with same bitmap") + cullInvisible := fs.Bool("cull-invisible", false, "convert invisible meshes to dummy") + + // Tile operations + water := fs.Bool("water", false, "enable water processing") + waterKey := fs.String("water-key", "", "water bitmap substring key") + dynamicWater := fs.String("dynamic-water", "", "water animation mode: yes, no, wavy") + waveHeight := fs.Float64("wave-height", 0, "wave animation height") + rotateWater := fs.String("rotate-water", "", "set rotatetexture on water nodes: 0 or 1") + retileWater := fs.String("retile-water", "", "retile water UVs: 1, 2, 3") + foliage := fs.String("foliage", "", "foliage mode: tilefade, animate, de-animate, ignore") + foliageKey := fs.String("foliage-key", "", "foliage bitmap substring key") + splotch := fs.String("splotch", "", "splotch mode: animate") + splotchKey := fs.String("splotch-key", "", "splotch bitmap substring key") + rotateGround := fs.String("rotate-ground", "", "set rotatetexture on ground: 0 or 1") + groundKey := fs.String("ground-key", "", "ground bitmap substring key") + chamfer := fs.String("chamfer", "", "chamfer mode: add, delete") + retileGround := fs.String("retile-ground", "", "retile ground UVs: 1, 2, 3") + raiseLower := fs.String("raise-lower", "", "raise or lower tile: raise, lower") + raiseAmount := fs.Float64("raise-amount", 0, "raise/lower amount") + tilefadeUndo := fs.Bool("tilefade-undo", false, "undo tilefade slicing") + + // Mesh extras + tvertSnap := fs.String("tvert-snap", "", "UV snap grid: 256, 512, 1024") + placeableTransparency := fs.Bool("placeable-transparency", false, "enable placeable transparency processing") + transparencyKey := fs.String("transparency-key", "", "transparency bitmap substring key") + remapWalkmeshMaterial := fs.String("remap-walkmesh-material", "", "AABB material remap: FROM:TO") + standardizeTexture0 := fs.Bool("standardize-texture0", false, "emit texture0 instead of bitmap in output") + stripEEExtras := fs.Bool("strip-ee-extras", false, "remove wirecolor, specular, shininess from output") + + dryRun := fs.Bool("dry-run", false, "report what would be fixed without writing output") + includeStr := fs.String("include-checks", "", "comma-separated check names to run") + excludeStr := fs.String("exclude-checks", "", "comma-separated check names to skip") + + fs.BoolVar(fixAll, "a", false, "alias for --all") + fs.BoolVar(dryRun, "n", false, "alias for --dry-run") + + var cf commonFlags + cf.register(fs) + + fs.Usage = func() { + fmt.Fprintf(os.Stderr, "Usage: cleanmodels repair [flags] [output]\n\n") + fmt.Fprintf(os.Stderr, "Apply repairs and transformations to MDL models.\n\n") + fmt.Fprintf(os.Stderr, "Flags:\n") + fs.PrintDefaults() + } + + if err := fs.Parse(args); err != nil { + if errors.Is(err, flag.ErrHelp) { + return exitOK + } + return exitUsage + } + if err := cf.validate(); err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: %v\n", err) + return exitUsage + } + pos := fs.Args() + if len(pos) < 1 { + fs.Usage() + return exitUsage + } + + inputPath := pos[0] + var outputPath string + if len(pos) >= 2 { + outputPath = pos[1] + } + + opts := procOpts{ + check: *check, + dryRun: *dryRun, + include: parseNameSet(*includeStr), + exclude: parseNameSet(*excludeStr), + repairOpts: repairOpts{ + scale: float32(*scaleFactor), + scaleX: float32(*scaleX), + scaleY: float32(*scaleY), + scaleZ: float32(*scaleZ), + classification: strings.ToUpper(*classification), + snapMode: *snapMode, + renderOverride: *renderOverride, + shadowOverride: *shadowOverride, + forceWhite: *forceWhite, + mergeByBitmap: *mergeByBitmap, + cullInvisible: *cullInvisible, + pivot: pivotOpts{ + allowSplit: *pivotAllowSplit, + belowZ0: *pivotBelowZ0, + moveBad: *pivotMoveBad, + smoothing: *pivotSmoothing, + minFaces: *pivotMinFaces, + splitFirst: *pivotSplitFirst, + }, + tvertSnap: *tvertSnap, + placeableTransparency: *placeableTransparency, + transparencyKey: *transparencyKey, + remapWalkmeshMaterial: *remapWalkmeshMaterial, + tilefadeUndo: *tilefadeUndo, + standardizeTexture0: *standardizeTexture0, + stripEEExtras: *stripEEExtras, + }, + tileOpts: tileOpts{ + tilefadeZ: float32(*tilefadeZ), + water: *water, + waterKey: *waterKey, + dynamicWater: *dynamicWater, + waveHeight: *waveHeight, + rotateWater: *rotateWater, + retileWater: *retileWater, + foliage: *foliage, + foliageKey: *foliageKey, + splotch: *splotch, + splotchKey: *splotchKey, + rotateGround: *rotateGround, + groundKey: *groundKey, + chamfer: *chamfer, + retileGround: *retileGround, + raiseLower: *raiseLower, + raiseAmount: *raiseAmount, + }, + } + cf.apply(&opts) + + if *fixAll { + setAllRepairs(&opts) + } else { + opts.fixPivots = *fixPivots + opts.fixAABB = *fixAABB + opts.fixTilefade = *fixTilefade + opts.stripDegenerate = *stripDegen + opts.fixAnimations = *fixAnims + opts.reparentChildren = *reparentChildren + opts.wrapRoot = *wrapRoot + opts.splitMultiEdge = *splitMultiEdge + } + + return dispatch(inputPath, outputPath, opts) +} diff --git a/cmd/cleanmodels/cmd_report.go b/cmd/cleanmodels/cmd_report.go new file mode 100644 index 0000000..1dcbc1b --- /dev/null +++ b/cmd/cleanmodels/cmd_report.go @@ -0,0 +1,238 @@ +package main + +import ( + "bytes" + "encoding/json" + "errors" + "flag" + "fmt" + "io" + "mime/multipart" + "net/http" + "os" + "path/filepath" + "runtime" + "strings" + "time" +) + +const ( + reportEndpoint = "https://cleanmodels.layonara.com/report" + maxFileSize = 10 * 1024 * 1024 // 10 MB per file + maxTotalSize = 25 * 1024 * 1024 // 25 MB total +) + +// Embedded at build time via ldflags alongside version. +var clientKey = "" + +type reportDiagnostics struct { + Version string `json:"version"` + OS string `json:"os"` + Arch string `json:"arch"` + Command string `json:"command"` + ErrorOutput string `json:"error_output"` + Notes string `json:"notes,omitempty"` +} + +func cmdReport(args []string) int { + fs := flag.NewFlagSet("cleanmodels report", flag.ContinueOnError) + fs.SetOutput(os.Stderr) + + command := fs.String("command", "", "the cleanmodels command that was run") + errorOutput := fs.String("error", "", "error output or description of the problem (optional)") + notes := fs.String("notes", "", "additional notes or context") + endpoint := fs.String("endpoint", reportEndpoint, "report relay endpoint URL") + + fs.Usage = func() { + fmt.Fprintf(os.Stderr, `Usage: cleanmodels report [flags] [file2.mdl ...] + +Submit a bug report with model files to the cleanmodels issue tracker. +The report is sent to a relay service that creates a GitHub issue on your behalf. +No GitHub account is required. + +Use --error to describe the problem. If omitted, the report is submitted +as a general "incorrect output" issue — useful when a model compiles or +decompiles without errors but looks wrong in-game. + +Flags: +`) + fs.PrintDefaults() + fmt.Fprintf(os.Stderr, ` +Examples: + cleanmodels report model.mdl + cleanmodels report --error "decompile crash" model.mdl + cleanmodels report --command "repair --fix-pivots" --error "missing faces after repair" tile.mdl +`) + } + + if err := fs.Parse(args); err != nil { + if errors.Is(err, flag.ErrHelp) { + return exitOK + } + return exitUsage + } + + files := fs.Args() + if len(files) == 0 { + fmt.Fprintf(os.Stderr, "cleanmodels report: at least one model file is required\n") + fs.Usage() + return exitUsage + } + + if *errorOutput == "" { + *errorOutput = "Incorrect output (no error reported — model may compile/decompile but produce wrong results)" + } + + var totalSize int64 + for _, f := range files { + info, err := os.Stat(f) + if err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels report: %s: %v\n", f, err) + return exitErrors + } + if !info.Mode().IsRegular() { + fmt.Fprintf(os.Stderr, "cleanmodels report: %s is not a regular file\n", f) + return exitErrors + } + if info.Size() > maxFileSize { + fmt.Fprintf(os.Stderr, "cleanmodels report: %s exceeds 10MB per-file limit\n", f) + return exitErrors + } + totalSize += info.Size() + } + if totalSize > maxTotalSize { + fmt.Fprintf(os.Stderr, "cleanmodels report: total file size (%d MB) exceeds 25MB limit\n", totalSize/(1024*1024)) + return exitErrors + } + + diag := reportDiagnostics{ + Version: version, + OS: runtime.GOOS, + Arch: runtime.GOARCH, + Command: *command, + ErrorOutput: *errorOutput, + Notes: *notes, + } + + fmt.Fprintf(os.Stderr, "Preparing report with %d file(s)...\n", len(files)) + + body, contentType, err := buildMultipartBody(diag, files) + if err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels report: failed to build request: %v\n", err) + return exitErrors + } + + fmt.Fprintf(os.Stderr, "Submitting to %s...\n", *endpoint) + + issueURL, err := submitReport(*endpoint, body, contentType) + if err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels report: submission failed: %v\n", err) + return exitErrors + } + + fmt.Fprintf(os.Stderr, "Report submitted successfully!\n") + fmt.Println(issueURL) + return exitOK +} + +func buildMultipartBody(diag reportDiagnostics, files []string) (*bytes.Buffer, string, error) { + var buf bytes.Buffer + w := multipart.NewWriter(&buf) + + diagJSON, err := json.Marshal(diag) + if err != nil { + return nil, "", fmt.Errorf("marshal diagnostics: %w", err) + } + + diagField, err := w.CreateFormField("diagnostics") + if err != nil { + return nil, "", err + } + if _, err := diagField.Write(diagJSON); err != nil { + return nil, "", err + } + + for _, path := range files { + f, err := os.Open(path) + if err != nil { + return nil, "", fmt.Errorf("open %s: %w", path, err) + } + + part, err := w.CreateFormFile("files", filepath.Base(path)) + if err != nil { + f.Close() + return nil, "", err + } + if _, err := io.Copy(part, f); err != nil { + f.Close() + return nil, "", fmt.Errorf("read %s: %w", path, err) + } + f.Close() + } + + if err := w.Close(); err != nil { + return nil, "", err + } + + return &buf, w.FormDataContentType(), nil +} + +func submitReport(endpoint string, body *bytes.Buffer, contentType string) (string, error) { + req, err := http.NewRequest("POST", endpoint, body) + if err != nil { + return "", err + } + req.Header.Set("Content-Type", contentType) + req.Header.Set("User-Agent", "cleanmodels/"+version) + if clientKey != "" { + req.Header.Set("X-Client-Key", clientKey) + } + + client := &http.Client{Timeout: 30 * time.Second} + resp, err := client.Do(req) + if err != nil { + return "", fmt.Errorf("network error: %w", err) + } + defer resp.Body.Close() + + respBody, err := io.ReadAll(io.LimitReader(resp.Body, 1<<20)) + if err != nil { + return "", fmt.Errorf("read response: %w", err) + } + + if resp.StatusCode == 429 { + return "", fmt.Errorf("rate limited — please try again later") + } + + if resp.StatusCode != 200 { + var errResp struct { + Error string `json:"error"` + } + if json.Unmarshal(respBody, &errResp) == nil && errResp.Error != "" { + return "", fmt.Errorf("server error (%d): %s", resp.StatusCode, errResp.Error) + } + errText := strings.TrimSpace(string(respBody)) + if len(errText) > 512 { + errText = errText[:512] + "..." + } + return "", fmt.Errorf("server error (%d): %s", resp.StatusCode, errText) + } + + var result struct { + IssueURL string `json:"issue_url"` + Deduplicated bool `json:"deduplicated"` + } + if err := json.Unmarshal(respBody, &result); err != nil { + return "", fmt.Errorf("invalid response: %w", err) + } + + if result.IssueURL == "" { + return "", fmt.Errorf("server returned success but no issue URL") + } + + if result.Deduplicated { + fmt.Fprintf(os.Stderr, "Note: a matching report already exists.\n") + } + + return result.IssueURL, nil +} diff --git a/cmd/cleanmodels/decompile_stdout_test.go b/cmd/cleanmodels/decompile_stdout_test.go new file mode 100644 index 0000000..62438d0 --- /dev/null +++ b/cmd/cleanmodels/decompile_stdout_test.go @@ -0,0 +1,73 @@ +package main + +import ( + "bytes" + "io" + "os" + "strings" + "testing" +) + +// captureStdio swaps os.Stdout and os.Stderr for pipes, runs fn, and returns +// whatever was written to each. Used to assert the CLI's stream-routing +// contract end-to-end, since processOne writes the decompiled model straight +// to os.Stdout. +func captureStdio(t *testing.T, fn func()) (stdout, stderr string) { + t.Helper() + origOut, origErr := os.Stdout, os.Stderr + outR, outW, err := os.Pipe() + if err != nil { + t.Fatalf("pipe: %v", err) + } + errR, errW, err := os.Pipe() + if err != nil { + t.Fatalf("pipe: %v", err) + } + os.Stdout, os.Stderr = outW, errW + + outCh, errCh := make(chan string, 1), make(chan string, 1) + go func() { var b bytes.Buffer; io.Copy(&b, outR); outCh <- b.String() }() + go func() { var b bytes.Buffer; io.Copy(&b, errR); errCh <- b.String() }() + + func() { + defer func() { + outW.Close() + errW.Close() + os.Stdout, os.Stderr = origOut, origErr + }() + fn() + }() + + return <-outCh, <-errCh +} + +// TestDecompileASCIIPassThrough is a regression test for the report that +// `decompile ` emitted nothing on stdout (only the "1 file" +// summary), breaking pipelines. Both ASCII and binary inputs must stream the +// re-serialized model to stdout, and the human summary must land on stderr so +// the piped model stays byte-clean. +func TestDecompileASCIIPassThrough(t *testing.T) { + const asciiFixture = "../../tests/fixtures/oracle/ascii/plc_dummy_only.mdl" + + opts := procOpts{decompileOnly: true, colorMode: "never"} + stdout, stderr := captureStdio(t, func() { + if code := dispatch(asciiFixture, "", opts); code != exitOK { + t.Errorf("dispatch returned exit %d, want %d", code, exitOK) + } + }) + + // The model itself must be on stdout. + for _, want := range []string{"newmodel plc_dummy_only", "donemodel plc_dummy_only"} { + if !strings.Contains(stdout, want) { + t.Errorf("stdout missing %q; ASCII input was not passed through.\nstdout:\n%s", want, stdout) + } + } + // The summary must NOT be on stdout — it would corrupt the piped model. + if strings.Contains(stdout, "1 file") { + t.Errorf("summary leaked onto stdout, corrupting the model:\n%s", stdout) + } + // ...and it must be on stderr. + if !strings.Contains(stderr, "1 file") { + t.Errorf("summary missing from stderr; got:\n%s", stderr) + } +} diff --git a/cmd/cleanmodels/errors.go b/cmd/cleanmodels/errors.go new file mode 100644 index 0000000..db29a63 --- /dev/null +++ b/cmd/cleanmodels/errors.go @@ -0,0 +1,55 @@ +package main + +import ( + "fmt" + "os" + "strings" +) + +// cliError wraps an error with an optional suggestion for the user. +type cliError struct { + err error + suggestion string +} + +func (e *cliError) Error() string { + if e.suggestion != "" { + return fmt.Sprintf("%v\n hint: %s", e.err, e.suggestion) + } + return e.err.Error() +} + +func (e *cliError) Unwrap() error { return e.err } + +// wrapWithSuggestion inspects common error patterns and adds actionable hints. +func wrapWithSuggestion(err error, path string) error { + if err == nil { + return nil + } + msg := err.Error() + + if os.IsNotExist(err) { + return &cliError{err: fmt.Errorf("file not found: %s", path)} + } + + if os.IsPermission(err) { + return &cliError{ + err: fmt.Errorf("cannot access %s", path), + suggestion: "check file permissions", + } + } + + if strings.Contains(msg, "unexpected EOF") || strings.Contains(msg, "truncated") { + return &cliError{ + err: err, + suggestion: "the file may be corrupted or incomplete", + } + } + + return err +} + +// suggestRecursive returns an error suggesting --recursive for empty directories. +func suggestRecursive(dir string) string { + return fmt.Sprintf("no .mdl files found in %s -- use --recursive to search subdirectories", dir) +} diff --git a/cmd/cleanmodels/flags.go b/cmd/cleanmodels/flags.go new file mode 100644 index 0000000..7b70b43 --- /dev/null +++ b/cmd/cleanmodels/flags.go @@ -0,0 +1,59 @@ +package main + +import ( + "flag" + "fmt" + "runtime" +) + +type commonFlags struct { + jsonOut *bool + jsonLines *bool + verbose *bool + quiet *bool + workers *int + recursive *bool + colorMode *string +} + +func (cf *commonFlags) register(fs *flag.FlagSet) { + cf.jsonOut = fs.Bool("json", false, "output results as JSON") + cf.jsonLines = fs.Bool("json-lines", false, "stream NDJSON events (GUI integration)") + cf.verbose = fs.Bool("verbose", false, "show all warnings and info") + cf.quiet = fs.Bool("quiet", false, "suppress all output except errors") + cf.workers = fs.Int("workers", runtime.NumCPU(), "parallel workers for batch mode") + cf.recursive = fs.Bool("recursive", false, "process directories recursively") + cf.colorMode = fs.String("color", "auto", "ANSI color: auto, always, never") + + fs.BoolVar(cf.jsonOut, "j", false, "alias for --json") + fs.BoolVar(cf.verbose, "v", false, "alias for --verbose") + fs.BoolVar(cf.quiet, "q", false, "alias for --quiet") + fs.IntVar(cf.workers, "w", *cf.workers, "alias for --workers") + fs.BoolVar(cf.recursive, "r", false, "alias for --recursive") +} + +// validate checks values that aren't structurally enforced by flag. +// Call after fs.Parse and before apply. +func (cf *commonFlags) validate() error { + return validateColorMode(*cf.colorMode) +} + +func (cf *commonFlags) apply(o *procOpts) { + o.jsonOut = *cf.jsonOut + o.jsonLines = *cf.jsonLines + o.verbose = *cf.verbose + o.quiet = *cf.quiet + o.workers = *cf.workers + o.recursive = *cf.recursive + o.colorMode = *cf.colorMode +} + +// validateColorMode rejects values outside the documented set. +// Empty string is permitted and treated as "auto" by shouldColorize. +func validateColorMode(mode string) error { + switch mode { + case "", "auto", "always", "never": + return nil + } + return fmt.Errorf("invalid --color value %q (want auto, always, or never)", mode) +} diff --git a/cmd/cleanmodels/main.go b/cmd/cleanmodels/main.go new file mode 100644 index 0000000..88d83a2 --- /dev/null +++ b/cmd/cleanmodels/main.go @@ -0,0 +1,278 @@ +// Package main implements the cleanmodels CLI. +// cleanmodels validates, repairs, compiles, and decompiles NWN MDL model files. +package main + +import ( + "errors" + "flag" + "fmt" + "os" + "path/filepath" + "runtime" + "strings" +) + +var version = "dev" + +var subcommands = map[string]func([]string) int{ + "check": cmdCheck, + "repair": cmdRepair, + "compile": cmdCompile, + "decompile": cmdDecompile, + "report": cmdReport, +} + +func main() { + code := run(os.Args[1:]) + runProfileCleanups() + os.Exit(code) +} + +func run(args []string) int { + if len(args) == 0 { + printHelp() + return exitUsage + } + + first := args[0] + + if first == "help" || first == "--help" || first == "-h" { + if len(args) >= 2 { + if cmd, ok := subcommands[args[1]]; ok { + return cmd([]string{"--help"}) + } + } + printHelp() + return exitOK + } + + if first == "version" || first == "--version" { + fmt.Println("cleanmodels " + version) + return exitOK + } + + if cmd, ok := subcommands[first]; ok { + return cmd(args[1:]) + } + + // Legacy mode: first arg is not a known subcommand. + // This preserves backwards compatibility with the Qt GUI and existing scripts. + return runLegacy(args) +} + +func printHelp() { + fmt.Fprintf(os.Stderr, `cleanmodels -- validate, repair, and compile NWN MDL models + +Commands: + check Run validation checks on models + repair Apply repairs and transformations + compile Compile ASCII MDL to binary + decompile Decompile binary MDL to ASCII + report Submit a bug report with model files + +Run 'cleanmodels --help' for command-specific flags. + +Common flags (all commands): + --json Output results as JSON + --json-lines Stream NDJSON events (for GUI integration) + --quiet Suppress all output except errors + --verbose Show all warnings and info + --workers N Parallel workers for batch mode (default: CPU count) + --recursive Process directories recursively + --color MODE ANSI color: auto, always, never (default: auto) + +Legacy mode: + cleanmodels [flags] [output] + When the first argument is a file or flag (not a command name), + legacy flag parsing is used for backwards compatibility. +`) +} + +// runLegacy implements the original single-FlagSet interface for backwards compatibility. +func runLegacy(args []string) int { + fs := flag.NewFlagSet("cleanmodels", flag.ContinueOnError) + fs.SetOutput(os.Stderr) + + checkFlag := fs.Bool("check", false, "run validation checks") + decompileOnly := fs.Bool("decompile-only", false, "decompile binary to ASCII without checks or repairs") + decompileFlag := fs.Bool("decompile", false, "force binary decompilation mode") + jsonOut := fs.Bool("json", false, "output results as JSON to stdout") + jsonLines := fs.Bool("json-lines", false, "stream NDJSON events to stdout") + verbose := fs.Bool("verbose", false, "show all warnings and info") + quiet := fs.Bool("quiet", false, "suppress all output except errors") + workers := fs.Int("workers", runtime.NumCPU(), "parallel workers for batch mode") + colorMode := fs.String("color", "auto", "ANSI color: auto, always, never") + excludeStr := fs.String("exclude-checks", "", "comma-separated check names to skip") + includeStr := fs.String("include-checks", "", "comma-separated check names to run") + recursive := fs.Bool("recursive", false, "process directories recursively") + fixPivots := fs.Bool("fix-pivots", false, "repair walkmesh pivot points") + fixAABB := fs.Bool("fix-aabb", false, "rebuild AABB trees") + fixTilefade := fs.Bool("fix-tilefade", false, "slice tile geometry for tilefade") + tilefadeZ := fs.Float64("tilefade-z", 5.0, "Z height for tilefade slicing") + stripDegen := fs.Bool("strip-degenerate", false, "remove zero-area faces") + fixAnims := fs.Bool("fix-animations", false, "clamp animation lengths") + reparentChildren := fs.Bool("reparent-children", false, "reparent children of AABB/light nodes") + wrapRoot := fs.Bool("wrap-root", false, "wrap non-dummy root in dummy parent") + splitMultiEdge := fs.Bool("split-multiedge", false, "split faces at multiple edges") + scaleFactor := fs.Float64("scale", 0, "scale all vertex positions") + scaleX := fs.Float64("scale-x", 0, "scale X axis") + scaleY := fs.Float64("scale-y", 0, "scale Y axis") + scaleZ := fs.Float64("scale-z", 0, "scale Z axis") + classification := fs.String("classification", "", "override classification") + snapMode := fs.String("snap", "", "vertex snapping: binary, decimal, fine") + renderOverride := fs.String("render", "", "force render: all, none") + shadowOverride := fs.String("shadow", "", "force shadow: all, none") + forceWhite := fs.Bool("force-white", false, "set ambient/diffuse to 1,1,1") + mergeByBitmap := fs.Bool("merge-by-bitmap", false, "merge sibling trimeshes") + cullInvisible := fs.Bool("cull-invisible", false, "convert invisible meshes to dummy") + dryRun := fs.Bool("dry-run", false, "report without writing output") + fixAll := fs.Bool("fix", false, "enable all repairs") + compileFlag := fs.Bool("compile", false, "compile ASCII to binary") + + // Pivot sub-options + pivotAllowSplit := fs.Bool("pivot-allow-split", true, "allow mesh splitting when pivot search fails") + pivotBelowZ0 := fs.String("pivot-below-z0", "disallow", "Z>=0 constraint: disallow, allow, slice") + pivotMoveBad := fs.String("pivot-move-bad", "no", "fallback placement: no, top, middle, bottom") + pivotSmoothing := fs.String("pivot-smoothing", "use", "smoothing group handling: use, protect, ignore") + pivotMinFaces := fs.Int("pivot-min-faces", 4, "minimum faces per split side") + pivotSplitFirst := fs.String("pivot-split-first", "concave", "split priority: convex, concave") + + // Tile operations + water := fs.Bool("water", false, "enable water processing") + waterKey := fs.String("water-key", "", "water bitmap substring key") + dynamicWater := fs.String("dynamic-water", "", "water animation mode: yes, no, wavy") + waveHeight := fs.Float64("wave-height", 0, "wave animation height") + rotateWater := fs.String("rotate-water", "", "set rotatetexture on water nodes: 0 or 1") + retileWater := fs.String("retile-water", "", "retile water UVs: 1, 2, 3") + foliage := fs.String("foliage", "", "foliage mode: tilefade, animate, de-animate, ignore") + foliageKey := fs.String("foliage-key", "", "foliage bitmap substring key") + splotch := fs.String("splotch", "", "splotch mode: animate") + splotchKey := fs.String("splotch-key", "", "splotch bitmap substring key") + rotateGround := fs.String("rotate-ground", "", "set rotatetexture on ground: 0 or 1") + groundKey := fs.String("ground-key", "", "ground bitmap substring key") + chamfer := fs.String("chamfer", "", "chamfer mode: add, delete") + retileGround := fs.String("retile-ground", "", "retile ground UVs: 1, 2, 3") + raiseLower := fs.String("raise-lower", "", "raise or lower tile: raise, lower") + raiseAmount := fs.Float64("raise-amount", 0, "raise/lower amount") + tilefadeUndo := fs.Bool("tilefade-undo", false, "undo tilefade slicing") + + // Mesh extras + tvertSnap := fs.String("tvert-snap", "", "UV snap grid: 256, 512, 1024") + placeableTransparency := fs.Bool("placeable-transparency", false, "enable placeable transparency processing") + transparencyKey := fs.String("transparency-key", "", "transparency bitmap substring key") + remapWalkmeshMaterial := fs.String("remap-walkmesh-material", "", "AABB material remap: FROM:TO") + + fs.Usage = func() { + fmt.Fprintf(os.Stderr, "Usage: %s [flags] [output_path]\n\n", filepath.Base(os.Args[0])) + fmt.Fprintf(os.Stderr, "Legacy mode. Consider using subcommands: check, repair, compile, decompile\n\n") + fs.PrintDefaults() + } + + if err := fs.Parse(args); err != nil { + if errors.Is(err, flag.ErrHelp) { + return exitOK + } + return exitUsage + } + if err := validateColorMode(*colorMode); err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: %v\n", err) + return exitUsage + } + + pos := fs.Args() + if len(pos) < 1 { + fs.Usage() + return exitUsage + } + + inputPath := pos[0] + var outputPath string + if len(pos) >= 2 { + outputPath = pos[1] + } + + if *workers < 1 { + *workers = 1 + } + + if *decompileOnly && (*checkFlag || *fixAll || *fixPivots || *fixAABB || *fixTilefade || *stripDegen || *fixAnims || *reparentChildren || *wrapRoot || *splitMultiEdge || *scaleFactor != 0) { + fmt.Fprintf(os.Stderr, "cleanmodels: --decompile-only cannot be combined with --check or repair flags\n") + return exitUsage + } + + if *dryRun { + *checkFlag = true + } + + opts := procOpts{ + check: *checkFlag, + decompileOnly: *decompileOnly, + forceBin: *decompileFlag, + jsonOut: *jsonOut, + jsonLines: *jsonLines, + verbose: *verbose, + quiet: *quiet, + include: parseNameSet(*includeStr), + exclude: parseNameSet(*excludeStr), + workers: *workers, + recursive: *recursive, + dryRun: *dryRun, + compile: *compileFlag, + colorMode: *colorMode, + repairOpts: repairOpts{ + fixPivots: *fixPivots || *fixAll, + fixAABB: *fixAABB || *fixAll, + fixTilefade: *fixTilefade || *fixAll, + stripDegenerate: *stripDegen || *fixAll, + fixAnimations: *fixAnims || *fixAll, + reparentChildren: *reparentChildren || *fixAll, + wrapRoot: *wrapRoot || *fixAll, + splitMultiEdge: *splitMultiEdge || *fixAll, + scale: float32(*scaleFactor), + scaleX: float32(*scaleX), + scaleY: float32(*scaleY), + scaleZ: float32(*scaleZ), + classification: strings.ToUpper(*classification), + snapMode: *snapMode, + renderOverride: *renderOverride, + shadowOverride: *shadowOverride, + forceWhite: *forceWhite, + mergeByBitmap: *mergeByBitmap, + cullInvisible: *cullInvisible, + pivot: pivotOpts{ + allowSplit: *pivotAllowSplit, + belowZ0: *pivotBelowZ0, + moveBad: *pivotMoveBad, + smoothing: *pivotSmoothing, + minFaces: *pivotMinFaces, + splitFirst: *pivotSplitFirst, + }, + tvertSnap: *tvertSnap, + placeableTransparency: *placeableTransparency, + transparencyKey: *transparencyKey, + remapWalkmeshMaterial: *remapWalkmeshMaterial, + tilefadeUndo: *tilefadeUndo, + }, + tileOpts: tileOpts{ + tilefadeZ: float32(*tilefadeZ), + water: *water, + waterKey: *waterKey, + dynamicWater: *dynamicWater, + waveHeight: *waveHeight, + rotateWater: *rotateWater, + retileWater: *retileWater, + foliage: *foliage, + foliageKey: *foliageKey, + splotch: *splotch, + splotchKey: *splotchKey, + rotateGround: *rotateGround, + groundKey: *groundKey, + chamfer: *chamfer, + retileGround: *retileGround, + raiseLower: *raiseLower, + raiseAmount: *raiseAmount, + }, + } + + return dispatch(inputPath, outputPath, opts) +} diff --git a/cmd/cleanmodels/output.go b/cmd/cleanmodels/output.go new file mode 100644 index 0000000..9a6db13 --- /dev/null +++ b/cmd/cleanmodels/output.go @@ -0,0 +1,454 @@ +package main + +import ( + "fmt" + "io" + "os" + "path/filepath" + "strings" + "github.com/plenarius/cleanmodels/pkg/mdl" +) + +// ANSI escape sequences for terminal color output. +const ( + ansiReset = "\033[0m" + ansiBold = "\033[1m" + ansiDim = "\033[2m" + ansiRed = "\033[31m" + ansiYellow = "\033[33m" + ansiGreen = "\033[32m" +) + +// termWriter wraps an io.Writer with optional ANSI color support. +// +// cols is the terminal width when stdout is a real TTY, or 0 when +// piped/unknown. formatBatchLine uses it to keep diagnostic lines on +// a single visual line on narrow terminals. +type termWriter struct { + w io.Writer + color bool + cols int +} + +func newTermWriter(w io.Writer, color bool) *termWriter { + return &termWriter{w: w, color: color} +} + +func (tw *termWriter) Write(p []byte) (int, error) { return tw.w.Write(p) } + +func (tw *termWriter) styled(style, s string) string { + if !tw.color { + return s + } + return style + s + ansiReset +} + +func (tw *termWriter) bold(s string) string { return tw.styled(ansiBold, s) } +func (tw *termWriter) dim(s string) string { return tw.styled(ansiDim, s) } +func (tw *termWriter) red(s string) string { return tw.styled(ansiRed, s) } +func (tw *termWriter) yellow(s string) string { return tw.styled(ansiYellow, s) } +func (tw *termWriter) green(s string) string { return tw.styled(ansiGreen, s) } + +// severityTag returns a color-coded severity label. +func (tw *termWriter) severityTag(s mdl.Severity) string { + tag := severityString(s) + switch s { + case mdl.SevError, mdl.SevFatal: + return tw.red(tag) + case mdl.SevWarning: + return tw.yellow(tag) + case mdl.SevInfo: + return tw.dim(tag) + default: + return tag + } +} + +// printSingleResult formats output for a single file in human-readable mode. +func (tw *termWriter) printSingleResult(path string, res Result, model *mdl.Model, parseErrs []mdl.ParseError, verbose, quiet bool) { + if quiet { + return + } + + baseName := filepath.Base(path) + fixes := countFixes(res) + + if res.Error != "" { + fmt.Fprintf(tw.w, "%s %s\n", tw.bold(baseName), tw.red("ERROR: "+res.Error)) + return + } + + if fixes == 0 && len(res.Actions) == 0 && len(res.Warnings) == 0 && len(parseErrs) == 0 && countCheckErrors(res.Checks) == 0 { + if verbose { + fmt.Fprintf(tw.w, "%s %s\n", tw.bold(baseName), tw.green("clean")) + } + return + } + + // Header line + parts := []string{} + if fixes > 0 { + parts = append(parts, tw.green(fmt.Sprintf("%d %s", fixes, pluralize(fixes, "repair", "repairs")))) + } + warnCount := len(res.Warnings) + len(parseErrs) + countCheckBySeverity(res.Checks, mdl.SevWarning) + if warnCount > 0 { + parts = append(parts, tw.yellow(fmt.Sprintf("%d %s", warnCount, pluralize(warnCount, "warning", "warnings")))) + } + errCount := countCheckErrors(res.Checks) + if errCount > 0 { + parts = append(parts, tw.red(fmt.Sprintf("%d %s", errCount, pluralize(errCount, "error", "errors")))) + } + if len(parts) == 0 && len(res.Actions) > 0 { + parts = append(parts, tw.green("ok")) + } + fmt.Fprintf(tw.w, "%s %s\n", tw.bold(baseName), strings.Join(parts, ", ")) + + tw.printResultDetail(res, parseErrs, verbose) + + if verbose && model != nil { + tw.printModelStats(model) + } +} + +// printResultDetail prints the indented detail block (actions, repairs, +// warnings, parse errors, checks) under a previously-printed header line. +// Shared between single-file output and verbose batch output. Caller is +// responsible for printing the header. +// +// SevInfo checks are filtered unless verbose is true so default output +// stays signal-only. +func (tw *termWriter) printResultDetail(res Result, parseErrs []mdl.ParseError, verbose bool) { + for _, a := range res.Actions { + fmt.Fprintf(tw.w, " %s %s\n", tw.dim("[ACTION]"), a) + } + for _, r := range res.Repairs { + fmt.Fprintf(tw.w, " %s %s\n", tw.green("[REPAIR]"), r) + } + for _, wn := range res.Warnings { + fmt.Fprintf(tw.w, " %s decompile [%s] off=%d: %s\n", tw.yellow("[WARN]"), wn.Node, wn.Offset, wn.Message) + } + for _, pe := range parseErrs { + fmt.Fprintf(tw.w, " %s parse: %v\n", tw.yellow("[WARN]"), pe) + } + for _, r := range res.Checks { + if !verbose && r.Severity == mdl.SevInfo { + continue + } + node := r.Node + if node == "" { + node = "-" + } + fixTag := "" + if r.Fixed { + fixTag = tw.green(" [FIXED]") + } + fmt.Fprintf(tw.w, " [%s] %s (%s): %s%s\n", tw.severityTag(r.Severity), r.Check, node, r.Message, fixTag) + } +} + +// printBatchLine formats a single line of batch progress output. +func (tw *termWriter) printBatchLine(idx, total int, baseName string, res Result, parseErrs []mdl.ParseError) { + fmt.Fprintln(tw.w, tw.formatBatchLine(idx, total, baseName, res, parseErrs)) +} + +// printBatchSummary formats the final summary line for batch processing. +func (tw *termWriter) printBatchSummary(totalFiles, totalRepairs, totalWarnings, totalErrors int) { + parts := []string{fmt.Sprintf("%d %s", totalFiles, pluralize(totalFiles, "file", "files"))} + if totalRepairs > 0 { + parts = append(parts, tw.green(fmt.Sprintf("%d %s", totalRepairs, pluralize(totalRepairs, "repair", "repairs")))) + } + if totalWarnings > 0 { + parts = append(parts, tw.yellow(fmt.Sprintf("%d %s", totalWarnings, pluralize(totalWarnings, "warning", "warnings")))) + } + if totalErrors > 0 { + parts = append(parts, tw.red(fmt.Sprintf("%d %s", totalErrors, pluralize(totalErrors, "error", "errors")))) + } + fmt.Fprintf(tw.w, "\n%s\n", strings.Join(parts, ", ")) +} + +func pluralize(n int, singular, plural string) string { + if n == 1 { + return singular + } + return plural +} + +// ANSI cursor control for in-place terminal rewriting. +const ( + ansiClearLine = "\033[2K" + ansiCursorUp = "\033[%dA" + ansiHideCursor = "\033[?25l" + ansiShowCursor = "\033[?25h" +) + +// liveProgress manages in-place terminal output for batch processing. +// Lines are kept sorted by file index, and a summary counter updates live. +type liveProgress struct { + tw *termWriter + total int + lines []string // rendered line per file slot (0-indexed) + done int + repairs int + warnings int + errors int + linesDrawn int // how many lines we last wrote to terminal +} + +func newLiveProgress(tw *termWriter, total int) *liveProgress { + lp := &liveProgress{ + tw: tw, + total: total, + lines: make([]string, total), + } + width := len(fmt.Sprintf("%d", total)) + for i := 0; i < total; i++ { + lp.lines[i] = fmt.Sprintf("[%*d/%d] %s", width, i+1, total, tw.dim("...")) + } + return lp +} + +func (lp *liveProgress) update(fileIdx int, baseName string, res Result, parseErrs []mdl.ParseError) { + lp.lines[fileIdx] = lp.tw.formatBatchLine(fileIdx+1, lp.total, baseName, res, parseErrs) + fixes := countFixes(res) + w, e := tally(res, len(parseErrs)) + lp.done++ + lp.repairs += fixes + lp.warnings += w + lp.errors += e +} + +func (lp *liveProgress) render() { + if lp.linesDrawn > 0 { + fmt.Fprintf(lp.tw.w, ansiCursorUp, lp.linesDrawn) + } + + // Determine visible window: show up to 20 lines around the action + maxVisible := 20 + if lp.total <= maxVisible { + for _, line := range lp.lines { + fmt.Fprintf(lp.tw.w, "%s%s\n", ansiClearLine, line) + } + lp.linesDrawn = lp.total + 1 + } else { + // Show first few, last completed, and summary + shown := 0 + for i, line := range lp.lines { + if i < maxVisible-1 { + fmt.Fprintf(lp.tw.w, "%s%s\n", ansiClearLine, line) + shown++ + } else if i == maxVisible-1 { + remaining := lp.total - maxVisible + fmt.Fprintf(lp.tw.w, "%s %s\n", ansiClearLine, + lp.tw.dim(fmt.Sprintf("... and %d more", remaining))) + shown++ + break + } + } + lp.linesDrawn = shown + 1 + } + + // Summary line + pct := 0 + if lp.total > 0 { + pct = lp.done * 100 / lp.total + } + summary := fmt.Sprintf("%s%d/%d (%d%%)", ansiClearLine, lp.done, lp.total, pct) + if lp.repairs > 0 { + summary += " " + lp.tw.green(fmt.Sprintf("%d %s", lp.repairs, pluralize(lp.repairs, "repair", "repairs"))) + } + if lp.errors > 0 { + summary += " " + lp.tw.red(fmt.Sprintf("%d %s", lp.errors, pluralize(lp.errors, "error", "errors"))) + } + fmt.Fprintf(lp.tw.w, "%s\n", summary) +} + +func (lp *liveProgress) finish() { + // Final render with all lines settled + lp.render() +} + +// formatBatchLine returns a formatted batch line string (no trailing newline). +// +// When the term writer knows the terminal width (cols > 0), the dot leader +// shrinks so the assembled line fits within cols-1 columns and avoids the +// trailing wrap that doubles every progress line on narrow terminals. When +// cols is 0 (piped, unknown), the historical 50-char filename region is +// preserved. +func (tw *termWriter) formatBatchLine(idx, total int, baseName string, res Result, parseErrs []mdl.ParseError) string { + width := len(fmt.Sprintf("%d", total)) + prefix := fmt.Sprintf("[%*d/%d]", width, idx, total) + + fixes := countFixes(res) + warns, errs := tally(res, len(parseErrs)) + + var statusPlain string + var statusColored string + switch { + case res.Error != "": + statusPlain = "ERROR: " + truncate(res.Error, 40) + statusColored = tw.red(statusPlain) + case errs > 0: + statusPlain = fmt.Sprintf("%d %s", errs, pluralize(errs, "error", "errors")) + statusColored = tw.red(statusPlain) + case fixes > 0: + statusPlain = fmt.Sprintf("%d %s", fixes, pluralize(fixes, "repair", "repairs")) + statusColored = tw.green(statusPlain) + case warns > 0: + statusPlain = fmt.Sprintf("%d %s", warns, pluralize(warns, "warning", "warnings")) + statusColored = tw.yellow(statusPlain) + case len(res.Actions) > 0: + statusPlain = "ok" + statusColored = tw.green(statusPlain) + default: + statusPlain = "clean" + statusColored = tw.dim(statusPlain) + } + + nameLen := len(baseName) + // Default historical region: 50 chars between prefix and status. + leaderLen := 50 - nameLen + if leaderLen < 3 { + leaderLen = 3 + } + if tw.cols > 0 { + // Visible budget: prefix + " " + baseName + " " + dots + " " + status. + // Reserve one trailing column to avoid edge-of-window wrap glyphs. + fixed := len(prefix) + 1 + nameLen + 2 + len(statusPlain) + 1 + if budget := tw.cols - fixed; budget < leaderLen { + leaderLen = budget + } + if leaderLen < 3 { + leaderLen = 3 + } + } + leader := " " + strings.Repeat(".", leaderLen) + " " + + return fmt.Sprintf("%s %s%s%s", prefix, baseName, tw.dim(leader), statusColored) +} + +func truncate(s string, max int) string { + if len(s) <= max { + return s + } + return s[:max-3] + "..." +} + +// shouldColorize returns true if output should use ANSI color codes. +// mode: "always" forces on, "never" forces off, "auto" (or empty) +// honors NO_COLOR (https://no-color.org/) and FORCE_COLOR env vars, +// then falls back to TTY detection on the supplied descriptor. +// Explicit mode beats env vars; env vars beat TTY detection. +func shouldColorize(fd uintptr, mode string) bool { + switch mode { + case "always": + return true + case "never": + return false + } + if os.Getenv("NO_COLOR") != "" { + return false + } + if os.Getenv("FORCE_COLOR") != "" { + return true + } + return isTerminal(int(fd)) +} + +// printModelStats prints a compact structural overview of a model. +func (tw *termWriter) printModelStats(m *mdl.Model) { + if m == nil { + return + } + + var meshCount, faceTotal, vertTotal, lightCount, emitterCount, dummyCount, skinCount int + maxDepth := 0 + depthOf := map[string]int{} + + for _, n := range m.Nodes { + if n == nil { + continue + } + d := 0 + if pd, ok := depthOf[strings.ToLower(n.Parent)]; ok { + d = pd + 1 + } + depthOf[strings.ToLower(n.Name)] = d + if d > maxDepth { + maxDepth = d + } + + switch { + case n.Skin != nil: + skinCount++ + meshCount++ + case n.Mesh != nil: + meshCount++ + case n.Light != nil: + lightCount++ + case n.Emitter != nil: + emitterCount++ + default: + dummyCount++ + } + if n.Mesh != nil { + faceTotal += len(n.Mesh.Faces) + vertTotal += len(n.Mesh.Verts) + } + } + + animTotal := len(m.Animations) + var maxAnimLen float32 + for _, a := range m.Animations { + if a.Length > maxAnimLen { + maxAnimLen = a.Length + } + } + + fmt.Fprintf(tw.w, "\n") + fmt.Fprintf(tw.w, " %s %s", tw.bold(m.Name), tw.dim(m.Classification)) + if m.SuperModel != "" && !strings.EqualFold(m.SuperModel, "NULL") { + fmt.Fprintf(tw.w, " super:%s", m.SuperModel) + } + fmt.Fprintf(tw.w, "\n") + + // Node breakdown + nodeParts := []string{fmt.Sprintf("%d nodes", len(m.Nodes))} + if meshCount > 0 { + nodeParts = append(nodeParts, fmt.Sprintf("%d mesh", meshCount)) + } + if skinCount > 0 { + nodeParts = append(nodeParts, fmt.Sprintf("%d skin", skinCount)) + } + if lightCount > 0 { + nodeParts = append(nodeParts, fmt.Sprintf("%d light", lightCount)) + } + if emitterCount > 0 { + nodeParts = append(nodeParts, fmt.Sprintf("%d emitter", emitterCount)) + } + fmt.Fprintf(tw.w, " %s depth %d\n", strings.Join(nodeParts, ", "), maxDepth) + + // Geometry + if faceTotal > 0 { + fmt.Fprintf(tw.w, " %s faces, %s verts\n", formatCount(faceTotal), formatCount(vertTotal)) + } + + // Animations + if animTotal > 0 { + fmt.Fprintf(tw.w, " %d %s", animTotal, pluralize(animTotal, "animation", "animations")) + if maxAnimLen > 0 { + fmt.Fprintf(tw.w, " longest %.1fs", maxAnimLen) + } + fmt.Fprintf(tw.w, "\n") + } +} + +func formatCount(n int) string { + if n >= 1000000 { + return fmt.Sprintf("%.1fM", float64(n)/1000000) + } + if n >= 1000 { + return fmt.Sprintf("%.1fk", float64(n)/1000) + } + return fmt.Sprintf("%d", n) +} + diff --git a/cmd/cleanmodels/output_test.go b/cmd/cleanmodels/output_test.go new file mode 100644 index 0000000..bf6e67f --- /dev/null +++ b/cmd/cleanmodels/output_test.go @@ -0,0 +1,129 @@ +package main + +import ( + "bytes" + "strings" + "testing" + + "github.com/plenarius/cleanmodels/pkg/mdl" +) + +// stripANSI removes ANSI CSI escape sequences from s for visible-length checks. +func stripANSI(s string) string { + var out bytes.Buffer + i := 0 + for i < len(s) { + if s[i] == '\x1b' && i+1 < len(s) && s[i+1] == '[' { + j := i + 2 + for j < len(s) { + c := s[j] + j++ + if c >= 0x40 && c <= 0x7e { + break + } + } + i = j + continue + } + out.WriteByte(s[i]) + i++ + } + return out.String() +} + +// leaderDots returns the number of dots in the contiguous dot run between +// the basename and the status (i.e. excludes any dots inside the basename +// or the status itself). +func leaderDots(line, baseName string) int { + i := strings.Index(line, baseName) + if i < 0 { + return 0 + } + rest := line[i+len(baseName):] + rest = strings.TrimLeft(rest, " ") + n := 0 + for _, r := range rest { + if r != '.' { + break + } + n++ + } + return n +} + +func TestFormatBatchLine_PipedKeepsFiftyCharRegion(t *testing.T) { + tw := &termWriter{w: nil, color: false, cols: 0} + const name = "tile.mdl" + line := tw.formatBatchLine(1, 1, name, Result{}, nil) + visible := stripANSI(line) + dots := leaderDots(visible, name) + wantDots := 50 - len(name) + if dots != wantDots { + t.Fatalf("piped mode: got %d dots, want %d. line=%q", dots, wantDots, visible) + } +} + +func TestFormatBatchLine_NarrowTTYShrinksLeader(t *testing.T) { + tw := &termWriter{w: nil, color: false, cols: 60} + name := "very_long_tile_name_indeed.mdl" + line := tw.formatBatchLine(1, 1, name, Result{}, nil) + visible := stripANSI(line) + if len(visible) > tw.cols { + t.Fatalf("narrow tty: line len %d > cols %d. line=%q", len(visible), tw.cols, visible) + } +} + +func TestFormatBatchLine_NarrowTTYKeepsMinimumDots(t *testing.T) { + tw := &termWriter{w: nil, color: false, cols: 30} + const name = "huge_basename_that_eats_the_window.mdl" + line := tw.formatBatchLine(1, 1, name, Result{}, nil) + visible := stripANSI(line) + dots := leaderDots(visible, name) + if dots < 3 { + t.Fatalf("narrow tty + huge name: got %d leader dots, want >= 3. line=%q", dots, visible) + } +} + +func TestFormatBatchLine_WideTTYDoesNotExceedHistoricalRegion(t *testing.T) { + tw := &termWriter{w: nil, color: false, cols: 200} + const name = "x.mdl" + line := tw.formatBatchLine(1, 1, name, Result{}, nil) + visible := stripANSI(line) + dots := leaderDots(visible, name) + wantDots := 50 - len(name) + if dots != wantDots { + t.Fatalf("wide tty: got %d leader dots, want %d (historical cap preserved). line=%q", dots, wantDots, visible) + } +} + +// A file with only warnings (no errors, repairs, or actions) used to fall +// through to "clean" because formatBatchLine had no warning branch — even +// though the batch summary correctly tallied them. Status now reads as +// "N warnings" so the per-line view matches the summary. +func TestFormatBatchLine_WarningsOnly_NotClean(t *testing.T) { + tw := &termWriter{w: nil, color: false, cols: 0} + res := Result{ + Checks: []mdl.CheckResult{ + {Check: "ex", Severity: mdl.SevWarning, Message: "x"}, + {Check: "ex", Severity: mdl.SevWarning, Message: "y"}, + }, + } + line := stripANSI(tw.formatBatchLine(1, 1, "f.mdl", res, nil)) + if strings.Contains(line, "clean") { + t.Fatalf("warnings-only file rendered as clean: %q", line) + } + if !strings.Contains(line, "2 warnings") { + t.Fatalf("expected `2 warnings` in line, got %q", line) + } +} + +// Parse errors are tallied as warnings (not errors) by tally(); they must +// also flow through to the batch line so users see them on a single line. +func TestFormatBatchLine_ParseErrorsCountAsWarnings(t *testing.T) { + tw := &termWriter{w: nil, color: false, cols: 0} + parseErrs := []mdl.ParseError{{}, {}, {}} + line := stripANSI(tw.formatBatchLine(1, 1, "f.mdl", Result{}, parseErrs)) + if !strings.Contains(line, "3 warnings") { + t.Fatalf("expected `3 warnings`, got %q", line) + } +} diff --git a/cmd/cleanmodels/process.go b/cmd/cleanmodels/process.go new file mode 100644 index 0000000..1ad5de8 --- /dev/null +++ b/cmd/cleanmodels/process.go @@ -0,0 +1,737 @@ +package main + +import ( + "encoding/json" + "errors" + "fmt" + "io" + "os" + "path/filepath" + "runtime" + "strings" + "sync" + + "github.com/plenarius/cleanmodels/pkg/checks" + "github.com/plenarius/cleanmodels/pkg/mdl" +) + +// Result is the JSON payload for a single processed file. +type Result struct { + File string `json:"file"` + Warnings []mdl.DecompileWarning `json:"warnings,omitempty"` + Checks []mdl.CheckResult `json:"checks,omitempty"` + Repairs []string `json:"repairs,omitempty"` + Actions []string `json:"actions,omitempty"` + Error string `json:"error,omitempty"` +} + +// Event is a streaming JSON-lines event for real-time GUI consumption. +type Event struct { + Type string `json:"type"` + File string `json:"file,omitempty"` + Index int `json:"index,omitempty"` + Total int `json:"total,omitempty"` + Message string `json:"message,omitempty"` + Fixes int `json:"fixes,omitempty"` + *Result `json:"result,omitempty"` +} + +type pivotOpts struct { + allowSplit bool + belowZ0 string // "disallow", "allow", "slice" + moveBad string // "no", "top", "middle", "bottom" + smoothing string // "use", "protect", "ignore" + minFaces int + splitFirst string // "convex", "concave" +} + +type repairOpts struct { + fixPivots, fixAABB, fixTilefade, stripDegenerate bool + fixAnimations, reparentChildren, wrapRoot bool + splitMultiEdge bool + forceWhite, mergeByBitmap, cullInvisible bool + scale float32 + scaleX, scaleY, scaleZ float32 + classification string + snapMode string + renderOverride, shadowOverride string + + pivot pivotOpts + + tvertSnap string // "256", "512", "1024" + placeableTransparency bool + transparencyKey string + remapWalkmeshMaterial string // "FROM:TO" + tilefadeUndo bool + standardizeTexture0 bool + stripEEExtras bool +} + +type tileOpts struct { + tilefadeZ float32 + water bool + waterKey string + dynamicWater string // "yes", "no", "wavy" + waveHeight float64 + rotateWater string // "0" or "1" + retileWater string // "1", "2", "3" + foliage string // "tilefade", "animate", "de-animate", "ignore" + foliageKey string + splotch string // "animate" + splotchKey string + rotateGround string // "0" or "1" + groundKey string + chamfer string // "add", "delete" + retileGround string // "1", "2", "3" + raiseLower string // "raise", "lower" + raiseAmount float64 +} + +type procOpts struct { + check, forceBin, jsonOut, jsonLines, verbose, quiet, recursive bool + decompileOnly, dryRun bool + compile bool + workers int + include, exclude map[string]bool + colorMode string // "auto", "always", "never" + + repairOpts + tileOpts +} + +const ( + exitOK = 0 + exitErrors = 1 + exitUsage = 2 +) + +func setAllRepairs(o *procOpts) { + o.fixPivots = true + o.fixAABB = true + o.fixTilefade = true + o.stripDegenerate = true + o.fixAnimations = true + o.reparentChildren = true + o.wrapRoot = true + o.splitMultiEdge = true +} + +var eventMu sync.Mutex + +func emitEvent(evt Event) { + eventMu.Lock() + defer eventMu.Unlock() + data, err := json.Marshal(evt) + if err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: json marshal event: %v\n", err) + return + } + os.Stdout.Write(data) + os.Stdout.Write([]byte{'\n'}) +} + +func processPanicMessage(r interface{}) string { + if os.Getenv("CLEANMODELS_DEBUG") != "" { + buf := make([]byte, 4096) + n := runtime.Stack(buf, false) + return fmt.Sprintf("panic: %v\n%s", r, buf[:n]) + } + return fmt.Sprintf("panic: %v", r) +} + +func parseNameSet(s string) map[string]bool { + if strings.TrimSpace(s) == "" { + return nil + } + parts := strings.Split(s, ",") + m := make(map[string]bool) + for _, p := range parts { + name := strings.TrimSpace(p) + if name != "" { + m[name] = true + } + } + return m +} + +func isBinaryMDL(path string) (bool, error) { + f, err := os.Open(path) + if err != nil { + return false, err + } + defer f.Close() + + var hdr [4]byte + n, err := io.ReadFull(f, hdr[:]) + if err != nil && !errors.Is(err, io.ErrUnexpectedEOF) { + return false, err + } + if n < 4 { + return false, nil + } + return hdr[0] == 0 && hdr[1] == 0 && hdr[2] == 0 && hdr[3] == 0, nil +} + +func dispatch(inputPath, outputPath string, opts procOpts) int { + useColor := !opts.jsonOut && !opts.jsonLines && !opts.quiet + tw := newTermWriter(os.Stdout, useColor && shouldColorize(os.Stdout.Fd(), opts.colorMode)) + if isTerminal(int(os.Stdout.Fd())) { + tw.cols = terminalWidth(int(os.Stdout.Fd())) + } + // errTw mirrors the colour decision but targets stderr. Diagnostic + // summary lines route here so they never collide with --json data on + // stdout, even when the user pipes only stdout to a file. + errTw := newTermWriter(os.Stderr, useColor && shouldColorize(os.Stderr.Fd(), opts.colorMode)) + if isTerminal(int(os.Stderr.Fd())) { + errTw.cols = terminalWidth(int(os.Stderr.Fd())) + } + fi, err := os.Stat(inputPath) + if err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: %v\n", wrapWithSuggestion(err, inputPath)) + return exitErrors + } + if fi.IsDir() { + return runBatch(inputPath, outputPath, opts, tw, errTw) + } + return runSingle(inputPath, outputPath, opts, tw, errTw) +} + +func applyRepairs(model *mdl.Model, o procOpts, res *Result) { + if o.classification != "" { + old := model.Classification + model.Classification = o.classification + if old != o.classification { + res.Repairs = append(res.Repairs, fmt.Sprintf("classification overridden from %q to %q", old, o.classification)) + } + } + + sx, sy, sz := o.scaleX, o.scaleY, o.scaleZ + if sx == 0 && sy == 0 && sz == 0 && o.scale != 0 { + sx, sy, sz = o.scale, o.scale, o.scale + } + if sx != 0 || sy != 0 || sz != 0 { + if sx == 0 { + sx = 1 + } + if sy == 0 { + sy = 1 + } + if sz == 0 { + sz = 1 + } + if sx == sy && sy == sz { + mdl.ScaleModel(model, sx) + res.Repairs = append(res.Repairs, fmt.Sprintf("scaled model by factor %g (animationscale now %g)", sx, model.AnimationScale)) + } else { + mdl.ScaleModelPerAxis(model, sx, sy, sz) + res.Repairs = append(res.Repairs, fmt.Sprintf("scaled model by factors x=%g y=%g z=%g", sx, sy, sz)) + } + hasAABB := false + for _, n := range model.Nodes { + if n != nil && n.Aabb != nil { + hasAABB = true + break + } + } + if hasAABB && !o.fixAABB { + res.Repairs = append(res.Repairs, "model has AABB nodes; consider using --fix-aabb to rebuild after scaling") + } + } + + if o.snapMode != "" { + mdl.SnapVertices(model, o.snapMode) + res.Repairs = append(res.Repairs, fmt.Sprintf("snapped vertices to %s grid", o.snapMode)) + } + + if o.renderOverride != "" { + n := mdl.ForceRender(model, o.renderOverride) + if n > 0 { + res.Repairs = append(res.Repairs, fmt.Sprintf("set render=%s on %d mesh nodes", o.renderOverride, n)) + } + } + if o.shadowOverride != "" { + n := mdl.ForceShadow(model, o.shadowOverride) + if n > 0 { + res.Repairs = append(res.Repairs, fmt.Sprintf("set shadow=%s on %d mesh nodes", o.shadowOverride, n)) + } + } + + if o.forceWhite { + n := mdl.ForceWhiteAmbientDiffuse(model) + if n > 0 { + res.Repairs = append(res.Repairs, fmt.Sprintf("set ambient/diffuse to white on %d mesh nodes", n)) + } + } + + if o.cullInvisible { + n := mdl.CullInvisibleMeshes(model) + if n > 0 { + res.Repairs = append(res.Repairs, fmt.Sprintf("culled %d invisible meshes to dummy", n)) + } + } + + if o.mergeByBitmap { + n := mdl.MergeByBitmap(model) + if n > 0 { + res.Repairs = append(res.Repairs, fmt.Sprintf("merged %d mesh groups by bitmap", n)) + } + } + if o.fixPivots { + popts := mdl.PivotOptions{ + AllowSplit: o.pivot.allowSplit, + BelowZ0: o.pivot.belowZ0, + MoveBad: o.pivot.moveBad, + Smoothing: o.pivot.smoothing, + MinFaces: o.pivot.minFaces, + SplitFirst: o.pivot.splitFirst, + } + msgs := mdl.RepairPivots(model, popts) + for _, m := range msgs { + res.Repairs = append(res.Repairs, m) + } + } + if o.fixAABB { + for _, n := range model.Nodes { + if n == nil || n.Aabb == nil || n.Mesh == nil || len(n.Mesh.Faces) == 0 { + continue + } + if err := mdl.RebuildAABB(n); err != nil { + res.Repairs = append(res.Repairs, fmt.Sprintf("aabb rebuild %s: %v", n.Name, err)) + } else { + res.Repairs = append(res.Repairs, fmt.Sprintf("aabb rebuilt for %s (%d entries)", n.Name, len(n.Aabb.Entries))) + } + } + } + if o.fixTilefade { + msgs := mdl.SliceTileFade(model, o.tilefadeZ) + for _, m := range msgs { + res.Repairs = append(res.Repairs, m) + } + } + if o.stripDegenerate { + total := mdl.StripDegenerateFaces(model) + if total > 0 { + res.Repairs = append(res.Repairs, fmt.Sprintf("stripped %d degenerate (zero-area) faces", total)) + } + } + if o.fixAnimations { + for _, m := range mdl.FixAnimationLengths(model) { + res.Repairs = append(res.Repairs, m) + } + } + if o.reparentChildren { + for _, m := range mdl.ReparentFromRestrictedNodes(model) { + res.Repairs = append(res.Repairs, m) + } + } + if o.wrapRoot { + if msg := mdl.WrapRootInDummy(model); msg != "" { + res.Repairs = append(res.Repairs, msg) + } + } + if o.splitMultiEdge { + for _, n := range model.Nodes { + if n == nil || !n.IsShadowCaster() { + continue + } + fixed := mdl.SplitMultipleEdges(n) + if fixed > 0 { + res.Repairs = append(res.Repairs, fmt.Sprintf("split %d multiple edge(s) on shadow node %q to fix shadow tearing", fixed, n.Name)) + } + } + } + + if o.tilefadeUndo { + for _, m := range mdl.UndoTileFade(model) { + res.Repairs = append(res.Repairs, m) + } + } + + if o.tvertSnap != "" { + grid := 0 + switch o.tvertSnap { + case "256": + grid = 256 + case "512": + grid = 512 + case "1024": + grid = 1024 + } + if grid > 0 { + n := mdl.SnapTVerts(model, grid) + if n > 0 { + res.Repairs = append(res.Repairs, fmt.Sprintf("snapped %d tverts to 1/%d grid", n, grid)) + } + } + } + + if o.remapWalkmeshMaterial != "" { + parts := strings.SplitN(o.remapWalkmeshMaterial, ":", 2) + if len(parts) == 2 { + var from, to int + if _, err := fmt.Sscanf(parts[0], "%d", &from); err == nil { + if _, err := fmt.Sscanf(parts[1], "%d", &to); err == nil { + for _, m := range mdl.RemapAABBMaterial(model, from, to) { + res.Repairs = append(res.Repairs, m) + } + } + } + } + } + + if o.placeableTransparency && o.transparencyKey != "" { + for _, m := range mdl.PlaceableTransparency(model, o.transparencyKey) { + res.Repairs = append(res.Repairs, m) + } + } + + if o.standardizeTexture0 { + n := mdl.StandardizeTexture0(model) + if n > 0 { + res.Repairs = append(res.Repairs, fmt.Sprintf("standardized bitmap to texture0 on %d mesh nodes", n)) + } + } + + if o.stripEEExtras { + n := mdl.StripEEExtras(model) + if n > 0 { + res.Repairs = append(res.Repairs, fmt.Sprintf("stripped wirecolor/specular/shininess from %d nodes", n)) + } + } + + // Tile operations + if o.tileOpts.rotateWater != "" && o.tileOpts.waterKey != "" { + val := int32(0) + if o.tileOpts.rotateWater == "1" { + val = 1 + } + for _, m := range mdl.SetRotateTexture(model, o.tileOpts.waterKey, val) { + res.Repairs = append(res.Repairs, m) + } + } + + if o.tileOpts.retileWater != "" && o.tileOpts.waterKey != "" { + ts := 0 + switch o.tileOpts.retileWater { + case "1": + ts = 1 + case "2": + ts = 2 + case "3": + ts = 3 + } + if ts > 0 { + for _, m := range mdl.RetileUVs(model, o.tileOpts.waterKey, ts) { + res.Repairs = append(res.Repairs, m) + } + } + } + + if o.tileOpts.rotateGround != "" && o.tileOpts.groundKey != "" { + val := int32(0) + if o.tileOpts.rotateGround == "1" { + val = 1 + } + for _, m := range mdl.SetRotateTexture(model, o.tileOpts.groundKey, val) { + res.Repairs = append(res.Repairs, m) + } + } + + if o.tileOpts.retileGround != "" && o.tileOpts.groundKey != "" { + ts := 0 + switch o.tileOpts.retileGround { + case "1": + ts = 1 + case "2": + ts = 2 + case "3": + ts = 3 + } + if ts > 0 { + for _, m := range mdl.RetileUVs(model, o.tileOpts.groundKey, ts) { + res.Repairs = append(res.Repairs, m) + } + } + } + + if o.tileOpts.foliage == "animate" && o.tileOpts.foliageKey != "" { + for _, m := range mdl.ReparentToModela(model, o.tileOpts.foliageKey, "foliage") { + res.Repairs = append(res.Repairs, m) + } + } + + if o.tileOpts.splotch == "animate" && o.tileOpts.splotchKey != "" { + for _, m := range mdl.ReparentToModela(model, o.tileOpts.splotchKey, "splotch") { + res.Repairs = append(res.Repairs, m) + } + } + + if o.tileOpts.raiseLower != "" && o.tileOpts.raiseAmount != 0 { + for _, m := range mdl.RaiseLowerTile(model, o.tileOpts.raiseLower, float32(o.tileOpts.raiseAmount)) { + res.Repairs = append(res.Repairs, m) + } + } + + switch o.tileOpts.chamfer { + case "add": + for _, m := range mdl.AddChamfers(model) { + res.Repairs = append(res.Repairs, m) + } + case "delete": + for _, m := range mdl.DeleteChamfers(model) { + res.Repairs = append(res.Repairs, m) + } + case "": + default: + res.Repairs = append(res.Repairs, fmt.Sprintf("ignoring unknown chamfer mode %q (expected add|delete)", o.tileOpts.chamfer)) + } + + if o.tileOpts.water { + switch o.tileOpts.dynamicWater { + case "no": + for _, m := range mdl.ConvertWateryToTrimesh(model, o.tileOpts.waterKey) { + res.Repairs = append(res.Repairs, m) + } + case "wavy": + for _, m := range mdl.ApplyWavyWater(model, mdl.WavyWaterOptions{ + WaterKey: o.tileOpts.waterKey, + WaveHeight: o.tileOpts.waveHeight, + }) { + res.Repairs = append(res.Repairs, m) + } + case "yes", "": + default: + res.Repairs = append(res.Repairs, fmt.Sprintf("ignoring unknown dynamic-water mode %q (expected yes|no|wavy)", o.tileOpts.dynamicWater)) + } + } +} + +func runChecks(model *mdl.Model, path string, include, exclude map[string]bool, fix bool) []mdl.CheckResult { + if len(include) == 0 && len(exclude) == 0 { + return checks.RunAll(model, path, fix) + } + return checks.RunFiltered(model, path, include, exclude, fix) +} + +func severityString(s mdl.Severity) string { + switch s { + case mdl.SevInfo: + return "INFO" + case mdl.SevWarning: + return "WARNING" + case mdl.SevError: + return "ERROR" + case mdl.SevFatal: + return "FATAL" + default: + return fmt.Sprintf("SEVERITY(%d)", int(s)) + } +} + +func countCheckBySeverity(results []mdl.CheckResult, want mdl.Severity) int { + n := 0 + for _, r := range results { + if r.Severity == want { + n++ + } + } + return n +} + +func countCheckErrors(results []mdl.CheckResult) int { + return countCheckBySeverity(results, mdl.SevError) + countCheckBySeverity(results, mdl.SevFatal) +} + +func tally(res Result, parseErrCount int) (warnings, errors int) { + warnings = len(res.Warnings) + parseErrCount + countCheckBySeverity(res.Checks, mdl.SevWarning) + errors = countCheckErrors(res.Checks) + if res.Error != "" { + errors++ + } + return warnings, errors +} + +func countFixes(res Result) int { + fixes := 0 + for _, c := range res.Checks { + if c.Fixed { + fixes++ + } + } + fixes += len(res.Repairs) + return fixes +} + +// processOne loads an MDL, optionally writes output, runs checks, returns a Result. +func processOne(path, outputPath string, o procOpts) (res Result, model *mdl.Model, pErrs []mdl.ParseError, retErr error) { + res = Result{File: path} + defer func() { + if r := recover(); r != nil { + res.Error = processPanicMessage(r) + retErr = fmt.Errorf("panic processing %s: %v", path, r) + } + }() + + binMode := o.forceBin + if !o.forceBin { + b, err := isBinaryMDL(path) + if err != nil { + res.Error = wrapWithSuggestion(err, path).Error() + return res, nil, nil, err + } + binMode = b + } + + var parseErrs []mdl.ParseError + var err error + + if o.forceBin || binMode { + model, err = mdl.DecompileFile(path) + if err != nil { + res.Error = wrapWithSuggestion(err, path).Error() + return res, nil, nil, err + } + } else { + var pr *mdl.ParseResult + pr, err = mdl.ParseFile(path) + if err != nil { + res.Error = wrapWithSuggestion(err, path).Error() + return res, nil, nil, err + } + model = pr.Model + parseErrs = pr.Errors + if model != nil { + model.FileType = "ascii" + } + } + + if model != nil { + res.Warnings = model.Warnings + } + + if !o.decompileOnly && model != nil { + applyRepairs(model, o, &res) + } + + if o.check && !o.decompileOnly && model != nil { + fix := !o.dryRun + res.Checks = runChecks(model, path, o.include, o.exclude, fix) + } + + if model != nil && !o.dryRun { + switch { + case o.compile: + outPath := outputPath + if outPath == "" { + outPath = path + } + if err := mdl.CompileFile(model, outPath); err != nil { + res.Error = err.Error() + return res, model, parseErrs, err + } + res.Actions = append(res.Actions, fmt.Sprintf("compiled to binary: %s", outPath)) + case outputPath != "": + // Explicit output target: write the (re-serialized) ASCII + // model there. Honored for any mode that reaches here — + // binary input decompiled to a file, or ASCII input + // cleaned/repaired to a new file — since asking for an + // output target is a strong "yes, write the model" signal. + if err := mdl.WriteFile(model, outputPath); err != nil { + res.Error = err.Error() + return res, model, parseErrs, err + } + case o.decompileOnly && !o.jsonOut: + // `decompile` with no output path: stream ASCII to stdout so + // the tool behaves as a filter in a pipe. This fires for + // ASCII input too (pass-through re-serialize), not just + // binary — previously ASCII input produced no stdout output + // at all, which silently broke `decompile a.mdl | ...`. The + // caller routes the human summary to stderr so it can never + // corrupt the model written here. + if err := mdl.Write(model, os.Stdout); err != nil { + res.Error = err.Error() + return res, model, parseErrs, err + } + } + // Any other single-file case (check/repair on a binary or ASCII + // model with no output target) intentionally writes nothing: the + // model stays put and only the report is emitted. Streaming the + // whole decompiled model to the terminal ahead of check results + // would bury them. + } + + return res, model, parseErrs, nil +} + +// runSingle processes a single file with the given options and output configuration. +// +// Stream routing follows the same rule as runBatch: in plain mode all human +// output (detail + summary) goes to stdout; in --json mode the human summary +// moves to stderr (errTw) so stdout stays machine-clean. +func runSingle(inputPath, outputPath string, o procOpts, tw, errTw *termWriter) int { + if o.jsonLines { + emitEvent(Event{Type: "start", File: filepath.Base(inputPath), Index: 1, Total: 1}) + } + + res, model, parseErrs, err := processOne(inputPath, outputPath, o) + if err != nil && res.Error == "" { + res.Error = err.Error() + } + + exit := exitOK + if res.Error != "" { + exit = exitErrors + } else if countCheckErrors(res.Checks) > 0 { + exit = exitErrors + } + + fixes := countFixes(res) + + // When `decompile` streams the model to stdout (no output path, not + // JSON), stdout is a pure data channel — every human-readable line + // must go to stderr so the piped model stays byte-clean. Same rule as + // --json mode, which keeps the JSON payload alone on stdout. + stdoutIsData := o.decompileOnly && !o.jsonOut && outputPath == "" + humanTw := tw + if stdoutIsData { + humanTw = errTw + } + + if o.jsonLines { + if res.Error != "" { + emitEvent(Event{Type: "error", File: filepath.Base(inputPath), Message: res.Error}) + } else { + emitEvent(Event{Type: "done", File: filepath.Base(inputPath), Fixes: fixes, Result: &res}) + } + } else if o.jsonOut { + enc := json.NewEncoder(os.Stdout) + enc.SetIndent("", " ") + if err := enc.Encode(res); err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: json encode: %v\n", err) + return exitErrors + } + } else { + humanTw.printSingleResult(inputPath, res, model, parseErrs, o.verbose, o.quiet) + if res.Error != "" && o.quiet { + fmt.Fprintf(os.Stderr, "cleanmodels: %s: %s\n", inputPath, res.Error) + } + } + + switch { + case o.quiet, o.jsonLines: + // Quiet emits nothing; json-lines already emitted a per-file event. + case o.jsonOut, stdoutIsData: + // Stdout carries machine/data output (JSON object or decompiled + // model); route the human counts to stderr to keep it clean. + w, e := tally(res, len(parseErrs)) + fmt.Fprintf(errTw.w, "\n%d %s, %d %s, %d %s\n", + 1, "file", w, pluralize(w, "warning", "warnings"), e, pluralize(e, "error", "errors")) + default: + // Plain mode: detail went to stdout, summary follows it. + w, e := tally(res, len(parseErrs)) + fmt.Fprintf(tw.w, "\n%d %s, %d %s, %d %s\n", + 1, "file", w, pluralize(w, "warning", "warnings"), e, pluralize(e, "error", "errors")) + } + + return exit +} diff --git a/cmd/cleanmodels/profile.go b/cmd/cleanmodels/profile.go new file mode 100644 index 0000000..f7557a5 --- /dev/null +++ b/cmd/cleanmodels/profile.go @@ -0,0 +1,53 @@ +package main + +import ( + "fmt" + "os" + "runtime" + "runtime/pprof" +) + +// init enables CPU and memory profiling when the CLEANMODELS_CPUPROFILE +// and CLEANMODELS_MEMPROFILE env vars are set. Both variables hold an +// output path. Profiling is intended for ad-hoc investigation; the +// hook stays inert unless explicitly opted in. +func init() { + if path := os.Getenv("CLEANMODELS_CPUPROFILE"); path != "" { + f, err := os.Create(path) + if err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: cpuprofile create: %v\n", err) + return + } + if err := pprof.StartCPUProfile(f); err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: cpuprofile start: %v\n", err) + f.Close() + return + } + profileCleanups = append(profileCleanups, func() { + pprof.StopCPUProfile() + f.Close() + }) + } + if path := os.Getenv("CLEANMODELS_MEMPROFILE"); path != "" { + profileCleanups = append(profileCleanups, func() { + f, err := os.Create(path) + if err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: memprofile create: %v\n", err) + return + } + defer f.Close() + runtime.GC() + if err := pprof.WriteHeapProfile(f); err != nil { + fmt.Fprintf(os.Stderr, "cleanmodels: memprofile write: %v\n", err) + } + }) + } +} + +var profileCleanups []func() + +func runProfileCleanups() { + for _, fn := range profileCleanups { + fn() + } +} diff --git a/cmd/cleanmodels/terminal_darwin.go b/cmd/cleanmodels/terminal_darwin.go new file mode 100644 index 0000000..e9e7f75 --- /dev/null +++ b/cmd/cleanmodels/terminal_darwin.go @@ -0,0 +1,31 @@ +//go:build darwin || freebsd + +package main + +import ( + "syscall" + "unsafe" +) + +func isTerminal(fd int) bool { + var termios syscall.Termios + _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), uintptr(syscall.TIOCGETA), uintptr(unsafe.Pointer(&termios)), 0, 0, 0) + return err == 0 +} + +// TIOCGWINSZ on darwin/freebsd is 0x40087468. +const tiocgwinsz = 0x40087468 + +type winsize struct { + rows, cols, xpixel, ypixel uint16 +} + +// terminalWidth returns the column count for fd, or 0 if unavailable. +func terminalWidth(fd int) int { + var ws winsize + _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), tiocgwinsz, uintptr(unsafe.Pointer(&ws)), 0, 0, 0) + if err != 0 { + return 0 + } + return int(ws.cols) +} diff --git a/cmd/cleanmodels/terminal_linux.go b/cmd/cleanmodels/terminal_linux.go new file mode 100644 index 0000000..0230a60 --- /dev/null +++ b/cmd/cleanmodels/terminal_linux.go @@ -0,0 +1,31 @@ +//go:build linux + +package main + +import ( + "syscall" + "unsafe" +) + +func isTerminal(fd int) bool { + var termios syscall.Termios + _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), 0x5401, uintptr(unsafe.Pointer(&termios)), 0, 0, 0) + return err == 0 +} + +// TIOCGWINSZ on linux is 0x5413. +const tiocgwinsz = 0x5413 + +type winsize struct { + rows, cols, xpixel, ypixel uint16 +} + +// terminalWidth returns the column count for fd, or 0 if unavailable. +func terminalWidth(fd int) int { + var ws winsize + _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), tiocgwinsz, uintptr(unsafe.Pointer(&ws)), 0, 0, 0) + if err != 0 { + return 0 + } + return int(ws.cols) +} diff --git a/cmd/cleanmodels/terminal_other.go b/cmd/cleanmodels/terminal_other.go new file mode 100644 index 0000000..3986c65 --- /dev/null +++ b/cmd/cleanmodels/terminal_other.go @@ -0,0 +1,12 @@ +//go:build !darwin && !freebsd && !linux && !windows + +package main + +func isTerminal(fd int) bool { + return false +} + +// terminalWidth has no portable fallback on unknown platforms. +func terminalWidth(fd int) int { + return 0 +} diff --git a/cmd/cleanmodels/terminal_windows.go b/cmd/cleanmodels/terminal_windows.go new file mode 100644 index 0000000..ad0c2f7 --- /dev/null +++ b/cmd/cleanmodels/terminal_windows.go @@ -0,0 +1,14 @@ +//go:build windows + +package main + +func isTerminal(fd int) bool { + return false +} + +// terminalWidth on windows is not detected without additional API calls; +// callers fall back to the historical default. Future work: use +// GetConsoleScreenBufferInfo when fd is a console handle. +func terminalWidth(fd int) int { + return 0 +} diff --git a/examples/wasm/.gitignore b/examples/wasm/.gitignore new file mode 100644 index 0000000..b5f5b6d --- /dev/null +++ b/examples/wasm/.gitignore @@ -0,0 +1,3 @@ +cleanmodels.wasm +wasm_exec.js +*.mdl diff --git a/examples/wasm/README.md b/examples/wasm/README.md new file mode 100644 index 0000000..64dad6e --- /dev/null +++ b/examples/wasm/README.md @@ -0,0 +1,104 @@ +# cleanmodels-wasm demo + +A self-contained drag-and-drop demo of the cleanmodels MDL pipeline +running entirely in the browser via WebAssembly. + +- Binary `.mdl` → decompiled ASCII MDL string +- ASCII `.mdl` → parse diagnostics (linter mode) +- No server, no installation; runs offline once cached. + +## Build and serve + +From the repo root: + +```bash +GOOS=js GOARCH=wasm go build -o examples/wasm/cleanmodels.wasm ./cmd/cleanmodels-wasm +cp "$(go env GOROOT)/lib/wasm/wasm_exec.js" examples/wasm/ + +cd examples/wasm +python3 -m http.server 8000 +# open http://localhost:8000/ +``` + +`file://` URLs do not work — browsers block `WebAssembly.instantiateStreaming` +without an HTTP origin. Any static server is fine (`python3 -m http.server`, +`npx serve`, `caddy file-server`, etc.). + +## JS surface + +The wasm module installs a single `cleanmodels` global. All entrypoints +are synchronous and return either `{ ok: true, ... }` on success or +`{ ok: false, error: string }` on failure. + +```js +cleanmodels.version() + // → string + +cleanmodels.decompile(bytes /* Uint8Array */) + // → { ok: true, ascii: string } + // → { ok: false, error: string } + +cleanmodels.compile(ascii /* string */) + // → { ok: true, binary: Uint8Array, + // warnings: { line: number, message: string }[] } + // → { ok: false, error: string } + +cleanmodels.parse(ascii /* string */) + // → { ok: true, warnings: { line: number, message: string }[] } + // → { ok: false, error: string } +``` + +## Embedding in another page + +Two static files: `cleanmodels.wasm` and `wasm_exec.js`. Both ship as +release assets on the [cleanmodels releases page][releases]. Pin a +specific version in your build pipeline and check the SHA. + +```html + + +``` + +After `go.run` returns, the `cleanmodels` global is ready to call. + +For viewers that already understand ASCII MDL, the integration is one +branch in the file-drop handler: + +```js +function handleDrop(file) { + file.arrayBuffer().then(buf => { + const bytes = new Uint8Array(buf); + const looksBinary = bytes.length >= 4 && + bytes[0] === 0 && bytes[1] === 0 && bytes[2] === 0 && bytes[3] === 0; + const ascii = looksBinary + ? cleanmodels.decompile(bytes).ascii + : new TextDecoder().decode(bytes); + yourExistingAsciiParser(ascii); + }); +} +``` + +## Performance notes + +- Binary MDLs are typically <1 MB; decompile finishes in single-digit + milliseconds in the browser. +- The wasm runtime initialization happens once; subsequent calls reuse + the same module instance. +- All entrypoints run on the JS main thread. If you need to keep a + page interactive while processing very large meshes, run the wasm + module inside a Web Worker. + +## Artifact size + +- `cleanmodels.wasm`: ~3.9 MB raw, ~1.0 MB gzipped (Go 1.x toolchain) +- `wasm_exec.js`: ~17 KB + +A future build with [TinyGo][tinygo] could shrink this further at the +cost of a stricter stdlib subset. + +[releases]: https://github.com/plenarius/cleanmodels/releases +[tinygo]: https://tinygo.org/ diff --git a/examples/wasm/index.html b/examples/wasm/index.html new file mode 100644 index 0000000..6fd7664 --- /dev/null +++ b/examples/wasm/index.html @@ -0,0 +1,336 @@ + + + + + cleanmodels-wasm demo + + + + + + cleanmodels-wasm demo + loading… + + github.com/plenarius/cleanmodels + + + + + + Input — drop a binary or ASCII .mdl + + + Drop an .mdl here + or click to choose a file + + Binary MDL → decompiled ASCII + ASCII MDL → linted (warnings only) + + + + + + + + Output + + Copy + Download + + No file loaded yet. + + + + + + + + + diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..1faf08c --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/plenarius/cleanmodels + +go 1.26.2 diff --git a/pkg/checks/animations.go b/pkg/checks/animations.go new file mode 100644 index 0000000..c4f2637 --- /dev/null +++ b/pkg/checks/animations.go @@ -0,0 +1,215 @@ +package checks + +import ( + "fmt" + "math" + "strings" + + "github.com/plenarius/cleanmodels/pkg/mdl" +) + +func init() { + Register("animation_length", "animations", false, "Detect negative or too-short animation lengths", checkAnimationLength) + Register("animation_root", "animations", true, "Fix missing or invalid animation root references", checkAnimationRoot) + Register("missing_end_keys", "animations", false, "Detect animations missing end-time keyframes", checkMissingEndKeys) + Register("animation_transtime", "animations", true, "Clamp negative animation transition times to 0", checkAnimationTransTime) +} + +func keyTimeMatchesLength(t, length float32) bool { + return math.Abs(float64(t-length)) < 1e-3 +} + +func checkAnimationLength(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + isTile := strings.EqualFold(model.Classification, "TILE") + var out []mdl.CheckResult + for _, a := range model.Animations { + if a.Length < 0 { + out = append(out, mdl.CheckResult{ + Check: "animation_length", + Node: a.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf( + "%s: animation %q has negative length %g (use --fix-animations to clamp)", + file, a.Name, a.Length, + ), + }) + } + if isTile && (strings.EqualFold(a.Name, "day2night") || strings.EqualFold(a.Name, "night2day")) && a.Length < mdl.TileAnimMinLength { + out = append(out, mdl.CheckResult{ + Check: "animation_length", + Node: a.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf( + "%s: TILE animation %q has length %g, needs at least single-frame minimum (use --fix-animations to set)", + file, a.Name, a.Length, + ), + }) + } + } + return out +} + +func checkAnimationRoot(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + + nodeNames := make(map[string]bool) + for _, n := range model.Nodes { + if n != nil { + nodeNames[strings.ToLower(n.Name)] = true + } + } + + isTile := strings.EqualFold(model.Classification, "TILE") + + bestRoot := model.Name + if !isTile && nodeNames["rootdummy"] { + bestRoot = "rootdummy" + } + + var out []mdl.CheckResult + for i := range model.Animations { + a := &model.Animations[i] + if a.Root == "" { + if fix { + a.Root = bestRoot + } + out = append(out, mdl.CheckResult{ + Check: "animation_root", + Node: a.Name, + Severity: mdl.SevWarning, + Fixed: fix, + Message: fmt.Sprintf( + "%s: animation %q had empty animroot, set to %q", + file, a.Name, bestRoot, + ), + }) + continue + } + if !strings.EqualFold(a.Root, model.Name) && !nodeNames[strings.ToLower(a.Root)] { + old := a.Root + if fix { + a.Root = bestRoot + } + out = append(out, mdl.CheckResult{ + Check: "animation_root", + Node: a.Name, + Severity: mdl.SevError, + Fixed: fix, + Message: fmt.Sprintf( + "%s: animation %q had animroot %q which does not exist, set to %q", + file, a.Name, old, bestRoot, + ), + }) + } + if isTile && !strings.EqualFold(a.Root, model.Name) { + old := a.Root + if fix { + a.Root = model.Name + } + out = append(out, mdl.CheckResult{ + Check: "animation_root", + Node: a.Name, + Severity: mdl.SevWarning, + Fixed: fix, + Message: fmt.Sprintf( + "%s: TILE animation %q had animroot %q, set to model name %q", + file, a.Name, old, model.Name, + ), + }) + } + } + return out +} + +func checkMissingEndKeys(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, a := range model.Animations { + if a.Length <= 0 { + continue + } + for _, an := range a.Nodes { + if len(an.PositionKeys) > 0 { + if !positionKeysEndAt(an.PositionKeys, a.Length) { + out = append(out, mdl.CheckResult{ + Check: "missing_end_keys", + Node: an.Name, + Severity: mdl.SevInfo, + Message: fmt.Sprintf( + "%s: animation %q node %q has position keys but none at time=%g (length)", + file, a.Name, an.Name, a.Length, + ), + Fixed: false, + }) + } + } + if len(an.OrientationKeys) > 0 { + if !orientationKeysEndAt(an.OrientationKeys, a.Length) { + out = append(out, mdl.CheckResult{ + Check: "missing_end_keys", + Node: an.Name, + Severity: mdl.SevInfo, + Message: fmt.Sprintf( + "%s: animation %q node %q has orientation keys but none at time=%g (length)", + file, a.Name, an.Name, a.Length, + ), + Fixed: false, + }) + } + } + } + } + return out +} + +func positionKeysEndAt(keys []mdl.PositionKey, length float32) bool { + for _, k := range keys { + if keyTimeMatchesLength(k.Time, length) { + return true + } + } + return false +} + +func orientationKeysEndAt(keys []mdl.OrientationKey, length float32) bool { + for _, k := range keys { + if keyTimeMatchesLength(k.Time, length) { + return true + } + } + return false +} + +func checkAnimationTransTime(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for i := range model.Animations { + a := &model.Animations[i] + if a.TransTime < 0 { + old := a.TransTime + if fix { + a.TransTime = 0 + } + out = append(out, mdl.CheckResult{ + Check: "animation_transtime", + Node: a.Name, + Severity: mdl.SevWarning, + Fixed: fix, + Message: fmt.Sprintf( + "%s: animation %q had negative TransTime %g, set to 0", + file, a.Name, old, + ), + }) + } + } + return out +} diff --git a/pkg/checks/checks_test.go b/pkg/checks/checks_test.go new file mode 100644 index 0000000..fd2c46d --- /dev/null +++ b/pkg/checks/checks_test.go @@ -0,0 +1,134 @@ +package checks + +import ( + "path/filepath" + "testing" + + "github.com/plenarius/cleanmodels/pkg/mdl" +) + +const fixtureRoot = "../../tests/fixtures" + +func decompileFixture(t *testing.T, subdir, name string) *mdl.Model { + t.Helper() + path := filepath.Join(fixtureRoot, subdir, name) + model, err := mdl.DecompileFile(path) + if err != nil { + t.Fatalf("DecompileFile(%s): %v", path, err) + } + return model +} + +func findCheck(results []mdl.CheckResult, checkName string) *mdl.CheckResult { + for i := range results { + if results[i].Check == checkName { + return &results[i] + } + } + return nil +} + +func findChecks(results []mdl.CheckResult, checkName string) []mdl.CheckResult { + var out []mdl.CheckResult + for _, r := range results { + if r.Check == checkName { + out = append(out, r) + } + } + return out +} + +func TestCleanModelHasNoWarnings(t *testing.T) { + model := decompileFixture(t, "clean", "pmh0_head001.mdl") + results := RunAll(model, "pmh0_head001.mdl", true) + for _, r := range results { + if r.Severity >= mdl.SevWarning { + t.Errorf("clean model should have no warnings/errors, got: [%s] %s", r.Check, r.Message) + } + } +} + +func TestAllCleanFixturesClean(t *testing.T) { + cleanFiles := []string{ + "Fx_light_CLR.mdl", + "boat1.mdl", + "pmh0_head001.mdl", + "ttw01_a00_01.mdl", + } + for _, name := range cleanFiles { + t.Run(name, func(t *testing.T) { + model := decompileFixture(t, "clean", name) + results := RunAll(model, name, true) + for _, r := range results { + if r.Severity >= mdl.SevWarning { + t.Errorf("clean fixture %s should have no warnings, got: [%s] %s", name, r.Check, r.Message) + } + } + }) + } +} + +func TestBoneLimitNotExceeded(t *testing.T) { + model := decompileFixture(t, "clean", "c_blbear.mdl") + results := RunAll(model, "c_blbear.mdl", false) + checks := findChecks(results, "bone_limit") + if len(checks) > 0 { + t.Fatalf("c_blbear.mdl has 18 bones, should not exceed EE limit of 64: %s", checks[0].Message) + } +} + +func TestDuplicateNodeNames(t *testing.T) { + model := decompileFixture(t, "broken", "ttw01_a04_02.mdl") + results := RunAll(model, "ttw01_a04_02.mdl", true) + checks := findChecks(results, "duplicate_node_names") + if len(checks) == 0 { + t.Fatal("expected duplicate_node_names check result") + } + for _, r := range checks { + if !r.Fixed { + t.Errorf("duplicate_node_names on node %q should be auto-fixed", r.Node) + } + } +} + +func TestDuplicateNodeNamesMultiple(t *testing.T) { + model := decompileFixture(t, "broken", "ttw01_a04_16.mdl") + results := RunAll(model, "ttw01_a04_16.mdl", true) + checks := findChecks(results, "duplicate_node_names") + if len(checks) < 2 { + t.Fatalf("expected at least 2 duplicate_node_names results, got %d", len(checks)) + } + for _, r := range checks { + if !r.Fixed { + t.Errorf("duplicate_node_names on node %q should be auto-fixed", r.Node) + } + } +} + +func TestAnimationRootEmpty(t *testing.T) { + model := decompileFixture(t, "broken", "GUI_radialband.mdl") + results := RunAll(model, "GUI_radialband.mdl", true) + checks := findChecks(results, "animation_root") + if len(checks) == 0 { + t.Fatal("expected animation_root check result for empty animroot") + } + for _, r := range checks { + if !r.Fixed { + t.Errorf("animation_root should be auto-fixed, got: %s", r.Message) + } + } +} + +func TestAnimationRootTile(t *testing.T) { + model := decompileFixture(t, "broken", "ttw01_a02_01.mdl") + results := RunAll(model, "ttw01_a02_01.mdl", true) + checks := findChecks(results, "animation_root") + if len(checks) < 2 { + t.Fatalf("expected at least 2 animation_root results for tile model, got %d", len(checks)) + } + for _, r := range checks { + if !r.Fixed { + t.Errorf("animation_root should be auto-fixed, got: %s", r.Message) + } + } +} diff --git a/pkg/checks/emitters.go b/pkg/checks/emitters.go new file mode 100644 index 0000000..e13a483 --- /dev/null +++ b/pkg/checks/emitters.go @@ -0,0 +1,235 @@ +package checks + +import ( + "fmt" + "strings" + + "github.com/plenarius/cleanmodels/pkg/mdl" +) + +func init() { + Register("emitter_update_valid", "emitters", true, "Fix invalid emitter Update mode", checkEmitterUpdateValid) + Register("emitter_render_valid", "emitters", true, "Fix invalid emitter Render mode", checkEmitterRenderValid) + Register("emitter_blend_valid", "emitters", true, "Fix invalid emitter Blend mode", checkEmitterBlendValid) + Register("emitter_negative_values", "emitters", false, "Detect negative emitter values (birthrate, mass, etc.)", checkEmitterNegativeValues) + Register("emitter_percent_range", "emitters", false, "Detect emitter percent values outside 0-1 range", checkEmitterPercentRange) + Register("emitter_size_consistency", "emitters", true, "Fix negative emitter size values", checkEmitterSizeConsistency) + Register("emitter_missing_texture", "emitters", true, "Set default texture on emitters with missing texture", checkEmitterMissingTexture) +} + +var validEmitterUpdates = []string{"Fountain", "Single", "Explosion", "Lightning"} + +var validEmitterRenders = []string{ + "Normal", + "Linked", + "Billboard_to_Local_Z", + "Billboard_to_World_Z", + "Aligned_to_World_Z", + "Aligned_to_Particle_Dir", + "Motion_Blur", +} + +var validEmitterBlends = []string{"Normal", "Punch-Through", "Lighten"} + +func stringInListFold(s string, allowed []string) bool { + for _, a := range allowed { + if strings.EqualFold(s, a) { + return true + } + } + return false +} + +func checkEmitterEnumField(checkName, fieldName string, getter func(*mdl.EmitterData) *string, allowed []string, defaultVal string) mdl.CheckFunc { + return func(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Emitter == nil { + continue + } + ptr := getter(n.Emitter) + val := *ptr + if !stringInListFold(val, allowed) { + fixed := false + if fix { + *ptr = defaultVal + fixed = true + } + out = append(out, mdl.CheckResult{ + Check: checkName, + Node: n.Name, + Severity: mdl.SevWarning, + Fixed: fixed, + Message: fmt.Sprintf( + "%s: emitter node %q had invalid %s %q, set to %q", + file, n.Name, fieldName, val, defaultVal, + ), + }) + } + } + return out + } +} + +var checkEmitterUpdateValid = checkEmitterEnumField("emitter_update_valid", "Update", + func(e *mdl.EmitterData) *string { return &e.Update }, validEmitterUpdates, "Fountain") + +var checkEmitterRenderValid = checkEmitterEnumField("emitter_render_valid", "Render", + func(e *mdl.EmitterData) *string { return &e.Render }, validEmitterRenders, "Normal") + +var checkEmitterBlendValid = checkEmitterEnumField("emitter_blend_valid", "Blend", + func(e *mdl.EmitterData) *string { return &e.Blend }, validEmitterBlends, "Normal") + +var negativeValueFields = []struct { + name string + get func(*mdl.EmitterData) float32 +}{ + {"BirthRate", func(e *mdl.EmitterData) float32 { return e.BirthRate }}, + {"LifeExp", func(e *mdl.EmitterData) float32 { return e.LifeExp }}, + {"Mass", func(e *mdl.EmitterData) float32 { return e.Mass }}, + {"Velocity", func(e *mdl.EmitterData) float32 { return e.Velocity }}, +} + +func checkEmitterNegativeValues(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Emitter == nil { + continue + } + for _, f := range negativeValueFields { + if f.get(n.Emitter) < 0 { + out = append(out, mdl.CheckResult{ + Check: "emitter_negative_values", + Node: n.Name, + Severity: mdl.SevInfo, + Message: fmt.Sprintf("%s: emitter node %q has negative %s %g", file, n.Name, f.name, f.get(n.Emitter)), + Fixed: false, + }) + } + } + } + return out +} + +func inUnitInterval(v float32) bool { + return v >= 0 && v <= 1 +} + +func clamp01(v float32) float32 { + if v < 0 { + return 0 + } + if v > 1 { + return 1 + } + return v +} + +var percentFields = []struct { + name string + ptr func(*mdl.EmitterData) *float32 +}{ + {"PercentStart", func(e *mdl.EmitterData) *float32 { return &e.PercentStart }}, + {"PercentMid", func(e *mdl.EmitterData) *float32 { return &e.PercentMid }}, + {"PercentEnd", func(e *mdl.EmitterData) *float32 { return &e.PercentEnd }}, +} + +func checkEmitterPercentRange(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Emitter == nil { + continue + } + for _, f := range percentFields { + p := f.ptr(n.Emitter) + if !inUnitInterval(*p) { + out = append(out, mdl.CheckResult{ + Check: "emitter_percent_range", + Node: n.Name, + Severity: mdl.SevInfo, + Message: fmt.Sprintf("%s: emitter node %q has %s %g (outside 0-1 range)", file, n.Name, f.name, *p), + }) + } + } + } + return out +} + +var sizeFields = []struct { + name string + ptr func(*mdl.EmitterData) *float32 +}{ + {"SizeStart", func(e *mdl.EmitterData) *float32 { return &e.SizeStart }}, + {"SizeMid", func(e *mdl.EmitterData) *float32 { return &e.SizeMid }}, + {"SizeEnd", func(e *mdl.EmitterData) *float32 { return &e.SizeEnd }}, +} + +func checkEmitterSizeConsistency(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Emitter == nil { + continue + } + for _, f := range sizeFields { + p := f.ptr(n.Emitter) + if *p < 0 { + old := *p + fixed := false + if fix { + *p = 0 + fixed = true + } + out = append(out, mdl.CheckResult{ + Check: "emitter_size_consistency", + Node: n.Name, + Severity: mdl.SevWarning, + Fixed: fixed, + Message: fmt.Sprintf("%s: emitter node %q had negative %s %g, set to 0", file, n.Name, f.name, old), + }) + } + } + } + return out +} + +func checkEmitterMissingTexture(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Emitter == nil { + continue + } + if n.Emitter.Texture == "" { + fixed := false + if fix { + n.Emitter.Texture = "fxpa_default" + fixed = true + } + out = append(out, mdl.CheckResult{ + Check: "emitter_missing_texture", + Node: n.Name, + Severity: mdl.SevWarning, + Fixed: fixed, + Message: fmt.Sprintf( + "%s: emitter node %q had empty texture, set to \"fxpa_default\"", + file, n.Name, + ), + }) + } + } + return out +} diff --git a/pkg/checks/geometry.go b/pkg/checks/geometry.go new file mode 100644 index 0000000..730b22b --- /dev/null +++ b/pkg/checks/geometry.go @@ -0,0 +1,373 @@ +package checks + +import ( + "fmt" + "math" + + "github.com/plenarius/cleanmodels/pkg/mdl" +) + +const ( + eeTriangleFaceLimit = 21845 + eeSkinBoneLimit = 64 + weightSumTolerance = 0.01 +) + +func init() { + Register("vertex_face_consistency", "geometry", true, "Clamp out-of-range vertex indices in faces", checkVertexFaceConsistency) + Register("tvert_consistency", "geometry", true, "Clamp out-of-range UV indices in faces", checkTvertConsistency) + Register("degenerate_faces", "geometry", false, "Detect zero-area faces with repeated vertex indices", checkDegenerateFaces) + Register("triangle_limit", "geometry", false, "Detect meshes exceeding the EE triangle limit", checkTriangleLimit) + Register("bone_limit", "geometry", false, "Detect skin meshes exceeding the EE bone limit", checkBoneLimit) + Register("unnormalized_weights", "geometry", true, "Renormalize skin bone weights to sum to 1.0", checkUnnormalizedWeights) + Register("constraint_count", "geometry", true, "Fix danglymesh constraint count to match vertices", checkConstraintCount) + Register("faceless_trimesh", "geometry", true, "Set render=0 on mesh nodes with no faces", checkFacelessTrimesh) + Register("multiple_edges", "geometry", false, "Detect non-manifold edges that cause shadow tearing", checkMultipleEdges) +} + +func meshGeometryNodeType(t string) bool { + switch t { + case "trimesh", "skin", "aabb", "danglymesh", "animmesh": + return true + default: + return false + } +} + +func facelessNodeType(t string) bool { + switch t { + case "trimesh", "skin", "aabb": + return true + default: + return false + } +} + +func checkVertexFaceConsistency(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil || !meshGeometryNodeType(n.NodeType()) { + continue + } + nv := int32(len(n.Mesh.Verts)) + if nv == 0 { + continue + } + for fi := range n.Mesh.Faces { + f := &n.Mesh.Faces[fi] + for vi := range f.Verts { + if f.Verts[vi] < 0 || f.Verts[vi] >= nv { + old := f.Verts[vi] + fixed := false + if fix { + f.Verts[vi] = nv - 1 + fixed = true + } + out = append(out, mdl.CheckResult{ + Check: "vertex_face_consistency", + Node: n.Name, + Severity: mdl.SevError, + Fixed: fixed, + Message: fmt.Sprintf( + "%s: face %d vertex index %d out of range [0, %d), clamped to %d", + file, fi, old, nv, nv-1, + ), + }) + } + } + } + } + return out +} + +func checkTvertConsistency(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil || len(n.Mesh.TVerts) == 0 || !meshGeometryNodeType(n.NodeType()) { + continue + } + nt := int32(len(n.Mesh.TVerts)) + for fi := range n.Mesh.Faces { + f := &n.Mesh.Faces[fi] + for ui := range f.UVs { + if f.UVs[ui] < 0 || f.UVs[ui] >= nt { + old := f.UVs[ui] + fixed := false + if fix { + f.UVs[ui] = nt - 1 + fixed = true + } + out = append(out, mdl.CheckResult{ + Check: "tvert_consistency", + Node: n.Name, + Severity: mdl.SevError, + Fixed: fixed, + Message: fmt.Sprintf( + "%s: face %d UV index %d out of range [0, %d), clamped to %d", + file, fi, old, nt, nt-1, + ), + }) + } + } + } + } + return out +} + +func checkDegenerateFaces(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil || !meshGeometryNodeType(n.NodeType()) { + continue + } + for fi, f := range n.Mesh.Faces { + v0, v1, v2 := f.Verts[0], f.Verts[1], f.Verts[2] + if v0 == v1 || v1 == v2 || v0 == v2 { + out = append(out, mdl.CheckResult{ + Check: "degenerate_faces", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf( + "%s: face %d has repeated vertex indices [%d %d %d] (use --strip-degenerate to remove)", + file, fi, v0, v1, v2, + ), + Fixed: false, + }) + } + } + } + return out +} + +func checkTriangleLimit(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + nf := len(n.Mesh.Faces) + if nf > eeTriangleFaceLimit { + out = append(out, mdl.CheckResult{ + Check: "triangle_limit", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf( + "%s: node has %d faces, exceeding EE limit of %d", + file, nf, eeTriangleFaceLimit, + ), + Fixed: false, + }) + } + } + return out +} + +func checkBoneLimit(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Skin == nil || n.Mesh == nil { + continue + } + unique := make(map[string]struct{}) + for _, vw := range n.Skin.Weights { + for _, b := range vw.Bones { + if b != "" { + unique[b] = struct{}{} + } + } + } + if len(unique) > eeSkinBoneLimit { + out = append(out, mdl.CheckResult{ + Check: "bone_limit", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf( + "%s: skin references %d unique bones, maximum is %d", + file, len(unique), eeSkinBoneLimit, + ), + Fixed: false, + }) + } + } + return out +} + +func checkUnnormalizedWeights(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Skin == nil { + continue + } + for vi := range n.Skin.Weights { + vw := &n.Skin.Weights[vi] + var sum float64 + for _, w := range vw.Weights { + sum += float64(w) + } + if math.Abs(sum-1.0) > weightSumTolerance { + oldSum := sum + fixed := false + if fix { + if sum > 0 { + scale := float32(1.0 / sum) + for wi := range vw.Weights { + vw.Weights[wi] *= scale + } + fixed = true + } else if len(vw.Weights) > 0 { + vw.Weights[0] = 1.0 + for wi := 1; wi < len(vw.Weights); wi++ { + vw.Weights[wi] = 0 + } + fixed = true + } + } + out = append(out, mdl.CheckResult{ + Check: "unnormalized_weights", + Node: n.Name, + Severity: mdl.SevWarning, + Fixed: fixed, + Message: fmt.Sprintf( + "%s: vertex weight %d summed to %g, renormalized to 1.0", + file, vi, oldSum, + ), + }) + } + } + } + return out +} + +func checkConstraintCount(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Dangly == nil || n.Mesh == nil { + continue + } + vc := len(n.Mesh.Verts) + cc := len(n.Dangly.Constraints) + if cc == vc { + continue + } + fixed := false + action := "padded with zeros" + if cc > vc { + action = "truncated" + } + if fix { + if cc < vc { + for len(n.Dangly.Constraints) < vc { + n.Dangly.Constraints = append(n.Dangly.Constraints, 0) + } + } else { + n.Dangly.Constraints = n.Dangly.Constraints[:vc] + } + fixed = true + } + out = append(out, mdl.CheckResult{ + Check: "constraint_count", + Node: n.Name, + Severity: mdl.SevError, + Fixed: fixed, + Message: fmt.Sprintf( + "%s: danglymesh had %d constraints but %d vertices, %s", + file, cc, vc, action, + ), + }) + } + return out +} + +func checkFacelessTrimesh(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil || !facelessNodeType(n.NodeType()) { + continue + } + if len(n.Mesh.Faces) != 0 { + continue + } + if n.Mesh.Render != 1 { + continue + } + fixed := false + if fix { + n.Mesh.Render = 0 + fixed = true + } + out = append(out, mdl.CheckResult{ + Check: "faceless_trimesh", + Node: n.Name, + Severity: mdl.SevWarning, + Fixed: fixed, + Message: fmt.Sprintf( + "%s: %s node %q had no faces but render=1, set render=0", + file, n.NodeType(), n.Name, + ), + }) + } + return out +} + +// checkMultipleEdges detects edges shared by 3+ faces on shadow-casting meshes. +// "Multiple edges" cause shadow tearing/stretching in NWN's stencil shadow +// renderer. See: nwn.wiki Model Shadows page. +// The fix (--split-multiedge) duplicates vertices at affected edges so each +// edge is shared by at most 2 faces, eliminating shadow artifacts. +func checkMultipleEdges(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || !n.IsShadowCaster() { + continue + } + + edgeFaces := mdl.BuildEdgeFaceMap(n.Mesh.Faces) + + multiCount := 0 + for _, faces := range edgeFaces { + if len(faces) > 2 { + multiCount++ + } + } + if multiCount > 0 { + out = append(out, mdl.CheckResult{ + Check: "multiple_edges", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf( + "%s: shadow-casting node %q has %d multiple edge(s) (%d+ faces sharing an edge), causes shadow tearing (use --split-multiedge to fix)", + file, n.Name, multiCount, 3, + ), + Fixed: false, + }) + } + } + return out +} diff --git a/pkg/checks/node_types.go b/pkg/checks/node_types.go new file mode 100644 index 0000000..164f2c7 --- /dev/null +++ b/pkg/checks/node_types.go @@ -0,0 +1,262 @@ +package checks + +import ( + "fmt" + "strings" + + "github.com/plenarius/cleanmodels/pkg/mdl" +) + +func init() { + Register("danglymesh_fields", "node_types", false, "Validate required fields on danglymesh nodes", checkDanglymeshFields) + Register("skin_fields", "node_types", false, "Validate required fields on skin nodes", checkSkinFields) + Register("emitter_fields", "node_types", false, "Validate required fields on emitter nodes", checkEmitterFields) + Register("light_fields", "node_types", false, "Validate required fields on light nodes", checkLightFields) + Register("aabb_fields", "node_types", false, "Validate required fields on AABB walkmesh nodes", checkAabbFields) + Register("misplaced_tile_fields", "node_types", false, "Detect tile-only fields on non-TILE models", checkMisplacedTileFields) + Register("misplaced_dangly_data", "node_types", false, "Detect danglymesh-only constraints on non-danglymesh nodes", checkMisplacedDanglyData) +} + +func checkDanglymeshFields(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Dangly == nil { + continue + } + if n.Mesh == nil || len(n.Mesh.Verts) == 0 { + out = append(out, mdl.CheckResult{ + Check: "danglymesh_fields", + Node: n.Name, + Severity: mdl.SevError, + Message: fmt.Sprintf("%s: danglymesh node %q has no mesh geometry", file, n.Name), + }) + continue + } + if n.Dangly.Displacement <= 0 { + out = append(out, mdl.CheckResult{ + Check: "danglymesh_fields", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf("%s: danglymesh node %q has displacement %g (expected > 0)", file, n.Name, n.Dangly.Displacement), + }) + } + if n.Dangly.Period <= 0 { + out = append(out, mdl.CheckResult{ + Check: "danglymesh_fields", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf("%s: danglymesh node %q has period %g (expected > 0)", file, n.Name, n.Dangly.Period), + }) + } + if len(n.Dangly.Constraints) == 0 { + out = append(out, mdl.CheckResult{ + Check: "danglymesh_fields", + Node: n.Name, + Severity: mdl.SevError, + Message: fmt.Sprintf("%s: danglymesh node %q has no constraints array", file, n.Name), + }) + } + } + return out +} + +func checkSkinFields(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Skin == nil { + continue + } + if n.Mesh == nil || len(n.Mesh.Verts) == 0 { + out = append(out, mdl.CheckResult{ + Check: "skin_fields", + Node: n.Name, + Severity: mdl.SevError, + Message: fmt.Sprintf("%s: skin node %q has no mesh geometry", file, n.Name), + }) + continue + } + if len(n.Skin.Weights) == 0 { + out = append(out, mdl.CheckResult{ + Check: "skin_fields", + Node: n.Name, + Severity: mdl.SevError, + Message: fmt.Sprintf("%s: skin node %q has no bone weights", file, n.Name), + }) + } else if len(n.Skin.Weights) != len(n.Mesh.Verts) { + out = append(out, mdl.CheckResult{ + Check: "skin_fields", + Node: n.Name, + Severity: mdl.SevError, + Message: fmt.Sprintf("%s: skin node %q has %d weights but %d vertices", + file, n.Name, len(n.Skin.Weights), len(n.Mesh.Verts)), + }) + } + } + return out +} + +func checkEmitterFields(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Emitter == nil { + continue + } + if n.Emitter.Texture == "" { + out = append(out, mdl.CheckResult{ + Check: "emitter_fields", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf("%s: emitter node %q has no texture", file, n.Name), + }) + } + if n.Emitter.Update == "" { + out = append(out, mdl.CheckResult{ + Check: "emitter_fields", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf("%s: emitter node %q has no Update mode", file, n.Name), + }) + } + if n.Emitter.Render == "" { + out = append(out, mdl.CheckResult{ + Check: "emitter_fields", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf("%s: emitter node %q has no Render mode", file, n.Name), + }) + } + if n.Emitter.Blend == "" { + out = append(out, mdl.CheckResult{ + Check: "emitter_fields", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf("%s: emitter node %q has no Blend mode", file, n.Name), + }) + } + } + return out +} + +func checkLightFields(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Light == nil { + continue + } + if n.Light.Radius <= 0 { + out = append(out, mdl.CheckResult{ + Check: "light_fields", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf("%s: light node %q has radius %g (expected > 0)", file, n.Name, n.Light.Radius), + }) + } + } + return out +} + +func checkAabbFields(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Aabb == nil { + continue + } + if n.Mesh == nil || len(n.Mesh.Faces) == 0 { + out = append(out, mdl.CheckResult{ + Check: "aabb_fields", + Node: n.Name, + Severity: mdl.SevError, + Message: fmt.Sprintf("%s: AABB node %q has no mesh faces", file, n.Name), + }) + } + if len(n.Aabb.Entries) == 0 { + out = append(out, mdl.CheckResult{ + Check: "aabb_fields", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf("%s: AABB node %q has empty AABB tree (use --fix-aabb to rebuild)", file, n.Name), + }) + } + } + return out +} + +// checkMisplacedTileFields detects tile-specific fields (tilefade, rotatetexture) +// set on nodes in non-TILE models. These fields are ignored by the engine +// on non-tile models and likely indicate a copy-paste or tooling error. +func checkMisplacedTileFields(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + if strings.EqualFold(model.Classification, "TILE") { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + if n.Mesh.TileFade != 0 { + out = append(out, mdl.CheckResult{ + Check: "misplaced_tile_fields", + Node: n.Name, + Severity: mdl.SevInfo, + Message: fmt.Sprintf( + "%s: non-TILE model has tilefade=%d on node %q (ignored by engine)", + file, n.Mesh.TileFade, n.Name), + }) + } + if n.Mesh.RotateTexture != 0 { + out = append(out, mdl.CheckResult{ + Check: "misplaced_tile_fields", + Node: n.Name, + Severity: mdl.SevInfo, + Message: fmt.Sprintf( + "%s: non-TILE model has rotatetexture=%d on node %q (ignored by engine)", + file, n.Mesh.RotateTexture, n.Name), + }) + } + } + return out +} + +// checkMisplacedDanglyData detects danglymesh constraints on nodes that are +// not danglymesh type, which indicates data corruption or tooling errors. +func checkMisplacedDanglyData(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil { + continue + } + // Skin data on non-skin nodes + if n.Skin != nil && n.Dangly != nil { + out = append(out, mdl.CheckResult{ + Check: "misplaced_dangly_data", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf( + "%s: node %q has both skin and danglymesh data (conflicting node types)", + file, n.Name), + }) + } + } + return out +} diff --git a/pkg/checks/parameters.go b/pkg/checks/parameters.go new file mode 100644 index 0000000..35b6138 --- /dev/null +++ b/pkg/checks/parameters.go @@ -0,0 +1,307 @@ +package checks + +import ( + "fmt" + "strings" + + "github.com/plenarius/cleanmodels/pkg/mdl" +) + +const nwnResrefLimit = 16 + +func init() { + Register("black_ambient", "parameters", false, "Detect zero ambient with non-zero diffuse", checkBlackAmbient) + Register("black_diffuse", "parameters", false, "Detect zero diffuse color on mesh nodes", checkBlackDiffuse) + Register("renderhint_consistency", "parameters", true, "Clear mismatched renderhint/materialname pairs", checkRenderhintConsistency) + Register("tangent_validation", "parameters", false, "Detect missing tangents on normal-mapped meshes", checkTangentValidation) + Register("null_bitmaps", "parameters", true, "Set render=0 on meshes with missing bitmaps", checkNullBitmaps) + Register("shadow_render_consistency", "parameters", false, "Detect shadow=1 with render=0 inconsistency", checkShadowRenderConsistency) + Register("vertex_color_count", "parameters", true, "Fix vertex color array to match vertex count", checkVertexColorCount) + Register("resref_length", "parameters", false, "Detect texture/material names exceeding 16-char resref limit", checkResrefLength) + Register("plt_bitmap_match", "parameters", false, "Detect PLT bitmap names that don't match the model name", checkPltBitmapMatch) +} + +func vec3IsZero(v mdl.Vec3) bool { + return v.X == 0 && v.Y == 0 && v.Z == 0 +} + +func checkBlackAmbient(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + if vec3IsZero(n.Mesh.Ambient) && !vec3IsZero(n.Mesh.Diffuse) { + out = append(out, mdl.CheckResult{ + Check: "black_ambient", + Node: n.Name, + Severity: mdl.SevInfo, + Message: fmt.Sprintf( + "%s: mesh node %q has zero ambient with non-zero diffuse", + file, n.Name, + ), + Fixed: false, + }) + } + } + return out +} + +func checkBlackDiffuse(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + if vec3IsZero(n.Mesh.Diffuse) { + out = append(out, mdl.CheckResult{ + Check: "black_diffuse", + Node: n.Name, + Severity: mdl.SevInfo, + Message: fmt.Sprintf( + "%s: mesh node %q has zero diffuse", + file, n.Name, + ), + Fixed: false, + }) + } + } + return out +} + +func checkRenderhintConsistency(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + mh := n.Mesh + hasHint := mh.RenderHint != "" + hasMat := mh.MaterialName != "" + if hasHint != hasMat { + oldHint, oldMat := mh.RenderHint, mh.MaterialName + fixed := false + if fix { + mh.RenderHint = "" + mh.MaterialName = "" + fixed = true + } + out = append(out, mdl.CheckResult{ + Check: "renderhint_consistency", + Node: n.Name, + Severity: mdl.SevWarning, + Fixed: fixed, + Message: fmt.Sprintf( + "%s: mesh node %q had renderhint %q and materialname %q (mismatched), cleared both", + file, n.Name, oldHint, oldMat, + ), + }) + } + } + return out +} + +func checkTangentValidation(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + if n.Mesh.RenderHint != "NormalAndSpecMapped" { + continue + } + if len(n.Mesh.Tangents) == 0 { + out = append(out, mdl.CheckResult{ + Check: "tangent_validation", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf( + "%s: mesh node %q uses RenderHint NormalAndSpecMapped but has no tangents", + file, n.Name, + ), + Fixed: false, + }) + } + } + return out +} + +func checkNullBitmaps(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + nt := n.NodeType() + if nt != "trimesh" && nt != "skin" { + continue + } + if n.Mesh.Render == 1 && n.Mesh.Bitmap == "" { + fixed := false + if fix { + n.Mesh.Render = 0 + fixed = true + } + out = append(out, mdl.CheckResult{ + Check: "null_bitmaps", + Node: n.Name, + Severity: mdl.SevWarning, + Fixed: fixed, + Message: fmt.Sprintf( + "%s: %s node %q had render=1 but no bitmap, set render=0", + file, nt, n.Name, + ), + }) + } + } + return out +} + +func checkShadowRenderConsistency(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + if n.Mesh.Shadow == 1 && n.Mesh.Render == 0 { + out = append(out, mdl.CheckResult{ + Check: "shadow_render_consistency", + Node: n.Name, + Severity: mdl.SevInfo, + Message: fmt.Sprintf( + "%s: mesh node %q has shadow=1 but render=0", + file, n.Name, + ), + Fixed: false, + }) + } + } + return out +} + +func checkVertexColorCount(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + mh := n.Mesh + if len(mh.Colors) == 0 { + continue + } + if len(mh.Colors) != len(mh.Verts) { + oldCount := len(mh.Colors) + nv := len(mh.Verts) + fixed := false + if fix { + if oldCount > nv { + mh.Colors = mh.Colors[:nv] + } else { + for len(mh.Colors) < nv { + mh.Colors = append(mh.Colors, mdl.Vec3{X: 1, Y: 1, Z: 1}) + } + } + fixed = true + } + out = append(out, mdl.CheckResult{ + Check: "vertex_color_count", + Node: n.Name, + Severity: mdl.SevError, + Fixed: fixed, + Message: fmt.Sprintf( + "%s: mesh node %q had %d vertex colors but %d vertices, adjusted", + file, n.Name, oldCount, nv, + ), + }) + } + } + return out +} + +func checkResrefLength(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + type field struct { + name string + val string + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + for _, f := range []field{ + {"bitmap", n.Mesh.Bitmap}, + {"texture1", n.Mesh.Texture1}, + {"texture2", n.Mesh.Texture2}, + {"materialname", n.Mesh.MaterialName}, + } { + if len(f.val) > nwnResrefLimit { + out = append(out, mdl.CheckResult{ + Check: "resref_length", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf( + "%s: mesh node %q %s %q is %d chars (max %d)", + file, n.Name, f.name, f.val, len(f.val), nwnResrefLimit, + ), + }) + } + } + } + return out +} + +func checkPltBitmapMatch(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + if !strings.EqualFold(model.Classification, "CHARACTER") { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil || n.Mesh.Bitmap == "" { + continue + } + bmp := strings.ToLower(n.Mesh.Bitmap) + if !strings.Contains(bmp, "plt") { + continue + } + expected := strings.ToLower(model.Name) + if bmp != expected { + out = append(out, mdl.CheckResult{ + Check: "plt_bitmap_match", + Node: n.Name, + Severity: mdl.SevWarning, + Message: fmt.Sprintf( + "%s: PLT bitmap %q does not match model name %q", + file, n.Mesh.Bitmap, model.Name, + ), + }) + } + } + return out +} diff --git a/pkg/checks/registry.go b/pkg/checks/registry.go new file mode 100644 index 0000000..5837440 --- /dev/null +++ b/pkg/checks/registry.go @@ -0,0 +1,66 @@ +// Package checks implements model validation checks for NWN MDL files. +// +// Checks are organized by category: structural, geometry, parameters, +// tiles, animations, and emitters. +// +// Checks are registered via Register() and can be filtered by name. +// Each check is a function matching mdl.CheckFunc. +package checks + +import ( + "github.com/plenarius/cleanmodels/pkg/mdl" +) + +// CheckEntry holds a registered check with metadata. +type CheckEntry struct { + Name string `json:"name"` + Category string `json:"category"` + Fixable bool `json:"fixable"` + Description string `json:"description"` + Fn mdl.CheckFunc `json:"-"` +} + +var registry []CheckEntry + +// Register adds a check to the global registry. +func Register(name, category string, fixable bool, description string, fn mdl.CheckFunc) { + registry = append(registry, CheckEntry{ + Name: name, + Category: category, + Fixable: fixable, + Description: description, + Fn: fn, + }) +} + +// ListAll returns metadata for all registered checks (no model required). +func ListAll() []CheckEntry { + out := make([]CheckEntry, len(registry)) + copy(out, registry) + return out +} + +// RunAll runs all registered checks on a model. +func RunAll(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + var results []mdl.CheckResult + for _, entry := range registry { + results = append(results, entry.Fn(model, file, fix)...) + } + return results +} + +// RunFiltered runs only checks whose names are in the include list. +// If include is empty, all checks run. Checks in exclude are skipped. +func RunFiltered(model *mdl.Model, file string, include, exclude map[string]bool, fix bool) []mdl.CheckResult { + var results []mdl.CheckResult + for _, entry := range registry { + if len(include) > 0 && !include[entry.Name] { + continue + } + if exclude[entry.Name] { + continue + } + results = append(results, entry.Fn(model, file, fix)...) + } + return results +} diff --git a/pkg/checks/structural.go b/pkg/checks/structural.go new file mode 100644 index 0000000..c07e47c --- /dev/null +++ b/pkg/checks/structural.go @@ -0,0 +1,459 @@ +package checks + +import ( + "crypto/sha256" + "encoding/hex" + "fmt" + "strings" + + "github.com/plenarius/cleanmodels/pkg/mdl" +) + +func init() { + Register("duplicate_node_names", "structural", true, "Fix duplicate node names by appending a unique suffix", checkDuplicateNodeNames) + Register("missing_parents", "structural", true, "Reparent orphaned nodes to the model root", checkMissingParents) + Register("base_dummy_wrong_type", "structural", false, "Detect root node with non-dummy type", checkBaseDummyWrongType) + Register("base_dummy_parent_null", "structural", true, "Set root node parent to NULL if incorrect", checkBaseDummyParentNull) + Register("duplicate_animations", "structural", true, "Merge duplicate animation blocks", checkDuplicateAnimations) + Register("aabb_has_child_nodes", "structural", false, "Detect child nodes under AABB nodes", checkAabbHasChildNodes) + Register("light_has_child_nodes", "structural", false, "Detect child nodes under light nodes", checkLightHasChildNodes) + Register("too_many_walkmeshes", "structural", false, "Detect multiple AABB walkmesh nodes", checkTooManyWalkmeshes) + Register("node_name_length", "structural", true, "Truncate node names exceeding 31 characters", checkNodeNameLength) +} + + +func checkDuplicateNodeNames(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + + allNames := make(map[string]bool) + for _, n := range model.Nodes { + if n != nil { + allNames[strings.ToLower(n.Name)] = true + } + } + + seen := make(map[string]int) + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil { + continue + } + lowerName := strings.ToLower(n.Name) + seen[lowerName]++ + if seen[lowerName] < 2 { + continue + } + + suffix := seen[lowerName] + newName := suffixedName(n.Name, suffix) + for allNames[strings.ToLower(newName)] { + suffix++ + newName = suffixedName(n.Name, suffix) + } + + old := n.Name + if fix { + allNames[strings.ToLower(newName)] = true + n.Name = newName + renameNodeParentRefs(model, old, newName) + } + out = append(out, mdl.CheckResult{ + Check: "duplicate_node_names", + Severity: mdl.SevWarning, + Fixed: fix, + Message: fmt.Sprintf( + "%s: duplicate node %q renamed to %q", + file, old, newName, + ), + }) + } + return out +} + +func checkMissingParents(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + names := make(map[string]struct{}, len(model.Nodes)) + for _, n := range model.Nodes { + if n != nil && n.Name != "" { + names[strings.ToLower(n.Name)] = struct{}{} + } + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil { + continue + } + p := n.Parent + if strings.EqualFold(p, "NULL") { + continue + } + if _, ok := names[strings.ToLower(p)]; !ok { + oldParent := p + if fix { + n.Parent = model.Name + } + out = append(out, mdl.CheckResult{ + Check: "missing_parents", + Node: n.Name, + Severity: mdl.SevError, + Fixed: fix, + Message: fmt.Sprintf( + "%s: node %q referenced missing parent %q, reparented to %q", + file, n.Name, oldParent, model.Name, + ), + }) + } + } + return out +} + +func checkBaseDummyWrongType(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || !strings.EqualFold(n.Parent, "NULL") || !strings.EqualFold(n.Name, model.Name) { + continue + } + if n.NodeType() != "dummy" { + out = append(out, mdl.CheckResult{ + Check: "base_dummy_wrong_type", + Node: n.Name, + Severity: mdl.SevFatal, + Message: fmt.Sprintf( + "%s: root node %q (parent NULL) has type %q, expected dummy (use --wrap-root to insert dummy wrapper)", + file, n.Name, n.NodeType(), + ), + Fixed: false, + }) + } + } + return out +} + +func checkBaseDummyParentNull(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil || model.Name == "" { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || !strings.EqualFold(n.Name, model.Name) { + continue + } + if !strings.EqualFold(n.Parent, "NULL") { + old := n.Parent + if fix { + n.Parent = "NULL" + } + out = append(out, mdl.CheckResult{ + Check: "base_dummy_parent_null", + Node: n.Name, + Severity: mdl.SevError, + Fixed: fix, + Message: fmt.Sprintf( + "%s: model root node %q had parent %q, set to NULL", + file, n.Name, old, + ), + }) + } + } + return out +} + +func checkDuplicateAnimations(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + seen := make(map[string]bool) + var dupes []string + for _, a := range model.Animations { + key := strings.ToLower(a.Name) + if seen[key] { + if len(dupes) == 0 || !strings.EqualFold(dupes[len(dupes)-1], a.Name) { + dupes = append(dupes, a.Name) + } + } + seen[key] = true + } + + if len(dupes) == 0 { + return nil + } + + if fix { + firstIdx2 := make(map[string]int) + for i, a := range model.Animations { + key := strings.ToLower(a.Name) + if fi, ok := firstIdx2[key]; ok { + first := &model.Animations[fi] + mergeAnimNodes(first, &model.Animations[i]) + } else { + firstIdx2[key] = i + } + } + kept := model.Animations[:0] + seen := make(map[string]bool) + for _, a := range model.Animations { + key := strings.ToLower(a.Name) + if seen[key] { + continue + } + seen[key] = true + kept = append(kept, a) + } + model.Animations = kept + } + + var out []mdl.CheckResult + for _, name := range dupes { + out = append(out, mdl.CheckResult{ + Check: "duplicate_animations", + Severity: mdl.SevError, + Fixed: fix, + Message: fmt.Sprintf( + "%s: duplicate animation %q merged", + file, name, + ), + }) + } + return out +} + +func mergeAnimNodes(dst, src *mdl.Animation) { + if src.Length > dst.Length { + dst.Length = src.Length + } + dst.Events = append(dst.Events, src.Events...) + + existing := make(map[string]int) + for i, n := range dst.Nodes { + existing[strings.ToLower(n.Name)] = i + } + for _, sn := range src.Nodes { + if idx, ok := existing[strings.ToLower(sn.Name)]; ok { + mergeAnimNodeKeys(&dst.Nodes[idx], &sn) + } else { + dst.Nodes = append(dst.Nodes, sn) + } + } +} + +func mergeAnimNodeKeys(dst, src *mdl.AnimNode) { + if len(dst.PositionKeys) == 0 { + dst.PositionKeys = src.PositionKeys + } + if len(dst.OrientationKeys) == 0 { + dst.OrientationKeys = src.OrientationKeys + } + if len(dst.ScaleKeys) == 0 { + dst.ScaleKeys = src.ScaleKeys + } + if len(dst.AlphaKeys) == 0 { + dst.AlphaKeys = src.AlphaKeys + } + if len(dst.SelfIllumColorKeys) == 0 { + dst.SelfIllumColorKeys = src.SelfIllumColorKeys + } + if len(dst.ColorKeys) == 0 { + dst.ColorKeys = src.ColorKeys + } + if len(dst.RadiusKeys) == 0 { + dst.RadiusKeys = src.RadiusKeys + } + if len(dst.MultiplierKeys) == 0 { + dst.MultiplierKeys = src.MultiplierKeys + } + if len(dst.ShadowRadiusKeys) == 0 { + dst.ShadowRadiusKeys = src.ShadowRadiusKeys + } + if len(dst.VerticalDisplacementKeys) == 0 { + dst.VerticalDisplacementKeys = src.VerticalDisplacementKeys + } + if len(dst.BirthRateKeys) == 0 { + dst.BirthRateKeys = src.BirthRateKeys + } + if len(dst.DetonateKeys) == 0 { + dst.DetonateKeys = src.DetonateKeys + } + if dst.Mesh == nil && src.Mesh != nil { + dst.Mesh = src.Mesh + } + if dst.AnimMesh == nil && src.AnimMesh != nil { + dst.AnimMesh = src.AnimMesh + } +} + +func checkChildlessNodeType(checkName, nodeType string) mdl.CheckFunc { + return func(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + restricted := make(map[string]struct{}) + for _, n := range model.Nodes { + if n != nil && n.NodeType() == nodeType { + restricted[strings.ToLower(n.Name)] = struct{}{} + } + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil { + continue + } + if _, ok := restricted[strings.ToLower(n.Parent)]; ok { + out = append(out, mdl.CheckResult{ + Check: checkName, + Node: n.Parent, + Severity: mdl.SevWarning, + Message: fmt.Sprintf( + "%s: %s node %q has child node %q (use --reparent-children to fix)", + file, nodeType, n.Parent, n.Name, + ), + Fixed: false, + }) + } + } + return out + } +} + +var checkAabbHasChildNodes = checkChildlessNodeType("aabb_has_child_nodes", "aabb") +var checkLightHasChildNodes = checkChildlessNodeType("light_has_child_nodes", "light") + +func checkTooManyWalkmeshes(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + var aabbs []string + for _, n := range model.Nodes { + if n != nil && n.NodeType() == "aabb" { + aabbs = append(aabbs, n.Name) + } + } + if len(aabbs) <= 1 { + return nil + } + return []mdl.CheckResult{{ + Check: "too_many_walkmeshes", + Severity: mdl.SevError, + Message: fmt.Sprintf( + "%s: found %d AABB (walkmesh) nodes, expected at most 1: %v", + file, len(aabbs), aabbs, + ), + Fixed: false, + }} +} + +func checkNodeNameLength(model *mdl.Model, file string, fix bool) []mdl.CheckResult { + if model == nil { + return nil + } + + allNames := make(map[string]bool) + for _, n := range model.Nodes { + if n != nil { + allNames[strings.ToLower(n.Name)] = true + } + } + + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || len(n.Name) <= 31 { + continue + } + oldName := n.Name + newName := shortenNodeName(oldName) + + if fix { + allNames[strings.ToLower(newName)] = true + renameNodeEverywhere(model, oldName, newName) + } + + out = append(out, mdl.CheckResult{ + Check: "node_name_length", + Node: newName, + Severity: mdl.SevError, + Fixed: fix, + Message: fmt.Sprintf( + "%s: node name %q was %d chars (max 31), truncated to %q", + file, oldName, len(oldName), newName, + ), + }) + } + return out +} + +// shortenNodeName produces a deterministic <=31 char name by keeping as much +// of the original prefix as possible and replacing the tail with a hash. +// Format: _<4-char hex hash of full name> (total <= 31). +func shortenNodeName(name string) string { + h := sha256.Sum256([]byte(name)) + hashSuffix := hex.EncodeToString(h[:])[:4] + // "_" + 4 hex chars = 5 chars for suffix + maxPrefix := 31 - 5 + prefix := name + if len(prefix) > maxPrefix { + prefix = prefix[:maxPrefix] + } + return prefix + "_" + hashSuffix +} + +func suffixedName(name string, suffix int) string { + s := fmt.Sprintf("_%d", suffix) + base := name + if len(base)+len(s) > 31 { + base = base[:31-len(s)] + } + return base + s +} + +// renameNodeEverywhere renames all occurrences of oldName to newName, +// including node Name fields, Parent references, and skin bone references. +func renameNodeEverywhere(model *mdl.Model, oldName, newName string) { + renameNodeRefs(model, oldName, newName, true) +} + +// renameNodeParentRefs renames only Parent, skin bone, and animation references +// (not geometry-node Name fields). Used when the caller has already renamed +// the specific node's Name and only needs reference updates. +func renameNodeParentRefs(model *mdl.Model, oldName, newName string) { + renameNodeRefs(model, oldName, newName, false) +} + +func renameNodeRefs(model *mdl.Model, oldName, newName string, includeNodeName bool) { + for _, n := range model.Nodes { + if n == nil { + continue + } + if includeNodeName && strings.EqualFold(n.Name, oldName) { + n.Name = newName + } + if strings.EqualFold(n.Parent, oldName) { + n.Parent = newName + } + if n.Skin != nil { + for i, vw := range n.Skin.Weights { + for j, b := range vw.Bones { + if strings.EqualFold(b, oldName) { + n.Skin.Weights[i].Bones[j] = newName + } + } + } + } + } + for ai := range model.Animations { + for ni := range model.Animations[ai].Nodes { + an := &model.Animations[ai].Nodes[ni] + if strings.EqualFold(an.Name, oldName) { + an.Name = newName + } + if strings.EqualFold(an.Parent, oldName) { + an.Parent = newName + } + } + } +} diff --git a/pkg/checks/tiles.go b/pkg/checks/tiles.go new file mode 100644 index 0000000..0202c63 --- /dev/null +++ b/pkg/checks/tiles.go @@ -0,0 +1,98 @@ +package checks + +import ( + "fmt" + "strings" + + "github.com/plenarius/cleanmodels/pkg/mdl" +) + +func init() { + Register("tilefade_validation", "tiles", false, "Detect tilefade on non-TILE models", checkTilefadeValidation) + Register("rotate_texture", "tiles", false, "Detect RotateTexture on non-TILE models", checkRotateTexture) + Register("lightmapped_tile", "tiles", false, "Detect LightMapped on TILE model meshes", checkLightmappedTile) +} + +func checkTilefadeValidation(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + if strings.EqualFold(model.Classification, "TILE") { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + if n.Mesh.TileFade != 0 { + out = append(out, mdl.CheckResult{ + Check: "tilefade_validation", + Node: n.Name, + Severity: mdl.SevInfo, + Message: fmt.Sprintf( + "%s: non-TILE model has tilefade=%d on mesh node %q", + file, n.Mesh.TileFade, n.Name, + ), + Fixed: false, + }) + } + } + return out +} + +func checkRotateTexture(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + if strings.EqualFold(model.Classification, "TILE") { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + if n.Mesh.RotateTexture != 0 { + out = append(out, mdl.CheckResult{ + Check: "rotate_texture", + Node: n.Name, + Severity: mdl.SevInfo, + Message: fmt.Sprintf( + "%s: non-TILE model has RotateTexture=%d on mesh node %q", + file, n.Mesh.RotateTexture, n.Name, + ), + Fixed: false, + }) + } + } + return out +} + +func checkLightmappedTile(model *mdl.Model, file string, _ bool) []mdl.CheckResult { + if model == nil { + return nil + } + if !strings.EqualFold(model.Classification, "TILE") { + return nil + } + var out []mdl.CheckResult + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + if n.Mesh.LightMapped != 0 { + out = append(out, mdl.CheckResult{ + Check: "lightmapped_tile", + Node: n.Name, + Severity: mdl.SevInfo, + Message: fmt.Sprintf( + "%s: TILE model mesh node %q has LightMapped=%d", + file, n.Name, n.Mesh.LightMapped, + ), + Fixed: false, + }) + } + } + return out +} diff --git a/pkg/mdl/binary.go b/pkg/mdl/binary.go new file mode 100644 index 0000000..9a55d8a --- /dev/null +++ b/pkg/mdl/binary.go @@ -0,0 +1,1781 @@ +// Binary MDL decompiler. +// +// Reads NWN binary (compiled) .mdl files and produces Model structs. +// All struct layouts are derived from NWN1MDL.bt (xoreos-docs). +// EE extensions from load_binary.pl. +// +// Pointer conventions (from NWN1MDL.bt): +// - GoToPointer(p) = FSeek(sizeof(header_file) + p) = seek to 12 + p +// - GoToMDXPointer(p) = FSeek(sizeof(header_file) + hf.p_start_mdx + p) = seek to 12 + mdxOffset + p +// +// Ref: xoreos-docs/templates/NWN1MDL.bt +// Ref: load_binary.pl +package mdl + +import ( + "bytes" + "encoding/binary" + "fmt" + "io" + "math" + "os" + "strings" +) + +// header_mesh layout constants (offsets from start of header_mesh). +// Ref: NWN1MDL.bt header_mesh (line 370) +const ( + meshHeaderSize = 512 + meshHeaderPMdxVertex = 444 // int32 p_mdx_vertex + meshHeaderCountVerts = 448 // uint16 count_vertexes + meshHeaderPMdxTex0 = 452 // int32 p_mdx_texture0 +) + +// DecompileFile reads a binary MDL from disk. +// +// The full file is slurped into memory and parsed from a bytes.Reader. +// Binary MDLs top out in the low single-digit megabytes and the parser +// does many small (4-byte) random-access reads via binary.Read, so reading +// once and parsing in-memory avoids ~one syscall per field. +func DecompileFile(path string) (*Model, error) { + data, err := os.ReadFile(path) + if err != nil { + return nil, err + } + return Decompile(bytes.NewReader(data), int64(len(data))) +} + +// Decompile reads a binary MDL from a ReadSeeker. +func Decompile(r io.ReadSeeker, fileSize int64) (*Model, error) { + d := &decompiler{ + r: r, + fileSize: fileSize, + model: &Model{AnimationScale: 1.0, FileType: "binary"}, + compiler: CompilerUnknown, + visitedPtrs: make(map[uint32]bool), + maxAlloc: fileSize * 16, + } + + if err := d.readFileHeader(); err != nil { + return nil, fmt.Errorf("file header: %w", err) + } + if err := d.readModelHeader(); err != nil { + return nil, fmt.Errorf("model header: %w", err) + } + if d.rootNodePtr != 0 { + if err := d.readNode(d.rootNodePtr, "NULL"); err != nil { + d.warn(WarnTruncatedData, 0, "", "geometry read error: %v", err) + } + } + seenAnims := make(map[uint32]bool) + for _, ptr := range d.animPtrs { + if ptr == 0 || seenAnims[ptr] { + continue + } + seenAnims[ptr] = true + d.visitedPtrs = make(map[uint32]bool) + if err := d.readAnimation(ptr); err != nil { + d.warn(WarnTruncatedData, int64(ptr), "", "animation read error: %v", err) + } + } + + for _, ps := range d.pendingSkins { + d.resolveSkinWeights(ps) + } + + return d.model, nil +} + +type decompiler struct { + r io.ReadSeeker + fileSize int64 + model *Model + compiler Compiler + + // header_file fields + mdxOffset uint32 // hf.p_start_mdx + mdxSize uint32 // hf.size_mdx + + rootNodePtr uint32 + animPtrs []uint32 + + nodeOrder []nodeInfo + pendingSkins []pendingSkin + visitedPtrs map[uint32]bool + + totalAlloc int64 + maxAlloc int64 + + readErr error // first read error encountered, for truncation detection +} + +type nodeInfo struct { + name string + partNumber int32 +} + +type pendingSkin struct { + node *Node + bonePartNums []int16 + skinWeights [][4]float32 + skinBoneRefs [][4]int16 +} + +func (d *decompiler) trackAlloc(bytes int64) bool { + d.totalAlloc += bytes + return d.totalAlloc <= d.maxAlloc +} + +func (d *decompiler) warn(kind DecompileWarnKind, offset int64, node string, format string, args ...interface{}) { + d.model.Warnings = append(d.model.Warnings, DecompileWarning{ + Kind: kind, + Offset: offset, + Node: node, + Message: fmt.Sprintf(format, args...), + }) +} + +// goToPointer converts a model-relative pointer to absolute file offset. +// Ref: NWN1MDL.bt GoToPointer: FSeek(sizeof(header_file) + p) +func goToPointer(p uint32) int64 { + return 12 + int64(p) +} + +// goToMDXPointer converts an MDX-relative pointer to absolute file offset. +// Ref: NWN1MDL.bt GoToMDXPointer: FSeek(sizeof(header_file) + hf.p_start_mdx + p) +func (d *decompiler) goToMDXPointer(p int32) int64 { + if p < 0 { + return -1 + } + return 12 + int64(d.mdxOffset) + int64(p) +} + +func (d *decompiler) seek(offset int64) error { + if offset < 0 || offset > d.fileSize { + return fmt.Errorf("seek out of bounds: %d (file size %d)", offset, d.fileSize) + } + _, err := d.r.Seek(offset, io.SeekStart) + return err +} + +func (d *decompiler) pos() int64 { + pos, _ := d.r.Seek(0, io.SeekCurrent) + return pos +} + +func (d *decompiler) readU32() (uint32, error) { + var v uint32 + err := binary.Read(d.r, binary.LittleEndian, &v) + if err != nil && d.readErr == nil { + d.readErr = err + } + return v, err +} + +func (d *decompiler) readI32() (int32, error) { + var v int32 + err := binary.Read(d.r, binary.LittleEndian, &v) + if err != nil && d.readErr == nil { + d.readErr = err + } + return v, err +} + +func (d *decompiler) readU32AsI32() int32 { + v, _ := d.readU32() + return int32(v) +} + +func (d *decompiler) readU16() (uint16, error) { + var v uint16 + err := binary.Read(d.r, binary.LittleEndian, &v) + if err != nil && d.readErr == nil { + d.readErr = err + } + return v, err +} + +func (d *decompiler) readI16() (int16, error) { + var v int16 + err := binary.Read(d.r, binary.LittleEndian, &v) + if err != nil && d.readErr == nil { + d.readErr = err + } + return v, err +} + +func (d *decompiler) readF32() (float32, error) { + var bits uint32 + if err := binary.Read(d.r, binary.LittleEndian, &bits); err != nil { + if d.readErr == nil { + d.readErr = err + } + return 0, err + } + v := math.Float32frombits(bits) + if math.IsNaN(float64(v)) || math.IsInf(float64(v), 0) { + d.warn(WarnGeneral, d.pos()-4, "", "NaN/Inf float replaced with 0 (raw bits: 0x%08X)", bits) + return 0, nil + } + return v, nil +} + +// readVec3 reads three consecutive float32 values into a Vec3. +func (d *decompiler) readVec3() Vec3 { + x, _ := d.readF32() + y, _ := d.readF32() + z, _ := d.readF32() + return Vec3{X: x, Y: y, Z: z} +} + +func (d *decompiler) readByte() (byte, error) { + var v byte + err := binary.Read(d.r, binary.LittleEndian, &v) + if err != nil && d.readErr == nil { + d.readErr = err + } + return v, err +} + +func (d *decompiler) skip(n int) error { + _, err := d.r.Seek(int64(n), io.SeekCurrent) + return err +} + +func (d *decompiler) readFixedString(n int) (string, error) { + buf := make([]byte, n) + if _, err := io.ReadFull(d.r, buf); err != nil { + return "", err + } + end := 0 + for end < n && buf[end] != 0 { + end++ + } + clean := make([]byte, 0, end) + for i := 0; i < end; i++ { + if buf[i] >= 0x20 && buf[i] < 0x7F { + clean = append(clean, buf[i]) + } + } + return strings.ToLower(string(clean)), nil +} + +// readArrayDef reads a 12-byte array_definition {p_array_start, nr_used, nr_alloc}. +// Ref: NWN1MDL.bt array_definition (line 76) +type binArrayDef struct { + Ptr uint32 + Count uint32 + Alloc uint32 +} + +func (d *decompiler) readArrayDef() (binArrayDef, error) { + var a binArrayDef + if err := binary.Read(d.r, binary.LittleEndian, &a); err != nil { + return a, err + } + return a, nil +} + +// readPointerArray reads an array of uint32 pointers from an array_definition. +func (d *decompiler) readPointerArray(a binArrayDef) ([]uint32, error) { + if a.Count == 0 || a.Ptr == 0 { + return nil, nil + } + pos := d.pos() + absPtr := goToPointer(a.Ptr) + if absPtr+int64(a.Count)*4 > d.fileSize { + return nil, fmt.Errorf("array pointer out of bounds") + } + if !d.trackAlloc(int64(a.Count) * 4) { + return nil, fmt.Errorf("pointer array allocation exceeds limit") + } + if err := d.seek(absPtr); err != nil { + return nil, err + } + ptrs := make([]uint32, a.Count) + if err := binary.Read(d.r, binary.LittleEndian, &ptrs); err != nil { + return nil, err + } + if err := d.seek(pos); err != nil { + return ptrs, err + } + return ptrs, nil +} + +// readFileHeader reads the 12-byte header_file. +// Ref: NWN1MDL.bt header_file (line 97) +func (d *decompiler) readFileHeader() error { + if err := d.seek(0); err != nil { + return err + } + var binMdlID uint32 + if err := binary.Read(d.r, binary.LittleEndian, &binMdlID); err != nil { + return err + } + if err := binary.Read(d.r, binary.LittleEndian, &d.mdxOffset); err != nil { + return err + } + if err := binary.Read(d.r, binary.LittleEndian, &d.mdxSize); err != nil { + return err + } + return nil +} + +// readModelHeader reads header_model (which contains header_geometry). +// Ref: NWN1MDL.bt header_geometry (line 103) + header_model (line 116) +// +// Some community models have a corrupted or non-standard header (e.g. shifted +// by 4 bytes, invalid pointers). When detected, the decompiler recovers the +// model name via heuristic and returns a partial (empty-geometry) model with +// a warning instead of aborting. +func (d *decompiler) readModelHeader() error { + if err := d.seek(12); err != nil { + return err + } + + // -- header_geometry -- + d.skip(8) // p_func1, p_func2 + + modelName, err := d.readFixedString(64) + if err != nil { + return err + } + + rootPtr, err := d.readU32() + if err != nil { + return err + } + + countNodes, _ := d.readU32() + + // Sanity check: if rootPtr is 0 and countNodes is 0 but the file is large + // enough to contain a model, the header may be misaligned. Try to recover + // the model name from a nearby offset. + if rootPtr == 0 && countNodes == 0 && d.fileSize > 256 { + recovered := d.tryRecoverName(modelName) + if recovered != "" { + d.model.Name = recovered + d.warn(WarnTruncatedData, 12, "", "non-standard header layout, recovered name '%s'; geometry unavailable", recovered) + d.model.SuperModel = "NULL" + d.model.AnimationScale = 1.0 + d.rootNodePtr = 0 + return nil + } + } + + d.model.Name = modelName + d.rootNodePtr = rootPtr + + d.skip(12) // unknown1 + d.skip(12) // unknown2 + d.skip(4) // ref_count + d.skip(4) // type + padding + + // -- header_model -- + d.skip(1) // unknown0 + d.skip(1) // unknown1 + + classCode, err := d.readByte() + if err != nil { + return err + } + d.model.Classification = ClassificationFromCode(int(classCode)) + + fog, err := d.readByte() + if err != nil { + return err + } + d.model.IgnoreFog = int32(fog) + + d.skip(4) // count_child_model + + animArrayDef, err := d.readArrayDef() + if err != nil { + return err + } + animPtrs, err := d.readPointerArray(animArrayDef) + if err != nil { + d.warn(WarnPointerOutOfBounds, int64(animArrayDef.Ptr), modelName, "animation array out of bounds, skipping animations") + animPtrs = nil + } + d.animPtrs = animPtrs + + d.skip(4) // p_supermodel + d.skip(24) // bounds + d.skip(4) // radius + + animScale, err := d.readF32() + if err != nil { + return err + } + d.model.AnimationScale = animScale + + superModel, err := d.readFixedString(64) + if err != nil { + return err + } + if superModel == "" { + superModel = "NULL" + } + d.model.SuperModel = superModel + + return nil +} + +// tryRecoverName attempts to find a valid model name when the standard header +// parse yields garbage. Checks alternate offsets where names appear in known +// non-standard community binary formats (e.g. 4-byte shifted headers). +func (d *decompiler) tryRecoverName(standardName string) string { + // If the standard name already looks valid, no recovery needed + if len(standardName) > 3 && !strings.ContainsAny(standardName, "\x00") { + return "" + } + + // Try reading name at offset 16 (4 bytes before standard position) + // This handles models with a missing p_func2 or different header_file size + if d.fileSize > 80 { + if err := d.seek(16); err == nil { + if name, err := d.readFixedString(64); err == nil && len(name) > 3 { + allPrintable := true + for _, c := range name { + if c < 32 || c > 126 { + allPrintable = false + break + } + } + if allPrintable { + return name + } + } + } + } + return "" +} + +// readNode reads a complete node (header + type-specific data + children). +// Ref: NWN1MDL.bt node struct (line 634) +const maxReadNodeDepth = 256 + +func (d *decompiler) readNode(nodePtr uint32, parentName string) error { + return d.readNodeDepth(nodePtr, parentName, 0) +} + +func (d *decompiler) readNodeDepth(nodePtr uint32, parentName string, depth int) error { + if nodePtr == 0 { + return nil + } + if depth > maxReadNodeDepth { + d.warn(WarnGeneral, 0, parentName, "node tree exceeds max depth %d; truncating", maxReadNodeDepth) + return nil + } + if d.visitedPtrs[nodePtr] { + d.warn(WarnPointerOutOfBounds, int64(nodePtr), "", "cycle detected at node pointer") + return nil + } + d.visitedPtrs[nodePtr] = true + + absPtr := goToPointer(nodePtr) + if absPtr >= d.fileSize { + return fmt.Errorf("node pointer %d out of bounds", nodePtr) + } + if err := d.seek(absPtr); err != nil { + return err + } + + // -- header_node (line 215) -- + // uint32 p_func1..p_func6 (6 * 4 = 24) + d.skip(24) + + // uint32 color_inherit + inheritColor, _ := d.readI32() + + // uint32 node_number + nodeNumber, _ := d.readI32() + + // char node_name[32] + nodeName, _ := d.readFixedString(32) + + // uint32 p_geometry, p_parent_node (2 * 4 = 8) + d.skip(8) + + // array_definition children (12 bytes) + childrenDef, _ := d.readArrayDef() + + // array_definition controller_keys (12 bytes) + ctrlKeysDef, _ := d.readArrayDef() + + // array_definition controller_data (12 bytes) + ctrlDataDef, _ := d.readArrayDef() + + // content_node (uint32 bitfield) + contentBits, _ := d.readU32() + + node := &Node{ + Name: nodeName, + Parent: parentName, + PartNumber: nodeNumber, + InheritColor: inheritColor, + Scale: 1.0, + Orientation: Vec4{W: 1.0}, + } + d.nodeOrder = append(d.nodeOrder, nodeInfo{name: nodeName, partNumber: nodeNumber}) + + // Parse content_node bitfield (line 202): + // bit 0: has_header (always 1) + // bit 1: has_light + // bit 2: has_emitter + // bit 3: has_camera (unused) + // bit 4: has_reference + // bit 5: has_mesh + // bit 6: has_skin + // bit 7: has_anim + // bit 8: has_dangly + // bit 9: has_aabb + hasLight := contentBits&0x02 != 0 + hasEmitter := contentBits&0x04 != 0 + hasCamera := contentBits&0x08 != 0 + hasReference := contentBits&0x10 != 0 + hasMesh := contentBits&0x20 != 0 + hasSkin := contentBits&0x40 != 0 + hasAnim := contentBits&0x80 != 0 + hasDangly := contentBits&0x100 != 0 + hasAABB := contentBits&0x200 != 0 + _ = contentBits & 0x400 // trigger bit (binary-only, decompiled as trimesh) + + // Type-specific headers follow the node header in this exact order per the spec. + // Ref: NWN1MDL.bt node struct (line 634-728) + + if hasLight { + node.Light = &LightData{} + d.readLightHeader(node) + } + if hasEmitter { + node.Emitter = &EmitterData{} + d.readEmitterHeader(node) + } + if hasCamera { + node.Camera = true + } + if hasReference { + node.Reference = &ReferenceData{} + d.readReferenceHeader(node) + } + if hasMesh { + node.Mesh = NewMeshData() + d.readMeshHeader(node) + } + ensureMesh := func() { + if node.Mesh == nil { + node.Mesh = NewMeshData() + } + } + if hasSkin { + ensureMesh() + node.Skin = &SkinData{} + d.readSkinHeader(node) + } + if hasAnim { + ensureMesh() + node.AnimMesh = &AnimMeshData{} + d.readAnimMeshHeader(node) + } + if hasDangly { + ensureMesh() + node.Dangly = &DanglyData{} + d.readDanglyHeader(node) + } + if hasAABB { + ensureMesh() + node.Aabb = &AabbData{} + d.readAABBHeader(node) + } + + if d.readErr != nil { + d.warn(WarnTruncatedData, d.pos(), nodeName, "truncated binary: some fields may be zeroed") + d.readErr = nil + } + + d.model.Nodes = append(d.model.Nodes, node) + + // Read controllers + if ctrlKeysDef.Count > 0 { + d.readControllers(node, contentBits, ctrlKeysDef, ctrlDataDef) + } + + // Read children + childPtrs, _ := d.readPointerArray(childrenDef) + for _, cp := range childPtrs { + if cp != 0 { + if err := d.readNodeDepth(cp, nodeName, depth+1); err != nil { + d.warn(WarnTruncatedData, int64(cp), nodeName, "child read: %v", err) + } + } + } + + return nil +} + +// readLightHeader reads header_light (line 259). +func (d *decompiler) readLightHeader(node *Node) { + l := node.Light + + l.FlareRadius, _ = d.readF32() + + // array_definition unknown (12) + d.skip(12) + + // array_definition flare_sizes (12) + flareSizesDef, _ := d.readArrayDef() + // array_definition flare_positions (12) + flarePosDef, _ := d.readArrayDef() + // array_definition flare_color_shifts (12) + flareColorDef, _ := d.readArrayDef() + // array_definition flare_textures (12) + flareTexDef, _ := d.readArrayDef() + + l.LightPriority, _ = d.readI32() + l.AmbientOnly, _ = d.readI32() + l.NDynamicType, _ = d.readI32() + l.AffectDynamic, _ = d.readI32() + l.Shadow, _ = d.readI32() + l.GenerateFlare, _ = d.readI32() + l.FadingLight, _ = d.readI32() + + // Read flare arrays from their pointers + pos := d.pos() + + if flareSizesDef.Count > 0 && flareSizesDef.Ptr != 0 { + d.readFloatArrayAt(&l.FlareSizes, flareSizesDef) + } + if flarePosDef.Count > 0 && flarePosDef.Ptr != 0 { + d.readFloatArrayAt(&l.FlarePositions, flarePosDef) + } + if flareColorDef.Count > 0 && flareColorDef.Ptr != 0 { + absPtr := goToPointer(flareColorDef.Ptr) + if absPtr+int64(flareColorDef.Count)*12 <= d.fileSize && d.trackAlloc(int64(flareColorDef.Count)*12) && d.seek(absPtr) == nil { + l.FlareColorShifts = make([]Vec3, flareColorDef.Count) + for i := uint32(0); i < flareColorDef.Count; i++ { + l.FlareColorShifts[i] = d.readVec3() + } + } + } + if flareTexDef.Count > 0 && flareTexDef.Ptr != 0 { + texPtrs, _ := d.readPointerArray(flareTexDef) + for _, tp := range texPtrs { + if tp == 0 { + continue + } + if d.seek(goToPointer(tp)) == nil { + // texture_name is a null-terminated string in the spec + name, _ := d.readFixedString(64) + l.TextureNames = append(l.TextureNames, name) + } + } + } + + if len(l.TextureNames) > 0 { + l.LensFlares = int32(len(l.TextureNames)) + } + + d.seek(pos) +} + +// readEmitterHeader reads header_emitter (line 321). +func (d *decompiler) readEmitterHeader(node *Node) { + em := node.Emitter + em.DeadSpace, _ = d.readF32() + em.BlastRadius, _ = d.readF32() + em.BlastLength, _ = d.readF32() + + em.XGrid = d.readU32AsI32() + em.YGrid = d.readU32AsI32() + em.SpawnType = d.readU32AsI32() + + em.Update, _ = d.readFixedString(32) + em.Render, _ = d.readFixedString(32) + em.Blend, _ = d.readFixedString(32) + em.Texture, _ = d.readFixedString(64) + + chunk, _ := d.readFixedString(16) + if chunk != "" { + em.ChunkName = chunk + } + + em.TwoSidedTex = d.readU32AsI32() + em.Loop = d.readU32AsI32() + + ro, _ := d.readU16() + em.RenderOrder = int32(ro) + d.skip(2) // padding + + flags, _ := d.readU32() + em.P2P = int32(flags & 1) + em.P2PSel = int32((flags >> 1) & 1) + em.AffectedByWind = int32((flags >> 2) & 1) + em.IsTinted = int32((flags >> 3) & 1) + em.Bounce = int32((flags >> 4) & 1) + em.Random = int32((flags >> 5) & 1) + em.Inherit = int32((flags >> 6) & 1) + em.InheritVel = int32((flags >> 7) & 1) + em.InheritLocal = int32((flags >> 8) & 1) + em.Splat = int32((flags >> 9) & 1) + em.InheritPart = int32((flags >> 10) & 1) +} + +// readReferenceHeader reads header_reference (line 343). +func (d *decompiler) readReferenceHeader(node *Node) { + node.Reference.RefModel, _ = d.readFixedString(64) + r, _ := d.readI32() + node.Reference.Reattachable = r +} + +// readMeshHeader reads header_mesh (line 369). +// This is the most complex header -- every field is specified in the .bt template. +func (d *decompiler) readMeshHeader(node *Node) { + mesh := node.Mesh + + // uint32 p_func1, p_func2 + d.skip(8) + + // array_definition faces + facesDef, _ := d.readArrayDef() + + // vertex bound_min (12), vertex bound_max (12) + d.skip(24) + + // float radius + d.skip(4) + + // vertex average (12) + d.skip(12) + + mesh.Diffuse = d.readVec3() + mesh.Ambient = d.readVec3() + mesh.Specular = d.readVec3() + + mesh.Shininess, _ = d.readF32() + + mesh.Shadow = d.readU32AsI32() + mesh.Beaming = d.readU32AsI32() + mesh.Render = d.readU32AsI32() + mesh.TransparencyHint = d.readU32AsI32() + + // uint32 unknown1 -- EE repurposed as RenderHint + renderHintVal, _ := d.readU32() + switch renderHintVal { + case 2: + mesh.RenderHint = "NormalAndSpecMapped" + case 0: + // none + default: + mesh.RenderHint = "None" + } + + // char texture0[64] (bitmap) + bitmap, _ := d.readFixedString(64) + if bitmap != "" { + mesh.Bitmap = bitmap + } + // char texture1[64] + tex1, _ := d.readFixedString(64) + if tex1 != "" { + mesh.Texture1 = tex1 + } + // char texture2[64] + tex2, _ := d.readFixedString(64) + if tex2 != "" { + mesh.Texture2 = tex2 + } + // char texture3[64] -- EE repurposed as MaterialName + matName, _ := d.readFixedString(64) + if matName != "" { + mesh.MaterialName = matName + } + + // uint32 tile_fade + mesh.TileFade = d.readU32AsI32() + + // array_definition vertex_indices (12) + d.skip(12) + // array_definition face_leftover (12) + d.skip(12) + // array_definition vertex_indices_count (12) + d.skip(12) + // array_definition vertex_indices_offset (12) + d.skip(12) + + // int32 p_mdx_unknown1 + d.skip(4) + // uint32 unknown2 + d.skip(4) + // mesh_type type (uint32) + d.skip(4) + + // int32 p_start_mdx -- per-node MDX start (unused, we use the per-vertex pointers) + d.skip(4) + + // int32 p_mdx_vertex + pMdxVertex, _ := d.readI32() + // uint16 count_vertexes, count_textures + countVerts, _ := d.readU16() + countTextures, _ := d.readU16() + + // int32 p_mdx_texture0..3 + pMdxTex0, _ := d.readI32() + pMdxTex1, _ := d.readI32() + pMdxTex2, _ := d.readI32() + pMdxTex3, _ := d.readI32() + + // int32 p_mdx_vertex_normals + pMdxNormals, _ := d.readI32() + // int32 p_mdx_vertex_colors + pMdxColors, _ := d.readI32() + + // int32 p_mdx_tex_anim0..5 (6 * 4 = 24) + // EE repurposes tex_anim3 as tangent, tex_anim5 as bitangent + d.skip(12) // anim0, anim1, anim2 + pMdxTangent, _ := d.readI32() // tex_anim3 -> tangent + d.skip(4) // anim4 + pMdxBitangent, _ := d.readI32() // tex_anim5 -> bitangent + + // byte light_mapped, rotate_texture, uint16 padding + lightMapped, _ := d.readByte() + mesh.LightMapped = int32(lightMapped) + rotateTex, _ := d.readByte() + mesh.RotateTexture = int32(rotateTex) + d.skip(2) // padding + + // float vertex_normal_sum + d.skip(4) + // uint32 unknown3 + d.skip(4) + + // Save position at end of header_mesh (512 bytes from start). + // Data reads below seek to MDX/model pointers; we must restore so + // subsequent type-specific headers (e.g. header_dangly) are read + // from the correct offset. + headerEnd := d.pos() + defer func() { d.seek(headerEnd) }() + + nVerts := int(countVerts) + + // Vertices (MDX pointer) + if nVerts > 0 && pMdxVertex >= 0 { + d.readMDXVec3Array(&mesh.Verts, pMdxVertex, nVerts) + } + + // TVerts (MDX pointers, only 2 floats each = texcoord not vec3) + if nVerts > 0 && pMdxTex0 >= 0 { + d.readMDXTexCoords(&mesh.TVerts, pMdxTex0, nVerts) + } + if countTextures > 1 && pMdxTex1 >= 0 { + d.readMDXTexCoords(&mesh.TVerts1, pMdxTex1, nVerts) + } + if countTextures > 2 && pMdxTex2 >= 0 { + d.readMDXTexCoords(&mesh.TVerts2, pMdxTex2, nVerts) + } + if countTextures > 3 && pMdxTex3 >= 0 { + d.readMDXTexCoords(&mesh.TVerts3, pMdxTex3, nVerts) + } + + // Normals (MDX pointer) + if nVerts > 0 && pMdxNormals >= 0 { + d.readMDXVec3Array(&mesh.Normals, pMdxNormals, nVerts) + } + + // Colors (MDX pointer, RGBA bytes per spec, but Prolog reads as 3 floats) + if nVerts > 0 && pMdxColors >= 0 { + d.readMDXColors(&mesh.Colors, pMdxColors, nVerts) + } + + // Tangents / Bitangents (EE, MDX pointers) + if nVerts > 0 && pMdxTangent >= 0 { + d.readMDXTangents(mesh, pMdxTangent, pMdxBitangent, nVerts) + } + + // Faces (model pointer, not MDX) + if facesDef.Count > 0 && facesDef.Ptr != 0 { + d.readFaces(mesh, facesDef) + } +} + +// readSkinHeader reads header_skin (line 501). +func (d *decompiler) readSkinHeader(node *Node) { + // array_definition weights (12) + d.skip(12) + + // int32 p_weight_vertex, p_bone_ref_index + pWeightVertex, _ := d.readI32() + pBoneRefIndex, _ := d.readI32() + + // int32 p_bone_mapping, count_bone_mapping + d.skip(8) + + // array_definition bone_quats (12), bone_vertex (12), bone_constants (12) + d.skip(36) + + bonePartNums := make([]int16, 64) + for i := range bonePartNums { + bonePartNums[i], _ = d.readI16() + } + + // Save position at end of header_skin so subsequent headers are read correctly. + headerEnd := d.pos() + defer func() { d.seek(headerEnd) }() + + nVerts := len(node.Mesh.Verts) + if nVerts == 0 { + return + } + + // [4]float32 = 16 bytes, [4]int16 = 8 bytes per vertex + if !d.trackAlloc(int64(nVerts) * 24) { + return + } + skinWeights := make([][4]float32, nVerts) + skinBoneRefs := make([][4]int16, nVerts) + + if pWeightVertex >= 0 { + absPtr := d.goToMDXPointer(pWeightVertex) + if absPtr >= 0 && absPtr+int64(nVerts)*16 <= d.fileSize { + if d.seek(absPtr) == nil { + for i := 0; i < nVerts; i++ { + skinWeights[i][0], _ = d.readF32() + skinWeights[i][1], _ = d.readF32() + skinWeights[i][2], _ = d.readF32() + skinWeights[i][3], _ = d.readF32() + } + } + } + } + if pBoneRefIndex >= 0 { + absPtr := d.goToMDXPointer(pBoneRefIndex) + if absPtr >= 0 && absPtr+int64(nVerts)*8 <= d.fileSize { + if d.seek(absPtr) == nil { + for i := 0; i < nVerts; i++ { + skinBoneRefs[i][0], _ = d.readI16() + skinBoneRefs[i][1], _ = d.readI16() + skinBoneRefs[i][2], _ = d.readI16() + skinBoneRefs[i][3], _ = d.readI16() + } + } + } + } + + d.pendingSkins = append(d.pendingSkins, pendingSkin{ + node: node, + bonePartNums: bonePartNums, + skinWeights: skinWeights, + skinBoneRefs: skinBoneRefs, + }) +} + +// readAnimMeshHeader reads header_anim (line 561). +func (d *decompiler) readAnimMeshHeader(node *Node) { + node.AnimMesh.SamplePeriod, _ = d.readF32() + d.skip(12) // array_definition animation_vertices (legacy) + d.skip(12) // array_definition animation_texcoords (legacy) + d.skip(12) // array_definition animation_normals (legacy) + pAnimVerts, _ := d.readI32() + pAnimTVerts, _ := d.readI32() + nVertexSets, _ := d.readI32() + nTVertSets, _ := d.readI32() + + headerEnd := d.pos() + + nVerts := len(node.Mesh.Verts) + totalAnimVerts := int64(nVertexSets) * int64(nVerts) + if totalAnimVerts > 0 && totalAnimVerts <= int64(d.fileSize) && pAnimVerts > 0 && nVerts > 0 { + d.readCoreVec3Array(&node.AnimMesh.AnimVerts, pAnimVerts, int(totalAnimVerts)) + } + totalAnimTVerts := int64(nTVertSets) * int64(nVerts) + if totalAnimTVerts > 0 && totalAnimTVerts <= int64(d.fileSize) && pAnimTVerts > 0 && nVerts > 0 { + d.readCoreVec2AsVec3Array(&node.AnimMesh.AnimTVerts, pAnimTVerts, int(totalAnimTVerts)) + } + + d.seek(headerEnd) +} + +// readDanglyHeader reads header_dangly (line 586). +func (d *decompiler) readDanglyHeader(node *Node) { + constraintsDef, _ := d.readArrayDef() + node.Dangly.Displacement, _ = d.readF32() + node.Dangly.Tightness, _ = d.readF32() + node.Dangly.Period, _ = d.readF32() + + // Save position at end of header_dangly so subsequent headers are read correctly. + headerEnd := d.pos() + + if constraintsDef.Count > 0 && constraintsDef.Ptr != 0 { + d.readFloatArrayAt(&node.Dangly.Constraints, constraintsDef) + } + + d.seek(headerEnd) +} + +// readAABBHeader reads header_aabb (line 622). +func (d *decompiler) readAABBHeader(node *Node) { + pAABB, _ := d.readU32() + if pAABB != 0 { + d.readAABBTree(node.Aabb, pAABB) + } +} + +// readAABBTree reads the AABB binary tree iteratively to avoid stack overflow. +// Uses an explicit work stack with visited-pointer tracking for cycle detection. +// Ref: NWN1MDL.bt entry_aabb (line 605) +func (d *decompiler) readAABBTree(aabb *AabbData, rootPtr uint32) { + visited := make(map[uint32]bool) + stack := []uint32{rootPtr} + + for len(stack) > 0 { + ptr := stack[len(stack)-1] + stack = stack[:len(stack)-1] + + if ptr == 0 || visited[ptr] { + continue + } + visited[ptr] = true + + absPtr := goToPointer(ptr) + if absPtr+40 > d.fileSize { + continue + } + if d.seek(absPtr) != nil { + continue + } + + var entry AabbEntry + entry.BoundMin = d.readVec3() + entry.BoundMax = d.readVec3() + + pLeft, _ := d.readU32() + pRight, _ := d.readU32() + + leafFace, _ := d.readI32() + entry.LeafFace = leafFace + + plane, _ := d.readU32() + entry.Plane = plane + + aabb.Entries = append(aabb.Entries, entry) + + // Push right first so left is processed first (pre-order traversal) + if pRight > 0 { + stack = append(stack, pRight) + } + if pLeft > 0 { + stack = append(stack, pLeft) + } + } +} + +// readFaces reads mesh faces from a model-data pointer. +// Ref: NWN1MDL.bt face struct (line 361) +func (d *decompiler) readFaces(mesh *MeshData, facesDef binArrayDef) { + absPtr := goToPointer(facesDef.Ptr) + if absPtr >= d.fileSize { + return + } + if d.seek(absPtr) != nil { + return + } + count := int(facesDef.Count) + if absPtr+int64(count)*32 > d.fileSize { + return + } + if !d.trackAlloc(int64(count) * 32) { + return + } + mesh.Faces = make([]Face, count) + for i := 0; i < count; i++ { + normal := d.readVec3() + d.skip(4) // float distance + surfaceID, _ := d.readI32() + d.skip(6) // ushort adj_face_ids[3] + v0, _ := d.readU16() + v1, _ := d.readU16() + v2, _ := d.readU16() + + mesh.Faces[i] = Face{ + Verts: [3]int32{int32(v0), int32(v1), int32(v2)}, + SmoothGroup: 0, + UVs: [3]int32{int32(v0), int32(v1), int32(v2)}, + Normal: normal, + Material: surfaceID, + } + } + + // Clamp out-of-range vertex indices to prevent downstream panics. + nVerts := int32(len(mesh.Verts)) + if nVerts > 0 { + for i := range mesh.Faces { + for vi := 0; vi < 3; vi++ { + if mesh.Faces[i].Verts[vi] < 0 || mesh.Faces[i].Verts[vi] >= nVerts { + mesh.Faces[i].Verts[vi] = 0 + } + if mesh.Faces[i].UVs[vi] < 0 || mesh.Faces[i].UVs[vi] >= nVerts { + mesh.Faces[i].UVs[vi] = 0 + } + } + } + } +} + +// Core block data readers -- use goToPointer convention + +func (d *decompiler) readCoreVec3Array(out *[]Vec3, ptr int32, count int) { + absPtr := goToPointer(uint32(ptr)) + d.readVec3ArrayAt(out, absPtr, count) +} + +func (d *decompiler) readCoreVec2AsVec3Array(out *[]Vec3, ptr int32, count int) { + absPtr := goToPointer(uint32(ptr)) + d.readVec2ArrayAt(out, absPtr, count) +} + +// MDX data readers -- all use GoToMDXPointer convention + +func (d *decompiler) readMDXVec3Array(out *[]Vec3, mdxPtr int32, count int) { + absPtr := d.goToMDXPointer(mdxPtr) + d.readVec3ArrayAt(out, absPtr, count) +} + +func (d *decompiler) readMDXTexCoords(out *[]Vec3, mdxPtr int32, count int) { + absPtr := d.goToMDXPointer(mdxPtr) + d.readVec2ArrayAt(out, absPtr, count) +} + +// readVec3ArrayAt reads count Vec3 values from an absolute file offset. +func (d *decompiler) readVec3ArrayAt(out *[]Vec3, absPtr int64, count int) { + if absPtr < 0 || absPtr+int64(count)*12 > d.fileSize { + return + } + if !d.trackAlloc(int64(count) * 12) { + return + } + if d.seek(absPtr) != nil { + return + } + *out = make([]Vec3, count) + for i := 0; i < count; i++ { + (*out)[i] = d.readVec3() + } +} + +// readVec2ArrayAt reads count Vec2 values (as Vec3 with Z=0) from an absolute file offset. +func (d *decompiler) readVec2ArrayAt(out *[]Vec3, absPtr int64, count int) { + if absPtr < 0 || absPtr+int64(count)*8 > d.fileSize { + return + } + if !d.trackAlloc(int64(count) * 12) { + return + } + if d.seek(absPtr) != nil { + return + } + *out = make([]Vec3, count) + for i := 0; i < count; i++ { + (*out)[i].X, _ = d.readF32() + (*out)[i].Y, _ = d.readF32() + } +} + +func (d *decompiler) readMDXColors(out *[]Vec3, mdxPtr int32, count int) { + absPtr := d.goToMDXPointer(mdxPtr) + if absPtr < 0 || absPtr+int64(count)*4 > d.fileSize { + return + } + if !d.trackAlloc(int64(count) * 12) { + return + } + if d.seek(absPtr) != nil { + return + } + *out = make([]Vec3, count) + for i := 0; i < count; i++ { + r, _ := d.readByte() + g, _ := d.readByte() + b, _ := d.readByte() + d.skip(1) // alpha + (*out)[i] = Vec3{X: float32(r) / 255.0, Y: float32(g) / 255.0, Z: float32(b) / 255.0} + } +} + +func (d *decompiler) readMDXTangents(mesh *MeshData, tangentPtr, bitangentPtr int32, count int) { + tangentAbs := d.goToMDXPointer(tangentPtr) + if tangentAbs < 0 || tangentAbs+int64(count)*12 > d.fileSize { + return + } + if !d.trackAlloc(int64(count) * 16) { + return + } + + // Read bitangents for handedness + var bitangents []Vec3 + if bitangentPtr >= 0 { + btAbs := d.goToMDXPointer(bitangentPtr) + if btAbs >= 0 && btAbs+int64(count)*12 <= d.fileSize && d.trackAlloc(int64(count)*12) { + if d.seek(btAbs) == nil { + bitangents = make([]Vec3, count) + for i := 0; i < count; i++ { + bitangents[i] = d.readVec3() + } + } + } + } + + if d.seek(tangentAbs) != nil { + return + } + mesh.Tangents = make([]Vec4, count) + for i := 0; i < count; i++ { + t := d.readVec3() + w := float32(1.0) + if i < len(bitangents) && i < len(mesh.Normals) { + cross := vecCross(mesh.Normals[i], t) + dot := vecDot(cross, bitangents[i]) + if dot < 0 { + w = -1.0 + } + } + mesh.Tangents[i] = Vec4{X: t.X, Y: t.Y, Z: t.Z, W: w} + } +} + +func (d *decompiler) readFloatArrayAt(out *[]float32, a binArrayDef) { + absPtr := goToPointer(a.Ptr) + if absPtr+int64(a.Count)*4 > d.fileSize { + return + } + if d.seek(absPtr) != nil { + return + } + if !d.trackAlloc(int64(a.Count) * 4) { + return + } + *out = make([]float32, a.Count) + for i := uint32(0); i < a.Count; i++ { + (*out)[i], _ = d.readF32() + } +} + +// resolveSkinWeights maps bone indices to node names after all nodes are read. +// Ref: load_binary.pl do_skinbones (line 596) +func (d *decompiler) resolveSkinWeights(ps pendingSkin) { + nVerts := len(ps.skinWeights) + if !d.trackAlloc(int64(nVerts) * 64) { + return + } + ps.node.Skin.Weights = make([]VertexWeight, nVerts) + + for i := 0; i < nVerts; i++ { + w := VertexWeight{} + for j := 0; j < 4; j++ { + weight := ps.skinWeights[i][j] + boneRef := ps.skinBoneRefs[i][j] + if weight == 0 || boneRef < 0 || int(boneRef) >= len(ps.bonePartNums) { + continue + } + partNum := ps.bonePartNums[boneRef] + if partNum < 0 { + continue + } + idx := int(partNum) + if idx >= 0 && idx < len(d.nodeOrder) { + w.Bones = append(w.Bones, d.nodeOrder[idx].name) + w.Weights = append(w.Weights, weight) + } + } + ps.node.Skin.Weights[i] = w + } +} + +// binControllerKey holds one parsed controller struct entry from the binary file. +// Ref: NWN1MDL.bt controller struct (line 233), 12 bytes each. +type binControllerKey struct { + Type uint32 + ValueCount uint16 + TimeStart uint16 + DataStart uint16 + ColumnCount byte +} + +// readControllerKeys reads the binary controller key structs from the file. +func (d *decompiler) readControllerKeys(keysDef binArrayDef) []binControllerKey { + absPtr := goToPointer(keysDef.Ptr) + if absPtr >= d.fileSize || absPtr+int64(keysDef.Count)*12 > d.fileSize { + return nil + } + if d.seek(absPtr) != nil { + return nil + } + if !d.trackAlloc(int64(keysDef.Count) * 12) { + return nil + } + keys := make([]binControllerKey, keysDef.Count) + for i := uint32(0); i < keysDef.Count; i++ { + keys[i].Type, _ = d.readU32() + keys[i].ValueCount, _ = d.readU16() + keys[i].TimeStart, _ = d.readU16() + keys[i].DataStart, _ = d.readU16() + keys[i].ColumnCount, _ = d.readByte() + d.skip(1) + } + return keys +} + +type controllerRow struct { + Time float32 + Values []float32 +} + +// readControllerRows reads time+value rows from the data array for a single +// controller key. Handles seeking, bounds checks, and quaternion conversion. +func (d *decompiler) readControllerRows(def ControllerDef, dataPtr uint32, timeKeyStart, dataStart, numRows, numCols int) []controllerRow { + if numRows <= 0 { + return nil + } + // Each row: controllerRow struct (~32 bytes) + []float32 slice (numCols * 4 bytes) + if !d.trackAlloc(int64(numRows) * (32 + int64(numCols)*4)) { + return nil + } + dataAbsPtr := goToPointer(dataPtr) + rows := make([]controllerRow, 0, numRows) + + for row := 0; row < numRows; row++ { + timePtr := dataAbsPtr + int64(timeKeyStart+row)*4 + if timePtr < 0 || timePtr+4 > d.fileSize { + break + } + if d.seek(timePtr) != nil { + break + } + timeVal, _ := d.readF32() + + valPtr := dataAbsPtr + int64(dataStart+row*numCols)*4 + if valPtr < 0 || valPtr+int64(numCols)*4 > d.fileSize { + break + } + if d.seek(valPtr) != nil { + break + } + floats := make([]float32, numCols) + for c := 0; c < numCols; c++ { + floats[c], _ = d.readF32() + } + + if numCols == 4 && def.Name == "orientation" { + floats = quaternionToAngleAxis(floats) + } + + rows = append(rows, controllerRow{Time: timeVal, Values: floats}) + } + return rows +} + +// resolveControllerDefs resolves key structs into (ControllerDef, numCols, key) +// tuples, handling compiler detection and column override. +func (d *decompiler) resolveControllerDefs(keys []binControllerKey, nodeFlag uint32, nodeName string) []struct { + def ControllerDef + numCols int + key binControllerKey +} { + var out []struct { + def ControllerDef + numCols int + key binControllerKey + } + for _, k := range keys { + if nodeFlag == 5 { + d.detectCompiler(k.Type) + } + def, ok := ControllerID(k.Type, nodeFlag, d.compiler) + if !ok { + d.warn(WarnUnknownController, int64(k.Type), nodeName, + "unknown controller type %d for node flag %d", k.Type, nodeFlag) + continue + } + numCols := int(k.ColumnCount) & 0x0F + if def.NumCols > 0 { + numCols = def.NumCols + } + out = append(out, struct { + def ControllerDef + numCols int + key binControllerKey + }{def, numCols, k}) + } + return out +} + +// readControllers reads all controller key structs first, then processes them. +// NOTE (intentional behavior change): geometry nodes always use the first +// keyframe value even when N>1 keyframes are present. Previously multi-frame +// controllers were silently ignored; now we apply rows[0] and log a warning. +// This matches how the game engine evaluates static geometry controllers. +func (d *decompiler) readControllers(node *Node, contentBits uint32, keysDef, dataDef binArrayDef) { + keys := d.readControllerKeys(keysDef) + if len(keys) == 0 { + return + } + nodeFlag := node.NodeTypeFlag() + for _, entry := range d.resolveControllerDefs(keys, nodeFlag, node.Name) { + rows := d.readControllerRows(entry.def, dataDef.Ptr, int(entry.key.TimeStart), int(entry.key.DataStart), int(entry.key.ValueCount), entry.numCols) + if len(rows) == 0 { + continue + } + d.setStaticController(node, entry.def.Name, rows[0].Values) + if len(rows) > 1 { + d.warn(WarnGeneral, 0, node.Name, "controller %s has %d keyframes on geometry node; using first value only", + entry.def.Name, len(rows)) + } + } +} + +func (d *decompiler) detectCompiler(typeID uint32) { + if d.compiler != CompilerUnknown { + return + } + switch typeID { + case 448, 452: + d.compiler = CompilerBioWare + case 480, 481, 482, 484, 488: + d.compiler = CompilerNwnmdlcomp + } +} + + +func quaternionToAngleAxis(q []float32) []float32 { + if len(q) < 4 { + return q + } + x, y, z, w := q[0], q[1], q[2], q[3] + sinHalf := float32(math.Sqrt(float64(x*x + y*y + z*z))) + if sinHalf < 1e-6 { + return []float32{0, 0, 1, 0} + } + angle := float32(2.0 * math.Atan2(float64(sinHalf), float64(w))) + return []float32{x / sinHalf, y / sinHalf, z / sinHalf, angle} +} + +func (d *decompiler) setStaticController(node *Node, name string, vals []float32) { + switch name { + case "position": + if len(vals) >= 3 { + node.Position = Vec3{X: vals[0], Y: vals[1], Z: vals[2]} + } + case "orientation": + if len(vals) >= 4 { + node.Orientation = Vec4{X: vals[0], Y: vals[1], Z: vals[2], W: vals[3]} + } + case "scale": + if len(vals) >= 1 { + node.Scale = vals[0] + } + case "selfillumcolor": + if len(vals) >= 3 && node.Mesh != nil { + node.Mesh.SelfIllumColor = Vec3{X: vals[0], Y: vals[1], Z: vals[2]} + } + case "alpha": + if len(vals) >= 1 && node.Mesh != nil { + node.Mesh.Alpha = vals[0] + } + case "color": + if len(vals) >= 3 && node.Light != nil { + node.Light.Color = Vec3{X: vals[0], Y: vals[1], Z: vals[2]} + } + case "radius": + if len(vals) >= 1 && node.Light != nil { + node.Light.Radius = vals[0] + } + case "multiplier": + if len(vals) >= 1 && node.Light != nil { + node.Light.Multiplier = vals[0] + } + case "shadowradius": + if len(vals) >= 1 && node.Light != nil { + node.Light.ShadowRadius = vals[0] + } + case "verticaldisplacement": + if len(vals) >= 1 && node.Light != nil { + node.Light.VerticalDisplacement = vals[0] + } + default: + if node.Emitter != nil { + d.setEmitterController(node.Emitter, name, vals) + } + } +} + +func (d *decompiler) setEmitterController(em *EmitterData, name string, vals []float32) { + if len(vals) == 0 { + return + } + if getter, ok := emitterFloatFields[name]; ok { + *getter(em) = vals[0] + return + } + if getter, ok := emitterColorFields[name]; ok { + if len(vals) >= 3 { + *getter(em) = Vec3{X: vals[0], Y: vals[1], Z: vals[2]} + } + return + } +} + +// readAnimation reads an animation block. +// Ref: NWN1MDL.bt header_animation (line 745) + animation struct (line 753) +func (d *decompiler) readAnimation(ptr uint32) error { + absPtr := goToPointer(ptr) + if absPtr >= d.fileSize { + return fmt.Errorf("animation pointer out of bounds: %d", ptr) + } + if err := d.seek(absPtr); err != nil { + return err + } + + // header_geometry (same struct as model) + d.skip(8) // p_func1, p_func2 + animName, _ := d.readFixedString(64) + rootNodePtr, _ := d.readU32() + d.skip(4) // count_nodes + d.skip(12) // unknown1 + d.skip(12) // unknown2 + d.skip(4) // ref_count + d.skip(4) // type + padding + + // header_animation fields after geometry + animLength, _ := d.readF32() + transTime, _ := d.readF32() + animRoot, _ := d.readFixedString(64) + + // array_definition events + eventsDef, _ := d.readArrayDef() + + anim := Animation{ + Name: animName, + Length: animLength, + TransTime: transTime, + Root: animRoot, + } + + // Read events + if eventsDef.Count > 0 && eventsDef.Ptr != 0 { + evtAbs := goToPointer(eventsDef.Ptr) + if evtAbs+int64(eventsDef.Count)*36 <= d.fileSize && d.trackAlloc(int64(eventsDef.Count)*36) { + if d.seek(evtAbs) == nil { + for i := uint32(0); i < eventsDef.Count; i++ { + t, _ := d.readF32() + name, _ := d.readFixedString(32) + anim.Events = append(anim.Events, AnimEvent{Time: t, Name: name}) + } + } + } + } + + // Read animation nodes from root + if rootNodePtr != 0 { + d.readAnimNode(&anim, rootNodePtr, "NULL") + } + + d.model.Animations = append(d.model.Animations, anim) + return nil +} + +func (d *decompiler) readAnimNode(anim *Animation, nodePtr uint32, parentName string) { + d.readAnimNodeDepth(anim, nodePtr, parentName, 0) +} + +func (d *decompiler) readAnimNodeDepth(anim *Animation, nodePtr uint32, parentName string, depth int) { + if nodePtr == 0 { + return + } + if depth > maxReadNodeDepth { + d.warn(WarnGeneral, 0, parentName, "anim node tree exceeds max depth %d; truncating", maxReadNodeDepth) + return + } + if d.visitedPtrs[nodePtr] { + d.warn(WarnPointerOutOfBounds, int64(nodePtr), "", "cycle detected at anim node pointer") + return + } + d.visitedPtrs[nodePtr] = true + absPtr := goToPointer(nodePtr) + if absPtr >= d.fileSize { + return + } + if d.seek(absPtr) != nil { + return + } + + // header_node + d.skip(24) // p_func1..6 + d.skip(4) // inheritColor + d.skip(4) // nodeNumber + nodeName, _ := d.readFixedString(32) + d.skip(8) // p_geometry, p_parent_node + + childrenDef, _ := d.readArrayDef() + ctrlKeysDef, _ := d.readArrayDef() + ctrlDataDef, _ := d.readArrayDef() + contentBits, _ := d.readU32() + + nodeFlag := uint32(1) // dummy default + hasLight := contentBits&0x02 != 0 + hasEmitter := contentBits&0x04 != 0 + hasMesh := contentBits&0x20 != 0 + + if hasLight { + nodeFlag = 3 + } else if hasEmitter { + nodeFlag = 5 + } else if hasMesh { + nodeFlag = 33 + } + + hasAnim := contentBits&0x80 != 0 + + // Skip type-specific headers (animation nodes have them too). + // For animmesh nodes, we read the mesh+animmesh headers; for others, skip. + if hasLight { + d.skip(4 + 5*12 + 7*4) // header_light: 92 bytes + } + if hasEmitter { + d.skip(4*3 + 4*3 + 32*3 + 64 + 16 + 4*2 + 2 + 2 + 4) // header_emitter: 216 bytes + } + if contentBits&0x10 != 0 { // reference + d.skip(64 + 4) // header_reference: 68 bytes + } + + var animMeshVerts int + var animFacesDef binArrayDef + var animPMdxVertex, animPMdxTex0 int32 + if hasMesh && hasAnim { + meshStart := d.pos() + d.skip(8) // p_func1, p_func2 + animFacesDef, _ = d.readArrayDef() // offset 8, 12 bytes + d.skip(meshHeaderPMdxVertex - 20) // skip to pMdxVertex field + animPMdxVertex, _ = d.readI32() // offset meshHeaderPMdxVertex + countVerts, _ := d.readU16() // offset meshHeaderCountVerts + d.skip(2) // countTextures + animPMdxTex0, _ = d.readI32() // offset meshHeaderPMdxTex0 + animMeshVerts = int(countVerts) + d.seek(meshStart + meshHeaderSize) + } else if hasMesh { + d.skip(meshHeaderSize) + } + if contentBits&0x40 != 0 { // skin + d.skip(12 + 4*2 + 4*2 + 12*3 + 64*2) // header_skin: 192 bytes + } + + var animMeshData *AnimMeshData + if hasAnim { + animMeshData = &AnimMeshData{} + animMeshData.SamplePeriod, _ = d.readF32() + d.skip(12) // array_definition animation_vertices (legacy) + d.skip(12) // array_definition animation_texcoords (legacy) + d.skip(12) // array_definition animation_normals (legacy) + pAnimVerts, _ := d.readI32() + pAnimTVerts, _ := d.readI32() + nVertexSets, _ := d.readI32() + nTVertSets, _ := d.readI32() + + if animMeshVerts > 0 { + totalAV := int64(nVertexSets) * int64(animMeshVerts) + if totalAV > 0 && totalAV <= int64(d.fileSize) && pAnimVerts > 0 { + d.readCoreVec3Array(&animMeshData.AnimVerts, pAnimVerts, int(totalAV)) + } + totalAT := int64(nTVertSets) * int64(animMeshVerts) + if totalAT > 0 && totalAT <= int64(d.fileSize) && pAnimTVerts > 0 { + d.readCoreVec2AsVec3Array(&animMeshData.AnimTVerts, pAnimTVerts, int(totalAT)) + } + } + } + if contentBits&0x100 != 0 { // dangly + d.skip(12 + 4*3) // header_dangly: 24 bytes + } + if contentBits&0x200 != 0 { // aabb + d.skip(4) // header_aabb: 4 bytes + } + + animNode := AnimNode{ + Name: nodeName, + Parent: parentName, + } + + // Read mesh data for animmesh animation nodes + if hasMesh && hasAnim && animMeshVerts > 0 { + headerEnd := d.pos() + mesh := NewMeshData() + if animPMdxVertex >= 0 { + d.readMDXVec3Array(&mesh.Verts, animPMdxVertex, animMeshVerts) + } + if animPMdxTex0 >= 0 { + d.readMDXTexCoords(&mesh.TVerts, animPMdxTex0, animMeshVerts) + } + if animFacesDef.Count > 0 && animFacesDef.Ptr != 0 { + d.readFaces(mesh, animFacesDef) + } + animNode.Mesh = mesh + d.seek(headerEnd) + } + + if animMeshData != nil && (animMeshData.SamplePeriod != 0 || len(animMeshData.AnimVerts) > 0 || len(animMeshData.AnimTVerts) > 0) { + animNode.AnimMesh = animMeshData + } + + // Read controllers for anim node + if ctrlKeysDef.Count > 0 { + d.readAnimControllers(&animNode, nodeFlag, ctrlKeysDef, ctrlDataDef) + } + + anim.Nodes = append(anim.Nodes, animNode) + + // Read children + childPtrs, _ := d.readPointerArray(childrenDef) + for _, cp := range childPtrs { + if cp != 0 { + d.readAnimNodeDepth(anim, cp, nodeName, depth+1) + } + } +} + +func (d *decompiler) readAnimControllers(animNode *AnimNode, nodeFlag uint32, keysDef, dataDef binArrayDef) { + keys := d.readControllerKeys(keysDef) + if len(keys) == 0 { + return + } + for _, entry := range d.resolveControllerDefs(keys, nodeFlag, animNode.Name) { + rows := d.readControllerRows(entry.def, dataDef.Ptr, int(entry.key.TimeStart), int(entry.key.DataStart), int(entry.key.ValueCount), entry.numCols) + for _, r := range rows { + d.addAnimKey(animNode, entry.def.Name, r.Time, r.Values) + } + } +} + +func (d *decompiler) addAnimKey(an *AnimNode, name string, time float32, vals []float32) { + if name == "detonate" { + an.DetonateKeys = append(an.DetonateKeys, FloatKey{Time: time, Value: 1}) + return + } + if getter, ok := animControllerFloatTable[name]; ok { + if len(vals) >= 1 { + slice := getter(an) + *slice = append(*slice, FloatKey{Time: time, Value: vals[0]}) + } + return + } + if getter, ok := animControllerColorTable[name]; ok { + if len(vals) >= 3 { + slice := getter(an) + *slice = append(*slice, ColorKey{Time: time, Value: Vec3{X: vals[0], Y: vals[1], Z: vals[2]}}) + } + return + } + switch name { + case "position": + if len(vals) >= 3 { an.PositionKeys = append(an.PositionKeys, PositionKey{Time: time, Value: Vec3{X: vals[0], Y: vals[1], Z: vals[2]}}) } + case "orientation": + if len(vals) >= 4 { an.OrientationKeys = append(an.OrientationKeys, OrientationKey{Time: time, Value: Vec4{X: vals[0], Y: vals[1], Z: vals[2], W: vals[3]}}) } + } +} diff --git a/pkg/mdl/binary_test.go b/pkg/mdl/binary_test.go new file mode 100644 index 0000000..1041144 --- /dev/null +++ b/pkg/mdl/binary_test.go @@ -0,0 +1,133 @@ +package mdl + +import ( + "io/fs" + "os" + "path/filepath" + "strings" + "testing" +) + +func TestDecompileFileHeader(t *testing.T) { + fixtures := findFixtures(t) + if len(fixtures) == 0 { + t.Skip("no test fixtures available") + } + + for _, path := range fixtures[:min(5, len(fixtures))] { + t.Run(filepath.Base(path), func(t *testing.T) { + model, err := DecompileFile(path) + if err != nil { + t.Fatalf("DecompileFile(%s): %v", path, err) + } + if model.Name == "" { + t.Error("model name is empty") + } + if model.Classification == "" { + t.Error("classification is empty") + } + }) + } +} + +func TestDecompileAllFixtures(t *testing.T) { + fixtures := findFixtures(t) + if len(fixtures) == 0 { + t.Skip("no test fixtures available") + } + + var failures int + for _, path := range fixtures { + t.Run(filepath.Base(path), func(t *testing.T) { + model, err := DecompileFile(path) + if err != nil { + failures++ + t.Errorf("DecompileFile error: %v", err) + return + } + if model.Name == "" { + t.Error("empty model name") + } + if len(model.Nodes) == 0 { + t.Error("no nodes decompiled") + } + }) + } +} + +func TestDecompileNodeTypes(t *testing.T) { + fixtures := findFixtures(t) + if len(fixtures) == 0 { + t.Skip("no test fixtures available") + } + + nodeTypeCounts := make(map[string]int) + for _, path := range fixtures { + model, err := DecompileFile(path) + if err != nil { + continue + } + for _, node := range model.Nodes { + nodeTypeCounts[node.NodeType()]++ + } + } + + t.Logf("Node type distribution across %d fixtures:", len(fixtures)) + for typ, count := range nodeTypeCounts { + t.Logf(" %s: %d", typ, count) + } + + expected := []string{"dummy", "trimesh", "skin", "danglymesh", "emitter", "light", "aabb"} + for _, typ := range expected { + if nodeTypeCounts[typ] == 0 { + t.Errorf("expected at least one %q node across all fixtures", typ) + } + } +} + +func findFixtures(t *testing.T, subdirs ...string) []string { + t.Helper() + fixtureRoot := filepath.Join("..", "..", "tests", "fixtures") + + var roots []string + if len(subdirs) > 0 { + for _, s := range subdirs { + roots = append(roots, filepath.Join(fixtureRoot, s)) + } + } else { + roots = []string{fixtureRoot} + } + + var result []string + for _, root := range roots { + filepath.WalkDir(root, func(path string, d fs.DirEntry, err error) error { + if err != nil { + return nil + } + if d.IsDir() { + return nil + } + if !strings.EqualFold(filepath.Ext(path), ".mdl") { + return nil + } + info, err := os.Stat(path) + if err == nil && info.Size() > 12 { + // Skip ASCII files (binary files start with 4 zero bytes) + f, ferr := os.Open(path) + if ferr != nil { + return nil + } + hdr := make([]byte, 4) + f.Read(hdr) + f.Close() + if hdr[0] != 0 || hdr[1] != 0 || hdr[2] != 0 || hdr[3] != 0 { + return nil + } + result = append(result, path) + } + return nil + }) + } + return result +} + diff --git a/pkg/mdl/compiler.go b/pkg/mdl/compiler.go new file mode 100644 index 0000000..3b62fbc --- /dev/null +++ b/pkg/mdl/compiler.go @@ -0,0 +1,672 @@ +// Binary MDL compiler. +// +// Converts Model structs to NWN binary (compiled) .mdl files. +// Every write mirrors the corresponding read in binary.go exactly. +// +// Pointer convention (matches binary.go): +// Core-relative: p such that file_offset = 12 + p +// MDX-relative: p such that file_offset = 12 + core_len + p +// +// Layout of the output file: +// [0-11] header_file {0, core_len, mdx_len} +// [12 ...] core block (model header + node tree + anim headers) +// [12+core_len ...] MDX block (vertex/normal/uv data) +package mdl + +import ( + "encoding/binary" + "fmt" + "io" + "math" + "strings" +) + +// patchBuf is a growable byte slice with random-access patching. +type patchBuf struct { + b []byte +} + +func (p *patchBuf) len() int { return len(p.b) } + +func (p *patchBuf) u8(v byte) { p.b = append(p.b, v) } + +func (p *patchBuf) u16le(v uint16) { + p.b = append(p.b, byte(v), byte(v>>8)) +} + +func (p *patchBuf) u32le(v uint32) { + p.b = append(p.b, byte(v), byte(v>>8), byte(v>>16), byte(v>>24)) +} + +func (p *patchBuf) i32le(v int32) { p.u32le(uint32(v)) } +func (p *patchBuf) f32le(v float32) { p.u32le(math.Float32bits(v)) } + +func (p *patchBuf) vec3(v Vec3) { + p.f32le(v.X) + p.f32le(v.Y) + p.f32le(v.Z) +} + +func (p *patchBuf) zeros(n int) { + for i := 0; i < n; i++ { + p.b = append(p.b, 0) + } +} + +func (p *patchBuf) raw(v []byte) { p.b = append(p.b, v...) } + +// fixedStr writes s as null-terminated into a fixed-width field (zero-padded). +func (p *patchBuf) fixedStr(s string, width int) { + if len(s) >= width { + s = s[:width-1] + } + p.b = append(p.b, []byte(s)...) + p.zeros(width - len(s)) +} + +// placeholder writes 4 zero bytes and returns the byte offset for later patching. +func (p *patchBuf) placeholder() int { + off := len(p.b) + p.u32le(0) + return off +} + +// patchU32 writes a uint32 at the given byte offset (must already exist). +func (p *patchBuf) patchU32(off int, v uint32) { + binary.LittleEndian.PutUint32(p.b[off:], v) +} + +// proxyList writes a 12-byte array_definition {offset, count, alloc}. +func (p *patchBuf) proxyList(offset, count, alloc uint32) { + p.u32le(offset) + p.u32le(count) + p.u32le(alloc) +} + +func (p *patchBuf) proxyListEmpty() { p.proxyList(0, 0, 0) } + +// writeCtrlBlock writes binCtrlKey records + time/data arrays and patches the +// corresponding ProxyList placeholders for controller_keys and controller_data. +func (c *compiler) writeCtrlBlock(keys []binCtrlKey, timeArr, dataArr []float32, + keysPtrPos, keysNumPos, keysAlcPos, dataPtrPos, dataNumPos, dataAlcPos int) { + if len(keys) == 0 { + return + } + keysOff := c.core.len() + for _, k := range keys { + c.core.u32le(k.Type) + c.core.u16le(k.ValueCount) + c.core.u16le(k.TimeStart) + c.core.u16le(k.DataStart) + c.core.u8(k.ColumnCount) + c.core.u8(0) + } + dataOff := c.core.len() + for _, t := range timeArr { + c.core.f32le(t) + } + for _, v := range dataArr { + c.core.f32le(v) + } + totalData := uint32(len(timeArr) + len(dataArr)) + c.core.patchU32(keysPtrPos, uint32(keysOff)) + c.core.patchU32(keysNumPos, uint32(len(keys))) + c.core.patchU32(keysAlcPos, uint32(len(keys))) + c.core.patchU32(dataPtrPos, uint32(dataOff)) + c.core.patchU32(dataNumPos, totalData) + c.core.patchU32(dataAlcPos, totalData) +} + +// compiler holds all state for one binary MDL compilation. +type compiler struct { + core *patchBuf // model data ("core") block + vol *patchBuf // vertex data ("volatile" / MDX) block + + model *Model + + // nodeIDs maps node name → sequential part number (for skin bone mapping) + nodeIDs map[string]int32 + nextID int32 + + // nodeOffsets maps node name → core offset (for parent pointer patching) + nodeOffsets map[string]int32 + + // childrenIndex maps lowercased parent name → child nodes (built once in newCompiler) + childrenIndex map[string][]*Node + + // geomNodeIndex maps lowercased node name → *Node (built once in newCompiler) + geomNodeIndex map[string]*Node + + // lastExpanded holds the expanded mesh from the most recent writeMeshHeaderInner call. + lastExpanded *expandedMesh + + // danglyConstraintsPtrPos stores the core buffer position of the constraints + // array pointer, used by writeDanglyConstraints to patch after all headers. + danglyConstraintsPtrPos int + + // err captures the first non-fatal compilation error + err error +} + +func newCompiler(m *Model) *compiler { + ci := make(map[string][]*Node, len(m.Nodes)) + gi := make(map[string]*Node, len(m.Nodes)) + for _, n := range m.Nodes { + key := strings.ToLower(n.Name) + gi[key] = n + pkey := strings.ToLower(n.Parent) + ci[pkey] = append(ci[pkey], n) + } + return &compiler{ + core: &patchBuf{}, + vol: &patchBuf{}, + model: m, + nodeIDs: make(map[string]int32), + nodeOffsets: make(map[string]int32), + childrenIndex: ci, + geomNodeIndex: gi, + } +} + +// CompileFile writes a binary MDL to the given path. +func CompileFile(model *Model, path string) error { + return atomicWriteFile(path, func(w io.Writer) error { return Compile(model, w) }) +} + +// Compile writes a binary MDL to w. +func Compile(model *Model, w io.Writer) error { + if model == nil { + return fmt.Errorf("compile: nil model") + } + c := newCompiler(model) + + // Pre-pass: assign sequential part numbers to every geometry node. + root := model.RootNode() + if root != nil { + c.assignNodeIDs(root) + } + + if err := c.writeModel(); err != nil { + return err + } + if c.err != nil { + return c.err + } + + // File header: {0, core_len, mdx_len} + hdr := make([]byte, 12) + binary.LittleEndian.PutUint32(hdr[0:], 0) + binary.LittleEndian.PutUint32(hdr[4:], uint32(c.core.len())) + binary.LittleEndian.PutUint32(hdr[8:], uint32(c.vol.len())) + + if _, err := w.Write(hdr); err != nil { + return err + } + if _, err := w.Write(c.core.b); err != nil { + return err + } + _, err := w.Write(c.vol.b) + return err +} + +// assignNodeIDs walks the geometry node tree in iterative DFS order and assigns +// sequential IDs. Uses a visited set to guard against cyclic parent references. +func (c *compiler) assignNodeIDs(root *Node) { + visited := make(map[string]bool, len(c.model.Nodes)) + stack := []*Node{root} + for len(stack) > 0 { + n := stack[len(stack)-1] + stack = stack[:len(stack)-1] + key := strings.ToLower(n.Name) + if visited[key] { + continue + } + visited[key] = true + c.nodeIDs[key] = c.nextID + c.nextID++ + children := c.childrenOf(n) + // push in reverse so left-to-right DFS order is preserved + for i := len(children) - 1; i >= 0; i-- { + if !visited[strings.ToLower(children[i].Name)] { + stack = append(stack, children[i]) + } + } + } +} + +// childrenOf returns all direct children of n in the geometry tree (O(1) lookup). +func (c *compiler) childrenOf(n *Node) []*Node { + all := c.childrenIndex[strings.ToLower(n.Name)] + out := make([]*Node, 0, len(all)) + for _, ch := range all { + if ch != n { + out = append(out, ch) + } + } + return out +} + +// geomNodeByName returns the geometry node matching name (case-insensitive). +func (c *compiler) geomNodeByName(name string) *Node { + return c.geomNodeIndex[strings.ToLower(name)] +} + +// writeModel writes the ProxyModel header + animation pointers + geometry tree + animations. +func (c *compiler) writeModel() error { + m := c.model + + // ---- header_geometry (112 bytes) ---- + // Ref: binary.go readModelHeader → d.skip(8) + readFixedString(64) + readU32×2 + skip×4 + c.core.zeros(8) // p_func1, p_func2 + c.core.fixedStr(m.Name, 64) // model name + rootPtrOff := c.core.placeholder() // root node ptr (patched after node tree) + countNodesOff := c.core.placeholder() // count_nodes (patched after node tree) + c.core.zeros(12) // unknown1 + c.core.zeros(12) // unknown2 + c.core.zeros(4) // ref_count + c.core.u32le(2) // type = 2 (geometry / model) + + // ---- header_model (120 bytes, offsets 112-231) ---- + c.core.zeros(2) // unknown0, unknown1 + c.core.u8(byte(ClassificationToCode(strings.ToUpper(m.Classification)))) // class code + c.core.u8(byte(m.IgnoreFog)) // fog + c.core.zeros(4) // count_child_model + + // animations ProxyList placeholder (offset 120) + animListOff := c.core.placeholder() + animListNumOff := c.core.placeholder() + animListAllocOff := c.core.placeholder() + + c.core.zeros(4) // p_supermodel + c.core.zeros(24) // bounds (bmin + bmax) + c.core.zeros(4) // radius + c.core.f32le(m.AnimationScale) + super := m.SuperModel + if super == "" || strings.EqualFold(super, "NULL") { + super = "NULL" + } + c.core.fixedStr(super, 64) // supermodel name (64 bytes) + // Total so far: 232 bytes ✓ + + // ---- animation pointer array ---- + // Collect non-empty animations + anims := m.Animations + animArrayOff := c.core.len() + animPtrOffs := make([]int, len(anims)) + for i := range anims { + animPtrOffs[i] = c.core.placeholder() + } + + // Patch animation list ProxyList + if len(anims) > 0 { + c.core.patchU32(animListOff, uint32(animArrayOff)) + c.core.patchU32(animListNumOff, uint32(len(anims))) + c.core.patchU32(animListAllocOff, uint32(len(anims))) + } + // (if no anims, leave as zero ProxyList) + + // ---- geometry node tree ---- + var nodeCount int32 + var rootOff int32 + root := m.RootNode() + if root != nil { + rootOff = c.writeNode(root, 0, &nodeCount) + c.core.patchU32(rootPtrOff, uint32(rootOff)) + } + c.core.patchU32(countNodesOff, uint32(nodeCount)) + + // ---- animation blocks ---- + for i, anim := range anims { + animOff := c.writeAnimation(&anim) + c.core.patchU32(animPtrOffs[i], uint32(animOff)) + } + + return nil +} + + +// writeAnimation writes a single Animation to core and returns its core offset. +func (c *compiler) writeAnimation(anim *Animation) int32 { + animOff := int32(c.core.len()) + + // ---- header_geometry (112 bytes) ---- + c.core.zeros(8) // p_func1, p_func2 + c.core.fixedStr(anim.Name, 64) // animation name + rootPtrOff := c.core.placeholder() // root anim node ptr + countNodesOff := c.core.placeholder() // count_nodes + c.core.zeros(12) // unknown1 + c.core.zeros(12) // unknown2 + c.core.zeros(4) // ref_count + c.core.u32le(1) // type = 1 (animation) + + // ---- header_animation (84 bytes after geometry) ---- + c.core.f32le(anim.Length) + c.core.f32le(anim.TransTime) + animRoot := anim.Root + if animRoot == "" { + animRoot = c.model.Name + } + c.core.fixedStr(animRoot, 64) + + // events ProxyList (placeholder) + evtListOff := c.core.placeholder() + evtListNumOff := c.core.placeholder() + evtListAllocOff := c.core.placeholder() + + // ---- events array ---- + if len(anim.Events) > 0 { + evtOff := int32(c.core.len()) + c.core.patchU32(evtListOff, uint32(evtOff)) + c.core.patchU32(evtListNumOff, uint32(len(anim.Events))) + c.core.patchU32(evtListAllocOff, uint32(len(anim.Events))) + for _, ev := range anim.Events { + c.core.f32le(ev.Time) + c.core.fixedStr(ev.Name, 32) + } + } + + // ---- animation node tree ---- + // Build parent→children index for O(1) child lookup. + animChildIdx := make(map[string][]*AnimNode, len(anim.Nodes)) + for i := range anim.Nodes { + an := &anim.Nodes[i] + pkey := strings.ToLower(an.Parent) + animChildIdx[pkey] = append(animChildIdx[pkey], an) + } + + var animNodeCount int32 + var rootAnimOff int32 + var rootAnimNode *AnimNode + for i := range anim.Nodes { + p := anim.Nodes[i].Parent + if strings.EqualFold(p, "NULL") || p == "" { + rootAnimNode = &anim.Nodes[i] + break + } + } + if rootAnimNode == nil && len(anim.Nodes) > 0 { + rootAnimNode = &anim.Nodes[0] + } + if rootAnimNode != nil { + visited := make(map[string]bool, len(anim.Nodes)) + rootAnimOff = c.writeAnimNode(rootAnimNode, animChildIdx, 0, &animNodeCount, visited) + } + + c.core.patchU32(rootPtrOff, uint32(rootAnimOff)) + c.core.patchU32(countNodesOff, uint32(animNodeCount)) + + return animOff +} + +// writeAnimNode writes a single AnimNode and its children. +// Mirrors the read order in readAnimNodeDepth. +// Cycle safety: visited tracks already-written anim nodes to break cycles. +// animChildren maps lowercased parent name → child AnimNodes (O(1) lookup). +func (c *compiler) writeAnimNode(an *AnimNode, animChildren map[string][]*AnimNode, parentOff int32, count *int32, visited map[string]bool) int32 { + key := strings.ToLower(an.Name) + if visited[key] { + return 0 + } + visited[key] = true + // Animation nodes use contentBits derived from the geometry node, but + // trimesh/skin/dangly/aabb bits are only set when the animation node + // carries actual mesh data (animmesh). The game writes contentBits=1 + // (dummy) for trimesh animation nodes that only carry keyframes. + // Light and emitter bits ARE preserved because the decompiler needs + // them for controller ID dispatch. + geomNode := c.geomNodeByName(an.Name) + contentBits := uint32(1) + hasLight := false + hasEmitter := false + hasRef := false + hasMesh := false + hasSkin := false + hasAnimMesh := false + hasDangly := false + hasAABB := false + if geomNode != nil { + gf := geomNode.NodeTypeFlag() + if gf&0x02 != 0 { hasLight = true; contentBits |= 0x02 } + if gf&0x04 != 0 { hasEmitter = true; contentBits |= 0x04 } + if gf&0x10 != 0 { hasRef = true; contentBits |= 0x10 } + // Mesh/skin/dangly/aabb only for animmesh animation nodes + if gf&0x80 != 0 || (an.AnimMesh != nil) { + if gf&0x20 != 0 { hasMesh = true; contentBits |= 0x20 } + if gf&0x40 != 0 { hasSkin = true; contentBits |= 0x40 } + if gf&0x80 != 0 { hasAnimMesh = true; contentBits |= 0x80 } + if gf&0x100 != 0 { hasDangly = true; contentBits |= 0x100 } + if gf&0x200 != 0 { hasAABB = true; contentBits |= 0x200 } + } + } + + nodeOff := int32(c.core.len()) + *count++ + + // ---- header_node (112 bytes) ---- + c.core.zeros(24) // p_func1..p_func6 + c.core.i32le(0) // inheritColor + partNum := int32(0) + if id, ok := c.nodeIDs[strings.ToLower(an.Name)]; ok { + partNum = id + } + c.core.i32le(partNum) // node_number / m_ID + c.core.fixedStr(an.Name, 32) // node_name + c.core.i32le(0) // p_geometry (tree ptr) — engine fills at load + c.core.i32le(parentOff) // p_parent_node + + // children ProxyList — will be patched + childListOffPos := c.core.placeholder() + childListNumPos := c.core.placeholder() + childListAllocPos := c.core.placeholder() + + // controller_keys ProxyList + ctrlKeysPtrPos := c.core.placeholder() + ctrlKeysNumPos := c.core.placeholder() + ctrlKeysAllocPos := c.core.placeholder() + + // controller_data ProxyList + ctrlDataPtrPos := c.core.placeholder() + ctrlDataNumPos := c.core.placeholder() + ctrlDataAllocPos := c.core.placeholder() + + c.core.u32le(contentBits) // content_node + + // Type-specific headers (same order as readAnimNodeDepth). + if hasLight && geomNode != nil { + c.writeLightHeader(geomNode) + } else if hasLight { + c.core.zeros(92) + } + if hasEmitter && geomNode != nil { + c.writeEmitterHeader(geomNode) + } else if hasEmitter { + c.core.zeros(216) + } + if hasRef && geomNode != nil { + c.writeReferenceHeader(geomNode) + } else if hasRef { + c.core.zeros(68) + } + + // For mesh nodes in animation: write a minimal mesh header + skin/anim/dangly/aabb. + var expanded *expandedMesh + if hasMesh && geomNode != nil { + c.writeMeshHeaderForAnimNode(geomNode, an) + expanded = c.lastExpanded + } else if hasMesh { + c.core.zeros(meshHeaderSize) + } + + if hasSkin && geomNode != nil { + c.writeSkinHeader(geomNode, expanded) + } else if hasSkin { + c.core.zeros(100) + } + + // AnimMesh sub-header + var animMeshVertPtrPos, animMeshTVertPtrPos int + var animMeshNVertSets, animMeshNTVertSets int + if hasAnimMesh { + animMeshVertPtrPos, animMeshTVertPtrPos, animMeshNVertSets, animMeshNTVertSets = c.writeAnimMeshHeader(geomNode, an) + } + + if hasDangly && geomNode != nil { + c.writeDanglyHeader(geomNode) + } else if hasDangly { + c.core.zeros(24) + } + if hasAABB { + c.core.zeros(4) // pAABB placeholder (no AABB tree in anim nodes) + } + + // Deferred variable-length data (must come after all fixed-size headers). + if hasMesh && expanded != nil && geomNode != nil { + animMesh := geomNode.Mesh + if an != nil && an.Mesh != nil { + animMesh = an.Mesh + } + c.writeMeshFaceData(animMesh, expanded) + } + if hasDangly && geomNode != nil { + c.writeDanglyConstraints(geomNode) + } + + // Write anim vert/tvert data into core (animMesh). + // Resolve data source: prefer an.AnimMesh, fall back to geomNode.AnimMesh. + if hasAnimMesh && animMeshNVertSets > 0 { + var srcVerts []Vec3 + if an.AnimMesh != nil { + srcVerts = an.AnimMesh.AnimVerts + } else if geomNode != nil && geomNode.AnimMesh != nil { + srcVerts = geomNode.AnimMesh.AnimVerts + } + animVertsOff := int32(c.core.len()) + c.core.patchU32(animMeshVertPtrPos, uint32(animVertsOff)) + for _, v := range srcVerts { + c.core.vec3(v) + } + } + if hasAnimMesh && animMeshNTVertSets > 0 { + var srcTVerts []Vec3 + if an.AnimMesh != nil { + srcTVerts = an.AnimMesh.AnimTVerts + } else if geomNode != nil && geomNode.AnimMesh != nil { + srcTVerts = geomNode.AnimMesh.AnimTVerts + } + animTVertsOff := int32(c.core.len()) + c.core.patchU32(animMeshTVertPtrPos, uint32(animTVertsOff)) + for _, v := range srcTVerts { + c.core.f32le(v.X) + c.core.f32le(v.Y) + } + } + + // ---- Controllers ---- + nodeFlag := contentBits + if hasLight { + nodeFlag = 3 + } else if hasEmitter { + nodeFlag = 5 + } else if hasMesh { + nodeFlag = 33 + } + ctrlKeys, timeArr, dataArr := c.encodeAnimNodeControllers(an, nodeFlag) + c.writeCtrlBlock(ctrlKeys, timeArr, dataArr, + ctrlKeysPtrPos, ctrlKeysNumPos, ctrlKeysAllocPos, + ctrlDataPtrPos, ctrlDataNumPos, ctrlDataAllocPos) + + // ---- Children ---- + allChildren := animChildren[strings.ToLower(an.Name)] + children := make([]*AnimNode, 0, len(allChildren)) + for _, ch := range allChildren { + if ch != an { + children = append(children, ch) + } + } + + childArrayOff := int32(c.core.len()) + childOffsets := make([]int, len(children)) + for i := range children { + childOffsets[i] = c.core.placeholder() + } + + if len(children) > 0 { + c.core.patchU32(childListOffPos, uint32(childArrayOff)) + } + c.core.patchU32(childListNumPos, uint32(len(children))) + c.core.patchU32(childListAllocPos, uint32(len(children))) + + for i, child := range children { + childOff := c.writeAnimNode(child, animChildren, nodeOff, count, visited) + c.core.patchU32(childOffsets[i], uint32(childOff)) + } + + return nodeOff +} + +// writeMeshHeaderForAnimNode writes the 512-byte mesh header for an animation node. +// +// Regular trimesh anim nodes do NOT duplicate vertex or face data — the game +// writes a zeroed header with all MDX pointers = -1. Only animmesh nodes (which +// carry per-animation vertex positions) write real MDX data. +// +// Returns facesDef ptr, pMdxVertex, countVerts, pMdxTex0 for use by caller. +func (c *compiler) writeMeshHeaderForAnimNode(geomNode *Node, an *AnimNode) (int32, int32, int32, int32) { + // AnimmMesh anim nodes carry their own per-animation vertex sets — full write. + isAnimMesh := (an != nil && an.AnimMesh != nil) || (geomNode != nil && geomNode.AnimMesh != nil) + if isAnimMesh { + mesh := geomNode.Mesh + if an != nil && an.Mesh != nil { + mesh = an.Mesh + } + if mesh == nil { + c.core.zeros(meshHeaderSize) + return 0, -1, 0, -1 + } + fp, mv, nv, mt := c.writeMeshHeaderInner(mesh, geomNode) + return fp, mv, int32(nv), mt + } + + // Regular trimesh/skin/dangly/aabb anim nodes: write a zeroed header. + // All MDX pointers remain -1 so the decompiler skips vertex reads. + // The geometry section already has the authoritative mesh data. + c.core.zeros(meshHeaderSize) + return 0, -1, 0, -1 +} + +// writeAnimMeshHeader writes a 56-byte header_anim sub-header. +// Returns placeholders to patch pAnimVerts and pAnimTVerts after writing data. +func (c *compiler) writeAnimMeshHeader(geomNode *Node, an *AnimNode) (pAnimVertPos, pAnimTVertPos int, nVertexSets, nTVertSets int) { + var sp float32 + var animVerts []Vec3 + var animTVerts []Vec3 + if an != nil && an.AnimMesh != nil { + sp = an.AnimMesh.SamplePeriod + animVerts = an.AnimMesh.AnimVerts + animTVerts = an.AnimMesh.AnimTVerts + } else if geomNode != nil && geomNode.AnimMesh != nil { + sp = geomNode.AnimMesh.SamplePeriod + animVerts = geomNode.AnimMesh.AnimVerts + animTVerts = geomNode.AnimMesh.AnimTVerts + } + + nVerts := 0 + if geomNode != nil && geomNode.Mesh != nil { + nVerts = len(geomNode.Mesh.Verts) + } + if nVerts > 0 { + nVertexSets = len(animVerts) / nVerts + nTVertSets = len(animTVerts) / nVerts + } + + c.core.f32le(sp) + c.core.proxyListEmpty() // animation_vertices (legacy) + c.core.proxyListEmpty() // animation_texcoords (legacy) + c.core.proxyListEmpty() // animation_normals (legacy) + pAnimVertPos = c.core.placeholder() // pAnimVerts + pAnimTVertPos = c.core.placeholder() // pAnimTVerts + c.core.i32le(int32(nVertexSets)) + c.core.i32le(int32(nTVertSets)) + + return +} diff --git a/pkg/mdl/compiler_controllers.go b/pkg/mdl/compiler_controllers.go new file mode 100644 index 0000000..b239be3 --- /dev/null +++ b/pkg/mdl/compiler_controllers.go @@ -0,0 +1,377 @@ +// compiler_controllers.go — binControllerKey encoding for the binary MDL compiler. +// +// For geometry nodes: each active field becomes exactly one static controller +// (one keyframe at t=0). The time array and data array are packed contiguously. +// +// For animation nodes: multi-frame keyframe arrays are packed into shared time +// and data arrays; each controller references its slice via TimeStart/DataStart. +// +// Ref: binary.go readControllers / readControllerKeys / readControllerRows +package mdl + +import ( + "fmt" + "sort" +) + +// binCtrlKey is the 12-byte binary controller key record. +// Matches binary.go binControllerKey exactly. +type binCtrlKey struct { + Type uint32 + ValueCount uint16 // number of keyframe rows + TimeStart uint16 // index into shared time array + DataStart uint16 // index into shared data array + ColumnCount byte // number of floats per row +} + +// encodeGeomNodeControllers builds controller keys + time/data arrays for a geometry node. +// Geometry nodes store only a single static value (1 keyframe at t=0) per controller. +// +// Returns: (keys, timeArray, dataArray). +// The shared float array passed to the binary is: timeArray ++ dataArray. +// TimeStart and DataStart are indices into the merged array where the decompiler reads. +// +// Ref: binary.go readControllers → d.readControllerRows() for geometry nodes +func (c *compiler) encodeGeomNodeControllers(n *Node) (keys []binCtrlKey, timeArr, dataArr []float32) { + // Helper: add one static controller. + add := func(typeID uint32, cols byte, vals []float32) { + if len(vals) == 0 { + return + } + if len(timeArr)+len(dataArr) >= 65535 { + if c.err == nil { + c.err = fmt.Errorf("geometry controller data exceeds uint16 index limit") + } + return + } + timeStart := uint16(len(timeArr)) + dataStart := uint16(len(dataArr)) + timeArr = append(timeArr, 0.0) // static: one keyframe at t=0 + dataArr = append(dataArr, vals...) + keys = append(keys, binCtrlKey{ + Type: typeID, + ValueCount: 1, + TimeStart: timeStart, + DataStart: dataStart, + ColumnCount: cols, + }) + } + + // Universal controllers (all node types) + // position (ID=8, 3 cols) + pos := n.Position + if pos.X != 0 || pos.Y != 0 || pos.Z != 0 { + add(8, 3, []float32{pos.X, pos.Y, pos.Z}) + } + // orientation (ID=20, 4 cols) — ASCII axis-angle → binary quaternion xyzw + // A zero-length axis (e.g. "0 0 0 1") is a degenerate axis-angle that + // represents identity rotation regardless of the angle value. + ori := n.Orientation + axisZero := ori.X == 0 && ori.Y == 0 && ori.Z == 0 + if !axisZero && ori.W != 0 { + q := axisAngleToQuat(ori) + if q.X != 0 || q.Y != 0 || q.Z != 0 || q.W != 1 { + add(20, 4, []float32{q.X, q.Y, q.Z, q.W}) + } + } + // scale (ID=36, 1 col) — emit for any non-default value (default=1.0) + if n.Scale != 1 { + add(36, 1, []float32{n.Scale}) + } + + // Mesh controllers (bit 5 of nodeTypeFlag set) + if n.Mesh != nil { + // selfillumcolor (ID=100, 3 cols) + sic := n.Mesh.SelfIllumColor + if sic.X != 0 || sic.Y != 0 || sic.Z != 0 { + add(100, 3, []float32{sic.X, sic.Y, sic.Z}) + } + // alpha (ID=128, 1 col) — only skip the default value (1.0) + if n.Mesh.Alpha != 1 { + add(128, 1, []float32{n.Mesh.Alpha}) + } + } + + // Light controllers + if n.Light != nil { + // color (ID=76 for nodeFlag=3, 3 cols) + col := n.Light.Color + if col.X != 0 || col.Y != 0 || col.Z != 0 { + add(76, 3, []float32{col.X, col.Y, col.Z}) + } + // radius (ID=88, 1 col) + if n.Light.Radius != 0 { + add(88, 1, []float32{n.Light.Radius}) + } + // multiplier (ID=140, 1 col) + if n.Light.Multiplier != 0 { + add(140, 1, []float32{n.Light.Multiplier}) + } + // shadowradius (ID=96, 1 col) + if n.Light.ShadowRadius != 0 { + add(96, 1, []float32{n.Light.ShadowRadius}) + } + // verticaldisplacement (ID=100 for nodeFlag=3, 1 col) + if n.Light.VerticalDisplacement != 0 { + add(100, 1, []float32{n.Light.VerticalDisplacement}) + } + } + + // Emitter controllers — static values stored as controllers (BioWare format) + if n.Emitter != nil { + em := n.Emitter + // Use BioWare controller IDs from controllers.go + addEmitterFloatCtrl := func(name string, val float32) { + if val == 0 { + return + } + typeID := emitterCtrlID(name) + if typeID == 0 { + return + } + add(typeID, 1, []float32{val}) + } + addEmitterColorCtrl := func(name string, v Vec3) { + if v.X == 0 && v.Y == 0 && v.Z == 0 { + return + } + typeID := emitterCtrlID(name) + if typeID == 0 { + return + } + add(typeID, 3, []float32{v.X, v.Y, v.Z}) + } + floatNames := make([]string, 0, len(emitterFloatFields)) + for name := range emitterFloatFields { + floatNames = append(floatNames, name) + } + sort.Strings(floatNames) + for _, name := range floatNames { + addEmitterFloatCtrl(name, *emitterFloatFields[name](em)) + } + colorNames := make([]string, 0, len(emitterColorFields)) + for name := range emitterColorFields { + colorNames = append(colorNames, name) + } + sort.Strings(colorNames) + for _, name := range colorNames { + addEmitterColorCtrl(name, *emitterColorFields[name](em)) + } + } + + // DataStart values are relative to the data sub-array; writeCtrlBlock + // writes [timeArr..., dataArr...] so the reader indexes from the start + // of the combined array. Offset all DataStart by len(timeArr). + for i := range keys { + adjusted := int(keys[i].DataStart) + len(timeArr) + if adjusted > 65535 { + if c.err == nil { + c.err = fmt.Errorf("geometry controller data index overflow: offset %d exceeds uint16 limit", adjusted) + } + return nil, nil, nil + } + keys[i].DataStart = uint16(adjusted) + } + return +} + +// encodeAnimNodeControllers builds controller keys + time/data arrays for an animation node. +// Animation nodes can have multi-frame keyframe arrays. +func (c *compiler) encodeAnimNodeControllers(an *AnimNode, nodeFlag uint32) (keys []binCtrlKey, timeArr, dataArr []float32) { + checkOverflow := func() bool { + if len(timeArr) > 65535 || len(dataArr) > 65535 || len(timeArr)+len(dataArr) > 65535 { + if c.err == nil { + c.err = fmt.Errorf("animation controller data exceeds uint16 index limit (%d time, %d data entries)", len(timeArr), len(dataArr)) + } + return true + } + return false + } + addFloat := func(typeID uint32, keyframes []FloatKey) { + if len(keyframes) == 0 || checkOverflow() { + return + } + timeStart := uint16(len(timeArr)) + dataStart := uint16(len(dataArr)) + for _, kf := range keyframes { + timeArr = append(timeArr, kf.Time) + dataArr = append(dataArr, kf.Value) + } + keys = append(keys, binCtrlKey{ + Type: typeID, + ValueCount: uint16(len(keyframes)), + TimeStart: timeStart, + DataStart: dataStart, + ColumnCount: 1, + }) + } + addColor := func(typeID uint32, keyframes []ColorKey) { + if len(keyframes) == 0 || checkOverflow() { + return + } + timeStart := uint16(len(timeArr)) + dataStart := uint16(len(dataArr)) + for _, kf := range keyframes { + timeArr = append(timeArr, kf.Time) + dataArr = append(dataArr, kf.Value.X, kf.Value.Y, kf.Value.Z) + } + keys = append(keys, binCtrlKey{ + Type: typeID, + ValueCount: uint16(len(keyframes)), + TimeStart: timeStart, + DataStart: dataStart, + ColumnCount: 3, + }) + } + addVec3 := func(typeID uint32, keyframes []PositionKey) { + if len(keyframes) == 0 || checkOverflow() { + return + } + timeStart := uint16(len(timeArr)) + dataStart := uint16(len(dataArr)) + for _, kf := range keyframes { + timeArr = append(timeArr, kf.Time) + dataArr = append(dataArr, kf.Value.X, kf.Value.Y, kf.Value.Z) + } + keys = append(keys, binCtrlKey{ + Type: typeID, + ValueCount: uint16(len(keyframes)), + TimeStart: timeStart, + DataStart: dataStart, + ColumnCount: 3, + }) + } + addOrientation := func(keyframes []OrientationKey) { + if len(keyframes) == 0 || checkOverflow() { + return + } + timeStart := uint16(len(timeArr)) + dataStart := uint16(len(dataArr)) + for _, kf := range keyframes { + timeArr = append(timeArr, kf.Time) + // ASCII stores axis-angle; convert to quaternion for binary. + q := axisAngleToQuat(kf.Value) + dataArr = append(dataArr, q.X, q.Y, q.Z, q.W) + } + keys = append(keys, binCtrlKey{ + Type: 20, + ValueCount: uint16(len(keyframes)), + TimeStart: timeStart, + DataStart: dataStart, + ColumnCount: 4, + }) + } + addDetonate := func(keyframes []FloatKey) { + if len(keyframes) == 0 || checkOverflow() { + return + } + timeStart := uint16(len(timeArr)) + for _, kf := range keyframes { + timeArr = append(timeArr, kf.Time) + } + // detonate: ColumnCount=0, no data floats. + keys = append(keys, binCtrlKey{ + Type: 228, // ID 228 from nodeControllers map + ValueCount: uint16(len(keyframes)), + TimeStart: timeStart, + DataStart: uint16(len(dataArr)), + ColumnCount: 0, + }) + } + + // Universal + addVec3(8, an.PositionKeys) + addOrientation(an.OrientationKeys) + addFloat(36, an.ScaleKeys) + + // Mesh controllers + if nodeFlag&0x20 != 0 { + addColor(100, an.SelfIllumColorKeys) + addFloat(128, an.AlphaKeys) + } + + // Light controllers + if nodeFlag == 3 { + addColor(76, an.ColorKeys) + addFloat(88, an.RadiusKeys) + addFloat(140, an.MultiplierKeys) + addFloat(96, an.ShadowRadiusKeys) + addFloat(100, an.VerticalDisplacementKeys) + } + + // Emitter controllers (BioWare IDs) + if nodeFlag == 5 { + addFloat(84, an.AlphaStartKeys) + addFloat(448, an.AlphaMidKeys) // BioWare ID + addFloat(80, an.AlphaEndKeys) + addFloat(88, an.BirthRateKeys) + addFloat(204, an.BlurLengthKeys) + addFloat(92, an.BounceCoKeys) + addColor(108, an.ColorStartKeys) + addColor(452, an.ColorMidKeys) // BioWare ID + addColor(96, an.ColorEndKeys) + addFloat(120, an.CombineTimeKeys) + addDetonate(an.DetonateKeys) + addFloat(124, an.DragKeys) + addFloat(128, an.FPSKeys) + addFloat(136, an.FrameStartKeys) + addFloat(132, an.FrameEndKeys) + addFloat(140, an.GravKeys) + addFloat(144, an.LifeExpKeys) + addFloat(208, an.LightningDelayKeys) + addFloat(212, an.LightningRadiusKeys) + addFloat(216, an.LightningScaleKeys) + if len(an.LightningSubDivKeys) > 0 { + addFloat(220, an.LightningSubDivKeys) + } + addFloat(148, an.MassKeys) + addFloat(152, an.P2PBezier2Keys) + addFloat(156, an.P2PBezier3Keys) + addFloat(160, an.ParticleRotKeys) + addFloat(464, an.PercentStartKeys) // BioWare ID + addFloat(465, an.PercentMidKeys) // BioWare ID + addFloat(466, an.PercentEndKeys) // BioWare ID + addFloat(164, an.RandVelKeys) + addFloat(168, an.SizeStartKeys) + addFloat(468, an.SizeMidKeys) // BioWare ID + addFloat(172, an.SizeEndKeys) + addFloat(176, an.SizeStartYKeys) + addFloat(472, an.SizeMidYKeys) // BioWare ID + addFloat(180, an.SizeEndYKeys) + addFloat(184, an.SpreadKeys) + addFloat(188, an.ThresholdKeys) + addFloat(192, an.VelocityKeys) + addFloat(196, an.XSizeKeys) + addFloat(200, an.YSizeKeys) + } + + for i := range keys { + adjusted := int(keys[i].DataStart) + len(timeArr) + if adjusted > 65535 { + if c.err == nil { + c.err = fmt.Errorf("animation controller data index overflow: offset %d exceeds uint16 limit", adjusted) + } + return nil, nil, nil + } + keys[i].DataStart = uint16(adjusted) + } + return +} + +var emitterNameToID map[string]uint32 + +func init() { + emitterNameToID = make(map[string]uint32) + for k, def := range nodeControllers { + if k.NodeFlag == 5 { + emitterNameToID[def.Name] = k.TypeID + } + } + for id, def := range biowareEmitterControllers { + emitterNameToID[def.Name] = id + } +} + +func emitterCtrlID(name string) uint32 { + return emitterNameToID[name] +} diff --git a/pkg/mdl/compiler_mesh.go b/pkg/mdl/compiler_mesh.go new file mode 100644 index 0000000..22626b4 --- /dev/null +++ b/pkg/mdl/compiler_mesh.go @@ -0,0 +1,508 @@ +// compiler_mesh.go — 512-byte mesh header and MDX vertex data writing. +// Every write field mirrors the read in binary.go readMeshHeader exactly. +package mdl + +import ( + "fmt" + "math" +) + +// vertKey is a bit-exact key for vertex deduplication. +// Using uint32 bit patterns avoids float comparison ambiguity. +// +// The game compiler splits at material and smoothing-group boundaries +// even when those values would otherwise share a GPU vertex with the +// same position/UV/normal/color. We must include them in the dedup key +// to match the game's vertex count exactly. Without these, multi- +// material meshes (e.g. character body parts with 4-6 material indices) +// over-merge by 30-50%, which then perturbs Mikktspace tangents at +// material/SG boundaries and is the dominant cause of the ~1-3% bad- +// alignment corners observed in the oracle suite. +type vertKey struct { + px, py, pz uint32 // position bits + ux, uy uint32 // UV0 bits + u1x, u1y uint32 // UV1 bits + u2x, u2y uint32 // UV2 bits + u3x, u3y uint32 // UV3 bits + nx, ny, nz uint32 // normal bits + cr, cg, cb uint32 // color bits + mat int32 // face material index + sg int32 // face smoothing group +} + +func f32bits(f float32) uint32 { return math.Float32bits(f) } + +// writeMeshHeaderFull writes the full 512-byte header_mesh and any inline data +// (faces array), then appends vertex data to the MDX (volatile) buffer. +// Returns: (faceArrayOff, mdxVertOff, countVerts, mdxTex0Off) for patching. +func (c *compiler) writeMeshHeaderFull(n *Node) *expandedMesh { + mesh := n.Mesh + if mesh == nil { + c.core.zeros(meshHeaderSize) + return nil + } + c.writeMeshHeaderInner(mesh, n) + return c.lastExpanded +} + +// writeMeshHeaderInner writes exactly 512 bytes of header_mesh. +// It also writes the face array to core and vertex data to MDX. +// Returns: (facesPtrField, mdxVertOff, countVerts, mdxTex0Off) — all core/MDX offsets. +func (c *compiler) writeMeshHeaderInner(mesh *MeshData, n *Node) (facesPtrField, mdxVertOff int32, countVerts uint16, mdxTex0Off int32) { + // Generate normals and default colors if not present in the ASCII source. + generateNormals(mesh) + // NOTE: nwnmdlcomp generates default white colors, but the NWN:EE game + // compiler does NOT — it only writes colors when the ASCII source has + // explicit color data. We match the game's behavior. + + // Build expanded vertex data (one GPU vertex per face-vertex reference). + expanded, err := buildExpandedMesh(mesh) + if err != nil { + c.err = err + c.core.zeros(meshHeaderSize) + return -1, -1, 0, -1 + } + c.lastExpanded = &expanded + + // Resolve tangents up-front so the header can decide whether to emit a + // real MDX pointer or leave -1 ("not present"). Generation needs the + // expanded mesh's positions, normals, and UV0 — meshes without UVs + // (e.g. AABB walkmesh) keep both pointers at -1. + tangentsOut, bitangentsOut := resolveTangents(mesh, &expanded) + + // uint32 p_func1, p_func2 (8 bytes) — engine fills at load + c.core.zeros(8) + + // array_definition faces {offset, count, alloc} + facesPtrPos := c.core.placeholder() // will be patched after faces are written + c.core.u32le(uint32(len(mesh.Faces))) + c.core.u32le(uint32(len(mesh.Faces))) + + // bmin, bmax (24 bytes) + bmin, bmax, center, radius := computeBounds(expanded.positions) + c.core.vec3(bmin) + c.core.vec3(bmax) + + // float radius (4) + c.core.f32le(radius) + + // vertex average / center (12) + c.core.vec3(center) + + // diffuse, ambient, specular (36) + c.core.vec3(mesh.Diffuse) + c.core.vec3(mesh.Ambient) + c.core.vec3(mesh.Specular) + + // float shininess (4) + c.core.f32le(mesh.Shininess) + + // shadow, beaming, render, transparencyhint (16) + c.core.i32le(mesh.Shadow) + c.core.i32le(mesh.Beaming) + c.core.i32le(mesh.Render) + c.core.i32le(mesh.TransparencyHint) + + // uint32 unknown1 / renderHint (4) + renderHintVal := uint32(0) + switch mesh.RenderHint { + case "NormalAndSpecMapped": + renderHintVal = 2 + } + c.core.u32le(renderHintVal) + + // char texture0[64], texture1[64], texture2[64], materialName[64] (256) + c.core.fixedStr(mesh.Bitmap, 64) + c.core.fixedStr(mesh.Texture1, 64) + c.core.fixedStr(mesh.Texture2, 64) + c.core.fixedStr(mesh.MaterialName, 64) + + // uint32 tile_fade (4) + c.core.i32le(mesh.TileFade) + + // array_definition vertex_indices (deprecated, always empty) (12) + c.core.proxyListEmpty() + // array_definition face_leftover (deprecated, always empty) (12) + c.core.proxyListEmpty() + // array_definition vertex_indices_count (deprecated, always empty) (12) + c.core.proxyListEmpty() + // array_definition vertex_indices_offset / m_listVertexTokenIndices (12) + c.core.proxyListEmpty() + + // int32 p_mdx_unknown1 / m_nLeftOverFacesToken (4) + c.core.u32le(0xFFFFFFFF) + // uint32 unknown2 / m_nLeftOverFacesCount (4) + c.core.u32le(0) + // mesh_type type / m_nMode (4) + c.core.u32le(0) + // int32 p_start_mdx / m_pPostProcessInfo (4) + c.core.i32le(0) + + // int32 p_mdx_vertex — MDX pointer to vertex positions (4) + mdxVertOff = int32(c.vol.len()) + mdxVertPtrPos := c.core.len() + c.core.i32le(0) // placeholder — we patch this below + // (must be i32: value is written as int32, read as int32 in binary.go) + + // uint16 count_vertexes, count_textures (4) + countVerts = uint16(len(expanded.positions)) + c.core.u16le(countVerts) + nTexStages := uint16(expanded.texStages) + c.core.u16le(nTexStages) + + // int32 p_mdx_texture0..3 (16) + mdxTex0Off = int32(-1) + mdxTex0PtrPos := -1 + mdxTex1PtrPos := -1 + mdxTex2PtrPos := -1 + mdxTex3PtrPos := -1 + if expanded.texStages > 0 { + mdxTex0PtrPos = c.core.len() + c.core.i32le(0) + } else { + c.core.i32le(-1) + } + if expanded.texStages > 1 { + mdxTex1PtrPos = c.core.len() + c.core.i32le(0) + } else { + c.core.i32le(-1) + } + if expanded.texStages > 2 { + mdxTex2PtrPos = c.core.len() + c.core.i32le(0) + } else { + c.core.i32le(-1) + } + if expanded.texStages > 3 { + mdxTex3PtrPos = c.core.len() + c.core.i32le(0) + } else { + c.core.i32le(-1) + } + + // int32 p_mdx_vertex_normals (4) + mdxNormalPtrPos := -1 + if len(expanded.normals) > 0 { + mdxNormalPtrPos = c.core.len() + c.core.i32le(0) // placeholder + } else { + c.core.i32le(-1) + } + + // int32 p_mdx_vertex_colors (4) + mdxColorPtrPos := -1 + if len(expanded.colors) > 0 { + mdxColorPtrPos = c.core.len() + c.core.i32le(0) // placeholder + } else { + c.core.i32le(-1) + } + + // int32 p_mdx_tex_anim0,1,2 (12 bytes, deprecated, write -1) + c.core.i32le(-1) + c.core.i32le(-1) + c.core.i32le(-1) + // int32 p_mdx_tangent / tex_anim3 (4) — EE tangents + mdxTangentPtrPos := -1 + if len(tangentsOut) > 0 { + mdxTangentPtrPos = c.core.len() + c.core.i32le(0) // placeholder, patched after MDX tangent write + } else { + c.core.i32le(-1) + } + // int32 p_mdx_tex_anim4 (4, deprecated) + c.core.i32le(-1) + // int32 p_mdx_bitangent / tex_anim5 (4) — EE bitangent + mdxBitangentPtrPos := -1 + if len(bitangentsOut) > 0 { + mdxBitangentPtrPos = c.core.len() + c.core.i32le(0) // placeholder, patched after MDX bitangent write + } else { + c.core.i32le(-1) + } + + // byte light_mapped, rotate_texture (2) + c.core.u8(byte(mesh.LightMapped)) + c.core.u8(byte(mesh.RotateTexture)) + c.core.zeros(2) // uint16 padding + + // float vertex_normal_sum / m_nLocalSurfaceArea (4) + c.core.f32le(0) + // uint32 unknown3 / m_nRootedSurfaceArea (4) + c.core.u32le(0) + + // 512 bytes of header complete. Face data is written later by + // writeMeshFaceData so that subsequent type-specific headers (skin, + // dangly, aabb) are contiguous in the core buffer — matching the + // layout the decompiler expects. + expanded.facesPtrPos = facesPtrPos + + // ---- Write vertex data to MDX (volatile) ---- + // Write positions + posStart := int32(c.vol.len()) + for _, pos := range expanded.positions { + c.vol.vec3(pos) + } + // Patch pMdxVertex + c.core.patchU32(mdxVertPtrPos, uint32(posStart)) + + // Write UV coords (8 bytes each: 2× float32) per texture stage + writeUVs := func(uvs []Vec3, ptrPos int) { + if len(uvs) == 0 || ptrPos < 0 { + return + } + start := int32(c.vol.len()) + for _, uv := range uvs { + c.vol.f32le(uv.X) + c.vol.f32le(uv.Y) + } + c.core.patchU32(ptrPos, uint32(start)) + } + writeUVs(expanded.uvs, mdxTex0PtrPos) + writeUVs(expanded.uvs1, mdxTex1PtrPos) + writeUVs(expanded.uvs2, mdxTex2PtrPos) + writeUVs(expanded.uvs3, mdxTex3PtrPos) + + // Write a slice of Vec3 vertex attributes to the volatile MDX block and + // patch the corresponding header pointer. Mirrors the writeUVs closure + // above; centralising it keeps the guard semantics consistent across + // normals, tangents, and bitangents. + writeVec3Stream := func(data []Vec3, ptrPos int) { + if len(data) == 0 || ptrPos < 0 { + return + } + start := int32(c.vol.len()) + for _, v := range data { + c.vol.vec3(v) + } + c.core.patchU32(ptrPos, uint32(start)) + } + + writeVec3Stream(expanded.normals, mdxNormalPtrPos) + + // Write colors as 4-byte RGBA (matching binary.go readMDXColors) + if len(expanded.colors) > 0 && mdxColorPtrPos >= 0 { + colorStart := int32(c.vol.len()) + for _, col := range expanded.colors { + c.vol.u8(clampByte(col.X)) + c.vol.u8(clampByte(col.Y)) + c.vol.u8(clampByte(col.Z)) + c.vol.u8(0xFF) // alpha + } + c.core.patchU32(mdxColorPtrPos, uint32(colorStart)) + } + + // The decompiler reads both arrays back and reconstructs the per-vertex + // Vec4 W handedness from sign(dot(cross(normal, tangent), bitangent)) — + // see binary.go readMDXTangents. + writeVec3Stream(tangentsOut, mdxTangentPtrPos) + writeVec3Stream(bitangentsOut, mdxBitangentPtrPos) + + return +} + +// writeMeshFaceData writes the face array to core and patches the faces pointer. +// Called after all type-specific headers are written so that variable-length face +// data doesn't shift subsequent headers to wrong offsets. +func (c *compiler) writeMeshFaceData(mesh *MeshData, exp *expandedMesh) { + if mesh == nil || exp == nil { + return + } + facesOff := int32(c.core.len()) + c.core.patchU32(exp.facesPtrPos, uint32(facesOff)) + + for fi, face := range mesh.Faces { + faceNormal := face.Normal + var dist float32 + v0i, v1i, v2i := int(face.Verts[0]), int(face.Verts[1]), int(face.Verts[2]) + if v0i >= 0 && v0i < len(mesh.Verts) && v1i >= 0 && v1i < len(mesh.Verts) && v2i >= 0 && v2i < len(mesh.Verts) { + p1, p2, p3 := mesh.Verts[v0i], mesh.Verts[v1i], mesh.Verts[v2i] + e1 := Vec3{X: p2.X - p1.X, Y: p2.Y - p1.Y, Z: p2.Z - p1.Z} + e2 := Vec3{X: p3.X - p2.X, Y: p3.Y - p2.Y, Z: p3.Z - p2.Z} + n := Vec3{ + X: e1.Y*e2.Z - e1.Z*e2.Y, + Y: e1.Z*e2.X - e1.X*e2.Z, + Z: e1.X*e2.Y - e1.Y*e2.X, + } + length := float32(math.Sqrt(float64(n.X*n.X + n.Y*n.Y + n.Z*n.Z))) + if length > 1e-10 { + faceNormal = Vec3{X: n.X / length, Y: n.Y / length, Z: n.Z / length} + } + dist = -(faceNormal.X*p1.X + faceNormal.Y*p1.Y + faceNormal.Z*p1.Z) + } + c.core.vec3(faceNormal) + c.core.f32le(dist) + c.core.i32le(face.Material) + c.core.u16le(0xFFFF) + c.core.u16le(0xFFFF) + c.core.u16le(0xFFFF) + c.core.u16le(exp.faceVerts[fi][0]) + c.core.u16le(exp.faceVerts[fi][1]) + c.core.u16le(exp.faceVerts[fi][2]) + } +} + +func clampByte(f float32) byte { + v := int(f*255.0 + 0.5) + if v < 0 { + return 0 + } + if v > 255 { + return 255 + } + return byte(v) +} + +// expandedMesh holds the deduplicated GPU vertex arrays and per-face-corner indices. +type expandedMesh struct { + positions []Vec3 + uvs []Vec3 // UV0: only X,Y used; stored as 2 floats in MDX + uvs1 []Vec3 // UV1 + uvs2 []Vec3 // UV2 + uvs3 []Vec3 // UV3 + normals []Vec3 + colors []Vec3 + texStages int + faceVerts [][3]uint16 // per-face GPU vertex indices (into the arrays above) + origVert []int32 // GPU vertex → original mesh vertex index + + facesPtrPos int // core buffer position of faces array pointer (for deferred patching) +} + +// buildExpandedMesh converts an ASCII indexed mesh into GPU vertex arrays, +// deduplicating vertices that share identical position + UV + normal + color. +// Deduplication uses exact bit-level float comparison (no epsilon) so that +// vertices authored as identical in ASCII always merge. +func buildExpandedMesh(mesh *MeshData) (expandedMesh, error) { + hasUV := len(mesh.TVerts) > 0 + hasTexIdx0 := len(mesh.TexIndices0) > 0 + hasUV1 := len(mesh.TVerts1) > 0 + hasUV2 := len(mesh.TVerts2) > 0 + hasUV3 := len(mesh.TVerts3) > 0 + hasNormals := len(mesh.Normals) > 0 + hasColors := len(mesh.Colors) > 0 + + exp := expandedMesh{ + faceVerts: make([][3]uint16, len(mesh.Faces)), + } + if hasUV { exp.texStages = 1 } + if hasUV1 { exp.texStages = 2 } + if hasUV2 { exp.texStages = 3 } + if hasUV3 { exp.texStages = 4 } + + cache := make(map[vertKey]uint16, len(mesh.Faces)*3) + + for fi, face := range mesh.Faces { + for vi := 0; vi < 3; vi++ { + vertIdx := int(face.Verts[vi]) + uvIdx := int(face.UVs[vi]) + + var pos, uv, uv1, uv2, uv3, nor, col Vec3 + if vertIdx >= 0 && vertIdx < len(mesh.Verts) { pos = mesh.Verts[vertIdx] } + if hasUV { + ti := uvIdx + if hasTexIdx0 && fi < len(mesh.TexIndices0) { ti = int(mesh.TexIndices0[fi][vi]) } + if ti >= 0 && ti < len(mesh.TVerts) { uv = mesh.TVerts[ti] } + } + + // Extra UV stages use TexIndices if available, else fall back to uvIdx + if hasUV1 { + ti := uvIdx + if fi < len(mesh.TexIndices1) { ti = int(mesh.TexIndices1[fi][vi]) } + if ti >= 0 && ti < len(mesh.TVerts1) { uv1 = mesh.TVerts1[ti] } + } + if hasUV2 { + ti := uvIdx + if fi < len(mesh.TexIndices2) { ti = int(mesh.TexIndices2[fi][vi]) } + if ti >= 0 && ti < len(mesh.TVerts2) { uv2 = mesh.TVerts2[ti] } + } + if hasUV3 { + ti := uvIdx + if fi < len(mesh.TexIndices3) { ti = int(mesh.TexIndices3[fi][vi]) } + if ti >= 0 && ti < len(mesh.TVerts3) { uv3 = mesh.TVerts3[ti] } + } + + if hasNormals { + if fi < len(mesh.CornerNormals) { + nor = mesh.CornerNormals[fi][vi] + } else if vertIdx >= 0 && vertIdx < len(mesh.Normals) { + nor = mesh.Normals[vertIdx] + } + } + if hasColors && vertIdx >= 0 && vertIdx < len(mesh.Colors) { col = mesh.Colors[vertIdx] } + + key := vertKey{ + px: f32bits(pos.X), py: f32bits(pos.Y), pz: f32bits(pos.Z), + ux: f32bits(uv.X), uy: f32bits(uv.Y), + u1x: f32bits(uv1.X), u1y: f32bits(uv1.Y), + u2x: f32bits(uv2.X), u2y: f32bits(uv2.Y), + u3x: f32bits(uv3.X), u3y: f32bits(uv3.Y), + nx: f32bits(nor.X), ny: f32bits(nor.Y), nz: f32bits(nor.Z), + cr: f32bits(col.X), cg: f32bits(col.Y), cb: f32bits(col.Z), + mat: face.Material, + sg: face.SmoothGroup, + } + + gpuIdx, ok := cache[key] + if !ok { + if len(exp.positions) >= math.MaxUint16 { + return exp, fmt.Errorf("mesh exceeds 65535 unique GPU vertices (%d); split the mesh", len(exp.positions)) + } + gpuIdx = uint16(len(exp.positions)) + cache[key] = gpuIdx + exp.positions = append(exp.positions, pos) + exp.origVert = append(exp.origVert, int32(vertIdx)) + if hasUV { exp.uvs = append(exp.uvs, uv) } + if hasUV1 { exp.uvs1 = append(exp.uvs1, uv1) } + if hasUV2 { exp.uvs2 = append(exp.uvs2, uv2) } + if hasUV3 { exp.uvs3 = append(exp.uvs3, uv3) } + if hasNormals { exp.normals = append(exp.normals, nor) } + if hasColors { exp.colors = append(exp.colors, col) } + } + exp.faceVerts[fi][vi] = gpuIdx + } + } + + return exp, nil +} + +// computeBounds returns the AABB, center, and bounding sphere radius for a vertex list. +func computeBounds(verts []Vec3) (bmin, bmax, center Vec3, radius float32) { + if len(verts) == 0 { + return + } + bmin = Vec3{X: math.MaxFloat32, Y: math.MaxFloat32, Z: math.MaxFloat32} + bmax = Vec3{X: -math.MaxFloat32, Y: -math.MaxFloat32, Z: -math.MaxFloat32} + for _, v := range verts { + if v.X < bmin.X { bmin.X = v.X } + if v.Y < bmin.Y { bmin.Y = v.Y } + if v.Z < bmin.Z { bmin.Z = v.Z } + if v.X > bmax.X { bmax.X = v.X } + if v.Y > bmax.Y { bmax.Y = v.Y } + if v.Z > bmax.Z { bmax.Z = v.Z } + } + // Center is vertex centroid average, matching nwnmdlcomp (not AABB midpoint). + var sx, sy, sz float64 + for _, v := range verts { + sx += float64(v.X) + sy += float64(v.Y) + sz += float64(v.Z) + } + n := float64(len(verts)) + center = Vec3{ + X: float32(sx / n), + Y: float32(sy / n), + Z: float32(sz / n), + } + for _, v := range verts { + dx := v.X - center.X + dy := v.Y - center.Y + dz := v.Z - center.Z + r := float32(math.Sqrt(float64(dx*dx + dy*dy + dz*dz))) + if r > radius { + radius = r + } + } + return +} diff --git a/pkg/mdl/compiler_node.go b/pkg/mdl/compiler_node.go new file mode 100644 index 0000000..f6a200e --- /dev/null +++ b/pkg/mdl/compiler_node.go @@ -0,0 +1,711 @@ +// compiler_node.go — geometry node writing for the binary MDL compiler. +// Every write mirrors the exact read order in binary.go readNode and sub-readers. +package mdl + +import ( + "math" + "sort" + "strings" +) + +// writeNode writes a geometry node and all its children recursively. +// parentOff is the core offset of the parent node (0 for root). +// count is incremented once per node. +// Cycle safety: if n has already been written (its offset is in c.nodeOffsets), +// we return the existing offset without re-writing, breaking any parent cycles +// present in malformed ASCII source files. +func (c *compiler) writeNode(n *Node, parentOff int32, count *int32) int32 { + nodeKey := strings.ToLower(n.Name) + if off, already := c.nodeOffsets[nodeKey]; already { + return off + } + nodeOff := int32(c.core.len()) + c.nodeOffsets[nodeKey] = nodeOff + *count++ + + partNum := c.nodeIDs[strings.ToLower(n.Name)] + + // ---- header_node (112 bytes) ---- + // Ref: binary.go readNodeDepth lines 484-511 + c.core.zeros(24) // p_func1..p_func6 (6×4 = 24 bytes) + c.core.i32le(n.InheritColor) // inheritColor + c.core.i32le(partNum) // node_number / m_ID + c.core.fixedStr(n.Name, 32) // char node_name[32] + c.core.i32le(0) // p_geometry (tree ptr — engine fills at runtime) + c.core.i32le(parentOff) // p_parent_node + + // array_definition children {ptr, count, alloc} + childListPtrPos := c.core.placeholder() + childListNumPos := c.core.placeholder() + childListAlcPos := c.core.placeholder() + + // array_definition controller_keys + ctrlKeysPtrPos := c.core.placeholder() + ctrlKeysNumPos := c.core.placeholder() + ctrlKeysAlcPos := c.core.placeholder() + + // array_definition controller_data + ctrlDataPtrPos := c.core.placeholder() + ctrlDataNumPos := c.core.placeholder() + ctrlDataAlcPos := c.core.placeholder() + + contentBits := n.NodeTypeFlag() + c.core.u32le(contentBits) // content_node bitfield + + hasLight := contentBits&0x02 != 0 + hasEmitter := contentBits&0x04 != 0 + hasReference := contentBits&0x10 != 0 + hasMesh := contentBits&0x20 != 0 + hasSkin := contentBits&0x40 != 0 + hasAnimMesh := contentBits&0x80 != 0 + hasDangly := contentBits&0x100 != 0 + hasAABB := contentBits&0x200 != 0 + + // Type-specific headers — same order as binary.go lines 548-591. + if hasLight { + c.writeLightHeader(n) + } + if hasEmitter { + c.writeEmitterHeader(n) + } + // camera (bit 3): no extra header data + if hasReference { + c.writeReferenceHeader(n) + } + + // Type-specific headers — all fixed-size, written contiguously. + var animVertsPtrPos, animTVertsPtrPos int + var animNVertSets, animNTVertSets int + + var expanded *expandedMesh + if hasMesh { + expanded = c.writeMeshHeaderFull(n) + } + if hasSkin { + c.writeSkinHeader(n, expanded) + } + if hasAnimMesh { + animVertsPtrPos, animTVertsPtrPos, animNVertSets, animNTVertSets = c.writeAnimMeshHeader(n, nil) + } + if hasDangly { + c.writeDanglyHeader(n) + } + if hasAABB { + c.writeAABBHeader(n) + } + + // Variable-length data pointed to by headers above. Written after all + // fixed-size headers so that header offsets are contiguous — matching + // the layout the decompiler reads sequentially. + if hasMesh { + c.writeMeshFaceData(n.Mesh, expanded) + } + if hasDangly { + c.writeDanglyConstraints(n) + } + if hasAnimMesh && n.AnimMesh != nil { + if animNVertSets > 0 { + off := int32(c.core.len()) + c.core.patchU32(animVertsPtrPos, uint32(off)) + for _, v := range n.AnimMesh.AnimVerts { + c.core.vec3(v) + } + } + if animNTVertSets > 0 { + off := int32(c.core.len()) + c.core.patchU32(animTVertsPtrPos, uint32(off)) + for _, v := range n.AnimMesh.AnimTVerts { + c.core.f32le(v.X) + c.core.f32le(v.Y) + } + } + } + + // ---- Controllers ---- + ctrlKeys, timeArr, dataArr := c.encodeGeomNodeControllers(n) + c.writeCtrlBlock(ctrlKeys, timeArr, dataArr, + ctrlKeysPtrPos, ctrlKeysNumPos, ctrlKeysAlcPos, + ctrlDataPtrPos, ctrlDataNumPos, ctrlDataAlcPos) + + // ---- Children ---- + children := c.childrenOf(n) + + childArrayOff := int32(c.core.len()) + childPtrOffs := make([]int, len(children)) + for i := range children { + childPtrOffs[i] = c.core.placeholder() + } + + if len(children) > 0 { + c.core.patchU32(childListPtrPos, uint32(childArrayOff)) + } + c.core.patchU32(childListNumPos, uint32(len(children))) + c.core.patchU32(childListAlcPos, uint32(len(children))) + + for i, child := range children { + childOff := c.writeNode(child, nodeOff, count) + c.core.patchU32(childPtrOffs[i], uint32(childOff)) + } + + return nodeOff +} + +// writeLightHeader writes header_light (92 bytes). +// Ref: binary.go readLightHeader (lines 618-681) +// Layout: flareRadius(4) + unknown_list(12) + 4×ProxyList(48) + 7×int32(28) = 92 bytes +func (c *compiler) writeLightHeader(n *Node) { + l := n.Light + if l == nil { + c.core.zeros(92) + return + } + c.core.f32le(l.FlareRadius) + c.core.proxyListEmpty() // unknown array_definition + // flare_sizes + flareSizesPtrPos := c.core.placeholder() + c.core.u32le(uint32(len(l.FlareSizes))) + c.core.u32le(uint32(len(l.FlareSizes))) + // flare_positions + flarePosPtrPos := c.core.placeholder() + c.core.u32le(uint32(len(l.FlarePositions))) + c.core.u32le(uint32(len(l.FlarePositions))) + // flare_color_shifts + flareColorPtrPos := c.core.placeholder() + c.core.u32le(uint32(len(l.FlareColorShifts))) + c.core.u32le(uint32(len(l.FlareColorShifts))) + // flare_textures + flareTexPtrPos := c.core.placeholder() + c.core.u32le(uint32(len(l.TextureNames))) + c.core.u32le(uint32(len(l.TextureNames))) + + c.core.i32le(l.LightPriority) + c.core.i32le(l.AmbientOnly) + c.core.i32le(l.NDynamicType) + c.core.i32le(l.AffectDynamic) + c.core.i32le(l.Shadow) + c.core.i32le(l.GenerateFlare) + c.core.i32le(l.FadingLight) + // 92 bytes ✓ + + // Write flare data inline after the header. + if len(l.FlareSizes) > 0 { + off := int32(c.core.len()) + c.core.patchU32(flareSizesPtrPos, uint32(off)) + for _, v := range l.FlareSizes { + c.core.f32le(v) + } + } + if len(l.FlarePositions) > 0 { + off := int32(c.core.len()) + c.core.patchU32(flarePosPtrPos, uint32(off)) + for _, v := range l.FlarePositions { + c.core.f32le(v) + } + } + if len(l.FlareColorShifts) > 0 { + off := int32(c.core.len()) + c.core.patchU32(flareColorPtrPos, uint32(off)) + for _, v := range l.FlareColorShifts { + c.core.vec3(v) + } + } + if len(l.TextureNames) > 0 { + // Texture names are stored as pointer array → each points to a 64-byte name. + ptrArrayOff := int32(c.core.len()) + c.core.patchU32(flareTexPtrPos, uint32(ptrArrayOff)) + namePtrOffs := make([]int, len(l.TextureNames)) + for i := range l.TextureNames { + namePtrOffs[i] = c.core.placeholder() + } + for i, name := range l.TextureNames { + nameOff := int32(c.core.len()) + c.core.patchU32(namePtrOffs[i], uint32(nameOff)) + c.core.fixedStr(name, 64) + } + } +} + +// writeEmitterHeader writes header_emitter (216 bytes). +// Ref: binary.go readEmitterHeader (lines 684-723) +// 4*3 + 4*3 + 32*3 + 64 + 16 + 4*2 + 2 + 2 + 4 = 216 bytes +func (c *compiler) writeEmitterHeader(n *Node) { + em := n.Emitter + if em == nil { + c.core.zeros(216) + return + } + c.core.f32le(em.DeadSpace) + c.core.f32le(em.BlastRadius) + c.core.f32le(em.BlastLength) + c.core.u32le(uint32(em.XGrid)) + c.core.u32le(uint32(em.YGrid)) + c.core.u32le(uint32(em.SpawnType)) + c.core.fixedStr(em.Update, 32) + c.core.fixedStr(em.Render, 32) + c.core.fixedStr(em.Blend, 32) + c.core.fixedStr(em.Texture, 64) + chunk := em.ChunkName + if chunk == "" { + chunk = "CHUNK" + } + c.core.fixedStr(chunk, 16) + c.core.u32le(uint32(em.TwoSidedTex)) + c.core.u32le(uint32(em.Loop)) + c.core.u16le(uint16(em.RenderOrder)) + c.core.zeros(2) // padding + // Pack flags bitfield + flags := uint32(0) + flags |= boolBit(em.P2P, 0) + flags |= boolBit(em.P2PSel, 1) + flags |= boolBit(em.AffectedByWind, 2) + flags |= boolBit(em.IsTinted, 3) + flags |= boolBit(em.Bounce, 4) + flags |= boolBit(em.Random, 5) + flags |= boolBit(em.Inherit, 6) + flags |= boolBit(em.InheritVel, 7) + flags |= boolBit(em.InheritLocal, 8) + flags |= boolBit(em.Splat, 9) + flags |= boolBit(em.InheritPart, 10) + c.core.u32le(flags) +} + +func boolBit(v int32, bit uint) uint32 { + if v != 0 { + return 1 << bit + } + return 0 +} + +// writeReferenceHeader writes header_reference (68 bytes). +// Ref: binary.go readReferenceHeader (lines 726-730) +func (c *compiler) writeReferenceHeader(n *Node) { + ref := n.Reference + if ref == nil { + c.core.zeros(68) + return + } + c.core.fixedStr(ref.RefModel, 64) + c.core.i32le(ref.Reattachable) +} + +// writeSkinHeader writes header_skin (100 bytes) and skin MDX data. +// pickTopBoneInfluences returns a copy of vw truncated to at most +// maxBones influences, keeping the heaviest weights and renormalizing +// the kept weights to sum to 1.0. +// +// Both NWN1.69 and NWN:EE binaries hard-cap skin verts at 4 bones each +// (verified: load_binary.pl line 577 reads exactly 4 floats per vert, +// borealis_nwn_mdl Mesh.hpp:124-132 documents "Each vertex can be +// influenced by up to 4 bones", nwn.wiki Models page lists "There is +// also a maximum of 4 bones per vertex"). Some Bioware-authored ASCII +// files (c_fox.mdl, c_dogzombie.mdl, …) carry 5–6 bone entries on a +// handful of verts; their original compiler silently truncated the +// trailing entries and shipped binaries whose weights summed to less +// than 1.0. By sorting by weight descending and renormalizing here we +// keep the most influential bones AND restore the weight=1.0 invariant +// the engine expects. +// +// Returns vw unchanged when len(vw.Bones) <= maxBones — we don't +// silently re-touch already-good data, so the existing +// unnormalized_weights check still catches drift in bad source files. +// +// Always returns a value with freshly-allocated slices when truncation +// happens, so callers can mutate without aliasing the source Skin.Weights +// slot, which is shared across every GPU vert that derives from the same +// original ASCII vert via UV-driven expansion. +func pickTopBoneInfluences(vw VertexWeight, maxBones int) VertexWeight { + if maxBones <= 0 { + return vw + } + n := len(vw.Bones) + if n > len(vw.Weights) { + n = len(vw.Weights) + } + if n == 0 || n <= maxBones { + return vw + } + type bw struct { + bone string + weight float32 + } + pairs := make([]bw, n) + for i := 0; i < n; i++ { + pairs[i] = bw{bone: vw.Bones[i], weight: vw.Weights[i]} + } + sort.SliceStable(pairs, func(i, j int) bool { + return pairs[i].weight > pairs[j].weight + }) + pairs = pairs[:maxBones] + + var sum float64 + for _, p := range pairs { + sum += float64(p.weight) + } + + out := VertexWeight{ + Bones: make([]string, 0, maxBones), + Weights: make([]float32, 0, maxBones), + } + if sum > 0 { + scale := float32(1.0 / sum) + for _, p := range pairs { + out.Bones = append(out.Bones, p.bone) + out.Weights = append(out.Weights, p.weight*scale) + } + return out + } + for _, p := range pairs { + out.Bones = append(out.Bones, p.bone) + out.Weights = append(out.Weights, p.weight) + } + return out +} + +// Ref: binary.go readSkinHeader (lines 902-972) +// Layout: weights_ProxyList(12) + 4×int32(16) + 3×ProxyList(36) + 17×int16+spare(36) = 100 bytes +// +// SkinData.Weights[i] is indexed by original mesh vertex. The binary format +// expects expanded GPU vertices (N_faces*3), so we expand skin data using face indices. +func (c *compiler) writeSkinHeader(n *Node, exp *expandedMesh) { + skin := n.Skin + mesh := n.Mesh + if skin == nil || mesh == nil { + c.core.zeros(192) + return + } + + boneIndexMap := make(map[string]int) + var boneNames []string + addBone := func(name string) int { + key := strings.ToLower(name) + if idx, ok := boneIndexMap[key]; ok { + return idx + } + if len(boneNames) >= 64 { + return -1 + } + idx := len(boneNames) + boneNames = append(boneNames, name) + boneIndexMap[key] = idx + return idx + } + for _, vw := range skin.Weights { + for _, b := range vw.Bones { + if b != "" { + addBone(b) + } + } + } + + var bonePartNums [64]int16 + for i := range bonePartNums { + bonePartNums[i] = -1 + } + for i, name := range boneNames { + if i >= 64 { + break + } + if id, ok := c.nodeIDs[strings.ToLower(name)]; ok { + bonePartNums[i] = int16(id) + } + } + + // GPU vertex count matches the deduplicated count from buildExpandedMesh. + nGPUVerts := len(mesh.Faces) * 3 + if exp != nil { + nGPUVerts = len(exp.positions) + } + + // MDX offsets for weight and bone-ref arrays. + wgtMdxOff := int32(c.vol.len()) + boneRefMdxOff := int32(c.vol.len() + nGPUVerts*16) // after N×4 floats + + c.core.proxyListEmpty() // weights ProxyList (legacy) + c.core.i32le(wgtMdxOff) + c.core.i32le(boneRefMdxOff) + c.core.i32le(0) // boneindexarray + c.core.i32le(0) // boneindexarraysize + c.core.proxyListEmpty() // qbone_ref_inv + c.core.proxyListEmpty() // tbone_ref_inv + c.core.proxyListEmpty() // boneconstantindices + for i := 0; i < 64; i++ { + c.core.u16le(uint16(bonePartNums[i])) + } + + // Build per-GPU-vertex weight/bone-ref arrays using the origVert mapping. + wgts := make([][4]float32, nGPUVerts) + brefs := make([][4]int16, nGPUVerts) + for gpuIdx := 0; gpuIdx < nGPUVerts; gpuIdx++ { + origIdx := -1 + if exp != nil && gpuIdx < len(exp.origVert) { + origIdx = int(exp.origVert[gpuIdx]) + } else if gpuIdx/3 < len(mesh.Faces) { + origIdx = int(mesh.Faces[gpuIdx/3].Verts[gpuIdx%3]) + } + if origIdx >= 0 && origIdx < len(skin.Weights) { + vw := pickTopBoneInfluences(skin.Weights[origIdx], 4) + for bi := 0; bi < 4 && bi < len(vw.Bones); bi++ { + w := float32(0) + if bi < len(vw.Weights) { + w = vw.Weights[bi] + } + wgts[gpuIdx][bi] = w + boneIdx := int16(-1) + if vw.Bones[bi] != "" { + if idx, ok := boneIndexMap[strings.ToLower(vw.Bones[bi])]; ok { + boneIdx = int16(idx) + } + } + brefs[gpuIdx][bi] = boneIdx + } + } + } + + // Write weight data to MDX: nGPUVerts × 4 floats + for i := 0; i < nGPUVerts; i++ { + c.vol.f32le(wgts[i][0]) + c.vol.f32le(wgts[i][1]) + c.vol.f32le(wgts[i][2]) + c.vol.f32le(wgts[i][3]) + } + // Write bone-ref data to MDX: nGPUVerts × 4 int16 + for i := 0; i < nGPUVerts; i++ { + c.vol.u16le(uint16(brefs[i][0])) + c.vol.u16le(uint16(brefs[i][1])) + c.vol.u16le(uint16(brefs[i][2])) + c.vol.u16le(uint16(brefs[i][3])) + } +} + +// expandedConstraints maps the per-original-vert Constraints array onto the +// GPU-expanded vert layout produced by buildExpandedMesh. The MDX vertex +// section stores per-corner GPU verts (one per unique pos+UV+normal+colour +// combo), so a single ASCII vert with N distinct UV uses ends up as N GPU +// verts in the binary. For danglymesh nodes the engine treats constraints +// as 1:1 with GPU verts: writing the un-expanded length leaves the binary +// describing fewer constraints than verts, the trailing GPU verts get +// undefined behaviour in the engine's dangle simulation, and a round-trip +// decompile produces an ASCII danglymesh whose `verts` and `constraints` +// counts disagree. Expanding here keeps both sides aligned. +// +// Returns dangly.Constraints unchanged when c.lastExpanded is unset (e.g. +// danglymesh paths that didn't go through buildExpandedMesh) or when the +// expanded vert count already matches — both cases mean no remap is +// needed. +func (c *compiler) expandedConstraints(dangly *DanglyData) []float32 { + if dangly == nil || len(dangly.Constraints) == 0 { + return nil + } + exp := c.lastExpanded + if exp == nil || len(exp.origVert) == len(dangly.Constraints) { + return dangly.Constraints + } + out := make([]float32, len(exp.origVert)) + for i, oi := range exp.origVert { + if oi >= 0 && int(oi) < len(dangly.Constraints) { + out[i] = dangly.Constraints[oi] + } + } + return out +} + +// writeDanglyHeader writes header_dangly (24 bytes). +// Constraint data is deferred to writeDanglyConstraints so that subsequent +// headers (aabb) are at the correct offset. +// Ref: binary.go readDanglyHeader (lines 1001-1015) +// Layout: constraints_ProxyList(12) + 3×float32(12) = 24 bytes +func (c *compiler) writeDanglyHeader(n *Node) { + dangly := n.Dangly + if dangly == nil { + c.core.zeros(24) + return + } + expanded := c.expandedConstraints(dangly) + c.danglyConstraintsPtrPos = c.core.placeholder() + c.core.u32le(uint32(len(expanded))) + c.core.u32le(uint32(len(expanded))) + c.core.f32le(dangly.Displacement) + c.core.f32le(dangly.Tightness) + c.core.f32le(dangly.Period) + // 24 bytes ✓ +} + +// writeDanglyConstraints writes constraint float data to core (deferred from writeDanglyHeader). +// Constraints are expanded onto the GPU vert layout via expandedConstraints +// so the count matches the mesh header's count_vertexes field. +func (c *compiler) writeDanglyConstraints(n *Node) { + dangly := n.Dangly + if dangly == nil || len(dangly.Constraints) == 0 { + return + } + expanded := c.expandedConstraints(dangly) + constraintsOff := int32(c.core.len()) + c.core.patchU32(c.danglyConstraintsPtrPos, uint32(constraintsOff)) + for _, v := range expanded { + c.core.f32le(v) + } +} + +// writeAABBHeader writes header_aabb (4 bytes) and inline AABB tree. +// Ref: binary.go readAABBHeader (lines 1018-1024) +func (c *compiler) writeAABBHeader(n *Node) int32 { + aabb := n.Aabb + if aabb == nil || n.Mesh == nil || len(n.Mesh.Faces) == 0 { + c.core.zeros(4) + return 0 + } + + aabbRootPtrPos := c.core.placeholder() // pAABB + + // Build and write AABB tree. + tree := buildAABBTree(n.Mesh) + if len(tree) == 0 { + return 0 + } + + // Write all nodes; record their core offsets. + nodeBaseOff := int32(c.core.len()) + offsets := make([]int32, len(tree)) + for i := range tree { + offsets[i] = nodeBaseOff + int32(i)*40 + } + + c.core.patchU32(aabbRootPtrPos, uint32(offsets[0])) + + for _, entry := range tree { + c.core.vec3(entry.BoundMin) + c.core.vec3(entry.BoundMax) + if entry.Left >= 0 && entry.Left < len(tree) { + c.core.u32le(uint32(offsets[entry.Left])) + } else { + c.core.u32le(0) + } + if entry.Right >= 0 && entry.Right < len(tree) { + c.core.u32le(uint32(offsets[entry.Right])) + } else { + c.core.u32le(0) + } + c.core.i32le(int32(entry.LeafFace)) + c.core.u32le(entry.Plane) + } + + return offsets[0] +} + +// aabbTreeEntry is an internal AABB tree node used during compilation. +type aabbTreeEntry struct { + BoundMin Vec3 + BoundMax Vec3 + LeafFace int // -1 for internal + Plane uint32 + Left int // index into tree slice, -1 if absent + Right int +} + +// buildAABBTree builds a simple median-split AABB tree from mesh faces. +// Each entry is 40 bytes in binary: bmin(12)+bmax(12)+left(4)+right(4)+face(4)+plane(4). +func buildAABBTree(mesh *MeshData) []aabbTreeEntry { + if mesh == nil || len(mesh.Faces) == 0 { + return nil + } + faceIdxs := make([]int, len(mesh.Faces)) + for i := range faceIdxs { + faceIdxs[i] = i + } + var out []aabbTreeEntry + buildAABBNode(mesh, faceIdxs, &out) + return out +} + +func buildAABBNode(mesh *MeshData, faces []int, out *[]aabbTreeEntry) int { + bmin, bmax := facesAABB(mesh, faces) + idx := len(*out) + *out = append(*out, aabbTreeEntry{BoundMin: bmin, BoundMax: bmax, LeafFace: -1, Left: -1, Right: -1}) + + if len(faces) == 1 { + (*out)[idx].LeafFace = faces[0] + (*out)[idx].Plane = axisPlane(bmin, bmax) + return idx + } + + axis := longestAABBAxis(bmin, bmax) + (*out)[idx].Plane = uint32(1 << uint(axis)) + + // Median split along chosen axis. + mid := len(faces) / 2 + sortFacesByAxis(mesh, faces, axis) + + left := buildAABBNode(mesh, faces[:mid], out) + right := buildAABBNode(mesh, faces[mid:], out) + (*out)[idx].Left = left + (*out)[idx].Right = right + return idx +} + +func facesAABB(mesh *MeshData, faceIdxs []int) (bmin, bmax Vec3) { + bmin = Vec3{X: math.MaxFloat32, Y: math.MaxFloat32, Z: math.MaxFloat32} + bmax = Vec3{X: -math.MaxFloat32, Y: -math.MaxFloat32, Z: -math.MaxFloat32} + for _, fi := range faceIdxs { + f := mesh.Faces[fi] + for _, vi := range f.Verts { + if vi < 0 || int(vi) >= len(mesh.Verts) { + continue + } + v := mesh.Verts[vi] + if v.X < bmin.X { bmin.X = v.X } + if v.Y < bmin.Y { bmin.Y = v.Y } + if v.Z < bmin.Z { bmin.Z = v.Z } + if v.X > bmax.X { bmax.X = v.X } + if v.Y > bmax.Y { bmax.Y = v.Y } + if v.Z > bmax.Z { bmax.Z = v.Z } + } + } + return +} + +func longestAABBAxis(bmin, bmax Vec3) int { + dx := bmax.X - bmin.X + dy := bmax.Y - bmin.Y + dz := bmax.Z - bmin.Z + if dx >= dy && dx >= dz { + return 0 + } + if dy >= dz { + return 1 + } + return 2 +} + +func axisPlane(bmin, bmax Vec3) uint32 { + return uint32(1 << uint(longestAABBAxis(bmin, bmax))) +} + +func faceCentroidAxis(mesh *MeshData, fi, axis int) float32 { + f := mesh.Faces[fi] + var sum float32 + count := 0 + for _, vi := range f.Verts { + if vi >= 0 && int(vi) < len(mesh.Verts) { + sum += mesh.Verts[vi].Index(axis) + count++ + } + } + if count == 0 { + return 0 + } + return sum / float32(count) +} + +func sortFacesByAxis(mesh *MeshData, faces []int, axis int) { + // Simple insertion sort (face counts are rarely huge for AABB meshes). + for i := 1; i < len(faces); i++ { + key := faces[i] + keyC := faceCentroidAxis(mesh, key, axis) + j := i - 1 + for j >= 0 && faceCentroidAxis(mesh, faces[j], axis) > keyC { + faces[j+1] = faces[j] + j-- + } + faces[j+1] = key + } +} diff --git a/pkg/mdl/compiler_normals.go b/pkg/mdl/compiler_normals.go new file mode 100644 index 0000000..120ed79 --- /dev/null +++ b/pkg/mdl/compiler_normals.go @@ -0,0 +1,129 @@ +// compiler_normals.go — normal and color generation for the binary MDL compiler. +// +// When ASCII models lack explicit normals, the compiler generates them from +// face geometry and smoothing groups, matching nwnmdlcomp's algorithm. +// +// Ref: _NmcLib/NmcMesh.cpp NmcInitializeFaceData (lines 225-345) +package mdl + +import "math" + +// generateNormals computes per-face-corner normals from face geometry and +// smoothing groups. The result is stored in mesh.Normals indexed the same +// way as mesh.Verts — but because different smoothing groups at the same +// vertex produce different normals, the normals are computed per face corner +// and stored back into a per-vertex array by splitting vertices that need +// different normals. +// +// The algorithm matches nwnmdlcomp: +// - For each face corner, sum the (unnormalized) face normals of all faces +// that share the same vertex index AND have overlapping smoothing group +// bits (or are the same face). +// - Normalize the sum. +// - Cross product uses (p2-p1) × (p3-p2) for area-weighted normals. +// +// If the mesh already has normals (len >= len(Verts)), this is a no-op. +func generateNormals(mesh *MeshData) { + if mesh == nil || len(mesh.Verts) == 0 || len(mesh.Faces) == 0 { + return + } + if len(mesh.Normals) >= len(mesh.Verts) { + return + } + + nVerts := len(mesh.Verts) + nFaces := len(mesh.Faces) + + // Compute unnormalized face normals (area-weighted). + faceNormals := make([]Vec3, nFaces) + for fi, f := range mesh.Faces { + v0i, v1i, v2i := int(f.Verts[0]), int(f.Verts[1]), int(f.Verts[2]) + if v0i < 0 || v0i >= nVerts || v1i < 0 || v1i >= nVerts || v2i < 0 || v2i >= nVerts { + continue + } + p1, p2, p3 := mesh.Verts[v0i], mesh.Verts[v1i], mesh.Verts[v2i] + // nwnmdlcomp uses (p2-p1) × (p3-p2) + e1 := Vec3{X: p2.X - p1.X, Y: p2.Y - p1.Y, Z: p2.Z - p1.Z} + e2 := Vec3{X: p3.X - p2.X, Y: p3.Y - p2.Y, Z: p3.Z - p2.Z} + faceNormals[fi] = Vec3{ + X: e1.Y*e2.Z - e1.Z*e2.Y, + Y: e1.Z*e2.X - e1.X*e2.Z, + Z: e1.X*e2.Y - e1.Y*e2.X, + } + } + + // Build per-vertex face list for efficient lookup. + vertFaces := make([][]int, nVerts) + for fi, f := range mesh.Faces { + for vi := 0; vi < 3; vi++ { + idx := int(f.Verts[vi]) + if idx >= 0 && idx < nVerts { + vertFaces[idx] = append(vertFaces[idx], fi) + } + } + } + + // Compute per-face-corner normals following nwnmdlcomp's algorithm. + // Each face corner gets the sum of face normals from all faces sharing + // the same vertex AND having overlapping smoothing group bits. + cornerNormals := make([][3]Vec3, nFaces) + for fi, f := range mesh.Faces { + sg := f.SmoothGroup + for vi := 0; vi < 3; vi++ { + vertIdx := int(f.Verts[vi]) + if vertIdx < 0 || vertIdx >= nVerts { + continue + } + var sx, sy, sz float64 + for _, fj := range vertFaces[vertIdx] { + // nwnmdlcomp smooth group rule: skip when (mask & mask2) == 0, + // which means mask=0 NEVER contributes across faces (0 & x == 0). + // Only the current face (fi==fj) always contributes. + sgj := mesh.Faces[fj].SmoothGroup + if fi != fj && (sg&sgj) == 0 { + continue + } + fn := faceNormals[fj] + sx += float64(fn.X) + sy += float64(fn.Y) + sz += float64(fn.Z) + } + length := math.Sqrt(sx*sx + sy*sy + sz*sz) + if length > 1e-10 { + cornerNormals[fi][vi] = Vec3{ + X: float32(sx / length), + Y: float32(sy / length), + Z: float32(sz / length), + } + } else { + cornerNormals[fi][vi] = Vec3{Z: 1} + } + } + } + + // Store normals per-vertex. If all face corners sharing a vertex have + // the same normal (common when smoothing groups don't split), this + // produces len(Verts) normals. When smoothing groups split a vertex, + // buildExpandedMesh handles the split via the dedup key (which includes + // normals), so we only need to store one representative normal per + // original vertex here. buildExpandedMesh will create separate GPU + // vertices for corners with different normals. + // + // We store the normal from the first face corner encountered for each + // vertex, then let buildExpandedMesh's per-corner lookup handle splits. + mesh.Normals = make([]Vec3, nVerts) + set := make([]bool, nVerts) + for fi, f := range mesh.Faces { + for vi := 0; vi < 3; vi++ { + idx := int(f.Verts[vi]) + if idx >= 0 && idx < nVerts && !set[idx] { + mesh.Normals[idx] = cornerNormals[fi][vi] + set[idx] = true + } + } + } + + // Store the per-face-corner normals so buildExpandedMesh can use the + // correct normal for each face corner (not just the first-seen one). + mesh.CornerNormals = cornerNormals +} diff --git a/pkg/mdl/compiler_roundtrip_test.go b/pkg/mdl/compiler_roundtrip_test.go new file mode 100644 index 0000000..a93752d --- /dev/null +++ b/pkg/mdl/compiler_roundtrip_test.go @@ -0,0 +1,488 @@ +package mdl + +import ( + "bytes" + "math" + "strings" + "testing" +) + +const rtTol = 0.01 + +func TestRoundtripLight(t *testing.T) { + src := `newmodel lighttest +setsupermodel lighttest NULL +classification CHARACTER +setanimationscale 1.00 +beginmodelgeom lighttest + node dummy lighttest + parent NULL + endnode + node light mylight + parent lighttest + position 0 0 3 + color 1 0.5 0.2 + radius 15.5 + multiplier 2.0 + endnode +endmodelgeom +donemodel lighttest +` + m := mustParseASCII(t, src) + m2 := mustDecompile(t, mustCompile(t, m)) + + n := m2.FindNode("mylight") + if n == nil { + t.Fatal("light node not found") + } + if n.Light == nil { + t.Fatal("Light data is nil") + } + assertNear(t, "Color.X", float64(n.Light.Color.X), 1.0) + assertNear(t, "Color.Y", float64(n.Light.Color.Y), 0.5) + assertNear(t, "Color.Z", float64(n.Light.Color.Z), 0.2) + assertNear(t, "Radius", float64(n.Light.Radius), 15.5) + assertNear(t, "Multiplier", float64(n.Light.Multiplier), 2.0) +} + +func TestRoundtripEmitter(t *testing.T) { + src := `newmodel emittest +setsupermodel emittest NULL +classification CHARACTER +setanimationscale 1.00 +beginmodelgeom emittest + node dummy emittest + parent NULL + endnode + node emitter myemitter + parent emittest + position 0 0 1 + update Fountain + render Normal + blend Normal + texture fxpa_default + birthrate 10 + lifeexp 5 + velocity 3.5 + alphastart 0.8 + alphamid 1.0 + alphaend 0 + lightningsubdiv 4 + endnode +endmodelgeom +donemodel emittest +` + m := mustParseASCII(t, src) + m2 := mustDecompile(t, mustCompile(t, m)) + + n := m2.FindNode("myemitter") + if n == nil { + t.Fatal("emitter node not found") + } + if n.Emitter == nil { + t.Fatal("Emitter data is nil") + } + assertNear(t, "BirthRate", float64(n.Emitter.BirthRate), 10) + assertNear(t, "LifeExp", float64(n.Emitter.LifeExp), 5) + assertNear(t, "Velocity", float64(n.Emitter.Velocity), 3.5) + assertNear(t, "LightningSubDiv", float64(n.Emitter.LightningSubDiv), 4) +} + +func TestRoundtripDanglymesh(t *testing.T) { + src := `newmodel dangletest +setsupermodel dangletest NULL +classification CHARACTER +setanimationscale 1.00 +beginmodelgeom dangletest + node dummy dangletest + parent NULL + endnode + node danglymesh dangle + parent dangletest + bitmap blank + render 1 + displacement 0.5 + tightness 10 + period 1 + verts 3 + 0 0 0 + 1 0 0 + 0 1 0 + tverts 3 + 0 0 0 + 1 0 0 + 0 1 0 + faces 1 + 0 1 2 0 0 0 0 1 2 + constraints 3 + 0.5 + 1.0 + 0.25 + endnode +endmodelgeom +donemodel dangletest +` + m := mustParseASCII(t, src) + m2 := mustDecompile(t, mustCompile(t, m)) + + n := m2.FindNode("dangle") + if n == nil { + t.Fatal("dangly node not found") + } + if n.Dangly == nil { + t.Fatal("Dangly data is nil") + } + if len(n.Dangly.Constraints) != 3 { + t.Fatalf("Constraints: got %d, want 3", len(n.Dangly.Constraints)) + } + assertNear(t, "Displacement", float64(n.Dangly.Displacement), 0.5) +} + +func TestRoundtripSkin(t *testing.T) { + src := `newmodel skintest +setsupermodel skintest NULL +classification CHARACTER +setanimationscale 1.00 +beginmodelgeom skintest + node dummy skintest + parent NULL + endnode + node dummy bone1 + parent skintest + position 0 0 0 + endnode + node dummy bone2 + parent skintest + position 1 0 0 + endnode + node skin myskin + parent skintest + bitmap blank + render 1 + verts 3 + 0 0 0 + 1 0 0 + 0 1 0 + tverts 3 + 0 0 0 + 1 0 0 + 0 1 0 + faces 1 + 0 1 2 0 0 0 0 1 2 + weights 3 + bone1 1.0 bone2 0.0 + bone1 0.5 bone2 0.5 + bone1 0.0 bone2 1.0 + endnode +endmodelgeom +donemodel skintest +` + m := mustParseASCII(t, src) + m2 := mustDecompile(t, mustCompile(t, m)) + + n := m2.FindNode("myskin") + if n == nil { + t.Fatal("skin node not found") + } + if n.Skin == nil { + t.Fatal("Skin data is nil") + } + if n.Mesh == nil { + t.Fatal("Mesh data is nil on skin node") + } + if len(n.Skin.Weights) != len(n.Mesh.Verts) { + t.Errorf("Weights count %d != Verts count %d", len(n.Skin.Weights), len(n.Mesh.Verts)) + } + hasBone := false + for _, w := range n.Skin.Weights { + for _, b := range w.Bones { + if b != "" { + hasBone = true + } + } + } + if !hasBone { + t.Error("no bone names found in skin weights") + } +} + +func TestRoundtripAlphaZero(t *testing.T) { + src := `newmodel alphatest0 +setsupermodel alphatest0 NULL +classification CHARACTER +setanimationscale 1.00 +beginmodelgeom alphatest0 + node dummy alphatest0 + parent NULL + endnode + node trimesh alphamesh + parent alphatest0 + bitmap blank + render 1 + alpha 0 + verts 3 + 0 0 0 + 1 0 0 + 0 1 0 + tverts 3 + 0 0 0 + 1 0 0 + 0 1 0 + faces 1 + 0 1 2 0 0 0 0 1 2 + endnode +endmodelgeom +donemodel alphatest0 +` + m := mustParseASCII(t, src) + m2 := mustDecompile(t, mustCompile(t, m)) + + n := m2.FindNode("alphamesh") + if n == nil { + t.Fatal("mesh node not found") + } + if n.Mesh == nil { + t.Fatal("Mesh data is nil") + } + assertNear(t, "Alpha", float64(n.Mesh.Alpha), 0.0) +} + +func TestRoundtripAlphaDefault(t *testing.T) { + src := `newmodel alphatest1 +setsupermodel alphatest1 NULL +classification CHARACTER +setanimationscale 1.00 +beginmodelgeom alphatest1 + node dummy alphatest1 + parent NULL + endnode + node trimesh alphamesh + parent alphatest1 + bitmap blank + render 1 + alpha 1 + verts 3 + 0 0 0 + 1 0 0 + 0 1 0 + tverts 3 + 0 0 0 + 1 0 0 + 0 1 0 + faces 1 + 0 1 2 0 0 0 0 1 2 + endnode +endmodelgeom +donemodel alphatest1 +` + m := mustParseASCII(t, src) + m2 := mustDecompile(t, mustCompile(t, m)) + + n := m2.FindNode("alphamesh") + if n == nil { + t.Fatal("mesh node not found") + } + if n.Mesh == nil { + t.Fatal("Mesh data is nil") + } + assertNear(t, "Alpha", float64(n.Mesh.Alpha), 1.0) +} + +func TestRoundtripAnimationControllers(t *testing.T) { + src := `newmodel animctrl +setsupermodel animctrl NULL +classification CHARACTER +setanimationscale 1.00 +beginmodelgeom animctrl + node dummy animctrl + parent NULL + endnode + node dummy child + parent animctrl + endnode +endmodelgeom + +newanim walk animctrl + animroot animctrl + length 1.0 + transtime 0.25 + node dummy animctrl + parent NULL + endnode + node dummy child + parent animctrl + positionkey 2 + 0.0 0 0 0 + 1.0 0 0 1 + orientationkey 2 + 0.0 0 0 0 1 + 1.0 0 0 1 0.7071 + endnode +doneanim walk animctrl + +donemodel animctrl +` + m := mustParseASCII(t, src) + if len(m.Animations) == 0 { + t.Skip("parser did not read animations") + } + m2 := mustDecompile(t, mustCompile(t, m)) + + var walkAnim *Animation + for i := range m2.Animations { + if strings.EqualFold(m2.Animations[i].Name, "walk") { + walkAnim = &m2.Animations[i] + break + } + } + if walkAnim == nil { + t.Fatal("animation 'walk' not found after roundtrip") + } + if len(walkAnim.Nodes) == 0 { + t.Fatal("animation has no nodes") + } + + var childAnim *AnimNode + for i := range walkAnim.Nodes { + if strings.EqualFold(walkAnim.Nodes[i].Name, "child") { + childAnim = &walkAnim.Nodes[i] + break + } + } + if childAnim == nil { + t.Fatal("anim node 'child' not found") + } + if len(childAnim.PositionKeys) == 0 { + t.Error("no position keys on child anim node") + } + if len(childAnim.OrientationKeys) == 0 { + t.Error("no orientation keys on child anim node") + } +} + +func TestRoundtripEmitterControllerOrder(t *testing.T) { + src := `newmodel emitdet +setsupermodel emitdet NULL +classification CHARACTER +setanimationscale 1.00 +beginmodelgeom emitdet + node dummy emitdet + parent NULL + endnode + node emitter myemitter + parent emitdet + position 0 0 1 + update Fountain + render Normal + blend Normal + texture fxpa_default + birthrate 10 + lifeexp 5 + velocity 3.5 + alphastart 0.8 + alphamid 1.0 + alphaend 0 + lightningsubdiv 4 + endnode +endmodelgeom +donemodel emitdet +` + m := mustParseASCII(t, src) + bin1 := mustCompile(t, m) + + m2 := mustParseASCII(t, src) + bin2 := mustCompile(t, m2) + + if !bytes.Equal(bin1, bin2) { + t.Errorf("two compiles of the same model differ: len1=%d len2=%d", len(bin1), len(bin2)) + } +} + +func TestRoundtripNodeNameCase(t *testing.T) { + src := `newmodel MyModel +setsupermodel MyModel NULL +classification CHARACTER +setanimationscale 1.00 +beginmodelgeom MyModel + node dummy MyModel + parent NULL + endnode + node trimesh MyMesh + parent MyModel + bitmap blank + render 1 + verts 3 + 0 0 0 + 1 0 0 + 0 1 0 + tverts 3 + 0 0 0 + 1 0 0 + 0 1 0 + faces 1 + 0 1 2 0 0 0 0 1 2 + endnode +endmodelgeom +donemodel MyModel +` + m := mustParseASCII(t, src) + m2 := mustDecompile(t, mustCompile(t, m)) + + n := m2.FindNode("mymesh") + if n == nil { + t.Fatal("node not found by case-insensitive lookup") + } + if n.Mesh == nil { + t.Fatal("Mesh data is nil") + } + + root := m2.FindNode("mymodel") + if root == nil { + t.Fatal("root node not found") + } + if !strings.EqualFold(n.Parent, root.Name) { + t.Errorf("parent mismatch: got %q, want %q (case-insensitive)", n.Parent, root.Name) + } +} + +func TestRoundtripReference(t *testing.T) { + src := `newmodel reftest +setsupermodel reftest NULL +classification CHARACTER +setanimationscale 1.00 +beginmodelgeom reftest + node dummy reftest + parent NULL + endnode + node reference myref + parent reftest + refmodel plc_a01 + reattachable 1 + endnode +endmodelgeom +donemodel reftest +` + m := mustParseASCII(t, src) + m2 := mustDecompile(t, mustCompile(t, m)) + + n := m2.FindNode("myref") + if n == nil { + t.Fatal("reference node not found") + } + if n.Reference == nil { + t.Fatal("Reference data is nil") + } + if !strings.EqualFold(n.Reference.RefModel, "plc_a01") { + t.Errorf("RefModel: got %q, want %q", n.Reference.RefModel, "plc_a01") + } + if n.Reference.Reattachable != 1 { + t.Errorf("Reattachable: got %d, want 1", n.Reference.Reattachable) + } +} + +func assertNear(t *testing.T, label string, got, want float64) { + t.Helper() + if math.Abs(got-want) >= rtTol { + t.Errorf("%s: got %g, want %g", label, got, want) + } +} diff --git a/pkg/mdl/compiler_tangents.go b/pkg/mdl/compiler_tangents.go new file mode 100644 index 0000000..8752f51 --- /dev/null +++ b/pkg/mdl/compiler_tangents.go @@ -0,0 +1,228 @@ +// compiler_tangents.go — tangent / bitangent generation for the binary MDL compiler. +// +// Computes per-GPU-vertex tangent and bitangent vectors from positions, +// normals, and UV0 coordinates using the Mikktspace algorithm. Called after +// buildExpandedMesh has produced the deduplicated GPU vertex arrays. +// +// Without baked tangents the NWN:EE engine has to derive them at load time; +// pre-baking matches the behaviour of the game's own model compiler and +// removes that startup cost. The companion read path lives in +// binary.go readMDXTangents, which reconstructs the per-vertex Vec4 +// (tangent.xyz + handedness W) from the two MDX Vec3 streams we write here. +package mdl + +import "math" + +// generateTangents computes tangent and bitangent arrays (one per GPU vertex) +// from the geometry in exp using the Mikktspace algorithm. +// +// Returns (nil, nil) if normals or UV0 data are missing — the caller should +// leave the MDX tangent / bitangent pointers at -1 in that case. +// +// Both returned slices have length len(exp.positions) and contain unit-length +// vectors. The bitangent is reconstructible at runtime as +// cross(normal, tangent) * w, but we still write it explicitly so the +// decompiler can recover the W handedness sign without ambiguity. +func generateTangents(exp *expandedMesh) ([]Vec3, []Vec3) { + if exp == nil { + return nil, nil + } + n := len(exp.positions) + if n == 0 || len(exp.normals) < n || len(exp.uvs) < n { + return nil, nil + } + + // Accumulate tangent / bitangent contributions in float64 for numerical + // stability — many real models have very small UV deltas where float32 + // rounding would visibly skew the tangent direction. + tAccum := make([][3]float64, n) + bAccum := make([][3]float64, n) + + for _, fv := range exp.faceVerts { + i0, i1, i2 := int(fv[0]), int(fv[1]), int(fv[2]) + if i0 >= n || i1 >= n || i2 >= n || i0 < 0 || i1 < 0 || i2 < 0 { + continue + } + + p0, p1, p2 := exp.positions[i0], exp.positions[i1], exp.positions[i2] + uv0, uv1, uv2 := exp.uvs[i0], exp.uvs[i1], exp.uvs[i2] + + e1x := float64(p1.X - p0.X) + e1y := float64(p1.Y - p0.Y) + e1z := float64(p1.Z - p0.Z) + e2x := float64(p2.X - p0.X) + e2y := float64(p2.Y - p0.Y) + e2z := float64(p2.Z - p0.Z) + + du1 := float64(uv1.X - uv0.X) + dv1 := float64(uv1.Y - uv0.Y) + du2 := float64(uv2.X - uv0.X) + dv2 := float64(uv2.Y - uv0.Y) + + // Degenerate UV mapping (collinear or zero-area in UV space) — its + // contribution would be infinite. Skip the triangle entirely; other + // triangles sharing these vertices will still drive their tangents. + denom := du1*dv2 - du2*dv1 + if denom == 0 || math.Abs(denom) < 1e-20 { + continue + } + r := 1.0 / denom + + tx := (e1x*dv2 - e2x*dv1) * r + ty := (e1y*dv2 - e2y*dv1) * r + tz := (e1z*dv2 - e2z*dv1) * r + bx := (e2x*du1 - e1x*du2) * r + by := (e2y*du1 - e1y*du2) * r + bz := (e2z*du1 - e1z*du2) * r + + if math.IsNaN(tx) || math.IsInf(tx, 0) || + math.IsNaN(ty) || math.IsInf(ty, 0) || + math.IsNaN(tz) || math.IsInf(tz, 0) || + math.IsNaN(bx) || math.IsInf(bx, 0) || + math.IsNaN(by) || math.IsInf(by, 0) || + math.IsNaN(bz) || math.IsInf(bz, 0) { + continue + } + + for _, idx := range [3]int{i0, i1, i2} { + tAccum[idx][0] += tx + tAccum[idx][1] += ty + tAccum[idx][2] += tz + bAccum[idx][0] += bx + bAccum[idx][1] += by + bAccum[idx][2] += bz + } + } + + tangents := make([]Vec3, n) + bitangents := make([]Vec3, n) + + for i := 0; i < n; i++ { + nrm := exp.normals[i] + nx, ny, nz := float64(nrm.X), float64(nrm.Y), float64(nrm.Z) + tx, ty, tz := tAccum[i][0], tAccum[i][1], tAccum[i][2] + + // Gram-Schmidt orthogonalise the accumulated tangent against the + // vertex normal so it lies in the tangent plane. + dotNT := nx*tx + ny*ty + nz*tz + tx -= nx * dotNT + ty -= ny * dotNT + tz -= nz * dotNT + + l := math.Sqrt(tx*tx + ty*ty + tz*tz) + if l < 1e-12 { + // Tangent collapsed — either no triangle contributed (isolated + // vertex) or every contribution was perpendicular-cancelled by + // the normal. Pick an arbitrary axis perpendicular to the + // normal so we still emit a finite, unit-length tangent. + tx, ty, tz = orthogonalAxis(nx, ny, nz) + l = math.Sqrt(tx*tx + ty*ty + tz*tz) + if l < 1e-12 { + // Normal is also degenerate; fall back to +X. + tx, ty, tz, l = 1, 0, 0, 1 + } + } + tx, ty, tz = tx/l, ty/l, tz/l + + // Handedness: sign of dot(cross(n, t), accumulated_bitangent). + // Recover the bitangent as cross(n, t) * w so the decompiler can + // re-derive W via dot(cross(n, t), bitangent). + cnx := ny*tz - nz*ty + cny := nz*tx - nx*tz + cnz := nx*ty - ny*tx + + bx, by, bz := bAccum[i][0], bAccum[i][1], bAccum[i][2] + w := 1.0 + if (cnx*bx + cny*by + cnz*bz) < 0 { + w = -1.0 + } + + tangents[i] = Vec3{X: float32(tx), Y: float32(ty), Z: float32(tz)} + bitangents[i] = Vec3{X: float32(cnx * w), Y: float32(cny * w), Z: float32(cnz * w)} + } + + return tangents, bitangents +} + +// resolveTangents returns the per-GPU-vertex tangent and bitangent arrays to +// write into MDX. When the source mesh already carries hand-authored Vec4 +// tangents (parsed from ASCII or recovered from a previous decompile), they +// are expanded to GPU vertices and split into tangent + bitangent rather than +// regenerated — this preserves authored handedness and avoids round-trip +// drift. Otherwise tangents are generated from geometry only when the mesh +// declares RenderHint NormalAndSpecMapped, mirroring the game compiler's +// behavior — non-normal-mapped meshes don't need tangents at runtime, so +// emitting them would just waste MDX bytes. +// +// Returns (nil, nil) when no tangents can be produced (no UVs, no normals, +// the existing tangent table doesn't cover the referenced vertices, or the +// mesh isn't normal-mapped and has no authored tangents). +func resolveTangents(mesh *MeshData, exp *expandedMesh) ([]Vec3, []Vec3) { + if exp == nil || len(exp.positions) == 0 { + return nil, nil + } + if useExistingTangents(mesh, exp) { + return expandExistingTangents(mesh, exp) + } + if mesh == nil || mesh.RenderHint != "NormalAndSpecMapped" { + return nil, nil + } + return generateTangents(exp) +} + +// useExistingTangents reports whether mesh.Tangents covers every GPU vertex +// (indirectly via origVert) and is therefore safe to expand without +// generating from geometry. +func useExistingTangents(mesh *MeshData, exp *expandedMesh) bool { + if mesh == nil || len(mesh.Tangents) == 0 { + return false + } + if len(exp.normals) < len(exp.positions) { + return false + } + for _, ov := range exp.origVert { + i := int(ov) + if i < 0 || i >= len(mesh.Tangents) { + return false + } + } + return true +} + +// expandExistingTangents projects the per-original-vertex Vec4 tangents into +// per-GPU-vertex tangent + bitangent Vec3 arrays. Bitangents are +// reconstructed via cross(normal, tangent.xyz) * tangent.W, mirroring how +// the runtime would derive them. +func expandExistingTangents(mesh *MeshData, exp *expandedMesh) ([]Vec3, []Vec3) { + n := len(exp.positions) + tangents := make([]Vec3, n) + bitangents := make([]Vec3, n) + for i := 0; i < n; i++ { + ov := int(exp.origVert[i]) + t := mesh.Tangents[ov] + txyz := Vec3{X: t.X, Y: t.Y, Z: t.Z} + tangents[i] = txyz + w := t.W + if w == 0 { + w = 1 + } + bitangents[i] = vecScale(vecCross(exp.normals[i], txyz), w) + } + return tangents, bitangents +} + +// orthogonalAxis returns an arbitrary vector perpendicular to (nx, ny, nz). +// Used as a fallback when the accumulated tangent collapses to zero (e.g. +// every contributing triangle has its tangent direction perfectly cancelled +// by the normal projection). +func orthogonalAxis(nx, ny, nz float64) (float64, float64, float64) { + ax, ay, az := math.Abs(nx), math.Abs(ny), math.Abs(nz) + switch { + case ax <= ay && ax <= az: + return 0, nz, -ny + case ay <= az: + return -nz, 0, nx + default: + return ny, -nx, 0 + } +} diff --git a/pkg/mdl/compiler_tangents_test.go b/pkg/mdl/compiler_tangents_test.go new file mode 100644 index 0000000..88f9ebc --- /dev/null +++ b/pkg/mdl/compiler_tangents_test.go @@ -0,0 +1,531 @@ +// compiler_tangents_test.go — unit and roundtrip tests for the binary +// compiler's Mikktspace tangent generation. See compiler_tangents.go. +package mdl + +import ( + "math" + "strings" + "testing" +) + +// TestGenerateTangentsSimpleQuad covers the canonical case: a flat XY-plane +// quad whose UV U-axis aligns with world +X and UV V-axis with world +Y. +// Every per-vertex tangent must point along +X (the UV U-axis) and every +// bitangent must point along +Y, with W=+1 handedness. +func TestGenerateTangentsSimpleQuad(t *testing.T) { + mesh := &MeshData{ + Verts: []Vec3{ + {0, 0, 0}, + {1, 0, 0}, + {1, 1, 0}, + {0, 1, 0}, + }, + TVerts: []Vec3{ + {0, 0, 0}, + {1, 0, 0}, + {1, 1, 0}, + {0, 1, 0}, + }, + Normals: []Vec3{ + {0, 0, 1}, + {0, 0, 1}, + {0, 0, 1}, + {0, 0, 1}, + }, + Faces: []Face{ + {Verts: [3]int32{0, 1, 2}, UVs: [3]int32{0, 1, 2}}, + {Verts: [3]int32{0, 2, 3}, UVs: [3]int32{0, 2, 3}}, + }, + } + + exp, err := buildExpandedMesh(mesh) + if err != nil { + t.Fatalf("buildExpandedMesh: %v", err) + } + + tangents, bitangents := generateTangents(&exp) + if len(tangents) != len(exp.positions) { + t.Fatalf("tangents len=%d want %d", len(tangents), len(exp.positions)) + } + if len(bitangents) != len(exp.positions) { + t.Fatalf("bitangents len=%d want %d", len(bitangents), len(exp.positions)) + } + + const eps = 1e-5 + for i, tang := range tangents { + if math.Abs(float64(tang.X)-1.0) > eps { + t.Errorf("tangent[%d].X = %g, want ~1", i, tang.X) + } + if math.Abs(float64(tang.Y)) > eps { + t.Errorf("tangent[%d].Y = %g, want ~0", i, tang.Y) + } + if math.Abs(float64(tang.Z)) > eps { + t.Errorf("tangent[%d].Z = %g, want ~0", i, tang.Z) + } + } + for i, bt := range bitangents { + if math.Abs(float64(bt.X)) > eps { + t.Errorf("bitangent[%d].X = %g, want ~0", i, bt.X) + } + if math.Abs(float64(bt.Y)-1.0) > eps { + t.Errorf("bitangent[%d].Y = %g, want ~1", i, bt.Y) + } + if math.Abs(float64(bt.Z)) > eps { + t.Errorf("bitangent[%d].Z = %g, want ~0", i, bt.Z) + } + } +} + +// TestGenerateTangentsNoUVs verifies that generation bails out cleanly when +// UV0 data is missing and no tangents are produced. +func TestGenerateTangentsNoUVs(t *testing.T) { + mesh := &MeshData{ + Verts: []Vec3{ + {0, 0, 0}, {1, 0, 0}, {0, 1, 0}, + }, + Normals: []Vec3{ + {0, 0, 1}, {0, 0, 1}, {0, 0, 1}, + }, + Faces: []Face{ + {Verts: [3]int32{0, 1, 2}}, + }, + } + exp, err := buildExpandedMesh(mesh) + if err != nil { + t.Fatalf("buildExpandedMesh: %v", err) + } + tangents, bitangents := generateTangents(&exp) + if tangents != nil || bitangents != nil { + t.Fatalf("expected nil tangents/bitangents without UVs, got %d/%d", + len(tangents), len(bitangents)) + } +} + +// TestGenerateTangentsDegenerateUVs ensures a triangle whose UV mapping has +// zero area (collinear UVs) doesn't poison the per-vertex sums with NaN/Inf. +// Two of the three UVs are identical → deltaUV2 = (0, 0) → denom = 0 → that +// triangle's contribution must be skipped, and the other valid triangle in +// the strip should still produce a finite, unit-length tangent. +func TestGenerateTangentsDegenerateUVs(t *testing.T) { + mesh := &MeshData{ + Verts: []Vec3{ + {0, 0, 0}, {1, 0, 0}, {1, 1, 0}, {0, 1, 0}, + }, + TVerts: []Vec3{ + {0, 0, 0}, + {1, 0, 0}, + {1, 1, 0}, + {0, 0, 0}, // duplicate of TVerts[0] — face1 UVs collapse to a line + }, + Normals: []Vec3{ + {0, 0, 1}, {0, 0, 1}, {0, 0, 1}, {0, 0, 1}, + }, + Faces: []Face{ + // Healthy triangle: produces well-defined tangent. + {Verts: [3]int32{0, 1, 2}, UVs: [3]int32{0, 1, 2}}, + // Degenerate UV triangle: vertices 0 and 3 share UV (0,0), and + // vertex 2's UV (1,1) makes du1*dv2 - du2*dv1 evaluate to 0. + {Verts: [3]int32{0, 2, 3}, UVs: [3]int32{0, 2, 3}}, + }, + } + // Force the second triangle to actually be degenerate by using the same + // UV at all three corners; the first triangle remains the source of + // usable contributions. + mesh.TVerts[3] = mesh.TVerts[0] + mesh.Faces[1] = Face{Verts: [3]int32{0, 2, 0}, UVs: [3]int32{0, 0, 0}} + + exp, err := buildExpandedMesh(mesh) + if err != nil { + t.Fatalf("buildExpandedMesh: %v", err) + } + tangents, bitangents := generateTangents(&exp) + if tangents == nil || bitangents == nil { + t.Fatalf("expected tangents/bitangents from healthy triangle") + } + if len(tangents) != len(exp.positions) { + t.Fatalf("tangents len=%d want %d", len(tangents), len(exp.positions)) + } + for i, v := range tangents { + if isBadFloat(v.X) || isBadFloat(v.Y) || isBadFloat(v.Z) { + t.Errorf("tangent[%d] not finite: %+v", i, v) + } + } + for i, v := range bitangents { + if isBadFloat(v.X) || isBadFloat(v.Y) || isBadFloat(v.Z) { + t.Errorf("bitangent[%d] not finite: %+v", i, v) + } + } +} + +// TestRoundtripTangentsNormalSpecMapped is the integration test: a +// NormalAndSpecMapped mesh with normals + UVs but no explicit tangents +// should gain tangent data after compile + decompile, with each tangent +// reasonably aligned to the UV U-axis (+X for this geometry) and finite W. +func TestRoundtripTangentsNormalSpecMapped(t *testing.T) { + src := `newmodel tangenttest +setsupermodel tangenttest NULL +classification PLACEABLE +setanimationscale 1.00 +beginmodelgeom tangenttest + node dummy tangenttest + parent NULL + endnode + node trimesh tangentmesh + parent tangenttest + bitmap brick + render 1 + renderhint NormalAndSpecMapped + verts 4 + -1 -1 0 + 1 -1 0 + 1 1 0 + -1 1 0 + tverts 4 + 0 0 0 + 1 0 0 + 1 1 0 + 0 1 0 + faces 2 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + endnode +endmodelgeom +donemodel tangenttest +` + m := mustParseASCII(t, src) + bin := mustCompile(t, m) + m2 := mustDecompile(t, bin) + + n := m2.FindNode("tangentmesh") + if n == nil || n.Mesh == nil { + t.Fatal("tangentmesh not found after roundtrip") + } + if len(n.Mesh.Tangents) == 0 { + t.Fatalf("expected tangents to be populated after roundtrip, got 0") + } + if len(n.Mesh.Tangents) != len(n.Mesh.Verts) { + t.Fatalf("tangent count %d != vert count %d", + len(n.Mesh.Tangents), len(n.Mesh.Verts)) + } + for i, tg := range n.Mesh.Tangents { + if isBadFloat(tg.X) || isBadFloat(tg.Y) || isBadFloat(tg.Z) || isBadFloat(tg.W) { + t.Errorf("tangent[%d] not finite: %+v", i, tg) + } + // UVs grow along +X / +Y, so the tangent should align with +X. + if math.Abs(float64(tg.X)-1.0) > 1e-3 { + t.Errorf("tangent[%d].X = %g, want ~1 (aligned with UV U-axis)", i, tg.X) + } + // Length of the XYZ part should be ~1. + l := math.Sqrt(float64(tg.X*tg.X + tg.Y*tg.Y + tg.Z*tg.Z)) + if math.Abs(l-1.0) > 1e-3 { + t.Errorf("tangent[%d] not unit-length: |t|=%g", i, l) + } + if tg.W != 1 && tg.W != -1 { + t.Errorf("tangent[%d].W = %g, want ±1", i, tg.W) + } + } +} + +// TestRoundtripNoTangentsWithoutUVs asserts that a mesh without UVs gets no +// tangent data baked in — both MDX pointers must remain -1, which surfaces +// after decompile as an empty Tangents slice. +func TestRoundtripNoTangentsWithoutUVs(t *testing.T) { + src := `newmodel notangents +setsupermodel notangents NULL +classification PLACEABLE +setanimationscale 1.00 +beginmodelgeom notangents + node dummy notangents + parent NULL + endnode + node trimesh untex + parent notangents + bitmap NULL + render 1 + verts 3 + 0 0 0 + 1 0 0 + 0 1 0 + faces 1 + 0 1 2 0 0 0 0 1 2 + endnode +endmodelgeom +donemodel notangents +` + m := mustParseASCII(t, src) + bin := mustCompile(t, m) + m2 := mustDecompile(t, bin) + + n := m2.FindNode("untex") + if n == nil || n.Mesh == nil { + t.Fatal("untex node not found after roundtrip") + } + if len(n.Mesh.Tangents) != 0 { + t.Fatalf("expected 0 tangents for UV-less mesh, got %d", len(n.Mesh.Tangents)) + } +} + +// TestRoundtripPreservesAuthoredTangents covers the "respect existing +// tangent data" branch in resolveTangents: when the source mesh ships with +// hand-authored Vec4 tangents we must use them rather than regenerating, so +// that round-trip preserves the original authoring (modulo float precision). +func TestRoundtripPreservesAuthoredTangents(t *testing.T) { + src := `newmodel authored +setsupermodel authored NULL +classification PLACEABLE +setanimationscale 1.00 +beginmodelgeom authored + node dummy authored + parent NULL + endnode + node trimesh authoredmesh + parent authored + bitmap brick + render 1 + renderhint NormalAndSpecMapped + verts 4 + -1 -1 0 + 1 -1 0 + 1 1 0 + -1 1 0 + tverts 4 + 0 0 0 + 1 0 0 + 1 1 0 + 0 1 0 + normals 4 + 0 0 1 + 0 0 1 + 0 0 1 + 0 0 1 + tangents 4 + 1 0 0 1 + 1 0 0 1 + 1 0 0 1 + 1 0 0 1 + faces 2 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + endnode +endmodelgeom +donemodel authored +` + m := mustParseASCII(t, src) + if mn := m.FindNode("authoredmesh"); mn == nil || mn.Mesh == nil || len(mn.Mesh.Tangents) == 0 { + t.Skip("ASCII parser did not populate authored tangents") + } + bin := mustCompile(t, m) + m2 := mustDecompile(t, bin) + + n := m2.FindNode("authoredmesh") + if n == nil || n.Mesh == nil { + t.Fatal("authoredmesh not found after roundtrip") + } + if len(n.Mesh.Tangents) == 0 { + t.Fatalf("expected tangents preserved through roundtrip") + } + for i, tg := range n.Mesh.Tangents { + if math.Abs(float64(tg.X)-1.0) > 1e-3 || + math.Abs(float64(tg.Y)) > 1e-3 || + math.Abs(float64(tg.Z)) > 1e-3 { + t.Errorf("authored tangent[%d] drifted: got %+v want ~(1,0,0,±1)", i, tg) + } + } +} + +// TestCompileTangentMDXSizeIncreases is a smoke check that the MDX block +// actually grows by 24 bytes per GPU vertex (12 tangent + 12 bitangent) when +// the compiler bakes tangents in. +func TestCompileTangentMDXSizeIncreases(t *testing.T) { + withUVs := `newmodel withuvs +setsupermodel withuvs NULL +classification PLACEABLE +setanimationscale 1.00 +beginmodelgeom withuvs + node dummy withuvs + parent NULL + endnode + node trimesh m + parent withuvs + bitmap brick + render 1 + renderhint NormalAndSpecMapped + verts 4 + -1 -1 0 + 1 -1 0 + 1 1 0 + -1 1 0 + tverts 4 + 0 0 0 + 1 0 0 + 1 1 0 + 0 1 0 + faces 2 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + endnode +endmodelgeom +donemodel withuvs +` + noUVs := strings.Replace(withUVs, ` tverts 4 + 0 0 0 + 1 0 0 + 1 1 0 + 0 1 0 +`, "", 1) + + binWith := mustCompile(t, mustParseASCII(t, withUVs)) + binWithout := mustCompile(t, mustParseASCII(t, noUVs)) + + mdxWith := readU32LE(binWith[8:]) + mdxWithout := readU32LE(binWithout[8:]) + + if mdxWith <= mdxWithout { + t.Errorf("expected MDX block to grow when UVs (and thus tangents) are present: with=%d without=%d", + mdxWith, mdxWithout) + } +} + +// isBadFloat reports whether x is NaN or ±Inf — the failure modes a +// degenerate tangent computation tends to produce. +func isBadFloat(x float32) bool { + return math.IsNaN(float64(x)) || math.IsInf(float64(x), 0) +} + +// makeTangentTestNode builds a single-mesh Node with one face whose 3 +// corner positions are at the given coordinates and whose per-vertex +// tangents are the supplied vectors. Used by TestCompareNodeTangents to +// exercise the oracle comparison helper with controlled inputs (no +// dependency on the compiler/decompiler pipeline). +func makeTangentTestNode(name string, positions [3]Vec3, tangents [3]Vec4) *Node { + return &Node{ + Name: name, + Mesh: &MeshData{ + Verts: []Vec3{positions[0], positions[1], positions[2]}, + Tangents: []Vec4{tangents[0], tangents[1], tangents[2]}, + Faces: []Face{{ + Verts: [3]int32{0, 1, 2}, + }}, + }, + } +} + +// TestCompareNodeTangents exercises the oracle tangent comparison +// helper directly with synthetic Node pairs. The oracle test +// (TestOracleTangents) only activates when both compilers emit tangent +// data for the same mesh; until we get a normal-mapped game-compiled +// fixture into the suite, this is the only thing that proves the +// matching/dot-product logic is correct. +func TestCompareNodeTangents(t *testing.T) { + tx := func(x, y, z, w float32) Vec4 { return Vec4{X: x, Y: y, Z: z, W: w} } + + cases := []struct { + name string + ours [3]Vec4 + game [3]Vec4 + gamePos [3]Vec3 // override game positions; zero value = same as ours + wantMatched int + wantUnmatched int + wantBadAlign int + wantMeanDotMin float64 + wantMeanDotMax float64 + wantSkipMeanDot bool + }{ + { + name: "identical tangents", + ours: [3]Vec4{tx(1, 0, 0, 1), tx(1, 0, 0, 1), tx(1, 0, 0, 1)}, + game: [3]Vec4{tx(1, 0, 0, 1), tx(1, 0, 0, 1), tx(1, 0, 0, 1)}, + wantMatched: 3, + wantMeanDotMin: 0.999, + wantMeanDotMax: 1.001, + }, + { + name: "sign-flipped tangents (handedness diff) -> still |dot|=1", + ours: [3]Vec4{tx(1, 0, 0, 1), tx(1, 0, 0, 1), tx(1, 0, 0, 1)}, + game: [3]Vec4{tx(-1, 0, 0, 1), tx(-1, 0, 0, 1), tx(-1, 0, 0, 1)}, + wantMatched: 3, + wantMeanDotMin: 0.999, + wantMeanDotMax: 1.001, + }, + { + name: "orthogonal tangents -> |dot|=0, all flagged badAlign", + ours: [3]Vec4{tx(1, 0, 0, 1), tx(1, 0, 0, 1), tx(1, 0, 0, 1)}, + game: [3]Vec4{tx(0, 1, 0, 1), tx(0, 1, 0, 1), tx(0, 1, 0, 1)}, + wantMatched: 3, + wantBadAlign: 3, + wantMeanDotMin: 0, + wantMeanDotMax: 0.001, + }, + { + name: "in-face vertex reorder still matches by position", + ours: [3]Vec4{tx(1, 0, 0, 1), tx(0, 1, 0, 1), tx(0, 0, 1, 1)}, + // Game has the same per-position tangents but stores corners in + // reverse order — compareNodeTangents matches by position so the + // alignment should still come out perfect. + game: [3]Vec4{tx(0, 0, 1, 1), tx(0, 1, 0, 1), tx(1, 0, 0, 1)}, + gamePos: [3]Vec3{ + {0, 1, 0}, {1, 0, 0}, {0, 0, 0}, + }, + wantMatched: 3, + wantMeanDotMin: 0.999, + wantMeanDotMax: 1.001, + }, + { + name: "no positional match -> all unmatched", + ours: [3]Vec4{tx(1, 0, 0, 1), tx(1, 0, 0, 1), tx(1, 0, 0, 1)}, + game: [3]Vec4{tx(1, 0, 0, 1), tx(1, 0, 0, 1), tx(1, 0, 0, 1)}, + gamePos: [3]Vec3{ + {99, 99, 99}, {99, 99, 99}, {99, 99, 99}, + }, + wantUnmatched: 3, + wantSkipMeanDot: true, + }, + { + name: "zero-length tangent -> unmatched (degenerate vector skipped)", + ours: [3]Vec4{tx(1, 0, 0, 1), tx(1, 0, 0, 1), tx(1, 0, 0, 1)}, + game: [3]Vec4{tx(0, 0, 0, 1), tx(0, 0, 0, 1), tx(0, 0, 0, 1)}, + wantUnmatched: 3, + wantSkipMeanDot: true, + }, + { + name: "partial alignment -> mean reflects average", + // One perfect, one orthogonal, one perfect → mean = 2/3 ≈ 0.667 + ours: [3]Vec4{tx(1, 0, 0, 1), tx(1, 0, 0, 1), tx(1, 0, 0, 1)}, + game: [3]Vec4{tx(1, 0, 0, 1), tx(0, 1, 0, 1), tx(1, 0, 0, 1)}, + wantMatched: 3, + wantBadAlign: 1, + wantMeanDotMin: 0.66, + wantMeanDotMax: 0.67, + }, + } + + for _, c := range cases { + c := c + t.Run(c.name, func(t *testing.T) { + gamePos := c.gamePos + if gamePos == ([3]Vec3{}) { + gamePos = [3]Vec3{{0, 0, 0}, {1, 0, 0}, {0, 1, 0}} + } + ours := makeTangentTestNode("m", [3]Vec3{{0, 0, 0}, {1, 0, 0}, {0, 1, 0}}, c.ours) + game := makeTangentTestNode("m", gamePos, c.game) + + s := compareNodeTangents(ours, game) + if s.matched != c.wantMatched { + t.Errorf("matched=%d want=%d", s.matched, c.wantMatched) + } + if s.unmatched != c.wantUnmatched { + t.Errorf("unmatched=%d want=%d", s.unmatched, c.wantUnmatched) + } + if s.badAlign != c.wantBadAlign { + t.Errorf("badAlign=%d want=%d", s.badAlign, c.wantBadAlign) + } + if !c.wantSkipMeanDot && s.matched > 0 { + mean := s.dotSum / float64(s.matched) + if mean < c.wantMeanDotMin || mean > c.wantMeanDotMax { + t.Errorf("mean|dot|=%.4f want in [%.4f, %.4f]", + mean, c.wantMeanDotMin, c.wantMeanDotMax) + } + } + }) + } +} diff --git a/pkg/mdl/compiler_test.go b/pkg/mdl/compiler_test.go new file mode 100644 index 0000000..7ab6b8a --- /dev/null +++ b/pkg/mdl/compiler_test.go @@ -0,0 +1,555 @@ +// compiler_test.go — roundtrip and batch tests for the binary MDL compiler. +// +// Tests: +// 1. Roundtrip: ASCII → Compile → Decompile → re-emit ASCII, compare geometry. +// 2. Header size assertions: every struct must be the exact byte count. +// 3. Batch: all ASCII models in /tmp/nwn-haks/placeables/ must compile without panic. +package mdl + +import ( + "bytes" + "fmt" + "math" + "os" + "path/filepath" + "strings" + "sync" + "testing" +) + +// TestCompilerHeaderSizes verifies that our byte-count constants match the +// live compiler output, catching regressions where a field is accidentally +// added or removed. +func TestCompilerHeaderSizes(t *testing.T) { + // Build a minimal model (root dummy node) and verify the core block is + // exactly the expected size. + m := &Model{ + Name: "test", + Classification: "CHARACTER", + SuperModel: "NULL", + AnimationScale: 1.0, + } + root := &Node{Name: "test", Parent: "NULL"} + m.Nodes = append(m.Nodes, root) + + var buf bytes.Buffer + if err := Compile(m, &buf); err != nil { + t.Fatalf("Compile failed: %v", err) + } + data := buf.Bytes() + + // File = 12-byte header_file + core + MDX + if len(data) < 12 { + t.Fatalf("output too short: %d bytes", len(data)) + } + + // header_file + coreLen := readU32LE(data[4:]) + mdxLen := readU32LE(data[8:]) + t.Logf("core=%d MDX=%d total=%d", coreLen, mdxLen, len(data)) + + // ProxyModel (232) + root node header (112) = 244 minimum + if coreLen < 232+112 { + t.Errorf("core block too small: %d (want ≥ 344)", coreLen) + } + // No mesh → MDX should be 0 + if mdxLen != 0 { + t.Errorf("expected 0 MDX bytes for dummy-only model, got %d", mdxLen) + } + + // ProxyModel starts at core offset 0 (file offset 12). + // Root node pointer is at core offset 72 (ProxyModel+72). + rootPtr := readU32LE(data[12+72:]) + t.Logf("root node ptr = %d (expect 232)", rootPtr) + if rootPtr != 232 { + t.Errorf("root node ptr = %d, want 232", rootPtr) + } +} + +// TestRoundtripDummy verifies that a model with only a dummy root node +// survives ASCII → compile → decompile with the same name and no errors. +func TestRoundtripDummy(t *testing.T) { + src := `# Shockwave NWN2 MDL File Exporter v0.97.00.0000 +filedependancy none +newmodel mymodel +setsupermodel mymodel NULL +classification CHARACTER +setanimationscale 1.00 +beginmodelgeom mymodel + node dummy mymodel + parent NULL + endnode +endmodelgeom +donemodel mymodel +` + model := mustParseASCII(t, src) + binData := mustCompile(t, model) + model2 := mustDecompile(t, binData) + + if !strings.EqualFold(model2.Name, "mymodel") { + t.Errorf("name: got %q, want %q", model2.Name, "mymodel") + } + if len(model2.Nodes) == 0 { + t.Error("no nodes after decompile") + } +} + +// TestRoundtripTrimesh verifies that a simple trimesh (4 verts, 2 faces) +// has the correct vertex count, face count, and face normals after roundtrip. +func TestRoundtripTrimesh(t *testing.T) { + src := `# NWN MDL +filedependancy none +newmodel quad +setsupermodel quad NULL +classification PLACEABLE +setanimationscale 1.00 +beginmodelgeom quad + node dummy quad + parent NULL + endnode + node trimesh top + parent quad + position 0 0 0 + orientation 0 0 1 0 + bitmap blank + render 1 + shadow 0 + verts 4 + -1 -1 0 + 1 -1 0 + 1 1 0 + -1 1 0 + tverts 4 + 0 0 0 + 1 0 0 + 1 1 0 + 0 1 0 + faces 2 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + endnode +endmodelgeom +donemodel quad +` + model := mustParseASCII(t, src) + binData := mustCompile(t, model) + model2 := mustDecompile(t, binData) + + // Find the trimesh node + var meshNode *Node + for _, n := range model2.Nodes { + if n.Mesh != nil { + meshNode = n + break + } + } + if meshNode == nil { + t.Fatal("no mesh node after decompile") + } + + // GPU vertex count: 2 triangles sharing an edge → 4 unique verts after dedup + // (was 6 before deduplication was implemented) + wantVerts := 4 + if len(meshNode.Mesh.Verts) != wantVerts { + t.Errorf("verts: got %d, want %d", len(meshNode.Mesh.Verts), wantVerts) + } + if len(meshNode.Mesh.Faces) != 2 { + t.Errorf("faces: got %d, want 2", len(meshNode.Mesh.Faces)) + } + + // Normals should have been propagated + if len(meshNode.Mesh.Normals) == 0 { + t.Log("normals not present (OK for compiler MVP)") + } + + // Face normals: the compiler writes the face normal from the ASCII data. + // In this test the ASCII face lines include a smoothing group index but no + // explicit face-normal; the parser computes them from cross-products. + // We just verify the normal vector is not NaN. + for i, f := range meshNode.Mesh.Faces { + n := f.Normal + if math.IsNaN(float64(n.X)) || math.IsNaN(float64(n.Y)) || math.IsNaN(float64(n.Z)) { + t.Errorf("face %d: NaN normal {%g %g %g}", i, n.X, n.Y, n.Z) + } + } +} + +// TestRoundtripAnimation checks that animation names and event counts survive roundtrip. +func TestRoundtripAnimation(t *testing.T) { + src := `# NWN MDL +filedependancy none +newmodel anim_test +setsupermodel anim_test NULL +classification PLACEABLE +setanimationscale 1.00 +beginmodelgeom anim_test + node dummy anim_test + parent NULL + endnode +endmodelgeom + +newanim default anim_test + length 1.0 + transtime 0.25 + animroot anim_test + node dummy anim_test + parent NULL + positionkey 1 + 0.0 0 0 0 + endnode +doneanim default anim_test + +donemodel anim_test +` + model := mustParseASCII(t, src) + if len(model.Animations) == 0 { + t.Skip("no animations parsed (ASCII parser may not have read them)") + } + binData := mustCompile(t, model) + model2 := mustDecompile(t, binData) + + if len(model2.Animations) == 0 { + t.Fatal("no animations after decompile") + } + got := model2.Animations[0].Name + want := "default" + if !strings.EqualFold(got, want) { + t.Errorf("animation name: got %q, want %q", got, want) + } +} + +// TestMeshHeaderSize checks the 512-byte mesh header invariant directly. +func TestMeshHeaderSize(t *testing.T) { + // Create a mesh node and compile it, then verify the core block layout. + src := `# NWN MDL +filedependancy none +newmodel meshtest +setsupermodel meshtest NULL +classification PLACEABLE +setanimationscale 1.00 +beginmodelgeom meshtest + node dummy meshtest + parent NULL + endnode + node trimesh box + parent meshtest + bitmap brick + render 1 + shadow 1 + verts 8 + -1 -1 -1 + 1 -1 -1 + 1 1 -1 + -1 1 -1 + -1 -1 1 + 1 -1 1 + 1 1 1 + -1 1 1 + tverts 4 + 0 0 0 + 1 0 0 + 1 1 0 + 0 1 0 + faces 4 + 0 1 2 0 0 0 0 1 2 + 0 2 3 0 0 0 0 2 3 + 4 5 6 0 0 0 0 1 2 + 4 6 7 0 0 0 0 2 3 + endnode +endmodelgeom +donemodel meshtest +` + model := mustParseASCII(t, src) + binData := mustCompile(t, model) + + // The core block starts at byte 12. + // ProxyModel = 232 bytes. + // Node base header = 112 bytes. + // Mesh header starts at 12 + 232 + 112 = 356 (but also need to account for + // the controller/children array offsets and any inline data after 232+112 bytes). + // Minimal: node header starts at 232 and mesh header starts at 232+112 = 344. + coreLen := int(readU32LE(binData[4:])) + t.Logf("core size: %d bytes", coreLen) + if coreLen < 232+112+512 { + t.Errorf("core too small: %d, expected at least %d", coreLen, 232+112+512) + } +} + +// TestBatchCompilePlaceables compiles all ASCII MDLs in /tmp/nwn-haks/placeables/ +// and verifies they don't panic or error. +func TestBatchCompilePlaceables(t *testing.T) { + dir := "/tmp/nwn-haks/placeables" + entries, err := os.ReadDir(dir) + if err != nil { + t.Skipf("placeables dir not available: %v", err) + } + + var total, pass, fail int + for _, e := range entries { + if e.IsDir() || !strings.HasSuffix(strings.ToLower(e.Name()), ".mdl") { + continue + } + total++ + path := filepath.Join(dir, e.Name()) + + // Skip binary MDLs (first 4 bytes = 0x00000000) + f, err := os.Open(path) + if err != nil { + continue + } + hdr := make([]byte, 4) + f.Read(hdr) + f.Close() + if hdr[0] == 0 && hdr[1] == 0 && hdr[2] == 0 && hdr[3] == 0 { + total-- // don't count binary files + continue + } + + t.Run(e.Name(), func(t *testing.T) { + pr, err := ParseFile(path) + if err != nil { + t.Skipf("parse error: %v", err) + } + if pr.Model == nil { + t.Skip("nil model") + } + + var buf bytes.Buffer + if err := Compile(pr.Model, &buf); err != nil { + fail++ + t.Errorf("compile error: %v", err) + return + } + binData := buf.Bytes() + if len(binData) < 12 { + fail++ + t.Errorf("output too small: %d bytes", len(binData)) + return + } + + // Decompile the result and check for no fatal errors. + _, err = Decompile(bytes.NewReader(binData), int64(len(binData))) + if err != nil { + fail++ + t.Errorf("decompile error: %v", err) + return + } + pass++ + }) + } + if total > 0 { + t.Logf("batch: %d/%d passed, %d failed", pass, total, fail) + } +} + +// TestBatchCompileDecompiled compiles the full NWN:EE decompiled stock model corpus +// (32k+ models) and verifies each can round-trip without error or panic. +// Set DECOMPILED_DIR env var to override the default folder path. +func TestBatchCompileDecompiled(t *testing.T) { + dir := os.Getenv("DECOMPILED_DIR") + if dir == "" { + dir = "/Users/james/Downloads/1.86.8193.34.1 Decompiled Models (One Folder)" + } + entries, err := os.ReadDir(dir) + if err != nil { + t.Skipf("decompiled dir not available: %v", err) + } + + type job struct{ name, path string } + type failure struct{ name, reason string } + + jobs := make(chan job, 256) + results := make(chan failure, 256) + + const workers = 8 + var wg sync.WaitGroup + for range workers { + wg.Add(1) + go func() { + defer wg.Done() + for j := range jobs { + pr, err := ParseFile(j.path) + if err != nil { + results <- failure{j.name, fmt.Sprintf("parse: %v", err)} + continue + } + if pr.Model == nil { + results <- failure{j.name, "nil model"} + continue + } + var buf bytes.Buffer + if err := Compile(pr.Model, &buf); err != nil { + results <- failure{j.name, fmt.Sprintf("compile: %v", err)} + continue + } + if buf.Len() < 12 { + results <- failure{j.name, fmt.Sprintf("output too small: %d bytes", buf.Len())} + continue + } + if _, err := Decompile(bytes.NewReader(buf.Bytes()), int64(buf.Len())); err != nil { + results <- failure{j.name, fmt.Sprintf("decompile: %v", err)} + continue + } + results <- failure{} // success: empty name + } + }() + } + + var total int + go func() { + for _, e := range entries { + if e.IsDir() || !strings.HasSuffix(strings.ToLower(e.Name()), ".mdl") { + continue + } + total++ + jobs <- job{e.Name(), filepath.Join(dir, e.Name())} + } + close(jobs) + wg.Wait() + close(results) + }() + + var pass, fail int + var failures []failure + for r := range results { + if r.name == "" { + pass++ + } else { + fail++ + failures = append(failures, r) + } + } + + t.Logf("batch: %d/%d passed, %d failed", pass, total, fail) + for _, f := range failures { + t.Errorf("FAIL %s: %s", f.name, f.reason) + } +} + +// TestRoundtripGeometryPreserved checks that face positions are preserved +// after ASCII→binary→decompile (geometry must be identical to within float32 precision). +func TestRoundtripGeometryPreserved(t *testing.T) { + pr, err := ParseFile("/tmp/nwn-haks/placeables/a_black.mdl") + if err != nil { + t.Skipf("can't load test model: %v", err) + } + if pr.Model == nil { + t.Skip("nil model") + } + + orig := pr.Model + + // Collect original face positions by mesh name. + origPositions := collectFacePositions(orig) + + // Compile to binary. + binData := mustCompile(t, orig) + + // Decompile. + rt, err := Decompile(bytes.NewReader(binData), int64(len(binData))) + if err != nil { + t.Fatalf("decompile: %v", err) + } + + // Compare face positions. + rtPositions := collectFacePositions(rt) + + for name, origFacePos := range origPositions { + rtFacePos, ok := rtPositions[name] + if !ok { + t.Errorf("mesh %q missing in decompiled model", name) + continue + } + if len(origFacePos) != len(rtFacePos) { + t.Errorf("mesh %q: face count mismatch orig=%d rt=%d", name, len(origFacePos), len(rtFacePos)) + continue + } + for i, op := range origFacePos { + rp := rtFacePos[i] + if !vec3Near(op, rp, 1e-4) { + t.Errorf("mesh %q face %d pos mismatch: orig=%v rt=%v", name, i, op, rp) + if i > 3 { + t.Errorf("... (truncated)") + break + } + } + } + } +} + +// ---- helpers ---- + +func mustParseASCII(t *testing.T, src string) *Model { + t.Helper() + pr, err := Parse(strings.NewReader(src)) + if err != nil { + t.Fatalf("Parse: %v", err) + } + if pr.Model == nil { + t.Fatal("nil model after parse") + } + return pr.Model +} + +func mustCompile(t *testing.T, m *Model) []byte { + t.Helper() + var buf bytes.Buffer + if err := Compile(m, &buf); err != nil { + t.Fatalf("Compile: %v", err) + } + return buf.Bytes() +} + +func mustDecompile(t *testing.T, data []byte) *Model { + t.Helper() + m, err := Decompile(bytes.NewReader(data), int64(len(data))) + if err != nil { + t.Fatalf("Decompile: %v", err) + } + return m +} + +func readU32LE(b []byte) uint32 { + return uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24 +} + +// collectFacePositions maps mesh name (lowercased) → list of (first vertex of face). +// The decompiler lowercases all names, so we normalise on both sides. +func collectFacePositions(m *Model) map[string][]Vec3 { + out := make(map[string][]Vec3) + for _, n := range m.Nodes { + if n.Mesh == nil || len(n.Mesh.Faces) == 0 { + continue + } + var positions []Vec3 + for _, f := range n.Mesh.Faces { + if int(f.Verts[0]) < len(n.Mesh.Verts) { + positions = append(positions, n.Mesh.Verts[f.Verts[0]]) + } + } + if len(positions) > 0 { + out[strings.ToLower(n.Name)] = positions + } + } + return out +} + +func vec3Near(a, b Vec3, eps float32) bool { + return abs32(a.X-b.X) <= eps && abs32(a.Y-b.Y) <= eps && abs32(a.Z-b.Z) <= eps +} + +func abs32(x float32) float32 { + if x < 0 { + return -x + } + return x +} + +// checkMeshHeaderSize validates that the ProxyMdlNode + header_mesh = 624 bytes. +func checkMeshHeaderSize(data []byte, nodeOff int) error { + fileOff := 12 + nodeOff // core block starts at byte 12 + if fileOff+112+512 > len(data) { + return fmt.Errorf("file too short for full mesh node at offset %d", nodeOff) + } + return nil +} diff --git a/pkg/mdl/controllers.go b/pkg/mdl/controllers.go new file mode 100644 index 0000000..38a02b1 --- /dev/null +++ b/pkg/mdl/controllers.go @@ -0,0 +1,153 @@ +package mdl + +// Compiler identifies which compiler produced a binary MDL. +// BioWare and nwnmdlcomp use different controller type IDs for some +// emitter properties. +// Ref: load_binary.pl compiler/1 (line 17), controller_type/3 (lines 1196-1257) +type Compiler int + +const ( + CompilerUnknown Compiler = iota + CompilerBioWare // Original BioWare compiler, ships with the game + CompilerNwnmdlcomp // Community compiler (nwnmdlcomp) +) + +// controllerKey uniquely identifies a controller mapping entry. +type controllerKey struct { + TypeID uint32 + NodeFlag uint32 // binary node type flag: 0 = all nodes +} + +// ControllerDef defines a controller's parameter name and data width. +type ControllerDef struct { + Name string + NumCols int // number of float columns per key row (1=float, 3=vec3, 4=quat/vec4) +} + +// ControllerID returns the parameter name for a given controller type ID and +// binary node type flag. When the compiler affects the mapping (emitter mid/percent +// controllers), both bioware and nwnmdlcomp variants are checked. +// Returns the definition and true if found, or zero value and false. +// +// Ref: load_binary.pl controller_type/3 (lines 1196-1257) +func ControllerID(typeID uint32, nodeFlag uint32, compiler Compiler) (ControllerDef, bool) { + // Emitters: check compiler-specific mappings first + if nodeFlag == 5 { + if compiler == CompilerBioWare || compiler == CompilerUnknown { + if def, ok := biowareEmitterControllers[typeID]; ok { + return def, true + } + } + if compiler == CompilerNwnmdlcomp || compiler == CompilerUnknown { + if def, ok := nwnmdlcompEmitterControllers[typeID]; ok { + return def, true + } + } + } + + // Check node-type-specific controllers + if def, ok := nodeControllers[controllerKey{typeID, nodeFlag}]; ok { + return def, true + } + + // Check mesh controllers (any node with mesh flag bit 5 set = 32) + if nodeFlag&32 == 32 { + if def, ok := meshControllers[typeID]; ok { + return def, true + } + } + + // Check universal controllers (position, orientation, scale) + if def, ok := universalControllers[typeID]; ok { + return def, true + } + + return ControllerDef{}, false +} + +// universalControllers apply to all node types. +// Ref: load_binary.pl controller_type(ID,_,Name) -- lines 1196-1198 +var universalControllers = map[uint32]ControllerDef{ + 8: {Name: "position", NumCols: 3}, + 20: {Name: "orientation", NumCols: 4}, + 36: {Name: "scale", NumCols: 1}, +} + +// meshControllers apply to any node with the mesh bit set (flag & 32 == 32). +// Ref: load_binary.pl controller_type(ID,NodeType,...) -- lines 1254-1255 +var meshControllers = map[uint32]ControllerDef{ + 100: {Name: "selfillumcolor", NumCols: 3}, + 128: {Name: "alpha", NumCols: 1}, +} + +// nodeControllers are specific to a single node type flag. +// Light controllers: Ref load_binary.pl controller_type(ID,3,...) lines 1200-1204 +// Emitter controllers: Ref load_binary.pl controller_type(ID,5,...) lines 1206-1251 +var nodeControllers = map[controllerKey]ControllerDef{ + // Light controllers (node type flag 3) + {76, 3}: {Name: "color", NumCols: 3}, + {88, 3}: {Name: "radius", NumCols: 1}, + {140, 3}: {Name: "multiplier", NumCols: 1}, + {96, 3}: {Name: "shadowradius", NumCols: 1}, + {100, 3}: {Name: "verticaldisplacement", NumCols: 1}, + + // Emitter controllers (node type flag 5), compiler-independent + {84, 5}: {Name: "alphastart", NumCols: 1}, + {80, 5}: {Name: "alphaend", NumCols: 1}, + {88, 5}: {Name: "birthrate", NumCols: 1}, + {204, 5}: {Name: "blurlength", NumCols: 1}, + {92, 5}: {Name: "bounce_co", NumCols: 1}, + {108, 5}: {Name: "colorstart", NumCols: 3}, + {96, 5}: {Name: "colorend", NumCols: 3}, + {120, 5}: {Name: "combinetime", NumCols: 1}, + {228, 5}: {Name: "detonate", NumCols: -1}, + {124, 5}: {Name: "drag", NumCols: 1}, + {128, 5}: {Name: "fps", NumCols: 1}, + {136, 5}: {Name: "framestart", NumCols: 1}, + {132, 5}: {Name: "frameend", NumCols: 1}, + {140, 5}: {Name: "grav", NumCols: 1}, + {144, 5}: {Name: "lifeexp", NumCols: 1}, + {208, 5}: {Name: "lightningdelay", NumCols: 1}, + {212, 5}: {Name: "lightningradius", NumCols: 1}, + {216, 5}: {Name: "lightningscale", NumCols: 1}, + {220, 5}: {Name: "lightningsubdiv", NumCols: 1}, + {148, 5}: {Name: "mass", NumCols: 1}, + {152, 5}: {Name: "p2p_bezier2", NumCols: 1}, + {156, 5}: {Name: "p2p_bezier3", NumCols: 1}, + {160, 5}: {Name: "particlerot", NumCols: 1}, + {164, 5}: {Name: "randvel", NumCols: 1}, + {168, 5}: {Name: "sizestart", NumCols: 1}, + {172, 5}: {Name: "sizeend", NumCols: 1}, + {176, 5}: {Name: "sizestart_y", NumCols: 1}, + {180, 5}: {Name: "sizeend_y", NumCols: 1}, + {184, 5}: {Name: "spread", NumCols: 1}, + {188, 5}: {Name: "threshold", NumCols: 1}, + {192, 5}: {Name: "velocity", NumCols: 1}, + {196, 5}: {Name: "xsize", NumCols: 1}, + {200, 5}: {Name: "ysize", NumCols: 1}, +} + +// biowareEmitterControllers are emitter controller IDs specific to BioWare's compiler. +// These differ from nwnmdlcomp for mid/percent controllers. +// Ref: load_binary.pl controller_type(ID,5,Name) :- compiler(bioware) -- lines 1207-1246 +var biowareEmitterControllers = map[uint32]ControllerDef{ + 448: {Name: "alphamid", NumCols: 1}, + 452: {Name: "colormid", NumCols: 3}, + 464: {Name: "percentstart", NumCols: 1}, + 465: {Name: "percentmid", NumCols: 1}, + 466: {Name: "percentend", NumCols: 1}, + 468: {Name: "sizemid", NumCols: 1}, + 472: {Name: "sizemid_y", NumCols: 1}, +} + +// nwnmdlcompEmitterControllers are emitter controller IDs specific to nwnmdlcomp. +// Ref: load_binary.pl controller_type(ID,5,Name) :- compiler(nwnmdlcomp) -- lines 1208-1245 +var nwnmdlcompEmitterControllers = map[uint32]ControllerDef{ + 464: {Name: "alphamid", NumCols: 1}, + 468: {Name: "colormid", NumCols: 3}, + 480: {Name: "percentstart", NumCols: 1}, + 481: {Name: "percentmid", NumCols: 1}, + 482: {Name: "percentend", NumCols: 1}, + 484: {Name: "sizemid", NumCols: 1}, + 488: {Name: "sizemid_y", NumCols: 1}, +} \ No newline at end of file diff --git a/pkg/mdl/fileutil.go b/pkg/mdl/fileutil.go new file mode 100644 index 0000000..fc391ed --- /dev/null +++ b/pkg/mdl/fileutil.go @@ -0,0 +1,43 @@ +package mdl + +import ( + "bufio" + "io" + "os" +) + +// writeBufferSize controls the bufio.Writer wrapped around the temp file +// in atomicWriteFile. ASCII MDLs stream out via many small fmt.Fprintf +// calls; without buffering each one becomes a write syscall. +const writeBufferSize = 64 * 1024 + +func atomicWriteFile(path string, writeFn func(io.Writer) error) error { + var origMode os.FileMode + if info, err := os.Stat(path); err == nil { + origMode = info.Mode() + } + + tmp := path + ".tmp" + f, err := os.Create(tmp) + if err != nil { + return err + } + bw := bufio.NewWriterSize(f, writeBufferSize) + writeErr := writeFn(bw) + if writeErr == nil { + writeErr = bw.Flush() + } + closeErr := f.Close() + if writeErr != nil { + os.Remove(tmp) + return writeErr + } + if closeErr != nil { + os.Remove(tmp) + return closeErr + } + if origMode != 0 { + os.Chmod(tmp, origMode) + } + return os.Rename(tmp, path) +} diff --git a/pkg/mdl/format.go b/pkg/mdl/format.go new file mode 100644 index 0000000..708d2ee --- /dev/null +++ b/pkg/mdl/format.go @@ -0,0 +1,93 @@ +package mdl + +import ( + "strconv" + "strings" +) + +// fmtFloat formats a float32 in %g style, matching Prolog's format('~g'). +// +// Equivalent to fmt.Sprintf("%g", v) but ~10× faster: no reflection and +// the AppendFloat path uses the same Ryu/Grisu shortest-roundtrip +// algorithm, so output is bit-identical for all finite float32 values. +func fmtFloat(v float32) string { + return string(appendFloat(nil, v)) +} + +func fmtVec3(v Vec3) string { + b := make([]byte, 0, 36) + b = appendFloat(b, v.X) + b = append(b, ' ') + b = appendFloat(b, v.Y) + b = append(b, ' ') + b = appendFloat(b, v.Z) + return string(b) +} + +// appendFloat appends v in %g format to b. bitSize=32 mirrors fmt's +// default behaviour for float32 arguments — i.e. the shortest decimal +// that roundtrips back to the same float32, not float64. +func appendFloat(b []byte, v float32) []byte { + return strconv.AppendFloat(b, float64(v), 'g', -1, 32) +} + +// appendVec3 appends "X Y Z" in %g format with single-space separators. +func appendVec3(b []byte, v Vec3) []byte { + b = appendFloat(b, v.X) + b = append(b, ' ') + b = appendFloat(b, v.Y) + b = append(b, ' ') + b = appendFloat(b, v.Z) + return b +} + +// indentBytes is a precomputed two-space indent string. The writer only +// uses indent levels 2, 3, 4, and 6 in practice; values past those use +// a dynamic build path that's still cheaper than fmt.Fprintf. +var indentBytes = []byte(" ") // 8 levels × 2 spaces + +// appendIndent appends `level` two-space groups to b, falling back to +// dynamic length for the rare deep-indent case. +func appendIndent(b []byte, level int) []byte { + if level <= 0 { + return b + } + n := level * 2 + if n <= len(indentBytes) { + return append(b, indentBytes[:n]...) + } + for i := 0; i < level; i++ { + b = append(b, ' ', ' ') + } + return b +} + +// camelCase converts an emitter enum string to its CamelCase form. +// Ref: output_models.pl camel/2 +var camelMap = map[string]string{ + "fountain": "Fountain", + "single": "Single", + "explosion": "Explosion", + "lightning": "Lightning", + "normal": "Normal", + "linked": "Linked", + "billboard_to_local_z": "Billboard_to_Local_Z", + "billboard_to_world_z": "Billboard_to_World_Z", + "aligned_to_world_z": "Aligned_to_World_Z", + "aligned_to_particle_dir": "Aligned_to_Particle_Dir", + "motion_blur": "Motion_Blur", + "punch-through": "Punch-Through", + "lighten": "Lighten", + "trail": "Trail", + "bezier": "Bezier", + "gravity": "Gravity", + "dummy": "Dummy", +} + +func camelCase(s string) string { + lower := strings.ToLower(s) + if cc, ok := camelMap[lower]; ok { + return cc + } + return s +} diff --git a/pkg/mdl/halfedge.go b/pkg/mdl/halfedge.go new file mode 100644 index 0000000..0aff762 --- /dev/null +++ b/pkg/mdl/halfedge.go @@ -0,0 +1,40 @@ +package mdl + +// DirectedEdge identifies a directed edge in a triangle mesh: an oriented +// vertex pair as it appears in the winding order of some face. +type DirectedEdge struct{ V0, V1 int32 } + +// DirectedEdgeFace records the third vertex of the triangle that contains a +// given directed edge, plus the face index. +type DirectedEdgeFace struct { + V3 int32 + Face int +} + +// BuildDirectedEdgeMap returns a map from each directed edge V0->V1 to the +// list of (V3, faceIndex) pairs whose triangle contains that directed edge in +// its winding order. Each face contributes three directed edges. +// +// Mirrors make_checks.pl clockwise_edge/6 (line 5145). +func BuildDirectedEdgeMap(faces []Face) map[DirectedEdge][]DirectedEdgeFace { + m := make(map[DirectedEdge][]DirectedEdgeFace, len(faces)*3) + for fi, f := range faces { + v := f.Verts + m[DirectedEdge{v[0], v[1]}] = append(m[DirectedEdge{v[0], v[1]}], DirectedEdgeFace{V3: v[2], Face: fi}) + m[DirectedEdge{v[1], v[2]}] = append(m[DirectedEdge{v[1], v[2]}], DirectedEdgeFace{V3: v[0], Face: fi}) + m[DirectedEdge{v[2], v[0]}] = append(m[DirectedEdge{v[2], v[0]}], DirectedEdgeFace{V3: v[1], Face: fi}) + } + return m +} + +// IsExteriorDirectedEdge reports whether V0->V1 has no opposite half-edge +// V1->V0 in the directed edge map. A half-edge with no twin is the boundary +// of an "open" mesh region. Mirrors exterior_edge/6 in make_checks.pl line +// 5132. +func IsExteriorDirectedEdge(m map[DirectedEdge][]DirectedEdgeFace, v0, v1 int32) bool { + if _, fwd := m[DirectedEdge{v0, v1}]; !fwd { + return false + } + _, back := m[DirectedEdge{v1, v0}] + return !back +} diff --git a/pkg/mdl/halfedge_test.go b/pkg/mdl/halfedge_test.go new file mode 100644 index 0000000..57a7203 --- /dev/null +++ b/pkg/mdl/halfedge_test.go @@ -0,0 +1,30 @@ +package mdl + +import "testing" + +func TestBuildDirectedEdgeMap_AndExterior(t *testing.T) { + faces := []Face{ + {Verts: [3]int32{0, 1, 2}}, + {Verts: [3]int32{0, 2, 3}}, + } + m := BuildDirectedEdgeMap(faces) + + if got := len(m); got != 6 { + t.Errorf("expected 6 directed edges across 2 triangles, got %d", got) + } + if !IsExteriorDirectedEdge(m, 0, 1) { + t.Error("0->1 should be exterior") + } + if IsExteriorDirectedEdge(m, 0, 2) { + t.Error("0->2 has twin 2->0; should not be exterior") + } +} + +func TestDirectedEdgeMap_RecordsThirdVertex(t *testing.T) { + faces := []Face{{Verts: [3]int32{4, 5, 6}}} + m := BuildDirectedEdgeMap(faces) + got := m[DirectedEdge{4, 5}] + if len(got) != 1 || got[0].V3 != 6 || got[0].Face != 0 { + t.Fatalf("expected DirectedEdgeFace{V3:6,Face:0}, got %+v", got) + } +} diff --git a/pkg/mdl/mesh_attrs.go b/pkg/mdl/mesh_attrs.go new file mode 100644 index 0000000..4d9d010 --- /dev/null +++ b/pkg/mdl/mesh_attrs.go @@ -0,0 +1,186 @@ +package mdl + +// vertexAttrPresence captures which per-vertex companion arrays (Normals, +// Colors, Tangents, Skin.Weights, Dangly.Constraints) are populated and in +// lockstep with mesh.Verts. Repair passes that mutate vertex count must keep +// the present arrays in sync, so all such passes go through this bag of +// flags rather than re-deriving them ad-hoc. +type vertexAttrPresence struct { + Normals bool + Colors bool + Tangents bool + Skin bool + Dangly bool +} + +// vertexAttrsOf inspects n's mesh and returns the presence flags. A +// companion array counts as "present" only if its length matches Verts; +// mismatched legacy data is treated as absent so the caller doesn't trip an +// out-of-range index when fanning out. +func vertexAttrsOf(n *Node) vertexAttrPresence { + if n == nil || n.Mesh == nil { + return vertexAttrPresence{} + } + m := n.Mesh + a := vertexAttrPresence{ + Normals: len(m.Normals) == len(m.Verts), + Colors: len(m.Colors) == len(m.Verts), + Tangents: len(m.Tangents) == len(m.Verts), + } + if n.Skin != nil { + a.Skin = len(n.Skin.Weights) == len(m.Verts) + } + if n.Dangly != nil { + a.Dangly = len(n.Dangly.Constraints) == len(m.Verts) + } + return a +} + +// compactVertexAttrs filters every present per-vertex array on n to keep +// only entries whose mask[i] is true. mesh.Verts must have already been +// scanned to produce mask. The caller is responsible for remapping face +// vertex indices afterwards (see remapForKept). +func compactVertexAttrs(n *Node, attrs vertexAttrPresence, mask []bool) { + m := n.Mesh + m.Verts = filterByMask(m.Verts, mask) + if attrs.Normals { + m.Normals = filterByMask(m.Normals, mask) + } + if attrs.Colors { + m.Colors = filterByMask(m.Colors, mask) + } + if attrs.Tangents { + m.Tangents = filterByMask(m.Tangents, mask) + } + if attrs.Skin { + n.Skin.Weights = filterVertexWeights(n.Skin.Weights, mask) + } + if attrs.Dangly { + n.Dangly.Constraints = filterByMask(n.Dangly.Constraints, mask) + } +} + +// appendDefaultVertexAttrs appends a default value to each present +// per-vertex array, used by repair passes that synthesise new vertices +// (e.g. chamfer corner vertices) without an interpolation source. The +// defaults match what the original Prolog tool emits. +func appendDefaultVertexAttrs(n *Node, attrs vertexAttrPresence) { + m := n.Mesh + if attrs.Normals { + m.Normals = append(m.Normals, Vec3{Z: 1}) + } + if attrs.Colors { + m.Colors = append(m.Colors, Vec3{X: 1, Y: 1, Z: 1}) + } + if attrs.Tangents { + m.Tangents = append(m.Tangents, Vec4{X: 1, W: 1}) + } + if attrs.Skin { + n.Skin.Weights = append(n.Skin.Weights, VertexWeight{}) + } + if attrs.Dangly { + n.Dangly.Constraints = append(n.Dangly.Constraints, 0) + } +} + +// filterByMask returns src filtered to indices flagged true in mask. +// Generic so it works for Vec3, Vec4, float32, etc. +func filterByMask[T any](src []T, mask []bool) []T { + out := make([]T, 0, len(src)) + for i, v := range src { + if i < len(mask) && mask[i] { + out = append(out, v) + } + } + return out +} + +// filterVertexWeights is filterByMask with deep-clone for VertexWeight, +// which carries slice fields that would otherwise alias the source. +func filterVertexWeights(src []VertexWeight, mask []bool) []VertexWeight { + out := make([]VertexWeight, 0, len(src)) + for i, w := range src { + if i < len(mask) && mask[i] { + out = append(out, CloneVertexWeight(w)) + } + } + return out +} + +// remapForKept returns an old-index -> new-index map matching the result of +// filterByMask. Indices not kept map to -1 so callers can detect them. +// Returns nil when every index is kept (i.e. nothing was filtered). +func remapForKept(mask []bool) []int32 { + all := true + for _, u := range mask { + if !u { + all = false + break + } + } + if all { + return nil + } + remap := make([]int32, len(mask)) + next := int32(0) + for i, u := range mask { + if u { + remap[i] = next + next++ + } else { + remap[i] = -1 + } + } + return remap +} + +// remapFaceVerts rewrites face V0/V1/V2 indices through remap (built by +// remapForKept). Out-of-range or dropped (-1) entries are left untouched +// so callers can spot dangling references. +func remapFaceVerts(faces []Face, remap []int32) { + if remap == nil { + return + } + for fi := range faces { + f := &faces[fi] + for k := 0; k < 3; k++ { + old := f.Verts[k] + if int(old) >= 0 && int(old) < len(remap) && remap[old] >= 0 { + f.Verts[k] = remap[old] + } + } + } +} + +// remapFaceUVs is remapFaceVerts for the UV channel (face.UVs). Used after +// compacting a TVerts channel to align face references. +func remapFaceUVs(faces []Face, remap []int32) { + if remap == nil { + return + } + for fi := range faces { + f := &faces[fi] + for k := 0; k < 3; k++ { + old := f.UVs[k] + if int(old) >= 0 && int(old) < len(remap) && remap[old] >= 0 { + f.UVs[k] = remap[old] + } + } + } +} + +// remapTexIndices is remapFaceVerts for an extra texture-channel (per-face +// [3]int32 index). Used after compacting TVerts1/2/3. +func remapTexIndices(idxs [][3]int32, remap []int32) { + if remap == nil { + return + } + for fi := range idxs { + for k := 0; k < 3; k++ { + old := idxs[fi][k] + if int(old) >= 0 && int(old) < len(remap) && remap[old] >= 0 { + idxs[fi][k] = remap[old] + } + } + } +} diff --git a/pkg/mdl/nearmatch.go b/pkg/mdl/nearmatch.go new file mode 100644 index 0000000..3a05d8e --- /dev/null +++ b/pkg/mdl/nearmatch.go @@ -0,0 +1,108 @@ +package mdl + +import "strings" + +// NearMatch implements fuzzy parameter name matching for ASCII MDL parsing. +// The Prolog parser uses near_match/2 (and dwim_match/2) on every keyword to +// tolerate common typos and alternate spellings found in old community models. +// +// Matching strategy: +// 1. Exact match (fast path) +// 2. Known aliases (canonical misspellings from the MDL format) +// 3. Levenshtein distance <= 2 within the valid parameter set +// +// Ref: load_models.pl near_match/2 (line 904) + +// knownAliases maps common misspellings/variants to their canonical names. +// These are guaranteed matches that don't need fuzzy comparison. +var knownAliases = map[string]string{ + "setfillumcolor": "selfillumcolor", + "n_dynamic_type": "ndynamictype", + "filedependancy": "filedependency", + "texture0": "bitmap", + "isdynamic": "ndynamictype", +} + +// NearMatchParam attempts to match input against a set of valid parameter names. +// Returns the matched name and true, or empty string and false. +func NearMatchParam(input string, validParams []string) (string, bool) { + lower := strings.ToLower(input) + + // Exact match + for _, p := range validParams { + if lower == p { + return p, true + } + } + + // Known alias + if canonical, ok := knownAliases[lower]; ok { + for _, p := range validParams { + if canonical == p { + return p, true + } + } + } + + // Fuzzy match: Levenshtein distance <= 2. Tie-break by lexicographic name + // so results do not depend on validParams slice order. + bestDist := 3 + bestMatch := "" + for _, p := range validParams { + d := levenshtein(lower, p) + if d < bestDist || (d == bestDist && (bestMatch == "" || p < bestMatch)) { + bestDist = d + bestMatch = p + } + } + if bestDist <= 2 && bestMatch != "" { + return bestMatch, true + } + + return "", false +} + +// levenshtein computes the edit distance between two strings. +func levenshtein(a, b string) int { + if len(a) == 0 { + return len(b) + } + if len(b) == 0 { + return len(a) + } + + ra := []rune(a) + rb := []rune(b) + la := len(ra) + lb := len(rb) + + // Early exit: if length difference > 2, distance must be > 2 + if la-lb > 2 || lb-la > 2 { + return 3 + } + + prev := make([]int, lb+1) + curr := make([]int, lb+1) + + for j := 0; j <= lb; j++ { + prev[j] = j + } + + for i := 1; i <= la; i++ { + curr[0] = i + for j := 1; j <= lb; j++ { + cost := 1 + if ra[i-1] == rb[j-1] { + cost = 0 + } + curr[j] = min( + prev[j]+1, + curr[j-1]+1, + prev[j-1]+cost, + ) + } + prev, curr = curr, prev + } + + return prev[lb] +} diff --git a/pkg/mdl/oracle_test.go b/pkg/mdl/oracle_test.go new file mode 100644 index 0000000..fd90272 --- /dev/null +++ b/pkg/mdl/oracle_test.go @@ -0,0 +1,899 @@ +// oracle_test.go — compare our compiler output against NWN:EE game-compiled binaries. +// +// Workflow: +// 1. Copy tests/fixtures/oracle/ascii/*.mdl to your NWN Windows machine's +// development folder (usually Documents\Neverwinter Nights\development\). +// 2. Launch NWN:EE and load an area. Place each model as a placeable/creature, +// or use the module editor to reference it. +// 3. Open the debug console (~~) and run: compileloadedmodels +// (or load each model manually and use the toolset's model compiler) +// 4. Copy the resulting binary .mdl files into tests/fixtures/oracle/game_binary/. +// The filenames must match the ascii source (same basename, lowercase is fine). +// 5. Run: go test ./pkg/mdl/ -run TestOracle -v +// +// The test compares our binary output against the game's semantically — +// it does NOT do a byte-for-byte diff because the game generates tangents, +// bitangents, and may reorder some data differently. Instead it checks: +// +// • Model/geometry name, classification, supermodel +// • Node count and names +// • Node hierarchy (parent names) +// • Mesh vertex and face counts per node +// • Animation count, names, and per-animation event counts +// • Light color, radius, multiplier per light node +// • Emitter birth rate, life expectancy, velocity per emitter node +// • Controller type IDs present per node +// +// Any field difference is reported with both values so you can judge whether +// it is a real bug or a known acceptable divergence (e.g. tangent gen). +package mdl + +import ( + "bytes" + "fmt" + "math" + "os" + "path/filepath" + "sort" + "strings" + "testing" +) + +const oracleAsciiDir = "../../tests/fixtures/oracle/ascii" +const oracleBinaryDir = "../../tests/fixtures/oracle/game_binary" + +// Tangent-only oracle pairs live in their own directory because the +// ASCII source and game binary often come from different revisions of +// the same model — the tile geometry, node names, and face counts +// differ enough to break TestOracleCompare's structural diff, but the +// per-vertex tangent comparison only needs matching world positions. +const tangentOracleAsciiDir = "../../tests/fixtures/oracle/tangent_pairs/ascii" +const tangentOracleBinaryDir = "../../tests/fixtures/oracle/tangent_pairs/game_binary" + +// Skip-list: filenames seen in dump folders that we deliberately do +// NOT include as oracle fixtures because no usable ASCII source +// exists. The binary lives only inside a hak (game-compiled, never +// re-emitted as ASCII), so we cannot do an apples-to-apples +// ASCII → compile → diff comparison. If you ever recover an ASCII +// source for one of these, drop it into the matching directory and +// remove the entry here. See tests/fixtures/oracle/README.md for the +// full skip list and rationale. +// +// This list is informational — it is not consulted at runtime; any +// fixture that does live in ascii/ and game_binary/ is exercised by +// the oracle tests. The comment exists so the next person adding +// fixtures knows why these specific filenames are missing. +var hakBinaryOnlySkipList = []string{ + "tin01_a03_01.mdl", + "tin01_b14_01.mdl", + "tin01_i01_01.mdl", + "tin01_z11_01.mdl", + "TIN01_Z10_01.mdl", + "tin01_f01_09.mdl", + "a_ba.mdl", + "a_ba_casts.mdl", + "a_ba_custom.mdl", + "a_ba_med_weap.mdl", + "a_ba_non_combat.mdl", + "fx_flame01.mdl", + "gi_armor01.mdl", + // ashto_05[1-4]: game binaries lack baked tangents — useless for + // tangent oracle, no value as a general fixture. + "ashto_051.mdl", + "ashto_052.mdl", + "ashto_053.mdl", + "ashto_054.mdl", +} +var _ = hakBinaryOnlySkipList // keep referenced for go vet + +// TestOracleCompare is skipped automatically when no game_binary fixtures exist. +// Drop the game-compiled binaries in game_binary/ and re-run to activate. +func TestOracleCompare(t *testing.T) { + entries, err := os.ReadDir(oracleBinaryDir) + if err != nil || len(entries) == 0 { + t.Skip("no game_binary fixtures — see oracle_test.go header for setup instructions") + } + + for _, e := range entries { + if e.IsDir() || !strings.HasSuffix(strings.ToLower(e.Name()), ".mdl") { + continue + } + name := e.Name() + t.Run(name, func(t *testing.T) { + t.Parallel() + compareOracle(t, name) + }) + } +} + +func compareOracle(t *testing.T, binaryName string) { + t.Helper() + + gamePath := filepath.Join(oracleBinaryDir, binaryName) + gameData, err := os.ReadFile(gamePath) + if err != nil { + t.Fatalf("read game binary: %v", err) + } + if len(gameData) < 12 { + t.Skipf("game binary %s is too small (%d bytes) — likely truncated by a crash", binaryName, len(gameData)) + } + + asciiPath := findOracleAscii(t, binaryName) + runOracleDiff(t, binaryName, asciiPath, gameData) +} + +// findOracleAscii matches the binary filename to an ascii source file +// case-insensitively (game compiler lowercases names). +func findOracleAscii(t *testing.T, binaryName string) string { + t.Helper() + base := strings.ToLower(strings.TrimSuffix(binaryName, filepath.Ext(binaryName))) + entries, err := os.ReadDir(oracleAsciiDir) + if err != nil { + t.Fatalf("read ascii dir: %v", err) + } + for _, e := range entries { + if strings.ToLower(strings.TrimSuffix(e.Name(), filepath.Ext(e.Name()))) == base { + return filepath.Join(oracleAsciiDir, e.Name()) + } + } + t.Fatalf("no ascii source for %s in %s", binaryName, oracleAsciiDir) + return "" +} + +func findTangentOracleAscii(t *testing.T, binaryName string) string { + t.Helper() + base := strings.ToLower(strings.TrimSuffix(binaryName, filepath.Ext(binaryName))) + entries, err := os.ReadDir(tangentOracleAsciiDir) + if err != nil { + t.Fatalf("read tangent ascii dir: %v", err) + } + for _, e := range entries { + if strings.ToLower(strings.TrimSuffix(e.Name(), filepath.Ext(e.Name()))) == base { + return filepath.Join(tangentOracleAsciiDir, e.Name()) + } + } + t.Fatalf("no ascii source for %s in %s", binaryName, tangentOracleAsciiDir) + return "" +} + +// oracleDiff returns a list of human-readable differences between two models. +// It intentionally tolerates differences in tangent/bitangent data and AABB +// tree internal structure, which the game compiler generates but we may not. +func oracleDiff(ours, game *Model) []string { + var diffs []string + add := func(format string, args ...any) { + diffs = append(diffs, fmt.Sprintf(format, args...)) + } + + // ── Top-level model fields ──────────────────────────────────────────────── + if !strEqCI(ours.Name, game.Name) { + add("model name: ours=%q game=%q", ours.Name, game.Name) + } + if !strEqCI(ours.SuperModel, game.SuperModel) { + add("supermodel: ours=%q game=%q", ours.SuperModel, game.SuperModel) + } + if !strEqCI(ours.Classification, game.Classification) { + add("classification: ours=%q game=%q", ours.Classification, game.Classification) + } + + // ── Node inventory ──────────────────────────────────────────────────────── + ourNodes := nodeIndexFromSlice(ours.Nodes) + gameNodes := nodeIndexFromSlice(game.Nodes) + + for name, on := range ourNodes { + gn, ok := gameNodes[name] + if !ok { + add("node %q: present in ours, missing in game", name) + continue + } + diffNode(name, on, gn, add) + } + for name := range gameNodes { + if _, ok := ourNodes[name]; !ok { + add("node %q: missing in ours, present in game", name) + } + } + + // ── Animation count / names / events ────────────────────────────────────── + if len(ours.Animations) != len(game.Animations) { + add("animation count: ours=%d game=%d", len(ours.Animations), len(game.Animations)) + } + + ourAnims := animNameSet(ours.Animations) + gameAnims := animNameSet(game.Animations) + for a := range ourAnims { + if !gameAnims[a] { + add("anim %q: present in ours, missing in game", a) + } + } + for a := range gameAnims { + if !ourAnims[a] { + add("anim %q: missing in ours, present in game", a) + } + } + + ourAnimByName := animByLowerName(ours.Animations) + gameAnimByName := animByLowerName(game.Animations) + for animName, oa := range ourAnimByName { + ga, ok := gameAnimByName[animName] + if !ok { + continue + } + if len(oa.Events) != len(ga.Events) { + add("anim %q: event count ours=%d game=%d", animName, len(oa.Events), len(ga.Events)) + } + } + + sort.Strings(diffs) + return diffs +} + +func diffNode(name string, ours, game *Node, add func(string, ...any)) { + // Parent name + if !strEqCI(ours.Parent, game.Parent) { + add("node %q: parent ours=%q game=%q", name, ours.Parent, game.Parent) + } + + // Mesh geometry counts + ourHasMesh := ours.Mesh != nil + gameHasMesh := game.Mesh != nil + if ourHasMesh != gameHasMesh { + add("node %q: has_mesh ours=%v game=%v", name, ourHasMesh, gameHasMesh) + return + } + if ourHasMesh { + ov, gv := len(ours.Mesh.Verts), len(game.Mesh.Verts) + of, gf := len(ours.Mesh.Faces), len(game.Mesh.Faces) + // Our vertex count = faces*3 (expanded); game may differ by tangent gen. + // Compare face count which must be identical. + if of != gf { + add("node %q: face count ours=%d game=%d", name, of, gf) + } + // Vertex counts intentionally differ: we always expand to faces×3, + // the game deduplicates identical verts. Log for information only. + if ov != gv { + add("INFO node %q: vertex count ours=%d game=%d (game deduplicates; ours expands)", name, ov, gv) + } + } + + // Light static controller values + ourHasLight := ours.Light != nil + gameHasLight := game.Light != nil + if ourHasLight != gameHasLight { + add("node %q: has_light ours=%v game=%v", name, ourHasLight, gameHasLight) + } else if ourHasLight { + ol, gl := ours.Light, game.Light + if !approxEqVec3(ol.Color, gl.Color, 0.01) { + add("node %q: light color ours=%v game=%v", name, ol.Color, gl.Color) + } + if !approxEqF32(ol.Radius, gl.Radius, 0.01) { + add("node %q: light radius ours=%v game=%v", name, ol.Radius, gl.Radius) + } + if !approxEqF32(ol.Multiplier, gl.Multiplier, 0.01) { + add("node %q: light multiplier ours=%v game=%v", name, ol.Multiplier, gl.Multiplier) + } + } + + // Emitter static values (compiled as controllers) + ourHasEmitter := ours.Emitter != nil + gameHasEmitter := game.Emitter != nil + if ourHasEmitter != gameHasEmitter { + add("node %q: has_emitter ours=%v game=%v", name, ourHasEmitter, gameHasEmitter) + } else if ourHasEmitter { + oe, ge := ours.Emitter, game.Emitter + if !approxEqF32(oe.BirthRate, ge.BirthRate, 0.01) { + add("node %q: emitter birthrate ours=%v game=%v", name, oe.BirthRate, ge.BirthRate) + } + if !approxEqF32(oe.LifeExp, ge.LifeExp, 0.01) { + add("node %q: emitter lifeexp ours=%v game=%v", name, oe.LifeExp, ge.LifeExp) + } + if !approxEqF32(oe.Velocity, ge.Velocity, 0.01) { + add("node %q: emitter velocity ours=%v game=%v", name, oe.Velocity, ge.Velocity) + } + } + +} + +// ── helpers ─────────────────────────────────────────────────────────────────── + +func strEqCI(a, b string) bool { + return strings.EqualFold(a, b) +} + +func animNameSet(anims []Animation) map[string]bool { + m := make(map[string]bool, len(anims)) + for _, a := range anims { + m[strings.ToLower(a.Name)] = true + } + return m +} + +func animByLowerName(anims []Animation) map[string]Animation { + m := make(map[string]Animation, len(anims)) + for _, a := range anims { + m[strings.ToLower(a.Name)] = a + } + return m +} + +func approxEqF32(a, b float32, tol float64) bool { + return math.Abs(float64(a)-float64(b)) <= tol +} + +func approxEqVec3(a, b Vec3, tol float64) bool { + return approxEqF32(a.X, b.X, tol) && approxEqF32(a.Y, b.Y, tol) && approxEqF32(a.Z, b.Z, tol) +} + +// TestOracleDumpCompare compares our compiler output against the game-compiled +// binaries extracted from a full area dump (modelcompiler output zip). +// It sources ASCII from the full NWN:EE decompiled stock model folder. +// +// Defaults (override with env vars): +// DUMP_BINARY_DIR — folder of game-compiled .mdl binaries (default: /tmp/modelcompiler_dump/modelcompiler) +// DECOMPILED_DIR — folder of decompiled ASCII .mdl sources (default: ~/Downloads/1.86.8193.34.1 Decompiled Models (One Folder)) +func TestOracleDumpCompare(t *testing.T) { + dumpDir := os.Getenv("DUMP_BINARY_DIR") + if dumpDir == "" { + dumpDir = "/tmp/modelcompiler_dump/modelcompiler" + } + asciiDir := os.Getenv("DECOMPILED_DIR") + if asciiDir == "" { + asciiDir = "/Users/james/Downloads/1.86.8193.34.1 Decompiled Models (One Folder)" + } + + entries, err := os.ReadDir(dumpDir) + if err != nil || len(entries) == 0 { + t.Skipf("dump binary dir not available: %v", err) + } + + // Build case-insensitive index of available ASCII sources. + asciiIndex := map[string]string{} // lower-basename → full path + if ae, err := os.ReadDir(asciiDir); err == nil { + for _, e := range ae { + base := strings.ToLower(strings.TrimSuffix(e.Name(), filepath.Ext(e.Name()))) + asciiIndex[base] = filepath.Join(asciiDir, e.Name()) + } + } + + var skipped int + for _, e := range entries { + if e.IsDir() || !strings.HasSuffix(strings.ToLower(e.Name()), ".mdl") { + continue + } + name := e.Name() + base := strings.ToLower(strings.TrimSuffix(name, filepath.Ext(name))) + asciiPath, ok := asciiIndex[base] + if !ok { + skipped++ + continue + } + gamePath := filepath.Join(dumpDir, name) + t.Run(name, func(t *testing.T) { + t.Parallel() + compareDumpOracle(t, name, asciiPath, gamePath) + }) + } + if skipped > 0 { + t.Logf("skipped %d models with no ASCII source (non-stock or hak-only)", skipped) + } +} + +func compareDumpOracle(t *testing.T, name, asciiPath, gamePath string) { + t.Helper() + + gameData, err := os.ReadFile(gamePath) + if err != nil { + t.Fatalf("read game binary: %v", err) + } + if len(gameData) < 12 { + t.Skipf("game binary too small (%d bytes) — likely truncated", len(gameData)) + } + + runOracleDiff(t, name, asciiPath, gameData) +} + +// runOracleDiff compiles the ASCII source, decompiles both binaries, and diffs. +func runOracleDiff(t *testing.T, name, asciiPath string, gameData []byte) { + t.Helper() + + pr, err := ParseFile(asciiPath) + if err != nil { + t.Skipf("parse ascii: %v", err) + } + var ourBuf bytes.Buffer + if err := Compile(pr.Model, &ourBuf); err != nil { + t.Fatalf("compile: %v", err) + } + ourData := ourBuf.Bytes() + + ourModel, err := Decompile(bytes.NewReader(ourData), int64(len(ourData))) + if err != nil { + t.Fatalf("decompile our binary: %v", err) + } + gameModel, err := Decompile(bytes.NewReader(gameData), int64(len(gameData))) + if err != nil { + t.Fatalf("decompile game binary: %v", err) + } + + diffs := oracleDiff(ourModel, gameModel) + failures := 0 + for _, d := range diffs { + if strings.HasPrefix(d, "INFO ") { + t.Logf("%s", d) + } else { + t.Errorf("%s", d) + failures++ + } + } + if failures == 0 { + t.Logf("✓ %s ours=%d bytes game=%d bytes", name, len(ourData), len(gameData)) + } +} + +// TestOracleTangents compares per-vertex tangent direction between our +// compiler and the game compiler for every fixture in game_binary/. Both +// compilers run independent tangent-generation passes (we use Mikktspace, +// the game uses its own algorithm) so an exact match is not expected; +// instead we check that the tangent xyz vectors point in the same +// direction (allowing sign flip, since each compiler may pick opposite +// W handedness). +// +// Approach: walk faces in lockstep (face order is preserved per +// TestOracleCompare's face-count invariant), match each face's 3 corners +// by world-space position (since the game may dedupe and reorder +// in-face vertex slots), then compute |dot(ours.xyz, game.xyz)| at each +// matched corner. A value of 1.0 means perfectly parallel tangents; 0.0 +// means orthogonal. We aggregate per node and surface stats so a +// regression in our tangent generation would visibly drop the average. +// +// Currently informational-only — once we see real numbers across the +// fixture set we can replace the t.Logf with a t.Errorf threshold. +func TestOracleTangents(t *testing.T) { + entries, err := os.ReadDir(tangentOracleBinaryDir) + if err != nil || len(entries) == 0 { + t.Skip("no tangent_pairs/game_binary fixtures — see oracle_test.go header for setup instructions") + } + + for _, e := range entries { + if e.IsDir() || !strings.HasSuffix(strings.ToLower(e.Name()), ".mdl") { + continue + } + name := e.Name() + t.Run(name, func(t *testing.T) { + t.Parallel() + compareOracleTangents(t, name) + }) + } +} + +func compareOracleTangents(t *testing.T, binaryName string) { + t.Helper() + + gameData, err := os.ReadFile(filepath.Join(tangentOracleBinaryDir, binaryName)) + if err != nil { + t.Fatalf("read game binary: %v", err) + } + if len(gameData) < 12 { + t.Skipf("game binary %s too small (%d bytes)", binaryName, len(gameData)) + } + + asciiPath := findTangentOracleAscii(t, binaryName) + pr, err := ParseFile(asciiPath) + if err != nil { + t.Skipf("parse ascii: %v", err) + } + + // Decompile the game binary first so we can detect which meshes the + // game compiler chose to bake tangents into. Many EE tile ASCII + // sources don't carry an explicit "renderhint NormalAndSpecMapped" + // directive — the game compiler infers the renderhint from + // neighboring assets (e.g. a "_n.tga" normal-map sibling). Rather + // than chasing that heuristic, we simply mirror the game's choice: + // if the game baked tangents for a node, force our compiler to bake + // them too by setting RenderHint on the matching mesh. This gives + // the comparison something to actually compare without needing to + // hand-edit each fixture. + gameModel, err := Decompile(bytes.NewReader(gameData), int64(len(gameData))) + if err != nil { + t.Fatalf("decompile game binary: %v", err) + } + gameBaked := map[string]bool{} + for _, gn := range gameModel.Nodes { + if gn.Mesh != nil && len(gn.Mesh.Tangents) > 0 { + gameBaked[strings.ToLower(gn.Name)] = true + } + } + for _, on := range pr.Model.Nodes { + if on.Mesh != nil && gameBaked[strings.ToLower(on.Name)] && on.Mesh.RenderHint == "" { + on.Mesh.RenderHint = "NormalAndSpecMapped" + } + } + + var ourBuf bytes.Buffer + if err := Compile(pr.Model, &ourBuf); err != nil { + t.Fatalf("compile: %v", err) + } + ourData := ourBuf.Bytes() + + ourModel, err := Decompile(bytes.NewReader(ourData), int64(len(ourData))) + if err != nil { + t.Fatalf("decompile our binary: %v", err) + } + + gameNodes := nodeIndexFromSlice(gameModel.Nodes) + + type nodeStats struct { + matched, unmatched, badAlign int + dotSum float64 + } + var totals nodeStats + nodesWithTangents := 0 + + for _, on := range ourModel.Nodes { + if on.Mesh == nil || len(on.Mesh.Tangents) == 0 { + continue + } + gn, ok := gameNodes[strings.ToLower(on.Name)] + if !ok || gn.Mesh == nil || len(gn.Mesh.Tangents) == 0 { + continue + } + nodesWithTangents++ + + stats := compareNodeTangents(on, gn) + totals.matched += stats.matched + totals.unmatched += stats.unmatched + totals.badAlign += stats.badAlign + totals.dotSum += stats.dotSum + + if stats.matched > 0 { + mean := stats.dotSum / float64(stats.matched) + t.Logf(" node %q: matched=%d unmatched=%d badAlign=%d mean|dot|=%.4f", + on.Name, stats.matched, stats.unmatched, stats.badAlign, mean) + } + } + + if nodesWithTangents == 0 { + t.Skip("no nodes carry tangent data in either model") + } + if totals.matched == 0 { + t.Skip("no face corners could be position-matched between models") + } + mean := totals.dotSum / float64(totals.matched) + + // Per-fixture mean alignment must exceed this threshold. Empirical + // floor as of materials/SG vertKey fix is 0.969 (tin01_a16_02), with + // most fixtures at 0.98-1.00. We pick 0.96 as the regression bar so + // any drop in tangent quality across the full fixture set fails the + // test loudly. Tighten this once dedup parity work closes the + // remaining 1-3% bad-corner gap. + const meanAlignFloor = 0.96 + // Per-corner bad-alignment ratio must stay below this. A "bad" corner + // is one where |dot(ours.xyz, game.xyz)| < 0.5 (effectively pointing + // in different directions). The current floor is 3.2% (tin01_a16_02). + const badRatioCeiling = 0.05 + + badRatio := float64(totals.badAlign) / float64(totals.matched) + t.Logf("✓ %s nodes=%d corners matched=%d unmatched=%d badAlign=%d (%.1f%%) mean|dot|=%.4f", + binaryName, nodesWithTangents, totals.matched, totals.unmatched, + totals.badAlign, 100*badRatio, mean) + + if mean < meanAlignFloor { + t.Errorf("%s tangent mean|dot|=%.4f below floor %.4f — tangent generation regressed", + binaryName, mean, meanAlignFloor) + } + if badRatio > badRatioCeiling { + t.Errorf("%s bad-corner ratio %.1f%% above ceiling %.1f%% — too many tangents flipped/orthogonal", + binaryName, 100*badRatio, 100*badRatioCeiling) + } +} + +// compareNodeTangents walks two meshes in face-index lockstep, matches +// the 3 corners of each face by world-space position, and accumulates +// |dot(ours_tangent_xyz, game_tangent_xyz)| stats. Returns per-corner +// match counts and the sum of |dot| across matched corners. +func compareNodeTangents(ours, game *Node) struct { + matched, unmatched, badAlign int + dotSum float64 +} { + var s struct { + matched, unmatched, badAlign int + dotSum float64 + } + om, gm := ours.Mesh, game.Mesh + nFaces := len(om.Faces) + if nFaces > len(gm.Faces) { + nFaces = len(gm.Faces) + } + const posTol = float32(1e-3) + const alignTol = 0.5 + for fi := 0; fi < nFaces; fi++ { + of, gf := om.Faces[fi], gm.Faces[fi] + for j := 0; j < 3; j++ { + ovi := int(of.Verts[j]) + if ovi < 0 || ovi >= len(om.Verts) || ovi >= len(om.Tangents) { + s.unmatched++ + continue + } + op := om.Verts[ovi] + ot := om.Tangents[ovi] + + matchedK := -1 + for k := 0; k < 3; k++ { + gvi := int(gf.Verts[k]) + if gvi < 0 || gvi >= len(gm.Verts) { + continue + } + if approxEqVec3(op, gm.Verts[gvi], float64(posTol)) { + matchedK = gvi + break + } + } + if matchedK < 0 || matchedK >= len(gm.Tangents) { + s.unmatched++ + continue + } + gt := gm.Tangents[matchedK] + otv := Vec3{X: ot.X, Y: ot.Y, Z: ot.Z} + gtv := Vec3{X: gt.X, Y: gt.Y, Z: gt.Z} + otn := vecNormalize(otv) + gtn := vecNormalize(gtv) + if vecLen(otv) < 1e-6 || vecLen(gtv) < 1e-6 { + s.unmatched++ + continue + } + dot := math.Abs(float64(vecDot(otn, gtn))) + s.dotSum += dot + s.matched++ + if dot < alignTol { + s.badAlign++ + } + } + } + return s +} + +// TestOracleCompileAll ensures every ascii oracle fixture compiles and +// decompiles without error — no game binary needed. +func TestOracleCompileAll(t *testing.T) { + entries, err := os.ReadDir(oracleAsciiDir) + if err != nil { + t.Fatalf("read oracle ascii dir: %v", err) + } + if len(entries) == 0 { + t.Skip("no oracle ascii fixtures found") + } + for _, e := range entries { + if e.IsDir() || !strings.HasSuffix(strings.ToLower(e.Name()), ".mdl") { + continue + } + name := e.Name() + t.Run(name, func(t *testing.T) { + t.Parallel() + path := filepath.Join(oracleAsciiDir, name) + pr, err := ParseFile(path) + if err != nil { + t.Fatalf("parse: %v", err) + } + var buf bytes.Buffer + if err := Compile(pr.Model, &buf); err != nil { + t.Fatalf("compile: %v", err) + } + data := buf.Bytes() + m2, err := Decompile(bytes.NewReader(data), int64(len(data))) + if err != nil { + t.Fatalf("decompile: %v", err) + } + if len(m2.Nodes) == 0 { + t.Error("decompiled model has no nodes") + } + t.Logf("OK nodes=%d binary=%d bytes", len(m2.Nodes), len(data)) + }) + } +} + +// vertParityBaseline records the known per-mesh-node delta between our +// compiler's GPU vertex count and the game compiler's, expressed as +// (ours - game). Default expectation for any mesh node not listed here +// is **exactly zero** — adding a fixture or regressing dedup will fail +// the test with a clear delta. +// +// The non-zero entries below document genuine compiler-philosophy +// differences (most prominently: the game does not bit-deduplicate +// face-corner GPU vertices the way we do, so per-corner data ends up +// duplicated in body-part and animated-mesh outputs even when the +// resulting triangle attributes are bit-identical). These are not bugs +// in either compiler's output — both produce visually identical render +// output — but they are real binary-level differences worth gating. +// +// To improve a baseline (smaller |delta|), edit the entry. To eliminate +// a divergence, remove the entry entirely. To add a fixture, leave it +// out unless it diverges; this forces parity to be the default. +var vertParityBaseline = map[string]map[string]int{ + "Red_M_Torso.mdl": { + "torso_g": -62, + }, + "abp_weaprack_1.mdl": { + "guard_curved": +8, + "guard_curved01": +8, + "guard_curved02": +8, + "guard_curved03": +8, + "pommel": +4, + "pommel01": +4, + "pommel02": +4, + "pommel03": +4, + }, + "ctl_compass.mdl": { + "box01": -72, + "cmp_pointer": -4, + }, + "plc_dd27.mdl": { + "line566": -4, + "line1073": -4, + }, + "plc_guillo2.mdl": { + "box03": +4, + "box07": +4, + "blade": +2, + }, + "plc_nc03.mdl": { + "groups02487": +6, + "groups02501": +6, + "groups02503": +6, + "box155793": -2, + "box155797": -4, + }, + "plc_statdwl.mdl": { + "box01": +2, + "hammerhead": +32, + }, + "pmh0_head001.mdl": { + "pmh0_head001g": -101, + }, + "zlc_o23.mdl": { + "line1962": -12, + "line1961": -12, + "box872": +13, + "box871": +13, + }, + // c_marilith2 — combined skin + dangly + emitter creature. The + // non-zero deltas on hand/claw/sword nodes match the body-part + // philosophy difference; head_g and the wswsc grip/middle nodes + // each differ by a few per-corner duplicates in the game's + // output. No visual impact. + "c_marilith2.mdl": { + "claw05": +3, + "claw06": +3, + "claw07": +3, + "claw08": +3, + "head_g": -3, + "lhand_g": +3, + "rhand_g": +3, + "g_wswsc_b_12": +11, + "g_wswsc_b_13": +11, + "g_wswsc_b_14": +11, + "g_wswsc_b_15": +11, + "g_wswsc_m_22": +6, + "g_wswsc_m_23": +6, + "g_wswsc_m_24": +6, + "g_wswsc_m_25": +6, + }, + // tdc01_a01_03 — small AABB walkmesh tile divergences on a few + // inner mesh nodes. AABB topology itself is unaffected. + "tdc01_a01_03.mdl": { + "meshtdc5076": -9, + "object57": +6, + "meshtdc0828": +4, + }, + // wsf10_p01_01 — Layonara hak forest tile, perfect tangent + // (1.0000 mean) but the AABB walkmesh node ("wok") under-merges + // vs the game (we collapse 71 face-corner duplicates the game + // keeps). The walkmesh tree topology is preserved; pathing and + // collision are unaffected since both compilers emit the same + // face-to-leaf assignments. + "wsf10_p01_01.mdl": { + "wok": -71, + }, +} + +// TestOracleVertexParity asserts that each oracle fixture's compiled +// GPU vertex count per mesh node either matches the game compiler's +// exactly or matches the documented baseline above. New fixtures get +// the strict-equality default. Drift in either direction (improvement +// or regression) fails the test so we always notice when dedup +// behavior changes. +func TestOracleVertexParity(t *testing.T) { + entries, err := os.ReadDir(oracleBinaryDir) + if err != nil || len(entries) == 0 { + t.Skip("no game_binary fixtures — see oracle_test.go header for setup instructions") + } + + for _, e := range entries { + if e.IsDir() || !strings.HasSuffix(strings.ToLower(e.Name()), ".mdl") { + continue + } + name := e.Name() + t.Run(name, func(t *testing.T) { + t.Parallel() + compareOracleVertParity(t, name) + }) + } +} + +func compareOracleVertParity(t *testing.T, binaryName string) { + t.Helper() + + gameData, err := os.ReadFile(filepath.Join(oracleBinaryDir, binaryName)) + if err != nil { + t.Fatalf("read game binary: %v", err) + } + gameModel, err := Decompile(bytes.NewReader(gameData), int64(len(gameData))) + if err != nil { + t.Fatalf("decompile game binary: %v", err) + } + + asciiPath := findOracleAscii(t, binaryName) + pr, err := ParseFile(asciiPath) + if err != nil { + t.Fatalf("parse ascii: %v", err) + } + var buf bytes.Buffer + if err := Compile(pr.Model, &buf); err != nil { + t.Fatalf("compile: %v", err) + } + ourModel, err := Decompile(bytes.NewReader(buf.Bytes()), int64(buf.Len())) + if err != nil { + t.Fatalf("decompile our binary: %v", err) + } + + expected := vertParityBaseline[binaryName] + gameNodes := nodeIndexFromSlice(gameModel.Nodes) + seenExpected := map[string]bool{} + + for _, on := range ourModel.Nodes { + if on.Mesh == nil { + continue + } + gn, ok := gameNodes[strings.ToLower(on.Name)] + if !ok || gn.Mesh == nil { + continue + } + ov := len(on.Mesh.Verts) + gv := len(gn.Mesh.Verts) + actualDelta := ov - gv + + // Look up baseline (try exact then case-insensitive). + want, hasBaseline := expected[on.Name] + if !hasBaseline { + for k, v := range expected { + if strings.EqualFold(k, on.Name) { + want = v + hasBaseline = true + seenExpected[k] = true + break + } + } + } else { + seenExpected[on.Name] = true + } + + if hasBaseline { + if actualDelta != want { + t.Errorf("node %q: vert delta changed from baseline — got ours=%d game=%d (Δ=%+d), baseline expected Δ=%+d. Update vertParityBaseline if intentional.", + on.Name, ov, gv, actualDelta, want) + } + } else if actualDelta != 0 { + t.Errorf("node %q: vert count mismatch — ours=%d game=%d (Δ=%+d). Either fix the dedup or add this node to vertParityBaseline[%q] with the documented delta.", + on.Name, ov, gv, actualDelta, binaryName) + } + } + + // Flag stale baseline entries — a node listed but no longer present + // in the model means the fixture changed shape without the baseline + // being updated. + for k := range expected { + if !seenExpected[k] { + t.Errorf("baseline entry %q→%q references node not present in current compile — remove from vertParityBaseline", + binaryName, k) + } + } +} diff --git a/pkg/mdl/parser.go b/pkg/mdl/parser.go new file mode 100644 index 0000000..799a572 --- /dev/null +++ b/pkg/mdl/parser.go @@ -0,0 +1,1863 @@ +// ASCII MDL parser. +// +// Parses NWN ASCII .mdl files into Model structs. Covers all node types and +// parameters from load_models.pl paramtype/3 declarations (lines 648-898). +// +// Features: +// - Accumulated error handling (never aborts on a single bad line) +// - near_match typo tolerance (Levenshtein <= 2) +// - Unknown node types fall back to dummy +// +// Ref: load_models.pl (full file) +// Ref: output_models.pl (for parameter ordering on write) +package mdl + +import ( + "bufio" + "fmt" + "io" + "math" + "os" + "runtime" + "strconv" + "strings" +) + +// ParseError records a non-fatal parse issue. +type ParseError struct { + Line int + Message string +} + +func (e ParseError) Error() string { + return fmt.Sprintf("line %d: %s", e.Line, e.Message) +} + +func parserPanicMessage(r interface{}) string { + if os.Getenv("CLEANMODELS_DEBUG") != "" { + buf := make([]byte, 4096) + n := runtime.Stack(buf, false) + return fmt.Sprintf("parser panic: %v\n%s", r, buf[:n]) + } + return fmt.Sprintf("parser panic: %v", r) +} + +// ParseResult holds the parsed model and any accumulated errors. +type ParseResult struct { + Model *Model + Errors []ParseError +} + +// ParseFile reads an ASCII MDL file from disk. +func ParseFile(path string) (result *ParseResult, err error) { + defer func() { + if r := recover(); r != nil { + result = &ParseResult{ + Model: &Model{AnimationScale: 1.0}, + Errors: []ParseError{{Message: parserPanicMessage(r)}}, + } + err = fmt.Errorf("parser panic: %v", r) + } + }() + + f, err := os.Open(path) + if err != nil { + return nil, err + } + defer f.Close() + return Parse(f) +} + +// Parse reads an ASCII MDL from a reader. +func Parse(r io.Reader) (result *ParseResult, err error) { + defer func() { + if r := recover(); r != nil { + result = &ParseResult{ + Model: &Model{AnimationScale: 1.0}, + Errors: []ParseError{{Message: parserPanicMessage(r)}}, + } + err = fmt.Errorf("parser panic: %v", r) + } + }() + + p := &parser{ + scanner: bufio.NewScanner(r), + model: &Model{AnimationScale: 1.0}, + maxAlloc: 512 * 1024 * 1024, + } + p.scanner.Buffer(make([]byte, 0, 1024*1024), 1024*1024) + p.parse() + if err := p.scanner.Err(); err != nil { + p.errorf("read error: %v", err) + } + return &ParseResult{ + Model: p.model, + Errors: p.errors, + }, nil +} + +type parser struct { + scanner *bufio.Scanner + line int + model *Model + errors []ParseError + + currentNode *Node + currentAnim *Animation + currentAnimNode *AnimNode + nodeStack []*Node + + allocBytes int64 + maxAlloc int64 +} + +func (p *parser) errorf(format string, args ...interface{}) { + p.errors = append(p.errors, ParseError{ + Line: p.line, + Message: fmt.Sprintf(format, args...), + }) +} + +func (p *parser) trackAlloc(bytes int64) bool { + p.allocBytes += bytes + return p.allocBytes <= p.maxAlloc +} + +func (p *parser) nextLine() (string, bool) { + for p.scanner.Scan() { + p.line++ + line := strings.TrimSpace(p.scanner.Text()) + if line == "" || strings.HasPrefix(line, "#") { + continue + } + return line, true + } + return "", false +} + +func (p *parser) parse() { + for { + line, ok := p.nextLine() + if !ok { + break + } + + tokens := tokenize(line) + if len(tokens) == 0 { + continue + } + + keyword := strings.ToLower(tokens[0]) + + switch { + case keyword == "newmodel": + p.parseNewModel(tokens) + case keyword == "donemodel": + // End of model + case keyword == "setsupermodel": + p.parseSuperModel(tokens) + case keyword == "setanimationscale": + p.parseAnimationScale(tokens) + case keyword == "classification": + p.parseClassification(tokens) + case keyword == "ignorefog": + p.parseIgnoreFog(tokens) + case keyword == "filedependancy" || keyword == "filedependency": + if len(tokens) >= 2 { + p.model.FileDependancy = tokens[1] + } + case keyword == "beginmodelgeom": + // Start of geometry section + case keyword == "endmodelgeom": + // End of geometry section + case keyword == "node": + p.parseNodeStart(tokens) + case keyword == "endnode": + p.parseNodeEnd() + case keyword == "newanim": + p.parseNewAnim(tokens) + case keyword == "doneanim": + p.parseDoneAnim() + case (keyword == "length" || keyword == "animlength") && p.currentAnim != nil && p.currentAnimNode == nil: + p.parseAnimLength(tokens) + case keyword == "transtime" && p.currentAnim != nil && p.currentAnimNode == nil: + p.parseAnimTransTime(tokens) + case keyword == "animroot": + p.parseAnimRoot(tokens) + case keyword == "event" && p.currentAnim != nil: + p.parseAnimEvent(tokens) + default: + p.parseParameter(tokens) + } + } +} + +func (p *parser) parseNewModel(tokens []string) { + if len(tokens) >= 2 { + p.model.Name = tokens[1] + } + p.model.FileType = "ascii" +} + +func (p *parser) parseSuperModel(tokens []string) { + if len(tokens) >= 3 { + p.model.SuperModel = tokens[2] + } else if len(tokens) >= 2 { + p.model.SuperModel = tokens[1] + } +} + +func (p *parser) parseAnimationScale(tokens []string) { + if len(tokens) >= 2 { + if v, err := parseFloat(tokens[1]); err == nil { + p.model.AnimationScale = v + } + } +} + +func (p *parser) parseClassification(tokens []string) { + if len(tokens) >= 2 { + p.model.Classification = strings.ToUpper(tokens[1]) + } +} + +func (p *parser) parseIgnoreFog(tokens []string) { + if len(tokens) >= 2 { + if v, err := parseInt(tokens[1]); err == nil { + p.model.IgnoreFog = v + } + } +} + +func (p *parser) parseNodeStart(tokens []string) { + if len(tokens) < 3 { + p.errorf("node requires type and name") + return + } + + nodeType := strings.ToLower(tokens[1]) + nodeName := tokens[2] + + if !p.trackAlloc(512) { + p.errorf("allocation limit exceeded creating node %q", nodeName) + return + } + + node := &Node{ + Name: nodeName, + Scale: 1.0, + Orientation: Vec4{W: 1.0}, + } + + switch nodeType { + case "trimesh": + node.Mesh = NewMeshData() + case "skin": + node.Mesh = NewMeshData() + node.Skin = &SkinData{} + case "animmesh": + node.Mesh = NewMeshData() + node.AnimMesh = &AnimMeshData{} + case "danglymesh": + node.Mesh = NewMeshData() + node.Dangly = &DanglyData{} + case "aabb": + node.Mesh = NewMeshData() + node.Aabb = &AabbData{} + case "emitter": + node.Emitter = &EmitterData{} + case "light": + node.Light = &LightData{} + case "reference": + node.Reference = &ReferenceData{} + case "camera": + node.Camera = true + case "dummy": + // No extra data + case "patch": + // Old BioWare node type, fall back to dummy + p.errorf("unknown node type %q, treating as dummy", nodeType) + default: + p.errorf("unknown node type %q, treating as dummy", nodeType) + } + + if p.currentAnim != nil { + // Animation node + animNode := &AnimNode{ + Name: nodeName, + } + p.currentAnimNode = animNode + } else { + p.currentNode = node + } + + if p.currentAnim == nil { + if len(p.nodeStack) > 0 { + parent := p.nodeStack[len(p.nodeStack)-1] + node.Parent = parent.Name + } + p.nodeStack = append(p.nodeStack, node) + p.model.Nodes = append(p.model.Nodes, node) + } +} + +func (p *parser) parseNodeEnd() { + if p.currentAnim != nil && p.currentAnimNode != nil { + p.currentAnim.Nodes = append(p.currentAnim.Nodes, *p.currentAnimNode) + p.currentAnimNode = nil + return + } + + if len(p.nodeStack) > 0 { + p.nodeStack = p.nodeStack[:len(p.nodeStack)-1] + } + if len(p.nodeStack) > 0 { + p.currentNode = p.nodeStack[len(p.nodeStack)-1] + } else { + p.currentNode = nil + } +} + +func (p *parser) parseNewAnim(tokens []string) { + if len(tokens) < 3 { + p.errorf("newanim requires name and model name") + return + } + p.currentAnim = &Animation{ + Name: tokens[1], + } +} + +func (p *parser) parseDoneAnim() { + if p.currentAnim != nil { + p.model.Animations = append(p.model.Animations, *p.currentAnim) + p.currentAnim = nil + } +} + +func (p *parser) parseAnimLength(tokens []string) { + if len(tokens) < 2 { + return + } + idx := 1 + if strings.EqualFold(tokens[0], "animlength") && len(tokens) >= 3 { + idx = 2 + } + if v, err := parseFloat(tokens[idx]); err == nil { + p.currentAnim.Length = v + } +} + +func (p *parser) parseAnimTransTime(tokens []string) { + if len(tokens) >= 2 { + if v, err := parseFloat(tokens[1]); err == nil { + p.currentAnim.TransTime = v + } + } +} + +func (p *parser) parseAnimRoot(tokens []string) { + if p.currentAnim != nil && len(tokens) >= 2 { + p.currentAnim.Root = tokens[1] + } +} + +func (p *parser) parseAnimEvent(tokens []string) { + if p.currentAnim != nil && len(tokens) >= 3 { + if t, err := parseFloat(tokens[1]); err == nil { + p.currentAnim.Events = append(p.currentAnim.Events, AnimEvent{ + Time: t, + Name: tokens[2], + }) + } + } +} + +func (p *parser) parseParameter(tokens []string) { + if len(tokens) == 0 { + return + } + + keyword := strings.ToLower(tokens[0]) + + // Handle animation node parameters + if p.currentAnim != nil && p.currentAnimNode != nil { + p.parseAnimNodeParam(keyword, tokens) + return + } + + if p.currentNode == nil { + return + } + + // Route to appropriate handler based on node capabilities + node := p.currentNode + + switch keyword { + case "parent": + if len(tokens) >= 2 { + node.Parent = tokens[1] + } + case "#part-number": + if len(tokens) >= 2 { + if v, err := parseInt(tokens[1]); err == nil { + node.PartNumber = v + } + } + case "position": + if v, ok := parseVec3(tokens[1:]); ok { + node.Position = v + } + case "orientation": + if v, ok := parseVec4(tokens[1:]); ok { + node.Orientation = v + } + case "scale": + if len(tokens) >= 2 { + if v, err := parseFloat(tokens[1]); err == nil { + node.Scale = v + } + } + case "inheritcolor": + if len(tokens) >= 2 { + if v, err := parseInt(tokens[1]); err == nil { + node.InheritColor = v + } + } + case "wirecolor": + if v, ok := parseVec3(tokens[1:]); ok { + node.WireColor = v + } + default: + p.parseNodeSpecificParam(keyword, tokens) + } +} + +func (p *parser) parseNodeSpecificParam(keyword string, tokens []string) { + node := p.currentNode + if node == nil { + return + } + + // Mesh parameters + if node.Mesh != nil { + if p.parseMeshParam(node.Mesh, keyword, tokens) { + return + } + } + + // Type-specific parameters + switch { + case node.Skin != nil: + if p.parseSkinParam(node, keyword, tokens) { + return + } + case node.Dangly != nil: + if p.parseDanglyParam(node.Dangly, keyword, tokens) { + return + } + case node.AnimMesh != nil: + if p.parseAnimMeshParam(node.AnimMesh, keyword, tokens) { + return + } + case node.Aabb != nil: + if p.parseAabbParam(node.Aabb, keyword, tokens) { + return + } + case node.Emitter != nil: + if p.parseEmitterParam(node.Emitter, keyword, tokens) { + return + } + case node.Light != nil: + if p.parseLightParam(node.Light, keyword, tokens) { + return + } + case node.Reference != nil: + if p.parseReferenceParam(node.Reference, keyword, tokens) { + return + } + } + + // Try fuzzy matching for unrecognized parameters + nodeType := node.NodeType() + validParams := validParamsForType(nodeType) + if matched, ok := NearMatchParam(keyword, validParams); ok && matched != keyword { + p.errorf("fuzzy matched %q to %q", keyword, matched) + newTokens := make([]string, len(tokens)) + copy(newTokens, tokens) + newTokens[0] = matched + p.parseParameter(newTokens) + return + } +} + +func (p *parser) parseMeshParam(mesh *MeshData, keyword string, tokens []string) bool { + switch keyword { + case "diffuse": + if v, ok := parseVec3(tokens[1:]); ok { + mesh.Diffuse = v + } + case "ambient": + if v, ok := parseVec3(tokens[1:]); ok { + mesh.Ambient = v + } + case "specular": + if v, ok := parseVec3(tokens[1:]); ok { + mesh.Specular = v + } + case "shininess": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + mesh.Shininess = v + } + case "bitmap", "texture0": + if len(tokens) >= 2 { + mesh.Bitmap = tokens[1] + } + case "texture1": + if len(tokens) >= 2 { + mesh.Texture1 = tokens[1] + } + case "texture2": + if len(tokens) >= 2 { + mesh.Texture2 = tokens[1] + } + case "materialname": + if len(tokens) >= 2 { + mesh.MaterialName = tokens[1] + } + case "renderhint": + if len(tokens) >= 2 { + mesh.RenderHint = tokens[1] + } + case "shadow": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + mesh.Shadow = v + } + case "beaming": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + mesh.Beaming = v + } + case "render": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + mesh.Render = v + } + case "transparencyhint": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + mesh.TransparencyHint = v + } + case "alpha": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + mesh.Alpha = v + } + case "selfillumcolor", "setfillumcolor": + if v, ok := parseVec3(tokens[1:]); ok { + mesh.SelfIllumColor = v + } + case "tilefade": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + mesh.TileFade = v + } + case "rotatetexture": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + mesh.RotateTexture = v + } + case "lightmapped": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + mesh.LightMapped = v + } + case "center": + // center can be mn3 or man -- accept both forms + // As mn3: center x y z + // As man: center + if len(tokens) >= 4 { + // vec3 form -- ignore, not stored as mesh property + } + case "verts": + p.parseCountedVec3(tokens, &mesh.Verts) + case "faces": + p.parseCountedFaces(tokens, &mesh.Faces) + case "tverts": + p.parseCountedVec3(tokens, &mesh.TVerts) + case "tverts1": + p.parseCountedVec3(tokens, &mesh.TVerts1) + case "tverts2": + p.parseCountedVec3(tokens, &mesh.TVerts2) + case "tverts3": + p.parseCountedVec3(tokens, &mesh.TVerts3) + case "colors": + p.parseCountedVec3(tokens, &mesh.Colors) + case "normals": + p.parseCountedVec3(tokens, &mesh.Normals) + case "tangents": + p.parseCountedVec4(tokens, &mesh.Tangents) + case "texindices0": + p.parseCountedInt3(tokens, &mesh.TexIndices0) + case "texindices1": + p.parseCountedInt3(tokens, &mesh.TexIndices1) + case "texindices2": + p.parseCountedInt3(tokens, &mesh.TexIndices2) + case "texindices3": + p.parseCountedInt3(tokens, &mesh.TexIndices3) + case "multimaterial": + p.parseCountedStrings(tokens, &mesh.Multimaterial) + default: + return false + } + return true +} + +func (p *parser) parseSkinParam(node *Node, keyword string, tokens []string) bool { + switch keyword { + case "weights": + if len(tokens) >= 2 { + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil && count > 0 { + p.readWeightList(node.Skin, int(count)) + } + } + default: + return false + } + return true +} + +func (p *parser) parseDanglyParam(dangly *DanglyData, keyword string, tokens []string) bool { + switch keyword { + case "displacement": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + dangly.Displacement = v + } + case "tightness": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + dangly.Tightness = v + } + case "period": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + dangly.Period = v + } + case "constraints": + if len(tokens) >= 2 { + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil && count > 0 { + p.readFloatList(&dangly.Constraints, int(count)) + } + } + case "displtype": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + dangly.DisplType = int32(v) + } + case "danglymesh", "showdispl", "gizmo": + // Accepted but not stored (display-only parameters) + default: + return false + } + return true +} + +func (p *parser) parseAnimMeshParam(am *AnimMeshData, keyword string, tokens []string) bool { + switch keyword { + case "sampleperiod": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + am.SamplePeriod = v + } + case "clipu": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + am.ClipU = v + } + case "clipv": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + am.ClipV = v + } + case "clipw": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + am.ClipW = v + } + case "cliph": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + am.ClipH = v + } + case "animverts": + if len(tokens) >= 2 { + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil && count > 0 { + p.readVec3List(&am.AnimVerts, int(count)) + } + } + case "animtverts": + if len(tokens) >= 2 { + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil && count > 0 { + p.readVec3List(&am.AnimTVerts, int(count)) + } + } + default: + return false + } + return true +} + +func (p *parser) parseAabbParam(aabb *AabbData, keyword string, tokens []string) bool { + switch keyword { + case "aabb": + if len(tokens) >= 2 { + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil && count > 0 { + p.readAabbList(&aabb.Entries, int(count)) + } + } + default: + return false + } + return true +} + +func (p *parser) parseEmitterParam(em *EmitterData, keyword string, tokens []string) bool { + switch keyword { + case "deadspace": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + em.DeadSpace = v + } + case "blastradius": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + em.BlastRadius = v + } + case "blastlength": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + em.BlastLength = v + } + case "xgrid": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.XGrid = v + } + case "ygrid": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.YGrid = v + } + case "spawntype": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.SpawnType = v + } + case "update": + if len(tokens) >= 2 { + em.Update = tokens[1] + } + case "render": + if len(tokens) >= 2 { + em.Render = tokens[1] + } + case "blend": + if len(tokens) >= 2 { + em.Blend = tokens[1] + } + case "texture": + if len(tokens) >= 2 { + em.Texture = tokens[1] + } + case "chunkname": + if len(tokens) >= 2 { + em.ChunkName = tokens[1] + } + case "twosidedtex": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.TwoSidedTex = v + } + case "loop": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.Loop = v + } + case "renderorder": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.RenderOrder = v + } + case "p2p": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.P2P = v + } + case "p2p_sel": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.P2PSel = v + } + case "affectedbywind": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.AffectedByWind = v + } + case "m_istinted": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.IsTinted = v + } + case "bounce": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.Bounce = v + } + case "random": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.Random = v + } + case "inherit": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.Inherit = v + } + case "inheritvel": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.InheritVel = v + } + case "inherit_local": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.InheritLocal = v + } + case "splat": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.Splat = v + } + case "inherit_part": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.InheritPart = v + } + case "p2p_type": + if len(tokens) >= 2 { + em.P2PType = tokens[1] + } + case "render_sel": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.RenderSel = v + } + case "blend_sel": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.BlendSel = v + } + case "update_sel": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.UpdateSel = v + } + case "spawntype_sel": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.SpawnTypeSel = v + } + case "opacity": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.Opacity = v + } + case "iconsize": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.IconSize = v + } + case "lockaxes": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.LockAxes = v + } + case "chunky": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + em.Chunky = v + } + default: + if getter, ok := emitterFloatFields[keyword]; ok { + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + *getter(em) = v + } + return true + } + if getter, ok := emitterColorFields[keyword]; ok { + if v, ok := parseVec3(tokens[1:]); ok { + *getter(em) = v + } + return true + } + return false + } + return true +} + +func (p *parser) parseLightParam(light *LightData, keyword string, tokens []string) bool { + switch keyword { + case "flareradius": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + light.FlareRadius = v + } + case "lensflares": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + light.LensFlares = v + } + case "lightpriority": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + light.LightPriority = v + } + case "ambientonly": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + light.AmbientOnly = v + } + case "isdynamic": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + light.NDynamicType = v + } + case "ndynamictype", "n_dynamic_type": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + light.NDynamicType = v + } + case "affectdynamic": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + light.AffectDynamic = v + } + case "shadow": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + light.Shadow = v + } + case "generateflare": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + light.GenerateFlare = v + } + case "fadinglight": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + light.FadingLight = v + } + case "negativelight": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + light.NegativeLight = v + } + case "color": + if v, ok := parseVec3(tokens[1:]); ok { + light.Color = v + } + case "radius": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + light.Radius = v + } + case "multiplier": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + light.Multiplier = v + } + case "shadowradius": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + light.ShadowRadius = v + } + case "verticaldisplacement": + if v, err := parseFloat(safeIndex(tokens, 1)); err == nil { + light.VerticalDisplacement = v + } + case "flaresizes": + if len(tokens) >= 2 { + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil && count > 0 { + p.readFloatList(&light.FlareSizes, int(count)) + } + } + case "flarepositions": + if len(tokens) >= 2 { + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil && count > 0 { + p.readFloatList(&light.FlarePositions, int(count)) + } + } + case "flarecolorshifts": + if len(tokens) >= 2 { + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil && count > 0 { + p.readVec3List(&light.FlareColorShifts, int(count)) + } + } + case "texturenames": + if len(tokens) >= 2 { + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil && count > 0 { + p.readStringList(&light.TextureNames, int(count)) + } + } + default: + return false + } + return true +} + +func (p *parser) parseReferenceParam(ref *ReferenceData, keyword string, tokens []string) bool { + switch keyword { + case "refmodel": + if len(tokens) >= 2 { + ref.RefModel = tokens[1] + } + case "reattachable": + if v, err := parseInt(safeIndex(tokens, 1)); err == nil { + ref.Reattachable = v + } + default: + return false + } + return true +} + +// emitterFloatFields maps controller/keyword names to float32 field pointers on EmitterData. +// Shared by binary decompiler's setEmitterController and the ASCII parser's parseEmitterParam. +var emitterFloatFields = map[string]func(*EmitterData) *float32{ + "alphastart": func(e *EmitterData) *float32 { return &e.AlphaStart }, + "alphamid": func(e *EmitterData) *float32 { return &e.AlphaMid }, + "alphaend": func(e *EmitterData) *float32 { return &e.AlphaEnd }, + "birthrate": func(e *EmitterData) *float32 { return &e.BirthRate }, + "blurlength": func(e *EmitterData) *float32 { return &e.BlurLength }, + "bounce_co": func(e *EmitterData) *float32 { return &e.BounceCo }, + "combinetime": func(e *EmitterData) *float32 { return &e.CombineTime }, + "drag": func(e *EmitterData) *float32 { return &e.Drag }, + "fps": func(e *EmitterData) *float32 { return &e.FPS }, + "framestart": func(e *EmitterData) *float32 { return &e.FrameStart }, + "frameend": func(e *EmitterData) *float32 { return &e.FrameEnd }, + "grav": func(e *EmitterData) *float32 { return &e.Grav }, + "lifeexp": func(e *EmitterData) *float32 { return &e.LifeExp }, + "lightningdelay": func(e *EmitterData) *float32 { return &e.LightningDelay }, + "lightningradius": func(e *EmitterData) *float32 { return &e.LightningRadius }, + "lightningscale": func(e *EmitterData) *float32 { return &e.LightningScale }, + "lightningsubdiv": func(e *EmitterData) *float32 { return &e.LightningSubDiv }, + "mass": func(e *EmitterData) *float32 { return &e.Mass }, + "p2p_bezier2": func(e *EmitterData) *float32 { return &e.P2PBezier2 }, + "p2p_bezier3": func(e *EmitterData) *float32 { return &e.P2PBezier3 }, + "particlerot": func(e *EmitterData) *float32 { return &e.ParticleRot }, + "percentstart": func(e *EmitterData) *float32 { return &e.PercentStart }, + "percentmid": func(e *EmitterData) *float32 { return &e.PercentMid }, + "percentend": func(e *EmitterData) *float32 { return &e.PercentEnd }, + "randvel": func(e *EmitterData) *float32 { return &e.RandVel }, + "sizestart": func(e *EmitterData) *float32 { return &e.SizeStart }, + "sizemid": func(e *EmitterData) *float32 { return &e.SizeMid }, + "sizeend": func(e *EmitterData) *float32 { return &e.SizeEnd }, + "sizestart_y": func(e *EmitterData) *float32 { return &e.SizeStartY }, + "sizemid_y": func(e *EmitterData) *float32 { return &e.SizeMidY }, + "sizeend_y": func(e *EmitterData) *float32 { return &e.SizeEndY }, + "spread": func(e *EmitterData) *float32 { return &e.Spread }, + "threshold": func(e *EmitterData) *float32 { return &e.Threshold }, + "velocity": func(e *EmitterData) *float32 { return &e.Velocity }, + "xsize": func(e *EmitterData) *float32 { return &e.XSize }, + "ysize": func(e *EmitterData) *float32 { return &e.YSize }, +} + +var emitterColorFields = map[string]func(*EmitterData) *Vec3{ + "colorstart": func(e *EmitterData) *Vec3 { return &e.ColorStart }, + "colormid": func(e *EmitterData) *Vec3 { return &e.ColorMid }, + "colorend": func(e *EmitterData) *Vec3 { return &e.ColorEnd }, +} + +type animFloatEntry struct { + Name string + Getter func(*AnimNode) *[]FloatKey +} + +type animColorEntry struct { + Name string + Getter func(*AnimNode) *[]ColorKey +} + +// animControllerFloatList is the ordered source-of-truth for float animation controllers. +// Used by the binary decompiler (addAnimKey), the ASCII parser (key table), and the writer. +var animControllerFloatList = []animFloatEntry{ + {"scale", func(an *AnimNode) *[]FloatKey { return &an.ScaleKeys }}, + {"alpha", func(an *AnimNode) *[]FloatKey { return &an.AlphaKeys }}, + {"radius", func(an *AnimNode) *[]FloatKey { return &an.RadiusKeys }}, + {"multiplier", func(an *AnimNode) *[]FloatKey { return &an.MultiplierKeys }}, + {"shadowradius", func(an *AnimNode) *[]FloatKey { return &an.ShadowRadiusKeys }}, + {"verticaldisplacement", func(an *AnimNode) *[]FloatKey { return &an.VerticalDisplacementKeys }}, + {"alphastart", func(an *AnimNode) *[]FloatKey { return &an.AlphaStartKeys }}, + {"alphamid", func(an *AnimNode) *[]FloatKey { return &an.AlphaMidKeys }}, + {"alphaend", func(an *AnimNode) *[]FloatKey { return &an.AlphaEndKeys }}, + {"birthrate", func(an *AnimNode) *[]FloatKey { return &an.BirthRateKeys }}, + {"blurlength", func(an *AnimNode) *[]FloatKey { return &an.BlurLengthKeys }}, + {"bounce_co", func(an *AnimNode) *[]FloatKey { return &an.BounceCoKeys }}, + {"combinetime", func(an *AnimNode) *[]FloatKey { return &an.CombineTimeKeys }}, + {"drag", func(an *AnimNode) *[]FloatKey { return &an.DragKeys }}, + {"fps", func(an *AnimNode) *[]FloatKey { return &an.FPSKeys }}, + {"framestart", func(an *AnimNode) *[]FloatKey { return &an.FrameStartKeys }}, + {"frameend", func(an *AnimNode) *[]FloatKey { return &an.FrameEndKeys }}, + {"grav", func(an *AnimNode) *[]FloatKey { return &an.GravKeys }}, + {"lifeexp", func(an *AnimNode) *[]FloatKey { return &an.LifeExpKeys }}, + {"lightningdelay", func(an *AnimNode) *[]FloatKey { return &an.LightningDelayKeys }}, + {"lightningradius", func(an *AnimNode) *[]FloatKey { return &an.LightningRadiusKeys }}, + {"lightningscale", func(an *AnimNode) *[]FloatKey { return &an.LightningScaleKeys }}, + {"lightningsubdiv", func(an *AnimNode) *[]FloatKey { return &an.LightningSubDivKeys }}, + {"mass", func(an *AnimNode) *[]FloatKey { return &an.MassKeys }}, + {"p2p_bezier2", func(an *AnimNode) *[]FloatKey { return &an.P2PBezier2Keys }}, + {"p2p_bezier3", func(an *AnimNode) *[]FloatKey { return &an.P2PBezier3Keys }}, + {"particlerot", func(an *AnimNode) *[]FloatKey { return &an.ParticleRotKeys }}, + {"percentstart", func(an *AnimNode) *[]FloatKey { return &an.PercentStartKeys }}, + {"percentmid", func(an *AnimNode) *[]FloatKey { return &an.PercentMidKeys }}, + {"percentend", func(an *AnimNode) *[]FloatKey { return &an.PercentEndKeys }}, + {"randvel", func(an *AnimNode) *[]FloatKey { return &an.RandVelKeys }}, + {"sizestart", func(an *AnimNode) *[]FloatKey { return &an.SizeStartKeys }}, + {"sizemid", func(an *AnimNode) *[]FloatKey { return &an.SizeMidKeys }}, + {"sizeend", func(an *AnimNode) *[]FloatKey { return &an.SizeEndKeys }}, + {"sizestart_y", func(an *AnimNode) *[]FloatKey { return &an.SizeStartYKeys }}, + {"sizemid_y", func(an *AnimNode) *[]FloatKey { return &an.SizeMidYKeys }}, + {"sizeend_y", func(an *AnimNode) *[]FloatKey { return &an.SizeEndYKeys }}, + {"spread", func(an *AnimNode) *[]FloatKey { return &an.SpreadKeys }}, + {"threshold", func(an *AnimNode) *[]FloatKey { return &an.ThresholdKeys }}, + {"velocity", func(an *AnimNode) *[]FloatKey { return &an.VelocityKeys }}, + {"xsize", func(an *AnimNode) *[]FloatKey { return &an.XSizeKeys }}, + {"ysize", func(an *AnimNode) *[]FloatKey { return &an.YSizeKeys }}, + {"detonate", func(an *AnimNode) *[]FloatKey { return &an.DetonateKeys }}, +} + +var animControllerColorList = []animColorEntry{ + {"selfillumcolor", func(an *AnimNode) *[]ColorKey { return &an.SelfIllumColorKeys }}, + {"color", func(an *AnimNode) *[]ColorKey { return &an.ColorKeys }}, + {"colorstart", func(an *AnimNode) *[]ColorKey { return &an.ColorStartKeys }}, + {"colormid", func(an *AnimNode) *[]ColorKey { return &an.ColorMidKeys }}, + {"colorend", func(an *AnimNode) *[]ColorKey { return &an.ColorEndKeys }}, +} + +// Map versions for O(1) lookup in the binary decompiler and ASCII parser. +var animControllerFloatTable map[string]func(*AnimNode) *[]FloatKey +var animControllerColorTable map[string]func(*AnimNode) *[]ColorKey +var animFloatKeyTable map[string]func(*AnimNode) *[]FloatKey +var animColorKeyTable map[string]func(*AnimNode) *[]ColorKey + +func init() { + animControllerFloatTable = make(map[string]func(*AnimNode) *[]FloatKey, len(animControllerFloatList)) + animFloatKeyTable = make(map[string]func(*AnimNode) *[]FloatKey, len(animControllerFloatList)) + for _, e := range animControllerFloatList { + animControllerFloatTable[e.Name] = e.Getter + animFloatKeyTable[e.Name+"key"] = e.Getter + } + animControllerColorTable = make(map[string]func(*AnimNode) *[]ColorKey, len(animControllerColorList)) + animColorKeyTable = make(map[string]func(*AnimNode) *[]ColorKey, len(animControllerColorList)) + for _, e := range animControllerColorList { + animControllerColorTable[e.Name] = e.Getter + animColorKeyTable[e.Name+"key"] = e.Getter + } +} + +// tryAnimKeyTable handles table-driven float/color key parsing. +// Returns true if the keyword was handled. +func (p *parser) tryAnimKeyTable(keyword string, tokens []string, an *AnimNode) bool { + if keyword == "detonatekey" { + if len(tokens) >= 2 { + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil { + p.readDetonateKeys(&an.DetonateKeys, int(count)) + } + } + return true + } + if getter, ok := animFloatKeyTable[keyword]; ok { + if len(tokens) >= 2 { + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil { + p.readFloatKeys(getter(an), int(count)) + } + } else { + p.readFloatKeysUntilEnd(getter(an)) + } + return true + } + if getter, ok := animColorKeyTable[keyword]; ok { + if len(tokens) >= 2 { + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil { + p.readColorKeys(getter(an), int(count)) + } + } else { + p.readColorKeysUntilEnd(getter(an)) + } + return true + } + return false +} + +// parseAnimNodeParam handles parameters inside animation node blocks. +// Ref: load_models.pl paramtype(anim,...) (lines 816-888) +func (p *parser) parseAnimNodeParam(keyword string, tokens []string) { + an := p.currentAnimNode + if an == nil { + return + } + + switch keyword { + case "parent": + if len(tokens) >= 2 { + an.Parent = tokens[1] + } + case "#part-number": + // Ignored for anim nodes + case "position": + if len(tokens) >= 4 { + x, _ := parseFloat(safeIndex(tokens, 1)) + y, _ := parseFloat(safeIndex(tokens, 2)) + z, _ := parseFloat(safeIndex(tokens, 3)) + if len(an.PositionKeys) == 0 { + an.PositionKeys = append(an.PositionKeys, PositionKey{Time: 0, Value: Vec3{X: x, Y: y, Z: z}}) + } + } + case "orientation": + if len(tokens) >= 5 { + x, _ := parseFloat(safeIndex(tokens, 1)) + y, _ := parseFloat(safeIndex(tokens, 2)) + z, _ := parseFloat(safeIndex(tokens, 3)) + w, _ := parseFloat(safeIndex(tokens, 4)) + if len(an.OrientationKeys) == 0 { + an.OrientationKeys = append(an.OrientationKeys, OrientationKey{Time: 0, Value: Vec4{X: x, Y: y, Z: z, W: w}}) + } + } + + // Controller key lists — handle both counted ("positionkey 2") and + // uncounted ("positionkey" + lines + "endlist") formats. + case "positionkey": + if len(tokens) >= 2 { + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil { + p.readPositionKeys(&an.PositionKeys, int(count)) + } + } else { + p.readPositionKeysUntilEnd(&an.PositionKeys) + } + case "orientationkey": + if len(tokens) >= 2 { + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil { + p.readOrientationKeys(&an.OrientationKeys, int(count)) + } + } else { + p.readOrientationKeysUntilEnd(&an.OrientationKeys) + } + // AnimMesh data in anim blocks (verts, faces, tverts, sampleperiod, clip*, animverts, animtverts) + case "verts": + if len(tokens) >= 2 { + if an.Mesh == nil { + an.Mesh = NewMeshData() + } + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil { + p.readVec3List(&an.Mesh.Verts, int(count)) + } + } + case "faces": + if len(tokens) >= 2 { + if an.Mesh == nil { + an.Mesh = NewMeshData() + } + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil { + p.readFaceList(&an.Mesh.Faces, int(count)) + } + } + case "tverts": + if len(tokens) >= 2 { + if an.Mesh == nil { + an.Mesh = NewMeshData() + } + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil { + p.readVec3List(&an.Mesh.TVerts, int(count)) + } + } + case "sampleperiod": + if len(tokens) >= 2 { + if an.AnimMesh == nil { + an.AnimMesh = &AnimMeshData{} + } + an.AnimMesh.SamplePeriod, _ = parseFloat(safeIndex(tokens, 1)) + } + case "clipu": + if len(tokens) >= 2 { + if an.AnimMesh == nil { + an.AnimMesh = &AnimMeshData{} + } + an.AnimMesh.ClipU, _ = parseFloat(safeIndex(tokens, 1)) + } + case "clipv": + if len(tokens) >= 2 { + if an.AnimMesh == nil { + an.AnimMesh = &AnimMeshData{} + } + an.AnimMesh.ClipV, _ = parseFloat(safeIndex(tokens, 1)) + } + case "clipw": + if len(tokens) >= 2 { + if an.AnimMesh == nil { + an.AnimMesh = &AnimMeshData{} + } + an.AnimMesh.ClipW, _ = parseFloat(safeIndex(tokens, 1)) + } + case "cliph": + if len(tokens) >= 2 { + if an.AnimMesh == nil { + an.AnimMesh = &AnimMeshData{} + } + an.AnimMesh.ClipH, _ = parseFloat(safeIndex(tokens, 1)) + } + case "animverts": + if len(tokens) >= 2 { + if an.AnimMesh == nil { + an.AnimMesh = &AnimMeshData{} + } + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil { + p.readVec3List(&an.AnimMesh.AnimVerts, int(count)) + } + } + case "animtverts": + if len(tokens) >= 2 { + if an.AnimMesh == nil { + an.AnimMesh = &AnimMeshData{} + } + count, err := parseInt(safeIndex(tokens, 1)) + if err == nil { + p.readVec3List(&an.AnimMesh.AnimTVerts, int(count)) + } + } + + case "endlist": + + default: + if p.tryAnimKeyTable(keyword, tokens, an) { + return + } + if strings.HasSuffix(keyword, "bezierkey") { + base := strings.TrimSuffix(keyword, "bezierkey") + p.parseAnimNodeParam(base+"key", tokens) + return + } + // Static emitter/light/mesh values on animation nodes become + // single-keyframe controllers at t=0, matching nwnmdlcomp behavior. + if getter, ok := animControllerFloatTable[keyword]; ok { + if len(tokens) >= 2 { + v, err := parseFloat(safeIndex(tokens, 1)) + if err == nil { + keys := getter(an) + if len(*keys) == 0 { + *keys = append(*keys, FloatKey{Time: 0, Value: v}) + } + } + } + return + } + if getter, ok := animControllerColorTable[keyword]; ok { + if len(tokens) >= 4 { + r, _ := parseFloat(safeIndex(tokens, 1)) + g, _ := parseFloat(safeIndex(tokens, 2)) + b, _ := parseFloat(safeIndex(tokens, 3)) + keys := getter(an) + if len(*keys) == 0 { + *keys = append(*keys, ColorKey{Time: 0, Value: Vec3{X: r, Y: g, Z: b}}) + } + } + return + } + } +} + +// List reading helpers + +// parseCountedVec3 extracts a count from tokens[1] and reads that many Vec3 lines. +func (p *parser) parseCountedVec3(tokens []string, out *[]Vec3) { + if len(tokens) >= 2 { + if count, err := parseInt(safeIndex(tokens, 1)); err == nil && count > 0 { + p.readVec3List(out, int(count)) + } + } +} + +func (p *parser) parseCountedVec4(tokens []string, out *[]Vec4) { + if len(tokens) >= 2 { + if count, err := parseInt(safeIndex(tokens, 1)); err == nil && count > 0 { + p.readVec4List(out, int(count)) + } + } +} + +func (p *parser) parseCountedFaces(tokens []string, out *[]Face) { + if len(tokens) >= 2 { + if count, err := parseInt(safeIndex(tokens, 1)); err == nil && count > 0 { + p.readFaceList(out, int(count)) + } + } +} + +func (p *parser) parseCountedInt3(tokens []string, out *[][3]int32) { + if len(tokens) >= 2 { + if count, err := parseInt(safeIndex(tokens, 1)); err == nil && count > 0 { + p.readInt3List(out, int(count)) + } + } +} + +func (p *parser) parseCountedStrings(tokens []string, out *[]string) { + if len(tokens) >= 2 { + if count, err := parseInt(safeIndex(tokens, 1)); err == nil && count > 0 { + p.readStringList(out, int(count)) + } + } +} + +func (p *parser) readVec3List(out *[]Vec3, count int) { + if !p.trackAlloc(int64(count) * 12) { + p.errorf("allocation limit exceeded reading %d vec3 entries", count) + return + } + for i := 0; i < count; i++ { + line, ok := p.nextLine() + if !ok { + break + } + tokens := tokenize(line) + if v, ok := parseVec3(tokens); ok { + *out = append(*out, v) + } + } +} + +func (p *parser) readVec4List(out *[]Vec4, count int) { + if !p.trackAlloc(int64(count) * 16) { + p.errorf("allocation limit exceeded reading %d vec4 entries", count) + return + } + for i := 0; i < count; i++ { + line, ok := p.nextLine() + if !ok { + break + } + tokens := tokenize(line) + if len(tokens) >= 4 { + x, _ := parseFloat(tokens[0]) + y, _ := parseFloat(tokens[1]) + z, _ := parseFloat(tokens[2]) + w, _ := parseFloat(tokens[3]) + *out = append(*out, Vec4{X: x, Y: y, Z: z, W: w}) + } + } +} + +func (p *parser) readFaceList(out *[]Face, count int) { + if !p.trackAlloc(int64(count) * 48) { + p.errorf("allocation limit exceeded reading %d face entries", count) + return + } + for i := 0; i < count; i++ { + line, ok := p.nextLine() + if !ok { + break + } + tokens := tokenize(line) + if len(tokens) >= 8 { + v0, _ := parseInt(tokens[0]) + v1, _ := parseInt(tokens[1]) + v2, _ := parseInt(tokens[2]) + sg, _ := parseInt(tokens[3]) + uv0, _ := parseInt(tokens[4]) + uv1, _ := parseInt(tokens[5]) + uv2, _ := parseInt(tokens[6]) + mat, _ := parseInt(tokens[7]) + *out = append(*out, Face{ + Verts: [3]int32{v0, v1, v2}, + SmoothGroup: sg, + UVs: [3]int32{uv0, uv1, uv2}, + Material: mat, + }) + } + } +} + +func (p *parser) readFloatList(out *[]float32, count int) { + if !p.trackAlloc(int64(count) * 4) { + p.errorf("allocation limit exceeded reading %d float entries", count) + return + } + for i := 0; i < count; i++ { + line, ok := p.nextLine() + if !ok { + break + } + tokens := tokenize(line) + if len(tokens) >= 1 { + if v, err := parseFloat(tokens[0]); err == nil { + *out = append(*out, v) + } + } + } +} + +func (p *parser) readInt3List(out *[][3]int32, count int) { + if !p.trackAlloc(int64(count) * 12) { + p.errorf("allocation limit exceeded reading %d int3 entries", count) + return + } + for i := 0; i < count; i++ { + line, ok := p.nextLine() + if !ok { + break + } + tokens := tokenize(line) + if len(tokens) >= 3 { + a, _ := parseInt(tokens[0]) + b, _ := parseInt(tokens[1]) + c, _ := parseInt(tokens[2]) + *out = append(*out, [3]int32{a, b, c}) + } + } +} + +func (p *parser) readStringList(out *[]string, count int) { + if !p.trackAlloc(int64(count) * 32) { + p.errorf("allocation limit exceeded reading %d string entries", count) + return + } + for i := 0; i < count; i++ { + line, ok := p.nextLine() + if !ok { + break + } + *out = append(*out, strings.TrimSpace(line)) + } +} + +func (p *parser) readAabbList(out *[]AabbEntry, count int) { + if !p.trackAlloc(int64(count) * 32) { + p.errorf("allocation limit exceeded reading %d aabb entries", count) + return + } + for i := 0; i < count; i++ { + line, ok := p.nextLine() + if !ok { + break + } + tokens := tokenize(line) + if len(tokens) >= 7 { + x1, _ := parseFloat(tokens[0]) + y1, _ := parseFloat(tokens[1]) + z1, _ := parseFloat(tokens[2]) + x2, _ := parseFloat(tokens[3]) + y2, _ := parseFloat(tokens[4]) + z2, _ := parseFloat(tokens[5]) + face, _ := parseInt(tokens[6]) + *out = append(*out, AabbEntry{ + BoundMin: Vec3{X: x1, Y: y1, Z: z1}, + BoundMax: Vec3{X: x2, Y: y2, Z: z2}, + LeafFace: face, + }) + } + } +} + +func (p *parser) readWeightList(skin *SkinData, count int) { + // Per line: VertexWeight plus bone name strings (often long in community models). + if !p.trackAlloc(int64(count) * 512) { + p.errorf("allocation limit exceeded reading %d skin weights", count) + return + } + for i := 0; i < count; i++ { + line, ok := p.nextLine() + if !ok { + break + } + tokens := tokenize(line) + w := VertexWeight{} + // Weight format: bonename1 weight1 bonename2 weight2 ... + for j := 0; j+1 < len(tokens); j += 2 { + wt, err := parseFloat(tokens[j+1]) + if err != nil { + continue + } + if wt > 0 { + w.Bones = append(w.Bones, tokens[j]) + w.Weights = append(w.Weights, wt) + } + } + skin.Weights = append(skin.Weights, w) + } +} + +func (p *parser) readPositionKeys(out *[]PositionKey, count int) { + if !p.trackAlloc(int64(count) * 16) { + p.errorf("allocation limit exceeded reading %d position keys", count) + return + } + for i := 0; i < count; i++ { + line, ok := p.nextLine() + if !ok { + break + } + tokens := tokenize(line) + if len(tokens) >= 4 { + t, _ := parseFloat(tokens[0]) + x, _ := parseFloat(tokens[1]) + y, _ := parseFloat(tokens[2]) + z, _ := parseFloat(tokens[3]) + *out = append(*out, PositionKey{Time: t, Value: Vec3{X: x, Y: y, Z: z}}) + } + } +} + +func (p *parser) readOrientationKeys(out *[]OrientationKey, count int) { + if !p.trackAlloc(int64(count) * 20) { + p.errorf("allocation limit exceeded reading %d orientation keys", count) + return + } + for i := 0; i < count; i++ { + line, ok := p.nextLine() + if !ok { + break + } + tokens := tokenize(line) + if len(tokens) >= 5 { + t, _ := parseFloat(tokens[0]) + x, _ := parseFloat(tokens[1]) + y, _ := parseFloat(tokens[2]) + z, _ := parseFloat(tokens[3]) + w, _ := parseFloat(tokens[4]) + *out = append(*out, OrientationKey{Time: t, Value: Vec4{X: x, Y: y, Z: z, W: w}}) + } + } +} + +func (p *parser) readFloatKeys(out *[]FloatKey, count int) { + if !p.trackAlloc(int64(count) * 8) { + p.errorf("allocation limit exceeded reading %d float keys", count) + return + } + for i := 0; i < count; i++ { + line, ok := p.nextLine() + if !ok { + break + } + tokens := tokenize(line) + if len(tokens) >= 2 { + t, _ := parseFloat(tokens[0]) + v, _ := parseFloat(tokens[1]) + *out = append(*out, FloatKey{Time: t, Value: v}) + } + } +} + +// readDetonateKeys reads detonate key entries that may be time-only (NWN spec: +// NumCols=-1) or time+value. Both formats are accepted for interoperability. +func (p *parser) readDetonateKeys(out *[]FloatKey, count int) { + if !p.trackAlloc(int64(count) * 8) { + p.errorf("allocation limit exceeded reading %d detonate keys", count) + return + } + for i := 0; i < count; i++ { + line, ok := p.nextLine() + if !ok { + break + } + tokens := tokenize(line) + if len(tokens) >= 2 { + t, _ := parseFloat(tokens[0]) + v, _ := parseFloat(tokens[1]) + *out = append(*out, FloatKey{Time: t, Value: v}) + } else if len(tokens) == 1 { + t, _ := parseFloat(tokens[0]) + *out = append(*out, FloatKey{Time: t, Value: 1}) + } + } +} + +func (p *parser) readColorKeys(out *[]ColorKey, count int) { + if !p.trackAlloc(int64(count) * 16) { + p.errorf("allocation limit exceeded reading %d color keys", count) + return + } + for i := 0; i < count; i++ { + line, ok := p.nextLine() + if !ok { + break + } + tokens := tokenize(line) + if len(tokens) >= 4 { + t, _ := parseFloat(tokens[0]) + r, _ := parseFloat(tokens[1]) + g, _ := parseFloat(tokens[2]) + b, _ := parseFloat(tokens[3]) + *out = append(*out, ColorKey{Time: t, Value: Vec3{X: r, Y: g, Z: b}}) + } + } +} + +// readKeysUntilEnd scans lines until "endlist", calling parseLine for each +// line that has at least minTokens tokens. allocBytes is tracked per entry. +func (p *parser) readKeysUntilEnd(minTokens int, allocBytes int64, label string, parseLine func(tokens []string)) { + for { + line, ok := p.nextLine() + if !ok { + break + } + tokens := tokenize(line) + if len(tokens) == 0 { + continue + } + if strings.EqualFold(tokens[0], "endlist") { + break + } + if len(tokens) >= minTokens { + if !p.trackAlloc(allocBytes) { + p.errorf("allocation limit exceeded reading %s", label) + break + } + parseLine(tokens) + } + } +} + +func (p *parser) readPositionKeysUntilEnd(out *[]PositionKey) { + p.readKeysUntilEnd(4, 16, "position keys", func(tokens []string) { + t, _ := parseFloat(tokens[0]) + x, _ := parseFloat(tokens[1]) + y, _ := parseFloat(tokens[2]) + z, _ := parseFloat(tokens[3]) + *out = append(*out, PositionKey{Time: t, Value: Vec3{X: x, Y: y, Z: z}}) + }) +} + +func (p *parser) readOrientationKeysUntilEnd(out *[]OrientationKey) { + p.readKeysUntilEnd(5, 20, "orientation keys", func(tokens []string) { + t, _ := parseFloat(tokens[0]) + x, _ := parseFloat(tokens[1]) + y, _ := parseFloat(tokens[2]) + z, _ := parseFloat(tokens[3]) + w, _ := parseFloat(tokens[4]) + *out = append(*out, OrientationKey{Time: t, Value: Vec4{X: x, Y: y, Z: z, W: w}}) + }) +} + +func (p *parser) readFloatKeysUntilEnd(out *[]FloatKey) { + p.readKeysUntilEnd(2, 8, "float keys", func(tokens []string) { + t, _ := parseFloat(tokens[0]) + v, _ := parseFloat(tokens[1]) + *out = append(*out, FloatKey{Time: t, Value: v}) + }) +} + +func (p *parser) readColorKeysUntilEnd(out *[]ColorKey) { + p.readKeysUntilEnd(4, 16, "color keys", func(tokens []string) { + t, _ := parseFloat(tokens[0]) + r, _ := parseFloat(tokens[1]) + g, _ := parseFloat(tokens[2]) + b, _ := parseFloat(tokens[3]) + *out = append(*out, ColorKey{Time: t, Value: Vec3{X: r, Y: g, Z: b}}) + }) +} + +// Utility functions + +func tokenize(line string) []string { + return strings.Fields(line) +} + +func parseFloat(s string) (float32, error) { + v, err := strconv.ParseFloat(s, 32) + if err != nil { + return 0, err + } + if math.IsNaN(v) || math.IsInf(v, 0) { + return 0, fmt.Errorf("invalid float value: %s", s) + } + return float32(v), nil +} + +func parseInt(s string) (int32, error) { + // Try int first, then float (some MDL files use "1.0" for integer fields) + if v, err := strconv.ParseInt(s, 10, 32); err == nil { + return int32(v), nil + } + if v, err := strconv.ParseFloat(s, 64); err == nil { + return int32(math.Round(v)), nil + } + return 0, fmt.Errorf("not a number: %s", s) +} + +func parseVec3(tokens []string) (Vec3, bool) { + if len(tokens) < 3 { + return Vec3{}, false + } + x, e1 := parseFloat(tokens[0]) + y, e2 := parseFloat(tokens[1]) + z, e3 := parseFloat(tokens[2]) + if e1 != nil || e2 != nil || e3 != nil { + return Vec3{}, false + } + return Vec3{X: x, Y: y, Z: z}, true +} + +func parseVec4(tokens []string) (Vec4, bool) { + if len(tokens) < 4 { + return Vec4{}, false + } + x, e1 := parseFloat(tokens[0]) + y, e2 := parseFloat(tokens[1]) + z, e3 := parseFloat(tokens[2]) + w, e4 := parseFloat(tokens[3]) + if e1 != nil || e2 != nil || e3 != nil || e4 != nil { + return Vec4{}, false + } + return Vec4{X: x, Y: y, Z: z, W: w}, true +} + +func safeIndex(tokens []string, i int) string { + if i < len(tokens) { + return tokens[i] + } + return "" +} + +// validParamsForType returns the set of valid parameter names for a given node type. +// Used for fuzzy matching. +// Ref: load_models.pl paramtype/3 (lines 648-898) +func validParamsForType(nodeType string) []string { + base := []string{ + "parent", "position", "orientation", "scale", "inheritcolor", "wirecolor", + } + + meshParams := []string{ + "selfillumcolor", "alpha", "diffuse", "ambient", "specular", "shininess", + "shadow", "beaming", "render", "transparencyhint", "renderhint", + "bitmap", "texture0", "texture1", "texture2", "materialname", + "tilefade", "rotatetexture", "lightmapped", "center", + "multimaterial", "verts", "faces", "tverts", "tverts1", "tverts2", "tverts3", + "texindices0", "texindices1", "texindices2", "texindices3", + "colors", "normals", "tangents", + } + + switch nodeType { + case "dummy": + return base + case "trimesh": + return append(base, meshParams...) + case "skin": + return append(append(base, meshParams...), "weights") + case "animmesh": + return append(append(base, meshParams...), "sampleperiod", "clipu", "clipv", "clipw", "cliph", "animverts", "animtverts") + case "danglymesh": + return append(append(base, meshParams...), "displacement", "tightness", "period", "constraints", "danglymesh", "showdispl", "displtype", "gizmo") + case "aabb": + return append(append(base, meshParams...), "aabb") + case "emitter": + return append(base, emitterParams()...) + case "light": + return append(base, lightParams()...) + case "reference": + return append(base, "refmodel", "reattachable") + default: + return base + } +} + +func emitterParams() []string { + return []string{ + "deadspace", "blastradius", "blastlength", "xgrid", "ygrid", "spawntype", + "update", "render", "blend", "texture", "chunkname", "twosidedtex", + "loop", "renderorder", "p2p", "p2p_sel", "affectedbywind", "m_istinted", + "bounce", "random", "inherit", "inheritvel", "inherit_local", "splat", "inherit_part", + "p2p_type", "render_sel", "blend_sel", "update_sel", "spawntype_sel", + "opacity", "iconsize", "lockaxes", "chunky", + "alphastart", "alphamid", "alphaend", + "colorstart", "colormid", "colorend", + "sizestart", "sizemid", "sizeend", + "sizestart_y", "sizemid_y", "sizeend_y", + "birthrate", "lifeexp", "mass", "spread", "particlerot", "velocity", "randvel", + "bounce_co", "blurlength", "fps", "framestart", "frameend", + "grav", "drag", "threshold", "combinetime", + "percentstart", "percentmid", "percentend", + "lightningdelay", "lightningradius", "lightningscale", "lightningsubdiv", + "p2p_bezier2", "p2p_bezier3", "xsize", "ysize", + } +} + +func lightParams() []string { + return []string{ + "flareradius", "lensflares", "lightpriority", "ambientonly", + "isdynamic", "ndynamictype", "affectdynamic", "shadow", + "generateflare", "fadinglight", "negativelight", + "color", "radius", "multiplier", "shadowradius", "verticaldisplacement", + "flaresizes", "flarepositions", "flarecolorshifts", "texturenames", + } +} diff --git a/pkg/mdl/parser_test.go b/pkg/mdl/parser_test.go new file mode 100644 index 0000000..fa6a4f8 --- /dev/null +++ b/pkg/mdl/parser_test.go @@ -0,0 +1,239 @@ +package mdl + +import ( + "strings" + "testing" +) + +func TestParseMinimalModel(t *testing.T) { + input := ` +#MAXMODEL ASCII +newmodel testmodel + classification CHARACTER + setsupermodel testmodel NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom testmodel + node dummy testmodel + parent NULL + endnode +endmodelgeom testmodel +donemodel testmodel +` + result, err := Parse(strings.NewReader(input)) + if err != nil { + t.Fatal(err) + } + + m := result.Model + if m.Name != "testmodel" { + t.Errorf("name = %q, want %q", m.Name, "testmodel") + } + if m.Classification != "CHARACTER" { + t.Errorf("classification = %q, want %q", m.Classification, "CHARACTER") + } + if m.SuperModel != "NULL" { + t.Errorf("supermodel = %q, want %q", m.SuperModel, "NULL") + } + if len(m.Nodes) != 1 { + t.Fatalf("nodes = %d, want 1", len(m.Nodes)) + } + if m.Nodes[0].NodeType() != "dummy" { + t.Errorf("node type = %q, want dummy", m.Nodes[0].NodeType()) + } +} + +func TestParseTrimeshNode(t *testing.T) { + input := ` +newmodel test + classification CHARACTER + setsupermodel test NULL +beginmodelgeom test + node trimesh mesh01 + parent test + ambient 0.2 0.2 0.2 + diffuse 0.8 0.8 0.8 + specular 0 0 0 + shininess 10 + bitmap texture01 + render 1 + shadow 0 + beaming 0 + transparencyhint 0 + verts 3 + 0 0 0 + 1 0 0 + 0 1 0 + faces 1 + 0 1 2 1 0 1 2 0 + endnode +endmodelgeom test +donemodel test +` + result, err := Parse(strings.NewReader(input)) + if err != nil { + t.Fatal(err) + } + + m := result.Model + if len(m.Nodes) != 1 { + t.Fatalf("nodes = %d, want 1", len(m.Nodes)) + } + + n := m.Nodes[0] + if n.NodeType() != "trimesh" { + t.Errorf("node type = %q, want trimesh", n.NodeType()) + } + if n.Mesh == nil { + t.Fatal("mesh data is nil") + } + if len(n.Mesh.Verts) != 3 { + t.Errorf("verts = %d, want 3", len(n.Mesh.Verts)) + } + if len(n.Mesh.Faces) != 1 { + t.Errorf("faces = %d, want 1", len(n.Mesh.Faces)) + } + if n.Mesh.Bitmap != "texture01" { + t.Errorf("bitmap = %q, want texture01", n.Mesh.Bitmap) + } +} + +func TestParseAnimation(t *testing.T) { + input := ` +newmodel test + classification CHARACTER + setsupermodel test NULL +beginmodelgeom test + node dummy test + parent NULL + endnode +endmodelgeom test +newanim walk test + length 1.0 + transtime 0.25 + animroot test + event 0.5 footstep + node dummy test + parent NULL + positionkey 2 + 0 0 0 0 + 1 1 0 0 + endnode +doneanim walk test +donemodel test +` + result, err := Parse(strings.NewReader(input)) + if err != nil { + t.Fatal(err) + } + + m := result.Model + if len(m.Animations) != 1 { + t.Fatalf("animations = %d, want 1", len(m.Animations)) + } + + anim := m.Animations[0] + if anim.Name != "walk" { + t.Errorf("anim name = %q, want walk", anim.Name) + } + if anim.Length != 1.0 { + t.Errorf("anim length = %v, want 1.0", anim.Length) + } + if len(anim.Events) != 1 { + t.Errorf("events = %d, want 1", len(anim.Events)) + } + if len(anim.Nodes) != 1 { + t.Fatalf("anim nodes = %d, want 1", len(anim.Nodes)) + } + if len(anim.Nodes[0].PositionKeys) != 2 { + t.Errorf("position keys = %d, want 2", len(anim.Nodes[0].PositionKeys)) + } +} + +func TestParseEmitterNode(t *testing.T) { + input := ` +newmodel test + classification EFFECT + setsupermodel test NULL +beginmodelgeom test + node emitter fx_emit + parent test + deadspace 0.5 + blastradius 0 + blastlength 0 + xgrid 5 + ygrid 5 + spawntype 0 + update fountain + render normal + blend normal + texture fxpa_smoke + birthrate 10 + lifeexp 2 + mass 0.5 + velocity 5 + alphastart 1 + alphamid 0.5 + alphaend 0 + colorstart 1 1 1 + colorend 0.5 0.5 0.5 + sizestart 0.1 + sizeend 0.5 + p2p 0 + p2p_sel 0 + affectedbywind 1 + m_istinted 0 + bounce 0 + random 1 + inherit 0 + inheritvel 0 + inherit_local 0 + splat 0 + inherit_part 0 + endnode +endmodelgeom test +donemodel test +` + result, err := Parse(strings.NewReader(input)) + if err != nil { + t.Fatal(err) + } + + m := result.Model + if len(m.Nodes) != 1 { + t.Fatalf("nodes = %d, want 1", len(m.Nodes)) + } + + n := m.Nodes[0] + if n.NodeType() != "emitter" { + t.Errorf("type = %q, want emitter", n.NodeType()) + } + if n.Emitter.BirthRate != 10 { + t.Errorf("birthrate = %v, want 10", n.Emitter.BirthRate) + } + if n.Emitter.AffectedByWind != 1 { + t.Errorf("affectedbywind = %d, want 1", n.Emitter.AffectedByWind) + } +} + +func TestNearMatch(t *testing.T) { + tests := []struct { + input string + valid []string + want string + ok bool + }{ + {"bitmap", []string{"bitmap", "render"}, "bitmap", true}, + {"setfillumcolor", []string{"selfillumcolor"}, "selfillumcolor", true}, + {"n_dynamic_type", []string{"ndynamictype"}, "ndynamictype", true}, + {"bitmpa", []string{"bitmap", "render"}, "bitmap", true}, // Levenshtein 2 + {"zzzzz", []string{"bitmap", "render"}, "", false}, // too far + } + + for _, tt := range tests { + got, ok := NearMatchParam(tt.input, tt.valid) + if ok != tt.ok || got != tt.want { + t.Errorf("NearMatchParam(%q) = (%q, %v), want (%q, %v)", tt.input, got, ok, tt.want, tt.ok) + } + } +} diff --git a/pkg/mdl/regression_test.go b/pkg/mdl/regression_test.go new file mode 100644 index 0000000..0d07ebd --- /dev/null +++ b/pkg/mdl/regression_test.go @@ -0,0 +1,425 @@ +package mdl + +import ( + "bytes" + "math" + "os" + "path/filepath" + "strings" + "testing" +) + +func TestRegression_AlphaZeroPreserved(t *testing.T) { + src := `newmodel alphatest +setsupermodel alphatest NULL +classification CHARACTER +setanimationscale 1.00 +beginmodelgeom alphatest + node dummy alphatest + parent NULL + endnode + node trimesh mymesh + parent alphatest + bitmap blank + render 1 + alpha 0 + verts 3 + 0 0 0 + 1 0 0 + 0 1 0 + tverts 3 + 0 0 0 + 1 0 0 + 0 1 0 + faces 1 + 0 1 2 0 0 0 0 1 2 + endnode +endmodelgeom +donemodel alphatest +` + model := mustParseASCII(t, src) + binData := mustCompile(t, model) + model2 := mustDecompile(t, binData) + + var meshNode *Node + for _, n := range model2.Nodes { + if n.Mesh != nil { + meshNode = n + break + } + } + if meshNode == nil { + t.Fatal("no mesh node after decompile") + } + if meshNode.Mesh.Alpha != 0 { + t.Errorf("alpha: got %g, want 0", meshNode.Mesh.Alpha) + } +} + +func TestRegression_SnapFloatNegative(t *testing.T) { + got := snapFloat(-1.007, 0.01) + if math.Abs(float64(got)-(-1.01)) > 0.001 { + t.Errorf("snapFloat(-1.007, 0.01) = %g, want ≈ -1.01", got) + } + + got = snapFloat(1.007, 0.01) + if math.Abs(float64(got)-1.01) > 0.001 { + t.Errorf("snapFloat(1.007, 0.01) = %g, want ≈ 1.01", got) + } + + got = snapFloat(0, 0.01) + if got != 0 { + t.Errorf("snapFloat(0, 0.01) = %g, want 0", got) + } + + got = snapFloat(5.0, 0) + if got != 5.0 { + t.Errorf("snapFloat(5.0, 0) = %g, want 5.0 (grid=0 passthrough)", got) + } +} + +func TestRegression_AABBRestoreOnError(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{{0, 0, 0}, {0, 0, 0}, {0, 0, 0}} + mesh.Faces = []Face{ + {Verts: [3]int32{0, 1, 2}}, + {Verts: [3]int32{0, 2, 1}}, + } + original := []AabbEntry{ + {BoundMin: Vec3{-1, -1, -1}, BoundMax: Vec3{1, 1, 1}, LeafFace: 0}, + {BoundMin: Vec3{-2, -2, -2}, BoundMax: Vec3{2, 2, 2}, LeafFace: 1}, + } + node := &Node{ + Name: "walkmesh", + Mesh: mesh, + Aabb: &AabbData{Entries: append([]AabbEntry(nil), original...)}, + } + + err := RebuildAABB(node) + if err == nil { + t.Fatal("expected RebuildAABB to fail on degenerate colocated faces") + } + + if len(node.Aabb.Entries) != len(original) { + t.Fatalf("entries count after error: got %d, want %d", len(node.Aabb.Entries), len(original)) + } + for i, e := range node.Aabb.Entries { + if e != original[i] { + t.Errorf("entry %d not restored: got %+v, want %+v", i, e, original[i]) + } + } +} + +func TestRegression_CompileFileAtomic(t *testing.T) { + dir := t.TempDir() + path := filepath.Join(dir, "test.mdl") + + if err := os.WriteFile(path, []byte("original content"), 0644); err != nil { + t.Fatal(err) + } + + model := minimalModel() + if err := CompileFile(model, path); err != nil { + t.Fatalf("CompileFile: %v", err) + } + + data, err := os.ReadFile(path) + if err != nil { + t.Fatalf("read: %v", err) + } + if string(data) == "original content" { + t.Error("file was not overwritten") + } + if len(data) < 12 { + t.Errorf("binary output too short: %d bytes", len(data)) + } + + tmpPath := path + ".tmp" + if _, err := os.Stat(tmpPath); err == nil { + t.Error(".tmp file was left behind") + } +} + +func TestRegression_WriteFileAtomic(t *testing.T) { + dir := t.TempDir() + path := filepath.Join(dir, "test.mdl") + + if err := os.WriteFile(path, []byte("original content"), 0644); err != nil { + t.Fatal(err) + } + + model := minimalModel() + if err := WriteFile(model, path); err != nil { + t.Fatalf("WriteFile: %v", err) + } + + data, err := os.ReadFile(path) + if err != nil { + t.Fatalf("read: %v", err) + } + if string(data) == "original content" { + t.Error("file was not overwritten") + } + if !strings.Contains(string(data), "newmodel") { + t.Error("output doesn't contain expected ASCII MDL content") + } + + tmpPath := path + ".tmp" + if _, err := os.Stat(tmpPath); err == nil { + t.Error(".tmp file was left behind") + } +} + +func TestRegression_SplitMultiEdgeTVerts(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{ + {0, 0, 0}, + {1, 0, 0}, + {0, 1, 0}, + {1, 1, 0}, + } + mesh.TVerts = []Vec3{ + {0, 0, 0}, + {1, 0, 0}, + {0, 1, 0}, + {1, 1, 0}, + } + mesh.Faces = []Face{ + {Verts: [3]int32{0, 1, 2}, UVs: [3]int32{0, 1, 2}}, + {Verts: [3]int32{1, 3, 2}, UVs: [3]int32{1, 3, 2}}, + {Verts: [3]int32{2, 1, 3}, UVs: [3]int32{2, 1, 3}}, + } + node := &Node{Name: "multi", Mesh: mesh} + + SplitMultipleEdges(node) + + for fi, f := range node.Mesh.Faces { + for vi := 0; vi < 3; vi++ { + if int(f.UVs[vi]) >= len(node.Mesh.TVerts) { + t.Errorf("face %d uv[%d]=%d >= len(TVerts)=%d", + fi, vi, f.UVs[vi], len(node.Mesh.TVerts)) + } + } + } +} + +func TestRegression_TilefadeAnimOrphan(t *testing.T) { + model := &Model{ + Name: "tiletest", + SuperModel: "NULL", + Classification: "TILE", + AnimationScale: 1.0, + } + root := &Node{Name: "tiletest", Parent: "NULL"} + meshNode := &Node{ + Name: "mymesh", + Parent: "tiletest", + Mesh: &MeshData{ + Render: 1, + Alpha: 1.0, + Bitmap: "blank", + Verts: []Vec3{ + {0, 0, 0}, {1, 0, 0}, {0, 1, 0}, + {0, 0, 3}, {1, 0, 3}, {0, 1, 3}, + }, + TVerts: []Vec3{ + {0, 0, 0}, {1, 0, 0}, {0, 1, 0}, + {0, 0, 0}, {1, 0, 0}, {0, 1, 0}, + }, + Faces: []Face{ + {Verts: [3]int32{0, 1, 2}, UVs: [3]int32{0, 1, 2}}, + {Verts: [3]int32{3, 4, 5}, UVs: [3]int32{3, 4, 5}}, + {Verts: [3]int32{0, 1, 3}, UVs: [3]int32{0, 1, 3}}, + }, + TileFade: 2, + }, + } + model.Nodes = []*Node{root, meshNode} + model.Animations = []Animation{ + { + Name: "tiledefault", + Length: 1.0, + TransTime: 0.25, + Root: "tiletest", + Nodes: []AnimNode{ + {Name: "tiletest", Parent: "NULL"}, + {Name: "mymesh", Parent: "tiletest"}, + }, + }, + } + + SliceTileFade(model, 1.5) + + nodeNames := make(map[string]bool) + for _, n := range model.Nodes { + nodeNames[strings.ToLower(n.Name)] = true + } + + for _, anim := range model.Animations { + for _, an := range anim.Nodes { + if strings.EqualFold(an.Parent, "NULL") { + continue + } + if !nodeNames[strings.ToLower(an.Parent)] { + t.Errorf("animation node %q has parent %q not found in model nodes", + an.Name, an.Parent) + } + } + } +} + +func TestRegression_CaseSensitiveFindNode(t *testing.T) { + model := &Model{ + Name: "test", + Nodes: []*Node{ + {Name: "MyNode", Parent: "NULL"}, + }, + } + + if n := model.FindNode("mynode"); n == nil { + t.Error("FindNode(\"mynode\") returned nil for node named \"MyNode\"") + } + if n := model.FindNode("MYNODE"); n == nil { + t.Error("FindNode(\"MYNODE\") returned nil for node named \"MyNode\"") + } + if n := model.FindNode("MyNode"); n == nil { + t.Error("FindNode(\"MyNode\") returned nil for node named \"MyNode\"") + } +} + +func TestRegression_NaNFloat(t *testing.T) { + src := `newmodel nantest +setsupermodel nantest NULL +classification CHARACTER +setanimationscale 1.00 +beginmodelgeom nantest + node dummy nantest + parent NULL + endnode + node trimesh mymesh + parent nantest + bitmap blank + render 1 + verts 3 + NaN 0 0 + 1 0 0 + 0 1 0 + tverts 3 + 0 0 0 + 1 0 0 + 0 1 0 + faces 1 + 0 1 2 0 0 0 0 1 2 + endnode +endmodelgeom +donemodel nantest +` + pr, err := Parse(strings.NewReader(src)) + if err != nil { + t.Fatalf("Parse: %v", err) + } + if pr.Model == nil { + t.Fatal("nil model") + } + meshNode := pr.Model.FindNode("mymesh") + if meshNode == nil || meshNode.Mesh == nil { + t.Fatal("no mesh node") + } + + for i, v := range meshNode.Mesh.Verts { + if math.IsNaN(float64(v.X)) || math.IsNaN(float64(v.Y)) || math.IsNaN(float64(v.Z)) { + t.Errorf("vert %d contains NaN: {%g %g %g}", i, v.X, v.Y, v.Z) + } + } +} + +func TestRegression_EmitterCtrlIDComplete(t *testing.T) { + for name := range emitterFloatFields { + id := emitterCtrlID(name) + if id == 0 { + t.Errorf("emitterCtrlID(%q) = 0 (unmapped controller)", name) + } + } + for name := range emitterColorFields { + id := emitterCtrlID(name) + if id == 0 { + t.Errorf("emitterCtrlID(%q) = 0 (unmapped controller)", name) + } + } +} + +func TestRegression_AlphaRoundtrip(t *testing.T) { + for _, alpha := range []float32{0.0, 0.5, 1.0} { + model := minimalModelWithMesh() + model.Nodes[1].Mesh.Alpha = alpha + + binData := mustCompile(t, model) + model2 := mustDecompile(t, binData) + + var meshNode *Node + for _, n := range model2.Nodes { + if n.Mesh != nil { + meshNode = n + break + } + } + if meshNode == nil { + t.Fatalf("alpha=%g: no mesh node after decompile", alpha) + } + if meshNode.Mesh.Alpha != alpha { + t.Errorf("alpha=%g: got %g after roundtrip", alpha, meshNode.Mesh.Alpha) + } + } +} + +func TestRegression_CompileDecompileNodeCount(t *testing.T) { + model := minimalModelWithMesh() + binData := mustCompile(t, model) + model2 := mustDecompile(t, binData) + + if len(model2.Nodes) != len(model.Nodes) { + t.Errorf("node count: got %d, want %d", len(model2.Nodes), len(model.Nodes)) + } +} + +func TestRegression_WriteReadRoundtrip(t *testing.T) { + model := minimalModelWithMesh() + + var buf bytes.Buffer + if err := Write(model, &buf); err != nil { + t.Fatalf("Write: %v", err) + } + ascii := buf.String() + if !strings.Contains(ascii, "newmodel") { + t.Error("ASCII output missing newmodel") + } + if !strings.Contains(ascii, "donemodel") { + t.Error("ASCII output missing donemodel") + } +} + +// ---- helpers ---- + +func minimalModel() *Model { + return &Model{ + Name: "test", + SuperModel: "NULL", + Classification: "CHARACTER", + AnimationScale: 1.0, + Nodes: []*Node{{Name: "test", Parent: "NULL"}}, + } +} + +func minimalModelWithMesh() *Model { + m := minimalModel() + mesh := NewMeshData() + mesh.Bitmap = "blank" + mesh.Verts = []Vec3{{0, 0, 0}, {1, 0, 0}, {0, 1, 0}} + mesh.TVerts = []Vec3{{0, 0, 0}, {1, 0, 0}, {0, 1, 0}} + mesh.Faces = []Face{ + {Verts: [3]int32{0, 1, 2}, UVs: [3]int32{0, 1, 2}}, + } + meshNode := &Node{Name: "mymesh", Parent: "test", Mesh: mesh} + m.Nodes = append(m.Nodes, meshNode) + return m +} diff --git a/pkg/mdl/repair_chamfer.go b/pkg/mdl/repair_chamfer.go new file mode 100644 index 0000000..a334db2 --- /dev/null +++ b/pkg/mdl/repair_chamfer.go @@ -0,0 +1,240 @@ +package mdl + +import ( + "fmt" + "math" +) + +// chamferSmoothGroup is the magic smoothing-group tag that marks Rosenkrantz +// chamfer triangles. The ASCII faces line is +// `V0 V1 V2 SmoothGroup UV0 UV1 UV2 Material`; the legacy Prolog matches the +// 5th token (smoothing group) against this constant, see make_checks.pl +// line 5604 and 5720. +const chamferSmoothGroup int32 = 1048576 + +// chamferMaterial is the material index used by chamfer triangles. Matches +// the literal 21 in add_chamfer_face/7 (line 5720). +const chamferMaterial int32 = 21 + +// chamferOffset is the inward + downward offset applied when adding a +// chamfer vertex. Matches the snap(0.03,...) call in +// make_checks.pl add_chamfer_vertex/6 (line 5694). +const chamferOffset float32 = 0.03 + +// DeleteChamfers removes every chamfer face (smoothing group == +// chamferSmoothGroup) whose absolute geometry matches one of the patterns in +// is_chamfer/3, then drops vertices and tverts that no remaining face +// references. +// +// Mirrors make_checks.pl delete_chamfer/4 (line 5625) and is_chamfer/3 +// (lines 5641-5665). Returns one message per affected node. +func DeleteChamfers(model *Model) []string { + var msgs []string + idx := nodeIndex(model) + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil || len(n.Mesh.Faces) == 0 { + continue + } + removed := deleteChamferOnNode(idx, n) + if removed > 0 { + msgs = append(msgs, fmt.Sprintf("removed %d chamfer face(s) from %q", removed, n.Name)) + } + } + return msgs +} + +func deleteChamferOnNode(idx map[string]*Node, n *Node) int { + mesh := n.Mesh + world := WorldVerticesCached(idx, n) + if len(world) != len(mesh.Verts) { + return 0 + } + + keep := mesh.Faces[:0] + keepIdx := make([]int, 0, len(mesh.Faces)) + removed := 0 + for fi, f := range mesh.Faces { + if f.SmoothGroup != chamferSmoothGroup { + keep = append(keep, f) + keepIdx = append(keepIdx, fi) + continue + } + if !int32InRange(f.Verts[0], world) || !int32InRange(f.Verts[1], world) || !int32InRange(f.Verts[2], world) { + keep = append(keep, f) + keepIdx = append(keepIdx, fi) + continue + } + w0 := world[f.Verts[0]] + w1 := world[f.Verts[1]] + w2 := world[f.Verts[2]] + if !isChamferTriangle(w0, w1, w2) { + keep = append(keep, f) + keepIdx = append(keepIdx, fi) + continue + } + removed++ + } + if removed == 0 { + return 0 + } + mesh.Faces = keep + mesh.TexIndices0 = filterByIdx(mesh.TexIndices0, keepIdx) + mesh.TexIndices1 = filterByIdx(mesh.TexIndices1, keepIdx) + mesh.TexIndices2 = filterByIdx(mesh.TexIndices2, keepIdx) + mesh.TexIndices3 = filterByIdx(mesh.TexIndices3, keepIdx) + + dropUnusedVerticesAndTVerts(n) + return removed +} + +func int32InRange(idx int32, slice []Vec3) bool { + return int(idx) >= 0 && int(idx) < len(slice) +} + +// isChamferTriangle reports whether the world-space triangle (a, b, c) +// matches one of the chamfer patterns in make_checks.pl is_chamfer/3 +// (lines 5641-5665). +// +// All cases are: two vertices sit on a tile boundary (X = ±5 or Y = ±5); +// the third vertex sits just outside the boundary (offset 0.01 .. 0.05). +// Patterns 5641-5652 ("axis-aligned") have both boundary vertices on the +// same tile line; patterns 5654-5665 ("corner-aligned") allow the boundary +// vertex pair to span the corner. +func isChamferTriangle(a, b, c Vec3) bool { + for _, perm := range [3][3]int{{0, 1, 2}, {1, 2, 0}, {2, 0, 1}} { + v := [3]Vec3{a, b, c} + x1, x2, x3 := v[perm[0]].X, v[perm[1]].X, v[perm[2]].X + y1, y2, y3 := v[perm[0]].Y, v[perm[1]].Y, v[perm[2]].Y + + if isChamferAxisAligned(x1, x2, x3, -5) { + return true + } + if isChamferAxisAligned(x1, x2, x3, 5) { + return true + } + if isChamferAxisAligned(y1, y2, y3, -5) { + return true + } + if isChamferAxisAligned(y1, y2, y3, 5) { + return true + } + if isChamferCornerAligned(x1, x2, x3, -5) { + return true + } + if isChamferCornerAligned(x1, x2, x3, 5) { + return true + } + if isChamferCornerAligned(y1, y2, y3, -5) { + return true + } + if isChamferCornerAligned(y1, y2, y3, 5) { + return true + } + } + return false +} + +// isChamferAxisAligned matches the patterns 5641-5652: two vertices on the +// boundary and the third one offset. +func isChamferAxisAligned(c1, c2, c3, boundary float32) bool { + if !floatEqual(c1, boundary) || !floatEqual(c2, boundary) { + return false + } + return offsetMatches(c3, boundary) +} + +// isChamferCornerAligned matches 5654-5665: one vertex on the boundary, the +// other two sharing a coordinate, the shared one offset. +func isChamferCornerAligned(c1, c2, c3, boundary float32) bool { + if !floatEqual(c1, boundary) { + return false + } + if !floatEqual(c2, c3) { + return false + } + return offsetMatches(c2, boundary) +} + +// offsetMatches reports whether c is in (boundary-0.05, boundary-0.01) for +// negative boundary, or (boundary+0.01, boundary+0.05) for positive +// boundary. Matches the inequality constraints in is_chamfer/3. +func offsetMatches(c, boundary float32) bool { + if boundary < 0 { + return c < boundary-0.01 && c > boundary-0.05 + } + return c > boundary+0.01 && c < boundary+0.05 +} + +func floatEqual(a, b float32) bool { + return math.Abs(float64(a-b)) < 1e-5 +} + +// dropUnusedVerticesAndTVerts is the post-pass after deleting chamfer faces. +// Mirrors make_checks.pl delete_unused_vertices/4 + delete_unused_tverts/4. +// +// Compacts every per-vertex companion array via compactVertexAttrs, then +// every populated TVerts channel (0/1/2/3) along with its per-face TexIndices +// references. +func dropUnusedVerticesAndTVerts(n *Node) { + mesh := n.Mesh + + usedV := make([]bool, len(mesh.Verts)) + usedT0 := make([]bool, len(mesh.TVerts)) + usedT1 := make([]bool, len(mesh.TVerts1)) + usedT2 := make([]bool, len(mesh.TVerts2)) + usedT3 := make([]bool, len(mesh.TVerts3)) + for fi, f := range mesh.Faces { + for k := 0; k < 3; k++ { + if int(f.Verts[k]) >= 0 && int(f.Verts[k]) < len(usedV) { + usedV[f.Verts[k]] = true + } + if int(f.UVs[k]) >= 0 && int(f.UVs[k]) < len(usedT0) { + usedT0[f.UVs[k]] = true + } + // TexIndices0 takes precedence over Face.UVs at compile time + // (compiler_mesh.go:404-405); without marking + remapping these + // here, a chamfer-delete pass would silently break stage-0 UVs on + // any mesh that uses the per-face TexIndices0 channel. + markTexUsed(mesh.TexIndices0, fi, k, usedT0) + markTexUsed(mesh.TexIndices1, fi, k, usedT1) + markTexUsed(mesh.TexIndices2, fi, k, usedT2) + markTexUsed(mesh.TexIndices3, fi, k, usedT3) + } + } + + attrs := vertexAttrsOf(n) + if remap := remapForKept(usedV); remap != nil { + compactVertexAttrs(n, attrs, usedV) + remapFaceVerts(mesh.Faces, remap) + } + + if remap := remapForKept(usedT0); remap != nil { + mesh.TVerts = filterByMask(mesh.TVerts, usedT0) + remapFaceUVs(mesh.Faces, remap) + remapTexIndices(mesh.TexIndices0, remap) + } + if remap := remapForKept(usedT1); remap != nil { + mesh.TVerts1 = filterByMask(mesh.TVerts1, usedT1) + remapTexIndices(mesh.TexIndices1, remap) + } + if remap := remapForKept(usedT2); remap != nil { + mesh.TVerts2 = filterByMask(mesh.TVerts2, usedT2) + remapTexIndices(mesh.TexIndices2, remap) + } + if remap := remapForKept(usedT3); remap != nil { + mesh.TVerts3 = filterByMask(mesh.TVerts3, usedT3) + remapTexIndices(mesh.TexIndices3, remap) + } +} + +// markTexUsed flags the UV index used by face fi corner k in the given +// per-face tex-index slice (TexIndices1/2/3) as referenced. +func markTexUsed(idxs [][3]int32, fi, k int, used []bool) { + if fi < 0 || fi >= len(idxs) { + return + } + v := idxs[fi][k] + if int(v) >= 0 && int(v) < len(used) { + used[v] = true + } +} diff --git a/pkg/mdl/repair_chamfer_add.go b/pkg/mdl/repair_chamfer_add.go new file mode 100644 index 0000000..2dcd28b --- /dev/null +++ b/pkg/mdl/repair_chamfer_add.go @@ -0,0 +1,191 @@ +package mdl + +import ( + "fmt" + "math" +) + +// AddChamfers walks every mesh-bearing node, finds open boundary edges that +// sit on a tile boundary (X = ±5 or Y = ±5), and synthesises two chamfer +// triangles per edge that bevel the tile seam outward and downward. +// +// Mirrors make_checks.pl add_chamfer/4 (line 5609), chamfer_edge/6 (5667), +// add_chamfer/6 (5685), add_chamfer_vertex/6 (5693) and add_chamfer_face/7 +// (5718). Returns one message per affected node. +func AddChamfers(model *Model) []string { + var msgs []string + idx := nodeIndex(model) + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil || len(n.Mesh.Faces) == 0 { + continue + } + added := addChamferOnNode(idx, n) + if added > 0 { + msgs = append(msgs, fmt.Sprintf("applied Rosenkrantz chamfer to %d edge(s) in %q", added, n.Name)) + } + } + return msgs +} + +func addChamferOnNode(idx map[string]*Node, n *Node) int { + mesh := n.Mesh + worldVerts := WorldVerticesCached(idx, n) + if len(worldVerts) != len(mesh.Verts) { + return 0 + } + + dirEdges := BuildDirectedEdgeMap(mesh.Faces) + candidates := findChamferEdges(dirEdges, worldVerts) + if len(candidates) == 0 { + return 0 + } + + ensureChamferUVSeed(mesh) + + added := 0 + for _, e := range candidates { + w1 := worldVerts[e.V0] + w2 := worldVerts[e.V1] + + v3 := materialiseChamferVertex(idx, n, w1, &worldVerts) + v4 := materialiseChamferVertex(idx, n, w2, &worldVerts) + if v3 < 0 || v4 < 0 { + continue + } + + appendChamferFace(mesh, e.V0, v3, e.V1) + appendChamferFace(mesh, v3, v4, e.V1) + added += 2 + } + return added / 2 +} + +type chamferCandidate struct{ V0, V1 int32 } + +// findChamferEdges enumerates open boundary half-edges (V0 -> V1) where +// both endpoints sit on the same tile boundary (X = ±5 or Y = ±5) and the +// sole face containing the half-edge has a roughly upward face normal whose +// horizontal component perpendicular to the boundary is < 0.5 in +// magnitude. Mirrors chamfer_edge/6 (lines 5667-5683). +func findChamferEdges(dirEdges map[DirectedEdge][]DirectedEdgeFace, world []Vec3) []chamferCandidate { + var out []chamferCandidate + for de, faces := range dirEdges { + if _, twin := dirEdges[DirectedEdge{de.V1, de.V0}]; twin { + continue + } + if len(faces) == 0 { + continue + } + v1 := de.V0 + v2 := de.V1 + if v1 < 0 || v2 < 0 || int(v1) >= len(world) || int(v2) >= len(world) { + continue + } + w1 := world[v1] + w2 := world[v2] + + boundary := boundaryOf(w1, w2) + if boundary == boundaryNone { + continue + } + + v3 := faces[0].V3 + if int(v3) >= len(world) { + continue + } + w3 := world[v3] + + nrm := faceNormal(w1, w2, w3) + switch boundary { + case boundaryX: + if math.Abs(float64(nrm.X)) >= 0.5 || nrm.Z <= 0.866 { + continue + } + case boundaryY: + if math.Abs(float64(nrm.Y)) >= 0.5 || nrm.Z <= 0.866 { + continue + } + } + out = append(out, chamferCandidate{V0: v1, V1: v2}) + } + return out +} + +const ( + boundaryNone = iota + boundaryX + boundaryY +) + +// boundaryOf returns boundaryX if both vertices share the same |X| = 5 +// boundary, boundaryY for the same on Y, otherwise boundaryNone. +func boundaryOf(a, b Vec3) int { + if floatEqual(a.X, b.X) && (floatEqual(a.X, 5) || floatEqual(a.X, -5)) { + return boundaryX + } + if floatEqual(a.Y, b.Y) && (floatEqual(a.Y, 5) || floatEqual(a.Y, -5)) { + return boundaryY + } + return boundaryNone +} + +func faceNormal(a, b, c Vec3) Vec3 { + return vecNormalize(vecCross(vecSub(b, a), vecSub(c, a))) +} + +// ensureChamferUVSeed makes sure the mesh has at least three TVerts so the +// chamfer faces' fixed UV indices [0, 1, 2] resolve. The first three TVerts +// are not mutated if they already exist. +func ensureChamferUVSeed(mesh *MeshData) { + for len(mesh.TVerts) < 3 { + mesh.TVerts = append(mesh.TVerts, Vec3{}) + } +} + +// materialiseChamferVertex creates a chamfer vertex offset from the +// world-space anchor (X±0.03 if on X-boundary, Y±0.03 if on Y-boundary, +// always Z-0.03), translates it back to local space, and either reuses an +// existing matching vertex or appends a new one. Returns the local vertex +// index, or -1 if anything went wrong. +func materialiseChamferVertex(idx map[string]*Node, n *Node, anchorWorld Vec3, worldOut *[]Vec3) int32 { + w := anchorWorld + if floatEqual(w.X, -5) { + w.X -= chamferOffset + } else if floatEqual(w.X, 5) { + w.X += chamferOffset + } + if floatEqual(w.Y, -5) { + w.Y -= chamferOffset + } else if floatEqual(w.Y, 5) { + w.Y += chamferOffset + } + w.Z -= chamferOffset + + local := WorldToLocal(idx, n, w) + + for i, v := range n.Mesh.Verts { + if approxEq(v, local, 1e-5) { + return int32(i) + } + } + + mesh := n.Mesh + attrs := vertexAttrsOf(n) + idxNew := int32(len(mesh.Verts)) + mesh.Verts = append(mesh.Verts, local) + appendDefaultVertexAttrs(n, attrs) + *worldOut = append(*worldOut, w) + return idxNew +} + +// appendChamferFace appends a chamfer triangle with the canonical +// SmoothGroup = 1048576, UVs = (0, 1, 2), Material = 21. Mirrors +// add_chamfer_face/7 line 5720. +func appendChamferFace(mesh *MeshData, v1, v2, v3 int32) { + mesh.Faces = append(mesh.Faces, Face{ + Verts: [3]int32{v1, v2, v3}, + SmoothGroup: chamferSmoothGroup, + UVs: [3]int32{0, 1, 2}, + Material: chamferMaterial, + }) +} diff --git a/pkg/mdl/repair_chamfer_test.go b/pkg/mdl/repair_chamfer_test.go new file mode 100644 index 0000000..2909b7f --- /dev/null +++ b/pkg/mdl/repair_chamfer_test.go @@ -0,0 +1,107 @@ +package mdl + +import "testing" + +// tileNode wraps mesh in a model whose root sits at the origin so world-space +// vertices equal local-space ones. +func tileNode(mesh *MeshData) (*Model, *Node) { + root := &Node{Name: "tile", Parent: "NULL"} + n := &Node{Name: "Plane", Parent: "tile", Mesh: mesh} + return &Model{Name: "tile", Classification: "TILE", Nodes: []*Node{root, n}}, n +} + +// twoTileWedge is a 5x5 plane sitting against the +X tile boundary with one +// open edge along X = +5. Adding a chamfer should produce two new triangles. +func twoTileWedge() *MeshData { + mesh := NewMeshData() + mesh.Verts = []Vec3{ + {0, -2.5, 0}, + {5, -2.5, 0}, + {5, 2.5, 0}, + {0, 2.5, 0}, + } + mesh.TVerts = []Vec3{{0, 0, 0}, {1, 0, 0}, {1, 1, 0}, {0, 1, 0}} + mesh.Faces = []Face{ + {Verts: [3]int32{0, 1, 2}, UVs: [3]int32{0, 1, 2}}, + {Verts: [3]int32{0, 2, 3}, UVs: [3]int32{0, 2, 3}}, + } + return mesh +} + +func TestAddChamfers_PlusXBoundary(t *testing.T) { + model, _ := tileNode(twoTileWedge()) + msgs := AddChamfers(model) + if len(msgs) != 1 { + t.Fatalf("expected 1 chamfer message, got %d (%v)", len(msgs), msgs) + } + mesh := model.Nodes[1].Mesh + chamferFaces := 0 + for _, f := range mesh.Faces { + if f.SmoothGroup == chamferSmoothGroup && f.Material == chamferMaterial { + chamferFaces++ + } + } + if chamferFaces != 2 { + t.Fatalf("expected 2 chamfer faces, got %d (faces=%+v)", chamferFaces, mesh.Faces) + } + for _, f := range mesh.Faces { + if f.SmoothGroup != chamferSmoothGroup { + continue + } + for k := 0; k < 3; k++ { + v := mesh.Verts[f.Verts[k]] + if v.X < -5.1 || v.X > 5.1 { + continue + } + if v.Z < -0.05 && v.X > 5 { + return + } + } + } +} + +func TestDeleteChamfers_RemovesAndCompacts(t *testing.T) { + model, _ := tileNode(twoTileWedge()) + AddChamfers(model) + mesh := model.Nodes[1].Mesh + beforeFaces := len(mesh.Faces) + + msgs := DeleteChamfers(model) + if len(msgs) != 1 { + t.Fatalf("expected 1 delete message, got %d (%v)", len(msgs), msgs) + } + if len(mesh.Faces) >= beforeFaces { + t.Errorf("expected face count to drop after DeleteChamfers (before=%d after=%d)", beforeFaces, len(mesh.Faces)) + } + for _, f := range mesh.Faces { + if f.SmoothGroup == chamferSmoothGroup { + t.Errorf("chamfer face survived delete: %+v", f) + } + } + for fi, f := range mesh.Faces { + for k := 0; k < 3; k++ { + if int(f.Verts[k]) >= len(mesh.Verts) { + t.Errorf("face %d vertex %d out of range after compaction (verts=%d)", fi, k, len(mesh.Verts)) + } + } + } +} + +func TestDeleteChamfers_NoChamferIsNoop(t *testing.T) { + model, _ := tileNode(twoTileWedge()) + if msgs := DeleteChamfers(model); len(msgs) != 0 { + t.Errorf("expected no-op when there are no chamfer faces, got %d msgs", len(msgs)) + } +} + +func TestIsChamferTriangle(t *testing.T) { + if !isChamferTriangle(Vec3{-5, 0, 0}, Vec3{-5, 1, 0}, Vec3{-5.03, 0.5, -0.03}) { + t.Error("expected axis-aligned chamfer triangle to match") + } + if !isChamferTriangle(Vec3{5, 0, 0}, Vec3{5.03, 1, -0.03}, Vec3{5.03, -1, -0.03}) { + t.Error("expected corner-aligned chamfer triangle to match") + } + if isChamferTriangle(Vec3{0, 0, 0}, Vec3{1, 0, 0}, Vec3{0, 1, 0}) { + t.Error("non-boundary triangle should not match") + } +} diff --git a/pkg/mdl/repair_geometry.go b/pkg/mdl/repair_geometry.go new file mode 100644 index 0000000..93c534a --- /dev/null +++ b/pkg/mdl/repair_geometry.go @@ -0,0 +1,138 @@ +package mdl + +// StripDegenerateFaces removes faces where two or more vertex indices are +// identical (zero-area triangles). Returns the number of faces removed. +func StripDegenerateFaces(model *Model) int { + total := 0 + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil || len(n.Mesh.Faces) == 0 { + continue + } + mesh := n.Mesh + origCount := len(mesh.Faces) + kept := mesh.Faces[:0] + var keptIdx []int + for fi, f := range mesh.Faces { + if f.Verts[0] == f.Verts[1] || f.Verts[1] == f.Verts[2] || f.Verts[0] == f.Verts[2] { + total++ + continue + } + kept = append(kept, f) + keptIdx = append(keptIdx, fi) + } + mesh.Faces = kept + if len(keptIdx) < origCount { + mesh.TexIndices0 = filterByIdx(mesh.TexIndices0, keptIdx) + mesh.TexIndices1 = filterByIdx(mesh.TexIndices1, keptIdx) + mesh.TexIndices2 = filterByIdx(mesh.TexIndices2, keptIdx) + mesh.TexIndices3 = filterByIdx(mesh.TexIndices3, keptIdx) + } + } + return total +} + +func filterByIdx(src [][3]int32, indices []int) [][3]int32 { + if len(src) == 0 { + return src + } + out := make([][3]int32, len(indices)) + for i, idx := range indices { + if idx >= 0 && idx < len(src) { + out[i] = src[idx] + } + } + return out +} + +// dupUV duplicates a UV vertex for a face's vertex index in the given texcoord +// channel, updating the TexIndices entry to point to the new copy. +func dupUV(has bool, fi, vi int, tverts *[]Vec3, texIndices [][3]int32) { + if !has || fi >= len(texIndices) { + return + } + uvIdx := texIndices[fi][vi] + if uvIdx < 0 || int(uvIdx) >= len(*tverts) { + return + } + newUV := int32(len(*tverts)) + *tverts = append(*tverts, (*tverts)[uvIdx]) + texIndices[fi][vi] = newUV +} + +// SplitMultipleEdges splits faces at edges shared by 3+ faces by duplicating +// the shared vertices so each edge is shared by at most 2 faces. This fixes +// shadow tearing caused by non-manifold edges in NWN's stencil shadow renderer. +// Returns the number of edges fixed. +func SplitMultipleEdges(n *Node) int { + mesh := n.Mesh + + edgeFaces := BuildEdgeFaceMap(mesh.Faces) + + var multiEdges []EdgeKey + for e, faces := range edgeFaces { + if len(faces) > 2 { + multiEdges = append(multiEdges, e) + } + } + if len(multiEdges) == 0 { + return 0 + } + + hasNormals := len(mesh.Normals) == len(mesh.Verts) + hasColors := len(mesh.Colors) == len(mesh.Verts) + hasTangents := len(mesh.Tangents) == len(mesh.Verts) + hasTVerts := len(mesh.TVerts) > 0 + hasTVerts1 := len(mesh.TVerts1) > 0 + hasTVerts2 := len(mesh.TVerts2) > 0 + hasTVerts3 := len(mesh.TVerts3) > 0 + hasSkin := n.Skin != nil && len(n.Skin.Weights) == len(mesh.Verts) + hasDangly := n.Dangly != nil && len(n.Dangly.Constraints) == len(mesh.Verts) + + for _, e := range multiEdges { + faces := edgeFaces[e] + for _, fi := range faces[2:] { + f := &mesh.Faces[fi] + for vi := 0; vi < 3; vi++ { + if f.Verts[vi] == e.V0 || f.Verts[vi] == e.V1 { + oldIdx := f.Verts[vi] + if oldIdx < 0 || int(oldIdx) >= len(mesh.Verts) { + continue + } + newIdx := int32(len(mesh.Verts)) + mesh.Verts = append(mesh.Verts, mesh.Verts[oldIdx]) + if hasNormals { + mesh.Normals = append(mesh.Normals, mesh.Normals[oldIdx]) + } + if hasColors { + mesh.Colors = append(mesh.Colors, mesh.Colors[oldIdx]) + } + if hasTangents { + mesh.Tangents = append(mesh.Tangents, mesh.Tangents[oldIdx]) + } + if hasSkin { + n.Skin.Weights = append(n.Skin.Weights, CloneVertexWeight(n.Skin.Weights[oldIdx])) + } + if hasDangly { + n.Dangly.Constraints = append(n.Dangly.Constraints, n.Dangly.Constraints[oldIdx]) + } + f.Verts[vi] = newIdx + if hasTVerts { + uvIdx := f.UVs[vi] + if uvIdx >= 0 && int(uvIdx) < len(mesh.TVerts) { + f.UVs[vi] = int32(len(mesh.TVerts)) + mesh.TVerts = append(mesh.TVerts, mesh.TVerts[uvIdx]) + } + } else { + f.UVs[vi] = newIdx + } + dupUV(hasTVerts, fi, vi, &mesh.TVerts, mesh.TexIndices0) + dupUV(hasTVerts1, fi, vi, &mesh.TVerts1, mesh.TexIndices1) + dupUV(hasTVerts2, fi, vi, &mesh.TVerts2, mesh.TexIndices2) + dupUV(hasTVerts3, fi, vi, &mesh.TVerts3, mesh.TexIndices3) + } + } + } + } + + return len(multiEdges) +} diff --git a/pkg/mdl/repair_mesh.go b/pkg/mdl/repair_mesh.go new file mode 100644 index 0000000..6d1cd2e --- /dev/null +++ b/pkg/mdl/repair_mesh.go @@ -0,0 +1,384 @@ +package mdl + +import ( + "math" + "strings" +) + +// ForceRender sets Render=1 or Render=0 on all mesh nodes. +// mode should be "all" (render=1) or "none" (render=0). +func ForceRender(model *Model, mode string) int { + val := int32(1) + if strings.EqualFold(mode, "none") { + val = 0 + } + count := 0 + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + if n.Mesh.Render != val { + n.Mesh.Render = val + count++ + } + } + return count +} + +// ForceShadow sets Shadow=1 or Shadow=0 on all mesh nodes. +func ForceShadow(model *Model, mode string) int { + val := int32(1) + if strings.EqualFold(mode, "none") { + val = 0 + } + count := 0 + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + if n.Mesh.Shadow != val { + n.Mesh.Shadow = val + count++ + } + } + return count +} + +// ForceWhiteAmbientDiffuse sets ambient and diffuse to (1,1,1) on all mesh nodes. +func ForceWhiteAmbientDiffuse(model *Model) int { + white := Vec3{X: 1, Y: 1, Z: 1} + count := 0 + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + changed := false + if n.Mesh.Ambient != white { + n.Mesh.Ambient = white + changed = true + } + if n.Mesh.Diffuse != white { + n.Mesh.Diffuse = white + changed = true + } + if changed { + count++ + } + } + return count +} + +// CullInvisibleMeshes converts non-animated mesh nodes with render=0 and shadow=0 +// to dummy nodes by removing their mesh data. +func CullInvisibleMeshes(model *Model) int { + count := 0 + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + if n.Mesh.Render != 0 || n.Mesh.Shadow != 0 { + continue + } + nt := n.NodeType() + if nt == "animmesh" || nt == "skin" || nt == "danglymesh" { + continue + } + n.Mesh = nil + n.Aabb = nil + count++ + } + return count +} + +// meshBitmapMergeSig captures which optional mesh channels are present so we +// only merge nodes with identical layouts. +func meshBitmapMergeSig(m *MeshData) uint16 { + var s uint16 + if len(m.TVerts) > 0 { + s |= 1 << 0 + } + if len(m.TVerts1) > 0 { + s |= 1 << 1 + } + if len(m.TVerts2) > 0 { + s |= 1 << 2 + } + if len(m.TVerts3) > 0 { + s |= 1 << 3 + } + if len(m.Normals) > 0 { + s |= 1 << 4 + } + if len(m.Colors) > 0 { + s |= 1 << 5 + } + if len(m.Tangents) > 0 { + s |= 1 << 6 + } + if len(m.TexIndices0) > 0 { + s |= 1 << 7 + } + if len(m.TexIndices1) > 0 { + s |= 1 << 8 + } + if len(m.TexIndices2) > 0 { + s |= 1 << 9 + } + if len(m.TexIndices3) > 0 { + s |= 1 << 10 + } + return s +} + +func meshBitmapMergeCompatible(m *MeshData) bool { + if len(m.CornerNormals) > 0 { + return false + } + if len(m.TVerts) == 0 { + if len(m.TVerts1) > 0 || len(m.TVerts2) > 0 || len(m.TVerts3) > 0 { + return false + } + } + tvLen := len(m.TVerts) + tvExtraOK := func(extra []Vec3) bool { + return len(extra) == 0 || (tvLen > 0 && len(extra) == tvLen) + } + if !tvExtraOK(m.TVerts1) || !tvExtraOK(m.TVerts2) || !tvExtraOK(m.TVerts3) { + return false + } + perFace := func(rows [][3]int32) bool { + return len(rows) == 0 || len(rows) == len(m.Faces) + } + if !perFace(m.TexIndices0) || !perFace(m.TexIndices1) || !perFace(m.TexIndices2) || !perFace(m.TexIndices3) { + return false + } + nv := len(m.Verts) + if len(m.Tangents) > 0 && len(m.Tangents) != nv { + return false + } + if len(m.Normals) > 0 && len(m.Normals) != nv { + return false + } + if len(m.Colors) > 0 && len(m.Colors) != nv { + return false + } + return true +} + +func meshesBitmapMergeCompatible(nodes []*Node) bool { + sig := meshBitmapMergeSig(nodes[0].Mesh) + for _, n := range nodes { + if n.AnimMesh != nil { + return false + } + m := n.Mesh + if meshBitmapMergeSig(m) != sig || !meshBitmapMergeCompatible(m) { + return false + } + } + return true +} + +func appendTexIndicesFace(dst *[][3]int32, src [][3]int32, faceIdx int, off int32) { + if faceIdx >= len(src) { + return + } + row := src[faceIdx] + *dst = append(*dst, [3]int32{row[0] + off, row[1] + off, row[2] + off}) +} + +// MergeByBitmap merges sibling trimesh nodes that share the same bitmap. +// Returns the number of merge groups processed. +func MergeByBitmap(model *Model) int { + // Group children by parent, then by bitmap + type key struct { + parent string + bitmap string + } + groups := map[key][]*Node{} + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + nt := n.NodeType() + if nt != "trimesh" { + continue + } + k := key{parent: n.Parent, bitmap: strings.ToLower(n.Mesh.Bitmap)} + groups[k] = append(groups[k], n) + } + + merged := 0 + for _, nodes := range groups { + if len(nodes) < 2 { + continue + } + dst := nodes[0] + if dst.AnimMesh != nil || !meshesBitmapMergeCompatible(nodes) { + continue + } + m := dst.Mesh + mergedAny := false + for _, srcNode := range nodes[1:] { + src := srcNode.Mesh + vertOff := int32(len(m.Verts)) + tvertOff := int32(len(m.TVerts)) + tvert1Off := int32(len(m.TVerts1)) + tvert2Off := int32(len(m.TVerts2)) + tvert3Off := int32(len(m.TVerts3)) + + m.Verts = append(m.Verts, src.Verts...) + if len(m.Normals) > 0 && len(src.Normals) > 0 { + m.Normals = append(m.Normals, src.Normals...) + } + if len(m.TVerts) > 0 && len(src.TVerts) > 0 { + m.TVerts = append(m.TVerts, src.TVerts...) + } + if len(m.TVerts1) > 0 && len(src.TVerts1) > 0 { + m.TVerts1 = append(m.TVerts1, src.TVerts1...) + } + if len(m.TVerts2) > 0 && len(src.TVerts2) > 0 { + m.TVerts2 = append(m.TVerts2, src.TVerts2...) + } + if len(m.TVerts3) > 0 && len(src.TVerts3) > 0 { + m.TVerts3 = append(m.TVerts3, src.TVerts3...) + } + if len(m.Colors) > 0 && len(src.Colors) > 0 { + m.Colors = append(m.Colors, src.Colors...) + } + if len(m.Tangents) > 0 && len(src.Tangents) > 0 { + m.Tangents = append(m.Tangents, src.Tangents...) + } + srcHasTV := len(src.TVerts) > 0 + for fi, f := range src.Faces { + nf := f + nf.Verts[0] += vertOff + nf.Verts[1] += vertOff + nf.Verts[2] += vertOff + if srcHasTV { + nf.UVs[0] += tvertOff + nf.UVs[1] += tvertOff + nf.UVs[2] += tvertOff + } + m.Faces = append(m.Faces, nf) + appendTexIndicesFace(&m.TexIndices0, src.TexIndices0, fi, tvertOff) + appendTexIndicesFace(&m.TexIndices1, src.TexIndices1, fi, tvert1Off) + appendTexIndicesFace(&m.TexIndices2, src.TexIndices2, fi, tvert2Off) + appendTexIndicesFace(&m.TexIndices3, src.TexIndices3, fi, tvert3Off) + } + srcNode.Mesh = nil + mergedAny = true + } + if mergedAny { + merged++ + } + } + return merged +} + +// SnapVertices snaps vertex positions to a grid. +// mode: "binary" (1/128), "decimal" (0.01), "fine" (0.001) +func SnapVertices(model *Model, mode string) { + var grid float32 + switch strings.ToLower(mode) { + case "binary": + grid = 1.0 / 128.0 + case "decimal": + grid = 0.01 + case "fine": + grid = 0.001 + default: + return + } + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + for i := range n.Mesh.Verts { + n.Mesh.Verts[i] = snapVec3(n.Mesh.Verts[i], grid) + } + } +} + +// SnapTVerts snaps UV texture vertex coordinates to a 1/grid resolution and sets W=0. +// grid is the texture size (e.g. 256, 512, 1024). +func SnapTVerts(model *Model, grid int) int { + if grid <= 0 { + return 0 + } + g := float64(grid) + count := 0 + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + for i := range n.Mesh.TVerts { + tv := &n.Mesh.TVerts[i] + tv.X = float32(math.Round(float64(tv.X)*g) / g) + tv.Y = float32(math.Round(float64(tv.Y)*g) / g) + tv.Z = 0 + count++ + } + } + return count +} + +func snapVec3(v Vec3, grid float32) Vec3 { + return Vec3{ + X: snapFloat(v.X, grid), + Y: snapFloat(v.Y, grid), + Z: snapFloat(v.Z, grid), + } +} + +func snapFloat(f, grid float32) float32 { + if grid <= 0 { + return f + } + return float32(math.Round(float64(f)/float64(grid))) * grid +} + +// StandardizeTexture0 sets the UseTexture0 flag so the writer emits +// "texture0" instead of "bitmap" in ASCII output. Returns the count of +// mesh nodes that have a bitmap value (i.e., will be affected). +func StandardizeTexture0(model *Model) int { + count := 0 + for _, n := range model.Nodes { + if n != nil && n.Mesh != nil && n.Mesh.Bitmap != "" { + count++ + } + } + if count > 0 { + model.UseTexture0 = true + } + return count +} + +// StripEEExtras zeros out vestigial EE fields: WireColor, Specular, Shininess. +func StripEEExtras(model *Model) int { + count := 0 + for _, n := range model.Nodes { + if n == nil { + continue + } + nodeChanged := false + if n.WireColor.X != 0 || n.WireColor.Y != 0 || n.WireColor.Z != 0 { + n.WireColor = Vec3{} + nodeChanged = true + } + if n.Mesh != nil { + if n.Mesh.Specular.X != 0 || n.Mesh.Specular.Y != 0 || n.Mesh.Specular.Z != 0 { + n.Mesh.Specular = Vec3{} + nodeChanged = true + } + if n.Mesh.Shininess != 0 { + n.Mesh.Shininess = 0 + nodeChanged = true + } + } + if nodeChanged { + count++ + } + } + return count +} diff --git a/pkg/mdl/repair_pivots.go b/pkg/mdl/repair_pivots.go new file mode 100644 index 0000000..6d5a00d --- /dev/null +++ b/pkg/mdl/repair_pivots.go @@ -0,0 +1,600 @@ +package mdl + +import ( + "fmt" + "math" +) + +// Half-space constraint for pivot search: either n·p >= d or n·p <= d. +// Ref: fix_pivots.pl constraint accumulation for tile bounds and boundary faces. +type pivotHalfSpace struct { + n Vec3 + d float32 + ge bool // true => n·p >= d; false => n·p <= d +} + +const ( + pivotTileHalf = float32(5) // walkmesh XY in [-5, 5] + pivotSnapGrid = float32(0.01) // top-centre snap (f_find_pivot grid snap) + pivotTol = float32(2e-4) + pivotZBand = float32(0.002) // vertices within this of max Z count as "top" + pivotBoundaryBand = float32(0.06) // tile-edge band for boundary faces + pivotPlaneNZEps = float32(1e-5) +) + +// PivotOptions controls pivot repair behaviour. +type PivotOptions struct { + AllowSplit bool // allow mesh splitting when pivot search fails + BelowZ0 string // "disallow" (default), "allow", "slice" + MoveBad string // "no" (default), "top", "middle", "bottom" + Smoothing string // "use", "protect", "ignore" + MinFaces int // minimum faces per split side + SplitFirst string // "convex", "concave" +} + +// RepairPivots finds and sets valid pivot points for AABB (walkmesh) nodes +// whose authored position fails the geometric constraint check. A valid pivot +// must satisfy half-space constraints derived from tile boundaries and face +// normals. For each candidate node, the function tries (in order): +// 1. Top-centre of the geometry (highest Z, centred in XY) +// 2. Centroid of all face centroids +// 3. Iterative bisection within the constraint bounding box +// +// Nodes whose existing position already satisfies the constraints are left +// alone — matching Prolog `attempt_to_fix_pivots/5`, which is only invoked +// when a `bad_pivots` check has already flagged the node. Running the +// search unconditionally shifted hand-authored pivots on 2-story tile +// walkmeshes (issue #6: ttr01_a01_01 cm154 visibly displaced after repair). +// +// Ref: fix_pivots.pl f_find_pivot/5; make_checks.pl attempt_to_fix_pivots/5. +func RepairPivots(model *Model, opts PivotOptions) []string { + if model == nil { + return nil + } + var out []string + for _, node := range model.Nodes { + if node == nil || node.Aabb == nil { + continue + } + if node.Mesh == nil || len(node.Mesh.Verts) == 0 || len(node.Mesh.Faces) == 0 { + out = append(out, fmt.Sprintf("node %q: skipped (no walkmesh geometry)", node.Name)) + continue + } + mesh := node.Mesh + allowBelow := opts.BelowZ0 == "allow" || opts.BelowZ0 == "slice" + cons := buildPivotConstraints(mesh, allowBelow) + + // Gate: if the authored position already satisfies the + // half-spaces, treat the pivot as good and skip the search. + // The Prolog port reached this code path via a bad-pivot + // check; without that gate the search runs against the + // authored position's constraints, declares it "doesn't + // satisfy" (often because tile-edge faces produce constraints + // the current point happens not to satisfy from the wrong + // frame), and overwrites a valid position with the + // constraint-satisfying fallback. See issue #6. + if pivotSatisfies(node.Position, cons) { + continue + } + + boxMin, boxMax := pivotSearchBox(mesh) + if allowBelow && boxMin.Z > 0 { + boxMin.Z = 0 + } + + var pivot Vec3 + var method string + + top := pivotTopCentre(mesh) + if pivotSatisfies(top, cons) { + pivot, method = top, "top-centre" + } else { + fidx := make([]int32, len(mesh.Faces)) + for i := range fidx { + fidx[i] = int32(i) + } + cent := centroidAverage(mesh, fidx) + if pivotSatisfies(cent, cons) { + pivot, method = cent, "face-centroid average" + } else if p, ok := pivotByBoxBisection(boxMin, boxMax, cons); ok { + pivot, method = p, "bounding-box bisection" + } else if p, ok := pivotRelaxInBox(boxMin, boxMax, cons); ok { + pivot, method = p, "constraint relaxation" + } else if opts.MoveBad != "" && opts.MoveBad != "no" { + pivot, method = pivotMoveBadFallback(mesh, opts.MoveBad) + applyPivotShift(model, node, pivot) + out = append(out, fmt.Sprintf( + "node %q: pivot set to [%.4f, %.4f, %.4f] via %s (move-bad=%s)", + node.Name, pivot.X, pivot.Y, pivot.Z, method, opts.MoveBad)) + continue + } else { + // No valid pivot found and no move-bad strategy + // configured. Match Prolog's final clause: warn, + // but leave the authored position alone. Overwriting + // here was equivalent to silently picking the + // "clamped top-centre" candidate the constraint check + // just rejected, which guaranteed the model would + // shift in the viewer. + out = append(out, fmt.Sprintf( + "node %q: warning — pivot fails constraints and no move-bad strategy set; position left as-authored", + node.Name)) + continue + } + } + + applyPivotShift(model, node, pivot) + out = append(out, fmt.Sprintf( + "node %q: pivot set to [%.4f, %.4f, %.4f] via %s", + node.Name, pivot.X, pivot.Y, pivot.Z, method)) + } + return out +} + +// applyPivotShift moves an AABB node's local origin to `pivot` (expressed +// in the node's current mesh-local frame) and rebases everything else to +// keep the model's world-space geometry exactly where it was. Mirrors +// fix_pivots.pl f_repivot/5: +// +// - subtract `pivot` from every vertex on this node's mesh, so the new +// mesh-local origin is at the chosen pivot point; +// - subtract `pivot` from every direct child's position, so children +// stay in the same world location after the parent origin moved +// (grandchildren are unaffected — their parent's local frame did not +// itself rotate or translate); +// - rotate `pivot` by this node's orientation into parent-frame and add +// it to `node.Position`, so the node's position in its parent's frame +// reflects the new origin. +// +// Without this rebase a "repair" that finds a different pivot just +// translates the world-space geometry by the delta (issue #7: +// ttr01_o07_01 cm088 visibly shifted from (0,0,-5) to (-4.84,-4.84,4.99) +// after `repair -a`). +// +// Ref: fix_pivots.pl f_repivot/5 (line 348); +// make_checks.pl apply_pivot_shift/5 (line 4809). +func applyPivotShift(model *Model, node *Node, pivot Vec3) { + if model == nil || node == nil { + return + } + // Match Prolog's 1e-5 short-circuit (line 4810): a sub-microscale + // shift is a no-op, no vertex churn, no float drift. + const pivotShiftEps = float32(1e-5) + if absF32(pivot.X) < pivotShiftEps && absF32(pivot.Y) < pivotShiftEps && absF32(pivot.Z) < pivotShiftEps { + return + } + + if node.Mesh != nil { + for i := range node.Mesh.Verts { + node.Mesh.Verts[i].X -= pivot.X + node.Mesh.Verts[i].Y -= pivot.Y + node.Mesh.Verts[i].Z -= pivot.Z + } + } + + for _, child := range model.Nodes { + if child == nil || child == node { + continue + } + if child.Parent == node.Name { + child.Position.X -= pivot.X + child.Position.Y -= pivot.Y + child.Position.Z -= pivot.Z + } + } + + // Identity-orientation case (the common one for walkmesh nodes) is + // just a translation; the rotate call collapses to a copy. We keep + // it so non-axis-aligned aabb nodes still produce the right result. + rotated := RotateVectorAxisAngle(pivot, node.Orientation) + node.Position.X += rotated.X + node.Position.Y += rotated.Y + node.Position.Z += rotated.Z +} + +// buildPivotConstraints collects tile slab planes, z>=0, and inward half-spaces +// from boundary walkmesh faces (vertices near |x|=5 or |y|=5). +// When allowBelow is true, the z>=0 floor constraint is omitted. +// Ref: fix_pivots.pl pivot constraint setup. +func buildPivotConstraints(mesh *MeshData, allowBelow bool) []pivotHalfSpace { + var hs []pivotHalfSpace + // Tile planes: interior is [-tileHalf, tileHalf] on X and Y. + // x >= -pivotTileHalf => (1,0,0)·p >= -pivotTileHalf + hs = append(hs, pivotHalfSpace{n: Vec3{X: 1}, d: -pivotTileHalf, ge: true}) + // x <= pivotTileHalf => (-1,0,0)·p >= -pivotTileHalf + hs = append(hs, pivotHalfSpace{n: Vec3{X: -1}, d: -pivotTileHalf, ge: true}) + hs = append(hs, pivotHalfSpace{n: Vec3{Y: 1}, d: -pivotTileHalf, ge: true}) + hs = append(hs, pivotHalfSpace{n: Vec3{Y: -1}, d: -pivotTileHalf, ge: true}) + if !allowBelow { + hs = append(hs, pivotHalfSpace{n: Vec3{Z: 1}, d: 0, ge: true}) + } + + for fi := range mesh.Faces { + if !isBoundaryWalkmeshFace(mesh, int32(fi)) { + continue + } + f := mesh.Faces[fi] + v0, ok := pivotVert(mesh, f.Verts[0]) + if !ok { + continue + } + fmin, fmax, err := faceBounds(mesh, int32(fi)) + if err != nil { + continue + } + n := outwardBoundaryNormal(mesh, int32(fi), fmin, fmax) + if vecLen(n) < pivotPlaneNZEps { + continue + } + // Outward n: interior is n·p <= n·v0 (pivot must see interior from adjacent tiles). + d := vecDot(n, v0) + hs = append(hs, pivotHalfSpace{n: n, d: d, ge: false}) + } + return hs +} + +func pivotVert(mesh *MeshData, idx int32) (Vec3, bool) { + if idx < 0 || int(idx) >= len(mesh.Verts) { + return Vec3{}, false + } + return mesh.Verts[idx], true +} + +func isBoundaryWalkmeshFace(mesh *MeshData, fi int32) bool { + f := mesh.Faces[fi] + b := pivotBoundaryBand + for _, vi := range f.Verts { + v, ok := pivotVert(mesh, vi) + if !ok { + continue + } + if v.X >= pivotTileHalf-b || v.X <= -pivotTileHalf+b { + return true + } + if v.Y >= pivotTileHalf-b || v.Y <= -pivotTileHalf+b { + return true + } + } + return false +} + +// outwardBoundaryNormal aligns the face normal with the exterior of the tile +// slab on whichever side the face sits, so n·p <= n·v0 describes the walkable side. +func outwardBoundaryNormal(mesh *MeshData, fi int32, fmin, fmax Vec3) Vec3 { + f := mesh.Faces[fi] + n := vecNormalize(f.Normal) + if vecLen(n) < pivotPlaneNZEps { + n = pivotFaceCrossNormal(mesh, fi) + } + if vecLen(n) < pivotPlaneNZEps { + return Vec3{} + } + cx := (fmin.X + fmax.X) * 0.5 + cy := (fmin.Y + fmax.Y) * 0.5 + b := pivotBoundaryBand + // +X wall + if fmax.X >= pivotTileHalf-b && cx >= 0 { + if n.X < 0 { + n = vecScale(n, -1) + } + } + // -X wall + if fmin.X <= -pivotTileHalf+b && cx <= 0 { + if n.X > 0 { + n = vecScale(n, -1) + } + } + // +Y wall + if fmax.Y >= pivotTileHalf-b && cy >= 0 { + if n.Y < 0 { + n = vecScale(n, -1) + } + } + // -Y wall + if fmin.Y <= -pivotTileHalf+b && cy <= 0 { + if n.Y > 0 { + n = vecScale(n, -1) + } + } + return vecNormalize(n) +} + +func pivotFaceCrossNormal(mesh *MeshData, fi int32) Vec3 { + f := mesh.Faces[fi] + p0, ok0 := pivotVert(mesh, f.Verts[0]) + p1, ok1 := pivotVert(mesh, f.Verts[1]) + p2, ok2 := pivotVert(mesh, f.Verts[2]) + if !ok0 || !ok1 || !ok2 { + return Vec3{} + } + e1 := Vec3{X: p1.X - p0.X, Y: p1.Y - p0.Y, Z: p1.Z - p0.Z} + e2 := Vec3{X: p2.X - p0.X, Y: p2.Y - p0.Y, Z: p2.Z - p0.Z} + c := vecCross(e1, e2) + if vecLen(c) > pivotPlaneNZEps { + return vecNormalize(c) + } + return vecNormalize(f.Normal) +} + +func pivotSearchBox(mesh *MeshData) (minB, maxB Vec3) { + if len(mesh.Verts) == 0 { + return Vec3{X: -pivotTileHalf, Y: -pivotTileHalf}, Vec3{X: pivotTileHalf, Y: pivotTileHalf, Z: 32} + } + minB = mesh.Verts[0] + maxB = mesh.Verts[0] + for i := 1; i < len(mesh.Verts); i++ { + minB = vecMin(minB, mesh.Verts[i]) + maxB = vecMax(maxB, mesh.Verts[i]) + } + minB.X = maxF(minB.X, -pivotTileHalf) + minB.Y = maxF(minB.Y, -pivotTileHalf) + maxB.X = minF(maxB.X, pivotTileHalf) + maxB.Y = minF(maxB.Y, pivotTileHalf) + if minB.Z < 0 { + minB.Z = 0 + } + return minB, maxB +} + +// pivotTopCentre is the Prolog "top centre" candidate: mean XY of highest-Z vertices, +// Z at roof, XY snapped to grid. Ref: fix_pivots.pl f_find_pivot top-centre try. +func pivotTopCentre(mesh *MeshData) Vec3 { + if len(mesh.Verts) == 0 { + return Vec3{} + } + zmax := mesh.Verts[0].Z + for i := 1; i < len(mesh.Verts); i++ { + zmax = maxF(zmax, mesh.Verts[i].Z) + } + var sx, sy float32 + var n int + for i := range mesh.Verts { + v := mesh.Verts[i] + if v.Z >= zmax-pivotZBand { + sx += v.X + sy += v.Y + n++ + } + } + if n == 0 { + return snapPivotGridXY(Vec3{Z: zmax}, pivotSnapGrid) + } + out := Vec3{ + X: sx / float32(n), + Y: sy / float32(n), + Z: zmax, + } + // Prolog snaps XY to the tile grid; Z stays at roof height so roof half-spaces stay valid. + return snapPivotGridXY(out, pivotSnapGrid) +} + +func snapPivotGridXY(v Vec3, cell float32) Vec3 { + if cell <= 0 { + return v + } + c := float64(cell) + return Vec3{ + X: float32(math.Round(float64(v.X)/c) * c), + Y: float32(math.Round(float64(v.Y)/c) * c), + Z: v.Z, + } +} + +func pivotSatisfies(p Vec3, hs []pivotHalfSpace) bool { + for i := range hs { + c := &hs[i] + v := vecDot(c.n, p) + if c.ge { + if v < c.d-pivotTol { + return false + } + } else { + if v > c.d+pivotTol { + return false + } + } + } + return true +} + +// pivotByBoxBisection refines an XY sub-box; at each sample it solves the feasible +// Z interval implied by linear constraints (fix_pivots.pl bisection search in the slab). +func pivotByBoxBisection(minB, maxB Vec3, hs []pivotHalfSpace) (Vec3, bool) { + const maxDepth = 14 + const minSpan = float32(0.02) + return pivotBisectXY(minB.X, maxB.X, minB.Y, maxB.Y, minB.Z, maxB.Z, hs, 0, maxDepth, minSpan) +} + +func pivotBisectXY(xmin, xmax, ymin, ymax, zmin, zmax float32, hs []pivotHalfSpace, depth, maxDepth int, minSpan float32) (Vec3, bool) { + xc := (xmin + xmax) * 0.5 + yc := (ymin + ymax) * 0.5 + if z, ok := pivotSolveZ(xc, yc, zmin, zmax, hs); ok { + return Vec3{X: xc, Y: yc, Z: z}, true + } + if depth >= maxDepth { + return Vec3{}, false + } + if xmax-xmin < minSpan && ymax-ymin < minSpan { + return Vec3{}, false + } + xmid := (xmin + xmax) * 0.5 + ymid := (ymin + ymax) * 0.5 + quads := [][4]float32{ + {xmin, xmid, ymin, ymid}, + {xmid, xmax, ymin, ymid}, + {xmin, xmid, ymid, ymax}, + {xmid, xmax, ymid, ymax}, + } + for _, q := range quads { + if q[1]-q[0] < minSpan*0.5 && q[3]-q[2] < minSpan*0.5 { + continue + } + if p, ok := pivotBisectXY(q[0], q[1], q[2], q[3], zmin, zmax, hs, depth+1, maxDepth, minSpan); ok { + return p, true + } + } + return Vec3{}, false +} + +// pivotSolveZ returns a feasible z at (x0,y0) intersecting [zmin,zmax], if any. +func pivotSolveZ(x0, y0, zmin, zmax float32, hs []pivotHalfSpace) (float32, bool) { + lo, hi := zmin, zmax + for i := range hs { + c := &hs[i] + rhs := c.d - c.n.X*x0 - c.n.Y*y0 + nz := c.n.Z + if absF32(nz) < pivotPlaneNZEps { + // Constraint independent of z: check (nx*x0+ny*y0) vs d. + lhs := c.n.X*x0 + c.n.Y*y0 + if c.ge { + if lhs < c.d-pivotTol { + return 0, false + } + } else { + if lhs > c.d+pivotTol { + return 0, false + } + } + continue + } + if c.ge { + // nz*z >= rhs + if nz > 0 { + t := rhs / nz + lo = maxF(lo, t) + } else { + t := rhs / nz + hi = minF(hi, t) + } + } else { + // nz*z <= rhs + if nz > 0 { + t := rhs / nz + hi = minF(hi, t) + } else { + t := rhs / nz + lo = maxF(lo, t) + } + } + if lo > hi+pivotTol { + return 0, false + } + } + if lo > hi+pivotTol { + return 0, false + } + return (lo + hi) * 0.5, true +} + +// pivotRelaxInBox projects toward feasible half-spaces from the box centre when +// bisection finds no exact Z interval at sampled XY (degenerate or tight feasible set). +// Ref: fix_pivots.pl f_find_pivot fallback iterations. +func pivotRelaxInBox(minB, maxB Vec3, hs []pivotHalfSpace) (Vec3, bool) { + p := Vec3{ + X: (minB.X + maxB.X) * 0.5, + Y: (minB.Y + maxB.Y) * 0.5, + Z: (minB.Z + maxB.Z) * 0.5, + } + for iter := 0; iter < 256; iter++ { + p = clampToBox(p, minB, maxB) + if pivotSatisfies(p, hs) { + return p, true + } + moved := false + for i := range hs { + c := &hs[i] + v := vecDot(c.n, p) + dn := vecDot(c.n, c.n) + if dn < pivotPlaneNZEps*pivotPlaneNZEps { + continue + } + if c.ge && v < c.d { + t := (c.d - v) / dn + p.X += c.n.X * t + p.Y += c.n.Y * t + p.Z += c.n.Z * t + moved = true + } else if !c.ge && v > c.d { + t := (c.d - v) / dn + p.X += c.n.X * t + p.Y += c.n.Y * t + p.Z += c.n.Z * t + moved = true + } + } + if !moved { + break + } + } + p = clampToBox(p, minB, maxB) + if pivotSatisfies(p, hs) { + return p, true + } + return Vec3{}, false +} + +// pivotMoveBadFallback computes a fallback pivot point based on the move-bad strategy. +func pivotMoveBadFallback(mesh *MeshData, mode string) (Vec3, string) { + if len(mesh.Verts) == 0 { + return Vec3{}, "move-bad (no verts)" + } + switch mode { + case "top": + zmax := mesh.Verts[0].Z + var sx, sy float32 + for _, v := range mesh.Verts { + if v.Z > zmax { + zmax = v.Z + } + } + var n int + for _, v := range mesh.Verts { + if v.Z >= zmax-pivotZBand { + sx += v.X + sy += v.Y + n++ + } + } + if n == 0 { + return Vec3{Z: zmax}, "move-bad top" + } + return Vec3{X: sx / float32(n), Y: sy / float32(n), Z: zmax}, "move-bad top" + case "bottom": + zmin := mesh.Verts[0].Z + var sx, sy float32 + for _, v := range mesh.Verts { + if v.Z < zmin { + zmin = v.Z + } + } + var n int + for _, v := range mesh.Verts { + if v.Z <= zmin+pivotZBand { + sx += v.X + sy += v.Y + n++ + } + } + if n == 0 { + return Vec3{Z: zmin}, "move-bad bottom" + } + return Vec3{X: sx / float32(n), Y: sy / float32(n), Z: zmin}, "move-bad bottom" + default: // "middle" + var sx, sy, sz float32 + for _, v := range mesh.Verts { + sx += v.X + sy += v.Y + sz += v.Z + } + n := float32(len(mesh.Verts)) + return Vec3{X: sx / n, Y: sy / n, Z: sz / n}, "move-bad middle (centroid)" + } +} + +func clampToBox(p, minB, maxB Vec3) Vec3 { + return Vec3{ + X: minF(maxF(p.X, minB.X), maxB.X), + Y: minF(maxF(p.Y, minB.Y), maxB.Y), + Z: minF(maxF(p.Z, minB.Z), maxB.Z), + } +} + diff --git a/pkg/mdl/repair_placeable.go b/pkg/mdl/repair_placeable.go new file mode 100644 index 0000000..0dcc21b --- /dev/null +++ b/pkg/mdl/repair_placeable.go @@ -0,0 +1,19 @@ +package mdl + +import ( + "strings" +) + +// PlaceableTransparency reparents transparent meshes (those whose bitmap +// contains key) to a "Modela" node for CHARACTER classification models. +// This enables the engine's transparency sorting for placeables. +func PlaceableTransparency(model *Model, key string) []string { + var out []string + if model == nil || key == "" { + return out + } + if !strings.EqualFold(model.Classification, "CHARACTER") { + return out + } + return ReparentToModela(model, key, "placeable-transparency") +} diff --git a/pkg/mdl/repair_scale.go b/pkg/mdl/repair_scale.go new file mode 100644 index 0000000..6004558 --- /dev/null +++ b/pkg/mdl/repair_scale.go @@ -0,0 +1,104 @@ +package mdl + +import ( + "strings" +) + +func scaleModelCore(model *Model, sx, sy, sz float32) { + for _, n := range model.Nodes { + if n == nil { + continue + } + if n.Parent != "" && !strings.EqualFold(n.Parent, "NULL") { + n.Position = Vec3{X: n.Position.X * sx, Y: n.Position.Y * sy, Z: n.Position.Z * sz} + } + if n.Mesh != nil { + for i := range n.Mesh.Verts { + v := &n.Mesh.Verts[i] + v.X *= sx + v.Y *= sy + v.Z *= sz + } + } + if n.AnimMesh != nil { + for i := range n.AnimMesh.AnimVerts { + v := &n.AnimMesh.AnimVerts[i] + v.X *= sx + v.Y *= sy + v.Z *= sz + } + } + if n.Light != nil { + avg := (sx + sy + sz) / 3 + n.Light.Radius *= avg + n.Light.ShadowRadius *= avg + n.Light.VerticalDisplacement *= sz + n.Light.FlareRadius *= avg + } + if n.Emitter != nil { + avg := (sx + sy + sz) / 3 + n.Emitter.BlastRadius *= avg + n.Emitter.BlastLength *= avg + n.Emitter.DeadSpace *= avg + } + if n.Aabb != nil { + for i := range n.Aabb.Entries { + e := &n.Aabb.Entries[i] + e.BoundMin = Vec3{X: e.BoundMin.X * sx, Y: e.BoundMin.Y * sy, Z: e.BoundMin.Z * sz} + e.BoundMax = Vec3{X: e.BoundMax.X * sx, Y: e.BoundMax.Y * sy, Z: e.BoundMax.Z * sz} + for axis := 0; axis < 3; axis++ { + minP, maxP := e.BoundMin.Index(axis), e.BoundMax.Index(axis) + if minP > maxP { + e.BoundMin.SetIndex(axis, maxP) + e.BoundMax.SetIndex(axis, minP) + } + } + } + } + } + + for ai := range model.Animations { + for ni := range model.Animations[ai].Nodes { + an := &model.Animations[ai].Nodes[ni] + for ki := range an.PositionKeys { + v := &an.PositionKeys[ki].Value + v.X *= sx + v.Y *= sy + v.Z *= sz + } + if an.Mesh != nil { + for i := range an.Mesh.Verts { + v := &an.Mesh.Verts[i] + v.X *= sx + v.Y *= sy + v.Z *= sz + } + } + if an.AnimMesh != nil { + for i := range an.AnimMesh.AnimVerts { + v := &an.AnimMesh.AnimVerts[i] + v.X *= sx + v.Y *= sy + v.Z *= sz + } + } + } + } + + avg := (sx + sy + sz) / 3 + model.AnimationScale *= avg +} + +// ScaleModelPerAxis scales each axis independently. AnimationScale is set +// to the arithmetic mean of the three factors. +func ScaleModelPerAxis(model *Model, sx, sy, sz float32) { + scaleModelCore(model, sx, sy, sz) +} + +// ScaleModel multiplies all vertex positions and animation position keys +// by the given factor, and adjusts AnimationScale accordingly. +// AABB bounding boxes are also scaled; however, for best results use +// --fix-aabb to rebuild them from the scaled geometry. +func ScaleModel(model *Model, factor float32) { + scaleModelCore(model, factor, factor, factor) +} diff --git a/pkg/mdl/repair_structural.go b/pkg/mdl/repair_structural.go new file mode 100644 index 0000000..8ae18c9 --- /dev/null +++ b/pkg/mdl/repair_structural.go @@ -0,0 +1,113 @@ +package mdl + +import ( + "fmt" + "strings" +) + +// ReparentFromRestrictedNodes moves children of AABB/light nodes to their +// grandparent. Returns a list of human-readable repair messages. +func ReparentFromRestrictedNodes(model *Model) []string { + noChildTypes := make(map[string]string) + for _, n := range model.Nodes { + if n == nil { + continue + } + nt := n.NodeType() + if nt == "aabb" || nt == "light" { + noChildTypes[strings.ToLower(n.Name)] = nt + } + } + + var msgs []string + for _, n := range model.Nodes { + if n == nil { + continue + } + parentType, isRestricted := noChildTypes[strings.ToLower(n.Parent)] + if !isRestricted { + continue + } + var grandparent string + for _, p := range model.Nodes { + if p != nil && strings.EqualFold(p.Name, n.Parent) { + grandparent = p.Parent + break + } + } + if grandparent == "" { + grandparent = model.Name + } + oldParent := n.Parent + n.Parent = grandparent + msgs = append(msgs, "reparented \""+n.Name+"\" from "+parentType+" node \""+oldParent+"\" to \""+grandparent+"\"") + } + return msgs +} + +// WrapRootInDummy inserts a dummy wrapper node when the model root is a +// geometry node type (trimesh, danglymesh, etc.) instead of a dummy. +// Returns a repair message, or empty string if no wrapping was needed. +func WrapRootInDummy(model *Model) string { + for i, n := range model.Nodes { + if n == nil || !strings.EqualFold(n.Parent, "NULL") || !strings.EqualFold(n.Name, model.Name) { + continue + } + if n.NodeType() == "dummy" { + continue + } + wrapper := &Node{ + Name: model.Name, + Parent: "NULL", + } + oldType := n.NodeType() + oldName := n.Name + n.Parent = model.Name + n.Name = model.Name + "_mesh" + newNodes := make([]*Node, 0, len(model.Nodes)+1) + newNodes = append(newNodes, model.Nodes[:i]...) + newNodes = append(newNodes, wrapper) + newNodes = append(newNodes, model.Nodes[i:]...) + model.Nodes = newNodes + for _, gn := range model.Nodes { + if gn != nil && strings.EqualFold(gn.Parent, oldName) && gn != n && gn != wrapper { + gn.Parent = n.Name + } + } + for ai := range model.Animations { + for ni := range model.Animations[ai].Nodes { + an := &model.Animations[ai].Nodes[ni] + if strings.EqualFold(an.Name, oldName) { + an.Name = n.Name + } + if strings.EqualFold(an.Parent, oldName) { + an.Parent = n.Name + } + } + } + return "wrapped " + oldType + " root \"" + model.Name + "\" in dummy node, mesh renamed to \"" + n.Name + "\"" + } + return "" +} + +// FixAnimationLengths clamps negative animation lengths to 0 and ensures +// TILE transition animations meet the minimum length. +// Returns a list of repair messages. +func FixAnimationLengths(model *Model) []string { + var msgs []string + isTile := strings.EqualFold(model.Classification, "TILE") + for i := range model.Animations { + a := &model.Animations[i] + if a.Length < 0 { + old := a.Length + a.Length = 0 + msgs = append(msgs, fmt.Sprintf("animation %q had negative length %g, set to 0", a.Name, old)) + } + if isTile && (strings.EqualFold(a.Name, "day2night") || strings.EqualFold(a.Name, "night2day")) && a.Length < TileAnimMinLength { + old := a.Length + a.Length = TileAnimMinLength + msgs = append(msgs, fmt.Sprintf("TILE animation %q had length %g, set to minimum %g", a.Name, old, TileAnimMinLength)) + } + } + return msgs +} diff --git a/pkg/mdl/repair_test.go b/pkg/mdl/repair_test.go new file mode 100644 index 0000000..4bb7de3 --- /dev/null +++ b/pkg/mdl/repair_test.go @@ -0,0 +1,600 @@ +package mdl + +import ( + "math" + "strings" + "testing" +) + +func testModel(nodes ...*Node) *Model { + return &Model{ + Name: "test", + Classification: "CHARACTER", + SuperModel: "NULL", + AnimationScale: 1.0, + Nodes: nodes, + } +} + +func testTileModel(nodes ...*Node) *Model { + m := testModel(nodes...) + m.Classification = "TILE" + return m +} + +func dummyNode(name, parent string) *Node { + return &Node{Name: name, Parent: parent} +} + +func trimeshNode(name, parent string, mesh *MeshData) *Node { + return &Node{Name: name, Parent: parent, Mesh: mesh} +} + +func quadMesh(bitmap string) *MeshData { + m := NewMeshData() + m.Verts = []Vec3{{0, 0, 0}, {1, 0, 0}, {1, 1, 0}, {0, 1, 0}} + m.TVerts = []Vec3{{0, 0, 0}, {1, 0, 0}, {1, 1, 0}, {0, 1, 0}} + m.Faces = []Face{ + {Verts: [3]int32{0, 1, 2}, UVs: [3]int32{0, 1, 2}}, + {Verts: [3]int32{0, 2, 3}, UVs: [3]int32{0, 2, 3}}, + } + m.Bitmap = bitmap + return m +} + +func TestStripDegenerateFaces(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{{0, 0, 0}, {1, 0, 0}, {1, 1, 0}, {0, 1, 0}} + mesh.Faces = []Face{ + {Verts: [3]int32{0, 1, 2}}, + {Verts: [3]int32{0, 0, 1}}, + {Verts: [3]int32{0, 2, 3}}, + } + model := testModel(trimeshNode("mesh1", "NULL", mesh)) + + count := StripDegenerateFaces(model) + if count != 1 { + t.Fatalf("expected 1 degenerate face removed, got %d", count) + } + if len(mesh.Faces) != 2 { + t.Fatalf("expected 2 faces remaining, got %d", len(mesh.Faces)) + } +} + +func TestSplitMultipleEdges(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{{0, 0, 0}, {1, 0, 0}, {0.5, 1, 0}, {0.5, -1, 0}} + mesh.TVerts = []Vec3{{0, 0, 0}, {1, 0, 0}, {0.5, 1, 0}, {0.5, -1, 0}} + mesh.Faces = []Face{ + {Verts: [3]int32{0, 1, 2}, UVs: [3]int32{0, 1, 2}}, + {Verts: [3]int32{0, 1, 3}, UVs: [3]int32{0, 1, 3}}, + {Verts: [3]int32{1, 0, 3}, UVs: [3]int32{1, 0, 3}}, + } + node := trimeshNode("mesh1", "NULL", mesh) + + count := SplitMultipleEdges(node) + if count == 0 { + t.Fatal("expected at least 1 multi-edge split, got 0") + } + + edgeMap := BuildEdgeFaceMap(mesh.Faces) + for e, faces := range edgeMap { + if len(faces) > 2 { + t.Errorf("edge %v still shared by %d faces after split", e, len(faces)) + } + } + + for fi, f := range mesh.Faces { + for vi := 0; vi < 3; vi++ { + if int(f.UVs[vi]) >= len(mesh.TVerts) { + t.Errorf("face %d UV index %d = %d exceeds TVerts len %d", fi, vi, f.UVs[vi], len(mesh.TVerts)) + } + } + } +} + +func TestForceRender(t *testing.T) { + mesh := NewMeshData() + mesh.Render = 0 + model := testModel(trimeshNode("mesh1", "NULL", mesh)) + + count := ForceRender(model, "all") + if count != 1 { + t.Fatalf("expected 1 node changed, got %d", count) + } + if mesh.Render != 1 { + t.Fatalf("expected Render=1, got %d", mesh.Render) + } + + mesh.Render = 1 + count = ForceRender(model, "none") + if count != 1 { + t.Fatalf("expected 1 node changed for none mode, got %d", count) + } + if mesh.Render != 0 { + t.Fatalf("expected Render=0, got %d", mesh.Render) + } +} + +func TestForceShadow(t *testing.T) { + mesh := NewMeshData() + mesh.Shadow = 0 + model := testModel(trimeshNode("mesh1", "NULL", mesh)) + + count := ForceShadow(model, "all") + if count != 1 { + t.Fatalf("expected 1 node changed, got %d", count) + } + if mesh.Shadow != 1 { + t.Fatalf("expected Shadow=1, got %d", mesh.Shadow) + } + + mesh.Shadow = 1 + count = ForceShadow(model, "none") + if count != 1 { + t.Fatalf("expected 1 node changed for none mode, got %d", count) + } + if mesh.Shadow != 0 { + t.Fatalf("expected Shadow=0, got %d", mesh.Shadow) + } +} + +func TestForceWhiteAmbientDiffuse(t *testing.T) { + mesh := NewMeshData() + mesh.Ambient = Vec3{0, 0, 0} + mesh.Diffuse = Vec3{0.5, 0.5, 0.5} + model := testModel(trimeshNode("mesh1", "NULL", mesh)) + + count := ForceWhiteAmbientDiffuse(model) + if count != 1 { + t.Fatalf("expected 1 node changed, got %d", count) + } + white := Vec3{1, 1, 1} + if mesh.Ambient != white { + t.Fatalf("expected Ambient={1,1,1}, got %v", mesh.Ambient) + } + if mesh.Diffuse != white { + t.Fatalf("expected Diffuse={1,1,1}, got %v", mesh.Diffuse) + } +} + +func TestCullInvisibleMeshes(t *testing.T) { + visible := NewMeshData() + visible.Render = 1 + + invisible := NewMeshData() + invisible.Render = 0 + invisible.Shadow = 0 + + model := testModel( + trimeshNode("vis", "root", visible), + trimeshNode("invis", "root", invisible), + ) + + count := CullInvisibleMeshes(model) + if count != 1 { + t.Fatalf("expected 1 culled, got %d", count) + } + + invisNode := model.FindNode("invis") + if invisNode.Mesh != nil { + t.Fatal("expected invisible node's Mesh to be nil after cull") + } + visNode := model.FindNode("vis") + if visNode.Mesh == nil { + t.Fatal("expected visible node's Mesh to still be present") + } +} + +func TestMergeByBitmap(t *testing.T) { + mesh1 := quadMesh("shared_bitmap") + mesh2 := quadMesh("shared_bitmap") + + model := testModel( + dummyNode("root", "NULL"), + trimeshNode("m1", "root", mesh1), + trimeshNode("m2", "root", mesh2), + ) + + origVerts := len(mesh1.Verts) + len(mesh2.Verts) + origFaces := len(mesh1.Faces) + len(mesh2.Faces) + + count := MergeByBitmap(model) + if count != 1 { + t.Fatalf("expected 1 merge group, got %d", count) + } + + m2Node := model.FindNode("m2") + if m2Node.Mesh != nil { + t.Fatal("expected source node's mesh to be nil after merge") + } + + if len(mesh1.Verts) != origVerts { + t.Fatalf("expected %d combined verts, got %d", origVerts, len(mesh1.Verts)) + } + if len(mesh1.Faces) != origFaces { + t.Fatalf("expected %d combined faces, got %d", origFaces, len(mesh1.Faces)) + } +} + +func TestSnapVertices(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{{-1.007, 1.007, 0}} + model := testModel(trimeshNode("mesh1", "NULL", mesh)) + + SnapVertices(model, "decimal") + + v := mesh.Verts[0] + if math.Abs(float64(v.X)-(-1.01)) > 1e-5 { + t.Errorf("expected X ≈ -1.01, got %f", v.X) + } + if math.Abs(float64(v.Y)-1.01) > 1e-5 { + t.Errorf("expected Y ≈ 1.01, got %f", v.Y) + } + if v.Z != 0 { + t.Errorf("expected Z = 0, got %f", v.Z) + } +} + +func TestScaleModel(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{{1, 0, 0}, {0, 1, 0}} + node := trimeshNode("mesh1", "root", mesh) + node.Position = Vec3{1, 2, 3} + model := testModel(dummyNode("root", "NULL"), node) + + ScaleModel(model, 2.0) + + if node.Position != (Vec3{2, 4, 6}) { + t.Fatalf("expected position {2,4,6}, got %v", node.Position) + } + if mesh.Verts[0] != (Vec3{2, 0, 0}) { + t.Fatalf("expected vert[0] {2,0,0}, got %v", mesh.Verts[0]) + } + if mesh.Verts[1] != (Vec3{0, 2, 0}) { + t.Fatalf("expected vert[1] {0,2,0}, got %v", mesh.Verts[1]) + } +} + +func TestScaleModelPerAxis(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{{1, 0, 0}, {0, 1, 0}} + node := trimeshNode("mesh1", "root", mesh) + node.Position = Vec3{1, 2, 3} + model := testModel(dummyNode("root", "NULL"), node) + + ScaleModelPerAxis(model, 2, 3, 4) + + if node.Position != (Vec3{2, 6, 12}) { + t.Fatalf("expected position {2,6,12}, got %v", node.Position) + } + if mesh.Verts[0] != (Vec3{2, 0, 0}) { + t.Fatalf("expected vert[0] {2,0,0}, got %v", mesh.Verts[0]) + } + if mesh.Verts[1] != (Vec3{0, 3, 0}) { + t.Fatalf("expected vert[1] {0,3,0}, got %v", mesh.Verts[1]) + } +} + +func TestWrapRootInDummy(t *testing.T) { + mesh := quadMesh("tex") + model := testModel(trimeshNode("test", "NULL", mesh)) + + msg := WrapRootInDummy(model) + if msg == "" { + t.Fatal("expected non-empty repair message") + } + + root := model.Nodes[0] + if root.NodeType() != "dummy" { + t.Fatalf("expected first node to be dummy, got %s", root.NodeType()) + } + if root.Name != "test" { + t.Fatalf("expected wrapper named 'test', got %q", root.Name) + } + + meshNode := model.Nodes[1] + if meshNode.Mesh == nil { + t.Fatal("expected second node to have mesh data") + } + if meshNode.Parent != "test" { + t.Fatalf("expected mesh node parent='test', got %q", meshNode.Parent) + } +} + +func TestReparentFromRestrictedNodes(t *testing.T) { + root := dummyNode("root", "NULL") + light := &Node{Name: "mylight", Parent: "root", Light: &LightData{}} + child := trimeshNode("childmesh", "mylight", quadMesh("tex")) + + model := testModel(root, light, child) + + msgs := ReparentFromRestrictedNodes(model) + if len(msgs) == 0 { + t.Fatal("expected at least one reparent message") + } + if child.Parent != "root" { + t.Fatalf("expected child reparented to 'root', got %q", child.Parent) + } +} + +func TestFixAnimationLengths(t *testing.T) { + model := testTileModel(dummyNode("root", "NULL")) + model.Animations = []Animation{ + {Name: "day2night", Length: 0.001}, + } + + msgs := FixAnimationLengths(model) + if len(msgs) == 0 { + t.Fatal("expected at least one fix message") + } + if model.Animations[0].Length < TileAnimMinLength { + t.Fatalf("expected length >= %g, got %g", TileAnimMinLength, model.Animations[0].Length) + } +} + +func TestFixAnimationLengthsNegative(t *testing.T) { + model := testModel(dummyNode("root", "NULL")) + model.Animations = []Animation{ + {Name: "attack", Length: -1.0}, + } + + msgs := FixAnimationLengths(model) + if len(msgs) == 0 { + t.Fatal("expected at least one fix message") + } + if model.Animations[0].Length != 0 { + t.Fatalf("expected length = 0, got %g", model.Animations[0].Length) + } +} + +func TestRebuildAABB(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{ + {0, 0, 0}, {4, 0, 0}, {4, 4, 0}, {0, 4, 0}, + {2, 2, 0}, {3, 0, 0}, + } + mesh.Faces = []Face{ + {Verts: [3]int32{0, 1, 4}}, + {Verts: [3]int32{1, 2, 4}}, + {Verts: [3]int32{2, 3, 4}}, + {Verts: [3]int32{3, 0, 4}}, + } + node := &Node{ + Name: "walkmesh", + Parent: "NULL", + Mesh: mesh, + Aabb: &AabbData{}, + } + + err := RebuildAABB(node) + if err != nil { + t.Fatalf("RebuildAABB error: %v", err) + } + if len(node.Aabb.Entries) == 0 { + t.Fatal("expected non-empty AABB entries") + } + + leafCount := 0 + for _, e := range node.Aabb.Entries { + if e.LeafFace >= 0 { + leafCount++ + } + } + if leafCount != len(mesh.Faces) { + t.Fatalf("expected %d leaf entries (one per face), got %d", len(mesh.Faces), leafCount) + } +} + +func TestSliceTileFade(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{ + {0, 0, -1}, {1, 0, -1}, {1, 1, -1}, {0, 1, -1}, + {0, 0, 1}, {1, 0, 1}, {1, 1, 1}, {0, 1, 1}, + } + mesh.TVerts = []Vec3{ + {0, 0, 0}, {1, 0, 0}, {1, 1, 0}, {0, 1, 0}, + {0, 0, 0}, {1, 0, 0}, {1, 1, 0}, {0, 1, 0}, + } + mesh.Faces = []Face{ + {Verts: [3]int32{0, 1, 4}, UVs: [3]int32{0, 1, 4}}, + {Verts: [3]int32{1, 5, 4}, UVs: [3]int32{1, 5, 4}}, + {Verts: [3]int32{1, 2, 5}, UVs: [3]int32{1, 2, 5}}, + {Verts: [3]int32{2, 6, 5}, UVs: [3]int32{2, 6, 5}}, + } + mesh.TileFade = 2 + + model := testTileModel( + dummyNode("root", "NULL"), + trimeshNode("wall", "root", mesh), + ) + + msgs := SliceTileFade(model, 0) + if len(msgs) == 0 { + t.Fatal("expected at least one slice message") + } + + var tf0, tf1 *Node + for _, n := range model.Nodes { + if n.Mesh != nil && strings.Contains(n.Name, "__tf0") { + tf0 = n + } + if n.Mesh != nil && strings.Contains(n.Name, "__tf1") { + tf1 = n + } + } + if tf0 == nil { + t.Fatal("expected a __tf0 node") + } + if tf1 == nil { + t.Fatal("expected a __tf1 node") + } + if len(tf0.Mesh.Faces) == 0 { + t.Fatal("expected __tf0 to have faces") + } + if len(tf1.Mesh.Faces) == 0 { + t.Fatal("expected __tf1 to have faces") + } + if tf0.Mesh.TileFade != 0 { + t.Fatalf("expected __tf0 TileFade=0, got %d", tf0.Mesh.TileFade) + } + if tf1.Mesh.TileFade != 1 { + t.Fatalf("expected __tf1 TileFade=1, got %d", tf1.Mesh.TileFade) + } +} + +func TestRepairPivots(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{ + {-2, -2, 0}, {2, -2, 0}, {2, 2, 0}, {-2, 2, 0}, + {0, 0, 3}, + } + mesh.Faces = []Face{ + {Verts: [3]int32{0, 1, 2}}, + {Verts: [3]int32{0, 2, 3}}, + {Verts: [3]int32{0, 1, 4}}, + {Verts: [3]int32{1, 2, 4}}, + } + node := &Node{ + Name: "aabb_node", + Parent: "NULL", + Mesh: mesh, + Aabb: &AabbData{}, + Position: Vec3{99, 99, 99}, + } + model := testModel(node) + + msgs := RepairPivots(model, PivotOptions{}) + if len(msgs) == 0 { + t.Fatal("expected at least one pivot message") + } + if node.Position == (Vec3{99, 99, 99}) { + t.Fatal("expected Position to be updated from initial value") + } + if node.Position.Z < 0 { + t.Fatalf("expected pivot Z >= 0, got %f", node.Position.Z) + } +} + +// TestRepairPivots_GeometryStaysInWorldSpace is a regression test for +// issue #7. When the authored pivot fails the constraint check AND a +// valid replacement is found, the node's local origin must move while +// the world-space geometry stays put: verts and direct children must be +// rebased by the same offset that gets added to the node's position. +// Without this rebase, `repair -a` translates the walkmesh visibly +// (ttr01_o07_01 cm088 shifted from (0,0,-5) to (-4.84,-4.84,4.99)). +func TestRepairPivots_GeometryStaysInWorldSpace(t *testing.T) { + mesh := NewMeshData() + // Walkmesh interior to the tile slab, well clear of the boundary + // band so no per-face half-space narrows the feasible region. Top + // face at z=3 gives the search an obvious top-centre to pick. + mesh.Verts = []Vec3{ + {-2, -2, 0}, {2, -2, 0}, {2, 2, 0}, {-2, 2, 0}, + {0, 0, 3}, + } + mesh.Faces = []Face{ + {Verts: [3]int32{0, 1, 2}}, + {Verts: [3]int32{0, 2, 3}}, + {Verts: [3]int32{0, 1, 4}}, + {Verts: [3]int32{1, 2, 4}}, + } + // Authored position below the floor — fails the z>=0 half-space, so + // the gate falls through into the search. + startPos := Vec3{0, 0, -1} + aabbNode := &Node{ + Name: "cm_shift", + Parent: "NULL", + Mesh: mesh, + Aabb: &AabbData{}, + Position: startPos, + } + child := &Node{ + Name: "cm_shift_child", + Parent: aabbNode.Name, + Position: Vec3{1, 1, 1}, + } + model := testModel(aabbNode, child) + + // Capture world-space vertex positions before the repair so we can + // assert the geometry survived the pivot move intact. Identity + // orientation here, so world = position + local. + worldBefore := make([]Vec3, len(mesh.Verts)) + for i, v := range mesh.Verts { + worldBefore[i] = Vec3{startPos.X + v.X, startPos.Y + v.Y, startPos.Z + v.Z} + } + childWorldBefore := Vec3{ + startPos.X + child.Position.X, + startPos.Y + child.Position.Y, + startPos.Z + child.Position.Z, + } + + msgs := RepairPivots(model, PivotOptions{}) + if len(msgs) == 0 { + t.Fatal("expected RepairPivots to act on the below-floor pivot") + } + if aabbNode.Position == startPos { + t.Fatal("expected node.Position to move when the pivot is rebuilt") + } + + for i, v := range mesh.Verts { + got := Vec3{aabbNode.Position.X + v.X, aabbNode.Position.Y + v.Y, aabbNode.Position.Z + v.Z} + if !vecCloseEnough(got, worldBefore[i]) { + t.Fatalf("vert %d world position drifted: got %v, want %v", i, got, worldBefore[i]) + } + } + + childWorldAfter := Vec3{ + aabbNode.Position.X + child.Position.X, + aabbNode.Position.Y + child.Position.Y, + aabbNode.Position.Z + child.Position.Z, + } + if !vecCloseEnough(childWorldAfter, childWorldBefore) { + t.Fatalf("child world position drifted: got %v, want %v", childWorldAfter, childWorldBefore) + } +} + +// vecCloseEnough returns true when two Vec3s match within the same 1e-4 +// tolerance used by other repair tests (worth a hair more slack than +// transformEps because the pivot search snaps its candidates to the 0.01 +// grid before the rebase math runs). +func vecCloseEnough(a, b Vec3) bool { + const eps = float32(1e-4) + return absF32(a.X-b.X) < eps && absF32(a.Y-b.Y) < eps && absF32(a.Z-b.Z) < eps +} + +// TestRepairPivots_AuthoredPivotPreserved is a regression test for issue #6. +// A walkmesh whose authored position is geometrically valid must be left +// alone; the previous behaviour rebuilt every pivot unconditionally and +// shifted the model in viewers when round-tripped through `repair -a`. +func TestRepairPivots_AuthoredPivotPreserved(t *testing.T) { + mesh := NewMeshData() + // Interior walkmesh well inside the tile slab and clear of the + // boundary band, so no face contributes a half-space the authored + // pivot could fail. + mesh.Verts = []Vec3{ + {-2, -2, 0}, {2, -2, 0}, {2, 2, 0}, {-2, 2, 0}, + } + mesh.Faces = []Face{ + {Verts: [3]int32{0, 1, 2}}, + {Verts: [3]int32{0, 2, 3}}, + } + authored := Vec3{0.5, -0.25, 0} + node := &Node{ + Name: "cm_keep", + Parent: "NULL", + Mesh: mesh, + Aabb: &AabbData{}, + Position: authored, + } + model := testModel(node) + + msgs := RepairPivots(model, PivotOptions{}) + if node.Position != authored { + t.Fatalf("expected authored pivot %v to be preserved, got %v", authored, node.Position) + } + for _, m := range msgs { + if strings.Contains(m, node.Name) { + t.Fatalf("expected no repair messages for %q, got %q", node.Name, m) + } + } +} diff --git a/pkg/mdl/repair_tile_ops.go b/pkg/mdl/repair_tile_ops.go new file mode 100644 index 0000000..1032f0f --- /dev/null +++ b/pkg/mdl/repair_tile_ops.go @@ -0,0 +1,159 @@ +package mdl + +import ( + "fmt" + "strings" +) + +// RetileUVs remaps UV coordinates for mesh nodes whose bitmap contains key. +// The tile coordinate system spans -5 to 5 in X and Y (10x10 units). +// tileSize controls the repetition factor: U = (vertX + 5) * tileSize * 0.1, +// V = (vertY + 5) * tileSize * 0.1, W = 0. Face UV indices are set to match +// vertex indices (1:1 mapping). +func RetileUVs(model *Model, key string, tileSize int) []string { + var out []string + if key == "" || tileSize <= 0 { + return out + } + lk := strings.ToLower(key) + n := float32(tileSize) + for _, nd := range model.Nodes { + if nd == nil || nd.Mesh == nil { + continue + } + if !strings.Contains(strings.ToLower(nd.Mesh.Bitmap), lk) { + continue + } + mesh := nd.Mesh + if len(mesh.Verts) == 0 { + continue + } + mesh.TVerts = make([]Vec3, len(mesh.Verts)) + for i, v := range mesh.Verts { + mesh.TVerts[i] = Vec3{ + X: (v.X + 5) * n * 0.1, + Y: (v.Y + 5) * n * 0.1, + Z: 0, + } + } + for i := range mesh.Faces { + mesh.Faces[i].UVs = mesh.Faces[i].Verts + } + out = append(out, fmt.Sprintf("retiled UVs on node %q (tileSize=%d)", nd.Name, tileSize)) + } + return out +} + +// SetRotateTexture sets the RotateTexture property on mesh nodes whose bitmap +// contains key. +func SetRotateTexture(model *Model, key string, value int32) []string { + var out []string + if key == "" { + return out + } + lk := strings.ToLower(key) + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + if !strings.Contains(strings.ToLower(n.Mesh.Bitmap), lk) { + continue + } + if n.Mesh.RotateTexture != value { + n.Mesh.RotateTexture = value + out = append(out, fmt.Sprintf("set rotatetexture=%d on node %q", value, n.Name)) + } + } + return out +} + +// ReparentToModela reparents mesh nodes whose bitmap contains key to a node +// named "Modela" (creating it if needed). This is used for foliage/splotch +// animate operations. +func ReparentToModela(model *Model, key string, nodeType string) []string { + var out []string + if key == "" { + return out + } + lk := strings.ToLower(key) + var modela *Node + for _, n := range model.Nodes { + if n != nil && strings.EqualFold(n.Name, "Modela") { + modela = n + break + } + } + + var matched []*Node + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + if !strings.Contains(strings.ToLower(n.Mesh.Bitmap), lk) { + continue + } + matched = append(matched, n) + } + if len(matched) == 0 { + return out + } + + if modela == nil { + root := model.RootNode() + parentName := "NULL" + if root != nil { + parentName = root.Name + } + modela = &Node{ + Name: "Modela", + Parent: parentName, + } + model.Nodes = append(model.Nodes, modela) + out = append(out, fmt.Sprintf("created dummy node \"Modela\" under %q for %s reparenting", parentName, nodeType)) + } + + for _, n := range matched { + old := n.Parent + n.Parent = "Modela" + out = append(out, fmt.Sprintf("reparented %s node %q from %q to \"Modela\"", nodeType, n.Name, old)) + } + return out +} + +// RaiseLowerTile shifts tile geometry vertically. direction is "raise" or "lower". +// amount is always positive; negative shift is applied for "lower". +// Adjusts node Position.Z, AABB vertex Z coordinates, and animation position keys. +func RaiseLowerTile(model *Model, direction string, amount float32) []string { + var out []string + if amount == 0 { + return out + } + dz := amount + if strings.EqualFold(direction, "lower") { + dz = -amount + } + + for _, n := range model.Nodes { + if n == nil { + continue + } + n.Position.Z += dz + if n.Mesh != nil { + for i := range n.Mesh.Verts { + n.Mesh.Verts[i].Z += dz + } + } + } + + for ai := range model.Animations { + for ni := range model.Animations[ai].Nodes { + an := &model.Animations[ai].Nodes[ni] + for ki := range an.PositionKeys { + an.PositionKeys[ki].Value.Z += dz + } + } + } + + out = append(out, fmt.Sprintf("tile %s by %.4f units (dz=%.4f)", direction, amount, dz)) + return out +} diff --git a/pkg/mdl/repair_tilefade.go b/pkg/mdl/repair_tilefade.go new file mode 100644 index 0000000..e212e75 --- /dev/null +++ b/pkg/mdl/repair_tilefade.go @@ -0,0 +1,551 @@ +// Tile-fade repair: slice trimesh/skin geometry at a world Z plane so upper +// portions can use tilefade=1 independently of the base mesh (tilefade=0). +// +// Ref: plenarius/cleanmodels/tilefade.pl — predicate t_slice_trimesh/6 and +// related helpers for edge/plane intersection, per-face classification, and +// splitting nodes by tilefade group. +package mdl + +import ( + "fmt" + "math" + "sort" + "strings" +) + +const tilefadeZEpsilon = float32(1e-4) + +// SliceTileFade processes a TILE model's mesh nodes, splitting geometry at the +// given Z height to separate tile-fadeable portions from non-fadeable ones. +// Only operates on TILE classification models. +// Ref: tilefade.pl t_slice_trimesh/6 +func SliceTileFade(model *Model, sliceZ float32) []string { + var msgs []string + if model == nil { + return append(msgs, "slice tilefade: nil model") + } + if !strings.EqualFold(model.Classification, "TILE") { + return msgs + } + + idx := nodeIndex(model) + for i := 0; i < len(model.Nodes); i++ { + n := model.Nodes[i] + if n == nil || n.Mesh == nil { + continue + } + if n.AnimMesh != nil || n.Dangly != nil || n.Aabb != nil || n.Emitter != nil || n.Light != nil || n.Reference != nil { + continue + } + // trimesh or skin (both carry MeshData on Mesh) + + if !meshCrossesTileFadeZ(idx, n, n.Mesh, sliceZ) { + continue + } + + above, below, skAbove, skBelow, err := splitMeshAtWorldZ(idx, n, n.Mesh, sliceZ) + if err != nil { + msgs = append(msgs, fmt.Sprintf("slice tilefade: node %q — %v", n.Name, err)) + continue + } + + baseName := n.Name + name0 := uniqueMeshNodeName(model, baseName+"__tf0") + name1 := uniqueMeshNodeName(model, baseName+"__tf1") + + nodeBelow := cloneNodeForTileFadeSplit(n, name0, below, skBelow, 0) + nodeAbove := cloneNodeForTileFadeSplit(n, name1, above, skAbove, 1) + + reparentNodes(model, baseName, name0) + + model.Nodes[i] = nodeBelow + model.Nodes = append(model.Nodes[:i+1], append([]*Node{nodeAbove}, model.Nodes[i+1:]...)...) + + msgs = append(msgs, fmt.Sprintf( + "slice tilefade: node %q split at z=%g into %q (tilefade=0, %d faces) and %q (tilefade=1, %d faces)", + baseName, sliceZ, name0, len(below.Faces), name1, len(above.Faces), + )) + // reparentNodes + cloned nodes invalidate idx for any remaining + // children whose Parent now points at the freshly-renamed node. + idx = nodeIndex(model) + i++ // skip the inserted node we just processed + } + + return msgs +} + +// UndoTileFade reverses a previous tilefade slice operation. Nodes with +// TileFade==2 are deleted entirely; all other non-zero TileFade values +// are reset to 0. +func UndoTileFade(model *Model) []string { + var msgs []string + if model == nil { + return msgs + } + kept := make([]*Node, 0, len(model.Nodes)) + for _, n := range model.Nodes { + if n == nil { + kept = append(kept, n) + continue + } + if n.Mesh != nil && n.Mesh.TileFade == 2 { + msgs = append(msgs, fmt.Sprintf("tilefade-undo: deleted node %q (TileFade=2)", n.Name)) + continue + } + if n.Mesh != nil && n.Mesh.TileFade != 0 { + msgs = append(msgs, fmt.Sprintf("tilefade-undo: reset TileFade on node %q from %d to 0", n.Name, n.Mesh.TileFade)) + n.Mesh.TileFade = 0 + } + kept = append(kept, n) + } + model.Nodes = kept + return msgs +} + +func uniqueMeshNodeName(m *Model, base string) string { + if m.FindNode(base) == nil { + return base + } + for k := 2; k < 10000; k++ { + cand := fmt.Sprintf("%s_%d", base, k) + if m.FindNode(cand) == nil { + return cand + } + } + return base + "_n" +} + +func reparentNodes(m *Model, oldParent, newParent string) { + for _, x := range m.Nodes { + if x != nil && strings.EqualFold(x.Parent, oldParent) { + x.Parent = newParent + } + } + for ai := range m.Animations { + for ni := range m.Animations[ai].Nodes { + an := &m.Animations[ai].Nodes[ni] + if strings.EqualFold(an.Parent, oldParent) { + an.Parent = newParent + } + } + } +} + +func cloneNodeForTileFadeSplit(src *Node, newName string, mesh *MeshData, skin *SkinData, tileFade int32) *Node { + if mesh != nil { + mesh.TileFade = tileFade + } + dst := &Node{ + Name: newName, + Parent: src.Parent, + PartNumber: src.PartNumber, + Position: src.Position, + Orientation: src.Orientation, + Scale: src.Scale, + InheritColor: src.InheritColor, + WireColor: src.WireColor, + Mesh: mesh, + Skin: skin, + } + return dst +} + +// meshCrossesTileFadeZ reports whether mesh straddles the world-space Z +// plane sliceZ. idx must be the model's node index (built once per model); +// callers that pass nil get a fresh-built index per call, which is fine for +// one-shot diagnostics but wasteful inside per-face loops. +func meshCrossesTileFadeZ(idx map[string]*Node, n *Node, mesh *MeshData, sliceZ float32) bool { + for fi := range mesh.Faces { + f := &mesh.Faces[fi] + z0 := LocalToWorld(idx, n, meshVert(mesh, f.Verts[0])).Z + z1 := LocalToWorld(idx, n, meshVert(mesh, f.Verts[1])).Z + z2 := LocalToWorld(idx, n, meshVert(mesh, f.Verts[2])).Z + a0 := zAboveSlice(z0, sliceZ) + a1 := zAboveSlice(z1, sliceZ) + a2 := zAboveSlice(z2, sliceZ) + if a0 != a1 || a1 != a2 || a0 != a2 { + return true + } + } + return false +} + +func meshVert(mesh *MeshData, idx int32) Vec3 { + if idx < 0 || int(idx) >= len(mesh.Verts) { + return Vec3{} + } + return mesh.Verts[idx] +} + +func zAboveSlice(worldZ, sliceZ float32) bool { + return worldZ > sliceZ+tilefadeZEpsilon +} + +// --- bundled vertex (per-corner data while clipping) --- + +type tileFadeVert struct { + Pos Vec3 + Norm Vec3 + UV Vec3 + UV1 Vec3 + UV2 Vec3 + UV3 Vec3 + Color Vec3 + Tan Vec4 + Weight VertexWeight +} + +func readTileFadeVert(mesh *MeshData, skin *SkinData, vi, uvi int32) tileFadeVert { + v := tileFadeVert{ + Norm: Vec3{0, 0, 1}, + UV: Vec3{}, + Tan: Vec4{0, 0, 1, 1}, + } + if vi >= 0 && int(vi) < len(mesh.Verts) { + v.Pos = mesh.Verts[vi] + } + if vi >= 0 && int(vi) < len(mesh.Normals) { + v.Norm = mesh.Normals[vi] + } + if uvi >= 0 && int(uvi) < len(mesh.TVerts) { + v.UV = mesh.TVerts[uvi] + } + if uvi >= 0 && int(uvi) < len(mesh.TVerts1) { + v.UV1 = mesh.TVerts1[uvi] + } + if uvi >= 0 && int(uvi) < len(mesh.TVerts2) { + v.UV2 = mesh.TVerts2[uvi] + } + if uvi >= 0 && int(uvi) < len(mesh.TVerts3) { + v.UV3 = mesh.TVerts3[uvi] + } + if vi >= 0 && int(vi) < len(mesh.Colors) { + v.Color = mesh.Colors[vi] + } + if vi >= 0 && int(vi) < len(mesh.Tangents) { + v.Tan = mesh.Tangents[vi] + } + if skin != nil && vi >= 0 && int(vi) < len(skin.Weights) { + v.Weight = CloneVertexWeight(skin.Weights[vi]) + } + return v +} + + +func worldZOf(idx map[string]*Node, n *Node, v tileFadeVert) float32 { + return LocalToWorld(idx, n, v.Pos).Z +} + +// edgeSlice builds a new vertex on the edge v0—v1 where world Z == sliceZ. +// Ref: tilefade.pl — plane/edge intersection then attribute interpolation. +func edgeSlice(idx map[string]*Node, n *Node, v0, v1 tileFadeVert, sliceZ float32) (tileFadeVert, bool) { + w0 := LocalToWorld(idx, n, v0.Pos) + w1 := LocalToWorld(idx, n, v1.Pos) + dz := w1.Z - w0.Z + if math.Abs(float64(dz)) < float64(tilefadeZEpsilon) { + return tileFadeVert{}, false + } + t := (sliceZ - w0.Z) / dz + if t <= tilefadeZEpsilon || t >= 1.0-tilefadeZEpsilon { + return tileFadeVert{}, false + } + pw := vecLerp3(w0, w1, t) + out := tileFadeVert{ + Pos: WorldToLocal(idx, n, pw), + Norm: WorldNormalToLocal(idx, n, vecNormalize(vecLerp3( + LocalNormalToWorld(idx, n, v0.Norm), + LocalNormalToWorld(idx, n, v1.Norm), + t, + ))), + UV: vecLerp3(v0.UV, v1.UV, t), + UV1: vecLerp3(v0.UV1, v1.UV1, t), + UV2: vecLerp3(v0.UV2, v1.UV2, t), + UV3: vecLerp3(v0.UV3, v1.UV3, t), + Color: vecLerp3(v0.Color, v1.Color, t), + Tan: vecLerp4(v0.Tan, v1.Tan, t), + Weight: lerpVertexWeight(v0.Weight, v1.Weight, t), + } + return out, true +} + +func lerpVertexWeight(a, b VertexWeight, t float32) VertexWeight { + if len(a.Bones) == 0 && len(b.Bones) == 0 { + return VertexWeight{} + } + // Merge bone influences (small N, typical for game skinning). + acc := map[string]float32{} + for i := range a.Bones { + if i < len(a.Weights) { + acc[strings.ToLower(a.Bones[i])] += a.Weights[i] * (1 - t) + } + } + for i := range b.Bones { + if i < len(b.Weights) { + acc[strings.ToLower(b.Bones[i])] += b.Weights[i] * t + } + } + bones := make([]string, 0, len(acc)) + for bone, w := range acc { + if w > 1e-6 { + bones = append(bones, bone) + } + } + sort.Strings(bones) + out := VertexWeight{} + for _, bone := range bones { + out.Bones = append(out.Bones, bone) + out.Weights = append(out.Weights, acc[bone]) + } + renormalizeWeights(&out) + return out +} + +func renormalizeWeights(w *VertexWeight) { + var sum float32 + for i := range w.Weights { + sum += w.Weights[i] + } + if sum <= 0 { + return + } + for i := range w.Weights { + w.Weights[i] /= sum + } +} + +type meshBuilder struct { + mesh *MeshData +} + +func newMeshBuilderLike(template *MeshData) *meshBuilder { + m := &MeshData{ + Diffuse: template.Diffuse, + Ambient: template.Ambient, + Specular: template.Specular, + Shininess: template.Shininess, + Bitmap: template.Bitmap, + Texture1: template.Texture1, + Texture2: template.Texture2, + MaterialName: template.MaterialName, + RenderHint: template.RenderHint, + Shadow: template.Shadow, + Beaming: template.Beaming, + Render: template.Render, + TransparencyHint: template.TransparencyHint, + Alpha: template.Alpha, + SelfIllumColor: template.SelfIllumColor, + RotateTexture: template.RotateTexture, + LightMapped: template.LightMapped, + Multimaterial: append([]string(nil), template.Multimaterial...), + } + return &meshBuilder{mesh: m} +} + +func (b *meshBuilder) appendSkinWeight(skin *SkinData, w VertexWeight) { + if skin == nil { + return + } + skin.Weights = append(skin.Weights, w) +} + +func (b *meshBuilder) addVertWithSkin(tv tileFadeVert, template *MeshData, skin *SkinData) (vidx, uvidx int32) { + vidx = int32(len(b.mesh.Verts)) + uvidx = vidx + b.mesh.Verts = append(b.mesh.Verts, tv.Pos) + if len(template.Normals) > 0 { + b.mesh.Normals = append(b.mesh.Normals, tv.Norm) + } + if len(template.TVerts) > 0 { + b.mesh.TVerts = append(b.mesh.TVerts, tv.UV) + } + if len(template.TVerts1) > 0 { + b.mesh.TVerts1 = append(b.mesh.TVerts1, tv.UV1) + } + if len(template.TVerts2) > 0 { + b.mesh.TVerts2 = append(b.mesh.TVerts2, tv.UV2) + } + if len(template.TVerts3) > 0 { + b.mesh.TVerts3 = append(b.mesh.TVerts3, tv.UV3) + } + if len(template.Colors) > 0 { + b.mesh.Colors = append(b.mesh.Colors, tv.Color) + } + if len(template.Tangents) > 0 { + b.mesh.Tangents = append(b.mesh.Tangents, tv.Tan) + } + if skin != nil { + b.appendSkinWeight(skin, tv.Weight) + } + return vidx, uvidx +} + +func (b *meshBuilder) triangleNormal(v0, v1, v2 int32) Vec3 { + return triangleNormalFromIndices(b.mesh.Verts, v0, v1, v2) +} + +func triangleNormalFromIndices(verts []Vec3, v0, v1, v2 int32) Vec3 { + if verts == nil || int(v0) >= len(verts) || int(v1) >= len(verts) || int(v2) >= len(verts) { + return Vec3{0, 0, 1} + } + a := verts[v0] + b := verts[v1] + c := verts[v2] + return vecNormalize(vecCross(vecSub(b, a), vecSub(c, a))) +} + +func (b *meshBuilder) emitTri(v0, v1, v2 int32, uv0, uv1, uv2 int32, src *Face, useTex0, useTex1, useTex2, useTex3 bool, tex0, tex1, tex2, tex3 [3]int32) { + n := b.triangleNormal(v0, v1, v2) + f := Face{ + Verts: [3]int32{v0, v1, v2}, + SmoothGroup: src.SmoothGroup, + UVs: [3]int32{uv0, uv1, uv2}, + Material: src.Material, + Normal: n, + PlaneD: 0, + } + b.mesh.Faces = append(b.mesh.Faces, f) + if useTex0 { + b.mesh.TexIndices0 = append(b.mesh.TexIndices0, tex0) + } + if useTex1 { + b.mesh.TexIndices1 = append(b.mesh.TexIndices1, tex1) + } + if useTex2 { + b.mesh.TexIndices2 = append(b.mesh.TexIndices2, tex2) + } + if useTex3 { + b.mesh.TexIndices3 = append(b.mesh.TexIndices3, tex3) + } +} + +// orientTriangleForPlaneCut reorders corners so va is the lone vertex on one +// side of the slice plane; vb and vc follow CCW order along the opposite edge. +func orientTriangleForPlaneCut(a0, a1, a2 bool, v0, v1, v2 tileFadeVert) (va, vb, vc tileFadeVert, loneAbove, loneBelow bool) { + switch { + case a0 && !a1 && !a2: + return v0, v1, v2, true, false + case !a0 && a1 && !a2: + return v1, v2, v0, true, false + case !a0 && !a1 && a2: + return v2, v0, v1, true, false + case !a0 && a1 && a2: + return v0, v1, v2, false, true + case a0 && !a1 && a2: + return v1, v2, v0, false, true + case a0 && a1 && !a2: + return v2, v0, v1, false, true + default: + return v0, v1, v2, false, false + } +} + +func splitMeshAtWorldZ(idx map[string]*Node, n *Node, template *MeshData, sliceZ float32) (above, below *MeshData, skinAbove, skinBelow *SkinData, err error) { + skin := n.Skin + ab := newMeshBuilderLike(template) + bl := newMeshBuilderLike(template) + var skAbove, skBelow *SkinData + if skin != nil { + skAbove = &SkinData{} + skBelow = &SkinData{} + } + + bAbove := &meshBuilderWithSkin{meshBuilder: ab, skin: skAbove} + bBelow := &meshBuilderWithSkin{meshBuilder: bl, skin: skBelow} + + for fi := range template.Faces { + f := &template.Faces[fi] + useTI0 := fi < len(template.TexIndices0) + useTI1 := fi < len(template.TexIndices1) + useTI2 := fi < len(template.TexIndices2) + useTI3 := fi < len(template.TexIndices3) + var tex0, tex1, tex2, tex3 [3]int32 + if useTI0 { + tex0 = template.TexIndices0[fi] + } + if useTI1 { + tex1 = template.TexIndices1[fi] + } + if useTI2 { + tex2 = template.TexIndices2[fi] + } + if useTI3 { + tex3 = template.TexIndices3[fi] + } + + v0 := readTileFadeVert(template, skin, f.Verts[0], f.UVs[0]) + v1 := readTileFadeVert(template, skin, f.Verts[1], f.UVs[1]) + v2 := readTileFadeVert(template, skin, f.Verts[2], f.UVs[2]) + + z0 := worldZOf(idx, n, v0) + z1 := worldZOf(idx, n, v1) + z2 := worldZOf(idx, n, v2) + a0 := zAboveSlice(z0, sliceZ) + a1 := zAboveSlice(z1, sliceZ) + a2 := zAboveSlice(z2, sliceZ) + + if a0 == a1 && a1 == a2 { + if a0 { + bAbove.emitFace(template, f, v0, v1, v2, useTI0, useTI1, useTI2, useTI3, tex0, tex1, tex2, tex3) + } else { + bBelow.emitFace(template, f, v0, v1, v2, useTI0, useTI1, useTI2, useTI3, tex0, tex1, tex2, tex3) + } + continue + } + + va, vb, vc, loneAbove, loneBelow := orientTriangleForPlaneCut(a0, a1, a2, v0, v1, v2) + if !loneAbove && !loneBelow { + return nil, nil, nil, nil, fmt.Errorf("face %d: unexpected plane/triangle configuration", fi) + } + if loneAbove { + if err = splitOneAbove(idx, n, template, sliceZ, bAbove, bBelow, f, va, vb, vc, useTI0, useTI1, useTI2, useTI3, tex0, tex1, tex2, tex3); err != nil { + return nil, nil, nil, nil, err + } + } else { + if err = splitOneAbove(idx, n, template, sliceZ, bBelow, bAbove, f, va, vb, vc, useTI0, useTI1, useTI2, useTI3, tex0, tex1, tex2, tex3); err != nil { + return nil, nil, nil, nil, err + } + } + } + + return bAbove.mesh, bBelow.mesh, skAbove, skBelow, nil +} + +type meshBuilderWithSkin struct { + *meshBuilder + skin *SkinData +} + +func (b *meshBuilderWithSkin) emitFace(template *MeshData, src *Face, v0, v1, v2 tileFadeVert, useTI0, useTI1, useTI2, useTI3 bool, tex0, tex1, tex2, tex3 [3]int32) { + i0, u0 := b.addVertWithSkin(v0, template, b.skin) + i1, u1 := b.addVertWithSkin(v1, template, b.skin) + i2, u2 := b.addVertWithSkin(v2, template, b.skin) + b.emitTri(i0, i1, i2, u0, u1, u2, src, useTI0, useTI1, useTI2, useTI3, tex0, tex1, tex2, tex3) +} + +// splitOneAbove clips a triangle whose apex va lies strictly on one side of +// the world-space Z=sliceZ plane and base corners vb, vc lie on the other. +// The first mesh builder receives the small corner triangle; the second +// receives the two fan triangles on the opposite side. +// Ref: tilefade.pl — two-triangle fan + corner triangle at the slice. +func splitOneAbove(idx map[string]*Node, n *Node, template *MeshData, sliceZ float32, triA, triB *meshBuilderWithSkin, src *Face, va, vb, vc tileFadeVert, useTI0, useTI1, useTI2, useTI3 bool, tex0, tex1, tex2, tex3 [3]int32) error { + iab, okAB := edgeSlice(idx, n, va, vb, sliceZ) + iac, okAC := edgeSlice(idx, n, va, vc, sliceZ) + if !okAB || !okAC { + return fmt.Errorf("degenerate slice intersection (parallel edge)") + } + ia, ua := triA.addVertWithSkin(va, template, triA.skin) + ib, ub := triA.addVertWithSkin(iab, template, triA.skin) + ic, uc := triA.addVertWithSkin(iac, template, triA.skin) + triA.emitTri(ia, ib, ic, ua, ub, uc, src, useTI0, useTI1, useTI2, useTI3, tex0, tex1, tex2, tex3) + + b0, t0 := triB.addVertWithSkin(vb, template, triB.skin) + b1, t1 := triB.addVertWithSkin(vc, template, triB.skin) + b2, t2 := triB.addVertWithSkin(iac, template, triB.skin) + b3, t3 := triB.addVertWithSkin(iab, template, triB.skin) + triB.emitTri(b0, b1, b2, t0, t1, t2, src, useTI0, useTI1, useTI2, useTI3, tex0, tex1, tex2, tex3) + triB.emitTri(b0, b2, b3, t0, t2, t3, src, useTI0, useTI1, useTI2, useTI3, tex0, tex1, tex2, tex3) + return nil +} + +// --- small vector helpers --- + diff --git a/pkg/mdl/repair_walkmesh.go b/pkg/mdl/repair_walkmesh.go new file mode 100644 index 0000000..45ff8c7 --- /dev/null +++ b/pkg/mdl/repair_walkmesh.go @@ -0,0 +1,226 @@ +package mdl + +import ( + "errors" + "fmt" + "sort" +) + +// ErrDegenerateAABBTree is returned when face centroids cannot be partitioned +// along any axis (overlapping or collinear in a way that leaves one side empty). +// Ref: rebuild_wok.pl w_rebuild_aabb/4 (failure branch when no split axis works). +var ErrDegenerateAABBTree = errors.New("mdl: cannot rebuild AABB tree: degenerate centroid arrangement") + +// RebuildAABB rebuilds the AABB tree for a walkmesh node from its face geometry. +// The node must have Mesh and Aabb data. The existing Aabb.Entries are replaced. +// Entries are stored depth-first pre-order (root, left subtree, right subtree), +// matching the order produced by rebuild_wok.pl / binary decompilation. +// +// Leaf nodes have LeafFace >= 0 (face index); interior nodes use LeafFace == -1. +// Plane is 0 for leaves; for interior nodes it records the split axis (0=X, 1=Y, 2=Z). +// +// Ref: rebuild_wok.pl w_rebuild_aabb/4 +func RebuildAABB(node *Node) error { + if node == nil || node.Mesh == nil || node.Aabb == nil { + return fmt.Errorf("mdl: RebuildAABB requires non-nil node, Mesh, and Aabb") + } + mesh := node.Mesh + if len(mesh.Faces) == 0 { + return fmt.Errorf("mdl: RebuildAABB requires at least one face") + } + saved := append([]AabbEntry(nil), node.Aabb.Entries...) + node.Aabb.Entries = node.Aabb.Entries[:0] + + all := make([]int32, len(mesh.Faces)) + for i := range mesh.Faces { + all[i] = int32(i) + } + rb := aabbRebuilder{mesh: mesh, out: &node.Aabb.Entries} + if err := rb.rebuild(all); err != nil { + node.Aabb.Entries = saved + return err + } + return nil +} + +type aabbRebuilder struct { + mesh *MeshData + out *[]AabbEntry +} + +func (r *aabbRebuilder) rebuild(faceIdxs []int32) error { + if len(faceIdxs) == 0 { + return fmt.Errorf("mdl: internal AABB rebuild with empty face set") + } + minB, maxB, err := boundsForFaces(r.mesh, faceIdxs) + if err != nil { + return err + } + if len(faceIdxs) == 1 { + r.pushLeaf(minB, maxB, faceIdxs[0]) + return nil + } + left, right, axis, err := partitionFaces(r.mesh, faceIdxs, minB, maxB) + if err != nil { + return err + } + r.pushInterior(minB, maxB, axis) + if err := r.rebuild(left); err != nil { + return err + } + return r.rebuild(right) +} + +func (r *aabbRebuilder) pushLeaf(minB, maxB Vec3, face int32) { + *r.out = append(*r.out, AabbEntry{ + BoundMin: minB, + BoundMax: maxB, + LeafFace: face, + Plane: 0, + }) +} + +func (r *aabbRebuilder) pushInterior(minB, maxB Vec3, axis int) { + *r.out = append(*r.out, AabbEntry{ + BoundMin: minB, + BoundMax: maxB, + LeafFace: -1, + Plane: uint32(axis), + }) +} + +func boundsForFaces(mesh *MeshData, faces []int32) (Vec3, Vec3, error) { + minB, maxB, err := faceBounds(mesh, faces[0]) + if err != nil { + return Vec3{}, Vec3{}, err + } + for _, fi := range faces[1:] { + fmin, fmax, err := faceBounds(mesh, fi) + if err != nil { + return Vec3{}, Vec3{}, err + } + minB = vecMin(minB, fmin) + maxB = vecMax(maxB, fmax) + } + return minB, maxB, nil +} + +func faceBounds(mesh *MeshData, fi int32) (Vec3, Vec3, error) { + f := mesh.Faces[fi] + nv := int32(len(mesh.Verts)) + for _, vi := range f.Verts { + if vi < 0 || vi >= nv { + return Vec3{}, Vec3{}, fmt.Errorf("mdl: face %d references invalid vertex index %d", fi, vi) + } + } + v0 := mesh.Verts[f.Verts[0]] + v1 := mesh.Verts[f.Verts[1]] + v2 := mesh.Verts[f.Verts[2]] + return vecMin(vecMin(v0, v1), v2), vecMax(vecMax(v0, v1), v2), nil +} + + + +func faceCentroid(mesh *MeshData, fi int32) Vec3 { + f := mesh.Faces[fi] + nv := int32(len(mesh.Verts)) + for _, vi := range f.Verts { + if vi < 0 || vi >= nv { + return Vec3{} + } + } + p0 := mesh.Verts[f.Verts[0]] + p1 := mesh.Verts[f.Verts[1]] + p2 := mesh.Verts[f.Verts[2]] + return Vec3{ + X: (p0.X + p1.X + p2.X) / 3, + Y: (p0.Y + p1.Y + p2.Y) / 3, + Z: (p0.Z + p1.Z + p2.Z) / 3, + } +} + +func centroidAverage(mesh *MeshData, faces []int32) Vec3 { + var sum Vec3 + for _, fi := range faces { + c := faceCentroid(mesh, fi) + sum.X += c.X + sum.Y += c.Y + sum.Z += c.Z + } + n := float32(len(faces)) + return Vec3{X: sum.X / n, Y: sum.Y / n, Z: sum.Z / n} +} + +func axisExtent(minB, maxB Vec3, axis int) float32 { + switch axis { + case 0: + return maxB.X - minB.X + case 1: + return maxB.Y - minB.Y + default: + return maxB.Z - minB.Z + } +} + + +// axesByExtent returns {0,1,2} sorted by bounding-box extent on that axis, descending. +func axesByExtent(minB, maxB Vec3) []int { + axes := []int{0, 1, 2} + sort.Slice(axes, func(i, j int) bool { + ei := axisExtent(minB, maxB, axes[i]) + ej := axisExtent(minB, maxB, axes[j]) + if ei != ej { + return ei > ej + } + return axes[i] < axes[j] + }) + return axes +} + +func partitionFaces(mesh *MeshData, faces []int32, minB, maxB Vec3) (left, right []int32, axis int, err error) { + avg := centroidAverage(mesh, faces) + for _, ax := range axesByExtent(minB, maxB) { + avgC := avg.Index(ax) + left, right = splitByAxis(mesh, faces, ax, avgC) + if len(left) > 0 && len(right) > 0 { + return left, right, ax, nil + } + } + return nil, nil, 0, ErrDegenerateAABBTree +} + +// RemapAABBMaterial swaps face Material IDs on all AABB (walkmesh) nodes. +// from and to are the material IDs to remap. +func RemapAABBMaterial(model *Model, from, to int) []string { + var out []string + for _, n := range model.Nodes { + if n == nil || n.Aabb == nil || n.Mesh == nil { + continue + } + count := 0 + fromID := int32(from) + toID := int32(to) + for i := range n.Mesh.Faces { + if n.Mesh.Faces[i].Material == fromID { + n.Mesh.Faces[i].Material = toID + count++ + } + } + if count > 0 { + out = append(out, fmt.Sprintf("node %q: remapped %d walkmesh faces from material %d to %d", n.Name, count, from, to)) + } + } + return out +} + +func splitByAxis(mesh *MeshData, faces []int32, axis int, avgCoord float32) (left, right []int32) { + for _, fi := range faces { + c := faceCentroid(mesh, fi).Index(axis) + if c < avgCoord { + left = append(left, fi) + } else { + right = append(right, fi) + } + } + return left, right +} diff --git a/pkg/mdl/repair_water.go b/pkg/mdl/repair_water.go new file mode 100644 index 0000000..84d4a77 --- /dev/null +++ b/pkg/mdl/repair_water.go @@ -0,0 +1,356 @@ +package mdl + +import ( + "fmt" + "hash/fnv" + "math/rand" + "strings" +) + +// ConvertWateryToTrimesh reclassifies every watery animmesh node back to a +// plain trimesh by dropping its AnimMeshData (animverts, animtverts, +// sampleperiod, clip rects). Static water. +// +// Mirrors the dynamic_water=no branch of make_checks.pl wavy_water (line +// 1183). +func ConvertWateryToTrimesh(model *Model, waterKey string) []string { + var msgs []string + for _, n := range model.Nodes { + if n == nil || n.AnimMesh == nil { + continue + } + if !IsWateryNode(n, waterKey) { + continue + } + n.AnimMesh = nil + msgs = append(msgs, fmt.Sprintf("animmesh %q reclassified to trimesh (dynamic-water=no)", n.Name)) + } + stripWateryAnimNodes(model, waterKey) + return msgs +} + +// stripWateryAnimNodes drops AnimMesh per-animation data on watery nodes that +// have just been reclassified to trimesh, so the writer doesn't emit dangling +// animation streams. +func stripWateryAnimNodes(model *Model, waterKey string) { + wateryNames := make(map[string]bool) + for _, n := range model.Nodes { + if n == nil || n.Mesh == nil { + continue + } + if IsWateryBitmap(n.Mesh.Bitmap, waterKey) { + wateryNames[lowerName(n.Name)] = true + } + } + if len(wateryNames) == 0 { + return + } + for ai := range model.Animations { + for ni := range model.Animations[ai].Nodes { + an := &model.Animations[ai].Nodes[ni] + if wateryNames[lowerName(an.Name)] && an.AnimMesh != nil { + an.AnimMesh = nil + } + } + } +} + +// WavyWaterOptions controls --dynamic-water wavy generation. +type WavyWaterOptions struct { + WaterKey string // optional substring key for is_watery match + WaveHeight float64 // 0 disables wave amplitude (water becomes flat anim mesh) + TileWaterZ float32 // Z-plane to raise water vertices to (default 0) + EdgePitch float32 // tessellator edge max (default 2.0) + AnimLength float32 // default-animation length when none exists (default 10.0) + TransTime float32 // default-animation transtime (default 0.25) +} + +// withDefaults returns o with zero-fields filled in from the legacy CM3 +// defaults (line 1229: pitch 2m, line 1245: 10s/0.25s, line 5575: WaveHeight +// in /105.0 units). +func (o WavyWaterOptions) withDefaults() WavyWaterOptions { + if o.EdgePitch == 0 { + o.EdgePitch = 2.0 + } + if o.AnimLength == 0 { + o.AnimLength = 10.0 + } + if o.TransTime == 0 { + o.TransTime = 0.25 + } + return o +} + +// ApplyWavyWater turns each watery node on a TILE-classified model into an +// animated wavy water plane. The work is split into per-phase helpers below; +// see each helper's doc for the legacy Prolog reference. +// +// Mirrors the dynamic_water=wavy branches of wavy_water in make_checks.pl +// (lines 1195-1310). Returns one message per node touched. +// +// The RNG used for the per-tile wave amplitudes is seeded from the model +// name plus the node name so two runs over the same input produce +// byte-identical output. +func ApplyWavyWater(model *Model, opts WavyWaterOptions) []string { + if model == nil { + return nil + } + if !strings.EqualFold(model.Classification, "TILE") { + return nil + } + opts = opts.withDefaults() + + idx := nodeIndex(model) + var msgs []string + for _, n := range model.Nodes { + if !IsWateryNode(n, opts.WaterKey) { + continue + } + if msg, ok := wavifyWaterNode(model, idx, n, opts); ok { + msgs = append(msgs, msg) + } + } + return msgs +} + +// wavifyWaterNode applies the full wavy-water pipeline to a single node and +// returns a human-readable summary. Returns ("", false) when the node has +// nothing to wavify (no mesh, or empty after welding). +func wavifyWaterNode(model *Model, idx map[string]*Node, n *Node, opts WavyWaterOptions) (string, bool) { + if n.Mesh == nil { + return "", false + } + + raisedFromTrimesh := ensureWaterAnimMesh(n) + if !nodeAtOrigin(n) || !isModelChild(model, n) { + bakeNodeTransformIntoMesh(model, idx, n) + } + flattenWaterPlane(n, opts.TileWaterZ) + WeldVertices(n, WeldOptions{Eps: 0, DropUnused: true}) + TessellateMesh(n, opts.EdgePitch) + + nv := len(n.Mesh.Verts) + if nv == 0 { + // Welded to nothing; skip animation generation rather than divide by zero. + return "", false + } + + amps := wavyAmplitudes(model.Name, n.Name, opts.WaveHeight) + animverts := buildWavyAnimVerts(n.Mesh.Verts, amps) + animtverts := buildWavyAnimTVerts(n.Mesh.TVerts) + + anim := ensureAnimation(model, "default", opts.AnimLength, opts.TransTime) + attachWavyAnimMesh(n, anim, animverts, animtverts, opts.AnimLength) + + verb := "animmesh" + if raisedFromTrimesh { + verb = "trimesh reclassified to animmesh" + } + return fmt.Sprintf( + "%s %q tessellated to %.1fm pitch with %d wavy keyframes", + verb, n.Name, opts.EdgePitch, len(animverts)/nv, + ), true +} + +// ensureWaterAnimMesh promotes a static trimesh to animmesh by attaching an +// empty AnimMeshData. Returns true if a new AnimMesh was created (so the +// caller can report the trimesh→animmesh reclassification in its message). +func ensureWaterAnimMesh(n *Node) bool { + if n.AnimMesh != nil { + return false + } + n.AnimMesh = &AnimMeshData{} + return true +} + +// flattenWaterPlane snaps every vertex Z to tileWaterZ so the wave displacement +// builds on a flat reference plane. Mirrors raise_to_tile in line 1212. +func flattenWaterPlane(n *Node, tileWaterZ float32) { + if n == nil || n.Mesh == nil { + return + } + for i := range n.Mesh.Verts { + n.Mesh.Verts[i].Z = tileWaterZ + } +} + +// wavyAmps holds the five tile-random amplitude scalars used by perturbWave. +type wavyAmps struct { + R0, R1, R2, R3, R4 float64 +} + +// wavyAmplitudes draws five seeded random amplitudes for the wave model. +// Mirrors the per-tile RNG calls in line 1262-1268. +func wavyAmplitudes(modelName, nodeName string, waveHeight float64) wavyAmps { + rng := rand.New(rand.NewSource(wavySeed(modelName, nodeName))) + return wavyAmps{ + R0: wavyAmplitude(rng) * waveHeight / 105.0, + R1: wavyAmplitude(rng) / 21.0, + R2: wavyAmplitude(rng) / 21.0, + R3: wavyAmplitude(rng) / 21.0, + R4: wavyAmplitude(rng) / 21.0, + } +} + +// buildWavyAnimVerts emits 6 keyframes per source vertex: rest, four perturbed +// states, then rest again. The 6-frame layout mirrors the legacy stream so +// SamplePeriod = AnimLength/5 yields a smooth loop. +func buildWavyAnimVerts(verts []Vec3, amps wavyAmps) []Vec3 { + out := make([]Vec3, 0, 6*len(verts)) + for _, v := range verts { + z1, z2, z3, z4 := perturbWave(amps.R0, amps.R1, amps.R2, amps.R3, amps.R4, + float64(v.X), float64(v.Y), float64(v.Z)) + out = append(out, + v, + Vec3{X: v.X, Y: v.Y, Z: float32(z1)}, + Vec3{X: v.X, Y: v.Y, Z: float32(z2)}, + Vec3{X: v.X, Y: v.Y, Z: float32(z3)}, + Vec3{X: v.X, Y: v.Y, Z: float32(z4)}, + v, + ) + } + return out +} + +// buildWavyAnimTVerts repeats each TVert 6 times to match the animvert frame +// count. UVs don't animate for wavy water; the duplication keeps the writer +// happy. Returns nil for meshes with no TVerts. +func buildWavyAnimTVerts(tverts []Vec3) []Vec3 { + if len(tverts) == 0 { + return nil + } + out := make([]Vec3, 0, 6*len(tverts)) + for _, t := range tverts { + for k := 0; k < 6; k++ { + out = append(out, t) + } + } + return out +} + +// attachWavyAnimMesh wires the generated streams into the node's AnimMesh and +// the model-level Animation, deriving SamplePeriod from animLength so the +// 5-step interpolation aligns with the loop length. +func attachWavyAnimMesh(n *Node, anim *Animation, animverts, animtverts []Vec3, animLength float32) { + am := n.AnimMesh + am.SamplePeriod = animLength / 5.0 + am.ClipU = 0 + am.ClipV = 0 + am.ClipW = 1 + am.ClipH = 1 + am.AnimVerts = animverts + am.AnimTVerts = animtverts + setAnimNodeMesh(anim, n.Name, n.Parent, am) +} + +func nodeAtOrigin(n *Node) bool { + return n.Position.X == 0 && n.Position.Y == 0 && n.Position.Z == 0 && + n.Orientation.W == 0 +} + +func isModelChild(model *Model, n *Node) bool { + return strings.EqualFold(n.Parent, model.Name) || strings.EqualFold(n.Parent, "NULL") +} + +// bakeNodeTransformIntoMesh rewrites the node's mesh vertices and normals +// into world space (relative to the model root), then zeroes the node's local +// position and orientation and reparents it directly under the model root. +// Mirrors raise_to_tile + set_zero_orientation + set_zero_position for +// animmesh nodes in line 1212-1214. +// +// Normals are rotated by the orientation chain only (no translation, no +// scale); without this the per-vertex lighting on the baked mesh would point +// in the wrong direction once the node's own orientation is zeroed out. +func bakeNodeTransformIntoMesh(model *Model, idx map[string]*Node, n *Node) { + if n == nil || n.Mesh == nil { + return + } + for i, v := range n.Mesh.Verts { + n.Mesh.Verts[i] = LocalToWorld(idx, n, v) + } + for i, nv := range n.Mesh.Normals { + n.Mesh.Normals[i] = LocalNormalToWorld(idx, n, nv) + } + n.Position = Vec3{} + n.Orientation = Vec4{} + if model != nil && model.Name != "" { + n.Parent = model.Name + } +} + +// perturbWave returns four perturbed Z values for input vertex (X, Y, Z), +// driven by the per-tile random amplitudes (r0..r4). Direct port of +// make_checks.pl perturb/12 (line 5575). +func perturbWave(r0, r1, r2, r3, r4, x, y, z float64) (z1, z2, z3, z4 float64) { + f0 := r0 * 2 * (5 - x) * (5 + x) * (5 - y) * (5 + y) / 625 + f1 := 0.2 * r1 * f0 * (x + 1.25) * (y + 1.25) + f2 := 0.2 * r2 * f0 * (x - 1.25) * (y + 1.25) + f3 := 0.2 * r3 * f0 * (x + 1.25) * (y - 1.25) + f4 := 0.2 * r4 * f0 * (x - 1.25) * (y - 1.25) + z1 = z + 0.66*f0 - 0.71*f1 + 0.66*f2 + 0.50*f3 + 0.16*f4 + z2 = z + 0.14*f0 + 0.05*f1 + 0.37*f2 - 0.70*f3 + 0.61*f4 + z3 = z - 0.22*f0 + 0.52*f1 - 0.60*f2 - 0.30*f3 - 0.16*f4 + z4 = z - 0.58*f0 + 0.14*f1 - 0.43*f2 + 0.50*f3 - 0.61*f4 + return +} + +// wavyAmplitude returns 3 + sum-of-three-d6, mirroring the legacy random +// expression `(3 + random(6) + random(6) + random(6))` (line 1263). The +// random source is an injected seeded RNG so output is deterministic. +func wavyAmplitude(r *rand.Rand) float64 { + return float64(3 + r.Intn(6) + r.Intn(6) + r.Intn(6)) +} + +// wavySeed derives a stable RNG seed from the model + node names so two runs +// produce identical wavy-water output. +func wavySeed(modelName, nodeName string) int64 { + h := fnv.New64a() + h.Write([]byte(strings.ToLower(modelName))) + h.Write([]byte{'/'}) + h.Write([]byte(strings.ToLower(nodeName))) + return int64(h.Sum64()) +} + +// ensureAnimation returns a *Animation matching the given name on the model, +// creating one with the supplied length / transtime / animroot=ModelName if +// none exists. Mirrors the "create default anim" branch (line 1242-1247). +func ensureAnimation(model *Model, name string, length, transTime float32) *Animation { + for i := range model.Animations { + if strings.EqualFold(model.Animations[i].Name, name) { + a := &model.Animations[i] + if a.Length <= 0 { + a.Length = length + } + if a.TransTime == 0 { + a.TransTime = transTime + } + if a.Root == "" { + a.Root = model.Name + } + return a + } + } + model.Animations = append(model.Animations, Animation{ + Name: name, + Length: length, + TransTime: transTime, + Root: model.Name, + }) + return &model.Animations[len(model.Animations)-1] +} + +// setAnimNodeMesh attaches the given AnimMeshData to the named node within +// the animation, creating an AnimNode for that node if missing. +func setAnimNodeMesh(anim *Animation, name, parent string, am *AnimMeshData) { + for i := range anim.Nodes { + if strings.EqualFold(anim.Nodes[i].Name, name) { + anim.Nodes[i].AnimMesh = am + return + } + } + anim.Nodes = append(anim.Nodes, AnimNode{ + Name: name, + Parent: parent, + AnimMesh: am, + }) +} diff --git a/pkg/mdl/repair_water_test.go b/pkg/mdl/repair_water_test.go new file mode 100644 index 0000000..0b0dbac --- /dev/null +++ b/pkg/mdl/repair_water_test.go @@ -0,0 +1,100 @@ +package mdl + +import "testing" + +func tileWaterModel(bitmap string) (*Model, *Node) { + mesh := NewMeshData() + mesh.Verts = []Vec3{{-5, -5, 0}, {5, -5, 0}, {5, 5, 0}, {-5, 5, 0}} + mesh.TVerts = []Vec3{{0, 0, 0}, {1, 0, 0}, {1, 1, 0}, {0, 1, 0}} + mesh.Faces = []Face{ + {Verts: [3]int32{0, 1, 2}, UVs: [3]int32{0, 1, 2}}, + {Verts: [3]int32{0, 2, 3}, UVs: [3]int32{0, 2, 3}}, + } + mesh.Bitmap = bitmap + n := &Node{Name: "WaterPlane", Parent: "tile", Mesh: mesh, AnimMesh: &AnimMeshData{}} + root := &Node{Name: "tile", Parent: "NULL"} + return &Model{Name: "tile", Classification: "TILE", Nodes: []*Node{root, n}}, n +} + +func TestConvertWateryToTrimesh(t *testing.T) { + model, n := tileWaterModel("tdt01_water01") + if n.AnimMesh == nil { + t.Fatalf("setup: AnimMesh should be set") + } + msgs := ConvertWateryToTrimesh(model, "") + if len(msgs) != 1 { + t.Fatalf("expected 1 reclassification message, got %d", len(msgs)) + } + if n.AnimMesh != nil { + t.Error("AnimMesh should be cleared after reclassification") + } +} + +func TestConvertWateryToTrimesh_KeyOnly(t *testing.T) { + model, n := tileWaterModel("foo_water_b") + if msgs := ConvertWateryToTrimesh(model, "water"); len(msgs) != 1 { + t.Fatalf("expected key-based match to reclassify, got %d msgs", len(msgs)) + } + if n.AnimMesh != nil { + t.Error("AnimMesh should be cleared") + } +} + +func TestApplyWavyWater_TessellatesAndAnimates(t *testing.T) { + model, n := tileWaterModel("tdt01_water01") + originalVerts := len(n.Mesh.Verts) + + msgs := ApplyWavyWater(model, WavyWaterOptions{WaveHeight: 1.0}) + if len(msgs) != 1 { + t.Fatalf("expected 1 message, got %d", len(msgs)) + } + if len(n.Mesh.Verts) <= originalVerts { + t.Errorf("expected tessellation to add verts; before=%d after=%d", originalVerts, len(n.Mesh.Verts)) + } + + if n.AnimMesh == nil { + t.Fatal("expected AnimMesh to be populated") + } + want := 6 * len(n.Mesh.Verts) + if got := len(n.AnimMesh.AnimVerts); got != want { + t.Errorf("expected %d animverts (6 frames x %d verts), got %d", want, len(n.Mesh.Verts), got) + } + + if len(model.Animations) == 0 { + t.Fatal("expected default animation to be created") + } + if want, got := "default", model.Animations[0].Name; got != want { + t.Errorf("animation name = %q, want %q", got, want) + } +} + +func TestApplyWavyWater_Deterministic(t *testing.T) { + m1, n1 := tileWaterModel("tdt01_water01") + m2, n2 := tileWaterModel("tdt01_water01") + ApplyWavyWater(m1, WavyWaterOptions{WaveHeight: 1.0}) + ApplyWavyWater(m2, WavyWaterOptions{WaveHeight: 1.0}) + + if len(n1.AnimMesh.AnimVerts) != len(n2.AnimMesh.AnimVerts) { + t.Fatalf("animvert lengths differ: %d vs %d", len(n1.AnimMesh.AnimVerts), len(n2.AnimMesh.AnimVerts)) + } + for i := range n1.AnimMesh.AnimVerts { + if n1.AnimMesh.AnimVerts[i] != n2.AnimMesh.AnimVerts[i] { + t.Fatalf("animvert %d diverges: %v vs %v", i, n1.AnimMesh.AnimVerts[i], n2.AnimMesh.AnimVerts[i]) + } + } +} + +func TestApplyWavyWater_NonTileNoop(t *testing.T) { + model, _ := tileWaterModel("tdt01_water01") + model.Classification = "CHARACTER" + if msgs := ApplyWavyWater(model, WavyWaterOptions{WaveHeight: 1.0}); len(msgs) != 0 { + t.Errorf("expected no-op on non-TILE classification, got %d msgs", len(msgs)) + } +} + +func TestPerturbWave_FlatWhenAmplitudeZero(t *testing.T) { + z1, z2, z3, z4 := perturbWave(0, 0, 0, 0, 0, 1, 1, 0) + if z1 != 0 || z2 != 0 || z3 != 0 || z4 != 0 { + t.Errorf("perturbWave with zero amplitudes should leave Z untouched, got %v %v %v %v", z1, z2, z3, z4) + } +} diff --git a/pkg/mdl/roundtrip_test.go b/pkg/mdl/roundtrip_test.go new file mode 100644 index 0000000..5920d51 --- /dev/null +++ b/pkg/mdl/roundtrip_test.go @@ -0,0 +1,203 @@ +package mdl + +import ( + "bytes" + "os" + "path/filepath" + "strings" + "testing" +) + +// TestRoundtripFixtures decompiles binary EE fixtures, writes to ASCII, +// parses the ASCII back, and verifies structural equality. +func TestRoundtripFixtures(t *testing.T) { + fixtures := findFixtures(t) + if len(fixtures) == 0 { + t.Skip("no test fixtures available") + } + + for _, path := range fixtures { + t.Run(filepath.Base(path), func(t *testing.T) { + // Decompile binary + model, err := DecompileFile(path) + if err != nil { + t.Fatalf("decompile: %v", err) + } + + // Write to ASCII + var buf bytes.Buffer + if err := Write(model, &buf); err != nil { + t.Fatalf("write: %v", err) + } + + // Parse ASCII back + result, err := Parse(strings.NewReader(buf.String())) + if err != nil { + t.Fatalf("parse: %v", err) + } + + reparsed := result.Model + + // Compare structural equality + if model.Name != reparsed.Name { + t.Errorf("name: got %q, want %q", reparsed.Name, model.Name) + } + if model.Classification != reparsed.Classification { + t.Errorf("classification: got %q, want %q", reparsed.Classification, model.Classification) + } + if model.SuperModel != reparsed.SuperModel { + t.Errorf("supermodel: got %q, want %q", reparsed.SuperModel, model.SuperModel) + } + + if len(reparsed.Nodes) != len(model.Nodes) { + t.Errorf("node count: got %d, want %d", len(reparsed.Nodes), len(model.Nodes)) + return + } + + for i, origNode := range model.Nodes { + rNode := reparsed.Nodes[i] + if origNode.Name != rNode.Name { + t.Errorf("node[%d] name: got %q, want %q", i, rNode.Name, origNode.Name) + } + if origNode.NodeType() != rNode.NodeType() { + t.Errorf("node[%d] type: got %q, want %q", i, rNode.NodeType(), origNode.NodeType()) + } + + // Verify mesh data roundtrip + if origNode.Mesh != nil && rNode.Mesh != nil { + if len(origNode.Mesh.Verts) != len(rNode.Mesh.Verts) { + t.Errorf("node[%d] %s verts: got %d, want %d", i, origNode.Name, len(rNode.Mesh.Verts), len(origNode.Mesh.Verts)) + } + if len(origNode.Mesh.Faces) != len(rNode.Mesh.Faces) { + t.Errorf("node[%d] %s faces: got %d, want %d", i, origNode.Name, len(rNode.Mesh.Faces), len(origNode.Mesh.Faces)) + } + } + } + + if len(reparsed.Animations) != len(model.Animations) { + t.Errorf("animation count: got %d, want %d", len(reparsed.Animations), len(model.Animations)) + } + }) + } +} + +func TestASCIIRoundtripFixtures(t *testing.T) { + fixtureDir := filepath.Join("..", "..", "tests", "fixtures", "ascii") + entries, err := os.ReadDir(fixtureDir) + if err != nil { + t.Skip("no ASCII fixtures:", err) + } + for _, e := range entries { + if e.IsDir() || !strings.HasSuffix(strings.ToLower(e.Name()), ".mdl") { + continue + } + path := filepath.Join(fixtureDir, e.Name()) + t.Run(e.Name(), func(t *testing.T) { + f, err := os.Open(path) + if err != nil { + t.Fatal(err) + } + defer f.Close() + + result, err := Parse(f) + if err != nil { + t.Fatalf("parse: %v", err) + } + model := result.Model + if model.Name == "" { + t.Fatal("empty model name") + } + + var buf bytes.Buffer + if err := Write(model, &buf); err != nil { + t.Fatalf("write: %v", err) + } + + result2, err := Parse(strings.NewReader(buf.String())) + if err != nil { + t.Fatalf("reparse: %v", err) + } + m2 := result2.Model + + if m2.Name != model.Name { + t.Errorf("name: got %q, want %q", m2.Name, model.Name) + } + if len(m2.Nodes) != len(model.Nodes) { + t.Errorf("node count: got %d, want %d", len(m2.Nodes), len(model.Nodes)) + } + if len(m2.Animations) != len(model.Animations) { + t.Errorf("anim count: got %d, want %d", len(m2.Animations), len(model.Animations)) + } + for i, n := range model.Nodes { + if i >= len(m2.Nodes) { + break + } + if n.NodeType() != m2.Nodes[i].NodeType() { + t.Errorf("node[%d] type: got %q, want %q", i, m2.Nodes[i].NodeType(), n.NodeType()) + } + } + }) + } +} + +func TestWriteAndParse(t *testing.T) { + model := &Model{ + Name: "test", + SuperModel: "NULL", + Classification: "CHARACTER", + AnimationScale: 1.0, + Nodes: []*Node{ + { + Name: "test", + Parent: "NULL", + Scale: 1.0, + Orientation: Vec4{W: 1.0}, + }, + { + Name: "mesh01", + Parent: "test", + Scale: 1.0, + Orientation: Vec4{W: 1.0}, + Mesh: &MeshData{ + Render: 1, + Alpha: 1.0, + Diffuse: Vec3{X: 0.8, Y: 0.8, Z: 0.8}, + Ambient: Vec3{X: 0.2, Y: 0.2, Z: 0.2}, + Bitmap: "test_texture", + Verts: []Vec3{ + {X: 0, Y: 0, Z: 0}, + {X: 1, Y: 0, Z: 0}, + {X: 0, Y: 1, Z: 0}, + }, + Faces: []Face{ + {Verts: [3]int32{0, 1, 2}, SmoothGroup: 1, UVs: [3]int32{0, 1, 2}}, + }, + }, + }, + }, + } + + var buf bytes.Buffer + if err := Write(model, &buf); err != nil { + t.Fatal(err) + } + + result, err := Parse(strings.NewReader(buf.String())) + if err != nil { + t.Fatal(err) + } + + reparsed := result.Model + if reparsed.Name != "test" { + t.Errorf("name = %q, want test", reparsed.Name) + } + if len(reparsed.Nodes) != 2 { + t.Fatalf("nodes = %d, want 2", len(reparsed.Nodes)) + } + if reparsed.Nodes[1].Mesh == nil { + t.Fatal("reparsed mesh is nil") + } + if len(reparsed.Nodes[1].Mesh.Verts) != 3 { + t.Errorf("verts = %d, want 3", len(reparsed.Nodes[1].Mesh.Verts)) + } +} diff --git a/pkg/mdl/tessellate.go b/pkg/mdl/tessellate.go new file mode 100644 index 0000000..95e1180 --- /dev/null +++ b/pkg/mdl/tessellate.go @@ -0,0 +1,174 @@ +package mdl + +// TessellateMesh subdivides every triangle in the mesh whose longest edge +// exceeds maxEdge until no edge is longer than maxEdge. Each subdivision +// inserts a midpoint vertex on the longest edge of one triangle and splits +// the two triangles sharing that edge into four. +// +// Mirrors make_checks.pl tesselate_mesh/5 (line 6152). Returns the number of +// edge-bisections performed. +// +// The mesh's TVerts (channel 0) are co-bisected. Per-vertex normals, colors, +// tangents, dangly constraints, and skin weights are interpolated linearly +// for any midpoint vertex created. Other UV channels (TVerts1/2/3) are not +// updated; callers using them on water meshes will need to extend this. +func TessellateMesh(n *Node, maxEdge float32) int { + if n == nil || n.Mesh == nil || maxEdge <= 0 { + return 0 + } + mesh := n.Mesh + + attrs := vertexAttrsOf(n) + hasTVerts := len(mesh.TVerts) > 0 + + maxSq := float64(maxEdge) * float64(maxEdge) + count := 0 + const safety = 1 << 16 + for iter := 0; iter < safety; iter++ { + fi, edge := findLongestEdge(mesh, maxSq) + if fi < 0 { + break + } + bisectEdge(n, fi, edge, attrs, hasTVerts) + count++ + } + return count +} + +// tvUVInRange is a bounds check used by bisectEdge / midUVFor to avoid +// panicking when a face references a UV index that isn't backed by a TVerts +// entry (e.g. legacy meshes that lost a TVerts channel during repair). +func tvUVInRange(mesh *MeshData, idx int32) bool { + return idx >= 0 && int(idx) < len(mesh.TVerts) +} + +func edgeLenSq(mesh *MeshData, a, b int32) float64 { + if a < 0 || b < 0 || int(a) >= len(mesh.Verts) || int(b) >= len(mesh.Verts) { + return 0 + } + dx := float64(mesh.Verts[a].X - mesh.Verts[b].X) + dy := float64(mesh.Verts[a].Y - mesh.Verts[b].Y) + dz := float64(mesh.Verts[a].Z - mesh.Verts[b].Z) + return dx*dx + dy*dy + dz*dz +} + +// findLongestEdge returns the (face index, corner) of the longest edge among +// all triangles whose length-squared exceeds maxSq. Returns (-1, -1) when no +// such edge exists. +func findLongestEdge(mesh *MeshData, maxSq float64) (int, int) { + bestFace, bestEdge := -1, -1 + bestLen := maxSq + for fi, f := range mesh.Faces { + for ei := 0; ei < 3; ei++ { + a, b := f.Verts[ei], f.Verts[(ei+1)%3] + l := edgeLenSq(mesh, a, b) + if l > bestLen { + bestLen = l + bestFace = fi + bestEdge = ei + } + } + } + return bestFace, bestEdge +} + +// bisectEdge inserts a midpoint vertex on the (face, edge) of fi/ei and +// splits every triangle containing that undirected edge into two triangles +// that share the midpoint. +func bisectEdge(n *Node, fi, ei int, attrs vertexAttrPresence, hasTVerts bool) { + mesh := n.Mesh + f := mesh.Faces[fi] + a, b := f.Verts[ei], f.Verts[(ei+1)%3] + + mid := int32(len(mesh.Verts)) + mesh.Verts = append(mesh.Verts, vecLerp3(mesh.Verts[a], mesh.Verts[b], 0.5)) + if attrs.Normals { + mesh.Normals = append(mesh.Normals, vecNormalize(vecLerp3(mesh.Normals[a], mesh.Normals[b], 0.5))) + } + if attrs.Colors { + mesh.Colors = append(mesh.Colors, vecLerp3(mesh.Colors[a], mesh.Colors[b], 0.5)) + } + if attrs.Tangents { + mesh.Tangents = append(mesh.Tangents, vecLerp4(mesh.Tangents[a], mesh.Tangents[b], 0.5)) + } + if attrs.Skin { + n.Skin.Weights = append(n.Skin.Weights, lerpVertexWeight(n.Skin.Weights[a], n.Skin.Weights[b], 0.5)) + } + if attrs.Dangly { + n.Dangly.Constraints = append(n.Dangly.Constraints, (n.Dangly.Constraints[a]+n.Dangly.Constraints[b])/2) + } + + tvA, tvB := f.UVs[ei], f.UVs[(ei+1)%3] + var tvMid int32 = -1 + if hasTVerts && tvUVInRange(mesh, tvA) && tvUVInRange(mesh, tvB) { + tvMid = int32(len(mesh.TVerts)) + mesh.TVerts = append(mesh.TVerts, vecLerp3(mesh.TVerts[tvA], mesh.TVerts[tvB], 0.5)) + } + + var newFaces []Face + keep := mesh.Faces[:0] + for _, face := range mesh.Faces { + split := -1 + for k := 0; k < 3; k++ { + va, vb := face.Verts[k], face.Verts[(k+1)%3] + if (va == a && vb == b) || (va == b && vb == a) { + split = k + break + } + } + if split == -1 { + keep = append(keep, face) + continue + } + k := split + v0, v1, v2 := face.Verts[k], face.Verts[(k+1)%3], face.Verts[(k+2)%3] + var u0, u1, u2 int32 = face.UVs[k], face.UVs[(k+1)%3], face.UVs[(k+2)%3] + + var midUV0, midUV1 int32 = -1, -1 + if hasTVerts && tvMid >= 0 { + if v0 == a { + midUV0 = midUVFor(mesh, u0, u1, tvA, tvB, tvMid) + } else { + midUV0 = midUVFor(mesh, u1, u0, tvA, tvB, tvMid) + } + midUV1 = midUV0 + } + + f1 := Face{ + Verts: [3]int32{v0, mid, v2}, + UVs: [3]int32{u0, midUV0, u2}, + SmoothGroup: face.SmoothGroup, + Material: face.Material, + Normal: face.Normal, + PlaneD: face.PlaneD, + } + f2 := Face{ + Verts: [3]int32{mid, v1, v2}, + UVs: [3]int32{midUV1, u1, u2}, + SmoothGroup: face.SmoothGroup, + Material: face.Material, + Normal: face.Normal, + PlaneD: face.PlaneD, + } + newFaces = append(newFaces, f1, f2) + } + mesh.Faces = append(keep, newFaces...) +} + +// midUVFor returns the UV index for the midpoint of the original edge. +// (uOrigA, uOrigB) is the UV pair on the bisected face for vertex pair +// (origA, origB) such that origA == a (the source-of-truth orientation that +// generated tvMid). For the opposite face the midpoint UV is interpolated +// fresh because the two faces may use different UVs at the shared edge. +func midUVFor(mesh *MeshData, uA, uB, tvA, tvB, tvMid int32) int32 { + if uA == tvA && uB == tvB { + return tvMid + } + if !tvUVInRange(mesh, uA) || !tvUVInRange(mesh, uB) { + return tvMid + } + out := int32(len(mesh.TVerts)) + mesh.TVerts = append(mesh.TVerts, vecLerp3(mesh.TVerts[uA], mesh.TVerts[uB], 0.5)) + return out +} + diff --git a/pkg/mdl/tessellate_test.go b/pkg/mdl/tessellate_test.go new file mode 100644 index 0000000..ac0d85b --- /dev/null +++ b/pkg/mdl/tessellate_test.go @@ -0,0 +1,65 @@ +package mdl + +import ( + "math" + "testing" +) + +func TestTessellateMesh_NoLongEdge(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{{0, 0, 0}, {1, 0, 0}, {0, 1, 0}} + mesh.TVerts = []Vec3{{0, 0, 0}, {1, 0, 0}, {0, 1, 0}} + mesh.Faces = []Face{{Verts: [3]int32{0, 1, 2}, UVs: [3]int32{0, 1, 2}}} + n := trimeshNode("m", "NULL", mesh) + + count := TessellateMesh(n, 2.0) + if count != 0 { + t.Fatalf("expected 0 bisections on 1m triangle, got %d", count) + } +} + +func TestTessellateMesh_SinglePass(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{{0, 0, 0}, {5, 0, 0}, {0, 4, 0}} + mesh.TVerts = []Vec3{{0, 0, 0}, {1, 0, 0}, {0, 1, 0}} + mesh.Faces = []Face{{Verts: [3]int32{0, 1, 2}, UVs: [3]int32{0, 1, 2}}} + n := trimeshNode("m", "NULL", mesh) + + count := TessellateMesh(n, 2.0) + if count == 0 { + t.Fatal("expected at least one bisection on 5m edge") + } + for _, f := range mesh.Faces { + for k := 0; k < 3; k++ { + a := mesh.Verts[f.Verts[k]] + b := mesh.Verts[f.Verts[(k+1)%3]] + d := math.Hypot(math.Hypot(float64(a.X-b.X), float64(a.Y-b.Y)), float64(a.Z-b.Z)) + if d > 2.0+1e-4 { + t.Errorf("edge length %.3f exceeds pitch 2.0", d) + } + } + } +} + +func TestTessellateMesh_TileQuad(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{{-5, -5, 0}, {5, -5, 0}, {5, 5, 0}, {-5, 5, 0}} + mesh.TVerts = []Vec3{{0, 0, 0}, {1, 0, 0}, {1, 1, 0}, {0, 1, 0}} + mesh.Faces = []Face{ + {Verts: [3]int32{0, 1, 2}, UVs: [3]int32{0, 1, 2}}, + {Verts: [3]int32{0, 2, 3}, UVs: [3]int32{0, 2, 3}}, + } + n := trimeshNode("m", "NULL", mesh) + + TessellateMesh(n, 2.0) + for fi, f := range mesh.Faces { + for k := 0; k < 3; k++ { + a := mesh.Verts[f.Verts[k]] + b := mesh.Verts[f.Verts[(k+1)%3]] + d := math.Hypot(math.Hypot(float64(a.X-b.X), float64(a.Y-b.Y)), float64(a.Z-b.Z)) + if d > 2.0+1e-4 { + t.Errorf("face %d: edge length %.3f exceeds 2m pitch", fi, d) + } + } + } +} diff --git a/pkg/mdl/transforms.go b/pkg/mdl/transforms.go new file mode 100644 index 0000000..7b84cd2 --- /dev/null +++ b/pkg/mdl/transforms.go @@ -0,0 +1,205 @@ +package mdl + +import ( + "math" + "strings" +) + +// RotateVectorAxisAngle applies an axis-angle rotation to v using Rodrigues' +// formula. Mirrors fix_pivots.pl f_rotate_vector/3 (line 415). +// +// The axis (X, Y, Z) does not need to be unit-length; it is normalised +// internally. When the angle is zero or the axis degenerates to (0, 0, 0), +// the input vector is returned unchanged. +func RotateVectorAxisAngle(v Vec3, axis Vec4) Vec3 { + angle := float64(axis.W) + if angle == 0 { + return v + } + ax, ay, az := float64(axis.X), float64(axis.Y), float64(axis.Z) + r := math.Sqrt(ax*ax + ay*ay + az*az) + if r == 0 { + return v + } + x, y, z := ax/r, ay/r, az/r + c := math.Cos(angle) + s := math.Sin(angle) + t := 1.0 - c + ux, uy, uz := float64(v.X), float64(v.Y), float64(v.Z) + return Vec3{ + X: float32((t*x*x+c)*ux + (t*x*y-z*s)*uy + (t*x*z+y*s)*uz), + Y: float32((t*x*y+z*s)*ux + (t*y*y+c)*uy + (t*y*z-x*s)*uz), + Z: float32((t*x*z-y*s)*ux + (t*y*z+x*s)*uy + (t*z*z+c)*uz), + } +} + +func nodeIndex(model *Model) map[string]*Node { + if model == nil { + return nil + } + return nodeIndexFromSlice(model.Nodes) +} + +// nodeIndexFromSlice builds the same lowercase-name → *Node map as +// nodeIndex but accepts a raw slice so test helpers and other callers that +// already hold the slice don't need to wrap it in a *Model. +func nodeIndexFromSlice(nodes []*Node) map[string]*Node { + idx := make(map[string]*Node, len(nodes)) + for _, n := range nodes { + if n != nil && n.Name != "" { + idx[lowerName(n.Name)] = n + } + } + return idx +} + +func lowerName(s string) string { + b := make([]byte, len(s)) + for i := 0; i < len(s); i++ { + c := s[i] + if c >= 'A' && c <= 'Z' { + c += 'a' - 'A' + } + b[i] = c + } + return string(b) +} + +// parentChain walks from n up through Parent links until it reaches the model +// root (Parent="" or "NULL") or a cycle is detected. Returns the chain in +// innermost-first order (n is chain[0]). +// +// Cycle detection uses a visited set keyed on *Node pointer identity, so a +// chain like A→B→A breaks cleanly instead of looping forever. +func parentChain(idx map[string]*Node, n *Node) []*Node { + chain := make([]*Node, 0, 4) + visited := make(map[*Node]bool) + cur := n + for cur != nil { + if visited[cur] { + break + } + visited[cur] = true + chain = append(chain, cur) + if cur.Parent == "" || strings.EqualFold(cur.Parent, "NULL") { + break + } + next := idx[lowerName(cur.Parent)] + if next == nil { + break + } + cur = next + } + return chain +} + +// applyNodeTransform translates v from this node's local frame into its +// parent's frame, applying Scale, Orientation, and Position in that order. +// +// Mirrors localToParent in repair_tilefade.go and t_abs_verts/4 in tilefade.pl +// (line 46). +func applyNodeTransform(n *Node, v Vec3) Vec3 { + s := n.Scale + if s == 0 { + s = 1 + } + sv := Vec3{X: v.X * s, Y: v.Y * s, Z: v.Z * s} + rv := RotateVectorAxisAngle(sv, n.Orientation) + return Vec3{X: rv.X + n.Position.X, Y: rv.Y + n.Position.Y, Z: rv.Z + n.Position.Z} +} + +// inverseNodeTransform maps a point from this node's parent space back into +// this node's local frame: subtracts Position, rotates by -Orientation, then +// divides by Scale. +// +// Mirrors parentToLocal in repair_tilefade.go. +func inverseNodeTransform(n *Node, p Vec3) Vec3 { + t := Vec3{X: p.X - n.Position.X, Y: p.Y - n.Position.Y, Z: p.Z - n.Position.Z} + rv := RotateVectorAxisAngle(t, Vec4{X: n.Orientation.X, Y: n.Orientation.Y, Z: n.Orientation.Z, W: -n.Orientation.W}) + s := n.Scale + if s == 0 { + s = 1 + } + return Vec3{X: rv.X / s, Y: rv.Y / s, Z: rv.Z / s} +} + +// LocalToWorld composes the chain of orientation + position + scale transforms +// from n up to the model root, returning the world-space coordinate of a point +// expressed in n's local frame. +// +// Mirrors the absolute-vertex unwinding done by tilefade.pl t_abs_verts/4 +// (line 46) and make_checks.pl vertex_to_local/6 (line 5724) inverted. +func LocalToWorld(idx map[string]*Node, n *Node, local Vec3) Vec3 { + chain := parentChain(idx, n) + cur := local + for _, nd := range chain { + cur = applyNodeTransform(nd, cur) + } + return cur +} + +// WorldToLocal returns the world-space point expressed in n's local frame, +// i.e. the inverse of LocalToWorld. Mirrors vertex_to_local/6 in +// make_checks.pl line 5724. +func WorldToLocal(idx map[string]*Node, n *Node, world Vec3) Vec3 { + chain := parentChain(idx, n) + v := world + for i := len(chain) - 1; i >= 0; i-- { + v = inverseNodeTransform(chain[i], v) + } + return v +} + +// LocalNormalToWorld rotates a normal from n's local frame into world space +// using only the orientation chain (no translation, no scale). Caller is +// responsible for re-normalising if downstream consumers require it; the +// helper does normalise on its way out so common cases are correct. +func LocalNormalToWorld(idx map[string]*Node, n *Node, normal Vec3) Vec3 { + chain := parentChain(idx, n) + cur := normal + for _, nd := range chain { + cur = RotateVectorAxisAngle(cur, nd.Orientation) + } + return vecNormalize(cur) +} + +// WorldNormalToLocal is the inverse of LocalNormalToWorld: rotates a +// world-space normal back into n's local frame using the orientation chain +// only. Result is normalised. +func WorldNormalToLocal(idx map[string]*Node, n *Node, normal Vec3) Vec3 { + chain := parentChain(idx, n) + cur := normal + for i := len(chain) - 1; i >= 0; i-- { + nd := chain[i] + cur = RotateVectorAxisAngle(cur, Vec4{X: nd.Orientation.X, Y: nd.Orientation.Y, Z: nd.Orientation.Z, W: -nd.Orientation.W}) + } + return vecNormalize(cur) +} + +// WorldVertices returns the world-space coordinate of each vertex in n's mesh. +// Returns nil if n has no mesh. Builds nodeIndex internally; for hot loops +// over many nodes prefer WorldVerticesCached with a precomputed idx. +func WorldVertices(model *Model, n *Node) []Vec3 { + if n == nil || n.Mesh == nil { + return nil + } + return WorldVerticesCached(nodeIndex(model), n) +} + +// WorldVerticesCached is WorldVertices with a caller-supplied node index, so +// loops over many mesh nodes don't rebuild the same lookup table per call. +func WorldVerticesCached(idx map[string]*Node, n *Node) []Vec3 { + if n == nil || n.Mesh == nil { + return nil + } + chain := parentChain(idx, n) + out := make([]Vec3, len(n.Mesh.Verts)) + for i, v := range n.Mesh.Verts { + cur := v + for _, nd := range chain { + cur = applyNodeTransform(nd, cur) + } + out[i] = cur + } + return out +} diff --git a/pkg/mdl/transforms_test.go b/pkg/mdl/transforms_test.go new file mode 100644 index 0000000..9bcb790 --- /dev/null +++ b/pkg/mdl/transforms_test.go @@ -0,0 +1,75 @@ +package mdl + +import ( + "math" + "testing" +) + +const transformEps = 1e-5 + +func vec3Approx(t *testing.T, got, want Vec3) { + t.Helper() + dx := math.Abs(float64(got.X - want.X)) + dy := math.Abs(float64(got.Y - want.Y)) + dz := math.Abs(float64(got.Z - want.Z)) + if dx > transformEps || dy > transformEps || dz > transformEps { + t.Fatalf("vec3 mismatch: got %+v want %+v", got, want) + } +} + +func TestRotateVectorAxisAngle_Identity(t *testing.T) { + v := Vec3{1, 2, 3} + got := RotateVectorAxisAngle(v, Vec4{0, 0, 1, 0}) + vec3Approx(t, got, v) +} + +func TestRotateVectorAxisAngle_ZeroAxis(t *testing.T) { + v := Vec3{1, 2, 3} + got := RotateVectorAxisAngle(v, Vec4{0, 0, 0, 1.5}) + vec3Approx(t, got, v) +} + +func TestRotateVectorAxisAngle_HalfTurn(t *testing.T) { + v := Vec3{1, 0, 0} + got := RotateVectorAxisAngle(v, Vec4{0, 0, 1, math.Pi}) + vec3Approx(t, got, Vec3{-1, 0, 0}) +} + +func TestRotateVectorAxisAngle_QuarterTurn(t *testing.T) { + got := RotateVectorAxisAngle(Vec3{1, 0, 0}, Vec4{0, 0, 1, math.Pi / 2}) + vec3Approx(t, got, Vec3{0, 1, 0}) +} + +func TestLocalToWorld_NestedTranslation(t *testing.T) { + root := &Node{Name: "root", Parent: "NULL", Position: Vec3{X: 10}} + child := &Node{Name: "child", Parent: "root", Position: Vec3{Y: 5}} + model := &Model{Name: "root", Nodes: []*Node{root, child}} + idx := nodeIndex(model) + + w := LocalToWorld(idx, child, Vec3{Z: 1}) + vec3Approx(t, w, Vec3{X: 10, Y: 5, Z: 1}) +} + +func TestLocalToWorld_RotationThenTranslation(t *testing.T) { + root := &Node{Name: "root", Parent: "NULL"} + child := &Node{Name: "child", Parent: "root", Position: Vec3{X: 1}, Orientation: Vec4{Z: 1, W: math.Pi / 2}} + model := &Model{Name: "root", Nodes: []*Node{root, child}} + idx := nodeIndex(model) + + w := LocalToWorld(idx, child, Vec3{X: 1}) + vec3Approx(t, w, Vec3{X: 1, Y: 1}) +} + +func TestWorldToLocal_RoundTrip(t *testing.T) { + root := &Node{Name: "root", Parent: "NULL", Position: Vec3{X: 3, Y: 4}} + child := &Node{Name: "child", Parent: "root", Position: Vec3{X: 1, Z: 2}, Orientation: Vec4{Z: 1, W: math.Pi / 3}} + model := &Model{Name: "root", Nodes: []*Node{root, child}} + idx := nodeIndex(model) + + cases := []Vec3{{1, 2, 3}, {-2, 0.5, -1}, {0, 0, 0}} + for _, v := range cases { + w := LocalToWorld(idx, child, v) + back := WorldToLocal(idx, child, w) + vec3Approx(t, back, v) + } +} diff --git a/pkg/mdl/types.go b/pkg/mdl/types.go new file mode 100644 index 0000000..dcc7014 --- /dev/null +++ b/pkg/mdl/types.go @@ -0,0 +1,630 @@ +// Package mdl provides types and operations for Neverwinter Nights MDL model files. +// +// The data model is designed from the binary MDL spec outward. Node capabilities +// use composition: a base Node struct holds optional capability struct pointers +// (nil = absent), mirroring the binary content_node bitfield. +// +// Key references: +// - Binary format: xoreos-docs/templates/NWN1MDL.bt +// - EE extensions: plenarius/cleanmodels/load_binary.pl +// - ASCII parameters: plenarius/cleanmodels/load_models.pl paramtype/3 (lines 648-898) +// - ASCII output: plenarius/cleanmodels/output_models.pl +package mdl + +import ( + "encoding/json" + "fmt" + "strings" +) + +const TileAnimMinLength float32 = 0.03333333 + +// Vec3 is a 3-component float vector used for positions, colors, normals. +type Vec3 struct { + X, Y, Z float32 +} + +func (v Vec3) Index(axis int) float32 { + switch axis { + case 0: return v.X + case 1: return v.Y + default: return v.Z + } +} + +func (v *Vec3) SetIndex(axis int, val float32) { + switch axis { + case 0: v.X = val + case 1: v.Y = val + default: v.Z = val + } +} + +// Vec4 is a 4-component float vector used for orientations and tangents. +type Vec4 struct { + X, Y, Z, W float32 +} + +// Face represents a single triangle in a mesh. +// Ref: NWN1MDL.bt mesh_face (line ~405) +type Face struct { + Verts [3]int32 + SmoothGroup int32 + UVs [3]int32 + Material int32 + Normal Vec3 + PlaneD float32 +} + +// VertexWeight holds bone weight data for a single vertex in a skinmesh. +// Each vertex can reference up to 4 bones. +// Ref: nwn.wiki "Model Table of Parameters" -- weights +type VertexWeight struct { + Bones []string + Weights []float32 +} + +// MeshData holds geometry and material properties for mesh-capable nodes. +// Present on: trimesh, animmesh, danglymesh, skin, aabb. +// Ref: NWN1MDL.bt header_mesh (line 370) +// EE extensions: load_binary.pl get_common_mesh_data (line 467) +// NewMeshData returns a MeshData with sensible defaults (Render=1, Alpha=1.0). +func NewMeshData() *MeshData { + return &MeshData{Render: 1, Alpha: 1.0} +} + +type MeshData struct { + Verts []Vec3 + Faces []Face + Normals []Vec3 + CornerNormals [][3]Vec3 // per-face-corner normals from smoothing groups (compiler-generated) + Tangents []Vec4 + Colors []Vec3 + TVerts []Vec3 + TVerts1 []Vec3 + TVerts2 []Vec3 + TVerts3 []Vec3 + + TexIndices0 [][3]int32 + TexIndices1 [][3]int32 + TexIndices2 [][3]int32 + TexIndices3 [][3]int32 + + Diffuse Vec3 + Ambient Vec3 + Specular Vec3 + Shininess float32 + Bitmap string + Texture1 string + Texture2 string + MaterialName string // EE: occupies original texture3[64] slot + RenderHint string // EE: 0=none, 2=NormalAndSpecMapped + Shadow int32 + Beaming int32 + Render int32 + TransparencyHint int32 + Alpha float32 + SelfIllumColor Vec3 + TileFade int32 + RotateTexture int32 + LightMapped int32 // EE: offset after RotateTexture + + Multimaterial []string +} + +// SkinData holds bone weight data for skinmesh nodes. +// Ref: NWN1MDL.bt header_skin (line 501) +type SkinData struct { + Weights []VertexWeight +} + +// DanglyData holds danglymesh physics properties. +// Ref: NWN1MDL.bt header_dangly (line 586) +type DanglyData struct { + Displacement float32 + Tightness float32 + Period float32 + DisplType int32 + Constraints []float32 +} + +// EmitterData holds particle emitter properties (~60 params). +// Ref: NWN1MDL.bt header_emitter (line 321) +// Ref: nwn.wiki "MDL ASCII Emitter Nodes" +// Ref: load_binary.pl get_node_specific_data(5) (line 378) +type EmitterData struct { + DeadSpace float32 + BlastRadius float32 + BlastLength float32 + XGrid int32 + YGrid int32 + SpawnType int32 + Update string + Render string + Blend string + Texture string + ChunkName string + TwoSidedTex int32 + Loop int32 + RenderOrder int32 + + // Flags from EmitterFlags bitfield (load_binary.pl line 396) + P2P int32 + P2PSel int32 + AffectedByWind int32 + IsTinted int32 // m_isTinted in Prolog + Bounce int32 + Random int32 + Inherit int32 + InheritVel int32 + InheritLocal int32 + Splat int32 + InheritPart int32 + + // NWMax-only properties (not exported by NWMax but accepted on import) + P2PType string + RenderSel int32 + BlendSel int32 + UpdateSel int32 + SpawnTypeSel int32 + Opacity int32 + IconSize int32 + LockAxes int32 + Chunky int32 + + // Controller-animatable values + AlphaStart float32 + AlphaMid float32 + AlphaEnd float32 + ColorStart Vec3 + ColorMid Vec3 + ColorEnd Vec3 + SizeStart float32 + SizeMid float32 + SizeEnd float32 + SizeStartY float32 + SizeMidY float32 + SizeEndY float32 + BirthRate float32 + LifeExp float32 + Mass float32 + Spread float32 + ParticleRot float32 + Velocity float32 + RandVel float32 + BounceCo float32 + BlurLength float32 + FPS float32 + FrameStart float32 + FrameEnd float32 + Grav float32 + Drag float32 + Threshold float32 + CombineTime float32 + PercentStart float32 + PercentMid float32 + PercentEnd float32 + LightningDelay float32 + LightningRadius float32 + LightningScale float32 + LightningSubDiv float32 + P2PBezier2 float32 + P2PBezier3 float32 + XSize float32 + YSize float32 +} + +// LightData holds light node properties. +// Ref: NWN1MDL.bt header_light (line 259) +// Ref: load_binary.pl get_node_specific_data(3) (line 343) +type LightData struct { + FlareRadius float32 + LensFlares int32 + FlareSizes []float32 + FlarePositions []float32 + FlareColorShifts []Vec3 + TextureNames []string + LightPriority int32 + AmbientOnly int32 + NDynamicType int32 + AffectDynamic int32 + Shadow int32 + GenerateFlare int32 + FadingLight int32 + NegativeLight int32 // NWMax only, not compiled + + // Controller values + Color Vec3 + Radius float32 + Multiplier float32 + ShadowRadius float32 + VerticalDisplacement float32 + +} + +// ReferenceData holds model reference properties. +// Ref: NWN1MDL.bt header_reference (line 343) +// Ref: load_binary.pl get_node_specific_data(17) (line 409) +type ReferenceData struct { + RefModel string + Reattachable int32 +} + +// AabbEntry represents one node in the AABB binary tree. +// Ref: NWN1MDL.bt entry_aabb (line 605) +type AabbEntry struct { + BoundMin Vec3 + BoundMax Vec3 + LeafFace int32 + Plane uint32 +} + +// AabbData holds walkmesh AABB tree data for aabb nodes. +type AabbData struct { + Entries []AabbEntry +} + +// AnimMeshData holds animmesh-specific properties. +// Ref: NWN1MDL.bt header_anim (line 561) +// Ref: load_models.pl paramtype(animmesh,...) (line 696) +type AnimMeshData struct { + SamplePeriod float32 + ClipU float32 + ClipV float32 + ClipW float32 + ClipH float32 + AnimVerts []Vec3 + AnimTVerts []Vec3 +} + +// Node represents a single node in the model hierarchy. +// Capability struct pointers are nil when absent, mirroring the +// binary content_node bitfield (NWN1MDL.bt line 202). +// Ref: load_binary.pl node_type/2 (line 325) +type Node struct { + Name string + Parent string + PartNumber int32 + Position Vec3 + Orientation Vec4 + Scale float32 + InheritColor int32 + WireColor Vec3 + + Mesh *MeshData + Skin *SkinData + Dangly *DanglyData + Emitter *EmitterData + Light *LightData + Reference *ReferenceData + Aabb *AabbData + AnimMesh *AnimMeshData + Camera bool +} + +// NodeType returns the MDL ASCII node type keyword for this node. +// Mirrors load_binary.pl node_type/2 (line 325). +func (n *Node) NodeType() string { + switch { + case n.Aabb != nil: + return "aabb" + case n.Dangly != nil: + return "danglymesh" + case n.Skin != nil: + return "skin" + case n.AnimMesh != nil: + return "animmesh" + case n.Emitter != nil: + return "emitter" + case n.Light != nil: + return "light" + case n.Reference != nil: + return "reference" + case n.Camera: + return "camera" + case n.Mesh != nil: + return "trimesh" + default: + return "dummy" + } +} + +// IsShadowCaster returns true if this node is a mesh type that casts shadows. +func (n *Node) IsShadowCaster() bool { + if n.Mesh == nil || n.Mesh.Shadow != 1 { + return false + } + switch n.NodeType() { + case "trimesh", "skin", "danglymesh", "animmesh": + return true + } + return false +} + +// NodeTypeFlag returns the binary node type flag. +// Ref: load_binary.pl node_type/2 (line 325) +func (n *Node) NodeTypeFlag() uint32 { + switch { + case n.Aabb != nil: + return 545 + case n.Dangly != nil: + return 289 + case n.AnimMesh != nil: + return 161 + case n.Skin != nil: + return 97 + case n.Mesh != nil: + return 33 + case n.Reference != nil: + return 17 + case n.Camera: + return 9 + case n.Emitter != nil: + return 5 + case n.Light != nil: + return 3 + default: + return 1 + } +} + +// PositionKey is a time-keyed position controller value. +type PositionKey struct { + Time float32 + Value Vec3 +} + +// OrientationKey is a time-keyed orientation controller value. +type OrientationKey struct { + Time float32 + Value Vec4 +} + +// FloatKey is a time-keyed float controller value (alpha, radius, etc.) +type FloatKey struct { + Time float32 + Value float32 +} + +// ColorKey is a time-keyed color controller value. +type ColorKey struct { + Time float32 + Value Vec3 +} + +// AnimNode represents a node's animation data within a newanim block. +// Each field holds time-keyed controller data for animatable properties. +// Ref: load_binary.pl controller_type/3 (lines 1196-1257) +type AnimNode struct { + Name string + Parent string + + // Base node controllers + PositionKeys []PositionKey + OrientationKeys []OrientationKey + ScaleKeys []FloatKey + + // Mesh controllers + AlphaKeys []FloatKey + SelfIllumColorKeys []ColorKey + + // Light controllers + ColorKeys []ColorKey + RadiusKeys []FloatKey + MultiplierKeys []FloatKey + ShadowRadiusKeys []FloatKey + VerticalDisplacementKeys []FloatKey + + // Emitter controllers + AlphaStartKeys []FloatKey + AlphaMidKeys []FloatKey + AlphaEndKeys []FloatKey + BirthRateKeys []FloatKey + BlurLengthKeys []FloatKey + BounceCoKeys []FloatKey + ColorStartKeys []ColorKey + ColorMidKeys []ColorKey + ColorEndKeys []ColorKey + CombineTimeKeys []FloatKey + DragKeys []FloatKey + FPSKeys []FloatKey + FrameStartKeys []FloatKey + FrameEndKeys []FloatKey + GravKeys []FloatKey + LifeExpKeys []FloatKey + LightningDelayKeys []FloatKey + LightningRadiusKeys []FloatKey + LightningScaleKeys []FloatKey + LightningSubDivKeys []FloatKey + MassKeys []FloatKey + P2PBezier2Keys []FloatKey + P2PBezier3Keys []FloatKey + ParticleRotKeys []FloatKey + PercentStartKeys []FloatKey + PercentMidKeys []FloatKey + PercentEndKeys []FloatKey + RandVelKeys []FloatKey + SizeStartKeys []FloatKey + SizeMidKeys []FloatKey + SizeEndKeys []FloatKey + SizeStartYKeys []FloatKey + SizeMidYKeys []FloatKey + SizeEndYKeys []FloatKey + SpreadKeys []FloatKey + ThresholdKeys []FloatKey + VelocityKeys []FloatKey + XSizeKeys []FloatKey + YSizeKeys []FloatKey + DetonateKeys []FloatKey + + // AnimMesh data (populated for animmesh animation nodes from binary or ASCII) + AnimMesh *AnimMeshData + Mesh *MeshData +} + +// AnimEvent is a timed event within an animation. +type AnimEvent struct { + Time float32 + Name string +} + +// Animation represents a single named animation on a model. +// Ref: load_binary.pl get_animation_header (line 144) +type Animation struct { + Name string + Length float32 + TransTime float32 + Root string + Events []AnimEvent + Nodes []AnimNode +} + +// Model represents a complete parsed MDL model. +// Ref: load_binary.pl get_model_header (line 113) +type Model struct { + Name string + SuperModel string + Classification string + AnimationScale float32 + IgnoreFog int32 + FileDependancy string + FileType string // "binary" or "ascii" + UseTexture0 bool // emit "texture0" instead of "bitmap" in ASCII output + + Nodes []*Node + Animations []Animation + Warnings []DecompileWarning +} + +// FindNode returns the first node with the given name, or nil. +func (m *Model) FindNode(name string) *Node { + for _, n := range m.Nodes { + if strings.EqualFold(n.Name, name) { + return n + } + } + return nil +} + +// RootNode returns the first node whose parent is "NULL", or nil. +func (m *Model) RootNode() *Node { + for _, n := range m.Nodes { + if strings.EqualFold(n.Parent, "NULL") { + return n + } + } + return nil +} + +// Severity represents the severity level of a check result. +type Severity int + +const ( + SevInfo Severity = iota + SevWarning + SevError + SevFatal +) + +var severityNames = [...]string{ + SevInfo: "info", + SevWarning: "warning", + SevError: "error", + SevFatal: "fatal", +} + +func (s Severity) String() string { + if int(s) < len(severityNames) { + return severityNames[s] + } + return fmt.Sprintf("severity(%d)", s) +} + +func (s Severity) MarshalJSON() ([]byte, error) { + return json.Marshal(s.String()) +} + +func (s *Severity) UnmarshalJSON(data []byte) error { + var str string + if err := json.Unmarshal(data, &str); err != nil { + var num int + if numErr := json.Unmarshal(data, &num); numErr != nil { + return err + } + *s = Severity(num) + return nil + } + for i, name := range severityNames { + if name == str { + *s = Severity(i) + return nil + } + } + return fmt.Errorf("unknown severity: %q", str) +} + +// CheckResult represents a single issue found by a check. +type CheckResult struct { + Check string `json:"check"` + Node string `json:"node,omitempty"` + Severity Severity `json:"severity"` + Message string `json:"message"` + Fixed bool `json:"fixed"` +} + +// DecompileWarnKind categorizes decompilation warnings. +type DecompileWarnKind int + +const ( + WarnUnknownController DecompileWarnKind = 0 + WarnPointerOutOfBounds DecompileWarnKind = 2 + WarnGeneral DecompileWarnKind = 4 + WarnTruncatedData DecompileWarnKind = 6 +) + +// DecompileWarning represents an issue found during binary decompilation. +// Accumulated on the Model, never causing an abort. +type DecompileWarning struct { + Kind DecompileWarnKind `json:"kind"` + Offset int64 `json:"offset"` + Node string `json:"node,omitempty"` + Message string `json:"message"` +} + +// CheckFunc is the signature for all model checks. +// Each check examines a model and returns zero or more results. +// When fix is true, the check may mutate the model to repair issues. +type CheckFunc func(model *Model, file string, fix bool) []CheckResult + +// ClassificationFromCode converts a binary classification code to its string name. +// Ref: load_binary.pl classification_code/2 (line 176) +func ClassificationFromCode(code int) string { + switch code { + case 1: + return "EFFECT" + case 2: + return "TILE" + case 4: + return "CHARACTER" + case 8: + return "DOOR" + default: + return "OTHER" + } +} + +// ClassificationToCode converts a classification string to its binary code. +func ClassificationToCode(class string) int { + switch class { + case "EFFECT": + return 1 + case "TILE": + return 2 + case "CHARACTER": + return 4 + case "DOOR": + return 8 + default: + return 0 + } +} diff --git a/pkg/mdl/vec.go b/pkg/mdl/vec.go new file mode 100644 index 0000000..cc8d3b9 --- /dev/null +++ b/pkg/mdl/vec.go @@ -0,0 +1,135 @@ +package mdl + +import "math" + +func vecDot(a, b Vec3) float32 { + return a.X*b.X + a.Y*b.Y + a.Z*b.Z +} + +func vecCross(a, b Vec3) Vec3 { + return Vec3{ + X: a.Y*b.Z - a.Z*b.Y, + Y: a.Z*b.X - a.X*b.Z, + Z: a.X*b.Y - a.Y*b.X, + } +} + +func vecLen(v Vec3) float32 { + return float32(math.Sqrt(float64(v.X*v.X + v.Y*v.Y + v.Z*v.Z))) +} + +// vecNormalize returns the unit-length vector, or the zero vector if the +// input length is below eps. Callers that need a non-zero fallback should +// check the result themselves. +func vecNormalize(v Vec3) Vec3 { + l := vecLen(v) + if l < 1e-8 { + return Vec3{} + } + return Vec3{X: v.X / l, Y: v.Y / l, Z: v.Z / l} +} + +func vecScale(v Vec3, s float32) Vec3 { + return Vec3{X: v.X * s, Y: v.Y * s, Z: v.Z * s} +} + +func vecSub(a, b Vec3) Vec3 { + return Vec3{X: a.X - b.X, Y: a.Y - b.Y, Z: a.Z - b.Z} +} + +func vecMin(a, b Vec3) Vec3 { + return Vec3{ + X: minF(a.X, b.X), + Y: minF(a.Y, b.Y), + Z: minF(a.Z, b.Z), + } +} + +func vecMax(a, b Vec3) Vec3 { + return Vec3{ + X: maxF(a.X, b.X), + Y: maxF(a.Y, b.Y), + Z: maxF(a.Z, b.Z), + } +} + +func vecLerp3(a, b Vec3, t float32) Vec3 { + return Vec3{ + X: a.X + (b.X-a.X)*t, + Y: a.Y + (b.Y-a.Y)*t, + Z: a.Z + (b.Z-a.Z)*t, + } +} + +func vecLerp4(a, b Vec4, t float32) Vec4 { + return Vec4{ + X: a.X + (b.X-a.X)*t, + Y: a.Y + (b.Y-a.Y)*t, + Z: a.Z + (b.Z-a.Z)*t, + W: a.W + (b.W-a.W)*t, + } +} + +func minF(a, b float32) float32 { + if a < b { + return a + } + return b +} + +func maxF(a, b float32) float32 { + if a > b { + return a + } + return b +} + +func axisAngleToQuat(aa Vec4) Vec4 { + angle := float64(aa.W) + s := math.Sin(angle / 2) + c := math.Cos(angle / 2) + return Vec4{ + X: float32(float64(aa.X) * s), + Y: float32(float64(aa.Y) * s), + Z: float32(float64(aa.Z) * s), + W: float32(c), + } +} + +func absF32(x float32) float32 { + if x < 0 { + return -x + } + return x +} + +// CloneVertexWeight creates a deep copy of a VertexWeight. +func CloneVertexWeight(w VertexWeight) VertexWeight { + return VertexWeight{ + Bones: append([]string(nil), w.Bones...), + Weights: append([]float32(nil), w.Weights...), + } +} + +// EdgeKey represents a canonical undirected edge between two vertices. +type EdgeKey struct{ V0, V1 int32 } + +// MakeEdgeKey creates a canonical edge key with the smaller index first. +func MakeEdgeKey(a, b int32) EdgeKey { + if a > b { + a, b = b, a + } + return EdgeKey{a, b} +} + +// BuildEdgeFaceMap builds a map from each edge to the list of face indices containing it. +func BuildEdgeFaceMap(faces []Face) map[EdgeKey][]int { + m := make(map[EdgeKey][]int) + for fi, f := range faces { + for ei := 0; ei < 3; ei++ { + e := MakeEdgeKey(f.Verts[ei], f.Verts[(ei+1)%3]) + m[e] = append(m[e], fi) + } + } + return m +} diff --git a/pkg/mdl/water_detect.go b/pkg/mdl/water_detect.go new file mode 100644 index 0000000..10cea8f --- /dev/null +++ b/pkg/mdl/water_detect.go @@ -0,0 +1,63 @@ +package mdl + +import "strings" + +// shinyWaterReplacements maps known stock NWN water bitmaps to their "shiny" +// replacements. Mirrors make_checks.pl shiny_water_replacement/2 (line 5370). +// The map is also used purely as a membership predicate by IsWatery: any key +// in this table is a watery bitmap regardless of any user-supplied key. +var shinyWaterReplacements = map[string]string{ + "tbw01_water01": "ttf01_water01", + "tdt01_water01": "tcn01_water01", + "tni01_water02": "tin01_water02", + "tni02_water01": "tcn01_water01", + "tno01_water01": "tin01_water02", + "tno01_wtsea01": "tin01_water02", + "twc03_wtsea01": "tin01_water02", + "tdm02_water01": "tcn01_water01", +} + +// ShinyWaterReplacement returns the shiny-water replacement bitmap name for +// the given bitmap, and true if a replacement exists. Lookup is +// case-insensitive on the input but the returned name is in canonical +// (lower-case) form. +func ShinyWaterReplacement(bitmap string) (string, bool) { + v, ok := shinyWaterReplacements[strings.ToLower(strings.TrimSpace(bitmap))] + return v, ok +} + +// IsWateryBitmap reports whether the given bitmap name is "watery". A bitmap +// is watery when either: +// +// - it appears in the shiny-water replacement table, or +// - the user has provided a key (a space-separated list of substrings) and +// the bitmap (case-insensitively) contains one of those substrings. +// +// Mirrors make_checks.pl is_watery/1 (line 5397). +func IsWateryBitmap(bitmap, waterKey string) bool { + if bitmap == "" { + return false + } + lb := strings.ToLower(strings.TrimSpace(bitmap)) + if _, ok := shinyWaterReplacements[lb]; ok { + return true + } + if waterKey == "" { + return false + } + for _, k := range strings.Fields(strings.ToLower(waterKey)) { + if k != "" && strings.Contains(lb, k) { + return true + } + } + return false +} + +// IsWateryNode reports whether a node is "watery": it must be a mesh-bearing +// node whose bitmap matches IsWateryBitmap. +func IsWateryNode(n *Node, waterKey string) bool { + if n == nil || n.Mesh == nil { + return false + } + return IsWateryBitmap(n.Mesh.Bitmap, waterKey) +} diff --git a/pkg/mdl/water_detect_test.go b/pkg/mdl/water_detect_test.go new file mode 100644 index 0000000..4ac9734 --- /dev/null +++ b/pkg/mdl/water_detect_test.go @@ -0,0 +1,43 @@ +package mdl + +import "testing" + +func TestIsWateryBitmap_TableMembership(t *testing.T) { + if !IsWateryBitmap("tbw01_water01", "") { + t.Error("expected tbw01_water01 to be watery via shiny-water table") + } + if !IsWateryBitmap("TDT01_WATER01", "") { + t.Error("expected case-insensitive match") + } + if IsWateryBitmap("foo_grass", "") { + t.Error("foo_grass should not be watery without a key") + } +} + +func TestIsWateryBitmap_KeyMatch(t *testing.T) { + if !IsWateryBitmap("foo_water_3", "water") { + t.Error("expected key=water to match foo_water_3") + } + if !IsWateryBitmap("foo_lava_b", "lava sea") { + t.Error("expected multi-token key to match") + } + if IsWateryBitmap("foo_grass", "water") { + t.Error("foo_grass shouldn't match key=water") + } +} + +func TestShinyWaterReplacement(t *testing.T) { + r, ok := ShinyWaterReplacement("tdt01_water01") + if !ok || r != "tcn01_water01" { + t.Fatalf("expected tdt01_water01 -> tcn01_water01, got %q (ok=%v)", r, ok) + } + if _, ok := ShinyWaterReplacement("nope"); ok { + t.Error("expected ShinyWaterReplacement to return ok=false for unknown bitmap") + } +} + +// IsWateryBitmap takes a single key but tests pass multi via spaces; this +// helper proves Fields() splitting. +func init() { + _ = IsWateryBitmap // keep symbol used +} diff --git a/pkg/mdl/weld.go b/pkg/mdl/weld.go new file mode 100644 index 0000000..bc7a669 --- /dev/null +++ b/pkg/mdl/weld.go @@ -0,0 +1,141 @@ +package mdl + +import "math" + +// WeldOptions controls vertex-welding behaviour. +type WeldOptions struct { + // Eps is the absolute tolerance used to consider two coordinates equal. + // 0 means bit-exact comparison (matches the legacy term_hash hash bucket + // in make_checks.pl hash_verts/4). + Eps float32 + + // DropUnused removes vertices that participate in no faces. + DropUnused bool + + // PreserveOpposite skips merging two vertices when their averaged face + // normals point in nearly opposite directions (dot < -0.9). Mirrors the + // safety check on weld_vertices/7. When false, all coincident vertices + // are merged regardless of normal divergence. + PreserveOpposite bool +} + +// WeldVertices coalesces coincident vertices in a mesh, updating face vertex +// indices, per-vertex normals, colors, tangents, dangly constraints, and skin +// weights. Returns the number of vertices removed. +// +// For each pair of vertices (V1, V2) with V2 < V1 whose positions are within +// Eps on all axes, V1 is collapsed into V2. If DropUnused is set, vertices +// that no face references after the merge pass are also removed. +// +// Face UV indices and the TVerts arrays are not modified by this function; +// callers that need to weld UVs should run a separate UV-welding pass. +func WeldVertices(n *Node, opts WeldOptions) int { + if n == nil || n.Mesh == nil || len(n.Mesh.Verts) == 0 { + return 0 + } + mesh := n.Mesh + + attrs := vertexAttrsOf(n) + + canon := make([]int32, len(mesh.Verts)) + for i := range canon { + canon[i] = int32(i) + } + + var faceNormals []Vec3 + if opts.PreserveOpposite { + faceNormals = make([]Vec3, len(mesh.Verts)) + count := make([]int, len(mesh.Verts)) + for _, f := range mesh.Faces { + a, b, c := f.Verts[0], f.Verts[1], f.Verts[2] + if !(int(a) < len(mesh.Verts) && int(b) < len(mesh.Verts) && int(c) < len(mesh.Verts)) { + continue + } + va, vb, vc := mesh.Verts[a], mesh.Verts[b], mesh.Verts[c] + nrm := vecNormalize(vecCross(vecSub(vb, va), vecSub(vc, va))) + for _, vi := range []int32{a, b, c} { + faceNormals[vi].X += nrm.X + faceNormals[vi].Y += nrm.Y + faceNormals[vi].Z += nrm.Z + count[vi]++ + } + } + for i := range faceNormals { + if count[i] > 0 { + faceNormals[i] = vecNormalize(faceNormals[i]) + } + } + } + + for i := 1; i < len(mesh.Verts); i++ { + for j := 0; j < i; j++ { + if canon[j] != int32(j) { + continue + } + if !approxEq(mesh.Verts[i], mesh.Verts[j], opts.Eps) { + continue + } + if opts.PreserveOpposite { + if vecDot(faceNormals[i], faceNormals[j]) < -0.9 { + continue + } + } + canon[i] = int32(j) + break + } + } + + for fi := range mesh.Faces { + f := &mesh.Faces[fi] + for vi := 0; vi < 3; vi++ { + old := f.Verts[vi] + if int(old) >= 0 && int(old) < len(canon) { + f.Verts[vi] = canon[old] + } + } + } + + used := make([]bool, len(mesh.Verts)) + for _, f := range mesh.Faces { + if f.Verts[0] == f.Verts[1] || f.Verts[1] == f.Verts[2] || f.Verts[0] == f.Verts[2] { + continue + } + for _, v := range f.Verts { + if int(v) >= 0 && int(v) < len(used) { + used[v] = true + } + } + } + + keep := make([]bool, len(mesh.Verts)) + for i := range mesh.Verts { + if canon[i] != int32(i) { + continue + } + if !opts.DropUnused { + keep[i] = true + continue + } + keep[i] = used[i] + } + + remap := remapForKept(keep) + if remap == nil { + return 0 + } + + originalCount := len(mesh.Verts) + compactVertexAttrs(n, attrs, keep) + remapFaceVerts(mesh.Faces, remap) + + return originalCount - len(mesh.Verts) +} + +func approxEq(a, b Vec3, eps float32) bool { + if eps == 0 { + return a.X == b.X && a.Y == b.Y && a.Z == b.Z + } + return float32(math.Abs(float64(a.X-b.X))) <= eps && + float32(math.Abs(float64(a.Y-b.Y))) <= eps && + float32(math.Abs(float64(a.Z-b.Z))) <= eps +} diff --git a/pkg/mdl/weld_test.go b/pkg/mdl/weld_test.go new file mode 100644 index 0000000..832fcbe --- /dev/null +++ b/pkg/mdl/weld_test.go @@ -0,0 +1,53 @@ +package mdl + +import "testing" + +func TestWeldVertices_ExactDuplicates(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{{0, 0, 0}, {1, 0, 0}, {0, 0, 0}, {0, 1, 0}} + mesh.Faces = []Face{ + {Verts: [3]int32{0, 1, 3}}, + {Verts: [3]int32{2, 1, 3}}, + } + n := trimeshNode("m", "NULL", mesh) + + removed := WeldVertices(n, WeldOptions{Eps: 0, DropUnused: false}) + if removed != 1 { + t.Fatalf("expected 1 vertex removed, got %d (verts now %d)", removed, len(mesh.Verts)) + } + if mesh.Faces[1].Verts[0] != 0 { + t.Errorf("face 1 vertex 0 should remap to 0, got %d", mesh.Faces[1].Verts[0]) + } +} + +func TestWeldVertices_DropUnused(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{{0, 0, 0}, {1, 0, 0}, {2, 2, 2}, {0, 1, 0}} + mesh.Faces = []Face{{Verts: [3]int32{0, 1, 3}}} + n := trimeshNode("m", "NULL", mesh) + + removed := WeldVertices(n, WeldOptions{Eps: 0, DropUnused: true}) + if removed != 1 { + t.Fatalf("expected 1 unused vertex removed, got %d", removed) + } + if len(mesh.Verts) != 3 { + t.Fatalf("expected 3 verts, got %d", len(mesh.Verts)) + } +} + +func TestWeldVertices_PreservesNormalsColors(t *testing.T) { + mesh := NewMeshData() + mesh.Verts = []Vec3{{0, 0, 0}, {1, 0, 0}, {0, 0, 0}} + mesh.Normals = []Vec3{{0, 0, 1}, {1, 0, 0}, {0, 1, 0}} + mesh.Colors = []Vec3{{1, 0, 0}, {0, 1, 0}, {0, 0, 1}} + mesh.Faces = []Face{{Verts: [3]int32{0, 1, 2}}} + n := trimeshNode("m", "NULL", mesh) + + WeldVertices(n, WeldOptions{Eps: 0}) + if len(mesh.Normals) != len(mesh.Verts) { + t.Fatalf("normals/verts length mismatch after weld") + } + if len(mesh.Colors) != len(mesh.Verts) { + t.Fatalf("colors/verts length mismatch after weld") + } +} diff --git a/pkg/mdl/writer.go b/pkg/mdl/writer.go new file mode 100644 index 0000000..55a612a --- /dev/null +++ b/pkg/mdl/writer.go @@ -0,0 +1,782 @@ +// ASCII MDL writer. +// +// Produces NWN ASCII .mdl files from Model structs. Parameter ordering follows +// output_models.pl to ensure output is compilable by NWN:EE's compilemodel. +// +// Key rules: +// - Node tree is written depth-first, matching the game's expected ordering +// - Parameter ordering within nodes must match what the compiler expects +// - Floating point values use %g format (matching Prolog's format/2) +// - Colors from binary are stored as 0-1 floats; output as 0-1 +// - CamelCase preserved for emitter string enums per output_models.pl camel/2 +// +// Ref: output_models.pl (full file) +package mdl + +import ( + "fmt" + "io" + "strconv" + "strings" +) + +// WriteFile writes a model to an ASCII MDL file on disk. +func WriteFile(model *Model, path string) error { + return atomicWriteFile(path, func(w io.Writer) error { return Write(model, w) }) +} + +// Write writes a model to an ASCII MDL writer. +func Write(model *Model, w io.Writer) error { + wr := &writer{w: w, useTexture0: model.UseTexture0} + + wr.printf("# Rewritten by cleanmodels-go\n") + if model.FileDependancy != "" { + wr.printf("filedependancy %s\n", model.FileDependancy) + } + wr.line("#MAXMODEL ASCII") + + wr.printf("newmodel %s\n", model.Name) + wr.writeModelHeader(model) + + wr.line("#MAXGEOM ASCII") + wr.printf("beginmodelgeom %s\n", model.Name) + wr.writeNodeTree(model) + wr.printf("endmodelgeom %s\n", model.Name) + + for i := range model.Animations { + wr.line("") + wr.writeAnimation(model, &model.Animations[i]) + } + + wr.printf("donemodel %s\n", model.Name) + + return wr.err +} + +type writer struct { + w io.Writer + err error + useTexture0 bool + // scratch is a reusable buffer for hot-path line building. Hot loops + // (vert/normal/face/key lists) format directly into scratch and emit + // each line with a single Write, avoiding fmt.Sprintf allocations. + scratch []byte +} + +func (w *writer) printf(format string, args ...interface{}) { + if w.err != nil { + return + } + _, w.err = fmt.Fprintf(w.w, format, args...) +} + +func (w *writer) line(s string) { + w.printf("%s\n", s) +} + +func (w *writer) indent(level int, format string, args ...interface{}) { + if w.err != nil { + return + } + prefix := strings.Repeat(" ", level) + w.printf("%s", prefix) + w.printf(format, args...) + w.printf("\n") +} + +// emit writes w.scratch and resets its length. Caller is expected to +// have built a complete line (including trailing newline) in scratch. +func (w *writer) emit() { + if w.err != nil { + w.scratch = w.scratch[:0] + return + } + if len(w.scratch) > 0 { + _, w.err = w.w.Write(w.scratch) + } + w.scratch = w.scratch[:0] +} + +// writeVec3Line emits "X Y Z\n" with no allocation per call. +func (w *writer) writeVec3Line(level int, v Vec3) { + w.scratch = appendIndent(w.scratch[:0], level) + w.scratch = appendVec3(w.scratch, v) + w.scratch = append(w.scratch, '\n') + w.emit() +} + +// writeVec4Line emits "X Y Z W\n". +func (w *writer) writeVec4Line(level int, v Vec4) { + w.scratch = appendIndent(w.scratch[:0], level) + w.scratch = appendFloat(w.scratch, v.X) + w.scratch = append(w.scratch, ' ') + w.scratch = appendFloat(w.scratch, v.Y) + w.scratch = append(w.scratch, ' ') + w.scratch = appendFloat(w.scratch, v.Z) + w.scratch = append(w.scratch, ' ') + w.scratch = appendFloat(w.scratch, v.W) + w.scratch = append(w.scratch, '\n') + w.emit() +} + +// writeFaceLine emits "v0 v1 v2 sg uv0 uv1 uv2 mat\n". +func (w *writer) writeFaceLine(level int, f Face) { + b := appendIndent(w.scratch[:0], level) + b = strconv.AppendInt(b, int64(f.Verts[0]), 10) + b = append(b, ' ') + b = strconv.AppendInt(b, int64(f.Verts[1]), 10) + b = append(b, ' ') + b = strconv.AppendInt(b, int64(f.Verts[2]), 10) + b = append(b, ' ') + b = strconv.AppendUint(b, uint64(f.SmoothGroup), 10) + b = append(b, ' ') + b = strconv.AppendInt(b, int64(f.UVs[0]), 10) + b = append(b, ' ') + b = strconv.AppendInt(b, int64(f.UVs[1]), 10) + b = append(b, ' ') + b = strconv.AppendInt(b, int64(f.UVs[2]), 10) + b = append(b, ' ') + b = strconv.AppendInt(b, int64(f.Material), 10) + b = append(b, '\n') + w.scratch = b + w.emit() +} + +// writeInt3Line emits "a b c\n". +func (w *writer) writeInt3Line(level int, v [3]int32) { + b := appendIndent(w.scratch[:0], level) + b = strconv.AppendInt(b, int64(v[0]), 10) + b = append(b, ' ') + b = strconv.AppendInt(b, int64(v[1]), 10) + b = append(b, ' ') + b = strconv.AppendInt(b, int64(v[2]), 10) + b = append(b, '\n') + w.scratch = b + w.emit() +} + +// writeFloatVec3Line emits "T X Y Z\n" — used for position keys. +func (w *writer) writeFloatVec3Line(level int, t float32, v Vec3) { + b := appendIndent(w.scratch[:0], level) + b = appendFloat(b, t) + b = append(b, ' ') + b = appendVec3(b, v) + b = append(b, '\n') + w.scratch = b + w.emit() +} + +// writeFloatVec4Line emits "T X Y Z W\n" — used for orientation keys. +func (w *writer) writeFloatVec4Line(level int, t float32, v Vec4) { + b := appendIndent(w.scratch[:0], level) + b = appendFloat(b, t) + b = append(b, ' ') + b = appendFloat(b, v.X) + b = append(b, ' ') + b = appendFloat(b, v.Y) + b = append(b, ' ') + b = appendFloat(b, v.Z) + b = append(b, ' ') + b = appendFloat(b, v.W) + b = append(b, '\n') + w.scratch = b + w.emit() +} + +// writeFloatFloatLine emits "T V\n" — used for float key lists. +func (w *writer) writeFloatFloatLine(level int, t, v float32) { + b := appendIndent(w.scratch[:0], level) + b = appendFloat(b, t) + b = append(b, ' ') + b = appendFloat(b, v) + b = append(b, '\n') + w.scratch = b + w.emit() +} + +// writeAabbEntryLine emits "minX minY minZ maxX maxY maxZ leaf\n". +// Used for AABB walkmesh entries — typically thousands per tile. +func (w *writer) writeAabbEntryLine(level int, e AabbEntry) { + b := appendIndent(w.scratch[:0], level) + b = appendVec3(b, e.BoundMin) + b = append(b, ' ') + b = appendVec3(b, e.BoundMax) + b = append(b, ' ') + b = strconv.AppendInt(b, int64(e.LeafFace), 10) + b = append(b, '\n') + w.scratch = b + w.emit() +} + +func (w *writer) writeModelHeader(m *Model) { + if m.Classification != "" { + w.indent(4, "classification %s", m.Classification) + } + w.indent(4, "setsupermodel %s %s", m.Name, m.SuperModel) + if m.IgnoreFog != 0 { + w.indent(4, "ignorefog %d", m.IgnoreFog) + } + w.indent(4, "setanimationscale %s", fmtFloat(m.AnimationScale)) +} + +const maxNodeDepth = 10000 + +func (w *writer) writeNodeTree(m *Model) { + root := m.RootNode() + if root == nil && len(m.Nodes) > 0 { + root = m.Nodes[0] + } + if root == nil { + return + } + // Parent → children (case-folded parent key) for O(1) child lookup per node. + children := make(map[string][]*Node) + for _, n := range m.Nodes { + if n == nil { + continue + } + key := strings.ToLower(n.Parent) + children[key] = append(children[key], n) + } + visited := make(map[*Node]bool) + w.writeNodeRecursive(m, root, visited, 0, children) +} + +func (w *writer) writeNodeRecursive(m *Model, node *Node, visited map[*Node]bool, depth int, children map[string][]*Node) { + if visited[node] || depth > maxNodeDepth { + return + } + visited[node] = true + w.writeNode(node) + for _, child := range children[strings.ToLower(node.Name)] { + if child != node && strings.EqualFold(child.Parent, node.Name) { + w.writeNodeRecursive(m, child, visited, depth+1, children) + } + } +} + +// writeNode writes a single node's data in the parameter ordering expected +// by the NWN:EE compiler. +// Ref: output_models.pl output_node/4 +func (w *writer) writeNode(n *Node) { + w.indent(2, "node %s %s", n.NodeType(), n.Name) + + if n.Parent != "" { + w.indent(4, "parent %s", n.Parent) + } else { + w.indent(4, "parent NULL") + } + + if n.PartNumber != 0 { + w.indent(4, "#part-number %d", n.PartNumber) + } + + // Common node properties (only write non-default values) + if n.Position.X != 0 || n.Position.Y != 0 || n.Position.Z != 0 { + w.indent(4, "position %s", fmtVec3(n.Position)) + } + if n.Orientation.X != 0 || n.Orientation.Y != 0 || n.Orientation.Z != 0 || (n.Orientation.W != 0 && n.Orientation.W != 1) { + w.indent(4, "orientation %s %s %s %s", fmtFloat(n.Orientation.X), fmtFloat(n.Orientation.Y), fmtFloat(n.Orientation.Z), fmtFloat(n.Orientation.W)) + } + if n.Scale != 1.0 { + w.indent(4, "scale %s", fmtFloat(n.Scale)) + } + if n.InheritColor != 0 { + w.indent(4, "inheritcolor %d", n.InheritColor) + } + if n.WireColor.X != 0 || n.WireColor.Y != 0 || n.WireColor.Z != 0 { + w.indent(4, "wirecolor %s", fmtVec3(n.WireColor)) + } + + // Type-specific properties + if n.Mesh != nil { + w.writeMeshData(n.Mesh) + } + if n.AnimMesh != nil { + w.writeAnimMeshData(n.AnimMesh) + } + if n.Dangly != nil { + w.writeDanglyData(n.Dangly) + } + if n.Skin != nil { + w.writeSkinData(n.Skin) + } + if n.Aabb != nil { + w.writeAabbData(n.Aabb) + } + if n.Light != nil { + w.writeLightData(n.Light) + } + if n.Emitter != nil { + w.writeEmitterData(n.Emitter) + } + if n.Reference != nil { + w.writeReferenceData(n.Reference) + } + + w.indent(2, "endnode") +} + +func (w *writer) writeMeshData(m *MeshData) { + // Material properties + w.indent(4, "ambient %s", fmtVec3(m.Ambient)) + w.indent(4, "diffuse %s", fmtVec3(m.Diffuse)) + w.indent(4, "specular %s", fmtVec3(m.Specular)) + w.indent(4, "shininess %s", fmtFloat(m.Shininess)) + + if m.Bitmap != "" { + if w.useTexture0 { + w.indent(4, "texture0 %s", m.Bitmap) + } else { + w.indent(4, "bitmap %s", m.Bitmap) + } + } + if m.Texture1 != "" { + w.indent(4, "texture1 %s", m.Texture1) + } + if m.Texture2 != "" { + w.indent(4, "texture2 %s", m.Texture2) + } + if m.MaterialName != "" { + w.indent(4, "materialname %s", m.MaterialName) + } + if m.RenderHint != "" { + w.indent(4, "renderhint %s", m.RenderHint) + } + + w.indent(4, "render %d", m.Render) + w.indent(4, "shadow %d", m.Shadow) + w.indent(4, "beaming %d", m.Beaming) + w.indent(4, "transparencyhint %d", m.TransparencyHint) + + if m.Alpha != 1.0 { + w.indent(4, "alpha %s", fmtFloat(m.Alpha)) + } + if m.SelfIllumColor.X != 0 || m.SelfIllumColor.Y != 0 || m.SelfIllumColor.Z != 0 { + w.indent(4, "selfillumcolor %s", fmtVec3(m.SelfIllumColor)) + } + if m.TileFade != 0 { + w.indent(4, "tilefade %d", m.TileFade) + } + w.indent(4, "rotatetexture %d", m.RotateTexture) + if m.LightMapped != 0 { + w.indent(4, "lightmapped %d", m.LightMapped) + } + + // Multimaterial + if len(m.Multimaterial) > 0 { + w.indent(4, "multimaterial %d", len(m.Multimaterial)) + for _, mat := range m.Multimaterial { + w.indent(6, "%s", mat) + } + } + + // Vertex data + if len(m.Verts) > 0 { + w.indent(4, "verts %d", len(m.Verts)) + for _, v := range m.Verts { + w.writeVec3Line(6, v) + } + } + + w.writeFaces(4, m.Faces) + + // TVerts + w.writeVec3List("tverts", m.TVerts) + w.writeVec3List("tverts1", m.TVerts1) + w.writeVec3List("tverts2", m.TVerts2) + w.writeVec3List("tverts3", m.TVerts3) + + // Tex indices + w.writeInt3List("texindices0", m.TexIndices0) + w.writeInt3List("texindices1", m.TexIndices1) + w.writeInt3List("texindices2", m.TexIndices2) + w.writeInt3List("texindices3", m.TexIndices3) + + // Colors + if len(m.Colors) > 0 { + w.indent(4, "colors %d", len(m.Colors)) + for _, c := range m.Colors { + w.writeVec3Line(6, c) + } + } + + // Normals + w.writeVec3List("normals", m.Normals) + + // Tangents + if len(m.Tangents) > 0 { + w.indent(4, "tangents %d", len(m.Tangents)) + for _, t := range m.Tangents { + w.writeVec4Line(6, t) + } + } +} + +func (w *writer) writeSkinData(s *SkinData) { + if len(s.Weights) > 0 { + w.indent(4, "weights %d", len(s.Weights)) + for _, wt := range s.Weights { + parts := make([]string, 0, len(wt.Bones)*2) + for i, bone := range wt.Bones { + parts = append(parts, bone, fmtFloat(wt.Weights[i])) + } + if len(parts) == 0 { + w.indent(6, "_ 0") + } else { + w.indent(6, "%s", strings.Join(parts, " ")) + } + } + } +} + +func (w *writer) writeDanglyData(d *DanglyData) { + w.indent(4, "displacement %s", fmtFloat(d.Displacement)) + w.indent(4, "tightness %s", fmtFloat(d.Tightness)) + w.indent(4, "period %s", fmtFloat(d.Period)) + if d.DisplType != 0 { + w.indent(4, "displtype %d", d.DisplType) + } + if len(d.Constraints) > 0 { + w.indent(4, "constraints %d", len(d.Constraints)) + for _, c := range d.Constraints { + w.indent(6, "%s", fmtFloat(c)) + } + } +} + +func (w *writer) writeAnimMeshData(am *AnimMeshData) { + w.indent(4, "sampleperiod %s", fmtFloat(am.SamplePeriod)) + if am.ClipU != 0 || am.ClipV != 0 || am.ClipW != 0 || am.ClipH != 0 { + w.indent(4, "clipu %s", fmtFloat(am.ClipU)) + w.indent(4, "clipv %s", fmtFloat(am.ClipV)) + w.indent(4, "clipw %s", fmtFloat(am.ClipW)) + w.indent(4, "cliph %s", fmtFloat(am.ClipH)) + } + if len(am.AnimVerts) > 0 { + w.writeVec3List("animverts", am.AnimVerts) + } + if len(am.AnimTVerts) > 0 { + w.writeVec3List("animtverts", am.AnimTVerts) + } +} + +func (w *writer) writeAabbData(a *AabbData) { + if len(a.Entries) > 0 { + w.indent(4, "aabb %d", len(a.Entries)) + for _, e := range a.Entries { + w.writeAabbEntryLine(6, e) + } + } +} + +func (w *writer) writeLightData(l *LightData) { + if l.Color.X != 0 || l.Color.Y != 0 || l.Color.Z != 0 { + w.indent(4, "color %s", fmtVec3(l.Color)) + } + if l.Radius != 0 { + w.indent(4, "radius %s", fmtFloat(l.Radius)) + } + if l.Multiplier != 0 { + w.indent(4, "multiplier %s", fmtFloat(l.Multiplier)) + } + w.indent(4, "ambientonly %d", l.AmbientOnly) + w.indent(4, "nDynamicType %d", l.NDynamicType) + w.indent(4, "affectdynamic %d", l.AffectDynamic) + w.indent(4, "shadow %d", l.Shadow) + w.indent(4, "lightpriority %d", l.LightPriority) + w.indent(4, "fadinglight %d", l.FadingLight) + if l.NegativeLight != 0 { + w.indent(4, "negativelight %d", l.NegativeLight) + } + if l.GenerateFlare != 0 { + w.indent(4, "generateflare %d", l.GenerateFlare) + } + if l.FlareRadius != 0 { + w.indent(4, "flareradius %s", fmtFloat(l.FlareRadius)) + } + if l.LensFlares != 0 { + w.indent(4, "lensflares %d", l.LensFlares) + } + + if len(l.TextureNames) > 0 { + w.indent(4, "texturenames %d", len(l.TextureNames)) + for _, t := range l.TextureNames { + w.indent(6, "%s", t) + } + } + if len(l.FlareSizes) > 0 { + w.indent(4, "flaresizes %d", len(l.FlareSizes)) + for _, s := range l.FlareSizes { + w.indent(6, "%s", fmtFloat(s)) + } + } + if len(l.FlarePositions) > 0 { + w.indent(4, "flarepositions %d", len(l.FlarePositions)) + for _, p := range l.FlarePositions { + w.indent(6, "%s", fmtFloat(p)) + } + } + if len(l.FlareColorShifts) > 0 { + w.indent(4, "flarecolorshifts %d", len(l.FlareColorShifts)) + for _, c := range l.FlareColorShifts { + w.indent(6, "%s", fmtVec3(c)) + } + } + if l.ShadowRadius != 0 { + w.indent(4, "shadowradius %s", fmtFloat(l.ShadowRadius)) + } + if l.VerticalDisplacement != 0 { + w.indent(4, "verticaldisplacement %s", fmtFloat(l.VerticalDisplacement)) + } +} + +func (w *writer) writeEmitterData(e *EmitterData) { + w.indent(4, "deadspace %s", fmtFloat(e.DeadSpace)) + w.indent(4, "blastRadius %s", fmtFloat(e.BlastRadius)) + w.indent(4, "blastLength %s", fmtFloat(e.BlastLength)) + w.indent(4, "xgrid %d", e.XGrid) + w.indent(4, "ygrid %d", e.YGrid) + w.indent(4, "spawntype %d", e.SpawnType) + w.indent(4, "update %s", camelCase(e.Update)) + w.indent(4, "render %s", camelCase(e.Render)) + w.indent(4, "blend %s", camelCase(e.Blend)) + if e.Texture != "" { + w.indent(4, "texture %s", e.Texture) + } + if e.ChunkName != "" { + w.indent(4, "chunkName %s", e.ChunkName) + } + w.indent(4, "twosidedtex %d", e.TwoSidedTex) + w.indent(4, "loop %d", e.Loop) + w.indent(4, "renderorder %d", e.RenderOrder) + + // Flags + w.indent(4, "p2p %d", e.P2P) + w.indent(4, "p2p_sel %d", e.P2PSel) + w.indent(4, "affectedByWind %d", e.AffectedByWind) + w.indent(4, "m_isTinted %d", e.IsTinted) + w.indent(4, "bounce %d", e.Bounce) + w.indent(4, "random %d", e.Random) + w.indent(4, "inherit %d", e.Inherit) + w.indent(4, "inheritvel %d", e.InheritVel) + w.indent(4, "inherit_local %d", e.InheritLocal) + w.indent(4, "splat %d", e.Splat) + w.indent(4, "inherit_part %d", e.InheritPart) + + // Controller values + w.indent(4, "alphaStart %s", fmtFloat(e.AlphaStart)) + w.indent(4, "alphaMid %s", fmtFloat(e.AlphaMid)) + w.indent(4, "alphaEnd %s", fmtFloat(e.AlphaEnd)) + w.indent(4, "colorStart %s", fmtVec3(e.ColorStart)) + w.indent(4, "colorMid %s", fmtVec3(e.ColorMid)) + w.indent(4, "colorEnd %s", fmtVec3(e.ColorEnd)) + w.indent(4, "sizeStart %s", fmtFloat(e.SizeStart)) + w.indent(4, "sizeMid %s", fmtFloat(e.SizeMid)) + w.indent(4, "sizeEnd %s", fmtFloat(e.SizeEnd)) + w.indent(4, "sizeStart_y %s", fmtFloat(e.SizeStartY)) + w.indent(4, "sizeMid_y %s", fmtFloat(e.SizeMidY)) + w.indent(4, "sizeEnd_y %s", fmtFloat(e.SizeEndY)) + w.indent(4, "birthrate %s", fmtFloat(e.BirthRate)) + w.indent(4, "lifeExp %s", fmtFloat(e.LifeExp)) + w.indent(4, "mass %s", fmtFloat(e.Mass)) + w.indent(4, "spread %s", fmtFloat(e.Spread)) + w.indent(4, "particleRot %s", fmtFloat(e.ParticleRot)) + w.indent(4, "velocity %s", fmtFloat(e.Velocity)) + w.indent(4, "randvel %s", fmtFloat(e.RandVel)) + w.indent(4, "bounce_co %s", fmtFloat(e.BounceCo)) + w.indent(4, "blurlength %s", fmtFloat(e.BlurLength)) + w.indent(4, "fps %s", fmtFloat(e.FPS)) + w.indent(4, "frameStart %s", fmtFloat(e.FrameStart)) + w.indent(4, "frameEnd %s", fmtFloat(e.FrameEnd)) + w.indent(4, "grav %s", fmtFloat(e.Grav)) + w.indent(4, "drag %s", fmtFloat(e.Drag)) + w.indent(4, "threshold %s", fmtFloat(e.Threshold)) + w.indent(4, "combinetime %s", fmtFloat(e.CombineTime)) + w.indent(4, "percentStart %s", fmtFloat(e.PercentStart)) + w.indent(4, "percentMid %s", fmtFloat(e.PercentMid)) + w.indent(4, "percentEnd %s", fmtFloat(e.PercentEnd)) + if e.LightningDelay != 0 || e.LightningRadius != 0 || e.LightningScale != 0 { + w.indent(4, "lightningDelay %s", fmtFloat(e.LightningDelay)) + w.indent(4, "lightningRadius %s", fmtFloat(e.LightningRadius)) + w.indent(4, "lightningScale %s", fmtFloat(e.LightningScale)) + } + if e.LightningSubDiv != 0 { + w.indent(4, "lightningSubDiv %s", fmtFloat(e.LightningSubDiv)) + } + w.indent(4, "p2p_bezier2 %s", fmtFloat(e.P2PBezier2)) + w.indent(4, "p2p_bezier3 %s", fmtFloat(e.P2PBezier3)) + w.indent(4, "xsize %s", fmtFloat(e.XSize)) + w.indent(4, "ysize %s", fmtFloat(e.YSize)) +} + +func (w *writer) writeReferenceData(r *ReferenceData) { + w.indent(4, "refModel %s", r.RefModel) + w.indent(4, "reattachable %d", r.Reattachable) +} + +// writeAnimation writes a single animation block. +// Ref: output_models.pl output_anim/3 +func (w *writer) writeAnimation(m *Model, anim *Animation) { + w.line("#MAXANIM ASCII") + w.printf("newanim %s %s\n", anim.Name, m.Name) + + w.indent(4, "length %s", fmtFloat(anim.Length)) + w.indent(4, "transtime %s", fmtFloat(anim.TransTime)) + + for _, evt := range anim.Events { + w.indent(4, "event %s %s", fmtFloat(evt.Time), evt.Name) + } + + if anim.Root != "" { + w.indent(4, "animroot %s", anim.Root) + } + + for i := range anim.Nodes { + w.writeAnimNode(m, &anim.Nodes[i]) + } + + w.printf("doneanim %s %s\n", anim.Name, m.Name) +} + +func (w *writer) writeAnimNode(m *Model, an *AnimNode) { + // Determine node type from the model geometry + nodeType := "dummy" + if n := m.FindNode(an.Name); n != nil { + nodeType = n.NodeType() + } + + w.indent(4, "node %s %s", nodeType, an.Name) + w.indent(6, "parent %s", an.Parent) + + // Mesh data for animmesh animation nodes + if an.Mesh != nil { + mesh := an.Mesh + w.writeVec3ListAt(6, "verts", mesh.Verts) + w.writeFaces(6, mesh.Faces) + w.writeVec3ListAt(6, "tverts", mesh.TVerts) + } + + // AnimMesh parameters (sampleperiod, clip*, animverts, animtverts) + if an.AnimMesh != nil { + am := an.AnimMesh + if am.ClipU != 0 || am.ClipV != 0 || am.ClipW != 0 || am.ClipH != 0 { + w.indent(6, "clipu %s", fmtFloat(am.ClipU)) + w.indent(6, "clipv %s", fmtFloat(am.ClipV)) + w.indent(6, "clipw %s", fmtFloat(am.ClipW)) + w.indent(6, "cliph %s", fmtFloat(am.ClipH)) + } + if am.SamplePeriod != 0 { + w.indent(6, "sampleperiod %s", fmtFloat(am.SamplePeriod)) + } + w.writeVec3ListAt(6, "animverts", am.AnimVerts) + w.writeVec3ListAt(6, "animtverts", am.AnimTVerts) + } + + w.writePositionKeys(an.PositionKeys) + w.writeOrientationKeys(an.OrientationKeys) + for _, e := range animControllerFloatList { + if e.Name == "detonate" { + w.writeDetonateKeys(an.DetonateKeys) + continue + } + w.writeFloatKeyList(e.Name+"key", *e.Getter(an)) + } + for _, e := range animControllerColorList { + w.writeColorKeyList(e.Name+"key", *e.Getter(an)) + } + + w.indent(4, "endnode") +} + +func (w *writer) writePositionKeys(keys []PositionKey) { + if len(keys) == 0 { + return + } + w.indent(6, "positionkey %d", len(keys)) + for _, k := range keys { + w.writeFloatVec3Line(3, k.Time, k.Value) + } + w.indent(6, "endlist") +} + +func (w *writer) writeOrientationKeys(keys []OrientationKey) { + if len(keys) == 0 { + return + } + w.indent(6, "orientationkey %d", len(keys)) + for _, k := range keys { + w.writeFloatVec4Line(3, k.Time, k.Value) + } + w.indent(6, "endlist") +} + +// writeDetonateKeys emits detonatekey in NWN-spec time-only format (NumCols=-1). +func (w *writer) writeDetonateKeys(keys []FloatKey) { + if len(keys) == 0 { + return + } + w.indent(6, "detonatekey %d", len(keys)) + for _, k := range keys { + w.indent(3, "%s", fmtFloat(k.Time)) + } + w.indent(6, "endlist") +} + +func (w *writer) writeFloatKeyList(name string, keys []FloatKey) { + if len(keys) == 0 { + return + } + w.indent(6, "%s %d", name, len(keys)) + for _, k := range keys { + w.writeFloatFloatLine(3, k.Time, k.Value) + } + w.indent(6, "endlist") +} + +func (w *writer) writeColorKeyList(name string, keys []ColorKey) { + if len(keys) == 0 { + return + } + w.indent(6, "%s %d", name, len(keys)) + for _, k := range keys { + w.writeFloatVec3Line(3, k.Time, k.Value) + } + w.indent(6, "endlist") +} + +func (w *writer) writeFaces(indent int, faces []Face) { + if len(faces) == 0 { + return + } + w.indent(indent, "faces %d", len(faces)) + inner := indent + 2 + for _, f := range faces { + w.writeFaceLine(inner, f) + } +} + +func (w *writer) writeVec3List(name string, vecs []Vec3) { + w.writeVec3ListAt(4, name, vecs) +} + +func (w *writer) writeVec3ListAt(indent int, name string, vecs []Vec3) { + if len(vecs) == 0 { + return + } + w.indent(indent, "%s %d", name, len(vecs)) + inner := indent + 2 + for _, v := range vecs { + w.writeVec3Line(inner, v) + } +} + +func (w *writer) writeInt3List(name string, vals [][3]int32) { + if len(vals) == 0 { + return + } + w.indent(4, "%s %d", name, len(vals)) + for _, v := range vals { + w.writeInt3Line(6, v) + } +} diff --git a/tests/fixtures/ascii/plc_a01.mdl b/tests/fixtures/ascii/plc_a01.mdl new file mode 100644 index 0000000..f4edc62 --- /dev/null +++ b/tests/fixtures/ascii/plc_a01.mdl @@ -0,0 +1,140 @@ +# Exported from blender at Friday, 2017-03-24 +filedependancy test.blend +newmodel plc_a01 +setsupermodel plc_a01 null +classification UNKNOWN +setanimationscale 1.0 +beginmodelgeom plc_a01 +node dummy plc_a01 + parent null +endnode +node animmesh plane + parent plc_a01 + position 0.00000 0.00000 0.00000 + orientation 1.00000 0.00000 0.00000 0.00000 + wirecolor 1.00 1.00 1.00 + ambient 1.00 1.00 1.00 + diffuse 0.80 0.80 0.80 + specular 1.00 1.00 1.00 + bitmap colorgrid + alpha 1.0 + shininess 1 + ambient 0.00 0.00 0.00 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + transparencyhint 0 + verts 4 + 3.00000 -3.00000 0.00000 + -3.00000 -3.00000 0.00000 + 3.00000 3.00000 0.00000 + -3.00000 3.00000 0.00000 + faces 2 + 1 0 2 0 0 1 2 0 + 3 1 2 0 3 4 5 0 + tverts 6 + 0.000 0.000 0 + 1.000 0.000 0 + 1.000 1.000 0 + 0.000 1.000 0 + 0.000 0.000 0 + 1.000 1.000 0 +endnode +node trimesh select_a01 + parent plc_a01 + position 0.00000 0.00000 0.00000 + orientation 1.00000 0.00000 0.00000 0.00000 + wirecolor 1.00 1.00 1.00 + ambient 1.00 1.00 1.00 + diffuse 0.80 0.80 0.80 + specular 1.00 1.00 1.00 + bitmap null + alpha 0.0 + shininess 1 + ambient 0.00 0.00 0.00 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + transparencyhint 0 + verts 8 + -3.00000 -3.00000 0.00000 + -3.00000 3.00000 0.00000 + 3.00000 3.00000 0.00000 + 3.00000 -3.00000 0.00000 + -3.00000 -3.00000 0.50000 + -3.00000 3.00000 0.50000 + 3.00000 3.00000 0.50000 + 3.00000 -3.00000 0.50000 + faces 12 + 5 0 4 0 0 0 0 0 + 5 6 1 0 0 0 0 0 + 6 7 2 0 0 0 0 0 + 7 4 3 0 0 0 0 0 + 0 1 3 0 0 0 0 0 + 7 6 4 0 0 0 0 0 + 1 0 5 0 0 0 0 0 + 6 2 1 0 0 0 0 0 + 7 3 2 0 0 0 0 0 + 4 0 3 0 0 0 0 0 + 1 2 3 0 0 0 0 0 + 6 5 4 0 0 0 0 0 +endnode +endmodelgeom plc_a01 + +# ANIM ASCII +newanim default plc_a01 + length 2.0 + transtime 0.25 + animroot plc_a01 + node dummy plc_a01 + parent null + endnode + node animmesh plane + parent plc_a01 + verts 4 + 3.00000 -3.00000 0.00000 + -3.00000 -3.00000 0.00000 + 3.00000 3.00000 0.00000 + -3.00000 3.00000 0.00000 + faces 2 + 1 0 2 0 0 1 2 0 + 3 1 2 0 3 4 5 0 + tverts 6 + 0.000 0.000 0 + 1.000 0.000 0 + 1.000 1.000 0 + 0.000 1.000 0 + 0.000 0.000 0 + 1.000 1.000 0 + clipu 0.0 + clipv 0.0 + clipw 1.0 + cliph 1.0 + sampleperiod 2.0 + animtverts 12 + 0.000 0.000 0 + 1.000 0.000 0 + 1.000 1.000 0 + 0.000 1.000 0 + 0.000 0.000 0 + 1.000 1.000 0 + 1.000 0.000 0 + 2.000 0.000 0 + 2.000 1.000 0 + 1.000 1.000 0 + 1.000 0.000 0 + 2.000 1.000 0 + endlist + positionkey 3 + 0.00000 0.00000 0.00000 0.00000 + 1.00000 0.00000 0.00000 1.00000 + 2.00000 0.00000 0.00000 0.00000 + endnode + node trimesh select_a01 + parent plc_a01 + endnode +doneanim default plc_a01 + +donemodel plc_a01 diff --git a/tests/fixtures/ascii/plc_a02.mdl b/tests/fixtures/ascii/plc_a02.mdl new file mode 100644 index 0000000..d2f67e8 --- /dev/null +++ b/tests/fixtures/ascii/plc_a02.mdl @@ -0,0 +1,257 @@ +# Exported from blender at Friday, 2017-03-24 +filedependancy test.blend +newmodel plc_a02 +setsupermodel plc_a02 null +classification CHARACTER +setanimationscale 1.0 +beginmodelgeom plc_a02 +node dummy plc_a02 + parent null +endnode +node animmesh cube + parent plc_a02 + position 0.00000 0.00000 0.00000 + orientation 1.00000 0.00000 0.00000 0.00000 + wirecolor 1.00 1.00 1.00 + ambient 1.00 1.00 1.00 + diffuse 0.80 0.80 0.80 + specular 1.00 1.00 1.00 + bitmap colorgrid + alpha 1.0 + shininess 1 + ambient 0.00 0.00 0.00 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + transparencyhint 0 + verts 9 + -1.00000 -1.00000 0.00000 + -1.00000 1.00000 0.00000 + 1.00000 1.00000 0.00000 + 1.00000 -1.00000 0.00000 + -1.00000 -1.00000 2.00000 + -1.00000 1.00000 2.00000 + 1.00000 1.00000 2.00000 + 1.00000 -1.00000 2.00000 + 0.00000 0.00000 2.00000 + faces 14 + 7 6 8 0 0 1 2 0 + 8 5 4 0 3 4 5 0 + 6 5 8 0 6 7 8 0 + 0 1 2 0 9 10 11 0 + 7 8 4 0 12 13 14 0 + 4 0 7 0 15 16 17 0 + 5 6 2 0 18 19 20 0 + 6 7 3 0 21 22 23 0 + 4 5 1 0 24 25 26 0 + 3 0 2 0 27 28 29 0 + 7 0 3 0 30 31 32 0 + 1 5 2 0 33 34 35 0 + 2 6 3 0 36 37 38 0 + 0 4 1 0 39 40 41 0 + tverts 42 + 0.000 0.000 0 + 1.000 0.000 0 + 0.500 0.500 0 + 0.500 0.500 0 + 1.000 1.000 0 + 0.000 1.000 0 + 1.000 0.000 0 + 1.000 1.000 0 + 0.500 0.500 0 + 1.000 1.000 0 + 0.000 1.000 0 + 0.000 0.000 0 + 0.000 0.000 0 + 0.500 0.500 0 + 0.000 1.000 0 + 0.000 1.000 0 + 0.000 0.000 0 + 1.000 1.000 0 + 1.000 1.000 0 + 0.000 1.000 0 + 0.000 0.000 0 + 1.000 1.000 0 + 0.000 1.000 0 + 0.000 -0.000 0 + 1.000 1.000 0 + -0.000 1.000 0 + 0.000 -0.000 0 + 1.000 0.000 0 + 1.000 1.000 0 + 0.000 0.000 0 + 1.000 1.000 0 + 0.000 0.000 0 + 1.000 0.000 0 + 1.000 0.000 0 + 1.000 1.000 0 + 0.000 0.000 0 + 1.000 0.000 0 + 1.000 1.000 0 + 0.000 -0.000 0 + 1.000 0.000 0 + 1.000 1.000 0 + 0.000 -0.000 0 +endnode +node trimesh select_a02 + parent plc_a02 + position 0.00000 0.00000 0.00000 + orientation 1.00000 0.00000 0.00000 0.00000 + wirecolor 1.00 1.00 1.00 + ambient 1.00 1.00 1.00 + diffuse 0.80 0.80 0.80 + specular 1.00 1.00 1.00 + bitmap null + alpha 0.0 + shininess 1 + ambient 0.00 0.00 0.00 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + transparencyhint 0 + verts 8 + -1.00000 -1.00000 0.00000 + -1.00000 1.00000 0.00000 + 1.00000 1.00000 0.00000 + 1.00000 -1.00000 0.00000 + -1.00000 -1.00000 2.00000 + -1.00000 1.00000 2.00000 + 1.00000 1.00000 2.00000 + 1.00000 -1.00000 2.00000 + faces 12 + 5 0 4 0 0 0 0 0 + 5 6 1 0 0 0 0 0 + 6 7 2 0 0 0 0 0 + 7 4 3 0 0 0 0 0 + 0 1 3 0 0 0 0 0 + 7 6 4 0 0 0 0 0 + 1 0 5 0 0 0 0 0 + 6 2 1 0 0 0 0 0 + 7 3 2 0 0 0 0 0 + 4 0 3 0 0 0 0 0 + 1 2 3 0 0 0 0 0 + 6 5 4 0 0 0 0 0 +endnode +endmodelgeom plc_a02 + +# ANIM ASCII +newanim default plc_a02 + length 2.0 + transtime 0.25 + animroot plc_a02 + node dummy plc_a02 + parent null + endnode + node animmesh cube + parent plc_a02 + verts 9 + -1.00000 -1.00000 0.00000 + -1.00000 1.00000 0.00000 + 1.00000 1.00000 0.00000 + 1.00000 -1.00000 0.00000 + -1.00000 -1.00000 2.00000 + -1.00000 1.00000 2.00000 + 1.00000 1.00000 2.00000 + 1.00000 -1.00000 2.00000 + 0.00000 0.00000 2.00000 + faces 14 + 7 6 8 0 0 1 2 0 + 8 5 4 0 3 4 5 0 + 6 5 8 0 6 7 8 0 + 0 1 2 0 9 10 11 0 + 7 8 4 0 12 13 14 0 + 4 0 7 0 15 16 17 0 + 5 6 2 0 18 19 20 0 + 6 7 3 0 21 22 23 0 + 4 5 1 0 24 25 26 0 + 3 0 2 0 27 28 29 0 + 7 0 3 0 30 31 32 0 + 1 5 2 0 33 34 35 0 + 2 6 3 0 36 37 38 0 + 0 4 1 0 39 40 41 0 + tverts 42 + 0.000 0.000 0 + 1.000 0.000 0 + 0.500 0.500 0 + 0.500 0.500 0 + 1.000 1.000 0 + 0.000 1.000 0 + 1.000 0.000 0 + 1.000 1.000 0 + 0.500 0.500 0 + 1.000 1.000 0 + 0.000 1.000 0 + 0.000 0.000 0 + 0.000 0.000 0 + 0.500 0.500 0 + 0.000 1.000 0 + 0.000 1.000 0 + 0.000 0.000 0 + 1.000 1.000 0 + 1.000 1.000 0 + 0.000 1.000 0 + 0.000 0.000 0 + 1.000 1.000 0 + 0.000 1.000 0 + 0.000 -0.000 0 + 1.000 1.000 0 + -0.000 1.000 0 + 0.000 -0.000 0 + 1.000 0.000 0 + 1.000 1.000 0 + 0.000 0.000 0 + 1.000 1.000 0 + 0.000 0.000 0 + 1.000 0.000 0 + 1.000 0.000 0 + 1.000 1.000 0 + 0.000 0.000 0 + 1.000 0.000 0 + 1.000 1.000 0 + 0.000 -0.000 0 + 1.000 0.000 0 + 1.000 1.000 0 + 0.000 -0.000 0 + clipu 0.0 + clipv 0.0 + clipw 1.0 + cliph 1.0 + sampleperiod 2.0 + animverts 27 + -1.000 -1.000 0.000 + -1.000 1.000 0.000 + 1.000 1.000 0.000 + 1.000 -1.000 0.000 + -1.000 -1.000 2.000 + -1.000 1.000 2.000 + 1.000 1.000 2.000 + 1.000 -1.000 2.000 + 0.000 0.000 2.000 + -1.000 -1.000 0.000 + -1.000 1.000 0.000 + 1.000 1.000 0.000 + 1.000 -1.000 0.000 + -0.500 -0.500 1.000 + -0.500 0.500 1.000 + 0.500 0.500 1.000 + 0.500 -0.500 1.000 + 0.000 0.000 2.000 + -1.000 -1.000 0.000 + -1.000 1.000 0.000 + 1.000 1.000 0.000 + 1.000 -1.000 0.000 + -1.000 -1.000 2.000 + -1.000 1.000 2.000 + 1.000 1.000 2.000 + 1.000 -1.000 2.000 + 0.000 0.000 2.000 + endlist + endnode + node trimesh select_a02 + parent plc_a02 + endnode +doneanim default plc_a02 + +donemodel plc_a02 diff --git a/tests/fixtures/ascii/plc_a03.mdl b/tests/fixtures/ascii/plc_a03.mdl new file mode 100644 index 0000000..b8828e4 --- /dev/null +++ b/tests/fixtures/ascii/plc_a03.mdl @@ -0,0 +1,200 @@ +# Exported from blender at Friday, 2017-03-24 +filedependancy test.blend +newmodel plc_a03 +setsupermodel plc_a03 null +classification CHARACTER +setanimationscale 1.0 +beginmodelgeom plc_a03 +node dummy plc_a03 + parent null +endnode +node animmesh plane_a03 + parent plc_a03 + position 0.00000 0.00000 0.00000 + orientation 1.00000 0.00000 0.00000 0.00000 + wirecolor 1.00 1.00 1.00 + ambient 1.00 1.00 1.00 + diffuse 0.80 0.80 0.80 + specular 1.00 1.00 1.00 + bitmap colorgrid + alpha 1.0 + shininess 1 + ambient 0.00 0.00 0.00 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + transparencyhint 0 + verts 9 + 4.00000 -4.00000 0.00000 + -4.00000 -4.00000 0.00000 + 4.00000 4.00000 0.00000 + -4.00000 4.00000 0.00000 + 0.00000 -4.00000 0.00000 + 0.00000 4.00000 0.00000 + -4.00000 0.00000 0.00000 + 4.00000 0.00000 0.00000 + 0.00000 0.00000 0.00000 + faces 8 + 4 8 1 0 0 1 2 0 + 1 8 6 0 3 4 5 0 + 8 3 6 0 6 7 8 0 + 3 8 5 0 9 10 11 0 + 8 2 5 0 12 13 14 0 + 2 8 7 0 15 16 17 0 + 8 0 7 0 18 19 20 0 + 0 8 4 0 21 22 23 0 + tverts 24 + 0.500 0.000 0 + 0.500 0.500 0 + 0.000 0.000 0 + 0.000 0.000 0 + 0.500 0.500 0 + 0.000 0.500 0 + 0.500 0.500 0 + 0.000 1.000 0 + 0.000 0.500 0 + 0.000 1.000 0 + 0.500 0.500 0 + 0.500 1.000 0 + 0.500 0.500 0 + 1.000 1.000 0 + 0.500 1.000 0 + 1.000 1.000 0 + 0.500 0.500 0 + 1.000 0.500 0 + 0.500 0.500 0 + 1.000 0.000 0 + 1.000 0.500 0 + 1.000 0.000 0 + 0.500 0.500 0 + 0.500 0.000 0 +endnode +node trimesh select_a03 + parent plc_a03 + position 0.00000 0.00000 0.00000 + orientation 1.00000 0.00000 0.00000 0.00000 + wirecolor 1.00 1.00 1.00 + ambient 1.00 1.00 1.00 + diffuse 0.80 0.80 0.80 + specular 1.00 1.00 1.00 + bitmap null + alpha 0.0 + shininess 1 + ambient 0.00 0.00 0.00 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + transparencyhint 0 + verts 8 + -3.00000 -3.00000 0.00000 + -3.00000 3.00000 0.00000 + 3.00000 3.00000 0.00000 + 3.00000 -3.00000 0.00000 + -3.00000 -3.00000 0.50000 + -3.00000 3.00000 0.50000 + 3.00000 3.00000 0.50000 + 3.00000 -3.00000 0.50000 + faces 12 + 5 0 4 0 0 0 0 0 + 5 6 1 0 0 0 0 0 + 6 7 2 0 0 0 0 0 + 7 4 3 0 0 0 0 0 + 0 1 3 0 0 0 0 0 + 7 6 4 0 0 0 0 0 + 1 0 5 0 0 0 0 0 + 6 2 1 0 0 0 0 0 + 7 3 2 0 0 0 0 0 + 4 0 3 0 0 0 0 0 + 1 2 3 0 0 0 0 0 + 6 5 4 0 0 0 0 0 +endnode +endmodelgeom plc_a03 + +# ANIM ASCII +newanim default plc_a03 + length 2.0 + transtime 0.25 + animroot plc_a03 + node dummy plc_a03 + parent null + endnode + node animmesh plane_a03 + parent plc_a03 + verts 9 + 4.00000 -4.00000 0.00000 + -4.00000 -4.00000 0.00000 + 4.00000 4.00000 0.00000 + -4.00000 4.00000 0.00000 + 0.00000 -4.00000 0.00000 + 0.00000 4.00000 0.00000 + -4.00000 0.00000 0.00000 + 4.00000 0.00000 0.00000 + 0.00000 0.00000 0.00000 + faces 8 + 4 8 1 0 0 1 2 0 + 1 8 6 0 3 4 5 0 + 8 3 6 0 6 7 8 0 + 3 8 5 0 9 10 11 0 + 8 2 5 0 12 13 14 0 + 2 8 7 0 15 16 17 0 + 8 0 7 0 18 19 20 0 + 0 8 4 0 21 22 23 0 + tverts 24 + 0.500 0.000 0 + 0.500 0.500 0 + 0.000 0.000 0 + 0.000 0.000 0 + 0.500 0.500 0 + 0.000 0.500 0 + 0.500 0.500 0 + 0.000 1.000 0 + 0.000 0.500 0 + 0.000 1.000 0 + 0.500 0.500 0 + 0.500 1.000 0 + 0.500 0.500 0 + 1.000 1.000 0 + 0.500 1.000 0 + 1.000 1.000 0 + 0.500 0.500 0 + 1.000 0.500 0 + 0.500 0.500 0 + 1.000 0.000 0 + 1.000 0.500 0 + 1.000 0.000 0 + 0.500 0.500 0 + 0.500 0.000 0 + clipu 0.0 + clipv 0.0 + clipw 1.0 + cliph 1.0 + sampleperiod 2.0 + animverts 18 + 4.000 -4.000 0.000 + -4.000 -4.000 0.000 + 4.000 4.000 0.000 + -4.000 4.000 0.000 + 0.000 -4.000 0.000 + 0.000 4.000 0.000 + -4.000 0.000 0.000 + 4.000 0.000 0.000 + 0.000 0.000 0.000 + 4.000 -4.000 0.000 + -4.000 -4.000 0.000 + 4.000 4.000 0.000 + -4.000 4.000 0.000 + 0.000 -4.000 0.000 + 0.000 4.000 0.000 + -4.000 0.000 0.000 + 4.000 0.000 0.000 + 0.000 0.000 5.000 + endlist + endnode + node trimesh select_a03 + parent plc_a03 + endnode +doneanim default plc_a03 + +donemodel plc_a03 diff --git a/tests/fixtures/broken/GUI_radialband.mdl b/tests/fixtures/broken/GUI_radialband.mdl new file mode 100644 index 0000000..3569f14 Binary files /dev/null and b/tests/fixtures/broken/GUI_radialband.mdl differ diff --git a/tests/fixtures/broken/ttw01_a02_01.mdl b/tests/fixtures/broken/ttw01_a02_01.mdl new file mode 100644 index 0000000..e0489f2 Binary files /dev/null and b/tests/fixtures/broken/ttw01_a02_01.mdl differ diff --git a/tests/fixtures/broken/ttw01_a04_02.mdl b/tests/fixtures/broken/ttw01_a04_02.mdl new file mode 100644 index 0000000..c496c75 Binary files /dev/null and b/tests/fixtures/broken/ttw01_a04_02.mdl differ diff --git a/tests/fixtures/broken/ttw01_a04_07.mdl b/tests/fixtures/broken/ttw01_a04_07.mdl new file mode 100644 index 0000000..33a9bbe Binary files /dev/null and b/tests/fixtures/broken/ttw01_a04_07.mdl differ diff --git a/tests/fixtures/broken/ttw01_a04_16.mdl b/tests/fixtures/broken/ttw01_a04_16.mdl new file mode 100644 index 0000000..230e7a1 Binary files /dev/null and b/tests/fixtures/broken/ttw01_a04_16.mdl differ diff --git a/tests/fixtures/broken/ttw01_a14_01.mdl b/tests/fixtures/broken/ttw01_a14_01.mdl new file mode 100644 index 0000000..60c9e55 Binary files /dev/null and b/tests/fixtures/broken/ttw01_a14_01.mdl differ diff --git a/tests/fixtures/broken/ttw01_g02_02.mdl b/tests/fixtures/broken/ttw01_g02_02.mdl new file mode 100644 index 0000000..7def4e5 Binary files /dev/null and b/tests/fixtures/broken/ttw01_g02_02.mdl differ diff --git a/tests/fixtures/clean/Fx_light_CLR.mdl b/tests/fixtures/clean/Fx_light_CLR.mdl new file mode 100644 index 0000000..5473ddd Binary files /dev/null and b/tests/fixtures/clean/Fx_light_CLR.mdl differ diff --git a/tests/fixtures/clean/boat1.mdl b/tests/fixtures/clean/boat1.mdl new file mode 100644 index 0000000..ce45b56 Binary files /dev/null and b/tests/fixtures/clean/boat1.mdl differ diff --git a/tests/fixtures/clean/c_blbear.mdl b/tests/fixtures/clean/c_blbear.mdl new file mode 100644 index 0000000..5b1ff2a Binary files /dev/null and b/tests/fixtures/clean/c_blbear.mdl differ diff --git a/tests/fixtures/clean/pmh0_head001.mdl b/tests/fixtures/clean/pmh0_head001.mdl new file mode 100644 index 0000000..7f20aaa Binary files /dev/null and b/tests/fixtures/clean/pmh0_head001.mdl differ diff --git a/tests/fixtures/clean/ttw01_a00_01.mdl b/tests/fixtures/clean/ttw01_a00_01.mdl new file mode 100644 index 0000000..72f0214 Binary files /dev/null and b/tests/fixtures/clean/ttw01_a00_01.mdl differ diff --git a/tests/fixtures/oracle.zip b/tests/fixtures/oracle.zip new file mode 100644 index 0000000..580eed5 Binary files /dev/null and b/tests/fixtures/oracle.zip differ diff --git a/tests/fixtures/oracle/README.md b/tests/fixtures/oracle/README.md new file mode 100644 index 0000000..974f415 --- /dev/null +++ b/tests/fixtures/oracle/README.md @@ -0,0 +1,147 @@ +# Oracle Test Fixtures + +These files let you validate the cleanmodels binary compiler against NWN:EE's own internal model compiler — the gold standard. + +## Test layout + +| Directory | Pairs with | Used by | +|---|---|---| +| `ascii/` | `game_binary/` (1:1 by filename) | `TestOracleCompare`, `TestOracleVertexParity`, `TestOracleCompileAll` | +| `game_binary/` | `ascii/` (1:1 by filename) | `TestOracleCompare`, `TestOracleVertexParity` | +| `tangent_pairs/ascii/` | `tangent_pairs/game_binary/` (1:1) | `TestOracleTangents` (baked-tangent meshes only) | +| `tangent_pairs/game_binary/` | `tangent_pairs/ascii/` (1:1) | `TestOracleTangents` | + +Tangent fixtures live in their own directory because the ASCII source and the game binary may come from different revisions of the same model — node names and face counts differ enough to break `TestOracleCompare`'s structural diff, but per-vertex tangent comparison only needs matching world positions, so it survives the drift. + +## Model coverage + +### General oracle (`ascii/` ↔ `game_binary/`) + +| File | Coverage | +|---|---| +| `plc_dummy_only.mdl` | Minimal model — dummy nodes only, no geometry (compile-only) | +| `abp_weaprack_1.mdl` | Large static mesh (48 nodes), no animations | +| `plc_dd27.mdl` | Light + trimesh, single animation | +| `plc_crysblu.mdl` | Reference node + emitter + 8 anims | +| `zlc_o23.mdl` | Emitter + 10 animations | +| `plc_nc03.mdl` | Light + emitter + 10 anims | +| `plc_guillo2.mdl` | Danglymesh + emitter | +| `plc_statdwl.mdl` | Many animations (67) | +| `squid.mdl` | Danglymesh + 21 anims (compile-only — no game binary) | +| `a_dfa2_coat.mdl` | Skin node — complex (compile-only) | +| `tcei0_a01_01.mdl` | AABB node — tileset tile (compile-only) | +| `tin01_d11_01.mdl` | Hak-sourced tile — perfect vert parity baseline | +| `pmh0_head001.mdl` | Character head — body-part dedup-philosophy baseline | +| `pmh0_neck001.mdl` | Character neck — body-part skin (compile-only — ASCII drift vs binary) | +| `Red_M_Torso.mdl` | Character torso — body-part dedup-philosophy baseline | +| `INV_EQP_HELMET.mdl` | Inventory icon — perfect-parity simple case | +| `BUT_CHAT_BAR360.mdl` | UI button — perfect-parity simple case | +| `ctl_compass.mdl` | UI compass — divergent baseline (regression sentinel) | +| `c_marilithe.mdl` | **Danglymesh + 60 anims** creature — perfect parity (zero-baseline) | +| `c_marilith2.mdl` | **Skin + danglymesh + emitter** mega-fixture — documented baseline | +| `c_elemashm.mdl` | **Emitter** ash-elemental — perfect parity | +| `c_nightmare.mdl` | Emitter + 27 anims (compile-only — ASCII says `Tile` but binary classifies `Character`) | +| `PLC_D01.mdl` | **Animated emitter placeable** — perfect parity | +| `tdc01_a01_03.mdl` | **AABB walkmesh tile** — small documented baseline | +| `tdc01_g02_03.mdl` | AABB tile (compile-only — ASCII has 3 degenerate faces game prunes) | +| `wsf10_p01_01.mdl` | **AABB walkmesh tile** (Layonara hak) — `wok` walkmesh baseline | + +### Tangent oracle (`tangent_pairs/`) + +18 fixtures with baked tangents — the only place that exercises the Mikktspace path end-to-end against an oracle. + +| Group | Files | Mean alignment | +|---|---|---| +| `tin01_*` (12) | Hak-sourced tin01 tiles | 0.97 – 1.00 | +| `tdc01_g02_01`, `tdc01_g02_03` | Core game tdc01 tiles | **1.0000** (perfect) | +| `wsf10_p01_01`, `wsf10_s01_02`, `wsf10_s11_04` | Layonara hak wsf10 tiles | **1.0000** (perfect) | +| `TTR01_G02_02` | Core ttr01 tile | **1.0000** (perfect) | + +## Skip list — files deliberately excluded + +These filenames showed up in dump folders but are **not** in the fixture set because the comparison would be invalid. If you recover a matching ASCII for any of them, drop the file in and remove from the list. + +### No ASCII source exists (hak ships pre-compiled binary only) + +| File | Reason | +|---|---| +| `tin01_a03_01.mdl`, `tin01_b14_01.mdl`, `tin01_i01_01.mdl`, `tin01_z11_01.mdl`, `TIN01_Z10_01.mdl`, `tin01_f01_09.mdl` | Hak-only binary tiles | +| `a_ba.mdl`, `a_ba_casts.mdl`, `a_ba_custom.mdl`, `a_ba_med_weap.mdl`, `a_ba_non_combat.mdl` | Hak-only binary appearance models | +| `fx_flame01.mdl`, `gi_armor01.mdl` | Hak-only binary | + +### ASCII drifts from binary (different revision shipped to game) + +| File | Drift | +|---|---| +| `c_nightmare.mdl` | ASCII `classification Tile`, game binary `Character` | +| `pmh0_neck001.mdl` | ASCII has 16 faces; binary has 114 (ASCII is sparse subset) | +| `tdc01_g02_03.mdl` | ASCII has 19 faces on `object01`; game pruned 3 degenerates → 16 | + +These three keep their ASCII for `TestOracleCompileAll` coverage but are **not** paired with a `game_binary/` so `TestOracleCompare` and `TestOracleVertexParity` skip them. + +### Useless for tangent oracle + +| File | Reason | +|---|---| +| `ashto_05[1-4].mdl` | Game binaries lack baked tangents | + +## Workflow — adding a new oracle pair + +### 1 — Get the game to compile a model + +1. Copy your ASCII source into NWN:EE's development folder: + ``` + Documents\Neverwinter Nights\development\ + ``` + +2. Launch NWN:EE and load any area (or create a test module). + +3. Place an asset that loads the model: + - **Placeables** — drop the placeable into the area + - **Tilesets** — load an area using that tileset + - **Creature parts** — place a creature that uses that super-model + +4. Open the **debug console** (`~` key) and run: + ``` + compileloadedmodels + ``` + The game writes binaries to: + ``` + Documents\Neverwinter Nights\compiled_models\ + ``` + +5. Alternatively, use the **Toolset Model Compiler** (Tools → Compile Model) on each file. + +### 2 — Transfer files into this repo + +- ASCII source → `tests/fixtures/oracle/ascii/` +- Game binary → `tests/fixtures/oracle/game_binary/` + +Filenames must match (case-insensitive). + +### 3 — Run the comparison + +```bash +go test ./pkg/mdl/ -run 'TestOracleCompare|TestOracleVertexParity|TestOracleTangents' -v +``` + +What each test enforces: + +- **`TestOracleCompare`** — structural diff (model name, supermodel, classification, node hierarchy, animation names, mesh face counts). Tolerates intentional differences (tangents, AABB split order, vertex counts). +- **`TestOracleVertexParity`** — per-mesh-node GPU vertex count. Defaults to **strict equality** with the game; documented divergences live in `vertParityBaseline` in `oracle_test.go`. Adding a new fixture forces parity unless you explicitly record an expected delta. +- **`TestOracleTangents`** — per-corner |dot(ourTangent, gameTangent)| ≥ alignment floor (currently 0.96 mean, ≤5% bad-corner ratio). Activates only on baked-tangent fixtures. + +### 4 — Smoke test (no game binary needed) + +```bash +go test ./pkg/mdl/ -run TestOracleCompileAll -v +``` + +## Known divergences (not bugs) + +These differences are intentional and documented in code; they don't change render output: + +- **Vertex deduplication philosophy** — the game compiler doesn't bit-deduplicate identical face-corner GPU vertices the way we do. The result: body-part, AABB walkmesh, and animated-mesh outputs end up with more unique GPU verts in the game binary than ours, even though both produce bit-identical render attributes per face corner. Locked in via `vertParityBaseline` in `oracle_test.go`. +- **AABB tree split order** — median-split may differ from game's algorithm; pathing/collision unaffected. +- **Tangent / bitangent data** — game generates these for normal-mapped meshes; we mirror via Mikktspace and validate alignment, not bit equality. +- **Degenerate face elimination** — the game compiler silently strips faces with duplicate vertex indices (e.g. `18 0 9` where two refs collapse). Our compiler keeps them. See `tdc01_g02_03` for an example. diff --git a/tests/fixtures/oracle/ascii/BUT_CHAT_BAR360.mdl b/tests/fixtures/oracle/ascii/BUT_CHAT_BAR360.mdl new file mode 100644 index 0000000..fa61d1f --- /dev/null +++ b/tests/fixtures/oracle/ascii/BUT_CHAT_BAR360.mdl @@ -0,0 +1,105 @@ +#MAXMODEL ASCII +# model: BUT_CHAT_BAR360 +filedependancy BUT_CHAT_BAR360.max +newmodel BUT_CHAT_BAR360 +setsupermodel BUT_CHAT_BAR360 NULL +setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom BUT_CHAT_BAR360 +node dummy BUT_CHAT_BAR360 + parent NULL + #part-number 0 +endnode +node trimesh Plane185 + parent BUT_CHAT_BAR360 + #part-number 1 + ambient 0.100000001 0.100000001 0.100000001 + diffuse 1 1 1 + specular 0.0450000018 0.0450000018 0.0450000018 + shininess 26 + bitmap gui_boxes_ingame + verts 3 + -0.0549999997 0.0274999999 0 + -0.0549999997 -0.0274999999 0 + 0.0549999997 0.0274999999 0 + tverts 3 + 0.0407156013 0.339026988 0 + 0.0434623994 0.174691007 0 + 0.0434545986 0.998242021 0 + faces 1 + 0 1 2 1 0 1 2 1 + position 0.0555997007 0.0928957015 0.5 + orientation 0 0 0 0 +endnode +node trimesh Plane186 + parent Plane185 + #part-number 2 + ambient 0.100000001 0.100000001 0.100000001 + diffuse 1 1 1 + specular 0.0450000018 0.0450000018 0.0450000018 + shininess 26 + bitmap gui_boxes_ingame + verts 3 + 0.0549999997 -0.0274999999 0 + 0.0549999997 0.0274999999 0 + -0.0549999997 0.0274999999 0 + tverts 3 + 0.0434623994 0.174691007 0 + 0.0407156013 0.339026988 0 + 0.0434545986 0.998242021 0 + faces 1 + 0 1 2 1 0 1 2 1 + position 3.49000001 0 0 + orientation 0 0 0 0 +endnode +node trimesh Plane187 + parent Plane186 + #part-number 3 + ambient 0.100000001 0.100000001 0.100000001 + diffuse 1 1 1 + specular 0.0450000018 0.0450000018 0.0450000018 + shininess 26 + bitmap gui_boxes_ingame + verts 4 + -0.0599999987 1.79999995 0 + -0.0599999987 -1.79999995 0 + 0.0599999987 1.79999995 0 + 0.0599999987 -1.79999995 0 + tverts 4 + 0.0187500007 0.940119028 0 + 0.0187500007 -0.00261837011 0 + 0.0281249993 0.940119028 0 + 0.0281249993 -0.00261837011 0 + faces 2 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + position -1.74559999 -0.0328956991 -0.100000001 + orientation 0 0 -1 -1.57079995 +endnode +node trimesh Plane188 + parent Plane187 + #part-number 4 + ambient 0.100000001 0.100000001 0.100000001 + diffuse 1 1 1 + specular 0.0450000018 0.0450000018 0.0450000018 + shininess 26 + bitmap gui_spl_btn_up + verts 4 + -0.0549999997 0.0350000001 0 + -0.0549999997 -0.0350000001 0 + 0.0549999997 0.0350000001 0 + 0.0549999997 -0.0350000001 0 + tverts 4 + 0.1875 0.75 0 + 0.1875 0.3125 0 + 0.875 0.75 0 + 0.875 0.3125 0 + faces 2 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + position -0.00499999989 -0.00499999989 0.100000001 + orientation 0 0 1 -1.57079995 +endnode +endmodelgeom BUT_CHAT_BAR360 + +donemodel BUT_CHAT_BAR360 diff --git a/tests/fixtures/oracle/ascii/INV_EQP_HELMET.mdl b/tests/fixtures/oracle/ascii/INV_EQP_HELMET.mdl new file mode 100644 index 0000000..3742222 --- /dev/null +++ b/tests/fixtures/oracle/ascii/INV_EQP_HELMET.mdl @@ -0,0 +1,46 @@ +#MAXMODEL ASCII +# model: INV_EQP_HELMET +filedependancy INV_EQP_HELMET.max +newmodel INV_EQP_HELMET +setsupermodel INV_EQP_HELMET NULL +classification character +setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom INV_EQP_HELMET +node dummy INV_EQP_HELMET + parent NULL + #part-number 0 +endnode +node trimesh Plane100 + parent INV_EQP_HELMET + #part-number 1 + ambient 0.100000001 0.100000001 0.100000001 + diffuse 1 1 1 + specular 0.0450000018 0.0450000018 0.0450000018 + shininess 26 + bitmap gui_boxes_ingame + verts 4 + -0.330000013 0.389999986 0 + -0.330000013 -0.389999986 0 + 0.330000013 0.389999986 0 + 0.330000013 -0.389999986 0 + tverts 4 + 0.00378606003 0.949024975 0 + 0.00378602999 -0.0131457001 0 + 0.0117188003 0.949024975 0 + 0.0117186997 -0.013146 0 + faces 2 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + position 0.330000013 0.389999986 0 + orientation 0 0 0 0 +endnode +node dummy icon + parent INV_EQP_HELMET + #part-number 2 + position 0.340000004 0.389999986 0.100000001 + orientation 0 0 0 0 +endnode +endmodelgeom INV_EQP_HELMET + +donemodel INV_EQP_HELMET diff --git a/tests/fixtures/oracle/ascii/PLC_D01.mdl b/tests/fixtures/oracle/ascii/PLC_D01.mdl new file mode 100644 index 0000000..5ce1570 --- /dev/null +++ b/tests/fixtures/oracle/ascii/PLC_D01.mdl @@ -0,0 +1,979 @@ +#MAXMODEL ASCII +# model: PLC_D01 +filedependancy PLC_D01.max +newmodel PLC_D01 +setsupermodel PLC_D01 NULL +classification character +setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom PLC_D01 +node dummy PLC_D01 + parent NULL + #part-number 0 +endnode +node trimesh Box38 + parent PLC_D01 + #part-number 1 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap PLC_Rck + verts 16 + -0.219802007 -0.172013998 0.304547995 + -0.219802007 0.267589986 0.304547995 + 0.219802007 0.267589986 0.304547995 + 0.219802007 -0.172013998 0.304547995 + -0.0527524985 -0.0590354018 0.414449006 + -0.160439 -0.112650998 0.414449006 + 0.0527524985 -0.0590354018 0.414449006 + 0.160439 -0.112650998 0.414449006 + 0.160439 0.208228007 0.414449006 + -0.160439 0.208228007 0.414449006 + 0.0527524985 0.154612005 0.414449006 + -0.0527524985 0.154612005 0.414449006 + -0.0527524985 0.154612005 0.372556001 + -0.0527524985 -0.0590354018 0.372556001 + 0.0527524985 0.154612005 0.372556001 + 0.0527524985 -0.0590354018 0.372556001 + tverts 25 + 0.0409798995 0.0470972992 0 + 0.04098 0.459908009 0 + 0.453790009 0.459908009 0 + 0.453790009 0.0470971987 0 + 0.197848007 0.153190002 0 + 0.296921998 0.153190002 0 + 0.460072011 0.110192001 0 + 0.0257242993 0.110192001 0 + 0.0957382992 0.218778998 0 + 0.389216989 0.218778998 0 + 0.0595409982 0.216878995 0 + 0.421065986 0.216878995 0 + 0.362861007 0.307260007 0 + 0.118587002 0.307260007 0 + 0.0257243998 0.110192001 0 + 0.296921998 0.353814989 0 + 0.197848007 0.353814989 0 + 0.328153998 0.272807002 0 + 0.152453005 0.307260007 0 + 0.152453005 0.272807002 0 + 0.200289994 0.216363996 0 + 0.0960460007 0.216363996 0 + 0.200289994 0.174970999 0 + 0.0960460007 0.174970999 0 + 0.328153998 0.307260007 0 + faces 26 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 4 5 6 1 4 0 5 1 + 7 6 5 1 3 5 0 1 + 0 3 7 2 6 7 8 5 + 7 5 0 2 8 9 6 5 + 3 2 8 4 10 11 12 4 + 8 7 3 4 12 13 10 4 + 2 1 9 2 14 6 9 6 + 9 8 2 2 9 8 14 6 + 1 0 5 4 11 10 13 3 + 5 9 1 4 13 12 11 3 + 7 8 6 1 3 2 5 1 + 9 5 4 1 1 0 4 1 + 6 8 10 1 5 2 15 1 + 8 9 10 1 2 1 15 1 + 10 9 11 1 15 1 16 1 + 9 4 11 1 1 4 16 1 + 12 4 13 2 17 18 19 3 + 6 14 15 2 18 17 19 4 + 4 6 13 4 20 21 22 5 + 15 13 6 4 23 22 21 5 + 10 12 14 4 21 22 23 6 + 6 10 14 2 18 24 17 4 + 11 4 12 2 24 18 17 3 + 10 11 12 4 21 20 22 6 + position 0 -0.0941162035 -0.304547995 + orientation 0 0 0 0 +endnode +node trimesh Mesh62 + parent Box38 + #part-number 2 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap PLC_black00 + verts 4 + -0.0527524985 -0.0590354018 0.372556001 + 0.0527524985 0.154612005 0.372556001 + -0.0527524985 0.154612005 0.372556001 + 0.0527524985 -0.0590354018 0.372556001 + tverts 4 + 0.05 0.05 0 + 0.05 0.25 0 + 0.25 0.05 0 + 0.25 0.25 0 + faces 2 + 0 1 2 1 0 1 2 2 + 1 0 3 1 1 0 3 2 + position 0 0 0 + orientation 0 0 0 0 +endnode +node trimesh Box39 + parent Box38 + #part-number 3 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap PLC_creats + verts 12 + -0.0228959993 -0.0241177995 0.00300262007 + -0.0228959993 0.0191795006 -0.0119057996 + 0.0228959993 0.0191795006 -0.0119057996 + 0.0228959993 -0.0241177995 0.00300262007 + -0.0159000009 0.267717004 0.829062998 + 0.0159000009 0.267717004 0.829062998 + 0.0159000009 0.297784001 0.818709016 + -0.0159000009 0.297784001 0.818709016 + 0.0333264992 0.251477987 0.835429013 + -0.0333264992 0.251477987 0.835429013 + 0.0333264992 0.314500004 0.813728988 + -0.0333264992 0.314500004 0.813728988 + tverts 8 + 0.954384983 0.545696974 0 + 0.546810985 0.543137014 0 + 0.547990024 0.507955015 0 + 0.955563009 0.510514975 0 + 0.618548989 0.507955015 0 + 0.617371023 0.543137014 0 + 0.617371023 0.543137014 0 + 0.618548989 0.507955015 0 + faces 18 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 0 3 4 2 3 0 4 5 + 5 4 3 2 5 4 0 5 + 3 2 5 4 3 0 4 4 + 6 5 2 4 5 4 0 4 + 2 1 6 2 3 0 4 6 + 7 6 1 2 5 4 0 6 + 1 0 7 4 3 0 4 3 + 4 7 0 4 5 4 0 3 + 4 5 8 1 4 5 6 5 + 8 9 4 1 5 4 7 5 + 5 6 10 8 4 5 6 4 + 10 8 5 16 5 4 7 4 + 6 7 11 1 4 5 6 6 + 11 10 6 1 5 4 7 6 + 7 4 9 8 4 5 6 3 + 9 11 7 16 5 4 7 3 + position 0 0.0502575003 0.362046003 + orientation 0 0 0 0 +endnode +node trimesh Mesh63 + parent Box39 + #part-number 4 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap PLC_creats + verts 8 + -0.0333264992 0.0167075004 0.150885999 + 0.0333264992 0.0167075004 0.150885999 + 0.0333264992 0.0797291026 0.129186004 + -0.0333264992 0.0797291026 0.129186004 + 0.0333264992 -0.0797291026 -0.129186004 + -0.0333264992 -0.0797291026 -0.129186004 + 0.0333264992 -0.0167075004 -0.150885999 + -0.0333264992 -0.0167075004 -0.150885999 + tverts 12 + 0.48943001 0.0847607031 0 + 0.523449004 0.0150116002 0 + 0.926796019 0.211737007 0 + 0.892777026 0.281486005 0 + 0.443919986 0.363579005 0 + 0.445293009 0.116997004 0 + 0.488388002 0.362599999 0 + 0.489760995 0.116019003 0 + 0.0525089987 0.114551999 0 + 0.0516430996 0.371980995 0 + 0.00554201985 0.114202999 0 + 0.00467603002 0.37163201 0 + faces 10 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 1 5 1 4 5 6 5 + 0 5 1 1 7 6 5 5 + 6 2 4 1 8 9 10 4 + 1 4 2 1 11 10 9 4 + 7 3 6 1 4 5 6 6 + 2 6 3 1 7 6 5 6 + 5 0 7 1 8 9 10 3 + 3 7 0 1 11 10 9 3 + position 0 0.331207007 0.964614987 + orientation 0 0 0 0 +endnode +node emitter ChunkyWood43 + parent PLC_D01 + #part-number 5 + p2p 0 + p2p_sel 1 + affectedByWind 0 + m_isTinted 0 + bounce 1 + random 0 + inherit 1 + inheritvel 0 + inherit_local 0 + splat 0 + inherit_part 0 + renderorder 0 + spawntype 0 + update Explosion + render Normal + blend Normal + texture fxpa_cloud02 + chunkName PLC_Chunk_W01 + xgrid 5 + ygrid 5 + loop 0 + deadspace 0 + twosidedtex 0 + blastRadius 0 + blastLength 0 + position -0.00761535997 0.0326085985 0.323778987 + orientation 0 0 0 0 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 1 + alphaEnd 1 + sizeStart 0.100000001 + sizeEnd 0.100000001 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 24 + birthrate 3 + lifeExp 0.75 + mass 3 + spread 1.22172999 + particleRot 5 + velocity 8 + randvel 0.300000012 + fps 0 + xsize 89 + ysize 40 + bounce_co 0.5 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 +endnode +node emitter fire!28 + parent PLC_D01 + #part-number 6 + p2p 0 + p2p_sel 1 + affectedByWind 0 + m_isTinted 1 + bounce 0 + random 0 + inherit 1 + inheritvel 0 + inherit_local 0 + splat 0 + inherit_part 0 + renderorder 0 + spawntype 0 + update Explosion + render Normal + blend Normal + texture fxpa_smoke01 + xgrid 4 + ygrid 4 + loop 0 + deadspace 0 + twosidedtex 1 + blastRadius 0.200000003 + blastLength 1 + position -0.00761535997 0.0326085985 0.249735996 + orientation -1 0 0 -1.57079995 + colorStart 0.474510014 0.439215988 0.36470601 + colorEnd 0.819607973 0.79607898 0.709803998 + alphaStart 1 + alphaEnd 0 + sizeStart 4 + sizeEnd 1 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 24 + birthrate 10 + lifeExp 2.5 + mass 0.0900000036 + spread 2.96706009 + particleRot 0.5 + velocity 2 + randvel 0.5 + fps 10 + xsize 100 + ysize 99 + bounce_co 0 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 +endnode +node dummy D01_hand + parent PLC_D01 + #part-number 7 + position 0.0039843698 -0.505195022 0.560707986 + orientation 0 0 0 0 +endnode +node dummy D01_head + parent PLC_D01 + #part-number 8 + position 0.0039843698 0.0108252 1.80260003 + orientation 0 0 0 0 +endnode +node dummy D01_head_hit + parent PLC_D01 + #part-number 9 + position 0.0039843698 0.0108252 0.115206003 + orientation 0 0 0 0 +endnode +node dummy D01_impact + parent PLC_D01 + #part-number 10 + position 0.0039843698 0.0110010002 0.0538331009 + orientation 0 0 0 0 +endnode +node dummy D01_ground + parent PLC_D01 + #part-number 11 + position -0.00363280997 0.00698729977 0 + orientation 0 0 0 0 +endnode +endmodelgeom PLC_D01 + +#MAXANIM ASCII +newanim on PLC_D01 + length 0.0333333015 + transtime 0.25 + animroot PLC_D01 +node dummy PLC_D01 + parent NULL + #part-number 0 +endnode +node dummy Box38 + parent PLC_D01 + #part-number 1 +endnode +node dummy Mesh62 + parent Box38 + #part-number 2 +endnode +node dummy Box39 + parent Box38 + #part-number 3 + orientationkey 2 + 0 0 0 0 0 + 0.0333333015 0 0 0 0 +endnode +node dummy Mesh63 + parent Box39 + #part-number 4 +endnode +node dummy PLC_D01_pwk + parent PLC_D01 + #part-number -1 +endnode +node dummy PLC_D01_wg + parent PLC_D01_pwk + #part-number 6 +endnode +node dummy D01_pwk_use02 + parent PLC_D01_pwk + #part-number 7 +endnode +node dummy D01_pwk_use01 + parent PLC_D01_pwk + #part-number 8 +endnode +node emitter ChunkyWood43 + parent PLC_D01 + #part-number 5 +endnode +node emitter fire!28 + parent PLC_D01 + #part-number 6 +endnode +node dummy D01_hand + parent PLC_D01 + #part-number 7 +endnode +node dummy D01_head + parent PLC_D01 + #part-number 8 +endnode +node dummy D01_head_hit + parent PLC_D01 + #part-number 9 +endnode +node dummy D01_impact + parent PLC_D01 + #part-number 10 +endnode +node dummy D01_ground + parent PLC_D01 + #part-number 11 +endnode +doneanim on PLC_D01 + +#MAXANIM ASCII +newanim on2off PLC_D01 + length 0.633333027 + transtime 0.25 + animroot PLC_D01 +node dummy PLC_D01 + parent NULL + #part-number 0 +endnode +node dummy Box38 + parent PLC_D01 + #part-number 1 +endnode +node dummy Mesh62 + parent Box38 + #part-number 2 +endnode +node dummy Box39 + parent Box38 + #part-number 3 + orientationkey 4 + 0 0 0 0 0 + 0.133332998 -1 -0 -0 -0.0802851021 + 0.5 -1 -0 -0 -0.533415973 + 0.633333027 -1 -0 -0 -0.802851021 +endnode +node dummy Mesh63 + parent Box39 + #part-number 4 +endnode +node dummy PLC_D01_pwk + parent PLC_D01 + #part-number -1 +endnode +node dummy PLC_D01_wg + parent PLC_D01_pwk + #part-number 6 +endnode +node dummy D01_pwk_use02 + parent PLC_D01_pwk + #part-number 7 +endnode +node dummy D01_pwk_use01 + parent PLC_D01_pwk + #part-number 8 +endnode +node emitter ChunkyWood43 + parent PLC_D01 + #part-number 5 +endnode +node emitter fire!28 + parent PLC_D01 + #part-number 6 +endnode +node dummy D01_hand + parent PLC_D01 + #part-number 7 +endnode +node dummy D01_head + parent PLC_D01 + #part-number 8 +endnode +node dummy D01_head_hit + parent PLC_D01 + #part-number 9 +endnode +node dummy D01_impact + parent PLC_D01 + #part-number 10 +endnode +node dummy D01_ground + parent PLC_D01 + #part-number 11 +endnode +doneanim on2off PLC_D01 + +#MAXANIM ASCII +newanim off PLC_D01 + length 0.0333333015 + transtime 0.25 + animroot PLC_D01 +node dummy PLC_D01 + parent NULL + #part-number 0 +endnode +node dummy Box38 + parent PLC_D01 + #part-number 1 +endnode +node dummy Mesh62 + parent Box38 + #part-number 2 +endnode +node dummy Box39 + parent Box38 + #part-number 3 + orientationkey 2 + 0 -1 -0 -0 -0.802851021 + 0.0333333015 -1 -0 -0 -0.802851021 +endnode +node dummy Mesh63 + parent Box39 + #part-number 4 +endnode +node dummy PLC_D01_pwk + parent PLC_D01 + #part-number -1 +endnode +node dummy PLC_D01_wg + parent PLC_D01_pwk + #part-number 6 +endnode +node dummy D01_pwk_use02 + parent PLC_D01_pwk + #part-number 7 +endnode +node dummy D01_pwk_use01 + parent PLC_D01_pwk + #part-number 8 +endnode +node emitter ChunkyWood43 + parent PLC_D01 + #part-number 5 +endnode +node emitter fire!28 + parent PLC_D01 + #part-number 6 +endnode +node dummy D01_hand + parent PLC_D01 + #part-number 7 +endnode +node dummy D01_head + parent PLC_D01 + #part-number 8 +endnode +node dummy D01_head_hit + parent PLC_D01 + #part-number 9 +endnode +node dummy D01_impact + parent PLC_D01 + #part-number 10 +endnode +node dummy D01_ground + parent PLC_D01 + #part-number 11 +endnode +doneanim off PLC_D01 + +#MAXANIM ASCII +newanim off2on PLC_D01 + length 0.666666985 + transtime 0.25 + animroot PLC_D01 +node dummy PLC_D01 + parent NULL + #part-number 0 +endnode +node dummy Box38 + parent PLC_D01 + #part-number 1 +endnode +node dummy Mesh62 + parent Box38 + #part-number 2 +endnode +node dummy Box39 + parent Box38 + #part-number 3 + orientationkey 4 + 0 -1 -0 -0 -0.802851021 + 0.166666999 -1 -0 -0 -0.682424009 + 0.56666702 -1 -0 -0 -0.183841005 + 0.666666985 0 0 0 0 +endnode +node dummy Mesh63 + parent Box39 + #part-number 4 +endnode +node dummy PLC_D01_pwk + parent PLC_D01 + #part-number -1 +endnode +node dummy PLC_D01_wg + parent PLC_D01_pwk + #part-number 6 +endnode +node dummy D01_pwk_use02 + parent PLC_D01_pwk + #part-number 7 +endnode +node dummy D01_pwk_use01 + parent PLC_D01_pwk + #part-number 8 +endnode +node emitter ChunkyWood43 + parent PLC_D01 + #part-number 5 +endnode +node emitter fire!28 + parent PLC_D01 + #part-number 6 +endnode +node dummy D01_hand + parent PLC_D01 + #part-number 7 +endnode +node dummy D01_head + parent PLC_D01 + #part-number 8 +endnode +node dummy D01_head_hit + parent PLC_D01 + #part-number 9 +endnode +node dummy D01_impact + parent PLC_D01 + #part-number 10 +endnode +node dummy D01_ground + parent PLC_D01 + #part-number 11 +endnode +doneanim off2on PLC_D01 + +#MAXANIM ASCII +newanim damage PLC_D01 + length 0.100000001 + transtime 0 + animroot PLC_D01 +node dummy PLC_D01 + parent NULL + #part-number 0 +endnode +node dummy Box38 + parent PLC_D01 + #part-number 1 + positionkey 3 + 0 0 -0.0941162035 -0.304547995 + 0.0333333015 0 -0.0941162035 -0.290439993 + 0.100000001 0 -0.0941162035 -0.304547995 + orientationkey 4 + 0 0 0 0 0 + 0.0333333015 0.992095947 -0.123784982 -0.0205656979 -0.0703487992 + 0.0666666999 -0.706880808 0.707284749 0.00823276769 -0.0740415975 + 0.100000001 0 0 0 0 +endnode +node dummy Mesh62 + parent Box38 + #part-number 2 +endnode +node dummy Box39 + parent Box38 + #part-number 3 +endnode +node dummy Mesh63 + parent Box39 + #part-number 4 +endnode +node dummy PLC_D01_pwk + parent PLC_D01 + #part-number -1 +endnode +node dummy PLC_D01_wg + parent PLC_D01_pwk + #part-number 6 +endnode +node dummy D01_pwk_use02 + parent PLC_D01_pwk + #part-number 7 +endnode +node dummy D01_pwk_use01 + parent PLC_D01_pwk + #part-number 8 +endnode +node emitter ChunkyWood43 + parent PLC_D01 + #part-number 5 +endnode +node emitter fire!28 + parent PLC_D01 + #part-number 6 +endnode +node dummy D01_hand + parent PLC_D01 + #part-number 7 +endnode +node dummy D01_head + parent PLC_D01 + #part-number 8 +endnode +node dummy D01_head_hit + parent PLC_D01 + #part-number 9 +endnode +node dummy D01_impact + parent PLC_D01 + #part-number 10 +endnode +node dummy D01_ground + parent PLC_D01 + #part-number 11 +endnode +doneanim damage PLC_D01 + +#MAXANIM ASCII +newanim die PLC_D01 + length 0.200000003 + transtime 0 + animroot PLC_D01 + event 0.100000001 detonate + event 0.133332998 detonate +node dummy PLC_D01 + parent NULL + #part-number 0 +endnode +node dummy Box38 + parent PLC_D01 + #part-number 1 + positionkey 4 + 0 0 -0.0941162035 -0.290439993 + 0.0666666999 0 -0.0941162035 -0.304547995 + 0.166666999 0.160148993 -0.0941162035 -5.28464985 + 0.200000003 0.160148993 -0.0941162035 -5.28464985 + orientationkey 3 + 0 0.992095947 -0.123784982 -0.0205656979 -0.0703487992 + 0.0333333015 -0.706880808 0.707284749 0.00823276769 -0.0740415975 + 0.0666666999 0 0 0 0 +endnode +node dummy Mesh62 + parent Box38 + #part-number 2 +endnode +node dummy Box39 + parent Box38 + #part-number 3 +endnode +node dummy Mesh63 + parent Box39 + #part-number 4 +endnode +node dummy PLC_D01_pwk + parent PLC_D01 + #part-number -1 +endnode +node dummy PLC_D01_wg + parent PLC_D01_pwk + #part-number 6 +endnode +node dummy D01_pwk_use02 + parent PLC_D01_pwk + #part-number 7 +endnode +node dummy D01_pwk_use01 + parent PLC_D01_pwk + #part-number 8 +endnode +node emitter ChunkyWood43 + parent PLC_D01 + #part-number 5 +endnode +node emitter fire!28 + parent PLC_D01 + #part-number 6 +endnode +node dummy D01_hand + parent PLC_D01 + #part-number 7 +endnode +node dummy D01_head + parent PLC_D01 + #part-number 8 +endnode +node dummy D01_head_hit + parent PLC_D01 + #part-number 9 +endnode +node dummy D01_impact + parent PLC_D01 + #part-number 10 +endnode +node dummy D01_ground + parent PLC_D01 + #part-number 11 +endnode +doneanim die PLC_D01 + +#MAXANIM ASCII +newanim dead PLC_D01 + length 0.0333333015 + transtime 0 + animroot PLC_D01 +node dummy PLC_D01 + parent NULL + #part-number 0 +endnode +node dummy Box38 + parent PLC_D01 + #part-number 1 + positionkey 2 + 0 0.160148993 -0.0941162035 -5.28464985 + 0.0333333015 0.160148993 -0.0941162035 -5.28464985 +endnode +node dummy Mesh62 + parent Box38 + #part-number 2 +endnode +node dummy Box39 + parent Box38 + #part-number 3 +endnode +node dummy Mesh63 + parent Box39 + #part-number 4 +endnode +node dummy PLC_D01_pwk + parent PLC_D01 + #part-number -1 +endnode +node dummy PLC_D01_wg + parent PLC_D01_pwk + #part-number 6 +endnode +node dummy D01_pwk_use02 + parent PLC_D01_pwk + #part-number 7 +endnode +node dummy D01_pwk_use01 + parent PLC_D01_pwk + #part-number 8 +endnode +node emitter ChunkyWood43 + parent PLC_D01 + #part-number 5 +endnode +node emitter fire!28 + parent PLC_D01 + #part-number 6 +endnode +node dummy D01_hand + parent PLC_D01 + #part-number 7 +endnode +node dummy D01_head + parent PLC_D01 + #part-number 8 +endnode +node dummy D01_head_hit + parent PLC_D01 + #part-number 9 +endnode +node dummy D01_impact + parent PLC_D01 + #part-number 10 +endnode +node dummy D01_ground + parent PLC_D01 + #part-number 11 +endnode +doneanim dead PLC_D01 + +#MAXANIM ASCII +newanim default PLC_D01 + length 0 + transtime 0.25 + animroot PLC_D01 +node dummy PLC_D01 + parent NULL + #part-number 0 +endnode +node dummy Box38 + parent PLC_D01 + #part-number 1 + position 0 -0.0941162035 -0.304547995 + orientation 0 0 0 0 +endnode +node dummy Mesh62 + parent Box38 + #part-number 2 +endnode +node dummy Box39 + parent Box38 + #part-number 3 +endnode +node dummy Mesh63 + parent Box39 + #part-number 4 +endnode +node dummy PLC_D01_pwk + parent PLC_D01 + #part-number -1 +endnode +node dummy PLC_D01_wg + parent PLC_D01_pwk + #part-number 6 +endnode +node dummy D01_pwk_use02 + parent PLC_D01_pwk + #part-number 7 +endnode +node dummy D01_pwk_use01 + parent PLC_D01_pwk + #part-number 8 +endnode +node emitter ChunkyWood43 + parent PLC_D01 + #part-number 5 +endnode +node emitter fire!28 + parent PLC_D01 + #part-number 6 +endnode +node dummy D01_hand + parent PLC_D01 + #part-number 7 +endnode +node dummy D01_head + parent PLC_D01 + #part-number 8 +endnode +node dummy D01_head_hit + parent PLC_D01 + #part-number 9 +endnode +node dummy D01_impact + parent PLC_D01 + #part-number 10 +endnode +node dummy D01_ground + parent PLC_D01 + #part-number 11 +endnode +doneanim default PLC_D01 + +donemodel PLC_D01 diff --git a/tests/fixtures/oracle/ascii/Red_M_Torso.mdl b/tests/fixtures/oracle/ascii/Red_M_Torso.mdl new file mode 100644 index 0000000..4f2f11f --- /dev/null +++ b/tests/fixtures/oracle/ascii/Red_M_Torso.mdl @@ -0,0 +1,214 @@ +#MAXMODEL ASCII +# model: Red_M_Torso +filedependancy Red_M_Torso.max +newmodel Red_M_Torso +setsupermodel Red_M_Torso NULL +classification effect +setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom Red_M_Torso +node dummy Red_M_Torso + parent NULL + #part-number 0 +endnode +node trimesh torso_g + parent Red_M_Torso + #part-number 1 + ambient 0.560783982 0 0 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap chunk64 + verts 37 + 0.155836999 -0.175873995 0.271131009 + 0.166397005 -0.159642994 0.406342 + -0.000365698012 -0.194232002 0.30271399 + 0.126266003 -0.0734608993 0.348221987 + 0.174052998 -0.0483166985 0.444099009 + 0.0454481989 -0.116549 0.494978011 + -0.00248345011 -0.167238995 0.449117988 + -0.00248345011 -0.060153801 0.499538988 + -0.00158549997 -0.104835004 -0.00910982024 + -0.0892907009 -0.0332180001 0.102706 + 0.00839946046 -0.0333359987 0.103607997 + 0.0648586974 -0.0267944001 0.0706136003 + 0.0918266997 -0.0830219984 -0.00371524994 + -0.000365699001 0.109417997 0.263004005 + 0.173364997 0.0742561966 0.267780006 + 0.162973002 0.0603751987 0.231373996 + -0.000365702988 0.0638381019 0.415499002 + 0.165083006 0.0401920006 0.393225998 + 0.166077003 -0.0483166985 0.148383006 + 0.149347007 -0.0190571006 -0.00338881998 + 0.083949998 0.0484137982 0.168167993 + 0.0881725028 -0.140887007 0.200614005 + 0.0274823997 0.0576133989 0.226659 + -0.00248345011 -0.116549 0.494978011 + -0.0910850018 -0.129010007 0.141783997 + -0.167128995 -0.159642994 0.406342 + -0.157807007 -0.169131994 0.237734005 + -0.236564994 -0.0738179982 0.352212012 + -0.174784005 -0.0483167991 0.444099009 + -0.0461796001 -0.116549 0.494978011 + -0.0926460996 -0.0830219984 -0.00371528999 + -0.150121003 -0.0190571006 -0.00338891009 + -0.174096003 0.0742560998 0.267780006 + -0.163705006 0.0603751987 0.231373996 + -0.165813997 0.0401919 0.393225998 + -0.166930005 -0.0483166985 0.148383006 + -0.130611002 0.0362835005 0.227970004 + tverts 62 + 0.588402987 0.247273996 0 + 0.579302013 0.41180101 0 + 0.762610018 0.278795004 0 + 0.821856976 0.606022 0 + 0.780951977 0.677730978 0 + 0.848430991 0.698652983 0 + 0.722223997 0.48229301 0 + 0.763287008 0.429453999 0 + 0.798307002 0.484203994 0 + 0.944782019 0.474693 0 + 0.777529001 0.488981992 0 + 0.770995021 0.578145027 0 + 0.72911799 0.638296008 0 + 0.768293977 0.638296008 0 + 0.808615029 0.638296008 0 + 0.815598011 0.596466005 0 + 0.779965997 0.284862995 0 + 0.955132008 0.290511012 0 + 0.949958026 0.259449989 0 + 0.781410992 0.419364005 0 + 0.955495 0.376599997 0 + 0.812626004 0.772297978 0 + 0.724336982 0.800642014 0 + 0.640305996 0.698652983 0 + 0.726696014 0.592517018 0 + 0.936834991 0.0335406996 0 + 0.865024984 0.0422393009 0 + 0.579900026 0.177046999 0 + 0.663932979 0.193794996 0 + 0.815672994 0.703643978 0 + 0.84306401 0.650189996 0 + 0.767753005 0.721136987 0 + 0.780152977 0.0468836986 0 + 0.571462989 0.458934009 0 + 0.767040014 0.479178995 0 + 0.770623028 0.482497007 0 + 0.762567997 0.0429269001 0 + 0.658477008 0.0475521982 0 + 0.59473902 0.0448109992 0 + 0.983255029 0.157721996 0 + 0.698714972 0.789092004 0 + 0.663551986 0.193794996 0 + 0.579859018 0.41180101 0 + 0.588940024 0.247273996 0 + 0.520401001 0.337249994 0 + 0.571650982 0.458934009 0 + 0.722057998 0.48229301 0 + 0.944968998 0.474693 0 + 0.790512979 0.481860995 0 + 0.727515996 0.596466005 0 + 0.70007199 0.650189996 0 + 0.954841971 0.290511012 0 + 0.949913025 0.259449989 0 + 0.954976976 0.376599997 0 + 0.985159993 0.331263989 0 + 0.580052972 0.177046999 0 + 0.936932981 0.033540599 0 + 0.864562988 0.0422392003 0 + 0.594835997 0.0448109992 0 + 0.720978022 0.703643978 0 + 0.658775985 0.0475521982 0 + 0.983407974 0.157721996 0 + faces 70 + 0 1 2 1 0 1 2 1 + 1 3 4 1 3 4 5 1 + 1 5 6 1 1 6 7 1 + 5 4 7 1 8 9 10 1 + 8 9 10 1 11 12 13 1 + 8 11 12 1 11 14 15 1 + 13 14 15 1 16 17 18 1 + 16 17 14 1 19 20 17 1 + 7 4 16 1 10 9 19 1 + 17 4 3 1 21 5 4 1 + 17 3 14 1 21 4 22 1 + 18 3 0 1 23 4 24 1 + 15 19 20 1 18 25 26 1 + 18 0 21 1 27 0 28 1 + 20 19 11 1 29 30 14 1 + 20 11 22 1 29 14 31 1 + 22 10 9 1 31 13 12 1 + 13 16 14 1 16 19 17 1 + 13 20 22 1 16 26 32 1 + 15 20 13 1 18 26 16 1 + 1 4 5 1 1 33 6 1 + 6 5 23 1 7 6 34 1 + 23 5 7 1 35 8 10 1 + 3 1 0 1 4 3 24 1 + 8 21 2 1 36 28 2 1 + 2 1 6 1 2 1 7 1 + 21 0 2 1 28 0 2 1 + 12 19 21 1 37 38 28 1 + 18 19 15 1 39 25 18 1 + 16 4 17 1 19 9 20 1 + 14 3 15 1 22 4 40 1 + 8 2 24 1 36 2 41 1 + 25 26 2 1 42 43 2 1 + 27 25 28 1 44 42 45 1 + 29 25 6 1 46 42 7 1 + 28 29 7 1 47 48 10 1 + 9 30 31 1 12 49 50 1 + 32 13 33 1 51 16 52 1 + 34 16 32 1 53 19 51 1 + 28 7 16 1 47 10 19 1 + 28 34 27 1 47 53 54 1 + 27 34 32 1 54 53 51 1 + 27 35 26 1 44 55 43 1 + 31 33 36 1 56 52 57 1 + 24 35 31 1 41 55 58 1 + 31 36 9 1 50 59 12 1 + 9 36 22 1 12 59 31 1 + 16 13 32 1 19 16 51 1 + 36 13 22 1 57 16 32 1 + 36 33 13 1 57 52 16 1 + 28 25 29 1 45 42 46 1 + 25 27 26 1 42 44 43 1 + 25 2 6 1 42 2 7 1 + 26 24 2 1 43 41 2 1 + 30 8 24 1 60 36 41 1 + 35 27 33 1 61 54 52 1 + 28 16 34 1 47 19 53 1 + 27 32 33 1 54 51 52 1 + 18 21 19 1 27 28 38 1 + 3 18 15 1 4 23 40 1 + 26 35 24 1 43 55 41 1 + 31 35 33 1 56 61 52 1 + 9 8 30 1 12 11 49 1 + 31 30 24 1 58 60 41 1 + 12 11 19 1 15 14 30 1 + 8 12 21 1 36 37 28 1 + 29 23 7 1 48 35 10 1 + 6 23 29 1 7 34 46 1 + 22 11 10 1 31 14 13 1 + 8 10 11 1 11 13 14 1 + position 0.000405121013 0.0106384996 -0.256958008 + orientation 0.983515561 -0.180813923 0.00186976907 -0.20244801 +endnode +endmodelgeom Red_M_Torso + +#MAXANIM ASCII +newanim impact Red_M_Torso + length 0.966666996 + transtime 0 + animroot Red_M_Torso +node dummy Red_M_Torso + parent NULL + #part-number 0 +endnode +node dummy torso_g + parent Red_M_Torso + #part-number 1 +endnode +doneanim impact Red_M_Torso + +donemodel Red_M_Torso diff --git a/tests/fixtures/oracle/ascii/a_dfa2_coat.mdl b/tests/fixtures/oracle/ascii/a_dfa2_coat.mdl new file mode 100644 index 0000000..343aa75 --- /dev/null +++ b/tests/fixtures/oracle/ascii/a_dfa2_coat.mdl @@ -0,0 +1,31612 @@ +#MAXMODEL ASCII +# model: a_dfa2_coat +filedependancy a_dfa2_coat.max +newmodel a_dfa2_coat +setsupermodel a_dfa2_coat a_ba2_coat +classification character +setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom a_dfa2_coat +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + shadow 0 + render 0 + bitmap rootdummy + verts 8 + -0.0226924997 0.0194506999 -0.0194506999 + -0.0226924997 0.0194506999 0.0194506999 + 0.0226924997 0.0194506999 0.0194506999 + 0.0226924997 0.0194506999 -0.0194506999 + -0.0226924997 -0.0194505993 -0.0194506999 + 0.0226924997 -0.0194505993 -0.0194506999 + 0.0226924997 -0.0194505993 0.0194506999 + -0.0226924997 -0.0194505993 0.0194506999 + faces 12 + 0 1 2 1 0 0 0 2 + 2 3 0 1 0 0 0 2 + 4 5 6 1 0 0 0 1 + 6 7 4 1 0 0 0 1 + 0 3 5 2 0 0 0 5 + 5 4 0 2 0 0 0 5 + 3 2 6 4 0 0 0 4 + 6 5 3 4 0 0 0 4 + 2 1 7 2 0 0 0 6 + 7 6 2 2 0 0 0 6 + 1 0 4 4 0 0 0 3 + 4 7 1 4 0 0 0 3 + position 0.000249022996 -0.0325529017 1.19227004 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + render 0 + bitmap torso_g + verts 47 + -8.25206007e-006 0.185027003 0.181486994 + -0.177849993 0.177976996 0.0662918016 + -0.122037999 0.18434 0.132596001 + -0.265655994 0.0178653002 -0.052129399 + -0.274434 0.139254004 0.131037995 + -4.03699005e-006 0.0916875005 0.464334011 + -0.283160001 -0.104932003 0.489926994 + 2.93522007e-005 -0.115382999 0.565106988 + -5.91399985e-005 0.0750724971 -0.127238005 + -5.91417993e-005 -0.0918241963 -0.110618003 + -5.91431999e-005 -0.183000997 0.00302378996 + -0.156714007 -0.228313997 0.271795005 + -0.165812999 -0.173694998 -0.000941601 + -4.06266008e-006 -0.241714001 0.490979999 + -0.185751006 -0.206526995 0.459798008 + -0.377853006 -0.0744552016 0.399214 + -0.249834999 0.224285007 0.166271001 + -0.291491002 0.0744984969 0.375263005 + -0.116394997 0.183075994 0.352863997 + -0.269140989 0.200632006 0.233943 + -0.143948004 0.261889994 0.180822 + -0.0807347 0.243710995 0.245719999 + -0.347088009 -0.0282949992 0.173541993 + -0.0582371987 -0.273616999 0.362149 + -0.215298995 0.264706999 0.255876005 + -0.275626987 0.0028913701 0.466443986 + -4.03109016e-006 0.129587993 0.317254007 + -5.91366006e-005 0.188839003 0.0662918016 + 0.178450003 0.177976996 0.0662918016 + 0.122022003 0.184339002 0.132595003 + 0.266254991 0.0178651996 -0.0521292984 + 0.274417996 0.139254004 0.131037995 + 0.28321901 -0.104932003 0.489926994 + 0.156706005 -0.228999004 0.271795005 + 0.166411996 -0.173694998 -0.000941601 + 0.185743004 -0.221286997 0.461198986 + 0.377844989 -0.0744552016 0.399212986 + 0.143931001 0.261889994 0.180822 + 0.249818996 0.224285007 0.166270003 + 0.105475001 0.171574995 0.352863997 + 0.291483015 0.0744984969 0.375263989 + 0.215290993 0.264706999 0.255876005 + 0.269131988 0.200632006 0.233943 + 0.0807266012 0.243710995 0.245719999 + 0.347384989 -0.0282949992 0.173541993 + 0.0582291 -0.273142993 0.360702008 + 0.275617987 0.0028913701 0.466443002 + tverts 57 + 0.525385022 0.490254998 0 + 0.760019004 0.0846199989 0 + 0.673120975 0.428193003 0 + 0.935343981 0.0367138982 0 + 0.859300971 0.394331992 0 + 0.525385022 0.860239029 0 + 0.944800973 0.962770998 0 + 0.525384009 0.986481011 0 + 0.525385022 0.0627984032 0 + 0.525385022 0.0259031001 0 + 0.486461997 0.0963084027 0 + 0.267345995 0.523630023 0 + 0.271391988 0.0904313996 0 + 0.486461997 0.862968028 0 + 0.486461997 0.981526017 0 + 0.0869038031 0.919378996 0 + 0.200696006 0.816753983 0 + 0.0156462993 0.750153005 0 + 0.486461997 0.0390717983 0 + 0.0696026012 0.031959299 0 + 0.822066009 0.453548014 0 + 0.866177022 0.699710011 0 + 0.670517027 0.702000976 0 + 0.847168982 0.574232996 0 + 0.695194006 0.46332401 0 + 0.645115018 0.568769991 0 + 0.979880989 0.715597987 0 + 0.96418798 0.371807992 0 + 0.388460994 0.645946026 0 + 0.804822981 0.585977972 0 + 0.90516901 0.860630989 0 + 0.525385022 0.662594974 0 + 0.0542563014 0.378013015 0 + 0.525385022 0.0933156013 0 + 0.760959029 0.0846199989 0 + 0.673361003 0.428193003 0 + 0.936284006 0.0367138982 0 + 0.859542012 0.394331992 0 + 0.945041001 0.962770998 0 + 0.268954009 0.52362901 0 + 0.272253007 0.0904313996 0 + 0.0885114968 0.919378996 0 + 0.202303007 0.818831027 0 + 0.0172538999 0.750153005 0 + 0.0704633966 0.031959299 0 + 0.695434988 0.46332401 0 + 0.822306991 0.453548014 0 + 0.668304026 0.705471992 0 + 0.866416991 0.699710011 0 + 0.805064023 0.585977972 0 + 0.847410023 0.574232996 0 + 0.645354986 0.568769991 0 + 0.980121017 0.715597987 0 + 0.964778006 0.371807992 0 + 0.390069008 0.643800974 0 + 0.905409992 0.860630989 0 + 0.0554905012 0.378013015 0 + faces 90 + 0 1 2 1 0 1 2 1 + 1 3 4 1 1 3 4 1 + 5 6 7 1 5 6 7 1 + 8 3 1 1 8 3 1 1 + 8 9 3 1 8 9 3 1 + 10 11 12 1 10 11 12 1 + 13 7 6 1 13 14 15 1 + 13 6 14 1 13 15 16 1 + 14 15 11 1 16 17 11 1 + 10 12 9 1 10 12 18 1 + 12 3 9 1 12 19 18 1 + 4 16 2 1 4 20 2 1 + 17 5 18 1 21 5 22 1 + 4 17 19 1 4 21 23 1 + 14 6 15 1 16 15 17 1 + 20 21 0 1 24 25 0 1 + 1 4 2 1 1 4 2 1 + 15 17 4 1 26 21 4 1 + 4 19 16 1 4 23 20 1 + 22 15 4 1 27 26 4 1 + 13 14 23 1 13 16 28 1 + 10 23 11 1 10 28 11 1 + 12 11 15 1 12 11 17 1 + 16 24 20 1 20 29 24 1 + 2 20 0 1 2 24 0 1 + 16 19 24 1 20 23 29 1 + 2 16 20 1 2 20 24 1 + 15 25 17 1 26 30 21 1 + 19 17 24 1 23 21 29 1 + 26 18 5 1 31 22 5 1 + 6 5 25 1 6 5 30 1 + 20 24 21 1 24 29 25 1 + 26 21 18 1 31 25 22 1 + 12 22 3 1 12 32 19 1 + 23 14 11 1 28 16 11 1 + 10 13 23 1 10 13 28 1 + 27 0 28 1 33 0 34 1 + 28 0 29 1 34 0 35 1 + 30 28 31 1 36 34 37 1 + 32 5 7 1 38 5 7 1 + 30 8 28 1 36 8 34 1 + 9 8 30 1 9 8 36 1 + 33 10 34 1 39 10 40 1 + 7 13 32 1 14 13 41 1 + 32 13 35 1 41 13 42 1 + 36 35 33 1 43 42 39 1 + 34 10 9 1 40 10 18 1 + 30 34 9 1 44 40 18 1 + 37 38 29 1 45 46 35 1 + 39 40 41 1 47 48 49 1 + 40 31 42 1 48 37 50 1 + 32 35 36 1 41 42 43 1 + 43 37 0 1 51 45 0 1 + 31 28 29 1 37 34 35 1 + 40 36 31 1 48 52 37 1 + 42 31 38 1 50 37 46 1 + 44 30 31 1 53 36 37 1 + 35 13 45 1 42 13 54 1 + 45 10 33 1 54 10 39 1 + 33 34 36 1 39 40 43 1 + 41 38 37 1 49 46 45 1 + 37 29 0 1 45 35 0 1 + 42 38 41 1 50 46 49 1 + 38 31 29 1 46 37 35 1 + 32 36 46 1 38 52 55 1 + 40 42 41 1 48 50 49 1 + 41 43 39 1 49 51 47 1 + 5 46 40 1 5 55 48 1 + 41 37 43 1 49 45 51 1 + 39 26 5 1 47 31 5 1 + 36 34 44 1 43 40 56 1 + 35 45 33 1 42 54 39 1 + 13 10 45 1 13 10 54 1 + 8 27 28 1 8 33 34 1 + 46 36 40 1 55 52 48 1 + 5 32 46 1 5 38 55 1 + 15 6 25 1 26 6 30 1 + 25 5 17 1 30 5 21 1 + 36 44 31 1 52 53 37 1 + 44 34 30 1 56 40 44 1 + 3 22 4 1 3 27 4 1 + 12 15 22 1 12 17 32 1 + 43 0 26 1 51 0 31 1 + 0 21 26 1 0 25 31 1 + 39 43 26 1 47 51 31 1 + 5 40 39 1 5 48 47 1 + 21 24 18 1 25 29 22 1 + 17 18 24 1 21 22 29 1 + 8 1 27 1 8 1 33 1 + 1 0 27 1 1 0 33 1 + position -0.000248917 0.0106958998 -0.000543517992 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + render 0 + bitmap lbicep_g + verts 21 + -0.0871336982 0.118698001 -0.0298514999 + -0.206838995 0.0243925005 -0.0313850008 + -0.152683005 0.0194867998 0.0319221988 + 0.0356693007 -0.0482482985 0.0365617983 + -0.0864391997 -0.0542595983 0.0570480004 + -0.0985938013 -0.131809995 0.0282119997 + -0.199536994 0.0196116008 -0.102806002 + -0.0888113976 -0.145477995 -0.0742964968 + -0.202941999 -0.106425002 -0.0194425993 + -0.204967007 -0.0812477022 -0.137802005 + -0.117486 0.0645041019 -0.398384005 + -0.145032004 0.102058999 -0.245784998 + -0.00079508801 0.0220621005 -0.369976997 + 0.0191187002 -0.0142219001 -0.0612383001 + -0.0797682032 0.0743767023 0.0315661989 + -0.0274119005 -0.0481481999 -0.373629004 + -0.167639002 -0.157462999 -0.194344997 + -0.123778 -0.108727999 -0.375905007 + -0.212156996 0.00125956 -0.286830008 + -0.210685 0.00263273995 -0.375133991 + -0.234449998 -0.0856128037 -0.181114003 + tverts 33 + 0.306405008 0.720118999 0 + 0.556734025 0.811640978 0 + 0.514514029 0.980395973 0 + 0.221791998 0.974216998 0 + 0.225391999 0.938544989 0 + 0.269261986 0.942321002 0 + 0.505366027 0.661154985 0 + 0.0389840007 0.763701975 0 + 0.143757999 0.980395973 0 + 0.0271426998 0.980395973 0 + 0.969111979 0.797518015 0 + 0.969111979 0.980395973 0 + 0.737779975 0.818089008 0 + 0.734605014 0.596320987 0 + 0.230884999 0.0146418 0 + 0.257254988 0.312460005 0 + 0.0271426998 0.295733005 0 + 0.127315 0.797486007 0 + 0.325933993 0.980395973 0 + 0.857334018 0.0146418 0 + 0.969111979 0.0146418 0 + 0.883346975 0.415782005 0 + 0.729840994 0.0126598999 0 + 0.523087025 0.245505005 0 + 0.567575991 0.0970361978 0 + 0.56782198 0.0714820996 0 + 0.511424005 0.0721456036 0 + 0.511735976 0.0973213017 0 + 0.739238024 0.511569977 0 + 0.0271426998 0.0146418 0 + 0.541239023 0.0138144 0 + 0.152942002 0.934674025 0 + 0.226791993 0.904639006 0 + faces 38 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 6 1 0 1 6 1 0 1 + 7 3 5 1 7 8 9 1 + 7 5 8 1 10 11 12 1 + 1 9 8 1 1 13 12 1 + 10 11 12 1 14 15 16 1 + 13 14 3 1 17 18 8 1 + 15 12 16 1 19 20 21 1 + 16 12 7 1 21 20 10 1 + 17 16 18 1 22 21 23 1 + 10 15 17 1 24 25 26 1 + 10 17 19 1 24 26 27 1 + 7 9 16 1 10 13 21 1 + 18 16 20 1 23 21 28 1 + 20 16 9 1 28 21 13 1 + 17 15 16 1 22 19 21 1 + 10 12 15 1 14 16 29 1 + 19 11 10 1 30 15 14 1 + 11 6 0 1 15 6 0 1 + 11 18 6 1 15 23 6 1 + 12 11 0 1 16 15 0 1 + 11 19 18 1 15 30 23 1 + 13 12 0 1 17 16 0 1 + 19 17 18 1 30 22 23 1 + 0 2 14 1 0 2 18 1 + 6 18 20 1 6 23 28 1 + 6 20 9 1 6 28 13 1 + 6 9 1 1 6 13 1 1 + 7 8 9 1 10 12 13 1 + 2 8 5 1 2 12 11 1 + 1 8 2 1 1 12 2 1 + 14 2 4 1 31 32 4 1 + 4 2 5 1 4 32 5 1 + 4 3 14 1 4 3 31 1 + 14 13 0 1 18 17 0 1 + 13 3 7 1 17 8 7 1 + 12 13 7 1 16 17 7 1 + position -0.276569992 -0.0506329983 0.423500001 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + render 0 + bitmap lforearm_g + verts 16 + -0.154872 0.0433141999 -0.0230663009 + -0.0635733008 -0.054275699 0.0491876006 + -0.0672350973 0.0740557015 0.0596387014 + -0.0860323012 -0.0770210028 0.00570630003 + 0.0516261011 0.0314624012 -0.000972104026 + 0.0416833013 -0.0592542998 -0.115376003 + -0.0873754025 0.135775 -0.010733 + -0.156660005 0.0506266989 -0.111199997 + -0.133699998 0.124499001 -0.368420988 + -0.0213201996 0.110322997 -0.369087011 + -0.0949935019 0.0452650003 -0.402244985 + -0.127636999 -0.0206284001 -0.370947003 + -0.0143053001 -0.0218278002 -0.37292099 + 0.0470234007 0.044119101 -0.113709003 + -0.0948444009 0.135021999 -0.1008 + -0.151106 -0.0142831998 -0.108370997 + tverts 31 + 0.540403008 0.910580993 0 + 0.639261007 0.988851011 0 + 0.273523986 0.994029999 0 + 0.818857014 0.940127015 0 + 0.988655984 0.973631024 0 + 0.818655014 0.940208018 0 + 0.987443984 0.646272004 0 + 0.987203002 0.972760975 0 + 0.307846993 0.939440012 0 + 0.537145019 0.605925977 0 + 0.540410995 0.909210026 0 + 0.152216002 0.0926121995 0 + 0.183022007 0.0923660025 0 + 0.166602999 0.0709773004 0 + 0.152132004 0.0493724011 0 + 0.182843998 0.0494121015 0 + 0.0140807005 0.971361995 0 + 0.307651013 0.94057399 0 + 0.146925002 0.640820026 0 + 0.326941997 0.617915988 0 + 0.589782 0.602905989 0 + 0.444530994 0.0351039991 0 + 0.684228003 0.0298909005 0 + 0.986294985 0.0407290012 0 + 0.0136801004 0.972217023 0 + 0.0796388984 0.896323979 0 + 0.0698193014 0.925089002 0 + 0.0627416968 0.894111991 0 + 0.293168008 0.0407290012 0 + 0.0136801004 0.64665401 0 + 0.0136801004 0.0407290012 0 + faces 28 + 0 1 2 1 0 1 2 1 + 3 4 1 1 3 4 1 1 + 3 5 4 1 5 6 7 1 + 6 7 0 1 8 9 10 1 + 8 9 10 1 11 12 13 1 + 8 10 11 1 11 13 14 1 + 11 10 12 1 14 13 15 1 + 12 10 9 1 15 13 12 1 + 4 6 2 1 16 17 2 1 + 13 14 6 1 18 19 8 1 + 6 0 2 1 17 0 2 1 + 0 15 3 1 10 20 5 1 + 7 8 11 1 9 21 22 1 + 11 12 3 1 22 23 5 1 + 4 13 6 1 24 18 8 1 + 0 3 1 1 0 3 1 1 + 1 4 2 1 25 26 27 1 + 14 9 8 1 19 28 21 1 + 6 14 7 1 8 19 9 1 + 15 7 11 1 20 9 22 1 + 11 3 15 1 22 5 20 1 + 13 5 9 1 18 29 28 1 + 5 13 4 1 29 18 24 1 + 5 12 9 1 29 30 28 1 + 13 9 14 1 18 28 19 1 + 12 5 3 1 23 6 5 1 + 14 8 7 1 19 21 9 1 + 0 7 15 1 10 9 20 1 + position -0.0529800989 -0.0418661982 -0.378807008 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + shadow 0 + render 0 + bitmap lhand_g + verts 10 + 0.0635418966 0.103446998 -0.123488002 + 0.0315044001 0.0486164987 -0.0102204997 + 0.0342686996 -0.0707383007 -0.157923996 + 0.035377901 -0.0615294985 -0.0101301996 + -0.126652002 0.0845132992 -0.119843997 + -0.124642 -0.0650338978 -0.131755993 + -0.0873117 -0.0523361005 -0.00827458035 + -0.0990588963 0.0584490001 -0.0178635009 + -0.0644273981 0.0485198982 -0.199947998 + -0.0425290018 -0.0142142996 0.0305726994 + tverts 20 + 0.995379984 0.275997996 0 + 0.496522993 0.259983003 0 + 0.988898993 0.0111090997 0 + 0.489607006 0.0328482017 0 + 0.99644798 0.550225973 0 + 0.987486005 0.813328028 0 + 0.489603013 0.784443021 0 + 0.486851007 0.597539008 0 + 0.224371001 0.461528987 0 + 0.00370372995 0.0635436997 0 + 0.0205904003 0.968364 0 + 0.472911 0.960884988 0 + 0.979884982 0.992847025 0 + 0.492258996 0.988385022 0 + 0.525635004 0.205371007 0 + 0.536568999 0.216986001 0 + 0.525870025 0.216959 0 + 0.527392983 0.228515998 0 + 0.517198026 0.216003001 0 + 0.449847013 0.0929894 0 + faces 16 + 0 1 2 1 0 1 2 2 + 3 2 1 1 3 2 1 2 + 4 5 6 1 4 5 6 1 + 6 7 4 1 6 7 4 1 + 8 2 5 1 8 9 10 5 + 5 4 8 1 10 11 8 5 + 2 3 6 1 12 13 6 4 + 6 5 2 1 6 5 12 4 + 3 1 9 1 14 15 16 6 + 7 6 9 1 17 18 16 6 + 2 8 0 1 9 8 19 3 + 4 7 0 1 4 7 0 3 + 9 1 7 1 16 15 17 6 + 9 6 3 1 16 18 14 6 + 0 8 4 1 19 8 11 3 + 0 7 1 1 0 7 1 3 + position -0.0434400998 0.0309324991 -0.364856988 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + render 0 + bitmap rbicep_g + verts 21 + 0.206838995 0.0243903995 -0.0313850008 + 0.0871338025 0.118695997 -0.0298516005 + 0.152683005 0.0194846001 0.0319221988 + 0.0864392966 -0.0542617999 0.0570480004 + -0.0356693007 -0.0482503995 0.0365617014 + 0.0985938013 -0.131813005 0.0282119997 + 0.199536994 0.0196100995 -0.102806002 + 0.0888113976 -0.145480007 -0.0742964968 + 0.202941999 -0.106426999 -0.0194425993 + 0.204967007 -0.0812491998 -0.137802005 + 0.145032004 0.102054998 -0.245784998 + 0.117486 0.0644967034 -0.398384005 + 0.000795135973 0.0220548008 -0.369976997 + 0.0797682032 0.0743746012 0.0315660983 + -0.0191187002 -0.0142240999 -0.0612383001 + 0.0274119005 -0.0481555015 -0.373629004 + 0.167639002 -0.157468006 -0.194344997 + 0.123778 -0.108736001 -0.375905007 + 0.212156996 0.00125495996 -0.286828995 + 0.210685 0.00262536993 -0.375133991 + 0.234450996 -0.0856174007 -0.181114003 + tverts 33 + 0.556734025 0.811640978 0 + 0.306405008 0.720118999 0 + 0.514514029 0.980395973 0 + 0.225391999 0.938544989 0 + 0.221791998 0.974216998 0 + 0.269261986 0.942321002 0 + 0.505366027 0.661154985 0 + 0.143757999 0.980395973 0 + 0.0389840007 0.763701975 0 + 0.0271426998 0.980395973 0 + 0.969111979 0.980395973 0 + 0.969111979 0.797518015 0 + 0.737779975 0.818089008 0 + 0.734605014 0.596320987 0 + 0.257254988 0.312460005 0 + 0.230884999 0.0146418 0 + 0.0271426998 0.295733005 0 + 0.325933993 0.980395973 0 + 0.127315 0.797486007 0 + 0.969111979 0.0146418 0 + 0.857334018 0.0146418 0 + 0.883346975 0.415782005 0 + 0.729840994 0.0126598999 0 + 0.523087025 0.245505005 0 + 0.56782198 0.0714820996 0 + 0.567575991 0.0970361978 0 + 0.511424005 0.0721456036 0 + 0.511735976 0.0973213017 0 + 0.739238024 0.511569977 0 + 0.0271426998 0.0146418 0 + 0.541239023 0.0138144 0 + 0.226791993 0.904639006 0 + 0.152942002 0.934674025 0 + faces 38 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 0 6 1 1 0 6 1 1 + 4 7 5 1 7 8 9 1 + 5 7 8 1 10 11 12 1 + 9 0 8 1 13 0 12 1 + 10 11 12 1 14 15 16 1 + 13 14 4 1 17 18 7 1 + 12 15 16 1 19 20 21 1 + 12 16 7 1 19 21 11 1 + 16 17 18 1 21 22 23 1 + 15 11 17 1 24 25 26 1 + 17 11 19 1 26 25 27 1 + 9 7 16 1 13 11 21 1 + 16 18 20 1 21 23 28 1 + 16 20 9 1 21 28 13 1 + 15 17 16 1 20 22 21 1 + 12 11 15 1 16 15 29 1 + 10 19 11 1 14 30 15 1 + 6 10 1 1 6 14 1 1 + 18 10 6 1 23 14 6 1 + 10 12 1 1 14 16 1 1 + 19 10 18 1 30 14 23 1 + 12 14 1 1 16 18 1 1 + 17 19 18 1 22 30 23 1 + 2 1 13 1 2 1 17 1 + 18 6 20 1 23 6 28 1 + 20 6 9 1 28 6 13 1 + 9 6 0 1 13 6 0 1 + 8 7 9 1 12 11 13 1 + 8 2 5 1 12 2 10 1 + 8 0 2 1 12 0 2 1 + 2 13 3 1 31 32 3 1 + 2 3 5 1 31 3 5 1 + 4 3 13 1 4 3 32 1 + 14 13 1 1 18 17 1 1 + 4 14 7 1 7 18 8 1 + 14 12 7 1 18 16 8 1 + position 0.276569009 -0.0506366007 0.423500001 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + render 0 + bitmap rforearm_g + verts 16 + 0.0635730997 -0.054275699 0.0491876006 + 0.154871002 0.0433143005 -0.0230663009 + 0.0672349036 0.0740557984 0.0596387014 + -0.0516262986 0.0314625017 -0.000972105016 + 0.0860321969 -0.0770208985 0.00570630003 + -0.0416834988 -0.0592541993 -0.115376003 + 0.156660005 0.0506266989 -0.111199997 + 0.0873752981 0.135775 -0.010733 + 0.0213200003 0.110322997 -0.369087011 + 0.133699 0.124499001 -0.368420988 + 0.0949933976 0.0452650003 -0.402244985 + 0.127636999 -0.0206284001 -0.370947003 + 0.0143050998 -0.0218276996 -0.37292099 + 0.0948442966 0.135021999 -0.1008 + -0.0470235012 0.044119101 -0.113709003 + 0.151106 -0.0142831001 -0.108370997 + tverts 31 + 0.639261007 0.988851011 0 + 0.540403008 0.910580993 0 + 0.273523986 0.994029999 0 + 0.988655984 0.973631024 0 + 0.818857014 0.940127015 0 + 0.987443984 0.646272004 0 + 0.818655014 0.940208018 0 + 0.987203002 0.972760975 0 + 0.537145019 0.605925977 0 + 0.307846993 0.939440012 0 + 0.540410995 0.909210026 0 + 0.183022007 0.0923660025 0 + 0.152216002 0.0926121995 0 + 0.166602999 0.0709773004 0 + 0.152132004 0.0493724011 0 + 0.182843998 0.0494121015 0 + 0.307651013 0.94057399 0 + 0.0140807005 0.971361995 0 + 0.326941997 0.617915988 0 + 0.146925002 0.640820026 0 + 0.589782 0.602905989 0 + 0.444530994 0.0351039991 0 + 0.684228003 0.0298909005 0 + 0.986294985 0.0407290012 0 + 0.0136801004 0.972217023 0 + 0.0698193014 0.925089002 0 + 0.0796388984 0.896323979 0 + 0.0627416968 0.894111991 0 + 0.293168008 0.0407290012 0 + 0.0136801004 0.64665401 0 + 0.0136801004 0.0407290012 0 + faces 28 + 0 1 2 1 0 1 2 1 + 3 4 0 1 3 4 0 1 + 5 4 3 1 5 6 7 1 + 6 7 1 1 8 9 10 1 + 8 9 10 1 11 12 13 1 + 10 9 11 1 13 12 14 1 + 10 11 12 1 13 14 15 1 + 10 12 8 1 13 15 11 1 + 7 3 2 1 16 17 2 1 + 13 14 7 1 18 19 9 1 + 1 7 2 1 1 16 2 1 + 15 1 4 1 20 10 6 1 + 9 6 11 1 21 8 22 1 + 12 11 4 1 23 22 6 1 + 14 3 7 1 19 24 9 1 + 4 1 0 1 4 1 0 1 + 3 0 2 1 25 26 27 1 + 8 13 9 1 28 18 21 1 + 13 7 6 1 18 9 8 1 + 6 15 11 1 8 20 22 1 + 4 11 15 1 6 22 20 1 + 5 14 8 1 29 19 28 1 + 14 5 3 1 19 29 24 1 + 12 5 8 1 30 29 28 1 + 8 14 13 1 28 19 18 1 + 5 12 4 1 5 23 6 1 + 9 13 6 1 21 18 8 1 + 6 1 15 1 8 10 20 1 + position 0.0529830009 -0.0418625996 -0.378807008 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + shadow 0 + render 0 + bitmap rhand_g + verts 10 + -0.0315044001 0.0486164987 -0.0102204997 + -0.0635418966 0.103446998 -0.123488002 + -0.0342688002 -0.0707383007 -0.157923996 + -0.035377901 -0.0615294985 -0.0101301996 + 0.124642 -0.0650338978 -0.131755993 + 0.126651004 0.0845132992 -0.119843997 + 0.0873117 -0.0523361005 -0.00827458967 + 0.0990588963 0.0584490001 -0.0178635009 + 0.0644273013 0.0485198982 -0.199947998 + 0.0425290018 -0.0142142996 0.0305726994 + tverts 20 + 0.496522993 0.259983003 0 + 0.995379984 0.275997996 0 + 0.988898993 0.0111090997 0 + 0.489607006 0.0328482017 0 + 0.987486005 0.813328028 0 + 0.99644798 0.550225973 0 + 0.489603013 0.784443021 0 + 0.486851007 0.597539008 0 + 0.00370372995 0.0635436997 0 + 0.224371001 0.461528987 0 + 0.0205904003 0.968364 0 + 0.472911 0.960884988 0 + 0.492258996 0.988385022 0 + 0.979884982 0.992847025 0 + 0.536568999 0.216986001 0 + 0.525635004 0.205371007 0 + 0.525870025 0.216959 0 + 0.517198026 0.216003001 0 + 0.527392983 0.228515998 0 + 0.449847013 0.0929894 0 + faces 16 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 4 5 6 1 4 5 6 1 + 7 6 5 1 7 6 5 1 + 2 8 4 1 8 9 10 5 + 5 4 8 1 11 10 9 5 + 3 2 6 1 12 13 6 4 + 4 6 2 1 4 6 13 4 + 0 3 9 1 14 15 16 6 + 6 7 9 1 17 18 16 6 + 8 2 1 1 9 8 19 3 + 7 5 1 1 7 5 1 3 + 0 9 7 1 14 16 18 6 + 6 9 3 1 17 16 15 6 + 8 1 5 1 9 19 11 3 + 7 1 0 1 7 1 0 3 + position 0.0434334986 0.0309324991 -0.364856988 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 0 + shadow 0 + bitmap pfh0_robe020 + verts 116 + -0.248476997 0.165079996 0.121986002 + -0.266586989 0.223560005 0.148644999 + -0.141896993 0.197174996 0.123533003 + -0.350948006 0.0880405009 0.253351986 + -0.323105991 0.195658997 0.247255996 + -0.115906 0.250324994 0.176081002 + -0.0870826989 0.25643301 0.280793011 + -0.000308118004 0.199168995 0.174355 + -0.286552012 0.209609002 0.175185993 + -0.285066992 0.266447991 0.216018006 + -0.233118996 0.274334013 0.286038011 + -0.281118989 0.0930500031 0.38161099 + -0.217989996 0.276059985 0.211629003 + -0.000184470002 0.151227996 0.333835006 + -0.092020303 0.164798006 0.388163 + -0.149056002 0.279798001 0.280074 + -0.000227411001 0.182481006 -0.0512382016 + 0 0.0776984021 -0.122914001 + -0.268258989 -0.0055356198 -0.061056599 + -0.108650997 0.0325239003 0.484476 + -0.279309005 0.0238853991 0.467424005 + -0.162355006 -0.0905696005 0.526196003 + 0 -0.110955 0.571938992 + 0 0.0870494023 0.471379995 + -0.274773985 -0.0265295003 -0.0105072996 + -0.335027993 -0.0281981993 0.00385460001 + -0.294800997 0.0604839996 0.0159958992 + -0.171573997 0.145171002 -0.0511922985 + -0.000227411001 0.194397002 -0.0353004001 + -0.254678011 0.148836002 0.0412851982 + -0.291166008 -0.093417801 0.493057996 + -0.336786002 -0.0416258983 0.106936999 + -0.369192004 -0.0675161034 0.197095007 + -0.216432005 0.138729006 -0.0353004001 + -0.139647007 0.202306002 0.0569575988 + -0.000227411001 0.195446998 0.0641221032 + 0.140842006 0.196462005 0.123576 + 0.266131997 0.223560005 0.148644999 + 0.248023003 0.165079996 0.121986002 + 0.323105991 0.195658997 0.247255996 + 0.350495011 0.0880405009 0.253351986 + 0.0872479007 0.254123986 0.284893006 + 0.113016002 0.250054985 0.176155001 + 0.28609699 0.209609002 0.175185993 + 0.284612 0.266447991 0.216018006 + 0.233118996 0.274334013 0.286038011 + 0.276692003 0.0930636004 0.380268008 + 0.217536002 0.276059985 0.211629003 + 0.0976748988 0.164230004 0.388570011 + 0.143448994 0.279798001 0.280074 + 0.268258989 -0.0055356198 -0.061056599 + 0.109236002 0.0337355994 0.484409004 + 0.279309005 0.0238853991 0.467424005 + 0.165886 -0.0903033987 0.52561897 + 0.312887996 0.0604839996 0.0159958992 + 0.334574997 -0.0281981993 0.00385460001 + 0.274318993 -0.0265295003 -0.0105072996 + 0.172795996 0.147713006 -0.0483747981 + 0.257575005 0.148836002 0.0412851982 + 0.295296013 -0.0934176967 0.493057996 + 0.368737012 -0.0675161034 0.197095007 + 0.336333007 -0.0416258983 0.106936999 + 0.215979993 0.138729006 -0.0353004001 + 0.137415007 0.201536 0.0567586012 + -0.381208003 -0.0690115988 0.396926999 + -2.16810004e-005 -0.0771818981 -0.110400997 + 0.38065201 -0.0690115988 0.396926999 + -0.266236991 -0.191935003 0.45479399 + -0.239983007 -0.218922004 0.278205991 + -0.277592987 -0.183127999 0.210206002 + -0.000227415003 -0.235232994 0.105338998 + 0 -0.276075989 0.36560899 + -0.188531995 -0.188354999 0.155846998 + -0.0515228994 -0.158932 0.530915976 + -0.169661 -0.113416001 -0.00795799959 + -0.134828001 -0.236641005 0.484306991 + -0.166747004 -0.192522004 0.0387626998 + 0 -0.158932 0.530915976 + 0 -0.236101002 0.507570028 + -0.241569996 -0.115106001 0.0216425005 + -0.0745872036 -0.213808998 0.0487757996 + -0.000669246016 -0.222788006 0.0487757996 + -0.199355006 -0.185771003 0.103266001 + 0.239984006 -0.218922004 0.278205991 + 0.266236991 -0.191935003 0.45479399 + 0.277137011 -0.183127999 0.210206002 + 0.188079998 -0.188354999 0.155846998 + 0.0515228994 -0.158932 0.530915976 + 0.165949002 -0.123709999 -0.0118639003 + 0.134828001 -0.236641005 0.484306991 + 0.166293994 -0.192522004 0.0387626998 + 0.241118997 -0.115106001 0.0216425005 + 0.0741347969 -0.213808998 0.0487757996 + 0.198899001 -0.185771003 0.103266001 + -0.237832993 0.227946997 0.377568007 + -0.254229993 0.107812002 0.477551013 + -0.183728993 0.298312992 0.184168994 + -0.191189006 0.297004998 0.265751004 + -0.139135003 0.302363008 0.277406007 + -0.166091993 0.0918224007 0.477874011 + -0.233946994 -0.0694011971 0.562654972 + -0.179344997 -0.238780007 0.571404994 + 0 -0.281562001 0.588739991 + -0.25109899 0.0220139995 0.505478024 + -0.173288003 0.222326994 0.117599003 + 0.254229993 0.107812002 0.477551013 + 0.237832993 0.227946997 0.377568007 + 0.183274001 0.298312992 0.184168994 + 0.139135003 0.302363008 0.277406007 + 0.191189006 0.297004998 0.265751004 + 0.166091993 0.0918224007 0.477874011 + 0.162355006 -0.0905696005 0.526196003 + 0.179344997 -0.238780007 0.571404994 + 0.233946994 -0.0694011971 0.562654972 + 0.25109899 0.0220139995 0.505478024 + 0.172832996 0.222326994 0.117599003 + tverts 131 + 0.374188989 0.724223018 0 + 0.358797014 0.739292979 0 + 0.317171007 0.712305009 0 + 0.435407996 0.775250018 0 + 0.395319998 0.780640006 0 + 0.313587993 0.74239397 0 + 0.298646986 0.766835988 0 + 0.240865007 0.732118011 0 + 0.378437012 0.754911005 0 + 0.366436005 0.773378015 0 + 0.363411009 0.801299989 0 + 0.398270011 0.858413994 0 + 0.338705003 0.771157026 0 + 0.240955994 0.806173027 0 + 0.301133007 0.810564995 0 + 0.322037995 0.798282981 0 + 0.244987994 0.583531022 0 + 0.247152001 0.545324981 0 + 0.348509997 0.537819028 0 + 0.299692988 0.890272021 0 + 0.390700012 0.916544974 0 + 0.319682002 0.93799001 0 + 0.247152001 0.989396989 0 + 0.245205 0.889021993 0 + 0.401540995 0.570704997 0 + 0.458626002 0.602510989 0 + 0.402503997 0.604834974 0 + 0.339578003 0.579649985 0 + 0.245813996 0.599169016 0 + 0.359678 0.659999013 0 + 0.416933 0.954907 0 + 0.463972002 0.666787982 0 + 0.476808995 0.760876 0 + 0.357544005 0.602643013 0 + 0.319900006 0.684144974 0 + 0.241917998 0.668515027 0 + 0.177798003 0.710568011 0 + 0.156862006 0.742456019 0 + 0.136224002 0.724318981 0 + 0.108932003 0.776192009 0 + 0.0552950017 0.764407992 0 + 0.194802999 0.768139005 0 + 0.185287997 0.740224004 0 + 0.126481995 0.752719998 0 + 0.138731003 0.769472003 0 + 0.145662993 0.801299989 0 + 0.101237997 0.863038003 0 + 0.162555993 0.771157026 0 + 0.196876004 0.821635008 0 + 0.178076997 0.798282981 0 + 0.149700999 0.537819028 0 + 0.189417005 0.906768024 0 + 0.0966480002 0.914125979 0 + 0.172765002 0.938501 0 + 0.090944998 0.602882028 0 + 0.042208001 0.610324025 0 + 0.105338998 0.563634992 0 + 0.155618995 0.582710981 0 + 0.139250994 0.669203997 0 + 0.0798159987 0.955582976 0 + 0.00746155018 0.759871006 0 + 0.0294770002 0.667531013 0 + 0.13549 0.602643013 0 + 0.179822996 0.684144974 0 + 0.470135987 0.903016984 0 + 0.241051003 0.502295017 0 + 0.0287449993 0.902454972 0 + 0.896727979 0.907976985 0 + 0.983712971 0.905704021 0 + 0.885825992 0.784143984 0 + 0.965736985 0.757098973 0 + 0.889693975 0.747657001 0 + 0.913254023 0.963636994 0 + 0.75950402 0.643369019 0 + 0.748724997 0.836161017 0 + 0.845184028 0.709459007 0 + 0.853802025 0.953661025 0 + 0.777882993 0.953661025 0 + 0.746967971 0.990212977 0 + 0.859533012 0.530797005 0 + 0.831396997 0.567561984 0 + 0.881588995 0.567803025 0 + 0.911199987 0.662652016 0 + 0.830424011 0.918249011 0 + 0.746976018 0.521182001 0 + 0.830538988 0.604588985 0 + 0.743744016 0.953661025 0 + 0.750873983 0.923744977 0 + 0.866506994 0.604588985 0 + 0.786237001 0.604588985 0 + 0.750810027 0.604588985 0 + 0.89359498 0.604588985 0 + 0.842554986 0.666931987 0 + 0.615118027 0.784143984 0 + 0.513419986 0.905541003 0 + 0.595242023 0.905099988 0 + 0.53915298 0.757098973 0 + 0.603438973 0.747657001 0 + 0.56467402 0.962441981 0 + 0.650812984 0.709459007 0 + 0.709603012 0.953661025 0 + 0.648585021 0.953661025 0 + 0.619395018 0.567803025 0 + 0.669586003 0.567561984 0 + 0.634419024 0.530797005 0 + 0.589783013 0.666558027 0 + 0.678332984 0.918249011 0 + 0.670444012 0.604588985 0 + 0.634474993 0.604588985 0 + 0.714745998 0.604588985 0 + 0.660647988 0.671447992 0 + 0.60738802 0.604588985 0 + 0.478583008 0.692176998 0 + 0.472956985 0.618538976 0 + 0.537110984 0.685164988 0 + 0.51215899 0.843145013 0 + 0.484806001 0.779559016 0 + 0.523208976 0.761484981 0 + 0.482138991 0.742110014 0 + 0.502673984 0.75179702 0 + 0.504499972 0.601621985 0 + 0.482241988 0.532603979 0 + 0.507237017 0.525481999 0 + 0.545091987 0.572036982 0 + 0.589338005 0.578651011 0 + 0.589338005 0.511370003 0 + 0.54013598 0.619879007 0 + 0.474391997 0.579150975 0 + 0.506633997 0.883975029 0 + 0.492958009 0.852181971 0 + 0.501109004 0.924804986 0 + faces 257 + 0 1 2 1 0 1 2 0 + 0 3 4 1 0 3 4 0 + 5 6 7 1 5 6 7 0 + 0 4 8 1 0 4 8 0 + 1 9 5 1 1 9 5 0 + 2 5 7 1 2 5 7 0 + 9 4 10 1 9 4 10 0 + 2 1 5 1 2 1 5 0 + 4 11 10 1 4 11 10 0 + 5 12 6 1 5 12 6 0 + 13 6 14 1 13 6 14 0 + 7 6 13 1 7 6 13 0 + 6 15 14 1 6 15 14 0 + 11 14 10 1 11 14 10 0 + 9 10 12 1 9 10 12 0 + 9 1 8 1 9 1 8 0 + 12 10 15 1 12 10 15 0 + 12 5 9 1 12 5 9 0 + 3 11 4 1 3 11 4 0 + 8 1 0 1 8 1 0 0 + 8 4 9 1 8 4 9 0 + 16 17 18 1 16 17 18 0 + 11 19 14 1 11 19 14 0 + 20 19 11 1 20 19 11 0 + 21 22 23 1 21 22 23 0 + 24 25 26 1 24 25 26 0 + 24 27 18 1 24 27 18 0 + 18 27 16 1 18 27 16 0 + 19 13 14 1 19 13 14 0 + 27 28 16 1 27 28 16 0 + 2 29 0 1 2 29 0 0 + 30 19 20 1 30 19 20 0 + 31 32 3 1 31 32 3 0 + 27 33 28 1 27 33 28 0 + 24 33 27 1 24 33 27 0 + 33 26 29 1 33 26 29 0 + 34 33 29 1 34 33 29 0 + 29 26 31 1 29 26 31 0 + 29 31 3 1 29 31 3 0 + 30 21 19 1 30 21 19 0 + 19 23 13 1 19 23 13 0 + 19 21 23 1 19 21 23 0 + 26 33 24 1 26 33 24 0 + 26 25 31 1 26 25 31 0 + 28 33 35 1 28 33 35 0 + 7 35 2 1 7 35 2 0 + 2 35 34 1 2 35 34 0 + 0 29 3 1 0 29 3 0 + 36 37 38 1 36 37 38 0 + 39 40 38 1 39 40 38 0 + 7 41 42 1 7 41 42 0 + 43 39 38 1 43 39 38 0 + 42 44 37 1 42 44 37 0 + 7 42 36 1 7 42 36 0 + 45 39 44 1 45 39 44 0 + 42 37 36 1 42 37 36 0 + 45 46 39 1 45 46 39 0 + 41 47 42 1 41 47 42 0 + 48 41 13 1 48 41 13 0 + 13 41 7 1 13 41 7 0 + 48 45 49 1 48 45 49 0 + 45 48 46 1 45 48 46 0 + 47 45 44 1 47 45 44 0 + 43 37 44 1 43 37 44 0 + 41 49 47 1 41 49 47 0 + 44 42 47 1 44 42 47 0 + 39 46 40 1 39 46 40 0 + 38 37 43 1 38 37 43 0 + 44 39 43 1 44 39 43 0 + 50 17 16 1 50 17 16 0 + 48 51 46 1 48 51 46 0 + 46 51 52 1 46 51 52 0 + 23 22 53 1 23 22 53 0 + 54 55 56 1 54 55 56 0 + 50 57 56 1 50 57 56 0 + 16 57 50 1 16 57 50 0 + 48 13 51 1 48 13 51 0 + 16 28 57 1 16 28 57 0 + 38 58 36 1 38 58 36 0 + 52 51 59 1 52 51 59 0 + 40 60 61 1 40 60 61 0 + 28 62 57 1 28 62 57 0 + 57 62 56 1 57 62 56 0 + 58 54 62 1 58 54 62 0 + 63 62 35 1 63 62 35 0 + 61 55 54 1 61 55 54 0 + 40 61 58 1 40 61 58 0 + 51 53 59 1 51 53 59 0 + 13 23 51 1 13 23 51 0 + 23 53 51 1 23 53 51 0 + 56 62 54 1 56 62 54 0 + 58 61 54 1 58 61 54 0 + 35 62 28 1 35 62 28 0 + 36 35 7 1 36 35 7 0 + 58 63 36 1 58 63 36 0 + 40 58 38 1 40 58 38 0 + 64 20 11 1 64 20 11 0 + 3 64 11 1 3 64 11 0 + 32 64 3 1 32 64 3 0 + 65 18 17 1 65 18 17 0 + 46 52 66 1 46 52 66 0 + 46 66 40 1 46 66 40 0 + 40 66 60 1 40 66 60 0 + 17 50 65 1 17 50 65 0 + 30 20 64 1 30 20 64 0 + 66 52 59 1 66 52 59 0 + 15 10 14 1 15 10 14 0 + 15 6 12 1 15 6 12 0 + 49 41 48 1 49 41 48 0 + 49 45 47 1 49 45 47 0 + 67 64 68 2 67 68 69 0 + 32 68 64 2 70 69 68 0 + 32 69 68 2 70 71 69 0 + 30 64 67 2 72 68 67 0 + 70 71 72 2 73 74 75 0 + 67 68 71 2 67 69 74 0 + 21 73 22 2 76 77 78 0 + 18 74 24 2 79 80 81 0 + 72 32 31 2 75 70 82 0 + 30 67 75 2 72 67 83 0 + 67 71 75 2 67 74 83 0 + 68 72 71 2 69 75 74 0 + 74 65 76 2 80 84 85 0 + 68 69 72 2 69 71 75 0 + 18 65 74 2 79 84 80 0 + 24 74 76 2 81 80 85 0 + 73 77 22 2 77 86 78 0 + 78 77 73 2 87 86 77 0 + 76 79 24 2 85 88 81 0 + 80 65 81 2 89 84 90 0 + 25 79 82 2 91 88 92 0 + 76 80 82 2 85 89 92 0 + 82 31 25 2 92 82 91 0 + 82 81 70 2 92 90 73 0 + 31 82 72 2 82 92 75 0 + 82 70 72 2 92 73 75 0 + 30 75 21 2 72 83 76 0 + 73 21 78 2 77 76 87 0 + 75 71 78 2 83 74 87 0 + 21 75 78 2 76 83 87 0 + 79 76 82 2 88 85 92 0 + 80 76 65 2 89 85 84 0 + 80 81 82 2 89 90 92 0 + 69 32 72 2 71 70 75 0 + 83 66 84 2 93 94 95 0 + 66 83 60 2 94 93 96 0 + 83 85 60 2 93 97 96 0 + 84 66 59 2 95 94 98 0 + 86 71 70 2 99 74 73 0 + 71 83 84 2 74 93 95 0 + 22 87 53 2 78 100 101 0 + 56 88 50 2 102 103 104 0 + 61 60 86 2 105 96 99 0 + 89 84 59 2 106 95 98 0 + 89 71 84 2 106 74 95 0 + 71 86 83 2 74 99 93 0 + 90 65 88 2 107 84 103 0 + 86 85 83 2 99 97 93 0 + 88 65 50 2 103 84 104 0 + 90 88 56 2 107 103 102 0 + 22 77 87 2 78 86 100 0 + 87 77 78 2 100 86 87 0 + 56 91 90 2 102 108 107 0 + 81 65 92 2 90 84 109 0 + 93 91 55 2 110 108 111 0 + 93 92 90 2 110 109 107 0 + 55 61 93 2 111 105 110 0 + 70 81 93 2 73 90 110 0 + 86 93 61 2 99 110 105 0 + 86 70 93 2 99 73 110 0 + 53 89 59 2 101 106 98 0 + 78 53 87 2 87 101 100 0 + 78 71 89 2 87 74 106 0 + 78 89 53 2 87 106 101 0 + 93 90 91 2 110 107 108 0 + 65 90 92 2 84 107 109 0 + 93 81 92 2 110 90 109 0 + 86 60 85 2 99 96 97 0 + 79 25 24 2 88 91 81 0 + 56 55 91 2 102 111 108 0 + 63 58 62 1 63 58 62 0 + 63 35 36 1 63 35 36 0 + 34 35 33 1 34 35 33 0 + 34 29 2 1 34 29 2 0 + 94 95 14 1 112 113 114 0 + 5 96 6 1 115 116 117 0 + 97 98 96 1 118 119 116 0 + 95 99 14 1 113 120 114 0 + 14 6 94 1 114 117 112 0 + 100 101 21 1 121 122 123 0 + 78 21 102 1 124 123 125 0 + 101 102 21 1 122 125 123 0 + 19 99 21 1 126 120 123 0 + 103 100 21 1 127 121 123 0 + 99 19 14 1 120 126 114 0 + 99 103 21 1 120 127 123 0 + 5 2 104 1 115 128 129 0 + 104 96 5 1 129 116 115 0 + 2 34 104 1 128 130 129 0 + 98 94 6 1 119 112 117 0 + 98 6 96 1 119 117 116 0 + 98 97 94 1 119 118 112 0 + 48 105 106 1 114 113 112 0 + 41 107 42 1 117 116 115 0 + 107 108 109 1 116 119 118 0 + 48 110 105 1 114 120 113 0 + 106 41 48 1 112 117 114 0 + 111 112 113 1 123 122 121 0 + 102 111 78 1 125 123 124 0 + 111 102 112 1 123 125 122 0 + 111 110 51 1 123 120 126 0 + 111 113 114 1 123 121 127 0 + 48 51 110 1 114 126 120 0 + 111 114 110 1 123 127 120 0 + 115 36 42 1 129 128 115 0 + 42 107 115 1 115 116 129 0 + 115 63 36 1 129 130 128 0 + 41 106 108 1 117 112 119 0 + 107 41 108 1 116 117 119 0 + 106 109 108 1 112 118 119 0 + 14 95 94 2 114 113 112 0 + 6 96 5 2 117 116 115 0 + 96 98 97 2 116 119 118 0 + 14 99 95 2 114 120 113 0 + 94 6 14 2 112 117 114 0 + 21 101 100 2 123 122 121 0 + 102 21 78 2 125 123 124 0 + 21 102 101 2 123 125 122 0 + 21 99 19 2 123 120 126 0 + 21 100 103 2 123 121 127 0 + 14 19 99 2 114 126 120 0 + 21 103 99 2 123 127 120 0 + 104 2 5 2 129 128 115 0 + 5 96 104 2 115 116 129 0 + 104 34 2 2 129 130 128 0 + 6 94 98 2 117 112 119 0 + 96 6 98 2 116 117 119 0 + 94 97 98 2 112 118 119 0 + 106 105 48 2 112 113 114 0 + 42 107 41 2 115 116 117 0 + 109 108 107 2 118 119 116 0 + 105 110 48 2 113 120 114 0 + 48 41 106 2 114 117 112 0 + 113 112 111 2 121 122 123 0 + 78 111 102 2 124 123 125 0 + 112 102 111 2 122 125 123 0 + 51 110 111 2 126 120 123 0 + 114 113 111 2 127 121 123 0 + 110 51 48 2 120 126 114 0 + 110 114 111 2 120 127 123 0 + 42 36 115 2 115 128 129 0 + 115 107 42 2 129 116 115 0 + 36 63 115 2 128 130 129 0 + 108 106 41 2 119 112 117 0 + 108 41 107 2 119 117 116 0 + 108 109 106 2 119 118 112 0 + 102 111 78 1 125 123 124 0 + displacement 0.0299999993 + period 6 + tightness 5 + constraints 116 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 245 + 200 + 0 + 0 + 0 + 0 + 240 + 230 + 225 + 200 + 0 + 200 + 245 + 0 + 0 + 0 + 0 + 0 + 230 + 240 + 200 + 0 + position 0.000249152014 -0.00308889989 -0.00145660003 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + shadow 0 + render 0 + bitmap pelvis_g + verts 43 + -0.133607998 0.120421 0.00143310998 + -0.210299 -0.00128808001 -0.000216679997 + -0.102052003 -0.00796750002 0.0535837002 + -0.00153867004 0.0763942972 0.0514457002 + -0.00149006001 0.122486003 -0.256054014 + -0.00149007002 0.00468912022 -0.307871997 + -0.298126996 0.0446649007 -0.259694993 + -0.246980995 0.134134993 -0.210465997 + -0.347090006 0.0328513011 -0.201792002 + -0.173731998 -0.0628897995 -0.318262994 + -0.320562989 -0.0549703017 -0.271160007 + -0.00153128 -0.155717999 -0.0463414006 + -0.00153868995 -0.123099998 0.0353689007 + -0.125205994 -0.159300998 -0.000759559975 + -0.211925998 -0.241775006 -0.135426 + -0.0719610974 -0.256763995 -0.142486006 + -0.338203996 -0.117471002 -0.204528004 + -0.235758007 -0.232351005 -0.206514999 + -0.0919509009 -0.253980011 -0.232167006 + -0.00150248001 -0.233790994 -0.143333003 + -0.269998014 -0.179373994 -0.263619989 + -0.00149009004 -0.194973007 -0.245286003 + -0.338750988 -0.0482910983 -0.155219004 + -0.232544005 0.132452995 -0.0958478004 + 0.122129001 -0.159299999 -0.000759559975 + 0.0955751017 0.178180993 -0.135671005 + -0.0985800028 0.178180993 -0.135671005 + 0.229539007 0.132452995 -0.0958478004 + 0.243975997 0.134134993 -0.210465997 + 0.130530998 0.120421 0.00143301999 + 0.207233995 -0.00128808001 -0.000216761997 + 0.0989746004 -0.00796748046 0.0535837002 + 0.295147002 0.0446648002 -0.259694993 + 0.344083995 0.0328512006 -0.201792002 + 0.170752004 -0.0628897995 -0.318262994 + 0.317999989 -0.0549703017 -0.271160007 + 0.208921 -0.241775006 -0.135426 + 0.0689560995 -0.256763995 -0.142486006 + 0.265062004 -0.179373994 -0.263619989 + 0.335577011 -0.117471002 -0.204528004 + 0.232752994 -0.232351005 -0.206514999 + 0.0889459029 -0.253980011 -0.232167006 + 0.336126 -0.0482910983 -0.155219004 + tverts 61 + 0.34177199 0.896211982 0 + 0.571323991 0.882678986 0 + 0.556289017 0.961219013 0 + 0.00643583992 0.899496973 0 + 0.0469013005 0.961219013 0 + 0.167244002 0.954985023 0 + 0.111137003 0.0861070976 0 + 0.13053 0.0422586985 0 + 0.482829988 0.0425741002 0 + 0.342220992 0.0888782963 0 + 0.576578975 0.112342 0 + 0.363958001 0.0402134992 0 + 0.568984985 0.0390336998 0 + 0.974591017 0.778563976 0 + 0.97190702 0.994022012 0 + 0.82002002 0.907989025 0 + 0.744069993 0.382272989 0 + 0.913295984 0.437388003 0 + 0.576349974 0.112424001 0 + 0.718212008 0.127681002 0 + 0.558582008 0.989180028 0 + 0.570703983 0.88202697 0 + 0.885195017 0.105071999 0 + 0.974633992 0.42019999 0 + 0.696792006 0.0527810007 0 + 0.768779993 0.0273033995 0 + 0.974633992 0.106239997 0 + 0.568910003 0.0384986997 0 + 0.974633992 0.0195809994 0 + 0.576156974 0.266314 0 + 0.576353014 0.112161003 0 + 0.394109011 0.441740006 0 + 0.575087011 0.264890999 0 + 0.821202993 0.911471009 0 + 0.218540996 0.417605013 0 + 0.108236998 0.0861070976 0 + 0.0113533996 0.417605013 0 + 0.221441001 0.417605013 0 + 0.391209006 0.441740006 0 + 0.340903014 0.0888782963 0 + 0.338788986 0.896211982 0 + 0.57061398 0.882678986 0 + 0.550621986 0.987498999 0 + 0.127629995 0.0422586985 0 + 0.479930013 0.0425743014 0 + 0.576512992 0.112342 0 + 0.361057997 0.0402137004 0 + 0.568270981 0.0390336998 0 + 0.742483974 0.382272989 0 + 0.911710024 0.437388003 0 + 0.697229981 0.0527810007 0 + 0.576304018 0.112424001 0 + 0.718824983 0.126084 0 + 0.557080984 0.989180028 0 + 0.570342004 0.88202697 0 + 0.883608997 0.105071999 0 + 0.767193973 0.0273036007 0 + 0.576296985 0.112161003 0 + 0.568328023 0.0384986997 0 + 0.575793028 0.266314 0 + 0.574639976 0.264890999 0 + faces 82 + 0 1 2 1 0 1 2 1 + 0 2 3 1 3 4 5 1 + 4 5 6 1 6 7 8 1 + 4 6 7 1 6 8 9 1 + 7 6 8 1 9 8 10 1 + 5 9 6 1 7 11 8 1 + 6 9 10 1 8 11 12 1 + 6 10 8 1 8 12 10 1 + 11 12 13 1 13 14 15 1 + 13 14 15 1 15 16 17 1 + 14 16 17 1 16 18 19 1 + 12 2 13 1 14 20 15 1 + 13 2 1 1 15 20 21 1 + 15 18 19 1 17 22 23 1 + 20 9 18 1 24 25 22 1 + 18 9 21 1 22 25 26 1 + 20 16 10 1 24 18 27 1 + 20 10 9 1 24 27 25 1 + 21 9 5 1 26 25 28 1 + 11 15 19 1 13 17 23 1 + 18 15 14 1 22 17 16 1 + 19 18 21 1 23 22 26 1 + 14 22 16 1 16 29 18 1 + 10 16 8 1 12 30 10 1 + 18 17 20 1 22 19 24 1 + 1 0 23 1 1 0 31 1 + 22 23 8 1 32 31 10 1 + 8 23 7 1 10 31 9 1 + 13 22 14 1 15 29 16 1 + 24 12 11 1 33 14 13 1 + 11 13 15 1 13 15 17 1 + 25 4 26 1 34 35 36 1 + 26 4 7 1 37 6 9 1 + 26 7 23 1 37 9 31 1 + 23 0 26 1 31 0 37 1 + 22 1 23 1 32 1 31 1 + 25 26 0 1 34 36 3 1 + 27 28 25 1 38 39 34 1 + 29 0 3 1 40 3 5 1 + 30 29 31 1 41 40 42 1 + 31 29 3 1 42 40 5 1 + 31 3 2 1 42 5 4 1 + 5 4 32 1 43 35 44 1 + 32 4 28 1 44 35 39 1 + 32 28 33 1 44 39 45 1 + 34 5 32 1 46 43 44 1 + 34 32 35 1 46 44 47 1 + 35 32 33 1 47 44 45 1 + 36 24 37 1 48 33 49 1 + 38 39 40 1 50 51 52 1 + 2 12 31 1 20 14 53 1 + 31 12 24 1 53 14 33 1 + 31 24 30 1 53 33 54 1 + 36 37 41 1 48 49 55 1 + 21 38 41 1 26 50 55 1 + 34 38 21 1 56 50 26 1 + 33 39 35 1 45 57 47 1 + 35 38 34 1 58 50 56 1 + 34 21 5 1 56 26 28 1 + 37 11 19 1 49 13 23 1 + 40 36 41 1 52 48 55 1 + 41 19 21 1 55 23 26 1 + 30 24 36 1 54 33 48 1 + 19 41 37 1 23 55 49 1 + 29 30 27 1 40 41 38 1 + 36 39 42 1 48 51 59 1 + 27 33 28 1 38 45 39 1 + 42 30 36 1 59 54 48 1 + 24 11 37 1 33 13 49 1 + 4 25 28 1 35 34 39 1 + 29 27 25 1 40 38 34 1 + 42 33 27 1 60 45 38 1 + 29 25 0 1 40 34 3 1 + 35 39 38 1 58 51 50 1 + 40 39 36 1 52 51 48 1 + 38 40 41 1 50 52 55 1 + 17 16 20 1 19 18 24 1 + 18 14 17 1 22 16 19 1 + 16 22 8 1 30 32 10 1 + 13 1 22 1 15 21 29 1 + 42 39 33 1 60 57 45 1 + 30 42 27 1 41 60 38 1 + position 0.000694275019 0.0106958998 -0.000543517992 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + shadow 0 + render 0 + bitmap lthigh_g + verts 16 + -0.0445275009 0.131789997 0.074027501 + -0.0781444982 -0.0964488983 0.0670600981 + 0.0333117992 -0.0974176973 0.0720105022 + -0.203679994 0.0857838988 0.00156347 + -0.111202002 0.200988993 -0.00414639013 + 0.119005002 0.134316996 0.00468795002 + 0.118736997 -0.202414006 -0.0052834102 + -0.100201003 -0.175490007 -0.00328241009 + -0.120803997 -0.0134661999 -0.471819997 + -0.0120655997 -0.109229997 -0.475097001 + -0.0810393021 -0.198285997 -0.257037997 + -0.0151597997 0.195862994 -0.230397999 + -0.0130735999 0.0935987011 -0.471379995 + -0.126716003 0.166348994 -0.220881999 + 0.115794003 -0.00633224007 -0.475097001 + -0.262030989 0.0175468009 -0.142625004 + tverts 32 + 0.371484995 0.990176976 0 + 0.642623007 0.995176971 0 + 0.0147387004 0.988349974 0 + 0.562649012 0.915606022 0 + 0.34949699 0.926782012 0 + 0.210933998 0.923408985 0 + 0.0094111301 0.91782099 0 + 0.982136011 0.91149199 0 + 0.919241011 0.99504298 0 + 0.772394001 0.916094005 0 + 0.589354992 0.0208810009 0 + 0.790382981 0.0207973998 0 + 0.792307019 0.462134987 0 + 0.325257987 0.465252012 0 + 0.318015009 0.0209685005 0 + 0.453087986 0.484825999 0 + 0.00774474023 0.0212188996 0 + 0.211092994 0.923063993 0 + 0.982536018 0.910715997 0 + 0.771641016 0.916893005 0 + 0.590722978 0.678762972 0 + 0.561977029 0.915781975 0 + 0.106859997 0.106160998 0 + 0.106587999 0.0918574035 0 + 0.0930636004 0.106886998 0 + 0.093359299 0.0919594988 0 + 0.0105689 0.917496979 0 + 0.350659996 0.925613999 0 + 0.790142 0.0198040996 0 + 0.790732026 0.0200699996 0 + 0.980234981 0.0351187997 0 + 0.982527018 0.910727024 0 + faces 28 + 0 1 2 1 0 1 2 1 + 3 1 0 1 3 1 0 1 + 3 0 4 1 3 0 4 1 + 4 0 5 1 4 0 5 1 + 5 0 2 1 5 0 2 1 + 5 2 6 1 5 2 6 1 + 6 2 7 1 7 8 9 1 + 7 2 1 1 9 8 1 1 + 8 9 10 1 10 11 12 1 + 11 12 13 1 13 14 15 1 + 12 8 13 1 14 10 15 1 + 14 12 5 1 16 14 17 1 + 10 6 7 1 12 18 19 1 + 8 10 15 1 10 12 20 1 + 15 7 3 1 20 19 21 1 + 12 14 8 1 22 23 24 1 + 8 14 9 1 24 23 25 1 + 14 5 6 1 16 17 26 1 + 5 11 4 1 17 13 27 1 + 7 1 3 1 9 1 3 1 + 9 6 10 1 28 18 12 1 + 9 14 6 1 29 30 31 1 + 10 7 15 1 12 19 20 1 + 15 3 13 1 20 21 15 1 + 8 15 13 1 10 20 15 1 + 12 11 5 1 14 13 17 1 + 4 13 3 1 27 15 21 1 + 11 13 4 1 13 15 27 1 + position -0.123392999 -0.0451094992 -0.195179999 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + shadow 0 + render 0 + bitmap lshin_g + verts 18 + -0.138220996 -0.0320562012 0.00150550005 + -0.0626176 -0.0346743986 0.0364248008 + -0.0426225998 0.0461856015 0.0332938991 + -0.00952200964 0.00600227015 0.0285250992 + -0.0283362996 -0.112640001 -0.0049778698 + 0.0972729996 -0.0244689006 -0.000572245975 + -0.0607698001 -0.111327998 -0.000482088013 + -0.0370145999 0.106239997 0.00237181992 + -0.0624000989 -0.099179402 -0.416260988 + -0.0900086015 -0.0659717992 -0.253024012 + 0.0197997 -0.00458593993 -0.435966998 + 0.046513401 0.0106180999 -0.227101997 + 0.0880564973 -0.100959003 -0.413895994 + -0.00180274004 -0.200106993 -0.171274006 + -0.141453996 -0.0968172029 -0.118322998 + 0.0341872014 -0.157756999 -0.427536994 + 0.0209890995 -0.0967561007 -0.442117006 + 0.0236962009 -0.151158005 -0.272978991 + tverts 31 + 0.0625848025 0.0732249022 0 + 0.0980900005 0.0736600012 0 + 0.0873968974 0.0812517032 0 + 0.116756 0.0806104988 0 + 0.131864995 0.0601886995 0 + 0.134767994 0.0879833996 0 + 0.0816069022 0.0585573018 0 + 0.0779564008 0.0880756006 0 + 0.684885979 0.0168037992 0 + 0.573172987 0.409220994 0 + 0.498488009 0.0156389996 0 + 0.416281015 0.947075009 0 + 0.364951998 0.496436 0 + 0.245223001 0.930543005 0 + 0.236208007 0.0152824996 0 + 0.0224203002 0.645223975 0 + 0.0211913008 0.932977021 0 + 0.647487998 0.679525018 0 + 0.947272003 0.614319026 0 + 0.824455023 0.962756991 0 + 0.867615998 0.0202322006 0 + 0.304661006 0.338443995 0 + 0.187200993 0.334064007 0 + 0.303647995 0.384737998 0 + 0.384265989 0.331245989 0 + 0.312408 0.287838012 0 + 0.077679798 0.366571009 0 + 0.936074972 0.951861978 0 + 0.947272003 0.411053985 0 + 0.629420996 0.97724998 0 + 0.972820997 0.0221350007 0 + faces 32 + 0 1 2 1 0 1 2 1 + 2 1 3 1 2 1 3 1 + 3 4 5 1 3 4 5 1 + 3 1 4 1 3 1 4 1 + 4 1 6 1 4 1 6 1 + 6 1 0 1 6 1 0 1 + 7 0 2 1 7 0 2 1 + 7 2 3 1 7 2 3 1 + 7 3 5 1 7 3 5 1 + 8 9 10 1 8 9 10 1 + 10 9 7 1 10 9 11 1 + 11 10 7 1 12 10 11 1 + 5 12 11 1 13 14 12 1 + 13 5 4 1 15 13 16 1 + 14 13 6 1 17 18 19 1 + 15 9 8 1 20 9 8 1 + 16 8 10 1 21 22 23 1 + 16 10 12 1 21 23 24 1 + 16 12 15 1 21 24 25 1 + 16 15 8 1 21 25 22 1 + 17 5 13 1 26 13 15 1 + 13 4 6 1 18 27 19 1 + 9 17 14 1 9 28 17 1 + 14 6 0 1 17 19 29 1 + 17 13 14 1 28 18 17 1 + 15 17 9 1 20 28 9 1 + 7 14 0 1 11 17 29 1 + 12 17 15 1 30 28 20 1 + 12 10 11 1 14 10 12 1 + 9 14 7 1 9 17 11 1 + 11 7 5 1 12 11 13 1 + 17 12 5 1 26 14 13 1 + position 0.0207885001 -0.00882253982 -0.469700992 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + shadow 0 + render 0 + bitmap lfoot_g + verts 12 + -0.107550003 0.000503219024 -0.000713479007 + -0.0991515964 -0.00481694005 -0.136895001 + -0.0525775999 -0.101441003 -0.137373999 + -0.0238000993 -0.0588450991 0.00772586977 + -0.0219461005 0.0601733997 0.0102281002 + 0.0411100015 0.00557899009 0.00267683994 + 0.0303067006 -0.0617573 -0.135601997 + 0.0284917001 0.0162598994 -0.115001999 + -0.124426998 0.185797006 -0.137566 + 0.0048610298 0.311491996 -0.137696996 + 0.0584498011 0.182868004 -0.137575001 + -0.00112163997 0.160440996 -0.0829155967 + tverts 25 + 0.717440009 0.981959999 0 + 0.977919996 0.636327982 0 + 0.953806996 0.963391006 0 + 0.797896981 0.857115984 0 + 0.844676971 0.823774993 0 + 0.842957973 0.859933972 0 + 0.876070023 0.843999982 0 + 0.313167006 0.972175002 0 + 0.188706994 0.981276989 0 + 0.120507002 0.501730978 0 + 0.159603998 0.323998004 0 + 0.00890985969 0.542876005 0 + 0.961925983 0.106126003 0 + 0.966394007 0.0210221 0 + 0.790156007 0.187889993 0 + 0.863211989 0.00692227995 0 + 0.0177730992 0.970682979 0 + 0.786275983 0.331465989 0 + 0.960762024 0.369832993 0 + 0.972662985 0.240235999 0 + 0.455951005 0.968123019 0 + 0.420226008 0.392343014 0 + 0.657136977 0.131560996 0 + 0.219138995 0.0653441995 0 + 0.402677 0.0306202993 0 + faces 20 + 0 1 2 1 0 1 2 2 + 0 3 4 1 3 4 5 2 + 4 3 5 1 5 4 6 2 + 5 3 6 1 7 8 9 2 + 5 6 7 1 7 9 10 2 + 6 3 2 1 9 8 11 2 + 7 6 1 1 12 13 14 2 + 1 6 2 1 14 13 15 2 + 2 3 0 1 11 8 16 2 + 8 9 10 1 17 18 19 2 + 4 11 8 1 20 21 22 2 + 0 4 8 1 0 20 22 2 + 0 8 1 1 0 22 1 2 + 10 11 4 1 23 21 20 2 + 7 10 5 1 10 23 7 2 + 5 10 4 1 7 23 20 2 + 7 1 10 1 12 14 19 2 + 1 8 10 1 14 17 19 2 + 10 9 11 1 23 24 21 2 + 11 9 8 1 21 24 22 2 + position 0.0475496985 -0.0911976025 -0.413145989 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + shadow 0 + render 0 + bitmap rthigh_g + verts 16 + 0.0781446025 -0.0964488983 0.0670600981 + 0.0445275009 0.131789997 0.0740275979 + -0.0333117992 -0.0974176973 0.0720105022 + 0.203679994 0.0857838988 0.00156345998 + 0.111202002 0.200988993 -0.00414639013 + -0.119005002 0.134316996 0.00468795979 + -0.118736997 -0.202414006 -0.0052834102 + 0.100201003 -0.175490007 -0.00328241009 + 0.0120655997 -0.109229997 -0.475097001 + 0.120803997 -0.0134661999 -0.471819997 + 0.0810393021 -0.198285997 -0.257037997 + 0.0130735999 0.0935985968 -0.471379995 + 0.0151597997 0.195862994 -0.230397999 + 0.126716003 0.166348994 -0.220881999 + -0.115794003 -0.00633224985 -0.475097001 + 0.262030989 0.0175468996 -0.142625004 + tverts 32 + 0.642623007 0.995176971 0 + 0.371484995 0.990176976 0 + 0.0147387004 0.988349974 0 + 0.562649012 0.915606022 0 + 0.34949699 0.926782012 0 + 0.210933998 0.923408985 0 + 0.0094111301 0.91782099 0 + 0.919241011 0.99504298 0 + 0.982136011 0.91149199 0 + 0.772394001 0.916094005 0 + 0.790382981 0.0207973998 0 + 0.589354992 0.0208810009 0 + 0.792307019 0.462134987 0 + 0.318015009 0.0209685005 0 + 0.325257987 0.465252012 0 + 0.453087986 0.484825999 0 + 0.00774474023 0.0212188996 0 + 0.211092994 0.923063993 0 + 0.982536018 0.910715997 0 + 0.771641016 0.916893005 0 + 0.590722978 0.678762972 0 + 0.561977029 0.915781975 0 + 0.106587999 0.0918574035 0 + 0.106859997 0.106160998 0 + 0.0930636004 0.106886998 0 + 0.093359299 0.0919594988 0 + 0.0105689 0.917496979 0 + 0.350659996 0.925613999 0 + 0.790142 0.0198040996 0 + 0.980234981 0.0351187997 0 + 0.790732026 0.0200699996 0 + 0.982527018 0.910727024 0 + faces 28 + 0 1 2 1 0 1 2 1 + 0 3 1 1 0 3 1 1 + 1 3 4 1 1 3 4 1 + 1 4 5 1 1 4 5 1 + 1 5 2 1 1 5 2 1 + 2 5 6 1 2 5 6 1 + 2 6 7 1 7 8 9 1 + 2 7 0 1 7 9 0 1 + 8 9 10 1 10 11 12 1 + 11 12 13 1 13 14 15 1 + 9 11 13 1 11 13 15 1 + 11 14 5 1 13 16 17 1 + 6 10 7 1 18 12 19 1 + 10 9 15 1 12 11 20 1 + 7 15 3 1 19 20 21 1 + 14 11 9 1 22 23 24 1 + 14 9 8 1 22 24 25 1 + 5 14 6 1 17 16 26 1 + 12 5 4 1 14 17 27 1 + 0 7 3 1 0 9 3 1 + 6 8 10 1 18 28 12 1 + 14 8 6 1 29 30 31 1 + 7 10 15 1 19 12 20 1 + 3 15 13 1 21 20 15 1 + 15 9 13 1 20 11 15 1 + 12 11 5 1 14 13 17 1 + 13 4 3 1 15 27 21 1 + 13 12 4 1 15 14 27 1 + position 0.121506996 -0.0451094992 -0.195179999 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + shadow 0 + render 0 + bitmap rshin_g + verts 18 + 0.0626176968 -0.0346743986 0.0364248008 + 0.138220996 -0.0320562012 0.00150550005 + 0.0426225998 0.0461856015 0.0332938991 + 0.00952207018 0.00600225991 0.0285250992 + 0.0283362996 -0.112640001 -0.00497788005 + -0.0972729996 -0.0244689006 -0.000572247023 + 0.0607699007 -0.111327998 -0.000482089003 + 0.0370145999 0.106239997 0.00237181992 + 0.0900086984 -0.0659717992 -0.253024012 + 0.0624000989 -0.099179402 -0.416260988 + -0.0197997 -0.00458593993 -0.435966998 + -0.046513401 0.0106180999 -0.227101997 + -0.0880564004 -0.100959003 -0.413895994 + 0.00180277997 -0.200106993 -0.171274006 + 0.141453996 -0.0968172029 -0.118322998 + -0.0341872014 -0.157756999 -0.427536994 + -0.0209890008 -0.0967561007 -0.442117006 + -0.0236961003 -0.151158005 -0.272978991 + tverts 31 + 0.0980900005 0.0736600012 0 + 0.0625848025 0.0732249022 0 + 0.0873968974 0.0812517032 0 + 0.116756 0.0806104988 0 + 0.131864995 0.0601886995 0 + 0.134767994 0.0879833996 0 + 0.0816069022 0.0585573018 0 + 0.0779564008 0.0880756006 0 + 0.573172987 0.409220994 0 + 0.684885979 0.0168037992 0 + 0.498488009 0.0156389996 0 + 0.416281015 0.947075009 0 + 0.364951998 0.496436 0 + 0.236208007 0.0152824996 0 + 0.245223001 0.930543005 0 + 0.0224203002 0.645223975 0 + 0.0211913008 0.932977021 0 + 0.947272003 0.614319026 0 + 0.647487998 0.679525018 0 + 0.824455023 0.962756991 0 + 0.867615998 0.0202322006 0 + 0.187200993 0.334064007 0 + 0.304661006 0.338443995 0 + 0.303647995 0.384737998 0 + 0.384265989 0.331245989 0 + 0.312408 0.287838012 0 + 0.077679798 0.366571009 0 + 0.936074972 0.951861978 0 + 0.947272003 0.411053985 0 + 0.629420996 0.97724998 0 + 0.972820997 0.0221350007 0 + faces 32 + 0 1 2 1 0 1 2 1 + 0 2 3 1 0 2 3 1 + 4 3 5 1 4 3 5 1 + 0 3 4 1 0 3 4 1 + 0 4 6 1 0 4 6 1 + 0 6 1 1 0 6 1 1 + 1 7 2 1 1 7 2 1 + 2 7 3 1 2 7 3 1 + 3 7 5 1 3 7 5 1 + 8 9 10 1 8 9 10 1 + 8 10 7 1 8 10 11 1 + 10 11 7 1 10 12 11 1 + 12 5 11 1 13 14 12 1 + 5 13 4 1 14 15 16 1 + 13 14 6 1 17 18 19 1 + 8 15 9 1 8 20 9 1 + 9 16 10 1 21 22 23 1 + 10 16 12 1 23 22 24 1 + 12 16 15 1 24 22 25 1 + 15 16 9 1 25 22 21 1 + 5 17 13 1 14 26 15 1 + 4 13 6 1 27 17 19 1 + 17 8 14 1 28 8 18 1 + 6 14 1 1 19 18 29 1 + 13 17 14 1 17 28 18 1 + 17 15 8 1 28 20 8 1 + 14 7 1 1 18 11 29 1 + 17 12 15 1 28 30 20 1 + 10 12 11 1 10 13 12 1 + 14 8 7 1 18 8 11 1 + 7 11 5 1 11 12 14 1 + 12 17 5 1 13 26 14 1 + position -0.0207899995 -0.00882253982 -0.469700992 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0 0 0 + diffuse 0 0 1 + specular 0 0 0 + shininess 0 + shadow 0 + render 0 + bitmap rfoot_g + verts 12 + 0.099125199 -0.00481694005 -0.136895001 + 0.107550003 0.000503219024 -0.000713479007 + 0.0525511988 -0.101441003 -0.137373999 + 0.0237697996 -0.0588450991 0.00772585999 + 0.0219157003 0.0601733997 0.0102281002 + -0.0411403999 0.00557899009 0.00267682993 + -0.0303329993 -0.0617573 -0.135601997 + -0.0285180006 0.0162598994 -0.115001999 + -0.00488738017 0.311491996 -0.137696996 + 0.124401003 0.185797006 -0.137566 + -0.0584761016 0.182868004 -0.137575001 + 0.00109528995 0.160440996 -0.082915701 + tverts 25 + 0.977919996 0.636327982 0 + 0.717440009 0.981959999 0 + 0.953806996 0.963391006 0 + 0.844676971 0.823774993 0 + 0.797896981 0.857115984 0 + 0.842957973 0.859933972 0 + 0.876070023 0.843999982 0 + 0.188706994 0.981276989 0 + 0.313167006 0.972175002 0 + 0.120507002 0.501730978 0 + 0.159603998 0.323998004 0 + 0.00890985969 0.542876005 0 + 0.966394007 0.0210221 0 + 0.961925983 0.106126003 0 + 0.790156007 0.187889993 0 + 0.863211989 0.00692227995 0 + 0.0177730992 0.970682979 0 + 0.960762024 0.369832993 0 + 0.786275983 0.331465989 0 + 0.972662985 0.240235999 0 + 0.420226008 0.392343014 0 + 0.455951005 0.968123019 0 + 0.657136977 0.131560996 0 + 0.219138995 0.0653441995 0 + 0.402677 0.0306202993 0 + faces 20 + 0 1 2 1 0 1 2 2 + 3 1 4 1 3 4 5 2 + 3 4 5 1 3 5 6 2 + 3 5 6 1 7 8 9 2 + 6 5 7 1 9 8 10 2 + 3 6 2 1 7 9 11 2 + 6 7 0 1 12 13 14 2 + 6 0 2 1 12 14 15 2 + 3 2 1 1 7 11 16 2 + 8 9 10 1 17 18 19 2 + 11 4 9 1 20 21 22 2 + 4 1 9 1 21 1 22 2 + 9 1 0 1 22 1 0 2 + 11 10 4 1 20 23 21 2 + 10 7 5 1 23 10 8 2 + 10 5 4 1 23 8 21 2 + 0 7 10 1 14 13 19 2 + 9 0 10 1 18 14 19 2 + 8 10 11 1 24 23 20 2 + 8 11 9 1 24 20 22 2 + position -0.0475482009 -0.0911976025 -0.413145989 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0 0 0 + diffuse 0 0 0 + specular 0 0 0 + shininess 0 + shadow 0 + render 0 + bitmap NULL + verts 8 + -0.0451559015 -0.0464341007 0 + -0.0451559015 0.0464341007 0 + 1.05664003 0.0464341007 0 + 1.05664003 -0.0464341007 0 + -0.0451559015 -0.0464341007 0.0486500002 + 1.05664003 -0.0464341007 0.0486500002 + 1.05664003 0.0464341007 0.0486500002 + -0.0451559015 0.0464341007 0.0486500002 + faces 12 + 0 1 2 1 0 0 0 2 + 2 3 0 1 0 0 0 2 + 4 5 6 1 0 0 0 1 + 6 7 4 1 0 0 0 1 + 0 3 5 2 0 0 0 5 + 5 4 0 2 0 0 0 5 + 3 2 6 4 0 0 0 4 + 6 5 3 4 0 0 0 4 + 2 1 7 2 0 0 0 6 + 7 6 2 2 0 0 0 6 + 1 0 4 4 0 0 0 3 + 4 7 1 4 0 0 0 3 + position 0.00225083996 0 0 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 1 0.68235302 0 + diffuse 1 0.68235302 0 + specular 0 0 0 + shininess 2 + render 0 + bitmap coat_bones + verts 30 + -0.119741 0.00589312986 -0.0711048022 + -0.162044004 0.102554001 -0.0711048022 + -0.194659993 0.102502003 -0.200080007 + -0.164671004 -0.0170712993 -0.200080007 + -0.114182003 0.126177996 0.0381962992 + -0.0513455011 0.0476205014 0.0381962992 + -0.0415158011 -0.118040003 -0.200080007 + -0.0180316996 -0.0732603967 -0.0711048022 + 0.0320927985 -0.0302568991 0.0381962992 + 0.143140003 -0.152501002 -0.0711048022 + 0.129749 -0.204037994 -0.200080007 + 0.134861007 -0.0561874993 0.0381962992 + 0.217782006 -0.170521006 -0.200080007 + 0.217782006 -0.106289998 -0.0711048022 + 0.217043996 -0.0671273023 0.0381962992 + -0.186414003 0.101908997 -0.200080007 + -0.154448003 0.101960003 -0.0711048022 + -0.112992004 0.00723227998 -0.0711048022 + -0.157023996 -0.0152733 -0.200080007 + -0.107542999 0.125111997 0.0381962992 + -0.045965001 0.0481257997 0.0381962992 + -0.0363299996 -0.113210998 -0.200080007 + -0.0133175002 -0.0688342974 -0.0711048022 + 0.0358057991 -0.0281932 0.0381962992 + 0.144631997 -0.146488994 -0.0711048022 + 0.131509006 -0.197493002 -0.200080007 + 0.136519 -0.0536057986 0.0381962992 + 0.217782006 -0.164643005 -0.200080007 + 0.217782006 -0.101203002 -0.0711048022 + 0.217784002 -0.0643263012 0.0381962992 + tverts 30 + 0.204283997 0.407368988 0 + 0.157489002 0.407368988 0 + 0.134178996 0.350423008 0 + 0.178865001 0.350423008 0 + 0.182227001 0.459930003 0 + 0.223369002 0.459930003 0 + 0.255427986 0.350423008 0 + 0.26670301 0.407368988 0 + 0.278003007 0.459930003 0 + 0.344779998 0.407368988 0 + 0.335860014 0.350423008 0 + 0.345292985 0.459930003 0 + 0.388841987 0.350423008 0 + 0.388841987 0.407368988 0 + 0.399103999 0.459930003 0 + 0.168397993 0.311405003 0 + 0.178841993 0.386032999 0 + 0.233236998 0.386032999 0 + 0.222793996 0.311405003 0 + 0.178841993 0.460660994 0 + 0.233236998 0.460660994 0 + 0.277188987 0.311405003 0 + 0.287631989 0.386032999 0 + 0.287631989 0.460660994 0 + 0.342027992 0.386032999 0 + 0.331584007 0.311405003 0 + 0.342027992 0.460660994 0 + 0.385978997 0.311405003 0 + 0.396423012 0.386032999 0 + 0.396423012 0.460660994 0 + faces 32 + 0 1 2 1 0 1 2 0 + 3 0 2 1 3 0 2 0 + 0 4 1 1 0 4 1 0 + 0 5 4 1 0 5 4 0 + 6 0 3 1 6 0 3 0 + 6 7 0 1 6 7 0 0 + 8 5 0 1 8 5 0 0 + 7 8 0 1 7 8 0 0 + 9 7 6 1 9 7 6 0 + 10 9 6 1 10 9 6 0 + 9 8 7 1 9 8 7 0 + 9 11 8 1 9 11 8 0 + 12 9 10 1 12 9 10 0 + 12 13 9 1 12 13 9 0 + 14 11 9 1 14 11 9 0 + 13 14 9 1 13 14 9 0 + 15 16 17 1 15 16 17 0 + 15 17 18 1 15 17 18 0 + 16 19 17 1 16 19 17 0 + 19 20 17 1 19 20 17 0 + 18 17 21 1 18 17 21 0 + 17 22 21 1 17 22 21 0 + 17 20 23 1 17 20 23 0 + 17 23 22 1 17 23 22 0 + 21 22 24 1 21 22 24 0 + 21 24 25 1 21 24 25 0 + 22 23 24 1 22 23 24 0 + 23 26 24 1 23 26 24 0 + 25 24 27 1 25 24 27 0 + 24 28 27 1 24 28 27 0 + 24 26 29 1 24 26 29 0 + 24 29 28 1 24 29 28 0 + position -0.217041001 -0.197345003 0 + orientation 0 1 0 -0.17453298 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 1 0.68235302 0 + diffuse 1 0.68235302 0 + specular 0 0 0 + shininess 2 + render 0 + bitmap coat_bones + verts 26 + -0.179747999 -0.0440049991 -0.239923999 + -0.213692993 0.104185 -0.239923999 + -0.213692993 0.104581997 -0.397406012 + -0.194212005 -0.0588431992 -0.397406012 + -0.194659993 0.102502003 0.000169678999 + -0.164671004 -0.0170712993 0.000169716994 + -0.0307027008 -0.175198004 -0.397406012 + -0.0307027008 -0.168255001 -0.239923999 + -0.0415158011 -0.118040003 0.000169716994 + 0.118051998 -0.249197006 -0.239923999 + 0.118051998 -0.263727009 -0.397406012 + 0.129749 -0.204037994 0.000169716994 + 0.209767997 -0.265810013 -0.397406012 + 0.217782006 -0.229570001 -0.239923999 + 0.217782006 -0.170521006 0.000169716994 + -0.171795994 -0.0416666009 -0.239923999 + -0.185975 -0.0562096983 -0.397406012 + -0.186414003 0.101908997 0.000169678999 + -0.157023996 -0.0152733997 0.000169716994 + -0.0257337 -0.169719994 -0.397406012 + -0.0257337 -0.162792996 -0.239923999 + -0.0363299996 -0.113210998 0.000169716994 + 0.120044 -0.242117003 -0.239923999 + 0.120044 -0.256478995 -0.397406012 + 0.131509006 -0.197493002 0.000169716994 + 0.217782006 -0.164643005 0.000169716994 + tverts 30 + 0.159367993 0.248311996 0 + 0.111358002 0.248311996 0 + 0.111358002 0.181335002 0 + 0.155214995 0.181335002 0 + 0.134178996 0.350423008 0 + 0.178865001 0.350423008 0 + 0.261031002 0.181335002 0 + 0.255822003 0.248311996 0 + 0.255427986 0.350423008 0 + 0.326047003 0.248311996 0 + 0.326047003 0.181335002 0 + 0.335860014 0.350423008 0 + 0.385401994 0.181335002 0 + 0.388859004 0.248311996 0 + 0.388841987 0.350423008 0 + 0.154131994 0.161053002 0 + 0.168397993 0.236778006 0 + 0.222793996 0.236778006 0 + 0.208526999 0.161053002 0 + 0.168397993 0.311405003 0 + 0.222793996 0.311405003 0 + 0.262921989 0.161053002 0 + 0.277188987 0.236778006 0 + 0.277188987 0.311405003 0 + 0.331584007 0.236778006 0 + 0.317317009 0.161053002 0 + 0.331584007 0.311405003 0 + 0.371711999 0.161053002 0 + 0.385978997 0.236778006 0 + 0.385978997 0.311405003 0 + faces 32 + 0 1 2 1 0 1 2 0 + 3 0 2 1 3 0 2 0 + 0 4 1 1 0 4 1 0 + 0 5 4 1 0 5 4 0 + 6 0 3 1 6 0 3 0 + 6 7 0 1 6 7 0 0 + 8 5 0 1 8 5 0 0 + 7 8 0 1 7 8 0 0 + 9 7 6 1 9 7 6 0 + 10 9 6 1 10 9 6 0 + 9 8 7 1 9 8 7 0 + 9 11 8 1 9 11 8 0 + 12 9 10 1 12 9 10 0 + 12 13 9 1 12 13 9 0 + 14 11 9 1 14 11 9 0 + 13 14 9 1 13 14 9 0 + 2 1 15 1 15 16 17 0 + 2 15 16 1 15 17 18 0 + 1 17 15 1 16 19 17 0 + 17 18 15 1 19 20 17 0 + 16 15 19 1 18 17 21 0 + 15 20 19 1 17 22 21 0 + 15 18 21 1 17 20 23 0 + 15 21 20 1 17 23 22 0 + 19 20 22 1 21 22 24 0 + 19 22 23 1 21 24 25 0 + 20 21 22 1 22 23 24 0 + 21 24 22 1 23 26 24 0 + 23 22 12 1 25 24 27 0 + 22 13 12 1 24 28 27 0 + 22 24 25 1 24 26 29 0 + 22 25 13 1 24 29 28 0 + position 0 0 -0.200084001 + orientation 0 -1 0 -0.17453298 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 1 0.68235302 0 + diffuse 1 0.68235302 0 + specular 0 0 0 + shininess 2 + render 0 + bitmap coat_bones + verts 24 + -0.194212005 -0.0588435009 -0.175093994 + -0.213692993 0.104581997 -0.175093994 + -0.213692993 0.104581997 -0.427064002 + -0.194212005 -0.0588435009 -0.427064002 + -0.213692993 0.104581997 -0.00580008002 + -0.194212005 -0.0588435009 -0.00580008002 + -0.0307027008 -0.222703993 -0.427064002 + -0.0307027008 -0.190700993 -0.175093994 + -0.0307027008 -0.175198004 -0.00580008002 + 0.118051998 -0.279231012 -0.175093994 + 0.118051998 -0.311237007 -0.427064002 + 0.118051998 -0.263727009 -0.00580008002 + 0.209767997 -0.313098013 -0.427064002 + 0.209767997 -0.281096011 -0.175093994 + 0.209767997 -0.265810013 -0.00580008002 + -0.185975 -0.0562096983 -0.175093994 + -0.185975 -0.0562096983 -0.427064002 + -0.185975 -0.0562096983 -0.00580008002 + -0.0257337 -0.216792002 -0.427064002 + -0.0257337 -0.184788004 -0.175093994 + -0.0257337 -0.169719994 -0.00580008002 + 0.120044 -0.271548986 -0.175093994 + 0.120044 -0.303552002 -0.427064002 + 0.120044 -0.256478995 -0.00580008002 + tverts 30 + 0.155214995 0.109334998 0 + 0.111358002 0.109334998 0 + 0.111358002 0.00217200001 0 + 0.155214995 0.00217200001 0 + 0.111358002 0.181335002 0 + 0.155214995 0.181335002 0 + 0.261031002 0.00217200001 0 + 0.261031002 0.109334998 0 + 0.261031002 0.181335002 0 + 0.326047003 0.109334998 0 + 0.326047003 0.00217200001 0 + 0.326047003 0.181335002 0 + 0.385401994 0.00217200001 0 + 0.385401994 0.109334998 0 + 0.385401994 0.181335002 0 + 0.154131994 0.0117969997 0 + 0.154131994 0.0864240006 0 + 0.208526999 0.0864240006 0 + 0.208526999 0.0117969997 0 + 0.154131994 0.161053002 0 + 0.208526999 0.161053002 0 + 0.262921989 0.0117969997 0 + 0.262921989 0.0864240006 0 + 0.262921989 0.161053002 0 + 0.317317009 0.0864240006 0 + 0.317317009 0.0117969997 0 + 0.317317009 0.161053002 0 + 0.371711999 0.0117969997 0 + 0.371711999 0.0864240006 0 + 0.371711999 0.161053002 0 + faces 32 + 0 1 2 1 0 1 2 0 + 3 0 2 1 3 0 2 0 + 0 4 1 1 0 4 1 0 + 0 5 4 1 0 5 4 0 + 6 0 3 1 6 0 3 0 + 6 7 0 1 6 7 0 0 + 8 5 0 1 8 5 0 0 + 7 8 0 1 7 8 0 0 + 9 7 6 1 9 7 6 0 + 10 9 6 1 10 9 6 0 + 9 8 7 1 9 8 7 0 + 9 11 8 1 9 11 8 0 + 12 9 10 1 12 9 10 0 + 12 13 9 1 12 13 9 0 + 14 11 9 1 14 11 9 0 + 13 14 9 1 13 14 9 0 + 2 1 15 1 15 16 17 0 + 2 15 16 1 15 17 18 0 + 1 4 15 1 16 19 17 0 + 4 17 15 1 19 20 17 0 + 16 15 18 1 18 17 21 0 + 15 19 18 1 17 22 21 0 + 15 17 20 1 17 20 23 0 + 15 20 19 1 17 23 22 0 + 18 19 21 1 21 22 24 0 + 18 21 22 1 21 24 25 0 + 19 20 21 1 22 23 24 0 + 20 23 21 1 23 26 24 0 + 22 21 12 1 25 24 27 0 + 21 13 12 1 24 28 27 0 + 21 23 14 1 24 26 29 0 + 21 14 13 1 24 29 28 0 + position 0 0 -0.391772002 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 1 0.68235302 0 + diffuse 1 0.68235302 0 + specular 0 0 0 + shininess 2 + render 0 + bitmap coat_bones + verts 30 + 0.194343999 0.102504998 -0.200080007 + 0.161727995 0.102557003 -0.0711048022 + 0.119424999 0.00589598995 -0.0711048022 + 0.164354995 -0.0170683991 -0.200080007 + 0.113870002 0.126181006 0.0381962992 + 0.0510332994 0.0476233996 0.0381962992 + 0.0411997996 -0.118037 -0.200080007 + 0.0177157 -0.0732576028 -0.0711048022 + -0.0324052013 -0.0302537996 0.0381962992 + -0.143455997 -0.152498007 -0.0711048022 + -0.130064994 -0.204036996 -0.200080007 + -0.135174006 -0.0561842993 0.0381962992 + -0.218097001 -0.170518994 -0.200080007 + -0.218097001 -0.106287003 -0.0711048022 + -0.218832999 -0.0671242997 0.0381962992 + 0.112676002 0.00723514007 -0.0711048022 + 0.154131994 0.101962 -0.0711048022 + 0.186096996 0.101911999 -0.200080007 + 0.156708002 -0.0152705004 -0.200080007 + 0.107230999 0.125113994 0.0381962992 + 0.0456526987 0.0481287017 0.0381962992 + 0.0360140987 -0.113208003 -0.200080007 + 0.0130014997 -0.0688315034 -0.0711048022 + -0.0361181982 -0.0281902999 0.0381962992 + -0.144948006 -0.146485999 -0.0711048022 + -0.131825 -0.197490007 -0.200080007 + -0.136831 -0.0536029004 0.0381962992 + -0.218097001 -0.164639995 -0.200080007 + -0.218097001 -0.101199999 -0.0711048022 + -0.218097001 -0.0643234029 0.0381962992 + tverts 30 + 0.134178996 0.350423008 0 + 0.157489002 0.407368988 0 + 0.204283997 0.407368988 0 + 0.178865001 0.350423008 0 + 0.182227001 0.459930003 0 + 0.223369002 0.459930003 0 + 0.255427986 0.350423008 0 + 0.26670301 0.407368988 0 + 0.278003007 0.459930003 0 + 0.344779998 0.407368988 0 + 0.335860014 0.350423008 0 + 0.345292985 0.459930003 0 + 0.388841987 0.350423008 0 + 0.388841987 0.407368988 0 + 0.399103999 0.459930003 0 + 0.233236998 0.386032999 0 + 0.178841993 0.386032999 0 + 0.168397993 0.311405003 0 + 0.222793996 0.311405003 0 + 0.178841993 0.460660994 0 + 0.233236998 0.460660994 0 + 0.277188987 0.311405003 0 + 0.287631989 0.386032999 0 + 0.287631989 0.460660994 0 + 0.342027992 0.386032999 0 + 0.331584007 0.311405003 0 + 0.342027992 0.460660994 0 + 0.385978997 0.311405003 0 + 0.396423012 0.386032999 0 + 0.396423012 0.460660994 0 + faces 32 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 1 4 2 1 1 4 2 0 + 4 5 2 1 4 5 2 0 + 3 2 6 1 3 2 6 0 + 2 7 6 1 2 7 6 0 + 2 5 8 1 2 5 8 0 + 2 8 7 1 2 8 7 0 + 6 7 9 1 6 7 9 0 + 6 9 10 1 6 9 10 0 + 7 8 9 1 7 8 9 0 + 8 11 9 1 8 11 9 0 + 10 9 12 1 10 9 12 0 + 9 13 12 1 9 13 12 0 + 9 11 14 1 9 11 14 0 + 9 14 13 1 9 14 13 0 + 15 16 17 1 15 16 17 0 + 18 15 17 1 18 15 17 0 + 15 19 16 1 15 19 16 0 + 15 20 19 1 15 20 19 0 + 21 15 18 1 21 15 18 0 + 21 22 15 1 21 22 15 0 + 23 20 15 1 23 20 15 0 + 22 23 15 1 22 23 15 0 + 24 22 21 1 24 22 21 0 + 25 24 21 1 25 24 21 0 + 24 23 22 1 24 23 22 0 + 24 26 23 1 24 26 23 0 + 27 24 25 1 27 24 25 0 + 27 28 24 1 27 28 24 0 + 29 26 24 1 29 26 24 0 + 28 29 24 1 28 29 24 0 + position 0.218839005 -0.197347999 0 + orientation 0 -1 0 -0.17453298 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 1 0.68235302 0 + diffuse 1 0.68235302 0 + specular 0 0 0 + shininess 2 + render 0 + bitmap coat_bones + verts 26 + 0.213376001 0.104584999 -0.397406995 + 0.213376001 0.104188003 -0.239924997 + 0.179433003 -0.0440020002 -0.239924997 + 0.193895996 -0.0588405989 -0.397406995 + 0.194343999 0.102504998 0.000168985993 + 0.164354995 -0.0170684997 0.000169024002 + 0.0303866994 -0.175194994 -0.397406995 + 0.0303866994 -0.168252006 -0.239924997 + 0.0411997996 -0.118037 0.000169024002 + -0.118368 -0.249195993 -0.239924997 + -0.118368 -0.263725013 -0.397406995 + -0.130064994 -0.204036996 0.000169024002 + -0.210085005 -0.265805006 -0.397406995 + -0.218097001 -0.229568005 -0.239924997 + -0.218097001 -0.170518994 0.000169024002 + 0.171480998 -0.0416635983 -0.239924997 + 0.185657993 -0.0562065989 -0.397406995 + 0.186096996 0.101911999 0.000168985993 + 0.156708002 -0.0152705004 0.000169024002 + 0.0254177991 -0.169716999 -0.397406995 + 0.0254177991 -0.16279 -0.239924997 + 0.0360140987 -0.113208003 0.000169024002 + -0.120360002 -0.242115006 -0.239924997 + -0.120360002 -0.256476015 -0.397406995 + -0.131825 -0.197490007 0.000169024002 + -0.218097001 -0.164639995 0.000169024002 + tverts 30 + 0.111358002 0.181335002 0 + 0.111358002 0.248311996 0 + 0.159367993 0.248311996 0 + 0.155214995 0.181335002 0 + 0.134178996 0.350423008 0 + 0.178865001 0.350423008 0 + 0.261031002 0.181335002 0 + 0.255822003 0.248311996 0 + 0.255427986 0.350423008 0 + 0.326047003 0.248311996 0 + 0.326047003 0.181335002 0 + 0.335860014 0.350423008 0 + 0.385401994 0.181335002 0 + 0.388859004 0.248311996 0 + 0.388841987 0.350423008 0 + 0.222793996 0.236778006 0 + 0.168397993 0.236778006 0 + 0.154131994 0.161053002 0 + 0.208526999 0.161053002 0 + 0.168397993 0.311405003 0 + 0.222793996 0.311405003 0 + 0.262921989 0.161053002 0 + 0.277188987 0.236778006 0 + 0.277188987 0.311405003 0 + 0.331584007 0.236778006 0 + 0.317317009 0.161053002 0 + 0.331584007 0.311405003 0 + 0.371711999 0.161053002 0 + 0.385978997 0.236778006 0 + 0.385978997 0.311405003 0 + faces 32 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 1 4 2 1 1 4 2 0 + 4 5 2 1 4 5 2 0 + 3 2 6 1 3 2 6 0 + 2 7 6 1 2 7 6 0 + 2 5 8 1 2 5 8 0 + 2 8 7 1 2 8 7 0 + 6 7 9 1 6 7 9 0 + 6 9 10 1 6 9 10 0 + 7 8 9 1 7 8 9 0 + 8 11 9 1 8 11 9 0 + 10 9 12 1 10 9 12 0 + 9 13 12 1 9 13 12 0 + 9 11 14 1 9 11 14 0 + 9 14 13 1 9 14 13 0 + 15 1 0 1 15 16 17 0 + 16 15 0 1 18 15 17 0 + 15 17 1 1 15 19 16 0 + 15 18 17 1 15 20 19 0 + 19 15 16 1 21 15 18 0 + 19 20 15 1 21 22 15 0 + 21 18 15 1 23 20 15 0 + 20 21 15 1 22 23 15 0 + 22 20 19 1 24 22 21 0 + 23 22 19 1 25 24 21 0 + 22 21 20 1 24 23 22 0 + 22 24 21 1 24 26 23 0 + 12 22 23 1 27 24 25 0 + 12 13 22 1 27 28 24 0 + 25 24 22 1 29 26 24 0 + 13 25 22 1 28 29 24 0 + position 0 0 -0.200084001 + orientation 0 1 0 -0.17453298 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 1 0.68235302 0 + diffuse 1 0.68235302 0 + specular 0 0 0 + shininess 2 + render 0 + bitmap coat_bones + verts 24 + 0.213376001 0.104584999 -0.427064002 + 0.213376001 0.104584999 -0.175093994 + 0.193895996 -0.0588405989 -0.175093994 + 0.193895996 -0.0588405989 -0.427064002 + 0.213376001 0.104584999 -0.00580008002 + 0.193895996 -0.0588405989 -0.00580008002 + 0.0303866994 -0.222702995 -0.427064002 + 0.0303866994 -0.190696999 -0.175093994 + 0.0303866994 -0.175194994 -0.00580008002 + -0.118368 -0.279228002 -0.175093994 + -0.118368 -0.311235011 -0.427064002 + -0.118368 -0.263725013 -0.00580008002 + -0.210085005 -0.313098013 -0.427064002 + -0.210085005 -0.281091005 -0.175093994 + -0.210085005 -0.265805006 -0.00580008002 + 0.185657993 -0.0562065989 -0.175093994 + 0.185657993 -0.0562065989 -0.427064002 + 0.185657993 -0.0562065989 -0.00580008002 + 0.0254177991 -0.216791004 -0.427064002 + 0.0254177991 -0.184784994 -0.175093994 + 0.0254177991 -0.169716999 -0.00580008002 + -0.120360002 -0.271544009 -0.175093994 + -0.120360002 -0.303550005 -0.427064002 + -0.120360002 -0.256476015 -0.00580008002 + tverts 30 + 0.111358002 0.00217200001 0 + 0.111358002 0.109334998 0 + 0.155214995 0.109334998 0 + 0.155214995 0.00217200001 0 + 0.111358002 0.181335002 0 + 0.155214995 0.181335002 0 + 0.261031002 0.00217200001 0 + 0.261031002 0.109334998 0 + 0.261031002 0.181335002 0 + 0.326047003 0.109334998 0 + 0.326047003 0.00217200001 0 + 0.326047003 0.181335002 0 + 0.385401994 0.00217200001 0 + 0.385401994 0.109334998 0 + 0.385401994 0.181335002 0 + 0.208526999 0.0864240006 0 + 0.154131994 0.0864240006 0 + 0.154131994 0.0117969997 0 + 0.208526999 0.0117969997 0 + 0.154131994 0.161053002 0 + 0.208526999 0.161053002 0 + 0.262921989 0.0117969997 0 + 0.262921989 0.0864240006 0 + 0.262921989 0.161053002 0 + 0.317317009 0.0864240006 0 + 0.317317009 0.0117969997 0 + 0.317317009 0.161053002 0 + 0.371711999 0.0117969997 0 + 0.371711999 0.0864240006 0 + 0.371711999 0.161053002 0 + faces 32 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 1 4 2 1 1 4 2 0 + 4 5 2 1 4 5 2 0 + 3 2 6 1 3 2 6 0 + 2 7 6 1 2 7 6 0 + 2 5 8 1 2 5 8 0 + 2 8 7 1 2 8 7 0 + 6 7 9 1 6 7 9 0 + 6 9 10 1 6 9 10 0 + 7 8 9 1 7 8 9 0 + 8 11 9 1 8 11 9 0 + 10 9 12 1 10 9 12 0 + 9 13 12 1 9 13 12 0 + 9 11 14 1 9 11 14 0 + 9 14 13 1 9 14 13 0 + 15 1 0 1 15 16 17 0 + 16 15 0 1 18 15 17 0 + 15 4 1 1 15 19 16 0 + 15 17 4 1 15 20 19 0 + 18 15 16 1 21 15 18 0 + 18 19 15 1 21 22 15 0 + 20 17 15 1 23 20 15 0 + 19 20 15 1 22 23 15 0 + 21 19 18 1 24 22 21 0 + 22 21 18 1 25 24 21 0 + 21 20 19 1 24 23 22 0 + 21 23 20 1 24 26 23 0 + 12 21 22 1 27 24 25 0 + 12 13 21 1 27 28 24 0 + 14 23 21 1 29 26 24 0 + 13 14 21 1 28 29 24 0 + position 0 0 -0.391772002 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 1 0.68235302 0 + diffuse 1 0.68235302 0 + specular 0 0 0 + shininess 2 + render 0 + bitmap coat_bones + verts 21 + -0.0136609999 0.0758005008 -0.200004995 + 0.134079993 0.132893994 -0.0710911974 + 0.121723004 0.148534998 -0.200004995 + 0.00940230954 0.0634656027 -0.0710911974 + 0.0368847996 0.0686421022 0.0381962992 + 0.156048 0.114286996 0.0381962992 + -0.0729340985 -0.0337709002 -0.0710911974 + -0.103065997 -0.0266219992 -0.200004995 + -0.0190421995 -0.0309033003 0.0381962992 + -0.134461999 -0.175224006 -0.200080007 + -0.101846002 -0.175172001 -0.0711048022 + -0.0539832003 -0.151547998 0.0381962992 + -0.00782848988 0.0701875016 -0.200004995 + 0.0147735998 0.0580997989 -0.0710911974 + 0.0417053998 0.0631723031 0.0381962992 + -0.0659151971 -0.0371920988 -0.0710911974 + -0.095447503 -0.0301862005 -0.200004995 + -0.0131037999 -0.0343820006 0.0381962992 + -0.126213998 -0.175816998 -0.200080007 + -0.0942495987 -0.175766006 -0.0711048022 + -0.0473449007 -0.152613997 0.0381962992 + tverts 24 + 0.698162019 0.363822013 0 + 0.602470994 0.422699988 0 + 0.61155802 0.363822013 0 + 0.681201994 0.422699988 0 + 0.660126984 0.476402014 0 + 0.589147985 0.476402014 0 + 0.733195007 0.422699988 0 + 0.755353987 0.363822013 0 + 0.719482005 0.479005992 0 + 0.848353982 0.361184001 0 + 0.83001101 0.422693998 0 + 0.78716898 0.473798007 0 + 0.621484995 0.317503989 0 + 0.607078016 0.392747015 0 + 0.694724977 0.317503989 0 + 0.680319011 0.392747015 0 + 0.607078016 0.467990011 0 + 0.680319011 0.467990011 0 + 0.753560007 0.392747015 0 + 0.767966986 0.317503989 0 + 0.753560007 0.467990011 0 + 0.841207981 0.317503989 0 + 0.826801002 0.392747015 0 + 0.826801002 0.467990011 0 + faces 24 + 0 1 2 1 0 1 2 0 + 0 3 1 1 0 3 1 0 + 4 5 1 1 4 5 1 0 + 3 4 1 1 3 4 1 0 + 6 3 0 1 6 3 0 0 + 7 6 0 1 7 6 0 0 + 6 4 3 1 6 4 3 0 + 6 8 4 1 6 8 4 0 + 9 6 7 1 9 6 7 0 + 9 10 6 1 9 10 6 0 + 11 8 6 1 11 8 6 0 + 10 11 6 1 10 11 6 0 + 2 1 12 1 12 13 14 0 + 1 13 12 1 13 15 14 0 + 1 5 14 1 13 16 17 0 + 1 14 13 1 13 17 15 0 + 12 13 15 1 14 15 18 0 + 12 15 16 1 14 18 19 0 + 13 14 15 1 15 17 18 0 + 14 17 15 1 17 20 18 0 + 16 15 18 1 19 18 21 0 + 15 19 18 1 18 22 21 0 + 15 17 20 1 18 20 23 0 + 15 20 19 1 18 23 22 0 + position -0.277240008 0.0803811997 0 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 1 0.68235302 0 + diffuse 1 0.68235302 0 + specular 0 0 0 + shininess 2 + render 0 + bitmap coat_bones + verts 19 + -0.0136609999 0.0758005008 0.000247430988 + 0.121723004 0.148534998 0.000247430988 + 0.112861 0.159383997 -0.239923999 + -0.0302003007 0.0795914009 -0.239923999 + -0.124675997 -0.0453329012 -0.239923999 + -0.103065997 -0.0266219992 0.000247430988 + -0.134461999 -0.175224006 0.000169670995 + -0.153494 -0.173541993 -0.239923999 + -0.0302003007 0.0946044028 -0.39674601 + 0.112861 0.178422004 -0.39674601 + -0.124675997 -0.036631301 -0.39674601 + -0.153494 -0.149305999 -0.397406012 + -0.00782848988 0.0701875016 0.000247430988 + -0.0240375008 0.0739023015 -0.239923999 + -0.116622999 -0.0485237986 -0.239923999 + -0.095447503 -0.0301862005 0.000247430988 + -0.126213998 -0.175816998 0.000169670995 + -0.0240375008 0.0886161998 -0.39674601 + -0.116622999 -0.0399948992 -0.39674601 + tverts 24 + 0.698162019 0.363822013 0 + 0.61155802 0.363822013 0 + 0.621554017 0.258161008 0 + 0.716817975 0.258161008 0 + 0.779729009 0.258161008 0 + 0.755353987 0.363822013 0 + 0.848353982 0.361184001 0 + 0.851002991 0.258161008 0 + 0.716817975 0.189170003 0 + 0.621554017 0.189170003 0 + 0.779729009 0.189170003 0 + 0.851002991 0.188878 0 + 0.628687978 0.240318 0 + 0.621484995 0.317503989 0 + 0.694724977 0.317503989 0 + 0.701928973 0.240318 0 + 0.775170028 0.240318 0 + 0.767966986 0.317503989 0 + 0.841207981 0.317503989 0 + 0.84841001 0.240318 0 + 0.634464025 0.167017996 0 + 0.707705021 0.167017996 0 + 0.780946016 0.167017996 0 + 0.854188025 0.167017996 0 + faces 24 + 0 1 2 1 0 1 2 0 + 3 0 2 1 3 0 2 0 + 4 0 3 1 4 0 3 0 + 4 5 0 1 4 5 0 0 + 6 5 4 1 6 5 4 0 + 7 6 4 1 7 6 4 0 + 8 2 9 1 8 2 9 0 + 8 3 2 1 8 3 2 0 + 4 3 8 1 4 3 8 0 + 10 4 8 1 10 4 8 0 + 11 4 10 1 11 4 10 0 + 11 7 4 1 11 7 4 0 + 2 1 12 1 12 13 14 0 + 2 12 13 1 12 14 15 0 + 13 12 14 1 15 14 16 0 + 12 15 14 1 14 17 16 0 + 14 15 16 1 16 17 18 0 + 14 16 7 1 16 18 19 0 + 9 2 17 1 20 12 21 0 + 2 13 17 1 12 15 21 0 + 17 13 14 1 21 15 16 0 + 17 14 18 1 21 16 22 0 + 18 14 11 1 22 16 23 0 + 14 7 11 1 16 19 23 0 + position 0 0 -0.200084001 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 1 0.68235302 0 + diffuse 1 0.68235302 0 + specular 0 0 0 + shininess 2 + render 0 + bitmap coat_bones + verts 18 + -0.0302003007 0.131191999 -0.425963014 + 0.112861 0.197272003 -0.174256995 + 0.112861 0.218777001 -0.425963014 + -0.0302003007 0.109468997 -0.174256995 + -0.0302003007 0.0946042016 -0.0051394701 + 0.112861 0.178422004 -0.0051394701 + -0.124675997 -0.0280169006 -0.174256995 + -0.124675997 -0.00629319996 -0.425963014 + -0.124675997 -0.0366314985 -0.0051394701 + -0.153494 -0.149305999 -0.427064002 + -0.153494 -0.149305999 -0.175093994 + -0.153494 -0.149305999 -0.00580008002 + -0.0240375008 0.124471001 -0.425963014 + -0.0240375008 0.103183001 -0.174256995 + -0.0240375008 0.0886159986 -0.0051394701 + -0.116622999 -0.0315532982 -0.174256995 + -0.116622999 -0.0102642002 -0.425963014 + -0.116622999 -0.0399951003 -0.0051394701 + tverts 24 + 0.716817975 0.00403199997 0 + 0.621554017 0.114767998 0 + 0.621554017 0.00403199997 0 + 0.716817975 0.114767998 0 + 0.716817975 0.189170003 0 + 0.621554017 0.189170003 0 + 0.779729009 0.114767998 0 + 0.779729009 0.00403199997 0 + 0.779729009 0.189170003 0 + 0.851002991 0.00354800001 0 + 0.851002991 0.114399999 0 + 0.851002991 0.188878 0 + 0.633327007 0.00762900012 0 + 0.633327007 0.0828720033 0 + 0.706568003 0.00762900012 0 + 0.706568003 0.0828720033 0 + 0.634464025 0.167017996 0 + 0.707705021 0.167017996 0 + 0.779808998 0.0828720033 0 + 0.779808998 0.00762900012 0 + 0.780946016 0.167017996 0 + 0.853049994 0.00762900012 0 + 0.853049994 0.0828720033 0 + 0.854188025 0.167017996 0 + faces 24 + 0 1 2 1 0 1 2 0 + 0 3 1 1 0 3 1 0 + 4 5 1 1 4 5 1 0 + 3 4 1 1 3 4 1 0 + 6 3 0 1 6 3 0 0 + 7 6 0 1 7 6 0 0 + 6 4 3 1 6 4 3 0 + 6 8 4 1 6 8 4 0 + 9 6 7 1 9 6 7 0 + 9 10 6 1 9 10 6 0 + 11 8 6 1 11 8 6 0 + 10 11 6 1 10 11 6 0 + 2 1 12 1 12 13 14 0 + 1 13 12 1 13 15 14 0 + 1 5 14 1 13 16 17 0 + 1 14 13 1 13 17 15 0 + 12 13 15 1 14 15 18 0 + 12 15 16 1 14 18 19 0 + 13 14 15 1 15 17 18 0 + 14 17 15 1 17 20 18 0 + 16 15 9 1 19 18 21 0 + 15 10 9 1 18 22 21 0 + 15 17 11 1 18 20 23 0 + 15 11 10 1 18 23 22 0 + position 0 0 -0.391772002 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 1 0.68235302 0 + diffuse 1 0.68235302 0 + specular 0 0 0 + shininess 2 + render 0 + bitmap coat_bones + verts 21 + -0.121731997 0.148534998 -0.200004995 + -0.134087995 0.132893994 -0.0710911974 + 0.0136529002 0.0758002028 -0.200004995 + -0.00941042975 0.0634654984 -0.0710911974 + -0.153357998 0.114286996 0.0381962992 + -0.0368891992 0.0686417967 0.0381962992 + 0.0729259029 -0.0337709002 -0.0710911974 + 0.103058003 -0.0266219992 -0.200004995 + 0.0190376993 -0.0309033003 0.0381962992 + 0.134453997 -0.175224006 -0.200080007 + 0.101838 -0.175172001 -0.0711048022 + 0.0539789014 -0.151547998 0.0381962992 + 0.00782036968 0.0701875016 -0.200004995 + -0.0147817004 0.0580997989 -0.0710911974 + -0.0417100005 0.0631719977 0.0381962992 + 0.0659072995 -0.0371920988 -0.0710911974 + 0.0954395011 -0.0301862005 -0.200004995 + 0.0130995 -0.0343820006 0.0381962992 + 0.126205996 -0.175816998 -0.200080007 + 0.094241403 -0.175766006 -0.0711048022 + 0.0473402999 -0.152613997 0.0381962992 + tverts 24 + 0.61155802 0.363822013 0 + 0.602470994 0.422699988 0 + 0.698162019 0.363822013 0 + 0.681201994 0.422699988 0 + 0.589147985 0.476402014 0 + 0.660126984 0.476402014 0 + 0.733195007 0.422699988 0 + 0.755353987 0.363822013 0 + 0.719482005 0.479005992 0 + 0.848353982 0.361184001 0 + 0.83001101 0.422693998 0 + 0.78716898 0.473798007 0 + 0.694724977 0.317503989 0 + 0.607078016 0.392747015 0 + 0.621484995 0.317503989 0 + 0.680319011 0.392747015 0 + 0.680319011 0.467990011 0 + 0.607078016 0.467990011 0 + 0.753560007 0.392747015 0 + 0.767966986 0.317503989 0 + 0.753560007 0.467990011 0 + 0.841207981 0.317503989 0 + 0.826801002 0.392747015 0 + 0.826801002 0.467990011 0 + faces 24 + 0 1 2 1 0 1 2 0 + 1 3 2 1 1 3 2 0 + 1 4 5 1 1 4 5 0 + 1 5 3 1 1 5 3 0 + 2 3 6 1 2 3 6 0 + 2 6 7 1 2 6 7 0 + 3 5 6 1 3 5 6 0 + 5 8 6 1 5 8 6 0 + 7 6 9 1 7 6 9 0 + 6 10 9 1 6 10 9 0 + 6 8 11 1 6 8 11 0 + 6 11 10 1 6 11 10 0 + 12 1 0 1 12 13 14 0 + 12 13 1 1 12 15 13 0 + 14 4 1 1 16 17 13 0 + 13 14 1 1 15 16 13 0 + 15 13 12 1 18 15 12 0 + 16 15 12 1 19 18 12 0 + 15 14 13 1 18 16 15 0 + 15 17 14 1 18 20 16 0 + 18 15 16 1 21 18 19 0 + 18 19 15 1 21 22 18 0 + 20 17 15 1 23 20 18 0 + 19 20 15 1 22 23 18 0 + position 0.278730005 0.0803811997 0 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 1 0.68235302 0 + diffuse 1 0.68235302 0 + specular 0 0 0 + shininess 2 + render 0 + bitmap coat_bones + verts 19 + -0.112869002 0.159383997 -0.239923999 + -0.121731997 0.148534998 0.000247440999 + 0.0136529002 0.0758002028 0.000247440999 + 0.0301922001 0.0795914009 -0.239923999 + 0.124668002 -0.0453329012 -0.239923999 + 0.103058003 -0.0266219992 0.000247440999 + 0.134453997 -0.175224006 0.000169680003 + 0.153485999 -0.173541993 -0.239923999 + -0.112869002 0.178422004 -0.39674601 + 0.0301922001 0.0946044028 -0.39674601 + 0.124668002 -0.036631301 -0.39674601 + 0.153485999 -0.149305999 -0.397406012 + 0.00782036968 0.0701875016 0.000247440999 + 0.0240292996 0.0739021003 -0.239923999 + 0.116614997 -0.0485237986 -0.239923999 + 0.0954395011 -0.0301862005 0.000247440999 + 0.126205996 -0.175816998 0.000169680003 + 0.0240292996 0.0886161998 -0.39674601 + 0.116614997 -0.0399948992 -0.39674601 + tverts 24 + 0.621554017 0.258161008 0 + 0.61155802 0.363822013 0 + 0.698162019 0.363822013 0 + 0.716817975 0.258161008 0 + 0.779729009 0.258161008 0 + 0.755353987 0.363822013 0 + 0.848353982 0.361184001 0 + 0.851002991 0.258161008 0 + 0.621554017 0.189170003 0 + 0.716817975 0.189170003 0 + 0.779729009 0.189170003 0 + 0.851002991 0.188878 0 + 0.694724977 0.317503989 0 + 0.621484995 0.317503989 0 + 0.628687978 0.240318 0 + 0.701928973 0.240318 0 + 0.775170028 0.240318 0 + 0.767966986 0.317503989 0 + 0.841207981 0.317503989 0 + 0.84841001 0.240318 0 + 0.707705021 0.167017996 0 + 0.634464025 0.167017996 0 + 0.780946016 0.167017996 0 + 0.854188025 0.167017996 0 + faces 24 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 3 2 4 1 3 2 4 0 + 2 5 4 1 2 5 4 0 + 4 5 6 1 4 5 6 0 + 4 6 7 1 4 6 7 0 + 8 0 9 1 8 0 9 0 + 0 3 9 1 0 3 9 0 + 9 3 4 1 9 3 4 0 + 9 4 10 1 9 4 10 0 + 10 4 11 1 10 4 11 0 + 4 7 11 1 4 7 11 0 + 12 1 0 1 12 13 14 0 + 13 12 0 1 15 12 14 0 + 14 12 13 1 16 12 15 0 + 14 15 12 1 16 17 12 0 + 16 15 14 1 18 17 16 0 + 7 16 14 1 19 18 16 0 + 17 0 8 1 20 14 21 0 + 17 13 0 1 20 15 14 0 + 14 13 17 1 16 15 20 0 + 18 14 17 1 22 16 20 0 + 11 14 18 1 23 16 22 0 + 11 7 14 1 23 19 16 0 + position 0 0 -0.200084001 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 1 0.68235302 0 + diffuse 1 0.68235302 0 + specular 0 0 0 + shininess 2 + render 0 + bitmap coat_bones + verts 18 + -0.112869002 0.218777001 -0.425963014 + -0.112869002 0.197272003 -0.174256995 + 0.0301922001 0.131191999 -0.425963014 + 0.0301922001 0.109468997 -0.174256995 + -0.112869002 0.178422004 -0.00513945008 + 0.0301922001 0.0946042016 -0.00513945008 + 0.124668002 -0.0280169006 -0.174256995 + 0.124668002 -0.00629324978 -0.425963014 + 0.124668002 -0.0366314985 -0.00513945008 + 0.153485999 -0.149305999 -0.427064002 + 0.153485999 -0.149305999 -0.175093994 + 0.153485999 -0.149305999 -0.00580006 + 0.0240292996 0.124471001 -0.425963014 + 0.0240292996 0.103183001 -0.174256995 + 0.0240292996 0.0886159986 -0.00513945008 + 0.116614997 -0.0315532982 -0.174256995 + 0.116614997 -0.0102642998 -0.425963014 + 0.116614997 -0.0399951003 -0.00513945008 + tverts 24 + 0.621554017 0.00403199997 0 + 0.621554017 0.114767998 0 + 0.716817975 0.00403199997 0 + 0.716817975 0.114767998 0 + 0.621554017 0.189170003 0 + 0.716817975 0.189170003 0 + 0.779729009 0.114767998 0 + 0.779729009 0.00403199997 0 + 0.779729009 0.189170003 0 + 0.851002991 0.00354800001 0 + 0.851002991 0.114399999 0 + 0.851002991 0.188878 0 + 0.706568003 0.00762900012 0 + 0.633327007 0.0828720033 0 + 0.633327007 0.00762900012 0 + 0.706568003 0.0828720033 0 + 0.707705021 0.167017996 0 + 0.634464025 0.167017996 0 + 0.779808998 0.0828720033 0 + 0.779808998 0.00762900012 0 + 0.780946016 0.167017996 0 + 0.853049994 0.00762900012 0 + 0.853049994 0.0828720033 0 + 0.854188025 0.167017996 0 + faces 24 + 0 1 2 1 0 1 2 0 + 1 3 2 1 1 3 2 0 + 1 4 5 1 1 4 5 0 + 1 5 3 1 1 5 3 0 + 2 3 6 1 2 3 6 0 + 2 6 7 1 2 6 7 0 + 3 5 6 1 3 5 6 0 + 5 8 6 1 5 8 6 0 + 7 6 9 1 7 6 9 0 + 6 10 9 1 6 10 9 0 + 6 8 11 1 6 8 11 0 + 6 11 10 1 6 11 10 0 + 12 1 0 1 12 13 14 0 + 12 13 1 1 12 15 13 0 + 14 4 1 1 16 17 13 0 + 13 14 1 1 15 16 13 0 + 15 13 12 1 18 15 12 0 + 16 15 12 1 19 18 12 0 + 15 14 13 1 18 16 15 0 + 15 17 14 1 18 20 16 0 + 9 15 16 1 21 18 19 0 + 9 10 15 1 21 22 18 0 + 11 17 15 1 23 20 18 0 + 10 11 15 1 22 23 18 0 + position 0 0 -0.391772002 + orientation 0 0 0 0 + scale 1 + alpha 1 + selfillumcolor 0 0 0 +endnode +node skin Arm_L + parent a_dfa2_coat + #part-number -1 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 0 + bitmap pfh0_robe020 + verts 70 + -0.246855006 -0.0957667977 0.463923991 + -0.357778996 -0.0937682018 0.509428978 + -0.334919989 -0.197286993 0.46411401 + -0.260131001 -0.140518993 0.421891004 + -0.267973006 -0.0555441007 0.381891012 + -0.314799994 0.0286264997 0.461912006 + -0.415699005 -0.0221411996 0.475939989 + -0.449313015 -0.0906753018 0.481068999 + -0.425713003 -0.128700003 0.471320003 + -0.274379998 -0.157437995 0.325599015 + -0.43808201 0.0517465994 0.315786988 + -0.500168979 9.20047969e-005 0.310837001 + -0.505366981 -0.139908001 0.324505001 + -0.342925996 0.0608136989 0.312691987 + -0.355897009 -0.223467007 0.320872009 + -0.431030989 -0.212558001 0.322739005 + -0.253699005 -0.0436053015 0.303846002 + -0.273321003 0.0242945999 0.306225002 + -0.497361004 -0.128343001 0.150833994 + -0.484831005 -0.0183297005 0.149755999 + -0.505339026 -0.0881005004 0.00950898975 + -0.435220003 -0.195739001 0.129131004 + -0.464556009 0.0187966004 0.0144407004 + -0.449317992 0.0490963012 0.148949996 + -0.326577991 0.0405519009 0.137150005 + -0.381972998 0.0333350003 -0.0101456 + -0.474952996 0.0119845001 -0.0589860007 + -0.465223998 0.0116146002 -0.0195767991 + -0.441235006 -0.182233006 0.0264030006 + -0.324041992 -0.197614998 0.143387005 + -0.373643994 -0.182256997 0.0340050012 + -0.309139013 -0.0564182997 0.0441352986 + -0.509710014 -0.0862741992 -0.0331223011 + -0.462013006 -0.187661007 -0.032744199 + -0.308595002 -0.0358740017 -0.00329014007 + -0.339244992 -0.180360004 -0.0253439005 + -0.529877007 -0.0747302994 -0.0862703025 + -0.441886991 -0.175840005 -0.0826326981 + -0.302231997 -0.0517301001 -0.050262399 + -0.358218014 -0.176508993 -0.0795885995 + -0.539828002 -0.104587004 -0.169402003 + -0.303501993 -0.101764999 -0.154291004 + -0.325221002 0.0220903996 -0.162856996 + -0.380677998 0.0322896987 -0.0433763005 + -0.419173986 0.0554439016 -0.173962995 + -0.502824008 0.0179698002 -0.174794003 + -0.466749996 -0.188848004 -0.183715999 + -0.373142004 -0.195050001 -0.182492003 + -0.276134014 -0.0703464001 0.128939003 + -0.377885997 0.0395815 0.0258457009 + -0.338440001 -0.0453106984 -0.281067014 + -0.331288993 -0.154633999 -0.234994993 + -0.348342001 -0.154033005 -0.285005987 + -0.51739502 -0.0988857001 -0.230678007 + -0.491153002 0.0142599 -0.225051001 + -0.486490011 -0.167976007 -0.233808994 + -0.439314008 -0.182107002 -0.287131011 + -0.516204 -0.113681003 -0.278351992 + -0.475322992 -0.165509 -0.344024003 + -0.406515002 -0.193660006 -0.240679994 + -0.376311004 -0.152386993 -0.345459998 + -0.426602006 0.0466937013 -0.329319 + -0.352185011 -0.0755057037 -0.337599009 + -0.502600014 0.0303719006 -0.271618992 + -0.419883013 0.0529148988 -0.273377001 + -0.415464014 0.0402069017 -0.227875993 + -0.335213989 -0.0271384995 -0.234975994 + -0.523898005 -0.0950597003 -0.334903002 + -0.508583009 0.0302134007 -0.328624994 + -0.437647015 -0.0820370987 -0.353868991 + tverts 83 + 0.763113022 0.506558001 0 + 0.784174025 0.507272005 0 + 0.780128002 0.452288002 0 + 0.954861999 0.442479998 0 + 0.933493972 0.508566976 0 + 0.980202973 0.45560801 0 + 0.914812028 0.446837008 0 + 0.882533014 0.461360991 0 + 0.851137996 0.476723999 0 + 0.852307975 0.512615025 0 + 0.809751987 0.481507003 0 + 0.792200983 0.474969 0 + 0.868654013 0.50789398 0 + 0.960659981 0.402426004 0 + 0.863241017 0.429004014 0 + 0.833284974 0.430907995 0 + 0.803578019 0.430020988 0 + 0.888094008 0.411054999 0 + 0.987432003 0.409965008 0 + 0.791948974 0.416987002 0 + 0.937186003 0.405633003 0 + 0.904559016 0.412910014 0 + 0.780492008 0.408629 0 + 0.812530994 0.367783993 0 + 0.845269978 0.370833993 0 + 0.837949991 0.32554701 0 + 0.803999007 0.343373001 0 + 0.875663996 0.329071999 0 + 0.872955978 0.365624011 0 + 0.899369001 0.353644997 0 + 0.891888022 0.300779998 0 + 0.867893994 0.260978013 0 + 0.86374402 0.304163009 0 + 0.820438981 0.321429998 0 + 0.785744011 0.341681004 0 + 0.799088001 0.310092986 0 + 0.975050986 0.314101011 0 + 0.937623978 0.319157988 0 + 0.976785004 0.343017012 0 + 0.835368991 0.300915986 0 + 0.814805984 0.289231986 0 + 0.925700009 0.289169997 0 + 0.80053699 0.275038987 0 + 0.968016028 0.272367001 0 + 0.844727993 0.25762099 0 + 0.823826015 0.240723997 0 + 0.931997001 0.243460998 0 + 0.806074977 0.221119002 0 + 0.966642976 0.225126997 0 + 0.848142982 0.198190004 0 + 0.948796988 0.184867993 0 + 0.927484989 0.194878995 0 + 0.898326993 0.256648004 0 + 0.897274971 0.191257 0 + 0.880102992 0.184386998 0 + 0.821846008 0.197739005 0 + 0.806393027 0.18152 0 + 0.936178982 0.348188013 0 + 0.900749981 0.325197995 0 + 0.968894005 0.18152 0 + 0.907054007 0.0763180032 0 + 0.944571018 0.126861006 0 + 0.935033977 0.0673440024 0 + 0.856585979 0.150912002 0 + 0.87678498 0.134774998 0 + 0.83830899 0.138199002 0 + 0.818651974 0.0699789971 0 + 0.845109999 0.0943119004 0 + 0.822238028 0.0398809984 0 + 0.819561005 0.125749007 0 + 0.956044972 0.0726509988 0 + 0.929751992 0.0382280014 0 + 0.884142995 0.041336 0 + 0.906760991 0.0404310003 0 + 0.867622972 0.0757180005 0 + 0.898072004 0.0946298987 0 + 0.900359988 0.142260998 0 + 0.922279 0.140276 0 + 0.841454029 0.040031001 0 + 0.864884973 0.0407700017 0 + 0.950577974 0.0388379991 0 + 0.887533009 0.0127200997 0 + 0.963936985 0.129757002 0 + faces 136 + 0 1 2 1 0 1 2 0 + 3 0 2 1 3 4 5 0 + 4 5 0 1 6 7 4 0 + 5 6 1 1 7 8 9 0 + 1 7 8 1 1 10 11 0 + 1 0 5 1 9 12 7 0 + 4 0 3 1 6 4 3 0 + 2 9 3 1 5 13 3 0 + 10 11 6 1 14 15 8 0 + 7 12 8 1 10 16 11 0 + 13 10 5 1 17 14 7 0 + 6 5 10 1 8 7 14 0 + 14 9 2 1 18 13 5 0 + 2 8 15 1 2 11 19 0 + 9 16 4 1 13 20 6 0 + 4 3 9 1 6 3 13 0 + 7 6 11 1 10 8 15 0 + 17 5 4 1 21 7 6 0 + 5 17 13 1 7 21 17 0 + 16 17 4 1 20 21 6 0 + 12 15 8 1 16 19 11 0 + 15 14 2 1 19 22 2 0 + 18 19 20 1 23 24 25 0 + 18 20 21 1 23 25 26 0 + 22 23 24 1 27 28 29 0 + 25 26 27 1 30 31 32 0 + 28 29 21 1 33 34 26 0 + 29 28 30 1 34 33 35 0 + 30 31 29 1 36 37 38 0 + 20 27 32 1 25 32 39 0 + 32 33 20 1 39 40 25 0 + 28 20 33 1 33 25 40 0 + 34 25 31 1 41 30 37 0 + 33 35 28 1 40 42 33 0 + 30 28 35 1 35 33 42 0 + 35 34 30 1 43 41 36 0 + 31 30 34 1 37 36 41 0 + 32 27 36 1 39 32 44 0 + 36 33 32 1 44 40 39 0 + 33 36 37 1 40 44 45 0 + 38 25 34 1 46 30 41 0 + 37 39 33 1 45 47 40 0 + 35 33 39 1 42 40 47 0 + 39 38 35 1 48 46 43 0 + 34 35 38 1 41 43 46 0 + 26 36 27 1 31 44 32 0 + 37 36 40 1 45 44 49 0 + 41 42 38 1 50 51 46 0 + 43 38 42 1 52 46 51 0 + 26 44 45 1 31 53 54 0 + 39 46 47 1 47 55 56 0 + 38 39 41 1 46 48 50 0 + 10 23 19 1 14 28 24 0 + 19 11 10 1 24 15 14 0 + 11 18 12 1 15 23 16 0 + 15 12 18 1 19 16 23 0 + 24 13 17 1 29 17 21 0 + 23 10 13 1 28 14 17 0 + 13 24 23 1 17 29 28 0 + 14 29 9 1 18 38 13 0 + 29 14 21 1 34 22 26 0 + 48 16 29 1 57 20 38 0 + 48 49 24 1 57 58 29 0 + 22 19 23 1 27 24 28 0 + 48 31 49 1 57 37 58 0 + 28 21 20 1 33 26 25 0 + 18 11 19 1 23 15 24 0 + 48 24 17 1 57 29 21 0 + 17 16 48 1 21 20 57 0 + 20 19 22 1 25 24 27 0 + 12 7 11 1 16 10 15 0 + 18 21 15 1 23 26 19 0 + 46 37 40 1 55 45 49 0 + 37 46 39 1 45 55 47 0 + 26 25 43 1 31 30 52 0 + 49 22 24 1 58 27 29 0 + 39 47 41 1 48 59 50 0 + 15 21 14 1 19 26 22 0 + 9 29 16 1 13 38 20 0 + 48 29 31 1 57 38 37 0 + 50 51 52 1 60 61 62 0 + 53 40 54 1 63 49 64 0 + 53 55 40 1 63 65 49 0 + 56 57 58 1 66 67 68 0 + 59 47 46 1 69 56 55 0 + 52 56 60 1 62 70 71 0 + 41 47 51 1 50 59 61 0 + 61 50 62 1 72 60 73 0 + 43 42 44 1 52 51 53 0 + 26 43 44 1 31 52 53 0 + 26 45 40 1 31 54 49 0 + 40 36 26 1 49 44 31 0 + 43 25 38 1 52 30 46 0 + 49 31 25 1 58 37 30 0 + 25 27 49 1 30 32 58 0 + 49 27 22 1 58 32 27 0 + 20 22 27 1 25 27 32 0 + 54 63 53 1 64 74 63 0 + 64 63 54 1 75 74 64 0 + 64 54 65 1 75 64 76 0 + 65 42 66 1 76 51 77 0 + 64 65 66 1 75 76 77 0 + 42 41 66 1 51 50 77 0 + 65 45 44 1 76 54 53 0 + 44 42 65 1 53 51 76 0 + 45 54 40 1 54 64 49 0 + 65 54 45 1 76 64 54 0 + 67 57 68 1 78 67 79 0 + 59 55 56 1 69 65 66 0 + 55 46 40 1 65 55 49 0 + 55 59 46 1 65 69 55 0 + 58 69 60 1 80 81 71 0 + 51 47 59 1 61 59 82 0 + 60 69 62 1 71 81 73 0 + 66 41 51 1 77 50 61 0 + 69 68 61 1 81 79 72 0 + 62 69 61 1 73 81 72 0 + 68 69 67 1 79 81 78 0 + 58 67 69 1 68 78 81 0 + 50 52 62 1 60 62 73 0 + 59 52 51 1 82 62 61 0 + 61 68 63 1 72 79 74 0 + 63 68 57 1 74 79 67 0 + 53 57 55 1 63 67 65 0 + 57 53 63 1 67 63 74 0 + 57 67 58 1 67 78 68 0 + 56 55 57 1 66 65 67 0 + 56 58 60 1 70 80 71 0 + 59 56 52 1 82 70 62 0 + 52 60 62 1 62 71 73 0 + 61 64 50 1 72 75 60 0 + 66 51 50 1 77 61 60 0 + 50 64 66 1 60 75 77 0 + 61 63 64 1 72 74 75 0 + 6 7 1 1 8 10 9 0 + 8 2 1 1 11 2 1 0 + weights 70 + torso_g 1 + lbicep_g 1 + lbicep_g 1 + torso_g 1 + torso_g 1 + lbicep_g 1 + lbicep_g 1 + lbicep_g 1 + lbicep_g 1 + torso_g 1 + lbicep_g 1 + lbicep_g 1 + lbicep_g 1 + lbicep_g 1 + lbicep_g 1 + lbicep_g 1 + torso_g 1 + torso_g 1 + lbicep_g 1 + lbicep_g 1 + lbicep_g 1 + lbicep_g 1 + lbicep_g 1 + lbicep_g 1 + lbicep_g 1 + lforearm_g 0.223597005 lbicep_g 0.77640301 + lforearm_g 1 + lbicep_g 0.720579982 lforearm_g 0.279419988 + lbicep_g 1 + lbicep_g 1 + lbicep_g 1 + lbicep_g 1 + lbicep_g 0.554587007 lforearm_g 0.445412993 + lbicep_g 0.50859803 lforearm_g 0.491402 + lbicep_g 0.566550016 lforearm_g 0.433450013 + lbicep_g 0.576986015 lforearm_g 0.423013985 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lbicep_g 1 + lbicep_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + lforearm_g 1 + position 0.0343777016 -0.0249429997 1.19026995 + orientation 0 0 0 0 + alpha 1 +endnode +node skin Arm_R + parent a_dfa2_coat + #part-number -1 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 0 + bitmap pfh0_robe020 + verts 70 + 0.344006985 -0.197286993 0.465546012 + 0.352272987 -0.0937682018 0.512454987 + 0.245975003 -0.0957667977 0.469803005 + 0.260131001 -0.140518993 0.421891004 + 0.323886991 0.0286264997 0.463344008 + 0.267973006 -0.0555441007 0.381891012 + 0.424786001 -0.0221414007 0.477371991 + 0.434799999 -0.128700003 0.472750992 + 0.458400011 -0.0906753018 0.482501 + 0.274379998 -0.157437995 0.325599015 + 0.509256005 9.20012972e-005 0.312269002 + 0.447167993 0.0517463982 0.317218989 + 0.514451981 -0.139908001 0.325937003 + 0.352010995 0.0608136989 0.314123005 + 0.364982992 -0.223467007 0.322302997 + 0.440118015 -0.212558001 0.324169993 + 0.253699005 -0.0436053015 0.303846002 + 0.273321003 0.0242945999 0.306225002 + 0.508808017 -0.0971973985 0.00950898975 + 0.488689005 -0.0271230992 0.149915993 + 0.501217008 -0.137135997 0.150994003 + 0.43907699 -0.204532996 0.129290998 + 0.330435991 0.0317584984 0.137309998 + 0.453175992 0.0403028987 0.149109006 + 0.462442011 0.0344115011 0.0144407004 + 0.463202 0.0255692005 -0.0195767991 + 0.474261999 0.0260246005 -0.0589860007 + 0.368555009 0.0523107983 -0.0101456 + 0.327899992 -0.206409007 0.143546999 + 0.435929 -0.213091001 0.0264030006 + 0.359086007 -0.213119999 0.0340050012 + 0.285750985 -0.0581910983 0.0441352986 + 0.513777018 -0.0949489027 -0.0331223011 + 0.45955199 -0.219772995 -0.032744199 + 0.285131991 -0.0544773005 -0.00329013006 + 0.332275987 -0.220657006 -0.0253439005 + 0.530937016 -0.0792908967 -0.0862703025 + 0.436670005 -0.205219999 -0.0826326981 + 0.277898997 -0.0524192005 -0.050262399 + 0.341549009 -0.206043005 -0.0795885995 + 0.541665971 -0.102031998 -0.169402003 + 0.323808014 0.0347369015 -0.162856996 + 0.300393999 -0.0989855975 -0.154291004 + 0.367083013 0.0510237999 -0.0433763005 + 0.501771986 0.0302879997 -0.174794003 + 0.41159001 0.0707473978 -0.173962995 + 0.354838997 -0.199701995 -0.136741996 + 0.462880999 -0.193005994 -0.137966007 + 0.279992014 -0.0791397989 0.129098997 + 0.363909006 0.0600011982 0.0258457009 + 0.341627002 -0.155416995 -0.274194986 + 0.323242009 -0.156066999 -0.224184006 + 0.330951989 -0.0380337983 -0.270256013 + 0.495591015 0.0262825005 -0.21424 + 0.523881972 -0.0958767012 -0.219867006 + 0.490563005 -0.170470998 -0.222997993 + 0.478603005 -0.167807996 -0.343816996 + 0.522597015 -0.111850001 -0.267540991 + 0.439702988 -0.185727999 -0.27632001 + 0.404343009 -0.198201001 -0.229868993 + 0.371859014 -0.153640002 -0.345252991 + 0.345847994 -0.0706340969 -0.337392986 + 0.426077008 0.0613001995 -0.329111993 + 0.507932007 0.0436781012 -0.260807991 + 0.418754995 0.0680167973 -0.262566 + 0.413991004 0.0542966016 -0.217063993 + 0.327473998 -0.0184138007 -0.224164993 + 0.514460027 0.0435069986 -0.328419 + 0.530970991 -0.0917458981 -0.334695995 + 0.437985003 -0.0776859 -0.353662014 + tverts 83 + 0.778096974 0.453763008 0 + 0.789067984 0.508861005 0 + 0.765751004 0.506241977 0 + 0.981275976 0.461394012 0 + 0.933901012 0.511620998 0 + 0.955398023 0.444501013 0 + 0.883548021 0.462942988 0 + 0.911377013 0.452695012 0 + 0.847481012 0.508961022 0 + 0.850202978 0.476489007 0 + 0.792733014 0.471976012 0 + 0.803430021 0.481967986 0 + 0.88280803 0.508485019 0 + 0.960968018 0.406125993 0 + 0.833490014 0.431935996 0 + 0.862829983 0.428386986 0 + 0.806558013 0.433721006 0 + 0.887682974 0.413726985 0 + 0.986711979 0.41068399 0 + 0.791845977 0.414622992 0 + 0.93513 0.404296994 0 + 0.905484021 0.410854995 0 + 0.782033026 0.407600999 0 + 0.83949101 0.327190995 0 + 0.845166981 0.369805992 0 + 0.813763976 0.370867014 0 + 0.805231988 0.345016986 0 + 0.898238003 0.354981005 0 + 0.867509007 0.37004301 0 + 0.873916984 0.326707989 0 + 0.862613022 0.302827001 0 + 0.870463014 0.259539008 0 + 0.893428981 0.300163001 0 + 0.78728497 0.341989011 0 + 0.821054995 0.320093989 0 + 0.801348984 0.314101011 0 + 0.977710009 0.343017012 0 + 0.936185002 0.319465995 0 + 0.974331021 0.313073009 0 + 0.834237993 0.301943988 0 + 0.816347003 0.290567994 0 + 0.928269029 0.289478004 0 + 0.798581004 0.27473101 0 + 0.969659984 0.273703009 0 + 0.846269011 0.255874008 0 + 0.824339986 0.240723997 0 + 0.93353802 0.244077995 0 + 0.806279004 0.221991003 0 + 0.970856011 0.226101995 0 + 0.844443023 0.196853995 0 + 0.924093008 0.196934 0 + 0.949105024 0.183532 0 + 0.898531973 0.256237 0 + 0.877739012 0.186133996 0 + 0.899536014 0.194340006 0 + 0.808036983 0.180184007 0 + 0.821434975 0.197430998 0 + 0.934740007 0.348188013 0 + 0.899618983 0.322834015 0 + 0.969920993 0.181211993 0 + 0.932875991 0.0673440024 0 + 0.944468021 0.124600999 0 + 0.908286989 0.0763180032 0 + 0.875860989 0.137242004 0 + 0.854119003 0.153789997 0 + 0.83882302 0.13933 0 + 0.823778987 0.0401892997 0 + 0.843979001 0.092359297 0 + 0.819576979 0.0702873021 0 + 0.817710996 0.124825001 0 + 0.932012975 0.0395639986 0 + 0.953270018 0.0733703002 0 + 0.907275021 0.0394033007 0 + 0.887740016 0.0423636995 0 + 0.867931008 0.0780816972 0 + 0.894886017 0.0937049985 0 + 0.900565028 0.141028002 0 + 0.923204005 0.139043003 0 + 0.866425991 0.0410782993 0 + 0.841659009 0.0403392985 0 + 0.885683 0.0102537004 0 + 0.951193988 0.0378102995 0 + 0.962601006 0.127908006 0 + faces 136 + 0 1 2 1 0 1 2 0 + 0 2 3 1 3 4 5 0 + 2 4 5 1 4 6 7 0 + 1 6 4 1 8 9 6 0 + 7 8 1 1 10 11 1 0 + 4 2 1 1 6 12 8 0 + 3 2 5 1 5 4 7 0 + 3 9 0 1 5 13 3 0 + 6 10 11 1 9 14 15 0 + 7 12 8 1 10 16 11 0 + 4 11 13 1 6 15 17 0 + 11 4 6 1 15 6 9 0 + 0 9 14 1 3 13 18 0 + 15 7 0 1 19 10 0 0 + 5 16 9 1 7 20 13 0 + 9 3 5 1 13 5 7 0 + 10 6 8 1 14 9 11 0 + 5 4 17 1 7 6 21 0 + 13 17 4 1 17 21 6 0 + 5 17 16 1 7 21 20 0 + 7 15 12 1 10 19 16 0 + 0 14 15 1 0 22 19 0 + 18 19 20 1 23 24 25 0 + 21 18 20 1 26 23 25 0 + 22 23 24 1 27 28 29 0 + 25 26 27 1 30 31 32 0 + 21 28 29 1 26 33 34 0 + 30 29 28 1 35 34 33 0 + 28 31 30 1 36 37 38 0 + 32 25 18 1 39 30 23 0 + 18 33 32 1 23 40 39 0 + 33 18 29 1 40 23 34 0 + 31 27 34 1 37 32 41 0 + 29 35 33 1 34 42 40 0 + 35 29 30 1 42 34 35 0 + 30 34 35 1 38 41 43 0 + 34 30 31 1 41 38 37 0 + 36 25 32 1 44 30 39 0 + 32 33 36 1 39 40 44 0 + 37 36 33 1 45 44 40 0 + 34 27 38 1 41 32 46 0 + 33 39 37 1 40 47 45 0 + 39 33 35 1 47 40 42 0 + 35 38 39 1 43 46 48 0 + 38 35 34 1 46 43 41 0 + 25 36 26 1 30 44 31 0 + 40 36 37 1 49 44 45 0 + 38 41 42 1 46 50 51 0 + 41 38 43 1 50 46 52 0 + 44 45 26 1 53 54 31 0 + 46 47 39 1 55 56 47 0 + 42 39 38 1 51 48 46 0 + 19 23 11 1 24 28 15 0 + 11 10 19 1 15 14 24 0 + 12 20 10 1 16 25 14 0 + 20 12 15 1 25 16 19 0 + 17 13 22 1 21 17 27 0 + 13 11 23 1 17 15 28 0 + 23 22 13 1 28 27 17 0 + 9 28 14 1 13 36 18 0 + 21 14 28 1 26 22 33 0 + 28 16 48 1 36 20 57 0 + 22 49 48 1 27 58 57 0 + 23 19 24 1 28 24 29 0 + 49 31 48 1 58 37 57 0 + 18 21 29 1 23 26 34 0 + 19 10 20 1 24 14 25 0 + 17 22 48 1 21 27 57 0 + 48 16 17 1 57 20 21 0 + 24 19 18 1 29 24 23 0 + 10 8 12 1 14 11 16 0 + 15 21 20 1 19 26 25 0 + 40 37 47 1 49 45 56 0 + 39 47 37 1 47 56 45 0 + 43 27 26 1 52 32 31 0 + 22 24 49 1 27 29 58 0 + 42 46 39 1 51 59 48 0 + 14 21 15 1 22 26 19 0 + 16 28 9 1 20 36 13 0 + 31 28 48 1 37 36 57 0 + 50 51 52 1 60 61 62 0 + 53 40 54 1 63 49 64 0 + 40 55 54 1 49 65 64 0 + 56 57 58 1 66 67 68 0 + 47 46 59 1 56 55 69 0 + 60 58 50 1 70 71 60 0 + 51 46 42 1 61 59 51 0 + 61 52 62 1 72 62 73 0 + 45 41 43 1 54 50 52 0 + 45 43 26 1 54 52 31 0 + 40 44 26 1 49 53 31 0 + 26 36 40 1 31 44 49 0 + 38 27 43 1 46 32 52 0 + 27 31 49 1 32 37 58 0 + 49 25 27 1 58 30 32 0 + 24 25 49 1 29 30 58 0 + 25 24 18 1 30 29 23 0 + 54 63 53 1 64 74 63 0 + 53 63 64 1 63 74 75 0 + 65 53 64 1 76 63 75 0 + 66 41 65 1 77 50 76 0 + 66 65 64 1 77 76 75 0 + 66 42 41 1 77 51 50 0 + 45 44 65 1 54 53 76 0 + 65 41 45 1 76 50 54 0 + 40 53 44 1 49 63 53 0 + 44 53 65 1 53 63 76 0 + 67 57 68 1 78 67 79 0 + 58 55 59 1 68 65 69 0 + 40 47 55 1 49 56 65 0 + 47 59 55 1 56 69 65 0 + 60 69 56 1 70 80 81 0 + 59 46 51 1 82 59 61 0 + 61 69 60 1 72 80 70 0 + 51 42 66 1 61 51 77 0 + 62 67 69 1 73 78 80 0 + 62 69 61 1 73 80 72 0 + 68 69 67 1 79 80 78 0 + 69 68 56 1 80 79 66 0 + 61 50 52 1 72 60 62 0 + 51 50 59 1 61 60 82 0 + 63 67 62 1 74 78 73 0 + 57 67 63 1 67 78 74 0 + 55 57 54 1 65 67 64 0 + 63 54 57 1 74 64 67 0 + 56 68 57 1 66 79 67 0 + 57 55 58 1 67 65 68 0 + 60 56 58 1 70 81 71 0 + 50 58 59 1 60 71 82 0 + 61 60 50 1 72 70 60 0 + 52 64 62 1 62 75 73 0 + 52 51 66 1 62 61 77 0 + 66 64 52 1 77 75 62 0 + 64 63 62 1 75 74 73 0 + 1 8 6 1 8 11 9 0 + 1 0 7 1 1 0 10 0 + weights 70 + rbicep_g 1 + rbicep_g 1 + torso_g 1 + torso_g 1 + rbicep_g 1 + torso_g 1 + rbicep_g 1 + rbicep_g 1 + rbicep_g 1 + torso_g 1 + rbicep_g 1 + rbicep_g 1 + rbicep_g 1 + rbicep_g 1 + rbicep_g 1 + rbicep_g 1 + torso_g 1 + torso_g 1 + rbicep_g 1 + rbicep_g 1 + rbicep_g 1 + rbicep_g 1 + rbicep_g 1 + rbicep_g 1 + rbicep_g 1 + rforearm_g 0.278483003 rbicep_g 0.721517026 + rforearm_g 1 + rbicep_g 0.77631402 rforearm_g 0.223685995 + rbicep_g 1 + rbicep_g 1 + rbicep_g 1 + rbicep_g 1 + rbicep_g 0.557134986 rforearm_g 0.442865014 + rbicep_g 0.509954989 rforearm_g 0.490045011 + rbicep_g 0.561784983 rforearm_g 0.438214988 + rbicep_g 0.574954987 rforearm_g 0.425045013 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rbicep_g 1 + rbicep_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + rforearm_g 1 + position -0.0325934999 -0.0249429997 1.19026995 + orientation 0 0 0 0 + alpha 1 +endnode +node skin Skirt_B + parent a_dfa2_coat + #part-number -1 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 0 + bitmap pfh0_robe020 + verts 66 + -0.386898994 -0.185795993 -0.776709974 + -0.41129601 -0.0489434004 -0.776709974 + -0.41129601 -0.0489434004 -1.01136994 + -0.386898994 -0.185795993 -1.01136994 + -0.41129601 -0.0489434004 -0.619046986 + -0.386898994 -0.185795993 -0.619046986 + -0.381332994 -0.173394993 -0.443439007 + -0.421730012 -0.0492780991 -0.443264008 + -0.394825011 -0.0509498008 -0.228202 + -0.365925997 -0.171599999 -0.206545994 + -0.358348995 -0.151873007 -0.102174997 + -0.408313006 -0.0508049987 -0.117450997 + -0.335027993 -0.0282010995 0.00385460001 + -0.241569996 -0.115108997 0.0216425005 + -0.220155001 -0.322748005 -1.01136994 + -0.220121995 -0.295729011 -0.77670902 + -0.220445007 -0.282824993 -0.619046986 + -0.225760996 -0.288159996 -0.44325 + -0.237571001 -0.271845013 -0.195435002 + -0.243927002 -0.231023997 -0.0849158019 + -0.166747004 -0.192524999 0.0387626998 + -0.0773470998 -0.369720012 -0.776709974 + -0.0777309015 -0.39673999 -1.01136994 + -0.0781250969 -0.356817007 -0.619045973 + -0.0804485977 -0.358543009 -0.443190008 + -0.0582057014 -0.352982014 -0.189825997 + -0.073274903 -0.288167 -0.0585514009 + -0.0745870993 -0.213811994 0.0487757996 + -0.00588524016 -0.401555985 -1.01136994 + -0.00582825998 -0.374536008 -0.776709974 + -0.00593739003 -0.361633003 -0.619045973 + -4.41277989e-005 -0.344413996 -0.443190008 + -5.60203989e-005 -0.308477014 -0.172818005 + 0.000291102013 -0.26078999 -0.0517052002 + -0.000669146015 -0.222791001 0.0487757996 + 0.411350012 -0.0489434004 -1.01136994 + 0.411350012 -0.0489434004 -0.776709974 + 0.386952996 -0.185795993 -0.77670902 + 0.386952996 -0.185795993 -1.01136994 + 0.411350012 -0.0489434004 -0.619045973 + 0.386952996 -0.185795993 -0.619046986 + 0.421638012 -0.0492780991 -0.443266004 + 0.381237 -0.173394993 -0.44343701 + 0.394832999 -0.0509498008 -0.227092996 + 0.365886986 -0.171599999 -0.205988005 + 0.408367008 -0.0508049987 -0.116350003 + 0.358431995 -0.151873007 -0.101089999 + 0.334574997 -0.0282010995 0.00385460001 + 0.241118997 -0.115108997 0.0216425005 + 0.220209002 -0.322748005 -1.01136994 + 0.220175996 -0.295729011 -0.77670902 + 0.220498994 -0.282824993 -0.619046986 + 0.225661993 -0.288159996 -0.44323501 + 0.237527996 -0.271845013 -0.194879994 + 0.244534001 -0.231023997 -0.0824164003 + 0.166293994 -0.192524999 0.0387626998 + 0.0773999989 -0.369720012 -0.776709974 + 0.0777838975 -0.39673999 -1.01136994 + 0.0781781003 -0.356817007 -0.619046986 + 0.0803605989 -0.358543009 -0.443190008 + 0.0581657998 -0.352982014 -0.189271003 + 0.0740822032 -0.288167 -0.0569765009 + 0.0741349012 -0.213811994 0.0487757996 + 0.00593842007 -0.401555985 -1.01136994 + 0.00588141987 -0.374536008 -0.77670902 + 0.00599073013 -0.361633003 -0.619046986 + tverts 70 + 0.0577909984 0.118855998 0 + 0.00152499997 0.118855998 0 + 0.00152499997 0.00584900007 0 + 0.0577909984 0.00584900007 0 + 0.00152499997 0.191250995 0 + 0.0577909984 0.191250995 0 + 0.0577909984 0.266763002 0 + 0.00152499997 0.266763002 0 + 0.00152499997 0.369102001 0 + 0.0577909984 0.369102001 0 + 0.0577909984 0.433881998 0 + 0.00152499997 0.433881998 0 + 0.00152499997 0.492188007 0 + 0.0577909984 0.492188007 0 + 0.123113997 0.00584900007 0 + 0.123113997 0.118855998 0 + 0.123113997 0.191250995 0 + 0.123113997 0.266763002 0 + 0.123113997 0.369102001 0 + 0.123113997 0.433881998 0 + 0.123113997 0.492188007 0 + 0.192560002 0.118855998 0 + 0.192560002 0.00584900007 0 + 0.192560002 0.191250995 0 + 0.192560002 0.266763002 0 + 0.192560002 0.369102001 0 + 0.192560002 0.433881998 0 + 0.192560002 0.492188007 0 + 0.245315999 0.00584900007 0 + 0.245315999 0.118855998 0 + 0.245315999 0.191250995 0 + 0.245315999 0.266763002 0 + 0.245315999 0.369102001 0 + 0.245315999 0.433881998 0 + 0.245315999 0.492188007 0 + 0.506705999 0.00584900007 0 + 0.506705999 0.118855998 0 + 0.56933099 0.118855998 0 + 0.56933099 0.00584900007 0 + 0.506705999 0.191250995 0 + 0.56933099 0.191250995 0 + 0.506705999 0.266763002 0 + 0.567892015 0.266763002 0 + 0.506705999 0.369102001 0 + 0.567892015 0.369102001 0 + 0.506705999 0.433881998 0 + 0.566540003 0.433881998 0 + 0.506705999 0.492188007 0 + 0.566540003 0.492188007 0 + 0.626973987 0.00584900007 0 + 0.626973987 0.118855998 0 + 0.626973987 0.191250995 0 + 0.625535011 0.266763002 0 + 0.625535011 0.369102001 0 + 0.624182999 0.433881998 0 + 0.624182999 0.492188007 0 + 0.684616983 0.118855998 0 + 0.684616983 0.00584900007 0 + 0.684616983 0.191250995 0 + 0.683178008 0.266763002 0 + 0.683178008 0.369102001 0 + 0.681827009 0.433881998 0 + 0.681827009 0.492188007 0 + 0.740779996 0.00584900007 0 + 0.740779996 0.118855998 0 + 0.740779996 0.191250995 0 + 0.740779996 0.266763002 0 + 0.740779996 0.369102001 0 + 0.740779996 0.433881998 0 + 0.740779996 0.492188007 0 + faces 192 + 0 1 2 1 0 1 2 0 + 3 0 2 1 3 0 2 0 + 0 4 1 1 0 4 1 0 + 0 5 4 1 0 5 4 0 + 6 7 4 1 6 7 4 0 + 5 6 4 1 5 6 4 0 + 6 8 7 1 6 8 7 0 + 6 9 8 1 6 9 8 0 + 10 11 8 1 10 11 8 0 + 9 10 8 1 9 10 8 0 + 10 12 11 1 10 12 11 0 + 10 13 12 1 10 13 12 0 + 14 0 3 1 14 0 3 0 + 14 15 0 1 14 15 0 0 + 16 5 0 1 16 5 0 0 + 15 16 0 1 15 16 0 0 + 16 6 5 1 16 6 5 0 + 16 17 6 1 16 17 6 0 + 18 9 6 1 18 9 6 0 + 17 18 6 1 17 18 6 0 + 18 10 9 1 18 10 9 0 + 18 19 10 1 18 19 10 0 + 20 13 10 1 20 13 10 0 + 19 20 10 1 19 20 10 0 + 21 15 14 1 21 15 14 0 + 22 21 14 1 22 21 14 0 + 21 16 15 1 21 16 15 0 + 21 23 16 1 21 23 16 0 + 24 17 16 1 24 17 16 0 + 23 24 16 1 23 24 16 0 + 24 18 17 1 24 18 17 0 + 24 25 18 1 24 25 18 0 + 26 19 18 1 26 19 18 0 + 25 26 18 1 25 26 18 0 + 26 20 19 1 26 20 19 0 + 26 27 20 1 26 27 20 0 + 28 21 22 1 28 21 22 0 + 28 29 21 1 28 29 21 0 + 30 23 21 1 30 23 21 0 + 29 30 21 1 29 30 21 0 + 30 24 23 1 30 24 23 0 + 30 31 24 1 30 31 24 0 + 32 25 24 1 32 25 24 0 + 31 32 24 1 31 32 24 0 + 32 26 25 1 32 26 25 0 + 32 33 26 1 32 33 26 0 + 34 27 26 1 34 27 26 0 + 33 34 26 1 33 34 26 0 + 35 36 37 1 2 1 0 0 + 35 37 38 1 2 0 3 0 + 36 39 37 1 1 4 0 0 + 39 40 37 1 4 5 0 0 + 39 41 42 1 4 7 6 0 + 39 42 40 1 4 6 5 0 + 41 43 42 1 7 8 6 0 + 43 44 42 1 8 9 6 0 + 43 45 46 1 8 11 10 0 + 43 46 44 1 8 10 9 0 + 45 47 46 1 11 12 10 0 + 47 48 46 1 12 13 10 0 + 38 37 49 1 3 0 14 0 + 37 50 49 1 0 15 14 0 + 37 40 51 1 0 5 16 0 + 37 51 50 1 0 16 15 0 + 40 42 51 1 5 6 16 0 + 42 52 51 1 6 17 16 0 + 42 44 53 1 6 9 18 0 + 42 53 52 1 6 18 17 0 + 44 46 53 1 9 10 18 0 + 46 54 53 1 10 19 18 0 + 46 48 55 1 10 13 20 0 + 46 55 54 1 10 20 19 0 + 49 50 56 1 14 15 21 0 + 49 56 57 1 14 21 22 0 + 50 51 56 1 15 16 21 0 + 51 58 56 1 16 23 21 0 + 51 52 59 1 16 17 24 0 + 51 59 58 1 16 24 23 0 + 52 53 59 1 17 18 24 0 + 53 60 59 1 18 25 24 0 + 53 54 61 1 18 19 26 0 + 53 61 60 1 18 26 25 0 + 54 55 61 1 19 20 26 0 + 55 62 61 1 20 27 26 0 + 57 56 63 1 22 21 28 0 + 56 64 63 1 21 29 28 0 + 56 58 65 1 21 23 30 0 + 56 65 64 1 21 30 29 0 + 58 59 65 1 23 24 30 0 + 59 31 65 1 24 31 30 0 + 59 60 32 1 24 25 32 0 + 59 32 31 1 24 32 31 0 + 60 61 32 1 25 26 32 0 + 61 33 32 1 26 33 32 0 + 61 62 34 1 26 27 34 0 + 61 34 33 1 26 34 33 0 + 2 1 0 2 35 36 37 0 + 2 0 3 2 35 37 38 0 + 1 4 0 2 36 39 37 0 + 4 5 0 2 39 40 37 0 + 4 7 6 2 39 41 42 0 + 4 6 5 2 39 42 40 0 + 7 8 6 2 41 43 42 0 + 8 9 6 2 43 44 42 0 + 8 11 10 2 43 45 46 0 + 8 10 9 2 43 46 44 0 + 11 12 10 2 45 47 46 0 + 12 13 10 2 47 48 46 0 + 3 0 14 2 38 37 49 0 + 0 15 14 2 37 50 49 0 + 0 5 16 2 37 40 51 0 + 0 16 15 2 37 51 50 0 + 5 6 16 2 40 42 51 0 + 6 17 16 2 42 52 51 0 + 6 9 18 2 42 44 53 0 + 6 18 17 2 42 53 52 0 + 9 10 18 2 44 46 53 0 + 10 19 18 2 46 54 53 0 + 10 13 20 2 46 48 55 0 + 10 20 19 2 46 55 54 0 + 14 15 21 2 49 50 56 0 + 14 21 22 2 49 56 57 0 + 15 16 21 2 50 51 56 0 + 16 23 21 2 51 58 56 0 + 16 17 24 2 51 52 59 0 + 16 24 23 2 51 59 58 0 + 17 18 24 2 52 53 59 0 + 18 25 24 2 53 60 59 0 + 18 19 26 2 53 54 61 0 + 18 26 25 2 53 61 60 0 + 19 20 26 2 54 55 61 0 + 20 27 26 2 55 62 61 0 + 22 21 28 2 57 56 63 0 + 21 29 28 2 56 64 63 0 + 21 23 30 2 56 58 65 0 + 21 30 29 2 56 65 64 0 + 23 24 30 2 58 59 65 0 + 24 31 30 2 59 66 65 0 + 24 25 32 2 59 60 67 0 + 24 32 31 2 59 67 66 0 + 25 26 32 2 60 61 67 0 + 26 33 32 2 61 68 67 0 + 26 27 34 2 61 62 69 0 + 26 34 33 2 61 69 68 0 + 37 36 35 2 37 36 35 0 + 38 37 35 2 38 37 35 0 + 37 39 36 2 37 39 36 0 + 37 40 39 2 37 40 39 0 + 42 41 39 2 42 41 39 0 + 40 42 39 2 40 42 39 0 + 42 43 41 2 42 43 41 0 + 42 44 43 2 42 44 43 0 + 46 45 43 2 46 45 43 0 + 44 46 43 2 44 46 43 0 + 46 47 45 2 46 47 45 0 + 46 48 47 2 46 48 47 0 + 49 37 38 2 49 37 38 0 + 49 50 37 2 49 50 37 0 + 51 40 37 2 51 40 37 0 + 50 51 37 2 50 51 37 0 + 51 42 40 2 51 42 40 0 + 51 52 42 2 51 52 42 0 + 53 44 42 2 53 44 42 0 + 52 53 42 2 52 53 42 0 + 53 46 44 2 53 46 44 0 + 53 54 46 2 53 54 46 0 + 55 48 46 2 55 48 46 0 + 54 55 46 2 54 55 46 0 + 56 50 49 2 56 50 49 0 + 57 56 49 2 57 56 49 0 + 56 51 50 2 56 51 50 0 + 56 58 51 2 56 58 51 0 + 59 52 51 2 59 52 51 0 + 58 59 51 2 58 59 51 0 + 59 53 52 2 59 53 52 0 + 59 60 53 2 59 60 53 0 + 61 54 53 2 61 54 53 0 + 60 61 53 2 60 61 53 0 + 61 55 54 2 61 55 54 0 + 61 62 55 2 61 62 55 0 + 63 56 57 2 63 56 57 0 + 63 64 56 2 63 64 56 0 + 65 58 56 2 65 58 56 0 + 64 65 56 2 64 65 56 0 + 65 59 58 2 65 59 58 0 + 65 31 59 2 65 66 59 0 + 32 60 59 2 67 60 59 0 + 31 32 59 2 66 67 59 0 + 32 61 60 2 67 61 60 0 + 32 33 61 2 67 68 61 0 + 34 62 61 2 69 62 61 0 + 33 34 61 2 68 69 61 0 + weights 66 + coat_BL1a 0.160174996 coat_BL2 0.839824975 + coat_BL1a 0.200000003 coat_BL2 0.800000012 + coat_BL2 1 + coat_BL2 1 + coat_BL1a 0.556226015 coat_BL2 0.443774015 + coat_BL1a 0.514063001 coat_BL2 0.485936999 + coat_BL1 0.0079752896 coat_BL1a 0.838922977 coat_BL2 0.153101996 + coat_BL1 0.00190593 coat_BL1a 0.884299994 coat_BL2 0.113793999 + coat_BL1 1 + coat_BL1 0.496358991 coat_BL1a 0.503641009 + coat_BL1 0.762925029 coat_BL1a 0.237075001 + coat_BL1 1 + torso_g 1 + torso_g 1 + coat_BR2 0.00872191973 coat_BL2 0.991277993 + coat_BL1a 0.200592995 coat_BL2 0.791154981 coat_BR1a 1.51697004e-005 coat_BR2 0.00823683012 + coat_BL1a 0.493550003 coat_BL2 0.493550003 coat_BR1a 0.00748664001 coat_BR2 0.00541386008 + coat_BL1 0.0143633997 coat_BL1a 0.747906029 coat_BL2 0.226083994 coat_BR1a 0.0116469003 + coat_BL1 0.5 coat_BL1a 0.5 + coat_BL1 0.660281003 coat_BL1a 0.325742006 coat_BR1 0.0123936003 coat_BR1a 0.00158339995 + torso_g 1 + coat_BL1a 0.120249003 coat_BL2 0.735189974 coat_BR1a 0.0148630999 coat_BR2 0.129697993 + coat_BL2 0.849915028 coat_BR2 0.150085002 + coat_BL1a 0.403243005 coat_BL2 0.440999001 coat_BR1a 0.0784177035 coat_BR2 0.0773399994 + coat_BL1a 0.700226009 coat_BL2 0.146024004 coat_BR1a 0.135277003 coat_BR2 0.0184729006 + coat_BL1 0.5 coat_BL1a 0.5 + coat_BL1 0.584960997 coat_BL1a 0.198337004 coat_BR1 0.159804001 coat_BR1a 0.0568974018 + torso_g 1 + coat_BL2 0.534169018 coat_BR2 0.465831012 + coat_BL1a 0.0738148987 coat_BL2 0.461174011 coat_BR1a 0.0629519001 coat_BR2 0.402058989 + coat_BL1a 0.260372996 coat_BL2 0.273045987 coat_BR1a 0.228653997 coat_BR2 0.237928003 + coat_BL1a 0.417932987 coat_BL2 0.0820676014 coat_BR1a 0.417932004 coat_BR2 0.0820678994 + coat_BL1 0.232178003 coat_BL1a 0.267259985 coat_BR1 0.233302996 coat_BR1a 0.267259985 + coat_BL1 0.390556991 coat_BL1a 0.121689998 coat_BR1 0.366064012 coat_BR1a 0.121688999 + torso_g 1 + coat_BR2 1 + coat_BR1a 0.200000003 coat_BR2 0.800000012 + coat_BR1a 0.160178006 coat_BR2 0.839821994 + coat_BR2 1 + coat_BR1a 0.556227982 coat_BR2 0.443771988 + coat_BR1a 0.514064014 coat_BR2 0.485935986 + coat_BR1 0.00203589001 coat_BR1a 0.884186029 coat_BR2 0.113778003 + coat_BR1 0.00818703976 coat_BR1a 0.838743985 coat_BR2 0.153069004 + coat_BR1 1 + coat_BR1 0.496127993 coat_BR1a 0.503871977 + coat_BR1 1 + coat_BL1 0.00198006001 coat_BR1 0.761416018 coat_BR1a 0.236604005 + torso_g 1 + torso_g 1 + coat_BL2 0.00872175954 coat_BR2 0.991277993 + coat_BL1a 1.51642998e-005 coat_BL2 0.00823665038 coat_BR1a 0.200596005 coat_BR2 0.791152 + coat_BL1a 0.00748657016 coat_BL2 0.00541375019 coat_BR1a 0.493550003 coat_BR2 0.493550003 + coat_BL1a 0.0116430996 coat_BR1 0.0146703999 coat_BR1a 0.747672975 coat_BR2 0.226014003 + coat_BR1 0.5 coat_BR1a 0.5 + coat_BL1 0.0327114016 coat_BL1a 0.00155082997 coat_BR1 0.646700025 coat_BR1a 0.319038004 + torso_g 1 + coat_BL1a 0.0148625998 coat_BL2 0.129696995 coat_BR1a 0.120250002 coat_BR2 0.735189974 + coat_BL2 0.150085002 coat_BR2 0.849915028 + coat_BL1a 0.0784178972 coat_BL2 0.077339597 coat_BR1a 0.403241992 coat_BR2 0.441000998 + coat_BL1a 0.135277003 coat_BL2 0.0184728 coat_BR1a 0.700224996 coat_BR2 0.146025002 + coat_BR1 0.5 coat_BR1a 0.5 + coat_BL1 0.191297993 coat_BL1a 0.0546434 coat_BR1 0.563582003 coat_BR1a 0.190476 + torso_g 1 + coat_BL2 0.465829015 coat_BR2 0.534170985 + coat_BL1a 0.0629506037 coat_BL2 0.402058005 coat_BR1a 0.0738162994 coat_BR2 0.461174995 + coat_BL1a 0.228653997 coat_BL2 0.237927005 coat_BR1a 0.260372013 coat_BR2 0.273045987 + position 0.000249158009 -0.0249429997 1.19026995 + orientation 0 0 0 0 + alpha 1 +endnode +node skin skirt_FL + parent a_dfa2_coat + #part-number -1 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 0 + bitmap pfh0_robe020 + verts 28 + -0.305444986 0.139210001 -0.193368003 + -0.237331003 0.203033 -0.193366006 + -0.246720999 0.212204993 -0.446229994 + -0.322854012 0.162016004 -0.446229994 + -0.228022993 0.189619005 -0.0821357965 + -0.301279992 0.128794 -0.082159102 + -0.254676998 0.148833007 0.0412851982 + -0.139647007 0.202303007 0.0569575988 + -0.421815991 0.0576072 -0.446229994 + -0.399096996 0.0731849968 -0.193370998 + -0.393649012 0.0672049001 -0.0821601003 + -0.294800013 0.0604811013 0.0159958992 + -0.394825011 -0.0509498008 -0.228202 + -0.456562996 -0.0492780991 -0.446229994 + -0.408313006 -0.0508049987 -0.117450997 + -0.335027993 -0.0282010995 0.00385460001 + -0.315391004 0.205142006 -1.01338005 + -0.241000995 0.244190007 -0.77896899 + -0.241000995 0.262345999 -1.01338005 + -0.315391004 0.186985999 -0.77896899 + -0.315391004 0.174565002 -0.621472001 + -0.241000995 0.228277996 -0.621472001 + -0.412084013 0.0720809028 -0.77896899 + -0.412088007 0.0902367979 -1.01338005 + -0.412084013 0.0648813024 -0.621472001 + -0.446040004 -0.0288203005 -1.01441002 + -0.446040004 -0.0288203005 -0.779748976 + -0.446038991 -0.0288203005 -0.622085989 + tverts 56 + 0.368342996 0.369102001 0 + 0.292266011 0.369102001 0 + 0.292266011 0.266763002 0 + 0.368342996 0.266763002 0 + 0.29400301 0.436486989 0 + 0.368342996 0.436486989 0 + 0.383451998 0.527912021 0 + 0.297475994 0.551961005 0 + 0.429636002 0.266763002 0 + 0.429636002 0.369102001 0 + 0.429636002 0.433881998 0 + 0.426162988 0.509117007 0 + 0.494111001 0.369102001 0 + 0.494111001 0.266763002 0 + 0.494111001 0.433881998 0 + 0.494111001 0.497397989 0 + 0.368342996 0.00584900007 0 + 0.292266011 0.118855998 0 + 0.292266011 0.00584900007 0 + 0.368342996 0.118855998 0 + 0.368342996 0.191250995 0 + 0.292266011 0.191250995 0 + 0.429636002 0.118855998 0 + 0.429636002 0.00584900007 0 + 0.429636002 0.191250995 0 + 0.494111001 0.00584900007 0 + 0.494111001 0.118855998 0 + 0.494111001 0.191250995 0 + 0.506705999 0.266763002 0 + 0.506705999 0.369102001 0 + 0.579964995 0.369102001 0 + 0.587661028 0.266763002 0 + 0.506705999 0.433881998 0 + 0.581266999 0.433881998 0 + 0.506705999 0.492188007 0 + 0.581266999 0.492188007 0 + 0.665903986 0.266763002 0 + 0.658209026 0.369102001 0 + 0.659510016 0.433881998 0 + 0.659510016 0.492188007 0 + 0.740779996 0.369102001 0 + 0.740779996 0.266763002 0 + 0.740779996 0.433881998 0 + 0.740779996 0.492188007 0 + 0.506705999 0.00584900007 0 + 0.506705999 0.118855998 0 + 0.584271014 0.00584900007 0 + 0.584271014 0.118855998 0 + 0.506705999 0.191250995 0 + 0.585484982 0.191250995 0 + 0.662513018 0.118855998 0 + 0.662513018 0.00584900007 0 + 0.663727999 0.191250995 0 + 0.740779996 0.00584900007 0 + 0.740779996 0.118855998 0 + 0.740779996 0.191250995 0 + faces 72 + 0 1 2 1 0 1 2 0 + 3 0 2 1 3 0 2 0 + 0 4 1 1 0 4 1 0 + 0 5 4 1 0 5 4 0 + 6 7 4 1 6 7 4 0 + 5 6 4 1 5 6 4 0 + 8 0 3 1 8 0 3 0 + 8 9 0 1 8 9 0 0 + 10 5 0 1 10 5 0 0 + 9 10 0 1 9 10 0 0 + 10 6 5 1 10 6 5 0 + 10 11 6 1 10 11 6 0 + 12 9 8 1 12 9 8 0 + 13 12 8 1 13 12 8 0 + 12 10 9 1 12 10 9 0 + 12 14 10 1 12 14 10 0 + 15 11 10 1 15 11 10 0 + 14 15 10 1 14 15 10 0 + 16 17 18 1 16 17 18 0 + 16 19 17 1 16 19 17 0 + 20 21 17 1 20 21 17 0 + 19 20 17 1 19 20 17 0 + 20 2 21 1 20 2 21 0 + 20 3 2 1 20 3 2 0 + 22 19 16 1 22 19 16 0 + 23 22 16 1 23 22 16 0 + 22 20 19 1 22 20 19 0 + 22 24 20 1 22 24 20 0 + 8 3 20 1 8 3 20 0 + 24 8 20 1 24 8 20 0 + 25 22 23 1 25 22 23 0 + 25 26 22 1 25 26 22 0 + 27 24 22 1 27 24 22 0 + 26 27 22 1 26 27 22 0 + 27 8 24 1 27 8 24 0 + 27 13 8 1 27 13 8 0 + 2 1 0 2 28 29 30 0 + 2 0 3 2 28 30 31 0 + 1 4 0 2 29 32 30 0 + 4 5 0 2 32 33 30 0 + 4 7 6 2 32 34 35 0 + 4 6 5 2 32 35 33 0 + 3 0 8 2 31 30 36 0 + 0 9 8 2 30 37 36 0 + 0 5 10 2 30 33 38 0 + 0 10 9 2 30 38 37 0 + 5 6 10 2 33 35 38 0 + 6 11 10 2 35 39 38 0 + 8 9 12 2 36 37 40 0 + 8 12 13 2 36 40 41 0 + 9 10 12 2 37 38 40 0 + 10 14 12 2 38 42 40 0 + 10 11 15 2 38 39 43 0 + 10 15 14 2 38 43 42 0 + 18 17 16 2 44 45 46 0 + 17 19 16 2 45 47 46 0 + 17 21 20 2 45 48 49 0 + 17 20 19 2 45 49 47 0 + 21 2 20 2 48 28 49 0 + 2 3 20 2 28 31 49 0 + 16 19 22 2 46 47 50 0 + 16 22 23 2 46 50 51 0 + 19 20 22 2 47 49 50 0 + 20 24 22 2 49 52 50 0 + 20 3 8 2 49 31 36 0 + 20 8 24 2 49 36 52 0 + 23 22 25 2 51 50 53 0 + 22 26 25 2 50 54 53 0 + 22 24 27 2 50 52 55 0 + 22 27 26 2 50 55 54 0 + 24 8 27 2 52 36 55 0 + 8 13 27 2 36 41 55 0 + weights 28 + coat_FL1 0.5 coat_FL1a 0.5 + coat_FL1 0.463629991 coat_FL1a 0.536369979 + coat_FL2 0.124785997 coat_FL1a 0.875213981 + coat_FL1a 0.854849994 coat_FL2 0.145150006 + coat_FL1 0.83821702 coat_FL1a 0.161782995 + coat_FL1 0.797800004 coat_FL1a 0.202199996 + torso_g 1 + torso_g 1 + coat_FL1a 0.901561022 coat_FL2 0.0984392017 + coat_FL1 0.5 coat_FL1a 0.5 + coat_FL1 0.798967004 coat_FL1a 0.201032996 + torso_g 1 + coat_BL1 1 + coat_FL1a 0.936169028 coat_FL2 0.0638308972 + coat_BL1 1 + torso_g 1 + coat_FL2 1 + coat_FL1a 0.0234338995 coat_FL2 0.976566017 + coat_FL2 1 + coat_FL1a 0.0645259023 coat_FL2 0.935473979 + coat_FL1a 0.5 coat_FL2 0.5 + coat_FL1a 0.413581997 coat_FL2 0.586417973 + coat_FL1a 0.0613403991 coat_FL2 0.938660026 + coat_FL2 1 + coat_FL1a 0.5 coat_FL2 0.5 + coat_FL2 1 + coat_FL1a 0.0491022989 coat_FL2 0.950897992 + coat_FL1a 0.541894972 coat_FL2 0.458104998 + position 0.000249158009 -0.0249429997 1.19026995 + orientation 0 0 0 0 + alpha 1 +endnode +node skin skirt_FR + parent a_dfa2_coat + #part-number -1 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 0 + bitmap pfh0_robe020 + verts 29 + 0.242257997 0.212204993 -0.446229994 + 0.232868001 0.203033 -0.193371996 + 0.305359006 0.158785 -0.19337 + 0.322766006 0.162016004 -0.446229994 + 0.243763998 0.189614996 -0.0821387023 + 0.301245004 0.148360997 -0.0821601003 + 0.137415007 0.201533005 0.0567586012 + 0.257575005 0.148833007 0.0412851982 + 0.421727002 0.0576073006 -0.446231008 + 0.399015009 0.073187001 -0.193367004 + 0.393615991 0.0672010034 -0.0821601003 + 0.312887996 0.0604811013 0.0159958992 + 0.394832999 -0.0509498008 -0.227092996 + 0.456476986 -0.0492780991 -0.446229994 + 0.408367008 -0.0508049987 -0.116350003 + 0.334574997 -0.0282010995 0.00385460001 + 0.236780003 0.262345999 -1.01338005 + 0.236780003 0.244190007 -0.77896899 + 0.315443993 0.205142006 -1.01338005 + 0.315443993 0.186985999 -0.77896899 + 0.236780003 0.228277996 -0.621472001 + 0.315443993 0.174565002 -0.621470988 + 0.412138999 0.0720809028 -0.77896899 + 0.412138999 0.0902367979 -1.01338005 + 0.412138999 0.0648813993 -0.621470988 + 0.446090996 -0.0288201999 -1.01441002 + 0.446094006 -0.0288201999 -0.77974999 + 0.446094006 -0.0288201999 -0.622087002 + 0.421727002 0.0576073006 -0.446229994 + tverts 56 + 0.292266011 0.266763002 0 + 0.292266011 0.369102001 0 + 0.368342996 0.369102001 0 + 0.368342996 0.266763002 0 + 0.295740008 0.452811986 0 + 0.370600998 0.446038991 0 + 0.304156005 0.543677986 0 + 0.365162998 0.522005975 0 + 0.429636002 0.266763002 0 + 0.429636002 0.369102001 0 + 0.429636002 0.443780988 0 + 0.438275993 0.503762007 0 + 0.494111001 0.369102001 0 + 0.494111001 0.266763002 0 + 0.494111001 0.446038991 0 + 0.489757001 0.495674998 0 + 0.292266011 0.00584900007 0 + 0.292266011 0.118855998 0 + 0.368342996 0.00584900007 0 + 0.368342996 0.118855998 0 + 0.292266011 0.191250995 0 + 0.368342996 0.191250995 0 + 0.429636002 0.118855998 0 + 0.429636002 0.00584900007 0 + 0.429636002 0.191250995 0 + 0.494111001 0.00584900007 0 + 0.494111001 0.118855998 0 + 0.494111001 0.191250995 0 + 0.587861001 0.369102001 0 + 0.506705999 0.369102001 0 + 0.506705999 0.266763002 0 + 0.58721298 0.266763002 0 + 0.506705999 0.433881998 0 + 0.585000992 0.433881998 0 + 0.585000992 0.492188007 0 + 0.506705999 0.492188007 0 + 0.665165007 0.266763002 0 + 0.665813982 0.369102001 0 + 0.662952006 0.433881998 0 + 0.662952006 0.492188007 0 + 0.740779996 0.369102001 0 + 0.740779996 0.266763002 0 + 0.740779996 0.433881998 0 + 0.740779996 0.492188007 0 + 0.587993026 0.00584900007 0 + 0.506705999 0.118855998 0 + 0.506705999 0.00584900007 0 + 0.587993026 0.118855998 0 + 0.589203 0.191250995 0 + 0.506705999 0.191250995 0 + 0.665944993 0.118855998 0 + 0.665944993 0.00584900007 0 + 0.667155027 0.191250995 0 + 0.740779996 0.00584900007 0 + 0.740779996 0.118855998 0 + 0.740779996 0.191250995 0 + faces 72 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 1 4 2 1 1 4 2 0 + 4 5 2 1 4 5 2 0 + 4 6 7 1 4 6 7 0 + 4 7 5 1 4 7 5 0 + 3 2 8 1 3 2 8 0 + 2 9 8 1 2 9 8 0 + 2 5 10 1 2 5 10 0 + 2 10 9 1 2 10 9 0 + 5 7 10 1 5 7 10 0 + 7 11 10 1 7 11 10 0 + 8 9 12 1 8 9 12 0 + 8 12 13 1 8 12 13 0 + 9 10 12 1 9 10 12 0 + 10 14 12 1 10 14 12 0 + 10 11 15 1 10 11 15 0 + 10 15 14 1 10 15 14 0 + 16 17 18 1 16 17 18 0 + 17 19 18 1 17 19 18 0 + 17 20 21 1 17 20 21 0 + 17 21 19 1 17 21 19 0 + 20 0 21 1 20 0 21 0 + 0 3 21 1 0 3 21 0 + 18 19 22 1 18 19 22 0 + 18 22 23 1 18 22 23 0 + 19 21 22 1 19 21 22 0 + 21 24 22 1 21 24 22 0 + 21 3 8 1 21 3 8 0 + 21 8 24 1 21 8 24 0 + 23 22 25 1 23 22 25 0 + 22 26 25 1 22 26 25 0 + 22 24 27 1 22 24 27 0 + 22 27 26 1 22 27 26 0 + 24 8 27 1 24 8 27 0 + 8 13 27 1 8 13 27 0 + 2 1 0 2 28 29 30 0 + 3 2 0 2 31 28 30 0 + 2 4 1 2 28 32 29 0 + 2 5 4 2 28 33 32 0 + 7 6 4 2 34 35 32 0 + 5 7 4 2 33 34 32 0 + 28 2 3 2 36 28 31 0 + 28 9 2 2 36 37 28 0 + 10 5 2 2 38 33 28 0 + 9 10 2 2 37 38 28 0 + 10 7 5 2 38 34 33 0 + 10 11 7 2 38 39 34 0 + 12 9 28 2 40 37 36 0 + 13 12 28 2 41 40 36 0 + 12 10 9 2 40 38 37 0 + 12 14 10 2 40 42 38 0 + 15 11 10 2 43 39 38 0 + 14 15 10 2 42 43 38 0 + 18 17 16 2 44 45 46 0 + 18 19 17 2 44 47 45 0 + 21 20 17 2 48 49 45 0 + 19 21 17 2 47 48 45 0 + 21 0 20 2 48 30 49 0 + 21 3 0 2 48 31 30 0 + 22 19 18 2 50 47 44 0 + 23 22 18 2 51 50 44 0 + 22 21 19 2 50 48 47 0 + 22 24 21 2 50 52 48 0 + 28 3 21 2 36 31 48 0 + 24 28 21 2 52 36 48 0 + 25 22 23 2 53 50 51 0 + 25 26 22 2 53 54 50 0 + 27 24 22 2 55 52 50 0 + 26 27 22 2 54 55 50 0 + 27 28 24 2 55 36 52 0 + 27 13 28 2 55 41 36 0 + weights 29 + coat_FR1a 0.875392973 coat_FR2 0.124606997 + coat_FR1 0.463770002 coat_FR1a 0.536230028 + coat_FR1 0.5 coat_FR1a 0.5 + coat_FR1a 0.854746997 coat_FR2 0.145253003 + coat_FR1 0.838512003 coat_FR1a 0.161487997 + coat_FR1 0.798153996 coat_FR1a 0.201846004 + torso_g 1 + torso_g 1 + coat_FR1a 0.900738001 coat_FR2 0.0992617011 + coat_FR1 0.5 coat_FR1a 0.5 + coat_FR1 0.798170984 coat_FR1a 0.201829001 + torso_g 1 + coat_BR1 1 + coat_FR1a 0.935923994 coat_FR2 0.0640757009 + coat_BR1 1 + torso_g 1 + coat_FR2 1 + coat_FR1a 0.0232130997 coat_FR2 0.976786971 + coat_FR2 1 + coat_FR1a 0.064615503 coat_FR2 0.935383976 + coat_FR1a 0.413547009 coat_FR2 0.586453021 + coat_FR1a 0.5 coat_FR2 0.5 + coat_FR1a 0.0619994998 coat_FR2 0.938000977 + coat_FR2 1 + coat_FR1a 0.5 coat_FR2 0.5 + coat_FR2 1 + coat_FR1a 0.049483899 coat_FR2 0.950515985 + coat_FR1a 0.542228997 coat_FR2 0.457771003 + coat_FR1a 0.897707999 coat_FR2 0.102292001 + position 0.000249158009 -0.0249429997 1.19026995 + orientation 0 0 0 0 + alpha 1 +endnode +endmodelgeom a_dfa2_coat + +#MAXANIM ASCII +newanim 2hreadyr a_dfa2_coat + length 1 + transtime 0.75 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 9 + 0 0.000247801014 -0.0325523987 1.02807999 + 0.0666666999 0.000247876014 -0.0368080996 1.02507997 + 0.266667008 0.000247876014 -0.0937030986 1.00365996 + 0.433333009 0.000247874996 -0.141066 1.00441003 + 0.5 0.000248024997 -0.145973995 1.00588 + 0.56666702 0.000247874996 -0.141944006 1.00863004 + 0.766667008 0.000247874996 -0.0848684981 1.02942002 + 0.93333298 0.000247876014 -0.0374478996 1.02923 + 1 0.000247801014 -0.0325523987 1.02807999 + orientationkey 7 + 0 0.402040064 0.466024071 0.788153112 -0.466549993 + 0.0666666999 0.401904047 0.466045082 0.788210094 -0.466554999 + 0.433333009 0.499727786 0.525810838 0.68832773 -0.39478603 + 0.5 0.508875906 0.531088889 0.67748791 -0.389290005 + 0.56666702 0.499727786 0.525810838 0.68832773 -0.39478603 + 0.93333298 0.401904047 0.466045082 0.788210094 -0.466554999 + 1 0.401904047 0.466045082 0.788210094 -0.466554999 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.524354994 -0.380479038 0.761766076 -0.52046603 + 0.0666666999 0.513486862 -0.377298951 0.770698845 -0.525656998 + 0.433333009 0.39256689 -0.339040905 0.854951739 -0.595126987 + 0.5 0.384020984 -0.336154997 0.859957993 -0.600980937 + 0.56666702 0.39256689 -0.339040905 0.854951739 -0.595126987 + 0.93333298 0.513486862 -0.377298951 0.770698845 -0.525656998 + 1 0.524354994 -0.380479038 0.761766076 -0.52046603 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.469422072 -0.324719042 0.821097136 -2.11272001 + 0.0666666999 -0.466112107 -0.334553123 0.819032192 -2.11239004 + 0.133332998 -0.461562842 -0.354814917 0.813059747 -2.12362003 + 0.266667008 -0.472604066 -0.337866038 0.813936114 -2.13012004 + 0.433333009 -0.475604147 -0.307807088 0.824048221 -2.13536 + 0.5 -0.475621879 -0.302993953 0.82581991 -2.14116001 + 0.56666702 -0.476756096 -0.293508023 0.828587174 -2.14587998 + 0.633333027 -0.476442248 -0.283790141 0.832145393 -2.14007998 + 0.766667008 -0.472716987 -0.30557099 0.826537967 -2.11606002 + 0.93333298 -0.474755138 -0.31220305 0.822883248 -2.0987401 + 1 -0.469422072 -0.324719042 0.821097136 -2.11272001 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 1 2.33381002e-007 0 -5.41000986 + 0.0666666999 1 0 0 -5.41532993 + 0.133332998 1 2.58692012e-007 0 -5.39784002 + 0.266667008 1 0 0 -5.40782022 + 0.433333009 1 1.61337994e-007 -2.06587004e-007 -5.4615798 + 0.5 1 0 0 -5.4667201 + 0.56666702 1 0 0 -5.47117996 + 0.633333027 1 0 0 -5.47675991 + 0.766667008 1 0 0 -5.44651985 + 0.93333298 1 0 0 -5.41523981 + 1 1 0 1.26242e-007 -5.41000986 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.345129997 0.0551377945 0.936933875 -5.42122984 + 0.0666666999 0.372222841 0.0457396805 0.927015662 -5.38781977 + 0.133332998 0.367685109 0.0518931188 0.928501368 -5.34611988 + 0.266667008 0.354947001 0.0506568961 0.933512986 -5.34897995 + 0.433333009 0.3657718 0.0469703786 0.92951858 -5.38894987 + 0.5 0.35433796 0.0552155934 0.933485866 -5.41058016 + 0.56666702 0.335432082 0.0706663132 0.93941021 -5.43930006 + 0.633333027 0.324110091 0.0743353292 0.943094313 -5.47384024 + 0.766667008 0.33761391 0.0408774838 0.940396667 -5.46125984 + 0.93333298 0.330083042 0.0395690054 0.943122208 -5.45950985 + 1 0.345129997 0.0551380962 0.936933875 -5.42122984 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.187018961 0.719839811 -0.668471813 -0.465018988 + 0.0666666999 -0.258826107 0.669118285 -0.696627378 -0.473426968 + 0.133332998 -0.356503129 0.610205114 -0.707499266 -0.476318985 + 0.266667008 -0.336050063 0.679654121 -0.652028143 -0.471468985 + 0.433333009 -0.125914976 0.78782177 -0.602894902 -0.510574996 + 0.5 -0.0573121198 0.810951233 -0.582300127 -0.523901999 + 0.56666702 0.0279715005 0.83701998 -0.546456933 -0.543977916 + 0.633333027 0.0997572169 0.841447115 -0.53105104 -0.564450026 + 0.766667008 -0.0323728137 0.788332403 -0.614397287 -0.518211007 + 0.93333298 -0.121255025 0.760123134 -0.63836509 -0.486020029 + 1 -0.187018961 0.719839811 -0.668471813 -0.465018988 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -1 0 0 -2.08576989 + 0.0666666999 -1 0 0 -2.06858993 + 0.133332998 -1 0 0 -2.05707002 + 0.266667008 -1 0 0 -2.08684993 + 0.433333009 -1 0 0 -2.08070993 + 0.5 -1 0 0 -2.08114004 + 0.56666702 -1 0 0 -2.08617997 + 0.633333027 -1 0 0 -2.08274007 + 0.766667008 -1 0 0 -2.07193995 + 0.93333298 -1 0 0 -2.08857012 + 1 -1 0 0 -2.08576989 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.586993992 -0.452885985 0.671068013 -0.321235001 + 0.0666666999 0.69503206 -0.416121095 0.586322129 -0.332193971 + 0.133332998 0.764291704 -0.405713856 0.50125283 -0.36894998 + 0.266667008 0.750074089 -0.39647603 0.529335082 -0.40516004 + 0.433333009 0.503630877 -0.352300972 0.788821876 -0.338461995 + 0.5 0.343965977 -0.339536965 0.875443935 -0.324102014 + 0.56666702 0.132030979 -0.320657969 0.937947929 -0.325984001 + 0.633333027 -0.0726951733 -0.275777876 0.958468556 -0.331328005 + 0.766667008 0.212582052 -0.325831085 0.921218216 -0.297057986 + 0.93333298 0.455723822 -0.402013808 0.794166684 -0.309632957 + 1 0.58699429 -0.45288524 0.671068311 -0.321235001 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.0989803225 -0.870788097 0.481592089 -0.374542981 + 0.5 -0.0743608773 -0.782087743 0.618715823 -0.362497002 + 1 -0.0989804119 -0.870788097 0.481592089 -0.374542981 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.87361604 -0.267624021 -0.406414032 -1.04312015 + 0.0666666999 -0.871320009 -0.276897013 -0.405129015 -1.05788004 + 0.133332998 -0.881064117 -0.278638035 -0.382213056 -1.08888996 + 0.266667008 -0.896885633 -0.280538887 -0.341897845 -1.14909005 + 0.433333009 -0.909225225 -0.279169053 -0.308827072 -1.17735004 + 0.5 -0.909528017 -0.282676011 -0.304717958 -1.18005002 + 0.56666702 -0.908591747 -0.278954983 -0.310877949 -1.1679399 + 0.633333027 -0.902851939 -0.278856963 -0.327256978 -1.14216006 + 0.766667008 -0.88862586 -0.277426988 -0.365209967 -1.08761001 + 0.93333298 -0.870142221 -0.276191086 -0.408131123 -1.05016994 + 1 -0.873605907 -0.267664939 -0.406408936 -1.04311001 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.999361634 -0.0258826893 0.0246257894 -1.02075005 + 0.0666666999 0.999372005 -0.0255581997 0.0245430004 -1.02998996 + 0.133332998 0.999372542 -0.0255421847 0.0245388895 -1.03043997 + 0.266667008 0.999363899 -0.0258123968 0.0246077962 -1.02274001 + 0.433333009 0.999241292 -0.0294137113 0.0255268086 -0.929315984 + 0.5 0.999217749 -0.0300631933 0.0256924946 -0.914121985 + 0.56666702 0.999213874 -0.0301682968 0.0257193949 -0.911709011 + 0.633333027 0.999234438 -0.0296052117 0.0255758092 -0.924789011 + 0.766667008 0.999259889 -0.0288923979 0.0253938958 -0.94184792 + 0.93333298 0.999353528 -0.0261324868 0.0246895887 -1.01374996 + 1 0.999361634 -0.0258831903 0.0246259887 -1.02074003 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.368132055 0.674200118 -0.6402601 -0.313552976 + 0.0666666999 -0.364969105 0.683150232 -0.632537246 -0.311113 + 0.133332998 -0.274943024 0.708212972 -0.650262058 -0.299356014 + 0.266667008 -0.0545832925 0.740983844 -0.669300795 -0.283177972 + 0.433333009 0.338278115 0.682268262 -0.648134232 -0.297221988 + 0.5 0.381055951 0.669206917 -0.637932956 -0.302475005 + 0.56666702 0.360358 0.67107898 -0.647916019 -0.301050007 + 0.633333027 0.244465917 0.695946693 -0.675199687 -0.292802006 + 0.766667008 0.00655665342 0.714310348 -0.699798346 -0.288403004 + 0.93333298 -0.342503011 0.68493402 -0.64308399 -0.308731973 + 1 -0.368084878 0.674290776 -0.640191734 -0.313573003 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.452459782 0.865595639 0.214532897 -0.660658002 + 0.0666666999 -0.473886997 0.855386078 0.209154993 -0.660175025 + 0.133332998 -0.526987851 0.818331718 0.229383916 -0.68027401 + 0.266667008 -0.617833793 0.744765818 0.252200902 -0.718254924 + 0.433333009 -0.71648407 0.65388906 0.243063018 -0.72458303 + 0.5 -0.728913486 0.638848364 0.246085152 -0.721156001 + 0.56666702 -0.716501832 0.653108835 0.245099947 -0.719033003 + 0.633333027 -0.680193186 0.692717195 0.239750043 -0.698046982 + 0.766667008 -0.59506017 0.773502231 0.218169048 -0.656260014 + 0.93333298 -0.472614139 0.858483195 0.199104041 -0.648878992 + 1 -0.452527851 0.865571678 0.214485928 -0.660733998 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 1 0 0 -0.863502979 + 0.0666666999 1 0 0 -0.883067012 + 0.133332998 1 0 0 -0.944167018 + 0.266667008 1 0 0 -1.05483997 + 0.433333009 1 0 0 -1.11208999 + 0.5 1 0 0 -1.11135006 + 0.56666702 1 0 0 -1.0984 + 0.633333027 1 0 0 -1.05128002 + 0.766667008 1 0 0 -0.947578013 + 0.93333298 1 0 -1.22727002e-007 -0.868019938 + 1 1 0 0 -0.863637984 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.735934138 -0.670321167 -0.0952390134 -0.767848074 + 0.0666666999 -0.741540253 -0.663104177 -0.102034025 -0.770965993 + 0.133332998 -0.759068131 -0.639298081 -0.122937016 -0.776828945 + 0.266667008 -0.791854918 -0.594116926 -0.141388983 -0.784842968 + 0.433333009 -0.822564006 -0.563033998 -0.0798822045 -0.753516972 + 0.5 -0.825268149 -0.560141146 -0.0719330162 -0.745940924 + 0.56666702 -0.820908844 -0.566158831 -0.0746514797 -0.744556069 + 0.633333027 -0.806240976 -0.586647928 -0.0762870908 -0.744198024 + 0.766667008 -0.773974955 -0.630044997 -0.0632930025 -0.740149021 + 0.93333298 -0.739947855 -0.667461872 -0.0834975839 -0.762641013 + 1 -0.735943913 -0.670317888 -0.0951865762 -0.76791203 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.583700061 -0.7941401 -0.169220999 -0.193692997 + 0.266667008 0.128766015 -0.976078093 -0.17518802 -0.181761995 + 0.5 0.0976580158 -0.978016138 -0.184248015 -0.179165006 + 0.766667008 0.56428194 -0.806960881 -0.174355984 -0.193147004 + 1 0.583711684 -0.794137537 -0.16919291 -0.193692982 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.864540279 -0.34633413 0.364174128 -0.156748995 + 1 0.864547193 -0.3463431 0.364149094 -0.156745002 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.366371036 0.234474048 0.90044111 -0.158409998 + 0.266667008 -0.71360904 0.120973013 0.690020084 -0.204663008 + 0.5 0.157935962 0.357270896 0.920550764 -0.158422992 + 0.766667008 0.562408149 0.377025157 0.735900223 -0.198588014 + 1 -0.366371989 0.23447302 0.900440991 -0.158410996 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.193270966 -0.962928891 0.188186973 -0.220416993 + 0.5 -0.429173172 -0.853208363 0.296388149 -0.290461957 + 1 0.193270966 -0.962928891 0.188186973 -0.220415995 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.618825376 0.783424377 -0.0574580282 -0.273734987 + 0.5 0.775649846 0.627691805 -0.0661084875 -0.431041002 + 1 0.618825316 0.783424377 -0.0574581288 -0.273734987 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.799693227 -0.245106071 -0.548100173 -0.328159958 + 0.5 0.782445788 -0.328177899 -0.529223859 -0.348758996 + 1 0.799692214 -0.24510707 -0.548101187 -0.328159004 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.236218065 -0.787068248 -0.569846094 -1.13341999 + 0.266667008 -0.254611909 -0.822989762 -0.507799804 -1.25573003 + 0.5 -0.32498613 -0.777829289 -0.537927151 -1.18575001 + 1 -0.236188069 -0.787056208 -0.569875121 -1.13338006 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.443129987 0.889569998 -0.110909998 -0.542846978 + 0.266667008 0.33759585 0.925552666 -0.17140992 -0.731242001 + 0.5 0.576101124 0.814588189 -0.0674797148 -0.669775009 + 1 0.443123788 0.889575601 -0.110889941 -0.542843997 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.845197201 0.484779119 0.225013047 -0.197714016 + 0.266667008 0.15129298 0.976620853 0.152715981 -0.197748005 + 0.5 0.543183148 0.810080171 0.22073105 -0.160691008 + 0.766667008 0.976688147 -0.0203629024 0.213695034 -0.260526001 + 1 0.845197499 0.484778702 0.225012884 -0.197714001 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.667456925 -0.125579983 0.733982921 -0.195279002 + 0.266667008 -0.705714226 0.232066095 0.669412255 -0.234350011 + 0.5 -0.705716074 0.232067019 0.66940999 -0.234348997 + 1 -0.667436123 -0.125578031 0.734002173 -0.195279017 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.243895009 -0.576484978 -0.779859126 -0.374590009 + 0.266667008 0.082734406 -0.73687607 -0.670946062 -0.428841978 + 0.5 0.0712152198 -0.734704256 -0.674639225 -0.426020026 + 0.766667008 0.59402895 -0.346832961 -0.725835025 -0.424825996 + 1 0.243885994 -0.576480925 -0.779864967 -0.374594003 +endnode +doneanim 2hreadyr a_dfa2_coat + +#MAXANIM ASCII +newanim 2hreadyl a_dfa2_coat + length 1 + transtime 0.75 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 9 + 0 0.000247424003 -0.0325531997 1.02807999 + 0.0666666999 0.000247424003 -0.0367073007 1.02500999 + 0.233333007 -0.000206202996 -0.0727612972 1.00257003 + 0.433333009 0.000247498014 -0.116502002 0.996379018 + 0.5 0.000247649004 -0.121110998 0.996685028 + 0.56666702 0.000247498014 -0.116751 0.999881983 + 0.733332992 0.000247348013 -0.080527097 1.02073002 + 0.93333298 0.000247424003 -0.0376711003 1.02769995 + 1 0.000247424003 -0.0325531997 1.02807999 + orientationkey 9 + 0 0.933085799 0.0489376895 0.356308907 -0.235166982 + 0.0666666999 0.935153067 0.0475578047 0.351037025 -0.238796011 + 0.233333007 0.944221914 0.0404105969 0.32682097 -0.257432997 + 0.433333009 0.953670084 0.0336554982 0.298965991 -0.281432033 + 0.5 0.954766333 0.0327496119 0.295548111 -0.284763008 + 0.56666702 0.953670084 0.0336554982 0.298965991 -0.281432033 + 0.733332992 0.946369112 0.0394323021 0.320672035 -0.261949986 + 0.93333298 0.935153067 0.0475578047 0.351037025 -0.238796011 + 1 0.933142841 0.0489338934 0.356159955 -0.235283986 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.877816021 0.0970269963 -0.469067991 -0.231120005 + 0.0666666999 0.872484803 0.0977273732 -0.478768885 -0.226537004 + 0.233333007 0.816554844 0.0863448679 -0.57077384 -0.186522022 + 0.433333009 0.761837184 0.108010031 -0.638700187 -0.170711994 + 0.5 0.747478068 0.108908013 -0.655298054 -0.166455001 + 0.56666702 0.760847628 0.108074948 -0.639867723 -0.170405 + 0.733332992 0.823158205 0.10316702 -0.558361113 -0.194830999 + 0.93333298 0.872061133 0.0977820158 -0.479529023 -0.226186007 + 1 0.877816021 0.0970269963 -0.469067991 -0.231120005 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.526653826 -0.0891923755 0.845387757 -1.40819001 + 0.0666666999 -0.517776072 -0.117656022 0.847387135 -1.47237992 + 0.133332998 -0.503321171 -0.144059047 0.852006316 -1.53859997 + 0.233333007 -0.483232766 -0.150279924 0.862497568 -1.53670001 + 0.5 -0.487061143 -0.110603034 0.866336226 -1.44520998 + 0.56666702 -0.49033308 -0.0863266215 0.867249191 -1.38876998 + 0.633333027 -0.476609051 -0.0826643258 0.87522018 -1.39591014 + 0.733332992 -0.470933974 -0.0992899984 0.876563013 -1.45772004 + 0.866666973 -0.49581027 -0.0988177508 0.862790406 -1.44334996 + 1 -0.526653826 -0.0891921744 0.845387757 -1.40818989 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -1 4.59044969e-007 0 -0.398158044 + 0.0666666999 -1 0 7.50186985e-007 -0.383154005 + 0.133332998 -1 0 2.66891988e-007 -0.370595992 + 0.233333007 -1 0 -2.2443399e-007 -0.406765014 + 0.5 -1 0 3.53786959e-007 -0.425911009 + 0.56666702 -1 0 -3.26085001e-007 -0.442683011 + 0.633333027 -1 0 0 -0.432651013 + 0.733332992 -1 0 -1.92244016e-007 -0.385591 + 0.866666973 -1 1.31898005e-007 0 -0.387964994 + 1 -1 0 0 -0.398158044 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.242239028 -0.492549062 -0.835892141 -0.950064003 + 0.0666666999 -0.211705089 -0.465545207 -0.859330356 -1.01557994 + 0.133332998 -0.185376912 -0.442746788 -0.877274573 -1.09003997 + 0.233333007 -0.175775051 -0.458911121 -0.870921195 -1.11406004 + 0.5 -0.232247978 -0.503701925 -0.832072854 -1.02067995 + 0.56666702 -0.252660036 -0.533649087 -0.807082117 -0.966439962 + 0.633333027 -0.281381011 -0.533639073 -0.797529995 -0.98327297 + 0.733332992 -0.284267932 -0.515928864 -0.808089852 -1.05676997 + 0.866666973 -0.263516873 -0.500929773 -0.824395657 -1.01624 + 1 -0.242239028 -0.492549062 -0.835892141 -0.950064003 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.569581032 0.147484019 -0.808595061 -1.14163995 + 0.0666666999 -0.581546783 0.159514934 -0.797720671 -1.16357982 + 0.133332998 -0.589718223 0.165157065 -0.790541291 -1.17495 + 0.233333007 -0.574617922 0.158292979 -0.802967966 -1.16029 + 0.5 -0.537443757 0.151021928 -0.829666555 -1.13539004 + 0.56666702 -0.521308124 0.142462015 -0.841393173 -1.11813998 + 0.633333027 -0.50243187 0.128797963 -0.8549698 -1.09785998 + 0.733332992 -0.507825136 0.130904049 -0.851456225 -1.10764003 + 1 -0.569581032 0.147484019 -0.808595061 -1.14163995 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -1 0 0 -0.986624002 + 0.0666666999 -1 0 0 -0.964798927 + 0.133332998 -1 0 0 -0.948070943 + 0.233333007 -1 0 0 -0.970003009 + 0.5 -1 0 0 -1.01296997 + 0.56666702 -1 0 -1.41268004e-007 -1.03446996 + 0.633333027 -1 0 0 -1.04707003 + 0.733332992 -1 0 0 -1.02209997 + 1 -1 0 0 -0.986624002 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.358043104 0.758561194 0.544417143 -0.988041997 + 0.0666666999 0.36651212 0.736074209 0.569090188 -1.00115001 + 0.133332998 0.373932898 0.718216836 0.586803854 -1.00623 + 0.233333007 0.377786815 0.728039742 0.572044849 -0.999126077 + 0.5 0.340923995 0.769395053 0.540187061 -0.996989012 + 0.56666702 0.329736918 0.783909798 0.52607888 -0.986855984 + 0.633333027 0.308077902 0.808246791 0.501821816 -0.979591012 + 0.733332992 0.288712949 0.804571867 0.518949866 -0.967314005 + 1 0.358043104 0.758561194 0.544417143 -0.988041997 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.575147748 0.575682819 0.581200838 -0.0923918039 + 0.5 -0.231988937 0.959352851 -0.16069597 -0.109737001 + 1 -0.575147808 0.575681806 0.581201792 -0.0923917964 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.965715528 -0.247738868 -0.0775823519 -1.16652 + 0.0666666999 -0.966701031 -0.246523023 -0.0686694086 -1.18467999 + 0.133332998 -0.968574703 -0.24147594 -0.0596017838 -1.22343004 + 0.233333007 -0.971114635 -0.233749926 -0.0479299799 -1.27948999 + 0.433333009 -0.974473953 -0.221796006 -0.0347428955 -1.33512998 + 0.5 -0.974973917 -0.220186993 -0.0307180975 -1.34144998 + 0.56666702 -0.974291146 -0.222505033 -0.0353315026 -1.32650006 + 0.633333027 -0.972834945 -0.227713972 -0.0416961946 -1.29507995 + 0.733332992 -0.970500648 -0.235470906 -0.0517869852 -1.24527001 + 0.93333298 -0.96651268 -0.247004926 -0.0695833787 -1.17804003 + 1 -0.965720356 -0.247720122 -0.0775819346 -1.16664004 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.999267459 -0.0286792126 0.0253395103 -0.947066009 + 0.0666666999 0.999266326 -0.0287108086 0.0253475085 -0.946291089 + 0.133332998 0.999266863 -0.0286957938 0.0253436957 -0.946658015 + 0.233333007 0.999261141 -0.0288580041 0.0253851041 -0.942686021 + 0.433333009 0.999081969 -0.0335869975 0.0265913997 -0.83919102 + 0.5 0.999037981 -0.0346602015 0.0268652011 -0.81861496 + 0.56666702 0.999052107 -0.0343190022 0.0267783049 -0.825048983 + 0.633333027 0.999079406 -0.0336503126 0.0266077109 -0.837946057 + 0.733332992 0.999108791 -0.0329179913 0.0264207944 -0.852513015 + 0.93333298 0.999247015 -0.0292552002 0.0254864004 -0.933089018 + 1 0.99926734 -0.0286816135 0.0253400095 -0.947002947 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.144605041 0.93631041 -0.320019126 -0.200185001 + 0.0666666999 0.196805984 0.932936847 -0.301489949 -0.201001987 + 0.133332998 0.321470946 0.906841815 -0.272569954 -0.204991981 + 0.233333007 0.494857997 0.840137005 -0.222002998 -0.217571989 + 0.433333009 0.79005456 0.600307703 -0.12427593 -0.288112015 + 0.5 0.816506863 0.568107963 -0.102809988 -0.301384002 + 0.56666702 0.797050476 0.590559363 -0.126294076 -0.29241401 + 0.633333027 0.745597303 0.648323298 -0.154148057 -0.269907981 + 0.733332992 0.643743694 0.737647653 -0.203641891 -0.241781995 + 0.93333298 0.227666914 0.924984694 -0.304254919 -0.202133998 + 1 0.14489302 0.936259031 -0.320039034 -0.200192004 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.217372999 0.49664703 0.840292037 -0.604432046 + 0.0666666999 -0.2404809 0.476485819 0.845653713 -0.607133985 + 0.133332998 -0.317659944 0.453546911 0.832698822 -0.612636983 + 0.233333007 -0.421556056 0.414312065 0.806620121 -0.629298985 + 0.433333009 -0.579432309 0.307715148 0.754698336 -0.661302984 + 0.5 -0.589263082 0.28521803 0.755923092 -0.668281019 + 0.56666702 -0.57792592 0.304304957 0.757231891 -0.65703398 + 0.633333027 -0.523806155 0.333642125 0.783779323 -0.636816025 + 0.733332992 -0.429847777 0.377539814 0.820179582 -0.612420976 + 0.93333298 -0.238400042 0.47322908 0.848068178 -0.604978979 + 1 -0.217604041 0.496532053 0.840300202 -0.604458988 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 1 -1.8211702e-007 0 -0.749297976 + 0.0666666999 1 0 0 -0.766942024 + 0.133332998 1 0 0 -0.830641985 + 0.233333007 1 0 0 -0.918685019 + 0.433333009 1 0 0 -0.999981999 + 0.5 1 0 -1.31147004e-007 -1.00064003 + 0.56666702 1 0 0 -0.987078011 + 0.633333027 1 0 0 -0.937714994 + 0.733332992 1 0 0 -0.858236015 + 0.93333298 1 0 -1.56539997e-007 -0.757381976 + 1 1 0 -1.74399005e-007 -0.74930501 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.785618246 -0.612668097 0.0862658247 -0.756937981 + 0.0666666999 -0.791760147 -0.603922069 0.0916189179 -0.762309015 + 0.133332998 -0.807787776 -0.580734909 0.101122968 -0.78087002 + 0.233333007 -0.827176869 -0.549929917 0.115565993 -0.806136012 + 0.433333009 -0.841312051 -0.506367028 0.189173013 -0.808523059 + 0.5 -0.841457009 -0.501376987 0.201423004 -0.805905998 + 0.56666702 -0.838710964 -0.507885933 0.196508974 -0.80151999 + 0.633333027 -0.831046104 -0.525400043 0.182530016 -0.787798047 + 0.733332992 -0.816099942 -0.554467916 0.162929982 -0.765397012 + 0.93333298 -0.789758146 -0.605764031 0.0966024101 -0.755973995 + 1 -0.785622776 -0.612661779 0.0862693712 -0.756910026 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.00719802734 0.855763674 -0.517316818 -0.130805001 + 0.5 -0.186819986 0.826474965 -0.531071961 -0.133833006 + 0.766667008 -0.196176067 0.824649215 -0.530536115 -0.134047017 + 1 0.00719745737 0.855763674 -0.517316818 -0.130805001 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.070392102 -0.946045995 0.316294014 -0.142571002 + 1 -0.070392102 -0.946045995 0.316294014 -0.142571002 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.158853993 0.048134502 0.986128032 -0.229823992 + 0.266667008 -0.471667975 0.11368499 0.874416947 -0.262962997 + 0.5 -0.160678044 0.112936042 0.980524361 -0.235225007 + 0.766667008 0.215789974 0.00608100928 0.976420879 -0.230619997 + 1 -0.158853993 0.048134502 0.986128032 -0.229823992 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.648746133 0.15065603 -0.745943129 -0.103040002 + 0.5 -0.890127122 0.231451035 -0.392561018 -0.127629995 + 0.766667008 -0.652520895 0.110288978 -0.749701798 -0.103505 + 1 -0.648746133 0.15065603 -0.745943129 -0.103040002 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.618825912 0.78342396 -0.0574577972 -0.273734987 + 1 0.618826985 0.783423126 -0.0574576072 -0.273734987 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.60870105 -0.351164043 -0.711454034 -0.612342 + 0.266667008 0.660999894 -0.349206954 -0.664178908 -0.675077975 + 0.5 0.67527324 -0.354335129 -0.646879196 -0.699067056 + 0.766667008 0.551997006 -0.355845988 -0.754104078 -0.563099027 + 1 0.608700573 -0.351163775 -0.71145457 -0.61234194 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.241539955 -0.132009983 -0.961369753 -1.36176002 + 0.5 -0.257526964 -0.120325983 -0.95874995 -1.36886001 + 0.766667008 -0.258338064 -0.119747035 -0.958604217 -1.36909997 + 1 -0.241539955 -0.132009983 -0.961369753 -1.36176002 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.658810973 0.752038062 0.0201718006 -0.195084006 + 1 0.658810973 0.752038062 0.0201715026 -0.195084006 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.4968009 0.110735975 0.860770822 -0.354492009 + 0.266667008 0.244453102 0.528118193 0.813224375 -0.359270006 + 0.5 0.372177839 0.324551851 0.869568706 -0.352616996 + 0.766667008 0.556053042 -0.0919126049 0.826049089 -0.392632008 + 1 0.4968009 0.110735975 0.860770822 -0.354492009 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.552580893 0.65008688 0.521575868 -0.346971005 + 0.5 -0.698067963 0.529763937 0.48171699 -0.397370011 + 0.766667008 -0.563615978 0.642447054 0.519229054 -0.349642038 + 1 -0.552580893 0.65008688 0.521575868 -0.346971005 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.301153958 -0.559878945 -0.771907926 -0.376904994 + 0.266667008 0.0762307718 -0.618648767 -0.781960726 -0.356321007 + 0.5 0.301153958 -0.559878945 -0.771907926 -0.376904994 + 0.766667008 0.481573045 -0.485110074 -0.729901075 -0.415028006 + 1 0.301153958 -0.559878945 -0.771907926 -0.376904994 +endnode +doneanim 2hreadyl a_dfa2_coat + +#MAXANIM ASCII +newanim plreadyr a_dfa2_coat + length 1 + transtime 0.75 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 9 + 0 -0.00189467997 -0.0312605985 0.998121023 + 0.0666666999 -0.00189467997 -0.0351282991 0.994219005 + 0.233333007 -0.00189467997 -0.0562250987 0.978124976 + 0.433333009 -0.00189467997 -0.0815412998 0.979309976 + 0.5 -0.00189467997 -0.0851327032 0.979270995 + 0.56666702 -0.00189467997 -0.0815412998 0.981653988 + 0.733332992 -0.00189467997 -0.0604445003 0.993409991 + 0.93333298 -0.00189467997 -0.0351282991 0.998067975 + 1 -0.00189467997 -0.0312605985 0.998121023 + orientationkey 7 + 0 0.916262925 0.0597050972 0.396102935 -0.211063996 + 0.0666666999 0.918130755 0.0585730858 0.391924918 -0.213362992 + 0.433333009 0.93651402 0.046605099 0.347518981 -0.241267994 + 0.5 0.93767786 0.0457873009 0.344476014 -0.243447989 + 0.56666702 0.93651402 0.0466049016 0.347518981 -0.241267994 + 0.93333298 0.918130755 0.0585730858 0.391924918 -0.213362992 + 1 0.916262925 0.0597050972 0.396102935 -0.211063996 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.847584069 0.100689016 -0.521021068 -0.208508998 + 0.0666666999 0.854151011 0.101576999 -0.510007977 -0.203183994 + 0.433333009 0.945793033 0.114349999 -0.303972989 -0.143127993 + 0.5 0.953124285 0.115428038 -0.27969709 -0.138925001 + 0.56666702 0.945793033 0.114349999 -0.303972989 -0.143127993 + 0.93333298 0.854151011 0.101576999 -0.510007977 -0.203183994 + 1 0.847584069 0.100689016 -0.521021068 -0.208508998 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.821663976 -0.388060987 0.417465001 -1.42364013 + 0.0666666999 -0.819840133 -0.395996034 0.413581043 -1.45056999 + 0.133332998 -0.814727068 -0.410689026 0.409334064 -1.48275006 + 0.233333007 -0.804269075 -0.42802301 0.412247002 -1.48743999 + 0.433333009 -0.784399688 -0.454537779 0.422033787 -1.46789002 + 0.5 -0.781936109 -0.456451058 0.424533069 -1.45713997 + 0.56666702 -0.785679996 -0.446184963 0.428515971 -1.42506003 + 0.633333027 -0.790491164 -0.433763087 0.432404071 -1.40304005 + 0.93333298 -0.819674432 -0.390049189 0.419518173 -1.41253006 + 1 -0.821663976 -0.388060987 0.417465001 -1.42364013 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.995581925 -0.000378233963 -0.093896389 -1.32134998 + 0.0666666999 -0.995334446 -0.00239322102 -0.0964555293 -1.27997994 + 0.133332998 -0.99512583 -0.00402786909 -0.0985309854 -1.24802995 + 0.233333007 -0.995191097 -0.00352207036 -0.0978891179 -1.25776994 + 0.433333009 -0.995589733 -0.000313295925 -0.0938133746 -1.32272005 + 0.5 -0.995707214 0.000676561147 -0.0925565213 -1.34391999 + 0.56666702 -0.99595046 0.00279788137 -0.0898600444 -1.39136004 + 0.633333027 -0.996052504 0.00371969817 -0.0886877552 -1.41286004 + 0.93333298 -0.995693028 0.000556046027 -0.0927093998 -1.34131002 + 1 -0.995581925 -0.000378285971 -0.093896389 -1.32134998 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.0118930032 -0.370628089 0.928705215 -4.6188302 + 0.0666666999 0.0062224092 -0.375962913 0.926613808 -4.59747982 + 0.133332998 0.0252122972 -0.374663979 0.926817834 -4.57061005 + 0.233333007 0.0359489992 -0.365262985 0.930209994 -4.55412006 + 0.433333009 0.0420335904 -0.343332946 0.938272715 -4.55781984 + 0.5 0.0381286815 -0.33877486 0.94009459 -4.56542015 + 0.56666702 0.0153217055 -0.333079129 0.942774355 -4.59253979 + 0.633333027 -0.000110048022 -0.334310055 0.94246316 -4.6139102 + 0.93333298 -0.0161571 -0.366900027 0.930120051 -4.62397003 + 1 -0.0118930032 -0.370628089 0.928705215 -4.6188302 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.893147409 0.443933189 -0.0721877292 -0.487369001 + 0.0666666999 0.880931973 0.467669994 -0.0724131018 -0.469787031 + 0.133332998 0.867264867 0.491301954 -0.0804613978 -0.459408998 + 0.233333007 0.869167328 0.483872205 -0.102058046 -0.478866965 + 0.5 0.873281002 0.461361974 -0.156606004 -0.524505019 + 0.56666702 0.885136843 0.439230949 -0.153651983 -0.545616984 + 0.633333027 0.893341303 0.42635715 -0.141989037 -0.548300982 + 1 0.893147349 0.443933189 -0.0721878409 -0.487369031 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.993848622 -0.0483553819 -0.0996326655 -1.64098001 + 0.0666666999 -0.993879437 -0.0479652211 -0.0995140448 -1.64637005 + 0.133332998 -0.993941903 -0.0471671931 -0.0992708877 -1.65745997 + 0.233333007 -0.993995845 -0.0464712903 -0.0990590826 -1.66723001 + 0.5 -0.993894458 -0.0477740206 -0.099455744 -1.64901996 + 0.56666702 -0.993876338 -0.0480042137 -0.0995258391 -1.64583004 + 0.633333027 -0.993819177 -0.0487262122 -0.0997455195 -1.63589001 + 1 -0.993848622 -0.0483553819 -0.0996325612 -1.64098001 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.217945054 -0.630849183 -0.744667232 -0.352681965 + 0.0666666999 0.28154096 -0.647738934 -0.707932889 -0.357030034 + 0.133332998 0.339887947 -0.658356905 -0.671596885 -0.357782006 + 0.233333007 0.350205898 -0.646822751 -0.677477777 -0.343679011 + 0.5 0.221147969 -0.591445923 -0.775425851 -0.299421012 + 0.56666702 0.139181003 -0.56476295 -0.813431859 -0.296483994 + 0.633333027 0.084825702 -0.553587019 -0.828460038 -0.304298013 + 1 0.217945054 -0.630849183 -0.744667232 -0.352681965 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.205312029 0.355497032 0.911849141 -0.0986445025 + 0.0666666999 -0.182311967 0.367135942 0.912125826 -0.0992119983 + 0.433333009 0.0898782909 0.482666969 0.871179938 -0.111993998 + 0.5 0.107922003 0.488903999 0.865635991 -0.113338999 + 0.56666702 0.0898783952 0.482666969 0.871179938 -0.111993998 + 0.93333298 -0.182311967 0.367135942 0.912125826 -0.0992119983 + 1 -0.205312029 0.355497032 0.911849141 -0.0986445993 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.965912104 -0.239962012 -0.0971186161 -1.22984004 + 0.0666666999 -0.966129601 -0.239502892 -0.0960828662 -1.24533999 + 0.133332998 -0.966439009 -0.23888202 -0.094503805 -1.27497995 + 0.233333007 -0.966833949 -0.237953976 -0.092790395 -1.31882 + 0.433333009 -0.966680765 -0.237980947 -0.0943045691 -1.35873997 + 0.5 -0.96665895 -0.237915993 -0.094691202 -1.36441004 + 0.56666702 -0.96655494 -0.238153979 -0.0951539949 -1.35342002 + 0.633333027 -0.966406703 -0.238738909 -0.0951936692 -1.32944 + 0.733332992 -0.965989769 -0.239237949 -0.098127082 -1.29365003 + 0.93333298 -0.965812385 -0.239872083 -0.0983249396 -1.23727 + 1 -0.965912104 -0.239962012 -0.0971186161 -1.22984004 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.999402344 -0.0245893095 0.0242958106 -1.05848002 + 0.0666666999 0.999407947 -0.0244066976 0.0242489986 -1.06401002 + 0.133332998 0.999412119 -0.024271002 0.0242145043 -1.06815004 + 0.233333007 0.999416649 -0.0241226908 0.0241765901 -1.07271004 + 0.433333009 0.999346077 -0.0263626017 0.0247483999 -1.00737 + 0.5 0.999334991 -0.0266996995 0.0248344 -0.998157978 + 0.56666702 0.999336064 -0.0266662035 0.0248258039 -0.999068975 + 0.633333027 0.999342322 -0.026476007 0.0247772075 -1.00425994 + 0.733332992 0.999350607 -0.0262224879 0.0247124881 -1.01124001 + 0.93333298 0.999394238 -0.0248511061 0.0243626069 -1.05063999 + 1 0.999402344 -0.0245894101 0.02429571 -1.05848002 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.111731969 0.933354795 -0.341122925 -0.201320007 + 0.0666666999 -0.086782597 0.937583148 -0.336759031 -0.200141996 + 0.133332998 -0.0150184054 0.944087386 -0.329353124 -0.197796002 + 0.233333007 0.0997058228 0.944489121 -0.313048035 -0.195814997 + 0.433333009 0.432853132 0.853908241 -0.288927078 -0.209738985 + 0.5 0.472567797 0.834867656 -0.282268882 -0.213343978 + 0.56666702 0.444413781 0.847751558 -0.289505839 -0.210720003 + 0.633333027 0.368433893 0.876877725 -0.308774889 -0.205860004 + 0.733332992 0.248998001 0.913115978 -0.322829962 -0.198792011 + 0.93333298 -0.0625406951 0.938847899 -0.338604957 -0.198740005 + 1 -0.111731969 0.933354795 -0.341122925 -0.201320007 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.399512887 0.591908872 0.70002383 -0.517253995 + 0.0666666999 -0.420433313 0.580952406 0.696943402 -0.531401992 + 0.133332998 -0.464441091 0.556627095 0.688811123 -0.557159007 + 0.233333007 -0.515137017 0.521586955 0.680132985 -0.601400018 + 0.433333009 -0.566765308 0.446479172 0.692411363 -0.681775033 + 0.5 -0.575174153 0.436607182 0.691772223 -0.691089928 + 0.56666702 -0.564173043 0.444884002 0.695547998 -0.680537999 + 0.633333027 -0.539612889 0.465433955 0.701561928 -0.654191017 + 0.733332992 -0.505933046 0.498420119 0.703995109 -0.605271041 + 0.93333298 -0.417238891 0.579263806 0.700260758 -0.525537014 + 1 -0.399512887 0.591908872 0.70002383 -0.517253995 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 1 0 0 -0.884748995 + 0.0666666999 1 0 0 -0.906570971 + 0.133332998 1 0 0 -0.946639061 + 0.233333007 1 0 0 -1.00334001 + 0.433333009 1 0 0 -1.03693998 + 0.5 1 0 0 -1.04207003 + 0.56666702 1 0 0 -1.02871001 + 0.633333027 1 0 0 -0.999863982 + 0.733332992 1 0 0 -0.954272985 + 0.93333298 1 0 0 -0.892103016 + 1 1 0 0 -0.884748995 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.798558831 -0.575766861 0.175488949 -0.851872981 + 0.0666666999 -0.804064035 -0.572444022 0.16058901 -0.855597973 + 0.133332998 -0.813646615 -0.564904809 0.137337953 -0.860688984 + 0.233333007 -0.827168345 -0.553287268 0.0983145386 -0.866240084 + 0.433333009 -0.841910064 -0.538411021 0.0360690989 -0.830654085 + 0.5 -0.843871057 -0.535672009 0.0306124017 -0.826613069 + 0.56666702 -0.840860903 -0.539974868 0.0371494927 -0.825442016 + 0.633333027 -0.833817005 -0.549174011 0.0561879016 -0.825047016 + 0.733332992 -0.821555197 -0.561090171 0.101118028 -0.826667964 + 0.93333298 -0.800987899 -0.574160874 0.169580966 -0.848132014 + 1 -0.798558831 -0.575766861 0.175488949 -0.851872981 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.460516185 0.886828244 -0.0382162146 -0.188396007 + 0.5 -0.460514933 0.886828899 -0.0382160954 -0.188396007 + 1 -0.460514933 0.886828899 -0.0382160954 -0.188396007 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.599042058 -0.787431002 0.145262003 -0.282833964 + 0.266667008 0.468487054 -0.866265059 0.17350702 -0.260343999 + 0.5 0.538106024 -0.829172969 0.151373982 -0.270222008 + 0.733332992 0.594758153 -0.791452229 0.140947029 -0.281473041 + 1 0.599041343 -0.787431479 0.145262107 -0.282833964 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.99643904 -0.0841984004 0.00445504999 -0.0450997986 + 0.266667008 -0.996434987 -0.0842664018 0.00406464003 -0.116039 + 0.5 -0.996439099 -0.0841979086 0.00445426069 -0.0872664005 + 0.733332992 0.99584955 0.0886026621 0.0208136905 -0.00578360958 + 1 -0.996439099 -0.0841981098 0.00445437059 -0.0450997986 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.703612924 -0.70885402 0.0495464951 -0.114386991 + 0.5 0.703612924 -0.70885402 0.0495464951 -0.114386991 + 1 0.703612924 -0.70885402 0.0495464951 -0.114386991 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.244535014 0.96956706 0.0119301006 -0.298869997 + 0.5 -0.311428875 0.949176729 0.0455591902 -0.373212993 + 1 0.244535953 0.969566822 0.0119300978 -0.298869997 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.923769116 -0.325747073 -0.201344028 -0.397406012 + 0.5 0.916637003 -0.341189981 -0.208244994 -0.574418008 + 1 0.923769116 -0.325747073 -0.201344028 -0.397406012 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.381821185 -0.208426073 -0.900428295 -1.10922003 + 0.5 -0.381821185 -0.208426073 -0.900428295 -1.10922003 + 1 -0.381821185 -0.208426073 -0.900428295 -1.10922003 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.929822206 0.362597018 0.0628813058 -0.275882035 + 0.266667008 0.886707187 0.460735112 0.0383859091 -0.267755002 + 0.5 0.929822087 0.362597018 0.0628828108 -0.275882006 + 0.733332992 0.948402286 0.307883084 0.0757703185 -0.281885982 + 1 0.929821849 0.362597913 0.062881574 -0.275882006 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.994671941 -0.0981278941 0.0316017978 -0.123393998 + 0.266667008 0.501169145 0.864828289 -0.0300250091 -0.0931793004 + 0.5 0.724127173 0.689465225 -0.0166580062 -0.087458998 + 0.733332992 0.994671822 -0.098128289 0.0316034928 -0.12339399 + 1 0.994671822 -0.0981284827 0.0316029936 -0.12339399 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.409408033 0.346398026 0.844034076 -0.850521922 + 0.5 -0.409408033 0.346398026 0.844034076 -0.850521922 + 1 -0.409408033 0.346398026 0.844034076 -0.850521922 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.666496158 -0.445272118 -0.59792614 -0.222160012 + 0.5 0.548274994 -0.201867014 -0.811568975 -0.164747998 + 0.733332992 0.902899444 -0.324143827 -0.282317817 -0.160777003 + 1 0.66649574 -0.44527185 -0.597926736 -0.222159997 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.420893937 -0.895210862 -0.146443963 -0.256857008 + 0.266667008 0.180300042 -0.981214225 -0.068633616 -0.340258986 + 0.5 0.467945904 -0.87723887 -0.107137993 -0.34216699 + 0.733332992 0.635026753 -0.752675712 -0.173839927 -0.262026995 + 0.866666973 0.614212871 -0.769269824 -0.175972953 -0.256258994 + 1 0.420894057 -0.895211101 -0.146442011 -0.256857008 +endnode +doneanim plreadyr a_dfa2_coat + +#MAXANIM ASCII +newanim plreadyl a_dfa2_coat + length 1 + transtime 0.75 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 9 + 0 -0.00185768004 -0.0312600993 1.00251997 + 0.0666666999 -0.00189467997 -0.0338273011 0.999836028 + 0.233333007 -0.00189467997 -0.0562250987 0.982740998 + 0.433333009 -0.00189467997 -0.081541203 0.979366004 + 0.5 -0.00189467997 -0.0851327032 0.979270995 + 0.56666702 -0.00189467997 -0.081541203 0.981827021 + 0.733332992 -0.00189467997 -0.0604445003 0.995661974 + 0.93333298 -0.00189467997 -0.0351282991 1.00188994 + 1 -0.00185768004 -0.0312600993 1.00251997 + orientationkey 7 + 0 0.916261613 0.0597123764 0.396104842 -0.211062998 + 0.0666666999 0.918130755 0.0585730858 0.391924918 -0.213362992 + 0.433333009 0.936513722 0.0466049835 0.347519875 -0.241267994 + 0.5 0.937678158 0.0457887091 0.344475091 -0.243448004 + 0.56666702 0.936513722 0.0466049835 0.347519875 -0.241267994 + 0.93333298 0.918130755 0.0585730858 0.391924918 -0.213362992 + 1 0.916261613 0.0597124733 0.396104842 -0.211062998 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.847584069 0.100689016 -0.521021068 -0.208508998 + 0.0666666999 0.854151011 0.101576999 -0.510007977 -0.203183994 + 0.433333009 0.945793033 0.114349999 -0.303972989 -0.143127993 + 0.5 0.953124285 0.115428038 -0.27969709 -0.138925001 + 0.56666702 0.945793033 0.114349999 -0.303972989 -0.143127993 + 0.93333298 0.854151011 0.101576999 -0.510007977 -0.203183994 + 1 0.847584069 0.100689016 -0.521021068 -0.208508998 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.604599953 -0.697043955 0.38547191 -0.737482011 + 0.0666666999 -0.64209789 -0.690127909 0.333816946 -0.745070994 + 0.133332998 -0.673039138 -0.678568125 0.29421705 -0.770729959 + 0.233333007 -0.675909758 -0.680702746 0.282470912 -0.782824993 + 0.433333009 -0.6150859 -0.725015938 0.309872955 -0.740264058 + 0.5 -0.597764254 -0.734792292 0.320559144 -0.725816071 + 0.56666702 -0.564161837 -0.739624858 0.366982907 -0.717335999 + 0.633333027 -0.5213902 -0.746730328 0.412972182 -0.696215928 + 0.733332992 -0.535266876 -0.734082758 0.417865902 -0.705154955 + 0.93333298 -0.578380764 -0.708245695 0.404800832 -0.724747002 + 1 -0.604599953 -0.697043955 0.38547191 -0.737482011 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.998103082 0.00255962019 -0.0615117028 -2.42183995 + 0.0666666999 -0.998071849 0.00127510971 -0.0620560944 -2.37982988 + 0.133332998 -0.9980461 0.000273460028 -0.0624810085 -2.34756994 + 0.233333007 -0.998056829 0.000686961866 -0.0623060875 -2.36084008 + 0.433333009 -0.998101175 0.00247811037 -0.0615461133 -2.41915989 + 0.5 -0.998115003 0.0030708597 -0.0612947978 -2.43875003 + 0.56666702 -0.998140037 0.00419298047 -0.0608188026 -2.47622991 + 0.633333027 -0.998151958 0.00475558965 -0.0605806969 -2.49520993 + 0.733332992 -0.998143435 0.00435183151 -0.0607515275 -2.48157001 + 0.93333298 -0.998121023 0.00333601004 -0.0611823983 -2.44756007 + 1 -0.998103082 0.0025595699 -0.0615117028 -2.42183995 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.0324033052 -0.264380008 0.963874102 -5.42578983 + 0.0666666999 -0.0139312036 -0.283103049 0.958988309 -5.38177013 + 0.133332998 -0.0183312986 -0.274560958 0.961394966 -5.34951019 + 0.233333007 -0.0435067192 -0.248780087 0.967582345 -5.33835983 + 0.433333009 -0.029089801 -0.252103001 0.967263103 -5.36387014 + 0.5 -0.0302826911 -0.256039947 0.966191769 -5.37323999 + 0.56666702 -0.0492797904 -0.243735939 0.968588829 -5.40698004 + 0.633333027 -0.0271162018 -0.265700996 0.963674068 -5.43678999 + 0.733332992 -0.0339106061 -0.26040706 0.964903235 -5.44189978 + 0.93333298 -0.031284906 -0.266774058 0.963251173 -5.44180012 + 1 -0.0324033983 -0.264380008 0.963874042 -5.42578983 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.748181283 0.428656191 -0.506437182 -0.843508959 + 0.0666666999 -0.773975015 0.402752042 -0.488624036 -0.859644949 + 0.133332998 -0.790498257 0.386556119 -0.475065142 -0.87507993 + 0.233333007 -0.770222962 0.406883001 -0.491124004 -0.859217942 + 0.5 -0.722165763 0.438434809 -0.535024822 -0.811585009 + 0.56666702 -0.687240005 0.467025071 -0.556406975 -0.792960942 + 0.633333027 -0.667802334 0.484601259 -0.564979315 -0.78245306 + 0.733332992 -0.684785187 0.47321409 -0.554200053 -0.793242037 + 0.93333298 -0.731204152 0.44257012 -0.519107103 -0.829954982 + 1 -0.748182058 0.428655058 -0.506437063 -0.843509018 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.974359095 -0.000454273075 -0.224998042 -0.73662895 + 0.0666666999 -0.97208643 -0.00427862164 -0.234584108 -0.705059946 + 0.133332998 -0.970575035 -0.00672583003 -0.240705028 -0.686220944 + 0.233333007 -0.974218607 -0.000696094765 -0.225604922 -0.734551013 + 0.5 -0.978696585 0.00742107676 -0.205177888 -0.811190009 + 0.56666702 -0.980450153 0.0108693028 -0.196467042 -0.848638058 + 0.633333027 -0.981015623 0.0120196966 -0.193555921 -0.861882985 + 0.733332992 -0.979695201 0.00936339051 -0.200274035 -0.831882 + 0.93333298 -0.976153851 0.0027037696 -0.21706295 -0.764860988 + 1 -0.974359095 -0.000454205117 -0.224998042 -0.73662895 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.616827965 -0.483654946 -0.620967925 -0.735252976 + 0.0666666999 -0.606939077 -0.485027075 -0.629582167 -0.745875061 + 0.133332998 -0.594865084 -0.500327051 -0.629133046 -0.751863062 + 0.233333007 -0.580037057 -0.52443099 -0.623321056 -0.729644001 + 0.5 -0.578035116 -0.506758094 -0.639587104 -0.703866065 + 0.56666702 -0.587176085 -0.502349079 -0.634720087 -0.687334955 + 0.633333027 -0.600992024 -0.481067955 -0.638265014 -0.680719972 + 0.733332992 -0.606748879 -0.483235896 -0.631140888 -0.694549024 + 0.93333298 -0.617936134 -0.47846213 -0.623882115 -0.72430402 + 1 -0.61682725 -0.483654171 -0.620969236 -0.73525399 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.0580888689 -0.99674958 -0.0558207743 -0.198581994 + 0.0666666999 -0.0513531975 -0.997174978 -0.0548173971 -0.201403007 + 0.433333009 0.0216713082 -0.998805344 -0.0437983163 -0.238784999 + 0.5 0.0263516959 -0.998723924 -0.0430832952 -0.241705 + 0.56666702 0.0216712076 -0.998805344 -0.0437984131 -0.238784999 + 0.93333298 -0.0513533019 -0.997174978 -0.0548173003 -0.201403007 + 1 -0.0580886789 -0.99674964 -0.0558203831 -0.198581994 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.982581019 0.0354247987 -0.182427004 -1.13188004 + 0.0666666999 -0.982431233 0.0376536064 -0.182787046 -1.14154005 + 0.133332998 -0.982252657 0.0425821841 -0.182664946 -1.16551995 + 0.233333007 -0.981953382 0.0492270179 -0.18260406 -1.20231998 + 0.433333009 -0.979501426 0.0682298243 -0.18953006 -1.23188007 + 0.5 -0.979131579 0.0708513632 -0.190476924 -1.23548996 + 0.56666702 -0.979320168 0.0691289157 -0.190140039 -1.22662985 + 0.633333027 -0.97971642 0.0647430196 -0.189642072 -1.20675004 + 0.733332992 -0.98038274 0.0577572808 -0.188450962 -1.17628002 + 0.93333298 -0.982177258 0.0384462066 -0.183983043 -1.13741004 + 1 -0.982578158 0.0354534052 -0.182437018 -1.13188004 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.999223948 -0.0298939962 0.0256493967 -0.918034017 + 0.0666666999 0.999228001 -0.0297826994 0.0256210994 -0.920624971 + 0.133332998 0.999231339 -0.029690709 0.025597509 -0.922776997 + 0.233333007 0.999237418 -0.0295219123 0.0255544111 -0.926749051 + 0.433333009 0.999132454 -0.0323165134 0.026267413 -0.864840984 + 0.5 0.999113798 -0.0327912942 0.0263884943 -0.855085015 + 0.56666702 0.999115646 -0.0327437893 0.0263763927 -0.856052935 + 0.633333027 0.999123037 -0.0325572044 0.0263288021 -0.859868944 + 0.733332992 0.999131501 -0.0323409848 0.0262735877 -0.86433202 + 0.93333298 0.999211729 -0.0302267913 0.0257342923 -0.910367012 + 1 0.999223948 -0.0298941955 0.0256493986 -0.918030977 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.241483018 0.851866007 -0.464769006 -0.139482006 + 0.0666666999 0.264116973 0.843498945 -0.467709035 -0.139997989 + 0.133332998 0.350133985 0.808889985 -0.472337991 -0.144026995 + 0.233333007 0.463797957 0.750084877 -0.471448958 -0.152364999 + 0.433333009 0.715068877 0.564951897 -0.411710948 -0.189301014 + 0.5 0.739072204 0.540412068 -0.402153045 -0.196084008 + 0.56666702 0.72420007 0.556715071 -0.406943053 -0.191605017 + 0.633333027 0.683860004 0.598496974 -0.417297035 -0.180842996 + 0.733332992 0.609052062 0.664247155 -0.433395088 -0.166933015 + 0.93333298 0.304529935 0.833183885 -0.461590886 -0.140901998 + 1 0.241572082 0.851871252 -0.464713156 -0.139425978 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.3198829 0.750496805 0.578298807 -0.862010002 + 0.0666666999 -0.333602965 0.750604868 0.570352018 -0.867624938 + 0.133332998 -0.370887071 0.749740064 0.548026085 -0.880954981 + 0.233333007 -0.422659159 0.746008277 0.514617205 -0.90365994 + 0.433333009 -0.5027861 0.728416264 0.465420127 -0.940989971 + 0.5 -0.512861133 0.725422144 0.459060103 -0.946554065 + 0.56666702 -0.501441061 0.727659106 0.468048096 -0.939142048 + 0.633333027 -0.473684072 0.732650042 0.488720059 -0.922418058 + 0.733332992 -0.428974241 0.73900938 0.519467235 -0.898195982 + 0.93333298 -0.334357917 0.748713791 0.572391868 -0.867798924 + 1 -0.319717914 0.750500739 0.578384876 -0.861909986 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 1 0 0 -0.936971009 + 0.0666666999 1 0 0 -0.953037977 + 0.133332998 1 0 0 -0.997309983 + 0.233333007 1 0 0 -1.06087995 + 0.433333009 1 0 0 -1.12056994 + 0.5 1 0 0 -1.12698996 + 0.56666702 1 0 0 -1.11223996 + 0.633333027 1 0 0 -1.07832003 + 0.733332992 1 0 0 -1.02528 + 0.93333298 1 0 0 -0.948244989 + 1 1 0 0 -0.936701 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.772196233 -0.633394182 0.0502476133 -0.867636979 + 0.0666666999 -0.774773121 -0.630340099 0.0489696078 -0.872590005 + 0.133332998 -0.782097697 -0.621265769 0.0484979823 -0.884805977 + 0.233333007 -0.791696012 -0.609036028 0.0478799045 -0.901646912 + 0.433333009 -0.799006343 -0.59777832 0.065191932 -0.896802008 + 0.5 -0.799674988 -0.596571982 0.0679837018 -0.894935012 + 0.56666702 -0.797867239 -0.599072158 0.0672341138 -0.891691923 + 0.633333027 -0.793499112 -0.605027139 0.0655847043 -0.884691954 + 0.733332992 -0.785988152 -0.61483413 0.064820312 -0.873307049 + 0.93333298 -0.774097025 -0.631128967 0.0494978949 -0.867573977 + 1 -0.772162795 -0.633426905 0.0503484905 -0.867579997 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.261448085 -0.830785275 -0.491366178 -0.098124899 + 0.266667008 0.262634993 -0.814247012 -0.517710984 -0.0992916971 + 0.5 0.263529032 -0.799849093 -0.539253056 -0.100308001 + 0.733332992 0.262637913 -0.814246833 -0.517709792 -0.0992918089 + 1 0.261453956 -0.83078593 -0.491361946 -0.0981258973 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.362117082 0.648726165 0.669347167 -0.083184503 + 0.266667008 -0.189176992 0.673089921 0.714955926 -0.0769551992 + 0.5 0.011582599 0.662374973 0.749082923 -0.0789514035 + 0.733332992 0.437912881 0.603780866 0.666093826 -0.089696005 + 1 0.362117052 0.648725092 0.66934818 -0.0831847042 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.0817663968 0.977887988 0.192481995 -0.0516389012 + 0.266667008 -0.850058973 0.519713938 0.0854234919 -0.0868052989 + 0.5 -0.59340781 0.791877747 0.14421095 -0.0606619045 + 0.733332992 -0.0817665979 0.977887988 0.19248198 -0.051638905 + 1 -0.0817667916 0.977887988 0.19248198 -0.051638905 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.703612983 -0.708854079 0.0495444015 -0.114386991 + 0.266667008 0.703612983 -0.708854079 0.0495443046 -0.114386991 + 0.5 0.703612983 -0.708854079 0.0495443046 -0.114386991 + 0.733332992 0.703612983 -0.708854079 0.0495443046 -0.114386991 + 1 0.703612983 -0.708854079 0.0495444015 -0.114386991 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.034010984 0.944597602 0.326463848 -0.286794007 + 0.5 -0.328490019 0.87917608 0.345172018 -0.29105401 + 1 -0.0340117924 0.94459784 0.326462954 -0.286794007 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.948533773 -0.256987929 -0.185042962 -0.469428003 + 0.5 0.9779948 -0.134075969 -0.159842968 -0.62944001 + 1 0.948533773 -0.256987929 -0.185042962 -0.469428003 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.305984944 -0.408574969 -0.859906793 -1.03602004 + 0.266667008 -0.305236906 -0.408047885 -0.86042279 -1.03728998 + 0.5 -0.30460006 -0.407586128 -0.860867202 -1.03834999 + 0.733332992 -0.305236906 -0.408047885 -0.86042279 -1.03728998 + 1 -0.30598402 -0.408575058 -0.859907091 -1.03602004 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.655604839 0.754951715 -0.0151719954 -0.452271014 + 0.266667008 0.605882227 0.795044243 -0.0284844097 -0.455337018 + 0.5 0.654431939 0.756071985 -0.0086057093 -0.452154011 + 0.733332992 0.698737681 0.715364754 0.00434845826 -0.451002002 + 1 0.655604839 0.754951715 -0.0151719954 -0.452271014 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.529151142 0.423199087 -0.735460162 -0.0794306993 + 0.266667008 -0.129537985 0.838476896 -0.529316962 -0.111872986 + 0.5 -0.0326187946 0.810148895 -0.585315943 -0.101047002 + 0.733332992 0.711085141 0.164120033 -0.683683097 -0.0850434899 + 1 0.529154062 0.423199028 -0.735458076 -0.0794304013 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.567517817 0.272375911 0.777003765 -0.541176975 + 1 -0.567517817 0.272375911 0.777003765 -0.541176975 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.102447025 0.000684559171 -0.994738221 -0.435236007 + 0.266667008 0.0964914635 -0.0115712956 -0.995266557 -0.421261996 + 0.5 -0.11477302 0.00840919092 -0.993356168 -0.395920992 + 0.733332992 0.0886672288 0.0158350058 -0.99593544 -0.421225011 + 1 0.102447025 0.000684311148 -0.994738221 -0.435236007 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.148909926 -0.975029528 -0.164751947 -0.224198982 + 0.266667008 0.237404987 -0.951670885 -0.194836974 -0.193981007 + 0.5 0.63541007 -0.742539048 -0.211872026 -0.318195969 + 0.733332992 0.647647858 -0.728507876 -0.223222956 -0.24950999 + 1 0.148909926 -0.975029528 -0.164751947 -0.224198982 +endnode +doneanim plreadyl a_dfa2_coat + +#MAXANIM ASCII +newanim 2hslashl a_dfa2_coat + length 1 + transtime 0.300000012 + animroot rootdummy + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 10 + 0 0.000247801014 -0.0325523987 1.02807999 + 0.0666666999 0.000247802003 -0.0419735983 1.02868998 + 0.233333007 0.000247804011 -0.164447993 1.03654003 + 0.333332986 0.000247802993 -0.140457004 1.02807999 + 0.5 0.000247601012 0.193946004 0.919631004 + 0.600000024 0.000247560994 0.249243006 0.893495977 + 0.666666985 0.000247537013 0.217465997 0.921006024 + 0.733332992 0.000247513992 0.170417994 0.946392 + 0.93333298 0.000247435994 -0.0090576699 1.01880002 + 1 0.000247424003 -0.0325531997 1.02807999 + orientationkey 5 + 0 0.402040064 0.466024071 0.788153112 -0.466549993 + 0.233333007 0.401904047 0.466045082 0.788210094 -0.466554999 + 0.333332986 0.401904047 0.466045082 0.788210094 -0.466554999 + 0.93333298 0.908255994 0.0908264965 0.408437997 -0.23996 + 1 0.933085799 0.0489377938 0.356308907 -0.235166982 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.524354994 -0.380479038 0.761766076 -0.52046603 + 0.233333007 0.358978033 -0.179396018 0.915943146 -0.919869006 + 0.333332986 0.419258922 -0.252188951 0.872136831 -0.720413983 + 0.5 0.444653273 -0.308346152 -0.840955496 -0.851495028 + 0.600000024 0.320982993 -0.0936632082 -0.942442119 -1.11233997 + 0.666666985 0.298395872 -0.0837732628 -0.950758636 -1.01091003 + 0.93333298 0.746215105 0.0497646108 -0.663842201 -0.280732989 + 1 0.877816021 0.0970268995 -0.469067991 -0.231120005 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.469422072 -0.324719042 0.821097136 -2.11272001 + 0.0666666999 -0.518030286 -0.280306131 0.80812937 -2.10351992 + 0.333332986 -0.695834696 -0.257977873 0.670269728 -2.38780999 + 0.433333009 -0.766022027 -0.161981001 0.622071028 -2.49909997 + 0.5 -0.88671279 0.0155867962 0.462057859 -1.76899004 + 0.600000024 -0.389478028 -0.297797024 0.871563971 -0.632875919 + 0.666666985 0.531481862 -0.287069947 0.79694283 -0.96441102 + 0.733332992 0.519286036 -0.0269636028 0.854175031 -1.04729998 + 0.93333298 -0.608188927 -0.0497622006 0.792230964 -1.03145993 + 1 -0.526653826 -0.0891921744 0.845387757 -1.40818989 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 1 0 0 -5.41000986 + 0.0666666999 1 0 0 -5.32983017 + 0.333332986 1 -2.13457994e-007 1.40384003e-007 -5.42496014 + 0.433333009 1 6.78060997e-006 4.82399037e-006 -6.2568202 + 0.5 -1 0 0 -0.904540062 + 0.600000024 -1 0 0 -2.17522001 + 0.666666985 -1 0 0 -2.23257995 + 0.733332992 -1 0 0 -2.07904005 + 0.93333298 -1 0 0 -0.599310994 + 1 -1 1.42355006e-007 5.03041008e-007 -0.398158044 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.345129967 0.0551382974 0.936933875 -5.42122984 + 0.0666666999 -0.0608510748 0.186342925 0.980598509 -5.39020014 + 0.333332986 -0.780561388 -0.0948798582 0.617836356 -5.19566011 + 0.433333009 -0.469475806 -0.50676769 0.723034561 -5.0430398 + 0.5 0.718966782 0.257508904 -0.645581841 -2.06309009 + 0.600000024 0.523183048 -0.308864057 -0.794281125 -1.88837993 + 0.666666985 0.071154885 -0.497638851 -0.864460826 -1.30826998 + 0.733332992 -0.193223983 -0.87341398 -0.447003961 -1.27944005 + 0.93333298 -0.294850856 -0.382451802 -0.875667512 -0.502664983 + 1 -0.242239028 -0.492549062 -0.835892141 -0.950064003 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.187018961 0.719839811 -0.668471813 -0.465018988 + 0.0666666999 -0.484833956 0.850854933 -0.202439979 -0.457392007 + 0.233333007 -0.466735929 0.798624873 0.37994194 -0.957755029 + 0.333332986 -0.483473182 0.834355354 0.264773101 -0.99416703 + 0.433333009 -0.613835275 0.787269413 -0.0584220253 -1.42528999 + 0.5 -0.742481291 0.619440258 -0.254981101 -1.75312996 + 0.600000024 -0.674142182 0.246698052 -0.696184158 -2.23049998 + 0.666666985 -0.596230984 0.182055011 -0.781898081 -2.30063009 + 0.733332992 -0.536000192 0.189293057 -0.822722256 -2.09336996 + 0.93333298 -0.57405889 0.17558296 -0.799766839 -1.32235003 + 1 -0.569581032 0.147484019 -0.808595061 -1.14163995 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -1 0 0 -2.08576989 + 0.0666666999 -1 0 0 -2.11557007 + 0.233333007 -1 0 0 -2.19020009 + 0.333332986 -1 0 0 -2.1094799 + 0.433333009 -1 0 0 -1.47231996 + 0.5 -1 0 0 -1.01828003 + 0.600000024 1 -5.84723068e-007 0 -5.86585999 + 0.666666985 1 -1.61860996e-007 -1.56501997e-007 -5.74742985 + 0.733332992 1 -2.72729011e-007 0 -5.24336004 + 0.93333298 -1 -2.11322003e-007 0 -0.857698023 + 1 -1 0 0 -0.986624002 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.586993873 -0.452884912 0.671068907 -0.321235001 + 0.0666666999 0.459753901 -0.500056863 0.73387289 -0.718034983 + 0.233333007 -0.0425785147 0.344584107 -0.937789321 -5.13337994 + 0.333332986 -0.136999965 -0.100449979 -0.985464752 -4.78017998 + 0.433333009 0.32820189 0.0324347876 0.94405061 -1.95887005 + 0.5 -0.295540899 0.352823943 -0.887789845 -3.83322001 + 0.600000024 -0.22660087 0.660769582 -0.715566635 -4.00072002 + 0.666666985 -0.0870574936 0.691348016 -0.717257917 -4.3303299 + 0.733332992 -0.210517049 0.683022141 -0.699402094 -4.85216999 + 0.93333298 0.282373101 0.563549161 0.776323259 -0.899108946 + 1 0.358043104 0.758561194 0.544417143 -0.988041997 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.0989807174 -0.870788097 0.481592059 -0.374543011 + 0.233333007 -0.0859787092 -0.865066111 0.494235039 -0.537873983 + 0.333332986 -0.0799640939 -0.912350953 0.401523978 -0.549588978 + 0.5 0.383810908 -0.257649928 -0.886738777 -0.372806013 + 0.600000024 0.511486053 -0.172256008 -0.841849089 -0.302821994 + 0.666666985 0.405510813 0.0459502786 -0.912934601 -0.220444009 + 0.733332992 0.152406961 0.261762917 -0.953022718 -0.158143997 + 0.93333298 -0.594086945 0.706630945 0.384360969 -0.0732147023 + 1 -0.575147748 0.575681806 0.581201792 -0.092391707 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -0.87361604 -0.267624021 -0.406414032 -1.04312015 + 0.0666666999 -0.864711106 -0.237161025 -0.442752033 -1.02811003 + 0.166666999 -0.852556169 -0.199683055 -0.482985109 -1.02793002 + 0.233333007 -0.835914791 -0.174111962 -0.520510793 -1.02103996 + 0.333332986 -0.856260359 -0.109438047 -0.504818261 -1.01159 + 0.400000006 -0.951140583 -0.118304946 -0.28519389 -1.1624099 + 0.433333009 -0.972593844 -0.124138989 -0.196597964 -1.22792995 + 0.5 -0.987789869 -0.153104991 -0.0288093947 -1.33614004 + 0.600000024 -0.981234848 -0.190684974 -0.0285897925 -1.32325006 + 0.666666985 -0.968716085 -0.247751027 -0.0144431014 -1.28804004 + 0.733332992 -0.962125778 -0.272464931 -0.00876633823 -1.25089002 + 0.833333015 -0.965793967 -0.256670982 -0.0369058959 -1.23434997 + 0.93333298 -0.965955317 -0.249551058 -0.0682250112 -1.18624997 + 1 -0.965715408 -0.247739106 -0.0775825307 -1.16652 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.999361634 -0.0258826893 0.0246257894 -1.02075005 + 0.0666666999 0.999335349 -0.0266887099 0.0248315092 -0.998458087 + 0.166666999 0.999127686 -0.032438688 0.0262984931 -0.862317026 + 0.233333007 0.99886483 -0.038626194 0.0278762951 -0.750222981 + 0.333332986 0.998985469 -0.0359052159 0.0271826126 -0.795913041 + 0.400000006 0.999449253 -0.0230258051 0.0238967054 -1.10757005 + 0.433333009 0.999541283 -0.019659305 0.023037307 -1.22829998 + 0.5 0.999640465 -0.0154006071 0.0219498109 -1.41746998 + 0.600000024 0.999680996 -0.013367299 0.0214303974 -1.52566004 + 0.666666985 0.999661207 -0.0143854031 0.021690404 -1.46987998 + 0.733332992 0.999632597 -0.015771592 0.022044491 -1.39909005 + 0.833333015 0.999541283 -0.0196591057 0.0230372064 -1.22831011 + 0.93333298 0.999352455 -0.0261665154 0.0246983115 -1.01279998 + 1 0.999267459 -0.0286792126 0.0253395103 -0.947066009 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -0.368132055 0.674200118 -0.6402601 -0.313552976 + 0.0666666999 -0.328693032 0.656787038 -0.678669035 -0.314945996 + 0.166666999 0.13126497 0.625172853 -0.769368887 -0.312367022 + 0.233333007 0.420417905 0.536811888 -0.731492817 -0.343847007 + 0.333332986 0.303109944 0.549020827 -0.778909802 -0.324458987 + 0.400000006 -0.490640253 0.656674325 -0.572757304 -0.268067986 + 0.433333009 -0.757941186 0.573983192 -0.3099491 -0.311173975 + 0.5 -0.901785076 0.430519015 0.0379091017 -0.483485013 + 0.600000024 -0.928500056 0.369492054 0.0369230025 -0.622341931 + 0.666666985 -0.907642722 0.417473823 0.0435926802 -0.565799057 + 0.733332992 -0.87601012 0.481347084 0.0301866028 -0.484041989 + 0.833333015 -0.734511256 0.67557025 -0.0640164241 -0.312328994 + 0.93333298 -0.131499976 0.953675807 -0.270573944 -0.201602995 + 1 0.144605041 0.93631041 -0.320019126 -0.200185001 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.452459782 0.865595639 0.214532897 -0.660658002 + 0.0666666999 -0.462856174 0.866597295 0.186476067 -0.721453011 + 0.166666999 -0.591906369 0.803034365 0.0691566393 -0.794713914 + 0.233333007 -0.651189029 0.757786989 0.0413731001 -0.861304998 + 0.333332986 -0.591794074 0.805104077 0.0398397036 -0.895677984 + 0.366667002 -0.54428488 0.83243084 0.103984974 -0.796227992 + 0.400000006 -0.474729836 0.852655649 0.218196929 -0.689643979 + 0.433333009 -0.359550029 0.845021069 0.395807028 -0.586813927 + 0.466666996 -0.151843935 0.743623674 0.651127696 -0.532006979 + 0.5 0.13700597 0.495994866 0.857448816 -0.570219994 + 0.600000024 0.324635118 0.460036159 0.826425314 -0.574115992 + 0.666666985 0.396356076 0.377474099 0.836908102 -0.581417024 + 0.733332992 0.332953095 0.383342087 0.861505151 -0.656397998 + 0.833333015 0.074335292 0.465214998 0.882071018 -0.615763009 + 0.93333298 -0.164347991 0.495274961 0.853048921 -0.59570998 + 1 -0.217372999 0.49664703 0.840292037 -0.604432046 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 1 0 -2.9156601e-007 -0.863502979 + 0.0666666999 1 1.93889008e-007 0 -0.885648012 + 0.166666999 1 0 0 -0.996627927 + 0.233333007 1 0 0 -1.05179 + 0.333332986 1 0 0 -1.05298007 + 0.366667002 1 0 -2.59154007e-007 -1.02717996 + 0.400000006 1 0 0 -0.970610917 + 0.433333009 1 0 0 -0.87676698 + 0.466666996 1 0 0 -0.734098077 + 0.5 1 -2.31916005e-007 -2.29213001e-007 -0.517772973 + 0.600000024 1 0 -2.58466002e-007 -0.372175008 + 0.666666985 1 -4.71967041e-007 -6.30713032e-007 -0.341325998 + 0.733332992 1 -2.76323988e-007 -4.17549018e-007 -0.415877014 + 0.833333015 1 0 -1.38385019e-007 -0.615689993 + 0.93333298 1 0 0 -0.729158998 + 1 1 0 0 -0.749297976 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.735934138 -0.670321167 -0.0952390134 -0.767848074 + 0.0666666999 -0.726169765 -0.673161864 -0.139751956 -0.767558992 + 0.166666999 -0.752775013 -0.646354973 -0.124719992 -0.729273021 + 0.233333007 -0.76144594 -0.627925932 -0.160962999 -0.691308975 + 0.333332986 -0.753056884 -0.646479011 -0.122352995 -0.734425962 + 0.366667002 -0.764653921 -0.644183874 0.0182095971 -0.824186027 + 0.400000006 -0.766304016 -0.631631076 0.117560007 -0.905712008 + 0.433333009 -0.76249516 -0.617071092 0.194485039 -0.969354987 + 0.466666996 -0.75353092 -0.612605929 0.238547966 -0.998255014 + 0.5 -0.730255842 -0.629705846 0.264946967 -0.981719911 + 0.600000024 -0.702188253 -0.656655192 0.275201082 -0.979002059 + 0.666666985 -0.695616007 -0.670874 0.256994992 -0.916085005 + 0.733332992 -0.704744816 -0.696579874 0.13457799 -0.87349093 + 0.833333015 -0.751269102 -0.653548002 0.0920310989 -0.844566047 + 0.93333298 -0.780052066 -0.618529975 0.0945483074 -0.779826045 + 1 -0.785618246 -0.612668097 0.0862657279 -0.756937981 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0 0 0 0 + 0.100000001 0.243489996 -0.141521007 0.959523022 -0.373999 + 0.233333007 0.359744012 -0.192241028 0.913032115 -0.909662008 + 0.333332986 0.404505163 -0.268974096 0.874087214 -0.749360979 + 0.5 0.443126917 -0.323096931 -0.836209834 -0.836471021 + 0.600000024 0.30795595 -0.0989609957 -0.946239829 -1.09125996 + 0.733332992 0.30795595 -0.0989609882 -0.946239829 -0.727505028 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.583700061 -0.7941401 -0.169220999 -0.193692997 + 0.100000001 0.467075109 -0.848224163 -0.249713063 -0.351485968 + 0.233333007 0.655187845 -0.729501784 -0.196356952 -0.649960995 + 0.366667002 0.235896945 -0.949986696 -0.20464094 -0.265384972 + 0.400000006 0.305994987 -0.634449005 0.709817946 -0.0975423902 + 0.433333009 0.834350049 0.294524997 0.465956032 -0.159532011 + 0.5 0.807191312 -0.0798719302 0.584861219 -0.270965993 + 0.600000024 0.839672863 0.0248883963 0.542521954 -0.208718002 + 0.733332992 0.868609726 0.302922904 0.392115891 -0.134960994 + 1 0.00719769998 0.855762959 -0.51731801 -0.130804986 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.864539683 -0.346334875 0.364174873 -0.156747997 + 0.100000001 0.151300922 0.778517663 0.60911268 -0.0500307009 + 0.233333007 -0.707113147 0.706738114 -0.0226319041 -0.23070702 + 0.333332986 -0.573933721 0.816186666 0.066628769 -0.151311979 + 0.433333009 -0.95089066 0.169231936 -0.259166896 -0.114665002 + 0.5 0.97370857 0.0268789884 0.226205915 -0.217595994 + 0.600000024 0.504369259 -0.861360431 -0.0605797246 -0.214721009 + 0.733332992 0.876501977 -0.120054007 -0.466188043 -0.313590974 + 1 -0.070392102 -0.946045995 0.316294014 -0.142571002 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.366371036 0.234474048 0.90044111 -0.158409998 + 0.100000001 -0.152238965 0.552646935 0.81939286 -0.188602015 + 0.233333007 0.0406435877 0.750514686 0.659602761 -0.258049995 + 0.333332986 0.343947023 0.601640999 0.720921993 -0.262456983 + 0.366667002 0.714186192 -0.464282125 0.523813128 -0.319267988 + 0.400000006 0.297721952 -0.789568901 0.536602855 -0.420863003 + 0.433333009 -0.365983158 -0.878246367 0.307798147 -0.420953959 + 0.5 0.65239805 -0.719994068 0.236612052 -0.411709964 + 0.600000024 0.661933959 -0.685625911 0.302919984 -0.41920796 + 0.733332992 0.90821439 0.309018135 -0.282231182 -0.67405498 + 1 -0.158853993 0.0481342077 0.986128032 -0.229824021 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.193270966 -0.962928891 0.188186973 -0.220416993 + 0.100000001 0.205521986 -0.940554857 -0.270401984 -0.198123991 + 0.233333007 0.497387797 -0.573774695 -0.650682688 -0.376219004 + 0.433333009 0.373005003 0.884401023 0.280539006 -0.243191004 + 0.5 0.60869503 0.750542045 0.257249027 -0.294747978 + 0.600000024 0.573747873 0.794407785 0.199322939 -0.226807013 + 0.733332992 0.456919044 0.888949037 0.0315372013 -0.141039014 + 1 -0.648746133 0.15065603 -0.745943129 -0.103040002 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.618825376 0.783424377 -0.0574580282 -0.273734987 + 0.100000001 0.386121005 0.922424972 -0.00653799018 -0.269446999 + 0.233333007 -0.849646747 0.500834823 0.165120959 -0.12061701 + 0.333332986 -0.694295943 0.585021853 0.419168949 -0.0357482955 + 0.433333009 0.0838561356 0.975608468 0.202870086 -0.0512126014 + 0.5 0.931395173 -0.166965008 0.323459029 -0.194032997 + 0.600000024 0.780240536 -0.109687932 0.615786672 -0.410445988 + 0.733332992 0.938969374 0.334303111 0.0811044276 -0.463946015 + 0.866666973 0.8167032 0.573999047 0.0593381077 -0.502014995 + 1 0.489639819 0.871473789 -0.02804159 -0.346098989 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.799693227 -0.245106071 -0.548100173 -0.328159958 + 0.100000001 0.655670941 -0.00974354893 -0.754983902 -0.188265994 + 0.233333007 0.178533047 0.922643244 -0.341841102 -0.357870996 + 0.333332986 0.728557289 0.508317173 -0.459149182 -0.39041099 + 0.366667002 0.982401371 0.0522333197 -0.179330066 -0.438746989 + 0.400000006 0.930801451 -0.200626105 0.305545151 -0.48654896 + 0.433333009 0.843117714 0.116628945 0.524928808 -0.588326991 + 0.5 0.448489189 -0.0520160273 0.892273366 -0.656692922 + 0.600000024 0.738813102 0.0515075065 0.671939135 -0.736327946 + 0.733332992 0.818904936 0.572137952 -0.0453084968 -0.652858019 + 1 0.608700573 -0.351163775 -0.71145457 -0.61234194 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.236218065 -0.787068248 -0.569846094 -1.13341999 + 0.100000001 -0.502774 -0.661587 -0.556345999 -1.33086002 + 0.233333007 -0.317646027 -0.723803043 -0.612544 -1.26503992 + 0.333332986 -0.317644894 -0.723803759 -0.612543762 -1.26504004 + 0.366667002 -0.452512145 -0.623331249 -0.637723267 -1.24532008 + 0.433333009 -0.37327987 -0.441568822 -0.815891623 -0.810113966 + 0.5 -0.196213007 -0.427507967 -0.882461011 -0.67297101 + 0.600000024 -0.213232979 -0.334757984 -0.917860985 -0.803291023 + 0.733332992 -0.227126017 -0.245414019 -0.942436039 -0.984980047 + 1 -0.241539955 -0.132009983 -0.961369753 -1.36176002 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.443129987 0.889569998 -0.110909998 -0.542846978 + 0.100000001 0.913903415 0.355650187 0.195687085 -0.712881982 + 0.166666999 0.824065208 0.566291153 0.0151964035 -0.332222015 + 0.200000003 0.728454113 0.681726098 -0.0678537115 -0.279210985 + 0.233333007 0.585551918 0.798866868 -0.137624979 -0.266128004 + 0.333332986 0.399920076 0.881323218 -0.251661062 -0.32101199 + 0.366667002 0.169870034 0.913286209 -0.370206058 -0.280520022 + 0.433333009 -0.354245096 0.802735209 -0.479715139 -0.465981007 + 0.5 -0.0130232051 0.931005359 -0.364773124 -0.573870003 + 0.600000024 0.0414271057 0.938735306 -0.342140079 -0.486807019 + 0.733332992 0.0359622873 0.690267742 0.722659767 -0.368990004 + 1 0.658810973 0.752038062 0.0201721005 -0.195084006 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.845197201 0.484779119 0.225013047 -0.197714016 + 0.100000001 0.895211875 -0.0263678972 0.444859952 -0.238425002 + 0.233333007 0.758120298 -0.394615173 0.519165158 -0.362102002 + 0.333332986 0.606226802 0.713704765 0.350876868 -0.220942006 + 0.366667002 0.611827374 0.68252641 0.399781227 -0.222424001 + 0.400000006 -0.6704126 0.108561926 0.734003603 -0.289636999 + 0.433333009 -0.915385783 0.382422924 0.125783965 -0.44571197 + 0.5 -0.890382051 0.441706032 0.110071011 -0.451618969 + 0.600000024 -0.82490027 0.483291119 0.293205082 -0.347692013 + 0.733332992 -0.0236066058 -0.317575127 0.947939217 -0.907149017 + 1 0.4968009 0.110735975 0.860770822 -0.354492009 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.667456925 -0.125579983 0.733982921 -0.195279002 + 0.100000001 -0.716216981 0.411912978 0.563347995 -0.31882 + 0.233333007 -0.674279034 0.370561033 0.638774097 -0.254494011 + 0.333332986 -0.674279034 0.370561033 0.638774097 -0.254494011 + 0.433333009 -0.275871903 0.767213702 0.579031825 -0.629534006 + 0.5 -0.349302083 0.760187149 0.547817111 -0.706045985 + 0.600000024 -0.173625961 0.790362775 0.587520838 -0.564494014 + 0.733332992 -0.388917089 0.742069185 0.545964122 -0.542391002 + 1 -0.552580893 0.65008688 0.521575868 -0.346971005 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0 0 0 0 + 0.100000001 0.0288371909 -0.997722685 0.0609743819 -0.0616580993 + 0.233333007 -0.740174949 -0.607430875 0.288389951 -0.0678623989 + 0.333332986 0.733145297 -0.328445107 0.595501244 -0.225844026 + 0.433333009 -0.338553071 -0.703030169 0.625404179 -0.464474022 + 0.5 0.137932062 -0.926166356 0.350985169 -0.0672985017 + 0.600000024 -0.528377056 -0.848303199 -0.0346316062 -0.0943162963 + 0.733332992 -0.911319256 0.192249045 0.364057094 -0.178823993 + 1 0 0 0 0 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.243895009 -0.576484978 -0.779859126 -0.374590009 + 0.100000001 0.174086034 -0.71711117 -0.674867153 -0.412292033 + 0.233333007 -0.678128064 -0.296626031 -0.672424972 -0.335968971 + 0.333332986 -0.00684834272 0.581552207 0.813480258 -0.294800997 + 0.366667002 0.868612707 0.409633845 0.278768897 -0.29537499 + 0.400000006 0.771802783 0.436613888 0.462264866 -0.296269 + 0.433333009 0.93454206 0.337554008 -0.112643003 -0.315133005 + 0.5 0.517725229 0.855473459 -0.0112115061 -0.42644003 + 0.600000024 0.884796381 -0.22213009 -0.409626186 -0.559949934 + 0.733332992 -0.680961072 -0.50516808 -0.530186057 -0.412034988 + 1 0.301153958 -0.559878945 -0.771907926 -0.376904994 +endnode +doneanim 2hslashl a_dfa2_coat + +#MAXANIM ASCII +newanim 2hslashr a_dfa2_coat + length 1 + transtime 0.300000012 + animroot rootdummy + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 16 + 0 0.000247424003 -0.0325531997 1.02807999 + 0.0666666999 -0.00540535012 -0.0396981984 1.02807999 + 0.133332998 -0.0122726997 -0.0652918965 1.02806997 + 0.200000003 -0.0180658996 -0.0871108025 1.02806997 + 0.266667008 -0.0238518994 -0.102110997 1.02806997 + 0.333332986 -0.0220711995 -0.0478078015 1.01555002 + 0.400000006 -0.0165804997 0.068978399 0.990509987 + 0.466666996 0.0198350009 0.198577002 0.941488028 + 0.533333004 0.0801310986 0.27987799 0.917020977 + 0.600000024 0.109596997 0.265646994 0.91703701 + 0.666666985 0.112962 0.25229001 0.917210996 + 0.733332992 0.0883164033 0.202245995 0.928129971 + 0.800000012 0.0597614013 0.143546 0.953119993 + 0.866666973 0.0378045999 0.0848463029 0.978107989 + 0.899999976 0.0283895005 0.0554968007 0.990602016 + 1 0.000247801014 -0.0325523987 1.02807999 + orientationkey 16 + 0 0.933085799 0.0489376895 0.356308907 -0.235166982 + 0.0666666999 0.890608907 0.0443541966 -0.452601939 -0.202542007 + 0.133332998 0.0736189038 0.000821145077 -0.997286081 -0.653355002 + 0.200000003 -0.0474503003 -0.0053954199 -0.998859048 -1.03620005 + 0.266667008 -0.0513491035 -0.0175806005 -0.998526037 -1.01187992 + 0.333332986 0.0471975096 -0.0870391205 -0.995086193 -0.582704008 + 0.400000006 0.811162174 -0.565140128 0.150441036 -0.162607998 + 0.466666996 0.334747076 -0.186740041 0.92361927 -0.682560086 + 0.533333004 0.313752979 -0.154229984 0.936894953 -1.08007002 + 0.600000024 0.303563863 -0.114340946 0.945925534 -1.29252994 + 0.666666985 0.302094907 -0.114778958 0.946342707 -1.29962993 + 0.733332992 0.301963001 -0.085874401 0.949443996 -1.21940994 + 0.800000012 0.302339971 -0.0154609969 0.953074753 -1.05480003 + 0.866666973 0.300530046 0.0777479112 0.95059818 -0.895928979 + 0.899999976 0.319792151 0.138344064 0.937333405 -0.779834986 + 1 0.401904047 0.466045082 0.788210094 -0.466554999 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.877816021 0.0970268101 -0.469068021 -0.231120005 + 0.0666666999 0.673659921 0.114830002 -0.730066001 -0.255921006 + 0.166666999 -0.0457952991 0.0510413013 -0.997646034 -0.398697972 + 0.233333007 -0.196637005 0.0335270986 -0.979902983 -0.392948002 + 0.300000012 -0.192783922 0.356031895 -0.914371729 -0.506720006 + 0.366667002 -0.196901068 0.480430186 -0.854644239 -0.510312974 + 0.5 -0.000632759184 0.0580365136 -0.998314261 -0.578091979 + 0.600000024 0.337486953 -0.58462882 0.737774789 -0.233605981 + 0.666666985 -0.222528994 -0.713585019 0.664287031 -0.484396964 + 0.733332992 -0.311398953 -0.562754869 0.765726864 -0.577386975 + 0.800000012 -0.194222033 -0.54283607 0.817072093 -0.550484002 + 0.866666973 0.0869262218 -0.561186194 0.823112309 -0.424374998 + 1 0.524354994 -0.380479038 0.761766076 -0.52046603 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.526653826 -0.0891922787 0.845387757 -1.40818989 + 0.0666666999 -0.668146014 -0.0138654001 0.743901014 -1.16758001 + 0.166666999 -0.502688885 -0.472270876 0.724060833 -0.951479018 + 0.233333007 -0.37046507 -0.632659137 0.680072129 -0.901844919 + 0.300000012 -0.335924089 -0.729378164 0.595955133 -1.00077999 + 0.366667002 -0.469585061 -0.812573075 0.345275044 -1.04719996 + 0.433333009 -0.657431185 -0.627429187 0.417273104 -1.14332998 + 0.5 -0.678762794 -0.408734888 0.610095799 -1.35579002 + 0.600000024 -0.524616122 -0.850890219 -0.0276354086 -0.825129986 + 0.666666985 -0.428518027 -0.895415008 -0.120848 -0.652846932 + 0.899999976 -0.630608022 -0.0212685 0.775810003 -2.07796001 + 1 -0.469422072 -0.324719042 0.821097136 -2.11272001 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -1 5.54761982e-007 1.25100001e-007 -0.398158044 + 0.0666666999 -1 0 3.83365034e-007 -0.360345989 + 0.166666999 -1 2.73045998e-007 0 -0.98960501 + 0.233333007 -0.993138313 0.0916098282 0.072690919 -1.28075004 + 0.300000012 -0.994952381 0.0861377269 0.0514786132 -1.50379002 + 0.366667002 -0.995033562 0.0902350694 0.0420213826 -1.38826001 + 0.433333009 -1 0 0 -1.22957003 + 0.5 -1 0 -1.60921019e-007 -1.13564003 + 0.600000024 -0.921755552 -0.186023891 0.340237826 -1.17481017 + 0.666666985 -0.925604999 -0.152934998 0.346217036 -1.53208983 + 0.899999976 1 -8.03250032e-007 1.07530002e-006 -6.11113977 + 1 1 0 2.31176998e-007 -5.41000986 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.242239028 -0.492549062 -0.835892141 -0.950064003 + 0.0666666999 -0.726048946 -0.197424948 -0.658692896 -0.804307997 + 0.166666999 -0.93424499 -0.217531979 -0.282606006 -1.38054001 + 0.233333007 -0.92686224 -0.3505041 -0.134437025 -1.50277996 + 0.300000012 -0.894255877 -0.425650954 -0.138302982 -1.43912995 + 0.366667002 -0.973958433 -0.198314071 -0.109893046 -1.35390997 + 0.433333009 -0.709434092 -0.311892062 -0.632002115 -1.71753991 + 0.5 0.0786069781 -0.301816911 0.950119734 -3.87067008 + 0.600000024 0.514103174 0.172763065 0.840149283 -6.13549995 + 0.899999976 0.395589054 -0.238975048 0.886792123 -5.43591022 + 1 0.345129967 0.0551383942 0.936933875 -5.42122984 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.569581032 0.147484019 -0.808595061 -1.14163995 + 0.0666666999 -0.517162085 0.257454008 -0.816248 -1.41067004 + 0.166666999 -0.535492182 0.212579072 -0.817348301 -1.92665994 + 0.233333007 -0.543058217 0.143575072 -0.827329397 -1.93534994 + 0.300000012 -0.572014928 0.244542003 -0.782941937 -2.09826994 + 0.366667002 -0.633399844 0.224425942 -0.740565777 -2.34307003 + 0.433333009 -0.724900126 0.0642281175 -0.685853183 -2.54691005 + 0.5 -0.529041231 0.52434516 -0.667216301 -2.51942992 + 0.600000024 -0.851382792 0.443541884 -0.280031949 -1.39347994 + 0.633333027 -0.822994232 0.546398103 -0.155337051 -1.1606499 + 0.666666985 -0.808697283 0.585722208 -0.0542053133 -1.12472999 + 0.699999988 -0.83309716 0.549802125 0.0605530143 -1.04788005 + 0.733332992 -0.83365792 0.53806293 0.124509998 -1.00388002 + 0.766667008 -0.798357785 0.539497793 0.267519921 -0.943246961 + 0.866666973 -0.662123024 0.744679987 0.0839333981 -0.586314976 + 0.899999976 -0.592585027 0.798735023 -0.104236998 -0.523581028 + 1 -0.187018961 0.719839811 -0.668471813 -0.465018988 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -1 0 -2.73453992e-007 -0.986624002 + 0.0666666999 -1 0 0 -0.902513027 + 0.166666999 1 0 0 -5.41330004 + 0.233333007 1 0 0 -5.4217 + 0.300000012 1 0 0 -5.25562 + 0.366667002 1 4.12226996e-007 0 -5.60901022 + 0.433333009 1 -3.91026988e-005 1.11990003e-005 -6.2750802 + 0.5 1 1.14315003e-006 -9.14689053e-007 -6.01058006 + 0.600000024 -1 1.2305199e-007 -1.75416986e-007 -0.841865063 + 0.633333027 -1 0 0 -1.13135004 + 0.666666985 -1 0 3.81175994e-007 -1.26888001 + 0.699999988 -1 0 -2.38592008e-007 -1.30665004 + 0.733332992 -1 0 0 -1.34929001 + 0.766667008 -1 0 0 -1.50531006 + 0.866666973 -1 0 0 -1.73750997 + 0.899999976 -1 0 0 -1.80839002 + 1 -1 0 0 -2.08576989 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 0.358043104 0.758561194 0.544417143 -0.988041997 + 0.0666666999 0.0105858995 0.815666914 0.578424931 -0.746529937 + 0.166666999 0.12776798 -0.635161936 0.761737943 -5.86896992 + 0.233333007 -0.353348017 -0.279028058 0.892910123 -5.61169004 + 0.300000012 -0.741060138 0.000865260256 0.671438098 -5.69954014 + 0.366667002 -0.620906234 -0.230472103 0.749238312 -5.82200003 + 0.433333009 -0.448428184 -0.0166193061 0.89366436 -5.75228024 + 0.5 -0.55331707 0.549198031 -0.626276076 -5.49820995 + 0.600000024 0.626803935 -0.30803597 -0.715702951 -0.809791982 + 0.633333027 0.693617702 -0.120188951 -0.710245788 -0.859786034 + 0.666666985 0.53302604 -0.13993302 -0.834447145 -0.623192012 + 0.699999988 0.0300375037 -0.101929016 0.994338095 -5.62250996 + 0.733332992 -0.0447981097 0.370748132 0.927652359 -5.54382992 + 0.766667008 -0.136539042 0.452066123 0.88147223 -5.69769001 + 0.866666973 0.141342953 -0.861719787 -0.48729986 -0.336228013 + 0.899999976 0.252869099 -0.947131276 -0.197483078 -0.276775986 + 1 0.58699429 -0.45288524 0.671068311 -0.321235001 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 7.00649232e-045 + period -0.246912584 + tightness 0.600000024 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.575147092 0.57568109 0.581203103 -0.0923916996 + 0.266667008 0.154781044 0.976462305 0.150214031 -0.208572984 + 0.466666996 0.168063074 -0.0041636317 -0.985767424 -0.282184005 + 0.533333004 -0.160864055 -0.136232048 -0.977529347 -0.303344011 + 0.733332992 -0.631960094 -0.300198019 -0.714498162 -0.536522031 + 1 -0.0989811048 -0.870788038 0.481592059 -0.374543011 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 23 + 0 -0.965715468 -0.247738868 -0.0775824562 -1.16652 + 0.0666666999 -0.978384674 -0.202945948 0.0397033878 -1.15933001 + 0.133332998 -0.923526287 -0.00429263106 0.383511126 -1.12102008 + 0.166666999 -0.865961432 0.0561808273 0.496945232 -1.13897002 + 0.200000003 -0.792428851 0.111617967 0.599664867 -1.17013001 + 0.266667008 -0.803191781 0.0844880715 0.589698851 -1.16280007 + 0.300000012 -0.872462153 0.0658907145 0.484219164 -1.15994 + 0.333332986 -0.925395668 0.0506419726 0.375603855 -1.15804994 + 0.366667002 -0.978308976 0.00761234062 0.207011014 -1.15813994 + 0.400000006 -0.999112725 -0.0274556931 0.0319369845 -1.14726007 + 0.433333009 -0.987070739 -0.0726351812 -0.142882958 -1.14052999 + 0.466666996 -0.944168925 -0.0974589959 -0.314716965 -1.10574996 + 0.5 -0.876077116 -0.14675802 -0.459294051 -1.04881001 + 0.533333004 -0.76741004 -0.189275026 -0.612582028 -1.00258994 + 0.600000024 -0.602260768 -0.317864895 -0.732286751 -1.01698005 + 0.666666985 -0.564426839 -0.363838881 -0.740974784 -0.895066977 + 0.699999988 -0.599995255 -0.398075163 -0.693932176 -0.833301008 + 0.733332992 -0.636302829 -0.428828955 -0.641267836 -0.773464024 + 0.766667008 -0.686129987 -0.408767998 -0.601776004 -0.807510972 + 0.800000012 -0.726672947 -0.390290976 -0.565348923 -0.841244996 + 0.866666973 -0.767766953 -0.373308957 -0.520743966 -0.914785028 + 0.899999976 -0.809038818 -0.343929917 -0.476621866 -0.946220994 + 1 -0.873605907 -0.267664939 -0.406408936 -1.04311001 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 23 + 0 0.999267459 -0.0286791138 0.0253395103 -0.947066009 + 0.0666666999 0.999213755 -0.0301719904 0.0257203933 -0.91162008 + 0.133332998 0.999059439 -0.0341411158 0.0267328117 -0.828442931 + 0.166666999 0.999020875 -0.0350707956 0.0269700959 -0.810989976 + 0.200000003 0.999000251 -0.035559006 0.0270945039 -0.802097023 + 0.266667008 0.998956561 -0.0365734845 0.027353188 -0.784202993 + 0.300000012 0.999065876 -0.0339832976 0.0266925972 -0.831479013 + 0.333332986 0.99915719 -0.0316774063 0.0261043049 -0.878308058 + 0.366667002 0.99935025 -0.0262345038 0.0247156061 -1.01091003 + 0.400000006 0.999464095 -0.0225100014 0.0237649046 -1.12468004 + 0.433333009 0.999561131 -0.0188705027 0.0228358023 -1.25996995 + 0.466666996 0.999613941 -0.0166250989 0.0222623982 -1.35827005 + 0.5 0.999629915 -0.0158956982 0.0220759977 -1.39303005 + 0.533333004 0.999633968 -0.0157055985 0.0220275987 -1.40233004 + 0.600000024 0.999633074 -0.015749 0.0220385008 -1.40020001 + 0.666666985 0.999633372 -0.0157349054 0.0220350083 -1.40090001 + 0.699999988 0.999637902 -0.0155221978 0.0219806973 -1.41140997 + 0.733332992 0.999640286 -0.0154086044 0.0219518077 -1.41707003 + 0.766667008 0.999631643 -0.015815096 0.0220554918 -1.39696002 + 0.800000012 0.999619544 -0.0163716935 0.0221975893 -1.37018001 + 0.866666973 0.99958092 -0.0180557985 0.0226276983 -1.29419005 + 0.899999976 0.999549329 -0.0193426069 0.022956308 -1.24084997 + 1 0.999361634 -0.025882991 0.02462589 -1.02074003 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 23 + 0 0.144606024 0.936310232 -0.320019096 -0.200184986 + 0.0666666999 0.401155919 0.911211729 -0.0936329737 -0.193158001 + 0.133332998 0.682703078 0.569075048 0.458334059 -0.269080997 + 0.166666999 0.679437995 0.484420002 0.551091015 -0.309020996 + 0.200000003 0.656701922 0.424090981 0.62360996 -0.345771015 + 0.266667008 0.687593579 0.377902776 0.6200037 -0.362143964 + 0.300000012 0.664307356 0.451542228 0.595655382 -0.305475026 + 0.333332986 0.61473006 0.560530066 0.554899037 -0.244656995 + 0.366667002 0.0373944044 0.879022241 0.475312084 -0.158155009 + 0.400000006 -0.721814096 0.688591123 0.0694746152 -0.204867989 + 0.433333009 -0.885251224 0.452379107 -0.108090021 -0.379763991 + 0.466666996 -0.909824073 0.369437993 -0.189039007 -0.581468999 + 0.5 -0.905878603 0.379981846 -0.187076911 -0.723698974 + 0.533333004 -0.899282038 0.397400022 -0.182660997 -0.85809207 + 0.600000024 -0.872428417 0.463079244 -0.156289086 -0.912726998 + 0.666666985 -0.853629887 0.485445946 -0.188833967 -0.936046004 + 0.699999988 -0.841267288 0.493567139 -0.220592067 -0.913130045 + 0.733332992 -0.827349782 0.50195682 -0.2520549 -0.887909949 + 0.766667008 -0.809978664 0.50828284 -0.292545915 -0.828580916 + 0.800000012 -0.786696017 0.515946984 -0.338981003 -0.769123971 + 0.866666973 -0.727738261 0.545279145 -0.416014075 -0.640348017 + 0.899999976 -0.679848075 0.565067053 -0.467446089 -0.562345982 + 1 -0.368084878 0.674290776 -0.640191734 -0.313573003 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 23 + 0 -0.217372999 0.49664703 0.840292037 -0.604432046 + 0.0666666999 -0.0379279964 0.355380923 0.933951735 -0.624225974 + 0.133332998 0.359878898 0.0839909762 0.929210782 -1.02119994 + 0.166666999 0.435618013 -0.00916751008 0.900084972 -1.15307999 + 0.200000003 0.492403984 -0.0917060971 0.865521967 -1.29920006 + 0.266667008 0.480301976 -0.107771993 0.870456874 -1.2520299 + 0.300000012 0.424917817 -0.0359547846 0.904517591 -1.07869017 + 0.333332986 0.355716109 0.0679276139 0.932122231 -0.927552998 + 0.366667002 0.293448955 0.246327937 0.923693836 -0.737432003 + 0.400000006 0.184156984 0.51560694 0.836800873 -0.658803999 + 0.433333009 0.0528167002 0.753506958 0.655314922 -0.667255998 + 0.466666996 -0.0620948076 0.883500099 0.464297086 -0.772081017 + 0.5 -0.0887579098 0.92584914 0.367321998 -0.842020988 + 0.533333004 -0.102013983 0.950930893 0.292102009 -0.905390978 + 0.600000024 -0.179859072 0.970899403 0.158130065 -0.906680942 + 0.666666985 -0.105996989 0.960557878 0.257085979 -1.00588 + 0.699999988 -0.0558504127 0.960288167 0.273363054 -1.01250017 + 0.733332992 0.000260214001 0.957633078 0.287991017 -1.02015996 + 0.766667008 -0.0511124805 0.962487578 0.266467869 -0.970502973 + 0.800000012 -0.105200976 0.96428287 0.243086964 -0.921887994 + 0.866666973 -0.216926098 0.957151473 0.191844091 -0.82476598 + 0.899999976 -0.264571011 0.943684876 0.198647991 -0.781479955 + 1 -0.452527851 0.865571678 0.214485928 -0.660733998 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 23 + 0 1 0 0 -0.749297976 + 0.0666666999 1 0 -2.15339e-007 -0.694342017 + 0.133332998 1 -2.39674989e-007 0 -0.471756995 + 0.166666999 1 -2.48778008e-007 0 -0.348127961 + 0.200000003 1 -2.82642986e-007 5.20937022e-007 -0.202612996 + 0.266667008 1 2.18874007e-007 4.43718989e-007 -0.247979 + 0.300000012 1 -1.30838998e-007 0 -0.38380301 + 0.333332986 1 -2.29394004e-007 0 -0.49731499 + 0.366667002 1 -2.77395003e-007 0 -0.563621998 + 0.400000006 1 0 0 -0.595713019 + 0.433333009 1 0 0 -0.618229985 + 0.466666996 1 0 -2.88948996e-007 -0.581286013 + 0.5 1 0 0 -0.512893915 + 0.533333004 1 0 3.2925297e-007 -0.397451997 + 0.600000024 1 -2.97561002e-007 -1.96400009e-007 -0.486874998 + 0.666666985 1 0 5.40578981e-007 -0.527390003 + 0.699999988 1 0 0 -0.589534998 + 0.733332992 1 2.55867008e-007 0 -0.637723982 + 0.766667008 1 0 0 -0.696317971 + 0.800000012 1 -2.33236008e-007 0 -0.744596004 + 0.866666973 1 0 0 -0.815433979 + 0.899999976 1 0 0 -0.837723017 + 1 1 0 0 -0.863637984 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 23 + 0 -0.785618186 -0.612668097 0.0862661302 -0.756937981 + 0.0666666999 -0.773321986 -0.590496004 0.230841011 -0.783270001 + 0.133332998 -0.683668852 -0.578331888 0.445116907 -0.837073922 + 0.166666999 -0.615857005 -0.554929018 0.559261978 -0.861271024 + 0.200000003 -0.532546937 -0.523750961 0.664889932 -0.88754493 + 0.266667008 -0.539735079 -0.513631046 0.666985154 -0.895420074 + 0.300000012 -0.607741773 -0.516784787 0.602978766 -0.923156023 + 0.333332986 -0.6572932 -0.526688099 0.539041102 -0.94244802 + 0.366667002 -0.694574058 -0.548218131 0.465858102 -0.956457019 + 0.400000006 -0.71482408 -0.608865082 0.343962014 -0.936564088 + 0.433333009 -0.721882761 -0.665092826 0.191145942 -0.940338016 + 0.466666996 -0.676901817 -0.735864878 0.0175161976 -0.943849921 + 0.5 -0.628584802 -0.770992815 -0.102230988 -0.949836969 + 0.533333004 -0.552354813 -0.809164762 -0.20039095 -0.960718989 + 0.600000024 -0.504940867 -0.845037818 -0.175913975 -0.968685985 + 0.666666985 -0.41857785 -0.888445675 -0.188299924 -0.969907999 + 0.699999988 -0.425531209 -0.890408337 -0.161543071 -0.963682055 + 0.733332992 -0.441485971 -0.883581936 -0.156118989 -0.960051 + 0.766667008 -0.481866837 -0.863145769 -0.150942951 -0.939702988 + 0.800000012 -0.532121003 -0.826370895 -0.184277996 -0.924539983 + 0.866666973 -0.630475104 -0.71661514 -0.29826802 -0.907390058 + 0.899999976 -0.672954857 -0.664519906 -0.324876934 -0.895099998 + 1 -0.735943854 -0.670317888 -0.095186688 -0.76791203 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0 0 0 0 + 0.466666996 0.0485242195 0.249794111 -0.967082381 -0.552877009 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.00719756307 0.855763435 -0.517317235 -0.130805001 + 0.0666666999 0.0530782789 0.838823557 -0.541809678 -0.118657991 + 0.133332998 0.108967021 0.81469816 -0.569555163 -0.106945992 + 0.266667008 0.261420131 0.728581369 -0.633110285 -0.0855327025 + 0.333332986 0.362718076 0.653320193 -0.664536178 -0.076397799 + 0.400000006 0.479939789 0.544473827 -0.687899768 -0.0688846037 + 0.466666996 0.236996084 0.661765218 -0.71126622 -0.0592548996 + 0.533333004 -0.0898998082 0.739577055 -0.667041063 -0.0553250983 + 0.600000024 -0.0146991042 0.00541417208 -0.999877334 -0.0445620008 + 0.666666985 0.0554040335 -0.611480355 -0.789317489 -0.0661285967 + 0.800000012 0.464775115 -0.72332716 -0.510668099 -0.0745636001 + 1 0.583700061 -0.7941401 -0.169220999 -0.193692997 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.0703921989 -0.946045995 0.316294014 -0.142571002 + 0.0666666999 0.355726808 -0.344068825 0.868950546 -0.276077002 + 0.133332998 0.272017896 -0.607385814 0.746383786 -0.547625005 + 0.266667008 0.645445943 -0.44787696 0.618712962 -0.608955979 + 0.333332986 0.682102978 -0.277399957 0.676597953 -0.540018976 + 0.400000006 0.695538819 -0.0550454855 0.716376841 -0.49288401 + 0.466666996 0.711522996 -0.155947015 0.68513906 -0.520286977 + 0.533333004 0.718939781 -0.244643912 0.650595844 -0.552784979 + 0.600000024 0.716750383 -0.344682217 0.606187284 -0.495117962 + 0.666666985 0.702131927 -0.462786973 0.541145921 -0.444556981 + 0.800000012 0.589519918 -0.7054649 0.393427908 -0.354835004 + 1 0.864540279 -0.34633413 0.364174128 -0.156748995 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.158853993 0.048134502 0.986128032 -0.229823992 + 0.0666666999 0.10500598 -0.231764942 0.967087746 -0.313728988 + 0.133332998 0.189032078 -0.0718273297 0.979340434 -0.40396601 + 0.266667008 0.300254077 0.23068808 0.925543368 -0.441454023 + 0.333332986 0.187992096 0.430181175 0.882951379 -0.484210968 + 0.400000006 0.0896731019 0.574617028 0.813494921 -0.547781944 + 0.466666996 0.481656134 0.815008163 0.322132081 -0.323103011 + 0.533333004 0.454024106 0.628660202 -0.631386161 -0.547389984 + 0.600000024 0.414522916 0.491967857 -0.765596747 -0.490161955 + 0.666666985 0.539551139 -0.493602097 -0.68208617 -0.26157701 + 0.800000012 -0.0460271984 -0.848997056 -0.526389062 -0.239331022 + 0.899999976 -0.592039227 -0.79356122 -0.140535042 -0.242652997 + 1 -0.366371036 0.234474048 0.90044111 -0.158409998 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.648746133 0.15065603 -0.745943129 -0.103040002 + 0.0666666999 -0.141713992 0.702183902 -0.697749853 -0.085195601 + 0.133332998 0.689335108 0.0347617082 -0.723608136 -0.0904303938 + 0.266667008 0.872948349 0.261765093 -0.411631137 -0.183331981 + 0.333332986 0.810230136 0.535841048 -0.237490028 -0.169158995 + 0.400000006 0.521658182 -0.52910316 -0.669270217 -0.0351965055 + 0.466666996 -0.190890074 0.219870061 -0.956670344 -0.0808975101 + 0.533333004 -0.327821046 0.36077404 -0.87314117 -0.150270984 + 0.600000024 -0.317929953 0.141532987 -0.937490761 -0.11372 + 0.666666985 -0.26195094 -0.250168979 -0.932092905 -0.0879637003 + 0.800000012 0.0309061874 -0.948354602 -0.315702885 -0.103500001 + 1 0.193270966 -0.962928891 0.188186973 -0.220416993 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.618825376 0.783424377 -0.0574579313 -0.273734987 + 0.0666666999 0.904071927 0.369116932 0.21542199 -0.356922001 + 0.133332998 0.93755132 0.0938545242 0.334946096 -0.506685019 + 0.266667008 0.667451024 0.668963015 0.327104986 -0.374177992 + 0.333332986 0.605773985 0.702008069 0.374462992 -0.346851975 + 0.400000006 0.533697128 0.820934117 0.203063026 -0.637212992 + 0.466666996 0.481750816 0.874299765 -0.0592967793 -0.613282979 + 0.533333004 0.465208173 0.87762022 -0.115603037 -0.589214027 + 0.600000024 0.476975143 0.871815205 -0.111503035 -0.543511987 + 0.666666985 0.490725994 0.864763021 -0.106643997 -0.497925013 + 0.800000012 0.530118763 0.84397459 -0.0817370638 -0.434141994 + 0.899999976 0.574012816 0.815902829 -0.0693677887 -0.370514989 + 1 0.618825376 0.783424377 -0.0574579313 -0.273734987 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.60870105 -0.351164043 -0.711454034 -0.612342 + 0.0666666999 0.599590957 -0.323630959 -0.731951952 -0.563042998 + 0.133332998 0.416997969 -0.901192963 0.118169002 -0.616828978 + 0.266667008 0.0361785069 0.219727069 -0.974890292 -0.733856022 + 0.333332986 0.710653841 0.164662972 -0.68400085 -0.449731976 + 0.400000006 0.801416814 0.166572958 -0.574442863 -0.479164004 + 0.466666996 0.481557071 0.860624075 -0.165617019 -0.628192008 + 0.533333004 0.443087876 0.828139782 0.343303919 -0.544942021 + 0.600000024 0.58710295 0.294779956 -0.753932953 -0.486894965 + 0.666666985 0.870610356 -0.22861509 -0.435629159 -0.398484975 + 0.800000012 0.943244815 -0.317797929 -0.0964039937 -0.31141299 + 1 0.799693227 -0.245106071 -0.548100173 -0.328159958 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.241539955 -0.132009983 -0.961369753 -1.36176002 + 0.0666666999 -0.340936065 -0.123484023 -0.931941152 -1.02788007 + 0.133332998 -0.511303902 -0.104655981 -0.8530038 -0.710950971 + 0.266667008 -0.906972408 0.0416849181 -0.419122189 -0.389629036 + 0.333332986 -0.547358871 -0.192229956 -0.814521909 -0.638993025 + 0.400000006 -0.345654011 -0.270141989 -0.898635983 -0.975816011 + 0.466666996 -0.386691064 -0.356872082 -0.850360096 -1.12541997 + 0.533333004 -0.415720224 -0.42193222 -0.805698395 -1.28319001 + 0.600000024 -0.414455026 -0.429684013 -0.802246034 -1.27552998 + 0.666666985 -0.393132925 -0.417726904 -0.819115818 -1.21893001 + 0.800000012 -0.321403176 -0.527560294 -0.786371529 -1.14098001 + 1 -0.236218065 -0.787068248 -0.569846094 -1.13341999 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.658810973 0.752038062 0.0201718006 -0.195084006 + 0.0666666999 0.974909604 0.148149937 0.166140944 -0.209516987 + 0.133332998 0.933471322 -0.283853054 0.219223052 -0.299394995 + 0.266667008 0.920457721 -0.345636904 0.182462946 -0.344774008 + 0.333332986 0.994316816 -0.0939994901 0.0499810912 -0.377199978 + 0.400000006 0.992055953 0.11150299 -0.0582410954 -0.435629994 + 0.466666996 0.893341243 0.026070904 -0.448622078 -0.38329801 + 0.533333004 0.943785191 -0.00461566076 -0.330527097 -0.287209034 + 0.600000024 0.866088808 -0.486000955 0.117017984 -0.116011992 + 0.666666985 0.389833987 -0.343376011 -0.854471982 -0.144566998 + 0.800000012 -0.114979006 -0.130406022 -0.984771073 -0.339388043 + 1 0.443129987 0.889569998 -0.110909998 -0.542846978 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.496800989 0.110734992 0.860770881 -0.354492009 + 0.0666666999 0.00597016793 0.235616937 0.971827686 -0.289721996 + 0.133332998 -0.532514215 0.299072146 0.791823506 -0.323956043 + 0.266667008 0.0640541762 -0.0419401899 0.99706471 -0.225590006 + 0.333332986 0.600795865 0.188419953 0.776879847 -0.289658993 + 0.400000006 0.796161234 0.283263087 0.534686208 -0.418978959 + 0.466666996 0.80953598 -0.129607007 0.572584987 -0.379772007 + 0.533333004 0.679977953 -0.526911914 0.509895921 -0.411538988 + 0.600000024 0.781944096 -0.311696023 0.539823115 -0.442844033 + 0.666666985 -0.237227052 -0.970949233 -0.0313188061 -0.227166995 + 0.800000012 -0.461749971 0.507601023 -0.727411926 -0.167384997 + 1 0.845197201 0.484779119 0.225013047 -0.197714016 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.552580893 0.65008688 0.521575868 -0.346971005 + 0.0666666999 -0.56238693 0.633857965 0.530984938 -0.337839991 + 0.133332998 -0.57245487 0.616435885 0.540649831 -0.328866005 + 0.200000003 -0.599428892 0.642513812 0.477347881 -0.362664998 + 0.266667008 -0.606534064 0.610511065 0.509306073 -0.338479996 + 0.333332986 -0.594672918 0.629115939 0.500576913 -0.343284011 + 0.400000006 -0.582820892 0.646863937 0.491819918 -0.348273039 + 0.466666996 -0.449501008 0.81714505 -0.360864013 -0.426307976 + 0.533333004 -0.254465073 0.673255205 -0.694244146 -0.692498028 + 0.600000024 -0.566365182 0.720645249 -0.399876148 -0.47093001 + 0.666666985 -0.833910882 0.493755937 0.246571973 -0.421220005 + 0.800000012 -0.820785105 0.434141099 0.371259063 -0.337476999 + 1 -0.667456925 -0.125579983 0.733982921 -0.195279002 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0 0 0 0 + 0.0666666999 0.876727819 -0.473903954 -0.0822396874 -0.087044701 + 0.133332998 0.876728296 -0.473903149 -0.0822393224 -0.174089 + 0.266667008 -0.0292392932 0.975476682 -0.218151942 -0.126372993 + 0.333332986 0.004326961 0.966779292 -0.255576074 -0.0949394926 + 0.400000006 -0.463858962 0.855288923 -0.230901986 -0.0634170994 + 0.466666996 -0.799494982 0.566294014 -0.200297013 -0.241824001 + 0.533333004 0.994927227 0.041738607 0.0915298164 -0.0306229014 + 0.600000024 -0.0308173075 0.743870199 -0.667613208 -0.203198001 + 0.666666985 -0.105531998 0.735219002 -0.669564068 -0.409381956 + 0.800000012 -0.105531998 0.735219002 -0.669564068 -0.245628998 + 0.899999976 -0.747112215 0.272021085 -0.606488168 -0.0953016952 + 1 0 0 0 0 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.301153958 -0.559878945 -0.771907926 -0.376904994 + 0.0666666999 0.507346094 -0.3661111 -0.78010422 -0.394373983 + 0.133332998 0.691752195 0.0615027174 -0.719511151 -0.426028967 + 0.200000003 0.523202121 0.374958098 -0.765288174 -0.507269979 + 0.266667008 -0.507822871 0.23842594 -0.827809751 -0.364461988 + 0.333332986 -0.55675596 0.306629956 -0.772010922 -0.382645994 + 0.400000006 -0.415197998 0.0495254993 -0.908381999 -0.598861992 + 0.466666996 -0.32706809 -0.596480131 -0.732965171 -0.809560061 + 0.533333004 -0.211853966 0.126407966 -0.969091833 -0.822921991 + 0.600000024 0.13523595 0.231143951 -0.96347481 -0.480619013 + 0.666666985 0.949114442 0.234677091 0.210020095 -0.348736018 + 0.800000012 0.922789931 -0.261227965 -0.283228964 -0.269657999 + 0.899999976 0.808489919 -0.182336986 -0.559550941 -0.391101003 + 1 0.243895009 -0.576484978 -0.779859126 -0.374590009 +endnode +doneanim 2hslashr a_dfa2_coat + +#MAXANIM ASCII +newanim 2hstab a_dfa2_coat + length 1 + transtime 0.400000006 + animroot rootdummy + event 0.300000012 snd_footstep + event 0.300000012 snd_footstep + event 0.300000012 snd_footstep + event 0.300000012 snd_footstep + event 0.300000012 snd_footstep + event 0.300000012 snd_footstep + event 0.300000012 snd_footstep + event 0.300000012 snd_footstep + event 0.300000012 snd_footstep + event 0.300000012 snd_footstep + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 7 + 0 0.000247613003 -0.0325528011 1.02807999 + 0.166666999 0.0102209998 -0.0677568018 1.02807999 + 0.366667002 -0.00769302016 0.0343768001 1.02807999 + 0.5 -0.0311460998 0.152447 1.00047004 + 0.600000024 -0.0355256982 0.184084997 0.989306986 + 0.766667008 -0.0206202008 0.122561 1.00171006 + 1 0.000247613003 -0.0325528011 1.02807999 + orientationkey 2 + 0 0.627492011 0.351855993 0.694586992 -0.325186014 + 1 0.627492011 0.351855993 0.694586992 -0.325186014 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.894602478 -0.386452198 0.22436814 -0.255903006 + 0.166666999 0.894602478 -0.386452198 0.22436814 -0.255903006 + 0.366667002 0.280611873 0.121801943 0.952061594 -0.776481986 + 0.5 0.253158867 -0.370379835 -0.893716574 -0.711126089 + 0.600000024 0.360600084 -0.416886091 -0.834370196 -0.543609977 + 1 0.894602716 -0.38645184 0.224367946 -0.255903006 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.373683989 0.0691896006 0.924971938 -1.23453999 + 0.166666999 -0.257813931 -0.283677936 0.92361182 -2.34853005 + 0.366667002 -0.224968001 -0.167196006 0.959914029 -2.06966996 + 0.400000006 -0.245702937 -0.17825295 0.952814758 -2.02568007 + 0.5 0.637552023 -0.752708912 -0.164185002 -0.510630012 + 0.600000024 0.419866025 -0.366566032 -0.830266118 -0.770153046 + 0.899999976 -0.499590963 0.280644983 0.819540858 -1.18629003 + 1 -0.373683989 0.0691896901 0.924971938 -1.23453999 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -1 0 -2.89555004e-007 -0.809759021 + 0.166666999 1 0 0 -5.42960978 + 0.366667002 1 0 0 -5.47177982 + 0.400000006 1 0 0 -5.49741983 + 0.5 -1 0 0 -1.19856 + 0.600000024 -1 0 0 -1.00906003 + 0.899999976 -1 -2.35372013e-007 0 -0.590875983 + 1 -1 3.32096988e-007 3.26164013e-007 -0.809759021 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.568123758 0.457684845 -0.683929801 -0.421714008 + 0.166666999 0.582523108 0.131458029 0.802113235 -4.63859987 + 0.366667002 0.416040957 0.0815816894 0.905678928 -4.60728979 + 0.400000006 0.508788884 -0.133004963 0.850554883 -4.56764984 + 0.5 0.065161489 -0.565687895 -0.822040856 -0.275947005 + 0.600000024 -0.350643009 -0.439721972 -0.826857924 -0.597513974 + 0.899999976 -0.285082072 0.129159018 -0.949761093 -0.539155006 + 1 -0.568123758 0.457684845 -0.683929801 -0.421714008 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.0859040916 0.501316965 -0.860988855 -0.202737018 + 0.166666999 0.518754959 -0.0443688966 -0.853770852 -0.123239003 + 0.366667002 -0.071787104 0.444457054 -0.892919123 -0.699598014 + 0.400000006 -0.240876943 0.208016962 -0.948001683 -0.445433974 + 0.433333009 -0.91475904 -0.0325934999 -0.40268299 -0.685755014 + 0.466666996 -0.996827304 0.0526988134 -0.0596506186 -1.13583994 + 0.5 -0.965364218 0.260743052 0.00922099221 -1.62096 + 0.600000024 -0.968577504 0.237098902 -0.0751111656 -1.37599003 + 0.766667008 -0.895851135 0.388826042 -0.215093017 -0.715327024 + 0.899999976 -0.758616269 0.474959135 -0.445999116 -0.374908 + 1 -0.0859032944 0.501316965 -0.860988915 -0.202737004 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.969834387 -0.191792071 -0.150456056 -1.76050997 + 0.166666999 -0.974096656 -0.162536934 -0.15721792 -1.96185994 + 0.366667002 -0.968102634 -0.202158943 -0.148016959 -1.69616997 + 0.400000006 -0.966908038 -0.208933011 -0.146410003 -1.65597999 + 0.433333009 -0.949467897 -0.286934942 -0.127196968 -1.28382015 + 0.466666996 -0.890150905 -0.448049933 -0.0829618946 -0.850186944 + 0.5 -0.645041168 -0.76360321 0.0288448092 -0.496937037 + 0.600000024 -0.876183271 -0.476180166 -0.0745338276 -0.80102998 + 0.766667008 -0.956667125 -0.258309036 -0.134404019 -1.403 + 0.899999976 -0.965308726 -0.217585951 -0.144344971 -1.60670996 + 1 -0.969834387 -0.191792071 -0.150456056 -1.76050997 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.863788247 0.443953156 0.238276079 -0.279032975 + 0.166666999 0.99789685 0.0470350906 -0.0446046889 -0.688304007 + 0.366667002 0.969722867 -0.185955003 0.158297986 -0.934216976 + 0.400000006 0.999374032 0.0194668025 0.0295397006 -1.14815986 + 0.433333009 0.98643589 0.155576974 0.0523456894 -1.30615997 + 0.466666996 0.971336603 0.235266879 0.0339809805 -1.36875999 + 0.5 0.964810431 0.214007095 0.152780071 -1.42501998 + 0.600000024 0.966132998 0.182657018 0.182273015 -1.52883995 + 0.766667008 0.962921321 0.159195051 0.217806041 -1.29850996 + 0.899999976 0.947546244 0.227569059 0.224429056 -0.710608006 + 1 0.863788247 0.443953156 0.238276079 -0.279032975 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.354299843 -0.934272587 0.0400786884 -0.204768002 + 0.166666999 0.426830918 -0.542393863 0.723618865 -0.238431022 + 0.366667002 0.461384982 -0.261779964 0.84769994 -0.231619984 + 0.5 0.19743605 -0.887628257 -0.416095108 -0.329111993 + 0.600000024 0.161843061 -0.871449232 -0.463015169 -0.386882991 + 1 0.354299873 -0.934272647 0.0400778838 -0.204768002 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.970475554 -0.126832947 -0.205159932 -1.18408 + 0.166666999 -0.951743186 -0.278166056 -0.12964803 -1.23286986 + 0.366667002 -0.941637695 -0.317379951 -0.11219798 -1.2155 + 0.400000006 -0.962569654 -0.220784932 -0.157205939 -1.18292999 + 0.433333009 -0.971536696 -0.123227954 -0.202314943 -1.14719999 + 0.466666996 -0.968513131 -0.0251691062 -0.247687042 -1.10901999 + 0.5 -0.953246951 0.0727655962 -0.293300956 -1.06905997 + 0.600000024 -0.936770141 0.141107008 -0.320235044 -1.04130006 + 0.766667008 -0.961790025 0.0295307003 -0.272190988 -1.09493995 + 0.899999976 -0.971189857 -0.0600890964 -0.230606988 -1.15909004 + 1 -0.970475554 -0.126832947 -0.205159932 -1.18408 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.999138832 -0.0321531929 0.0262257941 -0.868246973 + 0.166666999 0.999144375 -0.032010112 0.0261892099 -0.871253014 + 0.366667002 0.999391496 -0.0249405112 0.0243854113 -1.04798996 + 0.400000006 0.999415517 -0.0241600908 0.0241860896 -1.07156003 + 0.433333009 0.999430954 -0.0236453973 0.0240547974 -1.08764005 + 0.466666996 0.999439895 -0.0233439002 0.0239777975 -1.09726 + 0.5 0.99944365 -0.0232158918 0.0239450894 -1.10139 + 0.600000024 0.999467254 -0.0224003065 0.0237369053 -1.12837994 + 0.766667008 0.999423563 -0.0238934904 0.02411809 -1.07983005 + 0.899999976 0.999314725 -0.0273067933 0.0249891933 -0.981959999 + 1 0.999138832 -0.0321531929 0.0262256935 -0.868246973 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.243610024 0.758184135 -0.604823053 -0.210691005 + 0.166666999 0.220463008 0.633482039 -0.741684973 -0.397311956 + 0.366667002 -0.300859958 0.62805289 -0.717657864 -0.413446993 + 0.400000006 -0.494541109 0.596179128 -0.63245517 -0.351208001 + 0.433333009 -0.707876205 0.520419121 -0.477572143 -0.31091696 + 0.466666996 -0.885121882 0.39328894 -0.248762965 -0.297899991 + 0.5 -0.970444262 0.241216078 0.00725846225 -0.313825965 + 0.600000024 -0.983814955 0.149400979 0.0989316925 -0.367830992 + 0.766667008 -0.922861874 0.367223978 -0.116070986 -0.273539007 + 0.899999976 -0.480297089 0.73744911 -0.474851072 -0.182383984 + 1 0.243610024 0.758184135 -0.604823053 -0.210691005 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.49027279 0.636898756 0.59497273 -0.75959301 + 0.166666999 -0.610207081 0.501932085 0.612953067 -0.797207952 + 0.366667002 -0.41278097 0.544009864 0.730523884 -0.687876999 + 0.400000006 -0.327690989 0.648413002 0.687152982 -0.692601025 + 0.433333009 -0.216142118 0.733101428 0.644860327 -0.700430989 + 0.466666996 -0.0794778243 0.794065177 0.602614105 -0.711434007 + 0.5 0.0819707066 0.825137079 0.55895406 -0.728356063 + 0.600000024 0.21952191 0.831458688 0.510378838 -0.754658997 + 0.766667008 -0.0573573746 0.825910687 0.560875833 -0.721920073 + 0.899999976 -0.337053061 0.739900172 0.58218807 -0.736923993 + 1 -0.49027279 0.636898756 0.59497273 -0.75959301 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 1 0 0 -0.832217991 + 0.166666999 1 0 0 -0.879454076 + 0.366667002 1 -2.15911982e-007 0 -0.636125028 + 0.400000006 1 -3.34268975e-007 -2.90721999e-007 -0.606124997 + 0.433333009 1 0 0 -0.557985008 + 0.466666996 1 -3.4218499e-007 -1.87623996e-007 -0.488376021 + 0.5 1 -2.87385006e-007 0 -0.390750021 + 0.600000024 1 -5.15177021e-007 0 -0.283039004 + 0.766667008 1 -3.07217988e-007 -2.88553991e-007 -0.52354902 + 0.899999976 1 -1.81504006e-007 -4.48426988e-007 -0.73367393 + 1 1 0 0 -0.832217991 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.763353825 -0.645849824 -0.0129967974 -0.747933984 + 0.166666999 -0.759795845 -0.58936286 -0.274520934 -0.697651982 + 0.366667002 -0.643360257 -0.711748242 -0.281961083 -0.708145022 + 0.400000006 -0.654191673 -0.744679749 -0.132231951 -0.738068998 + 0.433333009 -0.649771929 -0.759968877 0.0156107983 -0.775422931 + 0.466666996 -0.632467806 -0.757356763 0.16246596 -0.818583965 + 0.5 -0.602620006 -0.735694051 0.309197992 -0.866228998 + 0.600000024 -0.568593144 -0.714188159 0.408212095 -0.905544996 + 0.766667008 -0.649118841 -0.725791812 0.22775194 -0.857743979 + 0.899999976 -0.720329821 -0.689295828 0.0774350837 -0.805700004 + 1 -0.763353825 -0.645849824 -0.0129970973 -0.747933984 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.729588091 -0.666838169 -0.151750028 -0.111213997 + 0.100000001 0.314409912 -0.919644773 -0.235371932 -0.100730002 + 0.200000003 0.369582057 -0.900739193 -0.228206038 -0.100568004 + 0.300000012 0.423466265 -0.878727615 -0.22025916 -0.100753002 + 0.5 0.983315885 -0.128562987 -0.128691003 -0.401789963 + 0.633333027 0.986958206 -0.13188602 -0.0923014134 -0.399545014 + 1 0.729587615 -0.666838706 -0.151749924 -0.11121399 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.88317728 -0.308781117 0.35306111 -0.165700004 + 0.100000001 0.883177459 -0.308780819 0.353060812 -0.165700004 + 0.200000003 0.867505729 -0.375801861 0.325893879 -0.138086006 + 0.300000012 0.380592048 0.231540009 0.895287037 -0.0710204989 + 0.5 -0.901405752 -0.265742928 0.341830909 -0.210724995 + 0.633333027 -0.928505063 -0.24544701 0.278629035 -0.183046997 + 0.733332992 -0.56354779 -0.0260486882 0.825672686 -0.0898514017 + 1 0.883178055 -0.308780044 0.353060037 -0.165700018 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.30194211 -0.0873025358 0.949320376 -0.138494 + 0.100000001 -0.30194211 -0.0873026326 0.949320376 -0.138494 + 0.200000003 -0.849406838 -0.202156976 0.487483919 -0.247574002 + 0.300000012 0.867710233 0.287760079 0.40530616 -0.334094971 + 0.5 0.705992699 0.389208853 0.591684699 -0.327239007 + 0.633333027 -0.571001709 0.223503917 0.789938629 -0.163833007 + 1 -0.301943034 -0.0873026997 0.949320078 -0.138494015 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.193270966 -0.962928891 0.188186973 -0.220416993 + 0.100000001 -0.0258649029 -0.978291094 0.205615029 -0.237719998 + 0.200000003 0.36560607 -0.917727172 0.155271009 -0.226449981 + 0.300000012 0.543463886 -0.832175851 0.110137977 -0.252256989 + 0.5 0.315366 -0.936100125 0.155759007 -0.235386014 + 0.633333027 0.379083812 -0.913411558 0.148238927 -0.232273996 + 1 0.193270966 -0.962928891 0.188186973 -0.220416993 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.374855995 0.927082121 0.00129404012 -0.356402993 + 0.100000001 0.502282858 0.864688873 -0.00501070963 -0.424252957 + 0.200000003 0.304161042 0.944797099 -0.121838018 -0.409123987 + 0.300000012 0.404635191 0.914318442 0.017093407 -0.37637201 + 0.5 0.355618864 0.924793601 0.135247946 -0.55459702 + 0.633333027 0.444328994 0.891608 0.0872178972 -0.540407002 + 1 0.374855995 0.927082121 0.00129410008 -0.356402993 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.799692214 -0.24510707 -0.548101187 -0.328159004 + 0.100000001 0.771739066 -0.12462201 -0.623609006 -0.275451988 + 0.200000003 0.801242054 -0.192358017 -0.566577077 -0.329306036 + 0.300000012 -0.0971773043 0.818863034 -0.565702975 -0.221787021 + 0.5 0.640684068 -0.31971103 -0.698075056 -0.338295996 + 0.633333027 0.823810041 0.0129917013 -0.566717088 -0.468230039 + 1 0.799692214 -0.24510707 -0.548101187 -0.328159004 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.297109962 -0.401261926 -0.866437852 -1.41621006 + 0.100000001 -0.320619881 -0.337805867 -0.884923756 -1.38340998 + 0.200000003 -0.38062796 -0.276151985 -0.882531822 -1.24361002 + 0.300000012 -0.477289081 -0.32921207 -0.814748168 -1.18801999 + 0.5 -0.345836192 -0.622798324 -0.701797366 -1.47404003 + 0.733332992 -0.463165879 -0.462975889 -0.755731881 -1.42219996 + 1 -0.297110856 -0.401261777 -0.866437614 -1.41621017 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.826811075 0.561079979 0.0396566987 -0.377992034 + 0.100000001 0.831181407 0.55593425 0.00863408484 -0.290627986 + 0.200000003 0.92828089 0.36629796 0.0641905889 -0.252638012 + 0.300000012 0.985234976 0.128232002 0.113440007 -0.398577005 + 0.5 0.748323143 0.663334191 -0.000502034032 -0.845310032 + 0.633333027 0.696389318 0.716655374 -0.0380389169 -0.605177999 + 0.733332992 0.623570383 0.780923426 -0.0363132171 -0.538449943 + 1 0.826811135 0.561080039 0.0396556035 -0.377992004 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.846877158 0.432152122 0.309909046 -0.133323997 + 0.100000001 0.419527024 0.87365514 0.246422008 -0.135900021 + 0.200000003 0.12341205 0.985700428 0.114735052 -0.207527012 + 0.300000012 0.182609051 0.813406169 0.552290142 -0.054957103 + 0.5 0.835648775 -0.48473084 0.258315921 -0.250286013 + 0.633333027 0.600321114 0.796852171 -0.0681261122 -0.312543988 + 0.733332992 0.356393993 0.901425064 -0.245797008 -0.204810008 + 1 0.846877158 0.432152122 0.309909046 -0.133323997 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.705714107 0.232064039 0.66941309 -0.234348983 + 0.100000001 -0.786515772 0.117522955 0.606284797 -0.270954996 + 0.200000003 -0.78603065 0.231714904 0.573117793 -0.300498992 + 0.300000012 -0.777436912 0.322229952 0.540147901 -0.333465993 + 0.5 -0.886608124 -0.0298979022 0.46155405 -0.387071997 + 0.733332992 -0.861583233 -0.048091013 0.505333185 -0.335680962 + 1 -0.705714107 0.232064039 0.66941309 -0.234348983 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.3512851 0.933505237 0.0718801171 -0.0578873008 + 0.100000001 -0.425183147 0.902983308 0.0619713217 -0.137443006 + 0.200000003 -0.35743022 -0.840583503 0.407017231 -0.0632473007 + 0.300000012 0.480228871 -0.83760184 0.260390937 -0.135867 + 0.366667002 0.99597007 -0.0356210023 -0.0823089108 -0.264038026 + 0.5 0.881749868 0.443215966 -0.16148299 -0.26382798 + 0.733332992 -0.781707883 0.0183770973 0.623373926 -0.0590175986 + 1 -0.351283878 0.933505774 0.0718793795 -0.0578872003 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.271447957 -0.551713943 -0.788623929 -0.369426996 + 0.100000001 0.0378742032 -0.772216976 -0.634229064 -0.431255966 + 0.200000003 -0.463211 -0.420956016 -0.779892027 -0.359304965 + 0.366667002 -0.0495046899 -0.0194376968 -0.998584747 -0.275492013 + 0.5 0.657821953 -0.261664957 -0.706258953 -0.429782987 + 0.733332992 -0.38044408 -0.173913047 -0.908304214 -0.34722501 + 1 0.271447957 -0.551713943 -0.788623929 -0.369426996 +endnode +doneanim 2hstab a_dfa2_coat + +#MAXANIM ASCII +newanim 2hcloseh a_dfa2_coat + length 1 + transtime 0.400000006 + animroot rootdummy + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.56666702 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 14 + 0 0.000247613003 -0.0325528011 1.02807999 + 0.0666666999 0.000248328986 -0.0221785996 1.02460003 + 0.233333007 0.000248330995 0.0261777993 1.00560999 + 0.300000012 0.000248330995 0.0332298987 1.00284004 + 0.366667002 0.000248252996 -0.0601755008 1.01350999 + 0.433333009 0.000248322991 -0.275934011 1.03248 + 0.5 0.000248391007 -0.586860001 1.05830002 + 0.56666702 0.000248461991 -0.757579029 1.07179999 + 0.633333027 0.000248461991 -0.757579029 1.07179999 + 0.699999988 0.00024838699 -0.721212029 1.06959999 + 0.766667008 0.000248389988 -0.643931985 1.06491995 + 0.800000012 0.000248389988 -0.603018999 1.06244004 + 0.93333298 0.000248327007 -0.125701994 1.03354001 + 1 0.000247613003 -0.0325528011 1.02807999 + orientationkey 14 + 0 0.627492011 0.351855993 0.694586992 -0.325186014 + 0.0666666999 0.634297848 0.342360914 0.693148792 -0.308486015 + 0.233333007 0.692385018 0.252243996 0.675999939 -0.209387004 + 0.300000012 0.70458883 0.231100962 0.670929909 -0.195258006 + 0.366667002 0.83323586 0.161250979 0.528881967 -0.250853986 + 0.433333009 0.914262712 0.0963938609 0.393486857 -0.343053013 + 0.5 0.948674083 0.0580293015 0.310885996 -0.440887988 + 0.56666702 0.961029232 0.0408831127 0.273407072 -0.505789995 + 0.633333027 0.953376651 0.0564526804 0.29645589 -0.488411009 + 0.699999988 0.944298148 0.0730810091 0.320874035 -0.471448988 + 0.766667008 0.931156337 0.0945788398 0.352140129 -0.451664001 + 0.800000012 0.922183692 0.107933968 0.371385872 -0.440450013 + 0.93333298 0.705232024 0.306436986 0.639330983 -0.337278992 + 1 0.627492011 0.351855993 0.694586992 -0.325186014 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.894602299 -0.386452138 0.224369079 -0.255903006 + 0.0666666999 0.845201015 -0.480019987 0.234980986 -0.197830021 + 0.166666999 -0.980982244 -0.19362703 -0.0135048032 -0.394113034 + 0.233333007 -0.990394771 -0.133780971 -0.034939792 -0.530117989 + 0.300000012 -0.991869569 -0.123187937 -0.0319289863 -0.575706005 + 0.366667002 -0.990481436 -0.13243404 -0.0375205167 -0.531159997 + 0.5 0.960666776 -0.218661934 -0.171190962 -0.260928005 + 0.56666702 0.981343031 -0.144010007 -0.12738502 -0.378096044 + 0.666666985 0.979839146 -0.187588051 -0.0687455088 -0.345274001 + 0.733332992 0.977618396 -0.205790058 -0.0437352136 -0.333492994 + 0.93333298 0.912583709 -0.363301843 0.187623918 -0.262867987 + 1 0.894602299 -0.386452138 0.224369079 -0.255903006 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.373683989 0.0691896901 0.924971938 -1.23453999 + 0.0666666999 -0.531234026 -0.112213008 0.839761078 -1.26025999 + 0.133332998 -0.918241262 -0.0560420156 0.39203608 -1.32632995 + 0.200000003 -0.962382078 0.264309019 0.0629407018 -1.85096002 + 0.266667008 -0.920085073 0.391631991 -0.00823475979 -2.11192012 + 0.300000012 -0.950589359 0.303369105 0.0659318194 -2.29463005 + 0.333332986 -0.972189307 0.200817049 0.120501034 -2.23727989 + 0.366667002 -0.973822117 0.180117995 0.13866502 -2.14934993 + 0.433333009 -0.936567068 0.34248504 -0.074472703 -1.94801998 + 0.466666996 -0.928930759 0.354077876 -0.108242981 -1.42277002 + 0.5 -0.932613194 0.239725038 0.269749045 -1.00479007 + 0.56666702 -0.890254736 0.185464948 0.415991902 -0.932639062 + 0.666666985 -0.843659759 0.134695962 0.519706845 -1.04003 + 0.733332992 -0.810049176 0.0675749183 0.582455158 -1.18816996 + 0.800000012 -0.811772108 0.0390534028 0.582667053 -1.32730997 + 0.93333298 -0.384682983 -0.009397869 0.923000932 -1.43348002 + 1 -0.373683989 0.0691896901 0.924971938 -1.23453999 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -1 0 0 -0.809759021 + 0.0666666999 -0.972281277 0.145535052 0.182999045 -0.910381079 + 0.133332998 -0.899955094 0.279707074 0.334432065 -0.976337016 + 0.200000003 0.742422998 -0.465092003 -0.482179999 -5.34112978 + 0.266667008 0.544081211 -0.633841276 -0.549746215 -5.55868006 + 0.300000012 0.572437942 -0.595178962 -0.563982964 -5.55421019 + 0.333332986 0.742040157 -0.408185095 -0.531753123 -5.39624023 + 0.366667002 0.799427688 -0.313168883 -0.512679815 -5.29269981 + 0.433333009 -0.280576915 0.686039805 0.671286821 -0.591205001 + 0.466666996 -0.343196988 0.68383801 0.64388001 -0.619084001 + 0.5 -0.422944903 0.669894814 0.610211909 -0.648348987 + 0.56666702 -0.851400673 0.287118912 0.438952863 -1.00109994 + 0.666666985 -0.766609132 0.44681707 0.46115607 -0.788734019 + 0.733332992 -0.692074656 0.554014742 0.462709785 -0.678734004 + 0.800000012 -0.453022838 0.772806704 0.444454849 -0.526359022 + 0.93333298 -1 0 -1.31672991e-007 -0.636714995 + 1 -1 0 0 -0.809759021 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.568123102 0.457685113 -0.683930159 -0.421714008 + 0.0666666999 -0.4402242 -0.20002909 -0.875323355 -0.388934016 + 0.133332998 0.0635955185 -0.986328244 0.152027026 -6.08361006 + 0.200000003 -0.22708495 -0.744119883 -0.628265858 -5.63732004 + 0.266667008 -0.252640098 -0.644069195 -0.72204423 -5.37883997 + 0.300000012 -0.259161979 -0.647487938 -0.716655016 -5.63749981 + 0.333332986 -0.421408087 -0.767624199 -0.482875079 -5.87740993 + 0.366667002 -0.783153236 -0.592847228 -0.187625065 -5.95307016 + 0.433333009 0.247229025 0.00811130088 -0.968923092 -5.86254978 + 0.466666996 0.0483353809 -0.941872656 0.332474887 -0.147018999 + 0.5 0.137050986 -0.474851936 -0.869328856 -0.809230983 + 0.56666702 0.610932827 -0.110415973 -0.783944786 -1.44615996 + 0.666666985 0.421644986 -0.111996002 -0.899818003 -1.40149999 + 0.733332992 0.257928938 -0.111031979 -0.959762752 -1.43671989 + 0.800000012 0.0313718058 -0.119310029 -0.992361307 -1.29314995 + 0.93333298 -0.44867903 -0.253097028 -0.857105017 -0.747906923 + 1 -0.568123758 0.457684845 -0.683929801 -0.421714008 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.0859032944 0.501316965 -0.860988915 -0.202737004 + 0.0666666999 -0.813092172 0.235827044 -0.532228112 -0.290854007 + 0.266667008 -0.985320985 -0.0437973998 -0.16499801 -1.90743005 + 0.300000012 -0.987530768 -0.0623788871 -0.144539967 -2.12869 + 0.333332986 -0.987448931 -0.0652540922 -0.14382799 -2.21074009 + 0.366667002 -0.983951092 -0.0900832042 -0.154030025 -2.1064899 + 0.433333009 -0.961539268 -0.258298069 -0.093404226 -1.92020011 + 0.466666996 -0.964580595 -0.251694888 -0.0789556652 -1.48795998 + 0.5 -0.97417438 -0.147049055 -0.171350062 -0.981163979 + 0.56666702 -0.929239571 0.0158897918 -0.369135857 -1.18613994 + 0.666666985 -0.95999366 0.000999547774 -0.280019909 -1.02171004 + 0.733332992 -0.96908462 0.0123000946 -0.246421903 -0.977383912 + 0.800000012 -0.972363651 0.0109199965 -0.233215913 -0.977967978 + 0.93333298 -0.601558149 0.356270075 -0.714982152 -0.255995989 + 1 -0.0859036893 0.501316965 -0.860988855 -0.202737004 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.969834387 -0.191792071 -0.150456056 -1.76050997 + 0.0666666999 -0.967649639 -0.194262922 -0.160984918 -1.73453987 + 0.266667008 0.929903924 0.289180994 0.227273017 -4.94970989 + 0.300000012 0.926280022 0.296204001 0.232956007 -4.96720982 + 0.333332986 0.92483741 0.187016055 0.33121112 -4.8355999 + 0.366667002 0.924915433 0.245502099 0.29027611 -4.85897017 + 0.433333009 -0.688604176 -0.538199127 -0.485969126 -0.779159009 + 0.466666996 -0.660977066 -0.493480057 -0.565320075 -0.76690203 + 0.5 -0.735706985 -0.334136009 -0.589142025 -0.894389987 + 0.56666702 -0.693251967 -0.00365534029 -0.720686018 -1.00159991 + 0.666666985 -0.749414742 -0.154543951 -0.643811882 -0.939101994 + 0.733332992 -0.781670153 -0.194554046 -0.592571139 -0.940070987 + 0.800000012 -0.824576914 -0.305003971 -0.476492941 -0.884939015 + 0.93333298 -0.961998403 -0.206581086 -0.17855908 -1.56028008 + 1 -0.969834387 -0.191792071 -0.150456056 -1.76050997 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.863788724 0.443952858 0.238274902 -0.279033005 + 0.0666666999 0.681588948 0.606985927 0.408661932 -0.162190005 + 0.133332998 -0.350006014 -0.901862085 -0.253259987 -5.97049999 + 0.266667008 -0.281279951 -0.955899835 0.0844811872 -5.5443902 + 0.300000012 -0.396874964 -0.910926819 0.112705983 -5.56566 + 0.333332986 -0.548141003 -0.830084026 -0.102478996 -5.53879023 + 0.366667002 -0.595197856 -0.803578794 -0.000792685838 -5.49752998 + 0.433333009 0.0442295 -0.957843959 0.283863962 -5.71015978 + 0.466666996 0.434427947 0.900705814 -0.00117405981 -0.621324003 + 0.5 0.774360061 0.475558043 0.417385995 -0.819536924 + 0.56666702 0.810686946 0.00471038977 0.585460961 -1.55909002 + 0.666666985 0.863937795 0.0721665919 0.498400927 -1.35862994 + 0.733332992 0.889808178 0.0795642138 0.449345052 -1.25292993 + 0.800000012 0.909187675 0.214984953 0.356593907 -1.01879001 + 0.93333298 0.832437158 0.370340079 0.412185133 -0.272850007 + 1 0.863788247 0.443953156 0.238276079 -0.279032975 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 1.542632e-035 + period 0.666666985 + tightness 7.00649232e-045 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.354299843 -0.934272587 0.0400786884 -0.204768002 + 0.0666666999 0.354299843 -0.934272587 0.040078789 -0.204768002 + 0.233333007 -0.599314809 -0.268043905 0.754303813 -0.219209999 + 0.300000012 -0.589742005 -0.254874974 0.766317904 -0.238691986 + 0.366667002 -0.756245017 -0.19426398 0.624783993 -0.277087957 + 0.56666702 -0.975044727 0.142305955 0.170401961 -0.435651988 + 1 0.354299843 -0.934272647 0.0400782861 -0.204767987 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 -0.970475554 -0.126832947 -0.205159932 -1.18408 + 0.0666666999 -0.974118829 -0.11503198 -0.194576949 -1.17513001 + 0.233333007 -0.926689327 -0.303414047 -0.221781075 -0.986906946 + 0.266667008 -0.926111281 -0.302020103 -0.226057068 -0.974700928 + 0.300000012 -0.925311685 -0.300551921 -0.231228933 -0.96251303 + 0.333332986 -0.925234437 -0.30104214 -0.230900109 -1.00242996 + 0.366667002 -0.927163363 -0.300128132 -0.224257067 -1.03013003 + 0.400000006 -0.932203889 -0.300081968 -0.202352986 -1.07147002 + 0.433333009 -0.927932203 -0.309745044 -0.207364023 -1.02403998 + 0.466666996 -0.940352321 -0.305976093 -0.148715049 -1.20143008 + 0.5 -0.947596133 -0.302327007 -0.103247017 -1.38141 + 0.533333004 -0.926426589 -0.372418821 -0.0551180728 -1.17008996 + 0.56666702 -0.829877257 -0.552818179 -0.0754705146 -0.622741997 + 0.633333027 0.139438957 -0.908840775 -0.393147886 -0.223986998 + 0.666666985 0.249038041 -0.877603173 -0.409625053 -0.193793997 + 0.699999988 0.395103961 -0.819435954 -0.415231973 -0.167101994 + 0.733332992 0.847245216 -0.507427096 -0.15714106 -0.177147999 + 0.766667008 0.981758118 -0.173178017 0.0784884095 -0.266945988 + 0.800000012 0.88865602 -0.353293985 -0.292358994 -0.107028 + 0.866666973 -0.96168524 -0.254307061 -0.102418013 -0.570662975 + 0.93333298 -0.9680143 -0.198205069 -0.153828055 -1.09317005 + 1 -0.970475554 -0.126832947 -0.205159932 -1.18408 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 0.999138832 -0.0321530923 0.0262256935 -0.868246973 + 0.0666666999 0.999185205 -0.030940203 0.0259162039 -0.894333005 + 0.233333007 0.999509037 -0.0208910014 0.023351701 -1.18153989 + 0.266667008 0.999515533 -0.0206470899 0.023289388 -1.19054997 + 0.300000012 0.999521673 -0.0204158928 0.0232304912 -1.19919014 + 0.333332986 0.999473035 -0.0221964996 0.0236850027 -1.13530004 + 0.366667002 0.999401867 -0.0246055983 0.0243000966 -1.05798995 + 0.400000006 0.999044657 -0.0345001891 0.0268243887 -0.821623981 + 0.433333009 0.996662796 -0.0729549825 0.0366175957 -0.430927008 + 0.466666996 0.998906434 -0.0377070159 0.0276422109 -0.765091062 + 0.5 0.999442101 -0.0232700035 0.0239592046 -1.09963 + 0.533333004 0.99973309 -0.0103447996 0.0206583012 -1.71251011 + 0.56666702 0.999687016 -0.0130446991 0.0213478003 -1.54407001 + 0.633333027 0.997955203 -0.0552635081 0.0321154073 -0.55311197 + 0.666666985 0.997395456 -0.0634975284 0.0342113152 -0.488781005 + 0.699999988 0.996447563 -0.0755201653 0.0372692868 -0.417492002 + 0.733332992 0.990469635 -0.128095955 0.0506091863 -0.254108995 + 0.766667008 0.486507833 -0.844282746 0.224714935 -0.0399542041 + 0.800000012 0.996450603 -0.0754840672 0.0372599885 -0.417673975 + 0.866666973 0.999691904 -0.012777199 0.0212794989 -1.55957997 + 0.93333298 0.999706686 -0.0119460961 0.0210672952 -1.60938001 + 1 0.999138832 -0.0321531929 0.0262256935 -0.868246973 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 0.243610024 0.758184135 -0.604823053 -0.210691005 + 0.0666666999 0.125659019 0.770763099 -0.624607086 -0.210199013 + 0.233333007 -0.712000847 0.639844835 -0.289228946 -0.328601986 + 0.266667008 -0.726352036 0.623653054 -0.288911045 -0.339192986 + 0.300000012 -0.740145147 0.608066142 -0.287125021 -0.349518001 + 0.333332986 -0.59016192 0.738201916 -0.326751977 -0.271975994 + 0.366667002 -0.266236931 0.877916753 -0.397969902 -0.219038993 + 0.400000006 0.711366951 0.622937977 -0.325430959 -0.281899959 + 0.433333009 0.942283571 0.281652898 -0.181033939 -0.552193999 + 0.466666996 0.959110677 0.2824049 -0.0188187957 -0.545149982 + 0.5 0.950423419 0.27564311 0.143931076 -0.552073002 + 0.533333004 0.459554017 0.887103021 -0.0431081019 -0.294200957 + 0.56666702 -0.659194171 0.744287252 -0.10723602 -0.367742002 + 0.633333027 -0.906476438 0.320000172 -0.275500149 -0.749995947 + 0.666666985 -0.898820996 0.309642017 -0.310229987 -0.733397007 + 0.699999988 -0.889197826 0.298172951 -0.347015947 -0.713996947 + 0.733332992 -0.855172873 0.266575933 -0.444540977 -0.682909966 + 0.766667008 -0.788413227 0.220303059 -0.574344158 -0.627832949 + 0.800000012 -0.847597718 0.294538885 -0.441389829 -0.648925006 + 0.866666973 -0.86826396 0.435700983 -0.237238988 -0.420076996 + 0.93333298 -0.902881145 0.219814032 -0.369442016 -0.218032002 + 1 0.243610024 0.758184135 -0.604823053 -0.210691005 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 -0.49027279 0.636898756 0.59497273 -0.75959301 + 0.0666666999 -0.452996999 0.656507015 0.603151917 -0.767373025 + 0.233333007 0.0885208026 0.853772998 0.513064981 -0.551387012 + 0.266667008 0.116141975 0.872068822 0.475401908 -0.540149987 + 0.300000012 0.140862048 0.882864237 0.44800511 -0.540437996 + 0.333332986 -0.0216523074 0.923395336 0.38323915 -0.448657006 + 0.366667002 -0.228862971 0.904190958 0.360638946 -0.413456023 + 0.433333009 -0.849262178 0.384555101 0.361761093 -0.553811014 + 0.466666996 -0.912350178 0.155511037 0.378726095 -0.740791023 + 0.5 -0.898985863 0.0125808986 0.43779695 -0.893682003 + 0.56666702 -0.742452323 -0.131965041 0.656772256 -1.02468002 + 0.600000024 -0.74462992 -0.125485003 0.655575931 -1.05855 + 0.633333027 -0.744604826 -0.119866967 0.656654835 -1.09534001 + 0.666666985 -0.78061825 -0.0949145332 0.617759109 -1.10710001 + 0.699999988 -0.812904894 -0.0715237856 0.577987909 -1.11721003 + 0.733332992 -0.854969382 -0.0300502144 0.517807245 -1.11681008 + 0.766667008 -0.87860477 0.00749548711 0.477490842 -1.12372005 + 0.800000012 -0.89520216 0.0453094058 0.44335109 -1.12745011 + 0.866666973 -0.894762814 0.246424958 0.372389942 -0.919537008 + 0.93333298 -0.678757012 0.551982999 0.484358996 -0.694424987 + 1 -0.49027279 0.636898756 0.59497273 -0.75959301 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 1 0 1.49322005e-007 -0.832217991 + 0.0666666999 1 0 0 -0.827219009 + 0.233333007 1 0 4.02359007e-007 -0.742658019 + 0.266667008 1 0 0 -0.739266992 + 0.300000012 1 0 0 -0.735431015 + 0.333332986 1 0 0 -0.832161009 + 0.366667002 1 0 0 -0.911023974 + 0.433333009 1 0 0 -1.1068399 + 0.466666996 1 0 0 -1.09194005 + 0.5 1 0 0 -0.942556024 + 0.56666702 1 0 4.069e-007 -0.59276098 + 0.600000024 1 3.41255003e-007 2.04481992e-007 -0.579940975 + 0.633333027 1 0 -2.98423998e-007 -0.568481982 + 0.666666985 1 0 0 -0.611590981 + 0.699999988 1 1.61665994e-007 4.66333006e-007 -0.645970941 + 0.733332992 1 0 0 -0.727522016 + 0.766667008 1 0 0 -0.794821084 + 0.800000012 1 0 -1.44804005e-007 -0.857195973 + 0.866666973 1 0 0 -1.06522 + 0.93333298 1 0 0 -0.959478974 + 1 1 0 0 -0.832217991 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 -0.763353825 -0.645849824 -0.0129973963 -0.747933984 + 0.0666666999 -0.75935179 -0.650470793 -0.0165098943 -0.763229966 + 0.233333007 -0.754779041 -0.653150082 0.0608565062 -0.849734068 + 0.266667008 -0.753810108 -0.651401043 0.0862962082 -0.85897398 + 0.300000012 -0.752011299 -0.652023256 0.0966679379 -0.865813076 + 0.333332986 -0.774211109 -0.605966032 0.182762995 -0.875241995 + 0.366667002 -0.787729084 -0.575403035 0.21998702 -0.866357923 + 0.433333009 -0.815405071 -0.457371026 0.354861021 -0.703915954 + 0.466666996 -0.781315982 -0.333743989 0.527409017 -0.513799012 + 0.5 -0.552257836 -0.0172556937 0.833494782 -0.310838997 + 0.56666702 0.442800134 0.846966326 0.29423812 -0.250586987 + 0.600000024 0.468199909 0.866102815 0.175084963 -0.255064011 + 0.633333027 0.48102504 0.875582039 0.044396203 -0.262986004 + 0.666666985 0.440251172 0.883109331 0.162163079 -0.236042991 + 0.699999988 0.397060066 0.864885032 0.307110995 -0.21475102 + 0.733332992 0.162212029 0.743678093 0.648560107 -0.18320699 + 0.766667008 -0.145347044 0.534457147 0.832604229 -0.17358698 + 0.800000012 -0.437444031 0.252793998 0.862981975 -0.188522995 + 0.866666973 -0.815700233 -0.415835112 0.40213713 -0.503156066 + 0.93333298 -0.805849731 -0.571549833 0.15471594 -0.726971984 + 1 -0.763353825 -0.645849824 -0.0129969968 -0.747933984 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.729588091 -0.666838169 -0.151750028 -0.111213997 + 0.0666666999 0.729588091 -0.666838169 -0.151750028 -0.111213997 + 0.233333007 0.729588091 -0.666838169 -0.151750028 -0.111213997 + 0.300000012 0.729588091 -0.666838169 -0.151750028 -0.111213997 + 0.366667002 0.729588628 -0.666837633 -0.151749924 -0.111213997 + 0.433333009 -0.549215794 -0.742360771 -0.383747876 -0.125037998 + 0.5 -0.838385999 -0.442108005 -0.318825006 -0.249281004 + 0.56666702 -0.801103294 -0.49616918 -0.334738135 -0.212574989 + 0.633333027 -0.742546916 -0.568285942 -0.354506969 -0.177227005 + 0.699999988 -0.644129992 -0.665113986 -0.377783 -0.144241005 + 0.93333298 0.455632806 -0.847949564 -0.270887882 -0.0932120979 + 1 0.729588091 -0.666838169 -0.151750028 -0.111213997 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.88317728 -0.308781117 0.35306111 -0.165700004 + 0.0666666999 0.883177459 -0.308780819 0.353060812 -0.165700004 + 0.233333007 0.302508056 -0.775001228 0.554853141 -0.0843978003 + 0.300000012 0.302508056 -0.775001228 0.554853141 -0.0843978003 + 0.366667002 -0.151239976 -0.844881773 0.513128877 -0.0821297988 + 0.433333009 -0.343506902 -0.821697831 0.45476988 -0.0867974013 + 0.5 -0.405312121 -0.809509218 0.424755156 -0.089079693 + 0.56666702 0.679176927 -0.543146968 0.493669987 -0.108825997 + 0.633333027 0.878237307 -0.297246128 0.374625087 -0.167522997 + 0.699999988 0.805424511 -0.415339291 0.4228293 -0.132281005 + 0.93333298 0.939493895 -0.185553998 0.287959993 -0.213257998 + 1 0.883177459 -0.308780819 0.353060812 -0.165700004 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.30194211 -0.0873026326 0.949320376 -0.138494 + 0.0666666999 -0.301940948 -0.0873024836 0.949320793 -0.138494 + 0.233333007 0.380343944 0.0593020916 0.922941923 -0.157345995 + 0.300000012 0.380343944 0.0593020916 0.922941923 -0.157345995 + 0.366667002 -0.553930819 -0.131214961 0.822157681 -0.150440007 + 0.433333009 -0.900906563 -0.196133897 0.387167782 -0.254988015 + 0.5 -0.910932124 -0.198870048 0.36146003 -0.265935957 + 0.56666702 0.813313246 0.171849057 0.555868208 -0.354235023 + 0.633333027 0.713667989 0.152538016 0.683674037 -0.253315002 + 0.699999988 0.687005222 0.145467043 0.711943209 -0.238389015 + 0.93333298 0.54142189 0.145017967 0.828149855 -0.180311993 + 1 -0.30194211 -0.0873026326 0.949320376 -0.138494 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.193270966 -0.962928891 0.188186973 -0.220416993 + 0.0666666999 0.19327192 -0.962928653 0.188186929 -0.220416978 + 0.233333007 0.686431825 -0.693279743 0.219486937 -0.195628002 + 0.300000012 0.686431825 -0.693279803 0.219486907 -0.195629016 + 0.366667002 0.606975257 -0.763970315 0.218930081 -0.195002005 + 0.433333009 -0.58454299 -0.767019987 0.264555991 -0.259635001 + 0.5 -0.779365242 -0.591956198 0.205372065 -0.385820031 + 0.56666702 -0.825192094 -0.45658502 0.332548022 -0.317090988 + 0.633333027 -0.843377948 -0.446814954 0.29844597 -0.34503299 + 0.699999988 -0.843377948 -0.446814954 0.29844597 -0.34503299 + 0.93333298 -0.0714274421 -0.974347472 0.213413104 -0.222589001 + 1 0.193270966 -0.962928891 0.188186973 -0.220416993 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.374855995 0.927082121 0.00129405013 -0.356402993 + 0.0666666999 0.374856949 0.927081764 0.00129400962 -0.356402993 + 0.233333007 0.374856949 0.927081764 0.00129404967 -0.356402993 + 0.300000012 0.374856949 0.927081764 0.00129401963 -0.356402993 + 0.366667002 0.294703066 0.955587268 0.00175703049 -0.338149995 + 0.433333009 0.24151805 0.970396161 0.000555896142 -0.328426033 + 0.5 -0.161200926 0.986793637 -0.0158944931 -0.293904006 + 0.56666702 -0.581725955 0.812460899 -0.038757395 -0.316805989 + 0.633333027 -0.0726145804 0.996535659 -0.0405442864 -0.296249002 + 0.699999988 -0.0726145804 0.996535659 -0.0405443832 -0.296249002 + 0.93333298 0.314265877 0.949314773 -0.006196348 -0.343928993 + 1 0.374855995 0.927082121 0.00129404012 -0.356402993 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.799692214 -0.24510707 -0.548101187 -0.328159004 + 0.0666666999 0.799692571 -0.245106876 -0.54810071 -0.328159004 + 0.233333007 0.799693465 -0.245107144 -0.548099279 -0.328159988 + 0.300000012 0.799693823 -0.245106936 -0.548098862 -0.328159988 + 0.366667002 0.761038721 -0.281104892 -0.584636748 -0.302888989 + 0.433333009 -0.582233071 -0.551200032 -0.597648084 -0.250750005 + 0.5 -0.582735181 -0.549698174 -0.59854126 -0.252005011 + 0.56666702 0.869313121 -0.184808016 -0.458411038 -0.370795995 + 0.633333027 0.888856828 -0.108672984 -0.445110917 -0.498609006 + 0.699999988 0.888856828 -0.108672984 -0.445110917 -0.498609006 + 0.93333298 0.787569642 -0.248440906 -0.563924789 -0.318834007 + 1 0.799692214 -0.24510707 -0.548101187 -0.328159004 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.297109962 -0.401261926 -0.866437852 -1.41621006 + 0.0666666999 -0.299718082 -0.400806129 -0.865750253 -1.41488993 + 0.233333007 -0.247023031 -0.236734033 -0.939647079 -1.30034006 + 0.300000012 -0.247023031 -0.236734033 -0.939647079 -1.30034006 + 0.366667002 -0.247023031 -0.236734033 -0.939647079 -1.30034006 + 0.433333009 -0.247022018 -0.236735031 -0.939647079 -1.30034006 + 0.5 -0.247021064 -0.236735091 -0.939647317 -1.30034018 + 0.56666702 -0.247021034 -0.236736029 -0.939647079 -1.30034006 + 0.633333027 -0.247019082 -0.236737087 -0.939647317 -1.30034018 + 0.699999988 -0.247021034 -0.236736029 -0.939647079 -1.30034006 + 0.93333298 -0.281571984 -0.348446965 -0.894036889 -1.37893999 + 1 -0.297109962 -0.401261926 -0.866437852 -1.41621006 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.826811075 0.561079979 0.0396566987 -0.377992034 + 0.0666666999 0.832548201 0.552825093 0.0353260115 -0.465250999 + 0.233333007 0.764852107 0.643620133 -0.0274660047 -0.206964985 + 0.300000012 0.767988026 0.639792025 -0.0293355994 -0.206755996 + 0.366667002 0.789538264 0.613517165 0.0150351049 -0.205311984 + 0.433333009 0.204422936 0.956818759 -0.206661955 -0.317418009 + 0.5 -0.0584961176 0.960322261 -0.272689074 -0.491308004 + 0.56666702 -0.00946074072 0.969763041 -0.243865013 -0.439045966 + 0.633333027 0.0572975948 0.972686946 -0.224938005 -0.38844201 + 0.699999988 0.17700699 0.966418803 -0.186287984 -0.324975014 + 0.93333298 0.865291119 0.496637046 0.0679921061 -0.294988006 + 1 0.826811075 0.561079979 0.0396566987 -0.377992034 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.846877158 0.432152122 0.309909046 -0.133323997 + 0.0666666999 0.846877694 0.432151854 0.309907883 -0.133323997 + 0.233333007 0.932322383 0.127667055 0.338343143 -0.145344988 + 0.300000012 0.932322502 0.127666935 0.338342816 -0.145345002 + 0.366667002 0.420659035 0.895922124 0.142721996 -0.156623006 + 0.433333009 0.187571913 0.980860651 0.0522414818 -0.194497004 + 0.5 -0.123150043 0.989751339 -0.0722931251 -0.322100997 + 0.56666702 -0.0674445033 0.996401012 -0.0513448007 -0.285066009 + 0.633333027 0.00475193094 0.999699295 -0.0240571052 -0.249336004 + 0.699999988 0.932628036 0.120179012 0.340238035 -0.149923995 + 0.93333298 0.947402596 -0.079854168 0.30992189 -0.170113981 + 1 0.846877158 0.432152122 0.309909046 -0.133323997 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.705714107 0.232064039 0.66941309 -0.234348983 + 0.0666666999 -0.705714107 0.232064039 0.66941309 -0.234348983 + 0.233333007 -0.705714107 0.232064039 0.66941309 -0.234348983 + 0.300000012 -0.705714107 0.232064039 0.66941309 -0.234348983 + 0.366667002 -0.705714107 0.232064039 0.66941309 -0.234348983 + 0.433333009 -0.876884043 0.206512004 0.434082031 -0.405574977 + 0.5 -0.950402319 0.0373864062 0.308768064 -0.613349974 + 0.56666702 -0.967403173 0.0470548123 0.248831064 -0.815768003 + 0.633333027 -0.967403173 0.0470548123 0.248831064 -0.815768003 + 0.699999988 -0.960455954 0.0526700951 0.273404956 -0.719065011 + 0.93333298 -0.851207972 0.153771982 0.501796007 -0.33137098 + 1 -0.705714107 0.232064039 0.66941309 -0.234348983 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.3512851 0.933505177 0.0718806162 -0.0578873008 + 0.0666666999 -0.351283938 0.933505833 0.0718780905 -0.0578872003 + 0.233333007 0.633319974 0.767471135 -0.0994679183 -0.10399501 + 0.300000012 0.633321226 0.767470181 -0.0994676203 -0.103995003 + 0.366667002 -0.00755232247 0.609354138 -0.792862236 -0.169027001 + 0.433333009 -0.947696924 0.292875975 -0.126862988 -0.447701991 + 0.5 -0.998030365 -0.0221002065 0.058711417 -0.474296033 + 0.56666702 -0.959210038 -0.264507025 0.0997602046 -0.253394008 + 0.633333027 -0.949674487 -0.30799216 -0.0570897274 -0.172530994 + 0.699999988 -0.908561707 -0.378202915 0.177420944 -0.264476001 + 0.833333015 -0.994379282 0.105334021 0.0107028028 -0.203270018 + 0.93333298 -0.990843415 -0.125415057 -0.0500036217 -0.0555174015 + 1 -0.3512851 0.933505237 0.0718801171 -0.0578873008 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.271447957 -0.551713943 -0.788623929 -0.369426996 + 0.0666666999 0.271447957 -0.551713943 -0.788623929 -0.369426996 + 0.233333007 -0.00343391905 -0.611978769 -0.790866733 -0.358020991 + 0.300000012 -0.00343375909 -0.611978769 -0.790866733 -0.358020991 + 0.366667002 -0.437635183 -0.571499228 -0.694164276 -0.380873024 + 0.433333009 0.197702035 -0.779989123 -0.593743086 -0.483260989 + 0.5 -0.243863001 -0.652822018 -0.717184961 -0.430408001 + 0.56666702 -0.242442891 -0.491446763 -0.836481631 -0.388479024 + 0.633333027 0.271105915 -0.507955849 -0.81760776 -0.377750039 + 0.699999988 0.592285991 -0.264857024 -0.760952055 -0.468555033 + 0.833333015 0.807339191 -0.313446015 -0.499955058 -0.615567982 + 0.93333298 0.40098384 -0.313867867 -0.860638678 -0.363186002 + 1 0.271447957 -0.551713943 -0.788623929 -0.369426996 +endnode +doneanim 2hcloseh a_dfa2_coat + +#MAXANIM ASCII +newanim 2hclosel a_dfa2_coat + length 1 + transtime 0.400000006 + animroot rootdummy + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 14 + 0 0.000247613003 -0.0325528011 1.02807999 + 0.0666666999 0.000248328986 -0.0302597005 1.03759003 + 0.166666999 0.000248328986 -0.0303376 1.07298994 + 0.233333007 0.000248327997 -0.0303895008 1.09660006 + 0.300000012 0.000248327997 -0.0304083992 1.10520005 + 0.366667002 0.000248400989 -0.135569006 1.07635999 + 0.433333009 0.00024832401 -0.255524993 1.00682998 + 0.5 0.000248322991 -0.300709009 0.965287983 + 0.56666702 0.000248322991 -0.345892012 0.923741996 + 0.633333027 0.000248172 -0.370146006 0.888531983 + 0.699999988 0.000248097 -0.378136992 0.870926976 + 0.733332992 0.000248097 -0.378136992 0.870926976 + 0.800000012 0.0002484 -0.291162014 0.910134017 + 1 0.000247613003 -0.0325528011 1.02807999 + orientationkey 13 + 0 0.627492011 0.351855993 0.694586992 -0.325186014 + 0.0666666999 0.549782813 0.411312848 0.727021754 -0.282252014 + 0.233333007 -0.681037366 0.616618335 0.394930243 -0.202588007 + 0.300000012 -0.789848566 0.551039755 0.26924786 -0.228719994 + 0.366667002 0.56966114 0.665491223 0.482294142 -0.120328993 + 0.433333009 0.980737507 0.102418952 0.166325942 -0.323796004 + 0.5 0.993053854 0.0209924001 0.115772985 -0.445084006 + 0.56666702 0.99593842 -0.0258840099 0.0862364396 -0.568687022 + 0.633333027 0.996330142 -0.0258560032 0.0815948099 -0.599112988 + 0.699999988 0.996666431 -0.025830213 0.0773877352 -0.62954998 + 0.733332992 0.996666431 -0.025830213 0.0773877352 -0.62954998 + 0.800000012 0.983711243 0.0318103023 0.176919028 -0.530777037 + 1 0.627492011 0.351855993 0.694586992 -0.325186014 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.89460212 -0.386452049 0.224370033 -0.255903006 + 0.233333007 -0.79519707 -0.457619071 0.397802025 -0.18835701 + 0.300000012 -0.833078802 -0.413397908 0.367534906 -0.206533 + 0.366667002 -0.51414597 -0.66971302 0.535852969 -0.133074999 + 0.400000006 0.884267807 -0.402416945 0.23691994 -0.244932011 + 0.5 0.988371074 -0.146954 0.0390787013 -0.769621968 + 0.533333004 0.989023447 -0.142001078 0.040845219 -0.791063011 + 0.56666702 0.989617467 -0.137292042 0.0425229184 -0.812523007 + 0.633333027 0.990329385 -0.131361037 0.0446320139 -0.84116298 + 0.666666985 0.990654409 -0.128535047 0.0456357151 -0.855494022 + 0.733332992 0.986175358 -0.153399065 0.0626650229 -0.702570081 + 0.800000012 0.977574885 -0.191068977 0.0885435864 -0.550561011 + 0.899999976 0.936344922 -0.307610959 0.169214979 -0.327071011 + 1 0.894602299 -0.386452138 0.224369079 -0.255903006 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.373683989 0.0691896901 0.924971938 -1.23453999 + 0.100000001 -0.828902781 -0.15045397 0.538779855 -1.59810996 + 0.166666999 -0.922122657 -0.189612925 0.337248862 -2.07698989 + 0.233333007 -0.910382986 -0.236248985 0.33968997 -2.1770699 + 0.300000012 -0.881789327 -0.305932134 0.358961135 -2.26812005 + 0.366667002 -0.879114151 -0.335601062 0.338423103 -2.22494006 + 0.400000006 -0.920895755 -0.270579934 0.280601978 -2.26044011 + 0.5 -0.864391625 0.156759948 0.477758795 -1.10737002 + 0.533333004 -0.875900745 0.14337495 0.460696816 -1.13814008 + 0.56666702 -0.878934801 0.148948967 0.453086942 -1.14460003 + 0.633333027 -0.852799892 0.17113398 0.493401945 -1.09461999 + 0.666666985 -0.839207292 0.170712054 0.516322136 -1.08992004 + 0.733332992 -0.866330266 0.199252039 0.458007157 -1.04588997 + 0.766667008 -0.858046889 0.220753968 0.463705927 -0.974454999 + 0.800000012 -0.872735441 0.266002119 0.40936017 -0.898410976 + 0.899999976 -0.599337041 0.291952997 0.74535805 -0.762297928 + 1 -0.373683989 0.0691896006 0.924971938 -1.23453999 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -1 0 0 -0.809759021 + 0.100000001 -1 -4.32296019e-007 1.57692995e-007 -0.610047996 + 0.166666999 1 1.37181999e-007 0 -5.7016201 + 0.233333007 1 -2.59688989e-007 0 -5.71073008 + 0.300000012 1 0 0 -5.66987991 + 0.366667002 1 -2.0687898e-007 2.25234984e-007 -5.78330994 + 0.400000006 -1 -6.18253011e-007 0 -0.388339996 + 0.5 -1 0 0 -1.05399001 + 0.533333004 -1 0 0 -0.920316041 + 0.56666702 -1 0 0 -1.01616001 + 0.633333027 -1 0 0 -1.34082997 + 0.666666985 -1 0 0 -1.43342996 + 0.733332992 -1 0 0 -1.12749004 + 0.766667008 -1 0 0 -0.895551085 + 0.800000012 -1 0 0 -0.668930948 + 0.899999976 -1 0 0 -0.93384999 + 1 -1 2.49094001e-007 1.9510999e-007 -0.809759021 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.568123758 0.457684845 -0.683929801 -0.421714008 + 0.100000001 0.39049983 -0.905101597 0.168228924 -5.73203993 + 0.166666999 0.23841694 -0.971159756 -0.00246234937 -5.84057999 + 0.233333007 0.251730978 -0.873476863 0.416736931 -5.90716982 + 0.300000012 0.318946958 -0.369718969 0.872685909 -5.93410015 + 0.366667002 0.727541149 -0.00330171036 0.686056077 -5.83061981 + 0.400000006 0.632340193 -0.188785061 0.751336157 -5.83155012 + 0.5 0.852061152 -0.0437936112 -0.521607101 -1.14605999 + 0.533333004 0.806679785 0.0399374887 -0.589637816 -1.00755 + 0.56666702 0.827208102 0.0713749081 -0.557344079 -0.934831917 + 0.633333027 0.892399192 0.0505178086 -0.448410094 -1.07389998 + 0.666666985 0.896554232 0.0490009189 -0.440215141 -1.13015997 + 0.733332992 0.807174861 0.239494964 -0.539546967 -1.03354001 + 0.766667008 0.683137953 0.367481947 -0.631093919 -0.901349008 + 0.800000012 0.55478096 0.556750894 -0.61826092 -0.806671917 + 0.899999976 0.0505321957 0.998463929 0.0227227975 -0.574321985 + 1 -0.568124056 0.45768407 -0.683930039 -0.421713978 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.0859032944 0.501316965 -0.860988915 -0.202737004 + 0.166666999 -0.974353611 0.101139955 -0.201011911 -1.88327003 + 0.233333007 -0.981918693 0.00640328834 -0.189194947 -1.89807999 + 0.300000012 -0.985208929 -0.00779976975 -0.17117998 -1.93400002 + 0.366667002 -0.974179387 -0.0429061167 -0.221661076 -1.94410002 + 0.400000006 -0.971860349 -0.0148815066 -0.235087097 -2.27529001 + 0.5 -0.87951225 0.0959481224 -0.466103107 -1.68227994 + 0.533333004 -0.878868341 0.103020042 -0.465808183 -1.70166016 + 0.56666702 -0.894948781 0.0652902871 -0.441365898 -1.64109004 + 0.633333027 -0.882112741 0.0943278745 -0.46149689 -1.63101995 + 0.666666985 -0.879008114 0.105824023 -0.464915067 -1.63379002 + 0.733332992 -0.930737436 -0.0696958303 -0.358985186 -1.48479998 + 0.766667008 -0.939211369 -0.172210038 -0.297028124 -1.35055995 + 0.800000012 -0.946341872 -0.25165996 -0.202741951 -1.34938014 + 0.899999976 -0.696568251 -0.648841262 -0.306264102 -0.482591987 + 1 -0.0859033316 0.50131619 -0.860989332 -0.202737018 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.969834387 -0.191792071 -0.150456056 -1.76050997 + 0.166666999 -0.940747261 -0.290500015 -0.174941048 -1.17470002 + 0.233333007 0.946868837 0.255280942 0.195629954 -5.03517008 + 0.300000012 0.950997651 0.236545905 0.199121922 -4.97670984 + 0.366667002 -0.927819014 -0.284521043 -0.241246015 -1.05601001 + 0.400000006 -0.811436236 -0.427794158 -0.398200154 -0.654887021 + 0.5 -0.788541138 -0.0136678023 -0.614830077 -0.621478975 + 0.533333004 -0.717105865 -0.0439062938 -0.695579886 -0.569866002 + 0.56666702 -0.825773656 0.0214965921 -0.563591778 -0.739303946 + 0.633333027 -0.902120352 0.085941337 -0.422839165 -1.03893006 + 0.666666985 -0.912214279 0.0996227339 -0.397417158 -1.13007998 + 0.733332992 -0.863024235 -0.127114043 -0.488908172 -0.848487914 + 0.766667008 -0.799785316 -0.305002123 -0.517027199 -0.661337018 + 0.800000012 -0.298363984 -0.764553964 -0.571345925 -0.417872995 + 0.899999976 -0.959805071 -0.211722001 -0.184249997 -1.47618997 + 1 -0.969834387 -0.191792071 -0.150456056 -1.76050997 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.863788247 0.443953156 0.238276079 -0.279032975 + 0.166666999 -0.0626975149 -0.974781275 -0.214174062 -5.5369401 + 0.233333007 -0.28045103 -0.958144069 -0.0575076081 -5.58104992 + 0.300000012 -0.362491071 -0.931975186 0.0047405907 -5.60785007 + 0.366667002 0.129733056 -0.983496487 0.12611106 -5.63176012 + 0.400000006 0.140234977 -0.980496943 -0.13769497 -5.58463001 + 0.5 0.772603095 0.185190022 0.607280076 -1.42930996 + 0.533333004 0.726154864 0.208012953 0.655308902 -1.35241997 + 0.56666702 0.781122744 0.282216907 0.556956828 -1.30853999 + 0.633333027 0.840511918 0.259992957 0.475334972 -1.50604999 + 0.666666985 0.857040823 0.245333955 0.45309189 -1.58240986 + 0.733332992 0.8545838 0.367604911 0.366814911 -1.30053997 + 0.766667008 0.828474045 0.492747068 0.266141027 -1.08102 + 0.800000012 0.66741097 0.723690987 0.175595999 -0.884768009 + 0.899999976 0.743091345 0.473390251 -0.472987235 -0.505131006 + 1 0.863788247 0.443953156 0.238276079 -0.279032975 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 1.54431489e-035 + period 9.77135172e-038 + tightness 1.19386565e-039 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.354299843 -0.934272587 0.0400785878 -0.204768002 + 0.0666666999 0.354301035 -0.93427217 0.040078707 -0.204768002 + 0.233333007 0.840033233 -0.48401615 0.245097071 -0.0900762901 + 0.300000012 0.858787 -0.456310958 0.232948989 -0.0972161964 + 0.433333009 -0.994956732 -0.0732979849 0.0684729815 -0.491994023 + 0.5 -0.99666363 -0.056302283 0.0590903759 -0.607872009 + 0.733332992 -0.99666363 -0.056302283 0.0590903759 -0.607872009 + 1 0.354299843 -0.934272647 0.0400783867 -0.204767987 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 -0.970475554 -0.126832947 -0.205159932 -1.18408 + 0.0666666999 -0.972907066 -0.123497002 -0.19544901 -1.11584997 + 0.166666999 -0.961659253 -0.230913043 -0.14795503 -0.914450049 + 0.233333007 -0.931951702 -0.342156887 -0.119977959 -0.782553017 + 0.300000012 -0.927372336 -0.357511133 -0.11030104 -0.727441013 + 0.366667002 -0.940572143 -0.284518033 -0.185401008 -0.788034022 + 0.400000006 -0.94133532 -0.242169067 -0.235036075 -0.864950061 + 0.433333009 -0.924986422 -0.202871099 -0.321315169 -0.942933977 + 0.5 -0.922485948 -0.162331983 -0.350239933 -1.04618001 + 0.533333004 -0.910643756 -0.115111969 -0.396833926 -1.15350997 + 0.56666702 -0.902803719 -0.0694263801 -0.424411863 -1.24725997 + 0.600000024 -0.907808304 -0.0614361167 -0.414861113 -1.29100001 + 0.633333027 -0.912472963 -0.0532882921 -0.405651957 -1.33239985 + 0.666666985 -0.91575557 -0.0482669771 -0.398825824 -1.35922003 + 0.699999988 -0.923491001 -0.0469277017 -0.380739003 -1.38039994 + 0.733332992 -0.929902792 -0.0518245958 -0.364135951 -1.37287998 + 0.766667008 -0.960194111 -0.0961581245 -0.262261063 -1.35452998 + 0.800000012 -0.975238502 -0.126073942 -0.181700915 -1.34045005 + 0.866666973 -0.979452729 -0.146508962 -0.138590962 -1.31116998 + 0.899999976 -0.977588356 -0.146732062 -0.150966063 -1.29050004 + 0.93333298 -0.975640893 -0.143878981 -0.165600985 -1.26077998 + 1 -0.970475554 -0.126832947 -0.205159932 -1.18408 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 0.999138832 -0.0321530923 0.0262257941 -0.868246973 + 0.0666666999 0.999107838 -0.0329418927 0.0264268927 -0.852030993 + 0.166666999 0.999006093 -0.0354207046 0.0270590037 -0.804602981 + 0.233333007 0.998901367 -0.0378199145 0.0276710093 -0.763234019 + 0.300000012 0.998817861 -0.0396396965 0.0281345956 -0.734456956 + 0.366667002 0.998632669 -0.0434271842 0.0291001908 -0.680772007 + 0.400000006 0.998711467 -0.0418543182 0.0286994129 -0.702121973 + 0.433333009 0.998687029 -0.0423480012 0.0288252998 -0.695285976 + 0.5 0.99876982 -0.0406529903 0.0283930916 -0.719310999 + 0.533333004 0.998619378 -0.0436880141 0.0291668121 -0.677349985 + 0.56666702 0.99836278 -0.0484627895 0.0303835906 -0.620113015 + 0.600000024 0.9983989 -0.047816392 0.0302186962 -0.627309024 + 0.633333027 0.99841094 -0.0476002954 0.0301635955 -0.62974906 + 0.666666985 0.998417616 -0.0474797823 0.0301328916 -0.631115019 + 0.699999988 0.998420775 -0.0474220887 0.0301185921 -0.631772995 + 0.733332992 0.998419583 -0.047443483 0.0301238894 -0.631528974 + 0.766667008 0.998755097 -0.0409587063 0.0284711029 -0.714861929 + 0.800000012 0.998946726 -0.0367979892 0.0274103917 -0.780341983 + 0.866666973 0.999127269 -0.0324493088 0.026301207 -0.862092972 + 0.899999976 0.999168694 -0.0313771889 0.0260277912 -0.884764016 + 0.93333298 0.999180734 -0.031057993 0.0259462949 -0.891735971 + 1 0.999138832 -0.0321531929 0.0262256935 -0.868246973 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 0.243610993 0.758183956 -0.604822934 -0.210691005 + 0.0666666999 0.230741978 0.768145978 -0.597251952 -0.208935991 + 0.166666999 0.23526597 0.888867915 -0.393145949 -0.192726001 + 0.233333007 0.231742948 0.950188816 -0.208413973 -0.187169984 + 0.300000012 0.267014921 0.944493711 -0.191401944 -0.187269002 + 0.366667002 0.824657381 0.560661197 0.0748277307 -0.245509997 + 0.400000006 0.907554328 0.357059181 0.221029088 -0.297852993 + 0.433333009 0.915094972 0.14591302 0.375912994 -0.383302957 + 0.5 0.912292063 0.0375940986 0.407811046 -0.450422019 + 0.533333004 0.886756778 -0.0537130907 0.459104896 -0.535731971 + 0.56666702 0.875975311 -0.106556036 0.470439196 -0.622689009 + 0.600000024 0.881420672 -0.117296949 0.457535833 -0.64497 + 0.633333027 0.887562037 -0.126476005 0.442986995 -0.669178009 + 0.666666985 0.891052544 -0.129750937 0.434959769 -0.680189013 + 0.699999988 0.904670417 -0.120431058 0.408739209 -0.685541987 + 0.733332992 0.918430209 -0.102875024 0.381972104 -0.677743912 + 0.766667008 0.974816084 0.0350992046 0.220231012 -0.551886916 + 0.800000012 0.980919838 0.192573965 0.0266745947 -0.464154005 + 0.866666973 0.875671387 0.425200164 -0.228920087 -0.342290014 + 0.899999976 0.789973259 0.526970148 -0.313440114 -0.28816098 + 0.93333298 0.654359162 0.63117218 -0.416456163 -0.248246998 + 1 0.243610024 0.758184135 -0.604823053 -0.210691005 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 -0.49027279 0.636898756 0.59497273 -0.75959301 + 0.0666666999 -0.381084025 0.660263002 0.647168994 -0.758405983 + 0.166666999 0.0845255703 0.580723822 0.809700727 -0.72141701 + 0.233333007 0.445755124 0.434160084 0.782820165 -0.763844013 + 0.300000012 0.554211736 0.389291853 0.735731781 -0.793585002 + 0.366667002 0.246290922 0.62051475 0.744514763 -0.511187971 + 0.400000006 0.111272946 0.742971659 0.660008669 -0.548246026 + 0.433333009 0.0672746897 0.819394946 0.569267929 -0.569966018 + 0.5 0.343385816 0.79571557 0.498921722 -0.723372042 + 0.533333004 0.295375079 0.817951322 0.493669152 -0.716709077 + 0.56666702 0.234450042 0.835798204 0.496462047 -0.721751988 + 0.633333027 0.233488962 0.87089783 0.432457894 -0.679524004 + 0.666666985 0.225757957 0.878060818 0.421950936 -0.672755957 + 0.699999988 0.217827022 0.885162115 0.411144018 -0.666128993 + 0.733332992 0.129935041 0.899152219 0.417902082 -0.630904019 + 0.766667008 0.0315709077 0.889305174 0.45622313 -0.628996074 + 0.800000012 -0.0667291209 0.869567275 0.489285141 -0.633706987 + 0.866666973 -0.251637936 0.805144727 0.537047803 -0.662222981 + 0.899999976 -0.653725088 0.651393056 0.385137051 -0.708410978 + 0.93333298 -0.671073854 0.598341882 0.437774897 -0.722772002 + 1 -0.49027279 0.636898756 0.59497273 -0.75959301 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 1 0 0 -0.832217991 + 0.0666666999 1 0 0 -0.785284996 + 0.166666999 1 -2.02577993e-007 0 -0.533663988 + 0.233333007 1 0 2.12263004e-007 -0.257178992 + 0.300000012 1 3.51331977e-007 7.77508944e-007 -0.128367007 + 0.366667002 1 0 0 -0.695896983 + 0.400000006 1 0 0 -0.945398986 + 0.433333009 1 0 0 -1.11861002 + 0.5 1 0 0 -1.00967002 + 0.533333004 1 0 0 -1.03828001 + 0.56666702 1 0 0 -1.06937003 + 0.633333027 1 0 1.92764006e-007 -1.16102004 + 0.666666985 1 0 0 -1.17964995 + 0.699999988 1 0 0 -1.19828999 + 0.733332992 1 0 0 -1.23774004 + 0.766667008 1 0 0 -1.18910003 + 0.800000012 1 0 0 -1.14046001 + 0.866666973 1 0 0 -1.04317999 + 0.899999976 1 0 0 -1.23783004 + 0.93333298 1 0 0 -1.11950004 + 1 1 0 0 -0.832217991 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 -0.763353825 -0.645849824 -0.0129969968 -0.747933984 + 0.0666666999 -0.751736104 -0.658557057 -0.0345753022 -0.738844991 + 0.166666999 -0.699247956 -0.714425862 -0.0254560951 -0.662911057 + 0.233333007 -0.601910055 -0.794054091 0.0847490057 -0.57774502 + 0.300000012 -0.533524156 -0.824399173 0.188992053 -0.545920014 + 0.366667002 -0.753274083 -0.573924065 0.321231008 -0.722252071 + 0.400000006 -0.822069943 -0.568768024 0.0265319999 -0.766700923 + 0.433333009 -0.840388894 -0.513809919 -0.172469988 -0.845569015 + 0.5 -0.816116273 -0.510349154 -0.271105081 -0.952301979 + 0.533333004 -0.821511984 -0.493562996 -0.28550598 -0.986513019 + 0.56666702 -0.822736263 -0.473196149 -0.314945102 -1.03158009 + 0.633333027 -0.827954233 -0.452144146 -0.331749082 -1.10231996 + 0.666666985 -0.821634352 -0.443110138 -0.358567148 -1.12177002 + 0.699999988 -0.814852238 -0.434001118 -0.384264112 -1.14194989 + 0.733332992 -0.84102875 -0.425200909 -0.334476918 -1.16764998 + 0.766667008 -0.843142033 -0.43878004 -0.310779005 -1.11985016 + 0.800000012 -0.844711125 -0.453059107 -0.284957051 -1.07277 + 0.866666973 -0.845543206 -0.483786047 -0.225849032 -0.981216967 + 0.899999976 -0.903921068 -0.397350967 -0.158236995 -0.857891023 + 0.93333298 -0.826887071 -0.545336008 0.137355 -0.846535921 + 1 -0.763353825 -0.645849824 -0.0129966969 -0.747933984 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.729588091 -0.666838169 -0.151750028 -0.111213997 + 0.0666666999 0.901170969 -0.427515 -0.0715667903 -0.148245007 + 0.166666999 0.988467395 -0.150890052 0.0128226057 -0.295745969 + 0.233333007 0.99376148 -0.108242057 0.0268652122 -0.389149964 + 0.300000012 0.992552102 -0.119516023 0.0235837065 -0.372592986 + 0.433333009 0.332007825 -0.730001628 -0.597384691 -0.0821712986 + 0.5 -0.4409841 -0.645456135 -0.62363404 -0.0987113938 + 0.633333027 -0.725780189 -0.471849114 -0.500601113 -0.144656003 + 0.699999988 -0.606525064 -0.591356993 -0.531436026 -0.117294997 + 0.733332992 -0.514408052 -0.663277984 -0.543550074 -0.105402999 + 0.866666973 0.163860023 -0.877082169 -0.451527119 -0.082166411 + 1 0.729588091 -0.666838169 -0.151750028 -0.111213997 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.88317728 -0.308781117 0.35306111 -0.165700004 + 0.0666666999 0.883177757 -0.308780968 0.353059918 -0.165700004 + 0.166666999 0.883177757 -0.308780968 0.353059918 -0.165700004 + 0.233333007 0.883177757 -0.308780968 0.353059918 -0.165700004 + 0.300000012 0.883178353 -0.308780134 0.353059143 -0.165701017 + 0.366667002 0.541668832 -0.594269812 0.594506741 -0.0894623026 + 0.433333009 -0.394107819 -0.687775731 0.609625757 -0.0795520991 + 0.5 -0.496808201 -0.657909214 0.565983236 -0.083391808 + 0.633333027 -0.65558815 -0.587205112 0.474757135 -0.0939394012 + 0.866666973 0.904119849 -0.237766951 0.355012923 -0.165912017 + 1 0.883177459 -0.308780819 0.353060812 -0.165700004 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.30194211 -0.0873025358 0.949320376 -0.138494 + 0.0666666999 -0.301943034 -0.0873024091 0.949320138 -0.138494015 + 0.166666999 -0.301943034 -0.0873024091 0.949320138 -0.138494015 + 0.233333007 -0.30194211 -0.0873024315 0.949320436 -0.138494 + 0.300000012 -0.30194211 -0.0873025358 0.949320376 -0.138494 + 0.366667002 -0.561354876 -0.111291975 0.820057809 -0.152938992 + 0.433333009 -0.851451159 -0.130821034 0.507855117 -0.215578005 + 0.5 -0.940838754 -0.131706968 0.312210947 -0.298904002 + 0.633333027 -0.719315708 -0.0790702701 0.690168679 -0.169499993 + 0.866666973 0.798088014 0.162303001 0.580269992 -0.286469996 + 1 -0.30194211 -0.0873026326 0.949320376 -0.138494 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.193270966 -0.962928891 0.188186973 -0.220416993 + 0.0666666999 0.422936916 -0.894147873 0.147050977 -0.223087981 + 0.166666999 0.820253134 -0.571955144 0.00721675204 -0.305000037 + 0.233333007 0.919275701 -0.388356924 -0.0641175807 -0.420001 + 0.300000012 0.934558272 -0.346364111 -0.081441924 -0.465469956 + 0.366667002 0.511764228 -0.856863439 0.0623088293 -0.222514004 + 0.433333009 -0.381450146 -0.910828292 0.157758072 -0.227164 + 0.5 -0.321063131 -0.932741344 0.164049059 -0.222533017 + 0.633333027 -0.189817965 -0.966090858 0.175035983 -0.216188997 + 0.699999988 -0.120387994 -0.976370871 0.179461986 -0.214561999 + 0.733332992 -0.0851177275 -0.979726434 0.181359053 -0.214148 + 0.866666973 0.0566296726 -0.980793536 0.186646909 -0.215175003 + 1 0.193270966 -0.962928891 0.188186973 -0.220416993 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.374855995 0.927082121 0.00129405013 -0.356402993 + 0.0666666999 0.374856949 0.927081764 0.00129402964 -0.356402993 + 0.166666999 0.374856949 0.927081764 0.00129401963 -0.356402993 + 0.233333007 0.471061796 0.881457627 -0.0336638838 -0.298902005 + 0.300000012 0.599199772 0.796257734 -0.0832659751 -0.246785015 + 0.366667002 0.393811971 0.91869092 -0.0303169005 -0.343532979 + 0.433333009 0.136768043 0.990529358 0.0120855048 -0.387807012 + 0.5 -0.0652900785 0.996907651 0.0437299833 -0.453574985 + 0.633333027 0.0334225148 0.998832464 0.0348798148 -0.420381963 + 0.699999988 -0.035246186 0.999124587 0.022534091 -0.397807002 + 0.733332992 0.00618589763 0.999769628 0.0205538925 -0.390168995 + 0.866666973 0.103749022 0.992196321 0.0691565126 -0.453981012 + 1 0.374855995 0.927082121 0.00129404012 -0.356402993 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.799692214 -0.24510707 -0.548101187 -0.328159004 + 0.0666666999 0.799692214 -0.24510707 -0.548101187 -0.328159004 + 0.166666999 0.799692571 -0.245106876 -0.54810071 -0.328159004 + 0.233333007 0.81738627 -0.193634063 -0.542573094 -0.320388019 + 0.300000012 0.799692571 -0.245106876 -0.54810071 -0.328159004 + 0.366667002 0.706889808 -0.443261921 -0.551203847 -0.371080995 + 0.433333009 0.71711576 -0.425434858 -0.552041829 -0.365828007 + 0.5 0.919097662 -0.221233904 -0.326059878 -0.623450994 + 0.633333027 0.982533813 0.172744974 -0.0691843852 -0.495554 + 0.699999988 0.982436121 0.178191021 -0.0553825088 -0.520429015 + 0.733332992 0.980163515 0.191425905 -0.0513380691 -0.492911994 + 0.866666973 0.946108937 0.0410598963 -0.321234971 -0.382939994 + 1 0.799692214 -0.24510707 -0.548101187 -0.328159004 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.297109962 -0.401261926 -0.866437852 -1.41621006 + 0.0666666999 -0.266527981 -0.419035941 -0.867969871 -1.40394998 + 0.166666999 -0.121927947 -0.376829863 -0.918222666 -1.30772996 + 0.233333007 -0.0244581942 -0.361874908 -0.931905746 -1.28492999 + 0.300000012 -0.00547033781 -0.374175847 -0.92734164 -1.28805995 + 0.366667002 -0.227911919 -0.233489916 -0.94527173 -1.30712998 + 0.433333009 -0.400262952 -0.159907967 -0.902340829 -1.25091004 + 0.5 -0.588151991 -0.272446007 -0.76147908 -1.00588 + 0.633333027 -0.513026893 -0.246624932 -0.822179735 -1.09101009 + 0.699999988 -0.461299002 -0.246296003 -0.852374017 -1.12284994 + 0.733332992 -0.43583703 -0.245824009 -0.865804017 -1.13994002 + 0.866666973 -0.348946124 -0.299142122 -0.8881163 -1.26488996 + 1 -0.297109962 -0.401261926 -0.866437852 -1.41621006 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.826811075 0.561079979 0.0396564044 -0.377992034 + 0.0666666999 0.834883928 0.548329949 0.0479905978 -0.377968013 + 0.166666999 0.851683855 0.521763921 0.0489593931 -0.203154996 + 0.233333007 0.826805115 0.561086059 0.0396958031 -0.116194002 + 0.300000012 0.82680589 0.561084867 0.0396966934 -0.116194002 + 0.366667002 0.826806366 0.561084151 0.0396960191 -0.116193995 + 0.433333009 0.600041032 0.796830118 -0.0707994103 -0.131993994 + 0.5 0.837058902 0.543868959 0.0594894923 -0.167277992 + 0.633333027 0.820450842 0.570503891 0.0372261927 -0.149125993 + 0.866666973 0.956473589 0.175937906 0.232817888 -0.232270986 + 1 0.826811075 0.561079979 0.0396566056 -0.377992034 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.846877158 0.432152122 0.309909046 -0.133323997 + 0.0666666999 0.846877694 0.432151854 0.309907883 -0.133323997 + 0.166666999 0.846878111 0.43215102 0.309908003 -0.133324012 + 0.233333007 0.846879601 0.432149321 0.309906244 -0.133324981 + 0.300000012 0.846879363 0.432149172 0.309907109 -0.133324996 + 0.366667002 0.36966902 0.917992115 0.14365001 -0.177535996 + 0.433333009 0.109694004 0.993722141 0.0219896995 -0.229754999 + 0.5 -0.205121011 0.976091087 -0.0719132051 -0.336189985 + 0.633333027 0.407604069 0.907393157 0.102453016 -0.185029984 + 0.866666973 0.940988958 -0.0187593978 0.33791697 -0.187723994 + 1 0.846877158 0.432152122 0.309909046 -0.133323997 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.705714107 0.232064039 0.66941309 -0.234348983 + 0.0666666999 -0.570268869 0.346443951 0.74482888 -0.200130001 + 0.166666999 0.253229976 0.611395955 0.749712944 -0.163080007 + 0.233333007 0.663273275 0.53750515 0.520727158 -0.202137992 + 0.300000012 0.758917212 0.488878131 0.430166095 -0.227790996 + 0.366667002 -0.577075839 0.632532775 0.516609848 -0.268902987 + 0.433333009 -0.808055937 0.442354977 0.389059961 -0.438923001 + 0.5 -0.802856147 0.445781082 0.395855069 -0.462751001 + 0.633333027 -0.819562137 0.34841609 0.454889119 -0.545412004 + 0.699999988 -0.838982642 0.305220872 0.450497866 -0.520421028 + 0.733332992 -0.833310783 0.301824927 0.463135868 -0.487776011 + 0.866666973 -0.791357934 0.373577982 0.483933955 -0.454885989 + 1 -0.705714107 0.232064039 0.66941309 -0.234348983 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.3512851 0.933505237 0.0718801171 -0.0578873008 + 0.0666666999 -0.351283908 0.933505774 0.0718790814 -0.057887204 + 0.166666999 0.029123012 -0.998071373 0.0548213199 -0.0532750003 + 0.233333007 0.128495961 -0.991570652 0.0166257937 -0.125703007 + 0.300000012 0.101248041 -0.99451834 0.0261176098 -0.128500998 + 0.366667002 0.0164091922 -0.999854505 0.00466384832 -0.0654812008 + 0.433333009 -0.974090099 -0.135968015 0.18072401 -0.205985993 + 0.5 -0.956481934 0.233207971 0.175374985 -0.317539006 + 0.633333027 -0.703832865 0.705809891 0.0803220868 -0.229703009 + 0.733332992 -0.641716063 0.757518053 -0.119862013 -0.358359993 + 0.866666973 -0.498784959 0.844516933 -0.194947988 -0.232286006 + 1 -0.3512851 0.933505237 0.0718801171 -0.0578873008 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.271447957 -0.551713943 -0.788623929 -0.369426996 + 0.0666666999 0.271447957 -0.551713943 -0.788623929 -0.369426996 + 0.166666999 0.289320111 -0.403140157 -0.868200362 -0.33216399 + 0.233333007 0.297529936 -0.278499931 -0.913188756 -0.313503981 + 0.300000012 0.304937959 -0.26116997 -0.915861964 -0.313032001 + 0.366667002 -0.215967 -0.592968941 -0.775722921 -0.342869997 + 0.433333009 -0.271376014 -0.604754984 -0.748749912 -0.336257011 + 0.5 -0.207307056 -0.827897251 -0.521162152 -0.427574962 + 0.633333027 -0.191629052 -0.864236236 -0.465160191 -0.48101902 + 0.866666973 0.572255015 -0.670901 -0.47161001 -0.641520977 + 1 0.271447957 -0.551713943 -0.788623929 -0.369426996 +endnode +doneanim 2hclosel a_dfa2_coat + +#MAXANIM ASCII +newanim 2hreach a_dfa2_coat + length 1 + transtime 0.400000006 + animroot rootdummy + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 16 + 0 0.000247613003 -0.0325528011 1.02807999 + 0.0666666999 0.00652159983 -0.0584410988 1.02540004 + 0.133332998 0.0282228999 -0.14305 1.01440001 + 0.200000003 0.0457478017 -0.217044994 0.998320997 + 0.266667008 0.0439319983 -0.203706995 0.992896974 + 0.333332986 -0.0189004 0.0651431978 0.986892998 + 0.400000006 -0.0392632 0.475811988 0.964259028 + 0.466666996 0.000248875993 0.72746402 0.916936994 + 0.533333004 0.0178264007 0.858748019 0.848357022 + 0.600000024 0.0184126999 0.91445303 0.800858021 + 0.666666985 0.0139581002 0.918178976 0.773801982 + 0.733332992 0.00558204018 0.792156994 0.778487027 + 0.800000012 -0.0187567007 0.532640994 0.847878993 + 0.866666973 -0.0378911011 0.305649012 0.950622976 + 0.93333298 -0.0288282 0.0844881013 1.01233995 + 1 0.000247613003 -0.0325528011 1.02807999 + orientationkey 16 + 0 0.627492011 0.351855993 0.694586992 -0.325186014 + 0.0666666999 0.574572027 0.337963015 0.745418012 -0.300437003 + 0.133332998 0.303443074 0.254453033 0.91824615 -0.236892998 + 0.200000003 0.0123199942 0.148140922 0.988889515 -0.215258002 + 0.266667008 0.125488028 0.0908102319 0.987930298 -0.214613989 + 0.333332986 0.676720977 0.00412803004 0.736227989 -0.289576977 + 0.400000006 0.901715934 -0.0528706945 0.429083973 -0.496499002 + 0.466666996 0.94477284 -0.0690599754 0.320366949 -0.660376012 + 0.533333004 0.953514397 -0.0729429349 0.292386115 -0.720790088 + 0.600000024 0.956511378 -0.0743055269 0.282072097 -0.745792985 + 0.666666985 0.954362869 -0.0621836968 0.292103976 -0.724379003 + 0.733332992 0.944814622 -0.032815285 0.325957865 -0.657404006 + 0.800000012 0.915225923 0.0351630002 0.401403934 -0.544291019 + 0.866666973 0.852615356 0.135033041 0.504790187 -0.439835012 + 0.93333298 0.715422869 0.28192395 0.639287889 -0.351837009 + 1 0.627492011 0.351855993 0.694586992 -0.325186014 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.894602299 -0.386452138 0.224369079 -0.255903006 + 0.100000001 -0.953984797 -0.207765967 -0.21620895 -0.343451023 + 0.166666999 -0.966113389 -0.131890059 -0.221878096 -0.483120024 + 0.233333007 -0.967232704 -0.122292973 -0.22249794 -0.509190977 + 0.300000012 -0.963583171 -0.117389023 -0.240265027 -0.484468073 + 0.366667002 -0.916095138 -0.0719701052 -0.394449025 -0.341307998 + 0.5 0.820823908 0.269125938 -0.503804862 -0.403005987 + 0.56666702 0.913967073 0.224561006 -0.337989032 -0.571066022 + 0.733332992 0.962140322 0.116786048 -0.246266082 -0.440967023 + 0.93333298 0.941479206 -0.305167049 0.143143028 -0.267331988 + 1 0.894602299 -0.386452138 0.224369079 -0.255903006 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.373683989 0.0691896006 0.924971938 -1.23453999 + 0.0666666999 -0.698462844 0.12288598 0.705016792 -0.933135927 + 0.100000001 -0.917336345 0.00236119097 0.398106158 -1.32396996 + 0.166666999 -0.9751243 0.207717061 0.0773703307 -1.89557016 + 0.233333007 -0.986064434 0.15439406 0.06196253 -2.08538008 + 0.300000012 -0.900647461 0.421885252 -0.104149058 -2.39974999 + 0.366667002 -0.977084816 0.203101963 0.0636780858 -2.09082007 + 0.433333009 -0.988078952 0.0976935849 0.118978992 -2.47016001 + 0.466666996 -0.982148588 0.175451919 0.0678286701 -2.09492993 + 0.5 -0.979416072 0.154819012 0.129519016 -1.75847006 + 0.533333004 -0.980156124 0.154332012 0.124401018 -1.60718 + 0.56666702 -0.975989342 0.151094049 0.156893045 -1.49791002 + 0.600000024 -0.974147558 0.162646934 0.156787947 -1.31041992 + 0.633333027 -0.974974453 0.176136076 0.135650054 -1.21957004 + 0.666666985 -0.97596705 0.184508011 0.115953013 -1.15236998 + 0.733332992 -0.965113163 0.122970015 0.231160045 -1.07604015 + 0.800000012 -0.892110944 0.0764352977 0.445304006 -1.04435003 + 0.866666973 -0.871163249 0.160360038 0.464068145 -1.30994999 + 0.93333298 -0.671683252 0.0581674278 0.738551378 -1.19225001 + 1 -0.373683989 0.0691893995 0.924971938 -1.23453999 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -1 0 0 -0.809759021 + 0.0666666999 -0.928506255 0.316232085 0.194611028 -0.79191798 + 0.100000001 -0.720194042 0.61402005 0.322955042 -0.623986006 + 0.166666999 0.810273886 -0.495891899 -0.312325954 -5.53943014 + 0.233333007 0.652918875 -0.683670938 -0.326022983 -5.71318007 + 0.300000012 -0.49915719 -0.859191298 -0.112394035 -5.78656006 + 0.366667002 -0.652808964 0.683774948 0.326024979 -0.569934011 + 0.433333009 -0.849709868 0.430684984 0.304143995 -0.831532001 + 0.466666996 -0.798422217 0.51356411 0.314283103 -0.723029017 + 0.5 -0.822144866 0.477366954 0.310158968 -0.766833007 + 0.533333004 -0.73430109 0.597673118 0.321852088 -0.638217032 + 0.56666702 -0.808632731 0.498381823 0.312615871 -0.740797997 + 0.600000024 -0.839816809 0.448082954 0.306478977 -0.806239009 + 0.633333027 -0.850276232 0.429659128 0.30401209 -0.833105922 + 0.666666985 -0.855046988 0.420952976 0.30280897 -0.846412957 + 0.733332992 -0.85640806 0.41843304 0.302455008 -0.850341082 + 0.800000012 -0.849723876 0.4306539 0.304148942 -0.831609011 + 0.866666973 0.143866986 0.964813828 0.220082968 -0.433791965 + 0.93333298 -0.708719194 0.626835227 0.323720127 -0.613290012 + 1 -1 -1.83853004e-007 -2.72167e-007 -0.809759021 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.568123758 0.457684845 -0.683929801 -0.421714008 + 0.0666666999 -0.0161750019 0.792624116 -0.609496057 -0.480987042 + 0.100000001 0.235715926 -0.830710769 0.504338801 -5.8062501 + 0.166666999 -0.519177914 -0.711551905 -0.473442942 -5.70943022 + 0.233333007 -0.0387609042 -0.732040048 -0.680158079 -5.66849995 + 0.300000012 0.113504 -0.361687988 -0.925364077 -4.71097994 + 0.366667002 0.0415064953 -0.632886887 -0.773130894 -5.4889102 + 0.433333009 -0.405423939 -0.895133853 -0.185382977 -5.63192987 + 0.466666996 0.688226998 0.701188028 -0.186223 -0.753000081 + 0.5 0.723348916 0.273303926 -0.63409096 -1.33810997 + 0.533333004 0.673627019 0.397179008 -0.623278022 -1.10081005 + 0.56666702 0.661725163 0.413640141 -0.625317216 -1.05054998 + 0.600000024 0.633827031 0.492416054 -0.596481144 -0.935961008 + 0.633333027 0.626220942 0.536484957 -0.565712988 -0.879768968 + 0.666666985 0.591170073 0.627832055 -0.506305039 -0.770390987 + 0.733332992 0.319831908 0.778409839 -0.540171862 -0.503040016 + 0.800000012 -0.0754034892 0.612057924 -0.787209868 -0.38487497 + 0.866666973 -0.975440562 0.214706898 -0.0491600819 -0.553611994 + 0.93333298 -0.906444132 -0.124932013 -0.403424054 -0.440486014 + 1 -0.568124175 0.457685143 -0.683929265 -0.421714008 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.0859036371 0.501316249 -0.860989332 -0.202736989 + 0.0666666999 -0.869441748 0.0994081721 -0.483930856 -0.466024011 + 0.100000001 -0.967772007 -0.00293363002 -0.251810998 -0.95916599 + 0.166666999 -0.960516393 0.160945073 -0.226947069 -2.03341007 + 0.233333007 -0.973338664 -0.0130884955 -0.228998929 -1.95249999 + 0.300000012 -0.976486027 0.0033301299 -0.215554997 -1.96112013 + 0.366667002 -0.980646908 -0.00984540861 -0.195536986 -1.98398995 + 0.433333009 -0.982691348 0.0217497088 -0.183969066 -2.48895001 + 0.466666996 -0.982116222 -0.00448928075 -0.188222051 -2.35942006 + 0.5 -0.986676872 -0.0303255972 -0.159840986 -2.24638009 + 0.533333004 -0.985332787 -0.0924540758 -0.143427968 -1.96342003 + 0.56666702 -0.981423557 -0.031923186 -0.189178929 -1.76374996 + 0.600000024 -0.971805215 -0.0321271084 -0.233586058 -1.56787002 + 0.633333027 -0.964954793 -0.0364100933 -0.25987795 -1.50785995 + 0.666666985 -0.956752598 -0.044655785 -0.287454903 -1.43536997 + 0.733332992 -0.945267916 -0.0457356945 -0.323073983 -1.17592001 + 0.800000012 -0.936840057 0.055160705 -0.345381021 -0.859800935 + 0.866666973 -0.947265744 0.190034971 -0.258019954 -0.540889025 + 0.93333298 -0.525926173 0.668464184 -0.525887132 -0.238491982 + 1 -0.0859026909 0.501317024 -0.860988975 -0.202737004 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.969834387 -0.191792071 -0.150456056 -1.76050997 + 0.0666666999 -0.963079512 -0.229757905 -0.140317947 -1.56145 + 0.100000001 -0.95228523 -0.2786071 -0.124623038 -1.35470998 + 0.166666999 0.920751333 0.379538149 0.0903758332 -5.22332001 + 0.233333007 0.92312324 0.3735421 0.0911579207 -5.18878984 + 0.300000012 0.917029798 0.389667928 0.0849425867 -5.22560978 + 0.366667002 -0.930647016 -0.345297962 -0.121100992 -1.16436994 + 0.433333009 -0.933146715 -0.303368866 -0.192884922 -1.18798006 + 0.466666996 -0.825724185 -0.433123082 -0.361364096 -0.746390998 + 0.5 -0.257155001 -0.662152052 -0.703865051 -0.419479012 + 0.533333004 -0.443564057 -0.592122018 -0.67278707 -0.452859014 + 0.56666702 -0.81276226 -0.302104115 -0.49814716 -0.705254972 + 0.600000024 -0.866423726 -0.251979917 -0.431063861 -0.839605987 + 0.633333027 -0.869046092 -0.273545027 -0.412228078 -0.850477934 + 0.666666985 -0.882744074 -0.272137016 -0.383020043 -0.904690087 + 0.733332992 -0.927993298 -0.209265053 -0.30828011 -1.1696701 + 0.800000012 -0.953489184 -0.176868036 -0.244082049 -1.44190001 + 0.866666973 -0.957372606 -0.207125917 -0.20133689 -1.45871997 + 0.93333298 -0.966054201 -0.198752031 -0.165036023 -1.67231011 + 1 -0.969834387 -0.191792071 -0.150456056 -1.76050997 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 0.863788247 0.443953156 0.238276079 -0.279032975 + 0.0666666999 0.82824707 0.502460003 0.24807401 -0.642656088 + 0.100000001 -0.672372937 -0.739510953 -0.0322208963 -5.5865202 + 0.166666999 -0.312920153 -0.913892329 -0.258615106 -5.34370995 + 0.233333007 -0.0869678259 -0.970214307 0.226099074 -5.50961018 + 0.300000012 0.355989009 -0.874195993 0.330231994 -5.49238014 + 0.366667002 -0.163621053 -0.96023643 0.226217076 -5.61170006 + 0.433333009 -0.506512046 -0.85921514 0.0720753148 -5.49206018 + 0.466666996 -0.680693626 -0.671684623 -0.292396843 -5.32597017 + 0.5 0.850112319 0.290701091 0.439092129 -1.30505002 + 0.533333004 0.831472754 0.408502847 0.376534879 -1.17682004 + 0.56666702 0.843839347 0.358665138 0.399117172 -1.26782 + 0.600000024 0.816152871 0.425892919 0.390524954 -1.21844995 + 0.633333027 0.790507019 0.470073014 0.39259401 -1.16630006 + 0.666666985 0.752301931 0.544744968 0.37053299 -1.08186984 + 0.733332992 0.705672204 0.658082187 0.262592047 -0.897907019 + 0.800000012 0.769438088 0.566915989 0.294230014 -0.754967988 + 0.866666973 0.736068845 0.590319812 0.331247896 -0.349753022 + 0.93333298 0.243841082 0.770326197 0.589185119 -0.181223005 + 1 0.863788247 0.443953156 0.238276079 -0.279032975 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 7.00649232e-045 + period 0.229501709 + tightness 0.100000001 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.354299873 -0.934272647 0.0400781892 -0.204767987 + 0.200000003 -0.715778887 0.606902897 0.345440954 -0.0888163 + 0.600000024 -0.403337866 0.0239079949 -0.914738715 -0.520702004 + 0.733332992 -0.316153139 0.0496048182 -0.947410464 -0.501823008 + 0.93333298 0.245242044 -0.923700213 -0.294337064 -0.178356007 + 1 0.354299843 -0.934272647 0.0400784872 -0.204768002 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 26 + 0 -0.970475554 -0.126832947 -0.205159932 -1.18408 + 0.0666666999 -0.956096232 -0.212919042 -0.201359034 -1.17436004 + 0.100000001 -0.947514296 -0.255589068 -0.192070067 -1.14787996 + 0.133332998 -0.936116993 -0.300298989 -0.183045 -1.11723995 + 0.166666999 -0.922174335 -0.346717089 -0.171411037 -1.10678995 + 0.200000003 -0.905624986 -0.394347012 -0.155993 -1.09256005 + 0.233333007 -0.921650887 -0.367122978 -0.125619978 -1.08732998 + 0.266667008 -0.936455607 -0.339090824 -0.0898238569 -1.08206999 + 0.300000012 -0.957493067 -0.268959016 -0.104250006 -1.12385011 + 0.333332986 -0.97480613 -0.204233035 -0.0896768048 -1.09370995 + 0.366667002 -0.983059824 -0.164952964 -0.0798992887 -0.972656071 + 0.400000006 -0.992841303 -0.10935504 -0.0480374172 -0.766157985 + 0.433333009 -0.992427528 -0.120596945 -0.0233221892 -0.643523932 + 0.466666996 -0.988292158 -0.152212024 -0.0104942014 -0.501699984 + 0.5 -0.980308056 -0.180923 0.0791388974 -0.418564022 + 0.533333004 -0.950303435 -0.241494104 0.196479082 -0.332335979 + 0.56666702 -0.89536643 -0.228722095 0.382106185 -0.305848002 + 0.600000024 -0.79427588 -0.218167946 0.5670349 -0.288560003 + 0.633333027 -0.786490917 -0.241169006 0.568567932 -0.300830007 + 0.666666985 -0.772203147 -0.254396051 0.582224131 -0.314204991 + 0.733332992 -0.892885864 -0.16624099 0.418471932 -0.529173017 + 0.766667008 -0.975059807 -0.0865308866 0.204378977 -0.701075971 + 0.800000012 -0.996923208 -0.0532037057 0.0575624108 -0.883472025 + 0.866666973 -0.989928365 -0.0414729193 -0.135358065 -1.08789003 + 0.93333298 -0.976122856 -0.0786202028 -0.202491984 -1.17437983 + 1 -0.970475554 -0.126832947 -0.205159932 -1.18408 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 26 + 0 0.999138832 -0.0321530923 0.0262256935 -0.868246973 + 0.0666666999 0.999197006 -0.0306250975 0.0258358996 -0.901350081 + 0.100000001 0.999167919 -0.0313962959 0.0260325987 -0.884353995 + 0.133332998 0.999118328 -0.0326767117 0.0263593066 -0.857420981 + 0.166666999 0.999078691 -0.0336686894 0.026612293 -0.837589025 + 0.200000003 0.999016106 -0.0351836048 0.0269986056 -0.808921993 + 0.233333007 0.99904561 -0.0344761871 0.026818091 -0.822072983 + 0.266667008 0.99907285 -0.0338117927 0.0266487952 -0.834796965 + 0.300000012 0.99942708 -0.0237755999 0.024088202 -1.08352005 + 0.333332986 0.999546587 -0.0194513947 0.0229841918 -1.23651004 + 0.366667002 0.99960351 -0.0170870926 0.0223803893 -1.33700001 + 0.400000006 0.999562383 -0.0188192092 0.0228227079 -1.26207995 + 0.433333009 0.999505758 -0.0210109949 0.0233821962 -1.17715991 + 0.466666996 0.999358356 -0.0259847101 0.0246517099 -1.01787996 + 0.5 0.999309361 -0.0274645109 0.025029311 -0.977833986 + 0.533333004 0.999213457 -0.0301796161 0.0257220156 -0.911457002 + 0.56666702 0.999205232 -0.0304038078 0.0257792044 -0.906350076 + 0.600000024 0.999186754 -0.0308982935 0.0259052943 -0.895273983 + 0.633333027 0.999247372 -0.0292447135 0.0254834089 -0.933353961 + 0.666666985 0.999298513 -0.0277836863 0.0251105893 -0.969570994 + 0.733332992 0.99958086 -0.0180584956 0.0226282962 -1.29408002 + 0.766667008 0.999652386 -0.014825006 0.0218025092 -1.44681001 + 0.800000012 0.999680042 -0.0134162009 0.0214429013 -1.52291 + 0.866666973 0.999606967 -0.0169340987 0.0223412979 -1.34397995 + 0.93333298 0.999407411 -0.0244241115 0.0242536105 -1.06348002 + 1 0.999138832 -0.0321531929 0.0262256935 -0.868246973 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 26 + 0 0.243610024 0.758184135 -0.604823053 -0.210691005 + 0.0666666999 0.315403104 0.860718191 -0.399606079 -0.199656993 + 0.100000001 0.506121039 0.813533068 -0.286365986 -0.229071021 + 0.133332998 0.638813972 0.743838012 -0.196524009 -0.269743979 + 0.166666999 0.71619004 0.686439991 -0.125983998 -0.310624003 + 0.200000003 0.768564761 0.6340698 -0.0852272809 -0.358989 + 0.233333007 0.763152361 0.640621305 -0.0848697275 -0.351891011 + 0.266667008 0.752759993 0.65080303 -0.0990345106 -0.347162992 + 0.300000012 -0.0428686887 0.998768628 0.0249688923 -0.185199991 + 0.333332986 -0.840766072 0.541132033 -0.0169860013 -0.296539992 + 0.366667002 -0.958502769 0.284824908 -0.0121340966 -0.598001003 + 0.400000006 -0.976257086 0.212864012 -0.0401375033 -0.826120913 + 0.433333009 -0.97428298 0.225089997 -0.0103514995 -0.938914955 + 0.466666996 -0.968698263 0.24734506 0.0210731048 -0.999714971 + 0.5 -0.966863871 0.253876984 0.0268466957 -1.06702006 + 0.533333004 -0.963723123 0.264385045 0.0365826041 -1.11807001 + 0.56666702 -0.964874148 0.261190057 0.0282421056 -1.15665984 + 0.600000024 -0.965417743 0.259526938 0.024785094 -1.19220996 + 0.633333027 -0.966949344 0.254012078 0.0220640078 -1.22649002 + 0.666666985 -0.968616962 0.248090982 0.0152330995 -1.26014996 + 0.733332992 -0.971771002 0.23590301 0.00329805026 -1.31631994 + 0.766667008 -0.974672139 0.223614037 -0.00331868022 -1.22194004 + 0.800000012 -0.97658664 0.214932919 -0.00907452684 -1.06484997 + 0.866666973 -0.975507736 0.218029961 -0.0291133933 -0.617730975 + 0.93333298 -0.777123213 0.524499118 -0.3478221 -0.234883994 + 1 0.243610993 0.758183956 -0.604822934 -0.210691005 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 27 + 0 -0.49027279 0.636898756 0.59497273 -0.75959301 + 0.0666666999 -0.47168985 0.615326762 0.631570756 -0.638920963 + 0.100000001 -0.497956902 0.608505905 0.617866874 -0.574048996 + 0.133332998 -0.530027926 0.599223912 0.600000918 -0.509802997 + 0.166666999 -0.579021096 0.550268114 0.601614118 -0.454079986 + 0.200000003 -0.635273099 0.475516081 0.608533084 -0.401577979 + 0.233333007 -0.538030982 0.502500057 0.676769078 -0.434099972 + 0.266667008 -0.448871017 0.520666063 0.726238012 -0.470723957 + 0.300000012 -0.705876648 0.590340674 0.391453773 -0.587264001 + 0.333332986 -0.811324418 0.538977325 0.22639811 -0.737005055 + 0.366667002 -0.95151931 0.304574132 0.0429598168 -1.2062 + 0.400000006 -0.9627496 0.229025915 0.143736944 -1.55375004 + 0.433333009 -0.963212252 0.213704064 0.162950054 -1.63541996 + 0.466666996 -0.958036661 0.208428919 0.196781918 -1.69338 + 0.5 -0.947169185 0.24654904 0.205144033 -1.76346004 + 0.533333004 -0.933194041 0.287871003 0.215125993 -1.80767 + 0.56666702 -0.918326139 0.326963037 0.223097026 -1.83524001 + 0.600000024 -0.901172876 0.367925972 0.229167968 -1.85587013 + 0.633333027 -0.901370406 0.367313147 0.229374096 -1.87467003 + 0.666666985 -0.901787281 0.366927117 0.228351071 -1.89263999 + 0.733332992 -0.925126731 0.31020093 0.218896955 -1.96664 + 0.766667008 -0.951867044 0.247202024 0.181218997 -1.92007005 + 0.800000012 -0.96805805 0.195878997 0.156509012 -1.78137004 + 0.866666973 -0.969266653 0.245922923 -0.00663451757 -1.72324002 + 0.899999976 -0.945882201 0.322032064 -0.040027909 -1.45504999 + 0.93333298 -0.838756323 0.5419451 0.0527574196 -0.969437003 + 1 -0.49027279 0.636898756 0.59497273 -0.75959301 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 27 + 0 1 0 0 -0.832217991 + 0.0666666999 1 0 1.58801001e-007 -0.871137023 + 0.100000001 1 0 0 -0.951542974 + 0.133332998 1 0 0 -1.03195 + 0.166666999 1 0 0 -1.09476995 + 0.200000003 1 0 0 -1.14910996 + 0.233333007 1 0 0 -1.14862001 + 0.266667008 1 0 0 -1.14754999 + 0.300000012 1 0 0 -1.40672004 + 0.333332986 1 0 0 -1.57727015 + 0.366667002 1 0 0 -1.69911003 + 0.400000006 1 0 0 -1.43353999 + 0.433333009 1 2.16800998e-007 0 -1.30767 + 0.466666996 1 2.36605999e-007 0 -1.12974 + 0.5 1 1.55642994e-007 0 -1.35008001 + 0.533333004 1 1.696e-007 0 -1.54009986 + 0.56666702 1 0 0 -1.64648998 + 0.600000024 1 1.61154986e-007 0 -1.74664998 + 0.633333027 1 0 0 -1.77977002 + 0.666666985 1 0 0 -1.81237996 + 0.733332992 1 1.54488006e-007 0 -1.66393995 + 0.766667008 1 2.47592993e-007 0 -1.33537996 + 0.800000012 1 2.76986015e-007 1.98188005e-007 -0.897247016 + 0.866666973 1 1.46548004e-007 0 -1.30718005 + 0.899999976 1 0 0 -1.60943007 + 0.93333298 1 0 0 -1.44219005 + 1 1 0 0 -0.832217991 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 27 + 0 -0.763353825 -0.645849824 -0.0129969968 -0.747933984 + 0.0666666999 -0.79990381 -0.598160863 0.048553694 -0.761529028 + 0.100000001 -0.831971228 -0.544479132 0.106613025 -0.781519949 + 0.133332998 -0.85675925 -0.489978135 0.160888061 -0.806382 + 0.166666999 -0.871606231 -0.444781184 0.206088066 -0.823819935 + 0.200000003 -0.880230904 -0.40179193 0.252500981 -0.838141024 + 0.233333007 -0.883855402 -0.4076612 0.229373097 -0.849434972 + 0.266667008 -0.886168838 -0.414021969 0.208063975 -0.86116302 + 0.300000012 -0.8186602 -0.56925112 0.0758196115 -0.761569977 + 0.333332986 -0.707910061 -0.697890043 -0.108687021 -0.618833005 + 0.366667002 -0.583805919 -0.809215903 0.0658807904 -0.436286002 + 0.400000006 0.584026158 -0.750183225 -0.310062081 -0.179723009 + 0.433333009 0.398597866 -0.528128803 -0.749799788 -0.160032004 + 0.466666996 0.513851881 -0.625452816 -0.587166905 -0.116704993 + 0.5 -0.682706892 -0.488243937 -0.543625891 -0.174483001 + 0.533333004 -0.877866983 -0.302046001 -0.371641994 -0.336394012 + 0.56666702 -0.897462845 -0.276979983 -0.343281984 -0.429860979 + 0.600000024 -0.906742692 -0.267472923 -0.325999886 -0.526295006 + 0.633333027 -0.906573057 -0.266019017 -0.327657044 -0.541904986 + 0.666666985 -0.906504154 -0.267147034 -0.326929092 -0.556979001 + 0.733332992 -0.82865119 -0.353507102 -0.434016079 -0.272603989 + 0.766667008 0.748099387 -0.531931221 -0.396732181 -0.138164997 + 0.800000012 0.992029667 -0.123433955 -0.0253223907 -0.447577 + 0.866666973 0.555916071 -0.77989012 0.287626028 -0.381121993 + 0.899999976 -0.223575011 -0.952792048 0.205430016 -0.449801028 + 0.93333298 -0.429955959 -0.899197936 -0.0811231881 -0.639748991 + 1 -0.763353825 -0.645849824 -0.0129968971 -0.747933984 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.729588091 -0.666838169 -0.151750028 -0.111213997 + 0.133332998 0.873908937 -0.481197983 -0.068787396 -0.137516007 + 0.200000003 0.912963569 -0.406308234 -0.0375652239 -0.153010994 + 0.266667008 0.965442181 -0.257715017 -0.038785506 -0.133242011 + 0.333332986 0.955310285 -0.291699082 -0.0478950143 -0.130136982 + 0.466666996 0.522765815 0.575396836 0.628994763 -0.126982003 + 0.600000024 0.725753248 0.375303149 0.576567173 -0.0966003016 + 0.733332992 0.919658184 -0.00690394128 0.392659068 -0.0802579969 + 0.866666973 0.159904063 -0.981810391 -0.102367043 -0.0543445982 + 1 0.729588091 -0.666838169 -0.151750028 -0.111213997 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.88317728 -0.308781117 0.35306111 -0.165700004 + 0.133332998 0.814694047 0.178944007 0.551590979 -0.0923186988 + 0.200000003 0.498307854 0.633031785 0.59241879 -0.0795106962 + 0.266667008 0.605645776 0.522785842 0.599906802 -0.0801127031 + 0.333332986 0.891133785 0.303273916 0.337498903 -0.166688994 + 0.466666996 -0.314716905 -0.915721714 0.249813944 -0.0297091007 + 0.600000024 -0.984026968 -0.030730797 0.175346971 -0.142082006 + 0.733332992 -0.856785715 -0.311245888 0.411149859 -0.0850450993 + 0.866666973 -0.557434857 -0.684779882 0.469406903 -0.0837725028 + 1 0.88317728 -0.308781117 0.35306111 -0.165700004 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.30194211 -0.0873025358 0.949320376 -0.138494 + 0.133332998 0.350058943 0.148730963 0.924844742 -0.158767 + 0.200000003 0.546307862 0.217228949 0.808924794 -0.190898001 + 0.266667008 0.506136119 0.203336045 0.838141203 -0.181987002 + 0.333332986 0.816322029 0.265448004 0.512987018 -0.314756006 + 0.466666996 0.72550118 0.344290048 0.595913112 -0.322932005 + 0.600000024 0.957186639 0.150134936 0.247493908 -0.644366026 + 0.733332992 0.922873199 0.139014035 0.359138072 -0.42364803 + 0.866666973 -0.654997945 -0.385133982 0.650114954 -0.170114994 + 1 -0.30194211 -0.0873025358 0.949320376 -0.138494 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.193270966 -0.962928891 0.188186973 -0.220416993 + 0.133332998 -0.140834033 -0.968562245 0.205068052 -0.238043994 + 0.200000003 -0.28020817 -0.937726557 0.205310121 -0.255551994 + 0.266667008 -0.305357963 -0.924157917 0.22953999 -0.225776985 + 0.333332986 -0.263691962 -0.937224865 0.228201956 -0.222996995 + 0.466666996 -0.460022271 -0.870045543 0.177201107 -0.260540992 + 0.600000024 -0.411729842 -0.834479749 0.366226852 -0.217208013 + 0.733332992 -0.218401968 -0.921370864 0.321521938 -0.208013996 + 0.866666973 -0.406625926 -0.880165935 0.244873971 -0.260196 + 1 0.193270966 -0.962928891 0.188186973 -0.220416993 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.374855995 0.927082121 0.00129404012 -0.356402993 + 0.133332998 0.411757112 0.910769284 -0.0309097096 -0.524659991 + 0.200000003 0.355616122 0.933828294 -0.0387540124 -0.574545026 + 0.266667008 0.356670976 0.933512986 -0.0365973003 -0.556338966 + 0.333332986 0.462068826 0.886217773 -0.0333235897 -0.591783047 + 0.466666996 0.104906954 0.99447757 -0.00298239896 -0.521395028 + 0.600000024 -0.227159023 0.967933118 -0.107258007 -0.385688007 + 0.733332992 0.0380143188 0.9969064 -0.0687935278 -0.369138002 + 0.866666973 -0.138514042 0.98900342 -0.0518275239 -0.316543043 + 1 0.374855995 0.927082121 0.00129404012 -0.356402993 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.799692214 -0.24510707 -0.548101187 -0.328159004 + 0.133332998 0.853045344 -0.301507115 -0.425919145 -0.493888974 + 0.200000003 0.865036845 -0.316498935 -0.389280945 -0.578899026 + 0.266667008 0.862501204 -0.313215077 -0.39747709 -0.557568014 + 0.333332986 0.864067197 -0.302315056 -0.402484089 -0.543217003 + 0.466666996 0.816978335 -0.342762113 -0.46374616 -0.455741018 + 0.600000024 0.835378885 -0.279122978 -0.473531902 -0.331239015 + 0.733332992 0.644478023 0.242684007 -0.725088 -0.110567003 + 0.866666973 -0.75610888 -0.392151982 -0.523942947 -0.262344003 + 0.93333298 0.773066163 -0.281593055 -0.568396091 -0.313888043 + 1 0.799692214 -0.24510707 -0.548101187 -0.328159004 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.297109962 -0.401261926 -0.866437852 -1.41621006 + 0.133332998 -0.180584028 -0.270197064 -0.945718229 -1.27883017 + 0.200000003 -0.146291003 -0.28669399 -0.94678694 -1.27012002 + 0.266667008 -0.146341935 -0.261402875 -0.954071581 -1.26444995 + 0.333332986 -0.155773982 -0.259228975 -0.953170896 -1.26726997 + 0.466666996 -0.174481943 -0.25483492 -0.951112628 -1.27319002 + 0.600000024 -0.276419997 -0.200121 -0.939969957 -1.32886004 + 0.733332992 -0.266805887 -0.212227896 -0.940092504 -1.31911004 + 0.866666973 -0.282926023 -0.331561059 -0.900011182 -1.40356016 + 1 -0.297109962 -0.401261926 -0.866437852 -1.41621006 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.826811075 0.561079979 0.0396566987 -0.377992034 + 0.133332998 0.812710583 0.582664728 -0.00181693933 -0.200774983 + 0.200000003 0.809048772 0.587623894 -0.0117557971 -0.243152007 + 0.266667008 0.809848845 0.586559892 -0.00960962847 -0.232555002 + 0.333332986 0.938465953 0.338690013 0.0676070899 -0.227901995 + 0.466666996 0.232600108 0.970528364 -0.0630227253 -0.521125913 + 0.600000024 0.33385101 0.941074908 -0.0540512912 -0.396672994 + 0.733332992 0.222205967 0.96823287 -0.114671983 -0.346251011 + 0.866666973 0.599765897 0.800021827 0.0156841967 -0.377927989 + 1 0.826811075 0.561079979 0.0396566987 -0.377992034 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.846877158 0.432152122 0.309909046 -0.133323997 + 0.133332998 0.918009102 0.158918008 0.363324016 -0.130471006 + 0.200000003 0.925295234 0.0172046032 0.378857076 -0.133140996 + 0.266667008 0.925252795 0.0521970876 0.375742942 -0.132223994 + 0.333332986 0.868198097 -0.409654051 0.280027986 -0.218180016 + 0.466666996 0.517706871 -0.853223801 0.0631566867 -0.618273079 + 0.600000024 0.572182953 -0.814843893 0.0929302946 -0.239074007 + 0.733332992 -0.331083924 0.922755778 -0.197243974 -0.173522979 + 0.866666973 -0.145798981 0.989028931 0.0237581003 -0.184716001 + 1 0.846877158 0.432152122 0.309909046 -0.133323997 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.705714107 0.232064039 0.66941309 -0.234348983 + 0.133332998 -0.498674959 0.486913979 0.717103958 -0.210355014 + 0.200000003 -0.358284026 0.606853068 0.709480047 -0.208287016 + 0.266667008 -0.395286918 0.649816811 0.649219811 -0.228922993 + 0.333332986 -0.681378722 0.576388717 0.451108754 -0.373217016 + 0.366667002 -0.530821681 0.462545723 0.710126579 -0.699818075 + 0.400000006 -0.424586982 0.264830977 0.865788937 -0.886283994 + 0.466666996 -0.349660993 0.194199994 0.916527987 -0.966028988 + 0.600000024 -0.392043173 0.319288105 0.862761438 -1.03371 + 0.733332992 -0.436212093 0.472447097 0.765841186 -1.03565001 + 0.866666973 -0.312947989 0.41820401 0.852742016 -0.867285013 + 1 -0.705714107 0.232064039 0.66941309 -0.234348983 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.3512851 0.933505177 0.0718806162 -0.0578873008 + 0.133332998 -0.811257124 0.566228032 0.14576602 -0.22967501 + 0.200000003 -0.802667975 0.580357015 0.137513012 -0.242255986 + 0.266667008 -0.795805991 0.589945972 0.136589006 -0.226106986 + 0.333332986 -0.955604494 -0.15472208 0.250761122 -0.639272988 + 0.366667002 -0.243503913 -0.821073711 0.516278803 -0.341219991 + 0.400000006 -0.0659501329 -0.965182483 -0.253127128 -0.303912997 + 0.466666996 0.402931094 -0.743853152 -0.533225119 -0.217434987 + 0.600000024 0.0215687994 -0.955326021 -0.294766009 -0.44601199 + 0.733332992 0.387988895 -0.854531646 -0.34531185 -0.663743019 + 0.866666973 0.205799997 -0.964769006 -0.163911998 -0.496785015 + 1 -0.3512851 0.933505177 0.0718806162 -0.0578873008 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.271447957 -0.551713943 -0.788623929 -0.369426996 + 0.133332998 0.452313066 -0.562811077 -0.691850126 -0.447121978 + 0.200000003 0.442632854 -0.610344768 -0.656928778 -0.468620002 + 0.266667008 0.431819052 -0.607362032 -0.666816056 -0.459654987 + 0.333332986 0.856231272 -0.285219103 -0.430718124 -0.82040602 + 0.366667002 0.869534254 0.0298263095 -0.492971152 -0.48198998 + 0.400000006 0.782995045 0.403317988 -0.473553985 -0.382310987 + 0.466666996 0.612829983 0.643827021 -0.458177 -0.337224007 + 0.600000024 0.669787884 0.459299922 -0.583461881 -0.332957029 + 0.733332992 -0.683353245 -0.354170114 -0.638429224 -0.306912005 + 0.866666973 -0.383470088 -0.578168094 -0.720189095 -0.313511997 + 1 0.271447957 -0.551713943 -0.788623929 -0.369426996 +endnode +doneanim 2hreach a_dfa2_coat + +#MAXANIM ASCII +newanim 2hparryl a_dfa2_coat + length 1 + transtime 0.400000006 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 13 + 0 0.000247613003 -0.0325528011 1.02807999 + 0.0666666999 0.00635422999 -0.0604095012 1.02209997 + 0.200000003 0.0178015009 -0.127508 1.01954997 + 0.266667008 0.00942396 -0.151715994 1.01999998 + 0.400000006 -0.0283269007 -0.166329995 1.02020001 + 0.466666996 -0.0433577001 -0.166619003 1.01999998 + 0.533333004 -0.0888950974 -0.157505006 1.02040005 + 0.600000024 -0.109944999 -0.139001995 1.01812005 + 0.666666985 -0.116159998 -0.126146004 1.01722002 + 0.733332992 -0.108090997 -0.10469 1.01881003 + 0.800000012 -0.0825546011 -0.0784242004 1.01946998 + 0.93333298 -0.0111352 -0.0392972007 1.02321005 + 1 0.000247613003 -0.0325528011 1.02807999 + orientationkey 12 + 0 0.627492011 0.351855993 0.694586992 -0.325186014 + 0.0666666999 0.636213958 0.345190972 0.689981937 -0.273912013 + 0.200000003 0.667970836 0.319708914 0.672012806 -0.171494007 + 0.266667008 0.702364266 0.2900621 0.650037229 -0.120572999 + 0.466666996 0.464128047 -0.882840097 0.0719618127 -0.152889997 + 0.533333004 0.342300117 -0.939560294 -0.00755335297 -0.165579021 + 0.600000024 0.223760054 -0.960054219 -0.168010041 -0.184109002 + 0.666666985 0.253629982 -0.855877876 0.450715929 -0.174726993 + 0.733332992 0.192248002 -0.212476984 0.958067954 -0.341760993 + 0.800000012 0.352124095 -0.0365274139 0.935240269 -0.24242802 + 0.93333298 0.785390139 0.377201021 0.490797043 -0.231625021 + 1 0.627492011 0.351855993 0.694586992 -0.325186014 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.894602299 -0.386452138 0.224369079 -0.255903006 + 0.0666666999 0.905958831 -0.388473928 0.168304965 -0.237461999 + 0.200000003 0.855000794 -0.339520872 -0.392044872 -0.157234997 + 0.266667008 0.783590257 -0.3021321 -0.542865098 -0.150919989 + 0.333332986 0.641084015 -0.321148992 -0.697047055 -0.177881986 + 0.400000006 0.310988843 -0.318751842 -0.895367622 -0.314633042 + 0.466666996 0.252765983 -0.313896984 -0.915192902 -0.365256011 + 0.5 0.113096952 -0.348523855 -0.930451632 -0.44015801 + 0.533333004 -0.166248932 -0.393830836 -0.904023528 -0.523846984 + 0.600000024 -0.385987937 -0.340872943 -0.857215822 -0.635987997 + 0.766667008 0.0707411841 -0.328428984 -0.941875815 -0.443363011 + 1 0.894602299 -0.386452138 0.224369079 -0.255903006 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.373683989 0.0691893995 0.924971938 -1.23453999 + 0.0666666999 -0.526512027 0.0959049985 0.844740987 -1.09071004 + 0.166666999 -0.745633066 0.154614016 0.648171127 -0.963669956 + 0.200000003 -0.737819076 0.11338602 0.665407062 -1.03682995 + 0.266667008 -0.801669717 0.170213938 0.573020816 -1.08617997 + 0.333332986 -0.662481844 -0.0588609874 0.746761799 -1.35021996 + 0.400000006 -0.663071811 -0.232855946 0.711416781 -1.63822997 + 0.466666996 -0.717311978 -0.449934006 0.531998992 -1.74502003 + 0.5 -0.689736962 -0.468602985 0.551972926 -1.77655005 + 0.533333004 -0.652399957 -0.487287015 0.580452979 -1.82911003 + 0.600000024 -0.657072842 -0.407055855 0.63447684 -1.96618998 + 0.666666985 -0.637340188 -0.537674129 0.552000046 -1.5979501 + 0.733332992 -0.643380225 -0.564991236 0.516572177 -0.977925003 + 0.800000012 -0.65884006 -0.412322044 0.629222035 -0.864106953 + 0.866666973 -0.665994287 0.0496095195 0.744305372 -1.16395998 + 1 -0.373683989 0.0691894963 0.924971938 -1.23453999 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -1 0 2.25784007e-007 -0.809759021 + 0.0666666999 -0.929869771 0.345009923 0.127711967 -0.658316016 + 0.166666999 -0.485982955 0.817838907 0.308155984 -0.68000102 + 0.200000003 -0.447147936 0.842204809 0.301246971 -0.682990968 + 0.266667008 -0.258312911 0.938314557 0.229869932 -0.583921015 + 0.333332986 -0.89585036 0.44414714 0.0136187058 -0.621420979 + 0.400000006 -0.965431333 0.10806904 -0.237199083 -0.927164972 + 0.466666996 -0.928771913 0.133722991 -0.345688969 -1.15823996 + 0.5 -0.914380789 0.137440965 -0.38081193 -1.01691997 + 0.533333004 -0.896260083 0.142773002 -0.419921041 -0.887288034 + 0.600000024 -0.731886208 0.102438025 -0.673683167 -0.545166016 + 0.666666985 -0.954019904 0.165014982 -0.250231981 -1.16190004 + 0.733332992 -1 0 -1.26147995e-007 -1.64029002 + 0.800000012 -0.989840806 0.137806967 -0.0349917933 -1.36025 + 0.866666973 -0.916906357 0.365527093 0.160227045 -0.707551003 + 1 -1 0 0 -0.809759021 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.568123758 0.457684845 -0.683929801 -0.421714008 + 0.0666666999 -0.757157922 0.521411955 -0.393498957 -0.412658989 + 0.166666999 -0.831023097 0.546743035 -0.102336012 -0.345258981 + 0.200000003 -0.826798916 0.490974009 -0.274495959 -0.361504972 + 0.266667008 -0.627745211 0.708074152 0.323368102 -0.428254008 + 0.333332986 0.205334991 0.879459918 -0.429403961 -0.505953014 + 0.400000006 0.995931029 0.0900242999 -0.00412680022 -1.25531006 + 0.466666996 -0.60455507 0.00970963109 -0.7965042 -4.03661013 + 0.5 0.5816589 6.51022856e-005 0.813432813 -2.1252501 + 0.533333004 0.555297196 0.0173320062 0.831471324 -2.00805998 + 0.600000024 0.392757982 -0.0344080962 0.918997943 -1.81018996 + 0.666666985 -0.517765164 -0.00441916194 -0.855511367 -4.17675018 + 0.733332992 -0.501234829 -0.00281655882 -0.865306735 -4.05682993 + 0.800000012 0.296678901 -0.513566852 0.80512774 -1.66781998 + 0.866666973 0.16449292 -0.957360566 0.237492889 -0.888954997 + 1 -0.568123758 0.457684845 -0.683929801 -0.421714008 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.0859030932 0.501316965 -0.860988915 -0.202736989 + 0.0666666999 -0.239852086 0.461457163 -0.854124248 -0.168199003 + 0.166666999 -0.146349058 0.666950285 -0.730588317 -0.153452992 + 0.200000003 -0.152437061 0.733168244 -0.662742257 -0.144592002 + 0.266667008 -0.330998957 0.734378934 -0.592559934 -0.153415993 + 0.333332986 -0.832266748 0.340962887 -0.437122852 -0.327863038 + 0.400000006 -0.922433019 0.132533997 -0.362700999 -0.815533996 + 0.466666996 -0.887901664 0.0563187785 -0.45657286 -1.47124004 + 0.5 -0.89811188 0.0588914938 -0.435805947 -1.48494005 + 0.533333004 -0.911239326 0.0533297174 -0.408410162 -1.50636005 + 0.600000024 -0.946271837 0.0379983932 -0.321131974 -1.4447 + 0.666666985 -0.932988644 -0.022209892 -0.359219879 -1.38493001 + 0.733332992 -0.803200006 0.114014 -0.584697008 -1.59636998 + 0.800000012 -0.754021645 0.124463938 -0.644949675 -1.35292995 + 0.833333015 -0.829962134 -0.00795549061 -0.55776304 -0.793094993 + 0.866666973 -0.97279197 -0.218447 -0.0771792978 -0.35056898 + 1 -0.0859026015 0.501317024 -0.860988975 -0.202737004 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.969834387 -0.191792071 -0.150456056 -1.76050997 + 0.0666666999 -0.967436612 -0.209573895 -0.141933933 -1.67338002 + 0.166666999 -0.967138648 -0.226621926 -0.115261957 -1.66350996 + 0.200000003 -0.967217684 -0.227900922 -0.112031966 -1.66611004 + 0.266667008 -0.971448898 -0.214304969 -0.101785988 -1.65898001 + 0.333332986 -0.984654367 -0.157762066 -0.0746120289 -1.56753004 + 0.400000006 -0.994900763 -0.0795920789 -0.0619484857 -1.36179996 + 0.466666996 -0.998652995 -1.86289999e-005 -0.0518863015 -0.821411073 + 0.5 -0.984504223 -0.174861044 -0.013228504 -0.646092951 + 0.533333004 -0.884268284 -0.462512165 0.0644370243 -0.479544014 + 0.600000024 -0.614053011 -0.763684988 0.199309021 -0.423996001 + 0.666666985 -0.79476732 -0.606469214 0.0232387073 -0.684001029 + 0.733332992 -0.854752362 -0.518630266 -0.0205198079 -0.796824038 + 0.800000012 -0.897740901 -0.436309934 -0.060785491 -0.924721003 + 0.833333015 -0.939902127 -0.325537026 -0.103003018 -1.19736004 + 0.866666973 -0.958087623 -0.255396932 -0.129770964 -1.45554996 + 1 -0.969834387 -0.191792071 -0.150456056 -1.76050997 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 0.863788247 0.443953156 0.238276079 -0.279032975 + 0.0666666999 0.882420957 0.450663984 0.135037988 -0.201612011 + 0.166666999 0.869438648 0.303607881 0.389741838 -0.219911993 + 0.200000003 0.847501755 0.241252929 0.472797871 -0.234062985 + 0.266667008 0.571032882 0.522815883 0.632917821 -0.176349998 + 0.333332986 0.27176404 0.101568021 0.956989169 -0.463594973 + 0.400000006 0.291091949 0.424177915 0.857518852 -1.53644001 + 0.466666996 0.00713997614 -0.228598878 -0.97349453 -3.46661997 + 0.5 0.0253689885 -0.182574928 -0.982864618 -3.40197992 + 0.533333004 0.0422901958 -0.126396 -0.991078019 -3.3410399 + 0.600000024 0.079764232 -0.113147035 -0.990371346 -3.40071988 + 0.666666985 0.0901909694 -0.18486996 -0.978615701 -3.48960996 + 0.733332992 0.133641958 -0.171493977 -0.976078689 -3.34231997 + 0.800000012 -0.528967083 0.351365089 0.772487164 -1.98370004 + 0.833333015 -0.545180798 0.45646584 0.703147829 -1.24003994 + 0.866666973 -0.448964 0.443085968 0.775954962 -0.442009002 + 1 0.863788724 0.443952858 0.238274902 -0.279033005 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 7.00649232e-045 + period 0.316778064 + tightness 0.833333015 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.354299843 -0.934272647 0.0400784872 -0.204768002 + 0.0666666999 0.354299843 -0.934272647 0.0400784872 -0.204768002 + 0.200000003 -0.896128595 -0.441931784 0.0406185798 -0.191949993 + 0.266667008 -0.90043062 -0.434249848 0.0255290903 -0.209410995 + 0.466666996 -0.0406416059 0.313424081 -0.948743165 -0.319518 + 0.666666985 -0.406190932 -0.0351806916 -0.913110733 -0.427673995 + 0.733332992 -0.459669083 -0.056922216 -0.886264205 -0.353733957 + 0.93333298 0.354299843 -0.934272647 0.0400784872 -0.204768002 + 1 0.354301095 -0.93427217 0.0400785059 -0.204768017 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 -0.970475554 -0.126832947 -0.205159932 -1.18408 + 0.0666666999 -0.974510312 -0.101945035 -0.19984208 -1.17513001 + 0.133332998 -0.971156061 -0.15105702 -0.184493005 -1.07350016 + 0.166666999 -0.968274474 -0.178544074 -0.174833089 -1.02059996 + 0.200000003 -0.9641186 -0.208630905 -0.164159924 -0.964626014 + 0.266667008 -0.980221927 -0.148808002 -0.130465001 -0.904216945 + 0.300000012 -0.993454039 -0.0980463997 -0.0586175025 -0.926189959 + 0.333332986 -0.998639107 -0.051583007 0.0076930807 -0.951674998 + 0.400000006 -0.993889272 0.0308160074 0.105993025 -0.997166991 + 0.466666996 -0.979508102 0.0989546254 0.175419018 -1.03498995 + 0.5 -0.971902788 0.172669962 0.159968942 -0.994826078 + 0.533333004 -0.954031944 0.246672988 0.170221984 -0.962175012 + 0.56666702 -0.933629692 0.312263876 0.175575957 -0.934114933 + 0.600000024 -0.904217243 0.378464103 0.197879046 -0.913381994 + 0.666666985 -0.921596646 0.375801831 0.0971217602 -0.848875046 + 0.733332992 -0.970672905 0.0744976923 -0.22856997 -0.884540021 + 0.800000012 -0.969060838 0.0502633937 -0.241649956 -0.975557983 + 0.833333015 -0.970789671 0.0305220876 -0.237982914 -1.02967 + 0.866666973 -0.973775148 0.00821836106 -0.227364033 -1.08222997 + 0.93333298 -0.979766726 -0.0446629897 -0.195095941 -1.17747998 + 0.966666996 -0.977799773 -0.0866947696 -0.190765947 -1.17885005 + 1 -0.970475554 -0.126832947 -0.205159932 -1.18408 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 0.999138832 -0.0321530923 0.0262256935 -0.868246973 + 0.0666666999 0.999073267 -0.0338026062 0.0266464036 -0.834978998 + 0.133332998 0.999130011 -0.0323785022 0.0262829997 -0.863554955 + 0.166666999 0.999151826 -0.0318162926 0.0261398945 -0.875344992 + 0.200000003 0.99916476 -0.031478893 0.0260538943 -0.882566929 + 0.266667008 0.999066293 -0.0339737125 0.0266901068 -0.831665993 + 0.300000012 0.998975813 -0.0361295938 0.0272397939 -0.791944027 + 0.333332986 0.998870373 -0.0385042131 0.0278454088 -0.752160013 + 0.400000006 0.998548746 -0.0450478941 0.0295132939 -0.660032988 + 0.466666996 0.99815011 -0.0521131121 0.0313133039 -0.582306027 + 0.5 0.998277366 -0.0499586202 0.0307644103 -0.604061007 + 0.533333004 0.998351693 -0.0486594848 0.030433489 -0.617955029 + 0.56666702 0.998492002 -0.0461151004 0.029785201 -0.647037983 + 0.600000024 0.998592019 -0.044219099 0.0293019991 -0.670484006 + 0.666666985 0.998865187 -0.0386176035 0.0278742034 -0.750358045 + 0.733332992 0.999186158 -0.0309143029 0.0259097032 -0.894910038 + 0.800000012 0.999187768 -0.0308719911 0.0258988943 -0.895846009 + 0.833333015 0.999162376 -0.0315415114 0.02606971 -0.881223023 + 0.866666973 0.999137938 -0.0321755968 0.0262314007 -0.86778003 + 0.93333298 0.999076664 -0.0337182879 0.0266247913 -0.83662498 + 0.966666996 0.999106765 -0.0329685919 0.026433697 -0.851495028 + 1 0.999138832 -0.0321530923 0.0262256935 -0.868246973 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 0.243610993 0.758183956 -0.604822934 -0.210691005 + 0.0666666999 0.483586043 0.719199061 -0.498896033 -0.214718014 + 0.133332998 0.554013908 0.776639819 -0.299831927 -0.206433997 + 0.166666999 0.579326153 0.79023838 -0.199761093 -0.206184998 + 0.200000003 0.601116896 0.792265832 -0.104753979 -0.208690003 + 0.266667008 0.732885003 0.650424004 -0.19957 -0.236192003 + 0.300000012 0.800473988 0.549717009 -0.238857001 -0.265758991 + 0.333332986 0.8477844 0.465532154 -0.254050076 -0.297179013 + 0.400000006 0.926777363 0.319496125 -0.197499096 -0.358540982 + 0.466666996 0.97071135 0.223407075 -0.0883672312 -0.404657006 + 0.5 0.989338756 0.133289963 -0.0586733893 -0.370985001 + 0.533333004 0.993823588 0.0542444773 -0.0968102738 -0.348904014 + 0.56666702 0.994896114 -0.000821821101 -0.100901023 -0.317167014 + 0.600000024 0.986449003 -0.0459233001 -0.157509997 -0.292742014 + 0.666666985 0.973260403 -0.148843065 -0.174957067 -0.215402007 + 0.733332992 0.93866539 -0.344509155 -0.0148571078 -0.0771342963 + 0.800000012 0.868919969 -0.113441989 0.481776953 -0.0702052936 + 0.833333015 0.920905769 0.241918936 0.305626899 -0.0741483048 + 0.866666973 0.844250381 0.535112202 0.0299371127 -0.0887146965 + 0.93333298 0.562916875 0.735494852 -0.377056926 -0.154999003 + 0.966666996 0.373947024 0.74753505 -0.548958063 -0.187913999 + 1 0.243610993 0.758183956 -0.604822934 -0.210691005 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 -0.49027279 0.636898756 0.59497273 -0.75959301 + 0.0666666999 -0.504416943 0.644866943 0.574203968 -0.776377976 + 0.133332998 -0.345268905 0.697282851 0.628160834 -0.685351014 + 0.166666999 -0.240759075 0.716818094 0.654375136 -0.64963901 + 0.200000003 -0.119642019 0.727452159 0.675647199 -0.623115003 + 0.266667008 -0.0891745985 0.754888058 0.649762988 -0.678866982 + 0.300000012 -0.114954032 0.717638195 0.686863184 -0.708544016 + 0.333332986 -0.132548004 0.681176007 0.720021009 -0.743748009 + 0.400000006 -0.155763015 0.61899507 0.769794106 -0.797496021 + 0.466666996 -0.146272957 0.559180856 0.81603986 -0.849802077 + 0.5 -0.085343577 0.631787837 0.770428836 -0.812403023 + 0.533333004 -0.00832393114 0.699502051 0.714582145 -0.77651 + 0.56666702 0.0917674974 0.728779018 0.678571939 -0.789941967 + 0.600000024 0.190289095 0.742892265 0.641795218 -0.818756998 + 0.666666985 0.240657866 0.774875581 0.58450973 -0.857858062 + 0.733332992 0.0612342283 0.90206027 0.427244186 -0.638264954 + 0.800000012 -0.0765393898 0.82317996 0.56259793 -0.72605598 + 0.833333015 -0.178793997 0.785067916 0.593043923 -0.758859932 + 0.866666973 -0.268109053 0.740730107 0.615984082 -0.78676194 + 0.93333298 -0.420158952 0.640884936 0.642442942 -0.821798921 + 0.966666996 -0.451956123 0.637424171 0.624040127 -0.796036005 + 1 -0.49027279 0.636898756 0.59497273 -0.75959301 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 1 0 0 -0.832217991 + 0.0666666999 1 0 -2.49989995e-007 -0.913523972 + 0.133332998 1 0 0 -0.957970917 + 0.166666999 1 0 0 -0.971386015 + 0.200000003 1 0 0 -0.979143023 + 0.266667008 1 0 0 -1.00934005 + 0.300000012 1 0 -1.76394011e-007 -1.00857997 + 0.333332986 1 0 0 -1.00589001 + 0.400000006 1 0 0 -0.997857034 + 0.466666996 1 0 0 -0.977046013 + 0.5 1 0 0 -0.956119001 + 0.533333004 1 0 0 -0.927874923 + 0.56666702 1 0 0 -0.895294011 + 0.600000024 1 0 0 -0.854649007 + 0.666666985 1 0 0 -0.825820982 + 0.733332992 1 0 0 -0.868099988 + 0.800000012 1 0 -1.56604003e-007 -0.861221015 + 0.833333015 1 0 0 -0.87044698 + 0.866666973 1 0 0 -0.872861028 + 0.93333298 1 0 -1.54714982e-007 -0.857385993 + 0.966666996 1 0 -2.24453984e-007 -0.845426023 + 1 1 -1.62683989e-007 0 -0.832217991 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 -0.763353825 -0.645849824 -0.0129970973 -0.747933984 + 0.0666666999 -0.792096317 -0.609977245 0.0226098076 -0.773347974 + 0.133332998 -0.819527984 -0.569683015 0.0619282015 -0.807914019 + 0.166666999 -0.829248011 -0.553151071 0.0798223093 -0.821214914 + 0.200000003 -0.83689791 -0.538707852 0.0969315916 -0.831568956 + 0.266667008 -0.832364202 -0.546881139 0.0899489298 -0.831470966 + 0.300000012 -0.823897779 -0.554890871 0.115275972 -0.830592036 + 0.333332986 -0.814838886 -0.563309014 0.136822984 -0.829601943 + 0.400000006 -0.79030937 -0.577353299 0.205120116 -0.837858975 + 0.466666996 -0.763174951 -0.586870968 0.270455986 -0.857313931 + 0.5 -0.715788782 -0.612702847 0.335024893 -0.893910944 + 0.533333004 -0.666006088 -0.629985034 0.39944306 -0.937575996 + 0.56666702 -0.639583111 -0.641925097 0.422925055 -0.967083037 + 0.600000024 -0.61360997 -0.65397799 0.442487985 -0.990861952 + 0.666666985 -0.616714299 -0.691252291 0.376608163 -0.950021088 + 0.733332992 -0.656795681 -0.684774697 0.3157579 -0.896930933 + 0.800000012 -0.693522751 -0.692836702 0.197492912 -0.84966898 + 0.833333015 -0.71471262 -0.685117543 0.140711904 -0.828628004 + 0.866666973 -0.732946277 -0.674171269 0.0910104364 -0.809665918 + 0.93333298 -0.761921227 -0.64740026 0.0186804067 -0.774906993 + 0.966666996 -0.762724757 -0.646691799 -0.00638157828 -0.760418952 + 1 -0.763353825 -0.645849824 -0.0129966969 -0.747933984 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0 0 0 0 + 0.266667008 0 0 0 0 + 0.300000012 -0.0667676181 0.994352281 0.0824963301 -0.0314951017 + 0.400000006 0 0 0 0 + 0.666666985 0 0 0 0 + 0.733332992 0 0 0 0 + 0.800000012 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.729588032 -0.66683799 -0.151751012 -0.111213997 + 0.133332998 0.886905193 -0.450099081 -0.103971004 -0.103237011 + 0.300000012 0.957896709 -0.270333916 -0.096713461 -0.0910023972 + 0.433333009 0.338087887 0.938166738 0.0744294822 -0.234999999 + 0.633333027 0.413569003 0.908688962 0.0569649972 -0.192186981 + 0.733332992 0.382724881 0.923138678 0.0365595892 -0.188978001 + 0.93333298 0.729588091 -0.666838169 -0.151750028 -0.111213997 + 1 0.729588091 -0.666838169 -0.151750028 -0.111213997 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.883177757 -0.308780968 0.353059918 -0.165700004 + 0.133332998 0.883177757 -0.308780968 0.353059918 -0.165700004 + 0.300000012 0.883177757 -0.308780968 0.353059918 -0.165700004 + 0.433333009 0.883177757 -0.308780968 0.353059947 -0.165700987 + 0.633333027 0.924291253 0.00358275068 0.381671101 -0.159112006 + 0.766667008 0.919781804 -0.114295967 0.375416934 -0.159613997 + 0.93333298 0.883177459 -0.308780819 0.353060812 -0.165700004 + 1 0.883177459 -0.308780819 0.353060812 -0.165700004 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.301943034 -0.0873026103 0.949320078 -0.138494015 + 0.133332998 -0.301943034 -0.0873026103 0.949320078 -0.138494015 + 0.300000012 -0.30194211 -0.0873026326 0.949320376 -0.138494 + 0.433333009 -0.30194211 -0.0873025358 0.949320376 -0.138494 + 0.633333027 -0.308887988 0.264568001 0.913560033 -0.149286017 + 0.766667008 0.173816919 -0.883395672 0.43520081 -0.23826398 + 0.93333298 -0.30194211 -0.0873029307 0.949320376 -0.138494 + 1 -0.301940948 -0.0873028859 0.949320734 -0.138494 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.193270966 -0.962928891 0.188186973 -0.220416993 + 0.133332998 0.270625085 -0.936247349 0.224060073 -0.196586996 + 0.300000012 0.276678056 -0.92342025 0.265978068 -0.175768018 + 0.433333009 0.337409019 0.721720994 0.604378998 -0.115029998 + 0.633333027 0.464099854 0.442833871 0.767143726 -0.0836384892 + 0.733332992 0.393005013 0.465009004 0.79329294 -0.0784901008 + 0.93333298 0.193270966 -0.962928891 0.188186973 -0.220416993 + 1 0.19327192 -0.962928653 0.188186929 -0.220416978 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.374855995 0.927082121 0.00129393011 -0.356402993 + 0.133332998 0.374855995 0.927082121 0.00129390007 -0.356402993 + 0.300000012 0.374855995 0.927082121 0.0012939201 -0.356402993 + 0.433333009 0.374856949 0.927081764 0.00129396981 -0.356402993 + 0.633333027 0.482739925 0.87576282 -0.00127104972 -0.520403028 + 0.733332992 0.365230948 0.930916846 -0.000354008953 -0.387261987 + 0.93333298 0.374855995 0.927082121 0.00129395013 -0.356402993 + 1 0.374855995 0.927082121 0.00129405013 -0.356402993 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.799692571 -0.245106876 -0.54810071 -0.328159004 + 0.133332998 0.799692571 -0.245106876 -0.54810071 -0.328159004 + 0.300000012 0.799692571 -0.245106876 -0.54810071 -0.328159004 + 0.433333009 0.799692571 -0.245106876 -0.54810071 -0.328159004 + 0.633333027 0.853411973 0.156692997 -0.497126997 -0.308685988 + 0.733332992 0.522997141 0.490999103 -0.696702182 -0.485075027 + 0.93333298 0.799692571 -0.245106876 -0.54810071 -0.328159004 + 1 0.799692571 -0.245106876 -0.54810071 -0.328159004 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.297110856 -0.401261777 -0.866437614 -1.41621017 + 0.133332998 -0.276785016 -0.337852001 -0.899581075 -1.35448003 + 0.300000012 -0.222122028 -0.208846033 -0.952389181 -1.28315985 + 0.400000006 -0.159555942 -0.112342969 -0.980775714 -1.25127006 + 0.433333009 -0.138811067 -0.0805026367 -0.987041473 -1.24401999 + 0.600000024 -0.135558039 -0.0733521208 -0.988050342 -1.24398005 + 0.633333027 -0.147554025 -0.091286324 -0.984832287 -1.24721003 + 0.766667008 -0.214629129 -0.329707205 -0.919362545 -1.20227003 + 0.93333298 -0.29601112 -0.343815118 -0.891161382 -1.37469995 + 1 -0.297110856 -0.401261777 -0.866437614 -1.41621017 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.826811075 0.561079979 0.0396566987 -0.377992034 + 0.133332998 0.853922009 0.519824982 0.0244782995 -0.290468991 + 0.300000012 0.826808691 0.561080754 0.0396958813 -0.116195001 + 0.433333009 0.946073771 0.318742901 0.0578560904 -0.178892002 + 0.5 0.973910153 0.216883048 0.0667892098 -0.219181001 + 0.56666702 0.986154974 0.143810004 0.082565397 -0.203696996 + 0.633333027 0.975589335 0.209573075 0.0656092241 -0.225702018 + 0.766667008 0.872966766 0.487459838 0.0176604968 -0.285393029 + 0.93333298 0.86238265 0.504280746 0.0446891822 -0.290289998 + 1 0.826811135 0.561080039 0.0396559983 -0.377992004 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.846877158 0.432152122 0.309909046 -0.133323997 + 0.133332998 0.846877158 0.432152122 0.309909046 -0.133323997 + 0.300000012 0.846878111 0.43215102 0.309908003 -0.133324012 + 0.433333009 0.846879363 0.432149172 0.309907109 -0.133324996 + 0.56666702 0.900138795 0.405623943 0.158805966 -0.244338006 + 0.600000024 0.907132149 0.399506062 0.132311016 -0.281737 + 0.633333027 0.897912145 0.414013058 0.149489015 -0.245220006 + 0.766667008 0.119682021 -0.960915208 0.249636039 -0.195202008 + 0.93333298 0.846877694 0.432151854 0.309907883 -0.133323997 + 1 0.846877635 0.432152808 0.30990687 -0.133323997 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.656709969 0.475714952 0.585172892 -0.288924992 + 0.133332998 -0.607262909 0.558504939 0.565069914 -0.298032016 + 0.300000012 -0.594890893 0.598479867 0.536587954 -0.314241976 + 0.433333009 -0.397765964 0.866941929 0.30032298 -0.538491011 + 0.633333027 -0.431914836 0.838368714 0.33254689 -0.487713993 + 0.766667008 -0.451310933 0.828073859 0.332583964 -0.482910991 + 0.93333298 -0.656709969 0.475714952 0.585172892 -0.288924992 + 1 -0.656709969 0.475714952 0.585172892 -0.288924992 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.35128513 0.933505297 0.0718789175 -0.057887204 + 0.133332998 -0.351283908 0.933505774 0.0718789846 -0.0578870997 + 0.300000012 -0.351283014 0.933506072 0.0718793049 -0.0578871034 + 0.433333009 -0.32820192 0.943512678 0.0454677865 -0.0679816976 + 0.633333027 -0.458837152 0.86218524 0.214721039 -0.0343154967 + 0.766667008 0.417212933 -0.9074049 0.050494194 -0.117702998 + 0.93333298 -0.3512851 0.933505177 0.0718808174 -0.0578873046 + 1 -0.351282984 0.933505952 0.0718808994 -0.0578871965 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.0465158783 -0.636636734 -0.769759715 -0.35284704 + 0.133332998 0.271447957 -0.551713943 -0.788623929 -0.369426996 + 0.300000012 0.271447957 -0.551713943 -0.788623929 -0.369426996 + 0.433333009 0.216279045 -0.806935191 -0.549617112 -0.501411974 + 0.533333004 0.255005032 0.272972018 -0.927609146 -0.345082015 + 0.633333027 0.24022308 0.319152087 -0.916752338 -0.350329995 + 0.766667008 0.312693983 -0.25790298 -0.914170921 -0.335994989 + 0.833333015 0.180295959 -0.371859878 -0.910611689 -0.318482012 + 0.93333298 -0.00954532903 -0.625990927 -0.779771924 -0.346946001 + 1 0.0465158783 -0.636636734 -0.769759715 -0.35284704 +endnode +doneanim 2hparryl a_dfa2_coat + +#MAXANIM ASCII +newanim 2hparryr a_dfa2_coat + length 1 + transtime 0.400000006 + animroot rootdummy + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.100000001 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 9 + 0 0.000247613003 -0.0325528011 1.02807999 + 0.166666999 0.0215322003 -0.0678632036 1.02690005 + 0.233333007 0.0356713012 -0.0954257995 1.01438999 + 0.300000012 0.049810499 -0.122988001 1.00188005 + 0.366667002 0.049810499 -0.122988001 1.00188005 + 0.466666996 -0.0968948975 -0.0113028996 0.944238007 + 0.533333004 -0.108241998 -0.00243780995 0.943798006 + 0.600000024 -0.123049997 -0.0109623 0.939104021 + 1 0.000247613003 -0.0325528011 1.02807999 + orientationkey 2 + 0 0.627492011 0.351855993 0.694586992 -0.325186014 + 1 0.627492011 0.351855993 0.694586992 -0.325186014 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.894602299 -0.386452138 0.224369079 -0.255903006 + 0.166666999 0.228976995 -0.267625004 -0.93592006 -0.515380085 + 0.300000012 0.101197019 -0.180321038 -0.97838819 -0.748451054 + 0.466666996 -0.0276566017 0.755948126 0.654047072 -0.312456012 + 0.600000024 -0.265561074 0.574964106 0.773882151 -0.418839008 + 0.766667008 0.265907913 0.600890875 0.753805757 -0.30865103 + 1 0.894602299 -0.386452138 0.224369079 -0.255903006 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.373683989 0.0691894963 0.924971938 -1.23453999 + 0.166666999 -0.537607908 -0.369752884 0.757799804 -1.13223004 + 0.300000012 -0.875387728 -0.423180878 -0.233696908 -1.06794 + 0.366667002 -0.882575214 -0.252147049 -0.396841079 -1.23225999 + 0.466666996 -0.697963834 0.0855159685 0.711008787 -1.18505001 + 0.533333004 -0.608035147 0.106050014 0.786795199 -0.728003979 + 0.600000024 -0.831864178 0.143567026 0.536088109 -1.15890002 + 0.766667008 -0.740120947 -0.00643698964 0.672442913 -0.724042952 + 1 -0.373683989 0.0691893995 0.924971938 -1.23453999 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -1 0 -2.67269996e-007 -0.809759021 + 0.166666999 -0.916691184 0.284197032 0.280908048 -1.12414014 + 0.300000012 -0.957080781 0.141826972 0.252747953 -1.65074003 + 0.366667002 -0.966542721 0.0882297754 0.24085395 -1.95907998 + 0.466666996 -0.0108602997 0.96675998 0.255454987 -0.429235011 + 0.533333004 -0.86099869 0.409804881 0.301232874 -0.864054978 + 0.600000024 0.645179152 0.762114167 0.054091312 -0.564951003 + 0.766667008 -0.82791996 0.468033999 0.30901897 -0.778967977 + 1 -1 0 0 -0.809759021 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.568123758 0.457684845 -0.683929801 -0.421714008 + 0.166666999 -0.300606012 -0.684414983 -0.664238036 -1.45077002 + 0.300000012 0.0572830178 0.0862381309 0.994626403 -5.20019007 + 0.366667002 -0.287427068 0.633718133 0.7181831 -5.16398001 + 0.466666996 0.310964108 -0.113606051 -0.94360745 -0.521740019 + 0.533333004 0.674109101 0.102601022 -0.731471121 -0.541635931 + 0.600000024 -0.479666889 0.680888832 -0.553452849 -0.424871981 + 0.766667008 0.74353224 0.436098158 -0.506930172 -0.477276981 + 1 -0.568124056 0.45768407 -0.683930039 -0.421713978 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.0859026015 0.501317024 -0.860988975 -0.202737004 + 0.166666999 -0.717232227 0.205475077 -0.665851295 -1.16290998 + 0.300000012 -0.855968773 -0.0946246684 -0.508294821 -2.34784007 + 0.366667002 -0.836059749 -0.0333818905 -0.547621906 -2.45949006 + 0.466666996 -0.878165126 -0.473679036 0.066739507 -0.602212071 + 0.533333004 -0.775724888 -0.34503594 -0.528394878 -0.557995021 + 0.600000024 -0.858272731 -0.473916799 -0.196902931 -0.605235994 + 0.766667008 -0.757692039 -0.635226071 -0.149635017 -0.516955078 + 1 -0.0859030634 0.501315773 -0.86098963 -0.202737004 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.969834387 -0.191792071 -0.150456056 -1.76050997 + 0.166666999 -0.946502209 -0.297744066 -0.124427021 -1.24319994 + 0.300000012 0.356458992 0.926796913 -0.118255995 -5.87816 + 0.366667002 0.799157739 0.60013783 0.0343727879 -5.64729977 + 0.466666996 -0.834092319 -0.549214184 -0.0515145175 -0.695249975 + 0.533333004 -0.929474235 -0.352076083 -0.110091031 -1.06903005 + 0.600000024 -0.868614316 -0.490497142 -0.0701550245 -0.777996004 + 0.766667008 -0.927038968 -0.359011978 -0.108208984 -1.04989004 + 1 -0.969834387 -0.191792071 -0.150456056 -1.76050997 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.863788247 0.443953156 0.238276079 -0.279032975 + 0.166666999 -0.864396811 0.449740916 -0.224835977 -5.94041014 + 0.300000012 -0.464165092 -0.813627124 0.35008806 -5.68437004 + 0.366667002 -0.378616959 -0.754965961 0.535420954 -5.85973978 + 0.466666996 0.242858976 0.963499844 0.112638988 -1.38952994 + 0.533333004 0.319328964 0.942134857 0.102033995 -1.59701002 + 0.600000024 0.227693975 0.973345935 0.0274433978 -1.43954003 + 0.766667008 0.329734862 0.928099573 0.172933906 -0.829252005 + 1 0.863788724 0.443952858 0.238274902 -0.279033005 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.354299873 -0.934272647 0.0400781892 -0.204767987 + 0.166666999 0.0466336012 -0.948327005 -0.313849002 -0.264454991 + 0.300000012 -0.106457017 -0.880896151 -0.461182088 -0.338363975 + 0.466666996 -0.532451212 -0.105364054 0.839877427 -0.080419302 + 0.600000024 -0.473221809 0.402234823 0.78375268 -0.0873538926 + 1 0.354299843 -0.934272587 0.0400785878 -0.204768002 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.970475554 -0.126832947 -0.205159932 -1.18408 + 0.166666999 -0.956807792 -0.0518734939 -0.286055923 -1.12998009 + 0.233333007 -0.945979714 -0.0272237919 -0.323080897 -1.13975 + 0.300000012 -0.954481661 -0.132349968 -0.267297953 -1.23846996 + 0.366667002 -0.903081179 -0.367410064 -0.222383052 -1.13524008 + 0.400000006 -0.912024856 -0.400016934 -0.0905377939 -1.18869996 + 0.433333009 -0.909214377 -0.415909171 0.0186744072 -1.22783995 + 0.466666996 -0.901255906 -0.42038998 0.104928985 -1.25379002 + 0.533333004 -0.897063255 -0.422554106 0.129327044 -1.25885999 + 0.600000024 -0.895996332 -0.418805152 0.147624061 -1.28983998 + 0.699999988 -0.90914613 -0.402806073 0.105833016 -1.24813998 + 0.766667008 -0.917514026 -0.390890002 0.0733011961 -1.21785998 + 0.833333015 -0.925234795 -0.377388954 0.0389635935 -1.18505001 + 0.899999976 -0.957993269 -0.286457092 -0.0138301048 -1.22654986 + 0.93333298 -0.969542921 -0.222139001 -0.103154004 -1.23178995 + 1 -0.970475554 -0.126832947 -0.205159932 -1.18408 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.999138832 -0.0321530923 0.0262256935 -0.868246973 + 0.166666999 0.998951435 -0.0366914161 0.027383009 -0.782176971 + 0.233333007 0.998902857 -0.0377875976 0.027662497 -0.763764024 + 0.300000012 0.999278903 -0.028351197 0.0252557974 -0.955193996 + 0.366667002 0.99887675 -0.0383643918 0.0278094951 -0.754400015 + 0.400000006 0.999315619 -0.027280191 0.0249823909 -0.982662082 + 0.433333009 0.999500275 -0.0212136079 0.023433907 -1.16981006 + 0.466666996 0.999598622 -0.017299993 0.0224348903 -1.32737994 + 0.533333004 0.999608457 -0.0168673079 0.0223243106 -1.34704006 + 0.600000024 0.999615729 -0.0165442936 0.022241693 -1.36205006 + 0.699999988 0.999555469 -0.0190990102 0.0228942111 -1.25065005 + 0.766667008 0.999500632 -0.0212019905 0.0234310925 -1.17022002 + 0.833333015 0.999427557 -0.0237592906 0.0240836907 -1.08404005 + 0.899999976 0.999438703 -0.0233845934 0.0239882916 -1.09595001 + 0.93333298 0.99939394 -0.0248605981 0.0243650973 -1.05034995 + 1 0.999138832 -0.0321530923 0.0262256935 -0.868246973 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.243610993 0.758183956 -0.604822934 -0.210691005 + 0.166666999 0.72516197 0.688566923 -0.00396424951 -0.181390002 + 0.233333007 0.810855865 0.51036495 0.286426961 -0.218581006 + 0.300000012 0.844551265 0.532088101 0.0601284131 -0.336760968 + 0.366667002 0.465934813 0.87584877 -0.125672951 -0.463091999 + 0.400000006 0.108400941 0.933047533 -0.343032837 -0.469673008 + 0.433333009 -0.168133959 0.863839746 -0.474880874 -0.543453991 + 0.466666996 -0.339951128 0.769665301 -0.540415168 -0.640370011 + 0.533333004 -0.360040963 0.75136286 -0.553013861 -0.659105003 + 0.600000024 -0.343150973 0.743057966 -0.574553967 -0.658181012 + 0.699999988 -0.27235803 0.763913155 -0.585028052 -0.63182199 + 0.766667008 -0.217070967 0.777909815 -0.589691877 -0.612215996 + 0.833333015 -0.152511954 0.790330768 -0.593394816 -0.593674004 + 0.899999976 -0.0488454886 0.685489893 -0.726441801 -0.451831996 + 0.93333298 -0.0172851011 0.836215138 -0.548129082 -0.315120012 + 1 0.243611112 0.758184433 -0.604822278 -0.21069099 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.49027279 0.636898756 0.59497273 -0.75959301 + 0.166666999 -0.464878827 0.694894791 0.548642814 -0.747200012 + 0.233333007 -0.515271842 0.712150753 0.476797849 -0.717332006 + 0.300000012 -0.557875097 0.718833208 0.414794087 -0.699936986 + 0.366667002 -0.613391817 0.599302828 0.514379799 -0.621499002 + 0.400000006 -0.504617035 0.633395076 0.586662054 -0.685186982 + 0.466666996 -0.316517055 0.649949193 0.690929115 -0.883703053 + 0.533333004 -0.280545086 0.630710304 0.723532319 -0.92503792 + 0.600000024 -0.297922105 0.617832243 0.727685213 -0.929553986 + 0.699999988 -0.34049809 0.616483212 0.709936261 -0.895035028 + 0.766667008 -0.380129009 0.622364938 0.684224963 -0.847656965 + 0.833333015 -0.419580907 0.628773868 0.654671907 -0.806412995 + 0.899999976 -0.449017882 0.631251752 0.63237977 -0.786269009 + 0.93333298 -0.463106781 0.632790685 0.620570719 -0.777073026 + 1 -0.49027279 0.636898756 0.59497273 -0.75959301 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 1 0 0 -0.832217991 + 0.166666999 1 0 0 -0.922779024 + 0.233333007 1 0 0 -1.02192998 + 0.300000012 1 0 0 -1.11248004 + 0.366667002 1 0 0 -1.08327997 + 0.400000006 1 0 0 -1.07249999 + 0.466666996 1 0 0 -0.999756038 + 0.533333004 1 0 0 -0.968590021 + 0.600000024 1 0 -3.52323042e-007 -0.984178007 + 0.699999988 1 0 0 -0.957275033 + 0.766667008 1 0 4.08328987e-007 -0.935581982 + 0.833333015 1 1.42869993e-007 0 -0.910753012 + 0.899999976 1 0 -1.20527005e-007 -0.881995082 + 0.93333298 1 0 0 -0.866283953 + 1 1 0 0 -0.832217991 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.763353825 -0.645849824 -0.0129966969 -0.747933984 + 0.166666999 -0.801316857 -0.585761964 0.121548995 -0.803813934 + 0.233333007 -0.816500127 -0.535961032 0.214647025 -0.866690993 + 0.300000012 -0.821415901 -0.495689929 0.282076985 -0.927102029 + 0.366667002 -0.854017019 -0.47627601 0.209323004 -0.870391011 + 0.400000006 -0.833819926 -0.551647961 0.0207086988 -0.858529985 + 0.466666996 -0.65233016 -0.651259184 -0.387720048 -0.884000003 + 0.533333004 -0.609234154 -0.653402209 -0.449332118 -0.889003932 + 0.600000024 -0.598265111 -0.654974163 -0.461614162 -0.883572996 + 0.699999988 -0.6489712 -0.658772171 -0.380599082 -0.847063005 + 0.766667008 -0.689042032 -0.665140033 -0.287767023 -0.8204 + 0.833333015 -0.72104907 -0.665400088 -0.193212047 -0.797847986 + 0.899999976 -0.741612256 -0.659526229 -0.122623041 -0.777435958 + 0.93333298 -0.750083864 -0.655610859 -0.0868828818 -0.767446995 + 1 -0.763353825 -0.645849824 -0.0129967974 -0.747933984 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0 0 0 0 + 0.333332986 -0.141258985 0.0217023958 -0.989734769 -0.53065598 + 0.466666996 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.729588032 -0.66683799 -0.151751012 -0.111213997 + 0.200000003 -0.0824250877 -0.98166585 -0.171866968 -0.260867 + 0.333332986 0.108311966 -0.979335666 -0.170792937 -0.27342096 + 0.466666996 0.492314726 -0.788915575 -0.367747784 -0.115640998 + 0.633333027 0.492314726 -0.788915575 -0.367747784 -0.115640998 + 0.800000012 0.357858032 -0.872901201 -0.331634045 -0.104261994 + 1 0.729588032 -0.66683799 -0.151751012 -0.111213997 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.88317728 -0.308781117 0.35306111 -0.165700004 + 0.200000003 0.796378851 -0.575018823 0.187440947 -0.188189 + 0.333332986 0.657711804 -0.744030833 0.117614977 -0.248541996 + 0.466666996 0.961740792 -0.219067961 0.164510965 -0.473533005 + 0.633333027 0.781221211 -0.59360522 0.193200067 -0.254970998 + 0.800000012 0.731169164 -0.62593317 0.271292061 -0.18805401 + 1 0.883177757 -0.308780968 0.353059918 -0.165700004 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.301943034 -0.0873024091 0.949320138 -0.138494015 + 0.200000003 0.284701049 -0.653789163 0.701074183 -0.168390006 + 0.333332986 0.284701049 -0.653789163 0.701074183 -0.168390006 + 0.466666996 0.68857193 0.48988694 0.534676969 -0.329960972 + 0.633333027 -0.549997985 -0.808669865 0.208698988 -0.159372985 + 0.800000012 -0.633545995 -0.758601129 0.152131021 -0.245471016 + 1 -0.301943034 -0.0873022974 0.949320138 -0.138494015 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.193270966 -0.962928891 0.188186973 -0.220416993 + 0.200000003 0.0438105166 -0.98908633 0.140673041 -0.327681988 + 0.333332986 -0.0725013986 -0.990647018 0.115594007 -0.331925988 + 0.466666996 0.470290184 -0.768641233 0.433610141 -0.0821593031 + 0.633333027 0.470290184 -0.768641233 0.433610141 -0.0821593031 + 0.800000012 -0.0546621829 -0.890522778 0.451642841 -0.115960009 + 1 0.193270966 -0.962928891 0.188186973 -0.220416993 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.374855995 0.927082121 0.00129401009 -0.356402993 + 0.200000003 0.499739051 0.866104126 -0.0111573013 -0.561635017 + 0.333332986 0.48833099 0.872581005 -0.0116290003 -0.579693973 + 0.466666996 0.245704949 0.969300866 -0.009213618 -0.636364996 + 0.633333027 0.245704949 0.969300866 -0.00921364781 -0.636364996 + 0.800000012 0.398267835 0.915545583 -0.0562052727 -0.441372007 + 1 0.374855995 0.927082121 0.00129434012 -0.356402993 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.799692571 -0.245106876 -0.54810071 -0.328159004 + 0.200000003 0.813548207 -0.300202072 -0.498014122 -0.477032006 + 0.333332986 0.688885629 -0.488266766 -0.535753787 -0.571213007 + 0.466666996 0.401485831 0.0316088833 -0.915319622 -0.603905022 + 0.633333027 0.0635672212 -0.150178045 -0.986613274 -0.726545036 + 0.800000012 0.797353685 -0.251082897 -0.548802793 -0.440885007 + 1 0.799692571 -0.245106876 -0.54810071 -0.328159004 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.297110856 -0.401261777 -0.866437614 -1.41621017 + 0.200000003 -0.42521587 -0.317078918 -0.847733676 -1.22555006 + 0.333332986 -0.411484182 -0.308368117 -0.85766536 -1.43741012 + 0.466666996 -0.298879862 -0.505645633 -0.809316576 -1.16251004 + 0.633333027 -0.298879147 -0.505646229 -0.809316456 -1.16251016 + 0.800000012 -0.302781016 -0.366376042 -0.879825115 -1.21257997 + 1 -0.297110856 -0.401261777 -0.866437614 -1.41621017 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.826811135 0.561080039 0.0396559983 -0.377992004 + 0.200000003 0.991985202 0.0706089139 0.104784019 -0.227929011 + 0.333332986 0.927043974 0.374933988 -0.00373985991 -0.153606996 + 0.466666996 0.994716823 -0.0773885846 0.0674492866 -0.329180986 + 0.633333027 0.685964704 0.608910739 -0.398346812 -0.224069998 + 0.800000012 0.311127961 0.846820831 -0.431385964 -0.154659986 + 1 0.826811135 0.561080039 0.0396559052 -0.377992004 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.846877456 0.432152241 0.309908152 -0.133323997 + 0.200000003 -0.664319932 -0.630114019 0.402038991 -0.120746993 + 0.333332986 -0.45357585 0.846251786 -0.279511899 -0.194496006 + 0.466666996 0.915116727 -0.291636914 0.278404921 -0.430763036 + 0.633333027 0.935915768 -0.105224982 0.336138934 -0.0794304982 + 0.800000012 -0.909599125 0.342253029 -0.235568047 -0.136715993 + 1 0.846877456 0.432152241 0.309908152 -0.133323997 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.656709969 0.475714952 0.585172892 -0.288924992 + 0.200000003 -0.860389113 -0.0353673026 0.508409083 -0.396323025 + 0.333332986 -0.844725311 -0.108927034 0.523998201 -0.331611007 + 0.466666996 -0.691074371 0.48264724 0.53802222 -0.33454603 + 0.633333027 -0.636054039 0.608945072 0.473942071 -0.401965976 + 0.800000012 -0.771820247 0.323961109 0.54712218 -0.299982995 + 1 -0.656709969 0.475714952 0.585172892 -0.288924992 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.35128513 0.933505356 0.0718787238 -0.0578872003 + 0.200000003 0.402135193 0.906263411 -0.130284056 -0.162722006 + 0.333332986 0.495075911 0.861000836 -0.116521984 -0.205247 + 0.466666996 -0.612378001 0.788284004 0.0600130036 -0.288289994 + 0.633333027 -0.252667099 0.94726038 -0.197122067 -0.184723005 + 0.800000012 -0.138670057 0.976484418 -0.165072054 -0.184053019 + 1 -0.35128513 0.933505297 0.0718789175 -0.057887204 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.0465158783 -0.636636734 -0.769759715 -0.35284704 + 0.200000003 0.303060025 -0.683115065 -0.664461017 -0.442888975 + 0.333332986 -0.067974098 -0.721750975 -0.688807011 -0.423970997 + 0.466666996 0.065512903 -0.931653917 -0.357391983 -0.634139001 + 0.633333027 0.394500911 -0.802153885 -0.448238939 -0.661952019 + 0.800000012 0.240226001 -0.823844075 -0.513393044 -0.541061044 + 1 0.0465159789 -0.636636674 -0.769759715 -0.35284704 +endnode +doneanim 2hparryr a_dfa2_coat + +#MAXANIM ASCII +newanim plslashl a_dfa2_coat + length 1 + transtime 0.300000012 + animroot rootdummy + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.533333004 blur_end + event 0.533333004 blur_end + event 0.533333004 blur_end + event 0.533333004 blur_end + event 0.533333004 blur_end + event 0.533333004 blur_end + event 0.533333004 blur_end + event 0.533333004 blur_end + event 0.533333004 blur_end + event 0.533333004 blur_end + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 16 + 0 -0.00189467997 -0.0312605985 0.998121023 + 0.0666666999 -0.00190550997 -0.0466305986 0.996351004 + 0.133332998 -0.00193802 -0.0927406028 0.991039991 + 0.200000003 -0.00202147011 -0.211145997 0.977401972 + 0.266667008 -0.00206376007 -0.28512001 0.968482971 + 0.333332986 -0.00807442982 -0.266945004 0.960873008 + 0.400000006 -0.0240285993 -0.0594602004 0.940850973 + 0.466666996 -0.074214302 0.205758005 0.911605 + 0.533333004 -0.126138002 0.345057011 0.91356802 + 0.600000024 -0.173731998 0.373688012 0.925513983 + 0.666666985 -0.191372007 0.34345901 0.931061029 + 0.733332992 -0.174796 0.311506987 0.937155008 + 0.800000012 -0.133809999 0.232495993 0.952220976 + 0.866666973 -0.0759470016 0.120950997 0.973492026 + 0.93333298 -0.0167277008 0.00679276977 0.995261014 + 1 -0.00185768004 -0.0312600993 1.00251997 + orientationkey 16 + 0 0.916262925 0.0597049966 0.396102935 -0.211063996 + 0.0666666999 0.832927227 0.10609404 0.543117166 -0.231653005 + 0.133332998 0.593150973 0.187701002 0.782905042 -0.322439998 + 0.200000003 0.29479298 0.244637981 0.923714995 -0.625226021 + 0.266667008 0.186126962 0.242058933 0.952241659 -0.912303925 + 0.333332986 0.211586043 0.271390051 0.938924253 -0.923425019 + 0.400000006 0.535725236 0.469550282 0.701798439 -0.581387997 + 0.466666996 0.763387263 0.483608156 -0.428209126 -0.592732966 + 0.533333004 0.544772863 0.332988948 -0.769636869 -0.861660063 + 0.600000024 0.465696901 0.320912898 -0.824706793 -0.923184991 + 0.666666985 0.463265151 0.321861118 -0.825706244 -0.925360024 + 0.733332992 0.482631117 0.322281092 -0.814372182 -0.849035978 + 0.800000012 0.546450078 0.322496057 -0.772909164 -0.662554979 + 0.866666973 0.710313082 0.312840998 -0.630544066 -0.411731005 + 0.93333298 0.982247949 0.18735899 -0.00925140921 -0.222544998 + 1 0.916261613 0.0597123764 0.396104842 -0.211062998 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.847584069 0.100689016 -0.521021068 -0.208508998 + 0.0666666999 0.920259118 -0.106592014 -0.376512051 -0.154159993 + 0.200000003 -0.118830986 -0.715937853 0.687976897 -0.283086985 + 0.233333007 -0.218400002 -0.675982952 0.703809977 -0.374468982 + 0.300000012 -0.251423061 -0.660705149 0.707287192 -0.421252012 + 0.366667002 -0.34087804 -0.709602058 0.616658032 -0.315290987 + 0.5 -0.0505999885 0.167516962 -0.984569788 -0.499572009 + 0.56666702 0.113769956 0.400235862 -0.909322619 -0.53927207 + 0.633333027 0.192654923 0.435521841 -0.879320621 -0.62085098 + 0.699999988 0.222749934 0.427374899 -0.876203835 -0.567404985 + 0.866666973 0.604040861 0.275865942 -0.747684836 -0.273075998 + 0.93333298 0.785457194 0.156238034 -0.598871112 -0.221296996 + 1 0.847584069 0.100689016 -0.521021068 -0.208508998 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.821663976 -0.388060987 0.417465001 -1.42364013 + 0.0666666999 -0.833661199 -0.369107068 0.41081506 -1.31669998 + 0.133332998 -0.913502276 -0.18083106 0.36443612 -1.06318998 + 0.200000003 -0.951760411 -0.0707675293 0.298570126 -0.97663492 + 0.233333007 -0.963688076 0.0526725054 0.261783987 -1.00520015 + 0.300000012 -0.964936674 0.14263095 0.220348939 -1.03285003 + 0.366667002 -0.938619375 0.329538107 0.101972036 -0.917194009 + 0.433333009 -0.931163251 0.249799058 0.265585065 -0.678005993 + 0.5 -0.937989175 0.316659093 0.141079023 -0.657252014 + 0.533333004 -0.950321019 0.16934 0.261177987 -0.474130005 + 0.56666702 -0.723863244 0.488080174 -0.487647176 -0.375872999 + 0.633333027 0.170038 0.224578023 -0.959506035 -0.580284953 + 0.699999988 0.145348981 0.242861986 -0.959109843 -0.624484956 + 0.800000012 0.0807921663 0.139387935 0.98693651 -0.334078014 + 0.866666973 -0.537444055 -0.478796095 0.694196045 -0.260298014 + 0.93333298 -0.538311362 -0.747545481 0.389097244 -0.557770014 + 1 -0.604599953 -0.697043955 0.38547191 -0.737482011 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.995581865 -0.00037825192 -0.093896687 -1.32134998 + 0.0666666999 -0.999006689 0.00945269782 0.0435463898 -1.29957998 + 0.133332998 -0.899732053 -0.0570947081 0.432692021 -1.34981 + 0.200000003 -0.761427999 0.0803544 0.643249989 -1.41687 + 0.233333007 -0.602856994 0.164004996 0.780811012 -1.36684 + 0.300000012 -0.479568213 0.225067094 0.848150432 -1.32796001 + 0.366667002 -0.436643958 0.226733968 0.870593905 -1.19165003 + 0.433333009 -0.731121004 -0.0186059996 0.681994021 -1.45804 + 0.5 -0.78945601 0.0173457991 0.613561988 -1.46670997 + 0.533333004 -0.986422181 0.153411031 0.0586207062 -1.59756994 + 0.56666702 -1 0 0 -1.93593001 + 0.633333027 1 0 0 -4.20827007 + 0.699999988 -1 1.46724005e-007 0 -2.13070011 + 0.800000012 -0.965470314 0.131141037 -0.225098059 -2.7337501 + 0.866666973 -0.981944203 0.067432113 -0.176744044 -2.39160991 + 0.93333298 -0.995725572 0.0188222919 -0.0904229656 -2.38055992 + 1 -0.998103082 0.00255944999 -0.0615117028 -2.42183995 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.0118931029 -0.370628059 0.928705215 -4.6188302 + 0.0666666999 -0.0111881029 -0.270975053 0.962521374 -4.54391003 + 0.133332998 0.0316614918 -0.194860935 0.980319738 -4.2311902 + 0.200000003 0.0934649408 -0.0849431381 0.991992414 -4.03208017 + 0.233333007 0.167956963 -0.108836979 0.979767799 -3.91516995 + 0.300000012 0.19932808 -0.132363051 0.970952272 -3.9008801 + 0.366667002 0.365568966 -0.216061965 0.905359924 -4.17237997 + 0.433333009 -0.31270808 -0.0527714118 -0.948382199 -2.21274996 + 0.5 -0.354774207 -0.181360096 -0.917193413 -2.28515005 + 0.533333004 -0.452005833 -0.129069954 -0.882627726 -1.54364002 + 0.56666702 0.279838979 -0.00720585929 0.960019886 -4.78886986 + 0.633333027 -0.40100494 0.142923981 -0.904857874 -1.78978002 + 0.699999988 -0.391070187 0.204901069 -0.897262335 -1.67149997 + 0.800000012 0.187028065 -0.809208274 0.556958199 -5.96945 + 0.866666973 0.0475398935 -0.518338919 0.853852868 -5.65221977 + 0.93333298 0.0230343062 -0.219421074 0.975358307 -5.46511984 + 1 -0.0324040018 -0.264380008 0.963874042 -5.42578983 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.893147349 0.443933189 -0.0721879303 -0.487369031 + 0.0666666999 0.857820094 0.513946056 0.0020310902 -0.592019975 + 0.200000003 0.746237218 0.645335197 0.163317055 -1.15754998 + 0.233333007 0.752319157 0.627876103 0.199468046 -1.35640013 + 0.300000012 0.756994903 0.621608853 0.20139797 -1.46352005 + 0.366667002 0.572257102 0.746243179 0.340063095 -1.21027005 + 0.433333009 -0.200943008 0.865077138 0.459634036 -1.08027995 + 0.5 -0.73907876 0.590891778 0.323433876 -1.48538005 + 0.533333004 -0.846893072 0.52197808 0.101543017 -1.58922005 + 0.56666702 -0.948744714 0.315967917 -0.0069092582 -1.69173002 + 0.633333027 -0.998531997 0.0361364 -0.0403486006 -1.82703996 + 0.699999988 -0.996396065 0.0551239029 -0.064468801 -1.71194017 + 0.800000012 -0.981231153 0.114040032 -0.155500025 -1.29390001 + 0.866666973 -0.954101384 0.173431069 -0.244156092 -1.02418995 + 0.93333298 -0.822224915 0.355986983 -0.444094002 -0.874064982 + 1 -0.748181283 0.428656191 -0.506437182 -0.843508959 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.993848622 -0.0483552814 -0.0996325612 -1.64098001 + 0.0666666999 -0.992353261 -0.0322554074 -0.119141027 -1.63303006 + 0.200000003 -0.974866807 0.0499104932 -0.217125937 -1.60310996 + 0.233333007 -0.96813041 0.0751651376 -0.238901109 -1.66383004 + 0.300000012 -0.964510858 0.0872592926 -0.249207959 -1.69482005 + 0.366667002 -0.958520293 0.0505826101 -0.280500084 -1.43397987 + 0.433333009 -0.933175921 -0.0644293949 -0.353597969 -1.01052999 + 0.5 -0.817133248 -0.307428092 -0.487628162 -0.622200966 + 0.533333004 -0.71633178 -0.489113808 -0.497630864 -0.626188993 + 0.56666702 -0.602611065 -0.63304615 -0.485914081 -0.661748052 + 0.633333027 -0.150780082 -0.896877289 -0.41578415 -0.59365195 + 0.699999988 -0.214761093 -0.874270439 -0.435349166 -0.545413017 + 0.800000012 -0.53371805 -0.680647135 -0.501861036 -0.405239999 + 0.866666973 -0.777700782 -0.388480872 -0.494230837 -0.363516986 + 0.93333298 -0.962315083 -0.0560109094 -0.266106039 -0.638830006 + 1 -0.974359095 -0.000454285095 -0.224998042 -0.73662895 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.217945054 -0.630849183 -0.744667232 -0.352681965 + 0.0666666999 0.0968797728 -0.744122744 -0.660980821 -0.307004005 + 0.200000003 -0.600914776 -0.747265816 0.283716917 -0.340918988 + 0.233333007 -0.555870175 -0.674984217 0.485185206 -0.412158012 + 0.300000012 -0.537696838 -0.608577788 0.583536744 -0.452197969 + 0.366667002 -0.772720993 -0.630762994 -0.0709955022 -0.403436005 + 0.433333009 -0.703834176 -0.318545073 -0.63493818 -0.817647994 + 0.5 -0.641928136 -0.164400041 -0.748933136 -1.29619002 + 0.533333004 0.624994755 0.0751969665 0.776998699 -5.11211014 + 0.56666702 0.497779846 0.107240975 0.860647798 -5.07632017 + 0.633333027 0.374065042 0.153200999 0.91466105 -4.72763014 + 0.699999988 0.396584034 0.161061004 0.903759062 -4.80346012 + 0.800000012 -0.471135795 -0.212992892 -0.855958581 -1.24518001 + 0.866666973 -0.529423773 -0.256535888 -0.808640718 -1.09807003 + 0.93333298 -0.586734951 -0.41384998 -0.696039021 -0.812902987 + 1 -0.616827965 -0.483654946 -0.620967925 -0.735252976 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.205312029 0.355497032 0.911849141 -0.0986445025 + 0.0666666999 -0.724294126 0.207065046 0.65766412 -0.0766721889 + 0.266667008 -0.795909226 -0.219686061 -0.564151108 -0.425312042 + 0.333332986 -0.788152158 -0.218545064 -0.575373113 -0.467299998 + 0.533333004 -0.248765081 -0.738395154 0.626808167 -0.584884942 + 0.733332992 -0.307422996 -0.734775007 0.604645967 -0.433573991 + 0.800000012 -0.336240828 -0.731884599 0.5926947 -0.384166002 + 0.93333298 -0.144023001 -0.980651975 0.132586002 -0.216152996 + 1 -0.0580888689 -0.99674958 -0.0558207743 -0.198581994 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 24 + 0 -0.965912104 -0.239962012 -0.0971185118 -1.22984004 + 0.0666666999 -0.965464413 -0.239349097 -0.102910042 -1.20429003 + 0.133332998 -0.954905331 -0.273191094 -0.116286047 -1.14830983 + 0.200000003 -0.871242225 -0.471142113 -0.137703031 -1.17036986 + 0.233333007 -0.814841926 -0.559735954 -0.150758982 -1.16993999 + 0.266667008 -0.745027781 -0.650932848 -0.14567095 -1.16927004 + 0.300000012 -0.751815736 -0.646066844 -0.131797954 -1.18519998 + 0.333332986 -0.758239985 -0.641442001 -0.116723001 -1.20014 + 0.366667002 -0.854368329 -0.50340116 -0.129004046 -1.20477998 + 0.400000006 -0.912057698 -0.372205853 -0.172085926 -1.21411002 + 0.433333009 -0.95949471 -0.18965593 -0.208327919 -1.22713006 + 0.466666996 -0.971094906 -0.0512214974 -0.233132988 -1.21582997 + 0.5 -0.96113044 0.0261645131 -0.274852127 -1.17618001 + 0.533333004 -0.949153543 0.0880040526 -0.302262843 -1.13571 + 0.56666702 -0.943480015 0.101305999 -0.315567017 -1.08911002 + 0.600000024 -0.938677669 0.110437959 -0.326630861 -1.03854001 + 0.633333027 -0.936083794 0.111325979 -0.333696932 -1.05540001 + 0.666666985 -0.941523671 0.119400963 -0.315081894 -1.06887996 + 0.699999988 -0.947459996 0.113828003 -0.298936009 -1.07842004 + 0.733332992 -0.95199585 0.106081977 -0.287141949 -1.08860004 + 0.800000012 -0.94834727 0.0903093293 -0.304108083 -1.12058985 + 0.866666973 -0.956925154 0.0809370205 -0.278825045 -1.17017996 + 0.93333298 -0.972538054 0.0459600054 -0.228161007 -1.15243006 + 1 -0.982581019 0.0354248993 -0.182427004 -1.13188004 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 24 + 0 0.999402344 -0.0245894101 0.0242958087 -1.05848002 + 0.0666666999 0.999400973 -0.0246350002 0.0243074 -1.05710006 + 0.133332998 0.999397159 -0.0247574039 0.0243387055 -1.05342996 + 0.200000003 0.999311268 -0.0274077076 0.0250151083 -0.979314089 + 0.233333007 0.99927628 -0.0284275077 0.0252754055 -0.953297973 + 0.266667008 0.999212801 -0.0301978942 0.0257270969 -0.911035001 + 0.300000012 0.999264419 -0.0287655126 0.0253614094 -0.944948018 + 0.333332986 0.999309182 -0.0274700057 0.0250310041 -0.977687061 + 0.366667002 0.999513388 -0.0207267068 0.0233098101 -1.18760002 + 0.400000006 0.99960047 -0.0172194075 0.0224143118 -1.33100998 + 0.433333009 0.999649644 -0.0149583938 0.0218367912 -1.43991995 + 0.466666996 0.999667168 -0.0140854027 0.0216139033 -1.48598003 + 0.5 0.99965632 -0.0146307051 0.0217531081 -1.45692992 + 0.533333004 0.999637842 -0.0155230984 0.021980999 -1.41136992 + 0.56666702 0.999629378 -0.0159205049 0.0220825076 -1.39181995 + 0.600000024 0.99962014 -0.0163446013 0.0221908018 -1.37145996 + 0.633333027 0.999617517 -0.0164630916 0.0222210884 -1.36585999 + 0.666666985 0.999614298 -0.0166093037 0.0222585071 -1.35900986 + 0.699999988 0.999614 -0.0166209992 0.0222613998 -1.35845995 + 0.733332992 0.999613583 -0.0166413933 0.022266591 -1.35750997 + 0.800000012 0.999593496 -0.0175202079 0.0224910118 -1.31756997 + 0.866666973 0.999513865 -0.0207102988 0.0233054981 -1.18821001 + 0.93333298 0.999335587 -0.0266804881 0.0248293895 -0.998677969 + 1 0.999223948 -0.0298939962 0.0256493967 -0.918034017 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 24 + 0 -0.111730985 0.933354855 -0.341122985 -0.201320007 + 0.0666666999 -0.0507775024 0.936652064 -0.346561015 -0.198808014 + 0.133332998 0.140714049 0.929909348 -0.33980611 -0.204007 + 0.200000003 0.531980097 0.746530175 -0.399612099 -0.337691993 + 0.233333007 0.573056877 0.722346902 -0.387066931 -0.386749029 + 0.266667008 0.598649859 0.697816908 -0.393280953 -0.454715014 + 0.300000012 0.581787944 0.720862925 -0.37666893 -0.432543993 + 0.333332986 0.560778141 0.744876206 -0.361507088 -0.412939042 + 0.366667002 0.0863658786 0.920388758 -0.381346911 -0.280099988 + 0.400000006 -0.629808068 0.75458914 -0.184220016 -0.256033003 + 0.433333009 -0.964542866 0.211109966 0.158396989 -0.374929011 + 0.466666996 -0.942699373 -0.020868605 0.33299011 -0.572059989 + 0.5 -0.91413033 -0.102190048 0.39233017 -0.676404953 + 0.533333004 -0.884437561 -0.139688939 0.445260793 -0.773600996 + 0.56666702 -0.845908225 -0.177600056 0.502889097 -0.823766053 + 0.600000024 -0.81004715 -0.205072045 0.549335122 -0.877058983 + 0.633333027 -0.780259311 -0.231568068 0.58100915 -0.880214989 + 0.666666985 -0.763923049 -0.253266007 0.593529999 -0.864982069 + 0.699999988 -0.768845201 -0.250639051 0.588266134 -0.827678025 + 0.733332992 -0.771271944 -0.247420996 0.586449027 -0.793321967 + 0.800000012 -0.783368886 -0.236035973 0.574995875 -0.627177 + 0.866666973 -0.786048234 -0.148185045 0.600141108 -0.351267964 + 0.93333298 -0.531972885 0.802642822 0.269757926 -0.0907173008 + 1 0.241484061 0.851866186 -0.464768142 -0.139482006 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 24 + 0 -0.399512887 0.591908872 0.70002383 -0.517253995 + 0.0666666999 -0.340009928 0.612898886 0.713265896 -0.582695007 + 0.133332998 -0.256931931 0.64447087 0.720168889 -0.689600945 + 0.200000003 -0.442470104 0.563922048 0.697289109 -0.692921937 + 0.233333007 -0.432074815 0.533873737 0.726835728 -0.707625985 + 0.266667008 -0.486238062 0.47627607 0.732621074 -0.624172986 + 0.300000012 -0.450872958 0.480571955 0.752172947 -0.625801027 + 0.333332986 -0.42509982 0.481860816 0.766224682 -0.617833018 + 0.366667002 -0.411385983 0.680141926 0.606768966 -0.722748995 + 0.400000006 -0.370625079 0.797846198 0.475477159 -0.762295008 + 0.433333009 -0.225378081 0.86022234 0.45740819 -0.800180912 + 0.466666996 -0.0249674022 0.858072042 0.512921989 -0.709087014 + 0.5 0.0724247918 0.872469962 0.483271003 -0.644222021 + 0.533333004 0.152359977 0.807440817 0.569934905 -0.703734994 + 0.56666702 0.230102003 0.761703014 0.605690956 -0.714914024 + 0.600000024 0.287688017 0.702874064 0.650541067 -0.767432988 + 0.633333027 0.238315001 0.723363936 0.648035944 -0.728472948 + 0.666666985 0.166309968 0.723396957 0.670102894 -0.750120997 + 0.699999988 0.112793997 0.741409004 0.661505997 -0.756968021 + 0.733332992 0.0704314783 0.74257189 0.666052878 -0.799498022 + 0.800000012 -0.118205033 0.842233181 0.525995135 -0.792903006 + 0.866666973 -0.221094936 0.831092775 0.510295808 -0.798170924 + 0.93333298 -0.216771051 0.714073062 0.66566503 -0.949539006 + 1 -0.3198829 0.750496805 0.578298807 -0.862010002 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 24 + 0 1 0 0 -0.884748995 + 0.0666666999 1 0 0 -0.925525069 + 0.133332998 1 0 0 -1.02434003 + 0.200000003 1 0 3.33591998e-007 -1.22096002 + 0.233333007 1 0 1.75701999e-007 -1.26137996 + 0.266667008 1 0 -1.33048999e-007 -1.28977001 + 0.300000012 1 0 1.7590402e-007 -1.28898001 + 0.333332986 1 0 0 -1.28792 + 0.366667002 1 0 0 -1.37363005 + 0.400000006 1 0 0 -1.39177012 + 0.433333009 1 0 0 -1.28903997 + 0.466666996 1 0 0 -1.05319989 + 0.5 1 0 0 -0.900038004 + 0.533333004 1 0 0 -0.711380005 + 0.56666702 1 0 0 -0.656255007 + 0.600000024 1 -1.96521e-007 0 -0.597275019 + 0.633333027 1 0 0 -0.676303029 + 0.666666985 1 -1.73312998e-007 0 -0.74962604 + 0.699999988 1 -2.38593998e-007 0 -0.819324017 + 0.733332992 1 0 0 -0.874330997 + 0.800000012 1 -2.72004996e-007 -2.43324024e-007 -1.08387005 + 0.866666973 1 -2.41350023e-007 -2.66598022e-007 -1.11655998 + 0.93333298 1 1.35400995e-007 1.86872981e-007 -0.866876066 + 1 1 0 1.52054e-007 -0.936971009 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 24 + 0 -0.79855895 -0.575766921 0.17548798 -0.851872981 + 0.0666666999 -0.8118819 -0.577840984 0.0833520964 -0.844193995 + 0.133332998 -0.830203474 -0.547002316 -0.107474059 -0.839878023 + 0.200000003 -0.856045961 -0.368776977 -0.362199962 -0.79983294 + 0.233333007 -0.826577842 -0.268706918 -0.494535863 -0.80953902 + 0.266667008 -0.839427114 -0.204119012 -0.503684044 -0.784103036 + 0.300000012 -0.837903798 -0.216721952 -0.500947893 -0.795768976 + 0.333332986 -0.842000306 -0.234381095 -0.48590219 -0.802658916 + 0.366667002 -0.774271071 -0.396279037 -0.493423998 -0.824748993 + 0.400000006 -0.704993248 -0.572477102 -0.418634117 -0.840610027 + 0.433333009 -0.591770053 -0.753687084 -0.285944045 -0.875046074 + 0.466666996 -0.496635944 -0.867867827 -0.0125761982 -0.925068915 + 0.5 -0.423839062 -0.887288094 0.181879997 -0.954822063 + 0.533333004 -0.25792098 -0.948619902 0.183294982 -0.847370982 + 0.56666702 -0.152687043 -0.967287302 0.202588066 -0.813054085 + 0.600000024 -0.0194396097 -0.989949465 0.140079066 -0.721467018 + 0.633333027 0.0199095942 -0.990059793 0.139230952 -0.674442053 + 0.666666985 0.0394355915 -0.998219848 0.0447436906 -0.543491006 + 0.699999988 0.0367498845 -0.998974562 0.0264429897 -0.577835023 + 0.733332992 0.0325399078 -0.995102227 -0.0933419317 -0.525266945 + 0.800000012 -0.171448052 -0.973965228 -0.148315027 -0.490429997 + 0.866666973 -0.574981153 -0.815398276 0.0672484189 -0.722714007 + 0.93333298 -0.73683399 -0.67402494 -0.0525932014 -0.869209945 + 1 -0.772196233 -0.633394182 0.0502476133 -0.867636979 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.460516185 0.886828244 -0.0382162146 -0.188396007 + 0.0666666999 -0.478550047 0.875576198 -0.0660012066 -0.161928013 + 0.200000003 -0.464172989 -0.586614013 -0.663647056 -0.0544420965 + 0.333332986 0.674808025 -0.691630006 -0.257453024 -0.253780007 + 0.400000006 0.694010735 -0.667191744 -0.270562917 -0.223363996 + 0.466666996 0.40438509 -0.766757131 0.498554111 -0.337736994 + 0.600000024 0.727884173 -0.324311078 -0.604158044 -0.242745996 + 0.800000012 0.87070626 0.149019063 -0.468683153 -0.065984197 + 0.866666973 0.280638903 -0.600164771 -0.749028742 -0.0726059973 + 1 0.261448085 -0.830785275 -0.491366178 -0.098124899 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.599041343 -0.787431479 0.145262107 -0.282833964 + 0.0666666999 0.590003014 -0.794004023 0.146472007 -0.278847009 + 0.200000003 0.565544963 -0.789246917 0.239265978 -0.191220999 + 0.266667008 0.762686193 -0.601539135 0.237614065 -0.219457984 + 0.333332986 0.814981759 0.0529895872 0.577058792 -0.122625001 + 0.400000006 0.403189749 -0.484101713 0.776584506 -0.209609002 + 0.466666996 0.204062015 -0.622071028 0.755900979 -0.336843997 + 0.600000024 0.0163292028 -0.564123094 0.825529218 -0.700680971 + 0.800000012 0.528294861 -0.77477181 0.347322911 -0.267257988 + 0.866666973 0.482621133 -0.803310156 0.348955065 -0.221717998 + 1 0.362117976 0.648725927 0.669346869 -0.083184503 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.996439099 -0.0841981098 0.00445528049 -0.0450997986 + 0.0666666999 -0.522271037 0.849026024 0.0799235106 -0.101441003 + 0.200000003 -0.998688996 0.0299252011 -0.0415297002 -0.203267992 + 0.333332986 -0.720153093 0.685891032 0.104561023 -0.231377989 + 0.400000006 0.708646774 -0.704945803 -0.0295159929 -0.229901999 + 0.466666996 0.642734885 -0.750496805 0.153773963 -0.265096009 + 0.600000024 0.577788115 -0.440550148 0.687078178 -0.666577995 + 0.800000012 0.962678909 0.209332973 -0.171548992 -0.615199029 + 0.866666973 0.954506457 0.250019133 -0.16250506 -0.412135035 + 1 -0.0817666948 0.977887988 0.19248198 -0.051638905 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.703612924 -0.70885402 0.0495463982 -0.114386991 + 0.0666666999 0.633600116 -0.77364713 0.00457779085 -0.130365998 + 0.200000003 0.222183004 -0.966559052 -0.128056005 -0.302677989 + 0.333332986 0.333584994 -0.91793108 -0.214764014 -0.439473957 + 0.400000006 0.271074116 -0.950363338 -0.152736068 -0.427489966 + 0.466666996 0.551522076 -0.833969176 -0.0178552046 -0.349996001 + 0.600000024 0.226366043 -0.39390406 -0.890841186 -0.401663035 + 0.800000012 0.361584783 -0.710722566 -0.603431702 -0.226680994 + 0.866666973 0.450781047 -0.743632019 -0.49376902 -0.180819988 + 1 0.703612983 -0.708854079 0.0495443046 -0.114386991 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.244535953 0.969566822 0.0119300978 -0.298869997 + 0.0666666999 0.227869973 0.973155856 0.0322938971 -0.296496987 + 0.200000003 -0.103402987 0.992242873 0.0690064952 -0.318794012 + 0.333332986 -0.0662233979 0.990342021 0.121808 -0.448222995 + 0.466666996 0.067797564 0.910441518 0.408043802 -0.350553006 + 0.600000024 0.405899882 0.83451283 0.372603893 -0.312822014 + 0.800000012 0.17806007 0.983371437 -0.0357105136 -0.315931022 + 0.866666973 0.114007965 0.99033767 0.0789520666 -0.300406992 + 1 -0.034010984 0.944597602 0.326463848 -0.286794007 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.923769116 -0.325747073 -0.201344028 -0.397406012 + 0.0666666999 0.92587769 -0.320472896 -0.200118959 -0.402128994 + 0.200000003 0.175293982 0.944333911 -0.278397977 -0.129727006 + 0.333332986 -0.627090156 0.751593173 0.204611033 -0.384725004 + 0.466666996 0.961332142 -0.265844017 0.071885407 -0.428650022 + 0.600000024 0.705052912 -0.660450935 0.258272976 -0.757435977 + 0.800000012 0.444439858 0.269612938 -0.854272842 -0.758058012 + 0.866666973 0.624023914 0.157936007 -0.765277982 -0.603386998 + 1 0.948533773 -0.256987929 -0.185042962 -0.469428003 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.381821185 -0.208426073 -0.900428295 -1.10922003 + 0.0666666999 -0.380770952 -0.233472958 -0.894708812 -1.10775006 + 0.200000003 -0.339620113 -0.411122113 -0.845953166 -1.27710986 + 0.266667008 -0.183068052 -0.520485103 -0.834015191 -1.63183999 + 0.333332986 -0.182487011 -0.51970607 -0.834628105 -1.63435996 + 0.400000006 -0.271160036 -0.587689042 -0.762295127 -1.42218006 + 0.466666996 -0.375524908 -0.629515827 -0.680213809 -1.14955997 + 0.600000024 -0.360520035 -0.571085036 -0.737487078 -1.09914005 + 0.800000012 -0.416770846 -0.540652812 -0.73075074 -1.02697003 + 0.866666973 -0.378886104 -0.479901105 -0.791290224 -1.00733995 + 1 -0.30598402 -0.408575058 -0.859907091 -1.03602004 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.929822206 0.362597048 0.0628809109 -0.275882035 + 0.0666666999 0.914228916 0.401330978 0.0558475964 -0.27907601 + 0.200000003 0.910382211 0.37671414 -0.171145067 -0.322439998 + 0.333332986 0.859939933 0.490435958 -0.141335979 -0.34582901 + 0.400000006 0.735898256 0.66895318 -0.104668029 -0.395807028 + 0.466666996 0.285902083 0.951766372 0.11135903 -0.514539003 + 0.600000024 0.277855098 0.959742367 0.0411227159 -0.448600978 + 0.800000012 0.617035806 0.785210788 0.0520661846 -0.332011014 + 0.866666973 0.626957059 0.778661132 0.0247313064 -0.34284398 + 1 0.655604839 0.754951715 -0.0151721956 -0.452271014 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.994671941 -0.0981282964 0.0315996967 -0.12339399 + 0.0666666999 0.997032046 -0.0769567043 -0.0021957003 -0.117709003 + 0.200000003 0.183905065 0.966622353 -0.178382069 -0.211931005 + 0.333332986 0.284909993 -0.876941025 -0.387041003 -0.104764998 + 0.400000006 -0.0992906168 -0.913450122 -0.394652098 -0.214466989 + 0.466666996 -0.0641697943 -0.99661988 -0.0512938909 -0.344249964 + 0.600000024 -0.0238675009 -0.993463039 -0.111631013 -0.250576019 + 0.800000012 0.153969005 -0.916772068 -0.368541032 -0.11745701 + 0.866666973 0.318883061 -0.740806103 -0.59120214 -0.081785202 + 1 0.52915293 0.423198938 -0.73545891 -0.0794305056 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.409408033 0.346398026 0.844034076 -0.850521922 + 0.0666666999 -0.411228985 0.325045943 0.8516078 -0.818239987 + 0.200000003 -0.358951986 0.256668985 0.897370875 -0.713764012 + 0.333332986 -0.329344988 0.0744872019 0.941267014 -0.619341016 + 0.400000006 -0.352282822 0.0925463587 0.931306601 -0.608650029 + 0.466666996 -0.375641048 0.11112202 0.920079172 -0.598520041 + 0.600000024 -0.423348039 0.149679005 0.893517017 -0.580066025 + 0.800000012 -0.496068776 0.210256889 0.842441559 -0.557328999 + 0.866666973 -0.520192087 0.230907008 0.822242141 -0.551180005 + 1 -0.567517817 0.272375911 0.777003765 -0.541176975 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.666496158 -0.445272118 -0.59792614 -0.222160012 + 0.0666666999 0.496883124 -0.171383038 -0.850726187 -0.177545995 + 0.133332998 -0.602850199 -0.136246026 -0.786135256 -0.140064016 + 0.200000003 -0.594550908 -0.706253767 -0.384336919 -0.195335001 + 0.333332986 -0.960485816 -0.12637797 -0.247982964 -0.364169002 + 0.400000006 -0.942738831 -0.0316588916 -0.332025945 -0.363155991 + 0.466666996 -0.829466999 0.238940999 -0.504867971 -0.183899999 + 0.600000024 -0.591066837 0.189227939 -0.784112751 -0.123625003 + 0.800000012 -0.209178984 0.422001958 -0.882132947 -0.272996008 + 0.866666973 -0.282523006 0.219371006 -0.933839977 -0.308272988 + 1 0.102447025 0.000684414175 -0.994738221 -0.435236007 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.420893937 -0.895210862 -0.146443963 -0.256857008 + 0.0666666999 0.452935934 -0.883661807 -0.118282981 -0.333775967 + 0.133332998 0.551453173 -0.827262282 -0.107408039 -0.452677995 + 0.200000003 0.457042009 -0.86601001 -0.20282802 -0.361192971 + 0.333332986 0.918144286 -0.292691082 -0.267101049 -0.679130077 + 0.400000006 0.907295227 -0.323650092 -0.268451065 -0.622204006 + 0.466666996 0.893076181 -0.360120088 -0.26968205 -0.566027999 + 0.600000024 0.921446323 -0.348566085 -0.171576053 -0.390148014 + 0.800000012 -0.282666028 -0.472720027 0.834647059 -0.169514999 + 0.866666973 -0.836515129 0.125937015 0.533275068 -0.200247005 + 1 0.148909926 -0.975029528 -0.164751947 -0.224198982 +endnode +doneanim plslashl a_dfa2_coat + +#MAXANIM ASCII +newanim plslashr a_dfa2_coat + length 1 + transtime 0.300000012 + animroot rootdummy + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.433333009 blur_start + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 16 + 0 -0.00185768004 -0.0312600993 1.00251997 + 0.0666666999 -0.00646403991 -0.0575602017 0.997461975 + 0.133332998 -0.0301543996 -0.12331 0.984822989 + 0.200000003 -0.0538447015 -0.189060003 0.972182989 + 0.266667008 -0.0619671009 -0.211603001 0.967849016 + 0.333332986 -0.0229126997 -0.143594995 0.963783026 + 0.400000006 0.0646509975 0.0251988992 0.954047978 + 0.466666996 0.135729998 0.199496999 0.944118977 + 0.533333004 0.158843994 0.295863986 0.945445001 + 0.600000024 0.145136997 0.310703993 0.953741014 + 0.666666985 0.132531002 0.270907998 0.956407011 + 0.733332992 0.106830999 0.16979 0.963657975 + 0.800000012 0.0633066967 0.0828208998 0.976920009 + 0.866666973 0.0200903993 0.0093948096 0.990233004 + 0.93333298 0.00427225977 -0.0190047994 0.995818973 + 1 -0.00189467997 -0.0312605985 0.998121023 + orientationkey 16 + 0 0.916261613 0.0597125739 0.396104842 -0.211063012 + 0.0666666999 0.985222936 0.128347978 0.113412991 -0.172379002 + 0.133332998 0.306238025 0.102376007 -0.946434081 -0.405639976 + 0.200000003 0.0933319107 0.0760265067 -0.992728114 -0.792636991 + 0.266667008 0.055202581 0.0709848851 -0.995948732 -0.95176208 + 0.333332986 0.24524194 0.0949927792 -0.964796722 -0.733124912 + 0.400000006 0.957910597 0.146729961 -0.246733889 -0.484001011 + 0.466666996 0.827282846 0.0777111873 0.556384861 -0.866814017 + 0.533333004 0.668748975 -0.00185939984 0.743485928 -1.16250002 + 0.600000024 0.538970888 -0.0154994959 0.842181802 -1.33115005 + 0.666666985 0.459464908 0.0296209957 0.887701869 -1.53584993 + 0.733332992 0.463750929 0.0353834927 0.885258794 -1.34097993 + 0.800000012 0.537680089 0.0215224065 0.842874169 -0.849249959 + 0.866666973 0.753930211 -0.0256586075 0.656453252 -0.376581013 + 0.93333298 0.858336031 0.0239214022 0.512530029 -0.256150961 + 1 0.916262925 0.0597050972 0.396102935 -0.211063996 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.847584069 0.100689016 -0.521021068 -0.208508998 + 0.0666666999 0.646122694 0.105787955 -0.755866647 -0.228860989 + 0.300000012 -0.0758057982 0.0721766949 -0.994506896 -0.64566803 + 0.366667002 -0.0847298279 0.0706737265 -0.993894398 -0.677964032 + 0.400000006 -0.0860571265 0.0715677217 -0.993716359 -0.662831008 + 0.433333009 -0.0796961188 0.0745540112 -0.994027257 -0.617213011 + 0.5 0.0410113186 0.0992066413 -0.994221389 -0.391256988 + 0.56666702 0.719595015 -0.664519012 0.201488033 -0.219188973 + 0.633333027 0.233121961 -0.565749943 0.790936887 -0.64746207 + 0.699999988 0.174675927 -0.624306738 0.761399686 -0.764747977 + 0.766667008 0.21386297 -0.626939893 0.749138832 -0.657303989 + 0.93333298 0.962175906 -0.100577988 -0.253182977 -0.181704 + 1 0.847584069 0.100689016 -0.521021068 -0.208508998 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.604599953 -0.697043955 0.38547191 -0.737482011 + 0.0666666999 -0.598405778 -0.799967706 -0.0442960896 -0.634329915 + 0.100000001 -0.561645865 -0.798741877 -0.215789959 -0.698625982 + 0.166666999 -0.322865993 -0.885080993 -0.335245013 -0.931168079 + 0.266667008 -0.0235942937 -0.941928744 -0.334982902 -1.30083001 + 0.300000012 -0.302047879 -0.780141711 -0.547855794 -1.23882997 + 0.333332986 -0.406424999 -0.701700985 -0.585178971 -1.23344004 + 0.366667002 -0.50642401 -0.598320007 -0.620925009 -1.24214995 + 0.433333009 -0.711390853 -0.227029949 -0.665116906 -1.20809996 + 0.5 -0.836187065 -0.30626902 0.454962045 -1.94035006 + 0.56666702 -0.711699128 -0.317597032 0.626591146 -1.96736002 + 0.600000024 -0.750109792 -0.18533197 0.634812832 -2.07722998 + 0.633333027 -0.673151016 -0.277538002 0.685449004 -2.43533993 + 0.666666985 0.681550801 0.317473918 -0.659316897 -3.96555996 + 0.733332992 -0.761322081 -0.303885013 0.572749972 -2.12154007 + 0.800000012 -0.780283093 -0.375088066 0.500467002 -2.07082009 + 0.866666973 -0.832528412 -0.300993145 0.465080202 -1.89625013 + 0.899999976 -0.858642817 -0.263528943 0.439641893 -1.7369101 + 0.93333298 -0.863383174 -0.281476051 0.418737084 -1.61896002 + 1 -0.821663976 -0.388060987 0.417465001 -1.42364013 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.998103082 0.00255944999 -0.0615118034 -2.42183995 + 0.0666666999 -1 -1.41070004e-007 0 -2.08702993 + 0.100000001 -1 -1.38605998e-007 0 -2.03922009 + 0.166666999 -1 -1.47279991e-007 0 -1.92778003 + 0.266667008 1 1.58459997e-007 0 -4.55849981 + 0.300000012 1 1.42963998e-007 0 -4.6360302 + 0.333332986 1 0 0 -4.6789999 + 0.366667002 -1 -1.80841013e-007 0 -1.55190003 + 0.433333009 -1 -1.87759994e-007 0 -1.56215 + 0.5 -1 -4.61079026e-007 0 -0.352775991 + 0.56666702 1 6.58043973e-007 0 -5.62547016 + 0.600000024 1 1.1510499e-006 5.92464971e-007 -5.96685982 + 0.633333027 1 1.96255996e-006 -3.13867008e-006 -6.19543982 + 0.666666985 1 1.14322995e-006 -7.31572982e-007 -6.0048399 + 0.733332992 1 5.37881022e-007 0 -5.70717001 + 0.800000012 1 3.29234012e-007 -2.37440005e-007 -5.56873989 + 0.866666973 -1 -2.05079004e-007 -2.16689998e-007 -0.846239984 + 0.899999976 -1 0 0 -0.97911793 + 0.93333298 -1 -1.93068018e-007 0 -1.09711993 + 1 -0.995581865 -0.000378436933 -0.0938964859 -1.32134998 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.0324038044 -0.264380008 0.963874042 -5.42578983 + 0.0666666999 0.231008962 -0.23619096 0.943847835 -5.03739977 + 0.100000001 0.209573016 -0.233270004 0.949560046 -4.91690016 + 0.166666999 -0.27332598 0.167560995 -0.947214961 -1.66584003 + 0.266667008 -0.369962901 0.130030975 -0.919901848 -2.1436801 + 0.300000012 0.142658025 -0.26315707 0.954147279 -4.28908014 + 0.333332986 0.0361324959 -0.274503976 0.960906863 -4.35188007 + 0.366667002 -0.0765677691 -0.287501901 0.954714656 -4.42342997 + 0.433333009 -0.298386037 -0.262052029 0.917766035 -4.68637991 + 0.5 -0.125736028 0.156823039 -0.979590237 -1.89468002 + 0.56666702 0.32499814 -0.15607807 0.93274641 -4.50410986 + 0.600000024 0.281768948 -0.195289955 0.939397752 -4.53102016 + 0.633333027 0.280888051 -0.119385026 0.952286243 -4.08488989 + 0.666666985 0.187795058 -0.0776091143 0.979137301 -4.13881016 + 0.733332992 0.073433429 -0.100963034 0.992176414 -4.44675016 + 0.800000012 0.0512719825 -0.166605935 0.984689593 -4.39623022 + 0.866666973 -0.0193989035 -0.243606061 0.96968025 -4.56687021 + 0.899999976 -0.0641346201 -0.284433067 0.956548274 -4.64127016 + 0.93333298 -0.0600231029 -0.313053042 0.947836995 -4.62729979 + 1 -0.0118929036 -0.370628089 0.928705215 -4.61884022 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.748181283 0.428656191 -0.506437182 -0.843508959 + 0.0666666999 -0.903854072 0.238157019 -0.35542801 -0.880356014 + 0.100000001 -0.896910846 0.204620972 -0.392021954 -0.90803802 + 0.166666999 -0.878372014 0.141939998 -0.456416041 -0.968837917 + 0.266667008 -0.843580186 0.0594252162 -0.533705056 -1.07123995 + 0.300000012 -0.831047297 0.0348937102 -0.555106163 -1.10781002 + 0.333332986 -0.830815315 0.0251376089 -0.555980206 -1.10576999 + 0.366667002 -0.828379512 0.0224635862 -0.559716642 -1.11578 + 0.433333009 -0.810412049 0.189167023 -0.554480016 -1.24078 + 0.5 -0.637661934 0.439597934 -0.632566929 -0.825221002 + 0.56666702 0.11780598 0.729421794 -0.673843861 -0.612236977 + 0.600000024 0.308697999 0.745211005 -0.591072023 -0.740336001 + 0.633333027 0.434454948 0.736986935 -0.517782927 -0.88923502 + 0.666666985 -0.461639822 -0.728720784 0.505820811 -5.43227005 + 0.733332992 0.521749735 0.707372725 -0.476865798 -0.776717007 + 0.800000012 0.59010011 0.677367151 -0.439267099 -0.706632972 + 0.866666973 0.666686714 0.635104716 -0.390090793 -0.642015994 + 0.899999976 0.707627952 0.607950926 -0.360080987 -0.612303972 + 0.93333298 0.749762952 0.575910926 -0.32585597 -0.584681988 + 1 0.893147349 0.443933189 -0.0721881241 -0.487368971 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.974359095 -0.000454211084 -0.224998042 -0.73662895 + 0.0666666999 -0.934971929 -0.121748 -0.33317396 -0.487769961 + 0.100000001 -0.930665255 -0.183851048 -0.316324085 -0.510761023 + 0.166666999 -0.913918316 -0.290145099 -0.283847094 -0.562071979 + 0.266667008 0.879010975 0.411642969 0.240602985 -5.63408995 + 0.300000012 0.866553843 0.444036901 0.22784996 -5.60306978 + 0.333332986 0.869122267 0.439741135 0.226394072 -5.59317017 + 0.366667002 -0.868178844 -0.442056954 -0.225501955 -0.691077948 + 0.433333009 -0.90076685 -0.408891946 -0.146377981 -0.656318009 + 0.5 -0.986814618 0.104123965 0.123915948 -1.56325996 + 0.56666702 -0.869092166 -0.343635112 0.355800092 -1.61313999 + 0.600000024 -0.847976208 -0.353870094 0.394604057 -1.5964601 + 0.633333027 -0.824751914 -0.363516957 0.433173954 -1.58186996 + 0.666666985 -0.856380343 -0.33942014 0.389110148 -1.56920993 + 0.733332992 -0.911186516 -0.286938846 0.295643836 -1.55465996 + 0.800000012 -0.953041613 -0.229867905 0.197160929 -1.55476999 + 0.866666973 -0.980723739 -0.169880971 0.0965471864 -1.56951988 + 0.899999976 -0.989154875 -0.139364988 0.0463688001 -1.58228004 + 0.93333298 -0.994058132 -0.108802021 -0.00325706042 -1.59850001 + 1 -0.993848622 -0.0483553819 -0.0996326655 -1.64098001 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.616827965 -0.483654946 -0.620967925 -0.735252976 + 0.0666666999 -0.469829023 -0.397085071 -0.788406074 -0.868045032 + 0.100000001 -0.407788157 -0.372882128 -0.833467305 -0.818988025 + 0.166666999 -0.252881944 -0.30705595 -0.9174788 -0.737627983 + 0.266667008 -0.0504274853 0.159971952 0.985832691 -5.61134005 + 0.300000012 -0.160351962 0.101224981 0.98185575 -5.61504984 + 0.333332986 -0.157135919 -0.073681064 0.984824538 -5.58866978 + 0.366667002 -0.150050968 -0.23054494 0.961422741 -5.54428005 + 0.433333009 0.0300946832 0.463910788 -0.885370612 -0.797643006 + 0.5 0.667413235 0.420869172 -0.614352286 -1.16255999 + 0.56666702 -0.166709021 0.852738082 -0.495021015 -1.59518003 + 0.600000024 -0.201923028 0.877591252 -0.434811085 -1.41197002 + 0.633333027 -0.282152951 0.874636948 -0.394207984 -1.25234008 + 0.666666985 -0.240589038 0.869070113 -0.432243049 -1.14357996 + 0.733332992 -0.280981094 0.853540421 -0.438769221 -0.879694045 + 0.800000012 -0.280495077 0.813770235 -0.509019196 -0.642944932 + 0.866666973 -0.265689075 0.743394375 -0.613819301 -0.401892036 + 0.899999976 -0.201673031 0.614892125 -0.76238817 -0.308771044 + 0.93333298 -0.0746874735 0.339586884 -0.937604666 -0.238501981 + 1 0.217945054 -0.630849183 -0.744667232 -0.352681965 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 7.00649232e-045 + period -0.011686747 + tightness 0.433333009 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.0580883734 -0.99674958 -0.055820778 -0.198581994 + 0.0666666999 -0.112729035 -0.981912255 0.152120039 -0.174234003 + 0.200000003 -0.15180403 0.214526042 0.964849293 -0.182151005 + 0.266667008 -0.108665951 0.49738279 0.860698581 -0.290416956 + 0.333332986 -0.40307197 0.433654994 0.805900931 -0.299641997 + 0.533333004 -0.964404404 0.178485096 0.195108086 -0.260203034 + 0.733332992 -0.884664953 -0.346378982 0.312072963 -0.325774014 + 0.866666973 -0.978118956 -0.193143979 0.0773219913 -0.196328998 + 0.93333298 -0.653322697 0.173971921 0.736819685 -0.0967768058 + 1 -0.205312029 0.355497032 0.911849141 -0.0986445993 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.982581019 0.0354248993 -0.182427004 -1.13188004 + 0.0666666999 -0.984258354 0.011758605 -0.176344067 -1.14239001 + 0.133332998 -0.99587065 0.0720543787 -0.0552254841 -1.17071998 + 0.200000003 -0.983179748 0.176849976 -0.045624692 -1.10423994 + 0.266667008 -0.991307199 0.128198013 0.029586006 -1.07286 + 0.333332986 -0.990654051 -0.0353952982 0.131726012 -1.22309995 + 0.366667002 -0.974480867 -0.205491975 0.0903328881 -1.37895 + 0.400000006 -0.933170676 -0.356008887 0.0494989827 -1.47186995 + 0.433333009 -0.875877917 -0.48210898 0.0202192981 -1.48901999 + 0.466666996 -0.809699237 -0.585585117 -0.0384344086 -1.43958998 + 0.533333004 -0.778743207 -0.6149261 -0.124197021 -1.15445995 + 0.56666702 -0.758160233 -0.617710233 -0.208871081 -1.05474997 + 0.600000024 -0.729839146 -0.608489037 -0.311570048 -0.959998965 + 0.633333027 -0.646284282 -0.644678235 -0.408297211 -0.995454013 + 0.666666985 -0.552243948 -0.673673987 -0.491110981 -1.04067004 + 0.733332992 -0.598821342 -0.67936933 -0.424111217 -1.06061006 + 0.800000012 -0.848645151 -0.498645157 -0.176506042 -1.07572997 + 0.866666973 -0.970935762 -0.236703962 -0.0354257971 -1.07860005 + 0.93333298 -0.966052771 -0.242573947 -0.088881284 -1.19848001 + 1 -0.965912104 -0.239962012 -0.0971184149 -1.22984004 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 0.999223948 -0.0298939962 0.0256493967 -0.918034017 + 0.0666666999 0.999222696 -0.029927792 0.0256580953 -0.917253017 + 0.133332998 0.999016225 -0.035181202 0.0269980039 -0.808965087 + 0.200000003 0.998702347 -0.0420396142 0.0287463106 -0.699542999 + 0.266667008 0.998811126 -0.0397827029 0.0281716045 -0.732281923 + 0.333332986 0.999236107 -0.0295584034 0.0255637038 -0.925884008 + 0.366667002 0.999418616 -0.0240565911 0.0241597909 -1.07474995 + 0.400000006 0.999515712 -0.0206401963 0.023287693 -1.19079995 + 0.433333009 0.999575019 -0.0183013994 0.0226906016 -1.28369999 + 0.466666996 0.999603748 -0.0170751959 0.0223774966 -1.33754992 + 0.533333004 0.999610782 -0.0167641956 0.022297997 -1.35180986 + 0.56666702 0.99961108 -0.0167517997 0.022294702 -1.35239995 + 0.600000024 0.999605656 -0.0169908945 0.0223558918 -1.34139001 + 0.633333027 0.99961096 -0.0167585965 0.022296397 -1.35205996 + 0.666666985 0.999613643 -0.0166383944 0.0222657919 -1.35766006 + 0.733332992 0.999620438 -0.0163305067 0.0221872088 -1.37213004 + 0.800000012 0.999593079 -0.0175378025 0.0224955026 -1.31677997 + 0.866666973 0.999500394 -0.0212108083 0.0234333072 -1.16990995 + 0.93333298 0.999435663 -0.0234876908 0.0240145903 -1.09265006 + 1 0.999402344 -0.0245894101 0.0242958087 -1.05848002 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 0.241484985 0.851866007 -0.464768022 -0.139482006 + 0.0666666999 0.548005939 0.801716924 -0.238619983 -0.129492 + 0.133332998 0.833582103 0.0444521084 0.550604105 -0.301485956 + 0.200000003 0.630490243 -0.211027071 0.746960223 -0.61659199 + 0.266667008 0.604871929 -0.231510982 0.761926889 -0.64872402 + 0.333332986 0.749954641 0.109234944 0.652407706 -0.333710998 + 0.366667002 0.422928959 0.795681 0.433616012 -0.223752007 + 0.400000006 -0.213806048 0.974825144 -0.0632683039 -0.329097986 + 0.433333009 -0.460186988 0.831106007 -0.312235028 -0.55518502 + 0.466666996 -0.554737091 0.724303067 -0.409453094 -0.800407946 + 0.533333004 -0.613784015 0.577226996 -0.538589001 -1.12665999 + 0.56666702 -0.650830925 0.535014868 -0.538681924 -1.1710701 + 0.600000024 -0.709740818 0.483525902 -0.512318909 -1.18059003 + 0.633333027 -0.762819886 0.47615096 -0.437476963 -1.1365 + 0.666666985 -0.778994262 0.483744115 -0.398948133 -1.12539005 + 0.733332992 -0.674753904 0.586287856 -0.448300898 -1.02428997 + 0.800000012 -0.514497042 0.623291135 -0.588898063 -0.788535953 + 0.866666973 -0.38240099 0.681543946 -0.62391293 -0.425195009 + 0.93333298 -0.242090896 0.836715698 -0.491221815 -0.255133003 + 1 -0.111730002 0.933354974 -0.341123015 -0.201320007 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 19 + 0 -0.3198829 0.750496805 0.578298807 -0.862010002 + 0.0666666999 -0.342089951 0.745115876 0.572517931 -0.781166971 + 0.133332998 -0.226568893 0.526687741 0.819308579 -0.76394701 + 0.200000003 -0.0527659133 0.300141096 0.952434301 -0.830097079 + 0.266667008 0.00278668897 -0.00920998678 0.999953687 -0.614663005 + 0.333332986 0.0259944908 0.118181966 0.992651641 -0.669166028 + 0.400000006 -0.151357979 0.100203998 0.983386934 -0.604110003 + 0.433333009 -0.290691048 0.123944029 0.948755264 -0.50238502 + 0.466666996 -0.432902157 0.188232079 0.881569266 -0.405394018 + 0.533333004 -0.653963029 0.652541995 0.382780969 -0.398306012 + 0.56666702 -0.586659014 0.719912052 0.370887995 -0.463665009 + 0.600000024 -0.53245616 0.766234279 0.359688103 -0.532132983 + 0.633333027 -0.636990964 0.770832896 0.00768707972 -0.493988961 + 0.666666985 -0.65525806 0.669439137 -0.349983037 -0.525097013 + 0.733332992 -0.70497185 0.64089781 -0.303750962 -0.589181006 + 0.800000012 -0.554284334 0.818595409 0.150567085 -0.541836023 + 0.866666973 -0.159871995 0.780197084 0.604758978 -0.631734073 + 0.93333298 -0.343109906 0.653878808 0.67432785 -0.542761981 + 1 -0.399512887 0.591908872 0.70002383 -0.517253995 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 19 + 0 1 0 0 -0.936971009 + 0.0666666999 1 0 0 -0.988786995 + 0.133332998 1 0 0 -1.03956997 + 0.200000003 1 0 0 -1.04525995 + 0.266667008 1 0 0 -0.994683981 + 0.333332986 1 0 0 -0.982879996 + 0.400000006 1 -1.85091011e-007 0 -0.813919008 + 0.433333009 1 0 1.44338998e-007 -0.703540027 + 0.466666996 1 0 -3.63136962e-007 -0.518773019 + 0.533333004 1 -2.59600029e-007 -6.97540031e-007 -0.414862961 + 0.56666702 1 -2.92882987e-007 0 -0.322210014 + 0.600000024 1 -7.25793996e-007 3.55296976e-007 -0.229555994 + 0.633333027 1 3.07712014e-007 -1.04602987e-006 -0.233636022 + 0.666666985 1 0 1.35844004e-007 -0.237714991 + 0.733332992 1 0 0 -0.629100025 + 0.800000012 1 0 0 -0.829052985 + 0.866666973 1 0 0 -0.875880003 + 0.93333298 1 0 -2.27664998e-007 -0.886344969 + 1 1 0 0 -0.884748995 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 19 + 0 -0.772196233 -0.633394182 0.0502478108 -0.867636979 + 0.0666666999 -0.784869015 -0.605112016 0.133491993 -0.892745018 + 0.133332998 -0.77641809 -0.553683043 0.301015019 -0.962337971 + 0.200000003 -0.722610235 -0.531317174 0.442195147 -1.04628003 + 0.266667008 -0.619161129 -0.453932106 0.640769184 -1.22666001 + 0.333332986 -0.747570038 -0.477586031 0.461574048 -1.06800997 + 0.400000006 -0.865661085 -0.492969036 0.0872491002 -0.897585034 + 0.433333009 -0.8263309 -0.55969286 -0.0626189858 -0.840376973 + 0.466666996 -0.727048874 -0.649563909 -0.222410947 -0.787967026 + 0.533333004 -0.497396737 -0.786188602 -0.366747797 -0.778751016 + 0.56666702 -0.35840109 -0.795433223 -0.488707155 -0.838042974 + 0.600000024 -0.229729071 -0.781720221 -0.579774141 -0.919384956 + 0.633333027 -0.268972009 -0.80655098 -0.526431024 -0.882106006 + 0.666666985 -0.30974102 -0.828785121 -0.466021121 -0.848996997 + 0.733332992 -0.570460021 -0.698325992 -0.432337999 -0.869718969 + 0.800000012 -0.744843364 -0.626701236 -0.229028106 -0.862071991 + 0.866666973 -0.794816136 -0.606538057 -0.0194645021 -0.882275999 + 0.93333298 -0.801915228 -0.585309207 0.119771041 -0.857521057 + 1 -0.798558831 -0.575766861 0.175488949 -0.851872981 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.261448085 -0.830785275 -0.491366178 -0.098124899 + 0.0666666999 0.331357926 0.921980798 -0.200382963 -0.0806052014 + 0.200000003 0.11748299 0.979050934 -0.166303992 -0.0894548967 + 0.266667008 0.0252684057 0.988455296 -0.149391025 -0.0953115001 + 0.400000006 -0.130749002 0.789758086 -0.599322021 -0.15634498 + 0.466666996 -0.178368062 0.822992325 -0.539322197 -0.155935004 + 0.533333004 -0.599345028 0.437546968 -0.670326948 -0.161387995 + 0.600000024 -0.60280478 0.533821821 -0.59300983 -0.158131003 + 0.666666985 -0.741399348 0.118535057 -0.660512269 -0.160886005 + 0.733332992 -0.812879026 -0.0141750006 -0.582260013 -0.175366998 + 1 -0.460516185 0.886828244 -0.038216114 -0.188396007 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.362116843 0.648725688 0.669347703 -0.0831844956 + 0.0666666999 0.341199845 -0.878152609 0.335306853 -0.137990996 + 0.200000003 0.574939311 -0.801588356 0.164015055 -0.297084987 + 0.266667008 0.436159015 -0.865829051 0.245164007 -0.296175987 + 0.400000006 0.480246246 -0.853255451 -0.203270108 -0.283845007 + 0.466666996 0.510452807 -0.842960715 -0.169867948 -0.273274988 + 0.533333004 0.256134957 -0.889944911 0.377349943 -0.318230003 + 0.600000024 0.31259796 -0.876875997 0.365199983 -0.298949987 + 0.666666985 0.0987529904 -0.986624837 0.129688963 -0.447973967 + 0.733332992 0.0764874145 -0.9921031 0.0994036123 -0.451635957 + 0.866666973 0.0523176976 -0.991803885 0.116566993 -0.310488999 + 1 0.599041343 -0.787431479 0.145262107 -0.282833964 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.0817660987 0.977888048 0.192481995 -0.0516389012 + 0.0666666999 -0.543925881 0.833603799 0.0961737782 -0.0932492986 + 0.200000003 -0.0971024632 -0.636242747 0.76535368 -0.210801005 + 0.266667008 -0.116175964 -0.635859847 0.76301074 -0.193850994 + 0.400000006 0.533284009 0.0474574007 -0.844604015 -0.482767999 + 0.466666996 0.440542191 0.319565117 -0.838928342 -0.525057971 + 0.533333004 0.537519097 0.750415146 -0.384643078 -0.552628994 + 0.600000024 0.528033912 0.7555089 -0.387796938 -0.469850004 + 0.666666985 0.435680985 0.250977039 -0.864403009 -0.268332988 + 0.733332992 -0.104724012 -0.517842054 -0.849042118 -0.295147985 + 0.866666973 -0.687630057 -0.373057038 -0.622891068 -0.27067399 + 1 -0.99643904 -0.0841981992 0.0044559706 -0.0450997986 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.703612983 -0.708854079 0.0495443046 -0.114386991 + 0.0666666999 0.719436884 -0.69440788 -0.0144310985 -0.144835994 + 0.200000003 0.717762232 -0.69625324 -0.00698856218 -0.140452996 + 0.266667008 0.716871977 -0.697197974 -0.0030895099 -0.138264999 + 0.400000006 0.467743009 -0.0557590984 -0.88210398 -0.137556002 + 0.466666996 -0.428312987 -0.510631979 -0.745521963 -0.137875006 + 0.533333004 -0.341469884 -0.588976741 -0.73246485 -0.121839002 + 0.600000024 -0.223734006 -0.677118003 -0.701038003 -0.107972994 + 0.666666985 -0.0690462962 -0.765908003 -0.63923198 -0.0972115993 + 0.733332992 -0.203987971 -0.898166835 -0.389467955 -0.189905986 + 0.866666973 0.291159898 -0.918924689 -0.266088903 -0.132541001 + 1 0.703612924 -0.70885402 0.0495463982 -0.114386991 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.0340111852 0.944597602 0.326463848 -0.286794007 + 0.0666666999 -0.0147935934 0.951780498 0.306422889 -0.285973966 + 0.200000003 0.305805951 0.54587388 0.780066967 -0.322703987 + 0.266667008 0.309759885 0.595652759 0.741111755 -0.311827004 + 0.400000006 -0.477575034 0.874969065 0.0796945989 -0.30737704 + 0.466666996 -0.501390934 0.86431396 -0.0396037959 -0.325578004 + 0.533333004 -0.429650009 0.899076998 -0.0840319991 -0.323159009 + 0.600000024 -0.349066943 0.934233725 -0.0732093826 -0.311024994 + 0.666666985 0.211302102 0.532139242 0.819865406 -0.351702988 + 0.733332992 0.179228038 0.588800132 0.788157165 -0.34780401 + 0.866666973 0.298337013 0.93366909 0.19813402 -0.303674996 + 1 0.244535014 0.96956706 0.0119301006 -0.298869997 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.948533773 -0.256987929 -0.185042962 -0.469428003 + 0.0666666999 0.962110639 -0.212187931 -0.171228945 -0.454919994 + 0.200000003 0.922936141 -0.360247016 -0.135687009 -0.548105001 + 0.266667008 0.888134599 -0.455825806 -0.0586493723 -0.528940976 + 0.400000006 -0.551638007 -0.261527985 -0.792021871 -0.378988981 + 0.466666996 0.173301041 0.176841035 -0.968862236 -0.511116982 + 0.533333004 -0.00392204989 0.637934029 -0.770081043 -0.504993021 + 0.600000024 0.187113002 0.85403204 0.485405028 -0.399045974 + 0.666666985 0.518982053 0.0811001062 -0.850929141 -0.44453299 + 0.733332992 0.905548096 -0.293111026 0.306706041 -0.630500019 + 0.866666973 0.980395555 -0.103428952 -0.16771093 -0.504634023 + 1 0.923769116 -0.325747073 -0.201344028 -0.397406012 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.30598402 -0.408575058 -0.859907091 -1.03602004 + 0.0666666999 -0.282221019 -0.360308051 -0.889117181 -1.00163996 + 0.200000003 -0.732533932 -0.498792976 -0.463248968 -0.541332006 + 0.266667008 -0.696760833 -0.46626088 -0.545091867 -0.574333012 + 0.400000006 -0.561647892 -0.327763945 -0.759685755 -1.10432994 + 0.466666996 -0.421617895 -0.417791873 -0.804790854 -1.45840013 + 0.533333004 -0.569476128 -0.449590057 -0.688161135 -1.54939997 + 0.600000024 -0.552167118 -0.425371051 -0.717057109 -1.47923994 + 0.666666985 -0.554342091 -0.447385103 -0.701820076 -1.52586997 + 0.733332992 -0.539740741 -0.420817822 -0.729103744 -1.46102011 + 1 -0.381821185 -0.208426073 -0.900428295 -1.10922003 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.655604839 0.754951715 -0.0151721956 -0.452271014 + 0.0666666999 0.662349105 0.748910129 -0.0206708033 -0.35719499 + 0.200000003 0.67550081 0.720039845 0.158874959 -0.376002014 + 0.266667008 0.693925023 0.655939996 0.297003001 -0.372292012 + 0.333332986 0.813024998 0.509477973 0.281819999 -0.404931962 + 0.400000006 0.887943029 0.0761436 0.453606993 -0.357573986 + 0.466666996 0.79911232 0.457312137 0.390237182 -0.483915001 + 0.533333004 0.852965057 0.330625027 0.403903037 -0.697626054 + 0.600000024 0.860968173 0.333865076 0.383755058 -0.635165989 + 0.666666985 0.780642092 0.503455043 0.370312005 -0.384806007 + 0.733332992 0.554284811 0.792154729 0.255458921 -0.249084994 + 0.866666973 0.725886106 0.678384125 0.113509022 -0.243694022 + 1 0.929822266 0.362597048 0.0628806055 -0.275882035 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.529154062 0.423199028 -0.735458076 -0.0794304013 + 0.0666666999 0.532219827 0.685786784 -0.496425807 -0.110739 + 0.200000003 -0.00368018076 0.744151175 0.668001115 -0.220409021 + 0.266667008 0.0182293002 0.880561054 0.473582029 -0.243493974 + 0.333332986 0.717686772 0.177800938 0.673284829 -0.148441002 + 0.400000006 0.274031907 -0.850510716 -0.448929846 -0.345217973 + 0.466666996 0.313714027 -0.841239154 -0.440341026 -0.311854988 + 0.533333004 0.971905231 -0.214877024 -0.0960632116 -0.569880009 + 0.600000024 0.973219931 -0.210844979 -0.0915823951 -0.505840003 + 0.666666985 0.839452863 -0.422679931 -0.341556013 -0.308717966 + 0.733332992 0.350335032 0.654151022 -0.670337081 -0.252747983 + 0.866666973 -0.109779991 0.819777906 -0.562060952 -0.232973993 + 1 0.994671881 -0.0981279835 0.0316021964 -0.12339399 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.567517817 0.272375911 0.777003765 -0.541176975 + 0.0666666999 -0.522528887 0.264056951 0.810701847 -0.539478004 + 0.200000003 -0.500113904 0.281463951 0.818940878 -0.582991004 + 0.266667008 -0.489945859 0.289170921 0.822394848 -0.604909003 + 0.400000006 -0.562453866 0.220925942 0.796766818 -0.678206027 + 0.466666996 -0.543190956 0.238366991 0.805061936 -0.695815027 + 0.533333004 -0.524477184 0.254806101 0.812402308 -0.713878989 + 0.600000024 -0.506330132 0.270299077 0.818882287 -0.732365012 + 0.666666985 -0.488757104 0.284902066 0.824589193 -0.751237988 + 0.733332992 -0.323857963 0.140228003 0.935656011 -1.12729001 + 0.800000012 -0.377858907 0.197116956 0.904636681 -1.09828997 + 1 -0.409408033 0.346398026 0.844034076 -0.850521922 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.102447025 0.000684433151 -0.994738221 -0.435236007 + 0.0666666999 0.114911012 -0.00461355038 -0.993365049 -0.415578008 + 0.200000003 0.209069937 0.122648977 -0.970178843 -0.401118994 + 0.266667008 0.270549923 0.189017922 -0.94396764 -0.402717978 + 0.400000006 -0.129264951 -0.354667872 -0.926013649 -0.351413995 + 0.466666996 -0.4931629 -0.717756867 -0.491543919 -0.454555988 + 0.533333004 -0.457293957 -0.717490017 -0.525442958 -0.40367201 + 0.600000024 -0.409768999 -0.714598 -0.566955984 -0.354012012 + 0.666666985 -0.344804138 -0.706457317 -0.618084252 -0.306179017 + 0.733332992 0.253168076 0.687687278 0.68043524 -6.02200985 + 0.800000012 0.139590979 -0.609663963 -0.780271888 -0.244242981 + 0.866666973 0.0956034064 -0.163277999 -0.981936991 -0.175179005 + 1 0.666496158 -0.445272118 -0.59792614 -0.222160012 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.148909926 -0.975029528 -0.164751947 -0.224198982 + 0.0666666999 0.223941922 -0.95296669 -0.204216927 -0.183396995 + 0.200000003 0.945521951 0.0397622958 -0.323120981 -0.242719993 + 0.266667008 0.947185874 0.0895060897 -0.30794096 -0.282859981 + 0.400000006 -0.624392688 -0.662574708 -0.413676798 -0.354175985 + 0.466666996 -0.278695077 -0.677362263 -0.68081522 -0.510366023 + 0.533333004 -0.221144006 -0.722128928 -0.655457914 -0.471607983 + 0.600000024 -0.586205363 -0.626200378 -0.514039278 -0.424679011 + 0.666666985 0.205127969 -0.42403993 -0.88210696 -0.359250963 + 0.733332992 0.361775041 0.516429067 -0.776157081 -0.397932023 + 0.800000012 0.317466021 0.941003203 0.117168009 -0.314435989 + 0.866666973 0.483058989 0.608601928 0.629490018 -0.487232 + 1 0.420893937 -0.895210862 -0.146443963 -0.256857008 +endnode +doneanim plslashr a_dfa2_coat + +#MAXANIM ASCII +newanim plstab a_dfa2_coat + length 1 + transtime 0.400000006 + animroot rootdummy + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 16 + 0 0.000558661995 -0.031260401 1.00031996 + 0.0666666999 -0.00958788022 -0.0595850013 0.995294988 + 0.133332998 -0.0339396 -0.127563998 0.983237982 + 0.200000003 -0.0582913011 -0.195543006 0.971180975 + 0.266667008 -0.0749147981 -0.244007006 0.962417006 + 0.333332986 -0.0811270028 -0.226842001 0.961785018 + 0.400000006 -0.0863706991 -0.0357067995 0.96489203 + 0.466666996 -0.0941767991 0.207193002 0.969488025 + 0.533333004 -0.0961548015 0.385257989 0.971795022 + 0.600000024 -0.0948500037 0.423626989 0.971800029 + 0.666666985 -0.0891598016 0.318865001 0.972092986 + 0.733332992 -0.0691374987 0.0913790986 0.972983003 + 0.800000012 -0.0476849005 0.042789299 0.97803998 + 0.866666973 -0.0213629995 0.00239853002 0.989018023 + 0.93333298 -0.0023721999 -0.0267724991 1.00011003 + 1 0.000558661995 -0.031260401 1.00031996 + orientationkey 16 + 0 0.916262209 0.0597089194 0.396104097 -0.211062998 + 0.0666666999 0.613364816 -0.0084310472 0.789754748 -0.260587007 + 0.133332998 0.152392939 -0.0749152675 0.985476553 -0.505782008 + 0.200000003 -0.0111818025 -0.0930332169 0.995600224 -0.79363507 + 0.266667008 -0.0696932077 -0.0989079997 0.992653072 -0.995926976 + 0.333332986 -0.0295041893 -0.107763961 0.993738592 -0.96528697 + 0.400000006 0.239686072 -0.142387047 0.960352302 -0.695047021 + 0.466666996 0.85836184 -0.176668972 0.481666923 -0.501185 + 0.533333004 0.98835057 -0.14583692 0.0435292758 -0.561948001 + 0.600000024 0.98835057 -0.14583692 0.0435292758 -0.561948001 + 0.666666985 0.984570324 -0.147861049 0.09358643 -0.40952298 + 0.733332992 0.968065321 -0.150942042 0.200165078 -0.259262979 + 0.800000012 0.963945806 -0.0866104886 0.251608938 -0.249015987 + 0.866666973 0.952170908 -0.0166511964 0.305111974 -0.240581006 + 0.93333298 0.926548123 0.0455112047 0.373413026 -0.219585001 + 1 0.916262209 0.0597088151 0.396104097 -0.211062983 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.847584069 0.100689016 -0.521021068 -0.208508998 + 0.333332986 0.565509796 0.136753961 0.81332469 -0.501809001 + 0.5 0.532500863 -0.34808895 0.771541893 -0.666529 + 0.600000024 0.555258095 -0.32469511 0.765677154 -0.681858003 + 0.733332992 0.733936846 -0.264343947 0.625666857 -0.493313998 + 0.866666973 0.963131845 -0.185633972 -0.194722965 -0.144483998 + 0.93333298 0.888051569 0.039173983 -0.458071828 -0.186941981 + 1 0.847584069 0.100689016 -0.521021068 -0.208508998 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.683467925 -0.660545945 0.310725957 -0.705563009 + 0.133332998 -0.496881038 -0.271604031 0.824221134 -0.753325999 + 0.200000003 -0.340702087 -0.0946859196 0.935391188 -0.803155065 + 0.333332986 0.0694018751 0.310608923 0.948000789 -0.590873003 + 0.366667002 -0.0428107902 0.406904906 0.912466764 -0.848809004 + 0.400000006 -0.162947029 0.34199506 0.92546618 -0.853429079 + 0.433333009 -0.387503892 0.0458586849 0.920726717 -0.907840014 + 0.466666996 -0.681811035 -0.517563045 0.516974092 -1.18797004 + 0.5 -0.873207569 -0.486095786 0.0349197872 -1.66476989 + 0.533333004 -0.894925714 -0.418663859 0.154364944 -1.70239997 + 0.600000024 -0.846502721 -0.46702081 0.255586922 -1.58249998 + 0.666666985 -0.7937392 -0.506198049 0.337256074 -1.72793996 + 0.733332992 -0.451539934 -0.587409914 0.671610951 -1.70561004 + 0.866666973 -0.416632056 -0.525668085 0.741681039 -1.17724001 + 0.93333298 -0.417189896 -0.599978864 0.682625771 -0.896875978 + 1 -0.683467925 -0.660545945 0.310725957 -0.705563009 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -1 0 0 -2.10484004 + 0.133332998 -0.995991409 -0.0193173066 -0.0873378441 -1.39988005 + 0.200000003 -0.995264828 -0.0271763951 -0.0933236852 -1.2690599 + 0.333332986 -0.997249842 -0.00195317972 -0.0740869939 -1.78126001 + 0.366667002 -0.997236431 -0.00218068087 -0.074261032 -1.77528 + 0.400000006 -0.997392654 0.000563394802 -0.0721633807 -1.84940004 + 0.433333009 -0.997597873 0.00454179943 -0.0691217929 -1.96471 + 0.466666996 -0.997484803 0.00229114946 -0.070843488 -1.89831996 + 0.5 -0.99405843 -0.0383907147 -0.101853035 -1.11570001 + 0.533333004 -0.995908976 -0.0202652011 -0.0880603045 -1.38292003 + 0.600000024 -0.996773958 -0.00932558905 -0.079716593 -1.60159004 + 0.666666985 -0.995480418 -0.0249517094 -0.0916303396 -1.30391014 + 0.733332992 -0.99728781 -0.00130151981 -0.0735892877 -1.79855001 + 0.866666973 -0.997338057 -0.000419979013 -0.0729153976 -1.82233 + 0.93333298 -0.997702539 0.00678476691 -0.0674064681 -2.03397012 + 1 -1 0 0 -2.10484004 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.137816951 -0.0161124952 0.990326643 -5.07614994 + 0.133332998 -0.337955117 0.0784464329 -0.937887251 -1.35154998 + 0.200000003 -0.344559848 -0.0436375812 -0.937749565 -1.46603 + 0.333332986 -0.227292061 -0.0433284119 -0.972862244 -1.08001006 + 0.366667002 -0.272929966 -0.171024978 -0.946709931 -0.844980001 + 0.400000006 -0.112590015 -0.169417009 -0.979092121 -0.800059021 + 0.433333009 0.10531199 -0.255203962 -0.961134911 -0.954124987 + 0.466666996 -0.14014703 0.198451042 0.970039189 -4.63022995 + 0.5 -0.220974028 -0.205539048 0.953375161 -4.12432003 + 0.533333004 -0.295077056 -0.0490774103 0.954212189 -4.24517012 + 0.600000024 -0.246026024 0.0357372053 0.968604147 -4.38765001 + 0.666666985 -0.0761263222 -0.0704491138 0.994606316 -4.48317003 + 0.733332992 0.11374899 0.428039968 0.896572888 -4.84669018 + 0.866666973 0.155211955 0.222099945 0.962590694 -5.25410986 + 0.93333298 0.0486422218 0.127916038 0.990591466 -5.33177996 + 1 -0.137816951 -0.0161125958 0.990326643 -5.07614994 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.671965003 0.551239073 -0.494569004 -0.41977796 + 0.133332998 -0.489331871 0.814081848 0.31276992 -0.865848005 + 0.200000003 -0.501346886 0.685050905 0.528541863 -1.22491002 + 0.333332986 -0.387900025 0.709864974 0.587899029 -1.56612003 + 0.366667002 -0.224907085 0.831703305 0.507628262 -1.47768998 + 0.400000006 -0.0030523513 0.924523354 0.381113172 -1.3283 + 0.433333009 0.151178971 0.958174765 0.242993951 -1.25033998 + 0.466666996 -0.290957034 0.91251725 0.287500054 -0.90300101 + 0.5 -0.808071971 0.485608965 -0.333472013 -1.99076998 + 0.533333004 -0.796867311 0.562270164 -0.22103107 -1.97634995 + 0.600000024 -0.756901205 0.592310071 -0.276169062 -1.61159003 + 0.666666985 -0.660555303 0.673970282 -0.330803186 -1.3642 + 0.733332992 0.107377961 0.780460715 -0.615914822 -0.935907006 + 0.866666973 -0.321924031 0.726411045 -0.607200086 -0.491571993 + 0.93333298 -0.577196002 0.594888985 -0.559421003 -0.448105007 + 1 -0.671964169 0.551239133 -0.494570076 -0.419777989 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.980958045 -0.0820397064 -0.17604202 -0.860508025 + 0.133332998 -0.653891206 -0.756180227 -0.0248550065 -0.822199941 + 0.200000003 -0.0700813159 -0.974199235 0.214533046 -0.885191023 + 0.333332986 -0.0028423192 0.991378725 -0.130996957 -4.87600994 + 0.366667002 0.123501033 0.961834192 -0.244177043 -4.83922005 + 0.400000006 -0.525731146 -0.849372149 0.0466231033 -1.64987993 + 0.433333009 -0.72698772 -0.684518695 -0.0540644825 -1.98423004 + 0.466666996 -0.820624053 -0.564315081 -0.0901368037 -2.4017601 + 0.5 -0.772310257 -0.58717519 0.242409095 -1.89578998 + 0.533333004 -0.801735044 -0.575622082 0.160872996 -2.0832901 + 0.600000024 -0.822252929 -0.562070966 0.0893103927 -2.2700901 + 0.666666985 -0.83363229 -0.531745195 0.149346054 -2.10166001 + 0.733332992 -0.885423243 -0.430729091 0.174637064 -2.05864 + 0.866666973 -0.975096107 -0.217639029 -0.0426716022 -1.09306002 + 0.93333298 -0.982957304 -0.12783204 -0.132113039 -0.922627985 + 1 -0.980958045 -0.0820397064 -0.17604202 -0.860508025 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.474387944 -0.330870956 -0.815769851 -0.691182971 + 0.133332998 0.0180494972 -0.379126877 -0.925168633 -1.14308 + 0.200000003 0.23823902 -0.342564017 -0.908786058 -1.80096984 + 0.333332986 0.357881039 -0.28579101 -0.888957083 -1.92651999 + 0.366667002 0.262282044 -0.303336024 -0.916076064 -1.84258997 + 0.400000006 0.263102025 -0.292044014 -0.919503987 -1.19155991 + 0.433333009 0.520968139 -0.0604733191 -0.851431251 -0.717114985 + 0.466666996 0.991401434 0.0902810395 -0.0947236419 -1.23619986 + 0.5 0.907779336 0.322555155 0.268132091 -1.79451001 + 0.533333004 0.864555836 0.324573964 0.383659959 -1.84939003 + 0.600000024 0.864238381 0.446233183 0.232310101 -1.81253004 + 0.666666985 0.858635366 0.512582242 -0.00218770094 -1.38701999 + 0.733332992 0.467084885 0.492809922 -0.73414582 -0.863947928 + 0.866666973 -0.303704977 -0.138927966 -0.942582786 -0.476323992 + 0.93333298 -0.431359023 -0.281597018 -0.857107043 -0.607622981 + 1 -0.474387944 -0.330870956 -0.815769851 -0.691182971 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.955248177 -0.275829017 -0.106861018 -0.0861000046 + 0.0666666999 -0.68626684 -0.0209586956 -0.727047801 -0.0622198954 + 0.200000003 -0.018773092 0.435789794 -0.899852693 -0.291422009 + 0.266667008 0.0195297003 0.44453004 -0.895551026 -0.32812199 + 0.466666996 -0.850369096 0.388312072 0.355086058 -0.260995001 + 0.600000024 -0.742888331 0.477938205 0.468713194 -0.204928011 + 0.733332992 -0.958715618 0.209531903 0.192251921 -0.295231998 + 1 -0.955248415 -0.275828123 -0.106861047 -0.0860999972 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 19 + 0 -0.976382196 -0.155969009 -0.149504036 -1.14497995 + 0.0666666999 -0.970230579 -0.178293929 -0.16390194 -1.17725003 + 0.133332998 -0.94554013 -0.257073015 -0.199668035 -1.19684994 + 0.200000003 -0.912498176 -0.344802082 -0.220133066 -1.21705008 + 0.266667008 -0.895473361 -0.395256162 -0.204695076 -1.46306002 + 0.333332986 -0.841679931 -0.470766991 -0.264486969 -1.46220005 + 0.366667002 -0.86997807 -0.454131037 -0.192102015 -1.43617988 + 0.400000006 -0.893307686 -0.434071869 -0.11654596 -1.41658998 + 0.433333009 -0.928711891 -0.343496978 -0.139656991 -1.40164995 + 0.466666996 -0.955089688 -0.248359919 -0.161619961 -1.39670002 + 0.5 -0.973328948 -0.188139006 -0.131280005 -1.43151999 + 0.533333004 -0.986953199 -0.141160011 -0.0774421096 -1.44431996 + 0.600000024 -0.985344052 -0.139278993 -0.0984807983 -1.44870996 + 0.666666985 -0.98209101 -0.164526984 -0.0918046907 -1.31110001 + 0.733332992 -0.97673142 -0.212044105 -0.032140214 -1.09809005 + 0.800000012 -0.979574502 -0.184084922 -0.0809103698 -1.26795983 + 0.866666973 -0.975444436 -0.166132063 -0.144597039 -1.28243983 + 0.93333298 -0.968354583 -0.190585911 -0.161140919 -1.11787999 + 1 -0.976382196 -0.155969009 -0.149504036 -1.14497995 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 19 + 0 0.999381304 -0.0252643079 0.0244680084 -1.03848004 + 0.0666666999 0.999371767 -0.0255663935 0.024545094 -1.02973998 + 0.133332998 0.999373972 -0.0254973974 0.0245274976 -1.03173018 + 0.200000003 0.999346673 -0.026343992 0.0247435924 -1.00787997 + 0.266667008 0.999601543 -0.0171713922 0.0224019885 -1.33317006 + 0.333332986 0.999466836 -0.022415299 0.023740897 -1.12786996 + 0.366667002 0.999397695 -0.02473999 0.0243343934 -1.05394995 + 0.400000006 0.999312222 -0.0273799095 0.0250080079 -0.980045021 + 0.433333009 0.999265254 -0.028741207 0.0253552068 -0.945540965 + 0.466666996 0.999212801 -0.0301975943 0.0257268976 -0.911040008 + 0.5 0.999353826 -0.0261230953 0.0246871989 -1.01400006 + 0.533333004 0.99943006 -0.0236767009 0.0240628012 -1.08664 + 0.600000024 0.999456823 -0.0227646939 0.0238299947 -1.11617005 + 0.666666985 0.99942553 -0.023826791 0.0241010915 -1.08192003 + 0.733332992 0.998509109 -0.0457951091 0.0297037065 -0.650883913 + 0.800000012 0.999257684 -0.0289548915 0.0254098922 -0.940325975 + 0.866666973 0.999583542 -0.0179439932 0.0225992892 -1.29900002 + 0.93333298 0.999420941 -0.0239801984 0.0241402965 -1.07711995 + 1 0.999381304 -0.0252642091 0.0244680084 -1.03848004 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 19 + 0 -0.150528044 0.977936327 0.144851029 -0.140938014 + 0.0666666999 0.0733374879 0.971395791 -0.225857943 -0.146884993 + 0.133332998 0.321860909 0.733244777 -0.598963797 -0.213931009 + 0.200000003 0.439789891 0.562872827 -0.69982785 -0.332720011 + 0.266667008 0.87947166 0.37419185 -0.294125885 -0.647727013 + 0.333332986 0.885077715 0.381763846 -0.266258925 -0.562017024 + 0.366667002 0.712193906 0.488509953 -0.504120886 -0.495782971 + 0.400000006 0.426367909 0.551939905 -0.716639936 -0.486427993 + 0.433333009 0.578490615 0.510175705 -0.636450648 -0.381695002 + 0.466666996 0.787262142 0.407590061 -0.462697119 -0.296622038 + 0.5 0.57119602 0.618444979 -0.539685965 -0.172692984 + 0.533333004 -0.17636399 0.812301874 -0.555932939 -0.138404995 + 0.600000024 -0.587218761 0.723543763 -0.362847894 -0.149414003 + 0.666666985 0.203768075 0.857996285 -0.471509188 -0.131660998 + 0.733332992 0.926718354 0.274858057 -0.256215066 -0.505765021 + 0.800000012 0.763907135 0.577351034 -0.288291037 -0.225557014 + 0.866666973 0.856099844 0.452067882 0.250454962 -0.19833298 + 0.93333298 -0.36947006 0.900191128 0.23053804 -0.151548982 + 1 -0.15053001 0.977936029 0.144850999 -0.140937999 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 -0.163303003 0.644846082 0.746663034 -0.670683026 + 0.0666666999 -0.333997071 0.675039172 0.6578511 -0.660261035 + 0.133332998 -0.506510675 0.675239623 0.536188722 -0.756950974 + 0.200000003 -0.668541253 0.611650109 0.423009098 -0.833105922 + 0.266667008 -0.76366818 0.55165118 0.335398108 -0.92177999 + 0.333332986 -0.761499703 0.579663813 0.29001388 -0.915385008 + 0.366667002 -0.633739054 0.67652607 0.375083059 -0.916216016 + 0.400000006 -0.515079081 0.765945971 0.384734064 -0.829522967 + 0.433333009 -0.254525006 0.818915129 0.514388025 -0.749893069 + 0.466666996 -0.0407732949 0.854251862 0.518257916 -0.695957005 + 0.5 0.0518889055 0.918131053 0.392865032 -0.587502956 + 0.533333004 0.0201746002 0.99763602 0.0656910986 -0.472802997 + 0.56666702 0.0204917993 0.959931076 0.279486001 -0.539937973 + 0.600000024 -0.00404467154 0.819060326 0.573693156 -0.75840503 + 0.666666985 0.261660099 0.679845214 0.685087204 -1.02292001 + 0.699999988 0.360222936 0.778088868 0.514603853 -0.694535971 + 0.733332992 0.37727496 0.799673915 0.467102975 -0.60402602 + 0.800000012 0.268642902 0.769610703 0.579249799 -0.550258994 + 0.866666973 0.0488564223 0.737449229 0.673633218 -0.536720991 + 0.93333298 -0.083922483 0.678228855 0.730042875 -0.577943027 + 1 -0.163303003 0.644846082 0.746663034 -0.670683026 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 1 0 0 -0.880254984 + 0.0666666999 1 0 0 -0.968720973 + 0.133332998 1 0 0 -1.12730002 + 0.200000003 1 0 0 -1.24333 + 0.266667008 1 0 0 -1.30644 + 0.333332986 1 0 0 -1.2945199 + 0.366667002 1 2.20423985e-007 0 -1.18971002 + 0.400000006 1 0 0 -1.03630996 + 0.433333009 1 0 0 -0.741856992 + 0.466666996 1 0 1.74828998e-007 -0.606289029 + 0.5 1 -3.14180994e-007 0 -0.59157598 + 0.533333004 1 0 -1.39034e-007 -0.679193974 + 0.56666702 1 1.32907005e-007 0 -0.626381993 + 0.600000024 1 -1.63183998e-007 -3.16219996e-007 -0.553349972 + 0.666666985 1 0 -1.04378012e-006 -0.396661967 + 0.699999988 1 0 0 -0.612266004 + 0.733332992 1 0 0 -0.745342016 + 0.800000012 1 0 0 -0.731485069 + 0.866666973 1 0 0 -0.819680989 + 0.93333298 1 0 0 -0.858162999 + 1 1 0 0 -0.880254984 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 -0.798257887 -0.596262872 0.0851757824 -0.863411963 + 0.0666666999 -0.806448877 -0.589335859 0.0482019931 -0.851984978 + 0.133332998 -0.80596596 -0.557472944 -0.19910498 -0.803942978 + 0.200000003 -0.777156293 -0.48620218 -0.39954415 -0.751619995 + 0.266667008 -0.707976103 -0.399104059 -0.582654059 -0.722381949 + 0.333332986 -0.644630849 -0.390382886 -0.65730685 -0.758072019 + 0.366667002 -0.604856849 -0.491768807 -0.62634784 -0.833150029 + 0.400000006 -0.609588385 -0.635867357 -0.473365277 -0.852775991 + 0.433333009 -0.57072103 -0.77286917 -0.277400017 -0.860265017 + 0.466666996 -0.503212988 -0.842863977 -0.19067502 -0.750335932 + 0.5 -0.414942086 -0.907068193 -0.0710656121 -0.629478037 + 0.533333004 -0.224057987 -0.969663918 -0.0977237821 -0.38815999 + 0.56666702 -0.0520296097 -0.948737204 -0.311754048 -0.415455014 + 0.600000024 0.150479957 -0.661277831 -0.734892786 -0.54707998 + 0.666666985 -0.186528996 -0.859965146 -0.475044042 -0.699747026 + 0.699999988 -0.547815204 -0.833029211 0.0772068202 -0.762577951 + 0.733332992 -0.636995196 -0.74596411 0.194357038 -0.93651098 + 0.800000012 -0.722298145 -0.653223157 0.227123052 -0.941955984 + 0.866666973 -0.763670266 -0.613160133 0.202095062 -0.917317927 + 0.93333298 -0.790925264 -0.590456128 0.160620064 -0.881323934 + 1 -0.798257887 -0.596262932 0.0851752982 -0.863411963 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.094167091 0.979699969 -0.17697598 -0.0910393 + 0.133332998 0.551259816 0.834320724 -0.00464373827 -0.157458007 + 0.266667008 0.781611502 0.622617662 0.0378242768 -0.259667009 + 0.333332986 0.788125873 0.615151942 0.0211108979 -0.241516992 + 0.400000006 0.528988898 0.847065866 0.0514802933 -0.238455996 + 0.466666996 0.512025833 0.857977688 0.0412782803 -0.220827013 + 0.600000024 0.46737501 0.883931041 0.0150506999 -0.186001003 + 0.733332992 0.399824053 0.916301191 -0.0230830032 -0.152077019 + 0.866666973 0.289458036 0.953680158 -0.0819035172 -0.119825006 + 1 0.0941677094 0.979700089 -0.176974997 -0.0910393074 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.28765288 -0.893294752 0.345369875 -0.134494007 + 0.133332998 0.479076862 -0.805627704 0.348495871 -0.133392006 + 0.266667008 0.953617275 0.0706431195 0.292615116 -0.150792003 + 0.333332986 0.780298054 -0.49715203 0.379440069 -0.11991901 + 0.400000006 0.354445964 0.692701936 0.628117919 -0.135401994 + 0.466666996 0.937055349 -0.348986119 0.0116586043 -0.166982993 + 0.600000024 0.861366093 -0.500180066 0.0887041017 -0.147495016 + 0.733332992 -0.826614976 -0.539805949 0.159113988 -0.167375997 + 0.866666973 -0.659322917 -0.710382938 0.24627097 -0.152079999 + 1 0.28765288 -0.893294752 0.345369875 -0.134494007 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.0817660019 0.977888048 0.192481995 -0.0516389012 + 0.133332998 -0.993883193 -0.103992015 0.0371731035 -0.122317009 + 0.266667008 -0.987070858 -0.153152972 0.047279194 -0.114610009 + 0.333332986 -0.920279384 0.377355188 0.103387043 -0.0783698037 + 0.400000006 0.835830986 -0.48913601 -0.249264002 -0.230730012 + 0.466666996 0.320926994 -0.480979025 -0.815882981 -0.482778013 + 0.600000024 0.881664038 -0.404615015 -0.242806986 -0.144262001 + 0.733332992 -0.969410419 -0.148241073 -0.195622087 -0.157657996 + 0.866666973 -0.992108881 0.0858188942 -0.0914060026 -0.130384997 + 1 -0.0817657039 0.977888048 0.192482024 -0.051638905 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.703614056 -0.708853006 0.0495443046 -0.114386998 + 0.133332998 0.0326345116 0.912879229 -0.406923145 -0.077339597 + 0.266667008 0.745317101 -0.369589061 -0.554893136 -0.130467996 + 0.333332986 0.322428972 0.00856048893 -0.946554959 -0.101179004 + 0.366667002 -0.427499056 0.848947167 -0.310698062 -0.259577006 + 0.400000006 -0.224538013 0.939091146 -0.260174036 -0.276349992 + 0.466666996 0.871619105 0.416691065 -0.258164018 -0.127520993 + 0.600000024 0.902992785 -0.334512919 -0.269638926 -0.129742995 + 0.666666985 0.921512961 -0.33057496 -0.203798965 -0.148960993 + 0.733332992 0.868364394 -0.463128239 -0.177357107 -0.120846994 + 0.866666973 0.802301168 -0.593009114 -0.0682131127 -0.115561001 + 1 0.703614056 -0.708853006 0.0495444983 -0.114386991 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.0340113975 0.9445979 0.326462984 -0.286794007 + 0.133332998 -0.0889287665 0.972924709 0.213328943 -0.457114965 + 0.266667008 0.0787494183 0.970659137 0.227199033 -0.424759001 + 0.333332986 0.071634002 0.96967411 0.233668014 -0.411939025 + 0.366667002 0.498443842 0.852838755 0.155626953 -0.340065986 + 0.400000006 0.318586916 0.932116747 0.172222972 -0.387263 + 0.466666996 0.194687992 0.549762964 0.812316 -0.441986978 + 0.600000024 0.0737693012 0.551631987 0.830819011 -0.698569 + 0.666666985 0.128485933 0.710773706 0.691586673 -0.65467 + 0.733332992 0.185879052 0.823545218 0.53593117 -0.477411032 + 0.866666973 0.0325209163 0.865177393 0.500410259 -0.328467011 + 1 -0.0340116918 0.9445979 0.326462954 -0.286794007 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.96620518 -0.194570035 -0.169086009 -0.540560007 + 0.133332998 0.999530435 0.00218586065 0.0305639114 -0.457302988 + 0.266667008 -0.377350003 0.796774983 0.471971005 -0.350733995 + 0.333332986 0.571658909 0.702460945 0.423974901 -0.214907989 + 0.400000006 0.963236868 0.252846956 0.0907917917 -0.346837997 + 0.466666996 0.879858255 0.395334095 0.263743073 -0.34691599 + 0.600000024 0.904415011 0.404740989 0.134975001 -0.364703 + 0.666666985 0.932284772 0.099724777 0.347706944 -0.599114954 + 0.733332992 0.986634195 0.157511011 0.0417528078 -0.439865977 + 0.866666973 0.995995641 -0.0498470813 -0.0742158666 -0.464776993 + 1 0.96620518 -0.194570035 -0.169086009 -0.540560007 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.290140003 -0.341154009 -0.894110024 -0.991366029 + 0.133332998 -0.259093881 -0.450630814 -0.854284644 -1.05650997 + 0.266667008 -0.00857333001 -0.470898002 -0.882146001 -1.60974002 + 0.333332986 -0.0229572002 -0.472615004 -0.880969942 -1.55824006 + 0.400000006 -0.0643050671 -0.416545779 -0.906837642 -1.50878012 + 0.466666996 -0.0412408933 -0.221666977 -0.974249959 -1.26817 + 0.600000024 -0.25542894 -0.267227948 -0.929163754 -0.895877957 + 0.733332992 -0.303375006 -0.27423203 -0.912557065 -0.940220058 + 0.866666973 -0.296780884 -0.308701843 -0.903672636 -0.965279996 + 1 -0.290140003 -0.341154009 -0.894110024 -0.991366029 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.643578053 0.764970124 -0.0250597037 -0.365325004 + 0.133332998 0.721039891 0.582649946 -0.37499398 -0.515734017 + 0.266667008 0.788603663 0.33512786 -0.515551746 -0.615239024 + 0.333332986 0.81344974 0.34344691 -0.469407856 -0.593518972 + 0.400000006 0.787980378 0.581046283 -0.203647092 -0.620453 + 0.466666996 0.668958068 0.577804029 -0.467587024 -0.436581969 + 0.600000024 0.761675835 0.532855868 -0.368665904 -0.412665009 + 0.733332992 0.525200963 0.792674899 -0.309564948 -0.406819999 + 0.866666973 0.405727863 0.890049636 -0.207837909 -0.405937999 + 1 0.643578053 0.764970124 -0.0250595026 -0.365325004 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.52915591 0.423198909 -0.735456824 -0.0794306025 + 0.133332998 -0.123147056 0.853352368 -0.506581247 -0.12370301 + 0.266667008 0.300880104 0.800195217 -0.518805206 -0.366785973 + 0.333332986 0.306533039 0.79414314 -0.524761081 -0.339812994 + 0.400000006 -0.197430044 -0.98009932 -0.0206579063 -0.197338 + 0.466666996 -0.174998999 -0.982784986 -0.0592368022 -0.171141997 + 0.600000024 0.311479896 -0.948809743 -0.0523487851 -0.280939013 + 0.733332992 -0.758893907 0.62242794 -0.191476971 -0.205665007 + 0.866666973 -0.544315875 0.746484816 -0.382727921 -0.128160998 + 1 0.529154778 0.423198819 -0.735457659 -0.0794304982 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.567517817 0.272375911 0.777003765 -0.541176975 + 0.133332998 -0.651480079 0.451463014 0.609717071 -0.67848593 + 0.200000003 -0.594537079 0.612959087 0.520391047 -0.743256986 + 0.266667008 -0.586731791 0.546359837 0.597692847 -0.664200008 + 0.333332986 -0.549099743 0.76407671 0.338638812 -0.875042975 + 0.400000006 -0.51057303 0.538150012 0.670603991 -0.976189077 + 0.466666996 -0.51576215 0.521739185 0.679542243 -0.925660014 + 0.600000024 -0.509662688 0.524200618 0.682244539 -0.881781936 + 0.733332992 -0.486614972 0.526288927 0.697298944 -0.773108006 + 0.866666973 -0.526382208 0.403458178 0.748427212 -0.63913399 + 1 -0.567517817 0.272375911 0.777003765 -0.541176975 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.102447025 0.000684371218 -0.994738221 -0.435236007 + 0.133332998 0.0193132088 0.0968620405 -0.995110393 -0.43808803 + 0.200000003 0.088334702 -0.10441599 -0.99060297 -0.329019964 + 0.266667008 -0.779594839 0.238222942 -0.579207838 -0.313461989 + 0.333332986 0.185833916 -0.0526503772 -0.981169581 -0.215505004 + 0.400000006 0.185809076 0.0342865139 -0.981987476 -0.411255002 + 0.466666996 0.119340941 -0.380132824 -0.917200506 -0.445948988 + 0.600000024 0.0679512843 -0.260406941 -0.963104784 -0.452080965 + 0.733332992 0.0893543139 -0.252485037 -0.963466167 -0.485293031 + 0.866666973 0.0219164081 -0.117616035 -0.992817283 -0.423407972 + 1 0.102447025 0.000684477156 -0.994738221 -0.435236007 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.148909926 -0.975029528 -0.164751947 -0.224198982 + 0.133332998 0.525324821 -0.846672773 -0.0847290829 -0.516494989 + 0.266667008 0.845203996 -0.531458914 -0.0564061962 -0.79253298 + 0.333332986 0.933362424 -0.331920117 -0.136615053 -0.87499094 + 0.400000006 0.94493711 -0.283874035 -0.162817016 -0.810636997 + 0.466666996 0.989630401 -0.12737906 -0.0663791224 -0.637179077 + 0.600000024 0.955394328 -0.271253049 -0.116805047 -0.542460024 + 0.733332992 -0.612056911 -0.761697948 0.212608978 -0.321218014 + 0.866666973 -0.331185132 -0.941427469 0.0634884313 -0.246363014 + 1 0.148909926 -0.975029528 -0.164751947 -0.224198982 +endnode +doneanim plstab a_dfa2_coat + +#MAXANIM ASCII +newanim plcloseh a_dfa2_coat + length 1 + transtime 0.400000006 + animroot rootdummy + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 17 + 0 0.000558661995 -0.031260401 1.00031996 + 0.0666666999 0.000164658006 -0.0962617025 1.00426996 + 0.133332998 0.00778798992 -0.252265006 1.01374996 + 0.166666999 0.0179271009 -0.330265999 1.01847994 + 0.233333007 0.0547887012 -0.486268997 1.02795994 + 0.300000012 0.0842759013 -0.528795004 1.03141999 + 0.366667002 0.044835899 -0.438901007 1.02980995 + 0.433333009 0.0120574003 -0.274838001 1.02714002 + 0.466666996 0.00422012014 -0.190991998 1.02581 + 0.533333004 0.000483660988 -0.0233075004 1.01868999 + 0.600000024 0.000652434013 0.0200918 1.03126001 + 0.666666985 0.000164583005 -0.0608390011 1.03606999 + 0.733332992 -6.97701034e-005 -0.109935999 1.02912998 + 0.800000012 4.07508992e-007 -0.113008998 1.01516998 + 0.866666973 0.000193828993 -0.0925828964 1.00279999 + 0.93333298 0.000402326987 -0.0592705011 0.999781013 + 1 0.000558661995 -0.031260401 1.00031996 + orientationkey 15 + 0 0.916262209 0.0597089194 0.396104097 -0.211062998 + 0.0666666999 0.837232113 0.0852799118 0.540157139 -0.166304007 + 0.233333007 -0.822948396 0.103976049 0.558520257 -0.225792989 + 0.300000012 -0.867777228 0.0922919288 0.488308161 -0.26877597 + 0.366667002 -0.490657926 0.195080966 0.849233925 -0.152558997 + 0.433333009 0.932336748 0.126335964 0.338802904 -0.366486013 + 0.466666996 0.972490966 0.0958604962 0.212301984 -0.565512002 + 0.533333004 0.984185755 0.0773833841 0.15934296 -0.718448997 + 0.600000024 0.980095446 0.0745744333 0.183988065 -0.608497977 + 0.666666985 0.972552359 0.0763449222 0.219803065 -0.49071601 + 0.733332992 0.964272022 0.0765431002 0.253614992 -0.407309979 + 0.800000012 0.958549857 0.0741582885 0.27510494 -0.357740015 + 0.866666973 0.950283051 0.0709612072 0.303194016 -0.308400989 + 0.93333298 0.937565267 0.0664631128 0.341400087 -0.259425014 + 1 0.916262209 0.0597088151 0.396104097 -0.211062983 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.847584069 0.100689016 -0.521021068 -0.208508998 + 0.300000012 -0.960005343 -0.0246758088 -0.2788921 -0.397089005 + 0.5 0.928756595 0.0886050612 -0.35994485 -0.298900992 + 0.733332992 -0.401574939 0.0716007948 -0.913022935 -0.120621003 + 0.833333015 -0.420403957 0.0697258934 -0.904653966 -0.121737003 + 1 0.847584069 0.100689016 -0.521021068 -0.208508998 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.683467925 -0.660545945 0.310725957 -0.705563009 + 0.100000001 0.308834016 -0.824646115 0.473899037 -0.324461997 + 0.200000003 0.78338629 -0.614539266 -0.0929917321 -0.324903011 + 0.300000012 0.351122797 -0.936084509 0.0214130916 -0.238528997 + 0.333332986 0.57425499 -0.818674028 -0.00200172001 -0.241713002 + 0.400000006 0.47054705 -0.880303144 0.0604305044 -0.245961994 + 0.466666996 -0.90834111 -0.417753071 0.0199688021 -0.668513 + 0.5 -0.950410724 -0.305427879 0.0585938767 -1.52858996 + 0.533333004 -0.957808673 -0.284671903 0.0395537838 -1.65799999 + 0.56666702 -0.920744181 -0.371143103 0.120345019 -1.83318996 + 0.600000024 -0.905344963 -0.386655957 0.17563498 -1.79779994 + 0.666666985 -0.837486982 -0.439218044 0.325120032 -1.65576994 + 0.699999988 -0.928204656 -0.329049885 0.173672944 -0.999697089 + 0.733332992 -0.869046986 -0.453633994 0.197417021 -0.647992015 + 0.833333015 -0.728950858 -0.58917886 0.348566949 -0.568268001 + 1 -0.683466911 -0.660546958 0.310725987 -0.705563009 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -1 0 0 -2.10484004 + 0.100000001 -0.998051882 0.0160945989 -0.0602777898 -2.35449004 + 0.200000003 -0.997867763 0.0107403975 -0.0643782839 -2.16366005 + 0.300000012 -0.997497618 0.00253708917 -0.0706541762 -1.90542996 + 0.333332986 -0.997750044 0.00786244962 -0.0665813982 -2.06834006 + 0.400000006 -0.997951984 0.0130291004 -0.0626261979 -2.24311996 + 0.466666996 -0.997808337 0.00924826413 -0.065520823 -2.11360002 + 0.5 -0.995059311 -0.029225111 -0.0948832408 -1.23836994 + 0.533333004 -0.994211972 -0.0370603986 -0.100841999 -1.13214004 + 0.56666702 -0.983435214 -0.101918019 -0.149893031 -0.647002995 + 0.600000024 -0.973576188 -0.141275033 -0.179418012 -0.510156989 + 0.666666985 -0.946238041 -0.219538018 -0.237564012 -0.35817498 + 0.699999988 -0.995398223 -0.025809506 -0.0922832191 -1.29027998 + 0.733332992 -0.997498989 0.0025673199 -0.070633702 -1.90629995 + 0.833333015 -0.997885585 0.0112076951 -0.0640211701 -2.17962003 + 1 -1 0 0 -2.10484004 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.137816951 -0.0161124952 0.990326643 -5.07614994 + 0.100000001 0.22730197 -0.328346968 0.916799903 -5.22917986 + 0.200000003 0.43693924 -0.47829926 0.761783361 -4.75224018 + 0.300000012 0.474585176 -0.476120204 0.740323246 -4.43417978 + 0.333332986 0.441581994 -0.422484994 0.791524947 -4.51821995 + 0.400000006 -0.412197083 0.274922073 -0.868626177 -1.63382006 + 0.466666996 -0.134043008 -0.0673065111 -0.988687158 -1.60583007 + 0.5 -0.134377971 -0.107893981 -0.985038817 -1.82995999 + 0.533333004 -0.0354095921 -0.0443857834 -0.998386741 -1.85923004 + 0.56666702 -0.0607353859 0.0848289803 -0.994542718 -2.04157996 + 0.600000024 -0.0800977722 0.133322954 -0.987830639 -2.04587007 + 0.666666985 -0.151095048 0.163892061 -0.974838257 -2.0729301 + 0.699999988 0.113512039 -0.0376410149 -0.992823362 -1.49158001 + 0.733332992 -0.321026027 0.241693035 0.915711045 -4.89442015 + 0.833333015 -0.309629917 0.234274924 0.921544671 -5.06807995 + 1 -0.137816951 -0.0161127951 0.990326643 -5.07614994 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.671964169 0.551239133 -0.494570076 -0.419777989 + 0.100000001 -0.381783932 0.737832963 -0.556635916 -0.325931996 + 0.200000003 0.108702995 0.84224993 -0.528013945 -0.289999992 + 0.300000012 0.554889977 0.754373014 -0.350739956 -0.342796981 + 0.333332986 0.423784047 0.888954163 -0.173688024 -0.412389994 + 0.400000006 -0.473991156 0.840619206 0.26209107 -0.430322975 + 0.466666996 -0.926579654 0.232109904 0.295930892 -1.04945004 + 0.5 -0.94359231 0.329853088 0.0288193095 -1.96214998 + 0.533333004 -0.961286724 0.255757928 0.102545969 -1.72458994 + 0.56666702 -0.962932706 0.261813909 0.0649155751 -1.54171002 + 0.600000024 -0.957256496 0.288956136 0.0128195062 -1.34401 + 0.666666985 -0.934802353 0.309591115 -0.174063057 -1.09004998 + 0.733332992 -0.612476051 0.588756979 -0.527482986 -0.392782956 + 0.833333015 -0.483928084 0.665349126 -0.568440139 -0.336657971 + 1 -0.671964169 0.551239133 -0.494570076 -0.419777989 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.980958045 -0.0820397064 -0.17604202 -0.860508025 + 0.100000001 -0.994875669 -0.0267582908 -0.097500667 -1.16720998 + 0.200000003 -0.998799324 0.00784852169 -0.0483560152 -1.48466015 + 0.300000012 -0.999386728 0.0321535841 -0.0138684958 -1.79838002 + 0.333332986 -0.999734402 0.00852500275 -0.0214110073 -1.92635 + 0.400000006 -0.998139679 -0.0336063877 -0.0508708842 -1.93324995 + 0.466666996 -0.992757916 -0.0686260909 -0.0986011922 -1.77153003 + 0.5 -0.919999659 -0.349177897 -0.177975953 -0.574002981 + 0.533333004 -0.98414433 -0.120729044 -0.129940048 -1.04082 + 0.56666702 -0.98977387 -0.0733406991 -0.12234699 -1.02226996 + 0.600000024 -0.994261801 -0.010352998 -0.106471986 -0.997949004 + 0.666666985 -0.983469367 0.152886063 -0.0970250368 -0.648415983 + 0.733332992 -0.993855476 0.0989715457 -0.0495571233 -1.26525998 + 0.833333015 -0.99616468 0.0444581844 -0.0753618777 -1.21878004 + 1 -0.980958045 -0.0820397064 -0.17604202 -0.860508025 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.474387944 -0.330870956 -0.815769851 -0.691182971 + 0.100000001 -0.402596086 0.0586761162 -0.913495183 -0.836157024 + 0.200000003 -0.317908078 0.312887073 -0.895006239 -1.06656003 + 0.300000012 0.250137031 -0.467050016 0.84811306 -4.94434023 + 0.333332986 0.196524039 -0.460882127 0.865428209 -5.00790977 + 0.400000006 -0.162685961 0.281485945 -0.945673823 -1.15197003 + 0.466666996 0.045636408 -0.113833025 -0.992451191 -1.12349987 + 0.5 -0.191595033 0.224726051 -0.955400229 -1.01857996 + 0.533333004 0.113690965 0.0151494956 -0.993400633 -1.07596004 + 0.56666702 0.198823079 0.0646248236 -0.977902353 -1.06661999 + 0.600000024 0.16785799 0.147579983 -0.974701941 -1.01712 + 0.666666985 -0.124813005 0.407030016 -0.904847085 -0.902256072 + 0.733332992 -0.0667122975 0.0610298999 -0.995904028 -0.75959301 + 0.833333015 -0.203580022 -0.107758999 -0.97311008 -0.701949 + 1 -0.474387944 -0.330870956 -0.815769851 -0.691182971 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.955248415 -0.275828123 -0.106861047 -0.0860999972 + 0.300000012 0.463326991 -0.682992041 0.564668059 -0.155809 + 0.466666996 -0.893091798 -0.409687966 0.185856968 -0.494329959 + 0.600000024 -0.816809535 -0.56646663 0.109259933 -0.476428956 + 0.733332992 -0.907731771 -0.391768903 0.150133967 -0.302946985 + 1 -0.955248356 -0.275828093 -0.106862031 -0.0861001983 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.976382196 -0.155969009 -0.149504036 -1.14497995 + 0.0666666999 -0.976269364 -0.14324604 -0.162415043 -1.13405001 + 0.133332998 -0.971435845 -0.152128965 -0.182123974 -0.988786995 + 0.166666999 -0.971892774 -0.16589196 -0.167045951 -1.07072997 + 0.233333007 -0.965217173 -0.215193048 -0.14848502 -1.23608994 + 0.300000012 -0.9558236 -0.245916918 -0.161015943 -1.37091005 + 0.366667002 -0.954016864 -0.201680973 -0.221757978 -1.06350994 + 0.433333009 -0.960451305 -0.145899028 -0.237164065 -0.917154014 + 0.466666996 -0.963339388 -0.134155065 -0.232335091 -1.07265997 + 0.533333004 -0.971035719 -0.0849473774 -0.223323956 -1.22119999 + 0.600000024 -0.970972121 -0.0173574015 -0.238562033 -1.06746995 + 0.666666985 -0.976510882 -0.0691932961 -0.204055965 -1.05590999 + 0.733332992 -0.977201402 -0.125148043 -0.171509057 -1.08354998 + 0.800000012 -0.979653776 -0.128142968 -0.154459968 -1.12108004 + 0.866666973 -0.978094339 -0.133666039 -0.159577072 -1.15263987 + 0.93333298 -0.977328598 -0.143787935 -0.155414954 -1.15342999 + 1 -0.976382196 -0.155969009 -0.149504036 -1.14497995 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 0.999381304 -0.0252642091 0.0244680084 -1.03848004 + 0.0666666999 0.999229014 -0.0297534019 0.0256136004 -0.921310961 + 0.133332998 0.997764826 -0.0581853949 0.0328595936 -0.528473973 + 0.166666999 0.998531222 -0.0453798138 0.0295979101 -0.655937016 + 0.233333007 0.999229729 -0.0297342911 0.0256086923 -0.921755016 + 0.300000012 0.99946779 -0.0223814938 0.0237323958 -1.12899995 + 0.366667002 0.999050736 -0.0343528911 0.0267866924 -0.824405015 + 0.433333009 0.995936334 -0.0813026205 0.0387395099 -0.39003402 + 0.466666996 0.998416901 -0.0474919938 0.0301360935 -0.630976021 + 0.533333004 0.999199688 -0.0305521898 0.0258171931 -0.90298897 + 0.600000024 0.999233961 -0.0296184979 0.0255789962 -0.92447108 + 0.666666985 0.999052644 -0.0343064889 0.0267747901 -0.825288057 + 0.733332992 0.998970628 -0.0362495892 0.0272703916 -0.789837003 + 0.800000012 0.999077857 -0.0336893946 0.0266174972 -0.837184012 + 0.866666973 0.999233425 -0.029631814 0.0255825128 -0.924160004 + 0.93333298 0.999330878 -0.0268239956 0.0248660967 -0.994800985 + 1 0.999381304 -0.0252643097 0.0244679097 -1.03848004 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.150529012 0.977936208 0.144851014 -0.140937999 + 0.0666666999 0.63144213 0.77414912 -0.0444292128 -0.170429021 + 0.133332998 0.952982843 0.277998954 -0.120582975 -0.476278991 + 0.166666999 0.97112906 0.226709008 -0.0742385015 -0.698356986 + 0.233333007 0.968027353 0.2495891 -0.0250655115 -0.819712937 + 0.300000012 0.964868605 0.258621901 0.0462952815 -0.710394025 + 0.366667002 0.564499795 0.385053903 -0.730118811 -0.216187 + 0.433333009 0.934264719 0.260338902 -0.243665919 -0.562783003 + 0.466666996 0.878073215 0.373422056 -0.299238056 -0.37915799 + 0.533333004 0.165616065 0.785392284 -0.596431255 -0.185322002 + 0.600000024 -0.290653884 0.71847868 -0.631908774 -0.203664005 + 0.666666985 0.443286985 0.713180959 -0.543018937 -0.202313989 + 0.733332992 0.719954014 0.600026011 -0.348762006 -0.241896987 + 0.800000012 0.718756258 0.629545212 -0.295063138 -0.228840992 + 0.866666973 0.600210965 0.783691943 -0.15991798 -0.174935997 + 0.93333298 0.234115094 0.972119272 -0.0131986048 -0.141008005 + 1 -0.15053001 0.977936029 0.144850999 -0.140937999 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.163303003 0.644846082 0.746663034 -0.670683026 + 0.0666666999 -0.352104872 0.666854799 0.656754792 -0.64686799 + 0.133332998 -0.579087853 0.613088906 0.537381887 -0.685312986 + 0.166666999 -0.647925735 0.564262748 0.511663735 -0.717710972 + 0.233333007 -0.709886134 0.450052053 0.541770101 -0.782368958 + 0.300000012 -0.752101362 0.398401171 0.524995267 -0.777427018 + 0.366667002 -0.636714756 0.625868797 0.45042485 -0.70224607 + 0.433333009 -0.629111052 0.638110042 0.443886071 -0.764679015 + 0.466666996 -0.634889841 0.637491822 0.436484903 -0.745813966 + 0.533333004 -0.553256869 0.680001855 0.481148899 -0.74060899 + 0.600000024 -0.295666099 0.825597227 0.480594158 -0.722246051 + 0.666666985 -0.407319933 0.788507879 0.460809916 -0.637991011 + 0.733332992 -0.513588786 0.709554672 0.482450753 -0.581355989 + 0.800000012 -0.503745973 0.683215976 0.528635979 -0.607701957 + 0.866666973 -0.421013921 0.679821968 0.600490928 -0.627861023 + 0.93333298 -0.288281947 0.673376858 0.680776894 -0.641739011 + 1 -0.163303003 0.644846082 0.746663034 -0.670683026 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 1 0 0 -0.880254984 + 0.0666666999 1 0 0 -0.998915017 + 0.133332998 1 0 0 -1.17308998 + 0.166666999 1 0 0 -1.21861994 + 0.233333007 1 0 1.50494998e-007 -1.22956002 + 0.300000012 1 0 0 -1.21229994 + 0.366667002 1 0 0 -1.24512994 + 0.433333009 1 0 0 -1.18286002 + 0.466666996 1 0 0 -1.10176003 + 0.533333004 1 0 0 -0.882534027 + 0.600000024 1 0 0 -0.742784977 + 0.666666985 1 0 0 -0.876454949 + 0.733332992 1 0 0 -0.964284003 + 0.800000012 1 0 0 -1.01187003 + 0.866666973 1 0 0 -1.01291001 + 0.93333298 1 0 0 -0.952142 + 1 1 0 0 -0.880254984 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.798257887 -0.596262932 0.0851754993 -0.863412023 + 0.0666666999 -0.8180511 -0.559543073 0.133056015 -0.853348017 + 0.133332998 -0.860871077 -0.476194024 0.179277003 -0.766245008 + 0.166666999 -0.886714756 -0.416604847 0.200442925 -0.69828403 + 0.233333007 -0.95526886 -0.190649986 0.226083979 -0.538248003 + 0.300000012 -0.953386784 -0.0752987936 0.292204946 -0.508853018 + 0.366667002 -0.924806714 -0.312501937 0.21696794 -0.610291004 + 0.433333009 -0.877151251 -0.472908139 0.0834482238 -0.701476991 + 0.466666996 -0.835827947 -0.539074957 0.10387399 -0.733519018 + 0.533333004 -0.766158223 -0.633591175 0.107535027 -0.801625073 + 0.600000024 -0.720707893 -0.677429795 0.147203967 -0.817607999 + 0.666666985 -0.76056391 -0.608641863 0.226047948 -0.82091701 + 0.733332992 -0.783122182 -0.559890091 0.270634055 -0.829795063 + 0.800000012 -0.801558197 -0.552003145 0.229776055 -0.848136008 + 0.866666973 -0.811993003 -0.557349026 0.173289999 -0.868628025 + 0.93333298 -0.807694018 -0.575398982 0.128632993 -0.87251693 + 1 -0.798257887 -0.596262932 0.0851755962 -0.863412023 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.0941662043 0.979700089 -0.176975995 -0.0910393 + 0.300000012 0.0941662043 0.979700089 -0.176975995 -0.0910393 + 0.366667002 0.0941665992 0.979700029 -0.176975995 -0.0910393 + 0.433333009 -0.961159825 0.219563946 -0.167222962 -0.259992003 + 1 0.0941662192 0.979700267 -0.176975042 -0.0910393074 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.287651986 -0.89329499 0.345369995 -0.134494007 + 0.300000012 0.945643961 -0.305736959 0.110825986 -0.316594988 + 0.366667002 0.966065764 -0.24300395 0.0875556767 -0.374141991 + 0.433333009 0.966065764 -0.24300395 0.0875555798 -0.374141991 + 0.5 -0.622217 -0.745981038 0.237399012 -0.178929001 + 0.633333027 -0.853127837 -0.497740924 0.156290963 -0.287732005 + 0.833333015 -0.024672607 -0.939656317 0.341229081 -0.133524016 + 1 0.28765288 -0.893294752 0.345369875 -0.134494007 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.0817662999 0.977887988 0.192481995 -0.0516389012 + 0.300000012 -0.983879626 0.168226957 0.0606677793 -0.180516988 + 0.366667002 0.22301203 0.955016196 0.19547303 -0.0550449081 + 0.433333009 0.221690074 0.963875294 0.147641063 -0.0551288016 + 0.5 0.956274867 0.288800985 0.0461772978 -0.28284499 + 0.633333027 -0.970382869 0.24075599 0.0198394004 -0.15445599 + 0.833333015 0.859553277 0.500101089 0.10520003 -0.120200008 + 1 -0.0817645118 0.977888167 0.192482039 -0.0516388975 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.703614056 -0.708853066 0.0495442078 -0.114386998 + 0.300000012 0.703614056 -0.708853066 0.0495441034 -0.114386998 + 0.433333009 -0.879623771 -0.433347881 0.196141958 -0.297181994 + 1 0.703612983 -0.708854079 0.0495444983 -0.114386991 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.0340114944 0.9445979 0.326462954 -0.286794007 + 0.300000012 0.618556082 0.766264141 0.173861012 -0.42482397 + 0.433333009 0.657262087 0.736248136 0.161075026 -0.451258957 + 0.5 -0.549114883 0.775828898 0.310744911 -0.30567199 + 0.633333027 -0.430160135 0.842640221 0.323913127 -0.292250007 + 1 -0.0340115912 0.9445979 0.326462954 -0.286794007 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.96620518 -0.194570035 -0.169086009 -0.540560007 + 0.300000012 -0.270499021 -0.95157516 -0.146065012 -0.260929018 + 0.433333009 0.661545873 -0.713289857 -0.231461957 -0.266470999 + 0.633333027 0.954752147 -0.246480018 -0.166420996 -0.490839005 + 1 0.96620518 -0.194570035 -0.169086009 -0.540560007 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.290140003 -0.341154009 -0.894110024 -0.991366029 + 0.300000012 -0.340629071 -0.486984104 -0.804250181 -1.02005005 + 0.433333009 -0.438812822 -0.334014863 -0.834192634 -1.10260999 + 0.5 -0.459160119 -0.398269057 -0.794074118 -1.27199996 + 1 -0.290140003 -0.341154009 -0.894110024 -0.991366029 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.643578053 0.764970183 -0.0250587035 -0.365325004 + 0.300000012 0.887755573 0.460157812 -0.0120328953 -0.474624991 + 0.366667002 0.868659973 0.49504301 -0.0190322008 -0.469671011 + 0.433333009 0.578791082 0.813973069 -0.0494850054 -0.455564022 + 0.5 0.28508696 0.952448964 -0.107547 -0.703141987 + 0.56666702 0.325372905 0.943245769 -0.0664818883 -0.685053945 + 0.633333027 0.221312061 0.965389252 -0.138002023 -0.630438983 + 0.833333015 0.533828199 0.84252429 -0.0719744191 -0.370750993 + 1 0.643578053 0.764970124 -0.0250596032 -0.365325004 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.529154062 0.423199028 -0.735458076 -0.0794306099 + 0.300000012 0.833094776 -0.449270874 -0.322658896 -0.198983997 + 0.366667002 0.833925188 -0.422619075 -0.354911089 -0.184327006 + 0.433333009 0.819228351 -0.511568189 -0.259158075 -0.249171987 + 0.5 0.826810837 -0.484715909 -0.285366952 -0.22384201 + 0.56666702 -0.114746042 0.767154276 -0.631116211 -0.129086003 + 0.633333027 -0.35672006 0.819593191 -0.448350132 -0.185519993 + 0.833333015 0.829290688 -0.298480839 -0.472425789 -0.134783 + 1 0.52915591 0.423198909 -0.735456824 -0.0794304013 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.567517817 0.272375911 0.777003765 -0.541176975 + 0.300000012 -0.567517817 0.272375911 0.777003765 -0.541176975 + 0.366667002 -0.567517817 0.272375911 0.777003765 -0.541176975 + 0.433333009 -0.809525907 0.0390377939 0.585784853 -0.786759973 + 0.466666996 -0.854393899 -0.0245849974 0.519043922 -0.915540934 + 0.533333004 -0.860230863 -0.033012297 0.508834958 -0.936236978 + 0.56666702 -0.82768172 0.0145631945 0.561008811 -0.830376029 + 1 -0.567517817 0.272375911 0.777003765 -0.541176975 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.102447025 0.000684386177 -0.994738221 -0.435236007 + 0.133332998 0.0796807036 -0.00266329967 -0.996816874 -0.433979988 + 0.300000012 0.395271987 0.0972371995 -0.913402975 -0.523173988 + 0.366667002 0.156877995 0.195959032 -0.967982113 -0.496310025 + 0.433333009 0.290191859 0.208545893 -0.933968544 -0.535035014 + 0.5 0.152045012 0.177967012 -0.972219169 -0.489042968 + 0.633333027 -0.146532044 0.0801643282 -0.985952377 -0.437523007 + 0.833333015 0.239502937 0.129020974 -0.962284744 -0.486458004 + 1 0.102447025 0.000684371218 -0.994738221 -0.435236007 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.148909926 -0.975029528 -0.164751947 -0.224198982 + 0.133332998 0.509304106 -0.8404392 -0.185125038 -0.255217999 + 0.300000012 0.691854239 -0.689824224 -0.213261053 -0.297374994 + 0.366667002 0.582661092 -0.783473134 -0.21604605 -0.38427496 + 0.433333009 0.540210187 -0.80722028 -0.237841085 -0.374255002 + 0.5 0.538385987 -0.806208014 -0.245294005 -0.374577999 + 0.633333027 -0.643958986 -0.764361978 0.0326736011 -0.379693002 + 0.833333015 0.0458128117 -0.98511821 -0.165660039 -0.226777986 + 1 0.148909926 -0.975029528 -0.164751947 -0.224198982 +endnode +doneanim plcloseh a_dfa2_coat + +#MAXANIM ASCII +newanim plclosel a_dfa2_coat + length 1 + transtime 0.400000006 + animroot rootdummy + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 16 + 0 0.000558661995 -0.031260401 1.00031996 + 0.0666666999 -0.00058543199 -0.0455593988 1.02532005 + 0.133332998 0.000841834 -0.0883134976 1.08241999 + 0.200000003 0.00724693015 -0.135193005 1.11530995 + 0.266667008 0.00988392998 -0.167107001 1.12557995 + 0.333332986 0.000698191987 -0.155946001 1.11243999 + 0.400000006 -0.0173032992 -0.0860520005 1.04531002 + 0.466666996 -0.0253419001 -0.0268108994 0.964021981 + 0.533333004 -0.0270198006 0.00661766017 0.899025977 + 0.600000024 -0.0257917996 0.0146076996 0.880361974 + 0.666666985 -0.0242726002 0.0293691009 0.900955021 + 0.733332992 -0.0230151992 0.0340948999 0.980800986 + 0.800000012 -0.0172265992 0.0159917008 1.00770998 + 0.866666973 -0.0112159001 -0.00579245016 1.01058996 + 0.93333298 -0.00524622994 -0.0216965005 1.00205004 + 1 0.000558661995 -0.031260401 1.00031996 + orientationkey 16 + 0 0.916262209 0.0597088151 0.396104097 -0.211062983 + 0.0666666999 0.901426911 0.174497992 -0.396206975 -0.137819007 + 0.133332998 0.268562943 0.174144968 -0.947389841 -0.203270003 + 0.200000003 -0.0465356 0.139690995 -0.989101052 -0.333947986 + 0.266667008 -0.179817915 0.120629944 -0.976275563 -0.479166985 + 0.333332986 -0.0574708022 0.122120008 -0.990850031 -0.419678032 + 0.400000006 0.694200039 0.11021401 -0.711294055 -0.242958978 + 0.466666996 0.980100691 0.00524029834 0.198431924 -0.365664005 + 0.533333004 0.917239845 -0.0191870946 0.397872955 -0.474081993 + 0.600000024 0.935576737 -0.0229194947 0.352378905 -0.493050992 + 0.666666985 0.934350669 -0.0163450949 0.35597986 -0.44590804 + 0.733332992 0.93276608 -0.00824412983 0.360388011 -0.398794979 + 0.800000012 0.930646598 0.00199492904 0.365913868 -0.351725996 + 0.866666973 0.927684963 0.0153576992 0.373047948 -0.304720044 + 0.93333298 0.923298597 0.0335388854 0.382615834 -0.257809997 + 1 0.916262209 0.0597088151 0.396104097 -0.211062983 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.847584069 0.100689016 -0.521021068 -0.208508998 + 0.0666666999 0.631558836 0.192546904 -0.75103873 -0.198268995 + 0.233333007 -0.410519987 0.310666025 -0.857298076 -0.452782959 + 0.300000012 -0.457178175 0.30708611 -0.834677339 -0.506447911 + 0.366667002 -0.0889500678 0.346382856 -0.93386656 -0.370071977 + 0.466666996 0.999684632 0.014302195 -0.0206420925 -0.751845002 + 0.600000024 0.995962858 0.0224982984 -0.0869012922 -0.461537987 + 0.766667008 0.262668073 0.0494299158 -0.963619292 -0.0726666078 + 0.93333298 0.827110052 0.0992742181 -0.553203046 -0.186437994 + 1 0.847584069 0.100689016 -0.521021068 -0.208508998 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.683467925 -0.660545945 0.310725957 -0.705563009 + 0.0666666999 -0.827114284 -0.548941195 0.120605044 -1.02101004 + 0.133332998 -0.795955181 -0.604727149 -0.0275772046 -1.51611984 + 0.200000003 -0.883160233 -0.466677159 -0.0473331138 -2.02585006 + 0.300000012 -0.960227907 -0.270990968 0.0672770962 -2.89012003 + 0.400000006 -0.721111119 -0.684314132 0.108226016 -2.84770012 + 0.466666996 -0.694691896 -0.69796592 -0.173915967 -2.75910997 + 0.5 -0.723112941 -0.675243855 -0.145441979 -2.69180989 + 0.533333004 -0.755035281 -0.628391266 -0.187206075 -2.85424995 + 0.56666702 -0.719458044 -0.673525035 -0.169541016 -2.76296997 + 0.600000024 -0.675915956 -0.720188856 -0.156414971 -2.66798997 + 0.633333027 -0.705875039 -0.703668058 -0.0811889172 -2.62930012 + 0.666666985 -0.765664101 -0.642946005 -0.019465901 -2.68262005 + 0.699999988 -0.817300141 -0.574157059 0.0486223064 -2.67135 + 0.733332992 -0.85471338 -0.511838257 0.0865253434 -2.67461991 + 0.766667008 -0.84629488 -0.528903961 0.0636052862 -2.59338999 + 0.800000012 -0.856794238 -0.512332141 -0.0584757142 -2.52875996 + 0.833333015 -0.895919681 -0.417846859 -0.150770947 -2.31708002 + 0.93333298 -0.720468283 -0.660087287 0.212627083 -0.86994189 + 1 -0.683468163 -0.660546124 0.310725063 -0.705562055 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -1 0 0 -2.10484004 + 0.0666666999 -0.997716606 0.007098787 -0.0671657696 -2.04390001 + 0.133332998 -0.997420371 0.00107429037 -0.0717736185 -1.86366999 + 0.200000003 0.996722937 0.0100431992 0.0802650899 -4.69759989 + 0.300000012 0.990928888 0.0615842938 0.119445987 -5.39694023 + 0.400000006 0.841566265 0.533103168 -0.0869898275 -4.89128017 + 0.466666996 -0.996133029 -0.0176503025 -0.0860665068 -1.43055999 + 0.5 -0.996688306 -0.0105250031 -0.0806324258 -1.57499003 + 0.533333004 0.995556533 0.0241465885 0.0910172537 -4.96626997 + 0.56666702 0.995873868 0.0206638984 0.0883640945 -4.90731001 + 0.600000024 0.996293008 0.0156987999 0.0845801011 -4.81527996 + 0.633333027 0.995719552 0.0223839879 0.0896743536 -4.93696022 + 0.666666985 0.994538724 0.0341439843 0.0986252651 -5.11345005 + 0.699999988 0.992461562 0.0510126762 0.111434959 -5.30425978 + 0.733332992 0.98955965 0.0701275766 0.125911951 -5.46058989 + 0.766667008 0.991204798 0.0597681887 0.118070982 -5.38220978 + 0.800000012 0.99602443 0.0189331099 0.087045148 -4.87633991 + 0.833333015 -0.997307956 -0.000949369918 -0.0733208954 -1.80798995 + 0.93333298 -0.997910678 0.011877995 -0.063507475 -2.20274997 + 1 -1 0 0 -2.10484004 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.137816951 -0.0161126945 0.990326643 -5.07614994 + 0.0666666999 -0.228755057 -0.100780033 0.968253314 -4.97712994 + 0.133332998 -0.115312964 -0.0998429731 0.988298714 -4.63981009 + 0.200000003 -0.210988939 -0.174062937 0.961865783 -4.48740005 + 0.300000012 -0.361570865 -0.335678846 0.869819641 -4.51559019 + 0.400000006 -0.133059025 -0.150392041 0.979631305 -4.32460022 + 0.466666996 -0.0552431867 -0.12181098 0.991014779 -4.46197987 + 0.5 -0.175015941 -0.0851606801 0.980875671 -4.55735016 + 0.533333004 -0.186595067 -0.254541129 0.948889375 -4.38324022 + 0.56666702 -0.161275923 -0.205130905 0.965355575 -4.37142992 + 0.600000024 -0.156397924 -0.132711947 0.978737593 -4.3604002 + 0.633333027 -0.168685079 -0.172510058 0.970456421 -4.40996981 + 0.666666985 -0.391094863 -0.128271952 0.911367714 -4.45698023 + 0.699999988 -0.402937829 -0.204317912 0.89212966 -4.56255007 + 0.733332992 -0.402996093 -0.273696065 0.873318136 -4.62096977 + 0.766667008 -0.341171086 -0.279128045 0.89760226 -4.55946016 + 0.800000012 -0.443809003 -0.0998866111 0.890537024 -4.41646004 + 0.833333015 -0.476795077 -0.0305582061 0.878483176 -4.35196018 + 0.93333298 -0.24044396 0.0104439985 0.970606804 -5.08897018 + 1 -0.137816951 -0.0161126945 0.990326643 -5.07614994 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.671964169 0.551239133 -0.494570076 -0.419777989 + 0.0666666999 -0.749843121 0.476261079 -0.459250093 -0.470863044 + 0.133332998 -0.805194914 0.411809951 -0.426700979 -0.526664913 + 0.200000003 -0.845044374 0.357256144 -0.397829145 -0.585838079 + 0.300000012 -0.885946989 0.29085201 -0.36125201 -0.678977013 + 0.400000006 -0.971143603 0.0327738896 -0.236232892 -1.13574004 + 0.466666996 -0.956440628 0.000160298936 -0.291926891 -1.81713998 + 0.5 -0.92775619 0.0477448069 -0.370120049 -1.93961 + 0.533333004 -0.896392524 0.0448650829 -0.440984756 -1.63031995 + 0.56666702 -0.889242589 0.0575533733 -0.453800827 -1.5868001 + 0.600000024 -0.87731719 0.0712793171 -0.474588096 -1.57392001 + 0.633333027 -0.881757736 0.0603126846 -0.467830837 -1.48992002 + 0.666666985 -0.884192884 0.0622694939 -0.462952971 -1.37539005 + 0.699999988 -0.89018029 0.063182421 -0.451206148 -1.29920995 + 0.733332992 -0.887864888 0.0757371858 -0.453827947 -1.20692003 + 0.766667008 -0.877531707 0.11320696 -0.46596384 -1.13787997 + 0.800000012 -0.850977004 0.178586006 -0.493908018 -0.935757935 + 0.833333015 -0.773574948 0.283493012 -0.566757023 -0.711576939 + 0.93333298 -0.707563162 0.477052122 -0.521321118 -0.4736 + 1 -0.671965003 0.551239073 -0.494569004 -0.41977796 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.980958045 -0.0820397064 -0.17604202 -0.860508025 + 0.0666666999 -0.988757432 -0.0820621401 -0.124998063 -1.14540017 + 0.133332998 -0.992344141 -0.0819627047 -0.0923862979 -1.43183994 + 0.200000003 -0.994254649 -0.0818372667 -0.0689955801 -1.71904004 + 0.300000012 -0.995738208 -0.0816448182 -0.0428897068 -2.15058994 + 0.400000006 -0.990920544 -0.0621362738 -0.119228937 -1.29468 + 0.466666996 -0.823729813 -0.174943954 -0.539317906 -0.287407011 + 0.5 0.453339964 -0.435324013 -0.777801931 -0.18051298 + 0.533333004 -0.975584984 -0.0310175009 -0.21742098 -0.757191002 + 0.56666702 -0.968751669 -0.05606208 -0.241613895 -0.666763067 + 0.600000024 -0.950106502 -0.104272954 -0.293980837 -0.526423991 + 0.633333027 -0.955820024 -0.119181 -0.268707991 -0.559360981 + 0.666666985 -0.976237357 -0.0851498246 -0.199274078 -0.767498016 + 0.699999988 -0.980575144 -0.0860468075 -0.176262021 -0.852810025 + 0.733332992 -0.985415995 -0.0780261084 -0.151218995 -0.993816972 + 0.766667008 -0.987682998 -0.077957198 -0.135664999 -1.08995998 + 0.800000012 -0.992444754 -0.0763518885 -0.096040681 -1.44503999 + 0.833333015 -0.994214177 -0.0818184167 -0.0695981085 -1.71332014 + 0.93333298 -0.986385643 -0.0819841772 -0.142554954 -1.03062999 + 1 -0.980958045 -0.0820397064 -0.17604202 -0.860508025 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.474387944 -0.330870956 -0.815769851 -0.691182971 + 0.0666666999 -0.211321041 -0.263876051 -0.941123188 -0.566726983 + 0.133332998 0.171140984 -0.136701971 -0.975716829 -0.511143982 + 0.200000003 -0.53817004 -0.0188682992 0.842625082 -5.73727989 + 0.300000012 -0.822741389 -0.179858088 0.53921026 -5.55220985 + 0.400000006 0.705913961 -0.158667997 0.690297008 -5.95882988 + 0.466666996 -0.958333313 0.153800055 -0.24071309 -0.722002983 + 0.5 -0.96833241 0.249316096 -0.0131861046 -0.954594016 + 0.533333004 -0.853621125 0.482528061 -0.19620803 -0.436601013 + 0.56666702 -0.903448462 0.420111209 -0.0853667408 -0.496103972 + 0.600000024 -0.94959259 0.313485891 -0.000675295771 -0.585371912 + 0.633333027 -0.952754855 0.303739995 -0.000400743942 -0.532993019 + 0.666666985 -0.847775996 -0.527150989 -0.0582039952 -0.365411997 + 0.699999988 -0.763903379 -0.645205319 -0.0127179064 -0.276037991 + 0.733332992 -0.473167956 -0.879737914 0.0466187969 -0.172591001 + 0.766667008 -0.111997955 -0.972813606 -0.202706903 -0.0878323987 + 0.800000012 0.422951013 -0.468598992 -0.775582016 -0.274226993 + 0.833333015 0.40733996 -0.118958995 -0.905495942 -0.507735014 + 0.93333298 -0.355453849 -0.315833896 -0.879716694 -0.619629025 + 1 -0.474387944 -0.330870956 -0.815769851 -0.691182971 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0.964699447 + period -0.078711234 + tightness 5.46928593e-035 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.955248415 -0.275828123 -0.106861047 -0.0860999003 + 0.0666666999 -0.808416307 -0.153461039 0.568254173 -0.149195001 + 0.200000003 -0.580055833 0.0519141853 0.812920749 -0.412712991 + 0.266667008 -0.358275086 -0.008056622 0.933581293 -0.577336073 + 0.466666996 0.285756022 0.38974002 0.875469148 -0.375752985 + 0.600000024 0.29943791 0.252501905 0.920097649 -0.32743901 + 0.800000012 0.0212050974 0.144873992 0.989222884 -0.212804005 + 0.93333298 -0.934807062 -0.167134017 0.313372016 -0.0881315917 + 1 -0.955248356 -0.275828093 -0.106862031 -0.0860999078 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 23 + 0 -0.976382196 -0.155969009 -0.149504036 -1.14497995 + 0.0666666999 -0.978735626 -0.168008953 -0.117683962 -0.994918942 + 0.133332998 -0.965389729 -0.228628919 -0.125504956 -0.75137198 + 0.200000003 -0.939556003 -0.315667003 -0.132623002 -0.529716015 + 0.266667008 -0.930297971 -0.304540008 -0.204453006 -0.414490998 + 0.300000012 -0.934040666 -0.320860893 -0.156895936 -0.544827938 + 0.333332986 -0.93763119 -0.326954067 -0.118105024 -0.666899085 + 0.400000006 -0.926769733 -0.3256329 -0.187245965 -1.19778001 + 0.466666996 -0.925263882 -0.320841968 -0.202353969 -1.66874003 + 0.5 -0.923334122 -0.315012038 -0.219594046 -1.76213002 + 0.533333004 -0.919844985 -0.311071008 -0.238997996 -1.85205007 + 0.56666702 -0.925228655 -0.297394872 -0.235601902 -1.86591005 + 0.600000024 -0.930157006 -0.283692986 -0.23308 -1.87976003 + 0.633333027 -0.929958761 -0.278344929 -0.240209937 -1.81447995 + 0.666666985 -0.92944324 -0.273138046 -0.248054057 -1.74923003 + 0.699999988 -0.927844405 -0.265541077 -0.261902094 -1.62966001 + 0.733332992 -0.926445901 -0.258620977 -0.273519963 -1.50732994 + 0.766667008 -0.927051008 -0.254105955 -0.275692999 -1.44359016 + 0.800000012 -0.92794764 -0.249664932 -0.276731908 -1.37881982 + 0.833333015 -0.938739896 -0.231723964 -0.255090982 -1.32363999 + 0.866666973 -0.949372113 -0.212546036 -0.231337026 -1.26941001 + 0.93333298 -0.969321012 -0.171170995 -0.176401004 -1.18675995 + 1 -0.976382196 -0.155969009 -0.149504036 -1.14497995 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 23 + 0 0.999381304 -0.0252643079 0.0244680084 -1.03848004 + 0.0666666999 0.999300838 -0.0277146939 0.0250934958 -0.971342027 + 0.133332998 0.998782516 -0.0403879806 0.0283254851 -0.723222971 + 0.200000003 0.997507751 -0.061927285 0.0338118933 -0.499888003 + 0.266667008 0.994078696 -0.0996226668 0.0433919877 -0.322616011 + 0.300000012 0.995845854 -0.0822855905 0.0389890969 -0.385720015 + 0.333332986 0.996645808 -0.073160775 0.0366696939 -0.429817021 + 0.400000006 0.999087393 -0.0334528126 0.026557209 -0.841830075 + 0.466666996 0.999451458 -0.0229499117 0.0238773134 -1.11005998 + 0.5 0.999541938 -0.0196339972 0.0230308957 -1.22929001 + 0.533333004 0.999605954 -0.0169796981 0.0223530978 -1.34188998 + 0.56666702 0.999616861 -0.0164932981 0.0222288985 -1.36442995 + 0.600000024 0.999626756 -0.0160414968 0.0221134946 -1.38595998 + 0.633333027 0.999624014 -0.0161683001 0.0221459027 -1.37986004 + 0.666666985 0.999620736 -0.0163179971 0.022184195 -1.37273002 + 0.699999988 0.999566078 -0.0186688993 0.0227844995 -1.26829004 + 0.733332992 0.999489009 -0.0216242 0.0235389024 -1.15516996 + 0.766667008 0.999450088 -0.0229966007 0.0238892995 -1.10853004 + 0.800000012 0.999404371 -0.0245243106 0.024279112 -1.06043994 + 0.833333015 0.999387741 -0.0250595938 0.0244157948 -1.04446995 + 0.866666973 0.999369562 -0.0256350879 0.024562588 -1.02778006 + 0.93333298 0.999385715 -0.0251238942 0.0244321935 -1.04258001 + 1 0.999381304 -0.0252642091 0.0244680084 -1.03848004 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 23 + 0 -0.15053001 0.977936029 0.144850999 -0.140937999 + 0.0666666999 0.0303770956 0.989353895 0.142323986 -0.140702993 + 0.133332998 0.69062084 0.718628764 0.081335783 -0.192096978 + 0.200000003 0.87806493 0.478406996 0.0113470992 -0.296820998 + 0.266667008 0.916787505 0.361112803 -0.170581892 -0.399830014 + 0.300000012 0.916869938 0.38053301 -0.120599002 -0.381206959 + 0.333332986 0.91730839 0.389667183 -0.0818830356 -0.374038011 + 0.400000006 0.679184854 0.732799888 0.0413796939 -0.188503996 + 0.466666996 0.00815634988 0.999614 0.0265573002 -0.133267 + 0.5 -0.463311791 0.886077583 0.0144472923 -0.145298004 + 0.533333004 -0.738820016 0.673648953 0.0184951983 -0.181675985 + 0.56666702 -0.769712329 0.638305366 0.0104499059 -0.188545004 + 0.600000024 -0.797289729 0.603566766 0.00601829821 -0.195463985 + 0.633333027 -0.830768108 0.555105031 0.0410217047 -0.211094007 + 0.666666985 -0.856084168 0.511328101 0.0752564073 -0.226824 + 0.699999988 -0.821232677 0.567507803 0.0592603758 -0.206722006 + 0.733332992 -0.752370715 0.658600688 0.0135458941 -0.183065996 + 0.766667008 -0.675191641 0.737485588 0.015206093 -0.166638002 + 0.800000012 -0.566669047 0.823914051 0.00720019033 -0.152527019 + 0.833333015 -0.462934911 0.886355877 0.0080329394 -0.144503996 + 0.866666973 -0.339172959 0.940659881 0.0109845987 -0.138595998 + 0.93333298 -0.249209985 0.965826869 0.0712236911 -0.138962001 + 1 -0.15053001 0.977936029 0.144850999 -0.140937999 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 23 + 0 -0.163303003 0.644846082 0.746663034 -0.670683026 + 0.0666666999 0.0758600011 0.612794042 0.786593139 -0.753696024 + 0.133332998 0.294254959 0.536700964 0.790800929 -0.841312945 + 0.200000003 0.462146103 0.494597048 0.736067057 -0.885279 + 0.266667008 0.436557084 0.598046064 0.672130048 -0.793884993 + 0.300000012 0.368821114 0.551245093 0.748398185 -0.72606802 + 0.333332986 0.285091102 0.487780124 0.82510221 -0.664972007 + 0.400000006 -0.321460009 0.389251024 0.863219023 -0.582919002 + 0.466666996 -0.807411253 0.167238042 0.565790117 -0.713446915 + 0.5 -0.887779355 0.195924073 0.416487187 -0.752358019 + 0.533333004 -0.930331647 0.222622931 0.291413903 -0.80724901 + 0.56666702 -0.93001014 0.24239403 0.276272029 -0.824600995 + 0.600000024 -0.929214716 0.261452913 0.261155933 -0.841575921 + 0.633333027 -0.901465774 0.312858909 0.299129933 -0.792406976 + 0.666666985 -0.86185497 0.369563043 0.34731704 -0.748820961 + 0.699999988 -0.753689587 0.412498832 0.511660695 -0.730174959 + 0.733332992 -0.606539011 0.435566008 0.665126026 -0.73872596 + 0.766667008 -0.550119042 0.46142903 0.696026087 -0.730284989 + 0.800000012 -0.488208801 0.485052794 0.72551769 -0.725499928 + 0.833333015 -0.44247511 0.528674126 0.724375188 -0.703665972 + 0.866666973 -0.381353945 0.564717889 0.731889904 -0.694495976 + 0.93333298 -0.246504858 0.634414613 0.732634604 -0.673736989 + 1 -0.163303003 0.644846082 0.746663034 -0.670683026 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 23 + 0 1 0 0 -0.880254984 + 0.0666666999 1 0 0 -0.770790994 + 0.133332998 1 0 -3.17721998e-007 -0.544566989 + 0.200000003 1 -1.53003995e-007 -3.19207999e-007 -0.39854601 + 0.266667008 1 1.37822013e-007 4.99045996e-007 -0.46272096 + 0.300000012 1 0 0 -0.497800976 + 0.333332986 1 0 0 -0.524001002 + 0.400000006 1 0 0 -0.747874975 + 0.466666996 1 0 -2.52576996e-007 -0.917339027 + 0.5 1 0 0 -1.01066995 + 0.533333004 1 0 3.83126007e-007 -1.09274995 + 0.56666702 1 0 0 -1.12005997 + 0.600000024 1 0 0 -1.14645994 + 0.633333027 1 0 0 -1.11632001 + 0.666666985 1 0 0 -1.08341002 + 0.699999988 1 0 0 -0.953531027 + 0.733332992 1 0 0 -0.807206988 + 0.766667008 1 0 0 -0.783029974 + 0.800000012 1 -1.91593998e-007 -5.0967401e-007 -0.756074011 + 0.833333015 1 0 0 -0.782492995 + 0.866666973 1 0 -1.60113004e-007 -0.803708971 + 0.93333298 1 0 0 -0.864983976 + 1 1 0 -2.5642899e-007 -0.880254984 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 23 + 0 -0.798257887 -0.596262932 0.0851754025 -0.863411963 + 0.0666666999 -0.77700913 -0.628822088 0.0289765019 -0.805158973 + 0.133332998 -0.71644479 -0.697643816 -4.96525863e-005 -0.658638 + 0.200000003 -0.668885231 -0.738772213 0.0825115368 -0.568741977 + 0.266667008 -0.686247289 -0.70830822 0.165421069 -0.563405991 + 0.300000012 -0.707478881 -0.684441864 0.176104963 -0.569397986 + 0.333332986 -0.721917689 -0.662139714 0.201011926 -0.573809028 + 0.400000006 -0.780592144 -0.625029087 -0.00381750055 -0.659316003 + 0.466666996 -0.791697383 -0.609764278 -0.0374529175 -0.737205029 + 0.5 -0.795982063 -0.605306029 -0.00414648047 -0.803542972 + 0.533333004 -0.794656396 -0.607023299 0.00662878389 -0.86618197 + 0.56666702 -0.796952128 -0.603770077 0.0181372017 -0.89241302 + 0.600000024 -0.798700929 -0.601012945 0.029330099 -0.918736994 + 0.633333027 -0.795853972 -0.605099976 0.0216910001 -0.919381022 + 0.666666985 -0.792020917 -0.610426009 0.0091079995 -0.917807937 + 0.699999988 -0.766883135 -0.637057066 -0.0777722076 -0.838145912 + 0.733332992 -0.717228949 -0.67234695 -0.183117986 -0.766067028 + 0.766667008 -0.715981901 -0.673317909 -0.184425965 -0.752312064 + 0.800000012 -0.71334213 -0.675617039 -0.186238021 -0.737680972 + 0.833333015 -0.741703153 -0.661261261 -0.112294041 -0.754492998 + 0.866666973 -0.760368109 -0.646800995 -0.0590658039 -0.772527993 + 0.93333298 -0.788856149 -0.612757087 0.0472731069 -0.838886976 + 1 -0.798257887 -0.596262872 0.0851757824 -0.863411963 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.0941663161 0.979700208 -0.176975042 -0.0910393074 + 0.266667008 0.99123168 -0.13088195 0.0181562938 -0.242098004 + 0.56666702 -0.523067057 0.844262064 -0.116715014 -0.0818522051 + 1 0.0941663161 0.979700208 -0.176975042 -0.0910393074 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.28765288 -0.893294752 0.345369875 -0.134494007 + 0.266667008 0.28765282 -0.893294394 0.34537077 -0.134494007 + 0.433333009 -0.171490952 0.0867065862 0.98136276 -0.0663629994 + 0.56666702 0.367049992 -0.495292932 0.787374914 -0.0677753016 + 0.733332992 -0.739702702 -0.582370758 0.337170839 -0.147986993 + 1 0.28765288 -0.893294752 0.345369875 -0.134494007 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.0817660019 0.977888048 0.192481995 -0.0516389012 + 0.266667008 -0.081765309 0.977888107 0.192482024 -0.0516389012 + 0.56666702 0.828156054 0.544852018 -0.131505996 -0.466219008 + 0.733332992 -0.66442585 -0.518301904 -0.538424909 -0.369163007 + 1 -0.0817676932 0.977887869 0.192481965 -0.0516389012 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.703614056 -0.708853006 0.0495443046 -0.114386998 + 0.266667008 0.698325336 -0.708149374 -0.104241051 -0.388363004 + 0.466666996 0.967363656 -0.22318092 0.119990952 -0.417437017 + 0.56666702 0.968837082 -0.0389384031 0.244619027 -0.350133985 + 1 0.70361352 -0.708853543 0.0495443679 -0.114386991 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.0340115912 0.9445979 0.326462954 -0.286794007 + 0.266667008 0.699606717 0.655071735 0.285361916 -0.379920006 + 0.333332986 0.573121846 0.769089699 0.282899916 -0.451563001 + 0.400000006 0.157698944 0.943698585 0.290798873 -0.528913021 + 0.56666702 -0.676814795 0.624175906 0.390289903 -0.538866997 + 0.733332992 -0.280289978 0.885896981 0.369626999 -0.481085986 + 1 -0.0340114944 0.9445979 0.326462954 -0.286794007 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.920014381 -0.345835119 -0.184314042 -0.381069988 + 0.266667008 0.791743815 0.6020239 0.103483975 -0.191348016 + 0.333332986 0.974510908 0.165761992 0.15116699 -0.230434999 + 0.400000006 0.801428258 -0.0400711112 0.5967471 -0.166047007 + 0.5 0.839421868 0.284132928 -0.463291943 -0.627061963 + 0.56666702 0.840601981 0.281269997 -0.462899029 -0.615631998 + 0.733332992 0.93706274 -0.331609905 -0.109307975 -0.43937096 + 1 0.920014024 -0.345836014 -0.184314013 -0.381069005 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.290140003 -0.341154009 -0.894110024 -0.991366029 + 0.266667008 0.0593220107 -0.584363043 -0.809321165 -0.591808975 + 0.56666702 -0.227866098 -0.397099167 -0.889038384 -1.01374996 + 1 -0.290140003 -0.341154009 -0.894110024 -0.991366029 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.643578053 0.764970183 -0.0250593033 -0.365325004 + 0.266667008 -0.0241940003 0.977881014 -0.207757995 -0.191707015 + 0.433333009 0.134110063 0.97169143 -0.194500089 -0.351499975 + 0.56666702 0.18421109 0.96450448 -0.189202085 -0.481857002 + 0.733332992 0.176928982 0.968374968 -0.175914973 -0.465418011 + 1 0.643578053 0.764970124 -0.0250597037 -0.365325004 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.529154062 0.423199028 -0.735458076 -0.0794304982 + 0.266667008 0.677091897 0.0693136826 -0.732626915 -0.0785176009 + 0.433333009 0.97836107 -0.157183021 0.134547994 -0.384575993 + 0.56666702 0.847745776 0.221089944 0.482126862 -0.353810012 + 0.733332992 -0.0816437975 0.949446023 0.303128004 -0.288989991 + 1 0.529154181 0.42320019 -0.735457301 -0.0794306025 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.567517817 0.272375911 0.777003765 -0.541176975 + 0.266667008 0.00889421534 0.142959937 0.989688516 -1.02139997 + 0.466666996 -0.457859129 0.296221048 0.838223159 -0.797465026 + 0.56666702 -0.713054955 0.224573985 0.664168 -0.698637962 + 1 -0.567517817 0.272375911 0.777003765 -0.541176975 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.102447025 0.000684410159 -0.994738221 -0.435236007 + 0.266667008 0.102447025 0.000684384198 -0.994738221 -0.435236007 + 0.366667002 0.193901002 0.11094901 -0.974726975 -0.556334019 + 0.466666996 -0.195098966 0.0734694824 -0.97802794 -0.570813 + 0.533333004 -0.132001966 0.141639978 -0.98107779 -0.619098008 + 0.56666702 -0.0425226204 -0.0157444067 -0.998971462 -0.684924066 + 1 0.102447025 0.000684460159 -0.994738221 -0.435236007 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.148909926 -0.975029528 -0.164751947 -0.224198982 + 0.266667008 0.454980046 -0.854170084 -0.251767009 -0.166786015 + 0.366667002 -0.0832192302 -0.983194411 -0.162491053 -0.367763996 + 0.466666996 0.0621110722 -0.984886706 -0.161679938 -0.591316998 + 0.533333004 -0.183286965 -0.978797913 0.0914360955 -0.161669999 + 0.56666702 -0.0830874965 0.273954004 0.958146989 -0.0903291032 + 0.733332992 0.117721967 -0.97148174 0.205826953 -0.0795675963 + 1 0.148909926 -0.975029528 -0.164751947 -0.224198982 +endnode +doneanim plclosel a_dfa2_coat + +#MAXANIM ASCII +newanim plreach a_dfa2_coat + length 1 + transtime 0.400000006 + animroot rootdummy + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 snd_footstep + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.5 blur_end + event 0.5 blur_end + event 0.5 hit + event 0.5 hit + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 11 + 0 0.000558661995 -0.031260401 1.00031996 + 0.0666666999 -0.00537905004 -0.0599133 1.01277995 + 0.100000001 -0.023883 -0.128718004 1.04152 + 0.166666999 -0.0413120985 -0.197522998 1.05332005 + 0.233333007 -0.0629960001 -0.339525014 1.06255996 + 0.300000012 -0.0598566011 -0.229201004 1.04463995 + 0.466666996 -0.0727586001 0.268123001 0.831696987 + 0.5 -0.0690924972 0.383300006 0.782526016 + 0.633333027 -0.0690329969 0.432843 0.760589004 + 0.733332992 -0.0580944009 0.297556013 0.893181026 + 1 0.000558661995 -0.031260401 1.00031996 + orientationkey 7 + 0 0.916262209 0.0597088151 0.396104097 -0.211062983 + 0.0666666999 0.613365293 -0.00843101367 0.789754331 -0.260587007 + 0.100000001 0.152392939 -0.0749152675 0.985476553 -0.505782008 + 0.166666999 -0.0111818025 -0.0930332169 0.995600224 -0.79363507 + 0.233333007 -0.0696931034 -0.0989079997 0.992653072 -0.995926976 + 0.300000012 -0.0295040887 -0.107763961 0.993738592 -0.96528697 + 1 0.916262209 0.0597089194 0.396104097 -0.211062998 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.847584069 0.100689016 -0.521021068 -0.208508998 + 0.200000003 0.476367056 0.0547998063 0.877537131 -0.505122006 + 0.300000012 0.565512836 0.136746958 0.813323736 -0.501806974 + 0.400000006 0.854851365 0.506354153 -0.113290042 -0.606485009 + 0.466666996 0.776949883 0.486019909 -0.400166929 -0.992421985 + 0.5 0.858874083 0.418336034 -0.295517027 -1.10295987 + 0.633333027 0.879934013 0.259190977 -0.398165971 -1.24866998 + 0.699999988 0.803346157 0.250447065 -0.540288091 -0.927550972 + 1 0.847584069 0.100689016 -0.521021068 -0.208508998 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -0.683467925 -0.660545945 0.310725957 -0.705563009 + 0.0666666999 -0.392638981 -0.445908993 0.804362953 -1.00971985 + 0.100000001 -0.373489112 -0.301026106 0.8774333 -0.803183019 + 0.166666999 -0.552047133 0.0275656078 0.833357096 -0.946087062 + 0.233333007 -0.617750883 0.152014956 0.77154088 -0.649601042 + 0.300000012 -0.466475934 0.0555176921 0.88278991 -1.07352996 + 0.400000006 0.0466382913 -0.584774852 -0.809853852 -0.433131993 + 0.433333009 0.313139826 -0.230587885 -0.92128861 -0.660209 + 0.5 0.0671779886 -0.291647941 -0.95416379 -0.989624977 + 0.633333027 -0.115221962 -0.239001915 -0.964158714 -1.07135999 + 0.666666985 -0.0599514917 -0.23609896 -0.969877899 -1.00225997 + 0.699999988 -0.105625972 -0.223356962 -0.968996823 -0.94571501 + 0.899999976 -0.737715006 -0.634468973 -0.23070699 -0.619229019 + 1 -0.683467686 -0.66054672 0.310724884 -0.705563009 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -1 0 0 -2.10484004 + 0.0666666999 -0.997468114 0.00197101012 -0.0710879043 -1.88910997 + 0.100000001 -0.996296525 -0.0156559926 -0.0845463648 -1.46875 + 0.166666999 -0.979257643 -0.119852953 -0.163369939 -0.576713979 + 0.233333007 -0.981445611 -0.110740952 -0.156527936 -0.610460997 + 0.300000012 0.974495649 0.137993962 0.176962957 -5.76383018 + 0.400000006 -0.998257995 0.0395334996 -0.0437957048 -1.76564002 + 0.433333009 -0.99759376 0.0567148849 -0.0398768857 -1.68473017 + 0.5 -0.975657344 0.169019058 -0.139733031 -0.531760991 + 0.633333027 -0.975706995 0.0994196981 -0.195222005 -0.533643007 + 0.666666985 -0.989428043 0.0770734102 -0.12284901 -0.835953951 + 0.699999988 -0.9924137 0.0672654808 -0.102909967 -1.00363004 + 0.899999976 -0.997534752 0.0125838974 -0.0690363869 -1.98538005 + 1 -1 0 0 -2.10484004 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -0.137816951 -0.0161124952 0.990326643 -5.07614994 + 0.0666666999 0.206891075 0.19582808 0.958565295 -5.24230003 + 0.100000001 -0.437135011 0.0582901053 -0.897504985 -1.29621005 + 0.166666999 -0.586897969 0.264817953 -0.765128911 -1.86671996 + 0.233333007 -0.550927877 0.435628921 -0.711832821 -1.91562998 + 0.300000012 0.679592848 -0.212776959 0.702053785 -4.25141001 + 0.400000006 -0.3258681 0.480028152 -0.814483225 -0.520962 + 0.433333009 0.188854977 0.320874929 -0.928101838 -0.262928009 + 0.5 -0.0242480915 -0.959900618 0.279289901 -0.400418997 + 0.633333027 -0.0572479926 -0.605732918 0.793605864 -0.507234991 + 0.666666985 -0.0583681725 -0.605391741 0.793784618 -0.49871099 + 0.699999988 0.548457086 -0.614952028 0.566594005 -0.412916988 + 0.899999976 0.303928018 0.241731048 -0.921517134 -1.23459005 + 1 -0.137816951 -0.0161123946 0.990326643 -5.07614994 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.671965003 0.551239073 -0.494569004 -0.41977796 + 0.0666666999 -0.589061856 0.724973917 0.356957942 -0.456617028 + 0.100000001 -0.469069004 0.861917973 -0.19254002 -0.602811992 + 0.166666999 0.0722243935 0.891184866 -0.447853953 -0.969226956 + 0.233333007 0.376407862 0.771711707 -0.512618899 -1.44743001 + 0.300000012 0.231672034 0.803983092 -0.547667086 -1.29102004 + 0.333332986 0.248664021 0.844735086 -0.473908037 -1.05264008 + 0.400000006 0.54271692 0.676889956 -0.497270912 -0.783612013 + 0.433333009 0.456226051 0.685553074 -0.567340076 -0.494893014 + 0.466666996 -0.956598997 0.0824168026 -0.279509991 -0.812035978 + 0.5 -0.966010153 0.133030012 -0.221647039 -2.34801006 + 0.633333027 -0.990618229 0.129180029 -0.0445880108 -2.49017 + 0.699999988 -0.99232012 0.111385018 -0.0537970103 -2.1066401 + 0.733332992 -0.992542684 0.103878967 -0.063782081 -1.91921997 + 0.833333015 -0.88452214 0.360310018 -0.296306044 -0.956620991 + 1 -0.671965003 0.551239073 -0.494569004 -0.41977796 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.980958045 -0.0820397064 -0.17604202 -0.860508025 + 0.0666666999 -0.996961117 -0.0374290049 -0.0683197975 -0.708688021 + 0.100000001 -1 -5.59827015e-007 0 -0.530154943 + 0.166666999 -1 0 0 -0.625477016 + 0.233333007 -1 0 0 -1.21843004 + 0.300000012 -1 0 0 -0.590941012 + 0.333332986 -1 0 1.57548996e-007 -0.731745005 + 0.400000006 -0.999567509 -0.0293998867 -0.000648788759 -1.09274995 + 0.433333009 -0.995879471 -0.0843268409 -0.0333629139 -1.46476996 + 0.466666996 -0.995638311 -0.0875844285 -0.0321450122 -1.41500998 + 0.5 -0.796341479 -0.582362354 0.163384095 -0.200841993 + 0.633333027 -0.922697246 -0.377241045 0.0794920251 -0.315881014 + 0.699999988 0.602594078 -0.771032095 0.205888048 -0.14226 + 0.733332992 0.605285108 -0.781526268 0.151151046 -0.136870995 + 0.833333015 -0.984970152 -0.123629019 -0.120622024 -0.721197963 + 1 -0.980958045 -0.0820397064 -0.17604202 -0.860508025 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.474387944 -0.330870956 -0.815769851 -0.691182971 + 0.0666666999 -0.409824073 -0.504706085 -0.75981313 -1.05436003 + 0.100000001 -0.376351029 -0.488161027 -0.787438095 -0.96482408 + 0.166666999 -0.417132914 -0.527853906 -0.739844859 -0.600805998 + 0.233333007 0.686922848 0.0551098846 -0.724637806 -0.120944001 + 0.300000012 -0.907535732 -0.166939959 -0.385369897 -0.445324004 + 0.333332986 -0.693673909 -0.336039931 -0.637097895 -0.387198031 + 0.400000006 -0.394922107 -0.826236248 -0.40170911 -0.259041965 + 0.433333009 0.914405465 -0.396089196 -0.0835223421 -0.31198898 + 0.466666996 0.994491756 -0.0264128968 0.101431988 -1.01893997 + 0.5 0.913425922 -0.0749100894 0.400051981 -1.11250997 + 0.633333027 0.980281234 0.00311379065 0.19758305 -1.27895999 + 0.699999988 0.99721849 -0.0561760254 0.0489850231 -0.611347973 + 0.733332992 0.97910887 -0.0875130892 -0.183541 -0.392244995 + 0.833333015 -0.236719012 -0.597397089 -0.766212046 -0.235469982 + 1 -0.474387944 -0.330870956 -0.815769851 -0.691182971 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 5.46928593e-035 + period 0.975248516 + tightness -0.078711234 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.955248237 -0.275828063 -0.106863022 -0.0861001015 + 0.0666666999 -0.947701573 -0.312018871 -0.0671261698 -0.0755371973 + 0.233333007 -0.247046024 -0.728728056 0.638689041 -0.0308481008 + 0.466666996 0.265495092 -0.0219490081 -0.96386236 -0.623336017 + 0.633333027 0.497569114 -0.0431551114 -0.866350174 -0.478157014 + 1 -0.955248415 -0.275828123 -0.106861047 -0.0861001089 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.976382196 -0.155969009 -0.149504036 -1.14497995 + 0.0666666999 -0.954107702 -0.189702928 -0.231713906 -1.11406004 + 0.100000001 -0.860649943 -0.266746968 -0.43373695 -1.04879999 + 0.166666999 -0.70904994 -0.327351958 -0.624570966 -1.07281005 + 0.233333007 -0.654292703 -0.419788808 -0.629029751 -0.901521981 + 0.266667008 -0.778897882 -0.351033986 -0.519704938 -1.22957003 + 0.300000012 -0.832535207 -0.287931055 -0.473266125 -1.27611005 + 0.333332986 -0.884429336 -0.2394851 -0.40053919 -1.35265005 + 0.400000006 -0.949114084 -0.15600501 -0.273578018 -1.48896003 + 0.433333009 -0.962847114 -0.106303014 -0.248244017 -1.52736998 + 0.466666996 -0.973824143 -0.0588028096 -0.219565034 -1.52593994 + 0.5 -0.968773067 -0.083785601 -0.233364016 -1.56859994 + 0.633333027 -0.974258661 -0.0778291672 -0.211571932 -1.67084002 + 0.733332992 -0.970025301 -0.0777145177 -0.230242074 -1.49857998 + 0.833333015 -0.964887679 -0.111792967 -0.23768492 -1.42328 + 0.93333298 -0.972275913 -0.136414006 -0.189923003 -1.1753099 + 1 -0.976382196 -0.155969009 -0.149504036 -1.14497995 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 0.999381304 -0.0252642091 0.0244680084 -1.03848004 + 0.0666666999 0.999319911 -0.0271524955 0.0249497965 -0.986025035 + 0.100000001 0.999096036 -0.0332373045 0.0265021045 -0.846112072 + 0.166666999 0.998815656 -0.0396872833 0.0281468909 -0.733731985 + 0.233333007 0.994150817 -0.0989728943 0.0432265922 -0.324608982 + 0.266667008 0.999288321 -0.0280800071 0.0251864083 -0.962015033 + 0.300000012 0.999441564 -0.0232871901 0.0239631906 -1.09907997 + 0.333332986 0.99956125 -0.018865902 0.0228347033 -1.26015997 + 0.400000006 0.999619603 -0.0163686927 0.0221968889 -1.37031996 + 0.433333009 0.999610543 -0.016776491 0.0223010872 -1.35123003 + 0.466666996 0.999611795 -0.0167195965 0.0222865958 -1.35386002 + 0.5 0.999717593 -0.0113034965 0.0209031906 -1.64960003 + 0.633333027 0.999735236 -0.0102047026 0.0206224062 -1.722 + 0.733332992 0.999521434 -0.0204245076 0.023232609 -1.19886994 + 0.833333015 0.999659777 -0.014457196 0.0217086952 -1.46607006 + 0.93333298 0.999534845 -0.0199094955 0.023101097 -1.21853995 + 1 0.999381304 -0.0252642091 0.0244680084 -1.03848004 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.15053001 0.977936029 0.144850999 -0.140937999 + 0.0666666999 0.071597904 0.98884517 -0.130610019 -0.137364998 + 0.100000001 0.443873912 0.694768906 -0.565925896 -0.201617002 + 0.166666999 0.556287646 0.522164702 -0.646442652 -0.296636999 + 0.233333007 0.674619257 0.285745084 -0.680616319 -0.743638933 + 0.300000012 0.804433763 0.411719888 -0.428220868 -0.515007973 + 0.333332986 0.7607041 0.431254089 -0.485128045 -0.366887987 + 0.400000006 0.392470986 0.613940001 -0.684868038 -0.132431 + 0.433333009 -0.696224988 0.483305007 -0.53074199 -0.088227503 + 0.466666996 0.0873653218 0.986667216 -0.137314036 -0.0648374036 + 0.5 -0.957608342 0.253886104 0.136118039 -0.288269013 + 0.633333027 -0.966646016 0.229506001 0.11367701 -0.36502701 + 0.733332992 0.332420021 0.719191074 0.610132039 -0.0859770998 + 0.833333015 -0.632457793 0.275855899 0.723809779 -0.148269996 + 0.93333298 -0.859771729 0.471048832 0.197244942 -0.246454999 + 1 -0.15053001 0.977936029 0.144850999 -0.140937999 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 18 + 0 -0.163303003 0.644846082 0.746663034 -0.670683026 + 0.0666666999 -0.293777049 0.721018136 0.627557099 -0.642868936 + 0.100000001 -0.542105138 0.790969253 0.283707052 -0.648590028 + 0.166666999 -0.714075744 0.698236763 -0.0506092794 -0.742842078 + 0.233333007 -0.869967043 0.475405037 -0.130948007 -0.862939 + 0.300000012 -0.771511793 0.636006892 -0.0162735954 -0.87756902 + 0.333332986 -0.648143172 0.760444224 -0.0404353142 -0.858837962 + 0.366667002 -0.474009931 0.880352795 -0.0171330981 -0.81526792 + 0.400000006 -0.232362941 0.971740842 0.0415595919 -0.761022031 + 0.433333009 0.109279044 0.991442442 0.0714142323 -0.690804958 + 0.466666996 0.520941794 0.843538702 0.13062197 -0.691820979 + 0.5 0.681915224 0.669593155 0.294341058 -0.958714008 + 0.633333027 0.434022963 0.74364996 0.508535922 -0.993444026 + 0.733332992 0.406727016 0.762315094 0.503437042 -0.732640982 + 0.800000012 0.287334979 0.751179874 0.594278872 -0.703731954 + 0.866666973 0.0995669886 0.742367864 0.662552893 -0.693943977 + 0.93333298 -0.0428040028 0.695503056 0.717247069 -0.706147015 + 1 -0.163303003 0.644846082 0.746663034 -0.670683026 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 18 + 0 1 0 0 -0.880254984 + 0.0666666999 1 0 0 -0.915453017 + 0.100000001 1 0 0 -0.954095006 + 0.166666999 1 -1.84317997e-007 -1.81486001e-007 -0.997846007 + 0.233333007 1 0 1.75999006e-007 -1.02671003 + 0.300000012 1 0 0 -1.04102004 + 0.333332986 1 0 0 -1.08867002 + 0.366667002 1 0 0 -1.07103992 + 0.400000006 1 0 0 -0.984906018 + 0.433333009 1 0 -1.66117999e-007 -0.818992972 + 0.466666996 1 0 0 -0.536557972 + 0.5 1 -1.52787004e-006 1.61681999e-006 -0.0621859953 + 0.633333027 1 -4.93047992e-007 7.0312899e-007 -0.302549988 + 0.733332992 1 -4.57077988e-007 0 -0.336988986 + 0.800000012 1 0 0 -0.448062003 + 0.866666973 1 0 1.31277005e-007 -0.657157004 + 0.93333298 1 0 -2.85855009e-007 -0.79294908 + 1 1 0 0 -0.880254984 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 18 + 0 -0.798257947 -0.596262932 0.0851749927 -0.863412976 + 0.0666666999 -0.796046913 -0.603515029 0.0455950983 -0.819184005 + 0.100000001 -0.767677009 -0.635597944 -0.0817755982 -0.700404942 + 0.166666999 -0.711126864 -0.654514968 -0.25672698 -0.605383992 + 0.233333007 -0.600770235 -0.569001138 -0.561527193 -0.445024997 + 0.300000012 -0.672859013 -0.665041983 -0.324005991 -0.573270977 + 0.333332986 -0.705873907 -0.697800875 -0.121720977 -0.747016013 + 0.366667002 -0.708240688 -0.70593363 -0.00726880739 -0.913133025 + 0.400000006 -0.702460289 -0.706201255 0.0884835348 -1.05385995 + 0.433333009 -0.692891836 -0.682187736 0.233496904 -1.17755997 + 0.466666996 -0.669991851 -0.636383832 0.382264942 -1.24942005 + 0.5 -0.553748906 -0.738844812 0.384018898 -1.11002004 + 0.633333027 -0.581954837 -0.79127568 0.187646925 -0.963177979 + 0.733332992 -0.603303909 -0.731082857 0.318656951 -0.938552976 + 0.800000012 -0.649703085 -0.729215026 0.214782014 -0.981935918 + 0.866666973 -0.708957136 -0.694791138 0.121017016 -0.959333003 + 0.93333298 -0.755509019 -0.652646959 0.0570795983 -0.914046943 + 1 -0.798257887 -0.596262872 0.0851756856 -0.863411963 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.0941657126 0.979700089 -0.176975995 -0.0910393074 + 0.133332998 0.912459314 0.405354112 -0.0557318144 -0.152269021 + 0.266667008 0.839881957 0.325435013 -0.434385002 -0.357113987 + 0.333332986 0.697955072 0.523588002 -0.488584012 -0.316195995 + 0.400000006 0.789737701 0.364979893 -0.49305582 -0.45361799 + 0.466666996 0.946516216 0.286922067 -0.147590026 -0.446880013 + 0.600000024 0.96622467 0.253654867 0.0454878844 -0.539461911 + 0.633333027 0.984693229 0.174276039 0.00265784096 -0.630939007 + 0.666666985 0.96234256 0.269795895 0.0332705863 -0.50128001 + 0.733332992 0.983183444 0.17827408 -0.0396070182 -0.295217007 + 0.866666973 0.808646679 0.453313828 -0.374962866 -0.0681217015 + 1 0.0941668898 0.979700029 -0.176975995 -0.0910393 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.28765288 -0.893294752 0.345369875 -0.134494007 + 0.133332998 0.479076982 -0.805628002 0.348494977 -0.133392006 + 0.266667008 0.968552291 -0.182459056 0.169160038 -0.221284017 + 0.333332986 0.974999368 0.0616058148 0.213497058 -0.321633041 + 0.400000006 0.999661565 -0.00734018674 -0.024956489 -0.44156301 + 0.466666996 0.831416011 0.103452004 -0.545935035 -0.611526966 + 0.600000024 0.566525757 0.291982859 -0.770580649 -0.613024056 + 0.733332992 0.800270975 0.576959968 0.163350999 -0.197171018 + 0.866666973 -0.383699059 -0.904844105 0.18447803 -0.213745981 + 1 0.287651986 -0.89329499 0.345369995 -0.134494007 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.081766203 0.977887988 0.192481995 -0.0516389012 + 0.133332998 -0.870375872 0.491833955 -0.0233491976 -0.258881003 + 0.266667008 -0.526714206 -0.849737227 -0.0227766074 -0.0783691034 + 0.333332986 0.721532106 -0.692295134 -0.010902903 -0.187534988 + 0.400000006 0.655887008 -0.528966069 -0.538523078 -0.450767994 + 0.466666996 0.781294763 -0.618391812 0.0846761763 -0.357086003 + 0.600000024 0.294226021 -0.94347018 0.152627036 -0.558594048 + 0.733332992 -0.969410658 -0.148239955 -0.195621938 -0.157657981 + 0.866666973 -0.992108881 0.0858189911 -0.091406092 -0.130384997 + 1 -0.081764318 0.977888167 0.192482039 -0.051638905 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.703612983 -0.708854079 0.0495443046 -0.114386991 + 0.133332998 0.703614056 -0.708853066 0.0495440029 -0.114386998 + 0.266667008 0.745315254 -0.369588137 -0.554896176 -0.130467996 + 0.466666996 0.552791119 0.361616075 -0.750770152 -0.642288983 + 0.600000024 0.615104198 0.603741169 -0.507093132 -0.71696192 + 0.666666985 0.504198849 0.711018622 -0.490138799 -0.677264988 + 0.733332992 0.386309952 0.677245915 -0.626180947 -0.532110989 + 0.866666973 0.802301228 -0.593009174 -0.0682119131 -0.115560994 + 1 0.70361352 -0.708853543 0.0495440699 -0.114386991 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.0340113975 0.9445979 0.326462984 -0.286792994 + 0.133332998 0.0460276976 0.967383921 0.249098003 -0.392589003 + 0.266667008 0.272153109 0.92897433 0.250877112 -0.391562015 + 0.466666996 0.461543947 0.397467941 0.793092966 -0.497135967 + 0.5 0.676151931 0.534449935 0.507130921 -0.694962025 + 0.533333004 0.623260677 0.557380736 0.548518777 -0.680257976 + 0.600000024 0.545778751 0.626209676 0.556764781 -0.580636024 + 0.666666985 0.553447187 0.621524215 0.5544402 -0.57555598 + 0.733332992 0.742408216 0.403557152 0.534763157 -0.471571982 + 0.866666973 0.424957156 0.843141258 0.329430103 -0.538406014 + 1 -0.0340114944 0.9445979 0.326462954 -0.286794007 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.948013842 -0.261114985 -0.18190299 -0.460464984 + 0.133332998 0.0569971912 0.901060879 0.429930955 -0.443506986 + 0.266667008 0.919601679 0.322265893 0.224671945 -0.266564995 + 0.466666996 0.890327692 0.205181926 0.406468868 -0.627595007 + 0.5 0.908070683 -0.0113188969 0.418663889 -0.53571099 + 0.533333004 0.914392233 0.0321069099 0.403554171 -0.554283977 + 0.600000024 0.893125117 0.340437025 0.293990016 -0.464881986 + 0.666666985 0.989339948 -0.102046989 -0.103888996 -0.450058013 + 0.733332992 0.920328259 0.390686125 -0.0189791061 -0.425115973 + 0.866666973 0.997188151 0.0271103065 -0.0698629171 -0.543175936 + 1 0.948013842 -0.261114985 -0.18190299 -0.460464984 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.290140003 -0.341154009 -0.894110024 -0.991366029 + 0.133332998 -0.0622136854 -0.589334905 -0.805489838 -1.04042995 + 0.266667008 0.00131713005 -0.521036983 -0.853533089 -1.63064003 + 0.333332986 -0.0272856914 -0.472720802 -0.880789697 -1.56268001 + 0.400000006 0.019217493 -0.525850832 -0.850359678 -1.51010001 + 0.466666996 0.0262620114 -0.504159212 -0.863211334 -1.59580004 + 0.600000024 0.0262628961 -0.504159927 -0.863210917 -1.59580004 + 0.733332992 -0.207648024 -0.478568047 -0.853144169 -1.33561003 + 0.866666973 -0.239721954 -0.406838953 -0.881484807 -1.18201995 + 1 -0.290140003 -0.341154009 -0.894110024 -0.991366029 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.643578053 0.764970124 -0.0250600036 -0.365325004 + 0.133332998 0.543677866 0.509819865 -0.66670686 -0.711404979 + 0.266667008 0.582581818 0.787445724 0.201314911 -0.619801998 + 0.333332986 0.636372805 0.733396828 0.239078939 -0.421550006 + 0.400000006 0.713248134 0.105146021 -0.692980111 -0.419609964 + 0.466666996 0.77956301 0.0771264955 0.621556938 -0.596291006 + 0.600000024 0.668616176 0.185851038 0.720008194 -0.578571975 + 0.733332992 0.587650955 0.770202875 -0.247898966 -0.575864971 + 0.866666973 0.437055796 0.805487633 -0.400214791 -0.415912986 + 1 0.643578053 0.764970124 -0.0250596032 -0.365325004 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.52915591 0.423198879 -0.735456824 -0.0794303045 + 0.133332998 0.233526886 0.907574534 -0.348960787 -0.187206 + 0.266667008 0.300879955 0.8001948 -0.518805861 -0.366786003 + 0.333332986 0.306533039 0.79414314 -0.524761081 -0.339812994 + 0.400000006 0.209251121 -0.970388532 0.120665073 -0.151811004 + 0.466666996 -0.232446015 -0.970766068 -0.0598502047 -0.186308011 + 0.600000024 0.578544259 -0.334975123 -0.743692279 -0.85183692 + 0.733332992 -0.106877983 0.940842867 -0.321545959 -0.253244996 + 0.866666973 -0.00119896 0.912846982 -0.408300042 -0.159832999 + 1 0.529154956 0.423199952 -0.735456884 -0.0794303045 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.567517817 0.272375911 0.777003765 -0.541176975 + 0.133332998 -0.651480079 0.451463014 0.609717071 -0.67848593 + 0.266667008 -0.381293982 0.802870929 0.45827195 -0.750873029 + 0.466666996 -0.405380875 0.829978764 -0.383146912 -0.600811005 + 0.600000024 -0.110972025 0.974543095 0.194810048 -0.546452999 + 0.733332992 -0.486614972 0.526288927 0.697298944 -0.773108006 + 0.866666973 -0.526382208 0.403458178 0.748427212 -0.63913399 + 1 -0.567517817 0.272375911 0.777003765 -0.541176975 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.102447025 0.000684403232 -0.994738221 -0.435236007 + 0.133332998 0.308040023 -0.157909021 -0.93817699 -0.459434003 + 0.200000003 -0.377420783 -0.64490366 0.664569616 -0.107049003 + 0.266667008 0.00950588658 -0.256012917 0.966626644 -0.552367985 + 0.333332986 0.0983483642 -0.0676388741 0.992850721 -0.230994999 + 0.366667002 0.959354997 0.145549998 0.241770983 -0.157276005 + 0.466666996 0.974963665 0.197324932 -0.102511965 -0.639961004 + 0.600000024 -0.492166013 -0.712090015 0.500699937 -0.440185964 + 0.733332992 0.089353919 -0.252485067 -0.963466227 -0.485293001 + 0.866666973 0.0219165049 -0.117616035 -0.992817283 -0.423407972 + 1 0.102447025 0.000684285187 -0.994738221 -0.435236007 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.148909926 -0.975029528 -0.164751947 -0.224198982 + 0.133332998 0.495936155 -0.857108176 -0.139330029 -0.34395501 + 0.200000003 0.883223832 -0.381265938 -0.273041934 -0.575830996 + 0.266667008 0.889931977 0.0775557011 -0.449450999 -0.548970997 + 0.366667002 0.966361701 0.15771094 -0.203155935 -0.524948001 + 0.466666996 0.293033004 0.611865997 0.73467797 -0.621650994 + 0.600000024 0.567360997 0.822639048 0.0369668007 -1.18369997 + 0.733332992 -0.846080959 0.485154986 -0.220842987 -0.257149011 + 0.866666973 -0.538887203 -0.835229278 0.10951104 -0.304657012 + 1 0.148909926 -0.975029528 -0.164751947 -0.224198982 +endnode +doneanim plreach a_dfa2_coat + +#MAXANIM ASCII +newanim plparryl a_dfa2_coat + length 1 + transtime 0.400000006 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 18 + 0 0.000558661995 -0.031260401 1.00031996 + 0.0666666999 0.00718321977 -0.0433625989 0.995276988 + 0.133332998 0.0150458999 -0.0736182034 0.989287019 + 0.200000003 0.0161869004 -0.109174997 0.991308987 + 0.266667008 0.0157306008 -0.125810996 1.02418995 + 0.300000012 0.0128082 -0.128896996 1.06151998 + 0.333332986 0.0107773002 -0.128992006 1.08729005 + 0.366667002 0.0102664996 -0.117316999 1.10355997 + 0.400000006 0.00975552015 -0.095437102 1.09666002 + 0.433333009 0.00924457982 -0.0866511017 1.05963004 + 0.533333004 0.00658771023 -0.0817015991 0.939482987 + 0.600000024 0.00592349004 -0.0824700966 0.909444988 + 0.666666985 0.00566904992 -0.0826501995 0.897885978 + 0.733332992 0.00464701978 -0.0718716979 0.906207979 + 0.800000012 0.00362496008 -0.059573099 0.92513001 + 0.866666973 0.00151691004 -0.0429316014 0.968679011 + 0.93333298 0.000814193976 -0.0343726985 0.991882026 + 1 0.000558661995 -0.031260401 1.00031996 + orientationkey 9 + 0 0.916262209 0.0597089194 0.396104097 -0.211062998 + 0.0666666999 0.919154942 0.0601537973 0.389275938 -0.207252994 + 0.200000003 0.93441385 0.0625838935 0.350647926 -0.188392997 + 0.333332986 0.867724657 -0.327031851 0.374304831 -0.202961996 + 0.533333004 0.739397824 0.503342927 -0.447142869 -0.283098012 + 0.600000024 0.677509964 0.546015918 -0.492794931 -0.315640002 + 0.666666985 0.626973808 0.599316895 -0.497717887 -0.34146598 + 0.93333298 0.946912944 0.154119968 0.282139957 -0.206576005 + 1 0.916262209 0.0597088151 0.396104097 -0.211062983 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.847584069 0.100689016 -0.521021068 -0.208508998 + 0.0666666999 0.834647238 0.102051035 -0.541248202 -0.200860992 + 0.133332998 0.785589218 0.106350034 -0.609540224 -0.178725019 + 0.200000003 0.769285262 0.107527025 -0.629792154 -0.173069984 + 0.333332986 -0.718961775 -0.168695942 0.674266756 -0.322685003 + 0.400000006 -0.711625695 -0.121444941 0.691982627 -0.424974024 + 0.466666996 0.679922104 0.673104107 -0.290924072 -0.257626981 + 0.533333004 0.725553155 0.536010146 -0.431585133 -0.460788995 + 0.600000024 0.730577588 0.506938756 -0.457459778 -0.543434978 + 0.666666985 0.731742144 0.498947084 -0.464333117 -0.571127057 + 0.733332992 0.735177159 0.492120117 -0.466189146 -0.55211699 + 0.800000012 0.745721161 0.470370084 -0.471860111 -0.499634027 + 0.93333298 0.830928624 0.211173892 -0.514745772 -0.247274995 + 1 0.847584069 0.100689016 -0.521021068 -0.208508998 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 19 + 0 -0.683467686 -0.66054672 0.310724884 -0.705561996 + 0.0666666999 -0.572040915 -0.662550926 0.483523995 -0.731806993 + 0.133332998 -0.57595998 -0.65416801 0.490238994 -0.762190938 + 0.200000003 -0.605373085 -0.62964803 0.486895055 -0.771151006 + 0.266667008 -0.730258882 -0.62042588 0.28599593 -1.27540004 + 0.300000012 -0.775710881 -0.59005487 0.223847955 -1.53688002 + 0.333332986 -0.798008025 -0.575603008 0.178506002 -1.79424 + 0.366667002 -0.82413578 -0.538147807 0.176626936 -1.83889008 + 0.400000006 -0.823342979 -0.546460986 0.153254002 -1.90203011 + 0.433333009 -0.781134009 -0.445361972 0.437586963 -0.789672077 + 0.5 -0.612543106 -0.0848469138 0.785870194 -0.732640088 + 0.533333004 -0.655136824 -0.0737414882 0.751902878 -0.883850992 + 0.600000024 -0.693246961 -0.0545337908 0.71863395 -1.05602002 + 0.666666985 -0.70282191 -0.0526483841 0.709414899 -1.13250005 + 0.733332992 -0.693261862 -0.0679329857 0.717476904 -1.06368005 + 0.800000012 -0.674632967 -0.0924027935 0.732346952 -0.94837898 + 0.866666973 -0.650860965 -0.168209985 0.740327954 -0.671061993 + 0.93333298 -0.578583956 -0.52174294 0.626916945 -0.676909983 + 1 -0.683467925 -0.660545945 0.310725957 -0.705563009 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 19 + 0 -1 0 0 -2.10484004 + 0.0666666999 -0.997880757 0.0110795964 -0.0641190857 -2.17523003 + 0.133332998 -0.997935951 0.0125754988 -0.062973395 -2.22710991 + 0.200000003 -0.997945011 0.0128293987 -0.0627790987 -2.23604989 + 0.266667008 -0.997941136 0.0127199022 -0.062862806 -2.23218989 + 0.300000012 -0.997870684 0.0108163971 -0.0643204749 -2.16623998 + 0.333332986 -0.997749627 0.00785400718 -0.0665878803 -2.06805992 + 0.366667002 -0.997737527 0.00757527677 -0.0668010712 -2.0590899 + 0.400000006 -0.997728765 0.00737529853 -0.066954188 -2.05270004 + 0.433333009 -0.997964919 0.013401499 -0.0623412989 -2.25633001 + 0.5 -0.996330678 -0.0152297951 -0.0842212811 -1.47713006 + 0.533333004 -0.995240092 -0.0274270009 -0.093514502 -1.26524007 + 0.600000024 -0.992238343 -0.0526319183 -0.112663038 -0.963586986 + 0.666666985 -0.990038216 -0.0672231168 -0.123715028 -0.843239009 + 0.733332992 -0.992365181 -0.0517155081 -0.111968026 -0.972215056 + 0.800000012 -0.99432373 -0.0360767879 -0.100093961 -1.14458001 + 0.866666973 -0.997009814 -0.00583722908 -0.077054292 -1.68302 + 0.93333298 -0.997802913 0.00911632925 -0.065621689 -2.10923004 + 1 -1 0 0 -2.10484004 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 19 + 0 -0.137816951 -0.0161126945 0.990326643 -5.07614994 + 0.0666666999 -0.167154968 0.00558534916 0.985914826 -5.21958017 + 0.133332998 -0.197281048 -0.00750315236 0.980318248 -5.16425991 + 0.200000003 -0.225596935 -0.0132405972 0.97413075 -5.14630985 + 0.266667008 -0.366348088 0.185532048 0.911793232 -4.87582016 + 0.300000012 -0.415486008 0.209557995 0.885130942 -4.72798014 + 0.333332986 -0.434664816 0.204281926 0.877117634 -4.59286022 + 0.366667002 -0.460869074 0.207634017 0.862837076 -4.60956001 + 0.400000006 -0.438198775 0.215685874 0.872617602 -4.58931017 + 0.433333009 0.0976124406 -0.143385053 0.984841406 -5.25201988 + 0.5 -0.474144012 0.0489057004 -0.879087985 -1.77722001 + 0.533333004 -0.317191929 -0.044775594 -0.947303772 -2.0418601 + 0.600000024 -0.377489954 0.048076991 -0.924764812 -2.2646699 + 0.666666985 -0.397994816 0.0779664591 -0.91406858 -2.3592 + 0.733332992 -0.364952981 0.0299256966 -0.930544853 -2.24888992 + 0.800000012 -0.4565081 0.0380979031 -0.888903201 -2.00769997 + 0.866666973 -0.300475121 -0.0669301227 -0.951438427 -1.33423007 + 0.93333298 -0.122284949 0.239921898 0.963059664 -5.24789 + 1 -0.137816951 -0.016112294 0.990326643 -5.07614994 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 19 + 0 -0.671964645 0.551239729 -0.494568765 -0.419777989 + 0.0666666999 -0.568235099 0.630524158 -0.528723121 -0.377501994 + 0.133332998 -0.0461647995 0.826194048 -0.561491072 -0.310375035 + 0.200000003 0.124966994 0.835297942 -0.535406947 -0.312514007 + 0.266667008 -0.112933949 0.734685659 -0.668941677 -0.271055013 + 0.300000012 -0.250844002 0.644855022 -0.721969008 -0.260692 + 0.333332986 -0.387338907 0.529997885 -0.754367828 -0.258536994 + 0.366667002 -0.493197948 0.594152927 -0.635403872 -0.280221999 + 0.400000006 -0.570741117 0.634449184 -0.521276116 -0.308815986 + 0.433333009 -0.427981049 0.902136207 0.0546118058 -0.718074024 + 0.466666996 -0.358631998 0.910245061 0.20697102 -1.20518994 + 0.533333004 -0.332841963 0.907200873 0.257298976 -1.53750002 + 0.600000024 -0.325778991 0.905897141 0.270589024 -1.65267015 + 0.666666985 -0.323482126 0.905431271 0.274870098 -1.69278014 + 0.733332992 -0.331062108 0.905772209 0.264527053 -1.62126994 + 0.800000012 -0.354738921 0.905866683 0.231442943 -1.42411995 + 0.866666973 -0.442528039 0.891500056 0.0969363004 -0.94313693 + 0.93333298 -0.612706423 0.747216463 -0.257407188 -0.518799007 + 1 -0.671964109 0.551240146 -0.494569093 -0.41977796 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 19 + 0 -0.980958045 -0.0820397064 -0.17604202 -0.860508025 + 0.0666666999 -0.983632803 -0.0819348842 -0.160477966 -0.932663023 + 0.133332998 -0.988802612 -0.0819107592 -0.124739945 -1.14788997 + 0.200000003 -0.989732385 -0.0818921328 -0.117147051 -1.20545006 + 0.266667008 -0.990883946 -0.0818629935 -0.106992982 -1.29079008 + 0.300000012 -0.991377115 -0.0818468109 -0.102335013 -1.33350003 + 0.333332986 -0.991824329 -0.081829831 -0.0979203358 -1.37623 + 0.366667002 -0.991910398 -0.0804199353 -0.0982159451 -1.40854001 + 0.400000006 -0.991991341 -0.0790626332 -0.0985001326 -1.44085002 + 0.433333009 -0.989841759 -0.0669283792 -0.12543495 -1.47579014 + 0.466666996 -0.986954689 -0.055201482 -0.151238948 -1.51156998 + 0.533333004 -0.984664977 -0.0476062 -0.167834982 -1.53586996 + 0.600000024 -0.983813286 -0.0450282097 -0.173447043 -1.54432011 + 0.666666985 -0.983509898 -0.0441361964 -0.175385982 -1.54726994 + 0.733332992 -0.983452857 -0.0453082994 -0.175407007 -1.51293993 + 0.800000012 -0.983275354 -0.048794318 -0.175467074 -1.41784 + 0.866666973 -0.982653677 -0.0595179833 -0.175639942 -1.18014002 + 0.93333298 -0.981564462 -0.0748819336 -0.17585209 -0.942604005 + 1 -0.980958045 -0.0820397064 -0.17604202 -0.860508025 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 19 + 0 -0.474387944 -0.330870956 -0.815769851 -0.691182971 + 0.0666666999 -0.462434888 -0.300023973 -0.834349811 -0.671137989 + 0.133332998 -0.418592036 -0.191915035 -0.887665093 -0.617051005 + 0.200000003 -0.404334992 -0.159402996 -0.90061307 -0.604405999 + 0.266667008 -0.442697823 -0.202780917 -0.873440623 -0.553994 + 0.300000012 -0.463702053 -0.227074042 -0.856398165 -0.529704988 + 0.333332986 -0.48594287 -0.25326395 -0.83649081 -0.506147027 + 0.366667002 -0.478213996 -0.269600987 -0.835838914 -0.487466991 + 0.400000006 -0.469710886 -0.287107915 -0.834829748 -0.468953013 + 0.433333009 -0.224554047 -0.254846066 -0.940547168 -0.456129044 + 0.466666996 0.0330345966 -0.205001965 -0.978203893 -0.475799978 + 0.533333004 -0.187278956 0.168006971 0.967832744 -5.77783012 + 0.600000024 -0.235224009 0.155385002 0.959440053 -5.76501989 + 0.666666985 -0.251218915 0.151049942 0.956071615 -5.76029015 + 0.733332992 -0.207719997 0.165721998 0.964048028 -5.7608099 + 0.800000012 -0.0856986269 0.204231068 0.975164294 -5.75660992 + 0.866666973 -0.198985025 -0.279530019 -0.939291179 -0.571268082 + 0.93333298 -0.416358083 -0.322484076 -0.850088179 -0.655585945 + 1 -0.474387944 -0.330870956 -0.815769851 -0.691182971 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0.975248516 + period 0.00163298741 + tightness -0.184761181 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.955248415 -0.275828123 -0.106861047 -0.0861001089 + 0.200000003 -0.955248415 -0.275828123 -0.106861047 -0.0860999972 + 0.333332986 -0.993618786 -0.107807979 -0.0331541933 -0.226218015 + 0.400000006 -0.991843104 -0.121330015 -0.0390678048 -0.200083002 + 0.600000024 0.328328848 -0.864320517 -0.380985796 -0.0269562006 + 0.666666985 0.833848 -0.501748025 -0.230101004 -0.0461295992 + 0.733332992 0.695532084 -0.655148029 -0.294985026 -0.0354383998 + 0.93333298 -0.957127273 -0.270205051 -0.104387023 -0.087925598 + 1 -0.955248356 -0.275828093 -0.106862031 -0.0860999078 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 18 + 0 -0.976382196 -0.155969009 -0.149504036 -1.14497995 + 0.0666666999 -0.975229263 -0.16095005 -0.151733026 -1.16015005 + 0.133332998 -0.974885523 -0.161810935 -0.153020918 -1.17984998 + 0.200000003 -0.976525724 -0.15326196 -0.151354954 -1.17708004 + 0.266667008 -0.974375308 -0.129386023 -0.183989048 -1.02110004 + 0.300000012 -0.970197499 -0.111009061 -0.215392113 -0.882925928 + 0.333332986 -0.963732481 -0.0907147527 -0.250979125 -0.769743919 + 0.366667002 -0.966378212 -0.113888025 -0.230527043 -0.746936023 + 0.400000006 -0.98113203 -0.142581999 -0.130576998 -0.796190917 + 0.433333009 -0.988145769 -0.153257966 -0.00894050859 -0.947584987 + 0.533333004 -0.977394283 -0.166637048 0.130125031 -1.39007998 + 0.600000024 -0.977348924 -0.168942988 0.12746498 -1.53138006 + 0.666666985 -0.974309206 -0.183361024 0.130768016 -1.59440017 + 0.733332992 -0.981134057 -0.175392002 0.0813241974 -1.53657997 + 0.800000012 -0.985011995 -0.170658007 0.0250432007 -1.43542004 + 0.866666973 -0.985065103 -0.168235019 -0.036657203 -1.27914 + 0.93333298 -0.979543686 -0.163269967 -0.117630973 -1.17182004 + 1 -0.976382196 -0.155969009 -0.149504036 -1.14497995 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 18 + 0 0.999381304 -0.0252642091 0.0244680084 -1.03848004 + 0.0666666999 0.999378204 -0.0253623053 0.0244932063 -1.03562999 + 0.133332998 0.999341846 -0.0264917947 0.0247811954 -1.00381994 + 0.200000003 0.999240577 -0.0294347871 0.0255320892 -0.928812981 + 0.266667008 0.998986483 -0.0358813182 0.0271765143 -0.796338022 + 0.300000012 0.998441637 -0.0470426828 0.0300214887 -0.636134028 + 0.333332986 0.997665226 -0.0596613176 0.0332351103 -0.516825914 + 0.366667002 0.996891141 -0.0701368079 0.0359007046 -0.44670701 + 0.400000006 0.997867644 -0.0566251762 0.0324621871 -0.541354001 + 0.433333009 0.99878782 -0.0402756929 0.028296994 -0.724884987 + 0.533333004 0.999450147 -0.0229953006 0.0238888022 -1.10856998 + 0.600000024 0.999484658 -0.0217821933 0.0235790908 -1.14962995 + 0.666666985 0.999495625 -0.0213849917 0.0234777909 -1.16365016 + 0.733332992 0.999510765 -0.0208263937 0.0233350955 -1.18392003 + 0.800000012 0.999510467 -0.0208374094 0.0233381111 -1.18350995 + 0.866666973 0.999446511 -0.0231184904 0.0239203908 -1.10455 + 0.93333298 0.999407887 -0.0244088955 0.0242496971 -1.06394005 + 1 0.999381304 -0.0252642091 0.0244680084 -1.03848004 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 18 + 0 -0.15053001 0.977936029 0.144850999 -0.140937999 + 0.0666666999 -0.00977256615 0.977321565 0.211534932 -0.144602001 + 0.133332998 0.355661213 0.895693421 0.266905159 -0.158455983 + 0.200000003 0.691989839 0.691064835 0.208756953 -0.197218016 + 0.266667008 0.815339327 0.57142216 0.0932658315 -0.229687005 + 0.300000012 0.888284326 0.458927155 0.0183543079 -0.275774032 + 0.333332986 0.918422759 0.394929886 -0.0230225939 -0.311039001 + 0.366667002 0.929959118 0.364470035 0.0483494066 -0.336742014 + 0.400000006 0.879009306 0.476786196 0.00419662148 -0.290165007 + 0.433333009 0.738360763 0.661818802 -0.129688948 -0.248723 + 0.533333004 0.394552946 0.913670838 -0.097639896 -0.239813 + 0.600000024 0.461763859 0.886530697 0.0289382897 -0.246043012 + 0.666666985 0.48697111 0.866387188 0.110600032 -0.253417999 + 0.733332992 0.370940089 0.921173334 0.117657043 -0.217813015 + 0.800000012 0.180498034 0.972166121 0.149377018 -0.184662998 + 0.866666973 0.0301966872 0.993109584 0.11323195 -0.162805006 + 0.93333298 -0.135389015 0.976164162 0.169627026 -0.146508008 + 1 -0.15053001 0.977936029 0.144850999 -0.140937999 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 18 + 0 -0.163303003 0.644846082 0.746663034 -0.670683026 + 0.0666666999 -0.208975941 0.647742808 0.732637882 -0.632942021 + 0.133332998 -0.31399098 0.639527917 0.701721966 -0.589641988 + 0.200000003 -0.412387103 0.61435014 0.672689199 -0.58535701 + 0.266667008 -0.278906971 0.694268942 0.663476884 -0.595490992 + 0.300000012 -0.147893026 0.712422073 0.685990095 -0.613206983 + 0.333332986 -0.0272970889 0.723865688 0.689400673 -0.641941011 + 0.366667002 0.0619774051 0.630086064 0.77404803 -0.647961974 + 0.400000006 0.121726982 0.550889969 0.825652957 -0.677492023 + 0.433333009 0.0250515062 0.518863142 0.854490161 -0.645094991 + 0.533333004 -0.300941855 0.329698861 0.894836664 -0.602110028 + 0.600000024 -0.43963784 0.223298937 0.869974792 -0.633097053 + 0.666666985 -0.468660921 0.144576967 0.871466815 -0.652068019 + 0.733332992 -0.460745037 0.269689023 0.845565975 -0.632393956 + 0.800000012 -0.389371008 0.407705009 0.825933933 -0.612146974 + 0.866666973 -0.242493138 0.51853323 0.819951475 -0.63656801 + 0.93333298 -0.16010797 0.616737902 0.770713866 -0.657391012 + 1 -0.163303003 0.644846082 0.746663034 -0.670683026 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 18 + 0 1 0 0 -0.880254984 + 0.0666666999 1 0 0 -0.924377024 + 0.133332998 1 0 0 -1.00399005 + 0.200000003 1 0 0 -1.05736005 + 0.266667008 1 0 0 -0.975390971 + 0.300000012 1 0 0 -0.836395025 + 0.333332986 1 0 2.62132005e-007 -0.723114014 + 0.366667002 1 0 0 -0.600030065 + 0.400000006 1 0 -1.42025996e-007 -0.559920967 + 0.433333009 1 0 0 -0.705950022 + 0.533333004 1 0 0 -1.09333003 + 0.600000024 1 0 0 -1.17326999 + 0.666666985 1 0 0 -1.18939996 + 0.733332992 1 0 0 -1.18049002 + 0.800000012 1 0 0 -1.13004017 + 0.866666973 1 0 0 -0.981541991 + 0.93333298 1 0 1.44080985e-007 -0.906009018 + 1 1 0 -1.89595994e-007 -0.880254984 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 18 + 0 -0.798257887 -0.596262932 0.0851755962 -0.863412023 + 0.0666666999 -0.811085761 -0.570796847 0.127791956 -0.885659933 + 0.133332998 -0.825644791 -0.532258809 0.187112957 -0.913977981 + 0.200000003 -0.830704689 -0.510253847 0.222644925 -0.910363019 + 0.266667008 -0.815285206 -0.531665087 0.22943905 -0.847503066 + 0.300000012 -0.786836386 -0.567859352 0.24171114 -0.76324594 + 0.333332986 -0.756931722 -0.606578827 0.243138909 -0.702477992 + 0.366667002 -0.727157116 -0.628344119 0.276453018 -0.65554595 + 0.400000006 -0.726511717 -0.638949752 0.252831876 -0.659048975 + 0.433333009 -0.772311091 -0.58385098 0.250307024 -0.752826989 + 0.533333004 -0.838270783 -0.484326839 0.250458896 -1.02380002 + 0.600000024 -0.847313225 -0.465475112 0.255721062 -1.07535005 + 0.666666985 -0.852688015 -0.456216007 0.254538983 -1.08538997 + 0.733332992 -0.85137403 -0.475086033 0.222386017 -1.07016003 + 0.800000012 -0.844358981 -0.500232995 0.191898018 -1.03518999 + 0.866666973 -0.825052083 -0.546609044 0.143205017 -0.93382895 + 0.93333298 -0.806640983 -0.582207024 0.101810001 -0.884072006 + 1 -0.798257887 -0.596262932 0.0851754993 -0.863412023 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.0941661 0.979700089 -0.17697601 -0.0910393 + 0.200000003 0.142822981 0.944981933 -0.29429698 -0.0692422017 + 0.233333007 0.0921961814 0.977269828 -0.190901965 -0.0881733 + 0.333332986 0.0191310011 0.998950064 -0.0416262001 -0.148533002 + 0.666666985 -0.304273963 -0.747211874 -0.590839863 -0.0891085938 + 1 0.0941668004 0.979700029 -0.176975995 -0.0910393 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.287651986 -0.89329499 0.345369995 -0.134494007 + 0.233333007 0.0471950024 -0.934636056 0.352460027 -0.129746005 + 0.333332986 0.28765291 -0.893294692 0.345369905 -0.134492993 + 0.5 0.468613148 -0.80572623 0.362225085 -0.128701001 + 0.666666985 0.44253704 -0.773404062 0.453880072 -0.10673701 + 1 0.28765291 -0.893294692 0.345369905 -0.134492993 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.0817665011 0.977887988 0.192481995 -0.0516389012 + 0.233333007 -0.963138044 0.268811017 0.0102813011 -0.154201999 + 0.333332986 -0.0817663968 0.977887988 0.192481995 -0.0516389012 + 0.5 0.834172308 -0.537635207 0.122902043 -0.0423781015 + 0.666666985 -0.340985984 -0.940046906 -0.00635109888 -0.0899915025 + 1 -0.0817654058 0.977888048 0.192482024 -0.0516389012 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.70361352 -0.708853543 0.0495441705 -0.114386991 + 0.200000003 0.61173135 -0.791062474 0.00223094109 -0.132298008 + 0.333332986 0.934061408 -0.272357106 0.230978087 -0.0822148025 + 0.666666985 0.71841222 -0.691099226 0.0791565403 -0.103471003 + 1 0.70361352 -0.708853543 0.0495442674 -0.114386991 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.0340115912 0.9445979 0.326462954 -0.286792994 + 0.333332986 -0.0340114944 0.9445979 0.326462954 -0.286794007 + 0.666666985 0.649685085 0.413448006 0.637942016 -0.073206 + 1 -0.0340113975 0.9445979 0.326462984 -0.286794007 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.96620518 -0.194570035 -0.169086009 -0.540560007 + 0.333332986 0.96620518 -0.194570035 -0.169086009 -0.540560007 + 0.666666985 0.991470695 -0.102727972 -0.0802047774 -0.711651027 + 1 0.96620518 -0.194570035 -0.169086009 -0.540560007 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.290140003 -0.341154009 -0.894110024 -0.991366029 + 0.200000003 -0.295868039 -0.360201031 -0.884713113 -1.00327003 + 0.233333007 -0.273436993 -0.353251994 -0.89467603 -0.986572921 + 0.333332986 -0.276717126 -0.289769083 -0.916221321 -0.964660943 + 0.666666985 -0.308496892 -0.354978859 -0.882507622 -1.01022005 + 1 -0.290140003 -0.341154009 -0.894110024 -0.991366029 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.643578053 0.764970124 -0.0250597037 -0.365325004 + 0.233333007 0.520258188 0.851795256 -0.0614516176 -0.375741959 + 0.333332986 0.643578053 0.764970124 -0.0250598025 -0.365325004 + 0.5 0.605062008 0.794368982 -0.0536455959 -0.258915991 + 0.666666985 0.277460039 0.949197173 -0.148461014 -0.18171899 + 1 0.643578053 0.764970183 -0.0250592027 -0.365325004 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.529156029 0.423200071 -0.735456049 -0.0794304088 + 0.233333007 -0.188905075 0.847878277 -0.495396137 -0.124174006 + 0.333332986 0.529155195 0.42319718 -0.735458314 -0.0794304982 + 0.5 0.24390693 -0.368313879 -0.897136748 -0.0640318021 + 0.666666985 -0.644241989 -0.192796007 -0.740122974 -0.0810699984 + 1 0.529155135 0.423199117 -0.735457242 -0.0794304013 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.567517817 0.272375911 0.777003765 -0.541176975 + 0.200000003 -0.567280054 0.232841 0.789923072 -0.531235993 + 0.333332986 -0.567581058 0.360826015 0.740038037 -0.570640028 + 0.666666985 -0.57941097 0.258834004 0.772844017 -0.544046998 + 1 -0.567517817 0.272375911 0.777003765 -0.541176975 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.102447025 0.000684304221 -0.994738221 -0.435236007 + 0.233333007 0.136854023 0.00994730275 -0.990541279 -0.440319031 + 0.333332986 0.102447025 0.000684257189 -0.994738221 -0.435236007 + 0.666666985 0.196660072 -0.283034086 -0.938731313 -0.462110043 + 0.833333015 0.100219041 -0.157905072 -0.982355416 -0.434969008 + 1 0.102447025 0.000684531173 -0.994738221 -0.435236007 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.148909926 -0.975029528 -0.164751947 -0.224198982 + 0.233333007 -0.317587107 -0.940904438 -0.117632054 -0.23512201 + 0.333332986 0.148909926 -0.975029528 -0.164751947 -0.224198982 + 0.666666985 0.393988103 -0.907276154 -0.14704901 -0.32137996 + 0.833333015 -0.138229012 -0.982521176 -0.124679014 -0.250045002 + 1 0.148909926 -0.975029528 -0.164751947 -0.224198982 +endnode +doneanim plparryl a_dfa2_coat + +#MAXANIM ASCII +newanim plparryr a_dfa2_coat + length 1 + transtime 0.400000006 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 17 + 0 0.000558661995 -0.031260401 1.00031996 + 0.0666666999 0.00146679999 -0.0563156009 1.00357997 + 0.133332998 -0.0092073204 -0.0807145014 1.01245999 + 0.200000003 -0.0209062994 -0.105113 1.03242004 + 0.266667008 -0.032543201 -0.11039 1.07299995 + 0.333332986 -0.0340549015 -0.101915002 1.11357999 + 0.366667002 -0.0312722996 -0.0860783979 1.11587 + 0.400000006 -0.0279498007 -0.0702413023 1.10369003 + 0.466666996 -0.0200740993 -0.0605642982 1.04776001 + 0.533333004 0.000985727995 -0.0559737012 0.984467983 + 0.600000024 0.0122702001 -0.0538896993 0.960653007 + 0.666666985 0.0173007995 -0.0531318001 0.951994002 + 0.733332992 0.0183067992 -0.0519381016 0.954804003 + 0.800000012 0.0188098997 -0.0519385003 0.954804003 + 0.866666973 0.0157916006 -0.0429883003 0.975881994 + 0.93333298 0.0105411997 -0.034038201 0.996960998 + 1 0.000558661995 -0.031260401 1.00031996 + orientationkey 12 + 0 0.916262209 0.0597089194 0.396104097 -0.211062998 + 0.0666666999 0.901381969 0.0682783946 0.427608013 -0.195195988 + 0.200000003 0.609449744 0.335720837 0.718235731 -0.327479988 + 0.266667008 0.517434955 0.38815695 0.762623906 -0.407905012 + 0.366667002 0.490374058 0.401959091 0.773280144 -0.43907699 + 0.466666996 0.600706995 0.377328962 0.704821944 -0.392872989 + 0.533333004 0.932152212 0.207309037 0.296842068 -0.316330999 + 0.666666985 0.812165797 -0.201925948 -0.547368824 -0.499899 + 0.733332992 0.749811232 -0.239343092 -0.61684525 -0.57168901 + 0.800000012 0.795754671 -0.225396916 -0.562112749 -0.497420013 + 0.93333298 0.994175076 -0.0355914012 0.10173101 -0.228865981 + 1 0.916262209 0.0597088151 0.396104097 -0.211062983 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.847584069 0.100689016 -0.521021068 -0.208508998 + 0.0666666999 0.840323865 0.0113485977 -0.541965902 -0.198527992 + 0.133332998 0.759133935 -0.298733979 -0.578336954 -0.180557996 + 0.200000003 0.720142901 -0.38436693 -0.577629864 -0.179294005 + 0.300000012 -0.24361904 0.740931094 0.625836134 -0.262534022 + 0.366667002 -0.307435125 0.711268246 0.632124305 -0.365841985 + 0.433333009 -0.220030919 0.822106838 0.525096893 -0.288300008 + 0.533333004 0.654941797 -0.190912977 -0.731165826 -0.392612994 + 0.666666985 0.555978179 0.0700456202 -0.828240216 -0.586871028 + 0.733332992 0.552535057 0.026758004 -0.833060026 -0.669346929 + 0.800000012 0.572077215 0.0311963111 -0.819606304 -0.594443977 + 0.93333298 0.809286773 0.0912511647 -0.580282807 -0.234254017 + 1 0.847584069 0.100689016 -0.521021068 -0.208508998 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.683468163 -0.660546184 0.310725063 -0.705563009 + 0.0666666999 -0.559559047 -0.608452082 0.562743068 -0.678005993 + 0.133332998 -0.400066912 -0.516622901 0.756998837 -0.468546987 + 0.200000003 0.306582123 0.233856067 0.922669351 -0.230094999 + 0.266667008 0.221712902 0.191591904 0.956104577 -0.338829994 + 0.333332986 0.225719109 0.138183057 0.964342415 -0.386608988 + 0.366667002 0.0970604792 0.0874315798 0.991430759 -0.441464007 + 0.400000006 0.0542723201 0.0922972262 0.99425137 -0.441826999 + 0.466666996 0.84672904 0.0780168027 0.526273012 -0.43937102 + 0.533333004 0.982523561 -0.0716106668 -0.171811923 -0.725377977 + 0.600000024 0.301822066 -0.729799151 -0.613430202 -1.17833996 + 0.666666985 -0.0982886404 -0.801325321 -0.590099216 -1.31369996 + 0.733332992 -0.281500071 -0.854061186 -0.437421083 -1.19841003 + 0.800000012 -0.32968092 -0.932187736 -0.149453968 -1.01125002 + 0.866666973 -0.284374028 -0.91426605 0.288529038 -0.938826084 + 0.93333298 -0.526728928 -0.741748929 0.415168911 -0.772132039 + 1 -0.683468163 -0.660546184 0.310725063 -0.705563009 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -1 0 0 -2.10484004 + 0.0666666999 -0.997937083 0.0126063004 -0.0629500002 -2.22818995 + 0.133332998 -0.997945726 0.0128497966 -0.062763378 -2.23676991 + 0.200000003 -0.99739641 0.000632334268 -0.0721114278 -1.8513099 + 0.266667008 -0.996457756 -0.0136100976 -0.0829860792 -1.50969994 + 0.333332986 -0.996241868 -0.016331099 -0.0850612894 -1.45563996 + 0.366667002 -0.995677173 -0.0228472017 -0.0900278091 -1.33841002 + 0.400000006 -0.995454848 -0.0252199974 -0.0918345898 -1.29961991 + 0.466666996 -0.997309327 -0.000925939356 -0.0733024329 -1.80861998 + 0.533333004 -0.998284638 0.0268622898 -0.0520211831 -2.78518009 + 0.600000024 -0.998285592 0.026933888 -0.051965978 -2.78820992 + 0.666666985 -0.998271465 0.0259081107 -0.0527532212 -2.74496007 + 0.733332992 -0.998277545 0.0263351873 -0.0524255745 -2.76292992 + 0.800000012 -0.998274446 0.026117811 -0.0525923222 -2.75377011 + 0.866666973 -0.998073518 0.0168269947 -0.0597168729 -2.38191009 + 0.93333298 -0.997954428 0.0130989058 -0.0625727251 -2.24557996 + 1 -1 0 0 -2.10484004 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.137816951 -0.0161125958 0.990326643 -5.07614994 + 0.0666666999 -0.270423919 0.291413903 0.917577684 -5.24306011 + 0.133332998 -0.0798135027 0.37748903 0.922568083 -5.25024986 + 0.200000003 -0.428678036 0.0493760072 -0.90210706 -1.53258002 + 0.266667008 -0.511201143 0.110646032 -0.852309167 -2.09130001 + 0.333332986 -0.431653082 0.0759426132 -0.898837209 -2.24328995 + 0.366667002 -0.546834171 0.132410035 -0.826704323 -2.3624301 + 0.400000006 -0.619838834 0.167117953 -0.766727746 -2.38395 + 0.466666996 -0.671737015 0.189828008 -0.716054976 -1.95580995 + 0.533333004 -0.445345104 0.16708304 -0.879631162 -1.05879009 + 0.600000024 -0.226904958 -0.0522768907 -0.972512841 -1.57381999 + 0.666666985 -0.0338031873 0.201724961 0.978858709 -4.56666994 + 0.733332992 -0.172278062 0.315567106 0.933133245 -4.70228004 + 0.800000012 -0.209757 0.40674001 0.88913697 -4.95524979 + 0.866666973 -0.0112963058 -0.262384117 -0.964897394 -1.18473005 + 0.93333298 -0.151085973 0.102022976 0.983241737 -5.21116018 + 1 -0.137816951 -0.0161127951 0.990326643 -5.07614994 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 -0.671964645 0.551239729 -0.494568765 -0.419777989 + 0.0666666999 -0.640413165 0.619716108 -0.453677118 -0.472014993 + 0.133332998 -0.558555961 0.751366913 -0.351372957 -0.669082999 + 0.200000003 -0.450452805 0.862830639 -0.229380906 -1.23613 + 0.233333007 -0.421885997 0.884594083 -0.198760018 -1.52653003 + 0.266667008 -0.414973974 0.889465928 -0.191433981 -1.61234999 + 0.300000012 -0.408562958 0.893853903 -0.184665978 -1.69827986 + 0.333332986 -0.406051964 0.895538807 -0.182021976 -1.73369992 + 0.366667002 -0.403608173 0.897160351 -0.179454073 -1.76912987 + 0.400000006 -0.406524986 0.895199955 -0.182631984 -1.75541997 + 0.433333009 -0.409465879 0.893196762 -0.185841948 -1.74172997 + 0.466666996 -0.467055172 0.848150313 -0.250001103 -1.49963999 + 0.5 -0.534794927 0.778195858 -0.329249978 -1.26978004 + 0.533333004 -0.612724304 0.664481282 -0.427824199 -1.06037998 + 0.600000024 -0.672953844 0.531965792 -0.513950884 -0.925346911 + 0.666666985 -0.683086991 0.502426922 -0.530056 -0.903868914 + 0.733332992 -0.682812035 0.50367403 -0.529226065 -0.879606009 + 0.800000012 -0.681957304 0.507488191 -0.526678264 -0.812388957 + 0.866666973 -0.676750064 0.529230058 -0.511786044 -0.560543001 + 0.93333298 -0.673626006 0.541219056 -0.503299057 -0.476737022 + 1 -0.671965003 0.551239073 -0.494569004 -0.41977796 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 -0.980958045 -0.0820397064 -0.17604202 -0.860508025 + 0.0666666999 -0.982199371 -0.0819098204 -0.169042066 -0.891583085 + 0.133332998 -0.985547543 -0.0818783566 -0.148296922 -0.996223986 + 0.200000003 -0.990765631 -0.0817164704 -0.108193956 -1.27655995 + 0.233333007 -0.992278039 -0.0816232041 -0.0933911055 -1.41716003 + 0.266667008 -0.992639899 -0.0815955922 -0.089488782 -1.45858014 + 0.300000012 -0.992971003 -0.0815683976 -0.0857625008 -1.50002003 + 0.333332986 -0.993099213 -0.0815570205 -0.0842757225 -1.51707995 + 0.366667002 0.993223011 0.0815457106 0.0828149095 -4.74903011 + 0.400000006 -0.992974758 -0.0830394775 -0.0842943788 -1.52941 + 0.433333009 -0.992720842 -0.0845406801 -0.0857802778 -1.52468002 + 0.466666996 -0.987072885 -0.112848982 -0.113807984 -1.44023001 + 0.5 -0.979014456 -0.143777058 -0.144426063 -1.35755002 + 0.533333004 -0.967862189 -0.177672029 -0.177976027 -1.27698004 + 0.600000024 -0.956939995 -0.205253005 -0.205273002 -1.21820998 + 0.666666985 -0.954705358 -0.210418075 -0.210385069 -1.20782006 + 0.733332992 -0.956006169 -0.205676049 -0.209164023 -1.19016993 + 0.800000012 -0.959654212 -0.191835046 -0.205580041 -1.14139998 + 0.866666973 -0.973593891 -0.128431991 -0.188732967 -0.960681975 + 0.93333298 -0.978082955 -0.102016993 -0.181510985 -0.901449978 + 1 -0.980958045 -0.0820397064 -0.17604202 -0.860508025 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 -0.474387944 -0.330870956 -0.815769851 -0.691182971 + 0.0666666999 -0.443310887 -0.32582584 -0.835052669 -0.678459942 + 0.133332998 -0.32456094 -0.30150193 -0.896524847 -0.64160198 + 0.200000003 0.0635192916 -0.195772976 -0.978589952 -0.606849015 + 0.233333007 0.258093923 -0.129015952 -0.957466662 -0.627439022 + 0.266667008 -0.31070298 0.109298989 0.944202006 -5.64511013 + 0.300000012 -0.360518098 0.0899152234 0.928408265 -5.63254976 + 0.333332986 -0.380166024 0.0820688978 0.921270072 -5.62685013 + 0.366667002 -0.399293959 0.0743173957 0.913805902 -5.62085009 + 0.400000006 -0.392818063 0.078201212 0.916285157 -5.62556982 + 0.433333009 -0.386226982 0.0821333826 0.918739796 -5.63025999 + 0.466666996 -0.245816886 0.161423936 0.955780506 -5.70690012 + 0.5 0.0607193112 -0.254358023 -0.965202153 -0.518634021 + 0.533333004 -0.160900012 -0.349862039 -0.922880113 -0.486779988 + 0.600000024 -0.332153976 -0.411469936 -0.848743916 -0.483057022 + 0.666666985 -0.361726075 -0.420909107 -0.831859231 -0.484301984 + 0.733332992 -0.369764984 -0.414981008 -0.831302941 -0.494329959 + 0.800000012 -0.390274882 -0.399539918 -0.829489827 -0.522345006 + 0.866666973 -0.449491978 -0.352261961 -0.820894897 -0.629725993 + 0.93333298 -0.464654028 -0.339469016 -0.817837059 -0.66612196 + 1 -0.474387944 -0.330870956 -0.815769851 -0.691182971 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 7.00649232e-045 + period 0.102342762 + tightness 0.133332998 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.955248356 -0.275828093 -0.106862031 -0.0860999078 + 0.200000003 -0.988879979 -0.140883997 -0.0476246029 -0.171415001 + 0.366667002 -0.978218138 -0.194944024 -0.0713165104 -0.122733995 + 0.666666985 -0.218519032 -0.895775139 -0.387087047 -0.0260921996 + 1 -0.955248356 -0.275828093 -0.106862031 -0.0860999078 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.976382196 -0.155969009 -0.149504036 -1.14497995 + 0.0666666999 -0.974861741 -0.163991958 -0.150834978 -1.10602999 + 0.133332998 -0.955462337 -0.237708107 -0.174890071 -1.11013985 + 0.200000003 -0.928026855 -0.313870966 -0.200626969 -1.09291005 + 0.266667008 -0.893056333 -0.379584163 -0.241591111 -1.06500006 + 0.333332986 -0.872270107 -0.408163071 -0.269347042 -0.982263982 + 0.366667002 -0.860581636 -0.412127823 -0.299248874 -1.00136006 + 0.400000006 -0.875708818 -0.383626938 -0.293196946 -1.04214001 + 0.466666996 -0.911437333 -0.327482164 -0.249073103 -1.19124997 + 0.533333004 -0.972537935 -0.175972983 -0.152326986 -1.33477998 + 0.600000024 -0.992210031 -0.028060304 -0.121375009 -1.40679991 + 0.666666985 -0.98597157 0.121923953 -0.113993965 -1.43744004 + 0.733332992 -0.976082563 0.187404931 -0.110191956 -1.41293001 + 0.800000012 -0.9859097 0.128630951 -0.106939971 -1.39760005 + 0.866666973 -0.993968785 0.0117152976 -0.109035976 -1.30107999 + 0.93333298 -0.98290801 -0.110136002 -0.147519007 -1.19126999 + 1 -0.976382196 -0.155969009 -0.149504036 -1.14497995 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 0.999381304 -0.0252643079 0.0244680084 -1.03848004 + 0.0666666999 0.9993487 -0.026280893 0.0247273929 -1.00961995 + 0.133332998 0.999317288 -0.0272305068 0.0249699075 -0.983966947 + 0.200000003 0.999214172 -0.0301613044 0.0257175043 -0.911872983 + 0.266667008 0.998876452 -0.0383717194 0.0278115105 -0.754281044 + 0.333332986 0.998059332 -0.05360182 0.0316923112 -0.56814599 + 0.366667002 0.998194039 -0.0513788089 0.0311263017 -0.589546025 + 0.400000006 0.998568416 -0.0446729213 0.0294178128 -0.664726019 + 0.466666996 0.999174178 -0.0312316064 0.0259906054 -0.88793999 + 0.533333004 0.999339938 -0.0265488978 0.0247957986 -1.00225997 + 0.600000024 0.999264419 -0.0287643131 0.025361212 -0.944974005 + 0.666666985 0.99902308 -0.0350182988 0.0269563012 -0.811956942 + 0.733332992 0.998856843 -0.0387997963 0.027920695 -0.747475028 + 0.800000012 0.9990623 -0.0340710059 0.0267149098 -0.829793036 + 0.866666973 0.999231517 -0.0296854842 0.0255961884 -0.922899008 + 0.93333298 0.999329329 -0.0268702097 0.0248779077 -0.993559003 + 1 0.999381304 -0.0252642091 0.0244680084 -1.03848004 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.15053001 0.977936029 0.144850999 -0.140937999 + 0.0666666999 0.101351954 0.984579623 0.142585948 -0.139322996 + 0.133332998 0.298486054 0.952373207 0.0623810105 -0.143809006 + 0.200000003 0.549172759 0.834960639 -0.0353553854 -0.165096998 + 0.266667008 0.747584581 0.648248672 -0.144536912 -0.214048997 + 0.333332986 0.830256701 0.511681795 -0.221032932 -0.279785991 + 0.366667002 0.812400699 0.565280795 -0.143047959 -0.250203997 + 0.400000006 0.748741984 0.66009599 -0.060487397 -0.208336994 + 0.466666996 0.429811984 0.886951029 0.169054985 -0.148745999 + 0.533333004 0.429402083 0.827500165 0.361742079 -0.152287006 + 0.600000024 0.660691917 0.468414903 0.586577952 -0.204457998 + 0.666666985 0.716457307 0.17535007 0.675234258 -0.322082013 + 0.733332992 0.711129963 0.114495985 0.693674922 -0.374591023 + 0.800000012 0.709360838 0.204299942 0.674587846 -0.301804006 + 0.866666973 0.617435038 0.531754076 0.579665065 -0.189974993 + 0.93333298 0.17356196 0.89672184 0.40714395 -0.142515004 + 1 -0.15053001 0.977936029 0.144850999 -0.140937999 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.163303003 0.644846082 0.746663034 -0.670683026 + 0.0666666999 -0.147910982 0.665869892 0.731258929 -0.647952974 + 0.133332998 -0.219057038 0.655745208 0.722504139 -0.568482995 + 0.200000003 -0.264795125 0.615217209 0.742557287 -0.501555979 + 0.266667008 -0.267621905 0.505471826 0.820290685 -0.449618965 + 0.333332986 -0.0761280805 0.412315875 0.907854676 -0.454665989 + 0.366667002 -0.00677907746 0.389695883 0.920918643 -0.469711959 + 0.400000006 -0.0474394001 0.403730989 0.913646996 -0.521305978 + 0.466666996 -0.335692972 0.476853937 0.812354922 -0.510092974 + 0.533333004 -0.528296947 0.480442941 0.700054944 -0.605166972 + 0.600000024 -0.580649018 0.462758005 0.669852018 -0.705832005 + 0.666666985 -0.58571595 0.452487916 0.672451913 -0.827714086 + 0.733332992 -0.579552948 0.470031917 0.66572392 -0.830603004 + 0.800000012 -0.55265981 0.493857861 0.671320736 -0.784727037 + 0.866666973 -0.4172391 0.546060145 0.726450205 -0.715020001 + 0.93333298 -0.240970001 0.602688968 0.760722995 -0.680586934 + 1 -0.163303003 0.644846082 0.746663034 -0.670683026 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 1 0 0 -0.880254984 + 0.0666666999 1 0 0 -0.912165046 + 0.133332998 1 0 0 -0.916217983 + 0.200000003 1 0 0 -0.867622018 + 0.266667008 1 0 -1.55083001e-007 -0.680705011 + 0.333332986 1 0 5.7052398e-007 -0.423312008 + 0.366667002 1 -3.11440999e-007 -3.78530018e-007 -0.362039 + 0.400000006 1 1.26903998e-007 -2.15008001e-007 -0.412647992 + 0.466666996 1 0 -2.05465994e-007 -0.712832034 + 0.533333004 1 0 0 -0.979983985 + 0.600000024 1 0 0 -1.07031 + 0.666666985 1 0 0 -1.10722995 + 0.733332992 1 0 0 -1.1025399 + 0.800000012 1 0 0 -1.10160995 + 0.866666973 1 0 0 -1.00746 + 0.93333298 1 0 0 -0.905538023 + 1 1 0 0 -0.880254984 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.798257887 -0.596262932 0.0851755962 -0.863412023 + 0.0666666999 -0.806576848 -0.581531882 0.106086977 -0.864328027 + 0.133332998 -0.808025241 -0.578786135 0.110008039 -0.821530938 + 0.200000003 -0.799804091 -0.59078306 0.106249005 -0.744940042 + 0.266667008 -0.745878935 -0.658317924 0.101400979 -0.608430028 + 0.333332986 -0.622008026 -0.777803063 0.09015771 -0.488200963 + 0.366667002 -0.585116684 -0.809692562 0.0451266803 -0.477301002 + 0.400000006 -0.618651688 -0.785271585 -0.0248729866 -0.514146984 + 0.466666996 -0.762071908 -0.644554794 0.0616077855 -0.672022045 + 0.533333004 -0.817222118 -0.540686071 0.199516028 -0.883328974 + 0.600000024 -0.807442009 -0.504211009 0.306282014 -1.00363004 + 0.666666985 -0.786174297 -0.486164153 0.381542146 -1.08317995 + 0.733332992 -0.761349082 -0.475600034 0.440627038 -1.13158 + 0.800000012 -0.777456045 -0.485694051 0.399579018 -1.10418999 + 0.866666973 -0.800491929 -0.522744954 0.293172956 -0.990967989 + 0.93333298 -0.80757165 -0.570924759 0.147894934 -0.886714935 + 1 -0.798257887 -0.596262932 0.0851755962 -0.863412023 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.0941670015 0.979699969 -0.17697598 -0.0910393 + 0.0666666999 0.147971064 0.978856385 -0.141226038 -0.105792008 + 0.233333007 0.785818696 -0.0570199825 -0.615822732 -0.0600684956 + 0.366667002 0.569616318 -0.700727284 -0.429556221 -0.127066001 + 0.56666702 0.561569035 0.817095101 -0.130368024 -0.0483971015 + 0.733332992 -0.289084941 0.95547384 -0.0591581836 -0.107855998 + 1 0.0941662043 0.979700089 -0.176975995 -0.0910393 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.28765288 -0.893294752 0.345369875 -0.134494007 + 0.0666666999 0.28765288 -0.893294752 0.345369875 -0.134494007 + 0.233333007 0.0963666663 -0.932217658 0.348831892 -0.135142997 + 0.366667002 0.287653029 -0.893294215 0.345371097 -0.134494007 + 0.56666702 -0.0965806022 -0.988571048 0.115756005 -0.224544019 + 0.733332992 -0.621847987 -0.742776036 0.248171002 -0.150149003 + 1 0.28765288 -0.893294752 0.345369875 -0.134494007 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.081766203 0.977887988 0.192481995 -0.0516389012 + 0.0666666999 -0.0817660987 0.977888048 0.192481995 -0.0516389012 + 0.233333007 -0.999281347 -0.0141032049 0.0351836123 -0.211256996 + 0.366667002 -0.279289991 0.510710061 0.813125074 -0.141847 + 0.56666702 -0.420981139 -0.656042218 0.626405239 -0.522062004 + 0.733332992 0.918602824 -0.203678966 0.338649899 -0.319085985 + 1 -0.0817660019 0.977888048 0.192481995 -0.0516389012 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.70361352 -0.708853543 0.0495441705 -0.114386991 + 0.0666666999 0.794514656 -0.605182707 0.0500035807 -0.11006099 + 0.233333007 0.545380831 -0.827189565 -0.135340944 -0.208007991 + 0.366667002 0.455309063 -0.870451033 -0.187106013 -0.29460299 + 0.56666702 0.751444817 -0.659696817 0.0114351967 -0.196612999 + 0.733332992 0.944094121 -0.142810017 0.297139019 -0.168090001 + 1 0.703612983 -0.708854079 0.0495443046 -0.114386991 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.0340114869 0.944597542 0.326463848 -0.286794007 + 0.0666666999 -0.0340107903 0.944597602 0.326463848 -0.286794007 + 0.233333007 -0.397205949 0.846533895 0.35441196 -0.277668983 + 0.366667002 -0.0340118855 0.944597542 0.326463848 -0.286794007 + 0.56666702 -0.606008232 0.739616215 0.292783082 -0.278272986 + 0.733332992 -0.0340114869 0.944597542 0.326463848 -0.286794007 + 1 -0.0340107903 0.944597602 0.326463848 -0.286794007 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.96620518 -0.194570035 -0.169086009 -0.540560007 + 0.0666666999 0.96620518 -0.194570035 -0.169086009 -0.540560007 + 0.233333007 0.933894098 -0.30183503 -0.19167003 -0.463827014 + 0.366667002 0.683058679 -0.631654739 -0.366664857 -0.191505998 + 0.56666702 0.935633063 -0.296882987 0.190922037 -0.550792038 + 0.733332992 0.913223147 -0.328066021 -0.24165301 -0.48585102 + 0.833333015 0.883301377 0.407195181 -0.232316121 -0.548503935 + 1 0.96620518 -0.194570035 -0.169086009 -0.540560007 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.290140003 -0.341154009 -0.894110024 -0.991366029 + 0.0666666999 -0.279019952 -0.333097935 -0.900662899 -0.984318912 + 0.233333007 -0.280788064 -0.427387118 -0.859359264 -1.03885996 + 0.366667002 -0.280198872 -0.493378758 -0.823447645 -1.08852005 + 0.56666702 -0.252884984 -0.417227983 -0.87290895 -0.985180974 + 0.733332992 -0.308472991 -0.238533005 -0.920840085 -0.928966999 + 1 -0.290140003 -0.341154009 -0.894110024 -0.991366029 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.643578053 0.764970183 -0.0250589047 -0.365325004 + 0.0666666999 0.643578053 0.764970183 -0.0250590034 -0.365325004 + 0.233333007 0.515772998 0.855009079 -0.0542006008 -0.364944011 + 0.366667002 0.643578053 0.764970124 -0.0250596032 -0.365325004 + 0.56666702 0.309487969 0.943191946 -0.120855995 -0.421703011 + 0.733332992 0.324254066 0.938307166 -0.120162025 -0.496581018 + 1 0.643578053 0.764970183 -0.0250590034 -0.365325004 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.529154956 0.423199952 -0.735456884 -0.0794303045 + 0.0666666999 0.529156744 0.423199832 -0.735455692 -0.0794304013 + 0.233333007 -0.539022028 0.781283975 -0.314723045 -0.172450006 + 0.366667002 0.529153824 0.423199832 -0.735457778 -0.0794304013 + 0.56666702 -0.952444911 -0.167127982 -0.254787982 -0.240683004 + 0.733332992 -0.102626942 0.944436491 -0.31226182 -0.222341001 + 1 0.529154062 0.423199028 -0.735458076 -0.0794304982 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.567517817 0.272375911 0.777003765 -0.541176975 + 0.0666666999 -0.560055375 0.300991148 0.771843433 -0.541494071 + 0.233333007 -0.52509594 0.126053005 0.841656029 -0.481902003 + 0.366667002 -0.562380195 0.247445107 0.788986325 -0.529986978 + 0.56666702 -0.46064499 0.228682995 0.857618988 -0.50059402 + 0.733332992 -0.432839096 0.401882082 0.806933165 -0.566208005 + 1 -0.567517817 0.272375911 0.777003765 -0.541176975 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.102447025 0.000684551196 -0.994738221 -0.435236007 + 0.0666666999 0.102447025 0.000684524188 -0.994738221 -0.435236007 + 0.233333007 0.00154576974 -0.049138993 -0.998790741 -0.420524001 + 0.366667002 0.190009952 -0.169977978 -0.9669559 -0.453258008 + 0.56666702 -0.19181408 -0.0610857271 -0.979528427 -0.418480992 + 0.733332992 -0.176580012 0.0387775041 -0.983522117 -0.423415005 + 0.899999976 -0.124367937 -0.0033354687 -0.992230535 -0.419759989 + 1 0.102447025 0.000684239203 -0.994738221 -0.435236007 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.148909926 -0.975029528 -0.164751947 -0.224198982 + 0.0666666999 0.148909926 -0.975029528 -0.164751947 -0.224198982 + 0.233333007 -0.472116977 -0.880592942 -0.0407632999 -0.289554 + 0.366667002 0.148909926 -0.975029528 -0.164751947 -0.224198982 + 0.56666702 0.905233681 0.424222857 0.0242277905 -0.287757993 + 0.733332992 -0.0617824048 -0.983450055 -0.170320004 -0.204593018 + 0.899999976 -0.638551176 -0.76922816 -0.0232465081 -0.328545958 + 1 0.148909926 -0.975029528 -0.164751947 -0.224198982 +endnode +doneanim plparryr a_dfa2_coat + +#MAXANIM ASCII +newanim kdbck a_dfa2_coat + length 1 + transtime 0.200000003 + animroot rootdummy + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.366667002 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground + event 0.400000006 snd_hitground +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 22 + 0 0.00162267999 -0.430310011 1.07277 + 0.0333333015 0.00162756001 -0.432139993 1.07298005 + 0.0666666999 0.00162500003 -0.441727996 1.13505006 + 0.100000001 0.00162205996 -0.460972995 1.17679 + 0.133332998 0.00161762 -0.491169989 1.18292999 + 0.166666999 0.00161240995 -0.519351006 1.15367997 + 0.200000003 0.00160863996 -0.568306029 1.05655003 + 0.233333007 0.00160856999 -0.604362011 0.94284898 + 0.266667008 0.00160637998 -0.61886698 0.829479992 + 0.300000012 0.00161230005 -0.623355985 0.642747998 + 0.333332986 0.00161826005 -0.610732973 0.449582011 + 0.366667002 0.00161858997 -0.60274899 0.235565007 + 0.400000006 0.00161895005 -0.603034019 0.131222993 + 0.433333009 0.00161929999 -0.603318989 0.273057997 + 0.466666996 0.00161966996 -0.603603005 0.348226994 + 0.5 0.00162002002 -0.603887975 0.276513994 + 0.533333004 0.00162036996 -0.604173005 0.138411999 + 0.56666702 0.00162072002 -0.604457974 0.240601003 + 0.600000024 0.00162106997 -0.604743004 0.255185008 + 0.633333027 0.00162143004 -0.60502702 0.198810995 + 0.666666985 0.00162174995 -0.60531199 0.143644005 + 1 0.00162174995 -0.60531199 0.143644005 + orientationkey 13 + 0 -0.937238634 0.25284192 0.240113899 -0.754567981 + 0.100000001 -0.967679918 0.15773499 0.196761981 -1.12055004 + 0.200000003 -0.973682165 0.155893013 0.166254044 -0.93344903 + 0.233333007 -0.971640289 0.160707042 0.173460051 -0.795190036 + 0.300000012 -0.99346441 0.0924468338 0.0669485331 -1.24056995 + 0.333332986 -0.996743798 0.0722858831 0.0357291922 -1.46676004 + 0.366667002 -0.996789634 0.0720736757 0.0348689891 -1.46460998 + 0.400000006 -0.996834755 0.071860984 0.0340066925 -1.46246994 + 0.466666996 -0.996923029 0.0714337975 0.0322756954 -1.45817006 + 0.533333004 -0.997008502 0.0710042641 0.0305361878 -1.45387983 + 0.600000024 -0.997091174 0.0705725104 0.028788304 -1.44959998 + 0.666666985 -0.997170925 0.0701384023 0.0270316992 -1.44531 + 1 -0.997170925 0.0701384023 0.0270316992 -1.44531 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.900921106 -0.317622036 0.295732021 -0.264703006 + 0.133332998 -0.949204624 -0.218084931 0.226824924 -0.365548998 + 0.333332986 -0.958584845 -0.176658988 0.223397955 -0.657186925 + 0.400000006 0.629092932 -0.65071696 0.425216973 -0.241880983 + 0.466666996 0.922186971 -0.339798987 0.184682995 -0.49120301 + 0.533333004 0.941318154 -0.291404068 0.170305029 -0.56281507 + 0.600000024 0.865154207 -0.384157121 0.322384089 -0.380685002 + 0.666666985 0.927858651 -0.286844909 0.238323912 -0.514096022 + 0.866666973 0.962353766 -0.226068944 0.150890976 -0.712624013 + 1 0.954307258 -0.242607057 0.174469039 -0.645707011 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.0106707029 -0.950370252 0.31093806 -0.663420975 + 0.133332998 -0.125036046 -0.96962738 0.210211068 -1.00320995 + 0.166666999 0.0934842005 -0.940570116 0.326479018 -1.37755001 + 0.233333007 0.0322820097 -0.962118387 0.270714104 -1.60514998 + 0.333332986 -0.293916941 0.686330855 -0.665253937 -4.75284004 + 0.400000006 0.200320065 -0.94362241 -0.263531089 -1.17166007 + 0.466666996 0.540314078 -0.794474185 -0.277257025 -1.06014001 + 0.533333004 0.43019703 -0.75752008 -0.49101302 -1.32353008 + 0.600000024 0.748922825 -0.644738793 -0.153056964 -1.31125998 + 0.666666985 0.657787919 -0.687660873 -0.307306945 -1.27026999 + 0.866666973 0.423069119 -0.690631211 -0.586550117 -1.18550992 + 1 0.488853157 -0.689952254 -0.53384316 -1.19166994 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.862506628 -0.21315591 -0.458962858 -0.824073017 + 0.133332998 -0.8684901 -0.191583022 -0.45718807 -0.779711008 + 0.166666999 -0.924307108 -0.116758011 -0.363351017 -0.868933022 + 0.233333007 -0.951343119 -0.0539095066 -0.303381026 -0.731509984 + 0.333332986 -0.976501942 0.115721993 -0.181802988 -0.503606021 + 0.400000006 -0.992957294 0.115503035 0.0263601076 -0.796741068 + 0.466666996 -0.526149094 0.698377132 0.485218048 -0.178120002 + 0.533333004 -0.994425893 0.0596398935 0.0869498923 -1.05294001 + 0.600000024 -0.996326149 0.0432463028 0.0739184096 -0.783747971 + 0.666666985 -0.997554123 -0.013909502 0.068500407 -0.920102 + 0.866666973 -0.995756865 -0.00771173928 0.0916993916 -0.687977016 + 1 -1 -4.75278e-007 0 -0.774915993 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -1 6.14247983e-005 2.38329994e-005 -0.0718078017 + 0.100000001 -0.606042266 -0.0982020348 -0.789347291 -5.43497992 + 0.133332998 -0.575497985 0.0533216 -0.816063046 -5.39513016 + 0.166666999 -0.96244204 0.00810869131 -0.27136603 -5.61392021 + 0.233333007 -0.934241652 -0.184053928 0.305477887 -5.56991005 + 0.333332986 -0.684034884 0.728718877 0.0326349922 -5.33972979 + 0.400000006 0.261122018 -0.272550017 0.926030099 -1.24704003 + 0.466666996 -0.183512062 -0.678093195 0.711697221 -1.14743996 + 0.533333004 0.320419908 0.00911825709 0.94723171 -1.01730001 + 0.600000024 0.216343924 -0.52746278 0.821570635 -0.954180002 + 0.666666985 0.237257093 -0.3609851 0.901886284 -0.957674086 + 0.866666973 -0.042536784 -0.335417867 0.941108644 -1.11601996 + 1 0.0254641045 -0.297843039 0.954275191 -1.15281999 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.762144923 0.634982944 -0.126220986 -0.743418992 + 0.133332998 -0.290642947 0.952722907 -0.0885763839 -1.20308006 + 0.233333007 -0.591086984 0.712628007 0.377858996 -1.09671998 + 0.333332986 0.663110137 -0.747413039 -0.0407272056 -5.35071993 + 0.400000006 0.393125087 0.886468172 -0.244186044 -1.35958004 + 0.466666996 0.585124791 0.795781791 0.156077936 -1.03399003 + 0.533333004 0.503479064 0.82609719 0.253125042 -1.23690999 + 0.600000024 0.830976248 0.517888129 -0.203151062 -1.61215997 + 0.666666985 0.794717193 0.600629091 -0.087574333 -1.54964995 + 0.866666973 0.810209215 0.585995197 0.0130662033 -1.38706982 + 1 0.817109644 0.576467752 0.00409322791 -1.38873005 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.970995843 -0.120314978 -0.206618965 -0.796433926 + 0.133332998 -0.949746013 -0.133385003 -0.283179998 -0.464661002 + 0.233333007 0.907533705 0.3318699 0.257380903 -5.49357986 + 0.333332986 0.675317109 0.694390118 0.248534039 -5.55670023 + 0.400000006 -0.946905017 -0.271964014 -0.171482995 -1.23812997 + 0.466666996 -0.93608284 -0.351608902 -0.0109604979 -0.65763396 + 0.533333004 -0.98836875 -0.150605977 -0.021096494 -1.44612002 + 0.600000024 -0.992030263 -0.0536863096 0.113990031 -1.38609004 + 0.666666985 -0.993607759 -0.0582071804 0.0967243686 -1.58779001 + 0.866666973 -0.993062735 -0.0565405861 0.103099972 -1.50811017 + 1 -0.993268251 -0.0571543202 0.100755028 -1.53666997 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.751168132 0.655255139 0.0799194127 -6.11865997 + 0.133332998 0.271523088 -0.530768096 0.80284524 -5.81720018 + 0.233333007 -0.430125833 -0.194947928 0.881468713 -5.54261017 + 0.333332986 -0.652297974 -0.515818 0.555373013 -4.71591997 + 0.400000006 0.943935394 0.312240154 -0.107201055 -1.09312999 + 0.466666996 0.526696146 0.497131109 -0.689530134 -1.10980999 + 0.533333004 0.521119058 0.277422041 -0.807138085 -1.55050004 + 0.600000024 0.616701007 0.666702032 -0.418555021 -1.30576003 + 0.666666985 0.645272076 0.502043009 -0.575827003 -1.36042988 + 0.866666973 0.537560821 0.598059893 -0.594434798 -1.32910001 + 1 0.551375926 0.55972892 -0.618617952 -1.38296998 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.268302053 -0.0673995167 0.960974157 -0.41396901 + 0.133332998 -0.39911297 -0.25296098 0.88131696 -0.361371011 + 0.233333007 -0.866563559 -0.0393138863 0.497515798 -0.576277018 + 0.666666985 -0.792695999 -0.0991144031 0.601505935 -0.396638006 + 1 -0.792695999 -0.0991144031 0.601505935 -0.396638006 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -0.535073876 -0.588547885 -0.606058836 -0.907682061 + 0.100000001 -0.525565803 -0.60706985 -0.596025825 -0.754029989 + 0.200000003 -0.879931092 -0.402195066 -0.252904028 -1.19645 + 0.233333007 -0.930220604 -0.33887288 -0.14090696 -1.46608984 + 0.300000012 -0.950684309 -0.300879091 -0.0753069222 -1.49196017 + 0.366667002 -0.957630038 -0.287356019 -0.0192666017 -1.49084008 + 0.466666996 -0.242864043 -0.882018209 -0.403808057 -0.251134008 + 0.5 -0.770489931 -0.592584968 -0.234921977 -0.386120975 + 0.533333004 -0.907644033 -0.41762802 0.0420613997 -0.561474025 + 0.56666702 -0.895683169 -0.400789052 0.192665026 -0.550786078 + 0.666666985 -0.912979007 -0.376850009 0.156375989 -0.447398037 + 0.733332992 -0.926447272 -0.355993092 0.122329034 -0.528338075 + 0.800000012 -0.905849159 -0.402443081 0.132200032 -0.422829032 + 1 -0.906083226 -0.37561515 0.194747061 -0.42157504 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.998414695 -0.0475322865 0.030145891 -0.630523026 + 0.100000001 0.998541117 -0.0451934002 0.0295505039 -0.658231974 + 0.200000003 -0.998781204 0.0404151082 -0.028332008 -5.56035995 + 0.233333007 -0.998753667 0.0409894846 -0.0284784902 -5.56875992 + 0.300000012 -0.998975217 0.0361438058 -0.0272432044 -5.49148989 + 0.366667002 -0.99904263 0.0345489904 -0.0268363915 -5.46248007 + 0.466666996 0.999607563 -0.0169079918 0.0223346911 -1.34516001 + 0.5 -0.999431193 0.0236373059 -0.0240524057 -5.19529009 + 0.533333004 -0.998690784 0.0422723889 -0.0288053919 -5.58686018 + 0.56666702 -0.998731852 0.0414378978 -0.0285925958 -5.57519007 + 0.666666985 -0.999533892 0.0199477989 -0.0231104977 -5.06611013 + 0.733332992 -0.999528527 0.0201546904 -0.0231630914 -5.07406998 + 0.800000012 -0.999493241 0.0214722063 -0.0234996062 -5.12263012 + 1 -0.999493301 0.0214694049 -0.0234989077 -5.12250996 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.665631056 0.299917042 0.68336308 -0.329575002 + 0.100000001 0.94830215 0.0951331183 0.302775025 -0.655341089 + 0.200000003 0.912925899 0.141073972 0.382967949 -0.524770021 + 0.233333007 0.886247277 0.241826087 0.395077139 -0.432965994 + 0.300000012 -0.945667863 -0.290502936 -0.146014988 -5.81219006 + 0.366667002 -0.960888028 -0.271311998 -0.0555332974 -5.51846981 + 0.466666996 0.451830983 0.868857026 0.202327013 -0.192723006 + 0.5 0.93485713 0.348068029 0.0699344054 -0.537019014 + 0.533333004 0.967550039 0.24297601 -0.0693508089 -1.07246995 + 0.56666702 0.911315143 0.312358022 -0.268211037 -0.823539972 + 0.666666985 0.0604181848 0.705251753 -0.706377804 -0.355318964 + 0.733332992 0.744042993 0.53580898 -0.399134994 -0.509220004 + 0.800000012 0.538624942 0.496648937 -0.680604935 -0.337368995 + 1 0.506130159 0.508205175 -0.696821213 -0.36264503 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.336734027 0.8299191 0.444797069 -0.932422996 + 0.0333333015 0.40644595 0.829947889 0.382083952 -1.10993004 + 0.0666666999 0.772854209 0.614614248 0.157942057 -1.12284005 + 0.100000001 0.736237824 0.598866761 0.315138876 -1.10052001 + 0.200000003 0.942806184 0.200772032 0.266096026 -0.0708379969 + 0.233333007 -0.911429346 -0.365401149 0.189152092 -0.329200983 + 0.300000012 -0.994190872 -0.106763981 0.0136368982 -1.11510003 + 0.366667002 -0.988401175 -0.0185429044 -0.15072903 -1.29591 + 0.433333009 -0.675477326 0.35832414 -0.644464314 -0.359442979 + 0.533333004 -0.987624288 0.133187041 -0.082822226 -0.750314951 + 0.633333027 -0.924530864 0.291043937 -0.24604097 -0.500642955 + 0.699999988 -0.969621837 0.190491989 -0.153447971 -0.705420971 + 0.766667008 -0.920316339 0.253902078 -0.297576129 -0.597745001 + 1 -0.91240412 0.235651031 -0.334645033 -0.601894021 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 1 3.34936999e-007 0 -0.924947023 + 0.0333333015 1 1.23633995e-007 -1.41678001e-007 -0.845556974 + 0.0666666999 1 4.85568023e-007 5.67527991e-007 -0.349097967 + 0.100000001 1 -9.43801012e-007 1.29452005e-007 -0.167169005 + 0.200000003 1 2.60013991e-007 0 -0.484095007 + 0.233333007 1 7.78709023e-007 5.75116985e-007 -0.509119987 + 0.300000012 -1 0 0 -5.19669008 + 0.366667002 -1 0 0 -5.29105997 + 0.433333009 -1 0 0 -4.99835014 + 0.533333004 -1 1.38369003e-007 0 -5.11726999 + 0.633333027 -1 0 0 -4.99935007 + 0.699999988 -1 0 0 -5.03366995 + 0.766667008 -1 0 0 -4.99421978 + 1 -1 1.99978004e-007 0 -4.99411011 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -0.883549094 -0.281943023 -0.373964071 -0.508280993 + 0.0333333015 -0.810826063 -0.320806026 -0.489535064 -0.514717996 + 0.0666666999 -0.535332918 -0.575682878 0.618067861 -0.326575994 + 0.100000001 0.862078071 0.212451994 0.460093021 -0.250936985 + 0.200000003 0.955017865 -0.0269620959 -0.295320004 -0.439954013 + 0.233333007 0.919879317 -0.0306101087 -0.391005129 -0.515375018 + 0.300000012 0.929141343 -0.0432433151 -0.367187083 -0.557862997 + 0.366667002 -0.974949419 -0.0166155081 0.221805111 -5.44473982 + 0.433333009 0.764725149 0.643415034 0.0348211043 -0.261323959 + 0.533333004 0.905711591 0.421271801 -0.0470804758 -0.758848011 + 0.633333027 0.763193905 0.396134943 0.510501862 -0.249183983 + 0.699999988 0.921252787 0.220264956 0.320587933 -0.436746985 + 0.766667008 0.852428019 0.0263941996 0.522177994 -0.50563103 + 1 0.839908838 -0.00975112803 0.542639852 -0.51797998 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -0.258406967 -0.0627361983 0.963996887 -0.397742003 + 0.100000001 -0.258406967 -0.0627361909 0.963996887 -0.359250993 + 0.200000003 -0.258406967 -0.0627362952 0.963996887 -0.320760041 + 0.233333007 -0.258406967 -0.0627362877 0.963996887 -0.307929009 + 0.300000012 -0.258406967 -0.0627362952 0.963996887 -0.282269001 + 0.366667002 -0.258406967 -0.0627361909 0.963996887 -0.256608009 + 0.400000006 -0.258406967 -0.062736392 0.963996887 -0.243777007 + 0.433333009 0.490557015 -0.0035048502 0.871402025 -0.235907003 + 0.466666996 0.490557015 -0.00350507 0.871402025 -0.222801 + 0.5 0.490556985 -0.00350477989 0.871402085 -0.209694996 + 0.533333004 0.490556985 -0.00350511004 0.871402085 -0.196588993 + 0.56666702 0.490555108 -0.00350484066 0.871403098 -0.183483005 + 0.766667008 0.490556985 -0.00350500015 0.871402085 -0.196588993 + 1 0.490556985 -0.00350500015 0.871402085 -0.196588993 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 0.865385115 -0.381795049 0.324563026 -0.400779009 + 0.100000001 0.976662159 0.132552013 0.16900003 -0.75769496 + 0.200000003 0.97274977 0.0185026955 0.231117949 -0.443833977 + 0.233333007 0.689014792 -0.603426814 0.401415884 -0.194377005 + 0.300000012 0.689014792 -0.603426814 0.401415884 -0.194377005 + 0.333332986 0.933435977 -0.177546993 0.311727971 -0.321581006 + 0.366667002 -0.848587692 -0.511404812 0.135513961 -0.384822994 + 0.400000006 -0.924379826 -0.37953791 0.0383792929 -0.577679992 + 0.433333009 -0.855888069 -0.484663993 0.180434018 -0.313214988 + 0.466666996 0.920503974 -0.211293995 0.328675002 -0.204855993 + 0.5 -0.491764069 -0.653069079 0.575907052 -0.115682006 + 0.533333004 -0.985383868 -0.150872976 0.0790945888 -0.546139061 + 0.56666702 -0.989131749 -0.125040963 0.0773509815 -0.426750004 + 0.766667008 -0.985478878 -0.150631964 0.0783673823 -0.546141028 + 1 -0.985706627 -0.147917926 0.0806396678 -0.807930052 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.699302793 -0.687602818 0.195391938 -0.211793989 + 0.100000001 0.904863954 -0.384818941 0.182031989 -0.257708013 + 0.200000003 0.298569024 -0.931870043 0.206094027 -0.192262009 + 0.233333007 0.298569024 -0.931870043 0.206094027 -0.192262009 + 0.300000012 0.940630794 -0.270490944 0.205056965 -0.339661002 + 0.333332986 -0.550976038 -0.834465206 0.00965596084 -0.305500001 + 0.366667002 0.863522649 -0.450781822 0.226106912 -0.259128988 + 0.400000006 -0.718973339 0.653813303 -0.235808119 -6.07496977 + 0.433333009 0.0664491877 -0.97462976 0.213731959 -0.174991995 + 0.466666996 -0.610112906 -0.101401977 -0.785798848 -0.698047996 + 0.5 -0.47638607 -0.116550006 -0.871477127 -0.587319076 + 0.533333004 0.0427950807 -0.534693778 -0.843961596 -0.529033005 + 0.56666702 0.368929148 -0.537074208 -0.758579314 -0.532215953 + 0.666666985 -0.127882972 -0.523409903 -0.842429817 -0.516499996 + 0.766667008 0.0428584963 -0.533769965 -0.844542921 -0.529637992 + 1 -0.583946049 0.472549081 0.660079062 -5.64197016 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.824526727 0.522464812 0.217223927 -0.451429993 + 0.100000001 0.824526727 0.522464812 0.217223927 -0.407743007 + 0.200000003 0.831408978 0.515435994 0.207568988 -0.400658011 + 0.233333007 0.831408978 0.515435994 0.207568988 -0.400658011 + 0.300000012 -0.949721694 -0.274877906 -0.14990294 -0.803243995 + 0.333332986 -0.994822621 0.0927099735 -0.0416263901 -0.212952986 + 0.366667002 -0.997620106 0.000752914173 -0.0689458102 -0.22290799 + 0.400000006 -0.995899796 0.081768088 0.0386986919 -0.107096009 + 0.433333009 -0.148334011 0.0414781049 -0.988067091 -0.694684029 + 0.466666996 -0.734011889 0.27798894 -0.61963594 -0.204344019 + 0.5 0.308520973 -0.167124987 -0.936420858 -0.114716001 + 0.533333004 0.894096136 -0.370418012 -0.251759022 -0.355149001 + 0.56666702 -0.127575025 -0.012884303 -0.991745234 -0.147997007 + 0.666666985 0.912266314 -0.378215134 -0.157237053 -0.425736994 + 0.766667008 0.894117355 -0.370991141 -0.250838101 -0.354986012 + 1 0.461471021 -0.252205014 -0.850551069 -0.166516021 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.204540968 0.67908287 -0.704988956 -0.778864026 + 0.0333333015 0.326211095 0.650771201 -0.685626149 -1.00487006 + 0.100000001 0.81128931 0.291785121 -0.506627142 -0.672447026 + 0.200000003 -0.29557094 -0.167987987 -0.940434933 -0.114096001 + 0.233333007 -0.942903221 -0.332936049 -0.00933446083 -0.344805986 + 0.300000012 -0.942902863 -0.332936972 -0.00933480915 -0.344804972 + 0.333332986 -0.461366862 -0.627389848 -0.627313793 -0.107917011 + 0.366667002 -0.957722843 -0.282987952 0.051814694 -0.661464989 + 0.400000006 -0.960211337 -0.262193084 0.0961713344 -0.856257915 + 0.433333009 -0.939589024 -0.342020988 -0.0139328986 -0.466248006 + 0.466666996 -0.815434158 -0.571904123 -0.089402616 -0.208669007 + 0.5 -0.929472566 -0.368770808 0.00942701567 -0.425446004 + 0.533333004 -0.959578216 -0.266842067 -0.0894706175 -0.549514055 + 0.56666702 -0.940152287 -0.320862114 -0.114722043 -0.437382042 + 0.766667008 -0.959583998 -0.266579032 -0.0901894048 -0.54954499 + 1 -0.975945175 -0.213303015 -0.0450870059 -0.807114065 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 0.952334821 -0.159334973 -0.260135949 -0.552578986 + 0.0333333015 0.928776562 -0.280734867 -0.241995886 -0.558081985 + 0.100000001 0.7034778 0.620806754 -0.346002877 -0.879007936 + 0.200000003 0.701784909 0.628233969 -0.335886985 -0.812567949 + 0.233333007 0.701784909 0.62823391 -0.335886955 -0.812569022 + 0.300000012 0.729006767 0.596032739 -0.33659187 -0.862322986 + 0.333332986 0.153082073 0.946171463 -0.285176158 -0.495193988 + 0.366667002 -0.654854715 -0.67835474 0.333166867 -5.56134987 + 0.400000006 -0.609211922 -0.72120893 0.329724967 -5.64777994 + 0.433333009 -0.0145973032 0.960936129 -0.276385039 -0.44946298 + 0.466666996 -0.144812003 0.618831933 0.772059917 -0.579717994 + 0.5 0.051992096 0.708003938 0.704291999 -0.560600996 + 0.533333004 -0.140224025 0.675015152 0.724356115 -0.539241016 + 0.56666702 0.184769049 0.753246188 0.631253183 -0.526024997 + 0.666666985 -0.291680992 0.622816086 0.725962996 -0.539593995 + 0.766667008 -0.140699983 0.675834954 0.723498881 -0.538762033 + 1 -0.431637198 -0.720879376 -0.542238235 -5.67205 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.39782986 -0.754977763 -0.521286845 -0.625455916 + 0.100000001 0.39782989 -0.754977763 -0.521286845 -0.564927995 + 0.200000003 0.39782989 -0.754977703 -0.521286845 -0.504400015 + 0.233333007 0.39782989 -0.754977703 -0.521286845 -0.504400015 + 0.300000012 -0.858643711 -0.511270821 0.0365118831 -0.744309008 + 0.333332986 -0.443030149 -0.843237221 -0.304426134 -0.413861036 + 0.366667002 -0.237350911 -0.87998873 -0.411441863 -0.360231012 + 0.400000006 0.0618646257 -0.862188339 -0.502796233 -0.330933034 + 0.433333009 0.317968905 -0.499994874 0.80554384 -0.612911999 + 0.466666996 -0.0548104122 -0.983069181 -0.17484504 -0.37540099 + 0.5 0.412242085 -0.678815067 -0.607673049 -0.16880399 + 0.533333004 0.863730133 -0.124715008 -0.488279074 -0.313924998 + 0.56666702 -0.275920987 -0.926098049 -0.257313013 -0.180241019 + 0.666666985 0.891747415 -0.00395165198 -0.452516228 -0.382346958 + 0.766667008 0.864330292 -0.125030026 -0.487135142 -0.313899994 + 1 0.609720945 -0.527511954 -0.591583967 -0.18443501 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.0942112133 -0.756424069 -0.647261083 -0.749889076 + 0.100000001 0.360697925 -0.721516907 -0.591024876 -0.920976996 + 0.200000003 -0.224878937 -0.616834879 -0.754283905 -1.13892996 + 0.233333007 -0.466316998 -0.526000023 -0.711247087 -1.26961005 + 0.300000012 -0.544781089 -0.475331098 -0.690850079 -1.34168994 + 0.366667002 -0.692194164 -0.353357047 -0.629290104 -1.42042994 + 0.400000006 -0.692194164 -0.353357077 -0.629290104 -1.34941018 + 0.433333009 -0.413850814 -0.426525891 -0.804240763 -1.42289996 + 0.466666996 -0.413850814 -0.426525861 -0.804240763 -1.34385002 + 0.5 -0.333469033 -0.476322025 -0.813582003 -1.22125995 + 0.533333004 -0.333468139 -0.476322174 -0.813582301 -1.14493001 + 0.56666702 -0.333469003 -0.476322025 -0.813582063 -1.06860006 + 0.766667008 -0.216023937 -0.38435787 -0.897553742 -1.87065005 + 1 -0.216023937 -0.38435787 -0.897553742 -1.87065005 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.961890876 0.260531992 -0.0830000937 -0.162788987 + 0.100000001 0.972596288 0.190159038 -0.133776024 -0.300467998 + 0.200000003 0.96268338 0.219917074 -0.157725066 -0.260744005 + 0.233333007 0.96268338 0.219917074 -0.157725066 -0.260744005 + 0.300000012 -0.997860432 0.0245972089 -0.0605770275 -5.94631004 + 0.333332986 -0.948194921 0.211069986 -0.237435982 -5.82250977 + 0.366667002 -0.960652232 0.186559051 -0.205774039 -5.86039019 + 0.400000006 -0.960652232 0.186559036 -0.205774039 -5.88152981 + 0.433333009 -0.684547782 -0.643960774 0.341626853 -5.99933004 + 0.466666996 -0.684547782 -0.643960774 0.341626853 -6.0151 + 0.5 -0.181785971 0.777867854 -0.601560891 -0.265026987 + 0.533333004 -0.0640899092 0.34800303 -0.935300171 -0.726728022 + 0.56666702 -0.0640901104 0.34800303 -0.935300112 -0.678279936 + 0.766667008 -0.302862942 -0.246638969 0.920566797 -5.66542006 + 1 -0.302862942 -0.246638969 0.920566797 -5.66542006 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.79833591 0.55587095 0.23166199 -0.479624003 + 0.100000001 0.781230748 0.453850865 -0.428599894 -0.307253987 + 0.200000003 0.970719397 0.0533098243 -0.234226108 -0.350903988 + 0.233333007 0.970719397 0.0533099249 -0.234226108 -0.350903988 + 0.300000012 0.0289782975 0.845943928 -0.532483935 -0.414104015 + 0.366667002 0.254988074 -0.834043205 0.48923713 -5.7561698 + 0.400000006 0.254987955 -0.834042847 0.489237875 -5.78251982 + 0.433333009 0.0904659331 -0.86370033 0.495820194 -5.83403015 + 0.466666996 0.377428055 0.695987105 -0.610860109 -0.235026002 + 0.5 -0.329341114 -0.723890245 0.606232107 -6.0543499 + 0.533333004 -0.329342216 -0.723890364 0.606231332 -6.06864977 + 0.56666702 -0.329340219 -0.723890424 0.606232345 -6.08295012 + 0.766667008 -0.837750018 -0.291368008 0.461822003 -6.04639006 + 1 -0.837750018 -0.291368008 0.461822003 -6.04639006 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.333896101 0.941369176 0.0483473092 -0.387800008 + 0.100000001 0.333896071 0.941369236 0.0483469069 -0.350271016 + 0.200000003 -0.835068822 0.342722923 0.430349886 -0.354465008 + 0.233333007 -0.92412281 -0.0100636985 0.381962955 -0.628838003 + 0.300000012 -0.791498899 0.173957974 0.585890889 -0.742734015 + 0.366667002 -0.871804893 -0.000550924917 0.489852965 -0.945186913 + 0.400000006 -0.871804893 -0.000550753961 0.489852935 -0.89792794 + 0.433333009 -0.871804893 -0.000550675963 0.489852935 -0.850668967 + 0.466666996 -0.871804893 -0.000550715951 0.489852905 -0.80340898 + 0.5 -0.832969725 0.0661120787 0.549354732 -0.632559001 + 0.533333004 -0.620865941 0.0766033009 0.780164957 -0.729500949 + 0.56666702 -0.620865345 0.0766033456 0.780165493 -0.680867016 + 0.766667008 -0.295196891 0.10649696 0.94948256 -1.47220004 + 1 -0.295196891 0.10649696 0.94948256 -1.47220004 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 0.729060769 0.494193882 -0.473542839 -0.151149005 + 0.100000001 0.747690916 0.461946964 -0.47703594 -0.439707011 + 0.200000003 0.747690916 0.461946964 -0.477035969 -0.392596006 + 0.233333007 0.747690916 0.461946964 -0.477035969 -0.392596006 + 0.300000012 0.726269066 0.450912029 -0.518856049 -0.0911344066 + 0.333332986 -0.769877195 -0.452343136 0.45019415 -5.94243002 + 0.366667002 -0.327270001 -0.681169987 0.654905915 -6.02557993 + 0.400000006 -0.327269971 -0.681169987 0.654905975 -6.03845978 + 0.433333009 -0.327270001 -0.681169927 0.654905975 -6.0513401 + 0.466666996 -0.462526917 -0.637810886 0.615845859 -6.01555014 + 0.5 0.112797 0.812498987 0.571946025 -0.309834003 + 0.533333004 -0.561139941 0.0212191977 0.827448905 -0.365197986 + 0.56666702 -0.561141014 0.0212203022 0.82744813 -0.340851992 + 0.766667008 0.418495089 -0.0374577083 -0.907446325 -5.95397997 + 1 0.503335953 -0.530196965 -0.682307899 -5.97989988 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.945410728 -0.284717917 -0.158537954 -0.442966998 + 0.100000001 0.945410728 -0.284717917 -0.158537939 -0.400099993 + 0.200000003 0.945410728 -0.284717888 -0.158537939 -0.357232034 + 0.233333007 0.945410728 -0.284717888 -0.158537939 -0.357232034 + 0.300000012 -0.174415007 -0.935377061 0.307651013 -0.381741017 + 0.366667002 0.538055003 0.781714976 -0.315306991 -5.68871021 + 0.400000006 0.538055003 0.781714976 -0.315307021 -5.71843004 + 0.433333009 0.494241148 -0.865897179 0.0771214142 -0.28766197 + 0.466666996 0.90879792 -0.398990929 -0.122034982 -0.381972998 + 0.5 -0.193591908 -0.943159521 0.270133853 -0.349563003 + 0.533333004 0.193591952 0.943159759 -0.270132929 -5.95547009 + 0.56666702 0.193591952 0.943159759 -0.270132929 -5.97732019 + 0.766667008 -0.897429764 0.358402848 -0.257229924 -5.80103016 + 1 -0.897429764 0.358402848 -0.257229924 -5.80103016 +endnode +doneanim kdbck a_dfa2_coat + +#MAXANIM ASCII +newanim kdbckps a_dfa2_coat + length 1 + transtime 0.5 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 3 + 0 0.00162174995 -0.60531199 0.143644005 + 0.166666999 0.00162174995 -0.60531199 0.143644005 + 1 0.00162174995 -0.60531199 0.143644005 + orientationkey 3 + 0 -0.997170925 0.0701384023 0.0270316992 -1.44531 + 0.166666999 -0.997170925 0.0701384023 0.0270316992 -1.44531 + 1 -0.997170925 0.0701384023 0.0270316992 -1.44531 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.954307258 -0.242607057 0.174469039 -0.645707011 + 0.0666666999 0.954783261 -0.241681054 0.173145041 -0.64913702 + 0.5 0.961102009 -0.22877802 0.154737011 -0.700775027 + 0.56666702 0.961474419 -0.227978095 0.153600067 -0.704228997 + 0.633333027 0.960986257 -0.229025066 0.155090034 -0.699711978 + 0.93333298 0.954928219 -0.241398066 0.172740042 -0.650192022 + 1 0.954307258 -0.242607057 0.174469039 -0.645707011 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.488853157 -0.689952254 -0.53384316 -1.19166994 + 0.0666666999 0.472899109 -0.69236517 -0.544974208 -1.20452988 + 0.5 0.482319146 -0.70169121 -0.524402201 -1.16933 + 0.56666702 0.482627958 -0.702413976 -0.523149014 -1.16684997 + 0.633333027 0.482263207 -0.701556265 -0.524634182 -1.16998005 + 0.93333298 0.48980701 -0.690349042 -0.532454014 -1.18920004 + 1 0.488853157 -0.689952254 -0.53384316 -1.19166994 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -1 -4.85980024e-007 0 -0.774915993 + 0.0666666999 -0.996541262 -0.0101791024 0.0824738219 -0.765470982 + 0.5 -0.995902777 -0.00815005787 0.0900623798 -0.700609982 + 0.56666702 -0.99584949 -0.00798869412 0.090664342 -0.695915043 + 0.633333027 -0.995916545 -0.00819137599 0.0899064541 -0.701837003 + 0.93333298 -1 0 0 -0.770323992 + 1 -1 -3.66238027e-007 0 -0.774917006 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.0254643057 -0.297843039 0.954275191 -1.15281999 + 0.0666666999 0.0242081005 -0.309960991 0.950441003 -1.10720003 + 0.5 -0.0127409957 -0.380595863 0.924653709 -1.05096996 + 0.56666702 -0.0155269019 -0.3853181 0.922653198 -1.04765999 + 0.633333027 -0.0119106947 -0.379310817 0.925192654 -1.05185997 + 0.93333298 0.0225515049 -0.303039074 0.952711284 -1.14783001 + 1 0.0254640039 -0.297843039 0.954275191 -1.15281999 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.817109644 0.576467752 0.00409324793 -1.38873005 + 0.0666666999 0.817700028 0.575627029 0.00449394993 -1.38864005 + 0.5 0.820134878 0.572047889 0.0118330978 -1.36723006 + 0.56666702 0.820193231 0.571940184 0.0129437037 -1.3653599 + 0.633333027 0.820508182 0.571531117 0.010884203 -1.36915004 + 0.93333298 0.817969084 0.57525301 0.00325083011 -1.38927996 + 1 0.817109644 0.576467752 0.00409326795 -1.38873005 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.993268251 -0.057154417 0.100755028 -1.53666997 + 0.0666666999 -0.99326539 -0.0571456216 0.100788034 -1.53627002 + 0.5 -0.993089795 -0.0566206835 0.102794975 -1.51178014 + 0.56666702 -0.993077397 -0.0565848239 0.102934048 -1.51011002 + 0.633333027 -0.993100286 -0.0566517189 0.102676034 -1.51320004 + 0.93333298 -0.993262291 -0.0571364164 0.100824021 -1.53582001 + 1 -0.993268251 -0.057154417 0.100755028 -1.53666997 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.551375926 0.55972892 -0.618617952 -1.38296998 + 0.0666666999 0.550305128 0.562345147 -0.617197096 -1.38203001 + 0.5 0.533627748 0.593590736 -0.602404773 -1.36275995 + 0.56666702 0.532218814 0.595319748 -0.601944745 -1.36162996 + 0.633333027 0.534333229 0.593645275 -0.60172528 -1.36304998 + 0.93333298 0.550629795 0.563710809 -0.615659773 -1.38098001 + 1 0.551375926 0.55972892 -0.618617952 -1.38296998 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.792695999 -0.0991142914 0.601505995 -0.396638036 + 1 -0.792695999 -0.0991142914 0.601505995 -0.396638036 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.906083047 -0.37561506 0.194748029 -0.42157501 + 0.56666702 -0.90538758 -0.383127809 0.18299289 -0.421400994 + 1 -0.906083047 -0.37561506 0.194748029 -0.42157501 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.999493301 0.0214693062 -0.0234989077 -5.12250996 + 0.56666702 -0.999492943 0.0214831978 -0.023502497 -5.12302017 + 1 -0.999493301 0.0214694049 -0.0234989077 -5.12250996 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.506130159 0.508205175 -0.696821213 -0.36264503 + 0.56666702 0.51060313 0.508358121 -0.693438172 -0.357243001 + 1 0.506130159 0.508205175 -0.696821213 -0.36264503 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.91240412 0.235651031 -0.334645033 -0.601894021 + 0.56666702 -0.915062129 0.237225041 -0.326168031 -0.606198013 + 1 -0.91240412 0.235651031 -0.334645033 -0.601894021 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -1 0 0 -4.99412012 + 0.56666702 -1 2.17253998e-007 0 -4.98441982 + 1 -1 0 0 -4.99412012 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.839908838 -0.00975141767 0.542639852 -0.51797998 + 0.56666702 0.845964611 -0.000556366693 0.533238769 -0.520048976 + 1 0.839909256 -0.00975132268 0.542639196 -0.51797998 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.490556985 -0.00350500015 0.871402085 -0.196588993 + 1 0.490556985 -0.00350500015 0.871402085 -0.196588993 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.985706627 -0.147917926 0.0806396678 -0.807930052 + 1 -0.985706627 -0.147917926 0.0806396678 -0.807930052 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.583946049 0.472549081 0.660079062 -5.64197016 + 1 -0.583946049 0.472549081 0.660079062 -5.64197016 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.461471021 -0.252205014 -0.850551069 -0.166516021 + 1 0.461471021 -0.252205014 -0.850551069 -0.166516021 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.975945175 -0.213303015 -0.0450870059 -0.807114065 + 1 -0.975945175 -0.213303015 -0.0450870059 -0.807114065 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.431637198 -0.720879376 -0.542238235 -5.67205 + 1 -0.431637198 -0.720879376 -0.542238235 -5.67205 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.609720945 -0.527511954 -0.591583967 -0.18443501 + 1 0.609720945 -0.527511954 -0.591583967 -0.18443501 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.216023937 -0.38435787 -0.897553742 -1.87065005 + 1 -0.216023937 -0.38435787 -0.897553742 -1.87065005 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.302862942 -0.246638969 0.920566797 -5.66542006 + 1 -0.302862942 -0.246638969 0.920566797 -5.66542006 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.837750018 -0.291368008 0.461822003 -6.04639006 + 1 -0.837750018 -0.291368008 0.461822003 -6.04639006 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.295196891 0.10649696 0.94948256 -1.47220004 + 1 -0.295196891 0.10649696 0.94948256 -1.47220004 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.503335953 -0.530196965 -0.682307899 -5.97989988 + 1 0.503335953 -0.530196965 -0.682307899 -5.97989988 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.897429764 0.358402848 -0.257229924 -5.80103016 + 1 -0.897429764 0.358402848 -0.257229924 -5.80103016 +endnode +doneanim kdbckps a_dfa2_coat + +#MAXANIM ASCII +newanim kdbckdmg a_dfa2_coat + length 0.333332986 + transtime 0.200000003 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 2 + 0 0.00162528001 -0.608027995 0.274376988 + 0.333332986 0.00162174995 -0.60531199 0.143644005 + orientationkey 2 + 0 -0.99160409 0.0982015133 0.0841299072 -0.681886017 + 0.333332986 -0.997170925 0.0701384023 0.0270316992 -1.44531 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.82054913 -0.25079003 0.513618052 -0.215855017 + 0.166666999 0.0834283903 -0.600117922 0.795548975 -0.190570995 + 0.333332986 0.954307258 -0.242607057 0.174469039 -0.645707011 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.798915088 -0.598890007 -0.0553663038 -1.22517002 + 0.166666999 0.509741127 -0.716302156 -0.476524085 -1.34596002 + 0.233333007 0.488984913 -0.68202889 -0.543810904 -1.31159997 + 0.333332986 0.488853157 -0.689952254 -0.53384316 -1.19166994 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.921227396 -0.372052193 -0.113654062 -0.888504028 + 0.166666999 -0.99820894 -0.0168692973 0.0573966913 -1.09079015 + 0.233333007 -0.997897923 -0.0153890988 0.0629514903 -0.998772979 + 0.333332986 -1 -4.19753036e-007 -1.36381999e-007 -0.774917006 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.45044288 -0.161102965 -0.878149807 -0.569420934 + 0.166666999 0.121406004 -0.261473 0.957544982 -1.47643995 + 0.233333007 0.0754908025 -0.340915978 0.937057853 -1.11368001 + 0.333332986 0.0254640039 -0.297843039 0.954275191 -1.15281999 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.495429069 0.866988122 0.0536808074 -0.966845989 + 0.166666999 0.750853121 0.659961045 0.0259038024 -1.43782997 + 0.266667008 0.77376008 0.626220047 0.0956235081 -1.35431004 + 0.333332986 0.817109644 0.576467752 0.00409318833 -1.38873005 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.941939235 0.169552043 0.289832056 -0.745149076 + 0.166666999 -0.994202614 -0.0601972826 0.0890923813 -1.69211996 + 0.266667008 -0.993680298 -0.0584398173 0.0958344266 -1.59945011 + 0.333332986 -0.993268251 -0.057154417 0.100755028 -1.53666997 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.928077698 -0.363249868 -0.0819833875 -0.66691798 + 0.166666999 0.569178998 0.396235973 -0.720439017 -1.78187001 + 0.266667008 0.520158172 0.503713191 -0.68971622 -1.46879995 + 0.333332986 0.551375926 0.55972892 -0.618617952 -1.38296998 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.881949902 -0.0625454932 0.467174947 -0.448495001 + 0.200000003 -0.859435022 -0.062834993 0.507368922 -0.449562997 + 0.333332986 -0.792695999 -0.0991144031 0.601505935 -0.396638006 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.951489687 -0.285668939 0.114282973 -1.43305004 + 0.100000001 -0.953476071 -0.300372034 0.0256903041 -1.4188 + 0.166666999 -0.8405478 -0.412733942 0.350898951 -0.738479018 + 0.233333007 -0.907857656 -0.370169848 0.196897909 -0.637064993 + 0.300000012 -0.919844389 -0.350982159 0.175208077 -0.489777029 + 0.333332986 -0.906083047 -0.37561506 0.194748029 -0.42157501 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.999557436 0.0190194082 -0.0228735097 -5.0292902 + 0.100000001 -0.99954772 0.0194069948 -0.0229725931 -5.04490995 + 0.166666999 -0.99953419 0.0199360065 -0.0231075045 -5.06567001 + 0.233333007 -0.999499738 0.0212333947 -0.023438694 -5.11408997 + 0.300000012 -0.999503136 0.0211091023 -0.023407001 -5.10960007 + 0.333332986 -0.999493301 0.0214694068 -0.0234989095 -5.12251997 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.26106891 0.49263379 -0.830153584 -0.52066499 + 0.100000001 -0.201027989 0.557883918 -0.805203855 -0.515841007 + 0.166666999 0.163848013 0.625527978 -0.762803078 -0.573737085 + 0.233333007 0.185951993 0.634571016 -0.750160992 -0.465752006 + 0.300000012 0.528109193 0.621227205 -0.57894516 -0.434949964 + 0.333332986 0.506130159 0.508205175 -0.696821213 -0.36264503 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.983213484 -0.00948725455 0.182212085 -1.75400996 + 0.0666666999 -0.984710753 -0.036324393 0.170367971 -1.68930995 + 0.200000003 -0.975641727 0.12060196 -0.183243945 -0.809009969 + 0.266667008 -0.950749755 0.17749095 -0.254109949 -0.767282009 + 0.333332986 -0.91240412 0.235651031 -0.334645033 -0.601894021 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -1 0 0 -5.08245993 + 0.0666666999 -1 0 0 -5.20814991 + 0.200000003 -1 0 0 -4.91691017 + 0.266667008 -1 0 0 -4.96544981 + 0.333332986 -1 0 0 -4.99412012 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.684841573 0.724125564 0.0814504474 -0.497170001 + 0.0666666999 0.59168911 0.803312182 0.0677755177 -0.371156991 + 0.200000003 0.425834 -0.160340011 0.890481055 -0.273750991 + 0.266667008 0.569277108 -0.276422054 0.774283171 -0.367716014 + 0.333332986 0.839908838 -0.00975128822 0.542639852 -0.51797998 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.490556985 -0.0035049601 0.871402085 -0.196588993 + 0.333332986 0.490556985 -0.00350505998 0.871402085 -0.196588993 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.982685208 -0.167935029 0.0782792121 -0.633204937 + 0.333332986 -0.985706627 -0.147917926 0.0806396678 -0.807930052 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.601590872 -0.443515897 -0.664365888 -0.679319978 + 0.333332986 -0.583946049 0.472549081 0.660079062 -5.64197016 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.0808731019 -0.150693014 -0.985267043 -0.162000015 + 0.333332986 0.461471826 -0.252204925 -0.850550652 -0.166515991 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.962311387 -0.262191087 -0.0721984208 -0.636518002 + 0.333332986 -0.975945175 -0.213303015 -0.0450870059 -0.807114065 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.694518089 0.353086025 0.626877069 -0.702180028 + 0.333332986 -0.43163693 -0.720878959 -0.542238951 -5.67205 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.21365197 -0.925854862 -0.311681956 -0.193691999 + 0.333332986 0.609720945 -0.527511954 -0.591583967 -0.18443501 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.216023937 -0.38435787 -0.897553742 -1.87065005 + 0.333332986 -0.216023937 -0.38435787 -0.897553742 -1.87065005 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.266504943 0.604637861 -0.750591874 -1.24258006 + 0.333332986 -0.302862942 -0.246638969 0.920566797 -5.66542006 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.832755744 -0.303584903 0.462983876 -6.04234982 + 0.333332986 -0.837750018 -0.291368008 0.461822003 -6.04639006 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.295196891 0.10649696 0.94948256 -1.47220004 + 0.333332986 -0.295196891 0.10649696 0.94948256 -1.47220004 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.0246383045 -0.672756076 0.739454031 -0.884517014 + 0.333332986 0.503335953 -0.530196965 -0.682307899 -5.97989988 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.894008279 0.36503914 -0.259799093 -5.79756021 + 0.333332986 -0.897429764 0.358402848 -0.257229924 -5.80103016 +endnode +doneanim kdbckdmg a_dfa2_coat + +#MAXANIM ASCII +newanim kdbckdie a_dfa2_coat + length 1 + transtime 0.25 + animroot rootdummy + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground + event 0.600000024 snd_hitground +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 6 + 0 0.00162174995 -0.60531199 0.143644005 + 0.166666999 0.00162174995 -0.60531199 0.143644005 + 0.300000012 0.00162174995 -0.60531199 0.143644005 + 0.433333009 0.00162174995 -0.60531199 0.143644005 + 0.633333027 0.00160425005 -0.607183993 0.143778995 + 1 0.00160425005 -0.607183993 0.143778995 + orientationkey 6 + 0 -0.997170925 0.0701384023 0.0270316992 -1.44531 + 0.166666999 -0.997170925 0.0701384023 0.0270316992 -1.44531 + 0.300000012 -0.997170925 0.0701384023 0.0270316992 -1.44531 + 0.433333009 -0.997170925 0.0701384023 0.0270316992 -1.44531 + 0.633333027 -0.998372555 0.0561072789 0.0102063958 -1.72151995 + 1 -0.998372555 0.0561072789 0.0102063958 -1.72151995 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.954307258 -0.242607057 0.174469039 -0.645707011 + 0.166666999 0.948783875 -0.186567992 -0.25495398 -0.891973972 + 0.300000012 0.989444315 -0.100458033 -0.10444203 -1.00418985 + 0.433333009 0.98927635 -0.101723038 -0.10480804 -0.995555997 + 0.633333027 0.925241053 -0.366097003 0.0995088965 -0.289314002 + 0.733332992 0.965275288 -0.256254077 0.050768815 -0.421819031 + 0.833333015 0.925240993 -0.366097003 0.0995090008 -0.289314002 + 1 0.925240993 -0.366097003 0.0995090008 -0.289314002 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.488853157 -0.689952254 -0.53384316 -1.19166994 + 0.166666999 0.27412495 -0.814875901 -0.510717869 -1.06105995 + 0.300000012 0.465033859 -0.756252706 -0.460244864 -1.10327995 + 0.433333009 0.460080892 -0.755946875 -0.465692908 -1.10605001 + 0.533333004 -0.292856038 -0.519752085 -0.802554131 -1.17022002 + 0.633333027 -0.507478118 -0.444715112 -0.738034189 -1.31801999 + 0.733332992 -0.301757038 -0.425556064 -0.853138149 -1.59262002 + 0.833333015 -0.323627084 -0.412948132 -0.851316273 -1.58322012 + 0.93333298 -0.351541013 -0.386348933 -0.852732897 -1.59140003 + 1 -0.342405885 -0.394249827 -0.852833688 -1.59080005 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -1 -5.80030019e-007 0 -0.774917006 + 0.166666999 -1 -6.57916019e-007 3.30977997e-007 -0.893025994 + 0.300000012 -1 -1.05635002e-006 3.38298008e-007 -0.781696975 + 0.433333009 -1 -8.38472999e-007 3.16435006e-007 -0.786029994 + 0.533333004 -1 -6.33991988e-007 2.70400989e-007 -1.00363004 + 0.633333027 1 9.17522982e-007 0 -5.59964991 + 0.733332992 1 8.84887925e-007 0 -5.3860898 + 0.833333015 1 1.34109982e-007 0 -5.35491991 + 0.93333298 1 3.76656999e-007 0 -5.33140993 + 1 1 3.75876027e-007 0 -5.32860994 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.0254642051 -0.297843039 0.954275191 -1.15281999 + 0.166666999 0.0294679906 -0.288395911 0.957057714 -1.14707994 + 0.300000012 -0.0856719241 -0.578910112 0.810878158 -0.933890998 + 0.433333009 -0.0809476301 -0.565250158 0.820938289 -0.941296995 + 0.533333004 -0.146472037 0.210727051 -0.966509223 -5.10283995 + 0.633333027 -0.0230851993 0.442162037 -0.896638036 -5.43984985 + 0.733332992 0.53437674 -0.0379801877 0.844392657 -5.7865901 + 0.833333015 0.784030974 0.209010988 0.584474027 -5.98415995 + 0.93333298 0.601729095 0.518098116 0.607862175 -5.94012022 + 1 0.646979153 0.331641078 0.686609209 -5.95792007 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.817109644 0.576467752 0.00409325818 -1.38873005 + 0.166666999 0.929032803 0.368026942 -0.0381349958 -1.27822983 + 0.300000012 0.881109715 0.472452819 -0.0208330918 -1.13218999 + 0.433333009 0.898817956 0.437050939 -0.0333581939 -1.14276004 + 0.533333004 0.739509821 0.662284791 0.120432973 -1.12501001 + 0.633333027 0.511171997 0.692265987 -0.509382963 -1.32211983 + 0.733332992 0.523030818 0.675815761 -0.519337833 -1.31929004 + 0.833333015 0.519707143 0.682328105 -0.514133096 -1.32301009 + 1 0.519707143 0.682328105 -0.514133096 -1.32301009 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.993268251 -0.0571543202 0.100755028 -1.53666997 + 0.166666999 -0.98833555 -0.04540148 0.145366922 -1.11387002 + 0.300000012 -0.988116682 -0.0449730866 0.146978959 -1.10244 + 0.433333009 -0.988865137 -0.0464601032 0.141376019 -1.14311004 + 0.533333004 -0.991048574 -0.0993961543 0.0891240612 -1.18393004 + 0.633333027 -0.938977122 -0.286670029 0.190111026 -0.435342014 + 0.733332992 -0.939587653 -0.285494924 0.188858926 -0.437502027 + 0.833333015 -0.935052812 -0.294064939 0.197994992 -0.422212958 + 1 -0.935052812 -0.294064939 0.197994992 -0.422212958 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.551375926 0.55972892 -0.618617952 -1.38296998 + 0.166666999 0.381706983 0.882273912 -0.275485963 -1.14364004 + 0.300000012 0.338528097 0.872431159 -0.352509081 -1.13996994 + 0.433333009 0.359109938 0.871061862 -0.335098982 -1.19270003 + 0.533333004 0.551736951 0.410890937 -0.725778878 -1.35215008 + 0.633333027 0.714219928 0.326854974 -0.618914962 -0.872465014 + 0.733332992 0.705459952 0.378034979 -0.599512935 -0.838573992 + 0.833333015 0.686435997 0.277911991 -0.671989977 -0.925846994 + 1 0.686435997 0.277911991 -0.671989977 -0.925846994 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.79269594 -0.0991145894 0.601505935 -0.396638006 + 0.166666999 -0.79269594 -0.0991145894 0.601505935 -0.396638006 + 0.300000012 -0.79269594 -0.0991145894 0.601505935 -0.396638006 + 0.433333009 -0.79269594 -0.0991145894 0.601505935 -0.396638006 + 0.699999988 0.584557235 -0.326271147 0.742859304 -0.255682021 + 1 0.584557891 -0.326270938 0.742858887 -0.255681992 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.906083047 -0.37561506 0.194748029 -0.42157501 + 0.166666999 -0.901860058 -0.376956016 0.211074993 -0.416227967 + 0.300000012 -0.900850296 -0.377998143 0.213509068 -0.417044014 + 0.433333009 -0.900199354 -0.392706186 0.18821007 -0.412781 + 0.56666702 -0.282415032 -0.371591032 -0.884399176 -0.640240014 + 0.633333027 -0.0791978687 -0.261783838 -0.961871564 -1.10839999 + 0.699999988 -0.0833268389 -0.157829076 -0.983944416 -1.61379004 + 1 -0.0833268389 -0.157829076 -0.983944416 -1.61379004 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.999493301 0.0214694049 -0.0234989077 -5.12250996 + 0.166666999 -0.999482989 0.0218428001 -0.0235942006 -5.13567019 + 0.300000012 -0.999473631 0.0221758932 -0.02367929 -5.14717007 + 0.433333009 -0.999465048 0.022477001 -0.0237561036 -5.15739012 + 0.56666702 0.998191416 -0.051423721 0.0311376136 -0.589096963 + 0.633333027 0.99684757 -0.0706831738 0.0360392891 -0.443558007 + 0.699999988 -0.991026223 0.124124028 -0.049601011 -6.02129984 + 1 -0.991026282 0.124123044 -0.0496017151 -6.02129984 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.506130159 0.508205175 -0.696821213 -0.36264503 + 0.166666999 0.10880895 0.663668692 -0.740070581 -0.384164035 + 0.300000012 0.139206067 0.659315288 -0.738867402 -0.386366963 + 0.433333009 0.156705961 0.659039676 -0.735601723 -0.375548005 + 0.56666702 0.990611851 -0.0669935942 -0.11916399 -0.195636004 + 0.633333027 0.983829796 0.178138971 0.0185868964 -0.324568003 + 0.699999988 0.99999994 0.000325016968 1.53958972e-005 -0.558493972 + 1 0.99999994 0.000325300934 1.51421991e-005 -0.558493972 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.91240412 0.235651031 -0.334645033 -0.601894021 + 0.166666999 -0.928380311 0.206036061 -0.309288114 -0.754616022 + 0.300000012 -0.929460347 0.206849068 -0.305478126 -0.785525978 + 0.433333009 -0.93131876 0.212026954 -0.296124905 -0.784398913 + 0.56666702 -0.66015476 0.0643652752 -0.748366773 -0.929046988 + 0.633333027 -0.492943853 -0.00444698846 -0.870049775 -1.06107998 + 0.699999988 -0.413357168 -0.0319770128 -0.910007298 -1.26271987 + 0.899999976 -0.428879976 -0.0222675987 -0.90308702 -1.23599005 + 1 -0.413357168 -0.0319771096 -0.910007298 -1.26271999 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -1 2.08830983e-007 0 -4.99411011 + 0.166666999 -1 0 0 -4.71594 + 0.300000012 -1 0 0 -4.6420598 + 0.433333009 -1 0 0 -4.64207983 + 0.56666702 -1 0 0 -4.81885004 + 0.633333027 -1 0 2.88693997e-007 -4.91828012 + 0.699999988 -1 0 0 -5.01912022 + 0.899999976 -1 0 0 -5.01896 + 1 -1 0 1.9369898e-007 -5.01912022 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.839908838 -0.0097512994 0.542639852 -0.51797998 + 0.166666999 0.717139661 -0.30612281 0.626098692 -0.43068701 + 0.300000012 0.670464814 -0.36064887 0.648389816 -0.396600008 + 0.433333009 0.678416908 -0.349390954 0.646278918 -0.390240997 + 0.56666702 0.938440323 -0.163859054 0.304105103 -0.416388035 + 0.633333027 0.98766762 -0.0738814697 0.138036951 -0.458761007 + 0.699999988 0.999999106 0.00121189014 -0.000606633082 -0.515011013 + 0.899999976 0.999999106 0.00121178012 -0.000606615038 -0.515011013 + 1 0.999999106 0.00121177011 -0.000606558053 -0.515011013 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.490556985 -0.00350509025 0.871402085 -0.196588993 + 0.433333009 0.490556985 -0.00350508024 0.871402085 -0.196588993 + 0.633333027 0.932607412 0.0410605185 0.358549148 -0.403566003 + 1 0.932607412 0.0410605185 0.358549148 -0.403566003 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.985649586 -0.148611933 0.0800588727 -0.720665991 + 0.433333009 -0.985649705 -0.14861095 0.0800588802 -0.720665991 + 0.633333027 -0.966314852 -0.103783987 -0.235508978 -0.713061988 + 1 -0.966314852 -0.103783987 -0.235508978 -0.713061988 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.58394593 -0.472547978 -0.660079956 -0.641213 + 0.433333009 0.58394593 -0.472547978 -0.660079956 -0.641213 + 0.633333027 0.284974158 -0.477060199 -0.831386387 -0.734803081 + 1 0.284974158 -0.477060199 -0.831386387 -0.734803081 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.0152072022 -0.0590834133 -0.998137236 -0.158827022 + 0.433333009 -0.0152066024 -0.0590837114 -0.998137176 -0.158827022 + 0.633333027 0.299729884 -0.282676905 0.911183715 -0.207195014 + 1 0.299729973 -0.282675982 0.911183953 -0.207194999 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.975945175 -0.213303015 -0.0450870059 -0.807114065 + 0.433333009 -0.975945175 -0.213303044 -0.0450870059 -0.807115078 + 0.633333027 -0.977594078 -0.203334004 -0.0544532053 -0.806791008 + 1 -0.977593839 -0.203334987 -0.0544533879 -0.806789935 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.313465059 -0.730052114 -0.607259095 -5.7093401 + 0.433333009 -0.313465059 -0.730052114 -0.607259095 -5.7093401 + 0.633333027 -0.0310595036 -0.574857056 -0.817664146 -5.46402979 + 1 -0.0310597029 -0.574857056 -0.817664146 -5.46402979 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.881994247 0.0233147051 -0.470683128 -0.386296988 + 0.433333009 0.881994247 0.0233147051 -0.470683128 -0.386296988 + 0.633333027 -0.872081816 -0.287552953 0.395962894 -5.8018198 + 1 -0.872082114 -0.287553072 0.395962089 -5.8018198 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.216023937 -0.38435787 -0.897553742 -1.87065005 + 0.433333009 -0.216023937 -0.38435787 -0.897553742 -1.87065005 + 0.633333027 -0.216023937 -0.38435787 -0.897553742 -1.87065005 + 1 -0.216023937 -0.38435787 -0.897553742 -1.87065005 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.302862942 -0.246638969 0.920566797 -5.66542006 + 0.433333009 -0.302862942 -0.246638969 0.920566797 -5.66542006 + 0.633333027 -0.306641906 -0.285137951 0.908111811 -5.63344002 + 1 -0.306641906 -0.285137951 0.908111811 -5.63344002 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.837749898 -0.291370004 0.46182096 -6.04639006 + 0.433333009 -0.837749898 -0.291370004 0.46182096 -6.04639006 + 0.633333027 -0.842909098 -0.277991027 0.460679054 -6.05145979 + 1 -0.842909336 -0.277990133 0.460679203 -6.05145979 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.295196891 0.10649696 0.94948256 -1.47220004 + 0.433333009 -0.295196891 0.10649696 0.94948256 -1.47220004 + 0.633333027 -0.187782899 0.111707941 0.975837529 -1.78708994 + 1 -0.187782899 0.111707941 0.975837529 -1.78708994 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.477456123 -0.284708053 -0.83125025 -5.97884989 + 0.433333009 0.477454811 -0.284708917 -0.831250727 -5.97884989 + 0.633333027 0.569400966 0.435099006 -0.697475016 -6.06111002 + 1 0.569400072 0.435100049 -0.697475076 -6.06111002 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.897430003 0.358402967 -0.257228971 -5.80103016 + 0.433333009 -0.897430003 0.358402967 -0.257228971 -5.80103016 + 0.633333027 -0.969851255 0.160547048 -0.183339044 -5.87599993 + 1 -0.969851255 0.160547048 -0.183339044 -5.87599993 +endnode +doneanim kdbckdie a_dfa2_coat + +#MAXANIM ASCII +newanim deadbck a_dfa2_coat + length 0.0333333015 + transtime 0.5 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 2 + 0 0.00160425005 -0.607183993 0.143778995 + 0.0333333015 0.00160425005 -0.607183993 0.143778995 + orientationkey 2 + 0 -0.998372555 0.0561072789 0.0102063958 -1.72151995 + 0.0333333015 -0.998372555 0.0561072789 0.0102063958 -1.72151995 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.925240993 -0.366097003 0.0995090008 -0.289314002 + 0.0333333015 0.925240993 -0.366097003 0.0995090008 -0.289314002 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.342405885 -0.394249827 -0.852833688 -1.59080005 + 0.0333333015 -0.342405885 -0.394249827 -0.852833688 -1.59080005 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 1 1.04682999e-006 2.26596001e-007 -5.32860994 + 0.0333333015 1 9.44019973e-007 3.2691301e-007 -5.32860994 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.646979928 0.331639975 0.68660897 -5.95792007 + 0.0333333015 0.64697969 0.33164084 0.686608791 -5.95792007 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.519707143 0.682328105 -0.514133096 -1.32301009 + 0.0333333015 0.519707143 0.682328105 -0.514133096 -1.32301009 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.935052812 -0.294064939 0.197994992 -0.422212958 + 0.0333333015 -0.935052812 -0.294064939 0.197994992 -0.422212958 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.686435997 0.277911991 -0.671989977 -0.925846994 + 0.0333333015 0.686435997 0.277911991 -0.671989977 -0.925846994 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.584557235 -0.326271147 0.742859304 -0.255682021 + 0.0333333015 0.584557235 -0.326271147 0.742859304 -0.255682021 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.0833269358 -0.157829076 -0.983944416 -1.61379004 + 0.0333333015 -0.0833268389 -0.157829076 -0.983944416 -1.61379004 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.9910267 0.124119967 -0.0496018864 -6.02129984 + 0.0333333015 -0.9910267 0.124119967 -0.0496020839 -6.02129984 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.99999994 0.000324930967 1.5115198e-005 -0.558493972 + 0.0333333015 0.99999994 0.00032501496 1.51118984e-005 -0.558493972 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.413356751 -0.0319768786 -0.910007536 -1.26271999 + 0.0333333015 -0.413356751 -0.031976983 -0.910007477 -1.26272011 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -1 0 1.55063006e-007 -5.0191102 + 0.0333333015 -1 1.24132995e-007 0 -5.0191102 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.999999106 0.00121207011 -0.00060675299 -0.515009999 + 0.0333333015 0.999999106 0.00121243007 -0.000606766087 -0.515011013 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.932607412 0.0410604179 0.358549148 -0.403566003 + 0.0333333015 0.932607412 0.0410604179 0.358549148 -0.403566003 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.966314852 -0.103783987 -0.235508978 -0.713061988 + 0.0333333015 -0.966314852 -0.103783987 -0.235508978 -0.713061988 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.284974158 -0.477060199 -0.831386387 -0.734803081 + 0.0333333015 0.284974158 -0.477060199 -0.831386387 -0.734803081 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.299729884 -0.282676905 0.911183715 -0.207195014 + 0.0333333015 0.299729884 -0.282676905 0.911183715 -0.207195014 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.977593839 -0.203334987 -0.0544533879 -0.806789935 + 0.0333333015 -0.977593839 -0.203334987 -0.0544533879 -0.806789935 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.0310596041 -0.574857056 -0.817664146 -5.46402979 + 0.0333333015 -0.0310596041 -0.574857056 -0.817664146 -5.46402979 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.872082114 -0.287553072 0.395962089 -5.8018198 + 0.0333333015 -0.872082114 -0.287553072 0.395962089 -5.8018198 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.216023937 -0.38435787 -0.897553742 -1.87065005 + 0.0333333015 -0.216023937 -0.38435787 -0.897553742 -1.87065005 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.306641906 -0.285137951 0.908111811 -5.63344002 + 0.0333333015 -0.306641906 -0.285137951 0.908111811 -5.63344002 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.842909336 -0.277990133 0.460679203 -6.05145979 + 0.0333333015 -0.842909336 -0.277990133 0.460679203 -6.05145979 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.187782899 0.111707941 0.975837529 -1.78708994 + 0.0333333015 -0.187782899 0.111707941 0.975837529 -1.78708994 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.569399893 0.435098946 -0.69747591 -6.06111002 + 0.0333333015 0.569399893 0.435098946 -0.69747591 -6.06111002 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.969851255 0.160547048 -0.183339044 -5.87599993 + 0.0333333015 -0.969851255 0.160547048 -0.183339044 -5.87599993 +endnode +doneanim deadbck a_dfa2_coat + +#MAXANIM ASCII +newanim gutokdb a_dfa2_coat + length 1 + transtime 0.25 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 4 + 0 0.00160425005 -0.607183993 0.143778995 + 0.266667008 0.00160425005 -0.607183993 0.143778995 + 0.600000024 0.00160425005 -0.607183993 0.143778995 + 1 0.00162174995 -0.60531199 0.143644005 + orientationkey 4 + 0 -0.998372555 0.0561072789 0.0102063958 -1.72151995 + 0.266667008 -0.998372555 0.0561072789 0.0102063958 -1.72151995 + 0.600000024 -0.998372555 0.0561072789 0.0102063958 -1.72151995 + 1 -0.997170925 0.0701384023 0.0270316992 -1.44531 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.925240695 -0.366097867 0.0995088667 -0.289314002 + 0.266667008 0.972619176 -0.0496687107 -0.227035046 -0.720871985 + 0.600000024 0.96874696 -0.124604993 0.214482978 -1.04032004 + 0.866666973 0.962354422 -0.226068094 0.150888056 -0.712624073 + 1 0.954307258 -0.242607057 0.174469039 -0.645707011 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.342405885 -0.394249827 -0.852833688 -1.59080005 + 0.266667008 -0.31959793 -0.455799878 -0.830724776 -1.46644998 + 0.433333009 -0.332480967 -0.503341913 -0.797560871 -1.36403 + 0.600000024 0.478996933 -0.692877948 -0.538963914 -1.11459005 + 0.866666973 0.459968001 -0.703473985 -0.541805983 -1.19025004 + 1 0.488853902 -0.689951897 -0.533842862 -1.19166994 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 1 6.65436005e-007 0 -5.32860994 + 0.266667008 -1 -4.44019008e-007 0 -1.09595001 + 0.433333009 -0.999428213 -0.00910563208 0.0325624086 -0.955226004 + 0.600000024 -0.990768135 0.00404394045 0.135507017 -0.461935014 + 0.866666973 -0.996640146 -0.0105116013 0.08122731 -0.777227998 + 1 -1 -3.36751015e-007 0 -0.774917006 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.646979928 0.331639975 0.68660897 -5.95792007 + 0.266667008 0.29132694 0.282499939 0.913959742 -5.46049976 + 0.433333009 -0.147183925 0.306925893 -0.940283656 -5.74062014 + 0.600000024 -0.144119933 -0.497971803 0.855133653 -1.01315999 + 0.866666973 0.0433530025 -0.280877024 0.958764136 -1.13571 + 1 0.0254642051 -0.297843039 0.954275191 -1.15281999 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.519707143 0.682328105 -0.514133096 -1.32301009 + 0.133332998 0.695836186 0.585673094 -0.415691108 -1.51166999 + 0.266667008 0.898348868 0.438105941 -0.0321320966 -1.34369004 + 0.600000024 0.763314009 0.644801021 0.0397913978 -1.32509005 + 0.866666973 0.815079927 0.577682912 0.0438994952 -1.40635002 + 1 0.817109644 0.576467752 0.00409322791 -1.38873005 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.935052812 -0.294064939 0.197994992 -0.422212958 + 0.133332998 -0.986795366 -0.108703047 0.120077044 -0.975212991 + 0.266667008 -0.990909159 -0.0509145074 0.124526016 -1.28292012 + 0.600000024 -0.993236363 -0.0570582189 0.101123035 -1.53213 + 0.866666973 -0.993458152 -0.0577373058 0.0985258147 -1.56462002 + 1 -0.993268251 -0.0571543202 0.100755028 -1.53666997 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.686435997 0.277911991 -0.671989977 -0.925846994 + 0.133332998 0.845720649 0.384508878 -0.37001285 -1.07582998 + 0.266667008 0.554976821 0.561122835 -0.614118814 -1.24697995 + 0.600000024 0.51937604 0.564001083 -0.641990066 -1.36515999 + 0.866666973 0.552084982 0.529335082 -0.644209981 -1.38966 + 1 0.551375926 0.55972892 -0.618617952 -1.38296998 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.584557235 -0.326271147 0.742859304 -0.255682021 + 0.266667008 0.306984156 0.196697101 0.93116647 -0.220453992 + 0.600000024 -0.143866971 0.190750971 0.971038818 -0.369993001 + 0.866666973 -0.858234882 -0.115822978 0.500017941 -0.277453989 + 1 -0.792695999 -0.0991144031 0.601505935 -0.396638006 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.0833268389 -0.157829076 -0.983944416 -1.61379004 + 0.133332998 -0.295488119 -0.366036117 -0.882442236 -0.667077005 + 0.266667008 -0.550101876 -0.570720851 -0.609643877 -0.560193002 + 0.600000024 -0.683331192 -0.655934215 -0.32063812 -0.469114035 + 0.733332992 -0.854029179 -0.515489101 0.0700365156 -0.414903015 + 0.866666973 -0.88490212 -0.274463028 0.376322061 -0.443186015 + 1 -0.906083047 -0.37561506 0.194748029 -0.42157501 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.991026402 0.124122061 -0.0496018194 -6.02129984 + 0.133332998 0.996039391 -0.0801691338 0.0384510197 -0.395130962 + 0.266667008 0.998728693 -0.0415021926 0.0286097918 -0.707076967 + 0.600000024 -0.999476433 0.0220758095 -0.0236538071 -5.14373016 + 0.733332992 -0.999487162 0.0216920041 -0.0235559065 -5.13038015 + 0.866666973 -0.999491751 0.0215249956 -0.0235130936 -5.1244998 + 1 -0.999493301 0.0214693081 -0.0234989095 -5.12251997 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.99999994 0.000325037981 1.51923987e-005 -0.558493972 + 0.133332998 0.888281286 0.0360097066 -0.45788613 -0.336236 + 0.266667008 0.617077172 0.397940159 -0.678866267 -0.281909019 + 0.600000024 0.540555954 0.683873951 -0.490015984 -0.291368991 + 0.733332992 0.464099973 0.667151988 -0.582682967 -0.364502966 + 0.866666973 0.456039846 0.639760733 -0.618654847 -0.408102006 + 1 0.506130159 0.508205175 -0.696821213 -0.36264503 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.413357168 -0.0319770128 -0.910007298 -1.26271987 + 0.266667008 -0.610897958 -0.0769900903 -0.787957013 -0.941626012 + 0.600000024 -0.851167858 0.0670545921 -0.520592928 -0.63199693 + 0.866666973 -0.925466597 0.340864837 -0.165295929 -0.568256915 + 1 -0.91240412 0.235651031 -0.334645033 -0.601894021 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -1 0 0 -5.01912022 + 0.266667008 -1 0 0 -5.07048988 + 0.600000024 -1 1.47324002e-007 0 -5.03997993 + 0.866666973 -1 0 0 -5.00338984 + 1 -1 0 0 -4.99412012 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.999999106 0.00121195009 -0.000607084075 -0.515011013 + 0.266667008 0.999999106 0.00121180015 -0.000607034075 -0.515011013 + 0.600000024 0.959875703 -0.0196149945 0.279738903 -0.482924014 + 0.866666973 0.865669966 -0.0360010974 0.499318957 -0.486624032 + 1 0.839908838 -0.00975112803 0.542639852 -0.51797998 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.932607412 0.0410604179 0.358549148 -0.403566003 + 0.266667008 0.932607412 0.0410604179 0.358549148 -0.403566003 + 0.600000024 0.932607412 0.0410604179 0.358549148 -0.403566003 + 1 0.490556985 -0.00350502995 0.871402085 -0.196588993 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.966314852 -0.103783987 -0.235508978 -0.713061988 + 0.266667008 -0.966314852 -0.103783987 -0.235508978 -0.713061988 + 0.600000024 -0.966314852 -0.103783987 -0.235508978 -0.713061988 + 1 -0.985706627 -0.147917941 0.080639571 -0.807929993 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.284974158 -0.477060199 -0.831386387 -0.734803081 + 0.266667008 0.284974158 -0.477060199 -0.831386387 -0.734803081 + 0.600000024 0.284974158 -0.477060199 -0.831386387 -0.734803081 + 1 -0.583946049 0.472549081 0.660079062 -5.64197016 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.299729884 -0.282676905 0.911183715 -0.207195014 + 0.266667008 0.299729884 -0.282676905 0.911183715 -0.207195014 + 0.600000024 0.299729884 -0.282676905 0.911183715 -0.207195014 + 1 0.461471826 -0.252204925 -0.850550652 -0.166515991 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.977593839 -0.203334987 -0.0544533879 -0.806789935 + 0.266667008 -0.977593839 -0.203334987 -0.0544533879 -0.806789935 + 0.600000024 -0.977593839 -0.203334987 -0.0544533879 -0.806789935 + 1 -0.975945175 -0.213303015 -0.0450870059 -0.807114065 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.0310596041 -0.574857056 -0.817664146 -5.46402979 + 0.266667008 -0.0310596041 -0.574857056 -0.817664146 -5.46402979 + 0.600000024 -0.0310596041 -0.574857056 -0.817664146 -5.46402979 + 1 -0.43163693 -0.720878959 -0.542238951 -5.67205 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.872082114 -0.287553072 0.395962089 -5.8018198 + 0.266667008 -0.872082114 -0.287553072 0.395962089 -5.8018198 + 0.600000024 -0.872082114 -0.287553072 0.395962089 -5.8018198 + 1 0.609720945 -0.527511954 -0.591583967 -0.18443501 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.216023937 -0.38435787 -0.897553742 -1.87065005 + 0.266667008 -0.216023937 -0.38435787 -0.897553742 -1.87065005 + 0.600000024 -0.216023937 -0.38435787 -0.897553742 -1.87065005 + 1 -0.216023937 -0.38435787 -0.897553742 -1.87065005 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.306641906 -0.285137951 0.908111811 -5.63344002 + 0.266667008 -0.306641906 -0.285137951 0.908111811 -5.63344002 + 0.600000024 -0.306641906 -0.285137951 0.908111811 -5.63344002 + 1 -0.302862942 -0.246638969 0.920566797 -5.66542006 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.842909336 -0.277990133 0.460679203 -6.05145979 + 0.266667008 -0.842909336 -0.277990133 0.460679203 -6.05145979 + 0.600000024 -0.842909336 -0.277990133 0.460679203 -6.05145979 + 1 -0.837750018 -0.291368008 0.461822003 -6.04639006 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.187782899 0.111707941 0.975837529 -1.78708994 + 0.266667008 -0.187782899 0.111707941 0.975837529 -1.78708994 + 0.600000024 -0.187782899 0.111707941 0.975837529 -1.78708994 + 1 -0.295196891 0.10649696 0.94948256 -1.47220004 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.569399893 0.435098946 -0.69747591 -6.06111002 + 0.266667008 0.569399893 0.435098946 -0.69747591 -6.06111002 + 0.600000024 0.569399893 0.435098946 -0.69747591 -6.06111002 + 1 0.503335953 -0.530196965 -0.682307899 -5.97989988 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.969851255 0.160547048 -0.183339044 -5.87599993 + 0.266667008 -0.969851255 0.160547048 -0.183339044 -5.87599993 + 0.600000024 -0.969851255 0.160547048 -0.183339044 -5.87599993 + 1 -0.897429764 0.358402848 -0.257229924 -5.80103016 +endnode +doneanim gutokdb a_dfa2_coat + +#MAXANIM ASCII +newanim gustandb a_dfa2_coat + length 1 + transtime 0.25 + animroot rootdummy + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep + event 0.93333298 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 18 + 0 0.00162174995 -0.60531199 0.143644005 + 0.200000003 0.00162528001 -0.41741401 0.28430301 + 0.233333007 0.00162535999 -0.408959001 0.300996006 + 0.266667008 0.00162535999 -0.389196992 0.340207994 + 0.300000012 0.00162543997 -0.363611996 0.430743009 + 0.333332986 0.00162559003 -0.310077012 0.508351982 + 0.366667002 0.00162620004 -0.252784014 0.56200999 + 0.400000006 0.00162634999 -0.192265004 0.599292994 + 0.433333009 0.00162634999 -0.118065998 0.622519016 + 0.466666996 0.00162650004 -0.0764610022 0.631075025 + 0.533333004 0.00162687001 -0.0121309003 0.634871006 + 0.600000024 0.00162694999 0.0328009017 0.677933991 + 0.666666985 0.00162726 0.0476058982 0.803866029 + 0.733332992 0.00162793999 0.0197394993 0.921739995 + 0.800000012 0.00162861997 -0.0233574994 0.973330021 + 0.866666973 0.00162937003 -0.0467806011 0.997263014 + 0.93333298 0.00162967003 -0.0445002988 1.01141 + 1 0.00162997004 -0.0319061987 1.01530004 + orientationkey 10 + 0 -0.997170925 0.0701384023 0.0270316992 -1.44531 + 0.200000003 -0.434760183 -0.588875234 0.68132925 -0.289328992 + 0.266667008 -0.359125853 -0.634213746 0.684690833 -0.289708018 + 0.333332986 -0.127449974 -0.736247897 0.664601803 -0.303833991 + 0.366667002 0.243245989 -0.79916501 0.549696922 -0.379276007 + 0.400000006 0.395384014 -0.718922019 0.571684003 -0.361905009 + 0.533333004 0.846304893 -0.213144973 0.488197953 -0.407669991 + 0.733332992 0.798152685 -0.000679403776 0.602454841 -0.349854976 + 0.866666973 0.720677972 0.201116994 0.663456976 -0.327621967 + 1 0.601938009 0.362342 0.711603045 -0.317221999 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.954307258 -0.242607057 0.174469039 -0.645707011 + 0.200000003 0.880666792 -0.251999974 0.401150912 -0.523491979 + 0.300000012 0.602793097 -0.568377197 0.559989154 -0.700449944 + 0.400000006 0.641537845 -0.621079862 0.450209886 -0.811732948 + 0.533333004 0.790908217 -0.551653206 0.264845073 -0.444016993 + 0.93333298 0.872886896 -0.425721914 0.23838897 -0.258304 + 1 0.882683277 -0.407417148 0.234268084 -0.244462997 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 0.488853157 -0.689952254 -0.53384316 -1.19166994 + 0.100000001 0.50517416 -0.702678263 -0.501041234 -0.666254997 + 0.200000003 -0.0627978146 -0.70454514 0.706875205 -0.484418005 + 0.266667008 0.383422047 -0.880531073 0.278662026 -0.500946999 + 0.300000012 0.298150122 -0.903584361 0.307639122 -0.52225697 + 0.333332986 0.17703104 -0.878096223 0.444530159 -0.540553987 + 0.366667002 -0.0562071018 -0.900569975 0.431062013 -0.531955004 + 0.400000006 -0.0593243092 -0.861316085 0.504594088 -0.617749989 + 0.466666996 0.274897069 -0.692114174 0.667390108 -0.479319036 + 0.533333004 0.136754021 -0.671170115 0.728580177 -0.444979042 + 0.56666702 -0.0265240967 -0.622291863 0.782335818 -0.408243001 + 0.600000024 -0.208127037 -0.534099042 0.819403052 -0.383369029 + 0.633333027 -0.588545322 -0.341837108 0.732640326 -0.409261972 + 0.699999988 -0.86833483 -0.0944934711 0.486893892 -0.604686975 + 0.733332992 -0.851890504 -0.139700934 0.504743695 -0.646191001 + 0.93333298 -0.862336576 -0.505667686 -0.0259972867 -0.395745993 + 1 -0.809946656 -0.565502763 -0.155540958 -0.375214964 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -1 -2.72680012e-007 0 -0.774917006 + 0.100000001 -0.977061927 -0.208659977 0.0425556935 -1.38954997 + 0.200000003 -0.958253264 -0.279051065 -0.0622992143 -2.20307994 + 0.266667008 -0.965862751 -0.257823944 -0.0252172928 -1.98922002 + 0.300000012 -0.961656988 -0.274028957 -0.0111362999 -1.71423995 + 0.333332986 -0.961263776 -0.273276955 -0.0359390937 -1.56148005 + 0.366667002 -0.963064075 -0.265736997 -0.0434904993 -1.35281014 + 0.400000006 -0.968938112 -0.234354034 -0.0789756104 -1.29706001 + 0.466666996 -0.980853975 -0.0907874927 -0.172287986 -1.63127005 + 0.533333004 -0.984266341 -0.00223208079 -0.176677048 -1.74879003 + 0.56666702 -0.983457267 -0.048231706 -0.174601048 -1.63340998 + 0.600000024 -0.978264213 -0.113126032 -0.173786044 -1.52331996 + 0.633333027 -0.965319216 -0.194908038 -0.173694059 -1.19215 + 0.699999988 -0.86631006 -0.379273057 -0.325051993 -0.525040984 + 0.733332992 -0.867848992 -0.323231012 -0.377306014 -0.366816014 + 0.93333298 -0.98333478 0.178606957 0.0339443907 -1.27391005 + 1 -0.979039788 0.197626963 0.049240794 -1.42191005 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.0254641045 -0.297843039 0.954275191 -1.15281999 + 0.100000001 0.808379054 -0.494243056 0.319761008 -0.855736971 + 0.200000003 -0.706950843 0.165871963 -0.687536895 -5.05401993 + 0.266667008 0.784554124 -0.461303055 0.414336056 -0.812811017 + 0.300000012 0.81273514 -0.553503036 0.181923017 -0.641628981 + 0.333332986 0.791423082 -0.594156027 0.143625006 -0.554987013 + 0.366667002 0.626078188 -0.777320206 -0.0616396144 -0.347746998 + 0.400000006 0.559298754 -0.821781754 -0.108901963 -0.386109024 + 0.633333027 0.386931986 -0.511049986 -0.767535985 -0.409002006 + 0.699999988 0.203531921 -0.753885746 -0.624684751 -0.350136012 + 0.733332992 0.175768018 -0.863161206 -0.473348051 -0.353451997 + 0.93333298 0.818898618 0.119367957 -0.561387837 -0.147899002 + 1 0.74431771 0.319342881 -0.586524785 -0.125170007 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.817109644 0.576467752 0.00409319811 -1.38873005 + 0.100000001 0.715887249 0.66984421 0.19701308 -0.965484023 + 0.200000003 0.594579995 0.801988006 0.0573567078 -0.671067953 + 0.233333007 0.58214128 0.811152279 0.0560668185 -0.700515032 + 0.266667008 0.508563161 0.857006371 0.0830882192 -0.683393002 + 0.300000012 0.22294195 0.966448784 0.127567992 -0.647080004 + 0.333332986 0.254515082 0.952433348 0.167609066 -0.791987002 + 0.366667002 0.264426053 0.945526242 0.189892039 -0.916332006 + 0.400000006 -0.123233981 0.918532908 0.375646979 -0.870890021 + 0.466666996 0.170758948 0.965011716 0.198981926 -0.93551892 + 0.633333027 0.194807068 0.970073342 0.144941047 -0.774524987 + 0.733332992 0.146063969 0.9853549 0.0879834816 -0.62487793 + 0.93333298 -0.147440046 0.958138287 -0.245423064 -0.310358971 + 1 -0.235332042 0.909742177 -0.342035085 -0.276643008 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -0.993268251 -0.0571543202 0.100755028 -1.53666997 + 0.100000001 -0.997977376 -0.0143193034 0.0619364195 -1.38531995 + 0.200000003 -0.998498201 0.0504008047 0.0214730036 -1.10470009 + 0.233333007 -0.980027378 0.186515078 -0.0689813271 -1.22283006 + 0.266667008 -0.915280938 0.353622973 -0.192902982 -1.25727999 + 0.300000012 -0.765522242 0.485624135 -0.422072113 -1.16474998 + 0.333332986 -0.802275896 0.428610951 -0.415506959 -1.09807003 + 0.366667002 -0.853082001 0.360599011 -0.377119988 -1.08390999 + 0.400000006 -0.702246189 0.36544311 -0.610984147 -0.755333006 + 0.466666996 -0.782641232 -0.19275406 -0.591877222 -0.705012023 + 0.633333027 -0.928667128 -0.149164021 -0.339599043 -1.99127996 + 0.733332992 -0.946559191 -0.141554013 -0.289807051 -1.81956995 + 0.93333298 -0.98360461 -0.116642937 -0.137536943 -1.43331003 + 1 -0.987616062 -0.11188601 -0.109982006 -1.38054991 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.551375926 0.55972892 -0.618617952 -1.38296998 + 0.100000001 0.382869095 0.711252153 -0.58951813 -1.23587 + 0.200000003 0.133340955 0.962367713 -0.236787945 -1.16968 + 0.233333007 0.241332904 0.948616683 -0.204657927 -1.11995995 + 0.266667008 0.316179872 0.942293644 -0.110058963 -1.02313006 + 0.300000012 0.297744155 0.950463355 0.0892624408 -0.969391942 + 0.333332986 0.16773808 0.863160372 0.476254195 -0.505259991 + 0.366667002 -0.190551981 -0.195929974 0.961925864 -0.358821005 + 0.400000006 -0.948808372 0.00357946078 0.315832108 -0.363111019 + 0.466666996 -0.920448363 0.192063078 0.34042114 -0.501504004 + 0.633333027 0.578931093 -0.377455086 0.722749233 -0.694993973 + 0.733332992 -0.360417992 -0.575029075 0.734466076 -0.423589021 + 0.93333298 -0.73187542 -0.235405132 0.639486313 -0.247620001 + 1 -0.797372162 -0.137170032 0.587692142 -0.232201993 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0.733332992 + tightness 7.00649232e-045 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.792695999 -0.0991142914 0.601505995 -0.396638036 + 0.200000003 -0.41215989 0.696140826 0.587802827 -0.315246999 + 0.400000006 -0.6382671 0.256708056 0.725752115 -0.192504987 + 0.533333004 -0.624609172 -0.555274129 0.549121141 -0.193265006 + 0.733332992 -0.463404953 -0.83888489 0.285530984 -0.229693994 + 0.866666973 -0.501259983 0.796852052 0.337291032 -0.170179978 + 1 -0.846320868 -0.45735997 0.273061961 -0.0921598002 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.906083047 -0.37561506 0.194748029 -0.42157501 + 0.200000003 -0.953620732 -0.292082906 -0.0727674812 -2.25574994 + 0.233333007 -0.9578318 -0.273715943 -0.0873945877 -2.27960992 + 0.266667008 -0.960748851 -0.258131981 -0.101633988 -2.27741003 + 0.333332986 -0.959722936 -0.242910981 -0.141159981 -2.03203011 + 0.366667002 -0.964977145 -0.172905013 -0.197289035 -1.99452996 + 0.400000006 -0.962820053 -0.185350001 -0.196527034 -1.93496001 + 0.433333009 -0.963122189 -0.181149036 -0.198949054 -1.89252985 + 0.466666996 -0.964666963 -0.17774497 -0.194484979 -1.88722003 + 0.533333004 -0.967293084 -0.174545005 -0.184060022 -1.90749002 + 0.600000024 -0.967444003 -0.161081001 -0.195205003 -1.72671998 + 0.666666985 -0.965418637 -0.122431949 -0.23016791 -1.45026004 + 0.733332992 -0.969076812 -0.085047096 -0.231639951 -1.24297988 + 0.800000012 -0.953948975 -0.256373972 -0.155735984 -1.25079 + 0.866666973 -0.905086279 -0.410360157 -0.11146003 -1.32700002 + 0.93333298 -0.922079682 -0.370209873 -0.112754971 -1.22437 + 1 -0.937801898 -0.319685966 -0.135382965 -1.14674985 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.999493301 0.0214693081 -0.0234989095 -5.12251997 + 0.200000003 -0.999623299 0.0162011031 -0.0221539065 -4.90488005 + 0.233333007 -0.999664068 0.0142421015 -0.0216535013 -4.80564022 + 0.266667008 -0.999710083 0.0117485011 -0.0210165009 -4.6615901 + 0.333332986 -0.999750137 0.00921107084 -0.0203681998 -4.49155998 + 0.366667002 0.999742866 -0.00970582943 0.0204951987 -1.75643003 + 0.400000006 0.999748945 -0.00928961951 0.0203886982 -1.78594005 + 0.433333009 0.999766529 -0.00802015606 0.0200643912 -1.88044 + 0.466666996 0.999773681 -0.00746420771 0.0199222937 -1.92401004 + 0.533333004 0.999783635 -0.00664143777 0.0197120924 -1.99099004 + 0.600000024 0.999780476 -0.0069110631 0.0197810102 -1.96870995 + 0.666666985 0.999726593 -0.0107544949 0.0207628906 -1.6852001 + 0.733332992 0.999599278 -0.0172710046 0.0224274062 -1.32869017 + 0.800000012 0.999505162 -0.0210333038 0.0233880039 -1.17633998 + 0.866666973 0.999438822 -0.0233809948 0.0239873957 -1.09606004 + 0.93333298 0.999396622 -0.0247759894 0.0243433882 -1.05288005 + 1 0.999398291 -0.0247208085 0.0243292097 -1.05453002 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 0.506130159 0.508205175 -0.696821213 -0.36264503 + 0.200000003 0.981730402 0.117089048 0.149985075 -0.456782043 + 0.233333007 0.978990316 0.132025033 0.155394047 -0.442081034 + 0.266667008 0.967783511 0.174708918 0.181305915 -0.376509994 + 0.333332986 0.555891097 0.728935122 0.399548084 -0.166602001 + 0.366667002 0.671439886 0.662240863 0.33257398 -0.176148996 + 0.400000006 0.507386208 0.82858932 -0.236641094 -0.193013012 + 0.433333009 -0.42683208 0.884666324 -0.187563062 -0.19195798 + 0.466666996 -0.688838303 0.712504327 -0.133564055 -0.250508994 + 0.533333004 -0.840801239 0.535396099 -0.0800264254 -0.36124602 + 0.600000024 -0.903655112 0.420670062 -0.0802753046 -0.487697959 + 0.666666985 -0.899637699 0.405560851 -0.161778942 -0.467474997 + 0.733332992 -0.735076189 0.544771135 -0.403593093 -0.338600993 + 0.800000012 -0.421733081 0.824405193 -0.377488077 -0.247335002 + 0.866666973 -0.0873447806 0.995198786 -0.0441619903 -0.216371 + 0.93333298 -0.086247012 0.958043158 -0.273340046 -0.227092981 + 1 -0.221464917 0.908655643 -0.353974849 -0.229797006 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -0.91240412 0.235651031 -0.334645033 -0.601894021 + 0.100000001 -0.80014801 -0.446818024 0.400146008 -1.45772004 + 0.166666999 -0.570891082 -0.561058044 0.599414051 -1.68420994 + 0.200000003 -0.475033015 -0.591515005 0.65150106 -1.80376005 + 0.233333007 -0.498088896 -0.56822288 0.655003965 -1.77240002 + 0.266667008 -0.50543499 -0.523483992 0.685930014 -1.69509006 + 0.300000012 -0.554037809 -0.441167831 0.705983758 -1.55335999 + 0.333332986 -0.575094938 -0.329472959 0.748807967 -1.41408002 + 0.366667002 -0.641616046 -0.193754032 0.742151082 -1.39747 + 0.400000006 -0.560052991 -0.100273997 0.822365999 -1.37398005 + 0.433333009 -0.51279521 -0.00865021348 0.8584674 -1.33816004 + 0.466666996 -0.514621913 0.0118053993 0.857335925 -1.31659997 + 0.533333004 -0.528852999 0.0195585992 0.848488033 -1.29342997 + 0.600000024 -0.500518799 0.0977831632 0.860185683 -1.22158003 + 0.666666985 -0.431930006 0.132824004 0.892073035 -1.19792998 + 0.733332992 -0.386039972 0.0716800913 0.919692934 -1.12986004 + 0.800000012 -0.411306918 0.0867561847 0.907358766 -1.03351998 + 0.866666973 -0.413367987 0.0300824977 0.910067022 -0.795172989 + 0.93333298 -0.412503093 0.496942103 0.76347214 -0.552809 + 1 -0.198559046 0.601930082 0.77346909 -0.604655981 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 -1 0 0 -4.99412012 + 0.100000001 -1 0 0 -4.71318007 + 0.166666999 -1 0 2.59199993e-007 -4.62523985 + 0.200000003 -0.999938309 0.00456314161 -0.0101253036 -4.74539995 + 0.233333007 -0.999879956 0.00635922002 -0.0141272992 -4.71163988 + 0.266667008 0.999052823 -0.0229547974 0.036965996 -1.53906989 + 0.300000012 0.997127354 -0.0313713104 0.0689410195 -1.57226002 + 0.333332986 0.994195223 -0.0477304123 0.0964243189 -1.63160002 + 0.366667002 0.999086261 -0.0191699043 0.0381991081 -1.77030003 + 0.400000006 0.998781085 -0.0256437007 0.042175699 -1.77344 + 0.433333009 1 0 0 -1.83059001 + 0.466666996 1 0 0 -1.82493997 + 0.533333004 1 0 0 -1.81165004 + 0.600000024 1 0 0 -1.72691 + 0.666666985 1 0 0 -1.40257001 + 0.733332992 1 0 -1.20360994e-007 -1.01918995 + 0.800000012 1 0 0 -1.46818995 + 0.866666973 1 0 0 -1.36882997 + 0.93333298 1 0 0 -1.02120996 + 1 1 0 0 -0.819365025 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 20 + 0 0.839908838 -0.00975136925 0.542639852 -0.51797998 + 0.100000001 0.747423232 0.0140226046 0.664200187 -0.826749921 + 0.166666999 0.722736061 -0.568947017 0.392367005 -0.543712974 + 0.200000003 0.771044195 -0.228493065 0.594375134 -0.426279992 + 0.233333007 0.679500639 -0.28567484 0.675772667 -0.522858977 + 0.266667008 0.643797874 -0.336099952 0.687430859 -0.563364923 + 0.300000012 0.743680954 -0.43145299 0.510672987 -0.655061007 + 0.333332986 0.840676248 -0.436530083 0.320476115 -0.761677921 + 0.366667002 0.921634674 -0.342075914 0.183230951 -0.919476926 + 0.400000006 0.96185869 -0.237092927 0.136435956 -0.974665999 + 0.433333009 0.970365167 -0.21292904 0.114248022 -0.993358076 + 0.466666996 0.985559285 -0.159187049 -0.0577267185 -0.983448088 + 0.533333004 0.987884641 -0.10272596 -0.116323963 -1.03009999 + 0.600000024 0.973090291 -0.114265032 -0.200097039 -1.11222005 + 0.666666985 0.977269888 -0.0953162834 -0.189362973 -1.40306997 + 0.733332992 0.983665526 -0.131416947 -0.123010941 -1.68693995 + 0.800000012 0.890394747 -0.326193899 -0.317481905 -0.745779991 + 0.866666973 -0.77715528 -0.628420234 -0.0334314108 -0.617693007 + 0.93333298 -0.652311206 -0.745455265 0.137064025 -0.778254986 + 1 -0.790707827 -0.608598888 -0.066245988 -0.779401004 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.490556985 -0.00350504019 0.871402085 -0.196588993 + 0.100000001 0.490556985 -0.0035051601 0.871402085 -0.176929995 + 0.200000003 0.490556985 -0.00350504019 0.871402085 -0.157270998 + 0.266667008 0.490557015 -0.00350490026 0.871402025 -0.144164994 + 0.333332986 0.355548024 0.443003029 0.823002994 -0.136488006 + 0.400000006 0.509941101 0.41466713 0.753665209 -0.0949606001 + 0.433333009 0.18659699 0.820160925 0.54084897 -0.136694998 + 0.5 0.0181399994 0.906525075 0.421762019 -0.189798996 + 0.533333004 0.0181401018 0.906525075 0.421762019 -0.177146003 + 0.600000024 0.156672999 0.857764006 0.489586025 -0.0970713943 + 0.666666985 0.788862467 0.172571123 0.589843333 -0.0344434008 + 0.733332992 0.478732914 -0.873871803 -0.0846338794 -0.0816762 + 0.866666973 0.0181405935 0.906524718 0.421762854 -0.0506131016 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.985706627 -0.147917926 0.0806396678 -0.807930052 + 0.100000001 -0.984407306 -0.0947420299 0.148210049 -0.306618959 + 0.200000003 0.534829855 0.562587857 0.630437851 -0.321220994 + 0.266667008 -0.19822897 0.900908828 0.386093944 -0.282714993 + 0.333332986 0.289010942 0.93471384 0.206839949 -0.342224985 + 0.366667002 0.822145998 0.510088086 0.252757013 -0.365157962 + 0.400000006 0.744120955 0.615937948 0.258658975 -0.205252007 + 0.433333009 0.968067765 0.213977978 0.130606979 -0.321747005 + 0.5 0.941624522 0.316423833 0.114974938 -0.164644003 + 0.533333004 0.983844936 0.172564998 0.0476489961 -0.158318982 + 0.600000024 0.866813362 0.474879175 0.152067065 -0.157434002 + 0.666666985 0.673099995 0.702281058 0.231814012 -0.173972994 + 0.733332992 0.47937879 0.832295716 0.278351903 -0.203736007 + 0.866666973 0.984554648 0.174115941 0.0183233917 -0.101929002 + 1 0.914671242 0.401392072 0.0475492068 -0.0613063984 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.583946049 0.472549081 0.660079062 -5.64197016 + 0.100000001 -0.473586053 -0.213158026 -0.85456419 -1.37481999 + 0.200000003 -0.832016289 -0.0310931113 -0.553879201 -2.02207994 + 0.266667008 -0.823612928 -0.00222262973 -0.567147911 -1.60265994 + 0.300000012 -0.493189037 -0.775736034 -0.393698066 -1.42182004 + 0.333332986 -0.358187109 -0.715707242 -0.599554121 -1.32113993 + 0.433333009 -0.198656067 -0.127455041 -0.971746385 -0.624496996 + 0.533333004 -0.203836024 -0.608201087 -0.767165124 -0.946399987 + 0.600000024 0.0552845187 -0.637038171 -0.768847167 -0.722941995 + 0.666666985 -0.208253995 -0.548636079 -0.809709072 -0.569626987 + 0.733332992 -0.426391006 -0.370606989 -0.825130999 -0.43729201 + 0.866666973 0.150555938 -0.650777698 -0.744191706 -0.215996996 + 1 0.75637728 -0.622597277 0.200664088 -0.217666 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.461471826 -0.252204925 -0.850550652 -0.166515991 + 0.100000001 0.00960078556 -0.423588842 -0.90580368 -0.145132005 + 0.200000003 -0.525434017 -0.100617006 -0.84486407 -0.110224001 + 0.266667008 -0.745518923 0.35837695 -0.561931968 -0.381366998 + 0.300000012 -0.211515948 0.633952916 -0.743884921 -1.31381011 + 0.333332986 -0.346022964 0.744777918 -0.570590854 -1.64514995 + 0.433333009 -0.801080942 -0.0194485988 -0.598239958 -0.339666992 + 0.533333004 0.721741974 -0.279159009 0.633370936 -0.757748067 + 0.600000024 0.659482241 -0.22375007 0.717648327 -0.54895699 + 0.666666985 0.693250895 -0.111494973 0.712019742 -0.497229993 + 0.733332992 0.720865846 0.113704979 0.683683813 -0.353210956 + 0.866666973 0.994517922 -0.00195298984 0.104548 -0.424151987 + 1 -0.366371989 0.23447302 0.900440991 -0.158410996 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.975945175 -0.213303015 -0.0450870059 -0.807114065 + 0.100000001 -0.895721376 -0.414871186 -0.159891069 -0.157620981 + 0.200000003 -0.871266186 -0.446073115 -0.20472905 -0.119057998 + 0.266667008 0.927838445 0.243694142 0.282363147 -0.212294996 + 0.300000012 0.800059974 0.592450023 -0.0943768024 -0.328527957 + 0.333332986 -0.0210326016 0.907303035 -0.419951022 -0.258637011 + 0.366667002 0.764254391 0.379518181 -0.521422267 -0.24436599 + 0.400000006 0.29027921 0.398434311 -0.870050609 -0.119782999 + 0.433333009 0.785380065 0.324562013 -0.527103066 -0.21602802 + 0.5 0.379967213 0.244204104 -0.892182291 -0.0850780904 + 0.533333004 0.422976911 0.15833497 -0.892199874 -0.0744974017 + 0.600000024 0.341139078 0.811067164 -0.475178093 -0.0588627048 + 0.666666985 0.101914994 0.986988962 0.12436299 -0.0847695023 + 0.733332992 -0.0217516981 0.924906909 0.379570901 -0.129280001 + 0.866666973 0.270828992 -0.906136036 0.324914008 -0.0860514045 + 1 0.150392026 -0.85613519 0.494383186 -0.132991984 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.431637198 -0.720879376 -0.542238235 -5.67205 + 0.100000001 -0.956165373 -0.151674062 0.250485092 -0.893276989 + 0.200000003 -0.958310127 -0.234668031 0.163011014 -1.40754998 + 0.266667008 -0.944528818 -0.303435951 0.125665978 -1.60038996 + 0.300000012 -0.675913155 0.695087194 -0.244939074 -1.41065991 + 0.333332986 -0.248134151 0.939272523 -0.237058148 -1.05982006 + 0.433333009 0.231534094 0.953305423 -0.193909079 -0.77691108 + 0.533333004 0.518676043 0.852444053 0.0656830966 -0.517544985 + 0.600000024 0.712336659 0.698164701 0.0717114732 -0.479647964 + 0.666666985 0.815262139 0.558172107 0.154245034 -0.353675961 + 0.733332992 0.594780803 0.70792079 0.380898893 -0.31417799 + 0.866666973 0.52731514 0.837459207 0.143530026 -0.314197034 + 1 0.503650069 0.863353133 -0.0309507065 -0.306102991 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.609720945 -0.527511954 -0.591583967 -0.18443501 + 0.100000001 0.783635855 0.561843932 0.26503998 -0.264486015 + 0.200000003 0.417303026 0.42791304 0.80171603 -0.126626998 + 0.266667008 0.208886012 0.031014204 0.977448106 -0.09595 + 0.300000012 -0.213412941 -0.50301981 0.837511778 -2.02929997 + 0.333332986 -0.406261057 -0.58664006 0.700575054 -1.97829998 + 0.533333004 0.801864207 -0.029389305 0.596783102 -0.304152995 + 0.600000024 0.786230922 -0.208231002 0.581790984 -0.238016993 + 0.666666985 0.892695904 -0.249369964 0.375377983 -0.237256989 + 0.733332992 0.463303059 -0.822569072 0.329743028 -0.158463985 + 0.866666973 0.933443904 0.266284972 -0.24036397 -0.249565989 + 1 0.799692214 -0.24510707 -0.548101187 -0.328159004 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.216023937 -0.38435787 -0.897553742 -1.87065005 + 0.100000001 -0.284661889 -0.29982987 -0.910532653 -1.82147002 + 0.200000003 -0.284661889 -0.29982987 -0.910532653 -1.82147002 + 0.266667008 -0.28083691 -0.291167945 -0.914522767 -1.77435005 + 0.333332986 -0.170853987 -0.344336957 -0.923168957 -1.37857997 + 0.366667002 -0.269152999 -0.462453008 -0.844804049 -1.31719005 + 0.400000006 -0.111229032 -0.480015099 -0.87018019 -1.36213005 + 0.433333009 -0.210662901 -0.415217757 -0.884994566 -1.40417004 + 0.5 -0.238323942 -0.525534809 -0.816709757 -1.55901003 + 0.533333004 -0.238323942 -0.525534809 -0.816709757 -1.55901003 + 0.600000024 -0.230692104 -0.456882209 -0.859092414 -1.47206998 + 0.666666985 -0.220585957 -0.378180921 -0.899066746 -1.39231002 + 0.733332992 -0.207530946 -0.2886419 -0.93467468 -1.32106996 + 0.866666973 -0.231188983 -0.284432977 -0.930402875 -1.33326006 + 1 -0.221991077 -0.162002072 -0.961496353 -1.26584005 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.302862942 -0.246638969 0.920566797 -5.66542006 + 0.100000001 0.135497943 0.516157746 -0.845707655 -0.881628931 + 0.200000003 0.0997726768 0.649243832 -0.754007816 -1.32578003 + 0.266667008 0.0997726768 0.649243832 -0.754007816 -1.21529996 + 0.333332986 -0.145678982 0.624949932 -0.766951859 -0.882780015 + 0.366667002 0.349349052 0.697825134 -0.625296175 -0.435672015 + 0.400000006 0.234002903 0.809003651 -0.53921777 -0.66951102 + 0.433333009 0.663972795 0.574121833 -0.479086876 -0.339707971 + 0.5 0.646656215 0.659781218 -0.382785171 -0.473668009 + 0.533333004 0.605515063 0.667681992 -0.433073044 -0.482756972 + 0.600000024 0.433808059 0.74780798 -0.50258708 -0.482466042 + 0.666666985 0.251403093 0.796250343 -0.550256193 -0.500747025 + 0.733332992 0.0785789266 0.814091265 -0.575396121 -0.53570199 + 0.866666973 0.0785792246 0.814091265 -0.575396121 -0.267850995 + 1 0 0 0 0 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.837750018 -0.291368008 0.461822003 -6.04639006 + 0.100000001 -0.901869178 -0.356741101 0.243655041 -5.77355003 + 0.200000003 -0.901868939 -0.356741011 0.243655995 -5.77355003 + 0.266667008 -0.684215248 -0.218353078 0.695824265 -5.55333996 + 0.333332986 0.426988006 0.491844982 -0.758794963 -1.39155996 + 0.366667002 0.28112793 0.725108802 -0.628636837 -1.61064005 + 0.400000006 0.289296895 0.735610723 -0.612522781 -1.57979989 + 0.433333009 0.209926963 0.839039862 -0.501938999 -1.83048999 + 0.5 0.145931035 0.845757127 -0.513224125 -1.86433005 + 0.533333004 0.148510993 0.857640862 -0.492337942 -1.93228996 + 0.600000024 0.188550055 0.830000222 -0.524927139 -1.53540003 + 0.666666985 0.248176008 0.782526076 -0.571017981 -1.14373004 + 0.733332992 0.353787929 0.677702904 -0.644633889 -0.765596986 + 0.866666973 0.501403034 0.700083017 -0.50840807 -0.439958006 + 1 0.845197916 0.484777927 0.225012973 -0.197713017 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.295196891 0.10649696 0.94948256 -1.47220004 + 0.100000001 -0.535752177 -0.0704012141 0.841435254 -2.3375299 + 0.200000003 -0.535752118 -0.0704011172 0.841435254 -2.3375299 + 0.733332992 -0.524054945 0.239788011 0.817231953 -0.714900911 + 0.866666973 -0.576179028 0.331779003 0.746954083 -0.506349027 + 1 -0.647371054 0.510440052 0.566005051 -0.300390005 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.503335953 -0.530196965 -0.682307899 -5.97989988 + 0.100000001 -0.921521246 -0.299757034 0.246869057 -5.66362 + 0.200000003 -0.86652118 0.365075052 -0.340384036 -5.31824017 + 0.366667002 0.476894855 -0.752564728 -0.454111874 -0.519563019 + 0.56666702 0.584473908 -0.264766932 -0.766999841 -0.548663974 + 0.733332992 0.171502039 0.0503513105 -0.983896255 -0.693886995 + 0.866666973 0.0481821857 0.329550862 -0.942907572 -0.351209998 + 1 0 0 0 0 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.897429764 0.358402848 -0.257229924 -5.80103016 + 0.100000001 -0.897667229 0.437110066 -0.0559317097 -5.93545008 + 0.200000003 -0.835177779 0.541870892 -0.0940956697 -5.87822008 + 0.333332986 0.476387113 -0.87910223 0.0153167034 -0.613878071 + 0.366667002 0.298083931 -0.734210908 0.609983861 -0.989463925 + 0.733332992 -0.502693951 -0.754667878 0.421633899 -0.281767994 + 0.866666973 0.0618651249 -0.973023355 -0.222257078 -0.50840801 + 1 0.276447952 -0.677457869 -0.681635797 -0.43955496 +endnode +doneanim gustandb a_dfa2_coat + +#MAXANIM ASCII +newanim taunt a_dfa2_coat + length 2.16667008 + transtime 0.400000006 + animroot rootdummy + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep + event 0.266667008 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 9 + 0 -0.0563634001 0.0356713012 1.19140005 + 0.266667008 -0.0563634001 0.0467832014 1.19140005 + 0.533333004 -0.0538461991 0.0431677997 1.19140005 + 0.866666973 -0.0554363988 0.0468418002 1.19140005 + 1.13332999 -0.0538461991 0.0431677997 1.19140005 + 1.46667004 -0.0554363988 0.0468418002 1.19140005 + 1.63332999 -0.0540002994 0.0428162999 1.19140005 + 1.70000005 -0.0537403002 0.0419230983 1.19140005 + 2.16667008 -0.0563634001 0.0356713012 1.19140005 + orientationkey 2 + 0 9.6708095e-007 1 -1.35966011e-005 -0.0698131025 + 2.16667008 1.82050997e-006 1 -1.36263998e-005 -0.0698131025 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.178006992 -0.082866095 0.980533898 -0.229613006 + 0.266667008 0.0938732624 0.0244577881 0.995283663 -0.53241998 + 0.533333004 0.096427992 0.0290168989 0.994916916 -0.462653995 + 0.866666973 0.0938732624 0.0244577881 0.995283663 -0.53241998 + 1.13332999 0.096427992 0.0290167965 0.994916916 -0.462653995 + 1.46667004 0.0938732624 0.0244578905 0.995283663 -0.53241998 + 1.63332999 0.096427992 0.0290168989 0.994916916 -0.462653995 + 2.16667008 0.178006992 -0.0828657895 0.980533898 -0.229612991 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 0.0772754699 -0.656420767 -0.75042671 -0.294885993 + 0.266667008 -0.861776114 -0.434758067 -0.261395007 -1.12056005 + 0.433333009 -0.870375216 -0.409073114 -0.274055094 -1.13956988 + 0.533333004 -0.878031731 -0.407503814 -0.250999898 -1.14248002 + 0.800000012 -0.891858697 -0.386904866 -0.234291911 -1.25007999 + 0.833333015 -0.888089418 -0.39274022 -0.238856152 -1.24343002 + 0.866666973 -0.880310774 -0.383679897 -0.279002935 -1.23008001 + 1.03332996 -0.870375216 -0.409073114 -0.274055094 -1.13956988 + 1.13332999 -0.878031731 -0.407503814 -0.250999898 -1.14248002 + 1.39999998 -0.891858697 -0.386904866 -0.234291911 -1.25007999 + 1.43333006 -0.888089418 -0.39274022 -0.238856152 -1.24343002 + 1.46667004 -0.880310774 -0.383679897 -0.279002935 -1.23008001 + 1.63332999 -0.877679169 -0.398629099 -0.266034067 -1.17521 + 1.70000005 -0.877849221 -0.382995158 -0.287568092 -1.15579998 + 2.16667008 0.077274479 -0.656420827 -0.750426769 -0.294885993 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.966287851 0.238194972 0.0977289826 -0.451258987 + 0.266667008 -0.988478124 0.149093017 0.0261192042 -0.78076297 + 0.433333009 -0.996494591 0.0834306628 0.00614894787 -1.51891005 + 0.533333004 -0.995873034 0.0882192031 0.0213137995 -1.37519002 + 0.800000012 -0.970889688 0.239462927 0.00554556819 -0.485707998 + 0.833333015 -0.975780666 0.217188925 -0.026096791 -0.542106986 + 0.866666973 -0.986545801 0.162913963 -0.0136531973 -0.743727982 + 1.03332996 -0.996494651 0.0834305659 0.00614903774 -1.51891005 + 1.13332999 -0.995873034 0.0882192031 0.0213137995 -1.37519002 + 1.39999998 -0.970889688 0.239462927 0.00554538798 -0.485707998 + 1.43333006 -0.975780666 0.217188925 -0.0260965899 -0.542106986 + 1.46667004 -0.986545801 0.162913963 -0.0136533985 -0.743727982 + 1.63332999 -0.996483326 0.0835736245 0.0060318117 -1.51588011 + 1.70000005 -0.995875239 0.0890953243 0.0171633065 -1.39927006 + 2.16667008 -0.966287851 0.238194972 0.0977290869 -0.451258987 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 0.986097991 0.0520048998 0.157817006 -0.636498988 + 0.266667008 0.174830943 -0.293052912 -0.939975619 -1.55931985 + 0.433333009 -0.201144919 0.0716349781 0.976938665 -4.86319017 + 0.533333004 0.27384305 -0.278761059 0.920490205 -4.85770988 + 0.800000012 -0.197861016 0.231977999 -0.952385008 -1.31206989 + 0.833333015 0.0190756023 0.0903760046 -0.995725036 -1.34372997 + 0.866666973 0.234443903 -0.0332881883 -0.971559525 -1.4497 + 1.03332996 -0.201144919 0.0716352686 0.976938665 -4.86318016 + 1.13332999 0.27384305 -0.278761059 0.920490205 -4.85770988 + 1.39999998 -0.197861016 0.231977999 -0.952385008 -1.31206989 + 1.43333006 0.0190760009 0.0903759971 -0.995724976 -1.34372997 + 1.46667004 0.234443903 -0.0332883857 -0.971559525 -1.4497 + 1.63332999 -0.248201966 0.100987993 0.963429928 -4.8505702 + 1.70000005 0.313919932 -0.378180951 0.870880842 -4.92412996 + 2.16667008 0.986097991 0.0520047992 0.157817006 -0.636498988 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.208023027 0.418059051 0.884281099 -0.295991004 + 0.266667008 0.152533054 0.292117119 0.944140494 -0.477332026 + 0.366667002 0.168693081 0.296502143 0.940015495 -0.482585013 + 0.533333004 0.161940977 0.262887955 0.951138794 -0.475351006 + 0.633333027 0.147818044 0.262730062 0.95347929 -0.472094029 + 0.866666973 0.161107004 0.285338998 0.944788992 -0.478062034 + 0.966666996 0.174922988 0.288541973 0.941353023 -0.482695043 + 1.13332999 0.161940977 0.262887955 0.951138794 -0.475351006 + 1.23333001 0.147818044 0.262730062 0.95347929 -0.472094029 + 1.46667004 0.161107004 0.285338998 0.944788992 -0.478062034 + 2.16667008 0.208011076 0.418058157 0.884284317 -0.29598999 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.740153015 -0.664892972 -0.100453004 -0.085469 + 0.266667008 -0.964916587 -0.255989879 -0.0583538748 -0.219269007 + 0.366667002 -0.946911395 -0.314889163 -0.0648350269 -0.178951994 + 0.533333004 -0.959063232 -0.276624054 -0.0606367104 -0.203234002 + 0.633333027 -0.967704058 -0.245516002 -0.0571902022 -0.228413016 + 0.866666973 -0.966316283 -0.250788063 -0.0577773191 -0.223717004 + 0.966666996 -0.952375233 -0.298344046 -0.0630256161 -0.188702002 + 1.13332999 -0.959063232 -0.276624054 -0.0606368147 -0.203234002 + 1.23333001 -0.967704117 -0.245516017 -0.0571895055 -0.228413016 + 1.46667004 -0.966316342 -0.250788093 -0.0577756241 -0.223717004 + 2.16667008 -0.740153134 -0.664893031 -0.100452013 -0.0854692012 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.815517008 0.48734799 -0.312128037 -0.255764008 + 0.266667008 0.901318669 0.253452867 -0.351263851 -0.417277008 + 0.366667002 0.921621025 0.329526991 -0.205004007 -0.348419011 + 0.533333004 0.909950912 0.348858982 -0.224246979 -0.387497008 + 0.633333027 0.910095692 0.275379896 -0.309663922 -0.416063011 + 0.866666973 0.936422944 0.333003998 -0.110545993 -0.388224989 + 0.966666996 0.922473371 0.385552168 0.0198083092 -0.350573003 + 1.13332999 0.909950912 0.348858982 -0.224246979 -0.387497008 + 1.23333001 0.91009599 0.275379986 -0.309662998 -0.416063011 + 1.46667004 0.936422944 0.333003998 -0.110545993 -0.388224989 + 2.16667008 0.815513909 0.487351954 -0.312129974 -0.255762011 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.152877957 -0.573953807 0.804490745 -0.485314995 + 0.266667008 0.17734392 -0.514702737 0.838826716 -0.56349498 + 0.633333027 0.231874913 -0.556479812 0.797849774 -0.481916994 + 0.966666996 0.17734392 -0.514702737 0.838826716 -0.56349498 + 1.23333001 0.231874913 -0.556479812 0.797849774 -0.481916994 + 1.56666994 0.17734392 -0.514702737 0.838826716 -0.56349498 + 1.70000005 0.172570989 -0.526658952 0.832375884 -0.545903027 + 2.16667008 0.152877957 -0.573953807 0.804490745 -0.485314995 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.298462152 0.28960216 -0.909423411 -0.646570981 + 0.266667008 -0.267592102 0.296926111 -0.916640282 -0.689910054 + 0.533333004 -0.354123026 0.275864005 -0.89358598 -0.654543936 + 0.633333027 -0.360515028 0.270676017 -0.892616034 -0.652586997 + 0.866666973 -0.272623956 0.293302983 -0.9163239 -0.681046009 + 0.966666996 -0.257144034 0.293569028 -0.920703113 -0.696968973 + 1.13332999 -0.310671836 0.277286917 -0.909172654 -0.675746977 + 1.23333001 -0.33425194 0.275188953 -0.901413739 -0.65752697 + 1.46667004 -0.274178892 0.291300893 -0.916498601 -0.68374002 + 1.56666994 -0.249271035 0.298581988 -0.921256065 -0.692672014 + 1.63332999 -0.254315883 0.295104861 -0.92099756 -0.689611971 + 1.70000005 -0.254710972 0.297578961 -0.920091867 -0.67988199 + 2.16667008 -0.305191845 0.293147892 -0.906047583 -0.638489008 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.552332997 -0.805177987 0.215909004 -0.0418738984 + 0.266667008 -0.190593019 -0.951867998 0.240045011 -0.0355582982 + 0.533333004 0.718353152 -0.670762181 0.184518039 -0.0501787029 + 0.633333027 0.690366566 -0.697809637 0.190933883 -0.0482514948 + 0.866666973 -0.478167951 -0.852902949 0.209551975 -0.0397450998 + 0.966666996 -0.422756732 -0.879774511 0.217424884 -0.038518101 + 1.13332999 0.179527059 -0.952286422 0.246821105 -0.0354829989 + 1.23333001 0.140391976 -0.958602846 0.247730955 -0.0352555998 + 1.46667004 -0.380481064 -0.897565186 0.222735047 -0.0377456024 + 1.56666994 -0.701502264 -0.693370163 0.16471906 -0.0489824004 + 1.63332999 -0.613245904 -0.767835855 0.185357958 -0.0441928022 + 1.70000005 -0.669650972 -0.722317994 0.172696993 -0.0470027998 + 2.16667008 0.55712688 -0.802059829 0.215196952 -0.0420350991 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.788204134 0.0771802068 -0.610555053 -0.164245993 + 0.266667008 0.67586863 0.0700182617 -0.733688653 -0.185550004 + 0.533333004 0.696290016 0.0901556984 -0.712075949 -0.172938988 + 0.633333027 0.770201683 0.0984085724 -0.630162776 -0.160683006 + 0.866666973 0.752766013 0.0790383965 -0.653526008 -0.179857001 + 0.966666996 0.716470838 0.080629088 -0.692941904 -0.182376996 + 1.13332999 0.789614081 0.096167013 -0.606021047 -0.166225001 + 1.23333001 0.833871841 0.0955095962 -0.543631911 -0.164346978 + 1.46667004 0.753065944 0.0816027895 -0.652864933 -0.176434994 + 1.56666994 0.738048136 0.0726902112 -0.67082119 -0.192076996 + 1.63332999 0.749470055 0.07853131 -0.65736407 -0.187531978 + 1.70000005 0.759595752 0.0761788711 -0.645918787 -0.191136003 + 2.16667008 0.762226939 0.0719661936 -0.643296957 -0.170791999 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.25038296 0.96813488 -0.00481602969 -0.54409498 + 0.266667008 -0.286173016 0.957697988 -0.0303243995 -0.572431028 + 0.533333004 -0.290567905 0.956848681 0.00329430937 -0.538138986 + 0.633333027 -0.280018896 0.959779739 0.0203054938 -0.525776982 + 0.866666973 -0.283440083 0.958939373 0.00984989386 -0.55961597 + 0.966666996 -0.286625087 0.957023382 -0.0441847108 -0.569992006 + 1.13332999 -0.292109936 0.956123769 -0.0223414935 -0.541949987 + 1.23333001 -0.244912937 0.969535828 -0.0042363191 -0.518190026 + 1.46667004 -0.27806288 0.960426629 -0.0161790941 -0.557305992 + 1.56666994 -0.293796092 0.954517305 -0.050799612 -0.570447922 + 1.63332999 -0.288675964 0.954288781 -0.0774538815 -0.565862954 + 1.70000005 -0.286309093 0.956541359 -0.0552785173 -0.563017011 + 2.16667008 -0.25038296 0.96813488 -0.00481618894 -0.54409498 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 1 -6.07363006e-007 1.99561009e-006 -0.169938996 + 0.266667008 1 -6.98420024e-007 -4.65311984e-007 -0.113321997 + 0.533333004 1 0 4.33086996e-007 -0.130409002 + 0.633333027 1 -8.90882006e-007 -1.18054993e-006 -0.126045004 + 0.866666973 1 0 4.35088992e-007 -0.113812998 + 0.966666996 1 -3.32633988e-007 5.76199e-007 -0.114550002 + 1.13332999 1 -3.14418998e-007 0 -0.133513004 + 1.23333001 1 -5.88614e-007 -8.53157019e-007 -0.0877609029 + 1.46667004 1 -1.21564005e-006 -1.39462998e-007 -0.112034 + 1.56666994 1 0 0 -0.122823998 + 1.63332999 1 -1.89917998e-007 5.04675995e-007 -0.133237004 + 1.70000005 1 -3.91530961e-007 8.41559995e-007 -0.138019994 + 2.16667008 1 0 3.66626011e-007 -0.169938996 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.242518917 -0.857793629 0.453182817 -0.402952999 + 0.266667008 -0.148378015 -0.929667056 0.337199003 -0.385128975 + 0.533333004 -0.192034051 -0.876364172 0.441711128 -0.39102 + 0.633333027 -0.19634895 -0.855962873 0.478303909 -0.396136999 + 0.866666973 -0.159608021 -0.923021019 0.35008204 -0.383042961 + 0.966666996 -0.151014984 -0.92195189 0.356649965 -0.385426998 + 1.13332999 -0.19339709 -0.872487426 0.448735207 -0.393916011 + 1.23333001 -0.146431074 -0.837563336 0.526351154 -0.399783999 + 1.46667004 -0.159454942 -0.909111619 0.384824812 -0.387344986 + 1.56666994 -0.160482049 -0.918706238 0.3608661 -0.386023015 + 1.63332999 -0.178816006 -0.894643068 0.409437001 -0.392743975 + 1.70000005 -0.187656894 -0.897541523 0.399003834 -0.390693039 + 2.16667008 -0.242524028 -0.857793093 0.453181058 -0.402952999 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.0697562993 0 0.997564077 -0.261799008 + 2.16667008 0.0697565004 0 0.997564077 -0.261799008 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.746311903 -0.652810812 0.129832968 -0.375334978 + 2.16667008 0.746311903 -0.652810812 0.129832968 -0.375334978 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.574490964 0.745060921 0.338886976 -0.289889008 + 2.16667008 -0.574490964 0.745060921 0.338886976 -0.289889008 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.731240034 -0.622712016 -0.278420031 -0.226852015 + 2.16667008 0.731240034 -0.622712016 -0.278420031 -0.226852015 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.701392114 -0.706769109 -0.0923394114 -0.123393983 + 2.16667008 0.701392114 -0.706769049 -0.0923396051 -0.12339399 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.63076818 0.774848104 -0.0417368077 -0.267334998 + 2.16667008 0.63076818 0.774848104 -0.0417367071 -0.267334998 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.945150375 0.24567911 -0.215250075 -0.270071 + 2.16667008 0.945150375 0.24567911 -0.215250075 -0.270071 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.397256136 -0.911819279 0.103794038 -0.377133995 + 2.16667008 -0.397254944 -0.911819756 0.103793986 -0.377133965 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.671394944 0.497321963 -0.549453974 -0.324151963 + 2.16667008 0.671394944 0.497321963 -0.549453974 -0.324151963 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.0119004957 0.0022795191 -0.999926567 -0.178847998 + 2.16667008 -0.0119004957 0.00227949908 -0.999926567 -0.178847998 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 8.86691964e-007 -1 1.41963983e-006 -0.0872664005 + 2.16667008 1.56867998e-006 -1 1.00959005e-006 -0.0872664005 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.358688116 0.933451414 0.00336745149 -0.223847002 + 2.16667008 0.358688116 0.933451414 0.0033675211 -0.223847002 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.00326891057 0.996144116 0.087671116 -0.0865658 + 2.16667008 0.00326934061 0.996144116 0.0876708105 -0.0865658 +endnode +doneanim taunt a_dfa2_coat + +#MAXANIM ASCII +newanim sitcross a_dfa2_coat + length 1.5 + transtime 0.400000006 + animroot rootdummy + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 5 + 0 0.000249002012 0.0174473003 1.15293002 + 0.133332998 0.000253195991 -0.0261614993 0.885122001 + 0.333332986 0.000263316004 -0.275195003 0.482753992 + 0.633333027 0.000264398986 -0.297573 0.310793012 + 1.5 0.000264398986 -0.297573 0.310793012 + orientationkey 4 + 0 0 0 0 0 + 0.333332986 -1 -2.68294007e-005 -0.000179885988 -0.287185997 + 0.633333027 -0.853156269 -0.516266167 -0.0747910291 -0.335752994 + 1.5 -0.853156269 -0.516266167 -0.0747910291 -0.335752994 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.984042585 0.0152562931 -0.177277908 -0.130900994 + 0.133332998 0.981123984 -0.192681 0.0164260995 -0.838931978 + 0.333332986 0.932692349 -0.350695133 0.0842488408 -1.17228997 + 0.633333027 0.993810117 -0.0361179039 0.105057016 -0.849533081 + 1.20000005 0.974827409 -0.00639478257 0.222869083 -0.533496976 + 1.5 0.966123819 0.0027905195 0.258063942 -0.468979001 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 0.61548394 -0.751221955 -0.238421991 -0.216218993 + 0.0666666999 0.538426042 -0.24263303 -0.806986094 -0.559391022 + 0.133332998 0.590114057 -0.504838049 -0.630003095 -0.551793993 + 0.233333007 -0.29951784 -0.899544537 -0.317975849 -0.726715028 + 0.333332986 -0.676797867 -0.720690906 -0.150163963 -1.21713996 + 0.366667002 -0.79347682 -0.58908391 -0.15288797 -1.23782003 + 0.466666996 -0.831600308 -0.554135203 -0.0370817184 -1.29724991 + 0.56666702 -0.69380188 -0.713505805 0.097715877 -1.14747 + 0.600000024 -0.653878927 -0.744920969 0.132419989 -1.05560994 + 0.633333027 -0.651466012 -0.747407019 0.130287006 -0.938386977 + 0.733332992 -0.586209238 -0.785573304 0.198074073 -0.620496988 + 0.833333015 -0.417431116 -0.81638515 0.399082094 -0.304165006 + 0.899999976 -0.246217981 -0.582696974 0.774493992 -0.26828599 + 1.10000002 -0.150936052 -0.727799237 0.66897428 -0.206401989 + 1.20000005 0.000698292977 -0.687879086 0.725825012 -0.215307996 + 1.26666999 0.0825352296 -0.731907248 0.67638725 -0.203099996 + 1.5 0.337072819 -0.751239717 0.567468762 -0.199465007 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.918128908 0.378082961 0.118711993 -0.291697979 + 0.0666666999 -0.990963221 0.134044036 0.00490681082 -0.893602014 + 0.133332998 -0.995484412 0.0896668285 -0.0311554149 -1.30433989 + 0.233333007 -0.995515466 0.0936182439 -0.0135878064 -1.30961001 + 0.333332986 -0.993441701 0.112616964 -0.0197732933 -1.05791998 + 0.366667002 -0.99383229 0.11004103 -0.013724003 -1.09257007 + 0.466666996 -0.99495995 0.0975555927 -0.0231874976 -1.22407997 + 0.56666702 -0.99299258 0.116998948 -0.0166424923 -1.02284002 + 0.600000024 -0.991799355 0.126892045 -0.0152458055 -0.938100994 + 0.633333027 -0.990172207 0.139156029 -0.0139514022 -0.849164963 + 0.733332992 -0.972782135 0.231001034 -0.0182616021 -0.510506988 + 0.833333015 -0.802771747 0.595338821 -0.0336034894 -0.193535 + 0.899999976 0.119668998 0.989474952 -0.0813549981 -0.116122 + 1.10000002 0.34000805 0.936097205 -0.0900920182 -0.122596994 + 1.20000005 0.324291915 0.941703737 -0.089603588 -0.121877998 + 1.26666999 0.117284983 0.989769876 -0.0812390894 -0.116086997 + 1.5 -0.405628949 0.91291976 -0.0451958925 -0.126144007 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 0 0 0 0 + 0.0666666999 0.762729764 0.430297881 0.482790858 -0.51810199 + 0.133332998 0.403717965 0.726513922 0.556047916 -0.689813912 + 0.233333007 0.390218943 0.00066433195 0.920721829 -0.509427011 + 0.333332986 0.0973030627 -0.561302781 0.821870625 -0.453181028 + 0.366667002 0.0255319066 -0.484311163 0.874523163 -0.662319958 + 0.466666996 0.170489043 -0.212518051 0.96216917 -0.652665973 + 0.56666702 0.161982924 -0.906181633 0.390635848 -0.687050998 + 0.600000024 0.230632052 -0.937199235 0.261661053 -0.598963976 + 0.633333027 0.266718119 -0.939938486 0.213019103 -0.461843014 + 0.733332992 0.244412094 -0.939504385 -0.239988089 -1.03289998 + 0.833333015 0.261811048 -0.536634207 -0.80217123 -1.05605996 + 0.899999976 0.233811006 -0.440746039 -0.866646051 -1.25421 + 1.10000002 0.269274026 -0.481439024 -0.834091067 -1.20563996 + 1.20000005 0.291119069 -0.47905612 -0.828103185 -1.22806001 + 1.26666999 0.306342989 -0.493501037 -0.814009011 -1.22154999 + 1.5 0.349606931 -0.518667877 -0.780229867 -1.22672999 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.0533529855 0.919193685 0.390174896 -0.124792993 + 0.133332998 -0.164705038 0.955236197 0.245756045 -0.401223987 + 0.333332986 0.239863917 0.420407861 0.87505573 -0.659628987 + 0.5 0.41358608 0.448547095 0.792308092 -0.517543018 + 0.633333027 0.629578948 0.506749928 0.588926911 -0.369908005 + 0.833333015 0.568702936 0.414318979 0.710574985 -0.402667999 + 1.20000005 0.487453997 0.27937001 0.82724905 -0.488512963 + 1.5 0.47791779 0.258075893 0.839637637 -0.514123023 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.915633321 -0.395242155 -0.073479332 -0.143040001 + 0.133332998 -0.997220695 -0.0700517744 0.0253688917 -0.776385009 + 0.333332986 -0.998468995 -0.0535452962 -0.0138759995 -1.09219003 + 0.5 -0.998346686 -0.0551519841 -0.0161894951 -1.03998005 + 0.633333027 -0.997962296 -0.0613859184 -0.0174078047 -0.927630961 + 0.833333015 -0.997917295 -0.0608554147 -0.021394508 -0.910584986 + 1.20000005 -0.997882426 -0.0581505224 -0.0291399118 -0.903929055 + 1.5 -0.997823298 -0.0555828139 -0.0354854092 -0.901483059 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.893719018 -0.426227957 0.139985994 -0.0989399105 + 0.133332998 0.176461995 0.898554087 0.401823044 -0.430298001 + 0.333332986 -0.146012023 -0.797485173 -0.585404098 -0.251845986 + 0.5 0.0894734412 0.97962749 -0.179790109 -0.666073918 + 0.633333027 0.0817407072 0.99587208 -0.0394622982 -1.52617002 + 0.833333015 0.0818662941 0.987187862 -0.136959985 -1.50737 + 1.20000005 0.0848550051 0.946408093 -0.31162703 -1.51514018 + 1.5 0.0914509073 0.930936038 -0.353546023 -1.52682996 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.802894771 -0.199508935 0.561743855 -0.105401009 + 0.333332986 0.802894771 -0.199508935 0.561743855 -0.105401009 + 0.633333027 0.327467978 -0.350609928 0.877403796 -0.51226902 + 1.5 0.327467978 -0.350609928 0.877403796 -0.51226902 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.970621526 -0.188043907 -0.15011093 -0.601785004 + 0.0666666999 -0.987655282 -0.156391054 -0.00888335146 -0.845053911 + 0.133332998 -0.987656653 -0.148809925 0.0488874763 -1.02980006 + 0.233333007 -0.97650969 -0.126263961 0.174602956 -1.48734999 + 0.333332986 -0.948520184 -0.150248036 0.278810024 -2.05538011 + 0.5 -0.969736993 -0.172073007 0.173208013 -2.26286006 + 0.633333027 -0.969242275 -0.222653061 0.104857028 -2.43605995 + 0.733332992 -0.953476369 -0.2691001 0.13589704 -2.35062003 + 0.833333015 -0.889474213 -0.393666148 0.232083082 -2.08739996 + 0.966666996 -0.806552112 -0.507645071 0.302936018 -1.74667001 + 1.03332996 -0.798460007 -0.518637955 0.305738956 -1.72033 + 1.33333004 -0.791969776 -0.527020872 0.308273941 -1.70615995 + 1.5 -0.791969776 -0.527020872 0.308273941 -1.70615995 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.998237789 -0.0506373905 0.0309379939 -0.597037971 + 0.0666666999 0.99950707 -0.0209627021 0.0233703014 -1.17891002 + 0.133332998 0.999702632 -0.012178096 0.0211267937 -1.59522998 + 0.233333007 0.999784648 -0.00655667763 0.0196903925 -1.99806011 + 0.333332986 -0.999800742 0.00506737875 -0.0193093959 -4.15553999 + 0.5 -0.999806881 0.00442706933 -0.0191456974 -4.09673977 + 0.633333027 -0.999809504 0.00414050836 -0.0190724898 -4.06981993 + 0.733332992 -0.999800801 0.00505536888 -0.0193065964 -4.15445995 + 0.833333015 -0.999790192 0.00606825156 -0.019565301 -4.24372005 + 0.966666996 -0.999773562 0.00747183664 -0.0199235938 -4.35976982 + 1.03332996 -0.999771774 0.00761462841 -0.0199604947 -4.37108994 + 1.33333004 -0.999771178 0.00766009139 -0.0199721046 -4.37467003 + 1.5 -0.999771178 0.00766009139 -0.0199721046 -4.37467003 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.25338906 0.536571205 -0.804913282 -0.284664989 + 0.0666666999 -0.704394758 0.453559846 -0.545995831 -0.482264996 + 0.133332998 -0.797906041 0.443905026 -0.407792002 -0.635975003 + 0.233333007 -0.566497147 0.672657192 -0.476039141 -0.625252008 + 0.333332986 0.261982918 0.875963748 -0.405033857 -0.682650983 + 0.5 0.431815028 0.7951231 -0.425811023 -0.81023401 + 0.633333027 0.533658862 0.741934836 -0.405882925 -0.931465983 + 0.733332992 0.824908078 0.41853404 -0.37994203 -0.79668808 + 0.833333015 0.9420228 0.261860937 -0.209813952 -0.685553014 + 0.966666996 0.974720776 0.0168535952 -0.222789943 -0.620616019 + 1.03332996 0.975176275 -0.076834619 -0.20767206 -0.65418607 + 1.33333004 0.975930214 -0.0612329133 -0.209310055 -0.638410926 + 1.5 0.975930214 -0.0612330139 -0.209310055 -0.638410926 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.455940098 0.694067121 0.557126105 -0.297218978 + 0.0666666999 -0.726588011 0.602969944 0.329388976 -0.468528956 + 0.133332998 -0.740540624 0.635154724 0.219494894 -0.56815201 + 0.233333007 -0.811405897 0.584482968 -0.000367934932 -0.794323027 + 0.333332986 -0.720191896 0.624771893 -0.301634938 -1.19920003 + 0.366667002 -0.850847125 0.520800054 -0.0694730058 -1.45595014 + 0.400000006 -0.942307889 0.316593945 0.108738989 -1.54244006 + 0.466666996 -0.9347139 -0.0553663895 0.35106197 -1.71723998 + 0.5 -0.872909367 -0.168514058 0.457856148 -1.74263 + 0.56666702 -0.83431673 -0.267560929 0.482002854 -1.82350004 + 0.633333027 -0.825828969 -0.338076979 0.45134297 -1.90033007 + 0.766667008 -0.823953629 -0.33453986 0.457365841 -1.90341997 + 1.5 -0.820868671 -0.339031845 0.459599823 -1.89490998 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 1 0 0 -0.449371994 + 0.0666666999 1 0 0 -1.09863997 + 0.133332998 1 0 0 -1.53341997 + 0.233333007 1 0 0 -2.14372993 + 0.333332986 1 0 0 -2.68147993 + 0.366667002 1 0 2.72107997e-007 -2.69001007 + 0.400000006 1 0 2.21796995e-007 -2.66505003 + 0.466666996 1 0 1.42431006e-007 -2.5136199 + 0.5 1 0 0 -2.40424991 + 0.56666702 -1 0 1.67508006e-007 -3.98894 + 0.633333027 -1 0 1.49748004e-007 -4.03464985 + 0.766667008 -1 0 0 -4.04172993 + 1.5 -1 1.32693003e-007 0 -4.03775978 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.852055609 -0.46593678 0.23854588 -0.437168002 + 0.0666666999 -0.947023869 -0.320223957 0.0245442986 -0.790857971 + 0.133332998 -0.957755804 -0.281884938 -0.0569621883 -1.07678998 + 0.233333007 -0.953318954 -0.278825969 -0.115927003 -1.36561 + 0.333332986 -0.861706793 -0.417146891 -0.288876951 -1.59745002 + 0.366667002 -0.235883951 -0.560028851 -0.794182897 -1.74201 + 0.400000006 0.0774929971 -0.390395969 -0.917379856 -1.32337999 + 0.466666996 0.560513198 -0.341166109 -0.754606307 -0.924143016 + 0.5 0.771974862 -0.165065959 -0.613846898 -0.875816047 + 0.56666702 0.916431606 -0.0523022749 -0.396758825 -0.776114047 + 0.633333027 0.983868837 -0.0551502891 -0.170177981 -0.686982989 + 0.766667008 0.982711911 -0.0462284945 -0.179276988 -0.65703398 + 1.5 0.984894097 -0.0320546031 -0.170165017 -0.684252024 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.0697562993 0 0.997564077 -0.261799008 + 0.133332998 0 -1 0 -0.0629042014 + 0.200000003 1.59552002e-007 -1 0 -0.0629042014 + 0.333332986 -1.49599998e-007 -1 0 -0.0629042014 + 0.633333027 -2.61758998e-007 -1 0 -0.0629042014 + 1.5 6.77729986e-007 -1 0 -0.0629042014 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.154659942 0.140908942 0.977867544 -0.105742 + 0.133332998 0.875442266 0.471904159 0.104438029 -0.248805001 + 0.200000003 0.95088917 -0.231123045 0.205893025 -0.402712017 + 0.333332986 0.956414938 -0.192010984 0.220005006 -0.488005966 + 0.633333027 0.940354645 -0.166327938 0.296762884 -0.640477002 + 1.5 0.944072604 -0.144627944 0.296326905 -0.726490915 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.729360223 -0.502169192 0.464607179 -0.290223002 + 0.133332998 0.599308074 -0.780748129 0.17681101 -0.271562994 + 0.200000003 0.700911582 -0.683497608 0.20384787 -0.311468989 + 0.333332986 0.900263846 -0.340264916 0.271559954 -0.64151299 + 0.633333027 0.901644349 -0.317565143 0.293581158 -0.780920029 + 1.5 0.901644349 -0.317565143 0.293581158 -0.780920029 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.325794846 -0.286421895 0.901010633 -0.33503902 + 0.133332998 0.988919675 0.0395656899 0.143081963 -0.445011973 + 0.200000003 0.983361661 -0.121851966 0.134728953 -0.710616946 + 0.333332986 0.909654856 -0.288002998 -0.299302965 -0.922190964 + 0.633333027 0.55383718 0.0490275174 -0.831180274 -0.660598993 + 1.5 0.55383718 0.0490274206 -0.831180274 -0.660598934 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.861878097 -0.477820069 -0.169865012 -0.191594005 + 0.133332998 0.96538049 0.236627117 -0.109764062 -0.206881002 + 0.200000003 0.929541111 0.346477032 -0.126123011 -0.334870011 + 0.333332986 0.908903241 0.395961076 -0.130804032 -0.341941983 + 0.633333027 0.962198973 0.248022005 -0.112508997 -0.538183987 + 1.5 0.976178229 0.203643039 -0.0748706162 -0.618532002 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.378623039 0.924774051 -0.0379156992 -0.21558398 + 0.133332998 0.615087926 0.787907958 -0.0294592008 -0.372268975 + 0.200000003 0.665487945 0.745515883 -0.0364949964 -0.52650702 + 0.333332986 0.9112975 0.38255018 -0.152290091 -1.01311004 + 0.633333027 0.962034881 0.246084973 -0.118029974 -1.36728001 + 1.5 0.962034881 0.246084973 -0.118029974 -1.36728001 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.778510869 -0.0524110943 -0.625438929 -0.192891002 + 0.133332998 0.891372263 -0.395619094 -0.221226066 -0.555926025 + 0.200000003 0.893127143 -0.0260557011 0.449049026 -0.717441976 + 0.333332986 0.860343158 -0.0319319032 0.50871408 -0.658811986 + 0.533333004 0.298682034 -0.171853036 0.938752115 -0.498143971 + 0.633333027 -0.0430754051 -0.170451999 0.984423995 -0.805306911 + 1.5 -0.0430754051 -0.170451999 0.984423995 -0.805306911 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.383569032 -0.450727016 -0.806052089 -0.483921021 + 0.133332998 -0.499061197 -0.835381329 -0.2303821 -0.469494998 + 0.200000003 -0.496723145 -0.787666321 -0.364483088 -0.605023026 + 0.333332986 -0.115576006 -0.824036062 -0.554623067 -1.36593008 + 0.633333027 -0.0708986968 -0.563467979 -0.823090017 -1.0984 + 1.5 0.0704918057 -0.381582022 -0.921643138 -1.04189014 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.593418956 -0.768539906 0.239165977 -0.122929998 + 0.133332998 0.594499826 -0.635136843 -0.493123859 -0.777639985 + 0.200000003 0.604812741 -0.49977082 -0.620024741 -0.878060997 + 0.333332986 0.859765232 0.307421088 0.407794118 -0.953208923 + 0.633333027 0.395979166 -0.721151292 0.56845516 -0.849801958 + 1.5 0.618160188 -0.555397153 0.556248188 -1.40647984 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.439657867 -0.402072906 0.803142786 -0.173443004 + 0.133332998 0.962353706 0.263095915 0.0682338774 -0.863497019 + 0.200000003 0.70913887 -0.697052836 0.10601598 -0.832322061 + 0.333332986 0.159016997 -0.851415038 -0.499806017 -1.11618996 + 0.633333027 0.348485917 -0.686226904 -0.638474882 -0.759727001 + 1.5 0.168381065 -0.343461126 -0.923949301 -0.651791036 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.101476043 0.15590708 0.982545495 -0.415734023 + 0.133332998 0.00100674981 0.995987773 -0.0894839764 -0.278178006 + 0.200000003 0.422250926 0.825396955 0.374731988 -0.88191098 + 0.333332986 0.443875998 0.738704085 0.507237971 -1.71471 + 0.433333009 0.443875998 0.738704085 0.507237971 -1.71471 + 0.633333027 0.443875998 0.738704085 0.507237971 -1.71471 + 1.5 0.443875998 0.738704085 0.507237971 -1.71471 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.984097898 -0.145545989 -0.101821989 -0.155208007 + 0.133332998 0.0885140523 0.486395776 0.869243622 -0.602223992 + 0.200000003 -0.0161512047 -0.283709079 0.958774388 -0.849633992 + 0.333332986 -0.454017162 -0.870942354 0.187957078 -0.819629014 + 0.433333009 -0.454015911 -0.870942831 0.187957972 -0.819628 + 0.533333004 -0.605185151 -0.663516223 0.439883143 -0.268815994 + 0.633333027 -0.0444232933 0.668455958 0.742423892 -0.253784031 + 1.5 -0.0444229916 0.668455958 0.742423892 -0.253784031 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.563694179 -0.597073257 -0.570747197 -0.0939096957 + 0.133332998 0.980025828 -0.110959977 -0.165036976 -0.667554975 + 0.200000003 0.66702795 0.735957861 -0.115929984 -0.759683073 + 0.333332986 0.406405061 0.910252094 0.0792216063 -1.11360002 + 0.433333009 0.321066022 0.946920156 0.0160889011 -1.33083999 + 0.533333004 0.410108805 0.871024609 0.270419896 -0.861877978 + 0.633333027 0.470624745 0.644403577 0.602707565 -0.586472988 + 1.5 0.470624745 0.644403577 0.602707565 -0.586472988 +endnode +doneanim sitcross a_dfa2_coat + +#MAXANIM ASCII +newanim sitcrossps a_dfa2_coat + length 2 + transtime 1 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 2 + 0 0.000264398986 -0.297573 0.310793012 + 2 0.000264398986 -0.297573 0.310793012 + orientationkey 2 + 0 -0.853156269 -0.516266167 -0.0747910291 -0.335752994 + 2 -0.853156269 -0.516266167 -0.0747910291 -0.335752994 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.966123819 0.00279052951 0.258063942 -0.468979001 + 0.0666666999 0.965944052 0.00296382047 0.258734018 -0.467740029 + 1.03332996 0.959348381 0.00902624242 0.282080084 -0.42820099 + 1.10000002 0.959112287 0.00923338253 0.282875091 -0.426970005 + 1.16666996 0.959420741 0.00896267779 0.281835943 -0.428579986 + 1.93333006 0.965888739 0.00301724905 0.258939922 -0.467357993 + 2 0.966123819 0.00279054954 0.258063942 -0.468979001 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.337073028 -0.751240134 0.567468047 -0.199465007 + 0.0666666999 0.344591975 -0.751135945 0.56307292 -0.199564978 + 1.03332996 0.560024798 -0.720443666 0.409063816 -0.210430995 + 1.10000002 0.56578809 -0.718757212 0.404069155 -0.210997 + 1.16666996 0.558238089 -0.720955074 0.410602063 -0.210259005 + 1.93333006 0.346899092 -0.751092196 0.561713099 -0.199598014 + 2 0.337072819 -0.751239717 0.567468762 -0.199465007 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.405628949 0.91291976 -0.0451958925 -0.126144007 + 0.0666666999 -0.420783013 0.906103015 -0.043806199 -0.127101004 + 1.03332996 -0.741629899 0.67076695 -0.00753615843 -0.171980008 + 1.10000002 -0.747587979 0.664129019 -0.00669227028 -0.17370598 + 1.16666996 -0.739760756 0.6728248 -0.00779959699 -0.171452001 + 1.93333006 -0.425375789 0.90397656 -0.0433802791 -0.127403006 + 2 -0.405628949 0.91291976 -0.0451957881 -0.126143992 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.349606931 -0.518667877 -0.780229867 -1.22672999 + 0.0666666999 0.350923955 -0.519450963 -0.779116869 -1.22688997 + 1.03332996 0.392189145 -0.543416202 -0.742217243 -1.23356998 + 1.10000002 0.393450022 -0.544130027 -0.741026044 -1.23383987 + 1.16666996 0.391801119 -0.543196201 -0.742583215 -1.23348987 + 1.93333006 0.351328164 -0.519691229 -0.778774381 -1.22693002 + 2 0.349606931 -0.518667877 -0.780229867 -1.22672999 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.47791779 0.258075893 0.839637637 -0.514123023 + 0.0666666999 0.480512023 0.25713101 0.838446081 -0.515151978 + 1.03332996 0.484994054 0.247959048 0.838628113 -0.529622018 + 1.10000002 0.484993041 0.247528002 0.838756025 -0.530196011 + 1.16666996 0.483200878 0.249032915 0.83934468 -0.528630972 + 1.93333006 0.479890287 0.256496131 0.83899647 -0.515680015 + 2 0.47791779 0.258075893 0.839637637 -0.514123023 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.997823298 -0.0555829182 -0.0354855098 -0.90148294 + 0.0666666999 -0.997833431 -0.0554132238 -0.0354656205 -0.903743029 + 1.03332996 -0.997845829 -0.0552055836 -0.0354412943 -0.906522036 + 1.10000002 -0.997846425 -0.0551952235 -0.0354400203 -0.90666306 + 1.16666996 -0.997836649 -0.0553596802 -0.0354592875 -0.904457986 + 1.93333006 -0.99783361 -0.0554098785 -0.0354653858 -0.903786004 + 2 -0.997823298 -0.0555828176 -0.0354855098 -0.90148294 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.0914509073 0.930936038 -0.353546023 -1.52682996 + 0.0666666999 0.0921201259 0.930537224 -0.354421079 -1.52716005 + 1.03332996 0.0975066647 0.920727611 -0.37782681 -1.53775001 + 1.10000002 0.0976126269 0.920375228 -0.378657103 -1.53808987 + 1.16666996 0.0972029045 0.921010137 -0.377216071 -1.53768003 + 1.93333006 0.0919157937 0.930328012 -0.355022967 -1.52719998 + 2 0.0914509073 0.930936038 -0.353546023 -1.52682996 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.327467978 -0.350609928 0.877403796 -0.51226902 + 2 0.327467978 -0.350609928 0.877403796 -0.51226902 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.791969776 -0.527020872 0.308273941 -1.70615995 + 2 -0.791969776 -0.527020872 0.308273941 -1.70615995 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.999771178 0.00766008208 -0.019972004 -4.37466002 + 2 -0.999771178 0.00766009185 -0.019972004 -4.37466002 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.975930274 -0.0612327196 -0.209310055 -0.638410926 + 2 0.975930214 -0.0612330139 -0.209310055 -0.638410926 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.820868671 -0.339031845 0.459599823 -1.89490998 + 2 -0.820868671 -0.339031845 0.459599823 -1.89490998 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -1 0 0 -4.03775978 + 2 -1 0 0 -4.03775978 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.984894276 -0.03205451 -0.170164064 -0.684251964 + 2 0.984894276 -0.03205451 -0.170164064 -0.684251964 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 1.14587999e-006 -1 0 -0.0629042014 + 2 6.79536015e-007 -1 0 -0.0629042014 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.944072604 -0.144627944 0.296326905 -0.726490915 + 2 0.944072604 -0.144627944 0.296326905 -0.726490915 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.901644349 -0.317565143 0.293581158 -0.780920029 + 2 0.901644349 -0.317565143 0.293581158 -0.780920029 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.55383718 0.0490274206 -0.831180274 -0.660598934 + 2 0.55383718 0.0490275174 -0.831180274 -0.660598993 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.976178229 0.203643039 -0.0748705119 -0.618532002 + 2 0.976178229 0.203643039 -0.0748705119 -0.618532002 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.962034881 0.246084973 -0.118029974 -1.36728001 + 2 0.96203512 0.246084034 -0.118030019 -1.36728001 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.0430754982 -0.170451999 0.984423995 -0.805306971 + 2 -0.0430754982 -0.170451999 0.984423995 -0.805306971 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.0704918057 -0.381582022 -0.921643138 -1.04189014 + 2 0.0704918057 -0.381582022 -0.921643138 -1.04189014 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.618160188 -0.555397153 0.556248188 -1.40647984 + 2 0.618160188 -0.555397153 0.556248188 -1.40647984 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.168381065 -0.343461126 -0.923949301 -0.651791036 + 2 0.168381065 -0.343461126 -0.923949301 -0.651791036 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.443875998 0.738704085 0.507237971 -1.71471 + 2 0.443875998 0.738704085 0.507237971 -1.71471 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.0444227941 0.668455958 0.742423892 -0.253784031 + 2 -0.0444230922 0.668455958 0.742423892 -0.253784031 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.470624745 0.644403577 0.602707565 -0.586472988 + 2 0.470624745 0.644403577 0.602707565 -0.586472988 +endnode +doneanim sitcrossps a_dfa2_coat + +#MAXANIM ASCII +newanim bow a_dfa2_coat + length 2 + transtime 0.5 + animroot rootdummy + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 6 + 0 -0.0527695008 -0.00760386977 1.19535995 + 0.333332986 -0.201399997 0.0180536006 1.08699 + 0.666666985 -0.231994003 0.0122207999 1.03377998 + 1 -0.23488 0.00893681962 1.02884996 + 1.46667004 -0.200290993 0.0183116999 1.08933997 + 2 -0.0527695008 -0.00760386977 1.19535995 + orientationkey 2 + 0 4.29175998e-007 1 -1.2576601e-005 -0.0698131025 + 2 4.29175998e-007 1 -1.2576601e-005 -0.0698131025 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.0534287989 -0.331738979 0.94185698 -0.334802985 + 0.333332986 0.946582377 -0.151974052 0.284404099 -0.740768015 + 0.666666985 0.993600368 -0.0698947236 0.0887301192 -1.12791002 + 1 0.994169593 -0.0692788735 0.0826270729 -1.18862987 + 1.16666996 0.991883218 -0.0764496252 0.101603031 -1.11341 + 2 0.0534296967 -0.331738979 0.941856921 -0.334802985 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.299142092 -0.249537095 -0.921002328 -0.424030989 + 0.166666999 -0.110981978 -0.374721944 -0.920470774 -0.61845696 + 0.333332986 -0.387701988 -0.455698997 -0.801265001 -0.936425984 + 0.666666985 -0.462041944 -0.39576593 -0.793653965 -1.13770998 + 1 -0.490734994 -0.413536996 -0.76692003 -1.17294002 + 1.16666996 -0.476370811 -0.445636839 -0.75794369 -1.13856995 + 1.46667004 -0.460274786 -0.328353852 -0.824821711 -1.14786994 + 2 0.299142092 -0.249537095 -0.921002328 -0.424030989 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.970248759 0.22258094 0.09526328 -0.48042199 + 0.166666999 -0.980168879 0.177522987 0.0880596936 -0.589851022 + 0.333332986 -0.968856156 0.228194043 0.0961522236 -0.469520956 + 0.666666985 -0.985092282 0.150320053 0.0836484283 -0.682851017 + 1 -0.980187833 0.177425981 0.0880442932 -0.590137959 + 1.16666996 -0.964652598 0.244344905 0.0986959562 -0.440706968 + 1.46667004 -0.918341935 0.377478957 0.118985996 -0.292100996 + 2 -0.970248759 0.22258094 0.09526328 -0.48042199 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.740553916 0.424094945 0.521270931 -0.430269986 + 0.166666999 0.606852829 0.449303865 0.655633807 -0.590730011 + 0.333332986 0.660471022 -0.722685933 -0.203722984 -0.457102984 + 0.666666985 0.0463610925 -0.195014969 -0.979703963 -1.25074995 + 1 0.113418981 -0.360232979 -0.925941885 -1.24847996 + 1.16666996 0.113418981 -0.360232979 -0.925941885 -1.24847996 + 1.46667004 0.0434672907 -0.325483978 -0.944547951 -1.24468994 + 2 0.740554333 0.424095184 0.521270156 -0.430270016 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.114367031 0.992968261 -0.0305646099 -0.290426999 + 0.166666999 -0.587731063 0.752297997 0.297690988 -0.526015997 + 0.333332986 -0.636400819 0.653218806 0.410242885 -0.768369973 + 0.666666985 -0.606396914 0.586568952 0.536860943 -1.05142999 + 1 -0.602963209 0.616264224 0.506610155 -1.06887996 + 1.16666996 -0.676877081 0.548942983 0.49040699 -1.09035003 + 1.46667004 -0.689466715 0.565794826 0.452229857 -1.01300001 + 2 -0.114367031 0.992968261 -0.0305646099 -0.290426999 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.758696079 -0.643954992 -0.0984997079 -0.0882251039 + 0.166666999 -0.985027134 -0.165529028 -0.0481839105 -0.334830999 + 0.333332986 -0.994656205 -0.0951385126 -0.0400956087 -0.563951075 + 0.666666985 -0.991998196 -0.118766032 -0.0428273119 -0.459104031 + 1 -0.992070615 -0.118183956 -0.0427600853 -0.461225986 + 1.16666996 -0.983771205 -0.172610044 -0.0489893071 -0.321599007 + 1.46667004 0.81910187 -0.571936965 -0.0442747958 -0.100199997 + 2 -0.758696139 -0.643954992 -0.0984995067 -0.0882251039 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.60399586 -0.0901992768 -0.791866839 -0.390307993 + 0.166666999 0.887374759 -0.361687869 -0.285915911 -0.315241009 + 0.333332986 0.605894089 0.792170048 0.0732053965 -0.246638998 + 0.666666985 0.102948986 0.30397597 0.947100878 -0.880644977 + 1 0.145594016 0.377425075 0.914523184 -1.13018 + 1.16666996 0.0979531184 0.407354057 0.908002138 -1.12414002 + 1.46667004 -0.085461393 0.23412098 0.96844399 -1.28882015 + 2 0.603995264 -0.0901995301 -0.791867256 -0.390307993 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.226963028 -0.386060059 0.894117117 -0.399906009 + 0.333332986 0.527178884 -0.422681898 0.737171888 -0.41247201 + 0.666666985 0.575877905 -0.53885287 0.614818871 -0.428489 + 1.46667004 0.575877905 -0.53885287 0.614818871 -0.428489 + 2 0.226963028 -0.386060059 0.894117117 -0.399906009 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.711184978 0.00568128005 -0.702982008 -0.539372027 + 0.133332998 -0.816191673 0.0878607705 -0.57106185 -0.704759002 + 0.266667008 -0.871043086 0.170028016 -0.46084103 -0.829675913 + 0.333332986 -0.889224708 0.209871933 -0.406488866 -0.886942983 + 0.666666985 -0.882837355 0.295899123 -0.364749163 -1.02061999 + 1 -0.883722365 0.295588136 -0.362853169 -1.03324997 + 1.46667004 -0.925451934 0.302241981 -0.228447974 -0.883900046 + 1.73333001 -0.880338311 0.173823059 -0.441350132 -0.711430013 + 2 -0.709692836 0.00586497877 -0.704486847 -0.539404929 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.990422249 -0.128428027 0.050695315 -0.253479958 + 0.133332998 0.997720182 -0.0588516071 0.0330296047 -0.523153007 + 0.266667008 0.998666823 -0.0427513942 0.0289284959 -0.689791977 + 0.333332986 0.998869181 -0.0385305062 0.0278525054 -0.751746953 + 0.666666985 0.999165118 -0.0314697027 0.0260517057 -0.882764995 + 1 0.999190509 -0.0307981875 0.0258804895 -0.897481978 + 1.46667004 0.998596191 -0.0441389084 0.0292820055 -0.671513915 + 1.73333001 0.997763813 -0.0582003929 0.0328638963 -0.528352976 + 2 0.990317285 -0.129162028 0.0508812107 -0.252101988 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.249215946 0.17644994 -0.952237785 -0.286220044 + 0.133332998 -0.300573051 -0.0303347111 -0.953276277 -0.262692988 + 0.266667008 -0.507931232 -0.221319124 -0.832480431 -0.336003006 + 0.333332986 -0.528130829 -0.282277912 -0.800872684 -0.383787006 + 0.666666985 -0.597195089 -0.378426045 -0.707214117 -0.434381992 + 1 -0.598555923 -0.384807914 -0.702604949 -0.439303041 + 1.46667004 -0.278842032 -0.224884003 -0.933634996 -0.459639966 + 1.73333001 -0.209753022 -0.0724160001 -0.975069046 -0.332982004 + 2 0.251921952 0.176463991 -0.951522887 -0.285582989 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.322180033 0.860944092 -0.393669069 -0.390635997 + 0.133332998 -0.853222013 0.519355953 -0.0477663018 -0.503404915 + 0.333332986 -0.851637304 0.283207119 0.441030174 -0.488578975 + 0.666666985 -0.827330351 0.410170138 0.383777142 -0.653652072 + 1 -0.83176899 0.410191983 0.374036014 -0.661660016 + 1.46667004 -0.824930727 0.352262884 0.442040861 -0.574473023 + 1.73333001 -0.833689749 0.549988806 0.0497366823 -0.598465025 + 2 -0.330847025 0.873501062 -0.357122004 -0.387140006 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 1 -3.40339e-007 1.50524997e-007 -0.164505005 + 0.133332998 1 0 0 -1.15665996 + 0.333332986 1 0 0 -1.27866995 + 0.666666985 1 0 0 -1.48733997 + 1 1 0 0 -1.50663996 + 1.46667004 1 0 0 -1.29787004 + 1.73333001 1 0 0 -1.19015002 + 2 1 0 2.77889967e-007 -0.165827021 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.385688066 -0.804765165 0.451218098 -0.325623989 + 0.133332998 -0.661584735 -0.591957748 -0.460316867 -0.304411978 + 0.333332986 0.853943348 -0.37869817 -0.356887162 -0.262143999 + 0.666666985 0.475921005 -0.478922993 -0.737653017 -0.223359004 + 1 0.47288692 -0.482504934 -0.737269938 -0.224887997 + 1.46667004 0.828148663 -0.384809852 -0.407542825 -0.260307014 + 1.73333001 -0.715506792 -0.688655794 -0.117486969 -0.318262994 + 2 -0.392012924 -0.823738813 0.409609914 -0.319790006 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.0248482041 -0.314509064 0.948929191 -0.275882035 + 0.333332986 0.0248482041 -0.314509064 0.948929191 -0.275882035 + 0.666666985 0.0248482041 -0.314509064 0.948929191 -0.275882035 + 1 0.0248482041 -0.314509064 0.948929191 -0.275882035 + 1.46667004 0.0248482041 -0.314509064 0.948929191 -0.275882035 + 1.73333001 0.0248482041 -0.314509064 0.948929191 -0.275882035 + 2 0.0248482041 -0.314509064 0.948929191 -0.275882035 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.844095051 0.536166012 -0.00543567026 -0.066049695 + 0.333332986 0.995003819 -0.0181206968 0.0981783941 -0.246381983 + 0.666666985 0.978168607 -0.185755923 0.0931715593 -0.359210044 + 1 0.994664431 -0.0376905203 0.0960315466 -0.521586001 + 1.46667004 0.978168607 -0.185755923 0.0931715593 -0.359210044 + 1.73333001 0.993836999 -0.0759311095 0.0807617009 -0.20485799 + 2 0.844095051 0.536166012 -0.00543501042 -0.066049695 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.724578977 -0.656728029 0.209030002 -0.173141986 + 0.333332986 -0.808819532 -0.581771672 0.085747458 -0.179000005 + 0.666666985 -0.98290056 0.12273895 0.137264922 -0.275256008 + 1 -0.98848629 0.105484031 0.108480036 -0.460881025 + 1.46667004 -0.985572577 0.106449962 0.131586954 -0.272955 + 1.73333001 -0.908003509 -0.371854812 0.193011895 -0.17212601 + 2 0.724578977 -0.656728029 0.209030002 -0.173141986 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.770995021 0.62173897 0.137867004 -0.133212999 + 0.333332986 0.603495121 0.709805191 0.363277078 -0.683180988 + 0.666666985 0.996483266 -0.0578277111 -0.0606386103 -0.592835009 + 1 0.790946841 -0.0837381855 -0.606127858 -0.539979994 + 1.46667004 0.802506149 -0.0991366133 -0.588350058 -0.53381598 + 1.73333001 0.778615117 -0.39222905 -0.489811063 -0.385767996 + 2 0.770995021 0.62173897 0.137867004 -0.133212999 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.807543218 -0.589000106 -0.0308679081 -0.129613996 + 0.333332986 0.990877092 -0.109348014 -0.0787755102 -0.274601996 + 0.666666985 0.99618125 -0.0187151041 -0.0852798223 -0.357120991 + 1 0.99618125 -0.0187151041 -0.0852798223 -0.357120991 + 1.46667004 0.99618125 -0.0187151041 -0.0852798223 -0.357120991 + 1.73333001 0.981373668 -0.177531943 -0.0734036788 -0.234622002 + 2 0.807543218 -0.589000106 -0.0308679081 -0.129613996 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.183477998 0.980968893 -0.0635280907 -0.302805007 + 0.333332986 0.196473897 0.568428695 -0.798928559 -0.471563995 + 0.666666985 -0.809574485 0.45188427 -0.374686211 -0.192965001 + 1 -0.754484832 0.628707826 -0.188358963 -0.230728984 + 1.46667004 -0.8817119 0.359911978 -0.305036932 -0.170644 + 1.73333001 -0.25218007 0.949040234 -0.189018041 -0.189081997 + 2 0.183477998 0.980968893 -0.0635280907 -0.302805007 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.995189965 0.0102399997 -0.0974270031 -0.220128 + 0.333332986 0.901539743 0.388970941 -0.189545974 -0.565435946 + 0.666666985 0.965807259 0.169168055 -0.19646506 -0.627321005 + 1 0.958255291 0.202443063 -0.20190005 -0.644024014 + 1.46667004 0.957962334 -0.0507364236 -0.282372087 -0.674022019 + 1.73333001 0.970823109 -0.0356632024 -0.237130031 -0.445481002 + 2 0.995189965 0.0102401003 -0.0974270925 -0.220128 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.551817 -0.833365023 -0.0316346996 -0.137366995 + 0.333332986 0.283784151 -0.431325227 -0.856402397 -0.508892953 + 0.666666985 0.110628992 -0.559935927 -0.821116924 -0.554298997 + 1 0.110628992 -0.559935927 -0.821116924 -0.554298997 + 1.46667004 0.110628992 -0.559935927 -0.821116924 -0.554298997 + 1.73333001 -0.0245607104 -0.679833293 -0.732955337 -0.313300014 + 2 -0.551817 -0.833365023 -0.0316346996 -0.137366995 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.837239087 0.546597064 0.0161982998 -0.0397403017 + 0.166666999 -0.063263081 -0.000619729806 -0.997996688 -0.175139993 + 0.333332986 -0.294573933 0.625557959 -0.722428858 -0.245713979 + 0.666666985 -0.341894925 0.937869787 -0.0592289865 -0.249246985 + 1 -0.341894925 0.937869787 -0.0592289865 -0.249246985 + 1.46667004 -0.341894925 0.937869787 -0.0592289865 -0.249246985 + 1.73333001 -0.5025599 0.863109767 -0.0497499853 -0.0471016988 + 2 0.837239087 0.546597004 0.0161991026 -0.0397403948 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.775749087 0.627606988 0.0657482967 -0.143013999 + 0.166666999 -0.341852039 0.933166146 0.111077018 -0.255450994 + 0.333332986 0.540407836 0.837054729 0.0854327679 -0.441552013 + 0.666666985 0.700305641 -0.705445647 0.109171934 -0.206121996 + 1 0.861361563 0.497873783 0.100885957 -0.224969998 + 1.46667004 0.92973417 -0.344348103 0.130456015 -0.173207998 + 1.73333001 0.882922053 -0.458738029 0.100040019 -0.157403007 + 2 0.775749028 0.627606988 0.0657486022 -0.143013999 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 5.11045016e-007 1 9.3140892e-007 -0.0660764053 + 0.333332986 5.11045016e-007 1 9.3140892e-007 -0.0660764053 + 0.666666985 5.11045016e-007 1 9.3140892e-007 -0.0660764053 + 1 5.11045016e-007 1 9.3140892e-007 -0.0660764053 + 1.46667004 5.11045016e-007 1 9.3140892e-007 -0.0660764053 + 1.73333001 5.11045016e-007 1 9.3140892e-007 -0.0660764053 + 2 5.11045016e-007 1 9.3140892e-007 -0.0660764053 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.15587303 0.98770225 0.0121609028 -0.144540995 + 0.333332986 -0.15587303 0.98770225 0.0121609028 -0.144540995 + 0.666666985 1.32421997e-006 1 0 -0.0584733002 + 1 1.32421997e-006 1 0 -0.0584733002 + 1.46667004 0.656274796 -0.752782762 -0.0512007847 -0.0343024023 + 1.73333001 1.42783995e-006 1 1.25378006e-006 -0.0584731996 + 2 -0.15587303 0.98770225 0.0121612027 -0.144540995 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -5.08838014e-007 -1 -2.30001024e-006 -0.037772499 + 0.333332986 -0.299059033 0.953868032 0.0264484026 -0.225524992 + 0.666666985 0.213134021 -0.976841092 -0.0188498013 -0.211244002 + 1 -0.434974015 0.89962101 0.0384666994 -0.0517129004 + 1.46667004 0.181295991 -0.983297884 -0.0160338972 -0.124136999 + 1.73333001 0.220871076 -0.975107372 -0.0195334069 -0.25483799 + 2 -1.49788002e-006 -1 -2.62007006e-006 -0.0377723984 +endnode +doneanim bow a_dfa2_coat + +#MAXANIM ASCII +newanim kdfntdie a_dfa2_coat + length 1 + transtime 0.5 + animroot rootdummy + event 0.466666996 snd_hitground + event 0.466666996 snd_hitground + event 0.466666996 snd_hitground + event 0.466666996 snd_hitground + event 0.466666996 snd_hitground +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 15 + 0 0.00906899013 -0.186939001 0.500126004 + 0.166666999 0.00906897988 -0.122253001 0.581956029 + 0.200000003 0.00906897988 -0.107538 0.595543027 + 0.266667008 0.00241754996 -0.0756089985 0.620276988 + 0.333332986 -0.00201811991 -0.0427292995 0.604924023 + 0.366667002 -0.00201994996 0.0149600999 0.510026991 + 0.400000006 -0.00202324009 0.0889080986 0.369073987 + 0.433333009 -0.00204117992 0.198838994 0.164175004 + 0.466666996 -0.00204338995 0.248944998 0.185668007 + 0.5 -0.00204149005 0.248944998 0.206958994 + 0.533333004 -0.00204744004 0.248945996 0.155310005 + 0.56666702 -0.00204659998 0.248945996 0.164309993 + 0.600000024 -0.00204728008 0.248945996 0.156553 + 0.666666985 -0.00204728008 0.248945996 0.156690001 + 1 -0.00204728008 0.248945996 0.156690001 + orientationkey 13 + 0 0 0 0 0 + 0.166666999 0 0 0 0 + 0.200000003 0 0 0 0 + 0.366667002 0.999357343 -0.0279715098 0.0224171076 -1.31031001 + 0.400000006 0.99940604 -0.0275516994 0.0206998996 -1.37281001 + 0.433333009 0.999427915 -0.0273535959 0.0198896974 -1.40406001 + 0.466666996 0.999427915 -0.0273535959 0.0198896974 -1.40406001 + 0.5 0.999427915 -0.0273535959 0.0198896974 -1.40406001 + 0.533333004 0.999427915 -0.0273535959 0.0198896974 -1.40406001 + 0.56666702 0.999427915 -0.0273535959 0.0198896974 -1.40406001 + 0.600000024 0.999427915 -0.0273535959 0.0198896974 -1.40406001 + 0.666666985 0.999427915 -0.0273535959 0.0198896974 -1.40406001 + 1 0.999427915 -0.0273535959 0.0198896974 -1.40406001 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.942925632 -0.023854591 0.332147866 -0.461863965 + 0.0666666999 0.926076472 -0.0159355085 0.376999199 -0.406785965 + 0.166666999 0.87650758 0.00329389866 0.481376767 -0.318004012 + 0.200000003 0.624113977 0.0666308999 0.778487027 -0.195411995 + 0.366667002 -0.981383622 0.113153957 -0.15518494 -0.351871014 + 0.400000006 -0.971263349 0.184496045 -0.150362059 -0.30824101 + 0.433333009 -0.959033906 0.226207986 -0.170540005 -0.265396982 + 0.466666996 0.910216093 0.351774991 -0.218543023 -0.167234004 + 0.5 0.985308468 0.142306075 -0.0944255441 -0.361900985 + 0.533333004 0.986481309 0.137234047 -0.0895628333 -0.377206981 + 0.56666702 0.977755129 0.176199004 -0.113793001 -0.306142032 + 0.600000024 0.988880336 0.126132041 -0.0787808225 -0.416325986 + 0.666666985 0.98653686 0.137086987 -0.0891752914 -0.378738999 + 1 0.98653686 0.137086987 -0.0891752914 -0.378738999 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.291517019 -0.256375045 -0.921569109 -0.491870999 + 0.166666999 -0.423894018 -0.276814997 -0.862373054 -0.520110011 + 0.200000003 -0.398802072 -0.284620017 -0.871750176 -0.683390975 + 0.333332986 -0.815112948 -0.421925962 -0.396950006 -1.82660997 + 0.366667002 -0.837327838 -0.523134887 -0.158782944 -1.94721997 + 0.400000006 -0.894311845 -0.429352909 -0.125945985 -2.12287998 + 0.433333009 -0.798694134 -0.581383049 -0.155182019 -1.95369005 + 0.466666996 -0.812180281 -0.365629107 -0.454619139 -1.92519009 + 0.5 -0.761553109 -0.324287027 -0.56113708 -2.01366997 + 0.533333004 -0.68838203 -0.416289002 -0.593998015 -2.0157001 + 0.56666702 -0.730661988 -0.360513002 -0.579796016 -2.04998994 + 0.600000024 -0.677563787 -0.426469862 -0.599191785 -1.99931014 + 0.633333027 -0.68370384 -0.421267897 -0.595887899 -1.99116004 + 0.666666985 -0.690103829 -0.421136916 -0.588557899 -1.97966003 + 1 -0.689884901 -0.41978392 -0.589779854 -1.97957003 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -1 0 0 -1.14319003 + 0.166666999 -1 1.21165996e-007 0 -0.427605987 + 0.200000003 -1 0 0 -0.434691966 + 0.333332986 -1 0 0 -0.791320026 + 0.366667002 -1 2.20508014e-007 -1.30578002e-007 -0.400860995 + 0.400000006 -1 -5.10363975e-007 -9.23616028e-007 -0.162443995 + 0.433333009 -1 -2.48908037e-007 -1.54749998e-007 -0.520905018 + 0.466666996 -1 -3.85769994e-007 -1.21490999e-007 -0.760453999 + 0.5 -1 0 -1.70473001e-007 -0.762032986 + 0.533333004 -1 0 -3.97690997e-007 -0.775956929 + 0.56666702 -1 0 -1.69104979e-007 -0.747916996 + 0.600000024 -1 1.91072004e-007 -2.02969005e-007 -0.794740081 + 0.633333027 -1 2.78571008e-007 -3.12460969e-007 -0.796341062 + 0.666666985 -1 0 -1.8806e-007 -0.78668505 + 1 -1 -1.87632011e-007 0 -0.790984988 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 0.999694586 0.0073283473 -0.0236008912 -0.602312028 + 0.166666999 0.983011007 0.00720645953 -0.183404997 -0.0798956007 + 0.200000003 0.719415784 0.533935845 0.444244862 -0.312685013 + 0.333332986 0.588310122 -0.808626175 -0.00386219099 -0.700833976 + 0.366667002 0.195281029 -0.958561063 -0.207427025 -0.86434108 + 0.400000006 0.171131954 -0.741345763 0.648937821 -0.532518029 + 0.433333009 0.99104321 0.00550569128 -0.133428037 -0.403755009 + 0.466666996 0.634875 -0.51314503 0.577594995 -0.723398924 + 0.5 0.72476095 -0.585641921 0.362967014 -0.489349961 + 0.533333004 0.861334205 -0.507977128 -0.00791399181 -0.448826969 + 0.56666702 0.777754188 -0.552579045 0.299591064 -0.468749017 + 0.600000024 0.850738108 -0.495467037 -0.175377011 -0.45323503 + 0.633333027 0.842345655 -0.521754742 -0.135002941 -0.455009997 + 0.666666985 0.861555398 -0.499556243 -0.0903650448 -0.448104024 + 1 0.851059914 -0.516817927 -0.092715703 -0.451332957 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.632038116 0.449255049 0.631425142 -0.28866303 + 0.166666999 -0.57388103 0.617933035 0.537419081 -0.309110969 + 0.200000003 -0.601500809 0.483290851 0.636102796 -0.418179005 + 0.333332986 -0.833405912 0.271059006 0.481623948 -1.37803996 + 0.366667002 -0.829191208 0.143180013 0.540316045 -1.5517801 + 0.400000006 -0.796230137 0.135442019 0.589638054 -1.57581997 + 0.433333009 -0.699695051 0.135233015 0.701526046 -1.63618004 + 0.466666996 -0.602998912 0.156116992 0.782316923 -1.68998003 + 0.5 -0.560063958 0.198480964 0.804321885 -1.64563 + 0.533333004 -0.487369031 0.248775005 0.837007999 -1.66635001 + 0.56666702 -0.512152135 0.24411808 0.823472261 -1.62272 + 0.600000024 -0.4780958 0.247152895 0.842816651 -1.68296003 + 0.666666985 -0.491581172 0.236635089 0.838064313 -1.67928004 + 1 -0.491581172 0.236635089 0.838064313 -1.67928004 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -1 0 0 -1.23481989 + 0.166666999 -1 0 0 -0.507037997 + 0.200000003 -1 0 0 -0.549552083 + 0.333332986 -0.996601224 -0.0397051126 -0.0721771121 -0.747892976 + 0.366667002 -0.993394434 -0.0606727265 -0.0973974392 -0.667704999 + 0.400000006 -0.999076366 -0.0186495073 -0.0387123115 -0.905583024 + 0.433333009 -0.999857247 -0.00521421153 -0.0160730034 -1.17978001 + 0.466666996 -1 0 0 -1.23855996 + 0.5 -1 -2.4774701e-007 0 -1.22242999 + 0.533333004 -1 0 0 -1.26364994 + 0.56666702 -1 0 0 -1.26206005 + 0.600000024 -1 0 0 -1.26271999 + 0.666666985 -1 3.70275984e-007 0 -1.26364005 + 1 -1 4.15600994e-007 0 -1.26364005 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 0.993036687 0.0254976917 0.115012966 -0.511395991 + 0.166666999 0.564928949 0.517396927 -0.6427719 -0.114546008 + 0.200000003 0.127542987 -0.359447956 -0.924407899 -0.243367001 + 0.300000012 0.480666935 0.464101911 -0.744021952 -0.707888007 + 0.333332986 0.235874951 0.917112827 -0.321351945 -0.670670986 + 0.366667002 -0.0161243025 0.812662125 -0.582512081 -0.769783974 + 0.400000006 0.202927962 0.658734918 -0.724491954 -0.713666975 + 0.433333009 0.447503895 0.157363936 -0.880327702 -0.805226028 + 0.466666996 0.501531184 0.262855083 -0.824241281 -0.451448023 + 0.5 0.489201874 0.601266921 -0.631790817 -0.352870971 + 0.533333004 0.72475481 0.668248832 -0.167850956 -0.26721099 + 0.56666702 0.618501723 0.757208645 -0.209977895 -0.304690987 + 0.600000024 0.744066179 0.664670169 0.0676689148 -0.246824995 + 0.666666985 0.721156716 0.589339733 -0.364158839 -0.266362011 + 1 0.721156955 0.589339972 -0.364157975 -0.266361982 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0.56666702 + tightness 7.00649232e-045 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.0395983979 0.527444959 -0.848665893 -0.206787005 + 0.166666999 -0.389703006 0.448040992 -0.80460602 -0.224434003 + 0.200000003 -0.389703006 0.448040992 -0.80460602 -0.224434003 + 0.333332986 -0.908435941 -0.355796993 0.219437003 -0.117501989 + 0.366667002 -0.993480086 -0.0860916078 0.0747366995 -0.434028983 + 0.400000006 -0.978269398 -0.169305056 0.11968606 -0.237320021 + 0.433333009 -0.24163191 -0.849086642 0.469750822 -0.0505882986 + 0.466666996 -0.956205189 -0.244910061 0.160283044 -0.167899996 + 0.533333004 -0.0930692032 -0.873053133 0.478661031 -0.049308002 + 0.56666702 0.378211141 -0.817149282 0.434998184 -0.0530354977 + 0.666666985 -0.241630018 -0.849087119 0.46975103 -0.0505883023 + 1 -0.241630018 -0.849087119 0.46975103 -0.0505883023 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.69796598 -0.603175998 0.386034012 -1.22843003 + 0.166666999 -0.627720833 -0.684234798 0.371199876 -0.881465018 + 0.200000003 -0.591435909 -0.720062852 0.362922937 -0.818762004 + 0.333332986 -0.898289561 -0.330202848 -0.289899856 -0.914179981 + 0.366667002 -0.532549262 -0.616573274 -0.579852283 -0.721300006 + 0.400000006 -0.486520171 -0.535047174 -0.690668225 -0.929311931 + 0.433333009 -0.316750944 -0.423206955 -0.84886086 -1.49971998 + 0.466666996 -0.164080903 -0.54938066 -0.819303572 -1.41043007 + 0.533333004 -0.253075063 -0.486797124 -0.836051166 -1.43903005 + 0.56666702 -0.304308027 -0.436741084 -0.846554101 -1.45971 + 0.600000024 -0.305799007 -0.421871006 -0.853529036 -1.45958996 + 0.666666985 -0.293179065 -0.434077054 -0.851835132 -1.45219004 + 1 -0.293179065 -0.434077054 -0.851835132 -1.45219004 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 1 0 0 -2.52873993 + 0.166666999 1 0 0 -2.27645993 + 0.200000003 1 0 0 -2.20960999 + 0.333332986 0.999632478 -0.0209453069 0.0172111075 -1.39883006 + 0.366667002 0.999601901 -0.0211876985 0.0186312981 -1.33484995 + 0.400000006 0.999571085 -0.0212729014 0.020127302 -1.27686 + 0.433333009 0.999500215 -0.0252979081 0.0189557038 -1.16972005 + 0.466666996 0.999463677 -0.022524992 0.0237682927 -1.12416995 + 0.533333004 0.999486744 -0.0217062943 0.0235591941 -1.15227997 + 0.56666702 0.999479532 -0.0219655912 0.0236254893 -1.14324999 + 0.600000024 0.999455333 -0.0228164047 0.0238427073 -1.11447001 + 0.666666985 0.999453306 -0.0228851065 0.0238603074 -1.11219013 + 1 0.999453306 -0.0228851065 0.023860408 -1.11219013 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.813383222 -0.576651156 -0.0766893253 -0.326561958 + 0.166666999 0.737883866 -0.459408909 -0.4944399 -0.389194965 + 0.200000003 0.716508925 -0.435890913 -0.544622898 -0.398380011 + 0.333332986 0.960700572 0.233588889 0.149968922 -0.903358996 + 0.366667002 0.948643982 0.238591999 0.207722008 -0.649874926 + 0.400000006 0.903813958 0.290362984 0.314339966 -0.435315996 + 0.433333009 -0.425488144 0.198319077 -0.88296622 -5.70419979 + 0.466666996 0.227160081 -0.16881308 -0.959114432 -5.75278997 + 0.533333004 0.161608949 0.0652602762 -0.984694719 -5.8186202 + 0.56666702 0.0683927014 0.250322014 -0.965743899 -5.84924984 + 0.600000024 0.0191511977 0.295340985 -0.955199957 -5.85396004 + 0.666666985 0.033953391 0.243350968 -0.969343841 -5.85108995 + 1 0.0339518972 0.243350953 -0.969343901 -5.85108995 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.823367298 0.457754135 0.335451126 -1.03451002 + 0.166666999 -0.671646774 0.572704792 0.46999982 -0.775258005 + 0.200000003 -0.630485773 0.588206768 0.506458759 -0.740565002 + 0.333332986 -0.883704066 0.378121018 0.275847018 -0.819269061 + 0.366667002 -0.414091021 0.760744095 0.499797016 -0.394928992 + 0.400000006 -0.340896994 0.671915054 0.657509983 -0.425544977 + 0.433333009 -0.0222177114 0.543882251 0.838867366 -0.523904026 + 0.466666996 0.233666062 0.945713162 0.225891054 -0.265563995 + 0.533333004 -0.083328709 0.769128025 0.633638978 -0.328733981 + 0.56666702 -0.339044899 0.573549867 0.74571383 -0.411911994 + 0.600000024 -0.262376994 0.554656982 0.789628983 -0.438948989 + 0.666666985 -0.108024985 0.50947994 0.853674889 -0.520025015 + 1 -0.108024985 0.50947994 0.853674889 -0.520025015 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 1 0 0 -2.37615991 + 0.166666999 1 0 0 -2.13828993 + 0.200000003 1 0 0 -2.08615994 + 0.333332986 1 0 0 -1.13957 + 0.366667002 1 -1.39031002e-007 0 -0.755491972 + 0.400000006 1 -3.83841012e-007 2.23868994e-007 -0.498180985 + 0.433333009 1 -1.12922999e-006 -1.76503988e-007 -0.188263997 + 0.466666996 1 -4.1887904e-007 0 -0.684692025 + 0.533333004 1 -1.26577004e-006 1.20804998e-007 -0.378513008 + 0.56666702 1 -1.49826997e-006 -2.92636997e-007 -0.250649005 + 0.600000024 0.306358963 -0.312167972 -0.899274886 -0.52601397 + 0.666666985 0.255709976 -0.303587973 -0.917849004 -0.517749012 + 1 0.255709976 -0.303587973 -0.917849004 -0.517749012 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.833620191 0.550563097 0.0442459099 -1.03974998 + 0.166666999 0.830586851 0.555818856 0.0345088914 -1.02588999 + 0.200000003 0.828447104 0.559070051 0.0334072039 -1.02163005 + 0.333332986 0.891839266 0.442811131 0.0924173221 -1.00874996 + 0.366667002 0.879646361 0.446681142 0.163396075 -1.00641 + 0.400000006 0.847103894 0.49454996 0.194512978 -0.965287983 + 0.433333009 0.841425002 0.520377994 0.145639002 -0.924381971 + 0.466666996 0.815879285 0.317520112 0.483241171 -0.965223074 + 0.533333004 0.856881261 0.369031101 0.359959126 -0.972095013 + 0.56666702 0.834267855 0.469792962 0.288602978 -0.943789005 + 0.600000024 0.833348811 0.494745851 0.24648793 -0.945467055 + 0.666666985 0.853599668 0.504129767 0.13122794 -0.935621977 + 1 0.853599668 0.504129767 0.13122794 -0.935621977 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.00983661506 -0.00449522771 0.999941528 -0.268498987 + 0.166666999 0.00983662531 -0.00449522724 0.999941528 -0.225192994 + 0.200000003 0.00983662531 -0.00449522724 0.999941528 -0.225192994 + 0.300000012 0.00983674452 -0.00449523749 0.999941528 -0.194012001 + 0.366667002 0.00983795524 -0.00449510757 0.999941528 -0.173225001 + 0.400000006 0.00983627513 -0.00449532783 0.999941528 -0.154939994 + 0.433333009 0.00984307379 -0.00449595228 0.999941468 -0.0140854996 + 0.666666985 0.00985499285 -0.00449593132 0.999941349 -0.0140854996 + 1 0.00985499285 -0.00449593132 0.999941349 -0.0140854996 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.97574693 -0.21779497 0.0219832975 -0.375850022 + 0.166666999 0.991313994 -0.129605994 0.0223338995 -0.310465008 + 0.200000003 0.991313994 -0.129605994 0.0223338995 -0.310465008 + 0.300000012 0.182136923 -0.712033689 -0.678110719 -0.0786065981 + 0.333332986 -0.00887941848 -0.597962737 -0.80147469 -0.0677494034 + 0.366667002 -0.913694918 -0.210738987 -0.34749198 -0.384267986 + 0.400000006 -0.922448993 -0.158162996 -0.352239013 -0.337027013 + 0.433333009 0.979772627 0.020792393 -0.199030921 -0.113400005 + 0.666666985 0.979772985 0.0207921993 -0.199028999 -0.113401003 + 1 0.979772985 0.0207921993 -0.199028999 -0.113401003 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.980072975 -0.193489999 0.0449292995 -0.663028002 + 0.166666999 0.973696351 -0.221165076 0.0547849201 -0.58701098 + 0.200000003 0.973696351 -0.221165076 0.0547849201 -0.58701098 + 0.300000012 0.710879922 -0.689632952 -0.13804397 -0.245266005 + 0.333332986 -0.081852138 -0.942221344 -0.324837148 -0.195390001 + 0.366667002 0.961754382 -0.264727116 0.0703425258 -0.496665001 + 0.400000006 0.955780149 -0.283778042 0.0771641061 -0.465200007 + 0.433333009 0.464495987 -0.884523988 0.0431366004 -0.367293 + 0.666666985 -0.478987962 -0.425133973 -0.768004954 -0.655108988 + 1 -0.478987962 -0.425133973 -0.768004954 -0.655108988 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.631979048 0.0101408018 -0.774919093 -0.690001011 + 0.166666999 0.800633907 -0.0465373918 -0.597343862 -0.662337005 + 0.200000003 0.800633907 -0.0465373918 -0.597343862 -0.662337005 + 0.300000012 0.721281111 -0.0180916041 -0.692406118 -0.528014958 + 0.366667002 0.631979048 0.0101409005 -0.774919093 -0.445161968 + 0.400000006 0.631979048 0.0101409014 -0.774919093 -0.398171991 + 0.433333009 0.774131 0.332385987 -0.538739979 -0.487150997 + 0.666666985 0.851739109 0.308903039 0.423225045 -0.424129993 + 1 0.851739109 0.308903039 0.423225045 -0.424129993 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.260382056 0.944419324 0.200682044 -0.331940025 + 0.166666999 0.287990957 0.931554914 0.221960992 -0.252002001 + 0.200000003 0.287990957 0.931554914 0.221960992 -0.252002001 + 0.300000012 -0.761516094 0.480803132 0.434651077 -0.243943006 + 0.333332986 -0.887414873 0.277642965 0.367979974 -0.310380995 + 0.366667002 -0.958462298 0.0276796091 0.283873081 -0.554562986 + 0.400000006 -0.958602846 -0.00894673821 0.28460595 -0.492671996 + 0.433333009 -0.43753615 0.670791209 0.598833263 -0.112800993 + 0.666666985 0.359131724 0.776419461 0.517877638 -0.101974003 + 1 0.359131932 0.776419878 0.517876863 -0.101974003 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.771310985 0.620996058 -0.139439017 -0.797293961 + 0.166666999 0.762867689 0.632423759 -0.134435952 -0.71172303 + 0.200000003 0.762867689 0.632423759 -0.134435952 -0.71172303 + 0.300000012 0.448843896 0.893032789 0.0321184918 -0.369750977 + 0.333332986 0.413674057 0.909870148 0.0317819044 -0.354557008 + 0.366667002 0.7494151 0.649883032 -0.126606017 -0.609291017 + 0.400000006 0.743452966 0.657344937 -0.123187989 -0.573342025 + 0.433333009 0.466413915 0.882239819 -0.0641165823 -0.370263994 + 0.666666985 -0.51098001 0.694234073 0.506891012 -0.448756993 + 1 -0.51098001 0.694234073 0.506891012 -0.448756993 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.918329179 0.147729009 -0.36721608 -0.446554035 + 0.166666999 0.895585835 0.223880962 -0.384451926 -0.545216024 + 0.200000003 0.895585835 0.223880962 -0.384451926 -0.545216024 + 0.300000012 0.906429291 0.190208077 -0.37710318 -0.390635014 + 0.366667002 0.918328822 0.14772898 -0.367216945 -0.288098991 + 0.400000006 0.918328822 0.147728965 -0.367216945 -0.257688999 + 0.433333009 0.921735048 0.161910996 -0.352405041 -0.34473601 + 0.666666985 0.495179772 0.24625589 0.833159685 -0.344098002 + 1 0.495179772 0.24625589 0.833159685 -0.344098002 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.0751631856 -0.517489851 -0.852381825 -0.854297042 + 0.166666999 0.0751631781 -0.517489851 -0.852381825 -0.716507077 + 0.200000003 0.0751631781 -0.517489851 -0.852381825 -0.716507077 + 0.300000012 -0.505301952 -0.371699989 -0.778786898 -0.770776987 + 0.366667002 -0.67629981 -0.283550888 -0.679865777 -0.838732004 + 0.400000006 -0.36291787 -0.23246789 -0.902357638 -1.87551999 + 0.433333009 -0.149891093 -0.562490344 -0.813103497 -1.34203005 + 0.666666985 -0.14989002 -0.562491059 -0.813103199 -1.34203005 + 1 -0.14989002 -0.562491059 -0.813103199 -1.34203005 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.278102994 -0.804216921 -0.525255978 -0.671891928 + 0.166666999 0.278102994 -0.804216981 -0.525255919 -0.563521981 + 0.200000003 0.278102994 -0.804216981 -0.525255919 -0.563521981 + 0.300000012 0.278102964 -0.804216981 -0.525255978 -0.485495985 + 0.366667002 0.278102994 -0.804216981 -0.525255919 -0.433478981 + 0.400000006 0.603445888 0.330872953 0.725517869 -0.396088004 + 0.433333009 0.111307964 0.87207377 0.476547867 -0.303553015 + 0.666666985 0.111309014 0.872074127 0.476547033 -0.303552985 + 1 0.111309014 0.872074127 0.476547033 -0.303552985 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.46858111 -0.585740089 -0.66131711 -1.20045006 + 0.166666999 0.46858111 -0.585740089 -0.66131711 -1.00682998 + 0.200000003 0.46858111 -0.585740089 -0.66131711 -1.00682998 + 0.300000012 0.400865138 -0.34336713 -0.849356294 -0.84196502 + 0.366667002 0.199683979 -0.0535142943 -0.978397965 -0.80964607 + 0.400000006 0.265426964 -0.351831973 -0.89764291 -0.678528011 + 0.433333009 0.510016143 0.072804518 -0.857078195 -0.855419993 + 0.666666985 0.510016859 0.0728040785 -0.857077837 -0.855420053 + 1 0.510016859 0.0728041753 -0.857077837 -0.855420053 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.485525995 0.872224987 0.0590599999 -0.594527006 + 0.166666999 -0.485525995 0.872224987 0.0590599999 -0.498636007 + 0.200000003 -0.485525995 0.872224987 0.0590599999 -0.498636007 + 0.300000012 -0.919636071 0.369008034 0.134545997 -0.744376004 + 0.366667002 -0.941720128 0.311426014 0.12718901 -0.740576088 + 0.400000006 -0.855167806 0.108885989 0.50678587 -1.39925003 + 0.433333009 -0.323976964 0.612812936 0.720762968 -1.12790012 + 0.666666985 -0.323976964 0.612812936 0.720762968 -1.12790012 + 1 -0.323976964 0.612812936 0.720762968 -1.12790012 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.341045022 0.529741049 0.776571095 -0.821191013 + 0.166666999 0.341045022 0.529741049 0.776571095 -0.688741028 + 0.200000003 0.341045022 0.529741049 0.776571095 -0.688741028 + 0.300000012 0.341045022 0.529741108 0.776571095 -0.593376994 + 0.366667002 0.341045022 0.529741049 0.776571095 -0.529801011 + 0.400000006 0.629330814 0.588642776 0.507387817 -0.774906933 + 0.433333009 0.363282859 -0.0267222896 0.931295574 -0.790174007 + 0.666666985 0.363284022 -0.0267217048 0.931295156 -0.790174961 + 1 0.363284051 -0.0267216042 0.931295156 -0.79017508 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.397738785 0.784292579 0.476118714 -1.22360003 + 0.166666999 0.382190049 0.82686615 0.412581056 -1.06547999 + 0.200000003 0.382190049 0.82686615 0.412581056 -1.06547999 + 0.300000012 0.390751839 0.804844677 0.446696848 -0.899254978 + 0.366667002 0.260406911 0.50806284 0.821011841 -0.684466004 + 0.400000006 0.261628956 0.510506928 0.81910497 -0.612335026 + 0.433333009 0.278503031 0.236373022 0.930894136 -0.599232018 + 0.666666985 0.278503954 0.236372963 0.930893838 -0.599232018 + 1 0.278503954 0.236372963 0.930893838 -0.599232018 +endnode +doneanim kdfntdie a_dfa2_coat + +#MAXANIM ASCII +newanim deadfnt a_dfa2_coat + length 0.0333333015 + transtime 0.5 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 2 + 0 -0.00204728008 0.248945996 0.156690001 + 0.0333333015 -0.00204728008 0.248945996 0.156690001 + orientationkey 2 + 0 0.999427915 -0.0273535959 0.0198896974 -1.40406001 + 0.0333333015 0.999427915 -0.0273535959 0.0198896974 -1.40406001 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.986536801 0.137086973 -0.0891753882 -0.37873897 + 0.0333333015 0.986536801 0.137086973 -0.0891753882 -0.37873897 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.689884901 -0.41978392 -0.589779854 -1.97957003 + 0.0333333015 -0.689884901 -0.41978392 -0.589779854 -1.97957003 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -1 0 0 -0.790984988 + 0.0333333015 -1 0 0 -0.790984988 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.851059914 -0.516817987 -0.0927155986 -0.451332957 + 0.0333333015 0.851059914 -0.516817987 -0.0927155986 -0.451332957 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.491581172 0.236635089 0.838064313 -1.67928004 + 0.0333333015 -0.491581172 0.236635089 0.838064313 -1.67928004 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -1 0 0 -1.26364005 + 0.0333333015 -1 0 0 -1.26364005 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.721157849 0.589338899 -0.364157915 -0.266362011 + 0.0333333015 0.721157849 0.589338899 -0.364157915 -0.266362011 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.241628975 -0.849086881 0.469751954 -0.0505882055 + 0.0333333015 -0.241625905 -0.849087834 0.469751865 -0.0505882055 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.293179065 -0.434077054 -0.851835132 -1.45219004 + 0.0333333015 -0.293179065 -0.434077054 -0.851835132 -1.45219004 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.999453306 -0.0228854064 0.0238603074 -1.11219013 + 0.0333333015 0.999453306 -0.0228855051 0.0238602068 -1.11219013 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.033951696 0.243350953 -0.969343901 -5.85108995 + 0.0333333015 0.0339512974 0.243350968 -0.969343901 -5.85108995 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.108024985 0.50947994 0.853674889 -0.520025015 + 0.0333333015 -0.108024985 0.50947994 0.853674889 -0.520025015 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.25571093 -0.303587943 -0.917848706 -0.517749012 + 0.0333333015 0.25571093 -0.303587943 -0.917848706 -0.517749012 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.853599668 0.504129767 0.13122794 -0.935621977 + 0.0333333015 0.853599668 0.504129767 0.13122794 -0.935621977 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.00985499285 -0.00449599139 0.999941349 -0.0140854996 + 0.0333333015 0.00985499285 -0.00449599139 0.999941349 -0.0140854996 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.979772985 0.0207921993 -0.199028999 -0.113401003 + 0.0333333015 0.979772985 0.0207921993 -0.199028999 -0.113401003 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.478987962 -0.425133973 -0.768004954 -0.655108988 + 0.0333333015 -0.478987962 -0.425133973 -0.768004954 -0.655108988 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.851739109 0.308903039 0.423225045 -0.424129993 + 0.0333333015 0.851739109 0.308903039 0.423225045 -0.424129993 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.359131724 0.776419461 0.517877638 -0.101974003 + 0.0333333015 0.359131724 0.776419461 0.517877638 -0.101974003 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.51098001 0.694234073 0.506891012 -0.448756993 + 0.0333333015 -0.51098001 0.694234073 0.506891012 -0.448756993 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.495179772 0.24625589 0.833159685 -0.344098002 + 0.0333333015 0.495179772 0.24625589 0.833159685 -0.344098002 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.14989002 -0.562491059 -0.813103199 -1.34203005 + 0.0333333015 -0.14989002 -0.562491059 -0.813103199 -1.34203005 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.111309946 0.872073591 0.476547748 -0.303552955 + 0.0333333015 0.111309946 0.872073591 0.476547748 -0.303552955 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.510016859 0.0728040785 -0.857077837 -0.855420053 + 0.0333333015 0.510016859 0.0728040785 -0.857077837 -0.855420053 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.323976964 0.612812936 0.720762968 -1.12790012 + 0.0333333015 -0.323976964 0.612812936 0.720762968 -1.12790012 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.363284022 -0.0267217048 0.931295156 -0.790174961 + 0.0333333015 0.363284022 -0.0267217048 0.931295156 -0.790174961 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.278503954 0.236372963 0.930893838 -0.599232018 + 0.0333333015 0.278503954 0.236372963 0.930893838 -0.599232018 +endnode +doneanim deadfnt a_dfa2_coat + +#MAXANIM ASCII +newanim gutokdf a_dfa2_coat + length 1 + transtime 0.349999994 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 9 + 0 -0.00204728008 0.248945996 0.156690001 + 0.166666999 -0.0395665988 0.236755997 0.315201014 + 0.266667008 -0.0610607006 0.225244999 0.437339991 + 0.333332986 -0.0678196996 0.225123003 0.448619992 + 0.56666702 0.0442738011 0.231409997 0.50565201 + 0.666666985 0.0561663993 0.225123003 0.526526988 + 0.766667008 -0.0155757004 0.177068993 0.523455977 + 0.93333298 -0.00202185009 -0.0415709987 0.493247002 + 1 -0.00202184008 -0.133421004 0.463755995 + orientationkey 6 + 0 0.999427915 -0.0273535959 0.0198896974 -1.40406001 + 0.166666999 0.998539865 -0.0428046957 0.0329530947 -1.40497994 + 0.333332986 0.999427915 -0.0273535959 0.0198896974 -1.40406001 + 0.666666985 0.999427915 -0.0273535959 0.0198896974 -1.40406001 + 0.93333298 0.999014795 -0.0303945951 0.0323354937 -1.02909005 + 1 0.999014795 -0.0303945951 0.0323354937 -1.02909005 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.98653686 0.137086987 -0.0891752914 -0.378738999 + 0.166666999 0.10047704 -0.0336751118 0.994369328 -0.18942301 + 0.333332986 0.726613224 -0.0978974476 0.680036247 -0.679117024 + 0.533333004 0.962481141 0.268847018 0.0367608033 -0.587260008 + 0.666666985 0.861524165 0.313894093 -0.39905709 -0.454668999 + 0.800000012 0.854580045 0.309785992 -0.416804016 -0.335797995 + 1 -0.973315179 -0.220545039 0.0633836091 -0.376094997 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.689884901 -0.41978392 -0.589779854 -1.97957003 + 0.0666666999 -0.800225794 -0.257259905 -0.54171586 -1.88492 + 0.100000001 -0.747385025 -0.202241004 -0.632861912 -1.62574005 + 0.166666999 -0.444879025 -0.45697403 -0.770232022 -1.04474998 + 0.266667008 -0.468587905 -0.326309949 -0.820942879 -1.34354997 + 0.333332986 -0.362578005 -0.32239598 -0.874412954 -1.58972001 + 0.433333009 -0.658042908 -0.232045949 -0.716333866 -1.58369994 + 0.533333004 -0.861146688 -0.161323935 -0.482079804 -1.59080994 + 0.600000024 -0.893426597 -0.255905867 -0.369189799 -1.46447003 + 0.666666985 -0.902879834 -0.388673931 -0.183685973 -1.41085005 + 0.766667008 -0.956012964 -0.241515964 -0.166460991 -1.34499013 + 0.800000012 -0.955534577 -0.259587884 -0.139884934 -1.40953004 + 1 -0.291517109 -0.256374091 -0.921569347 -0.49187097 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -1 0 0 -0.790984988 + 0.0666666999 -1 -1.49960002e-007 -2.49002994e-007 -1.23128998 + 0.100000001 -1 0 -1.75501e-007 -1.39485002 + 0.166666999 -1 0 0 -1.46053004 + 0.266667008 -1 -1.82359997e-007 0 -1.50302994 + 0.333332986 -1 -2.2544198e-007 0 -1.55124998 + 0.433333009 -1 0 0 -1.56666994 + 0.533333004 -1 0 0 -1.47358 + 0.600000024 -1 0 0 -1.23093998 + 0.666666985 -1 0 0 -0.946346998 + 0.766667008 -1 2.00789003e-007 0 -0.832442999 + 0.800000012 -1 3.76938004e-007 0 -0.67723 + 1 -1 0 0 -1.14319003 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.851059973 -0.516817987 -0.0927151963 -0.451332986 + 0.0666666999 0.609964132 -0.291689068 0.736791193 -0.736581028 + 0.100000001 0.563016176 -0.391082168 0.728057325 -0.744321942 + 0.166666999 0.534023762 -0.841251612 0.0843466595 -0.84187597 + 0.266667008 0.583015025 -0.812110066 0.0238894019 -0.806852996 + 0.333332986 0.659538746 -0.708375752 -0.251420885 -0.79037106 + 0.433333009 0.728340924 -0.660113871 0.183763966 -0.797806084 + 0.533333004 0.634019852 -0.649790943 0.419273913 -0.876138985 + 0.600000024 0.490484148 -0.83283031 0.2565521 -0.859245002 + 0.666666985 0.350676179 -0.936330438 -0.0176506098 -0.916167974 + 0.766667008 0.269259065 -0.922068298 0.27801007 -0.978569031 + 0.800000012 0.259521931 -0.929493845 0.262086928 -0.977639019 + 1 0.999694586 0.00732825696 -0.0236007906 -0.602312028 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.491581172 0.236635089 0.838064313 -1.67928004 + 0.100000001 -0.707362175 0.293166071 0.643189192 -1.11295986 + 0.166666999 -0.932696044 0.324638009 0.157124996 -0.847781003 + 0.266667008 -0.970321715 0.237618923 -0.0448670834 -1.16799998 + 0.333332986 -0.972344398 0.214805096 -0.0916794389 -1.30577016 + 0.433333009 -0.965687871 0.214274958 0.146741986 -1.13128996 + 0.533333004 -0.881854951 0.167349994 0.440824002 -1.06394994 + 0.56666702 -0.881015897 0.147075981 0.44964394 -1.04052997 + 0.666666985 -0.838131011 0.141343996 0.526838005 -1.04109001 + 0.766667008 -0.87911725 0.0583430156 0.47302112 -1.20822001 + 0.800000012 -0.901237071 -0.00717388093 0.433267027 -1.30464983 + 1 0.632037103 0.449255079 0.631426156 -0.288663 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -1 0 0 -1.26364005 + 0.100000001 -0.999843836 -0.00871639792 0.0153733967 -1.50993001 + 0.166666999 -0.999563932 -0.0140972994 0.0259471964 -1.50475001 + 0.266667008 -0.998623371 -0.0200745054 0.0484602153 -1.33053994 + 0.333332986 -0.998144507 -0.0276732873 0.0542380735 -1.45504999 + 0.433333009 -0.997446299 -0.0400964133 0.0591031238 -1.66743994 + 0.533333004 -0.996500015 -0.0497106053 0.0672053993 -1.79059005 + 0.56666702 -0.996051908 -0.0515275933 0.0722878873 -1.78789997 + 0.666666985 -0.994141698 -0.0559174865 0.0924962685 -1.70255005 + 0.766667008 -0.988102734 -0.0398904905 0.148531973 -1.28548002 + 0.800000012 -0.984929621 -0.035734389 0.169223934 -1.18233001 + 1 -1 0 0 -1.23481989 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.72115624 0.58934021 -0.364159107 -0.266362011 + 0.100000001 0.544893861 0.719141901 -0.431190908 -0.843582988 + 0.166666999 0.421619892 0.777986765 -0.465803862 -1.31156003 + 0.266667008 0.372065097 0.847085178 -0.379492104 -1.30649996 + 0.333332986 0.419897884 0.828672767 -0.370117873 -1.33893001 + 0.433333009 0.4372181 0.808250189 -0.394426078 -1.36596 + 0.533333004 0.446931928 0.80012691 -0.400060952 -1.33613002 + 0.56666702 0.415366024 0.79491204 -0.442250997 -1.36849988 + 0.666666985 0.347396106 0.784744203 -0.513315201 -1.39657998 + 0.766667008 0.203793034 0.730433047 -0.651871085 -1.32983994 + 0.800000012 0.161175072 0.673681319 -0.721232355 -1.41102004 + 1 0.97673291 0.0707078874 0.202467963 -0.278771996 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement -0.00982380658 + period 0.99030149 + tightness -0.0281299055 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.241633058 -0.849086165 0.46975112 -0.0505882017 + 0.166666999 -0.471032023 -0.124962002 0.873220086 -0.222459018 + 0.333332986 -0.368396074 0.392998099 0.842518151 -0.451478004 + 0.533333004 -0.513295054 -0.29281503 0.806714058 -0.433897018 + 0.666666985 -0.503741801 -0.519315839 0.69032979 -0.486449987 + 0.800000012 -0.82641089 -0.146649957 0.543634892 -0.432860017 + 0.93333298 -0.995985866 -0.063894093 0.0626869947 -0.55539602 + 1 -0.995985866 -0.063894093 0.0626869947 -0.55539602 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.293179065 -0.434077054 -0.851835132 -1.45219004 + 0.166666999 -0.34442991 -0.393837869 -0.852208734 -1.06548011 + 0.266667008 -0.495775849 -0.46109888 -0.7359308 -1.07492006 + 0.333332986 -0.473681241 -0.552512228 -0.685825288 -1.17304003 + 0.533333004 -0.567972124 -0.443652123 -0.693239152 -1.42200005 + 0.56666702 -0.599700034 -0.44216004 -0.666974068 -1.44623005 + 0.666666985 -0.668429911 -0.408917993 -0.621278942 -1.55145001 + 0.766667008 -0.819920182 -0.371616095 -0.435468048 -1.42315996 + 0.800000012 -0.851727843 -0.395876974 -0.343279928 -1.45518005 + 0.93333298 -0.938793778 -0.34413594 -0.0153842969 -1.23968983 + 1 -0.942644954 -0.333688974 0.00849459879 -1.53771996 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.999453306 -0.0228851065 0.023860408 -1.11219013 + 0.166666999 0.999527454 -0.0221115109 0.0213540085 -1.21010005 + 0.266667008 0.999609292 -0.0197406057 0.0197893064 -1.35211003 + 0.333332986 0.999649405 -0.0185345076 0.0189083088 -1.43935001 + 0.533333004 0.999756157 -0.0194613039 0.0104365023 -1.78682005 + 0.56666702 0.999766946 -0.0194997974 0.00926278904 -1.84875 + 0.666666985 0.99979198 -0.0194341 0.00619194983 -2.05357003 + 0.766667008 0.999854267 -0.0139247039 0.00987437274 -2.14214993 + 0.800000012 0.999865472 -0.0121003054 0.0110757053 -2.17691994 + 0.93333298 0.999826133 -0.0020404302 0.0185357016 -2.42161012 + 1 0.999834418 -0.000673078233 0.018186206 -2.56687999 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.0339524038 0.243350014 -0.969344079 -5.85108995 + 0.266667008 0.631648064 0.0122719016 -0.775158107 -5.73344994 + 0.333332986 0.684515178 -0.0419577099 -0.727790177 -5.65680981 + 0.533333004 0.423428029 -0.363113999 0.829974055 -0.36828503 + 0.56666702 0.591245711 -0.462810785 0.660480678 -0.381291032 + 0.666666985 0.797555983 -0.445214987 0.407048017 -0.39546597 + 0.766667008 0.892692268 -0.446986139 0.0574797168 -0.590416014 + 0.800000012 0.897748113 -0.440296084 -0.013699403 -0.66532594 + 0.833333015 0.898470998 -0.433301002 -0.0707113966 -0.74278301 + 0.93333298 0.940593958 -0.336690009 -0.0438500978 -0.661803007 + 1 0.951642692 -0.293745935 -0.0899414793 -0.622730911 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.108024985 0.50947994 0.853674889 -0.520025015 + 0.166666999 -0.804022014 0.434217036 0.406206995 -0.658270001 + 0.266667008 -0.957370698 0.0488653854 0.284698904 -1.02996004 + 0.333332986 -0.973848343 -0.0644568205 0.217864081 -1.20422006 + 0.466666996 -0.998191774 0.0413696878 0.0436083861 -1.36339998 + 0.533333004 -0.99598366 0.0860586762 -0.0247072913 -1.41647995 + 0.56666702 -0.99481076 0.088376075 -0.0504106916 -1.42749 + 0.666666985 -0.984354377 0.150837064 -0.0910751224 -1.48651004 + 0.766667008 -0.965108931 0.261703968 -0.00870822929 -1.37124002 + 0.800000012 -0.970981359 0.238922089 0.0105577037 -1.36203003 + 0.93333298 -0.921075225 0.389223099 -0.0112176025 -1.34405994 + 1 -0.93370378 0.357709914 -0.0155182965 -1.52717996 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.255709946 -0.303588897 -0.917848706 -0.517749012 + 0.166666999 0.92735523 -0.14969705 -0.342933089 -1.26839995 + 0.266667008 0.954736412 -0.187195078 -0.231163085 -1.46876001 + 0.333332986 0.967086077 -0.16678001 -0.192169026 -1.59634995 + 0.466666996 0.980803967 -0.122135982 -0.152007982 -1.69375002 + 0.533333004 0.985481143 -0.0999028161 -0.137282014 -1.70972002 + 0.56666702 0.987396598 -0.0885975659 -0.131142944 -1.70493996 + 0.666666985 0.99236846 -0.0622604303 -0.106435053 -1.70550001 + 0.766667008 0.996553183 -0.047681611 -0.0678841099 -1.82801998 + 0.800000012 0.997581422 -0.039604716 -0.0571202226 -1.90047014 + 0.93333298 1 0 0 -2.28361011 + 1 1 0 0 -2.39707994 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.853599668 0.504129767 0.13122794 -0.935621977 + 0.166666999 0.944112182 0.260417074 -0.202077031 -1.04844999 + 0.266667008 0.941292942 0.146992981 -0.303908974 -1.18904996 + 0.333332986 0.869885862 0.122661985 -0.477757961 -1.11591005 + 0.466666996 0.924767792 0.271104962 -0.267032951 -1.07997 + 0.533333004 0.921394587 0.348573864 -0.171837911 -1.03270996 + 0.56666702 0.908824623 0.402585834 -0.109372966 -0.99140197 + 0.666666985 0.883656621 0.465234816 0.052033782 -0.936935067 + 0.766667008 0.886671901 0.461556941 0.0278942976 -0.973730028 + 0.800000012 0.88227886 0.47061494 0.0102765989 -0.98348403 + 0.93333298 0.884123862 0.458030909 -0.0923726857 -1.02889001 + 1 0.832100749 0.55298686 0.0425892882 -1.03473997 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.00985500403 -0.00449620141 0.999941349 -0.0140854996 + 0.166666999 0.00983578432 -0.00449467776 0.999941528 -0.0564877987 + 0.333332986 0.00983665418 -0.00449493714 0.999941528 -0.0564877987 + 0.666666985 0.00983826537 -0.00449473783 0.999941528 -0.0564878024 + 0.93333298 0.00983750448 -0.00449521746 0.999941528 -0.226097018 + 1 0.00983773451 -0.00449518766 0.999941528 -0.226097018 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.979772985 0.0207922999 -0.199028999 -0.113401003 + 0.166666999 -0.234224126 -0.24784112 -0.940060556 -0.0650117993 + 0.333332986 -0.316191077 -0.238838047 -0.918139219 -0.0681456029 + 0.666666985 -0.316188961 -0.238837972 -0.918139935 -0.0681454986 + 0.93333298 0.132769048 -0.821905255 -0.55393517 -0.15212898 + 1 0.132770017 -0.821905136 -0.553935051 -0.15212898 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.478987962 -0.425133973 -0.768004954 -0.655108988 + 0.166666999 -0.366308928 -0.456156909 -0.811010897 -0.554643989 + 0.333332986 -0.969956756 -0.170513958 -0.173518956 -0.476969004 + 0.666666985 -0.773011982 -0.61530894 -0.154425979 -0.632282913 + 0.93333298 -0.566620052 -0.653480053 -0.501901984 -0.381067008 + 1 -0.566620052 -0.653480053 -0.501901984 -0.381067008 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.851739109 0.308903039 0.423225045 -0.424129993 + 0.166666999 0.446706951 0.302788973 0.841885805 -1.07235003 + 0.333332986 0.907815754 0.0174996983 0.419003934 -0.710125983 + 0.56666702 0.918361545 0.312459826 0.24285987 -0.76838994 + 0.666666985 0.611916065 0.721103072 -0.324914038 -0.517947972 + 0.93333298 0.736144006 0.095756501 -0.670016944 -0.652156949 + 1 0.73614502 0.09575589 -0.670015931 -0.652158022 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.359131724 0.776419461 0.517877638 -0.101974003 + 0.166666999 0.70404762 0.674941659 0.220840871 -0.185806021 + 0.333332986 0.807238877 0.573971868 0.137555987 -0.226099998 + 0.666666985 0.807238877 0.573971868 0.137555987 -0.226099998 + 0.93333298 -0.684885085 0.569913089 0.454017073 -0.315643996 + 1 -0.68488425 0.569913208 0.454018176 -0.315643996 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.51098001 0.694234073 0.506891012 -0.448756993 + 0.166666999 -0.728414774 0.527406812 0.437325895 -0.526013017 + 0.333332986 -0.950041831 0.31129694 -0.0226866975 -0.931882918 + 0.666666985 -0.950041831 0.31129694 -0.0226866975 -0.931882918 + 0.93333298 -0.615467787 0.701169789 0.35994488 -0.396560013 + 1 -0.615467787 0.701169789 0.35994488 -0.396560013 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.495179772 0.24625589 0.833159685 -0.344098002 + 0.166666999 0.892512202 -0.0828576088 -0.443347067 -0.787043989 + 0.333332986 0.996850252 -0.0364500061 -0.0704345182 -0.982377052 + 0.666666985 0.934045672 -0.133576959 0.331233919 -0.435580969 + 0.93333298 0.955308855 0.127153978 -0.266864955 -0.469716012 + 1 0.955308855 0.127153978 -0.266864955 -0.469716012 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.14989002 -0.562491059 -0.813103199 -1.34203005 + 0.166666999 -0.380207121 -0.351448119 -0.855527222 -1.40659988 + 0.333332986 -0.380207121 -0.351448119 -0.855527222 -1.40659988 + 0.666666985 -0.430454105 -0.422132075 -0.797818124 -1.43817997 + 0.93333298 -0.331724972 -0.359072 -0.872367978 -1.75664985 + 1 -0.300861061 -0.426316053 -0.853075147 -1.98776984 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.111309946 0.872073591 0.476547748 -0.303552955 + 0.166666999 0.134976998 0.990095079 0.0386385992 -0.191942006 + 0.333332986 -0.0938833058 0.752843142 0.651470006 -0.677095056 + 0.666666985 -0.426474899 0.563873827 -0.707223773 -0.624445975 + 0.93333298 0.710504472 0.225821167 0.666474402 -0.320125043 + 1 0.587643683 0.483603776 0.648692727 -0.644531012 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.510016859 0.0728040785 -0.857077837 -0.855420053 + 0.166666999 0.548735857 -0.346279919 -0.760906816 -1.16349995 + 0.333332986 0.377526134 -0.386401117 -0.841527283 -1.50158 + 0.666666985 0.784221232 -0.41735208 -0.459145159 -1.32259011 + 0.93333298 0.427063912 -0.711718857 -0.5577389 -0.542294025 + 1 0.427063912 -0.711718857 -0.5577389 -0.542294025 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.323976964 0.612812936 0.720762968 -1.12790012 + 0.166666999 -0.753091216 0.22633706 0.617758155 -1.42287004 + 0.333332986 -0.753091216 0.22633706 0.617758155 -1.42287004 + 0.666666985 -0.753091216 0.22633706 0.617758155 -1.42287004 + 0.93333298 -0.646460176 0.704945207 0.291790068 -0.694036007 + 1 -0.646460176 0.704945207 0.291790068 -0.694036007 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.363284022 -0.0267217048 0.931295156 -0.790174961 + 0.166666999 0.564022124 0.532411098 0.631203175 -0.753574014 + 0.333332986 0.920879126 -0.172932014 0.349394023 -0.510194004 + 0.666666985 0.468460143 -0.620951176 0.628462195 -0.555368006 + 0.93333298 -0.12329299 -0.129343987 0.983904958 -0.954792023 + 1 -0.12329299 -0.129343987 0.983904958 -0.954792023 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.278503954 0.236372963 0.930893838 -0.599232018 + 0.166666999 0.285618067 0.528839171 0.79921931 -0.676069975 + 0.333332986 0.063906692 0.570036948 0.819129884 -1.17388999 + 0.666666985 0.0416735113 0.803839207 0.5933851 -1.35037994 + 0.93333298 0.499163151 0.811678231 0.303339094 -0.976324022 + 1 0.499163866 0.811677873 0.303338945 -0.976324081 +endnode +doneanim gutokdf a_dfa2_coat + +#MAXANIM ASCII +newanim xbowrdy a_dfa2_coat + length 1 + transtime 0.5 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 16 + 0 -0.00279619009 0.0194073003 1.01849997 + 0.0666666999 -0.00279619009 0.0166334007 1.02337003 + 0.133332998 -0.00279619009 0.0103224004 1.02505004 + 0.166666999 -0.00279619009 0.00720616011 1.02482998 + 0.233333007 -0.00279619009 0.000973631977 1.02316999 + 0.300000012 -0.00279619009 -0.00416987017 1.02026999 + 0.366667002 -0.00279619009 -0.00736236991 1.01688004 + 0.433333009 -0.00279619009 -0.0097846901 1.01253998 + 0.5 -0.00279619009 -0.00956957974 1.00788999 + 0.56666702 -0.00279619009 -0.0068560699 1.00416994 + 0.633333027 -0.00279619009 -0.000982815982 1.00235999 + 0.733332992 -0.00279619009 0.00660446007 1.00234997 + 0.800000012 -0.00279619009 0.0123953996 1.00462997 + 0.866666973 -0.00279619009 0.0168396998 1.00872004 + 0.93333298 -0.00279619009 0.0194524992 1.01372004 + 1 -0.00279619009 0.0194073003 1.01849997 + orientationkey 3 + 0 0.748834074 0.0730166063 0.658723056 -0.324021965 + 0.5 0.646509051 0.107165016 0.755342126 -0.281181991 + 1 0.748834074 0.0730166063 0.658723056 -0.324021965 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.565604985 -0.436437011 -0.699724019 -0.069381997 + 0.0666666999 0.613752902 -0.416110933 -0.670938909 -0.072468102 + 0.433333009 0.890883625 -0.226541921 -0.393706828 -0.125860006 + 0.5 0.899606705 -0.216754928 -0.379110873 -0.130906016 + 0.56666702 0.891541362 -0.225820094 -0.392631173 -0.126218021 + 0.93333298 0.61720109 -0.41456008 -0.668732226 -0.0727157965 + 1 0.565606058 -0.4364371 -0.699723125 -0.0693818927 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.563614845 -0.174398929 0.807417691 -1.6234901 + 0.0666666999 -0.562301815 -0.175603941 0.808071733 -1.62738001 + 0.5 -0.535452008 -0.191145003 0.822651029 -1.65034997 + 0.56666702 -0.528784156 -0.200386077 0.824762225 -1.66646016 + 1 -0.563614845 -0.174398929 0.807417691 -1.6234901 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -1 0 -4.73833012e-007 -0.806249022 + 0.0666666999 -1 0 0 -0.799197972 + 0.5 -1 1.85293004e-007 0 -0.850467026 + 0.56666702 -1 -3.64744011e-007 -4.49005995e-007 -0.858143985 + 1 -1 1.54036002e-007 -1.27286995e-007 -0.806249022 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.00471703196 0.143849045 -0.98958838 -2.38755989 + 0.0666666999 -0.00791948661 0.146637931 -0.989158511 -2.39068007 + 0.5 0.0257706847 -0.124510944 0.991883516 -3.87567997 + 0.56666702 0.0330504924 -0.120451979 0.992168844 -3.85906005 + 1 -0.00471714232 0.143849045 -0.98958838 -2.38755989 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.307365894 0.540974796 -0.78286171 -0.440600991 + 0.0666666999 0.310752034 0.541894972 -0.780886054 -0.441509992 + 0.56666702 0.467204958 0.502834916 -0.727239013 -0.482802957 + 1 0.307365894 0.540974796 -0.78286171 -0.440600991 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.989497006 0.0889327005 -0.113959 -2.12160993 + 0.0666666999 -0.989458382 0.0887197331 -0.114459038 -2.11510992 + 0.56666702 -0.989652932 0.0898102 -0.11189799 -2.14864993 + 1 -0.989497006 0.0889327005 -0.113959 -2.12160993 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 0.796760857 -0.18552798 0.575109959 -1.15797997 + 0.0666666999 0.794205904 -0.18700999 0.578155875 -1.15086997 + 0.56666702 0.7872172 -0.182814032 0.588955104 -1.09712994 + 1 0.796760857 -0.18552798 0.575109959 -1.15797997 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.956340015 -0.0994288027 0.27482301 -0.260500014 + 0.0666666999 -0.957540691 -0.0975720808 0.271284908 -0.264096975 + 0.433333009 -0.968808889 -0.0785896927 0.235016957 -0.307565004 + 0.5 -0.969489038 -0.0773357078 0.232616037 -0.310947984 + 0.56666702 -0.968808889 -0.0785896927 0.235016957 -0.307565004 + 0.93333298 -0.957540691 -0.0975720808 0.271284908 -0.264096975 + 1 -0.956340075 -0.0994284004 0.27482304 -0.260499984 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.945099592 -0.304892868 -0.117588945 -0.943359017 + 0.0666666999 -0.943158686 -0.310110897 -0.119510964 -0.923709989 + 0.133332998 -0.940933108 -0.316639036 -0.119936004 -0.908710003 + 0.166666999 -0.939841211 -0.319804132 -0.120099038 -0.903316021 + 0.233333007 -0.937807858 -0.325905949 -0.119589977 -0.894788086 + 0.300000012 -0.935757339 -0.33199513 -0.118901044 -0.887727976 + 0.366667002 -0.93362385 -0.338294953 -0.117910989 -0.879809916 + 0.433333009 -0.931396127 -0.344682038 -0.11702802 -0.873076975 + 0.5 -0.930036426 -0.348890156 -0.115360044 -0.86918503 + 0.56666702 -0.932459652 -0.342976838 -0.113515958 -0.88658601 + 0.633333027 -0.935085773 -0.335879922 -0.113133967 -0.902324975 + 0.699999988 -0.937461019 -0.329209 -0.113085002 -0.915217996 + 0.733332992 -0.938640833 -0.325905949 -0.112865977 -0.921599984 + 0.800000012 -0.940587401 -0.319973141 -0.113633052 -0.929313004 + 0.866666973 -0.942288935 -0.314342976 -0.115238994 -0.934827983 + 0.93333298 -0.94405818 -0.308649063 -0.116146013 -0.939944088 + 1 -0.945099473 -0.304893136 -0.117589056 -0.943359017 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 0.999478936 -0.021987699 0.0236314964 -1.14248013 + 0.0666666999 0.999465346 -0.0224678069 0.023754308 -1.12609005 + 0.133332998 0.999458671 -0.0227001924 0.0238134917 -1.11830997 + 0.166666999 0.999458492 -0.0227056108 0.0238148104 -1.11813998 + 0.233333007 0.99946171 -0.0225937925 0.0237862952 -1.12186003 + 0.300000012 0.99946928 -0.0223280061 0.0237186067 -1.13082004 + 0.366667002 0.999479532 -0.0219645891 0.0236256886 -1.14328003 + 0.433333009 0.999492407 -0.0215006098 0.0235073101 -1.15954006 + 0.5 0.999506414 -0.020986408 0.0233761091 -1.17805016 + 0.56666702 0.999515831 -0.0206360966 0.0232865959 -1.19095004 + 0.633333027 0.999521673 -0.0204154924 0.0232301932 -1.19921994 + 0.699999988 0.999522507 -0.0203832909 0.0232219882 -1.20043004 + 0.733332992 0.999522924 -0.0203688983 0.0232182983 -1.20097005 + 0.800000012 0.999518692 -0.0205286946 0.0232590921 -1.19496 + 0.866666973 0.999508858 -0.0208972991 0.0233532954 -1.18131006 + 0.93333298 0.999494612 -0.0214221906 0.0234871898 -1.16233003 + 1 0.999478877 -0.0219877996 0.0236315969 -1.14248002 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.571118891 0.671073854 -0.472739935 -0.354730964 + 0.0666666999 -0.556449115 0.677377105 -0.481170088 -0.350248039 + 0.133332998 -0.541058004 0.686721027 -0.485459 -0.34544301 + 0.166666999 -0.536941886 0.690568864 -0.484569937 -0.343722999 + 0.233333007 -0.531834185 0.697249293 -0.480620235 -0.341414005 + 0.300000012 -0.534764051 0.700977087 -0.471867055 -0.341066003 + 0.366667002 -0.546070933 0.70044297 -0.459549993 -0.343409002 + 0.433333009 -0.562862098 0.697573185 -0.443371087 -0.347126007 + 0.5 -0.584441245 0.689988315 -0.427018195 -0.353765041 + 0.56666702 -0.59491986 0.684375823 -0.421544909 -0.357612997 + 0.633333027 -0.607647121 0.675382257 -0.417880088 -0.362540007 + 0.699999988 -0.612677932 0.669635952 -0.41977793 -0.365128994 + 0.733332992 -0.614900172 0.666777253 -0.421077132 -0.366530001 + 0.800000012 -0.616382122 0.661644161 -0.426966101 -0.368129998 + 0.866666973 -0.60948509 0.660737097 -0.438126087 -0.366182983 + 0.93333298 -0.592926681 0.66400069 -0.455566794 -0.361631989 + 1 -0.571118891 0.671073854 -0.472739935 -0.354730964 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 0.150440946 0.798246682 0.583240747 -0.570607007 + 0.0666666999 0.179522917 0.794254601 0.580457687 -0.570806026 + 0.133332998 0.199446917 0.796888649 0.570253789 -0.567092001 + 0.166666999 0.207708091 0.799634337 0.563420177 -0.564733982 + 0.233333007 0.221816927 0.806565702 0.547949851 -0.559635997 + 0.300000012 0.236597031 0.813142061 0.531809986 -0.557011962 + 0.366667002 0.257606924 0.817029774 0.515849829 -0.558288991 + 0.433333009 0.278409004 0.821216047 0.498089015 -0.559974968 + 0.5 0.294561923 0.824473739 0.483193845 -0.563652992 + 0.56666702 0.270451069 0.831560194 0.485143095 -0.558712006 + 0.633333027 0.246618941 0.832365751 0.496332854 -0.561071992 + 0.699999988 0.225889936 0.830836773 0.508609831 -0.562204003 + 0.733332992 0.213860944 0.829610884 0.515760899 -0.563986003 + 0.800000012 0.198808968 0.822973967 0.532154918 -0.568511009 + 0.866666973 0.182786062 0.813765287 0.551702201 -0.573414981 + 0.93333298 0.166168064 0.804734349 0.569904208 -0.573952019 + 1 0.150440946 0.798246682 0.583240747 -0.570607007 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 1 0 0 -0.694476008 + 0.0666666999 1 0 -1.88521014e-007 -0.677459002 + 0.133332998 1 0 0 -0.682605028 + 0.166666999 1 0 0 -0.689251006 + 0.233333007 1 -1.52650998e-007 0 -0.707477987 + 0.300000012 1 0 0 -0.727491081 + 0.366667002 1 0 0 -0.742628992 + 0.433333009 1 0 1.90292013e-007 -0.760207951 + 0.5 1 0 0 -0.774900913 + 0.56666702 1 0 0 -0.787842989 + 0.633333027 1 0 2.45032965e-007 -0.786592066 + 0.699999988 1 0 0 -0.778792024 + 0.733332992 1 1.56682006e-007 0 -0.775844991 + 0.800000012 1 0 0 -0.757366002 + 0.866666973 1 0 -1.27657017e-007 -0.734842956 + 0.93333298 1 0 0 -0.711118042 + 1 1 0 0 -0.694476008 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.745466352 -0.665147305 0.0431154221 -0.815201998 + 0.0666666999 -0.742046893 -0.668499827 0.0497434884 -0.805258989 + 0.133332998 -0.744981825 -0.664717853 0.0561449863 -0.804179966 + 0.166666999 -0.747467875 -0.661641836 0.0593452901 -0.806230962 + 0.233333007 -0.75350523 -0.654206216 0.0651464239 -0.813271046 + 0.300000012 -0.759483874 -0.646984875 0.0677846894 -0.822758079 + 0.366667002 -0.763845921 -0.641797006 0.0680878982 -0.832397997 + 0.433333009 -0.768501103 -0.636256099 0.0677065179 -0.844392061 + 0.5 -0.771773636 -0.632549703 0.0651641637 -0.856620014 + 0.56666702 -0.773825288 -0.630173266 0.0638442189 -0.865068018 + 0.633333027 -0.772190988 -0.632856011 0.0566955954 -0.867105007 + 0.699999988 -0.769408882 -0.636542916 0.0531330928 -0.864794016 + 0.733332992 -0.76808691 -0.638449848 0.0492369942 -0.863577008 + 0.800000012 -0.762673914 -0.645272017 0.0441879965 -0.855331004 + 0.866666973 -0.756188154 -0.653202176 0.0388118029 -0.842666984 + 0.93333298 -0.749710917 -0.660600901 0.0392424949 -0.828034997 + 1 -0.745466352 -0.665147364 0.043115221 -0.815201998 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.0468950123 -0.18141304 0.982288241 -0.200712994 + 0.5 0.0468952097 -0.18141304 0.982288241 -0.200712994 + 1 0.0468952097 -0.18141304 0.982288241 -0.200712994 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.533014119 0.842576206 -0.077209115 -0.152170002 + 0.5 -0.230306074 0.972354293 -0.0385521092 -0.156669006 + 1 -0.533014834 0.842575788 -0.0772090703 -0.152170017 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.464014769 -0.854124546 0.234864876 -0.202888995 + 0.5 0.464015216 -0.854124248 0.234865084 -0.202888995 + 1 0.464015216 -0.854124248 0.234865084 -0.202888995 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.86950618 0.491460115 0.0492544062 -0.0905848965 + 0.5 0.907206714 0.418355823 0.0442087837 -0.201941997 + 1 0.86950618 0.491460115 0.0492541119 -0.0905848965 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.85694319 -0.321281075 0.403022081 -0.0936568007 + 0.5 -0.85694319 -0.321281075 0.403022081 -0.0936568007 + 1 -0.85694319 -0.321281075 0.403022081 -0.0936566964 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.338640988 0.934119999 0.112880997 -0.269932985 + 0.5 0.390985936 0.915097892 0.0986194834 -0.298817992 + 1 0.338640988 0.934119999 0.112880997 -0.269932985 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.96457994 0.120742992 -0.234534979 -0.45627299 + 0.5 0.955462754 0.189026937 -0.226626948 -0.569271028 + 1 0.96457994 0.120742992 -0.234534979 -0.45627299 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.171221972 -0.434898913 -0.884050906 -1.25967002 + 0.5 -0.171618029 -0.435110062 -0.883870184 -1.25869012 + 1 -0.171221972 -0.434898913 -0.884050906 -1.25967002 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.493139058 0.825103104 -0.275715023 -0.574406028 + 0.5 0.620894969 0.746791005 -0.238311991 -0.55438 + 1 0.493139058 0.825103104 -0.275715023 -0.574406028 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 0.5 0.677194834 -0.735370815 0.0252368953 -0.0724738985 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.945065975 0.27195701 0.181355 -0.367051989 + 0.5 -0.944415629 0.272224903 0.184316933 -0.36727199 + 1 -0.945065975 0.27195701 0.181355 -0.367051989 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.995575726 -0.0937719718 -0.00598255778 -0.0904690027 + 0.5 0.992379844 -0.0817224905 0.0922150835 -0.0926101953 + 1 0.995575666 -0.0937724635 -0.00598219782 -0.0904690027 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.543691933 -0.787610948 -0.289944977 -0.189567998 + 0.5 0.879805803 -0.357032984 -0.313797981 -0.240513995 + 1 0.543691814 -0.78761065 -0.2899459 -0.189567998 +endnode +doneanim xbowrdy a_dfa2_coat + +#MAXANIM ASCII +newanim xbowshot a_dfa2_coat + length 1 + transtime 0.300000012 + animroot rootdummy + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 12 + 0 -0.00279619009 0.0194073003 1.01849997 + 0.233333007 -0.00279634004 -0.0467719994 1.05049002 + 0.466666996 -0.00279634004 -0.0467719994 1.05049002 + 0.5 -0.0027964199 -0.0540695004 1.04777002 + 0.533333004 -0.00279648998 -0.0613670982 1.04418004 + 0.56666702 -0.0027964199 -0.0507704988 1.03531003 + 0.600000024 -0.00279634004 -0.0323027 1.02865005 + 0.633333027 -0.00279626995 -0.0138347996 1.0237 + 0.666666985 -0.00279626995 0.00463302992 1.01917005 + 0.699999988 -0.00279619009 0.0138148004 1.01795006 + 0.866666973 -0.00279619009 0.0138148004 1.01795006 + 1 -0.00279619009 0.0194073003 1.01849997 + orientationkey 6 + 0 0.748834074 0.0730166063 0.658723056 -0.324021965 + 0.366667002 -0.0734428093 0.134728029 0.988157153 -0.423385978 + 0.533333004 -0.0734426156 0.134728029 0.988157153 -0.423385978 + 0.666666985 0.619992912 0.0919665918 0.779198885 -0.318194985 + 0.866666973 0.748834074 0.0730166063 0.658723056 -0.324021965 + 1 0.748834074 0.0730166063 0.658723056 -0.324021965 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.565606058 -0.4364371 -0.699723125 -0.0693818927 + 0.233333007 -0.0259912927 -0.0149275949 0.9995507 -0.513776004 + 0.466666996 -0.0259907935 -0.0149274962 0.9995507 -0.513776004 + 0.533333004 0.00123969023 -0.0124186017 0.999922097 -0.545975983 + 0.600000024 0.0162263941 -0.0241909903 0.999575675 -0.447057009 + 0.666666985 0.367093921 -0.298541933 0.880973756 -0.0854953006 + 0.866666973 0.218567967 -0.568729937 -0.792952895 -0.0619226992 + 1 0.565606058 -0.4364371 -0.699723125 -0.0693818927 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.563614845 -0.174398929 0.807417691 -1.6234901 + 0.233333007 -0.832893252 -0.489474118 0.258271068 -1.15653002 + 0.366667002 -0.769164026 -0.58207798 0.263765007 -1.15941 + 0.466666996 -0.773706019 -0.575074971 0.265834004 -1.14532006 + 0.533333004 -0.719260991 -0.603447974 0.344258964 -1.08872998 + 0.600000024 -0.80160588 -0.513010919 0.306997985 -1.56543005 + 0.666666985 -0.82794261 -0.402264833 0.390760809 -2.1877799 + 0.733332992 -0.733117998 -0.387176961 0.55913502 -2.12984991 + 0.833333015 -0.666682303 -0.177352071 0.723934352 -1.68571997 + 0.866666973 -0.592944801 -0.164075971 0.788349867 -1.59709001 + 1 -0.563614845 -0.174398929 0.807417691 -1.6234901 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -1 0 0 -0.806249022 + 0.233333007 -1 0 -2.52754006e-007 -1.25248003 + 0.366667002 -1 0 0 -1.22318006 + 0.466666996 -1 0 -2.31477003e-007 -1.25661004 + 0.533333004 -1 1.82552995e-007 -1.35248996e-007 -1.57210004 + 0.600000024 -1 0 -2.32160005e-007 -1.36310005 + 0.666666985 1 -5.88764976e-007 1.69209997e-007 -5.6742301 + 0.733332992 1 0 0 -5.80639982 + 0.833333015 -1 0 2.38657009e-007 -0.678120971 + 0.866666973 -1 1.58052003e-007 0 -0.818561971 + 1 -1 0 0 -0.806249022 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.00471734209 0.143849045 -0.98958838 -2.38755989 + 0.233333007 -0.323096097 0.0475419126 0.945171237 -3.78839993 + 0.366667002 -0.277825028 0.0163146015 0.960493147 -3.74360991 + 0.466666996 -0.282261044 0.0323752053 0.958791196 -3.74958992 + 0.533333004 -0.270196974 0.19219099 0.94342792 -3.6856699 + 0.600000024 -0.326309115 0.149859056 0.933308423 -3.60048008 + 0.666666985 -0.222388074 -0.207624063 0.952594221 -3.62087011 + 0.733332992 -0.044977989 -0.250686944 0.967022777 -3.56497002 + 0.833333015 -0.0357231088 -0.182227045 0.982607305 -3.92884994 + 0.866666973 0.0221361071 0.141195044 -0.989734292 -2.32455993 + 1 -0.00471731182 0.143849045 -0.98958838 -2.38755989 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.307365894 0.540974796 -0.78286171 -0.440600991 + 0.233333007 -0.657016337 0.454374224 -0.601559281 -1.92270005 + 0.366667002 -0.612062812 0.494123816 -0.617430806 -2.08488011 + 0.466666996 -0.604330242 0.510025203 -0.612094164 -2.08371997 + 0.533333004 -0.571684122 0.589166105 -0.571017146 -1.97312999 + 0.600000024 -0.714619756 0.540788829 -0.443695873 -1.79426992 + 0.666666985 -0.770155728 0.573645771 -0.278909892 -1.75421 + 0.733332992 -0.697514951 0.614050984 -0.369343013 -1.23984003 + 0.866666973 0.195147932 0.562381804 -0.803519726 -0.424483985 + 1 0.307365894 0.540974796 -0.78286171 -0.440600991 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.989497006 0.0889327005 -0.113959 -2.12160993 + 0.233333007 -1 0 2.36840989e-007 -1.18805003 + 0.366667002 -1 0 0 -1.06589997 + 0.466666996 -1 0 0 -1.10892999 + 0.533333004 -1 0 0 -1.45853996 + 0.600000024 -1 0 0 -1.61027002 + 0.666666985 -0.999112725 0.02667729 -0.0325898901 -1.72816002 + 0.733332992 -0.996825457 0.0494728237 -0.0623815283 -1.85816002 + 0.866666973 -0.989497006 0.0889327005 -0.113959 -2.12160993 + 1 -0.989497006 0.0889327005 -0.113959 -2.12160993 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0.796760857 -0.18552798 0.575109959 -1.15797997 + 0.233333007 -0.388900846 0.285441905 -0.875944674 -4.52944994 + 0.366667002 -0.249478966 0.307187945 -0.918365836 -4.48625994 + 0.466666996 -0.249163926 0.297277898 -0.921706676 -4.46945 + 0.533333004 -0.297339916 0.255141914 -0.920049787 -4.38802004 + 0.600000024 -0.475129783 0.181279942 -0.861039639 -4.40229988 + 0.666666985 -0.620656133 0.00527023152 -0.784065187 -4.41455984 + 0.733332992 -0.689717889 0.0620580874 -0.72141391 -4.67940998 + 0.866666973 0.796760857 -0.18552798 0.575109959 -1.15797997 + 1 0.796760857 -0.18552798 0.575109959 -1.15797997 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.956340015 -0.0994285047 0.27482304 -0.260500014 + 0.233333007 -0.568752885 -0.092621088 0.817276895 -0.423622012 + 0.5 -0.568752885 -0.092621088 0.817276895 -0.423622012 + 0.666666985 -0.899816751 -0.0946007743 0.425887913 -0.278490007 + 0.866666973 -0.956340075 -0.0994284004 0.27482304 -0.260499984 + 1 -0.956340075 -0.0994284004 0.27482304 -0.260499984 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.945099473 -0.304893136 -0.117589056 -0.943359017 + 0.0666666999 -0.909165144 -0.378427058 -0.173815012 -0.888742983 + 0.133332998 -0.862939596 -0.450627804 -0.228625908 -0.82378602 + 0.233333007 -0.753486514 -0.554648399 -0.353020221 -0.734924972 + 0.366667002 -0.599476039 -0.627955079 -0.496287078 -0.664716005 + 0.466666996 -0.598420978 -0.627690971 -0.497891963 -0.666242003 + 0.5 -0.59869498 -0.626591027 -0.498946965 -0.68364799 + 0.533333004 -0.639981747 -0.623557746 -0.448997885 -0.684705019 + 0.56666702 -0.760100842 -0.562753856 -0.324891925 -0.725102007 + 0.600000024 -0.834563196 -0.494538099 -0.242768049 -0.779380023 + 0.633333027 -0.888599932 -0.425381958 -0.171581984 -0.834282994 + 0.666666985 -0.926422358 -0.358290076 -0.115628034 -0.891771019 + 0.699999988 -0.926098228 -0.352421075 -0.134690031 -0.900767982 + 0.866666973 -0.9458462 -0.303945035 -0.113984033 -0.948451042 + 1 -0.945099473 -0.304893136 -0.117589056 -0.943358004 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 0.999478877 -0.0219877996 0.0236315969 -1.14248002 + 0.0666666999 0.999457717 -0.0227331929 0.0238218922 -1.11722004 + 0.133332998 0.999431193 -0.0236368068 0.0240528062 -1.08791006 + 0.233333007 0.99936825 -0.0256769061 0.024573205 -1.02658999 + 0.366667002 0.999360025 -0.0259319022 0.0246383008 -1.01935995 + 0.466666996 0.999360263 -0.0259240065 0.0246364065 -1.01959002 + 0.5 0.999364018 -0.0258078016 0.0246066004 -1.02286994 + 0.533333004 0.999373674 -0.0255067926 0.024529893 -1.03145003 + 0.56666702 0.999420524 -0.0239942912 0.0241437908 -1.07668996 + 0.600000024 0.999453962 -0.022862399 0.0238548983 -1.11293995 + 0.633333027 0.999472976 -0.0221989993 0.0236855019 -1.13521004 + 0.666666985 0.999483943 -0.021807598 0.0235857982 -1.14873004 + 0.699999988 0.999491632 -0.0215307921 0.0235149898 -1.15847003 + 0.866666973 0.99947536 -0.0221129078 0.0236637089 -1.13815999 + 1 0.999478936 -0.021987699 0.0236315969 -1.14248013 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.571118891 0.671073854 -0.472739935 -0.354730964 + 0.0666666999 -0.491065949 0.670217931 -0.556472957 -0.390208006 + 0.133332998 -0.419688195 0.653986394 -0.629415274 -0.444254041 + 0.233333007 -0.329289019 0.633902073 -0.699812055 -0.517459989 + 0.366667002 -0.387831926 0.640201867 -0.663119853 -0.527450025 + 0.466666996 -0.389179051 0.64104408 -0.661515057 -0.525829971 + 0.5 -0.382855952 0.652983904 -0.653477907 -0.512408972 + 0.533333004 -0.369708061 0.665840149 -0.64805311 -0.494611055 + 0.56666702 -0.388535053 0.661104143 -0.641858101 -0.486698031 + 0.600000024 -0.43530196 0.658850014 -0.613538027 -0.463471979 + 0.633333027 -0.471771806 0.655959785 -0.589192808 -0.440225005 + 0.666666985 -0.507670105 0.655679107 -0.558888137 -0.413015008 + 0.699999988 -0.560191095 0.651536167 -0.511553109 -0.399084985 + 0.866666973 -0.549128056 0.680504084 -0.485152096 -0.350546002 + 1 -0.571118891 0.671073854 -0.472739935 -0.354730964 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.150440946 0.798246682 0.583240747 -0.570607007 + 0.133332998 0.0613610335 0.915035367 0.398679197 -0.572255969 + 0.233333007 0.00626748148 0.974538147 0.224134058 -0.58049196 + 0.366667002 0.135753974 0.986118674 0.0956076756 -0.631214917 + 0.466666996 0.134043008 0.985646129 0.102636017 -0.634199023 + 0.5 0.120854966 0.99132067 0.0517436825 -0.609409988 + 0.533333004 0.149315938 0.986452579 0.06794177 -0.588319004 + 0.56666702 0.11989601 0.972165048 0.201296002 -0.578199923 + 0.600000024 0.111763969 0.929940701 0.350312918 -0.598971963 + 0.633333027 0.107623041 0.87051332 0.480233133 -0.63125205 + 0.666666985 0.103770971 0.801020741 0.58957386 -0.676755011 + 0.699999988 0.123761997 0.793466926 0.595896959 -0.679328978 + 0.866666973 0.121431954 0.790902615 0.599772751 -0.589271009 + 1 0.150440946 0.798246682 0.583240747 -0.570607007 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 1 0 -3.08777999e-007 -0.694476008 + 0.133332998 1 0 0 -0.744409978 + 0.233333007 1 0 3.59115006e-007 -0.759676993 + 0.366667002 1 0 0 -0.745189011 + 0.466666996 1 0 0 -0.744729042 + 0.5 1 0 0 -0.773779988 + 0.533333004 1 0 0 -0.794773996 + 0.56666702 1 0 0 -0.807402074 + 0.600000024 1 0 2.06189995e-007 -0.79075098 + 0.633333027 1 0 0 -0.764924943 + 0.666666985 1 0 -2.35837007e-007 -0.734520018 + 0.699999988 1 0 0 -0.71529001 + 0.866666973 1 0 -2.76489999e-007 -0.712652028 + 1 1 0 0 -0.694476008 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -0.745466828 -0.665146828 0.0431151874 -0.815201998 + 0.133332998 -0.724657774 -0.668389738 -0.167708918 -0.767897069 + 0.233333007 -0.689440787 -0.657644808 -0.303602904 -0.747062087 + 0.366667002 -0.66904676 -0.65739274 -0.346714884 -0.76500392 + 0.466666996 -0.666618049 -0.656450033 -0.353120029 -0.766035974 + 0.5 -0.691569805 -0.651534796 -0.311822951 -0.763843 + 0.533333004 -0.718948126 -0.64410311 -0.261237055 -0.764416933 + 0.56666702 -0.732472181 -0.641437173 -0.228129044 -0.779173017 + 0.600000024 -0.730611145 -0.648067117 -0.214980036 -0.792236924 + 0.633333027 -0.726632118 -0.657449186 -0.199415028 -0.801031053 + 0.666666985 -0.720442057 -0.667973101 -0.186481029 -0.808470964 + 0.699999988 -0.717361093 -0.675638139 -0.170018047 -0.810415983 + 0.866666973 -0.747900903 -0.663726926 0.0105264978 -0.814008057 + 1 -0.745466352 -0.665147364 0.043115221 -0.815201998 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.0468952097 -0.18141304 0.982288241 -0.200712994 + 0.233333007 0.0449623242 -0.109354049 0.992985427 -0.487795025 + 0.366667002 0.150215015 -0.0276354011 0.988267064 -0.487800956 + 0.533333004 0.137127981 -0.0476016924 0.98940891 -0.411471963 + 0.666666985 0.122539006 -0.0696867108 0.990014136 -0.350636989 + 1 0.0468952097 -0.18141304 0.982288241 -0.200712994 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.533014119 0.842576206 -0.077209115 -0.152170002 + 0.233333007 0.426536798 0.895383596 -0.127884939 -0.125294998 + 0.366667002 0.885262072 0.439119041 -0.153250009 -0.141742989 + 0.533333004 0.326081842 0.937977612 -0.11776495 -0.107036002 + 0.666666985 -0.278198928 0.959058881 -0.053023193 -0.157245994 + 1 -0.533014834 0.842575788 -0.0772086754 -0.152170002 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.464014858 -0.854124784 0.234863922 -0.202888995 + 0.233333007 0.464014858 -0.854124784 0.234863922 -0.202888995 + 0.366667002 0.464015245 -0.854124546 0.234864116 -0.20288901 + 0.533333004 0.46401605 -0.854124129 0.234864026 -0.202888995 + 0.666666985 0.123318978 -0.963147819 0.239036962 -0.223839 + 1 0.464014769 -0.854124546 0.234864876 -0.202888995 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.869506121 0.491460085 0.0492554083 -0.0905848891 + 0.233333007 0.884846091 -0.194877043 -0.42316705 -0.202078 + 0.366667002 0.884846091 -0.194877043 -0.42316705 -0.202078 + 0.533333004 0.921670973 -0.104421005 -0.373656005 -0.165466994 + 0.666666985 0.0685444698 -0.83546263 -0.54525578 -0.094768703 + 1 0.86950618 0.491460115 0.0492544062 -0.0905848965 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.856943488 -0.321280777 0.403021723 -0.0936568007 + 0.233333007 0.00105863938 0.662848711 0.748752594 -0.0308489017 + 0.366667002 0.00105980039 0.662850261 0.748751283 -0.0308487993 + 0.533333004 -0.603304625 0.204500884 0.770845592 -0.0349700041 + 0.666666985 -0.782453418 -0.0718048438 0.618555367 -0.0485669002 + 1 -0.856943488 -0.321280777 0.403021723 -0.0936568007 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.338641018 0.934120119 0.112880014 -0.269932985 + 0.233333007 0.848498881 0.528830886 0.0196860973 -0.320291966 + 0.366667002 0.848499298 0.52883023 0.0196858086 -0.320291966 + 0.533333004 0.760238886 0.648220956 0.0429695956 -0.295141995 + 0.666666985 0.664703012 0.744414985 0.0633741021 -0.280470997 + 1 0.338641912 0.934119761 0.112879969 -0.269932985 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.96457994 0.120742992 -0.234534979 -0.45627299 + 0.233333007 0.286953926 0.938966691 -0.189733952 -0.315915972 + 0.366667002 0.286953926 0.938966691 -0.189733952 -0.315915972 + 0.533333004 0.598940134 0.764835119 -0.237272009 -0.305691004 + 0.666666985 0.750662684 0.516338885 -0.412188888 -0.155718997 + 1 0.96457994 0.120742992 -0.234534979 -0.45627299 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.171221972 -0.434898913 -0.884050906 -1.25967002 + 0.233333007 -0.108814977 -0.508104861 -0.85439378 -1.39918005 + 0.366667002 -0.0531260967 -0.55271697 -0.83167398 -1.39639997 + 0.533333004 -0.0812923014 -0.540003002 -0.837728024 -1.36536002 + 0.666666985 -0.11811801 -0.470800072 -0.874297082 -1.31602001 + 1 -0.171221972 -0.434898913 -0.884050906 -1.25967002 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.493139058 0.825103104 -0.275715023 -0.574406028 + 0.233333007 0.599205017 0.761578023 -0.246885002 -0.568427026 + 0.366667002 0.533865929 0.837483883 -0.11665298 -0.643576026 + 0.533333004 0.571980059 0.779647052 -0.254930019 -0.56915307 + 0.666666985 0.423970014 0.853264034 -0.303627998 -0.584048986 + 1 0.493139058 0.825103104 -0.275715023 -0.574406028 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0 0 0 0 + 0.233333007 0.76736784 -0.640756845 -0.0240248963 -0.11344599 + 0.366667002 0.76736784 -0.640756845 -0.0240252968 -0.11344599 + 0.533333004 0.76736784 -0.640756845 -0.0240255948 -0.0835921019 + 0.666666985 -0.766490817 0.625463843 -0.145899966 -0.0683111027 + 1 0 0 0 0 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 -0.945065975 0.27195701 0.181355 -0.367051989 + 0.233333007 -0.945065975 0.27195701 0.181355 -0.367051989 + 0.366667002 -0.945065737 0.271957934 0.181354955 -0.367051005 + 0.533333004 -0.9450652 0.271959037 0.181356028 -0.367050022 + 0.666666985 -0.945064962 0.27195996 0.181355998 -0.367049009 + 1 -0.945065975 0.27195701 0.181355 -0.367051989 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.995575726 -0.0937720686 -0.00598189747 -0.0904690102 + 0.133332998 0.98998183 0.0675495863 -0.123987973 -0.227275014 + 0.233333007 0.769758105 0.614261985 -0.173650995 -0.244330004 + 0.366667002 0.763308167 0.625349164 -0.162170023 -0.257104993 + 0.533333004 0.820837617 0.562370777 -0.0998234451 -0.218378022 + 0.666666985 0.878691018 0.428545982 -0.210357979 -0.154078007 + 0.866666973 0.959432125 -0.244632035 -0.140161008 -0.152448997 + 1 0.995575726 -0.0937722623 -0.00598287815 -0.0904690027 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.543691814 -0.78761065 -0.2899459 -0.189567998 + 0.133332998 0.246494919 -0.922036767 -0.298476905 -0.156508997 + 0.233333007 0.421748042 -0.884543061 -0.19927901 -0.294441044 + 0.366667002 0.384691983 -0.900062919 -0.204691991 -0.300552994 + 0.533333004 0.373055845 -0.891696572 -0.256332874 -0.273090988 + 0.666666985 0.504692972 -0.842091978 -0.190174013 -0.238126978 + 0.866666973 0.527672827 -0.803994775 -0.274141908 -0.138340995 + 1 0.543691814 -0.78761065 -0.2899459 -0.189567998 +endnode +doneanim xbowshot a_dfa2_coat + +#MAXANIM ASCII +newanim sitdown a_dfa2_coat + length 1.16666996 + transtime 0.300000012 + animroot rootdummy + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.200000003 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep + event 0.466666996 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 16 + 0 0.0735500008 -0.0241099 1.19909 + 0.133332998 0.0082344003 0.186296001 1.20450997 + 0.266667008 0.0172904003 0.358655989 1.18896997 + 0.366667002 0.0173646994 0.48792699 1.19625998 + 0.466666996 -0.00336113991 0.588968992 1.18079996 + 0.533333004 -0.00336113991 0.580273986 1.18011999 + 0.600000024 -0.00336113991 0.53964299 1.17025995 + 0.666666985 -0.00336113991 0.457484007 1.14344001 + 0.733332992 -0.00336106005 0.352732003 1.09226 + 0.800000012 -0.00336105004 0.238970995 1.01750004 + 0.866666973 -0.00336105004 0.134399995 0.943422019 + 0.93333298 -0.00336104003 0.0394919999 0.870334029 + 1 -0.00336103002 -0.0323999003 0.809195995 + 1.03332996 -0.00336103002 -0.0510300994 0.78065902 + 1.10000002 -0.00336103002 -0.0559378006 0.791610003 + 1.16666996 -0.00336103002 -0.0567544997 0.795419991 + orientationkey 9 + 0 0 0 0 0 + 0.466666996 0 0 0 0 + 0.666666985 1 -2.84927023e-006 3.56728992e-006 -0.0916289017 + 0.733332992 1 -3.05502977e-006 3.85797011e-006 -0.152715996 + 0.800000012 1 -3.07747996e-006 3.87916998e-006 -0.160350993 + 0.866666973 1 -2.97902989e-006 3.71383976e-006 -0.114536002 + 1.03332996 0 0 0 0 + 1.10000002 0 0 0 0 + 1.16666996 0 0 0 0 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.982391 0.146812007 -0.115560003 -0.132321 + 0.133332998 0.987820208 -0.142314032 -0.0629126057 -0.146551982 + 0.300000012 0.978936613 0.0284467898 0.202172935 -0.157662004 + 0.400000006 0.993988872 0.0275343955 -0.105961978 -0.17495802 + 0.466666996 0.991831422 0.0142398058 -0.126758054 -0.182662994 + 0.56666702 0.997039557 0.0132145947 -0.0757465735 -0.303766996 + 0.666666985 0.987900674 0.0380618833 0.150344938 -0.43444401 + 0.866666973 0.942753017 0.0689604953 0.326283962 -0.740824044 + 1.16666996 0.93026042 0.0441390276 -0.364235222 -0.0634263009 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.597796023 -0.76326102 -0.245096996 -0.212439999 + 0.133332998 0.232199028 -0.904027104 -0.358913034 -0.115477003 + 0.300000012 -0.581905842 -0.801324725 -0.138795957 -0.248063982 + 0.366667002 -0.323402882 -0.894031703 0.310028881 -0.250333995 + 0.400000006 -0.0552358888 -0.996282816 0.0661026835 -0.195704997 + 0.466666996 0.602214992 -0.775156975 -0.190968007 -0.211198002 + 0.533333004 0.421821952 -0.877905846 -0.226599962 -0.178875983 + 0.600000024 0.780090988 -0.538424015 0.318681002 -0.193676993 + 0.666666985 0.954029918 -0.269982964 0.130138978 -0.228957996 + 0.800000012 0.275182873 0.10000395 0.956176579 -0.398838997 + 0.866666973 0.560173154 0.26466608 0.78495729 -0.394683003 + 0.93333298 0.47025913 0.24686107 0.847299218 -0.447408974 + 1 0.363300949 0.236553937 0.901140749 -0.482524008 + 1.03332996 0.321743101 0.218019068 0.921384335 -0.501210988 + 1.10000002 0.155197009 0.128327012 0.979513168 -0.555848062 + 1.16666996 0.0355351046 0.0687170103 0.997003138 -0.646458983 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -1 -2.31823009e-007 0 -0.180326 + 0.133332998 -0.930781066 0.0900766104 -0.354306042 -0.0440876 + 0.300000012 -0.999993265 0.000903235225 -0.00355273089 -0.174801007 + 0.366667002 -0.998514712 -0.0134246973 0.0528026894 -0.340362996 + 0.400000006 -0.997861564 -0.0161052924 0.0633474737 -0.413427025 + 0.466666996 -0.997659504 -0.0168478917 0.0662694722 -0.439502031 + 0.533333004 -0.998565435 -0.0131933056 0.0518944226 -0.335251957 + 0.600000024 -0.998557925 -0.039265696 0.0366089977 -0.55033201 + 0.666666985 -0.998004675 -0.0455979891 0.0436744913 -0.924374998 + 0.800000012 -0.997517645 -0.0568981767 0.0414865837 -1.40845001 + 0.866666973 -0.997598231 -0.0530970134 0.0444799103 -1.64775002 + 0.93333298 -0.997397244 -0.0570638143 0.04407271 -1.62504995 + 1 -0.997093081 -0.0632008016 0.0425567999 -1.55985999 + 1.03332996 -0.996912777 -0.0667503849 0.0413438901 -1.52666998 + 1.10000002 -0.996089876 -0.079463996 0.0386066958 -1.36389995 + 1.16666996 -0.994821072 -0.0953849107 0.0351108052 -1.20525002 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.669664204 0.734762192 0.108048022 -0.156479001 + 0.133332998 -0.82214427 0.495802164 0.279748112 -0.121707998 + 0.300000012 -0.627868176 0.773547232 0.0860596299 -0.169545993 + 0.366667002 -0.354775935 0.612096906 -0.706732929 -0.174162 + 0.400000006 0.0787758827 0.884094834 -0.460619897 -0.135651007 + 0.466666996 0.16609396 0.983412623 -0.0728858858 -0.129896 + 0.533333004 -0.217620984 0.976032019 -0.00161997997 -0.125181004 + 0.600000024 -0.460627079 -0.199997038 0.864768088 -0.357340008 + 0.666666985 -0.283108056 -0.150204033 0.947253168 -0.776939988 + 0.800000012 -0.0721697807 -0.199160919 0.97730571 -1.29968011 + 0.866666973 -0.112624049 -0.212274104 0.970698476 -1.50309002 + 0.93333298 -0.0893369094 -0.196581021 0.976409137 -1.53968 + 1 -0.0673215687 -0.169960916 0.983148575 -1.53246009 + 1.03332996 -0.0635621771 -0.163330942 0.984521627 -1.50977004 + 1.10000002 -0.0332450904 -0.151077941 0.987962663 -1.37491 + 1.16666996 -0.0188079011 -0.14679502 0.988988101 -1.25068998 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.0534260795 0.919182658 0.39019084 -0.124788001 + 0.133332998 0.69258517 0.716563165 0.082843326 -0.268265992 + 0.266667008 0.748126864 0.655143857 0.105321981 -0.239435002 + 0.300000012 0.692554772 0.675935745 0.251949906 -0.223551989 + 0.333332986 0.602553248 0.68456924 0.410237163 -0.211257994 + 0.466666996 0.49234727 0.781944335 -0.382305175 -0.206689999 + 0.533333004 -0.823898196 0.557791114 0.100304022 -0.234528005 + 0.800000012 -0.296622038 0.0170336012 -0.954843044 -0.75107795 + 0.866666973 -0.221378937 -0.000590202806 -0.975187659 -0.766253948 + 0.93333298 -0.114199005 -0.0219210014 -0.993216038 -0.721138954 + 1 -0.0344286934 -0.0332219973 -0.998854816 -0.692038 + 1.03332996 0.00103634968 -0.0454816855 -0.998964608 -0.675472975 + 1.10000002 0.0050266874 -0.0690783635 -0.997598588 -0.604565978 + 1.16666996 0.0359365121 -0.0975022316 -0.994586289 -0.537164927 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -1 7.77009916e-007 0 -0.0797960013 + 0.133332998 -0.999282241 0.00596796162 -0.0374090038 -0.23358202 + 0.266667008 -0.9992432 0.00612802105 -0.038412109 -0.246283993 + 0.300000012 -0.999532938 0.00481480965 -0.0301783979 -0.170228019 + 0.333332986 -0.999926865 0.00190511986 -0.0119407987 -0.101030998 + 0.466666996 -0.998975158 0.00713085104 -0.0446970053 -0.373026997 + 0.533333004 -0.999038637 0.00690651778 -0.0432909839 -0.334603995 + 0.800000012 -0.999216676 0.02946309 -0.0264178924 -1.05470002 + 0.866666973 -0.999236107 0.0285269041 -0.026709903 -1.32277 + 0.93333298 -0.999214888 0.0282471944 -0.0277803969 -1.39268017 + 1 -0.99916774 0.0297864936 -0.0278664958 -1.40901005 + 1.03332996 -0.999137402 0.0308973156 -0.0277448129 -1.40933001 + 1.10000002 -0.998946309 0.0368646085 -0.0273371059 -1.29584002 + 1.16666996 -0.998708963 0.0429819934 -0.0270740986 -1.20213997 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.356789082 -0.933991313 0.0190203059 -0.105930999 + 0.133332998 -0.401415944 -0.89496994 0.194663972 -0.160901994 + 0.266667008 -0.119965963 -0.980441689 0.156019956 -0.110628992 + 0.300000012 -0.286558837 -0.945735514 -0.153193906 -0.112594992 + 0.333332986 -0.451911092 -0.807369113 -0.379383057 -0.129149005 + 0.466666996 0.77631098 -0.417988002 0.471834004 -0.264470011 + 0.533333004 0.32221216 -0.905283272 0.276842088 -0.113959998 + 0.800000012 0.0239807907 0.204801917 -0.978509605 -1.20823002 + 0.866666973 0.0257061999 0.195849016 -0.980297089 -1.40441 + 0.93333298 0.0347836055 0.211425021 -0.97677511 -1.46221006 + 1 0.0532416999 0.224407017 -0.973039985 -1.47472 + 1.03332996 0.0640571937 0.225797966 -0.972065806 -1.48057997 + 1.10000002 0.0525145084 0.212269038 -0.975799203 -1.36260009 + 1.16666996 0.0393639058 0.198159024 -0.979379117 -1.26608992 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.0721143708 0.36824289 0.926928639 -0.149598002 + 0.133332998 0.560480654 0.63423866 0.532543719 -0.0539213009 + 0.266667008 0.948642135 0.235590026 -0.211129025 -0.0542889982 + 0.466666996 0.799875796 -0.215511948 0.560136855 -0.105562001 + 0.666666985 0.957932293 -0.119903028 0.260747045 -0.221103996 + 1.03332996 -0.304504067 -0.295048058 0.905662179 -0.0664950013 + 1.10000002 -0.656263053 -0.245983019 0.713310003 -0.0840265006 + 1.16666996 -0.817816675 -0.15905495 0.553061843 -0.110095002 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.716245115 -0.601712108 -0.3534621 -0.493074 + 0.133332998 -0.698010862 -0.6926018 -0.181888968 -0.265010983 + 0.266667008 0.355203152 -0.863542318 -0.357946128 -0.207959995 + 0.400000006 -0.925377846 -0.35183695 0.14101997 -0.410600007 + 0.466666996 -0.957659066 -0.269755036 0.100605011 -0.386415958 + 0.533333004 -0.958816946 -0.14066799 -0.246743992 -0.453453988 + 0.600000024 -0.98505795 -0.106949992 -0.13499099 -0.594538987 + 0.666666985 -0.994342446 -0.0878176317 -0.0597593263 -0.813230991 + 0.733332992 -0.995847523 -0.0866075531 -0.0280496888 -1.04177999 + 0.800000012 -0.996035874 -0.0880519897 -0.0126246978 -1.24634004 + 0.866666973 -0.995743871 -0.0921535939 0.00134822994 -1.36173999 + 0.93333298 -0.994962096 -0.098386012 0.0192520022 -1.44287002 + 1 -0.993828237 -0.105316021 0.03484191 -1.47887003 + 1.03332996 -0.993757725 -0.106452972 0.0333676897 -1.49517 + 1.10000002 -0.9931885 -0.109829947 0.0389097817 -1.44025004 + 1.16666996 -0.992041469 -0.116172053 0.0485567227 -1.40470004 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 1 6.11777011e-007 0 -0.200817019 + 0.133332998 0.999031126 -0.00203278032 -0.0439626053 -0.25248003 + 0.266667008 0.867154658 0.0165813938 -0.497762799 -0.0543191954 + 0.400000006 0.99983269 -0.00659617828 -0.0170605946 -0.859420002 + 0.466666996 0.998836935 -0.00699289935 -0.0477063954 -0.657656074 + 0.533333004 0.992919981 -0.00584933022 -0.118640997 -0.399744004 + 0.600000024 0.992296994 -0.00588392979 -0.123741992 -0.427300036 + 0.666666985 0.993447542 -0.00738941645 -0.114049949 -0.499816 + 0.733332992 0.995766401 -0.0106767034 -0.0912976414 -0.645738006 + 0.800000012 0.997138798 -0.0134663964 -0.0743833855 -0.810737073 + 0.866666973 0.997546256 -0.0145875048 -0.0684741139 -0.918474972 + 0.93333298 0.997442603 -0.0141712958 -0.0700529739 -0.964434028 + 1 0.997071266 -0.0127451029 -0.0754085183 -0.983063996 + 1.03332996 0.997152567 -0.0129502937 -0.0742906705 -1.02717996 + 1.10000002 0.996490061 -0.0102339005 -0.0830828995 -1.01007009 + 1.16666996 0.996062994 -0.00837165955 -0.0882522985 -1.02409005 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.550894856 0.562547863 -0.616485834 -0.334284991 + 0.133332998 -0.261429936 0.547858894 -0.794672906 -0.283248991 + 0.266667008 -0.507964134 0.654716194 -0.559749126 -0.289198995 + 0.400000006 -0.649535835 0.545692861 -0.529454887 -0.360644013 + 0.466666996 -0.774685323 0.385411143 -0.50131917 -0.454843968 + 0.533333004 -0.617771149 0.459081113 -0.638438165 -0.172351003 + 0.600000024 -0.338039875 0.436711848 -0.833673656 -0.167021006 + 0.666666985 0.114095978 0.365520954 -0.923783839 -0.181922987 + 0.733332992 0.406150013 0.316008002 -0.857427001 -0.210297003 + 0.800000012 0.639431059 0.267452031 -0.720831037 -0.250479996 + 0.866666973 0.800573289 0.204448059 -0.563279152 -0.320446998 + 0.93333298 0.888094902 0.149179995 -0.434778959 -0.428620964 + 1 0.925191402 0.119422056 -0.360221177 -0.526094019 + 1.03332996 0.936098576 0.111602955 -0.333562851 -0.537133992 + 1.10000002 0.935846806 0.110062979 -0.334778905 -0.534462929 + 1.16666996 0.931712389 0.120109051 -0.342762142 -0.521293998 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.321924925 0.129977956 0.937800646 -0.310216993 + 0.133332998 -0.798274994 0.112989008 0.591600001 -0.578992009 + 0.266667008 -0.910996795 0.124086984 0.393302947 -0.44204101 + 0.366667002 -0.956184208 0.264627039 0.125237018 -0.286451012 + 0.466666996 -0.812420309 0.549021184 0.196339071 -0.259052992 + 0.533333004 -0.891998053 0.411876023 0.186272994 -0.341785967 + 0.600000024 -0.953132927 0.275879979 0.124208994 -0.496504992 + 0.666666985 -0.981788993 0.179412022 0.0624638014 -0.737750947 + 0.733332992 -0.991196156 0.131680012 0.0138025032 -0.98469907 + 0.800000012 -0.99381417 0.110519029 -0.0109059028 -1.20912004 + 0.866666973 -0.994223654 0.103948966 -0.0267203916 -1.34723997 + 0.93333298 -0.994186759 0.0996666774 -0.0407334901 -1.45582998 + 1 -0.993881583 0.0983925611 -0.0501822755 -1.51507998 + 1.03332996 -0.993497908 0.0994143859 -0.0554859936 -1.53654003 + 1.10000002 -0.996098042 0.0816405043 -0.033518102 -1.47801006 + 1.16666996 -0.998141289 0.0605281182 -0.00709298206 -1.43411005 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 1 -3.72805016e-006 4.41963994e-006 -0.0214418974 + 0.133332998 0.944710314 0.082838133 -0.3172701 -0.863740981 + 0.266667008 0.999136388 -0.0265127085 0.0319938138 -0.32860598 + 0.366667002 0.996953189 -0.0563040115 0.0539832115 -0.302139014 + 0.466666996 0.995750487 -0.0695368275 0.0603786297 -0.363447011 + 0.533333004 0.993571937 -0.0884783939 0.0706138909 -0.354948997 + 0.600000024 0.993906736 -0.0861331671 0.0687786788 -0.426723003 + 0.666666985 0.995442986 -0.0727593005 0.0616385005 -0.566096008 + 0.733332992 0.996801317 -0.0581130162 0.0548635162 -0.764849067 + 0.800000012 0.997540891 -0.0482570939 0.0508272909 -0.975896001 + 0.866666973 0.99775219 -0.0452176034 0.0494568124 -1.12364995 + 0.93333298 0.997711778 -0.0463364944 0.0492356904 -1.20755994 + 1 0.997554958 -0.0495288968 0.0493048951 -1.25318003 + 1.03332996 0.997558296 -0.0496585108 0.049107112 -1.29996002 + 1.10000002 0.99937439 -0.0252565108 0.0247585084 -1.28111005 + 1.16666996 1 1.33377e-007 1.83520001e-007 -1.28759003 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.442631006 -0.538164973 0.717256069 -0.218755007 + 0.133332998 -0.796475351 -0.601417363 -0.0626431331 -0.174363002 + 0.266667008 0.417134076 -0.402697116 0.814760208 -0.0715414956 + 0.366667002 -0.482854992 -0.314404994 0.817313015 -0.184060007 + 0.466666996 -0.85594207 -0.406358063 0.319744021 -0.263936013 + 0.533333004 -0.843641341 -0.43013519 0.32133013 -0.23131898 + 0.600000024 -0.829634726 -0.426365852 0.360441923 -0.206809983 + 0.666666985 -0.765775323 -0.416487157 0.490027159 -0.17480801 + 0.733332992 -0.632390678 -0.392104805 0.668083727 -0.159378007 + 0.800000012 -0.372127146 -0.394099146 0.840361357 -0.139999017 + 0.866666973 0.189270005 -0.343944013 0.919717014 -0.135764003 + 0.93333298 0.695924342 -0.191999093 0.691972315 -0.197603017 + 1 0.849154174 -0.105601013 0.517480075 -0.280512959 + 1.03332996 0.864778221 -0.101857029 0.491715163 -0.296599001 + 1.10000002 0.874289632 -0.0980734527 0.475393772 -0.288071007 + 1.16666996 0.877935946 -0.0992829949 0.468371004 -0.269784987 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.0697562993 0 0.997564077 -0.261799008 + 0.133332998 0 0 0 0 + 0.266667008 0 0 0 0 + 0.466666996 0 0 0 0 + 0.666666985 0 0 0 0 + 1.03332996 0 0 0 0 + 1.16666996 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.154659942 0.140908942 0.977867544 -0.105742 + 0.133332998 0.468552977 0.837661862 -0.280678958 -0.224251986 + 0.266667008 0.561961055 0.786686122 -0.255587041 -0.237371996 + 0.466666996 0.672258317 0.707244277 -0.218802094 -0.261610985 + 0.666666985 0.848988414 0.509681165 -0.139441043 -0.283441991 + 1.03332996 0.0867829323 0.996125281 -0.0142537048 -0.173375979 + 1.16666996 0.0867829323 0.996125281 -0.0142537048 -0.173375979 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.729360223 -0.502169192 0.464607179 -0.290223002 + 0.133332998 0.334222943 -0.942493796 -0.000653740892 -0.379067987 + 0.266667008 0.346684098 -0.924634218 0.157676041 -0.362434 + 0.466666996 0.348115206 -0.846922398 0.401918173 -0.356029004 + 0.666666985 -0.649975955 -0.72595495 0.224767983 -0.430272013 + 0.833333015 -0.935951054 -0.348966002 0.0470997021 -0.856575012 + 1.03332996 -0.98869276 -0.129974976 0.0747870877 -1.29893005 + 1.16666996 -0.98869276 -0.129974976 0.0747870877 -1.29893005 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.325794846 -0.286421895 0.901010633 -0.33503902 + 0.133332998 0.525736094 -0.233869076 0.817867219 -0.398755968 + 0.266667008 0.494572937 -0.237496957 0.836057901 -0.383679003 + 0.466666996 0.441732764 -0.242800862 0.863666534 -0.362080991 + 0.666666985 0.805864215 0.0153960045 0.59190017 -0.435085028 + 0.833333015 0.934221625 0.127740949 0.333034873 -0.748705924 + 1.03332996 0.961823225 0.207075045 0.178930059 -1.03977001 + 1.16666996 0.961823225 0.207075045 0.178930059 -1.03977001 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.86187768 -0.477820814 -0.169864953 -0.191594005 + 0.133332998 0.507168889 -0.833650827 0.218645945 -0.224887013 + 0.266667008 0.563066185 -0.800672233 0.204647064 -0.233437002 + 0.466666996 0.635143995 -0.750121057 0.184147999 -0.248001978 + 0.666666985 0.906610787 -0.4031699 0.124542966 -0.249562979 + 1.03332996 0.0829953775 -0.996484697 0.0114012966 -0.170557007 + 1.16666996 0.0829953775 -0.996484697 0.0114012966 -0.170557007 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.378622174 0.924774349 -0.0379157178 -0.215583995 + 0.133332998 0.65417403 0.755514145 -0.0354211032 -0.275278956 + 0.266667008 0.542181075 0.840145051 -0.0140012 -0.341403961 + 0.466666996 0.704711258 0.709182322 -0.0210351087 -0.296172976 + 0.666666985 -0.561003149 0.827798188 0.00506189186 -0.395519972 + 0.833333015 -0.909173131 0.415593028 0.0262033027 -0.839685023 + 1.03332996 -0.971774042 0.224236012 -0.0733034089 -1.32184994 + 1.16666996 -0.971774042 0.224236012 -0.0733034089 -1.32184994 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.778510869 -0.0524109937 -0.625438929 -0.192891002 + 0.133332998 0.721074164 0.400777102 -0.565181136 -0.184929997 + 0.266667008 0.721074164 0.400777102 -0.565181136 -0.184929997 + 0.466666996 0.721074164 0.400777102 -0.565181136 -0.184929997 + 0.666666985 0.94269067 -0.0868493691 -0.32216689 -0.350243002 + 0.833333015 0.964197814 -0.152743965 -0.216775969 -0.711074948 + 1.03332996 0.946722865 -0.25067398 -0.202183977 -1.05192995 + 1.16666996 0.946722865 -0.25067398 -0.202183977 -1.05192995 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.383569032 -0.450727016 -0.806052089 -0.483921021 + 0.133332998 -0.331213862 -0.307585865 -0.892013609 -0.443625003 + 0.266667008 -0.287585855 -0.321971834 -0.9020136 -0.436940014 + 0.466666996 -0.218650967 -0.342877984 -0.913578928 -0.428730994 + 0.666666985 -0.49069494 -0.364905983 -0.791240871 -0.556921005 + 0.833333015 -0.704687059 -0.289381027 -0.647823095 -0.766091943 + 1.03332996 -0.888888359 -0.283868104 -0.359578133 -0.851090014 + 1.16666996 -0.888888359 -0.283868104 -0.359578133 -0.851090014 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.593418956 -0.768539906 0.239165977 -0.122929998 + 0.133332998 0.887962937 -0.433234006 0.15436998 -0.14644599 + 0.266667008 0.841499269 -0.518632174 0.15132606 -0.120640002 + 0.466666996 0.685718238 -0.714872241 0.136924043 -0.0856598094 + 0.666666985 -0.705423176 0.691966116 0.153496027 -0.212770998 + 1.03332996 -0.350497931 0.914505839 0.202064961 -0.67189002 + 1.16666996 -0.350497931 0.914505839 0.202064961 -0.67189002 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.439658046 -0.402072072 0.803143084 -0.173443004 + 0.133332998 0.567547858 -0.405767947 0.716408908 -0.205895022 + 0.266667008 0.522980869 -0.405555934 0.749676883 -0.192386016 + 0.466666996 0.439658046 -0.402072072 0.803143084 -0.173443004 + 0.666666985 0.945521593 -0.219335929 0.240583897 -0.440467983 + 1.03332996 0.784060717 -0.567455828 -0.251480907 -1.02971995 + 1.16666996 0.784060717 -0.567455828 -0.251480907 -1.02971995 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.101476043 0.15590708 0.982545495 -0.415734023 + 0.133332998 -0.290499032 0.109831013 0.950551152 -0.432483971 + 0.266667008 -0.249073893 0.120541945 0.960953593 -0.427219003 + 0.466666996 -0.184303939 0.136585936 0.973332584 -0.420872003 + 0.666666985 -0.488009155 0.253932059 0.8350842 -0.538210988 + 0.833333015 -0.693280756 0.250517875 0.675723791 -0.726249039 + 1.03332996 -0.852769136 0.305519044 0.423607051 -0.87846303 + 1.16666996 -0.852769136 0.305519044 0.423607051 -0.87846303 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.984097898 -0.145545989 -0.101821989 -0.155208007 + 0.133332998 -0.871787965 0.482212007 0.0863555968 -0.243774995 + 0.266667008 -0.631590962 0.773241878 0.0564788915 -0.171194017 + 0.466666996 0.300119072 0.952802241 -0.0457868129 -0.161734 + 0.666666985 -0.926736295 -0.115235031 -0.357604086 -0.190469012 + 1.03332996 -0.584250629 -0.689308584 -0.428374738 -0.665171981 + 1.16666996 -0.584249973 -0.689309001 -0.428374976 -0.665171921 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.563693881 -0.597072899 -0.570747852 -0.0939100012 + 0.133332998 0.921979249 -0.226672053 -0.313965082 -0.363130003 + 0.266667008 0.911004364 -0.230060115 -0.342262179 -0.302577972 + 0.466666996 0.879142702 -0.237732917 -0.41302681 -0.212638006 + 0.666666985 0.996822834 -0.0702983886 -0.0374479927 -0.535651982 + 1.03332996 0.992131054 0.00437725987 0.125127003 -1.23447013 + 1.16666996 0.992131054 0.00437729992 0.125127003 -1.23447013 +endnode +doneanim sitdown a_dfa2_coat + +#MAXANIM ASCII +newanim sit a_dfa2_coat + length 2 + transtime 0.5 + animroot rootdummy +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 2 + 0 -0.00336103002 -0.0566597991 0.795419991 + 2 -0.00336103002 -0.0566597991 0.795419991 + orientationkey 2 + 0 0 0 0 0 + 2 0 0 0 0 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 6 + 0 0.930260599 0.0441388786 -0.364234835 -0.0634261966 + 0.733332992 0.969776273 0.0334075056 -0.241698056 -0.0953949019 + 0.833333015 0.970628858 0.0331064947 -0.238292977 -0.0967495963 + 0.93333298 0.969985008 0.0333341993 -0.240869001 -0.0957214013 + 1.89999998 0.932331026 0.0436811 -0.358958006 -0.0643550977 + 2 0.930260599 0.0441388786 -0.364234835 -0.0634261966 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.0361253954 0.0645572916 0.997259915 -0.649236977 + 0.833333015 0.0416487195 0.0661150292 0.996942401 -0.638203979 + 2 0.0361253954 0.0645572916 0.997259915 -0.649236977 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.99482578 -0.0953248814 0.0351405926 -1.20587003 + 0.833333015 -0.995021462 -0.0933274478 0.034961015 -1.23273003 + 2 -0.99482578 -0.0953248814 0.0351407938 -1.20587003 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.0175611898 -0.149229944 0.988646567 -1.24778008 + 0.833333015 -0.0241643097 -0.152089059 0.988071382 -1.26470995 + 2 -0.017561391 -0.149229944 0.988646567 -1.24778008 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.0335749015 -0.0999789014 -0.994422913 -0.538581014 + 0.833333015 0.0351128019 -0.101828024 -0.994182169 -0.536813974 + 2 0.0335749015 -0.0999789014 -0.994422913 -0.538581014 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.998707533 0.042983178 -0.027124187 -1.20139003 + 0.833333015 -0.998755515 0.0420009829 -0.0268954858 -1.22765005 + 2 -0.998707533 0.042983178 -0.0271240864 -1.20139003 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.0407713838 0.19642593 -0.979670644 -1.27006996 + 0.833333015 0.0377579927 0.198003963 -0.97947371 -1.29083991 + 2 0.0407712869 0.19642593 -0.979670644 -1.27006996 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.817816675 -0.15905495 0.553061843 -0.110095002 + 2 -0.817816675 -0.15905495 0.553061843 -0.110095002 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.992014647 -0.116564959 0.0481613837 -1.40488982 + 0.833333015 -0.992361188 -0.115952022 0.0421236083 -1.40415001 + 2 -0.992014647 -0.116564959 0.0481614843 -1.40488982 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.996067226 -0.00839153212 -0.0882026181 -1.02460003 + 0.833333015 0.996068299 -0.00839303154 -0.0881898254 -1.02460003 + 2 0.996067226 -0.00839158148 -0.0882025212 -1.02460003 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.931619346 0.121462047 -0.342538118 -0.521122992 + 0.833333015 0.936150074 0.11304 -0.332933992 -0.517435014 + 2 0.931619346 0.121462047 -0.342538118 -0.521122992 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 -0.998111367 0.060562022 -0.0102939038 -1.43418002 + 0.833333015 -0.998087943 0.0605486929 -0.0124239987 -1.43437004 + 2 -0.998111367 0.060562022 -0.0102939038 -1.43418002 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 1 0 1.75703988e-007 -1.28757 + 0.833333015 1 0 0 -1.28754997 + 2 1 0 1.68946983e-007 -1.28757 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0.872324228 -0.108583033 0.476718158 -0.271916002 + 0.833333015 0.868724644 -0.114352956 0.481913805 -0.273456007 + 2 0.872324228 -0.108583033 0.476718158 -0.271916002 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0 0 0 0 + 2 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.0867823288 0.99612534 -0.0142535046 -0.173375994 + 2 0.0867823288 0.99612534 -0.0142535046 -0.173375994 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.98869276 -0.129974976 0.0747870877 -1.29893005 + 2 -0.98869276 -0.129974976 0.0747870877 -1.29893005 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.961823225 0.207075045 0.178930059 -1.03977001 + 2 0.961823225 0.207075045 0.178930059 -1.03977001 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.0829945877 -0.996484756 0.0114012985 -0.170557007 + 2 0.0829945877 -0.996484756 0.0114012985 -0.170557007 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.971774042 0.224236012 -0.0733035058 -1.32184994 + 2 -0.971774042 0.224236012 -0.0733035058 -1.32184994 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.946722865 -0.25067398 -0.202183977 -1.05192995 + 2 0.946722865 -0.25067398 -0.202183977 -1.05192995 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.888888359 -0.283868104 -0.359578133 -0.851090014 + 2 -0.888888359 -0.283868104 -0.359578133 -0.851090014 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.350497931 0.914505839 0.202064961 -0.67189002 + 2 -0.350497931 0.914505839 0.202064961 -0.67189002 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.784060717 -0.567455828 -0.251480907 -1.02971995 + 2 0.784060717 -0.567455828 -0.251480907 -1.02971995 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.852769136 0.305519044 0.423607051 -0.87846303 + 2 -0.852769136 0.305519044 0.423607051 -0.87846303 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 -0.584250629 -0.689308584 -0.428374738 -0.665171981 + 2 -0.584250629 -0.689308584 -0.428374738 -0.665171981 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 2 + 0 0.992131054 0.00437725009 0.125127003 -1.23447013 + 2 0.992131054 0.00437725009 0.125127003 -1.23447013 +endnode +doneanim sit a_dfa2_coat + +#MAXANIM ASCII +newanim 2hslasho a_dfa2_coat + length 1 + transtime 0.300000012 + animroot rootdummy + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 blur_end + event 0.5 hit + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 16 + 0 -0.00336495996 0.0204972997 1.04101002 + 0.0666666999 -0.00908640027 0.0132654002 1.04101002 + 0.133332998 -0.0238020997 -0.0126390997 1.04100001 + 0.200000003 -0.0295815002 -0.0347229987 1.04100001 + 0.266667008 -0.0327243991 -0.0499049984 1.04100001 + 0.333332986 -0.0291214008 0.00505736982 1.02832997 + 0.400000006 -0.0214095004 0.123262003 1.00297999 + 0.466666996 0.0164605007 0.25443399 0.953365982 + 0.533333004 0.0962397978 0.336723 0.92860198 + 0.600000024 0.133491993 0.322320014 0.928618014 + 0.666666985 0.134798005 0.301441014 0.928794026 + 0.733332992 0.125286996 0.258148015 0.939845979 + 0.800000012 0.0931243971 0.198734999 0.965138972 + 0.866666973 0.0609614998 0.139322996 0.990431011 + 0.899999976 0.0448798016 0.109617002 1.00308001 + 1 -0.00336312992 0.0251834001 1.04035997 + orientationkey 16 + 0 0.933143139 0.0489343069 0.356159031 -0.235283986 + 0.0666666999 0.890607238 0.0443544164 -0.452605158 -0.202542007 + 0.133332998 0.0736193061 0.000821073074 -0.997286081 -0.653354943 + 0.200000003 -0.0474501997 -0.00539549021 -0.998859048 -1.03620005 + 0.266667008 -0.0513489023 -0.017580701 -0.998526037 -1.01187992 + 0.333332986 0.0471985079 -0.0870395079 -0.995086133 -0.582704008 + 0.400000006 0.811161935 -0.565140009 0.150442988 -0.162607983 + 0.466666996 0.334747076 -0.186740041 0.92361927 -0.682560086 + 0.533333004 0.313752979 -0.154229984 0.936894953 -1.08007002 + 0.600000024 0.303564161 -0.114341043 0.945925415 -1.29252994 + 0.666666985 0.302094907 -0.114778958 0.946342707 -1.29962993 + 0.733332992 0.301963001 -0.0858739093 0.949444056 -1.21940994 + 0.800000012 0.302339971 -0.0154604958 0.953074753 -1.05480003 + 0.866666973 0.300530016 0.0777487084 0.95059818 -0.895928979 + 0.899999976 0.319793016 0.13834402 0.937333107 -0.779834986 + 1 0.401903957 0.466046989 0.788209021 -0.46655497 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.877817094 0.0970267132 -0.469066054 -0.231120005 + 0.0666666999 0.673658967 0.11482998 -0.730066895 -0.255921036 + 0.166666999 -0.0457959026 0.0510411002 -0.997645974 -0.398698002 + 0.233333007 -0.196638912 0.0335266851 -0.979902625 -0.392948002 + 0.300000012 -0.24877806 0.445698082 -0.859920144 -0.539785981 + 0.366667002 -0.196901068 0.480430156 -0.854644299 -0.510312021 + 0.5 0.262895912 0.207251921 -0.942301631 -0.569189012 + 0.600000024 0.368212909 -0.711412847 0.598590851 -0.254492998 + 0.800000012 -0.118482038 -0.567395151 0.814877152 -0.543992996 + 0.866666973 0.121347979 -0.575989902 0.808399856 -0.428196013 + 1 0.575692713 -0.457353741 0.677794576 -0.457416981 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.938625634 0.111284964 0.326492876 -0.809793949 + 0.0666666999 -0.948231578 0.224180892 0.224943891 -0.727208018 + 0.166666999 -0.762707829 0.536165893 -0.361666918 -0.425688028 + 0.233333007 -0.692177355 0.465937197 -0.551174223 -0.260462999 + 0.300000012 -0.454602063 0.706563056 -0.542315066 -0.562627017 + 0.366667002 -0.85182339 0.44427225 -0.27752313 -0.906611025 + 0.433333009 -0.916694403 0.399434179 -0.0111218058 -1.16823006 + 0.5 -0.812818229 -0.333877087 0.477339119 -1.00839996 + 0.600000024 -0.818534732 -0.553303838 0.15445295 -1.17901003 + 0.699999988 -0.511973798 -0.85625577 -0.0686213747 -1.08974004 + 0.899999976 -0.98734951 0.071279563 0.141633928 -0.771906972 + 1 -0.815390825 -0.000102167978 0.578910887 -1.32343996 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.705303252 0.575614154 0.413782179 -0.595200002 + 0.0666666999 -0.938511848 0.237090975 0.25096494 -0.814356029 + 0.166666999 -0.990324795 0.13706097 -0.0217040963 -1.58532 + 0.233333007 -0.989416063 0.141082004 -0.0339375995 -1.75724995 + 0.300000012 -0.989831448 0.135827065 -0.042245917 -1.85343003 + 0.366667002 -0.985590458 0.165800095 -0.0334924161 -1.52867985 + 0.433333009 -0.979880095 0.19893305 -0.0161443017 -1.23819983 + 0.5 -0.98447758 0.168195933 0.050140582 -1.44822001 + 0.600000024 -0.891372204 0.416819066 0.178094015 -1.39344001 + 0.699999988 -0.94926542 0.296626121 0.104442045 -1.99057996 + 0.899999976 -0.765388429 0.616757333 0.183823109 -0.940585017 + 1 -0.606874883 0.756437838 0.243935943 -0.914627016 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.921014309 -0.133084044 -0.366089106 -0.80438 + 0.0666666999 -0.873822689 -0.0652501807 -0.481846809 -0.944468021 + 0.166666999 -0.68780911 0.102558032 -0.718610108 -1.72875988 + 0.233333007 -0.654708803 0.125458971 -0.745396793 -1.93649995 + 0.300000012 -0.660487115 0.154840037 -0.734698117 -2.05014992 + 0.366667002 -0.778365195 0.0366653092 -0.626740217 -1.92363 + 0.433333009 -0.883195996 -0.0658454001 -0.464358956 -1.87769008 + 0.5 -0.687981844 0.457876921 -0.563053906 -2.31624007 + 0.633333027 -0.551107168 0.81917125 -0.158869058 -1.57515991 + 0.699999988 -0.313767046 0.946497262 -0.0754534081 -1.50599015 + 0.766667008 -0.836752951 0.488209963 0.247982979 -0.983630002 + 0.899999976 -0.459039003 0.872034013 -0.169823021 -0.642191947 + 1 -0.132806987 0.986101925 -0.0998265967 -0.446076989 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.856819987 -0.385306984 -0.342633963 -0.947656989 + 0.0666666999 -0.855080664 -0.386310846 -0.345833838 -0.941965997 + 0.166666999 0.846274734 0.391208887 0.361627877 -5.36837006 + 0.233333007 0.843948424 0.392454207 0.365692168 -5.37511015 + 0.300000012 0.856169939 0.369121969 0.36155498 -5.33766985 + 0.366667002 0.800741732 0.463521808 0.379420877 -5.57434988 + 0.433333009 -0.715863287 -0.576329291 -0.394188136 -0.519795001 + 0.5 -1 3.01926008e-007 -1.02003003e-006 -0.378499001 + 0.633333027 -0.878884733 0.470182896 0.0805584788 -0.250369996 + 0.699999988 0.294952989 0.811092913 0.505104959 -0.127939999 + 0.766667008 0.00824921392 0.17624107 -0.984312475 -1.78122008 + 0.899999976 -1 -1.95238997e-007 0 -1.80779004 + 1 -0.990620971 -0.133817002 -0.0276237 -2.06329012 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.910493314 -0.383608103 -0.154424027 -0.0615805015 + 0.266667008 0.233112067 0.941154242 0.244719058 -0.132961005 + 0.466666996 0.0790967792 0.480735838 -0.873290777 -0.322131008 + 0.733332992 -0.593714178 -0.382860094 -0.707758188 -0.554440022 + 1 -0.553371906 -0.594542861 0.583350897 -0.101682998 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 -0.978898406 -0.0979266465 -0.179355085 -1.09619999 + 0.0666666999 -0.983887434 -0.0480572209 -0.172209084 -1.08569002 + 0.100000001 -0.994373381 0.0678139254 -0.0813809335 -1.00680006 + 0.133332998 -0.982453823 0.186177969 0.011056697 -0.924121082 + 0.200000003 -0.930898905 0.324353009 0.167994991 -0.814355016 + 0.266667008 -0.953052223 0.288033068 0.093426019 -0.806614995 + 0.300000012 -0.978797853 0.204234958 -0.0155848972 -0.887517989 + 0.333332986 -0.988342881 0.13010098 -0.0790697932 -0.968163967 + 0.366667002 -0.988997757 0.0184684955 -0.146772966 -1.07866001 + 0.400000006 -0.969044149 -0.0724623054 -0.236014038 -1.16188991 + 0.433333009 -0.935069323 -0.165133059 -0.313650131 -1.24065995 + 0.466666996 -0.886627376 -0.237022102 -0.397130162 -1.28386998 + 0.533333004 -0.701240897 -0.32604894 -0.633997858 -1.23852003 + 0.600000024 -0.607038081 -0.390228063 -0.692262113 -1.15444005 + 0.666666985 -0.711694658 -0.344746858 -0.612078667 -0.838330984 + 0.733332992 -0.750584424 -0.345421165 -0.563300312 -0.68048805 + 0.800000012 -0.804196954 -0.410112977 -0.430202961 -0.832608998 + 0.866666973 -0.818207026 -0.453501999 -0.353374004 -0.973195016 + 0.899999976 -0.842667103 -0.447303087 -0.299720019 -1.02970004 + 0.93333298 -0.860733807 -0.441836923 -0.252818942 -1.07573998 + 1 -0.884870231 -0.437709123 -0.15942204 -1.13002002 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 0.999062121 -0.0340749025 0.0267157033 -0.829719007 + 0.0666666999 0.998982131 -0.0359823033 0.0272020064 -0.794543922 + 0.100000001 0.998824 -0.0395085998 0.0281013995 -0.73646301 + 0.133332998 0.998670578 -0.0426778793 0.0289087892 -0.69078207 + 0.200000003 0.998491406 -0.0461260229 0.0297873151 -0.646912992 + 0.266667008 0.998407006 -0.0476708002 0.0301815979 -0.62895298 + 0.300000012 0.998797357 -0.0400744192 0.0282458104 -0.727886021 + 0.333332986 0.999033332 -0.0347730108 0.0268941093 -0.816510975 + 0.366667002 0.999319434 -0.0271664094 0.0249533094 -0.985667944 + 0.400000006 0.999463737 -0.0225224942 0.0237680953 -1.12425995 + 0.433333009 0.999573529 -0.01836209 0.0227056891 -1.28112996 + 0.466666996 0.999634564 -0.0156775918 0.0220202915 -1.40372002 + 0.533333004 0.999653757 -0.0147557966 0.0217848942 -1.45039999 + 0.600000024 0.999641597 -0.0153461937 0.0219355915 -1.42021 + 0.666666985 0.999633789 -0.0157139972 0.0220295954 -1.40191996 + 0.733332992 0.999618173 -0.016432602 0.0222131032 -1.36729014 + 0.800000012 0.999603271 -0.0170979034 0.0223830063 -1.33650994 + 0.866666973 0.999564826 -0.0187194981 0.0227969978 -1.26619995 + 0.899999976 0.999530017 -0.0200967006 0.0231487006 -1.21132004 + 0.93333298 0.999482632 -0.0218556933 0.0235977899 -1.14707005 + 1 0.99931699 -0.0272384994 0.0249716993 -0.983760953 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 21 + 0 0.409492105 0.516963184 0.751708269 -0.160203993 + 0.0666666999 0.37289694 0.103529975 0.922078848 -0.289492011 + 0.100000001 0.378351182 -0.0471318215 0.924461424 -0.445194006 + 0.133332998 0.353779972 -0.119705983 0.927636921 -0.612594008 + 0.200000003 0.320033997 -0.166486993 0.932663023 -0.842384994 + 0.266667008 0.325838029 -0.178930014 0.928339183 -0.885186911 + 0.300000012 0.267597049 -0.186814055 0.945247233 -0.799769998 + 0.333332986 0.20345594 -0.182800934 0.96186769 -0.694537997 + 0.366667002 -0.0251496937 -0.154095978 0.987735748 -0.532167971 + 0.400000006 -0.369273961 -0.0959027857 0.924358904 -0.449831992 + 0.433333009 -0.734716058 0.0391166024 0.677246034 -0.466033995 + 0.466666996 -0.910595 0.150417998 0.384956002 -0.570461988 + 0.533333004 -0.926850855 0.294431984 0.232931972 -0.793968081 + 0.600000024 -0.903786898 0.422619909 0.0675400868 -0.835514963 + 0.666666985 -0.841324985 0.477622002 -0.25308001 -0.913236022 + 0.733332992 -0.810009718 0.501171827 -0.304484874 -0.867435992 + 0.800000012 -0.781187117 0.540971041 -0.311604023 -0.718804002 + 0.866666973 -0.734274924 0.602549016 -0.31268999 -0.556922972 + 0.899999976 -0.69178021 0.64987725 -0.314801097 -0.463535011 + 0.93333298 -0.622826219 0.715959251 -0.315420121 -0.375046998 + 1 -0.231949061 0.914459229 -0.331608087 -0.23431398 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 -0.118381955 0.493258834 0.861789703 -0.788268983 + 0.0666666999 -0.00349629018 0.389355034 0.921081126 -0.722587049 + 0.100000001 0.18622604 0.252860069 0.949411213 -0.87291801 + 0.133332998 0.328466982 0.114439987 0.937556922 -1.00557005 + 0.166666999 0.397867113 0.0209291056 0.91720432 -1.12500012 + 0.200000003 0.455776066 -0.0582227074 0.888188183 -1.28908014 + 0.266667008 0.432939142 -0.0547276214 0.899760306 -1.24517 + 0.333332986 0.395936161 0.0237307101 0.917971373 -0.959397972 + 0.366667002 0.408398956 0.107815988 0.906413794 -0.765633941 + 0.400000006 0.388402909 0.280397952 0.877792776 -0.619379997 + 0.433333009 0.303590983 0.510301948 0.804626882 -0.562714994 + 0.466666996 0.158385992 0.720169961 0.675476968 -0.576313972 + 0.533333004 0.14073202 0.92526716 0.352243066 -0.672165036 + 0.600000024 0.0450780094 0.993188262 0.107448027 -0.70154202 + 0.633333027 0.0605530851 0.984921753 0.162056953 -0.773979008 + 0.666666985 0.085096024 0.978437245 0.188200042 -0.843800008 + 0.699999988 0.148130059 0.966725469 0.208565086 -0.87836808 + 0.733332992 0.197260097 0.947315335 0.252353102 -0.934798002 + 0.800000012 0.0760452896 0.945744812 0.315885901 -0.773153961 + 0.866666973 -0.048379723 0.904798329 0.423083186 -0.629334927 + 0.899999976 -0.0873636976 0.834361076 0.544251025 -0.587746978 + 1 -0.104975969 0.462912858 0.880165756 -0.542813003 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 1 0 0 -0.687578976 + 0.0666666999 1 0 1.4429898e-007 -0.637834013 + 0.100000001 1 0 0 -0.55210793 + 0.133332998 1 0 0 -0.427592993 + 0.166666999 1 3.74254e-007 1.32663999e-007 -0.31833899 + 0.200000003 1 -1.58955999e-007 2.13261004e-007 -0.161318004 + 0.266667008 1 0 0 -0.242502004 + 0.333332986 1 1.19549e-007 0 -0.372972995 + 0.366667002 1 -1.47601995e-007 -3.93159013e-007 -0.386981994 + 0.400000006 1 -2.81333996e-007 3.83361993e-007 -0.399529964 + 0.433333009 1 0 3.09618002e-007 -0.414579034 + 0.466666996 1 1.84786998e-007 -1.86725998e-007 -0.392794013 + 0.533333004 1 0 7.61787987e-007 -0.206891984 + 0.600000024 1 0 4.12584996e-007 -0.323965013 + 0.633333027 1 0 -7.53594009e-007 -0.369665027 + 0.666666985 1 2.18327003e-007 0 -0.401297003 + 0.699999988 1 0 -5.40151007e-007 -0.442277014 + 0.733332992 1 -4.36579995e-007 -1.04998003e-006 -0.468537986 + 0.800000012 1 1.57222999e-007 2.52820001e-007 -0.625376999 + 0.866666973 1 0 0 -0.705700994 + 0.899999976 1 0 1.73817e-007 -0.713864028 + 1 1 0 -1.47189013e-007 -0.648154974 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 22 + 0 -0.665684998 -0.674714029 0.318785995 -0.757903993 + 0.0666666999 -0.613915086 -0.600669086 0.512157083 -0.854552984 + 0.100000001 -0.559104085 -0.571768045 0.60040313 -0.919279933 + 0.133332998 -0.477930963 -0.516467929 0.71052295 -1.01659 + 0.166666999 -0.419565916 -0.478367895 0.771445811 -1.07071996 + 0.200000003 -0.346560031 -0.446828097 0.824767113 -1.09624004 + 0.266667008 -0.371710956 -0.456663966 0.808262944 -1.08790004 + 0.333332986 -0.461259902 -0.48525995 0.742806911 -1.07341015 + 0.366667002 -0.496684879 -0.508322895 0.703499794 -1.05710006 + 0.400000006 -0.525157154 -0.558677137 0.641942203 -1.01523983 + 0.433333009 -0.563901961 -0.642048955 0.519410968 -0.956968069 + 0.466666996 -0.562396109 -0.742753148 0.363357097 -0.902150035 + 0.533333004 -0.503642917 -0.832193911 0.231941983 -0.866523981 + 0.600000024 -0.557598233 -0.819054365 0.135034055 -0.883044899 + 0.633333027 -0.558251917 -0.828472972 0.0445794947 -0.893481016 + 0.666666985 -0.555743992 -0.831061065 -0.0220471993 -0.905746043 + 0.699999988 -0.575260222 -0.817065358 -0.0384688191 -0.91216898 + 0.733332992 -0.579290867 -0.811154842 -0.080311276 -0.913973927 + 0.800000012 -0.641782165 -0.763456225 -0.0724585131 -0.875838041 + 0.866666973 -0.682383239 -0.730041265 -0.0373214148 -0.81430006 + 0.899999976 -0.694982052 -0.719020069 -0.00318036019 -0.777940989 + 1 -0.691290855 -0.708710909 0.140874967 -0.653447032 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 3 + 0 0 0 0 0 + 0.466666996 0.0485242195 0.249794111 -0.967082381 -0.552877009 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.00719754305 0.855763435 -0.517317235 -0.130805001 + 0.0666666999 0.0530784726 0.838823557 -0.541809678 -0.118657991 + 0.133332998 0.108967021 0.81469816 -0.569555163 -0.106945992 + 0.266667008 0.261419058 0.728580177 -0.633112192 -0.0855329037 + 0.333332986 0.362718076 0.653320193 -0.664536178 -0.076397799 + 0.400000006 0.479939789 0.544473827 -0.687899768 -0.0688846037 + 0.466666996 0.236996084 0.661765218 -0.71126622 -0.0592548996 + 0.533333004 -0.0899006054 0.739576995 -0.667041063 -0.0553250983 + 0.600000024 -0.0147002051 0.00541424146 -0.999877274 -0.0445621014 + 0.666666985 0.0554039367 -0.611480355 -0.789317548 -0.0661285967 + 0.800000012 0.464775115 -0.72332716 -0.510668099 -0.0745635033 + 1 0.583700061 -0.7941401 -0.169220999 -0.193692997 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.0703919977 -0.946045995 0.316294014 -0.142571002 + 0.0666666999 0.355726808 -0.344068825 0.868950546 -0.276077002 + 0.133332998 0.272017896 -0.607385814 0.746383786 -0.547625005 + 0.266667008 0.645445943 -0.44787696 0.618712962 -0.608955979 + 0.333332986 0.682102978 -0.277399957 0.676597953 -0.540018976 + 0.400000006 0.695538819 -0.0550454855 0.716376841 -0.49288401 + 0.466666996 0.711522996 -0.155947015 0.68513906 -0.520286977 + 0.533333004 0.718939781 -0.244643912 0.650595844 -0.552784026 + 0.600000024 0.716750383 -0.344682217 0.606187284 -0.495117962 + 0.666666985 0.702131927 -0.462786973 0.541145921 -0.444556981 + 0.800000012 0.589519918 -0.7054649 0.393427908 -0.354835004 + 1 0.864539981 -0.34633401 0.364174992 -0.156748995 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.158853993 0.048134502 0.986128032 -0.229823992 + 0.0666666999 0.10500598 -0.231764942 0.967087746 -0.313728988 + 0.133332998 0.189032093 -0.0718272328 0.979340434 -0.40396601 + 0.266667008 0.300254077 0.23068808 0.925543368 -0.441454023 + 0.333332986 0.187992096 0.430181175 0.882951379 -0.484210968 + 0.400000006 0.0896731019 0.574617028 0.813494921 -0.547781944 + 0.466666996 0.481656134 0.815008163 0.322132081 -0.323103011 + 0.533333004 0.454024106 0.628660202 -0.631386161 -0.547389984 + 0.600000024 0.414523691 0.491967648 -0.765596449 -0.490161985 + 0.666666985 0.539551139 -0.493602097 -0.68208617 -0.26157701 + 0.800000012 -0.0460274033 -0.848997056 -0.526389062 -0.239331022 + 0.899999976 -0.592039227 -0.79356122 -0.140535042 -0.242652997 + 1 -0.366370976 0.234474972 0.900440872 -0.158409998 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.648746133 0.15065603 -0.745943129 -0.103040002 + 0.0666666999 -0.141713992 0.702183902 -0.697749853 -0.085195601 + 0.133332998 0.689334691 0.0347616822 -0.723608553 -0.0904303938 + 0.266667008 0.872947991 0.261765003 -0.411632001 -0.183332995 + 0.333332986 0.810230136 0.535841048 -0.237490028 -0.169158995 + 0.400000006 0.52165705 -0.529103041 -0.669271171 -0.0351965055 + 0.466666996 -0.190891027 0.219870046 -0.956670165 -0.0808975026 + 0.533333004 -0.327821046 0.36077404 -0.87314117 -0.150270984 + 0.600000024 -0.317929953 0.141532987 -0.937490761 -0.11372 + 0.666666985 -0.26195094 -0.250168979 -0.932092905 -0.0879637003 + 0.800000012 0.0309060868 -0.948354602 -0.315702885 -0.103500001 + 1 0.193270966 -0.962928891 0.188186973 -0.220416993 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.618825376 0.783424377 -0.0574579313 -0.273734987 + 0.0666666999 0.904071927 0.369116932 0.21542199 -0.356922001 + 0.133332998 0.93755132 0.0938545242 0.334946096 -0.506685019 + 0.266667008 0.667451024 0.668963015 0.327104986 -0.374177992 + 0.333332986 0.605774045 0.702008069 0.374462992 -0.346850961 + 0.400000006 0.533697128 0.820934117 0.203063026 -0.637212992 + 0.466666996 0.481750816 0.874299765 -0.0592967793 -0.613282979 + 0.533333004 0.465208173 0.87762022 -0.115603037 -0.589214027 + 0.600000024 0.476975143 0.871815205 -0.111503035 -0.543511987 + 0.666666985 0.490725994 0.864763021 -0.106643997 -0.497925013 + 0.800000012 0.530118763 0.84397459 -0.0817370638 -0.434141994 + 0.899999976 0.574012816 0.81590277 -0.0693678781 -0.370514959 + 1 0.618825376 0.783424377 -0.0574580282 -0.273734987 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.60870105 -0.351164043 -0.711454034 -0.612342 + 0.0666666999 0.599590957 -0.323630959 -0.731951952 -0.563042998 + 0.133332998 0.416997135 -0.90119338 0.118169047 -0.616828978 + 0.266667008 0.0361785069 0.219727069 -0.974890292 -0.733856022 + 0.333332986 0.710653841 0.164662972 -0.68400085 -0.449731976 + 0.400000006 0.801416814 0.166572958 -0.574442863 -0.479164004 + 0.466666996 0.481557071 0.860624075 -0.165617019 -0.628192008 + 0.533333004 0.443087876 0.828139782 0.343303919 -0.544942021 + 0.600000024 0.58710295 0.294779956 -0.753932953 -0.486894965 + 0.666666985 0.870609939 -0.228614986 -0.435629994 -0.398484975 + 0.800000012 0.943244815 -0.317797929 -0.0964035913 -0.31141296 + 1 0.799693227 -0.245106071 -0.548100173 -0.328159958 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.241539955 -0.132009983 -0.961369753 -1.36176002 + 0.0666666999 -0.340936065 -0.123484023 -0.931941152 -1.02788007 + 0.133332998 -0.511303902 -0.104655981 -0.8530038 -0.710950971 + 0.266667008 -0.906972051 0.0416846983 -0.419123024 -0.389628977 + 0.333332986 -0.547358871 -0.192229956 -0.814521909 -0.638993025 + 0.400000006 -0.345654011 -0.270141989 -0.898635983 -0.975816011 + 0.466666996 -0.386691064 -0.356872082 -0.850360096 -1.12541997 + 0.533333004 -0.415720224 -0.42193222 -0.805698395 -1.28319001 + 0.600000024 -0.414455026 -0.429684013 -0.802246034 -1.27552998 + 0.666666985 -0.393132925 -0.417726904 -0.819115818 -1.21893001 + 0.800000012 -0.321403176 -0.527560294 -0.786371529 -1.14098001 + 1 -0.236218065 -0.787068248 -0.569846094 -1.13341999 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.658810973 0.752038062 0.0201718993 -0.195084006 + 0.0666666999 0.974909604 0.148149937 0.166140944 -0.209516987 + 0.133332998 0.933471322 -0.283853054 0.219223052 -0.299394995 + 0.266667008 0.920457721 -0.345636904 0.182462946 -0.344774008 + 0.333332986 0.994316816 -0.0939994901 0.0499811918 -0.377199978 + 0.400000006 0.992055953 0.111502983 -0.0582414977 -0.435629994 + 0.466666996 0.893341243 0.0260710046 -0.448622078 -0.38329801 + 0.533333004 0.943785191 -0.00461550104 -0.330527097 -0.287209034 + 0.600000024 0.86608851 -0.486001313 0.117019057 -0.116012007 + 0.666666985 0.389834851 -0.343375862 -0.854471624 -0.144566998 + 0.800000012 -0.114979006 -0.130406022 -0.984771073 -0.339388043 + 1 0.443129987 0.889569998 -0.110909998 -0.542846978 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.496800989 0.110734992 0.860770881 -0.354492009 + 0.0666666999 0.00597018795 0.235616937 0.971827686 -0.289721996 + 0.133332998 -0.532514215 0.299072146 0.791823506 -0.323956043 + 0.266667008 0.0640540868 -0.0419397876 0.997064769 -0.225590006 + 0.333332986 0.600795865 0.188419953 0.776879847 -0.289658993 + 0.400000006 0.796161234 0.283263087 0.534686208 -0.418978959 + 0.466666996 0.80953598 -0.129607007 0.572584987 -0.379772007 + 0.533333004 0.679977953 -0.526911914 0.509895921 -0.411538988 + 0.600000024 0.781944096 -0.311696023 0.539823115 -0.442844033 + 0.666666985 -0.237227052 -0.970949233 -0.0313187093 -0.227166995 + 0.800000012 -0.461749971 0.507601023 -0.727411926 -0.167384997 + 1 0.845197201 0.484779119 0.225013047 -0.197714016 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.552580893 0.65008688 0.521575868 -0.346971005 + 0.0666666999 -0.56238693 0.633857965 0.530984938 -0.337839991 + 0.133332998 -0.57245487 0.616435885 0.540649831 -0.328866005 + 0.200000003 -0.599428892 0.642513812 0.477347881 -0.362664998 + 0.266667008 -0.606533706 0.61051172 0.509305716 -0.338479996 + 0.333332986 -0.594672918 0.629115939 0.500576913 -0.343284011 + 0.400000006 -0.582820892 0.646863937 0.491819918 -0.348273039 + 0.466666996 -0.449501008 0.81714505 -0.360864013 -0.426307976 + 0.533333004 -0.254465073 0.673255205 -0.694244146 -0.692498028 + 0.600000024 -0.566365182 0.720645249 -0.399876148 -0.47093001 + 0.666666985 -0.833910882 0.493755937 0.246571973 -0.421220005 + 0.800000012 -0.820785105 0.434141099 0.371259063 -0.337476999 + 1 -0.667456925 -0.125579983 0.733982921 -0.195279002 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0 0 0 0 + 0.0666666999 0.876727819 -0.473903954 -0.0822395831 -0.087044701 + 0.133332998 0.876728296 -0.473903149 -0.0822391286 -0.174089 + 0.266667008 -0.0292394981 0.975476921 -0.218150988 -0.126372993 + 0.333332986 0.00432669045 0.966778994 -0.255576998 -0.0949394926 + 0.400000006 -0.463858843 0.855288744 -0.230902925 -0.0634170994 + 0.466666996 -0.799494982 0.566294014 -0.200297013 -0.241824001 + 0.533333004 0.994927287 0.0417376123 0.0915298238 -0.0306228995 + 0.600000024 -0.0308174882 0.743869781 -0.667613685 -0.203198016 + 0.666666985 -0.105531998 0.735219002 -0.669564068 -0.409381956 + 0.800000012 -0.105531998 0.735219002 -0.669564068 -0.245628998 + 0.899999976 -0.747112632 0.272020876 -0.606487691 -0.0953015983 + 1 0 0 0 0 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.301153958 -0.559878945 -0.771907926 -0.376904994 + 0.0666666999 0.507346094 -0.3661111 -0.78010422 -0.394373983 + 0.133332998 0.691752195 0.0615027174 -0.719511151 -0.426028967 + 0.200000003 0.523202121 0.374958098 -0.765288174 -0.507269979 + 0.266667008 -0.507822871 0.23842594 -0.827809751 -0.364461988 + 0.333332986 -0.55675596 0.306629956 -0.772010922 -0.382645994 + 0.400000006 -0.415197998 0.0495253988 -0.908381999 -0.598861992 + 0.466666996 -0.32706809 -0.596480131 -0.732965171 -0.809560061 + 0.533333004 -0.211853966 0.126407966 -0.969091833 -0.822921991 + 0.600000024 0.13523595 0.231143951 -0.96347481 -0.480619013 + 0.666666985 0.949114442 0.234677091 0.210020095 -0.348736018 + 0.800000012 0.922789931 -0.261227965 -0.283228964 -0.269657999 + 0.899999976 0.808489919 -0.182336986 -0.559550941 -0.391101003 + 1 0.243895009 -0.576484978 -0.779859126 -0.374590009 +endnode +doneanim 2hslasho a_dfa2_coat + +#MAXANIM ASCII +newanim plslasho a_dfa2_coat + length 1 + transtime 0.300000012 + animroot rootdummy + event 0.366667002 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.666666985 snd_footstep + event 0.800000012 snd_footstep + event 0.866666973 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 18 + 0 -0.000566727016 0.0218059998 1.01514006 + 0.0666666999 -0.0101578999 -0.00481344992 1.01002002 + 0.133332998 -0.0341361016 -0.0713621005 0.997227013 + 0.200000003 -0.0581141002 -0.137911007 0.984434009 + 0.266667008 -0.066335097 -0.160726994 0.980048001 + 0.333332986 -0.0268063992 -0.0918928012 0.975932002 + 0.366667002 0.0175071992 -0.00647100993 0.971005023 + 0.400000006 0.0618208013 0.0789508 0.966078997 + 0.433333009 0.0977920964 0.167157993 0.961054027 + 0.466666996 0.133763 0.255365998 0.956028998 + 0.533333004 0.157158002 0.352903008 0.95737201 + 0.600000024 0.143285006 0.367922992 0.965768993 + 0.666666985 0.130524993 0.327643991 0.968465984 + 0.733332992 0.104512997 0.225299001 0.975804985 + 0.800000012 0.0604602993 0.137272999 0.989229023 + 0.866666973 0.0167190004 0.0629547015 1.00269997 + 0.93333298 0.000708754989 0.0342102014 1.00836003 + 1 -0.00553308008 0.0218055006 1.01068997 + orientationkey 16 + 0 0.916262388 0.0597125255 0.396103144 -0.211062998 + 0.0666666999 0.985223413 0.128348053 0.11340905 -0.172379002 + 0.133332998 0.306238025 0.102376007 -0.946434081 -0.405639976 + 0.200000003 0.0933319107 0.076026313 -0.992728114 -0.792636991 + 0.266667008 0.0552027859 0.0709846839 -0.995948732 -0.95176208 + 0.333332986 0.24524194 0.0949924886 -0.964796782 -0.733124971 + 0.400000006 0.957910597 0.146729961 -0.246733889 -0.484001011 + 0.466666996 0.827282846 0.077711083 0.556384861 -0.866814911 + 0.533333004 0.668750048 -0.00185949006 0.743485034 -1.1624999 + 0.600000024 0.538970888 -0.0154992966 0.842181802 -1.33115005 + 0.666666985 0.459464908 0.0296211969 0.887701869 -1.53584993 + 0.733332992 0.463752091 0.0353836082 0.885258138 -1.34097993 + 0.800000012 0.537680089 0.0215225071 0.842874169 -0.849249005 + 0.866666973 0.753931165 -0.0256588049 0.656452179 -0.376581013 + 0.93333298 0.858336747 0.0239216927 0.512528837 -0.256150991 + 1 0.916263282 0.0597052202 0.39610213 -0.211063996 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.712903142 -0.0622387156 -0.69849509 -0.163549006 + 0.0666666999 0.443618059 -0.0441238023 -0.895129085 -0.200001001 + 0.300000012 -0.151160955 0.000977068674 -0.988508701 -0.659180999 + 0.366667002 -0.155355066 0.00160070066 -0.987857401 -0.691885054 + 0.400000006 -0.158666983 0.00155186001 -0.987330914 -0.676882982 + 0.433333009 -0.159201041 0.00136070035 -0.987245262 -0.631052971 + 0.5 0.472274095 -0.854783177 0.215181038 -0.201087996 + 0.56666702 0.47227484 -0.85478282 0.215180933 -0.201087996 + 0.633333027 0.128372997 -0.583795011 0.801688075 -0.645964921 + 0.699999988 0.0847452134 -0.632343173 0.770039201 -0.768103004 + 0.766667008 0.110395946 -0.642686665 0.75813365 -0.658922017 + 1 0.847582996 0.100688003 -0.521022975 -0.208509997 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 19 + 0 -0.889261782 0.0379937924 0.455817908 -0.653176963 + 0.0666666999 -0.950142384 0.0399306156 0.309249133 -0.658953011 + 0.100000001 -0.970634997 0.0456550047 0.236184999 -0.632036984 + 0.133332998 -0.991188288 0.0401086099 0.126242027 -0.63252008 + 0.166666999 -0.995853841 0.0897085816 0.0150820976 -0.640376985 + 0.233333007 -0.87821871 0.155065939 -0.452422887 -0.628354013 + 0.266667008 -0.878218114 0.155065998 -0.452424049 -0.628353059 + 0.300000012 -0.878218114 0.155065998 -0.452424049 -0.628353059 + 0.333332986 -0.764450729 0.0172330942 -0.644451797 -0.767507017 + 0.366667002 -0.764449894 0.0172325969 -0.64445281 -0.767505944 + 0.400000006 -0.88292557 -0.221084893 -0.41420278 -1.06643999 + 0.433333009 -0.915644109 -0.147830009 -0.37382105 -1.27127004 + 0.466666996 -0.915994346 -0.395076185 0.0697791204 -1.92378998 + 0.5 -0.962273955 -0.253339976 0.0992352962 -1.76481998 + 0.533333004 -0.891179264 -0.389615089 0.232378066 -1.86303997 + 0.56666702 -0.877588391 -0.439572215 0.191350088 -1.87820005 + 0.600000024 -0.877588391 -0.439572215 0.191350088 -1.87820005 + 0.633333027 -0.877588391 -0.439572215 0.191350088 -1.87820005 + 1 -0.860452771 -0.382774919 0.33630991 -1.29850996 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 19 + 0 -0.239933953 -0.642466903 0.727782905 -3.10491991 + 0.0666666999 -0.298414022 -0.528228998 0.794936001 -2.99559999 + 0.100000001 -0.298414022 -0.528228998 0.794936001 -2.99559999 + 0.133332998 -0.298414171 -0.528228223 0.794936419 -2.99558997 + 0.166666999 -0.298414081 -0.528230131 0.794935167 -2.99559999 + 0.233333007 -0.30387795 -0.687757909 0.659277856 -3.22028995 + 0.266667008 -0.30387795 -0.687757909 0.659277856 -3.22028995 + 0.300000012 -0.303878158 -0.687757373 0.659278274 -3.22028995 + 0.333332986 -0.388459086 -0.649672031 0.653472066 -3.26232004 + 0.366667002 -0.388459086 -0.649672031 0.653472066 -3.26232004 + 0.400000006 -0.514144123 -0.529049098 0.675102174 -3.06336999 + 0.433333009 -0.514144123 -0.529049098 0.675102174 -3.06336999 + 0.466666996 -0.181273982 -0.294660926 0.93825084 -1.83536994 + 0.5 -0.625730097 -0.158252016 0.763818145 -2.0732801 + 0.533333004 -0.625730097 -0.158252016 0.763818145 -2.0732801 + 0.56666702 -0.625730097 -0.158252016 0.763818145 -2.0732801 + 0.600000024 0.62572968 0.158250958 -0.763818681 -4.2098999 + 0.633333027 0.62572974 0.158250928 -0.763818622 -4.20990992 + 1 -0.995535314 -0.000764440279 -0.0943866372 -1.31324995 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.757757187 0.390090078 -0.523100138 -0.826453984 + 0.0666666999 -0.905632794 0.210354969 -0.368211955 -0.873284996 + 0.100000001 -0.897119403 0.177388087 -0.4046112 -0.90179199 + 0.166666999 -0.875848353 0.116126046 -0.4684062 -0.964143991 + 0.266667008 -0.917212605 0.133319944 -0.375428855 -1.53504002 + 0.300000012 -0.917212605 0.133319944 -0.375428855 -1.53504002 + 0.333332986 -0.917212605 0.133319944 -0.375428855 -1.53504002 + 0.366667002 -0.917212605 0.133319944 -0.375428855 -1.53504002 + 0.433333009 -0.935807347 0.218336076 -0.276756078 -2.01496005 + 0.466666996 -0.921664834 0.38338092 0.0596072897 -2.14312005 + 0.5 -0.689596057 0.402819991 0.601825058 -2.19338012 + 0.533333004 -0.428074837 0.331100881 0.840906739 -2.33026004 + 0.633333027 0.439440101 0.745298147 -0.501421094 -0.880702913 + 0.666666985 0.467257977 0.736971915 -0.488407999 -0.842790008 + 1 0.852878153 0.479767084 -0.205967039 -0.467734009 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.987066507 -0.149541929 -0.0577660687 -0.73180598 + 0.0666666999 -0.947316229 -0.315186113 -0.0570062138 -0.476340979 + 0.100000001 -0.928026736 -0.3686589 -0.0534513853 -0.504266024 + 0.166666999 -0.888450205 -0.456557095 -0.0470305085 -0.564109087 + 0.266667008 0.511718154 0.57736516 0.636234224 -5.58248997 + 0.300000012 0.511717141 0.577366114 0.636234164 -5.58248997 + 0.333332986 0.51171577 0.57736671 0.636234701 -5.58248997 + 0.366667002 -0.511718869 -0.577364862 -0.636233926 -0.700699985 + 0.433333009 -0.511718154 -0.57736516 -0.636234224 -0.700699985 + 0.466666996 -0.511717141 -0.577366114 -0.636234164 -0.700698972 + 0.5 0.326972008 0.684207976 0.65188098 -5.76827002 + 0.533333004 0.0820450187 0.771793306 0.630558252 -5.87681007 + 0.633333027 -0.774477184 -0.431614101 0.462487161 -1.67727005 + 0.666666985 -0.807459176 -0.412570089 0.421658099 -1.65717006 + 1 -0.993848264 -0.0483601093 -0.0996341258 -1.64092004 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.96887809 -0.231593013 -0.0874069035 -0.102902003 + 0.0666666999 -0.924971282 -0.257139057 0.279835045 -0.100693002 + 0.200000003 -0.266461045 -0.160366014 0.950411081 -0.225147009 + 0.266667008 -0.213119924 -0.148649946 0.965651631 -0.254568994 + 0.333332986 -0.517078102 -0.278394073 0.809399188 -0.280988008 + 0.533333004 -0.898487866 -0.415845931 0.14068298 -0.768121004 + 0.600000024 -0.954302251 -0.236172065 0.18311204 -0.658603013 + 0.666666985 -0.966822386 -0.16097106 0.198350087 -0.628241956 + 0.733332992 -0.967168927 -0.161588982 0.196145982 -0.604164064 + 0.866666973 -0.978119075 -0.193144009 0.0773203075 -0.196328998 + 0.93333298 -0.976399422 -0.215449095 -0.0150269074 -0.129692018 + 1 -0.968877971 -0.231592983 -0.0874081999 -0.102902003 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 27 + 0 -0.990834951 -0.117060982 -0.0674007908 -1.08337998 + 0.0666666999 -0.987232327 -0.100308031 -0.123736039 -1.09521997 + 0.100000001 -0.984779119 -0.00748890126 -0.173649013 -1.10143006 + 0.133332998 -0.973522604 0.0956718698 -0.207606927 -1.08573985 + 0.166666999 -0.953871191 0.208460048 -0.216042027 -1.04884005 + 0.200000003 -0.902852058 0.338257045 -0.265406042 -0.997073948 + 0.266667008 -0.795598149 0.454559147 -0.400499105 -0.961652935 + 0.300000012 -0.903602958 0.346089959 -0.252434969 -1.02670002 + 0.333332986 -0.945706844 0.251174927 -0.20627597 -1.09213996 + 0.366667002 -0.979683876 0.0425601974 -0.195979953 -1.19983995 + 0.400000006 -0.980847597 -0.148067921 -0.126545936 -1.19744003 + 0.433333009 -0.934494913 -0.325269967 -0.14463298 -1.10543001 + 0.466666996 -0.835654378 -0.50735116 -0.210420072 -0.944524944 + 0.5 -0.76291889 -0.577748954 -0.290104955 -0.704087973 + 0.533333004 -0.562731028 -0.647840023 -0.513455987 -0.502492011 + 0.56666702 -0.413060009 -0.730336964 -0.544049025 -0.608963966 + 0.600000024 -0.318831027 -0.766695142 -0.557248056 -0.719856977 + 0.633333027 -0.248423889 -0.805582643 -0.537886739 -0.862164021 + 0.666666985 -0.191223904 -0.823451638 -0.534191787 -1.04014003 + 0.733332992 -0.336102039 -0.851439178 -0.40260005 -0.99396199 + 0.766667008 -0.613922834 -0.748207748 -0.251562923 -0.907920003 + 0.800000012 -0.819271207 -0.562280118 -0.112409025 -0.93167299 + 0.833333015 -0.930691957 -0.365260959 -0.019921599 -0.995519936 + 0.866666973 -0.981066644 -0.193583921 0.00578564871 -1.06080997 + 0.899999976 -0.986431241 -0.163933039 -0.00890669227 -1.07567 + 0.93333298 -0.990523815 -0.134323969 -0.0286297947 -1.08658004 + 1 -0.992356956 -0.110368982 -0.0551940911 -1.09323001 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 27 + 0 0.999306321 -0.0275547095 0.0250523053 -0.975484967 + 0.0666666999 0.999274552 -0.0284770876 0.0252875872 -0.95206207 + 0.100000001 0.999157488 -0.0316696167 0.0261022132 -0.878472984 + 0.133332998 0.998968601 -0.0362962857 0.0272816867 -0.789022028 + 0.166666999 0.998636067 -0.0433610007 0.0290829018 -0.681650996 + 0.200000003 0.997938335 -0.0555274189 0.0321827121 -0.55080092 + 0.266667008 0.996758342 -0.0717885196 0.0363210104 -0.437323034 + 0.300000012 0.99823755 -0.0506419763 0.0309382845 -0.596985996 + 0.333332986 0.99881345 -0.0397341177 0.0281584114 -0.733030081 + 0.366667002 0.999338508 -0.0265928842 0.0248069894 -1.00106001 + 0.400000006 0.999520957 -0.0204414986 0.0232367981 -1.19824004 + 0.433333009 0.999600828 -0.0172026958 0.0224097967 -1.33176005 + 0.466666996 0.999626398 -0.0160589069 0.0221177097 -1.38512003 + 0.5 0.999615073 -0.0165749006 0.0222493 -1.36061001 + 0.533333004 0.999580085 -0.0180910006 0.0226367004 -1.29268003 + 0.56666702 0.999578595 -0.0181529932 0.0226522889 -1.29003 + 0.600000024 0.999575257 -0.0182923023 0.0226881038 -1.28410006 + 0.633333027 0.999579132 -0.0181285013 0.022646701 -1.29105997 + 0.666666985 0.999578416 -0.0181595068 0.0226543099 -1.2897501 + 0.733332992 0.999590874 -0.0176328979 0.0225197989 -1.31257999 + 0.766667008 0.999598801 -0.0172924977 0.0224324968 -1.32772994 + 0.800000012 0.999582708 -0.0179793965 0.0226079933 -1.29747987 + 0.833333015 0.999540329 -0.0196970049 0.0230465066 -1.22683001 + 0.866666973 0.999457419 -0.0227432102 0.0238242093 -1.11688995 + 0.899999976 0.999420106 -0.0240072031 0.0241470039 -1.07629001 + 0.93333298 0.999374986 -0.0254638996 0.0245188028 -1.03269005 + 1 0.999329388 -0.0268689096 0.0248773117 -0.993601918 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 27 + 0 -0.0734717026 0.980534017 0.182085007 -0.131375 + 0.0666666999 0.26582399 0.619857013 0.73831898 -0.134475008 + 0.100000001 0.523451865 -0.0518885925 0.850473821 -0.238675997 + 0.133332998 0.561773896 -0.277792931 0.779256821 -0.374087006 + 0.166666999 0.587932944 -0.36975795 0.719453871 -0.499314994 + 0.200000003 0.557773113 -0.422927082 0.714158177 -0.662356079 + 0.266667008 0.472071946 -0.493618935 0.730402946 -0.811203063 + 0.300000012 0.553640842 -0.446917921 0.702670753 -0.621529996 + 0.333332986 0.544763923 -0.362747967 0.756072879 -0.508304 + 0.366667002 0.243911967 -0.0697353929 0.967286885 -0.269380987 + 0.400000006 -0.631364942 0.675568879 0.380768955 -0.264205009 + 0.433333009 -0.769542098 0.624563038 -0.133139014 -0.526135027 + 0.466666996 -0.765514135 0.574428082 -0.28986299 -0.812738061 + 0.5 -0.744069993 0.527675927 -0.409777999 -1.00169003 + 0.533333004 -0.728611887 0.486914903 -0.481703877 -1.14883995 + 0.56666702 -0.72274977 0.498258799 -0.478926837 -1.16403997 + 0.600000024 -0.710793197 0.507255137 -0.487304121 -1.18133998 + 0.633333027 -0.68802011 0.541549146 -0.483066082 -1.16896999 + 0.666666985 -0.670607209 0.581642091 -0.460411161 -1.12807 + 0.733332992 -0.622565806 0.630384803 -0.463709831 -0.993705988 + 0.766667008 -0.601546884 0.614625871 -0.510270894 -0.90072 + 0.800000012 -0.56698513 0.614453137 -0.548612118 -0.753593981 + 0.833333015 -0.519175947 0.629210949 -0.578402936 -0.574922979 + 0.866666973 -0.443019927 0.708139956 -0.549791932 -0.347360998 + 0.899999976 -0.399979949 0.780448794 -0.480536878 -0.264506012 + 0.93333298 -0.312305927 0.897342741 -0.311834931 -0.184072986 + 1 -0.12780802 0.988119125 0.0853563026 -0.129340008 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 28 + 0 -0.0449580848 0.543628812 0.838120759 -0.883076072 + 0.0666666999 -0.0909523964 0.563497007 0.821096063 -0.772583067 + 0.100000001 -0.093871884 0.51817596 0.850106895 -0.759329975 + 0.133332998 -0.104296997 0.471543998 0.875653148 -0.748950064 + 0.166666999 -0.102735996 0.429592013 0.897159994 -0.793576002 + 0.200000003 -0.0918975398 0.400387168 0.911726356 -0.869095862 + 0.266667008 -0.0801299959 0.372530967 0.924553871 -0.896595001 + 0.300000012 -0.111328006 0.399596065 0.909906089 -0.832744062 + 0.333332986 -0.12659204 0.434573174 0.89169538 -0.796612978 + 0.366667002 -0.159093052 0.516980112 0.841083229 -0.613761008 + 0.400000006 -0.0958592817 0.672035933 0.734287858 -0.462810993 + 0.433333009 0.144587979 0.889146864 0.434179932 -0.367508978 + 0.466666996 0.476838887 0.878853798 -0.0155124962 -0.409857005 + 0.5 0.497909099 0.863472104 -0.0806379095 -0.591414988 + 0.533333004 0.448870122 0.892870247 -0.0360322073 -0.757690012 + 0.56666702 0.418893993 0.861516058 -0.286911041 -0.656156957 + 0.600000024 0.303629994 0.825716913 -0.475394994 -0.581703007 + 0.633333027 0.14853403 0.616474092 -0.773238182 -0.56528002 + 0.666666985 -0.0192661043 0.396438092 -0.917859256 -0.584291995 + 0.699999988 -0.017934598 0.356676012 -0.934055984 -0.565268993 + 0.733332992 0.0188393984 0.299191982 -0.95400691 -0.554871023 + 0.766667008 0.0125368983 0.635737002 -0.771803916 -0.400588006 + 0.800000012 -0.0481538139 0.978901386 -0.198578075 -0.335051 + 0.833333015 -0.0951392427 0.891409397 0.443100214 -0.45570001 + 0.866666973 -0.0803022236 0.696504176 0.71304518 -0.676715016 + 0.899999976 -0.0728606805 0.642776787 0.762580693 -0.74129802 + 0.93333298 -0.0636939332 0.59410423 0.801862359 -0.807437062 + 1 -0.0700637177 0.573919117 0.815909266 -0.770878017 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 28 + 0 1 -1.86197994e-007 2.09766e-007 -0.788268983 + 0.0666666999 1 0 0 -0.857629061 + 0.100000001 1 0 0 -0.915292978 + 0.133332998 1 0 0 -0.96893394 + 0.166666999 1 0 0 -1.01584005 + 0.200000003 1 0 0 -1.05776 + 0.266667008 1 0 0 -1.07875001 + 0.300000012 1 0 0 -1.07633996 + 0.333332986 1 0 0 -1.06814003 + 0.366667002 1 0 0 -1.00125003 + 0.400000006 1 0 0 -0.886731029 + 0.433333009 1 -2.08757001e-007 -1.39213e-007 -0.705811977 + 0.466666996 1 0 0 -0.429367989 + 0.5 1 0 8.66624021e-007 -0.312851965 + 0.533333004 1 -1.39314989e-006 0 -0.225246996 + 0.56666702 1 2.19258979e-007 3.30558009e-007 -0.277835995 + 0.600000024 1 -3.81910013e-007 -3.86425995e-007 -0.340801001 + 0.633333027 1 0 -3.89959013e-007 -0.45629397 + 0.666666985 1 -3.47561041e-007 -5.48027003e-007 -0.545050979 + 0.699999988 1 0 0 -0.640960991 + 0.733332992 1 0 0 -0.686156988 + 0.766667008 1 0 0 -0.696201026 + 0.800000012 1 0 0 -0.717841029 + 0.833333015 1 0 0 -0.762292027 + 0.866666973 1 0 0 -0.791794062 + 0.899999976 1 0 0 -0.798147976 + 0.93333298 1 0 0 -0.802761972 + 1 1 0 0 -0.814999044 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 28 + 0 -0.708265007 -0.688047945 0.157957986 -0.787172019 + 0.0666666999 -0.706893027 -0.640801966 0.299457997 -0.845845997 + 0.100000001 -0.680244029 -0.597292006 0.424865007 -0.930806935 + 0.133332998 -0.640687108 -0.560473144 0.524776042 -1.02944994 + 0.166666999 -0.60909605 -0.545849085 0.575370073 -1.09933996 + 0.200000003 -0.581649005 -0.54411602 0.604667008 -1.14890003 + 0.266667008 -0.547226131 -0.535592139 0.643183172 -1.21827996 + 0.300000012 -0.579963923 -0.528280914 0.620129943 -1.21358001 + 0.333332986 -0.617490232 -0.529379189 0.581776202 -1.18569005 + 0.366667002 -0.667132914 -0.516112864 0.537178874 -1.16934001 + 0.400000006 -0.703609109 -0.522916138 0.481137097 -1.11941004 + 0.433333009 -0.708380997 -0.556608081 0.434032023 -1.04923999 + 0.466666996 -0.6743837 -0.616466701 0.406417787 -0.941385984 + 0.5 -0.575702071 -0.771450102 0.27098304 -0.837741017 + 0.533333004 -0.418247938 -0.908290863 -0.00874199811 -0.731562018 + 0.56666702 -0.437580884 -0.898254752 0.0407592878 -0.689566016 + 0.600000024 -0.44371292 -0.896010816 -0.0168363955 -0.636533022 + 0.633333027 -0.509313941 -0.859413862 0.0448015966 -0.632664025 + 0.666666985 -0.53791517 -0.842511356 0.0286685135 -0.618685961 + 0.699999988 -0.626973033 -0.765391111 0.145194009 -0.700883985 + 0.733332992 -0.671095014 -0.694558918 0.259266973 -0.786740005 + 0.766667008 -0.691960812 -0.66541183 0.280030936 -0.851505995 + 0.800000012 -0.706713736 -0.646584809 0.287199914 -0.87371701 + 0.833333015 -0.709036827 -0.655446887 0.260107934 -0.86490798 + 0.866666973 -0.706345975 -0.670365989 0.227342993 -0.845691025 + 0.899999976 -0.706653774 -0.675597847 0.210256949 -0.830709934 + 0.93333298 -0.706324697 -0.680872738 0.193694919 -0.815420985 + 1 -0.698362947 -0.657597899 0.282584965 -0.841485977 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.0941661 0.979700089 -0.17697601 -0.0910393 + 0.0666666999 0.331357926 0.921980798 -0.200382963 -0.0806052014 + 0.200000003 0.117482975 0.979050756 -0.166304961 -0.0894548967 + 0.266667008 0.0252681114 0.988455415 -0.149390057 -0.0953115076 + 0.400000006 -0.130749002 0.789758086 -0.599322021 -0.15634498 + 0.466666996 -0.17836903 0.822992206 -0.539322078 -0.155935019 + 0.533333004 -0.599345028 0.437546968 -0.670326948 -0.161387995 + 0.600000024 -0.602805197 0.533822119 -0.593009174 -0.158131003 + 0.666666985 -0.596798062 0.624098063 -0.504315078 -0.157358006 + 0.733332992 -0.812879026 -0.0141747007 -0.582260013 -0.175366998 + 1 -0.460514933 0.886828899 -0.0382162966 -0.188396007 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.28765291 -0.893294692 0.345369905 -0.134492993 + 0.0666666999 0.341200143 -0.87815237 0.335307151 -0.137990981 + 0.200000003 0.574938834 -0.801588714 0.164014935 -0.297084987 + 0.266667008 0.436158776 -0.865829468 0.24516286 -0.296175957 + 0.400000006 0.480246246 -0.853255451 -0.203270108 -0.283845007 + 0.466666996 0.510452807 -0.842960715 -0.169867948 -0.273274988 + 0.533333004 0.256134033 -0.88994509 0.377350092 -0.318230003 + 0.600000024 0.31259805 -0.876875103 0.365202039 -0.298949987 + 0.666666985 0.0987529904 -0.986624837 0.129688963 -0.447973967 + 0.733332992 0.0764875039 -0.99210304 0.0994041115 -0.451635987 + 0.866666973 0.0523177944 -0.991803885 0.116566993 -0.310488999 + 1 0.756376803 -0.622597873 0.200663969 -0.217666 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.0817663968 0.977887988 0.192481995 -0.0516389012 + 0.0666666999 -0.543925881 0.833603799 0.0961736813 -0.0932492986 + 0.200000003 -0.0971021652 -0.636242747 0.765353739 -0.210801005 + 0.266667008 -0.116175964 -0.635859847 0.76301074 -0.193850994 + 0.400000006 0.533284009 0.0474575013 -0.844604015 -0.482767999 + 0.466666996 0.440542191 0.319565117 -0.838928342 -0.525057971 + 0.533333004 0.537519097 0.750415146 -0.384643078 -0.552628994 + 0.600000024 0.528033197 0.755509317 -0.387797147 -0.469850004 + 0.666666985 0.435681909 0.250975937 -0.86440289 -0.268332958 + 0.733332992 -0.104724012 -0.517842054 -0.849042118 -0.295147985 + 0.866666973 -0.687630594 -0.373056799 -0.622890651 -0.27067399 + 1 -0.996439099 -0.0841978043 0.00445513055 -0.0450997986 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.703612983 -0.708854079 0.0495443046 -0.114386991 + 0.0666666999 0.719436884 -0.69440788 -0.0144310985 -0.144835994 + 0.200000003 0.717762232 -0.69625324 -0.00698954239 -0.140452996 + 0.266667008 0.716871977 -0.697197974 -0.00308905006 -0.138264999 + 0.400000006 0.46774298 -0.0557605959 -0.88210386 -0.137556002 + 0.466666996 -0.428312987 -0.510631979 -0.745521963 -0.137875006 + 0.533333004 -0.341471016 -0.588977039 -0.732464075 -0.121839002 + 0.600000024 -0.223735109 -0.677118301 -0.701037347 -0.107973002 + 0.666666985 -0.0690485984 -0.76590699 -0.639232993 -0.0972119048 + 0.733332992 -0.203990042 -0.898166299 -0.389468074 -0.189906001 + 0.866666973 0.291159898 -0.918924689 -0.266088903 -0.132541001 + 1 0.703613997 -0.708852947 0.0495463014 -0.114386991 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.0340114944 0.9445979 0.326462984 -0.286792994 + 0.0666666999 -0.0147935934 0.951780498 0.306422889 -0.285973966 + 0.200000003 0.305805951 0.54587388 0.780066967 -0.322703987 + 0.266667008 0.309759885 0.595652759 0.741111755 -0.311827004 + 0.400000006 -0.477575809 0.874968648 0.0796944723 -0.307377011 + 0.466666996 -0.501390934 0.86431396 -0.0396037959 -0.325578004 + 0.533333004 -0.429649979 0.899076939 -0.0840327963 -0.323158979 + 0.600000024 -0.349066883 0.934233665 -0.0732101724 -0.311024994 + 0.666666985 -0.00144678983 0.864602804 0.502453864 -0.275743991 + 0.733332992 0.056542784 0.912174761 0.405881912 -0.276286006 + 0.866666973 0.298337013 0.93366909 0.19813402 -0.303674996 + 1 0.244535953 0.969566822 0.0119300978 -0.298869997 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.948533773 -0.256987929 -0.185042962 -0.469428003 + 0.0666666999 0.962110639 -0.212187931 -0.171228945 -0.454919994 + 0.200000003 0.922936141 -0.360247016 -0.135687009 -0.548105001 + 0.266667008 0.888134599 -0.455825806 -0.0586493723 -0.528940976 + 0.400000006 -0.551638007 -0.261527985 -0.792021871 -0.378988981 + 0.466666996 0.173301041 0.176841035 -0.968862236 -0.511116982 + 0.533333004 -0.00729141897 0.32513693 -0.945638835 -0.798997998 + 0.600000024 0.0718422234 0.293910116 -0.953129351 -0.693095982 + 0.666666985 0.518982828 0.0811000615 -0.850928664 -0.444532961 + 0.733332992 0.977900088 -0.0490062088 -0.203248009 -0.455761015 + 0.866666973 0.980395555 -0.103428952 -0.16771093 -0.504634023 + 1 0.923769176 -0.325747043 -0.201344028 -0.397404969 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.290140003 -0.341154009 -0.894110024 -0.991366029 + 0.0666666999 -0.282221019 -0.360308051 -0.889117181 -1.00163996 + 0.200000003 -0.732533932 -0.498792976 -0.463248968 -0.541332006 + 0.266667008 -0.696760833 -0.46626088 -0.545091867 -0.574333012 + 0.400000006 -0.561647892 -0.327763945 -0.759685755 -1.10432994 + 0.466666996 -0.421617895 -0.417791873 -0.804790854 -1.45840013 + 0.533333004 -0.569476128 -0.449590057 -0.688161135 -1.54939997 + 0.600000024 -0.552167118 -0.425371051 -0.717057109 -1.47923994 + 0.666666985 -0.554342091 -0.447385103 -0.701820076 -1.52586997 + 0.733332992 -0.539740741 -0.420817822 -0.729103744 -1.46102011 + 1 -0.381821185 -0.208426073 -0.900428295 -1.10922003 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.643578053 0.764970124 -0.0250597037 -0.365325004 + 0.0666666999 0.662349164 0.748910129 -0.0206701029 -0.35719502 + 0.200000003 0.67550081 0.720039845 0.158874959 -0.376002014 + 0.266667008 0.693925023 0.655939996 0.297003001 -0.372292012 + 0.333332986 0.813024998 0.509477973 0.281819999 -0.404931962 + 0.400000006 0.887943029 0.076143302 0.453607023 -0.357573986 + 0.466666996 0.79911232 0.457312137 0.390237182 -0.483915001 + 0.533333004 0.852965057 0.330625027 0.403903037 -0.697626054 + 0.600000024 0.860968173 0.333865076 0.383755058 -0.635165989 + 0.666666985 0.780642092 0.503455043 0.370312005 -0.384806007 + 0.733332992 0.554284811 0.792154729 0.255458921 -0.249084994 + 0.866666973 0.725886106 0.678384125 0.113509022 -0.243694022 + 1 0.929822206 0.362597048 0.0628811046 -0.275882035 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.529153943 0.423195928 -0.735459924 -0.0794306993 + 0.0666666999 0.532219887 0.68578589 -0.49642691 -0.110739 + 0.200000003 -0.00368071091 0.744151175 0.668001115 -0.220409021 + 0.266667008 0.0182292927 0.880560637 0.473582804 -0.243494004 + 0.333332986 0.717685819 0.177800953 0.673285842 -0.148440987 + 0.400000006 0.274031907 -0.850510716 -0.448929846 -0.345217973 + 0.466666996 0.313714027 -0.841239154 -0.440341026 -0.311854988 + 0.533333004 0.971905231 -0.214877024 -0.0960632116 -0.569880009 + 0.600000024 0.973219931 -0.210844979 -0.0915822908 -0.505840003 + 0.666666985 0.839452863 -0.422679931 -0.341556013 -0.308717966 + 0.733332992 0.350334108 0.654151261 -0.670337319 -0.252747983 + 0.866666973 -0.109779991 0.819777906 -0.562060952 -0.232973993 + 1 0.994671822 -0.0981290862 0.0316012911 -0.12339399 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.567517817 0.272375911 0.777003765 -0.541176975 + 0.0666666999 -0.522528887 0.264056951 0.810701847 -0.539478004 + 0.200000003 -0.500113904 0.281463951 0.818940878 -0.582991004 + 0.266667008 -0.489945859 0.289170921 0.822394848 -0.604909003 + 0.400000006 -0.562453866 0.220925942 0.796766818 -0.678206027 + 0.466666996 -0.543190956 0.238366991 0.805061936 -0.695815027 + 0.533333004 -0.524477184 0.254806101 0.812402308 -0.713878989 + 0.600000024 -0.506329775 0.270298868 0.818882585 -0.732364953 + 0.666666985 -0.488757104 0.284902066 0.824589193 -0.751237988 + 0.733332992 -0.323857963 0.140228003 0.935656011 -1.12729001 + 0.800000012 -0.377858907 0.197116956 0.904636681 -1.09828997 + 1 -0.409408033 0.346398026 0.844034076 -0.850521922 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.102447025 0.000684239203 -0.994738221 -0.435236007 + 0.0666666999 0.114911012 -0.00461351033 -0.993365049 -0.415578008 + 0.200000003 0.209069937 0.122648977 -0.970178843 -0.401118994 + 0.266667008 0.270549923 0.189017922 -0.94396764 -0.402717978 + 0.400000006 -0.129264951 -0.354667872 -0.926013649 -0.351413995 + 0.466666996 -0.4931629 -0.717756867 -0.491543919 -0.454555988 + 0.533333004 -0.457293957 -0.717490017 -0.525442958 -0.40367201 + 0.600000024 -0.409768999 -0.714598 -0.566955984 -0.354012012 + 0.666666985 -0.344804138 -0.706457317 -0.618084252 -0.306179017 + 0.733332992 0.253167897 0.687687755 0.680434823 -6.02200985 + 0.800000012 0.139590979 -0.609663963 -0.780271888 -0.244242981 + 0.866666973 0.0956038013 -0.163277999 -0.981936991 -0.175179005 + 1 0.56042397 -0.200150982 -0.803656995 -0.162874997 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 0.148909926 -0.975029528 -0.164751947 -0.224198982 + 0.0666666999 0.223941922 -0.95296669 -0.204216927 -0.183396995 + 0.200000003 0.945521951 0.0397628918 -0.323120952 -0.242720008 + 0.266667008 0.947185874 0.0895057917 -0.30794096 -0.282860011 + 0.400000006 -0.624392688 -0.662574708 -0.413676798 -0.354175985 + 0.466666996 -0.278695077 -0.677362263 -0.68081522 -0.510366023 + 0.533333004 -0.221144006 -0.722128928 -0.655457914 -0.471607983 + 0.600000024 -0.586205006 -0.62620008 -0.514040053 -0.424678981 + 0.666666985 0.205127969 -0.42403993 -0.88210696 -0.359250963 + 0.733332992 0.361775041 0.516429067 -0.776157081 -0.397932023 + 0.800000012 -0.074281387 0.787885904 -0.611324906 -0.310025036 + 0.866666973 0.0885651335 0.78317225 -0.615465224 -0.270027012 + 1 0.466061056 -0.877141118 -0.115804017 -0.342453986 +endnode +doneanim plslasho a_dfa2_coat + +#MAXANIM ASCII +newanim 1hslasho a_dfa2_coat + length 1 + transtime 0.25 + animroot rootdummy + event 0.300000012 snd_footstep + event 0.300000012 snd_footstep + event 0.300000012 snd_footstep + event 0.300000012 snd_footstep + event 0.300000012 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 16 + 0 -0.00336321001 0.0204978995 1.04101002 + 0.0666666999 0.0092952596 0.00146496994 1.04592001 + 0.133332998 0.0472707003 -0.0556337982 1.06061995 + 0.233333007 0.0776524991 -0.101313002 1.06710994 + 0.300000012 0.0979072005 -0.131766006 1.07142997 + 0.366667002 0.0865330026 -0.0773762986 1.04408002 + 0.433333009 0.0507277995 0.0561762005 1 + 0.5 0.0172234997 0.119747996 0.977550983 + 0.56666702 -0.0291419998 0.170855999 0.954060972 + 0.633333027 -0.0587221012 0.195795998 0.92484802 + 0.699999988 -0.0796281025 0.208830997 0.895614028 + 0.766667008 -0.0750878975 0.187893003 0.91177398 + 0.833333015 -0.0572981015 0.132074997 0.954863012 + 0.899999976 -0.0325785019 0.0727863014 1.00064003 + 0.93333298 -0.0167539008 0.0414073989 1.02487004 + 1 -0.00336297997 0.0204971991 1.04101002 + orientationkey 15 + 0 0.796724081 -0.0088700112 0.604278088 -0.360758007 + 0.0666666999 0.727209687 0.00689243758 0.686380744 -0.382285029 + 0.233333007 -0.237978071 0.255281061 0.937122226 -0.5449 + 0.300000012 -0.326696098 0.266290069 0.906840265 -0.607344985 + 0.366667002 -0.24504894 0.295203954 0.923474789 -0.479542971 + 0.433333009 0.65366894 0.424960941 0.626198947 -0.187452003 + 0.5 0.933562219 0.124005027 -0.336280078 -0.300298005 + 0.56666702 0.571318805 0.00773825729 -0.820691764 -0.529281974 + 0.633333027 0.383570105 -0.0360137112 -0.922809303 -0.832267046 + 0.699999988 0.319590032 -0.0434523001 -0.946559072 -0.958381057 + 0.766667008 0.319498152 -0.0625314265 -0.945521414 -0.959626079 + 0.833333015 0.57049787 -0.0565523803 -0.819349766 -0.555455983 + 0.899999976 0.999921381 -0.00863184314 -0.00909596309 -0.316170007 + 0.93333298 0.976373136 -0.0373271033 0.212843046 -0.327017993 + 1 0.933030128 -0.0554935075 0.355493009 -0.344479024 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.290915042 -0.108022012 0.950631201 -0.130070016 + 0.0666666999 -0.033380691 -0.146812975 0.98860085 -0.205366999 + 0.233333007 -0.373279154 -0.170572057 0.911903441 -0.743381023 + 0.300000012 -0.379206091 -0.170820042 0.909408212 -0.781156003 + 0.366667002 -0.245603889 -0.153712943 0.957105577 -0.593753994 + 0.433333009 0.989565253 0.137516037 0.043011412 -0.180691004 + 0.5 0.851189196 0.0834837183 -0.518177032 -0.401489973 + 0.633333027 0.444816828 0.217770904 -0.868742645 -1.28181005 + 0.766667008 0.391729087 0.167669028 -0.904674232 -1.07797003 + 0.899999976 0.478074938 0.264596969 -0.837515831 -0.209032983 + 1 0.59716934 0.0396528207 -0.801134467 -0.0635953024 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.910896003 -0.34769097 0.222214982 -0.500795007 + 0.300000012 -0.517020822 -0.415100873 0.74858582 -0.960874021 + 0.366667002 -0.881208122 -0.185095027 0.434985101 -0.44135198 + 0.5 -0.45896396 -0.519202948 -0.720957935 -1.21339989 + 0.766667008 -0.35006088 -0.431888819 -0.83122164 -1.04095995 + 0.93333298 0.562329113 -0.815835238 -0.134903029 -0.276805013 + 1 -0.719255984 -0.667643964 0.192151979 -0.782369912 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 -0.972979307 0.116192043 0.199526057 -0.853736043 + 0.133332998 -0.98470974 0.169288948 0.0410849899 -0.99912101 + 0.300000012 0.850996137 -0.418870091 0.316786021 -5.09000015 + 0.366667002 -0.880562961 0.106564991 0.461793005 -0.931788981 + 0.5 -0.643372178 0.513378143 0.567904115 -1.47786999 + 0.766667008 0.750707269 -0.333743125 -0.570135176 -4.90467978 + 0.93333298 -0.996603787 0.0588586889 0.0575892851 -1.5412699 + 1 -0.998409808 0.00182413962 0.0563425906 -1.12735999 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 0.449397087 0.695229113 -0.560980141 -0.344090998 + 0.0666666999 0.612472832 0.786643744 -0.07790187 -0.391528994 + 0.166666999 0.557531834 0.554779828 0.617557764 -1.02256 + 0.233333007 0.513284147 0.531861126 0.673545182 -1.21449995 + 0.300000012 0.426154017 0.528750002 0.734040976 -1.40012002 + 0.366667002 0.371771008 0.578736007 0.725844979 -1.23870003 + 0.433333009 -0.326356918 0.155504942 0.932367623 -1.78150988 + 0.5 -0.993540049 0.0870890096 -0.0727578029 -1.74801004 + 0.533333004 -0.923977077 0.253262013 -0.286574006 -1.74784005 + 0.633333027 -0.828514934 0.420401931 -0.369898975 -2.06617999 + 0.699999988 0.825868607 -0.272647887 0.493562728 -4.56729984 + 0.766667008 -0.627880931 0.36648196 -0.686626911 -1.62532997 + 0.899999976 -0.514447868 0.321040928 -0.795157909 -0.749715984 + 1 -0.604396999 0.516797006 -0.606320977 -0.510402977 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -0.979173362 0.0876876265 0.183113053 -1.46369004 + 0.0666666999 -0.987948358 0.0600416213 0.14266406 -1.58203006 + 0.166666999 -0.99953568 -0.0257453937 0.0162961949 -2.07333994 + 0.233333007 -0.999567866 -0.0237428956 0.0173295978 -2.17551994 + 0.300000012 0.999578774 0.0229818933 -0.0177221969 -4.0673399 + 0.366667002 -0.998776674 -0.0314475894 0.0381603837 -1.92007995 + 0.433333009 -0.999967575 0.000480212824 -0.00804118626 -1.10197997 + 0.5 -0.999789715 -0.00575054856 -0.0196824968 -0.414294988 + 0.533333004 -0.999873161 -0.00352854072 -0.0155309029 -0.535978019 + 0.633333027 0.376620948 0.461594939 0.803172946 -6.04725981 + 0.699999988 0.957806706 0.133572951 0.254488915 -5.70654011 + 0.766667008 0.984131515 0.134200945 0.116082951 -5.22496986 + 0.899999976 -0.999971032 0.000730563013 -0.00757313054 -1.17507017 + 1 -0.962354362 -0.221403062 -0.157654047 -0.975231051 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.658401728 -0.201824903 0.725102663 -0.0834655985 + 0.300000012 -0.971741676 -0.197321936 -0.129545957 -0.23072198 + 0.5 -0.302920133 0.591908276 -0.746916354 -0.131308004 + 0.699999988 0.801283002 -0.0567287989 -0.595589995 -0.138324007 + 1 -0.658402205 -0.201825023 0.725102186 -0.0834660009 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 18 + 0 -0.973313153 -0.187542036 -0.132248014 -1.15596998 + 0.0666666999 -0.958351314 -0.21915707 -0.183120042 -1.11169004 + 0.133332998 -0.843529284 -0.395090163 -0.363816112 -0.971744001 + 0.166666999 -0.750143111 -0.483994097 -0.450594068 -0.938495994 + 0.233333007 -0.493773043 -0.65664202 -0.570096016 -0.912981927 + 0.300000012 -0.444076031 -0.722388029 -0.530049026 -0.999712944 + 0.333332986 -0.557497144 -0.718904197 -0.415179074 -0.902188003 + 0.366667002 -0.67134577 -0.694361746 -0.259145916 -0.835418999 + 0.433333009 -0.948793054 -0.303508997 0.0876015052 -1.08633006 + 0.5 -0.992667198 -0.120747015 0.00566098047 -1.31490004 + 0.56666702 -0.994294643 0.0862748623 -0.0627283677 -1.34337997 + 0.633333027 -0.96527648 0.251076132 -0.0721255317 -1.37916994 + 0.699999988 -0.921153069 0.307637036 -0.238404036 -1.39582002 + 0.766667008 -0.935708106 0.335783005 -0.108167015 -1.36782002 + 0.833333015 -0.977145374 0.189856067 -0.0956119373 -1.36917996 + 0.899999976 -0.990590811 -0.0252741985 -0.134502992 -1.31061995 + 0.93333298 -0.989984214 -0.071760416 -0.121580034 -1.24680996 + 1 -0.980726659 -0.122171953 -0.152476937 -1.1839 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 0.999106586 -0.0329735838 0.0264345892 -0.851395011 + 0.0666666999 0.999043465 -0.0345282145 0.0268318132 -0.821080983 + 0.133332998 0.998814464 -0.0397118181 0.0281534158 -0.733334005 + 0.166666999 0.998781979 -0.0403984003 0.0283284988 -0.723038018 + 0.233333007 0.998512506 -0.0457318798 0.0296881869 -0.651616991 + 0.300000012 0.998936355 -0.0370338149 0.027470611 -0.776287019 + 0.366667002 0.999001503 -0.0355286822 0.0270869862 -0.802589953 + 0.433333009 0.999457836 -0.0227282941 0.0238203965 -1.11729002 + 0.5 0.999498963 -0.0212627985 0.0234461986 -1.16794002 + 0.56666702 0.999539733 -0.0197211951 0.0230523944 -1.22577 + 0.633333027 0.999564588 -0.0187313911 0.0227996912 -1.26558995 + 0.699999988 0.999603331 -0.017095305 0.0223819055 -1.33650994 + 0.766667008 0.999566674 -0.0186448935 0.0227778945 -1.26919985 + 0.833333015 0.999463439 -0.0225350074 0.0237707086 -1.12379003 + 0.899999976 0.999330223 -0.026843505 0.0248706061 -0.994254053 + 0.93333298 0.999137163 -0.0321965031 0.0262364037 -0.867321968 + 1 0.998991609 -0.0357617848 0.0271457881 -0.798465014 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 0.243747905 0.845084727 -0.475834817 -0.19003202 + 0.0666666999 0.363443941 0.879029989 -0.308568984 -0.189728007 + 0.133332998 0.535075843 0.796643734 0.281162918 -0.239353999 + 0.166666999 0.481216937 0.72556597 0.491918981 -0.268234015 + 0.233333007 0.448459923 0.614163876 0.649373889 -0.354519993 + 0.300000012 0.00415349891 0.596314907 0.802739859 -0.373576015 + 0.366667002 0.249327973 0.939344823 0.23551397 -0.306915969 + 0.433333009 -0.441512018 0.89104712 0.105367012 -0.276116014 + 0.5 -0.446006149 0.317026109 0.837002337 -0.310575038 + 0.56666702 -0.473724902 -0.176534966 0.862797856 -0.399571002 + 0.633333027 -0.456435144 -0.373437107 0.807596266 -0.480382979 + 0.699999988 -0.463435113 -0.490806103 0.737792134 -0.643041015 + 0.766667008 -0.372434169 -0.438640237 0.817855418 -0.582800984 + 0.833333015 -0.34582597 -0.364004999 0.864814878 -0.315160006 + 0.899999976 -0.203041986 0.230351985 0.951689005 -0.144430995 + 0.93333298 0.45698601 0.796626985 0.395662993 -0.112028994 + 1 0.590286911 0.807121873 0.0107563976 -0.149128005 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 -0.310042799 0.495722711 0.811253607 -0.830864072 + 0.0666666999 -0.294342041 0.516566038 0.804066122 -0.803363085 + 0.133332998 -0.0747582316 0.580818176 0.810593247 -0.622452974 + 0.233333007 0.450353861 0.578206837 0.680336833 -0.682590008 + 0.300000012 0.60454303 0.508336067 0.613288045 -0.726323009 + 0.366667002 0.532814264 0.455227166 0.713356316 -0.614285946 + 0.433333009 0.399533063 0.252889037 0.881147265 -0.519909978 + 0.5 0.198415071 0.00763295311 0.980088353 -0.477068961 + 0.56666702 0.317547143 -0.0860124454 0.944333434 -0.609552979 + 0.633333027 0.271646947 -0.282903939 0.919876754 -0.635348976 + 0.699999988 0.18742995 -0.297270954 0.936215758 -0.688726008 + 0.766667008 0.177265987 -0.207271978 0.962088943 -0.665241003 + 0.800000012 0.0829311013 0.0510475971 0.995247006 -0.649439037 + 0.833333015 -0.0389611162 0.271043092 0.961778402 -0.683404982 + 0.899999976 -0.312654018 0.482077062 0.81844312 -0.707113028 + 0.93333298 -0.322269082 0.459117085 0.82786119 -0.827472985 + 1 -0.324437976 0.46696496 0.822607875 -0.838765979 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 17 + 0 1 0 0 -0.725558996 + 0.0666666999 1 0 0 -0.757308006 + 0.133332998 1 0 3.46468994e-007 -0.764420986 + 0.233333007 1 0 0 -0.685688972 + 0.300000012 1 0 -2.94600994e-007 -0.641539991 + 0.366667002 1 0 0 -0.711592972 + 0.433333009 1 0 0 -0.637347937 + 0.5 1 0 0 -0.542397022 + 0.56666702 1 0 0 -0.356220037 + 0.633333027 1 5.24318978e-007 0 -0.285447985 + 0.699999988 1 1.56564994e-007 -3.97693015e-007 -0.340705991 + 0.766667008 1 0 0 -0.411398977 + 0.800000012 1 0 0 -0.549709022 + 0.833333015 1 0 0 -0.649565995 + 0.899999976 1 0 0 -0.748355985 + 0.93333298 1 0 1.50686006e-007 -0.741015077 + 1 1 0 3.19691992e-007 -0.729831994 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.689143896 -0.720574796 0.0765026882 -0.667114973 + 0.0666666999 -0.722292125 -0.688398123 0.0663480163 -0.668468058 + 0.133332998 -0.791946232 -0.593594253 0.143063024 -0.668366015 + 0.233333007 -0.835162878 -0.549675941 -0.0189564973 -0.629284024 + 0.300000012 -0.86240083 -0.50622189 -0.00203868956 -0.60806793 + 0.366667002 -0.832195759 -0.519653857 0.193416938 -0.710434914 + 0.433333009 -0.677204907 -0.521478891 0.519088864 -0.964740932 + 0.5 -0.584463775 -0.462200791 0.666912675 -1.15070999 + 0.56666702 -0.501840055 -0.42335403 0.754273117 -1.32049 + 0.633333027 -0.571859896 -0.327386945 0.752192855 -1.43410003 + 0.699999988 -0.56973809 -0.337406069 0.749370158 -1.54773998 + 0.766667008 -0.510332942 -0.372476012 0.775126994 -1.64901996 + 0.833333015 -0.544633985 -0.527760029 0.651799977 -1.26865005 + 0.899999976 -0.622635126 -0.640654206 0.449319124 -0.91346401 + 0.93333298 -0.664840698 -0.687625706 0.291817874 -0.766467929 + 1 -0.688221872 -0.698081911 0.197565973 -0.698873043 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.238969028 0.93190515 0.272849023 -0.135232016 + 0.133332998 0.0817467719 0.732024789 0.676355839 -0.107870005 + 0.300000012 0.858029127 0.302552044 0.415028065 -0.364232004 + 0.5 0.809501886 0.204575956 0.55032295 -0.251886994 + 0.699999988 0.892438769 0.385083884 0.235081911 -0.195328012 + 0.833333015 0.250333965 0.943251967 0.218193963 -0.168406993 + 1 -0.463475108 0.884170234 -0.0585989095 -0.185725003 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.560797095 -0.793833137 0.235235065 -0.188590005 + 0.0666666999 0.675075173 -0.726479173 -0.128458038 -0.208981007 + 0.133332998 0.658385456 -0.69857949 -0.280205786 -0.336490005 + 0.300000012 0.637988269 -0.381967247 -0.668634415 -0.413565993 + 0.5 -0.215551972 -0.946818888 0.238895983 -0.34907499 + 0.699999988 0.315125167 -0.809158444 0.495942265 -0.459806979 + 0.833333015 0.530459225 -0.6197083 -0.578424275 -0.314727992 + 0.899999976 0.712106764 -0.624588907 -0.320612907 -0.288754016 + 1 0.456986845 -0.845503807 0.276199907 -0.170111001 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.600638926 0.116365001 0.791006982 -0.177144021 + 0.300000012 -0.217055067 0.461220145 0.860327303 -0.37587899 + 0.5 -0.336995065 -0.454791099 0.824378192 -0.822027087 + 0.699999988 -0.614853978 -0.556967974 0.558337986 -0.522870004 + 0.833333015 0.800881982 0.515246987 -0.305137008 -0.390902996 + 0.899999976 0.865364075 0.462027043 -0.194103017 -0.321425021 + 1 0.992394805 0.117009975 0.0382264927 -0.0872665048 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.196586013 -0.0352405049 0.979853094 -0.118047006 + 0.300000012 0.977892458 -0.0307500158 0.206835106 -0.410699993 + 0.699999988 0.263736099 0.149314046 -0.952968299 -0.152971998 + 0.833333015 -0.30616495 -0.123276986 -0.943962812 -0.0637411028 + 1 -0.0857625678 -0.952807784 0.291207939 -0.0969398022 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.33520788 0.941067636 -0.0450262837 -0.190022007 + 0.300000012 0.480598032 0.87610805 -0.0382121019 -0.243381009 + 0.699999988 0.633653998 0.684975922 0.359569967 -0.455410957 + 0.833333015 0.123733938 0.966763496 0.223736897 -0.432871014 + 1 -0.082977511 0.996185184 -0.0270155035 -0.448728979 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.888306379 -0.12185505 -0.44279018 -0.421736956 + 0.300000012 0.0535748191 0.869083226 0.491756141 -0.36590296 + 0.699999988 0.742745042 -0.669074118 -0.0258769039 -0.506914973 + 0.833333015 -0.674439967 0.565907955 -0.474213958 -0.339152008 + 1 0.821279168 -0.505900085 -0.263753027 -0.530937016 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.335305959 -0.179077983 -0.924932957 -1.01227999 + 0.133332998 -0.234333903 -0.507918775 -0.828918636 -0.943104982 + 0.266667008 0.299239993 -0.612338006 -0.731777012 -1.18624997 + 0.300000012 0.383127928 -0.580413938 -0.718562901 -1.25111997 + 0.633333027 -0.141600028 -0.53985709 -0.829761267 -0.772885025 + 0.699999988 -0.215645909 -0.638181686 -0.739067614 -0.771992981 + 1 -0.287176013 -0.652161002 -0.701581001 -0.621905029 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 0.534428954 0.792872906 -0.292810977 -0.187509 + 0.0666666999 0.357085019 0.577172101 -0.734413147 -0.457488954 + 0.133332998 0.396866858 0.168465927 -0.902283728 -0.938351035 + 0.200000003 0.260301024 0.250753015 -0.93239814 -0.740110993 + 0.233333007 0.289451927 0.354134917 -0.889272749 -0.662532985 + 0.266667008 0.250649929 0.495950878 -0.831388831 -0.605503976 + 0.300000012 0.10857603 0.495665193 -0.861700237 -0.649643958 + 0.366667002 -0.0184468031 0.54729706 -0.836735129 -0.522312999 + 0.400000006 -0.171375915 0.653347731 -0.737405658 -0.692932069 + 0.5 -0.244035989 0.738934934 -0.628029943 -0.834426939 + 0.533333004 -0.226084933 0.75418669 -0.616512775 -0.814830005 + 0.633333027 -0.170690998 0.867021024 -0.468122989 -0.538143992 + 0.699999988 -0.0813996345 0.970199406 -0.22822611 -0.377122015 + 0.833333015 0.500570834 0.729756832 -0.465707868 -0.521010935 + 1 0.0472409986 0.68462503 -0.72736299 -0.563751996 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.784457803 0.540121794 0.304785907 -0.094760403 + 0.133332998 0.515325904 0.712593853 0.476076901 -0.181962997 + 0.200000003 0.812480986 0.103249006 0.573772013 -0.177294999 + 0.233333007 0.744603872 0.18804495 0.640471876 -0.140086994 + 0.400000006 0.472831041 0.846206129 0.24569501 -0.273099005 + 0.5 0.149016976 0.984765828 0.0896110907 -0.281457961 + 0.633333027 0.0440369807 0.885959685 0.461666793 -0.370958 + 0.699999988 0.00799801107 0.822926164 0.568092048 -0.430200994 + 0.766667008 0.0648408756 0.274980932 0.959260762 -0.538294971 + 0.833333015 0.182309955 -0.271982938 0.944874763 -0.423718005 + 1 0.618090987 0.783011913 -0.0696841925 -0.087266393 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 4 + 0 -0.712360144 0.518291056 0.473199099 -0.459163964 + 0.300000012 -0.0744207129 0.677609086 0.731647074 -0.677443027 + 0.699999988 -0.710297108 0.59070611 0.382811099 -0.526474953 + 1 -0.707275927 0.61449796 0.349503964 -0.557035983 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 -0.880543828 -0.375806898 0.288810939 -0.0346376002 + 0.300000012 0.800786853 -0.276910931 -0.531093895 -0.298934996 + 0.699999988 0.94463706 0.322874993 -0.0584175996 -0.533122003 + 0.833333015 -0.0872950926 -0.806523979 -0.584721029 -0.132404 + 1 0.257420033 -0.690666139 -0.675807118 -0.341778994 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 5 + 0 0.18934603 -0.710114062 -0.678149045 -0.433811009 + 0.300000012 0.454425037 -0.397329986 -0.797262013 -0.321829975 + 0.699999988 0.937200069 0.0847067982 -0.338350028 -0.378113002 + 0.833333015 -0.807197988 -0.282335997 -0.518379927 -0.370218992 + 1 0.0773667097 -0.842514992 -0.533088028 -0.185992002 +endnode +doneanim 1hslasho a_dfa2_coat + +#MAXANIM ASCII +newanim 2wslasho a_dfa2_coat + length 1 + transtime 0.25 + animroot rootdummy + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.400000006 snd_footstep + event 0.5 hit + event 0.5 blur_start + event 0.5 hit + event 0.5 blur_start + event 0.5 hit + event 0.5 blur_start + event 0.5 hit + event 0.5 blur_start + event 0.5 hit + event 0.5 blur_start + event 0.5 hit + event 0.5 blur_start + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.600000024 blur_end + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 16 + 0 -0.00336282002 0.0204971991 1.04102004 + 0.0666666999 0.00116995 0.0119145 1.04176998 + 0.133332998 0.0275895 -0.0381104983 1.04618001 + 0.200000003 0.0540089011 -0.0881355032 1.05059004 + 0.266667008 0.0727228001 -0.123570003 1.05370998 + 0.333332986 0.0743129998 -0.090005599 1.01973999 + 0.400000006 0.0664845034 0.0504099987 0.994423985 + 0.466666996 0.058652401 0.173345 1.02802002 + 0.533333004 0.0469677001 0.27304399 1.02555001 + 0.600000024 0.0314316005 0.349507987 0.959039986 + 0.666666985 0.00567540992 0.425972015 0.932282984 + 0.733332992 0.00481519988 0.397370011 0.930024028 + 0.800000012 0.00282667996 0.308102012 0.953854978 + 0.866666973 -0.000290008989 0.179169998 1.00648999 + 0.93333298 -0.00340654003 0.0502375998 1.03772998 + 1 -0.0040058298 0.0254430007 1.03965998 + orientationkey 14 + 0 0.933031201 -0.0554945096 0.355490059 -0.344477981 + 0.0666666999 0.916508675 -0.0725863874 0.393373907 -0.342942983 + 0.133332998 0.78468293 -0.168429986 0.596576929 -0.347523004 + 0.200000003 0.616863012 -0.246361017 0.747520089 -0.373946995 + 0.266667008 0.497083247 -0.287086159 0.818834424 -0.403683007 + 0.333332986 0.616353571 -0.25916782 0.743599534 -0.391999006 + 0.400000006 0.871049881 -0.150456995 0.467583984 -0.390766978 + 0.466666996 0.985766709 -0.035306789 0.164369941 -0.444330007 + 0.600000024 0.907830715 -0.0782464817 -0.411971897 -0.576476991 + 0.666666985 0.795011997 -0.115644999 -0.595467985 -0.685425997 + 0.733332992 0.823228896 -0.11433097 -0.556077898 -0.638670027 + 0.800000012 0.894575894 -0.108944982 -0.43343395 -0.537470996 + 0.93333298 0.913924336 -0.0354547165 0.404333174 -0.364977956 + 1 0.865979135 -0.0231710002 0.499543041 -0.368260026 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 0.384693891 0.033207491 0.922446668 -0.0962226912 + 0.0666666999 0.306911051 0.0194606036 0.951539218 -0.117385998 + 0.133332998 0.00426248834 -0.11803294 0.993000507 -0.451192975 + 0.200000003 -0.0417781062 -0.137775019 0.989582062 -0.792470932 + 0.233333007 -0.0529177189 -0.142506033 0.988378346 -0.963438988 + 0.266667008 -0.0557072163 -0.143816009 0.988035262 -1.13063002 + 0.300000012 -0.0578453764 -0.144820943 0.987765551 -1.29781997 + 0.333332986 -0.0159352962 -0.232248962 0.972525835 -1.19682002 + 0.400000006 0.151327983 -0.551432967 0.8203789 -0.676769972 + 0.5 -0.0277990978 -0.882282913 0.469897956 -0.119987004 + 0.600000024 0.83615309 0.0439917073 -0.546729088 -0.698662996 + 0.666666985 0.824483335 0.116363049 -0.553793192 -0.88627398 + 0.733332992 0.881108105 0.192888051 -0.431790054 -0.765542984 + 0.93333298 0.353429914 0.0839346871 -0.931687832 -0.287577003 + 1 0.0770834759 0.0251727924 -0.996706784 -0.258639008 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -0.92479831 -0.348899096 0.151715055 -0.736584008 + 0.0666666999 -0.912000418 -0.270677119 0.308203161 -0.649433017 + 0.133332998 -0.957050741 -0.146351948 0.250269949 -0.745423973 + 0.200000003 -0.748475373 -0.159256071 0.64375627 -0.96222502 + 0.266667008 -0.647236049 -0.201473027 0.73518306 -1.21597004 + 0.333332986 -0.584868073 -0.236203045 0.775975168 -1.45251 + 0.400000006 -0.48725301 -0.393230975 0.779713988 -1.87773001 + 0.466666996 -0.564861953 -0.623931944 0.540036917 -1.61088002 + 0.5 -0.552597225 -0.743651271 0.376323164 -1.58302987 + 0.600000024 -0.597960293 -0.589779317 -0.54277426 -1.98580003 + 0.766667008 -0.359349877 -0.694289804 -0.6235618 -1.86369002 + 0.833333015 -0.539903998 -0.536801994 -0.648341954 -1.71963 + 0.93333298 -0.50320673 -0.383316785 -0.774500608 -0.618448019 + 1 -0.443146855 -0.181530938 -0.877876639 -0.364015013 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -0.963154852 -0.0150531987 0.268525928 -0.592317939 + 0.0666666999 -0.999967217 0.0077682822 -0.00228681043 -0.671356022 + 0.133332998 -0.90427798 0.233195022 0.357633024 -0.673283994 + 0.200000003 -0.999967277 0.00775944302 -0.00228067092 -0.672187984 + 0.266667008 0.999969423 -0.00752579374 0.00211249082 -5.58664989 + 0.333332986 0.999974549 -0.00693424605 0.00168900914 -5.51710987 + 0.400000006 0.999977529 -0.00655264687 0.00141588924 -5.46479988 + 0.466666996 -0.999958932 0.00859601889 -0.00287913973 -0.597285032 + 0.5 -0.999940991 0.0101127001 -0.00396637991 -0.496178001 + 0.600000024 -0.186560988 0.577106953 -0.795073926 -0.254756004 + 0.766667008 0.957921147 -0.228733048 -0.173402011 -5.97231007 + 0.833333015 -0.848878026 0.144011006 0.508593023 -0.432770014 + 0.93333298 -0.99313724 0.0539987125 0.103743024 -0.845534027 + 1 -0.997587204 0.0425320081 0.0548706129 -0.960924089 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 0.690651238 0.207002074 0.692929268 -0.338063002 + 0.133332998 -0.687858701 0.575748742 0.441999793 -2.10156012 + 0.200000003 -0.608102858 0.558818877 0.563854873 -2.13586998 + 0.266667008 -0.682169974 0.552268922 0.479210973 -2.15279007 + 0.300000012 -0.810425043 0.441157013 0.385475993 -2.27574992 + 0.333332986 -0.755825698 0.493142813 0.430740863 -2.29296994 + 0.366667002 -0.746878088 0.468292058 0.472097069 -2.35978007 + 0.400000006 -0.786537886 0.523561895 0.327476948 -2.35048008 + 0.433333009 -0.840454221 0.410499156 0.353733122 -2.25277996 + 0.5 -0.809254944 0.417755991 0.413020968 -2.16202998 + 0.600000024 -0.928760171 0.30320704 0.213237032 -2.00618005 + 0.766667008 -0.477305114 0.440565079 -0.760317206 -2.24384999 + 0.833333015 -0.544057131 0.391677082 -0.742018104 -1.96561003 + 0.93333298 -0.631225944 0.433459938 -0.643168926 -0.88784194 + 1 -0.884027362 0.226743087 -0.408758163 -0.590503991 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 15 + 0 -0.999978781 0.00136374962 -0.00637032883 -1.40647995 + 0.133332998 0.999985099 -0.0020716202 0.00505047059 -4.5199399 + 0.200000003 0.999985576 -0.00214119907 0.0049214582 -4.47785997 + 0.266667008 0.999986053 -0.00220673019 0.00479898043 -4.43650007 + 0.300000012 0.999986291 -0.00223944057 0.00473745121 -4.41530991 + 0.333332986 0.999986231 -0.00222993037 0.00475558033 -4.42155981 + 0.366667002 0.999985337 -0.00210626097 0.00498629222 -4.49921989 + 0.400000006 0.999981642 -0.00165458932 0.00582777755 -4.74510002 + 0.433333009 -0.999978781 0.00136412948 -0.00637043826 -1.4065001 + 0.5 -0.999970317 0.000661896251 -0.00767799234 -1.15677989 + 0.600000024 -0.999933958 -0.00134304992 -0.0114156995 -0.750530005 + 0.766667008 0.999810457 0.00527420174 0.0187425073 -5.84698009 + 0.833333015 -0.999830961 -0.00474827923 -0.0177638978 -0.46234104 + 0.93333298 -0.999947011 -0.000726962986 -0.0102672009 -0.843374014 + 1 -0.99991858 -0.00198068912 -0.012604394 -0.673023999 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 14 + 0 -0.658401012 -0.201826021 0.725103021 -0.0834657028 + 0.0666666999 -0.670066833 -0.101708964 0.735299766 -0.091001302 + 0.133332998 -0.658221841 0.239816934 0.713604808 -0.145955995 + 0.200000003 -0.628982842 0.38032791 0.678034842 -0.208504006 + 0.266667008 -0.613142133 0.435163051 0.659310102 -0.254386991 + 0.333332986 -0.633489847 0.160291955 0.756965697 -0.30479601 + 0.466666996 -0.520550013 -0.399421006 0.754646003 -0.595836997 + 0.533333004 -0.486957282 -0.362555206 0.794623375 -0.672062933 + 0.600000024 -0.449198991 -0.162680998 0.878495932 -0.674925029 + 0.666666985 -0.455191076 -0.0958550125 0.885219097 -0.586179018 + 0.733332992 -0.55837518 -0.211363062 0.802211225 -0.390890956 + 0.800000012 -0.64990586 -0.306808978 0.695334852 -0.263259023 + 0.93333298 -0.735336185 -0.19928205 0.647740185 -0.110237002 + 1 -0.755277872 -0.170228973 0.632911861 -0.0958594978 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.980668902 -0.122121975 -0.15288797 -1.18368995 + 0.0666666999 -0.982421994 -0.143138006 -0.119827002 -1.17004001 + 0.133332998 -0.959710956 -0.252721936 -0.122826986 -1.10280001 + 0.200000003 -0.917427301 -0.377129078 -0.126889035 -1.02587998 + 0.266667008 -0.878196776 -0.446957916 -0.170290962 -1.10859001 + 0.333332986 -0.893774688 -0.421038866 -0.154573947 -1.27856004 + 0.400000006 -0.880942583 -0.435066789 -0.186163917 -1.13624001 + 0.466666996 -0.860729933 -0.380161971 -0.338557005 -0.987640023 + 0.533333004 -0.87764132 -0.307709128 -0.367506117 -1.01793003 + 0.600000024 -0.890370846 -0.364222944 -0.273095906 -1.24460006 + 0.666666985 -0.937888801 -0.248136938 -0.242471948 -1.31228006 + 0.733332992 -0.964555979 -0.128187001 -0.230651006 -1.35819995 + 0.800000012 -0.958623827 -0.0827915817 -0.272370934 -1.38348997 + 0.866666973 -0.943493843 -0.131570965 -0.304151952 -1.36901999 + 0.93333298 -0.929935336 -0.176848039 -0.3224051 -1.46496999 + 1 -0.961310983 -0.156493008 -0.226696 -1.19208992 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.998917103 -0.0374694988 0.027579803 -0.768944979 + 0.0666666999 0.998908877 -0.0376532972 0.027626697 -0.765899003 + 0.133332998 0.998725176 -0.041576203 0.0286267046 -0.705964983 + 0.200000003 0.998354316 -0.0486130193 0.0304202139 -0.618396997 + 0.266667008 0.998838842 -0.0391902961 0.0280183963 -0.74129802 + 0.333332986 0.999450088 -0.0229984 0.0238879006 -1.10837996 + 0.400000006 0.999300539 -0.0277248863 0.0250942912 -0.971001029 + 0.466666996 0.998938978 -0.0369755998 0.0274537001 -0.777251005 + 0.533333004 0.999237835 -0.0295109954 0.0255498979 -0.926922977 + 0.600000024 0.999557793 -0.0190075971 0.0228688959 -1.25425994 + 0.666666985 0.999613047 -0.0166647024 0.0222708024 -1.35631001 + 0.733332992 0.999578178 -0.0181725025 0.0226558018 -1.28909004 + 0.800000012 0.99945128 -0.022956308 0.0238770097 -1.10976005 + 0.866666973 0.999281108 -0.0282891057 0.0252383035 -0.956660986 + 0.93333298 0.999395788 -0.024802994 0.0243482944 -1.05198002 + 1 0.999041915 -0.0345677957 0.0268396977 -0.820273995 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 0.591516078 0.806183159 0.013321504 -0.149111986 + 0.0666666999 0.534101069 0.805868208 -0.255563051 -0.179095015 + 0.133332998 0.541089892 0.733075917 -0.412093937 -0.288520008 + 0.200000003 0.548500896 0.682522893 -0.483020931 -0.410838008 + 0.266667008 0.69708997 0.667834938 -0.260886967 -0.494592011 + 0.333332986 -0.228904113 0.722906351 -0.651927352 -0.461483032 + 0.400000006 -0.0343383923 0.687513888 -0.725358903 -0.628112972 + 0.466666996 0.113677032 0.794439316 -0.596610188 -0.482636034 + 0.533333004 -0.290818155 0.8301754 -0.475640208 -0.416985005 + 0.600000024 -0.684989929 0.726118922 -0.0594989881 -0.454587042 + 0.666666985 -0.830074251 0.476346135 0.289950103 -0.485698044 + 0.733332992 -0.748437822 0.442320913 0.494158894 -0.400373995 + 0.800000012 -0.362480998 0.453445077 0.814245105 -0.278275013 + 0.866666973 -0.191461951 0.594416916 0.781031907 -0.206047997 + 0.93333298 -0.501207948 0.489876986 0.713310003 -0.165132999 + 1 0.359747916 0.883886755 0.298873931 -0.129666999 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.332584977 0.470659971 0.81723094 -0.819576979 + 0.0666666999 -0.322141975 0.463369966 0.82553792 -0.871653914 + 0.133332998 -0.335716009 0.461360008 0.821244001 -0.879999995 + 0.200000003 -0.338183939 0.451445907 0.825728893 -0.882246017 + 0.266667008 -0.333029121 0.440358192 0.833772302 -0.878947914 + 0.333332986 -0.369686961 0.540850937 0.75552088 -0.89011693 + 0.400000006 -0.276434869 0.73123163 0.623605728 -0.869543016 + 0.466666996 -0.0485171825 0.854527712 0.517134845 -0.853178978 + 0.533333004 0.0564887896 0.884905756 0.462331891 -0.857146025 + 0.600000024 0.0543748923 0.874578834 0.481824934 -0.780574024 + 0.666666985 0.136299044 0.760157287 0.635282218 -0.897551 + 0.733332992 0.364052117 0.667689323 0.649351239 -0.780893981 + 0.800000012 0.241350144 0.644092381 0.725875437 -0.768773973 + 0.866666973 0.0284413882 0.610089779 0.791821659 -0.752525985 + 0.93333298 -0.238905996 0.552697957 0.798403978 -0.758040011 + 1 -0.316299915 0.489145845 0.812828839 -0.817211986 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 1 0 4.53923008e-007 -0.720255971 + 0.0666666999 1 0 2.31903996e-007 -0.746514022 + 0.133332998 1 0 3.18999014e-007 -0.830527008 + 0.200000003 1 0 0 -0.894467056 + 0.266667008 1 0 5.0492298e-007 -0.928163052 + 0.333332986 1 -2.69834999e-007 0 -1.03748 + 0.400000006 1 0 -2.71584042e-007 -0.922971964 + 0.466666996 1 0 6.19969001e-007 -0.488613993 + 0.533333004 1 -3.3085999e-007 -1.22390006e-007 -0.376302004 + 0.600000024 1 0 0 -0.618188024 + 0.666666985 1 0 0 -0.592429042 + 0.733332992 1 -2.31486993e-007 0 -0.372842997 + 0.800000012 1 5.9175801e-007 5.46149977e-007 -0.434495002 + 0.866666973 1 1.99217979e-007 -3.15608958e-007 -0.472357988 + 0.93333298 1 0 1.98506996e-007 -0.629269004 + 1 1 0 0 -0.717844009 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 16 + 0 -0.685936928 -0.691940963 0.225184977 -0.70638001 + 0.0666666999 -0.708944976 -0.694474995 0.122888006 -0.684705019 + 0.133332998 -0.784137011 -0.618001997 -0.0565918013 -0.655493975 + 0.200000003 -0.831419766 -0.502684832 -0.236746937 -0.647625983 + 0.266667008 -0.843724668 -0.404471785 -0.352889866 -0.656126976 + 0.333332986 -0.838188827 -0.427932888 -0.338101923 -0.74357897 + 0.400000006 -0.742051899 -0.629842877 -0.229470953 -0.817709982 + 0.466666996 -0.508010089 -0.806265116 -0.303088039 -0.69453299 + 0.533333004 -0.306153119 -0.874560356 -0.376051188 -0.547791004 + 0.600000024 -0.352436841 -0.739139676 -0.573986769 -0.512202024 + 0.666666985 -0.0341001861 -0.584896743 -0.810390651 -0.469289005 + 0.733332992 -0.321725011 -0.939494073 0.117660008 -0.502171993 + 0.800000012 -0.506024182 -0.829818249 0.23524709 -0.663379014 + 0.866666973 -0.576480091 -0.796091259 0.184145048 -0.71585995 + 0.93333298 -0.663564861 -0.745680869 0.0603467897 -0.70521301 + 1 -0.688242316 -0.711734295 0.140559047 -0.687201917 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0 0 0 0 + 0.200000003 -0.0581273027 -0.238062009 0.969509006 -0.776639998 + 0.333332986 -0.0584685802 -0.242927924 0.968280673 -1.18218005 + 0.400000006 -0.100380033 -0.171224043 0.980105162 -0.657721996 + 0.5 -0.339955002 0.442556024 0.829804063 -0.152022004 + 0.733332992 0.0582554825 0.634212792 -0.770960748 -0.327367038 + 0.866666973 0.0582541898 0.634212792 -0.770960808 -0.163682997 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.463475913 0.884169817 -0.0585986897 -0.185725003 + 0.200000003 -0.13126497 0.30180195 0.944290757 -0.116071001 + 0.333332986 -0.437003046 -0.0275455043 -0.899038136 -0.123245999 + 0.5 -0.0679423735 -0.657543719 -0.750346661 -0.175095007 + 0.733332992 0.173813015 -0.333360016 -0.92663914 -0.0869645029 + 0.866666973 -0.392316014 0.769118071 -0.504525006 -0.0914038047 + 1 -0.454924822 0.88848871 -0.0602596775 -0.190831006 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.456987292 -0.845503449 0.276200175 -0.170110986 + 0.200000003 0.584285259 -0.481436223 -0.65332222 -0.619237006 + 0.333332986 0.591194987 -0.730113029 -0.342671007 -0.787305951 + 0.433333009 0.250535995 -0.946561992 -0.203106016 -0.574250937 + 0.5 0.339619845 -0.925539613 0.167435929 -0.449986994 + 0.733332992 0.688588798 -0.724882782 -0.0197594948 -0.684324026 + 0.866666973 0.876210392 -0.327723145 -0.353345215 -0.396416008 + 1 0.456986755 -0.845503509 0.276200861 -0.170111001 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.992394805 0.117009982 0.0382264927 -0.0872666016 + 0.200000003 0.206643984 0.359122932 -0.910125792 -0.384858996 + 0.333332986 0.0034140104 -0.583075047 0.812411129 -0.752892017 + 0.433333009 -0.610064209 -0.323006123 0.723525226 -0.536117911 + 0.5 -0.652609169 0.281175017 0.703592181 -0.561622024 + 0.733332992 0.748286963 -0.253402978 0.613068938 -0.364977002 + 0.866666973 0.69532913 0.466761082 -0.546490133 -0.425415993 + 1 0.992394745 0.117009975 0.0382269919 -0.0872664005 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.0857641324 -0.952807307 0.291209072 -0.0969397053 + 0.200000003 0.745618641 -0.597952724 0.294117868 -0.105717994 + 0.333332986 0.907145202 -0.401081085 0.127364025 -0.17264998 + 0.5 0.596377313 -0.73718822 0.317628115 -0.095650889 + 0.733332992 0.65521121 -0.749658227 -0.0933321267 -0.221074998 + 0.866666973 0.467203826 -0.883762717 0.0261543915 -0.146081999 + 1 -0.0857640281 -0.952807307 0.291209072 -0.0969398096 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.082977511 0.996185184 -0.0270155035 -0.448728979 + 0.200000003 0.186699018 0.980430126 -0.0624522083 -0.607591987 + 0.333332986 0.225648969 0.970790923 -0.0815324932 -0.398959041 + 0.5 0.65302676 0.68231076 0.328645885 -0.485707015 + 0.733332992 0.784361184 0.617457032 0.0593658127 -0.43523401 + 0.866666973 0.103286959 0.613956809 -0.782552779 -0.947274983 + 1 -0.0829776078 0.996185184 -0.0270155035 -0.448728979 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.821279168 -0.505900085 -0.263753027 -0.530937016 + 0.200000003 -0.885633528 0.290571868 0.362244785 -0.215984002 + 0.333332986 0.599317729 0.139708936 0.788225651 -0.937017024 + 0.5 0.750428021 -0.078867197 0.656229973 -0.779268086 + 0.733332992 0.977521539 0.0231764875 0.209557891 -0.531561971 + 0.866666973 0.591353059 0.702882171 -0.395295084 -0.530148029 + 1 0.821279168 -0.505900085 -0.263753027 -0.530937016 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.287176013 -0.652161002 -0.701581001 -0.621905029 + 0.200000003 -0.164109975 -0.677715898 -0.716776907 -1.11537004 + 0.333332986 -0.164109975 -0.677715898 -0.716776907 -1.11537004 + 0.5 -0.185535997 -0.683359981 -0.706112981 -1.00362003 + 0.733332992 -0.22380586 -0.692474663 -0.685849667 -0.84828198 + 0.866666973 -0.251890898 -0.698355794 -0.669962823 -0.760366976 + 1 -0.286497086 -0.704631209 -0.649164259 -0.673376977 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.0472408012 0.68462503 -0.72736299 -0.563751996 + 0.200000003 0.112356 0.977490008 -0.178576007 -0.515488982 + 0.266667008 -0.140898928 0.923507631 -0.356764823 -0.542060018 + 0.333332986 -0.662347138 0.495295107 -0.56212008 -0.658876002 + 0.400000006 -0.748578846 0.511399806 -0.422018886 -0.678216994 + 0.5 -0.512859702 0.579589725 -0.633285642 -0.50870198 + 0.733332992 -0.151885018 0.421824992 -0.893864989 -0.316187978 + 0.866666973 0.273803025 0.317810059 -0.907760262 -0.315872997 + 1 0.130323008 0.76327008 -0.632799089 -0.623150051 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.618089914 0.783012867 -0.0696830899 -0.0872664973 + 0.200000003 0.665558934 -0.660668969 0.347199976 -0.141517997 + 0.266667008 0.194564909 0.562333822 0.803694725 -0.629388988 + 0.333332986 -0.244346008 0.365437031 0.898193061 -1.10461998 + 0.5 -0.794693172 0.201093048 0.572734118 -0.563727021 + 0.733332992 0.532908082 -0.845546126 0.032568302 -0.342222005 + 0.866666973 0.731069028 -0.682125986 0.0155655993 -0.161907986 + 1 0.618090928 0.783011913 -0.0696842 -0.0872663036 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 -0.707275927 0.61449796 0.349503964 -0.557035983 + 0.200000003 -0.75729388 0.577444851 0.30506295 -0.700321019 + 0.333332986 -0.75729388 0.577444851 0.30506295 -0.700321019 + 0.5 -0.747108579 0.585544705 0.314588845 -0.664198935 + 0.733332992 -0.730521321 0.598104239 0.329560131 -0.613933086 + 0.866666973 -0.771907151 0.544145107 0.328733087 -0.669887006 + 1 -0.707275927 0.61449796 0.349503964 -0.557035983 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.257419854 -0.690666616 -0.675806642 -0.341778994 + 0.200000003 0.0800454989 -0.375867009 0.923210025 -0.243996993 + 0.333332986 -0.365800858 -0.221182927 0.904028654 -0.274341017 + 0.5 0.269239008 -0.149887994 0.951337993 -0.508616984 + 0.733332992 0.0600952059 -0.175020024 0.982729137 -0.281708002 + 0.866666973 -0.29876402 -0.452957064 0.839982092 -0.202397004 + 1 0.530636966 -0.841517925 -0.101350985 -0.116479993 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 7 + 0 0.0773670971 -0.842514992 -0.533088028 -0.185992002 + 0.200000003 0.71770376 -0.488673866 -0.496083826 -0.72954601 + 0.333332986 0.254897028 0.133960009 -0.957644105 -0.478908986 + 0.5 0.167976052 0.947573304 0.271825075 -0.461303025 + 0.733332992 -0.710457027 0.598136961 0.370786995 -0.264703989 + 0.866666973 -0.715915143 -0.696808159 -0.0438627116 -0.268745035 + 1 0.169110984 -0.936883867 -0.306023002 -0.323570997 +endnode +doneanim 2wslasho a_dfa2_coat + +#MAXANIM ASCII +newanim nwslasho a_dfa2_coat + length 1 + transtime 0.25 + animroot rootdummy + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.366667002 snd_footstep + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.400000006 blur_start + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.5 hit + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.56666702 blur_end + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.800000012 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep + event 0.866666973 snd_footstep +node dummy a_dfa2_coat + parent NULL + #part-number 0 +endnode +node trimesh rootdummy + parent a_dfa2_coat + #part-number 1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + positionkey 10 + 0 -0.00279611 0.00390957016 1.01849997 + 0.200000003 0.00870054029 0.0946606025 0.986088991 + 0.300000012 0.0144488998 0.334601015 1.08354998 + 0.433333009 0.0201971997 0.651471019 1.08458996 + 0.5 0.0259454995 0.814481974 0.956403971 + 0.600000024 0.0274947006 0.852289021 0.883839011 + 0.699999988 0.0267913006 0.774715006 0.955805004 + 0.800000012 0.00887462962 0.448354006 1.07309997 + 0.899999976 -0.0090420004 0.0526925996 0.943494022 + 1 -0.0269585997 0 0.999750972 + orientationkey 2 + 0 0.674646795 0.176306933 0.716775835 -0.291083992 + 1 0.542421997 0.0457765013 0.838858068 -0.346957028 +endnode +node trimesh torso_g + parent rootdummy + #part-number 2 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 8 + 0 0.629686832 -0.426865876 0.649060845 -0.350549012 + 0.200000003 0.691925824 -0.199665949 0.693809867 -0.831119061 + 0.300000012 0.551858842 -0.306898892 0.775412738 -0.969293952 + 0.433333009 0.603865683 0.349428833 -0.71641165 -1.04700994 + 0.5 0.526632786 0.37515083 -0.762836635 -1.1839 + 0.600000024 0.506790102 0.383382112 -0.772128165 -1.21860003 + 0.800000012 0.944185436 0.142234057 -0.297125131 -0.575222075 + 1 0.803108096 0.344072104 -0.486448109 -0.353877038 +endnode +node trimesh lbicep_g + parent torso_g + #part-number 8 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.89646107 -0.391627073 0.207330033 -0.753087997 + 0.200000003 -0.723541439 -0.688976407 -0.0424183272 -1.36804998 + 0.300000012 -0.546894968 -0.806346893 0.225189969 -0.869969964 + 0.433333009 -0.783459663 -0.376019806 0.494772762 -1.75215006 + 0.5 -0.88954109 -0.393077075 0.232824028 -1.64441001 + 0.600000024 -0.845814168 -0.471422106 0.249719039 -1.87223995 + 0.699999988 -0.739209235 -0.601379216 0.303171128 -1.35491002 + 0.800000012 -0.413816124 -0.87890625 0.237234071 -0.703557968 + 0.899999976 -0.530415833 -0.773427725 0.347085893 -0.586390018 + 1 -0.902901709 -0.231788889 -0.361997843 -0.867949069 +endnode +node trimesh lforearm_g + parent lbicep_g + #part-number 9 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.988794148 -0.0918126181 0.117714018 -0.791244984 + 0.200000003 -0.999867678 -0.00800786726 -0.0141605949 -1.51896 + 0.300000012 -0.999915957 -0.00297098979 -0.0126212994 -2.08589005 + 0.433333009 -0.986651361 -0.159911066 -0.0307829119 -1.34356999 + 0.5 -0.94274801 -0.00292539992 0.333493024 -1.78723001 + 0.600000024 -0.939038336 0.0364094116 0.341879129 -1.54692996 + 0.699999988 -0.99990505 -0.00440239999 -0.0130586009 -1.89795005 + 0.800000012 -0.999911129 -0.00364061049 -0.0128261019 -1.99510992 + 0.899999976 -0.999919951 -0.00235488964 -0.012432999 -2.1738801 + 1 -0.86139524 0.39201811 0.322986126 -1.76618993 +endnode +node trimesh lhand_g + parent lforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node trimesh rbicep_g + parent torso_g + #part-number 3 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 -0.468694925 0.513959885 -0.71844995 -0.822185993 + 0.200000003 -0.00440199068 0.828720033 0.55964607 -0.985812008 + 0.300000012 0.256196976 0.266814977 0.92907095 -0.866494 + 0.433333009 0.230081081 0.0347083099 0.972552299 -1.27217007 + 0.5 -0.497672141 0.766514182 0.405929089 -1.7062 + 0.56666702 -0.591976821 0.798350811 0.110450961 -2.01438999 + 0.600000024 -0.574985921 0.811181962 0.106653988 -2.05496001 + 0.699999988 -0.469972938 0.878003895 0.0907444879 -1.41443002 + 0.800000012 -0.767570138 0.585704088 -0.260359019 -1.13173997 + 0.899999976 -0.702471197 0.686493158 -0.187780038 -1.35958004 + 1 -0.702878177 0.60663414 -0.371426076 -1.06555998 +endnode +node trimesh rforearm_g + parent rbicep_g + #part-number 4 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 13 + 0 -0.994864941 -0.0877312943 0.050467398 -2.18362999 + 0.200000003 -0.922975302 -0.381038159 -0.054096818 -2.19771004 + 0.300000012 -0.987846017 -0.143206984 -0.0604321994 -1.58796 + 0.433333009 -0.99446398 -0.0103900004 -0.104562998 -2.30488992 + 0.466666996 -0.999928117 -0.0106188012 0.00556762097 -1.57102001 + 0.5 -0.98699218 -0.0290989056 0.158113033 -0.802783966 + 0.56666702 -0.721724093 0.0105730006 0.692100108 -0.212667987 + 0.600000024 -0.739734948 -0.0890645981 0.666978002 -0.183477998 + 0.666666985 -0.984506428 0.160778075 0.0699825287 -1.40315986 + 0.699999988 -0.993516207 -0.11018303 0.028022008 -1.95608997 + 0.800000012 -0.985509217 -0.14986603 0.0794463232 -1.59554005 + 0.899999976 -0.98192209 -0.170662016 0.0818747059 -1.79856002 + 1 -0.975384772 -0.189449936 0.112841971 -1.79730999 +endnode +node trimesh rhand_g + parent rforearm_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 +endnode +node danglymesh Coat_top + parent torso_g + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + displacement 0 + period 0 + tightness 0 +endnode +node trimesh pelvis_g + parent rootdummy + #part-number 17 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.91707021 -0.38758108 0.0936113223 -0.0849886015 + 0.200000003 -0.161181971 -0.0933941677 0.982495725 -0.292901993 + 0.300000012 -0.330221027 -0.152853012 0.931445122 -0.107903004 + 0.433333009 -0.0547495 -0.00320547004 -0.998494983 -0.443704009 + 0.5 -0.0180767905 0.0153013933 -0.999719501 -0.63767302 + 0.600000024 0.0253788978 -0.116076991 -0.992915928 -0.64208895 + 0.699999988 -0.02916109 -0.123180963 -0.991955698 -0.506393015 + 0.800000012 -0.345230132 -0.60606724 0.716588199 -0.0965021029 + 0.899999976 -0.833659708 0.538076818 -0.124437958 -0.0839717016 + 1 -0.727731168 -0.176064044 -0.662879169 -0.145062998 +endnode +node trimesh lthigh_g + parent pelvis_g + #part-number 18 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 -0.965338588 -0.207043901 -0.158915922 -1.12679005 + 0.200000003 -0.920965075 -0.347714007 -0.175835997 -1.14772999 + 0.266667008 -0.956758857 -0.238015965 -0.16721499 -1.26066995 + 0.300000012 -0.967742383 -0.190252081 -0.165163055 -1.20518005 + 0.366667002 -0.987740159 -0.0244642049 -0.154178008 -0.983957052 + 0.433333009 -0.993457973 0.0818948075 -0.0795893967 -0.92178297 + 0.5 -0.99744314 0.064117007 -0.0315623023 -1.05691004 + 0.600000024 -0.986620903 0.125826001 -0.103667982 -1.10383999 + 0.699999988 -0.977522671 0.0956133604 -0.187902942 -1.06246996 + 0.800000012 -0.79953599 -0.0342466012 -0.599641025 -1.18068004 + 0.899999976 -0.961847305 -0.183260053 -0.203139067 -1.44405997 + 1 -0.975127518 -0.143370926 -0.169029921 -1.12729001 +endnode +node trimesh lshin_g + parent lthigh_g + #part-number 19 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.99924767 -0.0292373896 0.025479991 -0.933432937 + 0.200000003 0.999536872 -0.0198344961 0.0230800956 -1.22133994 + 0.266667008 0.999558926 -0.0189616978 0.0228570998 -1.25612998 + 0.300000012 0.999432385 -0.0236003101 0.0240414087 -1.08897996 + 0.366667002 0.998152375 -0.0520769171 0.0313024111 -0.582597971 + 0.433333009 0.998880446 -0.0382842161 0.0277876109 -0.755614996 + 0.5 0.999616027 -0.0165309999 0.0222366005 -1.36257005 + 0.600000024 0.999693394 -0.0126997055 0.0212577078 -1.56401992 + 0.699999988 0.999602437 -0.0171360075 0.0223909095 -1.33466983 + 0.800000012 0.997805476 -0.0575744249 0.032702215 -0.533390999 + 0.899999976 0.999262869 -0.0288111959 0.0253708959 -0.943737984 + 1 0.999337494 -0.0266251136 0.0248133112 -1.00009 +endnode +node trimesh lfoot_g + parent lshin_g + #part-number 20 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 12 + 0 0.0471362807 0.990179777 0.131613955 -0.133962005 + 0.200000003 -0.676581025 0.612679064 -0.408488005 -0.411513984 + 0.266667008 0.322984964 0.502224922 -0.802153885 -0.312081009 + 0.300000012 0.112760954 0.186812922 -0.975902617 -0.344847023 + 0.366667002 0.353482038 0.00658317097 -0.935418129 -0.203082994 + 0.433333009 -0.565230072 -0.490896076 -0.662975132 -0.0526073985 + 0.5 -0.980422318 -0.0258135051 0.195207059 -0.512836993 + 0.600000024 -0.984033346 -0.0515311211 0.170361072 -0.673189938 + 0.699999988 -0.985629857 -0.0933155939 0.140804976 -0.47091198 + 0.800000012 0.837689161 -0.501098096 0.217204049 -0.265637994 + 0.899999976 0.882773101 0.0892450064 0.46124503 -0.537365973 + 1 -0.200836927 0.955925524 0.214174896 -0.0989364982 +endnode +node trimesh rthigh_g + parent pelvis_g + #part-number 21 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.191784024 0.560255051 0.80581212 -0.752062917 + 0.200000003 -0.248979941 0.732082903 0.63408488 -0.64556402 + 0.300000012 0.174751058 0.746821225 0.641654253 -0.737616003 + 0.433333009 0.32033819 0.603552341 0.730142415 -0.582742989 + 0.5 -0.198187992 0.725266933 0.659324944 -0.553444028 + 0.600000024 -0.0754524693 0.835954726 0.54358685 -0.628610015 + 0.699999988 -0.431629896 0.865440905 0.254376978 -0.630618036 + 0.800000012 -0.062443167 0.811030507 0.581661701 -0.861431003 + 0.899999976 -0.257497102 0.660782218 0.705026269 -0.602397025 + 1 -0.207830936 0.651843846 0.729318798 -0.769775987 +endnode +node trimesh rshin_g + parent rthigh_g + #part-number 22 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 1 0 -3.40480966e-007 -0.825915992 + 0.200000003 1 0 0 -0.79667902 + 0.300000012 1 0 -2.48007012e-007 -0.390726 + 0.433333009 1 0 0 -0.61352998 + 0.5 1 0 0 -1.24043 + 0.600000024 1 0 0 -1.33738995 + 0.699999988 1 0 0 -1.38182998 + 0.800000012 1 1.47047004e-007 -4.14447015e-007 -0.794330001 + 0.899999976 1 0 0 -1.00389004 + 1 1 0 -2.02562006e-007 -0.91267699 +endnode +node trimesh rfoot_g + parent rshin_g + #part-number 23 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.730140805 -0.662219882 0.168401957 -0.763714969 + 0.200000003 -0.692935944 -0.720944941 0.00884196907 -0.795251012 + 0.300000012 0.599903107 -0.498463094 -0.6258201 -0.403261036 + 0.433333009 0.617699325 -0.750432372 0.235157102 -0.262960017 + 0.5 -0.282819003 -0.747519016 -0.601023078 -0.139690995 + 0.600000024 -0.71250993 -0.532228947 -0.457232952 -0.279013008 + 0.699999988 0.262450993 -0.929732025 -0.25829801 -0.438012987 + 0.800000012 -0.38862291 -0.480526894 -0.786171854 -0.568162084 + 0.899999976 -0.745636046 -0.634867072 0.202412024 -0.951894999 + 1 -0.716926813 -0.672187805 0.184876949 -0.817147017 +endnode +node trimesh coat_root + parent rootdummy + #part-number -1 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 0 0 0 0 + 0.200000003 0 0 0 0 + 0.300000012 0.413726211 -0.0487272218 0.90909642 -0.433239996 + 0.433333009 -0.0587688722 0.185365945 -0.980910659 -0.436331987 + 0.5 -0.00539572025 0.188303024 -0.982096136 -0.728540957 + 0.56666702 0.0182392932 0.189430922 -0.98172462 -1.02158999 + 0.699999988 0.0182391927 0.189430937 -0.98172462 -0.707256019 + 0.800000012 0.0182391927 0.189430922 -0.98172462 -0.471504003 + 0.899999976 0.0182389934 0.189430922 -0.98172462 -0.235752001 + 1 0 0 0 0 +endnode +node trimesh coat_BL1 + parent coat_root + #part-number 232 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 10 + 0 -0.507221818 0.850292683 -0.140457943 -0.138915002 + 0.200000003 -0.505403936 0.852250874 -0.135037988 -0.140214995 + 0.300000012 -0.0497709252 0.997847497 -0.0426988192 -0.166326001 + 0.433333009 0.827816844 0.471737891 0.303615928 -0.452693999 + 0.56666702 0.740669966 0.670896947 0.0361292958 -0.336431026 + 0.633333027 0.790716112 0.609103084 -0.061330907 -0.239764005 + 0.699999988 0.260668993 0.945474088 -0.195270017 -0.136181012 + 0.800000012 -0.00383667997 0.983745933 -0.179525003 -0.129646003 + 0.899999976 -0.274440974 0.949823856 -0.15005599 -0.132965997 + 1 -0.498283774 0.859448671 -0.114285953 -0.145467013 +endnode +node trimesh coat_BL1a + parent coat_BL1 + #part-number 233 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.899980366 -0.413368165 0.138427064 -0.261552036 + 0.200000003 0.924977303 -0.360506088 0.120218039 -0.28422904 + 0.300000012 0.960444272 -0.254236072 0.113626041 -0.303101003 + 0.433333009 0.305903882 -0.712203741 0.631813765 -0.67939198 + 0.56666702 0.949289918 -0.288527012 0.124903001 -0.287393004 + 0.699999988 0.920513928 -0.362851977 0.144887984 -0.260509998 + 0.800000012 0.940736711 -0.337701917 0.0311742928 -0.460799992 + 0.899999976 0.752791226 -0.657793164 0.0247682072 -0.397116035 + 1 0.79193151 -0.576796651 0.200374901 -0.208950981 +endnode +node trimesh coat_BL2 + parent coat_BL1a + #part-number 234 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 11 + 0 0.642399967 -0.589495957 0.489710957 -0.244651005 + 0.200000003 0.84598577 -0.301682919 0.439653844 -0.30102399 + 0.300000012 0.758759975 0.456566989 -0.464574993 -0.277413994 + 0.433333009 0.904128015 -0.39814502 0.155026004 -0.385118991 + 0.56666702 0.774489999 0.48426199 -0.407008022 -0.770302951 + 0.600000024 0.827566147 0.0412449054 -0.559850991 -1.06619 + 0.633333027 0.917638838 -0.0938047916 -0.386185944 -0.88518393 + 0.699999988 0.911418974 0.395143986 0.114789993 -0.461491972 + 0.800000012 0.6366629 -0.707039893 0.307822913 -0.156655997 + 0.899999976 -0.0765304118 -0.982357264 0.17063804 -0.204548001 + 1 0.656381905 -0.13033697 0.743084848 -0.189065993 +endnode +node trimesh coat_BR1 + parent coat_root + #part-number 235 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.0472660996 -0.992856979 0.109549001 -0.146079004 + 0.200000003 0.911211073 -0.381499022 0.155412003 -0.129473984 + 0.300000012 0.993384123 -0.0454313084 0.105470024 -0.177256003 + 0.433333009 0.980010808 0.181503966 -0.0814563856 -0.600583971 + 0.56666702 0.99998647 0.000149304076 0.00519717252 -0.244737983 + 0.699999988 0.966994166 -0.185076028 0.175126046 -0.127919018 + 0.800000012 0.918422401 -0.394685179 -0.0269052126 -0.209601998 + 0.899999976 0.658124089 -0.752129972 0.0342514999 -0.151554003 + 1 0.0472653992 -0.992856979 0.109549001 -0.146079004 +endnode +node trimesh coat_BR1a + parent coat_BR1 + #part-number 236 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.0467236191 0.961954415 0.269185096 -0.37094304 + 0.200000003 0.164929047 0.957443297 0.236856058 -0.379631996 + 0.300000012 0.270048946 0.939650655 0.210071936 -0.429176003 + 0.433333009 0.935376227 0.351018071 -0.043100711 -0.442619026 + 0.56666702 0.551599205 0.818798244 -0.159084067 -0.738359988 + 0.699999988 0.299401045 0.930810153 0.209646046 -0.527539015 + 0.800000012 0.701112211 0.70625931 0.0981806368 -0.548578978 + 0.899999976 0.551300287 0.663504422 0.505796254 -0.473424047 + 1 0.0385669023 0.939127207 0.34139809 -0.282261997 +endnode +node trimesh coat_BR2 + parent coat_BR1a + #part-number 237 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.798343658 0.341983855 0.495675772 -0.813377976 + 0.200000003 0.775658011 0.371449977 0.510273993 -0.817153037 + 0.300000012 0.262687057 0.962860346 0.0624139197 -0.429890037 + 0.433333009 -0.00490435818 -0.463873833 0.885887682 -0.633237004 + 0.56666702 0.194399074 0.878653347 0.436093181 -0.521792054 + 0.699999988 0.738290071 0.668543041 0.0893198103 -0.642722011 + 0.800000012 0.0913843289 0.802244246 -0.589960217 -0.545045018 + 0.899999976 0.809724033 -0.21918501 -0.544339001 -0.410080999 + 1 0.676354229 0.479675174 0.5589782 -0.843555927 +endnode +node trimesh coat_FL1 + parent coat_root + #part-number 238 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.261953056 -0.743572176 -0.615208149 -0.71391803 + 0.200000003 -0.208133981 -0.759970009 -0.615731955 -0.697660983 + 0.300000012 -0.206206009 -0.601012051 -0.772181034 -0.967511058 + 0.433333009 -0.290370882 -0.914347649 -0.282228887 -0.440034002 + 0.56666702 -0.137092009 -0.887832105 -0.439272046 -0.667195022 + 0.699999988 -0.228811055 -0.67555815 -0.700904191 -0.839461029 + 0.800000012 -0.239087 -0.696929932 -0.676110983 -0.796626925 + 0.899999976 -0.250123978 -0.719609976 -0.647764981 -0.754725039 + 1 -0.261953056 -0.743572176 -0.615208149 -0.71391803 +endnode +node trimesh coat_FL1a + parent coat_FL1 + #part-number 239 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.361301035 0.535260022 -0.763517022 -0.750581026 + 0.200000003 0.391924918 0.518018901 -0.760296822 -0.744930029 + 0.300000012 0.506366909 0.518211961 -0.689237893 -0.77263397 + 0.433333009 0.611320853 0.0824425742 -0.78707689 -0.692125976 + 0.56666702 0.459124893 0.530304909 -0.712727845 -0.767646968 + 0.699999988 0.394248068 0.683273196 -0.614578128 -0.746606052 + 0.800000012 0.310368866 0.674200654 -0.670167625 -0.767681956 + 0.899999976 0.222773075 0.541990101 -0.810320199 -0.694379985 + 1 0.280613095 0.546637177 -0.788951278 -0.748610079 +endnode +node trimesh coat_FL2 + parent coat_FL1a + #part-number 240 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.888442755 -0.434787869 -0.147067949 -0.0711641014 + 0.200000003 0.866937757 -0.494930863 -0.058841683 -0.141341001 + 0.300000012 0.283392072 -0.951365232 -0.120802023 -0.210123017 + 0.433333009 0.163810953 -0.964919686 -0.205172941 -0.388509989 + 0.56666702 0.448281229 -0.893711388 -0.0179979093 -0.445363998 + 0.699999988 0.85076499 0.374870002 0.368335992 -0.310631961 + 0.800000012 0.39495787 0.868094742 0.300698906 -0.32653901 + 0.899999976 -0.888889253 -0.28511107 0.35859108 -0.162358001 + 1 0.987126589 0.155691937 -0.0366208889 -0.114304997 +endnode +node trimesh coat_FR1 + parent coat_root + #part-number 241 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 -0.73295331 0.567282259 0.375460178 -0.510505021 + 0.200000003 -0.73295331 0.567282259 0.375460178 -0.510505021 + 0.300000012 -0.723379076 0.583636045 0.368906021 -0.554826021 + 0.433333009 0.0675278306 0.976281404 0.205705091 -0.47902602 + 0.56666702 -0.188962087 0.941107392 0.280375093 -0.451391041 + 0.699999988 -0.534393013 0.777922094 0.330547005 -0.556465089 + 0.800000012 -0.632977366 0.692157328 0.346782178 -0.562223077 + 0.899999976 -0.682866096 0.634752154 0.361640066 -0.534677982 + 1 -0.73295331 0.567282259 0.375460178 -0.510505021 +endnode +node trimesh coat_FR1a + parent coat_FR1 + #part-number 242 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.903056145 -0.202756017 -0.378655016 -0.20554702 + 0.200000003 0.91325438 -0.144686058 -0.380831182 -0.228552982 + 0.300000012 0.715071201 0.32310909 0.61989814 -0.229609996 + 0.433333009 0.805206001 0.380825996 0.454549015 -0.259362012 + 0.56666702 0.529408991 0.045994699 0.847118974 -0.320975989 + 0.699999988 0.0180013031 0.160324067 0.98690027 -0.251273006 + 0.800000012 -0.0555306002 0.0790971965 0.995319009 -0.174842998 + 0.899999976 0.868872166 -0.137512013 0.475554049 -0.101423003 + 1 0.903056145 -0.202756017 -0.378655016 -0.20554702 +endnode +node trimesh coat_FR2 + parent coat_FR1a + #part-number 243 + ambient 0.200000003 0.200000003 0.200000003 + diffuse 0.800000012 0.800000012 0.800000012 + specular 0 0 0 + shininess 1 + orientationkey 9 + 0 0.110326953 -0.949167669 -0.294802874 -0.327071011 + 0.200000003 0.412326097 -0.84544611 -0.33942309 -0.331571013 + 0.300000012 0.856564701 0.514285803 0.0425090864 -0.337036014 + 0.433333009 0.888173223 -0.0669787154 0.454601109 -0.842806041 + 0.56666702 -0.243382066 0.401681066 -0.882846236 -0.507911026 + 0.699999988 -0.75726366 0.299112856 -0.580588698 -0.383990973 + 0.800000012 -0.858631849 -0.079203181 -0.506436825 -0.294889957 + 0.899999976 -0.46426487 -0.713120818 -0.525277853 -0.234782994 + 1 0.110326953 -0.949167669 -0.294802874 -0.327071011 +endnode +doneanim nwslasho a_dfa2_coat + +donemodel a_dfa2_coat diff --git a/tests/fixtures/oracle/ascii/abp_weaprack_1.mdl b/tests/fixtures/oracle/ascii/abp_weaprack_1.mdl new file mode 100644 index 0000000..62e2463 --- /dev/null +++ b/tests/fixtures/oracle/ascii/abp_weaprack_1.mdl @@ -0,0 +1,6603 @@ +# Rewritten by CleanModels 3 Version 3.5.2d Sun Oct 13 18:34:06 2019 +#MAXMODEL ASCII +filedependency Unknown +newmodel abp_weaprack_1 + classification CHARACTER + setsupermodel abp_weaprack_1 NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom abp_weaprack_1 +node dummy abp_weaprack_1 + parent NULL +endnode +node trimesh box01 + parent abp_weaprack_1 + orientation 0 0 0 0 + position 0.5434 0.000335522 0 + wirecolor 0.337255 0.87451 0.556863 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1 + transparencyhint 0 + center 0.16 -0.0335979 6.5 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.0534 -0.610336 0 + 0.0566 -0.610336 0 + -0.0534 0.609664 0 + 0.0566 0.609664 0 + -0.0534 -0.610336 0.13 + 0.0566 -0.610336 0.13 + -0.0534 0.609664 0.13 + 0.0566 0.609664 0.13 + faces 12 + 0 2 3 2 0 2 3 2 + 3 1 0 2 3 1 0 2 + 4 5 7 4 1 0 2 1 + 7 6 4 4 2 3 1 1 + 0 1 5 8 1 0 2 5 + 5 4 0 8 2 3 1 5 + 1 3 7 16 1 0 2 4 + 7 5 1 16 2 3 1 4 + 3 2 6 32 1 0 2 6 + 6 7 3 32 2 3 1 6 + 2 0 4 64 1 0 2 3 + 4 6 2 64 2 3 1 3 + tverts 4 + 0.9995 0.000499517 0 + 0.000499547 0.000499517 0 + 0.9995 0.9995 0 + 0.000499547 0.9995 0 +endnode +node trimesh box02 + parent abp_weaprack_1 + orientation 0 0 0 0 + position -0.559901 0.000335522 0 + wirecolor 0.337255 0.87451 0.556863 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1 + transparencyhint 0 + center -0.00990009 -0.0335979 6.5 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.050099 -0.610336 0 + 0.049901 -0.610336 0 + -0.050099 0.609664 0 + 0.049901 0.609664 0 + -0.050099 -0.610336 0.13 + 0.049901 -0.610336 0.13 + -0.050099 0.609664 0.13 + 0.049901 0.609664 0.13 + faces 12 + 0 2 3 2 0 2 3 2 + 3 1 0 2 3 1 0 2 + 4 5 7 4 1 0 2 1 + 7 6 4 4 2 3 1 1 + 0 1 5 8 1 0 2 5 + 5 4 0 8 2 3 1 5 + 1 3 7 16 1 0 2 4 + 7 5 1 16 2 3 1 4 + 3 2 6 32 1 0 2 6 + 6 7 3 32 2 3 1 6 + 2 0 4 64 1 0 2 3 + 4 6 2 64 2 3 1 3 + tverts 4 + 0.999501 0.000499517 0 + 0.000499487 0.000499517 0 + 0.999501 0.9995 0 + 0.000499487 0.9995 0 +endnode +node trimesh box03 + parent abp_weaprack_1 + orientation 0 0 0 0 + position -0.0102778 -0.463945 0.000843948 + wirecolor 0.721569 0.603922 0.894118 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1 + transparencyhint 0 + center 0.0278015 0.2364 6.4156 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.499722 -0.042636 -0.000843948 + 0.500278 -0.042636 -0.000843948 + -0.499722 0.047364 -0.000843948 + 0.500278 0.047364 -0.000843948 + -0.499722 -0.042636 0.129156 + 0.500278 -0.042636 0.129156 + -0.499722 0.047364 0.129156 + 0.500278 0.047364 0.129156 + faces 12 + 0 2 3 2 0 2 3 2 + 3 1 0 2 3 1 0 2 + 4 5 7 4 1 0 2 1 + 7 6 4 4 2 3 1 1 + 0 1 5 8 1 0 2 5 + 5 4 0 8 2 3 1 5 + 1 3 7 16 1 0 2 4 + 7 5 1 16 2 3 1 4 + 3 2 6 32 1 0 2 6 + 6 7 3 32 2 3 1 6 + 2 0 4 64 1 0 2 3 + 4 6 2 64 2 3 1 3 + tverts 4 + 0.999498 0.000499517 0 + 0.000499547 0.000499517 0 + 0.999498 0.9995 0 + 0.000499547 0.9995 0 +endnode +node trimesh box04 + parent abp_weaprack_1 + orientation 0 0 0 0 + position -0.00813531 -0.218427 0.0978295 + wirecolor 0.537255 0.0313726 0.431373 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1 + transparencyhint 0 + center -0.186501 0.222001 1.88232 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.561865 -0.28778 0.0038232 + 0.558135 -0.28778 0.0038232 + -0.561865 0.29222 0.0038232 + 0.558135 0.29222 0.0038232 + -0.561865 -0.28778 0.0338232 + 0.558135 -0.28778 0.0338232 + -0.561865 0.29222 0.0338232 + 0.558135 0.29222 0.0338232 + faces 12 + 0 2 3 2 0 2 3 2 + 3 1 0 2 3 1 0 2 + 4 5 7 4 1 0 2 1 + 7 6 4 4 2 3 1 1 + 0 1 5 8 1 0 2 5 + 5 4 0 8 2 3 1 5 + 1 3 7 16 1 0 2 4 + 7 5 1 16 2 3 1 4 + 3 2 6 32 1 0 2 6 + 6 7 3 32 2 3 1 6 + 2 0 4 64 1 0 2 3 + 4 6 2 64 2 3 1 3 + tverts 4 + 0.9995 0.000499547 0 + 0.000499487 0.000499547 0 + 0.9995 0.9995 0 + 0.000499487 0.9995 0 +endnode +node trimesh box05 + parent abp_weaprack_1 + position 0.627622 -0.551099 0.603902 + orientation 0.579022 0.573991 -0.579022 -2.0843 + wirecolor 0.337255 0.87451 0.556863 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1 + transparencyhint 0 + center 0.0508702 -0.0507507 6.76361 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.0488768 -0.606099 0.00248599 + 0.0511193 -0.606092 0.00335885 + -0.0489671 0.603942 0.00192313 + 0.051029 0.603949 0.00279599 + -0.0500116 -0.604965 0.132476 + 0.0499846 -0.604957 0.133349 + -0.0501019 0.605076 0.131913 + 0.0498943 0.605084 0.132786 + faces 12 + 0 2 3 2 8 9 10 2 + 3 1 0 2 10 11 8 2 + 4 5 7 4 12 13 14 1 + 7 6 4 4 14 15 12 1 + 0 1 5 8 16 17 18 5 + 5 4 0 8 18 19 16 5 + 1 3 7 16 1 20 21 4 + 7 5 1 16 21 5 1 4 + 3 2 6 32 3 22 23 6 + 6 7 3 32 23 7 3 6 + 2 0 4 64 2 0 4 3 + 4 6 2 64 4 6 2 3 + tverts 24 + 0.999501 0.00477803 0 + 0.000505298 0.0114129 0 + 0.00144148 0.000499576 0 + 0.00138792 0.00713441 0 + 0.998565 0.992865 0 + 0.00144148 0.9995 0 + 0.000506103 0.988585 0 + 0.0125869 0.995221 0 + 0.987412 0.000499517 0 + 0.988301 0.998559 0 + 0.00138792 0.998564 0 + 0.000499517 0.000505298 0 + 0.00138786 0.00143489 0 + 0.988302 0.00144148 0 + 0.987413 0.9995 0 + 0.000499517 0.999494 0 + 0.0125878 0.00477803 0 + 0.999501 0.0114129 0 + 0.988302 0.9995 0 + 0.00138786 0.992865 0 + 0.998564 0.00713441 0 + 0.9995 0.995221 0 + 0.988301 0.000499576 0 + 0.999501 0.988585 0 +endnode +node trimesh box06 + parent abp_weaprack_1 + position -0.505048 -0.551099 0.603902 + orientation 0.579022 0.573991 -0.579022 -2.0843 + wirecolor 0.337255 0.87451 0.556863 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1 + transparencyhint 0 + center 0.0531998 -0.0530987 6.49662 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.0488535 -0.606123 -0.000183814 + 0.0511426 -0.606115 0.000689048 + -0.0489438 0.603918 -0.000746674 + 0.0510523 0.603926 0.000126189 + -0.0499883 -0.604988 0.129806 + 0.0500079 -0.60498 0.130679 + -0.0500786 0.605053 0.129243 + 0.0499176 0.605061 0.130116 + faces 12 + 0 2 3 2 8 9 10 2 + 3 1 0 2 10 11 8 2 + 4 5 7 4 12 13 14 1 + 7 6 4 4 14 15 12 1 + 0 1 5 8 16 17 18 5 + 5 4 0 8 18 19 16 5 + 1 3 7 16 1 20 21 4 + 7 5 1 16 21 5 1 4 + 3 2 6 32 3 22 23 6 + 6 7 3 32 23 7 3 6 + 2 0 4 64 2 0 4 3 + 4 6 2 64 4 6 2 3 + tverts 24 + 0.999501 0.004778 0 + 0.000506043 0.0114129 0 + 0.00144222 0.000499547 0 + 0.00138789 0.00713441 0 + 0.998564 0.992864 0 + 0.00144219 0.9995 0 + 0.000506043 0.988585 0 + 0.0125868 0.995221 0 + 0.987412 0.000499487 0 + 0.988301 0.998558 0 + 0.00138789 0.998564 0 + 0.000499547 0.000506043 0 + 0.00138792 0.00143564 0 + 0.988302 0.00144219 0 + 0.987413 0.999501 0 + 0.000499547 0.999494 0 + 0.0125878 0.004778 0 + 0.9995 0.0114129 0 + 0.988302 0.9995 0 + 0.00138792 0.992864 0 + 0.998564 0.00713441 0 + 0.999501 0.995221 0 + 0.988301 0.000499547 0 + 0.9995 0.988585 0 +endnode +node trimesh cylinder01 + parent abp_weaprack_1 + position -0.973799 -0.55543 1.04968 + orientation -0.57735 -0.57735 -0.57735 -2.0944 + wirecolor 0.419608 0.0313726 0.529412 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0.0427501 0.12225 98.8799 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 110 + -0.00457001 -0.00377992 0.00379901 + 0.04543 -0.00378005 0.00379914 + 0.04543 0.0162199 0.00379909 + 0.0354301 0.02622 0.00379904 + 0.0254301 0.03622 0.00379899 + 0.00543011 0.04622 0.00379891 + -0.00456989 0.0462201 0.00379889 + -0.0245699 0.0362201 0.00379886 + -0.0345699 0.0262202 0.00379886 + -0.04457 0.0162202 0.00379886 + -0.04457 -0.00377982 0.00379891 + -0.04457 -0.0137798 0.00379894 + -0.0345701 -0.0237798 0.00379899 + -0.0245701 -0.0337799 0.00379904 + -0.00457011 -0.0437799 0.00379912 + 0.00542989 -0.04378 0.00379914 + 0.0254299 -0.03378 0.00379917 + 0.0354299 -0.02378 0.00379916 + 0.04543 -0.0137801 0.00379916 + 0.045429 -0.00377908 0.393799 + 0.0454291 0.0162209 0.393799 + 0.0354291 0.0262209 0.393799 + 0.0254291 0.036221 0.393799 + 0.00542913 0.046221 0.393799 + -0.00457087 0.0462211 0.393799 + -0.0245709 0.0362211 0.393799 + -0.0345709 0.0262211 0.393799 + -0.0445709 0.0162212 0.393799 + -0.044571 -0.00377885 0.393799 + -0.044571 -0.0137788 0.393799 + -0.034571 -0.0237789 0.393799 + -0.0245711 -0.0337789 0.393799 + -0.0045711 -0.0437789 0.393799 + 0.0054289 -0.043779 0.393799 + 0.0254289 -0.033779 0.393799 + 0.0354289 -0.0237791 0.393799 + 0.045429 -0.0137791 0.393799 + 0.045428 -0.0037781 0.783799 + 0.0454281 0.0162219 0.783799 + 0.0354281 0.0262219 0.783799 + 0.0254281 0.036222 0.783799 + 0.00542814 0.046222 0.783799 + -0.00457186 0.046222 0.783799 + -0.0245719 0.0362221 0.783799 + -0.0345719 0.0262221 0.783799 + -0.0445719 0.0162221 0.783799 + -0.044572 -0.00377787 0.783799 + -0.044572 -0.0137779 0.783799 + -0.034572 -0.0237779 0.783799 + -0.0245721 -0.0337779 0.783799 + -0.00457209 -0.043778 0.783799 + 0.00542791 -0.043778 0.783799 + 0.0254279 -0.033778 0.783799 + 0.035428 -0.0237781 0.783799 + 0.045428 -0.0137781 0.783799 + 0.045427 -0.0037771 1.1838 + 0.0454271 0.0162229 1.1838 + 0.0354271 0.0262229 1.1838 + 0.0254271 0.036223 1.1838 + 0.00542713 0.046223 1.1838 + -0.00457287 0.046223 1.1838 + -0.0245729 0.0362231 1.1838 + -0.0345729 0.0262231 1.1838 + -0.0445729 0.0162231 1.1838 + -0.044573 -0.00377687 1.1838 + -0.044573 -0.0137769 1.1838 + -0.034573 -0.0237769 1.1838 + -0.0245731 -0.0337769 1.1838 + -0.0045731 -0.043777 1.1838 + 0.0054269 -0.043777 1.1838 + 0.0254269 -0.033777 1.1838 + 0.0354269 -0.0237771 1.1838 + 0.045427 -0.0137771 1.1838 + 0.045426 -0.00377612 1.5738 + 0.0454261 0.0162239 1.5738 + 0.0354261 0.0262239 1.5738 + 0.0254261 0.0362239 1.5738 + 0.00542614 0.046224 1.5738 + -0.00457386 0.046224 1.5738 + -0.0245739 0.0362241 1.5738 + -0.0345739 0.0262241 1.5738 + -0.0445739 0.0162241 1.5738 + -0.044574 -0.00377589 1.5738 + -0.044574 -0.0137759 1.5738 + -0.034574 -0.0237759 1.5738 + -0.0245741 -0.0337759 1.5738 + -0.00457409 -0.043776 1.5738 + 0.00542591 -0.043776 1.5738 + 0.0254259 -0.0337761 1.5738 + 0.035426 -0.0237761 1.5738 + 0.045426 -0.0137761 1.5738 + 0.045425 -0.00377512 1.9738 + 0.045425 0.0162249 1.9738 + 0.0354251 0.0262249 1.9738 + 0.0254251 0.0362249 1.9738 + 0.00542512 0.046225 1.9738 + -0.00457488 0.046225 1.9738 + -0.0245749 0.0362251 1.9738 + -0.0345749 0.0262251 1.9738 + -0.0445749 0.0162251 1.9738 + -0.044575 -0.00377489 1.9738 + -0.044575 -0.0137749 1.9738 + -0.034575 -0.0237749 1.9738 + -0.0245751 -0.0337749 1.9738 + -0.0045751 -0.043775 1.9738 + 0.0054249 -0.043775 1.9738 + 0.0254249 -0.0337751 1.9738 + 0.0354249 -0.0237751 1.9738 + 0.045425 -0.0137751 1.9738 + -0.004575 -0.00377499 1.9738 + faces 216 + 0 2 1 1 0 2 1 2 + 0 3 2 1 0 3 2 2 + 0 4 3 1 0 110 3 2 + 0 5 4 1 0 111 110 2 + 0 6 5 1 0 6 111 2 + 0 7 6 1 0 7 6 2 + 0 8 7 1 0 8 7 2 + 0 9 8 1 0 9 8 2 + 0 10 9 1 0 10 9 2 + 0 11 10 1 0 11 10 2 + 0 12 11 1 0 12 11 2 + 0 13 12 1 0 13 12 2 + 0 14 13 1 0 14 13 2 + 0 15 14 1 0 15 14 2 + 0 16 15 1 0 16 15 2 + 0 17 16 1 0 17 16 2 + 0 18 17 1 0 18 17 2 + 0 1 18 1 0 1 18 2 + 1 20 19 8 1 20 19 3 + 1 2 20 8 1 2 20 3 + 2 21 20 8 2 21 20 3 + 2 3 21 8 2 3 21 3 + 3 22 21 8 3 22 21 3 + 3 4 22 8 3 4 22 3 + 4 23 22 8 4 23 22 3 + 4 5 23 8 4 5 23 3 + 5 24 23 8 111 24 112 3 + 5 6 24 8 111 6 24 3 + 6 25 24 8 6 25 24 3 + 6 7 25 8 6 7 25 3 + 7 26 25 8 7 26 25 3 + 7 8 26 8 7 8 26 3 + 8 27 26 8 8 27 26 3 + 8 9 27 8 8 9 27 3 + 9 28 27 8 9 28 27 3 + 9 10 28 8 9 10 28 3 + 10 29 28 8 10 29 28 3 + 10 11 29 8 10 11 29 3 + 11 30 29 8 11 30 29 3 + 11 12 30 8 11 12 30 3 + 12 31 30 8 12 31 30 3 + 12 13 31 8 12 13 31 3 + 13 32 31 8 13 32 31 3 + 13 14 32 8 13 14 32 3 + 14 33 32 8 14 33 32 3 + 14 15 33 8 14 15 33 3 + 15 34 33 8 15 34 33 3 + 15 16 34 8 15 16 34 3 + 16 35 34 8 16 35 34 3 + 16 17 35 8 16 17 35 3 + 17 36 35 8 17 36 35 3 + 17 18 36 8 17 18 36 3 + 18 19 36 8 18 19 36 3 + 18 1 19 8 18 1 19 3 + 19 38 37 8 19 38 37 3 + 19 20 38 8 19 20 38 3 + 20 39 38 8 20 39 38 3 + 20 21 39 8 20 21 39 3 + 21 40 39 8 21 40 39 3 + 21 22 40 8 21 22 40 3 + 22 41 40 8 22 41 40 3 + 22 23 41 8 22 23 41 3 + 23 42 41 8 112 42 113 3 + 23 24 42 8 112 24 42 3 + 24 43 42 8 24 43 42 3 + 24 25 43 8 24 25 43 3 + 25 44 43 8 25 44 43 3 + 25 26 44 8 25 26 44 3 + 26 45 44 8 26 45 44 3 + 26 27 45 8 26 27 45 3 + 27 46 45 8 27 46 45 3 + 27 28 46 8 27 28 46 3 + 28 47 46 8 28 47 46 3 + 28 29 47 8 28 29 47 3 + 29 48 47 8 29 48 47 3 + 29 30 48 8 29 30 48 3 + 30 49 48 8 30 49 48 3 + 30 31 49 8 30 31 49 3 + 31 50 49 8 31 50 49 3 + 31 32 50 8 31 32 50 3 + 32 51 50 8 32 51 50 3 + 32 33 51 8 32 33 51 3 + 33 52 51 8 33 52 51 3 + 33 34 52 8 33 34 52 3 + 34 53 52 8 34 53 52 3 + 34 35 53 8 34 35 53 3 + 35 54 53 8 35 54 53 3 + 35 36 54 8 35 36 54 3 + 36 37 54 8 36 37 54 3 + 36 19 37 8 36 19 37 3 + 37 56 55 8 37 56 55 3 + 37 38 56 8 37 38 56 3 + 38 57 56 8 38 57 56 3 + 38 39 57 8 38 39 57 3 + 39 58 57 8 39 58 57 3 + 39 40 58 8 39 40 58 3 + 40 59 58 8 40 59 58 3 + 40 41 59 8 40 41 59 3 + 41 60 59 8 113 60 114 3 + 41 42 60 8 113 42 60 3 + 42 61 60 8 42 61 60 3 + 42 43 61 8 42 43 61 3 + 43 62 61 8 43 62 61 3 + 43 44 62 8 43 44 62 3 + 44 63 62 8 44 63 62 3 + 44 45 63 8 44 45 63 3 + 45 64 63 8 45 64 63 3 + 45 46 64 8 45 46 64 3 + 46 65 64 8 46 65 64 3 + 46 47 65 8 46 47 65 3 + 47 66 65 8 47 66 65 3 + 47 48 66 8 47 48 66 3 + 48 67 66 8 48 67 66 3 + 48 49 67 8 48 49 67 3 + 49 68 67 8 49 68 67 3 + 49 50 68 8 49 50 68 3 + 50 69 68 8 50 69 68 3 + 50 51 69 8 50 51 69 3 + 51 70 69 8 51 70 69 3 + 51 52 70 8 51 52 70 3 + 52 71 70 8 52 71 70 3 + 52 53 71 8 52 53 71 3 + 53 72 71 8 53 72 71 3 + 53 54 72 8 53 54 72 3 + 54 55 72 8 54 55 72 3 + 54 37 55 8 54 37 55 3 + 55 74 73 8 55 74 73 3 + 55 56 74 8 55 56 74 3 + 56 75 74 8 56 75 74 3 + 56 57 75 8 56 57 75 3 + 57 76 75 8 57 76 75 3 + 57 58 76 8 57 58 76 3 + 58 77 76 8 58 77 76 3 + 58 59 77 8 58 59 77 3 + 59 78 77 8 114 78 115 3 + 59 60 78 8 114 60 78 3 + 60 79 78 8 60 79 78 3 + 60 61 79 8 60 61 79 3 + 61 80 79 8 61 80 79 3 + 61 62 80 8 61 62 80 3 + 62 81 80 8 62 81 80 3 + 62 63 81 8 62 63 81 3 + 63 82 81 8 63 82 81 3 + 63 64 82 8 63 64 82 3 + 64 83 82 8 64 83 82 3 + 64 65 83 8 64 65 83 3 + 65 84 83 8 65 84 83 3 + 65 66 84 8 65 66 84 3 + 66 85 84 8 66 85 84 3 + 66 67 85 8 66 67 85 3 + 67 86 85 8 67 86 85 3 + 67 68 86 8 67 68 86 3 + 68 87 86 8 68 87 86 3 + 68 69 87 8 68 69 87 3 + 69 88 87 8 69 88 87 3 + 69 70 88 8 69 70 88 3 + 70 89 88 8 70 89 88 3 + 70 71 89 8 70 71 89 3 + 71 90 89 8 71 90 89 3 + 71 72 90 8 71 72 90 3 + 72 73 90 8 72 73 90 3 + 72 55 73 8 72 55 73 3 + 73 92 91 8 73 92 91 3 + 73 74 92 8 73 74 92 3 + 74 93 92 8 74 93 92 3 + 74 75 93 8 74 75 93 3 + 75 94 93 8 75 94 93 3 + 75 76 94 8 75 76 94 3 + 76 95 94 8 76 95 94 3 + 76 77 95 8 76 77 95 3 + 77 96 95 8 115 96 116 3 + 77 78 96 8 115 78 96 3 + 78 97 96 8 78 97 96 3 + 78 79 97 8 78 79 97 3 + 79 98 97 8 79 98 97 3 + 79 80 98 8 79 80 98 3 + 80 99 98 8 80 99 98 3 + 80 81 99 8 80 81 99 3 + 81 100 99 8 81 100 99 3 + 81 82 100 8 81 82 100 3 + 82 101 100 8 82 101 100 3 + 82 83 101 8 82 83 101 3 + 83 102 101 8 83 102 101 3 + 83 84 102 8 83 84 102 3 + 84 103 102 8 84 103 102 3 + 84 85 103 8 84 85 103 3 + 85 104 103 8 85 104 103 3 + 85 86 104 8 85 86 104 3 + 86 105 104 8 86 105 104 3 + 86 87 105 8 86 87 105 3 + 87 106 105 8 87 106 105 3 + 87 88 106 8 87 88 106 3 + 88 107 106 8 88 107 106 3 + 88 89 107 8 88 89 107 3 + 89 108 107 8 89 108 107 3 + 89 90 108 8 89 90 108 3 + 90 91 108 8 90 91 108 3 + 90 73 91 8 90 73 91 3 + 109 91 92 1 109 91 92 1 + 109 92 93 1 109 92 93 1 + 109 93 94 1 109 93 117 1 + 109 94 95 1 109 117 116 1 + 109 95 96 1 109 116 96 1 + 109 96 97 1 109 96 97 1 + 109 97 98 1 109 97 98 1 + 109 98 99 1 109 98 99 1 + 109 99 100 1 109 99 100 1 + 109 100 101 1 109 100 101 1 + 109 101 102 1 109 101 102 1 + 109 102 103 1 109 102 103 1 + 109 103 104 1 109 103 104 1 + 109 104 105 1 109 104 105 1 + 109 105 106 1 109 105 106 1 + 109 106 107 1 109 106 107 1 + 109 107 108 1 109 107 108 1 + 109 108 91 1 109 108 91 1 + tverts 118 + 0.375078 -0.873039 0 + 0.73238 -0.873039 0 + 0.801197 -0.873039 0 + 0.848703 -0.873039 0 + 0.901271 -0.873039 0 + 0.982378 -0.873039 0 + 0.0176034 -0.873039 0 + 0.0987131 -0.873039 0 + 0.151286 -0.873039 0 + 0.198796 -0.873039 0 + 0.267621 -0.873039 0 + 0.301218 -0.873039 0 + 0.348728 -0.873039 0 + 0.401297 -0.873039 0 + 0.482398 -0.873039 0 + 0.517619 -0.873039 0 + 0.598718 -0.873039 0 + 0.651282 -0.873039 0 + 0.698786 -0.873039 0 + 0.732383 -0.329399 0 + 0.801201 -0.329399 0 + 0.848707 -0.329399 0 + 0.901276 -0.329399 0 + 0.982382 -0.329399 0 + 0.0176065 -0.329399 0 + 0.0987139 -0.329399 0 + 0.151285 -0.329399 0 + 0.198794 -0.329399 0 + 0.267617 -0.329399 0 + 0.301214 -0.329399 0 + 0.348723 -0.329399 0 + 0.401291 -0.329399 0 + 0.482394 -0.329399 0 + 0.517616 -0.329399 0 + 0.598717 -0.329399 0 + 0.651282 -0.329399 0 + 0.698788 -0.329399 0 + 0.732386 0.21424 0 + 0.801206 0.21424 0 + 0.848713 0.21424 0 + 0.901281 0.21424 0 + 0.982386 0.21424 0 + 0.0176096 0.21424 0 + 0.0987148 0.21424 0 + 0.151284 0.21424 0 + 0.198792 0.21424 0 + 0.267613 0.21424 0 + 0.30121 0.21424 0 + 0.348718 0.21424 0 + 0.401286 0.21424 0 + 0.48239 0.21424 0 + 0.517613 0.21424 0 + 0.598716 0.21424 0 + 0.651283 0.21424 0 + 0.69879 0.21424 0 + 0.73239 0.771821 0 + 0.80121 0.771821 0 + 0.848718 0.771821 0 + 0.901286 0.771821 0 + 0.98239 0.771821 0 + 0.0176127 0.771821 0 + 0.0987157 0.771821 0 + 0.151283 0.771821 0 + 0.19879 0.771821 0 + 0.267609 0.771821 0 + 0.301206 0.771821 0 + 0.348713 0.771821 0 + 0.401281 0.771821 0 + 0.482386 0.771821 0 + 0.51761 0.771821 0 + 0.598715 0.771821 0 + 0.651284 0.771821 0 + 0.698793 0.771821 0 + 0.732393 1.31546 0 + 0.801214 1.31546 0 + 0.848723 1.31546 0 + 0.901291 1.31546 0 + 0.982394 1.31546 0 + 0.0176158 1.31546 0 + 0.0987165 1.31546 0 + 0.151282 1.31546 0 + 0.198788 1.31546 0 + 0.267605 1.31546 0 + 0.301201 1.31546 0 + 0.348708 1.31546 0 + 0.401276 1.31546 0 + 0.482382 1.31546 0 + 0.517607 1.31546 0 + 0.598714 1.31546 0 + 0.651285 1.31546 0 + 0.698795 1.31546 0 + 0.732396 1.87304 0 + 0.801218 1.87304 0 + 0.848728 1.87304 0 + 0.901297 1.87304 0 + 0.982398 1.87304 0 + 0.017619 1.87304 0 + 0.0987174 1.87304 0 + 0.151282 1.87304 0 + 0.198786 1.87304 0 + 0.267602 1.87304 0 + 0.301197 1.87304 0 + 0.348703 1.87304 0 + 0.401271 1.87304 0 + 0.482378 1.87304 0 + 0.517604 1.87304 0 + 0.598713 1.87304 0 + 0.651286 1.87304 0 + 0.698797 1.87304 0 + 0.37492 1.87304 0 + -0.098729 -0.873039 0 + -0.0176218 -0.873039 0 + -0.017618 -0.329399 0 + -0.0176141 0.21424 0 + -0.0176102 0.771821 0 + -0.0176064 1.31546 0 + -0.0176024 1.87304 0 + -0.0987034 1.87304 0 +endnode +node trimesh box07 + parent abp_weaprack_1 + position 0.547726 -0.0762839 0.38215 + orientation 1 0 0 -0.610865 + wirecolor 0.337255 0.694118 0.101961 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center -0.27256 -0.141548 5.01765 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.0177256 -0.59002 -0.000697746 + 0.0122744 -0.59002 -0.000697746 + -0.0177256 0.59459 -0.00135193 + 0.0122744 0.59459 -0.00135193 + -0.0177256 -0.600684 0.101705 + 0.0122744 -0.600684 0.101705 + -0.0177256 0.597853 0.0985948 + 0.0122744 0.597853 0.0985948 + faces 12 + 0 2 3 2 7 8 9 2 + 3 1 0 2 9 10 7 2 + 4 5 7 4 3 11 4 1 + 7 6 4 4 4 5 3 1 + 0 1 5 8 7 10 3 5 + 5 4 0 8 3 11 7 5 + 1 3 7 16 1 12 13 4 + 7 5 1 16 13 5 1 4 + 3 2 6 32 3 11 13 6 + 6 7 3 32 13 6 3 6 + 2 0 4 64 2 0 4 3 + 4 6 2 64 4 6 2 3 + tverts 14 + 0.990612 0.00684097 0 + 0.00938812 0.00684097 0 + 0.00321928 0.000499517 0 + 0.000499547 0.000499517 0 + 0.999501 0.999501 0 + 0.000499487 0.999501 0 + 0.000499487 0.969351 0 + 0.9995 0.00938812 0 + 0.999491 0.996781 0 + 0.000499547 0.996781 0 + 0.000508964 0.00938812 0 + 0.999491 0.000499487 0 + 0.996781 0.000499517 0 + 0.999501 0.969351 0 +endnode +node trimesh box08 + parent abp_weaprack_1 + position -0.557817 -0.0762839 0.38215 + orientation 1 0 0 -0.610865 + wirecolor 0.337255 0.694118 0.101961 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0.28169 -0.141548 5.01765 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.0121831 -0.59002 -0.000697746 + 0.0178169 -0.59002 -0.000697746 + -0.0121831 0.59459 -0.00135193 + 0.0178169 0.59459 -0.00135193 + -0.0121831 -0.600684 0.101705 + 0.0178169 -0.600684 0.101705 + -0.0121831 0.597853 0.0985948 + 0.0178169 0.597853 0.0985948 + faces 12 + 0 2 3 2 7 8 9 2 + 3 1 0 2 9 10 7 2 + 4 5 7 4 3 11 4 1 + 7 6 4 4 4 5 3 1 + 0 1 5 8 7 10 3 5 + 5 4 0 8 3 11 7 5 + 1 3 7 16 1 12 13 4 + 7 5 1 16 13 5 1 4 + 3 2 6 32 3 11 13 6 + 6 7 3 32 13 6 3 6 + 2 0 4 64 2 0 4 3 + 4 6 2 64 4 6 2 3 + tverts 14 + 0.990612 0.00684097 0 + 0.00938812 0.00684097 0 + 0.00321928 0.000499517 0 + 0.000499576 0.000499517 0 + 0.999501 0.999501 0 + 0.000499487 0.999501 0 + 0.000499487 0.969351 0 + 0.9995 0.00938812 0 + 0.999491 0.996781 0 + 0.000499576 0.996781 0 + 0.000508994 0.00938812 0 + 0.999491 0.000499487 0 + 0.996781 0.000499517 0 + 0.999501 0.969351 0 +endnode +node trimesh box09 + parent abp_weaprack_1 + orientation 0 0 0 0 + position 0.418603 -0.505512 1.03442 + wirecolor 0.603922 0.839216 0.894118 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 1.20434 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.0331831 -0.0451583 0 + 0.0331831 -0.0451583 0 + -0.0331831 0.0451583 0 + 0.0331831 0.0451583 0 + -0.0331831 -0.0451583 0.0240868 + 0.0331831 -0.0451583 0.0240868 + -0.0331831 0.0451583 0.0240868 + 0.0331831 0.0451583 0.0240868 + faces 12 + 0 2 3 2 0 2 3 2 + 3 1 0 2 3 1 0 2 + 4 5 7 4 1 0 2 1 + 7 6 4 4 2 3 1 1 + 0 1 5 8 1 0 2 5 + 5 4 0 8 2 3 1 5 + 1 3 7 16 1 0 2 4 + 7 5 1 16 2 3 1 4 + 3 2 6 32 1 0 2 6 + 6 7 3 32 2 3 1 6 + 2 0 4 64 1 0 2 3 + 4 6 2 64 2 3 1 3 + tverts 4 + 0.9995 0.000499576 0 + 0.000499576 0.000499576 0 + 0.9995 0.9995 0 + 0.000499576 0.9995 0 +endnode +node trimesh box14 + parent box09 + orientation 0 0 0 0 + position -0.000989571 0.0554636 -0.0228613 + wirecolor 0.6 0.894118 0.839216 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 3.62713 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.052301 -0.0105954 0 + 0.052301 -0.0105954 0 + -0.052301 0.0105954 0 + 0.052301 0.0105954 0 + -0.052301 -0.0105954 0.0725425 + 0.052301 -0.0105954 0.0725425 + -0.052301 0.0105954 0.0725425 + 0.052301 0.0105954 0.0725425 + faces 12 + 0 2 3 2 6 7 8 2 + 3 1 0 2 8 9 6 2 + 4 5 7 4 9 6 7 1 + 7 6 4 4 7 8 9 1 + 0 1 5 8 2 10 11 5 + 5 4 0 8 11 5 2 5 + 1 3 7 16 1 0 3 4 + 7 5 1 16 3 4 1 4 + 3 2 6 32 2 10 11 6 + 6 7 3 32 11 5 2 6 + 2 0 4 64 1 0 3 3 + 4 6 2 64 3 4 1 3 + tverts 12 + 0.999499 -1.20993 0 + 0.000499517 -1.20993 0 + -1.96563 -1.20993 0 + 0.999499 2.20993 0 + 0.000499517 2.20993 0 + -1.96563 2.20993 0 + 2.96563 0.000500709 0 + 2.96563 0.999501 0 + -1.96563 0.999499 0 + -1.96563 0.000499517 0 + 2.96563 -1.20993 0 + 2.96563 2.20993 0 +endnode +node trimesh cylinder03 + parent box14 + position -0.0375303 -0.00919205 0.0285932 + orientation -0.00307183 -0.704011 -0.710182 -3.14159 + wirecolor 0.776471 0.87451 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 5.3551 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 3 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 110 + 0 0 0 + 0.0104253 0 0 + 0.0097966 0.00356567 0 + 0.00798626 0.00670127 0 + 0.00521266 0.00902859 0 + 0.00181034 0.0102669 0 + -0.00181034 0.0102669 0 + -0.00521266 0.00902859 0 + -0.00798626 0.00670127 0 + -0.0097966 0.00356567 0 + -0.0104253 0 0 + -0.0097966 -0.00356567 0 + -0.00798626 -0.00670127 0 + -0.00521266 -0.00902859 0 + -0.00181034 -0.0102669 0 + 0.00181034 -0.0102669 0 + 0.00521266 -0.00902859 0 + 0.00798626 -0.00670127 0 + 0.0097966 -0.00356567 0 + 0.0104253 0 0.0214205 + 0.0097966 0.00356567 0.0214205 + 0.00798626 0.00670127 0.0214205 + 0.00521266 0.00902859 0.0214205 + 0.00181034 0.0102669 0.0214205 + -0.00181034 0.0102669 0.0214205 + -0.00521266 0.00902859 0.0214205 + -0.00798626 0.00670127 0.0214205 + -0.0097966 0.00356567 0.0214205 + -0.0104253 0 0.0214205 + -0.0097966 -0.00356567 0.0214205 + -0.00798626 -0.00670127 0.0214205 + -0.00521266 -0.00902859 0.0214205 + -0.00181034 -0.0102669 0.0214205 + 0.00181034 -0.0102669 0.0214205 + 0.00521266 -0.00902859 0.0214205 + 0.00798626 -0.00670127 0.0214205 + 0.0097966 -0.00356567 0.0214205 + 0.0104253 0 0.0428409 + 0.0097966 0.00356567 0.0428409 + 0.00798626 0.00670127 0.0428409 + 0.00521266 0.00902859 0.0428409 + 0.00181034 0.0102669 0.0428409 + -0.00181034 0.0102669 0.0428409 + -0.00521266 0.00902859 0.0428409 + -0.00798626 0.00670127 0.0428409 + -0.0097966 0.00356567 0.0428409 + -0.0104253 0 0.0428409 + -0.0097966 -0.00356567 0.0428409 + -0.00798626 -0.00670127 0.0428409 + -0.00521266 -0.00902859 0.0428409 + -0.00181034 -0.0102669 0.0428409 + 0.00181034 -0.0102669 0.0428409 + 0.00521266 -0.00902859 0.0428409 + 0.00798626 -0.00670127 0.0428409 + 0.0097966 -0.00356567 0.0428409 + 0.0104253 0 0.0642614 + 0.0097966 0.00356567 0.0642614 + 0.00798626 0.00670127 0.0642614 + 0.00521266 0.00902859 0.0642614 + 0.00181034 0.0102669 0.0642614 + -0.00181034 0.0102669 0.0642614 + -0.00521266 0.00902859 0.0642614 + -0.00798626 0.00670127 0.0642614 + -0.0097966 0.00356567 0.0642614 + -0.0104253 0 0.0642614 + -0.0097966 -0.00356567 0.0642614 + -0.00798626 -0.00670127 0.0642614 + -0.00521266 -0.00902859 0.0642614 + -0.00181034 -0.0102669 0.0642614 + 0.00181034 -0.0102669 0.0642614 + 0.00521266 -0.00902859 0.0642614 + 0.00798626 -0.00670127 0.0642614 + 0.0097966 -0.00356567 0.0642614 + 0.0104253 0 0.0856819 + 0.0097966 0.00356567 0.0856819 + 0.00798626 0.00670127 0.0856819 + 0.00521266 0.00902859 0.0856819 + 0.00181034 0.0102669 0.0856819 + -0.00181034 0.0102669 0.0856819 + -0.00521266 0.00902859 0.0856819 + -0.00798626 0.00670127 0.0856819 + -0.0097966 0.00356567 0.0856819 + -0.0104253 0 0.0856819 + -0.0097966 -0.00356567 0.0856819 + -0.00798626 -0.00670127 0.0856819 + -0.00521266 -0.00902859 0.0856819 + -0.00181034 -0.0102669 0.0856819 + 0.00181034 -0.0102669 0.0856819 + 0.00521266 -0.00902859 0.0856819 + 0.00798626 -0.00670127 0.0856819 + 0.0097966 -0.00356567 0.0856819 + 0.0104253 0 0.107102 + 0.0097966 0.00356567 0.107102 + 0.00798626 0.00670127 0.107102 + 0.00521266 0.00902859 0.107102 + 0.00181034 0.0102669 0.107102 + -0.00181034 0.0102669 0.107102 + -0.00521266 0.00902859 0.107102 + -0.00798626 0.00670127 0.107102 + -0.0097966 0.00356567 0.107102 + -0.0104253 0 0.107102 + -0.0097966 -0.00356567 0.107102 + -0.00798626 -0.00670127 0.107102 + -0.00521266 -0.00902859 0.107102 + -0.00181034 -0.0102669 0.107102 + 0.00181034 -0.0102669 0.107102 + 0.00521266 -0.00902859 0.107102 + 0.00798626 -0.00670127 0.107102 + 0.0097966 -0.00356567 0.107102 + 0 0 0.107102 + faces 216 + 0 2 1 1 0 54 55 2 + 0 3 2 1 0 53 54 2 + 0 4 3 1 0 52 53 2 + 0 5 4 1 0 51 52 2 + 0 6 5 1 0 50 51 2 + 0 7 6 1 0 49 50 2 + 0 8 7 1 0 48 49 2 + 0 9 8 1 0 47 48 2 + 0 10 9 1 0 46 47 2 + 0 11 10 1 0 61 46 2 + 0 12 11 1 0 60 61 2 + 0 13 12 1 0 59 60 2 + 0 14 13 1 0 6 59 2 + 0 15 14 1 0 5 6 2 + 0 16 15 1 0 58 5 2 + 0 17 16 1 0 57 58 2 + 0 18 17 1 0 56 57 2 + 0 1 18 1 0 55 56 2 + 1 20 19 8 1 11 10 3 + 1 2 20 8 1 2 11 3 + 2 21 20 8 2 62 11 3 + 2 3 21 8 2 63 62 3 + 3 22 21 8 3 13 12 3 + 3 4 22 8 3 4 13 3 + 4 23 22 8 4 14 13 3 + 4 5 23 8 4 5 14 3 + 5 24 23 8 5 15 14 3 + 5 6 24 8 5 6 15 3 + 6 25 24 8 6 16 15 3 + 6 7 25 8 6 7 16 3 + 7 26 25 8 7 64 16 3 + 7 8 26 8 7 65 64 3 + 8 27 26 8 8 18 17 3 + 8 9 27 8 8 9 18 3 + 9 28 27 8 9 10 18 3 + 9 10 28 8 9 1 10 3 + 10 29 28 8 1 11 10 3 + 10 11 29 8 1 2 11 3 + 11 30 29 8 2 62 11 3 + 11 12 30 8 2 63 62 3 + 12 31 30 8 3 13 12 3 + 12 13 31 8 3 4 13 3 + 13 32 31 8 4 14 13 3 + 13 14 32 8 4 5 14 3 + 14 33 32 8 5 15 14 3 + 14 15 33 8 5 6 15 3 + 15 34 33 8 6 16 15 3 + 15 16 34 8 6 7 16 3 + 16 35 34 8 7 64 16 3 + 16 17 35 8 7 65 64 3 + 17 36 35 8 8 18 17 3 + 17 18 36 8 8 9 18 3 + 18 19 36 8 9 10 18 3 + 18 1 19 8 9 1 10 3 + 19 38 37 8 10 20 19 3 + 19 20 38 8 10 11 20 3 + 20 39 38 8 11 66 20 3 + 20 21 39 8 11 62 66 3 + 21 40 39 8 12 22 21 3 + 21 22 40 8 12 13 22 3 + 22 41 40 8 13 23 22 3 + 22 23 41 8 13 14 23 3 + 23 42 41 8 14 24 23 3 + 23 24 42 8 14 15 24 3 + 24 43 42 8 15 25 24 3 + 24 25 43 8 15 16 25 3 + 25 44 43 8 16 67 25 3 + 25 26 44 8 16 64 67 3 + 26 45 44 8 17 27 26 3 + 26 27 45 8 17 18 27 3 + 27 46 45 8 18 19 27 3 + 27 28 46 8 18 10 19 3 + 28 47 46 8 10 20 19 3 + 28 29 47 8 10 11 20 3 + 29 48 47 8 11 66 20 3 + 29 30 48 8 11 62 66 3 + 30 49 48 8 12 22 21 3 + 30 31 49 8 12 13 22 3 + 31 50 49 8 13 23 22 3 + 31 32 50 8 13 14 23 3 + 32 51 50 8 14 24 23 3 + 32 33 51 8 14 15 24 3 + 33 52 51 8 15 25 24 3 + 33 34 52 8 15 16 25 3 + 34 53 52 8 16 67 25 3 + 34 35 53 8 16 64 67 3 + 35 54 53 8 17 27 26 3 + 35 36 54 8 17 18 27 3 + 36 37 54 8 18 19 27 3 + 36 19 37 8 18 10 19 3 + 37 56 55 8 19 29 28 3 + 37 38 56 8 19 20 29 3 + 38 57 56 8 20 68 29 3 + 38 39 57 8 20 66 68 3 + 39 58 57 8 21 31 30 3 + 39 40 58 8 21 22 31 3 + 40 59 58 8 22 32 31 3 + 40 41 59 8 22 23 32 3 + 41 60 59 8 23 33 32 3 + 41 42 60 8 23 24 33 3 + 42 61 60 8 24 34 33 3 + 42 43 61 8 24 25 34 3 + 43 62 61 8 25 69 34 3 + 43 44 62 8 25 67 69 3 + 44 63 62 8 26 36 35 3 + 44 45 63 8 26 27 36 3 + 45 64 63 8 27 28 36 3 + 45 46 64 8 27 19 28 3 + 46 65 64 8 19 29 28 3 + 46 47 65 8 19 20 29 3 + 47 66 65 8 20 68 29 3 + 47 48 66 8 20 66 68 3 + 48 67 66 8 21 31 30 3 + 48 49 67 8 21 22 31 3 + 49 68 67 8 22 32 31 3 + 49 50 68 8 22 23 32 3 + 50 69 68 8 23 33 32 3 + 50 51 69 8 23 24 33 3 + 51 70 69 8 24 34 33 3 + 51 52 70 8 24 25 34 3 + 52 71 70 8 25 69 34 3 + 52 53 71 8 25 67 69 3 + 53 72 71 8 26 36 35 3 + 53 54 72 8 26 27 36 3 + 54 55 72 8 27 28 36 3 + 54 37 55 8 27 19 28 3 + 55 74 73 8 28 38 37 3 + 55 56 74 8 28 29 38 3 + 56 75 74 8 29 70 38 3 + 56 57 75 8 29 68 70 3 + 57 76 75 8 30 40 39 3 + 57 58 76 8 30 31 40 3 + 58 77 76 8 31 41 40 3 + 58 59 77 8 31 32 41 3 + 59 78 77 8 32 42 41 3 + 59 60 78 8 32 33 42 3 + 60 79 78 8 33 43 42 3 + 60 61 79 8 33 34 43 3 + 61 80 79 8 34 71 43 3 + 61 62 80 8 34 69 71 3 + 62 81 80 8 35 45 44 3 + 62 63 81 8 35 36 45 3 + 63 82 81 8 36 37 45 3 + 63 64 82 8 36 28 37 3 + 64 83 82 8 28 38 37 3 + 64 65 83 8 28 29 38 3 + 65 84 83 8 29 70 38 3 + 65 66 84 8 29 68 70 3 + 66 85 84 8 30 40 39 3 + 66 67 85 8 30 31 40 3 + 67 86 85 8 31 41 40 3 + 67 68 86 8 31 32 41 3 + 68 87 86 8 32 42 41 3 + 68 69 87 8 32 33 42 3 + 69 88 87 8 33 43 42 3 + 69 70 88 8 33 34 43 3 + 70 89 88 8 34 71 43 3 + 70 71 89 8 34 69 71 3 + 71 90 89 8 35 45 44 3 + 71 72 90 8 35 36 45 3 + 72 73 90 8 36 37 45 3 + 72 55 73 8 36 28 37 3 + 73 92 91 8 37 72 73 3 + 73 74 92 8 37 38 72 3 + 74 93 92 8 38 74 72 3 + 74 75 93 8 38 70 74 3 + 75 94 93 8 39 75 76 3 + 75 76 94 8 39 40 75 3 + 76 95 94 8 40 51 75 3 + 76 77 95 8 40 41 51 3 + 77 96 95 8 41 50 51 3 + 77 78 96 8 41 42 50 3 + 78 97 96 8 42 77 50 3 + 78 79 97 8 42 43 77 3 + 79 98 97 8 43 78 77 3 + 79 80 98 8 43 71 78 3 + 80 99 98 8 44 79 80 3 + 80 81 99 8 44 45 79 3 + 81 100 99 8 45 73 79 3 + 81 82 100 8 45 37 73 3 + 82 101 100 8 37 72 73 3 + 82 83 101 8 37 38 72 3 + 83 102 101 8 38 74 72 3 + 83 84 102 8 38 70 74 3 + 84 103 102 8 39 75 76 3 + 84 85 103 8 39 40 75 3 + 85 104 103 8 40 51 75 3 + 85 86 104 8 40 41 51 3 + 86 105 104 8 41 50 51 3 + 86 87 105 8 41 42 50 3 + 87 106 105 8 42 77 50 3 + 87 88 106 8 42 43 77 3 + 88 107 106 8 43 78 77 3 + 88 89 107 8 43 71 78 3 + 89 108 107 8 44 79 80 3 + 89 90 108 8 44 45 79 3 + 90 91 108 8 45 73 79 3 + 90 73 91 8 45 37 73 3 + 109 91 92 1 0 46 47 1 + 109 92 93 1 0 47 48 1 + 109 93 94 1 0 48 49 1 + 109 94 95 1 0 49 50 1 + 109 95 96 1 0 50 51 1 + 109 96 97 1 0 51 52 1 + 109 97 98 1 0 52 53 1 + 109 98 99 1 0 53 54 1 + 109 99 100 1 0 54 55 1 + 109 100 101 1 0 55 56 1 + 109 101 102 1 0 56 57 1 + 109 102 103 1 0 57 58 1 + 109 103 104 1 0 58 5 1 + 109 104 105 1 0 5 6 1 + 109 105 106 1 0 6 59 1 + 109 106 107 1 0 59 60 1 + 109 107 108 1 0 60 61 1 + 109 108 91 1 0 61 46 1 + tverts 81 + 0.5 0.5 0 + 0.5 0.000499457 0 + 0.673475 0.000499457 0 + 0.11736 0.000499457 0 + 0.250249 0.000499457 0 + 0.413262 0.000499457 0 + 0.586737 0.000499457 0 + 0.749751 0.000499457 0 + 0.173973 0.000499457 0 + 0.326525 0.000499457 0 + 0.5 0.200301 0 + 0.673475 0.200301 0 + 0.11736 0.200301 0 + 0.250249 0.200301 0 + 0.413262 0.200301 0 + 0.586737 0.200301 0 + 0.749751 0.200301 0 + 0.173973 0.200301 0 + 0.326525 0.200301 0 + 0.5 0.400101 0 + 0.673475 0.400101 0 + 0.11736 0.400101 0 + 0.250249 0.400101 0 + 0.413262 0.400101 0 + 0.586737 0.400101 0 + 0.749751 0.400101 0 + 0.173973 0.400101 0 + 0.326525 0.400101 0 + 0.5 0.599902 0 + 0.673475 0.599902 0 + 0.11736 0.599902 0 + 0.250249 0.599902 0 + 0.413262 0.599902 0 + 0.586737 0.599902 0 + 0.749751 0.599902 0 + 0.173973 0.599902 0 + 0.326525 0.599902 0 + 0.5 0.799703 0 + 0.673475 0.799703 0 + 0.11736 0.799703 0 + 0.250249 0.799703 0 + 0.413262 0.799703 0 + 0.586737 0.799703 0 + 0.749751 0.799703 0 + 0.173973 0.799703 0 + 0.326525 0.799703 0 + 0.999501 0.5 0 + 0.969378 0.673475 0 + 0.88264 0.826027 0 + 0.749751 0.939255 0 + 0.586738 0.9995 0 + 0.413263 0.9995 0 + 0.250249 0.939255 0 + 0.11736 0.826027 0 + 0.0306221 0.673475 0 + 0.000499547 0.5 0 + 0.030622 0.326525 0 + 0.11736 0.173973 0 + 0.250249 0.0607453 0 + 0.749751 0.0607451 0 + 0.88264 0.173973 0 + 0.969378 0.326525 0 + 0.826027 0.200301 0 + 0.826027 0.000499457 0 + 0.88264 0.200301 0 + 0.88264 0.000499457 0 + 0.826027 0.400101 0 + 0.88264 0.400101 0 + 0.826027 0.599902 0 + 0.88264 0.599902 0 + 0.826027 0.799703 0 + 0.88264 0.799703 0 + 0.673475 0.9995 0 + 0.5 0.9995 0 + 0.826027 0.9995 0 + 0.250249 0.9995 0 + 0.11736 0.9995 0 + 0.749751 0.9995 0 + 0.88264 0.9995 0 + 0.326525 0.9995 0 + 0.173973 0.9995 0 +endnode +node trimesh cylinder02 + parent box14 + position 0.0367567 -0.00919205 0.0285932 + orientation -0.00307183 -0.704011 -0.710182 -3.14159 + wirecolor 0.776471 0.87451 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 5.3551 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 3 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 110 + 0 0 0 + 0.0104253 0 0 + 0.0097966 0.00356567 0 + 0.00798626 0.00670127 0 + 0.00521266 0.00902859 0 + 0.00181034 0.0102669 0 + -0.00181034 0.0102669 0 + -0.00521266 0.00902859 0 + -0.00798626 0.00670127 0 + -0.0097966 0.00356567 0 + -0.0104253 0 0 + -0.0097966 -0.00356567 0 + -0.00798626 -0.00670127 0 + -0.00521266 -0.00902859 0 + -0.00181034 -0.0102669 0 + 0.00181034 -0.0102669 0 + 0.00521266 -0.00902859 0 + 0.00798626 -0.00670127 0 + 0.0097966 -0.00356567 0 + 0.0104253 0 0.0214205 + 0.0097966 0.00356567 0.0214205 + 0.00798626 0.00670127 0.0214205 + 0.00521266 0.00902859 0.0214205 + 0.00181034 0.0102669 0.0214205 + -0.00181034 0.0102669 0.0214205 + -0.00521266 0.00902859 0.0214205 + -0.00798626 0.00670127 0.0214205 + -0.0097966 0.00356567 0.0214205 + -0.0104253 0 0.0214205 + -0.0097966 -0.00356567 0.0214205 + -0.00798626 -0.00670127 0.0214205 + -0.00521266 -0.00902859 0.0214205 + -0.00181034 -0.0102669 0.0214205 + 0.00181034 -0.0102669 0.0214205 + 0.00521266 -0.00902859 0.0214205 + 0.00798626 -0.00670127 0.0214205 + 0.0097966 -0.00356567 0.0214205 + 0.0104253 0 0.0428409 + 0.0097966 0.00356567 0.0428409 + 0.00798626 0.00670127 0.0428409 + 0.00521266 0.00902859 0.0428409 + 0.00181034 0.0102669 0.0428409 + -0.00181034 0.0102669 0.0428409 + -0.00521266 0.00902859 0.0428409 + -0.00798626 0.00670127 0.0428409 + -0.0097966 0.00356567 0.0428409 + -0.0104253 0 0.0428409 + -0.0097966 -0.00356567 0.0428409 + -0.00798626 -0.00670127 0.0428409 + -0.00521266 -0.00902859 0.0428409 + -0.00181034 -0.0102669 0.0428409 + 0.00181034 -0.0102669 0.0428409 + 0.00521266 -0.00902859 0.0428409 + 0.00798626 -0.00670127 0.0428409 + 0.0097966 -0.00356567 0.0428409 + 0.0104253 0 0.0642614 + 0.0097966 0.00356567 0.0642614 + 0.00798626 0.00670127 0.0642614 + 0.00521266 0.00902859 0.0642614 + 0.00181034 0.0102669 0.0642614 + -0.00181034 0.0102669 0.0642614 + -0.00521266 0.00902859 0.0642614 + -0.00798626 0.00670127 0.0642614 + -0.0097966 0.00356567 0.0642614 + -0.0104253 0 0.0642614 + -0.0097966 -0.00356567 0.0642614 + -0.00798626 -0.00670127 0.0642614 + -0.00521266 -0.00902859 0.0642614 + -0.00181034 -0.0102669 0.0642614 + 0.00181034 -0.0102669 0.0642614 + 0.00521266 -0.00902859 0.0642614 + 0.00798626 -0.00670127 0.0642614 + 0.0097966 -0.00356567 0.0642614 + 0.0104253 0 0.0856819 + 0.0097966 0.00356567 0.0856819 + 0.00798626 0.00670127 0.0856819 + 0.00521266 0.00902859 0.0856819 + 0.00181034 0.0102669 0.0856819 + -0.00181034 0.0102669 0.0856819 + -0.00521266 0.00902859 0.0856819 + -0.00798626 0.00670127 0.0856819 + -0.0097966 0.00356567 0.0856819 + -0.0104253 0 0.0856819 + -0.0097966 -0.00356567 0.0856819 + -0.00798626 -0.00670127 0.0856819 + -0.00521266 -0.00902859 0.0856819 + -0.00181034 -0.0102669 0.0856819 + 0.00181034 -0.0102669 0.0856819 + 0.00521266 -0.00902859 0.0856819 + 0.00798626 -0.00670127 0.0856819 + 0.0097966 -0.00356567 0.0856819 + 0.0104253 0 0.107102 + 0.0097966 0.00356567 0.107102 + 0.00798626 0.00670127 0.107102 + 0.00521266 0.00902859 0.107102 + 0.00181034 0.0102669 0.107102 + -0.00181034 0.0102669 0.107102 + -0.00521266 0.00902859 0.107102 + -0.00798626 0.00670127 0.107102 + -0.0097966 0.00356567 0.107102 + -0.0104253 0 0.107102 + -0.0097966 -0.00356567 0.107102 + -0.00798626 -0.00670127 0.107102 + -0.00521266 -0.00902859 0.107102 + -0.00181034 -0.0102669 0.107102 + 0.00181034 -0.0102669 0.107102 + 0.00521266 -0.00902859 0.107102 + 0.00798626 -0.00670127 0.107102 + 0.0097966 -0.00356567 0.107102 + 0 0 0.107102 + faces 216 + 0 2 1 1 0 54 55 2 + 0 3 2 1 0 53 54 2 + 0 4 3 1 0 52 53 2 + 0 5 4 1 0 51 52 2 + 0 6 5 1 0 50 51 2 + 0 7 6 1 0 49 50 2 + 0 8 7 1 0 48 49 2 + 0 9 8 1 0 47 48 2 + 0 10 9 1 0 46 47 2 + 0 11 10 1 0 61 46 2 + 0 12 11 1 0 60 61 2 + 0 13 12 1 0 59 60 2 + 0 14 13 1 0 6 59 2 + 0 15 14 1 0 5 6 2 + 0 16 15 1 0 58 5 2 + 0 17 16 1 0 57 58 2 + 0 18 17 1 0 56 57 2 + 0 1 18 1 0 55 56 2 + 1 20 19 8 1 11 10 3 + 1 2 20 8 1 2 11 3 + 2 21 20 8 2 62 11 3 + 2 3 21 8 2 63 62 3 + 3 22 21 8 3 13 12 3 + 3 4 22 8 3 4 13 3 + 4 23 22 8 4 14 13 3 + 4 5 23 8 4 5 14 3 + 5 24 23 8 5 15 14 3 + 5 6 24 8 5 6 15 3 + 6 25 24 8 6 16 15 3 + 6 7 25 8 6 7 16 3 + 7 26 25 8 7 64 16 3 + 7 8 26 8 7 65 64 3 + 8 27 26 8 8 18 17 3 + 8 9 27 8 8 9 18 3 + 9 28 27 8 9 10 18 3 + 9 10 28 8 9 1 10 3 + 10 29 28 8 1 11 10 3 + 10 11 29 8 1 2 11 3 + 11 30 29 8 2 62 11 3 + 11 12 30 8 2 63 62 3 + 12 31 30 8 3 13 12 3 + 12 13 31 8 3 4 13 3 + 13 32 31 8 4 14 13 3 + 13 14 32 8 4 5 14 3 + 14 33 32 8 5 15 14 3 + 14 15 33 8 5 6 15 3 + 15 34 33 8 6 16 15 3 + 15 16 34 8 6 7 16 3 + 16 35 34 8 7 64 16 3 + 16 17 35 8 7 65 64 3 + 17 36 35 8 8 18 17 3 + 17 18 36 8 8 9 18 3 + 18 19 36 8 9 10 18 3 + 18 1 19 8 9 1 10 3 + 19 38 37 8 10 20 19 3 + 19 20 38 8 10 11 20 3 + 20 39 38 8 11 66 20 3 + 20 21 39 8 11 62 66 3 + 21 40 39 8 12 22 21 3 + 21 22 40 8 12 13 22 3 + 22 41 40 8 13 23 22 3 + 22 23 41 8 13 14 23 3 + 23 42 41 8 14 24 23 3 + 23 24 42 8 14 15 24 3 + 24 43 42 8 15 25 24 3 + 24 25 43 8 15 16 25 3 + 25 44 43 8 16 67 25 3 + 25 26 44 8 16 64 67 3 + 26 45 44 8 17 27 26 3 + 26 27 45 8 17 18 27 3 + 27 46 45 8 18 19 27 3 + 27 28 46 8 18 10 19 3 + 28 47 46 8 10 20 19 3 + 28 29 47 8 10 11 20 3 + 29 48 47 8 11 66 20 3 + 29 30 48 8 11 62 66 3 + 30 49 48 8 12 22 21 3 + 30 31 49 8 12 13 22 3 + 31 50 49 8 13 23 22 3 + 31 32 50 8 13 14 23 3 + 32 51 50 8 14 24 23 3 + 32 33 51 8 14 15 24 3 + 33 52 51 8 15 25 24 3 + 33 34 52 8 15 16 25 3 + 34 53 52 8 16 67 25 3 + 34 35 53 8 16 64 67 3 + 35 54 53 8 17 27 26 3 + 35 36 54 8 17 18 27 3 + 36 37 54 8 18 19 27 3 + 36 19 37 8 18 10 19 3 + 37 56 55 8 19 29 28 3 + 37 38 56 8 19 20 29 3 + 38 57 56 8 20 68 29 3 + 38 39 57 8 20 66 68 3 + 39 58 57 8 21 31 30 3 + 39 40 58 8 21 22 31 3 + 40 59 58 8 22 32 31 3 + 40 41 59 8 22 23 32 3 + 41 60 59 8 23 33 32 3 + 41 42 60 8 23 24 33 3 + 42 61 60 8 24 34 33 3 + 42 43 61 8 24 25 34 3 + 43 62 61 8 25 69 34 3 + 43 44 62 8 25 67 69 3 + 44 63 62 8 26 36 35 3 + 44 45 63 8 26 27 36 3 + 45 64 63 8 27 28 36 3 + 45 46 64 8 27 19 28 3 + 46 65 64 8 19 29 28 3 + 46 47 65 8 19 20 29 3 + 47 66 65 8 20 68 29 3 + 47 48 66 8 20 66 68 3 + 48 67 66 8 21 31 30 3 + 48 49 67 8 21 22 31 3 + 49 68 67 8 22 32 31 3 + 49 50 68 8 22 23 32 3 + 50 69 68 8 23 33 32 3 + 50 51 69 8 23 24 33 3 + 51 70 69 8 24 34 33 3 + 51 52 70 8 24 25 34 3 + 52 71 70 8 25 69 34 3 + 52 53 71 8 25 67 69 3 + 53 72 71 8 26 36 35 3 + 53 54 72 8 26 27 36 3 + 54 55 72 8 27 28 36 3 + 54 37 55 8 27 19 28 3 + 55 74 73 8 28 38 37 3 + 55 56 74 8 28 29 38 3 + 56 75 74 8 29 70 38 3 + 56 57 75 8 29 68 70 3 + 57 76 75 8 30 40 39 3 + 57 58 76 8 30 31 40 3 + 58 77 76 8 31 41 40 3 + 58 59 77 8 31 32 41 3 + 59 78 77 8 32 42 41 3 + 59 60 78 8 32 33 42 3 + 60 79 78 8 33 43 42 3 + 60 61 79 8 33 34 43 3 + 61 80 79 8 34 71 43 3 + 61 62 80 8 34 69 71 3 + 62 81 80 8 35 45 44 3 + 62 63 81 8 35 36 45 3 + 63 82 81 8 36 37 45 3 + 63 64 82 8 36 28 37 3 + 64 83 82 8 28 38 37 3 + 64 65 83 8 28 29 38 3 + 65 84 83 8 29 70 38 3 + 65 66 84 8 29 68 70 3 + 66 85 84 8 30 40 39 3 + 66 67 85 8 30 31 40 3 + 67 86 85 8 31 41 40 3 + 67 68 86 8 31 32 41 3 + 68 87 86 8 32 42 41 3 + 68 69 87 8 32 33 42 3 + 69 88 87 8 33 43 42 3 + 69 70 88 8 33 34 43 3 + 70 89 88 8 34 71 43 3 + 70 71 89 8 34 69 71 3 + 71 90 89 8 35 45 44 3 + 71 72 90 8 35 36 45 3 + 72 73 90 8 36 37 45 3 + 72 55 73 8 36 28 37 3 + 73 92 91 8 37 72 73 3 + 73 74 92 8 37 38 72 3 + 74 93 92 8 38 74 72 3 + 74 75 93 8 38 70 74 3 + 75 94 93 8 39 75 76 3 + 75 76 94 8 39 40 75 3 + 76 95 94 8 40 51 75 3 + 76 77 95 8 40 41 51 3 + 77 96 95 8 41 50 51 3 + 77 78 96 8 41 42 50 3 + 78 97 96 8 42 77 50 3 + 78 79 97 8 42 43 77 3 + 79 98 97 8 43 78 77 3 + 79 80 98 8 43 71 78 3 + 80 99 98 8 44 79 80 3 + 80 81 99 8 44 45 79 3 + 81 100 99 8 45 73 79 3 + 81 82 100 8 45 37 73 3 + 82 101 100 8 37 72 73 3 + 82 83 101 8 37 38 72 3 + 83 102 101 8 38 74 72 3 + 83 84 102 8 38 70 74 3 + 84 103 102 8 39 75 76 3 + 84 85 103 8 39 40 75 3 + 85 104 103 8 40 51 75 3 + 85 86 104 8 40 41 51 3 + 86 105 104 8 41 50 51 3 + 86 87 105 8 41 42 50 3 + 87 106 105 8 42 77 50 3 + 87 88 106 8 42 43 77 3 + 88 107 106 8 43 78 77 3 + 88 89 107 8 43 71 78 3 + 89 108 107 8 44 79 80 3 + 89 90 108 8 44 45 79 3 + 90 91 108 8 45 73 79 3 + 90 73 91 8 45 37 73 3 + 109 91 92 1 0 46 47 1 + 109 92 93 1 0 47 48 1 + 109 93 94 1 0 48 49 1 + 109 94 95 1 0 49 50 1 + 109 95 96 1 0 50 51 1 + 109 96 97 1 0 51 52 1 + 109 97 98 1 0 52 53 1 + 109 98 99 1 0 53 54 1 + 109 99 100 1 0 54 55 1 + 109 100 101 1 0 55 56 1 + 109 101 102 1 0 56 57 1 + 109 102 103 1 0 57 58 1 + 109 103 104 1 0 58 5 1 + 109 104 105 1 0 5 6 1 + 109 105 106 1 0 6 59 1 + 109 106 107 1 0 59 60 1 + 109 107 108 1 0 60 61 1 + 109 108 91 1 0 61 46 1 + tverts 81 + 0.5 0.5 0 + 0.5 0.000499457 0 + 0.673475 0.000499457 0 + 0.11736 0.000499457 0 + 0.250249 0.000499457 0 + 0.413262 0.000499457 0 + 0.586738 0.000499457 0 + 0.749751 0.000499457 0 + 0.173973 0.000499457 0 + 0.326525 0.000499457 0 + 0.5 0.200301 0 + 0.673475 0.200301 0 + 0.11736 0.200301 0 + 0.250249 0.200301 0 + 0.413262 0.200301 0 + 0.586738 0.200301 0 + 0.749751 0.200301 0 + 0.173973 0.200301 0 + 0.326525 0.200301 0 + 0.5 0.400101 0 + 0.673475 0.400101 0 + 0.11736 0.400101 0 + 0.250249 0.400101 0 + 0.413262 0.400101 0 + 0.586738 0.400101 0 + 0.749751 0.400101 0 + 0.173973 0.400101 0 + 0.326525 0.400101 0 + 0.5 0.599902 0 + 0.673475 0.599902 0 + 0.11736 0.599902 0 + 0.250249 0.599902 0 + 0.413262 0.599902 0 + 0.586738 0.599902 0 + 0.749751 0.599902 0 + 0.173973 0.599902 0 + 0.326525 0.599902 0 + 0.5 0.799703 0 + 0.673475 0.799703 0 + 0.11736 0.799703 0 + 0.250249 0.799703 0 + 0.413262 0.799703 0 + 0.586738 0.799703 0 + 0.749751 0.799703 0 + 0.173973 0.799703 0 + 0.326525 0.799703 0 + 0.9995 0.5 0 + 0.969378 0.673475 0 + 0.88264 0.826027 0 + 0.749751 0.939255 0 + 0.586738 0.9995 0 + 0.413262 0.9995 0 + 0.250249 0.939255 0 + 0.11736 0.826027 0 + 0.0306221 0.673475 0 + 0.000499517 0.5 0 + 0.030622 0.326525 0 + 0.11736 0.173973 0 + 0.250249 0.0607453 0 + 0.749751 0.0607451 0 + 0.88264 0.173973 0 + 0.969378 0.326525 0 + 0.826027 0.200301 0 + 0.826027 0.000499457 0 + 0.88264 0.200301 0 + 0.88264 0.000499457 0 + 0.826027 0.400101 0 + 0.88264 0.400101 0 + 0.826027 0.599902 0 + 0.88264 0.599902 0 + 0.826027 0.799703 0 + 0.88264 0.799703 0 + 0.673475 0.9995 0 + 0.5 0.9995 0 + 0.826027 0.9995 0 + 0.250249 0.9995 0 + 0.11736 0.9995 0 + 0.749751 0.9995 0 + 0.88264 0.9995 0 + 0.326525 0.9995 0 + 0.173973 0.9995 0 +endnode +node dummy rootdummy + parent box09 + position -0.00136631 0.087303 0.123997 + orientation 0.588058 0.577165 -0.566629 -2.06984 + wirecolor 0.839216 0.898039 0.65098 +endnode +node trimesh guard_curved + parent rootdummy + orientation 0 0 0 0 + position 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center -0.00134003 11.8372 0 + ambient 0 0 0 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 5 + selfillumcolor 0.2 0.2 0.2 + bitmap aged_steel_dk + verts 42 + -0.00763616 0.141653 -0.131431 + -0.0076432 0.134515 -0.134606 + -0.00899189 0.126187 -0.106653 + -0.00899784 0.116262 -0.110058 + -0.0103696 0.114295 -0.0808058 + -0.0103739 0.101159 -0.0840942 + -0.01177 0.1061 -0.0542008 + -0.0117723 0.0893894 -0.0569378 + -0.0134621 0.109266 -0.0279758 + -0.0183767 0.0803402 -0.0328609 + -0.0101663 0.156403 3.32605e-07 + -0.0134623 0.109266 0.0279752 + -0.0183768 0.08034 0.0328611 + -0.0117702 0.1061 0.0542012 + -0.0117726 0.0893892 0.0569372 + -0.0103699 0.114294 0.0808062 + -0.0103741 0.101159 0.0840942 + -0.00899226 0.126186 0.106653 + -0.00899823 0.116261 0.110057 + -0.00763663 0.141652 0.131431 + -0.0076436 0.134514 0.134605 + 0.00694994 0.141677 -0.131498 + 0.00694295 0.134539 -0.134673 + 0.00851152 0.126205 -0.106719 + 0.00850557 0.11628 -0.110124 + 0.0100511 0.114307 -0.0808647 + 0.0100469 0.101172 -0.0841528 + 0.011568 0.106106 -0.0542458 + 0.0115656 0.0893956 -0.0569828 + 0.0133386 0.109267 -0.0280027 + 0.01835 0.0803414 -0.0328908 + 0.0101661 0.156403 3.83505e-07 + 0.0133385 0.109267 0.0280033 + 0.0183499 0.0803413 0.0328902 + 0.0115679 0.106106 0.0542462 + 0.0115654 0.0893953 0.0569822 + 0.0100508 0.114306 0.0808642 + 0.0100466 0.101171 0.0841522 + 0.00851114 0.126204 0.106719 + 0.00850518 0.116279 0.110123 + 0.00694948 0.141676 0.131498 + 0.00694249 0.134538 0.134673 + faces 80 + 2 0 3 1 2 0 3 1 + 1 3 0 1 1 3 0 1 + 4 2 5 1 4 2 5 1 + 3 5 2 1 3 5 2 1 + 6 4 7 1 6 4 7 1 + 5 7 4 1 5 7 4 1 + 8 6 9 1 8 6 9 1 + 7 9 6 1 7 9 6 1 + 13 11 14 1 13 11 14 1 + 12 14 11 1 12 14 11 1 + 15 13 16 1 15 13 16 1 + 14 16 13 1 14 16 13 1 + 17 15 18 1 17 15 18 1 + 16 18 15 1 16 18 15 1 + 19 17 20 1 19 17 20 1 + 18 20 17 1 18 20 17 1 + 22 21 24 2 22 21 24 2 + 23 24 21 2 23 24 21 2 + 24 23 26 2 24 23 26 2 + 25 26 23 2 25 26 23 2 + 26 25 28 2 26 25 28 2 + 27 28 25 2 27 28 25 2 + 28 27 30 2 28 27 30 2 + 29 30 27 2 29 30 27 2 + 33 32 35 2 32 31 34 2 + 34 35 32 2 33 34 31 2 + 35 34 37 2 34 33 36 2 + 36 37 34 2 35 36 33 2 + 37 36 39 2 36 35 38 2 + 38 39 36 2 37 38 35 2 + 39 38 41 2 38 37 40 2 + 40 41 38 2 39 40 37 2 + 1 0 22 0 1 0 22 5 + 21 22 0 0 21 22 0 5 + 3 1 24 4 3 1 24 4 + 22 24 1 4 22 24 1 4 + 5 3 26 4 5 3 26 4 + 24 26 3 4 24 26 3 4 + 7 5 28 4 7 5 28 4 + 26 28 5 4 26 28 5 4 + 9 7 30 4 9 7 30 4 + 28 30 7 4 28 30 7 4 + 14 12 35 4 14 12 34 4 + 33 35 12 4 32 34 12 4 + 16 14 37 4 16 14 36 4 + 35 37 14 4 34 36 14 4 + 18 16 39 4 18 16 38 4 + 37 39 16 4 36 38 16 4 + 20 18 41 4 20 18 40 4 + 39 41 18 4 38 40 18 4 + 19 20 40 0 19 20 39 6 + 41 40 20 0 40 39 20 6 + 17 19 38 16 17 19 37 3 + 40 38 19 16 39 37 19 3 + 15 17 36 16 15 17 35 3 + 38 36 17 16 37 35 17 3 + 13 15 34 16 13 15 33 3 + 36 34 15 16 35 33 15 3 + 11 13 32 16 11 13 31 3 + 34 32 13 16 33 31 13 3 + 10 11 31 16 10 11 10 3 + 32 31 11 16 31 10 11 3 + 8 10 29 8 8 10 29 3 + 31 29 10 8 10 29 10 3 + 6 8 27 8 6 8 27 3 + 29 27 8 8 29 27 8 3 + 4 6 25 8 4 6 25 3 + 27 25 6 8 27 25 6 3 + 2 4 23 8 2 4 23 3 + 25 23 4 8 25 23 4 3 + 0 2 21 8 0 2 21 3 + 23 21 2 8 23 21 2 3 + 11 10 8 1 11 10 8 1 + 12 11 9 1 12 11 9 1 + 11 8 9 1 11 8 9 1 + 29 31 32 2 29 10 31 1 + 30 29 33 2 30 29 32 1 + 32 33 29 2 31 32 29 1 + 9 30 12 4 9 30 12 1 + 33 12 30 4 32 12 30 1 + tverts 41 + 0.0125251 0.805779 0 + 0.000750452 0.71203 0 + 0.104425 0.602649 0 + 0.0917983 0.472295 0 + 0.200293 0.44646 0 + 0.188096 0.273941 0 + 0.29897 0.338828 0 + 0.288818 0.119354 0 + 0.396238 0.380409 0 + 0.378119 0.000501812 0 + 0.500001 0.999501 0 + 0.603759 0.380407 0 + 0.621881 0.000499576 0 + 0.701031 0.338824 0 + 0.711179 0.119351 0 + 0.799708 0.446455 0 + 0.811903 0.273937 0 + 0.895575 0.602642 0 + 0.9082 0.472288 0 + 0.987476 0.805771 0 + 0.999248 0.712021 0 + 0.0122744 0.806094 0 + 0.000499487 0.712344 0 + 0.10418 0.602885 0 + 0.0915533 0.472531 0 + 0.200074 0.446617 0 + 0.187879 0.274099 0 + 0.298803 0.338909 0 + 0.288652 0.119434 0 + 0.396138 0.380423 0 + 0.378008 0.000517368 0 + 0.603863 0.380421 0 + 0.621989 0.000516593 0 + 0.701198 0.338905 0 + 0.711346 0.119431 0 + 0.799924 0.446612 0 + 0.812119 0.274093 0 + 0.895819 0.602878 0 + 0.908445 0.472524 0 + 0.987725 0.806085 0 + 0.999501 0.712335 0 +endnode +node trimesh pommel + parent rootdummy + orientation 0 0 0 0 + position 0.000183582 -0.14571 0.000191947 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 -0.0465549 4.76837e-06 + ambient 0 0 0 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 5 + selfillumcolor 0.2 0.2 0.2 + bitmap aged_steel_dk + verts 6 + 0 0.0281357 0 + 0 -0.00507035 0.0436009 + 0.0436009 -0.00507034 0 + -0.0436009 -0.00507034 0 + 0 -0.00507034 -0.0436008 + 0 -0.0290668 0 + faces 8 + 0 1 2 1 0 1 2 2 + 0 3 1 1 0 2 1 2 + 0 4 3 1 0 3 2 2 + 0 2 4 1 0 2 3 2 + 5 2 1 1 4 2 1 1 + 5 1 3 1 4 1 2 1 + 5 3 4 1 4 2 3 1 + 5 4 2 1 4 3 2 1 + tverts 5 + 0.499999 0.9995 0 + 0.9995 0.41958 0 + 0.499999 0.41958 0 + 0.000500053 0.419581 0 + 0.499999 0.000499547 0 +endnode +node trimesh grip + parent rootdummy + orientation 0 0 0 0 + position 0.000183582 -0.14571 0.000191947 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0.0238699 11.5009 -0.00238001 + ambient 0 0 0 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 5 + selfillumcolor 0 0 0 + bitmap al_leather06_tex + verts 8 + 0.000238686 0.000156174 -0.0197865 + 0.000238689 0.229711 -0.0231462 + 0.0233611 0.229862 -2.38153e-05 + 0.0200014 0.000156174 -2.38188e-05 + -0.019524 0.000156174 -2.38162e-05 + 0.000238688 0.000156174 0.0197389 + 0.000238691 0.229711 0.0230986 + -0.0228837 0.229862 -2.38127e-05 + faces 10 + 0 1 2 1 0 1 2 4 + 2 3 0 1 2 3 0 4 + 4 5 6 1 3 4 5 4 + 6 7 4 1 5 2 3 4 + 0 3 5 1 0 3 4 4 + 5 4 0 1 4 3 0 4 + 3 2 6 1 3 2 5 4 + 6 5 3 1 5 4 3 4 + 1 0 4 1 1 0 3 4 + 4 7 1 1 3 2 1 4 + tverts 6 + 0.0730774 0.000499547 0 + 0.000499606 0.998844 0 + 0.5 0.9995 0 + 0.5 0.000499547 0 + 0.926923 0.000499547 0 + 0.9995 0.998844 0 +endnode +node trimesh blade_wd_fuller + parent rootdummy + position 0 0.1 0 + orientation 0 0 -1 -1.5708 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center -0.00134003 11.8372 0 + ambient 0.5 0.5 0.5 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 1 + selfillumcolor 0.2 0.2 0.2 + bitmap aged_steel + verts 31 + 0.0446272 0.00550057 0.0173199 + -0.029824 0.00550058 0.0161778 + 0.0446273 -0.00550058 0.0173199 + -0.029824 -0.00550057 0.0161778 + 0.0446272 -0.00550058 -0.0173199 + -0.029824 -0.00550057 -0.0161778 + 0.0446271 0.00550057 -0.0173199 + -0.029824 0.00550058 -0.0161778 + 0.0650452 0 -0.030899 + 0.0650452 0.00550057 -0.0134468 + 0.0650454 -0.00550058 -0.0134468 + 0.0650452 0.00550057 0.0134468 + 0.0650454 -0.00550058 0.0134468 + 0.0650454 0 0.030899 + 0.562736 0 -0.0254337 + 0.562736 0.00460856 -0.0077243 + 0.562736 -0.00460865 -0.00772429 + 0.562736 0.00460856 0.00772431 + 0.562736 -0.00460865 0.00772432 + 0.562736 0 0.0254337 + 0.761302 0 -0.0218595 + 0.761302 0.00405141 -0.00631497 + 0.761302 -0.00405154 -0.00631497 + 0.761302 0.00405141 0.00631498 + 0.761302 -0.00405154 0.00631498 + 0.761302 0 0.0218595 + 0.806732 0 -0.0165024 + 0.806732 0.0029537 0 + 0.806732 -0.00295384 0 + 0.806732 0 0.0165024 + 0.841443 0 0 + faces 56 + 0 1 3 1 0 1 1 0 + 3 2 0 1 1 0 0 0 + 2 3 5 2 0 1 2 0 + 5 4 2 2 2 3 0 0 + 4 5 7 1 3 2 2 0 + 7 6 4 1 2 3 3 0 + 6 7 1 2 3 2 1 0 + 1 0 6 2 1 0 3 0 + 6 9 8 4 3 4 5 0 + 4 8 10 8 3 5 4 0 + 4 6 8 16 3 3 5 0 + 6 0 11 2 3 0 6 0 + 11 9 6 2 6 4 3 0 + 2 4 10 2 0 3 4 0 + 10 12 2 2 4 6 0 0 + 0 13 11 16 0 7 6 0 + 0 2 13 4 0 0 7 0 + 2 12 13 32 0 6 7 0 + 8 9 15 4 5 4 8 0 + 15 14 8 4 8 9 5 0 + 10 8 14 8 4 5 9 0 + 14 16 10 8 9 8 4 0 + 9 11 17 2 4 6 10 0 + 17 15 9 2 10 8 4 0 + 12 10 16 2 6 4 8 0 + 16 18 12 2 8 10 6 0 + 11 13 19 16 6 7 11 0 + 19 17 11 16 11 10 6 0 + 13 12 18 32 7 6 10 0 + 18 19 13 32 10 11 7 0 + 14 15 21 4 9 8 12 0 + 21 20 14 4 12 13 9 0 + 16 14 20 8 8 9 13 0 + 20 22 16 8 13 12 8 0 + 15 17 23 2 8 10 14 0 + 23 21 15 2 14 12 8 0 + 18 16 22 2 10 8 12 0 + 22 24 18 2 12 14 10 0 + 17 19 25 16 10 11 15 0 + 25 23 17 16 15 14 10 0 + 19 18 24 32 11 10 14 0 + 24 25 19 32 14 15 11 0 + 20 21 27 4 13 12 16 0 + 27 26 20 4 16 17 13 0 + 22 20 26 8 12 13 17 0 + 26 28 22 8 17 16 12 0 + 21 23 27 2 12 14 16 0 + 24 22 28 2 14 12 16 0 + 23 25 29 16 14 15 18 0 + 29 27 23 16 18 16 14 0 + 25 24 28 32 15 14 16 0 + 28 29 25 32 16 18 15 0 + 26 27 30 4 17 16 19 0 + 28 26 30 8 16 17 19 0 + 27 29 30 16 16 18 19 0 + 29 28 30 32 18 16 19 0 + tverts 20 + 0.905409 0.106921 0 + 0.988976 0.108043 0 + 0.988976 0.139821 0 + 0.905409 0.140942 0 + 0.88249 0.137138 0 + 0.88249 0.154279 0 + 0.88249 0.110725 0 + 0.88249 0.0935844 0 + 0.323858 0.130527 0 + 0.323858 0.145647 0 + 0.323858 0.117337 0 + 0.323858 0.102216 0 + 0.100978 0.128577 0 + 0.100978 0.140013 0 + 0.100978 0.119286 0 + 0.100978 0.10785 0 + 0.0499846 0.123932 0 + 0.0499846 0.133993 0 + 0.0499845 0.11387 0 + 0.0110236 0.123932 0 +endnode +node trimesh box10 + parent abp_weaprack_1 + orientation 0 0 0 0 + position 0.141527 -0.505512 1.03442 + wirecolor 0.603922 0.839216 0.894118 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 1.20434 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.0331831 -0.0451583 0 + 0.0331831 -0.0451583 0 + -0.0331831 0.0451583 0 + 0.0331831 0.0451583 0 + -0.0331831 -0.0451583 0.0240868 + 0.0331831 -0.0451583 0.0240868 + -0.0331831 0.0451583 0.0240868 + 0.0331831 0.0451583 0.0240868 + faces 12 + 0 2 3 2 0 2 3 2 + 3 1 0 2 3 1 0 2 + 4 5 7 4 1 0 2 1 + 7 6 4 4 2 3 1 1 + 0 1 5 8 1 0 2 5 + 5 4 0 8 2 3 1 5 + 1 3 7 16 1 0 2 4 + 7 5 1 16 2 3 1 4 + 3 2 6 32 1 0 2 6 + 6 7 3 32 2 3 1 6 + 2 0 4 64 1 0 2 3 + 4 6 2 64 2 3 1 3 + tverts 4 + 0.9995 0.000499576 0 + 0.000499576 0.000499576 0 + 0.9995 0.9995 0 + 0.000499576 0.9995 0 +endnode +node trimesh box15 + parent box10 + orientation 0 0 0 0 + position -0.00313071 0.0554636 -0.0228613 + wirecolor 0.6 0.894118 0.839216 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 3.62713 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.052301 -0.0105954 0 + 0.052301 -0.0105954 0 + -0.052301 0.0105954 0 + 0.052301 0.0105954 0 + -0.052301 -0.0105954 0.0725425 + 0.052301 -0.0105954 0.0725425 + -0.052301 0.0105954 0.0725425 + 0.052301 0.0105954 0.0725425 + faces 12 + 0 2 3 2 6 7 8 2 + 3 1 0 2 8 9 6 2 + 4 5 7 4 9 6 7 1 + 7 6 4 4 7 8 9 1 + 0 1 5 8 2 10 11 5 + 5 4 0 8 11 5 2 5 + 1 3 7 16 1 0 3 4 + 7 5 1 16 3 4 1 4 + 3 2 6 32 2 10 11 6 + 6 7 3 32 11 5 2 6 + 2 0 4 64 1 0 3 3 + 4 6 2 64 3 4 1 3 + tverts 12 + 0.999499 -1.20993 0 + 0.000499517 -1.20993 0 + -1.96563 -1.20993 0 + 0.999499 2.20993 0 + 0.000499517 2.20993 0 + -1.96563 2.20993 0 + 2.96563 0.000500709 0 + 2.96563 0.999501 0 + -1.96563 0.999499 0 + -1.96563 0.000499517 0 + 2.96563 -1.20993 0 + 2.96563 2.20993 0 +endnode +node trimesh cylinder05 + parent box15 + position 0.0369961 -0.00919205 0.0285932 + orientation -0.00307183 -0.704011 -0.710182 -3.14159 + wirecolor 0.776471 0.87451 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 5.3551 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 3 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 110 + 0 0 0 + 0.0104253 0 0 + 0.0097966 0.00356567 0 + 0.00798626 0.00670127 0 + 0.00521266 0.00902859 0 + 0.00181034 0.0102669 0 + -0.00181034 0.0102669 0 + -0.00521266 0.00902859 0 + -0.00798626 0.00670127 0 + -0.0097966 0.00356567 0 + -0.0104253 0 0 + -0.0097966 -0.00356567 0 + -0.00798626 -0.00670127 0 + -0.00521266 -0.00902859 0 + -0.00181034 -0.0102669 0 + 0.00181034 -0.0102669 0 + 0.00521266 -0.00902859 0 + 0.00798626 -0.00670127 0 + 0.0097966 -0.00356567 0 + 0.0104253 0 0.0214205 + 0.0097966 0.00356567 0.0214205 + 0.00798626 0.00670127 0.0214205 + 0.00521266 0.00902859 0.0214205 + 0.00181034 0.0102669 0.0214205 + -0.00181034 0.0102669 0.0214205 + -0.00521266 0.00902859 0.0214205 + -0.00798626 0.00670127 0.0214205 + -0.0097966 0.00356567 0.0214205 + -0.0104253 0 0.0214205 + -0.0097966 -0.00356567 0.0214205 + -0.00798626 -0.00670127 0.0214205 + -0.00521266 -0.00902859 0.0214205 + -0.00181034 -0.0102669 0.0214205 + 0.00181034 -0.0102669 0.0214205 + 0.00521266 -0.00902859 0.0214205 + 0.00798626 -0.00670127 0.0214205 + 0.0097966 -0.00356567 0.0214205 + 0.0104253 0 0.0428409 + 0.0097966 0.00356567 0.0428409 + 0.00798626 0.00670127 0.0428409 + 0.00521266 0.00902859 0.0428409 + 0.00181034 0.0102669 0.0428409 + -0.00181034 0.0102669 0.0428409 + -0.00521266 0.00902859 0.0428409 + -0.00798626 0.00670127 0.0428409 + -0.0097966 0.00356567 0.0428409 + -0.0104253 0 0.0428409 + -0.0097966 -0.00356567 0.0428409 + -0.00798626 -0.00670127 0.0428409 + -0.00521266 -0.00902859 0.0428409 + -0.00181034 -0.0102669 0.0428409 + 0.00181034 -0.0102669 0.0428409 + 0.00521266 -0.00902859 0.0428409 + 0.00798626 -0.00670127 0.0428409 + 0.0097966 -0.00356567 0.0428409 + 0.0104253 0 0.0642614 + 0.0097966 0.00356567 0.0642614 + 0.00798626 0.00670127 0.0642614 + 0.00521266 0.00902859 0.0642614 + 0.00181034 0.0102669 0.0642614 + -0.00181034 0.0102669 0.0642614 + -0.00521266 0.00902859 0.0642614 + -0.00798626 0.00670127 0.0642614 + -0.0097966 0.00356567 0.0642614 + -0.0104253 0 0.0642614 + -0.0097966 -0.00356567 0.0642614 + -0.00798626 -0.00670127 0.0642614 + -0.00521266 -0.00902859 0.0642614 + -0.00181034 -0.0102669 0.0642614 + 0.00181034 -0.0102669 0.0642614 + 0.00521266 -0.00902859 0.0642614 + 0.00798626 -0.00670127 0.0642614 + 0.0097966 -0.00356567 0.0642614 + 0.0104253 0 0.0856819 + 0.0097966 0.00356567 0.0856819 + 0.00798626 0.00670127 0.0856819 + 0.00521266 0.00902859 0.0856819 + 0.00181034 0.0102669 0.0856819 + -0.00181034 0.0102669 0.0856819 + -0.00521266 0.00902859 0.0856819 + -0.00798626 0.00670127 0.0856819 + -0.0097966 0.00356567 0.0856819 + -0.0104253 0 0.0856819 + -0.0097966 -0.00356567 0.0856819 + -0.00798626 -0.00670127 0.0856819 + -0.00521266 -0.00902859 0.0856819 + -0.00181034 -0.0102669 0.0856819 + 0.00181034 -0.0102669 0.0856819 + 0.00521266 -0.00902859 0.0856819 + 0.00798626 -0.00670127 0.0856819 + 0.0097966 -0.00356567 0.0856819 + 0.0104253 0 0.107102 + 0.0097966 0.00356567 0.107102 + 0.00798626 0.00670127 0.107102 + 0.00521266 0.00902859 0.107102 + 0.00181034 0.0102669 0.107102 + -0.00181034 0.0102669 0.107102 + -0.00521266 0.00902859 0.107102 + -0.00798626 0.00670127 0.107102 + -0.0097966 0.00356567 0.107102 + -0.0104253 0 0.107102 + -0.0097966 -0.00356567 0.107102 + -0.00798626 -0.00670127 0.107102 + -0.00521266 -0.00902859 0.107102 + -0.00181034 -0.0102669 0.107102 + 0.00181034 -0.0102669 0.107102 + 0.00521266 -0.00902859 0.107102 + 0.00798626 -0.00670127 0.107102 + 0.0097966 -0.00356567 0.107102 + 0 0 0.107102 + faces 216 + 0 2 1 1 0 54 55 2 + 0 3 2 1 0 53 54 2 + 0 4 3 1 0 52 53 2 + 0 5 4 1 0 51 52 2 + 0 6 5 1 0 50 51 2 + 0 7 6 1 0 49 50 2 + 0 8 7 1 0 48 49 2 + 0 9 8 1 0 47 48 2 + 0 10 9 1 0 46 47 2 + 0 11 10 1 0 61 46 2 + 0 12 11 1 0 60 61 2 + 0 13 12 1 0 59 60 2 + 0 14 13 1 0 6 59 2 + 0 15 14 1 0 5 6 2 + 0 16 15 1 0 58 5 2 + 0 17 16 1 0 57 58 2 + 0 18 17 1 0 56 57 2 + 0 1 18 1 0 55 56 2 + 1 20 19 8 1 11 10 3 + 1 2 20 8 1 2 11 3 + 2 21 20 8 2 62 11 3 + 2 3 21 8 2 63 62 3 + 3 22 21 8 3 13 12 3 + 3 4 22 8 3 4 13 3 + 4 23 22 8 4 14 13 3 + 4 5 23 8 4 5 14 3 + 5 24 23 8 5 15 14 3 + 5 6 24 8 5 6 15 3 + 6 25 24 8 6 16 15 3 + 6 7 25 8 6 7 16 3 + 7 26 25 8 7 64 16 3 + 7 8 26 8 7 65 64 3 + 8 27 26 8 8 18 17 3 + 8 9 27 8 8 9 18 3 + 9 28 27 8 9 10 18 3 + 9 10 28 8 9 1 10 3 + 10 29 28 8 1 11 10 3 + 10 11 29 8 1 2 11 3 + 11 30 29 8 2 62 11 3 + 11 12 30 8 2 63 62 3 + 12 31 30 8 3 13 12 3 + 12 13 31 8 3 4 13 3 + 13 32 31 8 4 14 13 3 + 13 14 32 8 4 5 14 3 + 14 33 32 8 5 15 14 3 + 14 15 33 8 5 6 15 3 + 15 34 33 8 6 16 15 3 + 15 16 34 8 6 7 16 3 + 16 35 34 8 7 64 16 3 + 16 17 35 8 7 65 64 3 + 17 36 35 8 8 18 17 3 + 17 18 36 8 8 9 18 3 + 18 19 36 8 9 10 18 3 + 18 1 19 8 9 1 10 3 + 19 38 37 8 10 20 19 3 + 19 20 38 8 10 11 20 3 + 20 39 38 8 11 66 20 3 + 20 21 39 8 11 62 66 3 + 21 40 39 8 12 22 21 3 + 21 22 40 8 12 13 22 3 + 22 41 40 8 13 23 22 3 + 22 23 41 8 13 14 23 3 + 23 42 41 8 14 24 23 3 + 23 24 42 8 14 15 24 3 + 24 43 42 8 15 25 24 3 + 24 25 43 8 15 16 25 3 + 25 44 43 8 16 67 25 3 + 25 26 44 8 16 64 67 3 + 26 45 44 8 17 27 26 3 + 26 27 45 8 17 18 27 3 + 27 46 45 8 18 19 27 3 + 27 28 46 8 18 10 19 3 + 28 47 46 8 10 20 19 3 + 28 29 47 8 10 11 20 3 + 29 48 47 8 11 66 20 3 + 29 30 48 8 11 62 66 3 + 30 49 48 8 12 22 21 3 + 30 31 49 8 12 13 22 3 + 31 50 49 8 13 23 22 3 + 31 32 50 8 13 14 23 3 + 32 51 50 8 14 24 23 3 + 32 33 51 8 14 15 24 3 + 33 52 51 8 15 25 24 3 + 33 34 52 8 15 16 25 3 + 34 53 52 8 16 67 25 3 + 34 35 53 8 16 64 67 3 + 35 54 53 8 17 27 26 3 + 35 36 54 8 17 18 27 3 + 36 37 54 8 18 19 27 3 + 36 19 37 8 18 10 19 3 + 37 56 55 8 19 29 28 3 + 37 38 56 8 19 20 29 3 + 38 57 56 8 20 68 29 3 + 38 39 57 8 20 66 68 3 + 39 58 57 8 21 31 30 3 + 39 40 58 8 21 22 31 3 + 40 59 58 8 22 32 31 3 + 40 41 59 8 22 23 32 3 + 41 60 59 8 23 33 32 3 + 41 42 60 8 23 24 33 3 + 42 61 60 8 24 34 33 3 + 42 43 61 8 24 25 34 3 + 43 62 61 8 25 69 34 3 + 43 44 62 8 25 67 69 3 + 44 63 62 8 26 36 35 3 + 44 45 63 8 26 27 36 3 + 45 64 63 8 27 28 36 3 + 45 46 64 8 27 19 28 3 + 46 65 64 8 19 29 28 3 + 46 47 65 8 19 20 29 3 + 47 66 65 8 20 68 29 3 + 47 48 66 8 20 66 68 3 + 48 67 66 8 21 31 30 3 + 48 49 67 8 21 22 31 3 + 49 68 67 8 22 32 31 3 + 49 50 68 8 22 23 32 3 + 50 69 68 8 23 33 32 3 + 50 51 69 8 23 24 33 3 + 51 70 69 8 24 34 33 3 + 51 52 70 8 24 25 34 3 + 52 71 70 8 25 69 34 3 + 52 53 71 8 25 67 69 3 + 53 72 71 8 26 36 35 3 + 53 54 72 8 26 27 36 3 + 54 55 72 8 27 28 36 3 + 54 37 55 8 27 19 28 3 + 55 74 73 8 28 38 37 3 + 55 56 74 8 28 29 38 3 + 56 75 74 8 29 70 38 3 + 56 57 75 8 29 68 70 3 + 57 76 75 8 30 40 39 3 + 57 58 76 8 30 31 40 3 + 58 77 76 8 31 41 40 3 + 58 59 77 8 31 32 41 3 + 59 78 77 8 32 42 41 3 + 59 60 78 8 32 33 42 3 + 60 79 78 8 33 43 42 3 + 60 61 79 8 33 34 43 3 + 61 80 79 8 34 71 43 3 + 61 62 80 8 34 69 71 3 + 62 81 80 8 35 45 44 3 + 62 63 81 8 35 36 45 3 + 63 82 81 8 36 37 45 3 + 63 64 82 8 36 28 37 3 + 64 83 82 8 28 38 37 3 + 64 65 83 8 28 29 38 3 + 65 84 83 8 29 70 38 3 + 65 66 84 8 29 68 70 3 + 66 85 84 8 30 40 39 3 + 66 67 85 8 30 31 40 3 + 67 86 85 8 31 41 40 3 + 67 68 86 8 31 32 41 3 + 68 87 86 8 32 42 41 3 + 68 69 87 8 32 33 42 3 + 69 88 87 8 33 43 42 3 + 69 70 88 8 33 34 43 3 + 70 89 88 8 34 71 43 3 + 70 71 89 8 34 69 71 3 + 71 90 89 8 35 45 44 3 + 71 72 90 8 35 36 45 3 + 72 73 90 8 36 37 45 3 + 72 55 73 8 36 28 37 3 + 73 92 91 8 37 72 73 3 + 73 74 92 8 37 38 72 3 + 74 93 92 8 38 74 72 3 + 74 75 93 8 38 70 74 3 + 75 94 93 8 39 75 76 3 + 75 76 94 8 39 40 75 3 + 76 95 94 8 40 51 75 3 + 76 77 95 8 40 41 51 3 + 77 96 95 8 41 50 51 3 + 77 78 96 8 41 42 50 3 + 78 97 96 8 42 77 50 3 + 78 79 97 8 42 43 77 3 + 79 98 97 8 43 78 77 3 + 79 80 98 8 43 71 78 3 + 80 99 98 8 44 79 80 3 + 80 81 99 8 44 45 79 3 + 81 100 99 8 45 73 79 3 + 81 82 100 8 45 37 73 3 + 82 101 100 8 37 72 73 3 + 82 83 101 8 37 38 72 3 + 83 102 101 8 38 74 72 3 + 83 84 102 8 38 70 74 3 + 84 103 102 8 39 75 76 3 + 84 85 103 8 39 40 75 3 + 85 104 103 8 40 51 75 3 + 85 86 104 8 40 41 51 3 + 86 105 104 8 41 50 51 3 + 86 87 105 8 41 42 50 3 + 87 106 105 8 42 77 50 3 + 87 88 106 8 42 43 77 3 + 88 107 106 8 43 78 77 3 + 88 89 107 8 43 71 78 3 + 89 108 107 8 44 79 80 3 + 89 90 108 8 44 45 79 3 + 90 91 108 8 45 73 79 3 + 90 73 91 8 45 37 73 3 + 109 91 92 1 0 46 47 1 + 109 92 93 1 0 47 48 1 + 109 93 94 1 0 48 49 1 + 109 94 95 1 0 49 50 1 + 109 95 96 1 0 50 51 1 + 109 96 97 1 0 51 52 1 + 109 97 98 1 0 52 53 1 + 109 98 99 1 0 53 54 1 + 109 99 100 1 0 54 55 1 + 109 100 101 1 0 55 56 1 + 109 101 102 1 0 56 57 1 + 109 102 103 1 0 57 58 1 + 109 103 104 1 0 58 5 1 + 109 104 105 1 0 5 6 1 + 109 105 106 1 0 6 59 1 + 109 106 107 1 0 59 60 1 + 109 107 108 1 0 60 61 1 + 109 108 91 1 0 61 46 1 + tverts 81 + 0.5 0.5 0 + 0.5 0.000499517 0 + 0.673475 0.000499517 0 + 0.11736 0.000499517 0 + 0.250249 0.000499517 0 + 0.413262 0.000499517 0 + 0.586738 0.000499517 0 + 0.749751 0.000499517 0 + 0.173973 0.000499517 0 + 0.326525 0.000499517 0 + 0.5 0.200301 0 + 0.673475 0.200301 0 + 0.11736 0.200301 0 + 0.250249 0.200301 0 + 0.413262 0.200301 0 + 0.586738 0.200301 0 + 0.749751 0.200301 0 + 0.173973 0.200301 0 + 0.326525 0.200301 0 + 0.5 0.400101 0 + 0.673475 0.400101 0 + 0.11736 0.400101 0 + 0.250249 0.400101 0 + 0.413262 0.400101 0 + 0.586738 0.400101 0 + 0.749751 0.400101 0 + 0.173973 0.400101 0 + 0.326525 0.400101 0 + 0.5 0.599902 0 + 0.673475 0.599902 0 + 0.11736 0.599902 0 + 0.250249 0.599902 0 + 0.413262 0.599902 0 + 0.586738 0.599902 0 + 0.749751 0.599902 0 + 0.173973 0.599902 0 + 0.326525 0.599902 0 + 0.5 0.799703 0 + 0.673475 0.799703 0 + 0.11736 0.799703 0 + 0.250249 0.799703 0 + 0.413262 0.799703 0 + 0.586738 0.799703 0 + 0.749751 0.799703 0 + 0.173973 0.799703 0 + 0.326525 0.799703 0 + 0.9995 0.5 0 + 0.969378 0.673475 0 + 0.88264 0.826027 0 + 0.749751 0.939255 0 + 0.586738 0.9995 0 + 0.413262 0.999501 0 + 0.250249 0.939255 0 + 0.11736 0.826027 0 + 0.0306221 0.673475 0 + 0.000499517 0.5 0 + 0.030622 0.326525 0 + 0.11736 0.173973 0 + 0.250249 0.0607453 0 + 0.749751 0.0607452 0 + 0.88264 0.173973 0 + 0.969378 0.326525 0 + 0.826027 0.200301 0 + 0.826027 0.000499517 0 + 0.88264 0.200301 0 + 0.88264 0.000499517 0 + 0.826027 0.400101 0 + 0.88264 0.400101 0 + 0.826027 0.599902 0 + 0.88264 0.599902 0 + 0.826027 0.799703 0 + 0.88264 0.799703 0 + 0.673475 0.999501 0 + 0.5 0.999501 0 + 0.826027 0.999501 0 + 0.250249 0.999501 0 + 0.11736 0.999501 0 + 0.749751 0.999501 0 + 0.88264 0.999501 0 + 0.326525 0.999501 0 + 0.173973 0.999501 0 +endnode +node trimesh cylinder04 + parent box15 + position -0.0372909 -0.00919205 0.0285932 + orientation -0.00307183 -0.704011 -0.710182 -3.14159 + wirecolor 0.776471 0.87451 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 5.3551 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 3 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 110 + 0 0 0 + 0.0104253 0 0 + 0.0097966 0.00356567 0 + 0.00798626 0.00670127 0 + 0.00521266 0.00902859 0 + 0.00181034 0.0102669 0 + -0.00181034 0.0102669 0 + -0.00521266 0.00902859 0 + -0.00798626 0.00670127 0 + -0.0097966 0.00356567 0 + -0.0104253 0 0 + -0.0097966 -0.00356567 0 + -0.00798626 -0.00670127 0 + -0.00521266 -0.00902859 0 + -0.00181034 -0.0102669 0 + 0.00181034 -0.0102669 0 + 0.00521266 -0.00902859 0 + 0.00798626 -0.00670127 0 + 0.0097966 -0.00356567 0 + 0.0104253 0 0.0214205 + 0.0097966 0.00356567 0.0214205 + 0.00798626 0.00670127 0.0214205 + 0.00521266 0.00902859 0.0214205 + 0.00181034 0.0102669 0.0214205 + -0.00181034 0.0102669 0.0214205 + -0.00521266 0.00902859 0.0214205 + -0.00798626 0.00670127 0.0214205 + -0.0097966 0.00356567 0.0214205 + -0.0104253 0 0.0214205 + -0.0097966 -0.00356567 0.0214205 + -0.00798626 -0.00670127 0.0214205 + -0.00521266 -0.00902859 0.0214205 + -0.00181034 -0.0102669 0.0214205 + 0.00181034 -0.0102669 0.0214205 + 0.00521266 -0.00902859 0.0214205 + 0.00798626 -0.00670127 0.0214205 + 0.0097966 -0.00356567 0.0214205 + 0.0104253 0 0.0428409 + 0.0097966 0.00356567 0.0428409 + 0.00798626 0.00670127 0.0428409 + 0.00521266 0.00902859 0.0428409 + 0.00181034 0.0102669 0.0428409 + -0.00181034 0.0102669 0.0428409 + -0.00521266 0.00902859 0.0428409 + -0.00798626 0.00670127 0.0428409 + -0.0097966 0.00356567 0.0428409 + -0.0104253 0 0.0428409 + -0.0097966 -0.00356567 0.0428409 + -0.00798626 -0.00670127 0.0428409 + -0.00521266 -0.00902859 0.0428409 + -0.00181034 -0.0102669 0.0428409 + 0.00181034 -0.0102669 0.0428409 + 0.00521266 -0.00902859 0.0428409 + 0.00798626 -0.00670127 0.0428409 + 0.0097966 -0.00356567 0.0428409 + 0.0104253 0 0.0642614 + 0.0097966 0.00356567 0.0642614 + 0.00798626 0.00670127 0.0642614 + 0.00521266 0.00902859 0.0642614 + 0.00181034 0.0102669 0.0642614 + -0.00181034 0.0102669 0.0642614 + -0.00521266 0.00902859 0.0642614 + -0.00798626 0.00670127 0.0642614 + -0.0097966 0.00356567 0.0642614 + -0.0104253 0 0.0642614 + -0.0097966 -0.00356567 0.0642614 + -0.00798626 -0.00670127 0.0642614 + -0.00521266 -0.00902859 0.0642614 + -0.00181034 -0.0102669 0.0642614 + 0.00181034 -0.0102669 0.0642614 + 0.00521266 -0.00902859 0.0642614 + 0.00798626 -0.00670127 0.0642614 + 0.0097966 -0.00356567 0.0642614 + 0.0104253 0 0.0856819 + 0.0097966 0.00356567 0.0856819 + 0.00798626 0.00670127 0.0856819 + 0.00521266 0.00902859 0.0856819 + 0.00181034 0.0102669 0.0856819 + -0.00181034 0.0102669 0.0856819 + -0.00521266 0.00902859 0.0856819 + -0.00798626 0.00670127 0.0856819 + -0.0097966 0.00356567 0.0856819 + -0.0104253 0 0.0856819 + -0.0097966 -0.00356567 0.0856819 + -0.00798626 -0.00670127 0.0856819 + -0.00521266 -0.00902859 0.0856819 + -0.00181034 -0.0102669 0.0856819 + 0.00181034 -0.0102669 0.0856819 + 0.00521266 -0.00902859 0.0856819 + 0.00798626 -0.00670127 0.0856819 + 0.0097966 -0.00356567 0.0856819 + 0.0104253 0 0.107102 + 0.0097966 0.00356567 0.107102 + 0.00798626 0.00670127 0.107102 + 0.00521266 0.00902859 0.107102 + 0.00181034 0.0102669 0.107102 + -0.00181034 0.0102669 0.107102 + -0.00521266 0.00902859 0.107102 + -0.00798626 0.00670127 0.107102 + -0.0097966 0.00356567 0.107102 + -0.0104253 0 0.107102 + -0.0097966 -0.00356567 0.107102 + -0.00798626 -0.00670127 0.107102 + -0.00521266 -0.00902859 0.107102 + -0.00181034 -0.0102669 0.107102 + 0.00181034 -0.0102669 0.107102 + 0.00521266 -0.00902859 0.107102 + 0.00798626 -0.00670127 0.107102 + 0.0097966 -0.00356567 0.107102 + 0 0 0.107102 + faces 216 + 0 2 1 1 0 54 55 2 + 0 3 2 1 0 53 54 2 + 0 4 3 1 0 52 53 2 + 0 5 4 1 0 51 52 2 + 0 6 5 1 0 50 51 2 + 0 7 6 1 0 49 50 2 + 0 8 7 1 0 48 49 2 + 0 9 8 1 0 47 48 2 + 0 10 9 1 0 46 47 2 + 0 11 10 1 0 61 46 2 + 0 12 11 1 0 60 61 2 + 0 13 12 1 0 59 60 2 + 0 14 13 1 0 6 59 2 + 0 15 14 1 0 5 6 2 + 0 16 15 1 0 58 5 2 + 0 17 16 1 0 57 58 2 + 0 18 17 1 0 56 57 2 + 0 1 18 1 0 55 56 2 + 1 20 19 8 1 11 10 3 + 1 2 20 8 1 2 11 3 + 2 21 20 8 2 62 11 3 + 2 3 21 8 2 63 62 3 + 3 22 21 8 3 13 12 3 + 3 4 22 8 3 4 13 3 + 4 23 22 8 4 14 13 3 + 4 5 23 8 4 5 14 3 + 5 24 23 8 5 15 14 3 + 5 6 24 8 5 6 15 3 + 6 25 24 8 6 16 15 3 + 6 7 25 8 6 7 16 3 + 7 26 25 8 7 64 16 3 + 7 8 26 8 7 65 64 3 + 8 27 26 8 8 18 17 3 + 8 9 27 8 8 9 18 3 + 9 28 27 8 9 10 18 3 + 9 10 28 8 9 1 10 3 + 10 29 28 8 1 11 10 3 + 10 11 29 8 1 2 11 3 + 11 30 29 8 2 62 11 3 + 11 12 30 8 2 63 62 3 + 12 31 30 8 3 13 12 3 + 12 13 31 8 3 4 13 3 + 13 32 31 8 4 14 13 3 + 13 14 32 8 4 5 14 3 + 14 33 32 8 5 15 14 3 + 14 15 33 8 5 6 15 3 + 15 34 33 8 6 16 15 3 + 15 16 34 8 6 7 16 3 + 16 35 34 8 7 64 16 3 + 16 17 35 8 7 65 64 3 + 17 36 35 8 8 18 17 3 + 17 18 36 8 8 9 18 3 + 18 19 36 8 9 10 18 3 + 18 1 19 8 9 1 10 3 + 19 38 37 8 10 20 19 3 + 19 20 38 8 10 11 20 3 + 20 39 38 8 11 66 20 3 + 20 21 39 8 11 62 66 3 + 21 40 39 8 12 22 21 3 + 21 22 40 8 12 13 22 3 + 22 41 40 8 13 23 22 3 + 22 23 41 8 13 14 23 3 + 23 42 41 8 14 24 23 3 + 23 24 42 8 14 15 24 3 + 24 43 42 8 15 25 24 3 + 24 25 43 8 15 16 25 3 + 25 44 43 8 16 67 25 3 + 25 26 44 8 16 64 67 3 + 26 45 44 8 17 27 26 3 + 26 27 45 8 17 18 27 3 + 27 46 45 8 18 19 27 3 + 27 28 46 8 18 10 19 3 + 28 47 46 8 10 20 19 3 + 28 29 47 8 10 11 20 3 + 29 48 47 8 11 66 20 3 + 29 30 48 8 11 62 66 3 + 30 49 48 8 12 22 21 3 + 30 31 49 8 12 13 22 3 + 31 50 49 8 13 23 22 3 + 31 32 50 8 13 14 23 3 + 32 51 50 8 14 24 23 3 + 32 33 51 8 14 15 24 3 + 33 52 51 8 15 25 24 3 + 33 34 52 8 15 16 25 3 + 34 53 52 8 16 67 25 3 + 34 35 53 8 16 64 67 3 + 35 54 53 8 17 27 26 3 + 35 36 54 8 17 18 27 3 + 36 37 54 8 18 19 27 3 + 36 19 37 8 18 10 19 3 + 37 56 55 8 19 29 28 3 + 37 38 56 8 19 20 29 3 + 38 57 56 8 20 68 29 3 + 38 39 57 8 20 66 68 3 + 39 58 57 8 21 31 30 3 + 39 40 58 8 21 22 31 3 + 40 59 58 8 22 32 31 3 + 40 41 59 8 22 23 32 3 + 41 60 59 8 23 33 32 3 + 41 42 60 8 23 24 33 3 + 42 61 60 8 24 34 33 3 + 42 43 61 8 24 25 34 3 + 43 62 61 8 25 69 34 3 + 43 44 62 8 25 67 69 3 + 44 63 62 8 26 36 35 3 + 44 45 63 8 26 27 36 3 + 45 64 63 8 27 28 36 3 + 45 46 64 8 27 19 28 3 + 46 65 64 8 19 29 28 3 + 46 47 65 8 19 20 29 3 + 47 66 65 8 20 68 29 3 + 47 48 66 8 20 66 68 3 + 48 67 66 8 21 31 30 3 + 48 49 67 8 21 22 31 3 + 49 68 67 8 22 32 31 3 + 49 50 68 8 22 23 32 3 + 50 69 68 8 23 33 32 3 + 50 51 69 8 23 24 33 3 + 51 70 69 8 24 34 33 3 + 51 52 70 8 24 25 34 3 + 52 71 70 8 25 69 34 3 + 52 53 71 8 25 67 69 3 + 53 72 71 8 26 36 35 3 + 53 54 72 8 26 27 36 3 + 54 55 72 8 27 28 36 3 + 54 37 55 8 27 19 28 3 + 55 74 73 8 28 38 37 3 + 55 56 74 8 28 29 38 3 + 56 75 74 8 29 70 38 3 + 56 57 75 8 29 68 70 3 + 57 76 75 8 30 40 39 3 + 57 58 76 8 30 31 40 3 + 58 77 76 8 31 41 40 3 + 58 59 77 8 31 32 41 3 + 59 78 77 8 32 42 41 3 + 59 60 78 8 32 33 42 3 + 60 79 78 8 33 43 42 3 + 60 61 79 8 33 34 43 3 + 61 80 79 8 34 71 43 3 + 61 62 80 8 34 69 71 3 + 62 81 80 8 35 45 44 3 + 62 63 81 8 35 36 45 3 + 63 82 81 8 36 37 45 3 + 63 64 82 8 36 28 37 3 + 64 83 82 8 28 38 37 3 + 64 65 83 8 28 29 38 3 + 65 84 83 8 29 70 38 3 + 65 66 84 8 29 68 70 3 + 66 85 84 8 30 40 39 3 + 66 67 85 8 30 31 40 3 + 67 86 85 8 31 41 40 3 + 67 68 86 8 31 32 41 3 + 68 87 86 8 32 42 41 3 + 68 69 87 8 32 33 42 3 + 69 88 87 8 33 43 42 3 + 69 70 88 8 33 34 43 3 + 70 89 88 8 34 71 43 3 + 70 71 89 8 34 69 71 3 + 71 90 89 8 35 45 44 3 + 71 72 90 8 35 36 45 3 + 72 73 90 8 36 37 45 3 + 72 55 73 8 36 28 37 3 + 73 92 91 8 37 72 73 3 + 73 74 92 8 37 38 72 3 + 74 93 92 8 38 74 72 3 + 74 75 93 8 38 70 74 3 + 75 94 93 8 39 75 76 3 + 75 76 94 8 39 40 75 3 + 76 95 94 8 40 51 75 3 + 76 77 95 8 40 41 51 3 + 77 96 95 8 41 50 51 3 + 77 78 96 8 41 42 50 3 + 78 97 96 8 42 77 50 3 + 78 79 97 8 42 43 77 3 + 79 98 97 8 43 78 77 3 + 79 80 98 8 43 71 78 3 + 80 99 98 8 44 79 80 3 + 80 81 99 8 44 45 79 3 + 81 100 99 8 45 73 79 3 + 81 82 100 8 45 37 73 3 + 82 101 100 8 37 72 73 3 + 82 83 101 8 37 38 72 3 + 83 102 101 8 38 74 72 3 + 83 84 102 8 38 70 74 3 + 84 103 102 8 39 75 76 3 + 84 85 103 8 39 40 75 3 + 85 104 103 8 40 51 75 3 + 85 86 104 8 40 41 51 3 + 86 105 104 8 41 50 51 3 + 86 87 105 8 41 42 50 3 + 87 106 105 8 42 77 50 3 + 87 88 106 8 42 43 77 3 + 88 107 106 8 43 78 77 3 + 88 89 107 8 43 71 78 3 + 89 108 107 8 44 79 80 3 + 89 90 108 8 44 45 79 3 + 90 91 108 8 45 73 79 3 + 90 73 91 8 45 37 73 3 + 109 91 92 1 0 46 47 1 + 109 92 93 1 0 47 48 1 + 109 93 94 1 0 48 49 1 + 109 94 95 1 0 49 50 1 + 109 95 96 1 0 50 51 1 + 109 96 97 1 0 51 52 1 + 109 97 98 1 0 52 53 1 + 109 98 99 1 0 53 54 1 + 109 99 100 1 0 54 55 1 + 109 100 101 1 0 55 56 1 + 109 101 102 1 0 56 57 1 + 109 102 103 1 0 57 58 1 + 109 103 104 1 0 58 5 1 + 109 104 105 1 0 5 6 1 + 109 105 106 1 0 6 59 1 + 109 106 107 1 0 59 60 1 + 109 107 108 1 0 60 61 1 + 109 108 91 1 0 61 46 1 + tverts 81 + 0.5 0.5 0 + 0.5 0.000499517 0 + 0.673475 0.000499517 0 + 0.11736 0.000499517 0 + 0.250249 0.000499517 0 + 0.413262 0.000499517 0 + 0.586738 0.000499517 0 + 0.749751 0.000499517 0 + 0.173973 0.000499517 0 + 0.326525 0.000499517 0 + 0.5 0.200301 0 + 0.673475 0.200301 0 + 0.11736 0.200301 0 + 0.250249 0.200301 0 + 0.413262 0.200301 0 + 0.586738 0.200301 0 + 0.749751 0.200301 0 + 0.173973 0.200301 0 + 0.326525 0.200301 0 + 0.5 0.400101 0 + 0.673475 0.400101 0 + 0.11736 0.400101 0 + 0.250249 0.400101 0 + 0.413262 0.400101 0 + 0.586738 0.400101 0 + 0.749751 0.400101 0 + 0.173973 0.400101 0 + 0.326525 0.400101 0 + 0.5 0.599902 0 + 0.673475 0.599902 0 + 0.11736 0.599902 0 + 0.250249 0.599902 0 + 0.413262 0.599902 0 + 0.586738 0.599902 0 + 0.749751 0.599902 0 + 0.173973 0.599902 0 + 0.326525 0.599902 0 + 0.5 0.799703 0 + 0.673475 0.799703 0 + 0.11736 0.799703 0 + 0.250249 0.799703 0 + 0.413262 0.799703 0 + 0.586738 0.799703 0 + 0.749751 0.799703 0 + 0.173973 0.799703 0 + 0.326525 0.799703 0 + 0.9995 0.5 0 + 0.969378 0.673475 0 + 0.88264 0.826027 0 + 0.749751 0.939255 0 + 0.586738 0.9995 0 + 0.413262 0.999501 0 + 0.250249 0.939255 0 + 0.11736 0.826027 0 + 0.0306221 0.673475 0 + 0.000499517 0.5 0 + 0.030622 0.326525 0 + 0.11736 0.173973 0 + 0.250249 0.0607453 0 + 0.749751 0.0607452 0 + 0.88264 0.173973 0 + 0.969378 0.326525 0 + 0.826027 0.200301 0 + 0.826027 0.000499517 0 + 0.88264 0.200301 0 + 0.88264 0.000499517 0 + 0.826027 0.400101 0 + 0.88264 0.400101 0 + 0.826027 0.599902 0 + 0.88264 0.599902 0 + 0.826027 0.799703 0 + 0.88264 0.799703 0 + 0.673475 0.999501 0 + 0.5 0.999501 0 + 0.826027 0.999501 0 + 0.250249 0.999501 0 + 0.11736 0.999501 0 + 0.749751 0.999501 0 + 0.88264 0.999501 0 + 0.326525 0.999501 0 + 0.173973 0.999501 0 +endnode +node dummy rootdummy01 + parent box10 + position 0.00343725 0.110348 0.122831 + orientation 0.461861 0.624426 -0.629902 -2.28287 + wirecolor 0.878431 0.776471 0.341176 +endnode +node trimesh pommel01 + parent rootdummy01 + position 0.00018359 -0.14571 0.000191936 + orientation -0.577932 -0.26522 -0.771786 -6.28319 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 -0.0465549 4.76837e-06 + ambient 0 0 0 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 5 + selfillumcolor 0.2 0.2 0.2 + bitmap aged_steel_dk + verts 6 + 0 0.0281357 0 + 0 -0.00507035 0.0436009 + 0.0436009 -0.00507034 0 + -0.0436009 -0.00507034 0 + 0 -0.00507034 -0.0436008 + 0 -0.0290668 0 + faces 8 + 0 1 2 1 0 1 2 2 + 0 3 1 1 0 2 1 2 + 0 4 3 1 0 3 2 2 + 0 2 4 1 0 2 3 2 + 5 2 1 1 4 2 1 1 + 5 1 3 1 4 1 2 1 + 5 3 4 1 4 2 3 1 + 5 4 2 1 4 3 2 1 + tverts 5 + 0.499999 0.9995 0 + 0.9995 0.41958 0 + 0.499999 0.41958 0 + 0.000500053 0.419581 0 + 0.499999 0.000499547 0 +endnode +node trimesh guard_curved01 + parent rootdummy01 + position 0 0 0 + orientation -0.577932 -0.26522 -0.771786 -6.28319 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center -0.00134003 11.8372 0 + ambient 0 0 0 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 5 + selfillumcolor 0.2 0.2 0.2 + bitmap aged_steel_dk + verts 42 + -0.00763616 0.141653 -0.131431 + -0.0076432 0.134515 -0.134606 + -0.00899189 0.126187 -0.106653 + -0.00899784 0.116262 -0.110058 + -0.0103696 0.114295 -0.0808058 + -0.0103739 0.101159 -0.0840942 + -0.01177 0.1061 -0.0542008 + -0.0117723 0.0893894 -0.0569378 + -0.0134621 0.109266 -0.0279758 + -0.0183767 0.0803402 -0.0328609 + -0.0101663 0.156403 3.32605e-07 + -0.0134623 0.109266 0.0279752 + -0.0183768 0.08034 0.0328611 + -0.0117702 0.1061 0.0542012 + -0.0117726 0.0893892 0.0569372 + -0.0103699 0.114294 0.0808062 + -0.0103741 0.101159 0.0840942 + -0.00899226 0.126186 0.106653 + -0.00899823 0.116261 0.110057 + -0.00763663 0.141652 0.131431 + -0.0076436 0.134514 0.134605 + 0.00694994 0.141677 -0.131498 + 0.00694295 0.134539 -0.134673 + 0.00851152 0.126205 -0.106719 + 0.00850557 0.11628 -0.110124 + 0.0100511 0.114307 -0.0808647 + 0.0100469 0.101172 -0.0841528 + 0.011568 0.106106 -0.0542458 + 0.0115656 0.0893956 -0.0569828 + 0.0133386 0.109267 -0.0280027 + 0.01835 0.0803414 -0.0328908 + 0.0101661 0.156403 3.83505e-07 + 0.0133385 0.109267 0.0280033 + 0.0183499 0.0803413 0.0328902 + 0.0115679 0.106106 0.0542462 + 0.0115654 0.0893953 0.0569822 + 0.0100508 0.114306 0.0808642 + 0.0100466 0.101171 0.0841522 + 0.00851114 0.126204 0.106719 + 0.00850518 0.116279 0.110123 + 0.00694948 0.141676 0.131498 + 0.00694249 0.134538 0.134673 + faces 80 + 2 0 3 1 2 0 3 1 + 1 3 0 1 1 3 0 1 + 4 2 5 1 4 2 5 1 + 3 5 2 1 3 5 2 1 + 6 4 7 1 6 4 7 1 + 5 7 4 1 5 7 4 1 + 8 6 9 1 8 6 9 1 + 7 9 6 1 7 9 6 1 + 13 11 14 1 13 11 14 1 + 12 14 11 1 12 14 11 1 + 15 13 16 1 15 13 16 1 + 14 16 13 1 14 16 13 1 + 17 15 18 1 17 15 18 1 + 16 18 15 1 16 18 15 1 + 19 17 20 1 19 17 20 1 + 18 20 17 1 18 20 17 1 + 22 21 24 2 22 21 24 2 + 23 24 21 2 23 24 21 2 + 24 23 26 2 24 23 26 2 + 25 26 23 2 25 26 23 2 + 26 25 28 2 26 25 28 2 + 27 28 25 2 27 28 25 2 + 28 27 30 2 28 27 30 2 + 29 30 27 2 29 30 27 2 + 33 32 35 2 32 31 34 2 + 34 35 32 2 33 34 31 2 + 35 34 37 2 34 33 36 2 + 36 37 34 2 35 36 33 2 + 37 36 39 2 36 35 38 2 + 38 39 36 2 37 38 35 2 + 39 38 41 2 38 37 40 2 + 40 41 38 2 39 40 37 2 + 1 0 22 0 1 0 22 5 + 21 22 0 0 21 22 0 5 + 3 1 24 4 3 1 24 4 + 22 24 1 4 22 24 1 4 + 5 3 26 4 5 3 26 4 + 24 26 3 4 24 26 3 4 + 7 5 28 4 7 5 28 4 + 26 28 5 4 26 28 5 4 + 9 7 30 4 9 7 30 4 + 28 30 7 4 28 30 7 4 + 14 12 35 4 14 12 34 4 + 33 35 12 4 32 34 12 4 + 16 14 37 4 16 14 36 4 + 35 37 14 4 34 36 14 4 + 18 16 39 4 18 16 38 4 + 37 39 16 4 36 38 16 4 + 20 18 41 4 20 18 40 4 + 39 41 18 4 38 40 18 4 + 19 20 40 0 19 20 39 6 + 41 40 20 0 40 39 20 6 + 17 19 38 16 17 19 37 3 + 40 38 19 16 39 37 19 3 + 15 17 36 16 15 17 35 3 + 38 36 17 16 37 35 17 3 + 13 15 34 16 13 15 33 3 + 36 34 15 16 35 33 15 3 + 11 13 32 16 11 13 31 3 + 34 32 13 16 33 31 13 3 + 10 11 31 16 10 11 10 3 + 32 31 11 16 31 10 11 3 + 8 10 29 8 8 10 29 3 + 31 29 10 8 10 29 10 3 + 6 8 27 8 6 8 27 3 + 29 27 8 8 29 27 8 3 + 4 6 25 8 4 6 25 3 + 27 25 6 8 27 25 6 3 + 2 4 23 8 2 4 23 3 + 25 23 4 8 25 23 4 3 + 0 2 21 8 0 2 21 3 + 23 21 2 8 23 21 2 3 + 11 10 8 1 11 10 8 1 + 12 11 9 1 12 11 9 1 + 11 8 9 1 11 8 9 1 + 29 31 32 2 29 10 31 1 + 30 29 33 2 30 29 32 1 + 32 33 29 2 31 32 29 1 + 9 30 12 4 9 30 12 1 + 33 12 30 4 32 12 30 1 + tverts 41 + 0.0125251 0.805779 0 + 0.000750452 0.71203 0 + 0.104425 0.602649 0 + 0.0917983 0.472295 0 + 0.200293 0.44646 0 + 0.188096 0.273941 0 + 0.29897 0.338828 0 + 0.288818 0.119354 0 + 0.396238 0.380409 0 + 0.378119 0.000501812 0 + 0.500001 0.999501 0 + 0.603759 0.380407 0 + 0.621881 0.000499576 0 + 0.701031 0.338824 0 + 0.711179 0.119351 0 + 0.799708 0.446455 0 + 0.811903 0.273937 0 + 0.895575 0.602642 0 + 0.9082 0.472288 0 + 0.987476 0.805771 0 + 0.999248 0.712021 0 + 0.0122744 0.806094 0 + 0.000499487 0.712344 0 + 0.10418 0.602885 0 + 0.0915533 0.472531 0 + 0.200074 0.446617 0 + 0.187879 0.274099 0 + 0.298803 0.338909 0 + 0.288652 0.119434 0 + 0.396138 0.380423 0 + 0.378008 0.000517368 0 + 0.603863 0.380421 0 + 0.621989 0.000516593 0 + 0.701198 0.338905 0 + 0.711346 0.119431 0 + 0.799924 0.446612 0 + 0.812119 0.274093 0 + 0.895819 0.602878 0 + 0.908445 0.472524 0 + 0.987725 0.806085 0 + 0.999501 0.712335 0 +endnode +node trimesh blade_wd_fuller01 + parent rootdummy01 + position 0 0.1 0 + orientation 0 0 -1 -1.5708 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center -0.00134003 11.8372 0 + ambient 0.5 0.5 0.5 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 1 + selfillumcolor 0.2 0.2 0.2 + bitmap aged_steel + verts 31 + 0.0446272 0.00550057 0.0173199 + -0.029824 0.00550058 0.0161778 + 0.0446273 -0.00550058 0.0173199 + -0.029824 -0.00550057 0.0161778 + 0.0446272 -0.00550058 -0.0173199 + -0.029824 -0.00550057 -0.0161778 + 0.0446271 0.00550057 -0.0173199 + -0.029824 0.00550058 -0.0161778 + 0.0650452 0 -0.030899 + 0.0650452 0.00550057 -0.0134468 + 0.0650454 -0.00550058 -0.0134468 + 0.0650452 0.00550057 0.0134468 + 0.0650454 -0.00550058 0.0134468 + 0.0650454 0 0.030899 + 0.562736 0 -0.0254337 + 0.562736 0.00460856 -0.0077243 + 0.562736 -0.00460865 -0.00772429 + 0.562736 0.00460856 0.00772431 + 0.562736 -0.00460865 0.00772432 + 0.562736 0 0.0254337 + 0.761302 0 -0.0218595 + 0.761302 0.00405141 -0.00631497 + 0.761302 -0.00405154 -0.00631497 + 0.761302 0.00405141 0.00631498 + 0.761302 -0.00405154 0.00631498 + 0.761302 0 0.0218595 + 0.806732 0 -0.0165024 + 0.806732 0.0029537 0 + 0.806732 -0.00295384 0 + 0.806732 0 0.0165024 + 0.841443 0 0 + faces 56 + 0 1 3 1 0 1 1 0 + 3 2 0 1 1 0 0 0 + 2 3 5 2 0 1 2 0 + 5 4 2 2 2 3 0 0 + 4 5 7 1 3 2 2 0 + 7 6 4 1 2 3 3 0 + 6 7 1 2 3 2 1 0 + 1 0 6 2 1 0 3 0 + 6 9 8 4 3 4 5 0 + 4 8 10 8 3 5 4 0 + 4 6 8 16 3 3 5 0 + 6 0 11 2 3 0 6 0 + 11 9 6 2 6 4 3 0 + 2 4 10 2 0 3 4 0 + 10 12 2 2 4 6 0 0 + 0 13 11 16 0 7 6 0 + 0 2 13 4 0 0 7 0 + 2 12 13 32 0 6 7 0 + 8 9 15 4 5 4 8 0 + 15 14 8 4 8 9 5 0 + 10 8 14 8 4 5 9 0 + 14 16 10 8 9 8 4 0 + 9 11 17 2 4 6 10 0 + 17 15 9 2 10 8 4 0 + 12 10 16 2 6 4 8 0 + 16 18 12 2 8 10 6 0 + 11 13 19 16 6 7 11 0 + 19 17 11 16 11 10 6 0 + 13 12 18 32 7 6 10 0 + 18 19 13 32 10 11 7 0 + 14 15 21 4 9 8 12 0 + 21 20 14 4 12 13 9 0 + 16 14 20 8 8 9 13 0 + 20 22 16 8 13 12 8 0 + 15 17 23 2 8 10 14 0 + 23 21 15 2 14 12 8 0 + 18 16 22 2 10 8 12 0 + 22 24 18 2 12 14 10 0 + 17 19 25 16 10 11 15 0 + 25 23 17 16 15 14 10 0 + 19 18 24 32 11 10 14 0 + 24 25 19 32 14 15 11 0 + 20 21 27 4 13 12 16 0 + 27 26 20 4 16 17 13 0 + 22 20 26 8 12 13 17 0 + 26 28 22 8 17 16 12 0 + 21 23 27 2 12 14 16 0 + 24 22 28 2 14 12 16 0 + 23 25 29 16 14 15 18 0 + 29 27 23 16 18 16 14 0 + 25 24 28 32 15 14 16 0 + 28 29 25 32 16 18 15 0 + 26 27 30 4 17 16 19 0 + 28 26 30 8 16 17 19 0 + 27 29 30 16 16 18 19 0 + 29 28 30 32 18 16 19 0 + tverts 20 + 0.905409 0.106921 0 + 0.988976 0.108043 0 + 0.988976 0.139821 0 + 0.905409 0.140942 0 + 0.88249 0.137138 0 + 0.88249 0.154279 0 + 0.88249 0.110725 0 + 0.88249 0.0935844 0 + 0.323858 0.130527 0 + 0.323858 0.145647 0 + 0.323858 0.117337 0 + 0.323858 0.102216 0 + 0.100978 0.128577 0 + 0.100978 0.140013 0 + 0.100978 0.119286 0 + 0.100978 0.10785 0 + 0.0499846 0.123932 0 + 0.0499846 0.133993 0 + 0.0499845 0.11387 0 + 0.0110236 0.123932 0 +endnode +node trimesh grip01 + parent rootdummy01 + position 0.00018359 -0.14571 0.000191936 + orientation -0.577932 -0.26522 -0.771786 -6.28319 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0.0238699 11.5009 -0.00238001 + ambient 0 0 0 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 5 + selfillumcolor 0 0 0 + bitmap al_leather06_tex + verts 8 + 0.000238686 0.000156174 -0.0197865 + 0.000238689 0.229711 -0.0231462 + 0.0233611 0.229862 -2.38153e-05 + 0.0200014 0.000156174 -2.38188e-05 + -0.019524 0.000156174 -2.38162e-05 + 0.000238688 0.000156174 0.0197389 + 0.000238691 0.229711 0.0230986 + -0.0228837 0.229862 -2.38127e-05 + faces 10 + 0 1 2 1 0 1 2 4 + 2 3 0 1 2 3 0 4 + 4 5 6 1 3 4 5 4 + 6 7 4 1 5 2 3 4 + 0 3 5 1 0 3 4 4 + 5 4 0 1 4 3 0 4 + 3 2 6 1 3 2 5 4 + 6 5 3 1 5 4 3 4 + 1 0 4 1 1 0 3 4 + 4 7 1 1 3 2 1 4 + tverts 6 + 0.0730774 0.000499547 0 + 0.000499606 0.998844 0 + 0.5 0.9995 0 + 0.5 0.000499547 0 + 0.926923 0.000499547 0 + 0.9995 0.998844 0 +endnode +node trimesh box11 + parent abp_weaprack_1 + orientation 0 0 0 0 + position -0.13747 -0.505512 1.03442 + wirecolor 0.603922 0.839216 0.894118 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 1.20434 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.0331831 -0.0451583 0 + 0.0331831 -0.0451583 0 + -0.0331831 0.0451583 0 + 0.0331831 0.0451583 0 + -0.0331831 -0.0451583 0.0240868 + 0.0331831 -0.0451583 0.0240868 + -0.0331831 0.0451583 0.0240868 + 0.0331831 0.0451583 0.0240868 + faces 12 + 0 2 3 2 0 2 3 2 + 3 1 0 2 3 1 0 2 + 4 5 7 4 1 0 2 1 + 7 6 4 4 2 3 1 1 + 0 1 5 8 1 0 2 5 + 5 4 0 8 2 3 1 5 + 1 3 7 16 1 0 2 4 + 7 5 1 16 2 3 1 4 + 3 2 6 32 1 0 2 6 + 6 7 3 32 2 3 1 6 + 2 0 4 64 1 0 2 3 + 4 6 2 64 2 3 1 3 + tverts 4 + 0.9995 0.000499576 0 + 0.000499576 0.000499576 0 + 0.9995 0.9995 0 + 0.000499576 0.9995 0 +endnode +node trimesh box16 + parent box11 + orientation 0 0 0 0 + position -0.000795403 0.0554636 -0.0228613 + wirecolor 0.6 0.894118 0.839216 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 3.62713 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.052301 -0.0105954 0 + 0.052301 -0.0105954 0 + -0.052301 0.0105954 0 + 0.052301 0.0105954 0 + -0.052301 -0.0105954 0.0725425 + 0.052301 -0.0105954 0.0725425 + -0.052301 0.0105954 0.0725425 + 0.052301 0.0105954 0.0725425 + faces 12 + 0 2 3 2 6 7 8 2 + 3 1 0 2 8 9 6 2 + 4 5 7 4 9 6 7 1 + 7 6 4 4 7 8 9 1 + 0 1 5 8 2 10 11 5 + 5 4 0 8 11 5 2 5 + 1 3 7 16 1 0 3 4 + 7 5 1 16 3 4 1 4 + 3 2 6 32 2 10 11 6 + 6 7 3 32 11 5 2 6 + 2 0 4 64 1 0 3 3 + 4 6 2 64 3 4 1 3 + tverts 12 + 0.999499 -1.20993 0 + 0.000499517 -1.20993 0 + -1.96563 -1.20993 0 + 0.999499 2.20993 0 + 0.000499517 2.20993 0 + -1.96563 2.20993 0 + 2.96563 0.000500709 0 + 2.96563 0.999501 0 + -1.96563 0.999499 0 + -1.96563 0.000499517 0 + 2.96563 -1.20993 0 + 2.96563 2.20993 0 +endnode +node trimesh cylinder06 + parent box16 + position -0.0375844 -0.00919205 0.0285932 + orientation -0.00307183 -0.704011 -0.710182 -3.14159 + wirecolor 0.776471 0.87451 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 5.3551 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 3 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 110 + 0 0 0 + 0.0104253 0 0 + 0.0097966 0.00356567 0 + 0.00798626 0.00670127 0 + 0.00521266 0.00902859 0 + 0.00181034 0.0102669 0 + -0.00181034 0.0102669 0 + -0.00521266 0.00902859 0 + -0.00798626 0.00670127 0 + -0.0097966 0.00356567 0 + -0.0104253 0 0 + -0.0097966 -0.00356567 0 + -0.00798626 -0.00670127 0 + -0.00521266 -0.00902859 0 + -0.00181034 -0.0102669 0 + 0.00181034 -0.0102669 0 + 0.00521266 -0.00902859 0 + 0.00798626 -0.00670127 0 + 0.0097966 -0.00356567 0 + 0.0104253 0 0.0214205 + 0.0097966 0.00356567 0.0214205 + 0.00798626 0.00670127 0.0214205 + 0.00521266 0.00902859 0.0214205 + 0.00181034 0.0102669 0.0214205 + -0.00181034 0.0102669 0.0214205 + -0.00521266 0.00902859 0.0214205 + -0.00798626 0.00670127 0.0214205 + -0.0097966 0.00356567 0.0214205 + -0.0104253 0 0.0214205 + -0.0097966 -0.00356567 0.0214205 + -0.00798626 -0.00670127 0.0214205 + -0.00521266 -0.00902859 0.0214205 + -0.00181034 -0.0102669 0.0214205 + 0.00181034 -0.0102669 0.0214205 + 0.00521266 -0.00902859 0.0214205 + 0.00798626 -0.00670127 0.0214205 + 0.0097966 -0.00356567 0.0214205 + 0.0104253 0 0.0428409 + 0.0097966 0.00356567 0.0428409 + 0.00798626 0.00670127 0.0428409 + 0.00521266 0.00902859 0.0428409 + 0.00181034 0.0102669 0.0428409 + -0.00181034 0.0102669 0.0428409 + -0.00521266 0.00902859 0.0428409 + -0.00798626 0.00670127 0.0428409 + -0.0097966 0.00356567 0.0428409 + -0.0104253 0 0.0428409 + -0.0097966 -0.00356567 0.0428409 + -0.00798626 -0.00670127 0.0428409 + -0.00521266 -0.00902859 0.0428409 + -0.00181034 -0.0102669 0.0428409 + 0.00181034 -0.0102669 0.0428409 + 0.00521266 -0.00902859 0.0428409 + 0.00798626 -0.00670127 0.0428409 + 0.0097966 -0.00356567 0.0428409 + 0.0104253 0 0.0642614 + 0.0097966 0.00356567 0.0642614 + 0.00798626 0.00670127 0.0642614 + 0.00521266 0.00902859 0.0642614 + 0.00181034 0.0102669 0.0642614 + -0.00181034 0.0102669 0.0642614 + -0.00521266 0.00902859 0.0642614 + -0.00798626 0.00670127 0.0642614 + -0.0097966 0.00356567 0.0642614 + -0.0104253 0 0.0642614 + -0.0097966 -0.00356567 0.0642614 + -0.00798626 -0.00670127 0.0642614 + -0.00521266 -0.00902859 0.0642614 + -0.00181034 -0.0102669 0.0642614 + 0.00181034 -0.0102669 0.0642614 + 0.00521266 -0.00902859 0.0642614 + 0.00798626 -0.00670127 0.0642614 + 0.0097966 -0.00356567 0.0642614 + 0.0104253 0 0.0856819 + 0.0097966 0.00356567 0.0856819 + 0.00798626 0.00670127 0.0856819 + 0.00521266 0.00902859 0.0856819 + 0.00181034 0.0102669 0.0856819 + -0.00181034 0.0102669 0.0856819 + -0.00521266 0.00902859 0.0856819 + -0.00798626 0.00670127 0.0856819 + -0.0097966 0.00356567 0.0856819 + -0.0104253 0 0.0856819 + -0.0097966 -0.00356567 0.0856819 + -0.00798626 -0.00670127 0.0856819 + -0.00521266 -0.00902859 0.0856819 + -0.00181034 -0.0102669 0.0856819 + 0.00181034 -0.0102669 0.0856819 + 0.00521266 -0.00902859 0.0856819 + 0.00798626 -0.00670127 0.0856819 + 0.0097966 -0.00356567 0.0856819 + 0.0104253 0 0.107102 + 0.0097966 0.00356567 0.107102 + 0.00798626 0.00670127 0.107102 + 0.00521266 0.00902859 0.107102 + 0.00181034 0.0102669 0.107102 + -0.00181034 0.0102669 0.107102 + -0.00521266 0.00902859 0.107102 + -0.00798626 0.00670127 0.107102 + -0.0097966 0.00356567 0.107102 + -0.0104253 0 0.107102 + -0.0097966 -0.00356567 0.107102 + -0.00798626 -0.00670127 0.107102 + -0.00521266 -0.00902859 0.107102 + -0.00181034 -0.0102669 0.107102 + 0.00181034 -0.0102669 0.107102 + 0.00521266 -0.00902859 0.107102 + 0.00798626 -0.00670127 0.107102 + 0.0097966 -0.00356567 0.107102 + 0 0 0.107102 + faces 216 + 0 2 1 1 0 54 55 2 + 0 3 2 1 0 53 54 2 + 0 4 3 1 0 52 53 2 + 0 5 4 1 0 51 52 2 + 0 6 5 1 0 50 51 2 + 0 7 6 1 0 49 50 2 + 0 8 7 1 0 48 49 2 + 0 9 8 1 0 47 48 2 + 0 10 9 1 0 46 47 2 + 0 11 10 1 0 61 46 2 + 0 12 11 1 0 60 61 2 + 0 13 12 1 0 59 60 2 + 0 14 13 1 0 6 59 2 + 0 15 14 1 0 5 6 2 + 0 16 15 1 0 58 5 2 + 0 17 16 1 0 57 58 2 + 0 18 17 1 0 56 57 2 + 0 1 18 1 0 55 56 2 + 1 20 19 8 1 11 10 3 + 1 2 20 8 1 2 11 3 + 2 21 20 8 2 62 11 3 + 2 3 21 8 2 63 62 3 + 3 22 21 8 3 13 12 3 + 3 4 22 8 3 4 13 3 + 4 23 22 8 4 14 13 3 + 4 5 23 8 4 5 14 3 + 5 24 23 8 5 15 14 3 + 5 6 24 8 5 6 15 3 + 6 25 24 8 6 16 15 3 + 6 7 25 8 6 7 16 3 + 7 26 25 8 7 64 16 3 + 7 8 26 8 7 65 64 3 + 8 27 26 8 8 18 17 3 + 8 9 27 8 8 9 18 3 + 9 28 27 8 9 10 18 3 + 9 10 28 8 9 1 10 3 + 10 29 28 8 1 11 10 3 + 10 11 29 8 1 2 11 3 + 11 30 29 8 2 62 11 3 + 11 12 30 8 2 63 62 3 + 12 31 30 8 3 13 12 3 + 12 13 31 8 3 4 13 3 + 13 32 31 8 4 14 13 3 + 13 14 32 8 4 5 14 3 + 14 33 32 8 5 15 14 3 + 14 15 33 8 5 6 15 3 + 15 34 33 8 6 16 15 3 + 15 16 34 8 6 7 16 3 + 16 35 34 8 7 64 16 3 + 16 17 35 8 7 65 64 3 + 17 36 35 8 8 18 17 3 + 17 18 36 8 8 9 18 3 + 18 19 36 8 9 10 18 3 + 18 1 19 8 9 1 10 3 + 19 38 37 8 10 20 19 3 + 19 20 38 8 10 11 20 3 + 20 39 38 8 11 66 20 3 + 20 21 39 8 11 62 66 3 + 21 40 39 8 12 22 21 3 + 21 22 40 8 12 13 22 3 + 22 41 40 8 13 23 22 3 + 22 23 41 8 13 14 23 3 + 23 42 41 8 14 24 23 3 + 23 24 42 8 14 15 24 3 + 24 43 42 8 15 25 24 3 + 24 25 43 8 15 16 25 3 + 25 44 43 8 16 67 25 3 + 25 26 44 8 16 64 67 3 + 26 45 44 8 17 27 26 3 + 26 27 45 8 17 18 27 3 + 27 46 45 8 18 19 27 3 + 27 28 46 8 18 10 19 3 + 28 47 46 8 10 20 19 3 + 28 29 47 8 10 11 20 3 + 29 48 47 8 11 66 20 3 + 29 30 48 8 11 62 66 3 + 30 49 48 8 12 22 21 3 + 30 31 49 8 12 13 22 3 + 31 50 49 8 13 23 22 3 + 31 32 50 8 13 14 23 3 + 32 51 50 8 14 24 23 3 + 32 33 51 8 14 15 24 3 + 33 52 51 8 15 25 24 3 + 33 34 52 8 15 16 25 3 + 34 53 52 8 16 67 25 3 + 34 35 53 8 16 64 67 3 + 35 54 53 8 17 27 26 3 + 35 36 54 8 17 18 27 3 + 36 37 54 8 18 19 27 3 + 36 19 37 8 18 10 19 3 + 37 56 55 8 19 29 28 3 + 37 38 56 8 19 20 29 3 + 38 57 56 8 20 68 29 3 + 38 39 57 8 20 66 68 3 + 39 58 57 8 21 31 30 3 + 39 40 58 8 21 22 31 3 + 40 59 58 8 22 32 31 3 + 40 41 59 8 22 23 32 3 + 41 60 59 8 23 33 32 3 + 41 42 60 8 23 24 33 3 + 42 61 60 8 24 34 33 3 + 42 43 61 8 24 25 34 3 + 43 62 61 8 25 69 34 3 + 43 44 62 8 25 67 69 3 + 44 63 62 8 26 36 35 3 + 44 45 63 8 26 27 36 3 + 45 64 63 8 27 28 36 3 + 45 46 64 8 27 19 28 3 + 46 65 64 8 19 29 28 3 + 46 47 65 8 19 20 29 3 + 47 66 65 8 20 68 29 3 + 47 48 66 8 20 66 68 3 + 48 67 66 8 21 31 30 3 + 48 49 67 8 21 22 31 3 + 49 68 67 8 22 32 31 3 + 49 50 68 8 22 23 32 3 + 50 69 68 8 23 33 32 3 + 50 51 69 8 23 24 33 3 + 51 70 69 8 24 34 33 3 + 51 52 70 8 24 25 34 3 + 52 71 70 8 25 69 34 3 + 52 53 71 8 25 67 69 3 + 53 72 71 8 26 36 35 3 + 53 54 72 8 26 27 36 3 + 54 55 72 8 27 28 36 3 + 54 37 55 8 27 19 28 3 + 55 74 73 8 28 38 37 3 + 55 56 74 8 28 29 38 3 + 56 75 74 8 29 70 38 3 + 56 57 75 8 29 68 70 3 + 57 76 75 8 30 40 39 3 + 57 58 76 8 30 31 40 3 + 58 77 76 8 31 41 40 3 + 58 59 77 8 31 32 41 3 + 59 78 77 8 32 42 41 3 + 59 60 78 8 32 33 42 3 + 60 79 78 8 33 43 42 3 + 60 61 79 8 33 34 43 3 + 61 80 79 8 34 71 43 3 + 61 62 80 8 34 69 71 3 + 62 81 80 8 35 45 44 3 + 62 63 81 8 35 36 45 3 + 63 82 81 8 36 37 45 3 + 63 64 82 8 36 28 37 3 + 64 83 82 8 28 38 37 3 + 64 65 83 8 28 29 38 3 + 65 84 83 8 29 70 38 3 + 65 66 84 8 29 68 70 3 + 66 85 84 8 30 40 39 3 + 66 67 85 8 30 31 40 3 + 67 86 85 8 31 41 40 3 + 67 68 86 8 31 32 41 3 + 68 87 86 8 32 42 41 3 + 68 69 87 8 32 33 42 3 + 69 88 87 8 33 43 42 3 + 69 70 88 8 33 34 43 3 + 70 89 88 8 34 71 43 3 + 70 71 89 8 34 69 71 3 + 71 90 89 8 35 45 44 3 + 71 72 90 8 35 36 45 3 + 72 73 90 8 36 37 45 3 + 72 55 73 8 36 28 37 3 + 73 92 91 8 37 72 73 3 + 73 74 92 8 37 38 72 3 + 74 93 92 8 38 74 72 3 + 74 75 93 8 38 70 74 3 + 75 94 93 8 39 75 76 3 + 75 76 94 8 39 40 75 3 + 76 95 94 8 40 51 75 3 + 76 77 95 8 40 41 51 3 + 77 96 95 8 41 50 51 3 + 77 78 96 8 41 42 50 3 + 78 97 96 8 42 77 50 3 + 78 79 97 8 42 43 77 3 + 79 98 97 8 43 78 77 3 + 79 80 98 8 43 71 78 3 + 80 99 98 8 44 79 80 3 + 80 81 99 8 44 45 79 3 + 81 100 99 8 45 73 79 3 + 81 82 100 8 45 37 73 3 + 82 101 100 8 37 72 73 3 + 82 83 101 8 37 38 72 3 + 83 102 101 8 38 74 72 3 + 83 84 102 8 38 70 74 3 + 84 103 102 8 39 75 76 3 + 84 85 103 8 39 40 75 3 + 85 104 103 8 40 51 75 3 + 85 86 104 8 40 41 51 3 + 86 105 104 8 41 50 51 3 + 86 87 105 8 41 42 50 3 + 87 106 105 8 42 77 50 3 + 87 88 106 8 42 43 77 3 + 88 107 106 8 43 78 77 3 + 88 89 107 8 43 71 78 3 + 89 108 107 8 44 79 80 3 + 89 90 108 8 44 45 79 3 + 90 91 108 8 45 73 79 3 + 90 73 91 8 45 37 73 3 + 109 91 92 1 0 46 47 1 + 109 92 93 1 0 47 48 1 + 109 93 94 1 0 48 49 1 + 109 94 95 1 0 49 50 1 + 109 95 96 1 0 50 51 1 + 109 96 97 1 0 51 52 1 + 109 97 98 1 0 52 53 1 + 109 98 99 1 0 53 54 1 + 109 99 100 1 0 54 55 1 + 109 100 101 1 0 55 56 1 + 109 101 102 1 0 56 57 1 + 109 102 103 1 0 57 58 1 + 109 103 104 1 0 58 5 1 + 109 104 105 1 0 5 6 1 + 109 105 106 1 0 6 59 1 + 109 106 107 1 0 59 60 1 + 109 107 108 1 0 60 61 1 + 109 108 91 1 0 61 46 1 + tverts 81 + 0.5 0.5 0 + 0.5 0.000499547 0 + 0.673475 0.000499547 0 + 0.11736 0.000499547 0 + 0.250249 0.000499547 0 + 0.413262 0.000499547 0 + 0.586738 0.000499547 0 + 0.749751 0.000499547 0 + 0.173973 0.000499547 0 + 0.326525 0.000499547 0 + 0.5 0.200301 0 + 0.673475 0.200301 0 + 0.11736 0.200301 0 + 0.250249 0.200301 0 + 0.413262 0.200301 0 + 0.586738 0.200301 0 + 0.749751 0.200301 0 + 0.173973 0.200301 0 + 0.326525 0.200301 0 + 0.5 0.400101 0 + 0.673475 0.400101 0 + 0.11736 0.400101 0 + 0.250249 0.400101 0 + 0.413262 0.400101 0 + 0.586738 0.400101 0 + 0.749751 0.400101 0 + 0.173973 0.400101 0 + 0.326525 0.400101 0 + 0.5 0.599902 0 + 0.673475 0.599902 0 + 0.11736 0.599902 0 + 0.250249 0.599902 0 + 0.413262 0.599902 0 + 0.586738 0.599902 0 + 0.749751 0.599902 0 + 0.173973 0.599902 0 + 0.326525 0.599902 0 + 0.5 0.799703 0 + 0.673475 0.799703 0 + 0.11736 0.799703 0 + 0.250249 0.799703 0 + 0.413262 0.799703 0 + 0.586738 0.799703 0 + 0.749751 0.799703 0 + 0.173973 0.799703 0 + 0.326525 0.799703 0 + 0.999501 0.5 0 + 0.969378 0.673475 0 + 0.88264 0.826027 0 + 0.749751 0.939255 0 + 0.586738 0.9995 0 + 0.413263 0.9995 0 + 0.250249 0.939255 0 + 0.11736 0.826027 0 + 0.0306221 0.673475 0 + 0.000499547 0.5 0 + 0.030622 0.326525 0 + 0.11736 0.173973 0 + 0.250249 0.0607453 0 + 0.749751 0.0607451 0 + 0.88264 0.173973 0 + 0.969378 0.326525 0 + 0.826027 0.200301 0 + 0.826027 0.000499547 0 + 0.88264 0.200301 0 + 0.88264 0.000499547 0 + 0.826027 0.400101 0 + 0.88264 0.400101 0 + 0.826027 0.599902 0 + 0.88264 0.599902 0 + 0.826027 0.799703 0 + 0.88264 0.799703 0 + 0.673475 0.999501 0 + 0.5 0.999501 0 + 0.826027 0.999501 0 + 0.250249 0.999501 0 + 0.11736 0.999501 0 + 0.749751 0.999501 0 + 0.88264 0.999501 0 + 0.326525 0.999501 0 + 0.173973 0.999501 0 +endnode +node trimesh cylinder07 + parent box16 + position 0.0367026 -0.00919205 0.0285932 + orientation -0.00307183 -0.704011 -0.710182 -3.14159 + wirecolor 0.776471 0.87451 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 5.3551 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 3 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 110 + 0 0 0 + 0.0104253 0 0 + 0.0097966 0.00356567 0 + 0.00798626 0.00670127 0 + 0.00521266 0.00902859 0 + 0.00181034 0.0102669 0 + -0.00181034 0.0102669 0 + -0.00521266 0.00902859 0 + -0.00798626 0.00670127 0 + -0.0097966 0.00356567 0 + -0.0104253 0 0 + -0.0097966 -0.00356567 0 + -0.00798626 -0.00670127 0 + -0.00521266 -0.00902859 0 + -0.00181034 -0.0102669 0 + 0.00181034 -0.0102669 0 + 0.00521266 -0.00902859 0 + 0.00798626 -0.00670127 0 + 0.0097966 -0.00356567 0 + 0.0104253 0 0.0214205 + 0.0097966 0.00356567 0.0214205 + 0.00798626 0.00670127 0.0214205 + 0.00521266 0.00902859 0.0214205 + 0.00181034 0.0102669 0.0214205 + -0.00181034 0.0102669 0.0214205 + -0.00521266 0.00902859 0.0214205 + -0.00798626 0.00670127 0.0214205 + -0.0097966 0.00356567 0.0214205 + -0.0104253 0 0.0214205 + -0.0097966 -0.00356567 0.0214205 + -0.00798626 -0.00670127 0.0214205 + -0.00521266 -0.00902859 0.0214205 + -0.00181034 -0.0102669 0.0214205 + 0.00181034 -0.0102669 0.0214205 + 0.00521266 -0.00902859 0.0214205 + 0.00798626 -0.00670127 0.0214205 + 0.0097966 -0.00356567 0.0214205 + 0.0104253 0 0.0428409 + 0.0097966 0.00356567 0.0428409 + 0.00798626 0.00670127 0.0428409 + 0.00521266 0.00902859 0.0428409 + 0.00181034 0.0102669 0.0428409 + -0.00181034 0.0102669 0.0428409 + -0.00521266 0.00902859 0.0428409 + -0.00798626 0.00670127 0.0428409 + -0.0097966 0.00356567 0.0428409 + -0.0104253 0 0.0428409 + -0.0097966 -0.00356567 0.0428409 + -0.00798626 -0.00670127 0.0428409 + -0.00521266 -0.00902859 0.0428409 + -0.00181034 -0.0102669 0.0428409 + 0.00181034 -0.0102669 0.0428409 + 0.00521266 -0.00902859 0.0428409 + 0.00798626 -0.00670127 0.0428409 + 0.0097966 -0.00356567 0.0428409 + 0.0104253 0 0.0642614 + 0.0097966 0.00356567 0.0642614 + 0.00798626 0.00670127 0.0642614 + 0.00521266 0.00902859 0.0642614 + 0.00181034 0.0102669 0.0642614 + -0.00181034 0.0102669 0.0642614 + -0.00521266 0.00902859 0.0642614 + -0.00798626 0.00670127 0.0642614 + -0.0097966 0.00356567 0.0642614 + -0.0104253 0 0.0642614 + -0.0097966 -0.00356567 0.0642614 + -0.00798626 -0.00670127 0.0642614 + -0.00521266 -0.00902859 0.0642614 + -0.00181034 -0.0102669 0.0642614 + 0.00181034 -0.0102669 0.0642614 + 0.00521266 -0.00902859 0.0642614 + 0.00798626 -0.00670127 0.0642614 + 0.0097966 -0.00356567 0.0642614 + 0.0104253 0 0.0856819 + 0.0097966 0.00356567 0.0856819 + 0.00798626 0.00670127 0.0856819 + 0.00521266 0.00902859 0.0856819 + 0.00181034 0.0102669 0.0856819 + -0.00181034 0.0102669 0.0856819 + -0.00521266 0.00902859 0.0856819 + -0.00798626 0.00670127 0.0856819 + -0.0097966 0.00356567 0.0856819 + -0.0104253 0 0.0856819 + -0.0097966 -0.00356567 0.0856819 + -0.00798626 -0.00670127 0.0856819 + -0.00521266 -0.00902859 0.0856819 + -0.00181034 -0.0102669 0.0856819 + 0.00181034 -0.0102669 0.0856819 + 0.00521266 -0.00902859 0.0856819 + 0.00798626 -0.00670127 0.0856819 + 0.0097966 -0.00356567 0.0856819 + 0.0104253 0 0.107102 + 0.0097966 0.00356567 0.107102 + 0.00798626 0.00670127 0.107102 + 0.00521266 0.00902859 0.107102 + 0.00181034 0.0102669 0.107102 + -0.00181034 0.0102669 0.107102 + -0.00521266 0.00902859 0.107102 + -0.00798626 0.00670127 0.107102 + -0.0097966 0.00356567 0.107102 + -0.0104253 0 0.107102 + -0.0097966 -0.00356567 0.107102 + -0.00798626 -0.00670127 0.107102 + -0.00521266 -0.00902859 0.107102 + -0.00181034 -0.0102669 0.107102 + 0.00181034 -0.0102669 0.107102 + 0.00521266 -0.00902859 0.107102 + 0.00798626 -0.00670127 0.107102 + 0.0097966 -0.00356567 0.107102 + 0 0 0.107102 + faces 216 + 0 2 1 1 0 54 55 2 + 0 3 2 1 0 53 54 2 + 0 4 3 1 0 52 53 2 + 0 5 4 1 0 51 52 2 + 0 6 5 1 0 50 51 2 + 0 7 6 1 0 49 50 2 + 0 8 7 1 0 48 49 2 + 0 9 8 1 0 47 48 2 + 0 10 9 1 0 46 47 2 + 0 11 10 1 0 61 46 2 + 0 12 11 1 0 60 61 2 + 0 13 12 1 0 59 60 2 + 0 14 13 1 0 6 59 2 + 0 15 14 1 0 5 6 2 + 0 16 15 1 0 58 5 2 + 0 17 16 1 0 57 58 2 + 0 18 17 1 0 56 57 2 + 0 1 18 1 0 55 56 2 + 1 20 19 8 1 11 10 3 + 1 2 20 8 1 2 11 3 + 2 21 20 8 2 62 11 3 + 2 3 21 8 2 63 62 3 + 3 22 21 8 3 13 12 3 + 3 4 22 8 3 4 13 3 + 4 23 22 8 4 14 13 3 + 4 5 23 8 4 5 14 3 + 5 24 23 8 5 15 14 3 + 5 6 24 8 5 6 15 3 + 6 25 24 8 6 16 15 3 + 6 7 25 8 6 7 16 3 + 7 26 25 8 7 64 16 3 + 7 8 26 8 7 65 64 3 + 8 27 26 8 8 18 17 3 + 8 9 27 8 8 9 18 3 + 9 28 27 8 9 10 18 3 + 9 10 28 8 9 1 10 3 + 10 29 28 8 1 11 10 3 + 10 11 29 8 1 2 11 3 + 11 30 29 8 2 62 11 3 + 11 12 30 8 2 63 62 3 + 12 31 30 8 3 13 12 3 + 12 13 31 8 3 4 13 3 + 13 32 31 8 4 14 13 3 + 13 14 32 8 4 5 14 3 + 14 33 32 8 5 15 14 3 + 14 15 33 8 5 6 15 3 + 15 34 33 8 6 16 15 3 + 15 16 34 8 6 7 16 3 + 16 35 34 8 7 64 16 3 + 16 17 35 8 7 65 64 3 + 17 36 35 8 8 18 17 3 + 17 18 36 8 8 9 18 3 + 18 19 36 8 9 10 18 3 + 18 1 19 8 9 1 10 3 + 19 38 37 8 10 20 19 3 + 19 20 38 8 10 11 20 3 + 20 39 38 8 11 66 20 3 + 20 21 39 8 11 62 66 3 + 21 40 39 8 12 22 21 3 + 21 22 40 8 12 13 22 3 + 22 41 40 8 13 23 22 3 + 22 23 41 8 13 14 23 3 + 23 42 41 8 14 24 23 3 + 23 24 42 8 14 15 24 3 + 24 43 42 8 15 25 24 3 + 24 25 43 8 15 16 25 3 + 25 44 43 8 16 67 25 3 + 25 26 44 8 16 64 67 3 + 26 45 44 8 17 27 26 3 + 26 27 45 8 17 18 27 3 + 27 46 45 8 18 19 27 3 + 27 28 46 8 18 10 19 3 + 28 47 46 8 10 20 19 3 + 28 29 47 8 10 11 20 3 + 29 48 47 8 11 66 20 3 + 29 30 48 8 11 62 66 3 + 30 49 48 8 12 22 21 3 + 30 31 49 8 12 13 22 3 + 31 50 49 8 13 23 22 3 + 31 32 50 8 13 14 23 3 + 32 51 50 8 14 24 23 3 + 32 33 51 8 14 15 24 3 + 33 52 51 8 15 25 24 3 + 33 34 52 8 15 16 25 3 + 34 53 52 8 16 67 25 3 + 34 35 53 8 16 64 67 3 + 35 54 53 8 17 27 26 3 + 35 36 54 8 17 18 27 3 + 36 37 54 8 18 19 27 3 + 36 19 37 8 18 10 19 3 + 37 56 55 8 19 29 28 3 + 37 38 56 8 19 20 29 3 + 38 57 56 8 20 68 29 3 + 38 39 57 8 20 66 68 3 + 39 58 57 8 21 31 30 3 + 39 40 58 8 21 22 31 3 + 40 59 58 8 22 32 31 3 + 40 41 59 8 22 23 32 3 + 41 60 59 8 23 33 32 3 + 41 42 60 8 23 24 33 3 + 42 61 60 8 24 34 33 3 + 42 43 61 8 24 25 34 3 + 43 62 61 8 25 69 34 3 + 43 44 62 8 25 67 69 3 + 44 63 62 8 26 36 35 3 + 44 45 63 8 26 27 36 3 + 45 64 63 8 27 28 36 3 + 45 46 64 8 27 19 28 3 + 46 65 64 8 19 29 28 3 + 46 47 65 8 19 20 29 3 + 47 66 65 8 20 68 29 3 + 47 48 66 8 20 66 68 3 + 48 67 66 8 21 31 30 3 + 48 49 67 8 21 22 31 3 + 49 68 67 8 22 32 31 3 + 49 50 68 8 22 23 32 3 + 50 69 68 8 23 33 32 3 + 50 51 69 8 23 24 33 3 + 51 70 69 8 24 34 33 3 + 51 52 70 8 24 25 34 3 + 52 71 70 8 25 69 34 3 + 52 53 71 8 25 67 69 3 + 53 72 71 8 26 36 35 3 + 53 54 72 8 26 27 36 3 + 54 55 72 8 27 28 36 3 + 54 37 55 8 27 19 28 3 + 55 74 73 8 28 38 37 3 + 55 56 74 8 28 29 38 3 + 56 75 74 8 29 70 38 3 + 56 57 75 8 29 68 70 3 + 57 76 75 8 30 40 39 3 + 57 58 76 8 30 31 40 3 + 58 77 76 8 31 41 40 3 + 58 59 77 8 31 32 41 3 + 59 78 77 8 32 42 41 3 + 59 60 78 8 32 33 42 3 + 60 79 78 8 33 43 42 3 + 60 61 79 8 33 34 43 3 + 61 80 79 8 34 71 43 3 + 61 62 80 8 34 69 71 3 + 62 81 80 8 35 45 44 3 + 62 63 81 8 35 36 45 3 + 63 82 81 8 36 37 45 3 + 63 64 82 8 36 28 37 3 + 64 83 82 8 28 38 37 3 + 64 65 83 8 28 29 38 3 + 65 84 83 8 29 70 38 3 + 65 66 84 8 29 68 70 3 + 66 85 84 8 30 40 39 3 + 66 67 85 8 30 31 40 3 + 67 86 85 8 31 41 40 3 + 67 68 86 8 31 32 41 3 + 68 87 86 8 32 42 41 3 + 68 69 87 8 32 33 42 3 + 69 88 87 8 33 43 42 3 + 69 70 88 8 33 34 43 3 + 70 89 88 8 34 71 43 3 + 70 71 89 8 34 69 71 3 + 71 90 89 8 35 45 44 3 + 71 72 90 8 35 36 45 3 + 72 73 90 8 36 37 45 3 + 72 55 73 8 36 28 37 3 + 73 92 91 8 37 72 73 3 + 73 74 92 8 37 38 72 3 + 74 93 92 8 38 74 72 3 + 74 75 93 8 38 70 74 3 + 75 94 93 8 39 75 76 3 + 75 76 94 8 39 40 75 3 + 76 95 94 8 40 51 75 3 + 76 77 95 8 40 41 51 3 + 77 96 95 8 41 50 51 3 + 77 78 96 8 41 42 50 3 + 78 97 96 8 42 77 50 3 + 78 79 97 8 42 43 77 3 + 79 98 97 8 43 78 77 3 + 79 80 98 8 43 71 78 3 + 80 99 98 8 44 79 80 3 + 80 81 99 8 44 45 79 3 + 81 100 99 8 45 73 79 3 + 81 82 100 8 45 37 73 3 + 82 101 100 8 37 72 73 3 + 82 83 101 8 37 38 72 3 + 83 102 101 8 38 74 72 3 + 83 84 102 8 38 70 74 3 + 84 103 102 8 39 75 76 3 + 84 85 103 8 39 40 75 3 + 85 104 103 8 40 51 75 3 + 85 86 104 8 40 41 51 3 + 86 105 104 8 41 50 51 3 + 86 87 105 8 41 42 50 3 + 87 106 105 8 42 77 50 3 + 87 88 106 8 42 43 77 3 + 88 107 106 8 43 78 77 3 + 88 89 107 8 43 71 78 3 + 89 108 107 8 44 79 80 3 + 89 90 108 8 44 45 79 3 + 90 91 108 8 45 73 79 3 + 90 73 91 8 45 37 73 3 + 109 91 92 1 0 46 47 1 + 109 92 93 1 0 47 48 1 + 109 93 94 1 0 48 49 1 + 109 94 95 1 0 49 50 1 + 109 95 96 1 0 50 51 1 + 109 96 97 1 0 51 52 1 + 109 97 98 1 0 52 53 1 + 109 98 99 1 0 53 54 1 + 109 99 100 1 0 54 55 1 + 109 100 101 1 0 55 56 1 + 109 101 102 1 0 56 57 1 + 109 102 103 1 0 57 58 1 + 109 103 104 1 0 58 5 1 + 109 104 105 1 0 5 6 1 + 109 105 106 1 0 6 59 1 + 109 106 107 1 0 59 60 1 + 109 107 108 1 0 60 61 1 + 109 108 91 1 0 61 46 1 + tverts 81 + 0.5 0.5 0 + 0.5 0.000499547 0 + 0.673475 0.000499547 0 + 0.11736 0.000499547 0 + 0.250249 0.000499547 0 + 0.413262 0.000499547 0 + 0.586738 0.000499547 0 + 0.749751 0.000499547 0 + 0.173973 0.000499547 0 + 0.326525 0.000499547 0 + 0.5 0.200301 0 + 0.673475 0.200301 0 + 0.11736 0.200301 0 + 0.250249 0.200301 0 + 0.413262 0.200301 0 + 0.586738 0.200301 0 + 0.749751 0.200301 0 + 0.173973 0.200301 0 + 0.326525 0.200301 0 + 0.5 0.400101 0 + 0.673475 0.400101 0 + 0.11736 0.400101 0 + 0.250249 0.400101 0 + 0.413262 0.400101 0 + 0.586738 0.400101 0 + 0.749751 0.400101 0 + 0.173973 0.400101 0 + 0.326525 0.400101 0 + 0.5 0.599902 0 + 0.673475 0.599902 0 + 0.11736 0.599902 0 + 0.250249 0.599902 0 + 0.413262 0.599902 0 + 0.586738 0.599902 0 + 0.749751 0.599902 0 + 0.173973 0.599902 0 + 0.326525 0.599902 0 + 0.5 0.799703 0 + 0.673475 0.799703 0 + 0.11736 0.799703 0 + 0.250249 0.799703 0 + 0.413262 0.799703 0 + 0.586738 0.799703 0 + 0.749751 0.799703 0 + 0.173973 0.799703 0 + 0.326525 0.799703 0 + 0.999501 0.5 0 + 0.969378 0.673475 0 + 0.88264 0.826027 0 + 0.749751 0.939255 0 + 0.586738 0.9995 0 + 0.413263 0.9995 0 + 0.250249 0.939255 0 + 0.11736 0.826027 0 + 0.0306221 0.673475 0 + 0.000499547 0.5 0 + 0.030622 0.326525 0 + 0.11736 0.173973 0 + 0.250249 0.0607453 0 + 0.749751 0.0607451 0 + 0.88264 0.173973 0 + 0.969378 0.326525 0 + 0.826027 0.200301 0 + 0.826027 0.000499547 0 + 0.88264 0.200301 0 + 0.88264 0.000499547 0 + 0.826027 0.400101 0 + 0.88264 0.400101 0 + 0.826027 0.599902 0 + 0.88264 0.599902 0 + 0.826027 0.799703 0 + 0.88264 0.799703 0 + 0.673475 0.999501 0 + 0.5 0.999501 0 + 0.826027 0.999501 0 + 0.250249 0.999501 0 + 0.11736 0.999501 0 + 0.749751 0.999501 0 + 0.88264 0.999501 0 + 0.326525 0.999501 0 + 0.173973 0.999501 0 +endnode +node dummy rootdummy02 + parent box11 + position 0.002768 0.109564 0.127132 + orientation 0.572525 0.577583 -0.581904 -2.11014 + wirecolor 0.345098 0.780392 0.882353 +endnode +node trimesh grip02 + parent rootdummy02 + position 0.000183542 -0.14571 0.000191939 + orientation 0.533327 0.844135 0.05476 -6.28319 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0.0238699 11.5009 -0.00238001 + ambient 0 0 0 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 5 + selfillumcolor 0 0 0 + bitmap al_leather06_tex + verts 8 + 0.000238686 0.000156174 -0.0197865 + 0.000238689 0.229711 -0.0231462 + 0.0233611 0.229862 -2.38153e-05 + 0.0200014 0.000156174 -2.38188e-05 + -0.019524 0.000156174 -2.38162e-05 + 0.000238688 0.000156174 0.0197389 + 0.000238691 0.229711 0.0230986 + -0.0228837 0.229862 -2.38127e-05 + faces 10 + 0 1 2 1 0 1 2 4 + 2 3 0 1 2 3 0 4 + 4 5 6 1 3 4 5 4 + 6 7 4 1 5 2 3 4 + 0 3 5 1 0 3 4 4 + 5 4 0 1 4 3 0 4 + 3 2 6 1 3 2 5 4 + 6 5 3 1 5 4 3 4 + 1 0 4 1 1 0 3 4 + 4 7 1 1 3 2 1 4 + tverts 6 + 0.0730774 0.000499547 0 + 0.000499606 0.998844 0 + 0.5 0.9995 0 + 0.5 0.000499547 0 + 0.926923 0.000499547 0 + 0.9995 0.998844 0 +endnode +node trimesh guard_curved02 + parent rootdummy02 + position 0 0 0 + orientation 0.533327 0.844135 0.05476 -6.28319 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center -0.00134003 11.8372 0 + ambient 0 0 0 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 5 + selfillumcolor 0.2 0.2 0.2 + bitmap aged_steel_dk + verts 42 + -0.00763616 0.141653 -0.131431 + -0.0076432 0.134515 -0.134606 + -0.00899189 0.126187 -0.106653 + -0.00899784 0.116262 -0.110058 + -0.0103696 0.114295 -0.0808058 + -0.0103739 0.101159 -0.0840942 + -0.01177 0.1061 -0.0542008 + -0.0117723 0.0893894 -0.0569378 + -0.0134621 0.109266 -0.0279758 + -0.0183767 0.0803402 -0.0328609 + -0.0101663 0.156403 3.32605e-07 + -0.0134623 0.109266 0.0279752 + -0.0183768 0.08034 0.0328611 + -0.0117702 0.1061 0.0542012 + -0.0117726 0.0893892 0.0569372 + -0.0103699 0.114294 0.0808062 + -0.0103741 0.101159 0.0840942 + -0.00899226 0.126186 0.106653 + -0.00899823 0.116261 0.110057 + -0.00763663 0.141652 0.131431 + -0.0076436 0.134514 0.134605 + 0.00694994 0.141677 -0.131498 + 0.00694295 0.134539 -0.134673 + 0.00851152 0.126205 -0.106719 + 0.00850557 0.11628 -0.110124 + 0.0100511 0.114307 -0.0808647 + 0.0100469 0.101172 -0.0841528 + 0.011568 0.106106 -0.0542458 + 0.0115656 0.0893956 -0.0569828 + 0.0133386 0.109267 -0.0280027 + 0.01835 0.0803414 -0.0328908 + 0.0101661 0.156403 3.83505e-07 + 0.0133385 0.109267 0.0280033 + 0.0183499 0.0803413 0.0328902 + 0.0115679 0.106106 0.0542462 + 0.0115654 0.0893953 0.0569822 + 0.0100508 0.114306 0.0808642 + 0.0100466 0.101171 0.0841522 + 0.00851114 0.126204 0.106719 + 0.00850518 0.116279 0.110123 + 0.00694948 0.141676 0.131498 + 0.00694249 0.134538 0.134673 + faces 80 + 2 0 3 1 2 0 3 1 + 1 3 0 1 1 3 0 1 + 4 2 5 1 4 2 5 1 + 3 5 2 1 3 5 2 1 + 6 4 7 1 6 4 7 1 + 5 7 4 1 5 7 4 1 + 8 6 9 1 8 6 9 1 + 7 9 6 1 7 9 6 1 + 13 11 14 1 13 11 14 1 + 12 14 11 1 12 14 11 1 + 15 13 16 1 15 13 16 1 + 14 16 13 1 14 16 13 1 + 17 15 18 1 17 15 18 1 + 16 18 15 1 16 18 15 1 + 19 17 20 1 19 17 20 1 + 18 20 17 1 18 20 17 1 + 22 21 24 2 22 21 24 2 + 23 24 21 2 23 24 21 2 + 24 23 26 2 24 23 26 2 + 25 26 23 2 25 26 23 2 + 26 25 28 2 26 25 28 2 + 27 28 25 2 27 28 25 2 + 28 27 30 2 28 27 30 2 + 29 30 27 2 29 30 27 2 + 33 32 35 2 32 31 34 2 + 34 35 32 2 33 34 31 2 + 35 34 37 2 34 33 36 2 + 36 37 34 2 35 36 33 2 + 37 36 39 2 36 35 38 2 + 38 39 36 2 37 38 35 2 + 39 38 41 2 38 37 40 2 + 40 41 38 2 39 40 37 2 + 1 0 22 0 1 0 22 5 + 21 22 0 0 21 22 0 5 + 3 1 24 4 3 1 24 4 + 22 24 1 4 22 24 1 4 + 5 3 26 4 5 3 26 4 + 24 26 3 4 24 26 3 4 + 7 5 28 4 7 5 28 4 + 26 28 5 4 26 28 5 4 + 9 7 30 4 9 7 30 4 + 28 30 7 4 28 30 7 4 + 14 12 35 4 14 12 34 4 + 33 35 12 4 32 34 12 4 + 16 14 37 4 16 14 36 4 + 35 37 14 4 34 36 14 4 + 18 16 39 4 18 16 38 4 + 37 39 16 4 36 38 16 4 + 20 18 41 4 20 18 40 4 + 39 41 18 4 38 40 18 4 + 19 20 40 0 19 20 39 6 + 41 40 20 0 40 39 20 6 + 17 19 38 16 17 19 37 3 + 40 38 19 16 39 37 19 3 + 15 17 36 16 15 17 35 3 + 38 36 17 16 37 35 17 3 + 13 15 34 16 13 15 33 3 + 36 34 15 16 35 33 15 3 + 11 13 32 16 11 13 31 3 + 34 32 13 16 33 31 13 3 + 10 11 31 16 10 11 10 3 + 32 31 11 16 31 10 11 3 + 8 10 29 8 8 10 29 3 + 31 29 10 8 10 29 10 3 + 6 8 27 8 6 8 27 3 + 29 27 8 8 29 27 8 3 + 4 6 25 8 4 6 25 3 + 27 25 6 8 27 25 6 3 + 2 4 23 8 2 4 23 3 + 25 23 4 8 25 23 4 3 + 0 2 21 8 0 2 21 3 + 23 21 2 8 23 21 2 3 + 11 10 8 1 11 10 8 1 + 12 11 9 1 12 11 9 1 + 11 8 9 1 11 8 9 1 + 29 31 32 2 29 10 31 1 + 30 29 33 2 30 29 32 1 + 32 33 29 2 31 32 29 1 + 9 30 12 4 9 30 12 1 + 33 12 30 4 32 12 30 1 + tverts 41 + 0.0125251 0.805779 0 + 0.000750452 0.71203 0 + 0.104425 0.602649 0 + 0.0917983 0.472295 0 + 0.200293 0.44646 0 + 0.188096 0.273941 0 + 0.29897 0.338828 0 + 0.288818 0.119354 0 + 0.396238 0.380409 0 + 0.378119 0.000501812 0 + 0.500001 0.999501 0 + 0.603759 0.380407 0 + 0.621881 0.000499576 0 + 0.701031 0.338824 0 + 0.711179 0.119351 0 + 0.799708 0.446455 0 + 0.811903 0.273937 0 + 0.895575 0.602642 0 + 0.9082 0.472288 0 + 0.987476 0.805771 0 + 0.999248 0.712021 0 + 0.0122744 0.806094 0 + 0.000499487 0.712344 0 + 0.10418 0.602885 0 + 0.0915533 0.472531 0 + 0.200074 0.446617 0 + 0.187879 0.274099 0 + 0.298803 0.338909 0 + 0.288652 0.119434 0 + 0.396138 0.380423 0 + 0.378008 0.000517368 0 + 0.603863 0.380421 0 + 0.621989 0.000516593 0 + 0.701198 0.338905 0 + 0.711346 0.119431 0 + 0.799924 0.446612 0 + 0.812119 0.274093 0 + 0.895819 0.602878 0 + 0.908445 0.472524 0 + 0.987725 0.806085 0 + 0.999501 0.712335 0 +endnode +node trimesh blade_wd_fuller02 + parent rootdummy02 + position 0 0.1 0 + orientation 0 0 -1 -1.5708 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center -0.00134003 11.8372 0 + ambient 0.5 0.5 0.5 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 1 + selfillumcolor 0.2 0.2 0.2 + bitmap aged_steel + verts 31 + 0.0446272 0.00550057 0.0173199 + -0.029824 0.00550058 0.0161778 + 0.0446273 -0.00550058 0.0173199 + -0.029824 -0.00550057 0.0161778 + 0.0446272 -0.00550058 -0.0173199 + -0.029824 -0.00550057 -0.0161778 + 0.0446271 0.00550057 -0.0173199 + -0.029824 0.00550058 -0.0161778 + 0.0650452 0 -0.030899 + 0.0650452 0.00550057 -0.0134468 + 0.0650454 -0.00550058 -0.0134468 + 0.0650452 0.00550057 0.0134468 + 0.0650454 -0.00550058 0.0134468 + 0.0650454 0 0.030899 + 0.562736 0 -0.0254337 + 0.562736 0.00460856 -0.0077243 + 0.562736 -0.00460865 -0.00772429 + 0.562736 0.00460856 0.00772431 + 0.562736 -0.00460865 0.00772432 + 0.562736 0 0.0254337 + 0.761302 0 -0.0218595 + 0.761302 0.00405141 -0.00631497 + 0.761302 -0.00405154 -0.00631497 + 0.761302 0.00405141 0.00631498 + 0.761302 -0.00405154 0.00631498 + 0.761302 0 0.0218595 + 0.806732 0 -0.0165024 + 0.806732 0.0029537 0 + 0.806732 -0.00295384 0 + 0.806732 0 0.0165024 + 0.841443 0 0 + faces 56 + 0 1 3 1 0 1 1 0 + 3 2 0 1 1 0 0 0 + 2 3 5 2 0 1 2 0 + 5 4 2 2 2 3 0 0 + 4 5 7 1 3 2 2 0 + 7 6 4 1 2 3 3 0 + 6 7 1 2 3 2 1 0 + 1 0 6 2 1 0 3 0 + 6 9 8 4 3 4 5 0 + 4 8 10 8 3 5 4 0 + 4 6 8 16 3 3 5 0 + 6 0 11 2 3 0 6 0 + 11 9 6 2 6 4 3 0 + 2 4 10 2 0 3 4 0 + 10 12 2 2 4 6 0 0 + 0 13 11 16 0 7 6 0 + 0 2 13 4 0 0 7 0 + 2 12 13 32 0 6 7 0 + 8 9 15 4 5 4 8 0 + 15 14 8 4 8 9 5 0 + 10 8 14 8 4 5 9 0 + 14 16 10 8 9 8 4 0 + 9 11 17 2 4 6 10 0 + 17 15 9 2 10 8 4 0 + 12 10 16 2 6 4 8 0 + 16 18 12 2 8 10 6 0 + 11 13 19 16 6 7 11 0 + 19 17 11 16 11 10 6 0 + 13 12 18 32 7 6 10 0 + 18 19 13 32 10 11 7 0 + 14 15 21 4 9 8 12 0 + 21 20 14 4 12 13 9 0 + 16 14 20 8 8 9 13 0 + 20 22 16 8 13 12 8 0 + 15 17 23 2 8 10 14 0 + 23 21 15 2 14 12 8 0 + 18 16 22 2 10 8 12 0 + 22 24 18 2 12 14 10 0 + 17 19 25 16 10 11 15 0 + 25 23 17 16 15 14 10 0 + 19 18 24 32 11 10 14 0 + 24 25 19 32 14 15 11 0 + 20 21 27 4 13 12 16 0 + 27 26 20 4 16 17 13 0 + 22 20 26 8 12 13 17 0 + 26 28 22 8 17 16 12 0 + 21 23 27 2 12 14 16 0 + 24 22 28 2 14 12 16 0 + 23 25 29 16 14 15 18 0 + 29 27 23 16 18 16 14 0 + 25 24 28 32 15 14 16 0 + 28 29 25 32 16 18 15 0 + 26 27 30 4 17 16 19 0 + 28 26 30 8 16 17 19 0 + 27 29 30 16 16 18 19 0 + 29 28 30 32 18 16 19 0 + tverts 20 + 0.905409 0.106921 0 + 0.988976 0.108043 0 + 0.988976 0.139821 0 + 0.905409 0.140942 0 + 0.88249 0.137138 0 + 0.88249 0.154279 0 + 0.88249 0.110725 0 + 0.88249 0.0935844 0 + 0.323858 0.130527 0 + 0.323858 0.145647 0 + 0.323858 0.117337 0 + 0.323858 0.102216 0 + 0.100978 0.128577 0 + 0.100978 0.140013 0 + 0.100978 0.119286 0 + 0.100978 0.10785 0 + 0.0499846 0.123932 0 + 0.0499846 0.133993 0 + 0.0499845 0.11387 0 + 0.0110236 0.123932 0 +endnode +node trimesh pommel02 + parent rootdummy02 + position 0.000183542 -0.14571 0.000191939 + orientation 0.533327 0.844135 0.05476 -6.28319 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 -0.0465549 4.76837e-06 + ambient 0 0 0 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 5 + selfillumcolor 0.2 0.2 0.2 + bitmap aged_steel_dk + verts 6 + 0 0.0281357 0 + 0 -0.00507035 0.0436009 + 0.0436009 -0.00507034 0 + -0.0436009 -0.00507034 0 + 0 -0.00507034 -0.0436008 + 0 -0.0290668 0 + faces 8 + 0 1 2 1 0 1 2 2 + 0 3 1 1 0 2 1 2 + 0 4 3 1 0 3 2 2 + 0 2 4 1 0 2 3 2 + 5 2 1 1 4 2 1 1 + 5 1 3 1 4 1 2 1 + 5 3 4 1 4 2 3 1 + 5 4 2 1 4 3 2 1 + tverts 5 + 0.499999 0.9995 0 + 0.9995 0.41958 0 + 0.499999 0.41958 0 + 0.000500053 0.419581 0 + 0.499999 0.000499547 0 +endnode +node trimesh box12 + parent abp_weaprack_1 + orientation 0 0 0 0 + position -0.410813 -0.505512 1.03442 + wirecolor 0.603922 0.839216 0.894118 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 1.20434 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.0331831 -0.0451583 0 + 0.0331831 -0.0451583 0 + -0.0331831 0.0451583 0 + 0.0331831 0.0451583 0 + -0.0331831 -0.0451583 0.0240868 + 0.0331831 -0.0451583 0.0240868 + -0.0331831 0.0451583 0.0240868 + 0.0331831 0.0451583 0.0240868 + faces 12 + 0 2 3 2 0 2 3 2 + 3 1 0 2 3 1 0 2 + 4 5 7 4 1 0 2 1 + 7 6 4 4 2 3 1 1 + 0 1 5 8 1 0 2 5 + 5 4 0 8 2 3 1 5 + 1 3 7 16 1 0 2 4 + 7 5 1 16 2 3 1 4 + 3 2 6 32 1 0 2 6 + 6 7 3 32 2 3 1 6 + 2 0 4 64 1 0 2 3 + 4 6 2 64 2 3 1 3 + tverts 4 + 0.9995 0.000499576 0 + 0.000499576 0.000499576 0 + 0.9995 0.9995 0 + 0.000499576 0.9995 0 +endnode +node trimesh box17 + parent box12 + orientation 0 0 0 0 + position -0.000753632 0.0554636 -0.0228613 + wirecolor 0.6 0.894118 0.839216 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 3.62713 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.052301 -0.0105954 0 + 0.052301 -0.0105954 0 + -0.052301 0.0105954 0 + 0.052301 0.0105954 0 + -0.052301 -0.0105954 0.0725425 + 0.052301 -0.0105954 0.0725425 + -0.052301 0.0105954 0.0725425 + 0.052301 0.0105954 0.0725425 + faces 12 + 0 2 3 2 6 7 8 2 + 3 1 0 2 8 9 6 2 + 4 5 7 4 9 6 7 1 + 7 6 4 4 7 8 9 1 + 0 1 5 8 2 10 11 5 + 5 4 0 8 11 5 2 5 + 1 3 7 16 1 0 3 4 + 7 5 1 16 3 4 1 4 + 3 2 6 32 2 10 11 6 + 6 7 3 32 11 5 2 6 + 2 0 4 64 1 0 3 3 + 4 6 2 64 3 4 1 3 + tverts 12 + 0.999499 -1.20993 0 + 0.000499517 -1.20993 0 + -1.96563 -1.20993 0 + 0.999499 2.20993 0 + 0.000499517 2.20993 0 + -1.96563 2.20993 0 + 2.96563 0.000500709 0 + 2.96563 0.999501 0 + -1.96563 0.999499 0 + -1.96563 0.000499517 0 + 2.96563 -1.20993 0 + 2.96563 2.20993 0 +endnode +node trimesh cylinder08 + parent box17 + position -0.0371178 -0.00919205 0.0285932 + orientation -0.00307183 -0.704011 -0.710182 -3.14159 + wirecolor 0.776471 0.87451 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 5.3551 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 3 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 110 + 0 0 0 + 0.0104253 0 0 + 0.0097966 0.00356567 0 + 0.00798626 0.00670127 0 + 0.00521266 0.00902859 0 + 0.00181034 0.0102669 0 + -0.00181034 0.0102669 0 + -0.00521266 0.00902859 0 + -0.00798626 0.00670127 0 + -0.0097966 0.00356567 0 + -0.0104253 0 0 + -0.0097966 -0.00356567 0 + -0.00798626 -0.00670127 0 + -0.00521266 -0.00902859 0 + -0.00181034 -0.0102669 0 + 0.00181034 -0.0102669 0 + 0.00521266 -0.00902859 0 + 0.00798626 -0.00670127 0 + 0.0097966 -0.00356567 0 + 0.0104253 0 0.0214205 + 0.0097966 0.00356567 0.0214205 + 0.00798626 0.00670127 0.0214205 + 0.00521266 0.00902859 0.0214205 + 0.00181034 0.0102669 0.0214205 + -0.00181034 0.0102669 0.0214205 + -0.00521266 0.00902859 0.0214205 + -0.00798626 0.00670127 0.0214205 + -0.0097966 0.00356567 0.0214205 + -0.0104253 0 0.0214205 + -0.0097966 -0.00356567 0.0214205 + -0.00798626 -0.00670127 0.0214205 + -0.00521266 -0.00902859 0.0214205 + -0.00181034 -0.0102669 0.0214205 + 0.00181034 -0.0102669 0.0214205 + 0.00521266 -0.00902859 0.0214205 + 0.00798626 -0.00670127 0.0214205 + 0.0097966 -0.00356567 0.0214205 + 0.0104253 0 0.0428409 + 0.0097966 0.00356567 0.0428409 + 0.00798626 0.00670127 0.0428409 + 0.00521266 0.00902859 0.0428409 + 0.00181034 0.0102669 0.0428409 + -0.00181034 0.0102669 0.0428409 + -0.00521266 0.00902859 0.0428409 + -0.00798626 0.00670127 0.0428409 + -0.0097966 0.00356567 0.0428409 + -0.0104253 0 0.0428409 + -0.0097966 -0.00356567 0.0428409 + -0.00798626 -0.00670127 0.0428409 + -0.00521266 -0.00902859 0.0428409 + -0.00181034 -0.0102669 0.0428409 + 0.00181034 -0.0102669 0.0428409 + 0.00521266 -0.00902859 0.0428409 + 0.00798626 -0.00670127 0.0428409 + 0.0097966 -0.00356567 0.0428409 + 0.0104253 0 0.0642614 + 0.0097966 0.00356567 0.0642614 + 0.00798626 0.00670127 0.0642614 + 0.00521266 0.00902859 0.0642614 + 0.00181034 0.0102669 0.0642614 + -0.00181034 0.0102669 0.0642614 + -0.00521266 0.00902859 0.0642614 + -0.00798626 0.00670127 0.0642614 + -0.0097966 0.00356567 0.0642614 + -0.0104253 0 0.0642614 + -0.0097966 -0.00356567 0.0642614 + -0.00798626 -0.00670127 0.0642614 + -0.00521266 -0.00902859 0.0642614 + -0.00181034 -0.0102669 0.0642614 + 0.00181034 -0.0102669 0.0642614 + 0.00521266 -0.00902859 0.0642614 + 0.00798626 -0.00670127 0.0642614 + 0.0097966 -0.00356567 0.0642614 + 0.0104253 0 0.0856819 + 0.0097966 0.00356567 0.0856819 + 0.00798626 0.00670127 0.0856819 + 0.00521266 0.00902859 0.0856819 + 0.00181034 0.0102669 0.0856819 + -0.00181034 0.0102669 0.0856819 + -0.00521266 0.00902859 0.0856819 + -0.00798626 0.00670127 0.0856819 + -0.0097966 0.00356567 0.0856819 + -0.0104253 0 0.0856819 + -0.0097966 -0.00356567 0.0856819 + -0.00798626 -0.00670127 0.0856819 + -0.00521266 -0.00902859 0.0856819 + -0.00181034 -0.0102669 0.0856819 + 0.00181034 -0.0102669 0.0856819 + 0.00521266 -0.00902859 0.0856819 + 0.00798626 -0.00670127 0.0856819 + 0.0097966 -0.00356567 0.0856819 + 0.0104253 0 0.107102 + 0.0097966 0.00356567 0.107102 + 0.00798626 0.00670127 0.107102 + 0.00521266 0.00902859 0.107102 + 0.00181034 0.0102669 0.107102 + -0.00181034 0.0102669 0.107102 + -0.00521266 0.00902859 0.107102 + -0.00798626 0.00670127 0.107102 + -0.0097966 0.00356567 0.107102 + -0.0104253 0 0.107102 + -0.0097966 -0.00356567 0.107102 + -0.00798626 -0.00670127 0.107102 + -0.00521266 -0.00902859 0.107102 + -0.00181034 -0.0102669 0.107102 + 0.00181034 -0.0102669 0.107102 + 0.00521266 -0.00902859 0.107102 + 0.00798626 -0.00670127 0.107102 + 0.0097966 -0.00356567 0.107102 + 0 0 0.107102 + faces 216 + 0 2 1 1 0 54 55 2 + 0 3 2 1 0 53 54 2 + 0 4 3 1 0 52 53 2 + 0 5 4 1 0 51 52 2 + 0 6 5 1 0 50 51 2 + 0 7 6 1 0 49 50 2 + 0 8 7 1 0 48 49 2 + 0 9 8 1 0 47 48 2 + 0 10 9 1 0 46 47 2 + 0 11 10 1 0 61 46 2 + 0 12 11 1 0 60 61 2 + 0 13 12 1 0 59 60 2 + 0 14 13 1 0 6 59 2 + 0 15 14 1 0 5 6 2 + 0 16 15 1 0 58 5 2 + 0 17 16 1 0 57 58 2 + 0 18 17 1 0 56 57 2 + 0 1 18 1 0 55 56 2 + 1 20 19 8 1 11 10 3 + 1 2 20 8 1 2 11 3 + 2 21 20 8 2 62 11 3 + 2 3 21 8 2 63 62 3 + 3 22 21 8 3 13 12 3 + 3 4 22 8 3 4 13 3 + 4 23 22 8 4 14 13 3 + 4 5 23 8 4 5 14 3 + 5 24 23 8 5 15 14 3 + 5 6 24 8 5 6 15 3 + 6 25 24 8 6 16 15 3 + 6 7 25 8 6 7 16 3 + 7 26 25 8 7 64 16 3 + 7 8 26 8 7 65 64 3 + 8 27 26 8 8 18 17 3 + 8 9 27 8 8 9 18 3 + 9 28 27 8 9 10 18 3 + 9 10 28 8 9 1 10 3 + 10 29 28 8 1 11 10 3 + 10 11 29 8 1 2 11 3 + 11 30 29 8 2 62 11 3 + 11 12 30 8 2 63 62 3 + 12 31 30 8 3 13 12 3 + 12 13 31 8 3 4 13 3 + 13 32 31 8 4 14 13 3 + 13 14 32 8 4 5 14 3 + 14 33 32 8 5 15 14 3 + 14 15 33 8 5 6 15 3 + 15 34 33 8 6 16 15 3 + 15 16 34 8 6 7 16 3 + 16 35 34 8 7 64 16 3 + 16 17 35 8 7 65 64 3 + 17 36 35 8 8 18 17 3 + 17 18 36 8 8 9 18 3 + 18 19 36 8 9 10 18 3 + 18 1 19 8 9 1 10 3 + 19 38 37 8 10 20 19 3 + 19 20 38 8 10 11 20 3 + 20 39 38 8 11 66 20 3 + 20 21 39 8 11 62 66 3 + 21 40 39 8 12 22 21 3 + 21 22 40 8 12 13 22 3 + 22 41 40 8 13 23 22 3 + 22 23 41 8 13 14 23 3 + 23 42 41 8 14 24 23 3 + 23 24 42 8 14 15 24 3 + 24 43 42 8 15 25 24 3 + 24 25 43 8 15 16 25 3 + 25 44 43 8 16 67 25 3 + 25 26 44 8 16 64 67 3 + 26 45 44 8 17 27 26 3 + 26 27 45 8 17 18 27 3 + 27 46 45 8 18 19 27 3 + 27 28 46 8 18 10 19 3 + 28 47 46 8 10 20 19 3 + 28 29 47 8 10 11 20 3 + 29 48 47 8 11 66 20 3 + 29 30 48 8 11 62 66 3 + 30 49 48 8 12 22 21 3 + 30 31 49 8 12 13 22 3 + 31 50 49 8 13 23 22 3 + 31 32 50 8 13 14 23 3 + 32 51 50 8 14 24 23 3 + 32 33 51 8 14 15 24 3 + 33 52 51 8 15 25 24 3 + 33 34 52 8 15 16 25 3 + 34 53 52 8 16 67 25 3 + 34 35 53 8 16 64 67 3 + 35 54 53 8 17 27 26 3 + 35 36 54 8 17 18 27 3 + 36 37 54 8 18 19 27 3 + 36 19 37 8 18 10 19 3 + 37 56 55 8 19 29 28 3 + 37 38 56 8 19 20 29 3 + 38 57 56 8 20 68 29 3 + 38 39 57 8 20 66 68 3 + 39 58 57 8 21 31 30 3 + 39 40 58 8 21 22 31 3 + 40 59 58 8 22 32 31 3 + 40 41 59 8 22 23 32 3 + 41 60 59 8 23 33 32 3 + 41 42 60 8 23 24 33 3 + 42 61 60 8 24 34 33 3 + 42 43 61 8 24 25 34 3 + 43 62 61 8 25 69 34 3 + 43 44 62 8 25 67 69 3 + 44 63 62 8 26 36 35 3 + 44 45 63 8 26 27 36 3 + 45 64 63 8 27 28 36 3 + 45 46 64 8 27 19 28 3 + 46 65 64 8 19 29 28 3 + 46 47 65 8 19 20 29 3 + 47 66 65 8 20 68 29 3 + 47 48 66 8 20 66 68 3 + 48 67 66 8 21 31 30 3 + 48 49 67 8 21 22 31 3 + 49 68 67 8 22 32 31 3 + 49 50 68 8 22 23 32 3 + 50 69 68 8 23 33 32 3 + 50 51 69 8 23 24 33 3 + 51 70 69 8 24 34 33 3 + 51 52 70 8 24 25 34 3 + 52 71 70 8 25 69 34 3 + 52 53 71 8 25 67 69 3 + 53 72 71 8 26 36 35 3 + 53 54 72 8 26 27 36 3 + 54 55 72 8 27 28 36 3 + 54 37 55 8 27 19 28 3 + 55 74 73 8 28 38 37 3 + 55 56 74 8 28 29 38 3 + 56 75 74 8 29 70 38 3 + 56 57 75 8 29 68 70 3 + 57 76 75 8 30 40 39 3 + 57 58 76 8 30 31 40 3 + 58 77 76 8 31 41 40 3 + 58 59 77 8 31 32 41 3 + 59 78 77 8 32 42 41 3 + 59 60 78 8 32 33 42 3 + 60 79 78 8 33 43 42 3 + 60 61 79 8 33 34 43 3 + 61 80 79 8 34 71 43 3 + 61 62 80 8 34 69 71 3 + 62 81 80 8 35 45 44 3 + 62 63 81 8 35 36 45 3 + 63 82 81 8 36 37 45 3 + 63 64 82 8 36 28 37 3 + 64 83 82 8 28 38 37 3 + 64 65 83 8 28 29 38 3 + 65 84 83 8 29 70 38 3 + 65 66 84 8 29 68 70 3 + 66 85 84 8 30 40 39 3 + 66 67 85 8 30 31 40 3 + 67 86 85 8 31 41 40 3 + 67 68 86 8 31 32 41 3 + 68 87 86 8 32 42 41 3 + 68 69 87 8 32 33 42 3 + 69 88 87 8 33 43 42 3 + 69 70 88 8 33 34 43 3 + 70 89 88 8 34 71 43 3 + 70 71 89 8 34 69 71 3 + 71 90 89 8 35 45 44 3 + 71 72 90 8 35 36 45 3 + 72 73 90 8 36 37 45 3 + 72 55 73 8 36 28 37 3 + 73 92 91 8 37 72 73 3 + 73 74 92 8 37 38 72 3 + 74 93 92 8 38 74 72 3 + 74 75 93 8 38 70 74 3 + 75 94 93 8 39 75 76 3 + 75 76 94 8 39 40 75 3 + 76 95 94 8 40 51 75 3 + 76 77 95 8 40 41 51 3 + 77 96 95 8 41 50 51 3 + 77 78 96 8 41 42 50 3 + 78 97 96 8 42 77 50 3 + 78 79 97 8 42 43 77 3 + 79 98 97 8 43 78 77 3 + 79 80 98 8 43 71 78 3 + 80 99 98 8 44 79 80 3 + 80 81 99 8 44 45 79 3 + 81 100 99 8 45 73 79 3 + 81 82 100 8 45 37 73 3 + 82 101 100 8 37 72 73 3 + 82 83 101 8 37 38 72 3 + 83 102 101 8 38 74 72 3 + 83 84 102 8 38 70 74 3 + 84 103 102 8 39 75 76 3 + 84 85 103 8 39 40 75 3 + 85 104 103 8 40 51 75 3 + 85 86 104 8 40 41 51 3 + 86 105 104 8 41 50 51 3 + 86 87 105 8 41 42 50 3 + 87 106 105 8 42 77 50 3 + 87 88 106 8 42 43 77 3 + 88 107 106 8 43 78 77 3 + 88 89 107 8 43 71 78 3 + 89 108 107 8 44 79 80 3 + 89 90 108 8 44 45 79 3 + 90 91 108 8 45 73 79 3 + 90 73 91 8 45 37 73 3 + 109 91 92 1 0 46 47 1 + 109 92 93 1 0 47 48 1 + 109 93 94 1 0 48 49 1 + 109 94 95 1 0 49 50 1 + 109 95 96 1 0 50 51 1 + 109 96 97 1 0 51 52 1 + 109 97 98 1 0 52 53 1 + 109 98 99 1 0 53 54 1 + 109 99 100 1 0 54 55 1 + 109 100 101 1 0 55 56 1 + 109 101 102 1 0 56 57 1 + 109 102 103 1 0 57 58 1 + 109 103 104 1 0 58 5 1 + 109 104 105 1 0 5 6 1 + 109 105 106 1 0 6 59 1 + 109 106 107 1 0 59 60 1 + 109 107 108 1 0 60 61 1 + 109 108 91 1 0 61 46 1 + tverts 81 + 0.5 0.5 0 + 0.5 0.000499547 0 + 0.673475 0.000499547 0 + 0.11736 0.000499547 0 + 0.250249 0.000499547 0 + 0.413262 0.000499547 0 + 0.586737 0.000499547 0 + 0.749751 0.000499547 0 + 0.173973 0.000499547 0 + 0.326525 0.000499547 0 + 0.5 0.200301 0 + 0.673475 0.200301 0 + 0.11736 0.200301 0 + 0.250249 0.200301 0 + 0.413262 0.200301 0 + 0.586737 0.200301 0 + 0.749751 0.200301 0 + 0.173973 0.200301 0 + 0.326525 0.200301 0 + 0.5 0.400101 0 + 0.673475 0.400101 0 + 0.11736 0.400101 0 + 0.250249 0.400101 0 + 0.413262 0.400101 0 + 0.586737 0.400101 0 + 0.749751 0.400101 0 + 0.173973 0.400101 0 + 0.326525 0.400101 0 + 0.5 0.599902 0 + 0.673475 0.599902 0 + 0.11736 0.599902 0 + 0.250249 0.599902 0 + 0.413262 0.599902 0 + 0.586737 0.599902 0 + 0.749751 0.599902 0 + 0.173973 0.599902 0 + 0.326525 0.599902 0 + 0.5 0.799703 0 + 0.673475 0.799703 0 + 0.11736 0.799703 0 + 0.250249 0.799703 0 + 0.413262 0.799703 0 + 0.586737 0.799703 0 + 0.749751 0.799703 0 + 0.173973 0.799703 0 + 0.326525 0.799703 0 + 0.999501 0.5 0 + 0.969378 0.673475 0 + 0.88264 0.826027 0 + 0.749751 0.939255 0 + 0.586738 0.9995 0 + 0.413263 0.9995 0 + 0.250249 0.939255 0 + 0.11736 0.826027 0 + 0.0306221 0.673475 0 + 0.000499547 0.5 0 + 0.030622 0.326525 0 + 0.11736 0.173973 0 + 0.250249 0.0607453 0 + 0.749751 0.0607451 0 + 0.88264 0.173973 0 + 0.969378 0.326525 0 + 0.826027 0.200301 0 + 0.826027 0.000499547 0 + 0.88264 0.200301 0 + 0.88264 0.000499547 0 + 0.826027 0.400101 0 + 0.88264 0.400101 0 + 0.826027 0.599902 0 + 0.88264 0.599902 0 + 0.826027 0.799703 0 + 0.88264 0.799703 0 + 0.673475 0.999501 0 + 0.5 0.999501 0 + 0.826027 0.999501 0 + 0.250249 0.999501 0 + 0.11736 0.999501 0 + 0.749751 0.999501 0 + 0.88264 0.999501 0 + 0.326525 0.999501 0 + 0.173973 0.999501 0 +endnode +node trimesh cylinder09 + parent box17 + position 0.0371693 -0.00919205 0.0285932 + orientation -0.00307183 -0.704011 -0.710182 -3.14159 + wirecolor 0.776471 0.87451 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 0 5.3551 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 3 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 110 + 0 0 0 + 0.0104253 0 0 + 0.0097966 0.00356567 0 + 0.00798626 0.00670127 0 + 0.00521266 0.00902859 0 + 0.00181034 0.0102669 0 + -0.00181034 0.0102669 0 + -0.00521266 0.00902859 0 + -0.00798626 0.00670127 0 + -0.0097966 0.00356567 0 + -0.0104253 0 0 + -0.0097966 -0.00356567 0 + -0.00798626 -0.00670127 0 + -0.00521266 -0.00902859 0 + -0.00181034 -0.0102669 0 + 0.00181034 -0.0102669 0 + 0.00521266 -0.00902859 0 + 0.00798626 -0.00670127 0 + 0.0097966 -0.00356567 0 + 0.0104253 0 0.0214205 + 0.0097966 0.00356567 0.0214205 + 0.00798626 0.00670127 0.0214205 + 0.00521266 0.00902859 0.0214205 + 0.00181034 0.0102669 0.0214205 + -0.00181034 0.0102669 0.0214205 + -0.00521266 0.00902859 0.0214205 + -0.00798626 0.00670127 0.0214205 + -0.0097966 0.00356567 0.0214205 + -0.0104253 0 0.0214205 + -0.0097966 -0.00356567 0.0214205 + -0.00798626 -0.00670127 0.0214205 + -0.00521266 -0.00902859 0.0214205 + -0.00181034 -0.0102669 0.0214205 + 0.00181034 -0.0102669 0.0214205 + 0.00521266 -0.00902859 0.0214205 + 0.00798626 -0.00670127 0.0214205 + 0.0097966 -0.00356567 0.0214205 + 0.0104253 0 0.0428409 + 0.0097966 0.00356567 0.0428409 + 0.00798626 0.00670127 0.0428409 + 0.00521266 0.00902859 0.0428409 + 0.00181034 0.0102669 0.0428409 + -0.00181034 0.0102669 0.0428409 + -0.00521266 0.00902859 0.0428409 + -0.00798626 0.00670127 0.0428409 + -0.0097966 0.00356567 0.0428409 + -0.0104253 0 0.0428409 + -0.0097966 -0.00356567 0.0428409 + -0.00798626 -0.00670127 0.0428409 + -0.00521266 -0.00902859 0.0428409 + -0.00181034 -0.0102669 0.0428409 + 0.00181034 -0.0102669 0.0428409 + 0.00521266 -0.00902859 0.0428409 + 0.00798626 -0.00670127 0.0428409 + 0.0097966 -0.00356567 0.0428409 + 0.0104253 0 0.0642614 + 0.0097966 0.00356567 0.0642614 + 0.00798626 0.00670127 0.0642614 + 0.00521266 0.00902859 0.0642614 + 0.00181034 0.0102669 0.0642614 + -0.00181034 0.0102669 0.0642614 + -0.00521266 0.00902859 0.0642614 + -0.00798626 0.00670127 0.0642614 + -0.0097966 0.00356567 0.0642614 + -0.0104253 0 0.0642614 + -0.0097966 -0.00356567 0.0642614 + -0.00798626 -0.00670127 0.0642614 + -0.00521266 -0.00902859 0.0642614 + -0.00181034 -0.0102669 0.0642614 + 0.00181034 -0.0102669 0.0642614 + 0.00521266 -0.00902859 0.0642614 + 0.00798626 -0.00670127 0.0642614 + 0.0097966 -0.00356567 0.0642614 + 0.0104253 0 0.0856819 + 0.0097966 0.00356567 0.0856819 + 0.00798626 0.00670127 0.0856819 + 0.00521266 0.00902859 0.0856819 + 0.00181034 0.0102669 0.0856819 + -0.00181034 0.0102669 0.0856819 + -0.00521266 0.00902859 0.0856819 + -0.00798626 0.00670127 0.0856819 + -0.0097966 0.00356567 0.0856819 + -0.0104253 0 0.0856819 + -0.0097966 -0.00356567 0.0856819 + -0.00798626 -0.00670127 0.0856819 + -0.00521266 -0.00902859 0.0856819 + -0.00181034 -0.0102669 0.0856819 + 0.00181034 -0.0102669 0.0856819 + 0.00521266 -0.00902859 0.0856819 + 0.00798626 -0.00670127 0.0856819 + 0.0097966 -0.00356567 0.0856819 + 0.0104253 0 0.107102 + 0.0097966 0.00356567 0.107102 + 0.00798626 0.00670127 0.107102 + 0.00521266 0.00902859 0.107102 + 0.00181034 0.0102669 0.107102 + -0.00181034 0.0102669 0.107102 + -0.00521266 0.00902859 0.107102 + -0.00798626 0.00670127 0.107102 + -0.0097966 0.00356567 0.107102 + -0.0104253 0 0.107102 + -0.0097966 -0.00356567 0.107102 + -0.00798626 -0.00670127 0.107102 + -0.00521266 -0.00902859 0.107102 + -0.00181034 -0.0102669 0.107102 + 0.00181034 -0.0102669 0.107102 + 0.00521266 -0.00902859 0.107102 + 0.00798626 -0.00670127 0.107102 + 0.0097966 -0.00356567 0.107102 + 0 0 0.107102 + faces 216 + 0 2 1 1 0 54 55 2 + 0 3 2 1 0 53 54 2 + 0 4 3 1 0 52 53 2 + 0 5 4 1 0 51 52 2 + 0 6 5 1 0 50 51 2 + 0 7 6 1 0 49 50 2 + 0 8 7 1 0 48 49 2 + 0 9 8 1 0 47 48 2 + 0 10 9 1 0 46 47 2 + 0 11 10 1 0 63 46 2 + 0 12 11 1 0 62 63 2 + 0 13 12 1 0 61 62 2 + 0 14 13 1 0 60 61 2 + 0 15 14 1 0 59 60 2 + 0 16 15 1 0 58 59 2 + 0 17 16 1 0 57 58 2 + 0 18 17 1 0 56 57 2 + 0 1 18 1 0 55 56 2 + 1 20 19 8 1 11 10 3 + 1 2 20 8 1 2 11 3 + 2 21 20 8 2 64 11 3 + 2 3 21 8 2 65 64 3 + 3 22 21 8 3 13 12 3 + 3 4 22 8 3 4 13 3 + 4 23 22 8 4 14 13 3 + 4 5 23 8 4 5 14 3 + 5 24 23 8 5 15 14 3 + 5 6 24 8 5 6 15 3 + 6 25 24 8 6 16 15 3 + 6 7 25 8 6 7 16 3 + 7 26 25 8 7 66 16 3 + 7 8 26 8 7 67 66 3 + 8 27 26 8 8 18 17 3 + 8 9 27 8 8 9 18 3 + 9 28 27 8 9 10 18 3 + 9 10 28 8 9 1 10 3 + 10 29 28 8 1 11 10 3 + 10 11 29 8 1 2 11 3 + 11 30 29 8 2 64 11 3 + 11 12 30 8 2 65 64 3 + 12 31 30 8 3 13 12 3 + 12 13 31 8 3 4 13 3 + 13 32 31 8 4 14 13 3 + 13 14 32 8 4 5 14 3 + 14 33 32 8 5 15 14 3 + 14 15 33 8 5 6 15 3 + 15 34 33 8 6 16 15 3 + 15 16 34 8 6 7 16 3 + 16 35 34 8 7 66 16 3 + 16 17 35 8 7 67 66 3 + 17 36 35 8 8 18 17 3 + 17 18 36 8 8 9 18 3 + 18 19 36 8 9 10 18 3 + 18 1 19 8 9 1 10 3 + 19 38 37 8 10 20 19 3 + 19 20 38 8 10 11 20 3 + 20 39 38 8 11 68 20 3 + 20 21 39 8 11 64 68 3 + 21 40 39 8 12 22 21 3 + 21 22 40 8 12 13 22 3 + 22 41 40 8 13 23 22 3 + 22 23 41 8 13 14 23 3 + 23 42 41 8 14 24 23 3 + 23 24 42 8 14 15 24 3 + 24 43 42 8 15 25 24 3 + 24 25 43 8 15 16 25 3 + 25 44 43 8 16 69 25 3 + 25 26 44 8 16 66 69 3 + 26 45 44 8 17 27 26 3 + 26 27 45 8 17 18 27 3 + 27 46 45 8 18 19 27 3 + 27 28 46 8 18 10 19 3 + 28 47 46 8 10 20 19 3 + 28 29 47 8 10 11 20 3 + 29 48 47 8 11 68 20 3 + 29 30 48 8 11 64 68 3 + 30 49 48 8 12 22 21 3 + 30 31 49 8 12 13 22 3 + 31 50 49 8 13 23 22 3 + 31 32 50 8 13 14 23 3 + 32 51 50 8 14 24 23 3 + 32 33 51 8 14 15 24 3 + 33 52 51 8 15 25 24 3 + 33 34 52 8 15 16 25 3 + 34 53 52 8 16 69 25 3 + 34 35 53 8 16 66 69 3 + 35 54 53 8 17 27 26 3 + 35 36 54 8 17 18 27 3 + 36 37 54 8 18 19 27 3 + 36 19 37 8 18 10 19 3 + 37 56 55 8 19 29 28 3 + 37 38 56 8 19 20 29 3 + 38 57 56 8 20 70 29 3 + 38 39 57 8 20 68 70 3 + 39 58 57 8 21 31 30 3 + 39 40 58 8 21 22 31 3 + 40 59 58 8 22 32 31 3 + 40 41 59 8 22 23 32 3 + 41 60 59 8 23 33 32 3 + 41 42 60 8 23 24 33 3 + 42 61 60 8 24 34 33 3 + 42 43 61 8 24 25 34 3 + 43 62 61 8 25 71 34 3 + 43 44 62 8 25 69 71 3 + 44 63 62 8 26 36 35 3 + 44 45 63 8 26 27 36 3 + 45 64 63 8 27 28 36 3 + 45 46 64 8 27 19 28 3 + 46 65 64 8 19 29 28 3 + 46 47 65 8 19 20 29 3 + 47 66 65 8 20 70 29 3 + 47 48 66 8 20 68 70 3 + 48 67 66 8 21 31 30 3 + 48 49 67 8 21 22 31 3 + 49 68 67 8 22 32 31 3 + 49 50 68 8 22 23 32 3 + 50 69 68 8 23 33 32 3 + 50 51 69 8 23 24 33 3 + 51 70 69 8 24 34 33 3 + 51 52 70 8 24 25 34 3 + 52 71 70 8 25 71 34 3 + 52 53 71 8 25 69 71 3 + 53 72 71 8 26 36 35 3 + 53 54 72 8 26 27 36 3 + 54 55 72 8 27 28 36 3 + 54 37 55 8 27 19 28 3 + 55 74 73 8 28 38 37 3 + 55 56 74 8 28 29 38 3 + 56 75 74 8 29 72 38 3 + 56 57 75 8 29 70 72 3 + 57 76 75 8 30 40 39 3 + 57 58 76 8 30 31 40 3 + 58 77 76 8 31 41 40 3 + 58 59 77 8 31 32 41 3 + 59 78 77 8 32 42 41 3 + 59 60 78 8 32 33 42 3 + 60 79 78 8 33 43 42 3 + 60 61 79 8 33 34 43 3 + 61 80 79 8 34 73 43 3 + 61 62 80 8 34 71 73 3 + 62 81 80 8 35 45 44 3 + 62 63 81 8 35 36 45 3 + 63 82 81 8 36 37 45 3 + 63 64 82 8 36 28 37 3 + 64 83 82 8 28 38 37 3 + 64 65 83 8 28 29 38 3 + 65 84 83 8 29 72 38 3 + 65 66 84 8 29 70 72 3 + 66 85 84 8 30 40 39 3 + 66 67 85 8 30 31 40 3 + 67 86 85 8 31 41 40 3 + 67 68 86 8 31 32 41 3 + 68 87 86 8 32 42 41 3 + 68 69 87 8 32 33 42 3 + 69 88 87 8 33 43 42 3 + 69 70 88 8 33 34 43 3 + 70 89 88 8 34 73 43 3 + 70 71 89 8 34 71 73 3 + 71 90 89 8 35 45 44 3 + 71 72 90 8 35 36 45 3 + 72 73 90 8 36 37 45 3 + 72 55 73 8 36 28 37 3 + 73 92 91 8 37 74 75 3 + 73 74 92 8 37 38 74 3 + 74 93 92 8 38 76 74 3 + 74 75 93 8 38 72 76 3 + 75 94 93 8 39 77 78 3 + 75 76 94 8 39 40 77 3 + 76 95 94 8 40 79 77 3 + 76 77 95 8 40 41 79 3 + 77 96 95 8 41 80 79 3 + 77 78 96 8 41 42 80 3 + 78 97 96 8 42 81 80 3 + 78 79 97 8 42 43 81 3 + 79 98 97 8 43 82 81 3 + 79 80 98 8 43 73 82 3 + 80 99 98 8 44 83 84 3 + 80 81 99 8 44 45 83 3 + 81 100 99 8 45 75 83 3 + 81 82 100 8 45 37 75 3 + 82 101 100 8 37 74 75 3 + 82 83 101 8 37 38 74 3 + 83 102 101 8 38 76 74 3 + 83 84 102 8 38 72 76 3 + 84 103 102 8 39 77 78 3 + 84 85 103 8 39 40 77 3 + 85 104 103 8 40 79 77 3 + 85 86 104 8 40 41 79 3 + 86 105 104 8 41 80 79 3 + 86 87 105 8 41 42 80 3 + 87 106 105 8 42 81 80 3 + 87 88 106 8 42 43 81 3 + 88 107 106 8 43 82 81 3 + 88 89 107 8 43 73 82 3 + 89 108 107 8 44 83 84 3 + 89 90 108 8 44 45 83 3 + 90 91 108 8 45 75 83 3 + 90 73 91 8 45 37 75 3 + 109 91 92 1 0 46 47 1 + 109 92 93 1 0 47 48 1 + 109 93 94 1 0 48 49 1 + 109 94 95 1 0 49 50 1 + 109 95 96 1 0 50 51 1 + 109 96 97 1 0 51 52 1 + 109 97 98 1 0 52 53 1 + 109 98 99 1 0 53 54 1 + 109 99 100 1 0 54 55 1 + 109 100 101 1 0 55 56 1 + 109 101 102 1 0 56 57 1 + 109 102 103 1 0 57 58 1 + 109 103 104 1 0 58 59 1 + 109 104 105 1 0 59 60 1 + 109 105 106 1 0 60 61 1 + 109 106 107 1 0 61 62 1 + 109 107 108 1 0 62 63 1 + 109 108 91 1 0 63 46 1 + tverts 85 + 0.5 0.5 0 + 0.5 -0.580856 0 + 0.571968 -0.580856 0 + 0.338808 -0.580856 0 + 0.394789 -0.580856 0 + 0.463461 -0.580856 0 + 0.536539 -0.580856 0 + 0.605211 -0.580856 0 + 0.364744 -0.580856 0 + 0.428032 -0.580856 0 + 0.5 -0.148512 0 + 0.571968 -0.148512 0 + 0.338808 -0.148512 0 + 0.394789 -0.148512 0 + 0.463461 -0.148512 0 + 0.536539 -0.148512 0 + 0.605211 -0.148512 0 + 0.364744 -0.148512 0 + 0.428032 -0.148512 0 + 0.5 0.283831 0 + 0.571968 0.283831 0 + 0.338808 0.283831 0 + 0.394789 0.283831 0 + 0.463461 0.283831 0 + 0.536539 0.283831 0 + 0.605211 0.283831 0 + 0.364744 0.283831 0 + 0.428032 0.283831 0 + 0.5 0.716175 0 + 0.571968 0.716175 0 + 0.338808 0.716175 0 + 0.394789 0.716175 0 + 0.463461 0.716175 0 + 0.536539 0.716175 0 + 0.605211 0.716175 0 + 0.364744 0.716175 0 + 0.428032 0.716175 0 + 0.5 1.14852 0 + 0.571968 1.14852 0 + 0.338808 1.14852 0 + 0.394789 1.14852 0 + 0.463461 1.14852 0 + 0.536539 1.14852 0 + 0.605211 1.14852 0 + 0.364744 1.14852 0 + 0.428032 1.14852 0 + 0.710421 0.5 0 + 0.697731 0.571968 0 + 0.661192 0.635256 0 + 0.605211 0.68223 0 + 0.536539 0.707224 0 + 0.463461 0.707224 0 + 0.394789 0.68223 0 + 0.338808 0.635256 0 + 0.302269 0.571968 0 + 0.289579 0.5 0 + 0.302269 0.428032 0 + 0.338808 0.364744 0 + 0.394789 0.31777 0 + 0.463461 0.292776 0 + 0.536539 0.292776 0 + 0.605211 0.31777 0 + 0.661192 0.364744 0 + 0.697731 0.428032 0 + 0.635256 -0.148512 0 + 0.635256 -0.580856 0 + 0.661192 -0.148512 0 + 0.661192 -0.580856 0 + 0.635256 0.283831 0 + 0.661192 0.283831 0 + 0.635256 0.716175 0 + 0.661192 0.716175 0 + 0.635256 1.14852 0 + 0.661192 1.14852 0 + 0.571968 1.58086 0 + 0.5 1.58086 0 + 0.635256 1.58086 0 + 0.394789 1.58086 0 + 0.338808 1.58086 0 + 0.463461 1.58086 0 + 0.536539 1.58086 0 + 0.605211 1.58086 0 + 0.661192 1.58086 0 + 0.428032 1.58086 0 + 0.364744 1.58086 0 +endnode +node dummy rootdummy03 + parent box12 + position 0.0041922 0.088028 0.123027 + orientation 0.558068 -0.598385 0.574887 -2.13944 + wirecolor 0.878431 0.341176 0.560784 +endnode +node trimesh grip03 + parent rootdummy03 + position 0.000183551 -0.14571 0.000191907 + orientation -0.766228 -0.29408 -0.571324 -6.28319 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0.0238699 11.5009 -0.00238001 + ambient 0 0 0 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 5 + selfillumcolor 0 0 0 + bitmap al_leather06_tex + verts 8 + 0.000238686 0.000156174 -0.0197865 + 0.000238689 0.229711 -0.0231462 + 0.0233611 0.229862 -2.38153e-05 + 0.0200014 0.000156174 -2.38188e-05 + -0.019524 0.000156174 -2.38162e-05 + 0.000238688 0.000156174 0.0197389 + 0.000238691 0.229711 0.0230986 + -0.0228837 0.229862 -2.38127e-05 + faces 10 + 0 1 2 1 0 1 2 4 + 2 3 0 1 2 3 0 4 + 4 5 6 1 3 4 5 4 + 6 7 4 1 5 2 3 4 + 0 3 5 1 0 3 4 4 + 5 4 0 1 4 3 0 4 + 3 2 6 1 3 2 5 4 + 6 5 3 1 5 4 3 4 + 1 0 4 1 1 0 3 4 + 4 7 1 1 3 2 1 4 + tverts 6 + 0.0730774 0.000499547 0 + 0.000499606 0.998844 0 + 0.5 0.9995 0 + 0.5 0.000499547 0 + 0.926923 0.000499547 0 + 0.9995 0.998844 0 +endnode +node trimesh pommel03 + parent rootdummy03 + position 0.000183551 -0.14571 0.000191907 + orientation -0.766228 -0.29408 -0.571324 -6.28319 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0 -0.0465549 4.76837e-06 + ambient 0 0 0 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 5 + selfillumcolor 0.2 0.2 0.2 + bitmap aged_steel_dk + verts 6 + 0 0.0281357 0 + 0 -0.00507035 0.0436009 + 0.0436009 -0.00507034 0 + -0.0436009 -0.00507034 0 + 0 -0.00507034 -0.0436008 + 0 -0.0290668 0 + faces 8 + 0 1 2 1 0 1 2 2 + 0 3 1 1 0 2 1 2 + 0 4 3 1 0 3 2 2 + 0 2 4 1 0 2 3 2 + 5 2 1 1 4 2 1 1 + 5 1 3 1 4 1 2 1 + 5 3 4 1 4 2 3 1 + 5 4 2 1 4 3 2 1 + tverts 5 + 0.499999 0.9995 0 + 0.9995 0.41958 0 + 0.499999 0.41958 0 + 0.000500053 0.419581 0 + 0.499999 0.000499547 0 +endnode +node trimesh guard_curved03 + parent rootdummy03 + position 0 0 0 + orientation -0.766228 -0.29408 -0.571324 -6.28319 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center -0.00134003 11.8372 0 + ambient 0 0 0 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 5 + selfillumcolor 0.2 0.2 0.2 + bitmap aged_steel_dk + verts 42 + -0.00763616 0.141653 -0.131431 + -0.0076432 0.134515 -0.134606 + -0.00899189 0.126187 -0.106653 + -0.00899784 0.116262 -0.110058 + -0.0103696 0.114295 -0.0808058 + -0.0103739 0.101159 -0.0840942 + -0.01177 0.1061 -0.0542008 + -0.0117723 0.0893894 -0.0569378 + -0.0134621 0.109266 -0.0279758 + -0.0183767 0.0803402 -0.0328609 + -0.0101663 0.156403 3.32605e-07 + -0.0134623 0.109266 0.0279752 + -0.0183768 0.08034 0.0328611 + -0.0117702 0.1061 0.0542012 + -0.0117726 0.0893892 0.0569372 + -0.0103699 0.114294 0.0808062 + -0.0103741 0.101159 0.0840942 + -0.00899226 0.126186 0.106653 + -0.00899823 0.116261 0.110057 + -0.00763663 0.141652 0.131431 + -0.0076436 0.134514 0.134605 + 0.00694994 0.141677 -0.131498 + 0.00694295 0.134539 -0.134673 + 0.00851152 0.126205 -0.106719 + 0.00850557 0.11628 -0.110124 + 0.0100511 0.114307 -0.0808647 + 0.0100469 0.101172 -0.0841528 + 0.011568 0.106106 -0.0542458 + 0.0115656 0.0893956 -0.0569828 + 0.0133386 0.109267 -0.0280027 + 0.01835 0.0803414 -0.0328908 + 0.0101661 0.156403 3.83505e-07 + 0.0133385 0.109267 0.0280033 + 0.0183499 0.0803413 0.0328902 + 0.0115679 0.106106 0.0542462 + 0.0115654 0.0893953 0.0569822 + 0.0100508 0.114306 0.0808642 + 0.0100466 0.101171 0.0841522 + 0.00851114 0.126204 0.106719 + 0.00850518 0.116279 0.110123 + 0.00694948 0.141676 0.131498 + 0.00694249 0.134538 0.134673 + faces 80 + 2 0 3 1 2 0 3 1 + 1 3 0 1 1 3 0 1 + 4 2 5 1 4 2 5 1 + 3 5 2 1 3 5 2 1 + 6 4 7 1 6 4 7 1 + 5 7 4 1 5 7 4 1 + 8 6 9 1 8 6 9 1 + 7 9 6 1 7 9 6 1 + 13 11 14 1 13 11 14 1 + 12 14 11 1 12 14 11 1 + 15 13 16 1 15 13 16 1 + 14 16 13 1 14 16 13 1 + 17 15 18 1 17 15 18 1 + 16 18 15 1 16 18 15 1 + 19 17 20 1 19 17 20 1 + 18 20 17 1 18 20 17 1 + 22 21 24 2 22 21 24 2 + 23 24 21 2 23 24 21 2 + 24 23 26 2 24 23 26 2 + 25 26 23 2 25 26 23 2 + 26 25 28 2 26 25 28 2 + 27 28 25 2 27 28 25 2 + 28 27 30 2 28 27 30 2 + 29 30 27 2 29 30 27 2 + 33 32 35 2 32 31 34 2 + 34 35 32 2 33 34 31 2 + 35 34 37 2 34 33 36 2 + 36 37 34 2 35 36 33 2 + 37 36 39 2 36 35 38 2 + 38 39 36 2 37 38 35 2 + 39 38 41 2 38 37 40 2 + 40 41 38 2 39 40 37 2 + 1 0 22 0 1 0 22 5 + 21 22 0 0 21 22 0 5 + 3 1 24 4 3 1 24 4 + 22 24 1 4 22 24 1 4 + 5 3 26 4 5 3 26 4 + 24 26 3 4 24 26 3 4 + 7 5 28 4 7 5 28 4 + 26 28 5 4 26 28 5 4 + 9 7 30 4 9 7 30 4 + 28 30 7 4 28 30 7 4 + 14 12 35 4 14 12 34 4 + 33 35 12 4 32 34 12 4 + 16 14 37 4 16 14 36 4 + 35 37 14 4 34 36 14 4 + 18 16 39 4 18 16 38 4 + 37 39 16 4 36 38 16 4 + 20 18 41 4 20 18 40 4 + 39 41 18 4 38 40 18 4 + 19 20 40 0 19 20 39 6 + 41 40 20 0 40 39 20 6 + 17 19 38 16 17 19 37 3 + 40 38 19 16 39 37 19 3 + 15 17 36 16 15 17 35 3 + 38 36 17 16 37 35 17 3 + 13 15 34 16 13 15 33 3 + 36 34 15 16 35 33 15 3 + 11 13 32 16 11 13 31 3 + 34 32 13 16 33 31 13 3 + 10 11 31 16 10 11 10 3 + 32 31 11 16 31 10 11 3 + 8 10 29 8 8 10 29 3 + 31 29 10 8 10 29 10 3 + 6 8 27 8 6 8 27 3 + 29 27 8 8 29 27 8 3 + 4 6 25 8 4 6 25 3 + 27 25 6 8 27 25 6 3 + 2 4 23 8 2 4 23 3 + 25 23 4 8 25 23 4 3 + 0 2 21 8 0 2 21 3 + 23 21 2 8 23 21 2 3 + 11 10 8 1 11 10 8 1 + 12 11 9 1 12 11 9 1 + 11 8 9 1 11 8 9 1 + 29 31 32 2 29 10 31 1 + 30 29 33 2 30 29 32 1 + 32 33 29 2 31 32 29 1 + 9 30 12 4 9 30 12 1 + 33 12 30 4 32 12 30 1 + tverts 41 + 0.0125251 0.805779 0 + 0.000750452 0.71203 0 + 0.104425 0.602649 0 + 0.0917983 0.472295 0 + 0.200293 0.44646 0 + 0.188096 0.273941 0 + 0.29897 0.338828 0 + 0.288818 0.119354 0 + 0.396238 0.380409 0 + 0.378119 0.000501812 0 + 0.500001 0.999501 0 + 0.603759 0.380407 0 + 0.621881 0.000499576 0 + 0.701031 0.338824 0 + 0.711179 0.119351 0 + 0.799708 0.446455 0 + 0.811903 0.273937 0 + 0.895575 0.602642 0 + 0.9082 0.472288 0 + 0.987476 0.805771 0 + 0.999248 0.712021 0 + 0.0122744 0.806094 0 + 0.000499487 0.712344 0 + 0.10418 0.602885 0 + 0.0915533 0.472531 0 + 0.200074 0.446617 0 + 0.187879 0.274099 0 + 0.298803 0.338909 0 + 0.288652 0.119434 0 + 0.396138 0.380423 0 + 0.378008 0.000517368 0 + 0.603863 0.380421 0 + 0.621989 0.000516593 0 + 0.701198 0.338905 0 + 0.711346 0.119431 0 + 0.799924 0.446612 0 + 0.812119 0.274093 0 + 0.895819 0.602878 0 + 0.908445 0.472524 0 + 0.987725 0.806085 0 + 0.999501 0.712335 0 +endnode +node trimesh blade_wd_fuller03 + parent rootdummy03 + position 0 0.1 0 + orientation 0 0 -1 -1.5708 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center -0.00134003 11.8372 0 + ambient 0.5 0.5 0.5 + diffuse 0.588 0.588 0.588 + specular 0 0 0 + shininess 1 + selfillumcolor 0.2 0.2 0.2 + bitmap aged_steel + verts 31 + 0.0446272 0.00550057 0.0173199 + -0.029824 0.00550058 0.0161778 + 0.0446273 -0.00550058 0.0173199 + -0.029824 -0.00550057 0.0161778 + 0.0446272 -0.00550058 -0.0173199 + -0.029824 -0.00550057 -0.0161778 + 0.0446271 0.00550057 -0.0173199 + -0.029824 0.00550058 -0.0161778 + 0.0650452 0 -0.030899 + 0.0650452 0.00550057 -0.0134468 + 0.0650454 -0.00550058 -0.0134468 + 0.0650452 0.00550057 0.0134468 + 0.0650454 -0.00550058 0.0134468 + 0.0650454 0 0.030899 + 0.562736 0 -0.0254337 + 0.562736 0.00460856 -0.0077243 + 0.562736 -0.00460865 -0.00772429 + 0.562736 0.00460856 0.00772431 + 0.562736 -0.00460865 0.00772432 + 0.562736 0 0.0254337 + 0.761302 0 -0.0218595 + 0.761302 0.00405141 -0.00631497 + 0.761302 -0.00405154 -0.00631497 + 0.761302 0.00405141 0.00631498 + 0.761302 -0.00405154 0.00631498 + 0.761302 0 0.0218595 + 0.806732 0 -0.0165024 + 0.806732 0.0029537 0 + 0.806732 -0.00295384 0 + 0.806732 0 0.0165024 + 0.841443 0 0 + faces 56 + 0 1 3 1 0 1 1 0 + 3 2 0 1 1 0 0 0 + 2 3 5 2 0 1 2 0 + 5 4 2 2 2 3 0 0 + 4 5 7 1 3 2 2 0 + 7 6 4 1 2 3 3 0 + 6 7 1 2 3 2 1 0 + 1 0 6 2 1 0 3 0 + 6 9 8 4 3 4 5 0 + 4 8 10 8 3 5 4 0 + 4 6 8 16 3 3 5 0 + 6 0 11 2 3 0 6 0 + 11 9 6 2 6 4 3 0 + 2 4 10 2 0 3 4 0 + 10 12 2 2 4 6 0 0 + 0 13 11 16 0 7 6 0 + 0 2 13 4 0 0 7 0 + 2 12 13 32 0 6 7 0 + 8 9 15 4 5 4 8 0 + 15 14 8 4 8 9 5 0 + 10 8 14 8 4 5 9 0 + 14 16 10 8 9 8 4 0 + 9 11 17 2 4 6 10 0 + 17 15 9 2 10 8 4 0 + 12 10 16 2 6 4 8 0 + 16 18 12 2 8 10 6 0 + 11 13 19 16 6 7 11 0 + 19 17 11 16 11 10 6 0 + 13 12 18 32 7 6 10 0 + 18 19 13 32 10 11 7 0 + 14 15 21 4 9 8 12 0 + 21 20 14 4 12 13 9 0 + 16 14 20 8 8 9 13 0 + 20 22 16 8 13 12 8 0 + 15 17 23 2 8 10 14 0 + 23 21 15 2 14 12 8 0 + 18 16 22 2 10 8 12 0 + 22 24 18 2 12 14 10 0 + 17 19 25 16 10 11 15 0 + 25 23 17 16 15 14 10 0 + 19 18 24 32 11 10 14 0 + 24 25 19 32 14 15 11 0 + 20 21 27 4 13 12 16 0 + 27 26 20 4 16 17 13 0 + 22 20 26 8 12 13 17 0 + 26 28 22 8 17 16 12 0 + 21 23 27 2 12 14 16 0 + 24 22 28 2 14 12 16 0 + 23 25 29 16 14 15 18 0 + 29 27 23 16 18 16 14 0 + 25 24 28 32 15 14 16 0 + 28 29 25 32 16 18 15 0 + 26 27 30 4 17 16 19 0 + 28 26 30 8 16 17 19 0 + 27 29 30 16 16 18 19 0 + 29 28 30 32 18 16 19 0 + tverts 20 + 0.905409 0.106921 0 + 0.988976 0.108043 0 + 0.988976 0.139821 0 + 0.905409 0.140942 0 + 0.88249 0.137138 0 + 0.88249 0.154279 0 + 0.88249 0.110725 0 + 0.88249 0.0935844 0 + 0.323858 0.130527 0 + 0.323858 0.145647 0 + 0.323858 0.117337 0 + 0.323858 0.102216 0 + 0.100978 0.128577 0 + 0.100978 0.140013 0 + 0.100978 0.119286 0 + 0.100978 0.10785 0 + 0.0499846 0.123932 0 + 0.0499846 0.133993 0 + 0.0499845 0.11387 0 + 0.0110236 0.123932 0 +endnode +node trimesh box13 + parent abp_weaprack_1 + orientation 0 0 0 0 + position -0.0102778 0.0304622 0.000843948 + wirecolor 0.721569 0.603922 0.894118 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1 + transparencyhint 0 + center 0.0278015 0.2364 6.4156 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.499722 -0.042636 -0.000843948 + 0.500278 -0.042636 -0.000843948 + -0.499722 0.047364 -0.000843948 + 0.500278 0.047364 -0.000843948 + -0.499722 -0.042636 0.129156 + 0.500278 -0.042636 0.129156 + -0.499722 0.047364 0.129156 + 0.500278 0.047364 0.129156 + faces 12 + 0 2 3 2 0 2 3 2 + 3 1 0 2 3 1 0 2 + 4 5 7 4 1 0 2 1 + 7 6 4 4 2 3 1 1 + 0 1 5 8 1 0 2 5 + 5 4 0 8 2 3 1 5 + 1 3 7 16 1 0 2 4 + 7 5 1 16 2 3 1 4 + 3 2 6 32 1 0 2 6 + 6 7 3 32 2 3 1 6 + 2 0 4 64 1 0 2 3 + 4 6 2 64 2 3 1 3 + tverts 4 + 0.999498 0.000499517 0 + 0.000499547 0.000499517 0 + 0.999498 0.9995 0 + 0.000499547 0.9995 0 +endnode +node trimesh box08 + parent abp_weaprack_1 + position -0.557817 -0.0762839 0.38215 + orientation 1 0 0 -0.610865 + wirecolor 0.337255 0.694118 0.101961 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + center 0.28169 -0.141548 5.01765 + ambient 1 1 1 + diffuse 2 2 2 + specular 0 0 0 + shininess 13 + selfillumcolor 0 0 0 + bitmap aged_wood2 + verts 8 + -0.0121831 -0.59002 -0.000697746 + 0.0178169 -0.59002 -0.000697746 + -0.0121831 0.59459 -0.00135193 + 0.0178169 0.59459 -0.00135193 + -0.0121831 -0.600684 0.101705 + 0.0178169 -0.600684 0.101705 + -0.0121831 0.597853 0.0985948 + 0.0178169 0.597853 0.0985948 + faces 12 + 0 2 3 2 7 8 9 2 + 3 1 0 2 9 10 7 2 + 4 5 7 4 3 11 4 1 + 7 6 4 4 4 5 3 1 + 0 1 5 8 7 10 3 5 + 5 4 0 8 3 11 7 5 + 1 3 7 16 1 12 13 4 + 7 5 1 16 13 5 1 4 + 3 2 6 32 3 11 13 6 + 6 7 3 32 13 6 3 6 + 2 0 4 64 2 0 4 3 + 4 6 2 64 4 6 2 3 + tverts 14 + 0.990612 0.00684097 0 + 0.00938812 0.00684097 0 + 0.00321928 0.000499517 0 + 0.000499576 0.000499517 0 + 0.999501 0.999501 0 + 0.000499487 0.999501 0 + 0.000499487 0.969351 0 + 0.9995 0.00938812 0 + 0.999491 0.996781 0 + 0.000499576 0.996781 0 + 0.000508994 0.00938812 0 + 0.999491 0.000499487 0 + 0.996781 0.000499517 0 + 0.999501 0.969351 0 +endnode +endmodelgeom abp_weaprack_1 +donemodel abp_weaprack_1 diff --git a/tests/fixtures/oracle/ascii/c_elemashm.mdl b/tests/fixtures/oracle/ascii/c_elemashm.mdl new file mode 100644 index 0000000..f4edaf0 --- /dev/null +++ b/tests/fixtures/oracle/ascii/c_elemashm.mdl @@ -0,0 +1,1340 @@ +#MAXMODEL ASCII +# model: c_elemashl +filedependancy c_elemashl.max +newmodel c_elemashm +setsupermodel c_elemashm c_golstone +classification character +setanimationscale 0.660000 +#MAXGEOM ASCII +beginmodelgeom c_elemashm +node dummy c_elemashm + parent NULL + #part-number 0 +endnode +node dummy stone__root + parent c_elemashm + #part-number 1 + position 0.012925 -0.081482 0.953654 + orientation 0 0 0 0 +endnode +node trimesh stone__chest + parent stone__root + #part-number 13 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap c_elemash + verts 80 + 0.000000 0.352588 0.614255 + 0.000000 0.181159 0.421022 + 0.038882 0.344145 0.718120 + 0.108730 0.121628 0.580397 + 0.238899 0.234910 0.730244 + 0.294319 0.176299 0.642548 + 0.414580 0.134275 0.718087 + 0.222914 0.029183 0.889667 + 0.319893 0.028475 0.867563 + 0.298324 -0.096561 0.806923 + 0.138535 -0.031571 0.566804 + 0.337368 -0.187233 0.704101 + 0.085433 -0.100488 0.553273 + 0.206343 -0.248328 0.790924 + 0.000000 -0.288353 0.758465 + 0.000000 -0.145646 0.658352 + 0.000000 0.392757 0.502310 + 0.245329 0.301712 0.597000 + 0.194573 0.303455 0.388597 + 0.462209 0.118205 0.510036 + 0.529624 0.000000 0.634221 + 0.494226 -0.217894 0.469107 + 0.266856 -0.355638 0.469107 + 0.000000 -0.331332 0.417045 + 0.000000 0.365379 0.388964 + 0.344396 0.134275 0.280291 + 0.392030 0.000000 0.280291 + 0.344396 -0.155553 0.280291 + 0.177772 -0.262227 0.280821 + 0.000000 0.280420 0.260967 + 0.000000 0.395300 0.329904 + 0.102637 0.276543 0.240158 + 0.139527 0.347450 0.351245 + 0.221088 0.187717 0.132275 + 0.338220 0.181839 0.230953 + 0.287910 0.000000 0.103656 + 0.407137 0.000000 0.222791 + 0.177772 -0.133428 0.103656 + 0.322118 -0.209771 0.218893 + 0.102637 -0.231104 0.121610 + 0.172826 -0.311281 0.248392 + 0.000000 -0.215000 0.246865 + 0.000000 -0.021865 0.329802 + 0.139715 -0.005237 0.324719 + 0.000000 -0.360287 0.346497 + 0.247811 0.056550 0.746836 + -0.038882 0.344145 0.718120 + -0.108730 0.121628 0.580397 + -0.238898 0.234910 0.730244 + -0.294319 0.176299 0.642548 + -0.222914 0.029183 0.889667 + -0.414580 0.134275 0.718087 + -0.319893 0.028475 0.867563 + -0.298324 -0.096561 0.806923 + -0.138535 -0.031571 0.566804 + -0.337368 -0.187233 0.704101 + -0.085433 -0.100488 0.553273 + -0.206343 -0.248328 0.790924 + -0.245329 0.301712 0.597000 + -0.194573 0.303455 0.388597 + -0.462209 0.118205 0.510036 + -0.529624 0.000000 0.634221 + -0.494226 -0.217894 0.469107 + -0.266856 -0.355638 0.469107 + -0.344396 0.134275 0.280291 + -0.392030 0.000000 0.280291 + -0.344396 -0.155553 0.280291 + -0.177772 -0.262227 0.280821 + -0.102637 0.276543 0.240158 + -0.139527 0.347450 0.351245 + -0.221088 0.187718 0.132275 + -0.338220 0.181839 0.230953 + -0.287910 0.000000 0.103656 + -0.407137 0.000000 0.222791 + -0.177772 -0.133428 0.103656 + -0.322118 -0.209771 0.218893 + -0.102637 -0.231104 0.121610 + -0.172826 -0.311281 0.248392 + -0.139715 -0.005237 0.324719 + -0.247811 0.056550 0.746836 + tverts 70 + 0.642113 0.618874 0.000000 + 0.642113 0.502855 0.000000 + 0.621618 0.613160 0.000000 + 0.606638 0.462564 0.000000 + 0.109248 0.416032 0.000000 + 0.167276 0.444123 0.000000 + 0.136502 0.314684 0.000000 + 0.168404 0.443348 0.000000 + 0.219752 0.599757 0.000000 + 0.229126 0.518221 0.000000 + 0.489457 0.406451 0.000000 + 0.581620 0.363078 0.000000 + 0.487027 0.253534 0.000000 + 0.614542 0.300704 0.000000 + 0.555572 0.212186 0.000000 + 0.642113 0.185097 0.000000 + 0.642113 0.281678 0.000000 + 0.022921 0.283725 0.000000 + 0.055619 0.407344 0.000000 + 0.084610 0.306572 0.000000 + 0.012943 0.406460 0.000000 + 0.094524 0.197938 0.000000 + 0.182540 0.305510 0.000000 + 0.247393 0.303840 0.000000 + 0.289968 0.423915 0.000000 + 0.334696 0.415620 0.000000 + 0.339465 0.293812 0.000000 + 0.403345 0.293794 0.000000 + 0.389054 0.427132 0.000000 + 0.461131 0.278331 0.000000 + 0.460604 0.408662 0.000000 + 0.035285 0.199279 0.000000 + 0.180146 0.173800 0.000000 + 0.252684 0.173657 0.000000 + 0.347054 0.196012 0.000000 + 0.402783 0.190205 0.000000 + 0.098127 0.063385 0.000000 + 0.032494 0.135501 0.000000 + 0.098127 0.063385 0.000000 + 0.082608 0.141406 0.000000 + 0.155664 0.051655 0.000000 + 0.156147 0.117521 0.000000 + 0.256372 0.039423 0.000000 + 0.251075 0.127043 0.000000 + 0.309551 0.032563 0.000000 + 0.348155 0.113674 0.000000 + 0.362122 0.049723 0.000000 + 0.399306 0.120269 0.000000 + 0.418466 0.055592 0.000000 + 0.145661 0.121013 0.000000 + 0.177136 0.075756 0.000000 + 0.145661 0.082732 0.000000 + 0.200264 0.119754 0.000000 + 0.234165 0.179856 0.000000 + 0.145661 0.239528 0.000000 + 0.213596 0.264413 0.000000 + 0.177136 0.304424 0.000000 + 0.642113 0.450395 0.000000 + 0.613566 0.379851 0.000000 + 0.462682 0.123807 0.000000 + 0.517150 0.619077 0.000000 + 0.452582 0.580789 0.000000 + 0.550007 0.641321 0.000000 + 0.515882 0.488049 0.000000 + 0.483490 0.466381 0.000000 + 0.642113 0.322673 0.000000 + 0.145661 0.305892 0.000000 + 0.447168 0.450170 0.000000 + 0.155664 0.051655 0.000000 + 0.256371 0.039423 0.000000 + faces 0 + position 0.000000 0.000000 0.000000 + orientation 0 0 0 0 +endnode +node trimesh stone__Rshoulder + parent stone__chest + #part-number 14 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap NULL + verts 28 + -0.068566 0.000000 0.214493 + -0.011383 -0.135721 0.131023 + 0.057677 0.000000 0.181829 + -0.011383 0.124127 0.150899 + -0.167513 0.079160 0.107074 + -0.167513 -0.094249 0.107074 + -0.011383 -0.185549 -0.022505 + 0.073561 -0.139634 0.013860 + 0.142477 0.000000 0.036365 + 0.090700 0.124127 0.036365 + -0.011383 0.187720 0.048752 + -0.169296 0.124127 -0.051432 + -0.222192 0.000000 -0.051432 + -0.169296 -0.155105 -0.154143 + -0.011509 -0.204688 -0.240827 + 0.035302 -0.131044 -0.569669 + 0.173576 -0.108561 -0.530492 + 0.197005 -0.113861 -0.219897 + 0.111527 -0.092108 -0.118401 + -0.035605 0.136868 -0.080855 + -0.100321 0.176424 -0.245058 + -0.124846 0.077120 -0.162198 + 0.064708 0.000000 -0.617920 + 0.160975 0.078498 -0.478953 + 0.035301 0.132865 -0.499846 + -0.050964 0.000000 -0.496135 + 0.092275 0.016388 -0.224674 + 0.008887 0.200231 -0.239461 + tverts 33 + 0.231089 0.649140 0.000000 + 0.170296 0.586493 0.000000 + 0.222716 0.600141 0.000000 + 0.270108 0.592047 0.000000 + 0.338325 0.599647 0.000000 + -0.016227 0.626749 0.000000 + 0.075676 0.590137 0.000000 + 0.146605 0.488982 0.000000 + 0.177392 0.492315 0.000000 + 0.220257 0.487655 0.000000 + 0.256444 0.495659 0.000000 + 0.288267 0.524471 0.000000 + 0.349065 0.496680 0.000000 + 0.398100 0.511857 0.000000 + 0.029220 0.511857 0.000000 + 0.032632 0.422362 0.000000 + 0.124031 0.348904 0.000000 + 0.083024 0.084792 0.000000 + 0.151247 0.091533 0.000000 + 0.187051 0.313674 0.000000 + 0.186529 0.397381 0.000000 + 0.304645 0.447763 0.000000 + 0.341132 0.355213 0.000000 + 0.361066 0.416793 0.000000 + 0.452312 0.438305 0.000000 + 0.047098 0.033975 0.000000 + 0.257775 0.048972 0.000000 + 0.415978 0.033975 0.000000 + 0.335282 0.112843 0.000000 + 0.406069 0.138044 0.000000 + 0.037189 0.138044 0.000000 + 0.228073 0.330158 0.000000 + 0.292567 0.330781 0.000000 + faces 0 + position 0.542812 -0.001400 0.545334 + orientation 0.213790074 0.974096417 -0.0736882314 -0.43543303 +endnode +node trimesh stone__R4arm + parent stone__Rshoulder + #part-number 15 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap NULL + verts 26 + 0.015419 0.000295 -0.573687 + -0.043431 -0.098896 -0.468509 + -0.078968 0.000295 -0.468509 + 0.036422 -0.123395 -0.513299 + 0.187406 0.019471 -0.513298 + 0.036422 0.123985 -0.513299 + -0.043431 0.099486 -0.468509 + -0.049692 -0.127067 -0.387920 + -0.078235 0.000295 -0.331645 + 0.080046 -0.159824 -0.387920 + 0.188217 -0.012119 -0.387920 + 0.080046 0.135969 -0.387920 + -0.028423 0.146636 -0.332486 + -0.076510 -0.156414 -0.191661 + -0.140492 0.001449 -0.241433 + 0.067254 -0.228093 -0.154738 + 0.250995 -0.030199 -0.149233 + 0.234136 0.143357 -0.160166 + 0.062743 0.198300 -0.254029 + -0.091008 0.159311 -0.218838 + -0.110814 -0.155151 0.046608 + -0.142877 0.001449 0.022002 + 0.031801 -0.162051 0.049803 + 0.161198 -0.085457 0.052723 + 0.161198 0.088355 0.008355 + 0.031801 0.148340 -0.030879 + tverts 26 + 0.229161 0.029479 0.000000 + 0.130970 0.094342 0.000000 + 0.226147 0.098497 0.000000 + 0.115933 0.041567 0.000000 + 0.150964 0.102219 0.000000 + 0.346115 0.074288 0.000000 + 0.321325 0.102653 0.000000 + 0.101630 0.146045 0.000000 + 0.222226 0.188309 0.000000 + 0.041546 0.160511 0.000000 + 0.130098 0.187096 0.000000 + 0.393806 0.164090 0.000000 + 0.362668 0.193888 0.000000 + 0.067847 0.273602 0.000000 + 0.220748 0.247555 0.000000 + 0.006345 0.294829 0.000000 + 0.130509 0.344106 0.000000 + 0.295320 0.318134 0.000000 + 0.409995 0.247536 0.000000 + 0.371575 0.268995 0.000000 + 0.108360 0.392784 0.000000 + 0.213550 0.344316 0.000000 + 0.088064 0.489226 0.000000 + 0.120478 0.432909 0.000000 + 0.242855 0.394285 0.000000 + 0.360363 0.420424 0.000000 + faces 0 + position 0.060976 -0.008096 -0.629993 + orientation -1 -0.000000129 0 -1.43622005 +endnode +node trimesh stone__Rhand + parent stone__R4arm + #part-number 16 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap NULL + verts 23 + 0.017538 0.002297 -0.089121 + 0.017538 -0.149009 -0.045706 + 0.152385 -0.096616 -0.045706 + 0.139127 0.109286 -0.045706 + -0.029831 0.109286 -0.064551 + -0.078771 0.002297 -0.045706 + -0.050905 -0.104693 -0.045706 + -0.006067 -0.211682 -0.132158 + 0.176957 -0.128393 -0.119402 + 0.186323 0.167503 -0.119402 + 0.007840 0.115061 -0.170752 + -0.116574 0.153602 -0.133691 + -0.127389 0.002297 -0.134479 + -0.107557 -0.149009 -0.122117 + 0.000584 -0.139131 -0.363703 + 0.130276 -0.095648 -0.336137 + 0.160179 0.139195 -0.317340 + -0.061263 0.135371 -0.346748 + -0.163518 0.135551 -0.257434 + -0.106122 0.002297 -0.265236 + -0.074622 -0.149009 -0.255590 + -0.111948 -0.104693 -0.332427 + -0.023384 0.002297 -0.379521 + tverts 27 + 0.098294 0.237510 0.000000 + 0.067033 0.129624 0.000000 + 0.053328 0.211801 0.000000 + 0.141157 0.238837 0.000000 + 0.202498 0.235916 0.000000 + 0.192424 0.163909 0.000000 + 0.237334 0.199249 0.000000 + 0.316740 0.236184 0.000000 + 0.006734 0.236184 0.000000 + 0.042510 0.080220 0.000000 + 0.024907 0.131066 0.000000 + 0.101292 0.137601 0.000000 + 0.142764 0.152645 0.000000 + 0.187914 0.104672 0.000000 + 0.248588 0.068525 0.000000 + 0.317541 0.018030 0.000000 + 0.004930 0.018030 0.000000 + 0.068140 0.110985 0.000000 + 0.072920 0.111883 0.000000 + 0.085714 0.076255 0.000000 + 0.140878 0.018416 0.000000 + 0.191910 0.067932 0.000000 + 0.200730 0.017510 0.000000 + 0.069027 0.075421 0.000000 + 0.050937 0.019104 0.000000 + 0.070315 0.036908 0.000000 + 0.072244 0.054177 0.000000 + faces 0 + position 0.003166 0.006331 -0.489840 + orientation -0.599728346 -0.780038476 0.1785101 -0.500702024 +endnode +node trimesh stone__Lshoulder + parent stone__chest + #part-number 19 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap NULL + verts 28 + 0.011383 -0.135721 0.131023 + 0.068566 0.000000 0.214493 + -0.057677 0.000000 0.181829 + 0.011383 0.124127 0.150899 + 0.167513 0.079160 0.107074 + 0.167513 -0.094249 0.107074 + 0.011383 -0.185549 -0.022505 + -0.073562 -0.139634 0.013860 + -0.142477 0.000000 0.036365 + -0.090700 0.124127 0.036365 + 0.011384 0.187720 0.048752 + 0.169296 0.124127 -0.051432 + 0.222192 0.000000 -0.051432 + 0.169296 -0.155105 -0.154143 + -0.035301 -0.131044 -0.569669 + 0.011509 -0.204688 -0.240827 + -0.173576 -0.108561 -0.530492 + -0.197005 -0.113861 -0.219897 + -0.111527 -0.092108 -0.118401 + 0.035605 0.136868 -0.080855 + 0.100321 0.176424 -0.245059 + 0.124846 0.077120 -0.162198 + -0.064708 0.000000 -0.617920 + -0.160975 0.078498 -0.478953 + -0.035301 0.132865 -0.499846 + 0.050964 0.000000 -0.496135 + -0.092275 0.016388 -0.224674 + -0.008887 0.200231 -0.239461 + tverts 32 + 0.104394 0.556206 0.000000 + 0.222712 0.620186 0.000000 + 0.166483 0.558716 0.000000 + 0.225126 0.569397 0.000000 + 0.304714 0.566230 0.000000 + 0.416448 0.599974 0.000000 + 0.019512 0.569684 0.000000 + 0.080672 0.452276 0.000000 + 0.116242 0.459527 0.000000 + 0.169308 0.458588 0.000000 + 0.213452 0.466287 0.000000 + 0.250536 0.493539 0.000000 + 0.317874 0.457360 0.000000 + 0.373708 0.470224 0.000000 + 0.434231 0.395917 0.000000 + 0.025572 0.386351 0.000000 + 0.032703 0.122285 0.000000 + 0.059665 0.303479 0.000000 + 0.104727 0.067245 0.000000 + 0.131139 0.275011 0.000000 + 0.128998 0.360734 0.000000 + 0.265237 0.402765 0.000000 + 0.310255 0.302471 0.000000 + 0.329813 0.373866 0.000000 + 0.044354 0.023532 0.000000 + 0.180787 0.072521 0.000000 + 0.279774 0.023532 0.000000 + 0.285826 0.081848 0.000000 + 0.368540 0.092817 0.000000 + 0.440060 0.069676 0.000000 + 0.192392 0.292915 0.000000 + 0.261860 0.292341 0.000000 + faces 0 + position -0.547370 -0.001400 0.545334 + orientation 0.00464146165 -0.931827366 -0.362872154 -0.410519004 +endnode +node trimesh stone__L4arm + parent stone__Lshoulder + #part-number 20 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap NULL + verts 26 + 0.043430 -0.098896 -0.468509 + -0.015419 0.000295 -0.573687 + 0.078968 0.000295 -0.468509 + -0.036422 -0.123394 -0.513299 + -0.187407 0.019471 -0.513299 + -0.036422 0.123986 -0.513299 + 0.043430 0.099487 -0.468509 + 0.049691 -0.127067 -0.387920 + 0.078234 0.000295 -0.331645 + -0.080047 -0.159824 -0.387920 + -0.188217 -0.012118 -0.387920 + -0.080046 0.135969 -0.387920 + 0.028423 0.146636 -0.332486 + 0.076510 -0.156414 -0.191661 + 0.140492 0.001449 -0.241433 + -0.067255 -0.228093 -0.154737 + -0.250995 -0.030199 -0.149233 + -0.234136 0.143357 -0.160166 + -0.062743 0.198300 -0.254029 + 0.091008 0.159311 -0.218838 + 0.110814 -0.155151 0.046609 + 0.142877 0.001449 0.022002 + -0.031801 -0.162051 0.049803 + -0.161198 -0.085457 0.052723 + -0.161198 0.088355 0.008355 + -0.031801 0.148340 -0.030879 + tverts 26 + 0.130970 0.094342 0.000000 + 0.229161 0.029479 0.000000 + 0.226147 0.098497 0.000000 + 0.115933 0.041567 0.000000 + 0.150964 0.102219 0.000000 + 0.346115 0.074288 0.000000 + 0.321325 0.102653 0.000000 + 0.101630 0.146045 0.000000 + 0.222226 0.188309 0.000000 + 0.041546 0.160511 0.000000 + 0.130098 0.187096 0.000000 + 0.393806 0.164090 0.000000 + 0.362668 0.193888 0.000000 + 0.067847 0.273602 0.000000 + 0.220748 0.247555 0.000000 + 0.006345 0.294829 0.000000 + 0.130509 0.344106 0.000000 + 0.295320 0.318134 0.000000 + 0.409995 0.247536 0.000000 + 0.371575 0.268995 0.000000 + 0.108360 0.392784 0.000000 + 0.213550 0.344316 0.000000 + 0.088064 0.489226 0.000000 + 0.120478 0.432909 0.000000 + 0.242855 0.394285 0.000000 + 0.360363 0.420424 0.000000 + faces 0 + position -0.059413 -0.008096 -0.629993 + orientation -1 0.000000260 -0.000000484 -1.45042002 +endnode +node trimesh stone__Lhand + parent stone__L4arm + #part-number 21 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap NULL + verts 23 + -0.017538 -0.149009 -0.045706 + -0.017538 0.002297 -0.089121 + -0.152385 -0.096616 -0.045706 + -0.139127 0.109286 -0.045706 + 0.029831 0.109286 -0.064551 + 0.078771 0.002297 -0.045706 + 0.050905 -0.104693 -0.045706 + 0.006067 -0.211682 -0.132158 + -0.176957 -0.128393 -0.119402 + -0.186323 0.167503 -0.119402 + -0.007839 0.115061 -0.170752 + 0.116574 0.153602 -0.133691 + 0.127390 0.002297 -0.134479 + 0.107557 -0.149009 -0.122117 + -0.000584 -0.139131 -0.363703 + -0.130276 -0.095648 -0.336137 + -0.160179 0.139195 -0.317339 + 0.061263 0.135371 -0.346748 + 0.163518 0.135551 -0.257434 + 0.106123 0.002297 -0.265236 + 0.074622 -0.149009 -0.255590 + 0.111948 -0.104693 -0.332427 + 0.023384 0.002297 -0.379521 + tverts 27 + 0.068336 0.123247 0.000000 + 0.099597 0.231133 0.000000 + 0.054631 0.205424 0.000000 + 0.142459 0.232460 0.000000 + 0.203801 0.229539 0.000000 + 0.193727 0.157532 0.000000 + 0.238637 0.192872 0.000000 + 0.318042 0.229807 0.000000 + 0.008036 0.229807 0.000000 + 0.043812 0.073843 0.000000 + 0.026209 0.124689 0.000000 + 0.102594 0.131225 0.000000 + 0.144066 0.146268 0.000000 + 0.189217 0.098295 0.000000 + 0.249891 0.062148 0.000000 + 0.318843 0.011653 0.000000 + 0.006232 0.011653 0.000000 + 0.069443 0.104608 0.000000 + 0.074223 0.105506 0.000000 + 0.087016 0.069878 0.000000 + 0.142180 0.012040 0.000000 + 0.193212 0.061556 0.000000 + 0.202032 0.011133 0.000000 + 0.052239 0.012728 0.000000 + 0.070330 0.069045 0.000000 + 0.071617 0.030532 0.000000 + 0.073546 0.047800 0.000000 + faces 0 + position -0.002246 0.006331 -0.489840 + orientation -0.328833997 0.117671996 -0.937027991 -0.245542988 +endnode +node trimesh stone__head + parent stone__chest + #part-number 17 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap c_elemash + verts 31 + 0.000000 0.250733 0.277457 + 0.000000 0.131661 0.317483 + 0.095428 0.215858 0.277457 + 0.119071 0.131661 0.277457 + 0.084196 0.047465 0.299538 + 0.000000 -0.003758 0.288826 + 0.000000 0.300053 0.210061 + 0.120063 0.256697 0.221800 + 0.124381 0.266523 0.124625 + 0.155498 0.131661 0.163628 + 0.119071 0.012590 0.180467 + 0.000000 -0.053020 0.180468 + 0.069522 0.243370 0.042035 + 0.000000 0.296365 0.070553 + 0.131323 0.151711 0.075024 + 0.084196 0.047465 0.061396 + 0.000000 -0.001294 0.061396 + 0.039497 0.241671 -0.010176 + 0.000000 0.111370 0.058223 + 0.000000 0.250650 -0.006315 + -0.095428 0.215858 0.277457 + -0.119071 0.131661 0.277457 + -0.084196 0.047465 0.299538 + -0.120063 0.256697 0.221800 + -0.124381 0.266523 0.124625 + -0.155497 0.131661 0.163628 + -0.119071 0.012590 0.180467 + -0.069522 0.243371 0.042035 + -0.131323 0.151711 0.075024 + -0.084196 0.047465 0.061396 + -0.039497 0.241671 -0.010176 + tverts 22 + 0.234607 0.369215 0.000000 + 0.156970 0.369974 0.000000 + 0.204835 0.308139 0.000000 + 0.147897 0.294258 0.000000 + 0.093227 0.330000 0.000000 + 0.028650 0.406196 0.000000 + 0.361103 0.258434 0.000000 + 0.219672 0.253040 0.000000 + 0.219626 0.184601 0.000000 + 0.134288 0.142704 0.000000 + 0.083419 0.200908 0.000000 + 0.009983 0.198242 0.000000 + 0.238893 0.125267 0.000000 + 0.363891 0.153857 0.000000 + 0.168293 0.117271 0.000000 + 0.092935 0.080582 0.000000 + 0.003986 0.041139 0.000000 + 0.278160 0.070803 0.000000 + 0.152230 0.025244 0.000000 + 0.372377 0.044335 0.000000 + 0.082117 0.204096 0.000000 + 0.180016 0.058286 0.000000 + faces 58 + 0 1 2 1 0 1 2 2 + 2 1 3 1 2 1 3 2 + 3 1 4 1 3 1 4 2 + 4 1 5 1 4 1 5 2 + 6 7 8 1 6 7 8 2 + 6 0 2 1 6 0 2 2 + 8 7 9 1 8 7 9 2 + 7 2 3 1 7 2 3 2 + 9 3 10 1 9 3 10 2 + 10 3 4 1 10 3 4 2 + 10 4 11 1 10 4 11 2 + 11 4 5 1 11 4 5 2 + 6 8 12 1 6 8 12 2 + 13 6 12 1 13 6 12 2 + 12 8 14 1 12 8 14 2 + 14 8 9 1 14 8 9 2 + 14 9 15 1 14 9 15 2 + 15 9 10 1 15 9 10 2 + 15 10 16 1 15 10 16 2 + 16 10 11 1 16 10 11 2 + 12 17 13 1 12 17 13 2 + 14 17 12 1 14 17 12 2 + 18 17 14 1 18 17 14 2 + 18 14 15 1 18 14 15 2 + 7 3 9 1 7 3 9 2 + 6 2 7 1 6 2 7 2 + 17 19 13 1 17 19 13 2 + 18 15 16 1 18 15 16 2 + 19 17 18 1 19 17 18 2 + 1 0 20 1 1 0 2 2 + 1 20 21 1 1 2 3 2 + 1 21 22 1 1 3 4 2 + 1 22 5 1 1 4 5 2 + 23 6 24 1 7 6 8 2 + 0 6 20 1 0 6 2 2 + 23 24 25 1 7 8 9 2 + 20 23 21 1 2 7 3 2 + 21 25 26 1 3 9 20 2 + 21 26 22 1 3 20 4 2 + 22 26 11 1 4 20 11 2 + 22 11 5 1 4 11 5 2 + 24 6 27 1 8 6 12 2 + 6 13 27 1 6 13 12 2 + 24 27 28 1 8 12 21 2 + 24 28 25 1 8 21 9 2 + 25 28 29 1 9 21 15 2 + 25 29 26 1 9 15 20 2 + 26 29 16 1 20 15 16 2 + 26 16 11 1 20 16 11 2 + 30 27 13 1 17 12 13 2 + 30 28 27 1 17 21 12 2 + 30 18 28 1 17 18 21 2 + 28 18 29 1 21 18 15 2 + 21 23 25 1 3 7 9 2 + 20 6 23 1 2 6 7 2 + 19 30 13 1 19 17 13 2 + 29 18 16 1 15 18 16 2 + 30 19 18 1 17 19 18 2 + position -0.002398 -0.110688 0.823152 + orientation 0 0 0 0 +endnode +node emitter AshHead + parent stone__head + #part-number 43 + p2p 0 + p2p_sel 1 + affectedByWind 0 + m_isTinted 0 + bounce 0 + random 0 + inherit 0 + inheritvel 0 + inherit_local 1 + splat 0 + inherit_part 0 + renderorder 0 + spawntype 0 + update Fountain + render Normal + blend Normal + texture fxpa_Smoke01 + xgrid 4 + ygrid 4 + loop 0 + deadspace 0 + twosidedtex 0 + blastRadius 0 + blastLength 0 + position 0.000000 0.000000 0.000000 + orientation 0 0 3.14159 0 + colorStart 0.4 0.4 0.4 + colorEnd 0.4 0.4 0.4 + alphaStart 1.0 + alphaEnd 0.4 + sizeStart 0.330000 + sizeEnd 1.320000 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 20 + lifeExp 0.8 + mass 0.33 + spread 0.6 + particleRot 0.600000024 + velocity 1.32 + randvel 0.2 + fps 16 + xsize 6.600000 + ysize 6.600000 + bounce_co 0 + blurlength 6.600000 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 +endnode +node emitter AshBody + parent stone__chest + p2p 0 + p2p_sel 1 + affectedByWind 0 + m_isTinted 0 + bounce 0 + random 0 + inherit 0 + inheritvel 0 + inherit_local 1 + splat 0 + inherit_part 0 + renderorder 0 + spawntype 0 + update Fountain + render Normal + blend Normal + texture fxpa_Smoke01 + xgrid 4 + ygrid 4 + loop 0 + deadspace 0 + twosidedtex 0 + blastRadius 0 + blastLength 0 + position 0.000000 0.000000 0.000000 + orientation 0 0 3.14159 0 + colorStart 0.4 0.4 0.4 + colorEnd 0.4 0.4 0.4 + alphaStart 1.0 + alphaEnd 0.4 + sizeStart 0.330000 + sizeEnd 1.980000 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 20 + lifeExp 0.8 + mass 0.33 + spread 0.6 + particleRot 0.600000024 + velocity 1.32 + randvel 0.2 + fps 16 + xsize 6.600000 + ysize 6.600000 + bounce_co 0 + blurlength 6.600000 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 +endnode +node emitter AshTail + parent stone__chest + p2p 0 + p2p_sel 1 + affectedByWind 0 + m_isTinted 0 + bounce 0 + random 0 + inherit 0 + inheritvel 0 + inherit_local 1 + splat 0 + inherit_part 0 + renderorder 0 + spawntype 0 + update Fountain + render Normal + blend Normal + texture fxpa_Smoke01 + xgrid 4 + ygrid 4 + loop 0 + deadspace 0 + twosidedtex 0 + blastRadius 0 + blastLength 0 + position 0.000000 0.000000 -0.858000 + orientation 0 0 3.14159 0 + colorStart 0.4 0.4 0.4 + colorEnd 0.4 0.4 0.4 + alphaStart 1.0 + alphaEnd 0.4 + sizeStart 0.660000 + sizeEnd 1.320000 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 20 + lifeExp 0.8 + mass 0.33 + spread 0.5 + particleRot 0.600000024 + velocity 2.31 + randvel 0.33 + fps 16 + xsize 6.600000 + ysize 6.600000 + bounce_co 0 + blurlength 6.600000 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 +endnode +node emitter Cinders + parent stone__chest + p2p 0 + p2p_sel 1 + affectedByWind 0 + m_isTinted 0 + bounce 0 + random 0 + inherit 0 + inheritvel 0 + inherit_local 1 + splat 0 + inherit_part 0 + renderorder 1 + spawntype 0 + update Fountain + render Normal + blend Lighten + texture fxpa_sparks + xgrid 4 + ygrid 4 + loop 0 + deadspace 0 + twosidedtex 0 + blastRadius 0 + blastLength 0 + position 0.000000 0.000000 0.000000 + orientation 0 0 3.14159 0 + colorStart 0.8 0.6 0.1 + colorEnd 0.8 0.0 0.1 + alphaStart 0 + alphaEnd 1 + sizeStart 0.066000 + sizeEnd 0.066000 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 20 + lifeExp 3 + mass 0.033 + spread 2.5 + particleRot 0.600000024 + velocity 0.66 + randvel 0.132 + fps 16 + xsize 13.200000 + ysize 6.600000 + bounce_co 0 + blurlength 6.600000 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 +endnode +node emitter AshLShoulder + parent stone__Lshoulder + p2p 0 + p2p_sel 1 + affectedByWind 0 + m_isTinted 0 + bounce 0 + random 0 + inherit 0 + inheritvel 0 + inherit_local 1 + splat 0 + inherit_part 0 + renderorder 0 + spawntype 0 + update Fountain + render Normal + blend Normal + texture fxpa_Smoke01 + xgrid 4 + ygrid 4 + loop 0 + deadspace 0 + twosidedtex 0 + blastRadius 0 + blastLength 0 + position 0.000000 0.000000 0.000000 + orientation 0 -1 0 -3.14159012 + colorStart 0.4 0.4 0.4 + colorEnd 0.4 0.4 0.4 + alphaStart 1.0 + alphaEnd 0.4 + sizeStart 0.99 + sizeEnd 1.65 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 10 + lifeExp 0.7 + mass 0.33 + spread 0.3 + particleRot 0.600000024 + velocity 0.462 + randvel 0.132 + fps 16 + xsize 3.300000 + ysize 3.300000 + bounce_co 0 + blurlength 6.600000 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 +endnode +node emitter AshRShoulder + parent stone__Rshoulder + p2p 0 + p2p_sel 1 + affectedByWind 0 + m_isTinted 0 + bounce 0 + random 0 + inherit 0 + inheritvel 0 + inherit_local 1 + splat 0 + inherit_part 0 + renderorder 0 + spawntype 0 + update Fountain + render Normal + blend Normal + texture fxpa_Smoke01 + xgrid 4 + ygrid 4 + loop 0 + deadspace 0 + twosidedtex 0 + blastRadius 0 + blastLength 0 + position 0.000000 0.000000 0.000000 + orientation 0 -1 0 -3.14159012 + colorStart 0.4 0.4 0.4 + colorEnd 0.4 0.4 0.4 + alphaStart 1.0 + alphaEnd 0.4 + sizeStart 0.99 + sizeEnd 1.65 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 10 + lifeExp 0.7 + mass 0.33 + spread 0.3 + particleRot 0.600000024 + velocity 0.462 + randvel 0.132 + fps 16 + xsize 3.300000 + ysize 3.300000 + bounce_co 0 + blurlength 6.600000 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 +endnode +node emitter AshLArm + parent stone__L4arm + p2p 0 + p2p_sel 1 + affectedByWind 0 + m_isTinted 0 + bounce 0 + random 0 + inherit 0 + inheritvel 0 + inherit_local 1 + splat 0 + inherit_part 0 + renderorder 0 + spawntype 0 + update Fountain + render Normal + blend Normal + texture fxpa_Smoke01 + xgrid 4 + ygrid 4 + loop 0 + deadspace 0 + twosidedtex 0 + blastRadius 0 + blastLength 0 + position 0.000000 0.000000 0.000000 + orientation 0 -1 0 -3.14159012 + colorStart 0.4 0.4 0.4 + colorEnd 0.4 0.4 0.4 + alphaStart 1.0 + alphaEnd 0.4 + sizeStart 0.660000 + sizeEnd 1.320000 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 10 + lifeExp 0.7 + mass 0.33 + spread 0.3 + particleRot 0.600000024 + velocity 0.462 + randvel 0.132 + fps 16 + xsize 3.300000 + ysize 3.300000 + bounce_co 0 + blurlength 6.600000 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 +endnode +node emitter AshRArm + parent stone__R4arm + p2p 0 + p2p_sel 1 + affectedByWind 0 + m_isTinted 0 + bounce 0 + random 0 + inherit 0 + inheritvel 0 + inherit_local 1 + splat 0 + inherit_part 0 + renderorder 0 + spawntype 0 + update Fountain + render Normal + blend Normal + texture fxpa_Smoke01 + xgrid 4 + ygrid 4 + loop 0 + deadspace 0 + twosidedtex 0 + blastRadius 0 + blastLength 0 + position 0.000000 0.000000 0.000000 + orientation 0 -1 0 -3.14159012 + colorStart 0.4 0.4 0.4 + colorEnd 0.4 0.4 0.4 + alphaStart 1.0 + alphaEnd 0.4 + sizeStart 0.660000 + sizeEnd 1.320000 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 10 + lifeExp 0.7 + mass 0.33 + spread 0.3 + particleRot 0.600000024 + velocity 0.462 + randvel 0.132 + fps 16 + xsize 3.300000 + ysize 3.300000 + bounce_co 0 + blurlength 6.600000 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 +endnode +node emitter AshLHand + parent stone__Lhand + p2p 0 + p2p_sel 1 + affectedByWind 0 + m_isTinted 0 + bounce 0 + random 0 + inherit 0 + inheritvel 0 + inherit_local 1 + splat 0 + inherit_part 0 + renderorder 0 + spawntype 0 + update Fountain + render Normal + blend Normal + texture fxpa_Smoke01 + xgrid 4 + ygrid 4 + loop 0 + deadspace 0 + twosidedtex 0 + blastRadius 0 + blastLength 0 + position 0.000000 0.000000 0.000000 + orientation 0 -1 0 -3.14159012 + colorStart 0.4 0.4 0.4 + colorEnd 0.4 0.4 0.4 + alphaStart 1.0 + alphaEnd 0.4 + sizeStart 0.660000 + sizeEnd 1.320000 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 10 + lifeExp 0.7 + mass 0.33 + spread 0.3 + particleRot 0.600000024 + velocity 0.462 + randvel 0.132 + fps 16 + xsize 3.300000 + ysize 3.300000 + bounce_co 0 + blurlength 6.600000 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 +endnode +node emitter AshRHand + parent stone__Rhand + p2p 0 + p2p_sel 1 + affectedByWind 0 + m_isTinted 0 + bounce 0 + random 0 + inherit 0 + inheritvel 0 + inherit_local 1 + splat 0 + inherit_part 0 + renderorder 0 + spawntype 0 + update Fountain + render Normal + blend Normal + texture fxpa_Smoke01 + xgrid 4 + ygrid 4 + loop 0 + deadspace 0 + twosidedtex 0 + blastRadius 0 + blastLength 0 + position 0.000000 0.000000 0.000000 + orientation 0 -1 0 -3.14159012 + colorStart 0.4 0.4 0.4 + colorEnd 0.4 0.4 0.4 + alphaStart 1.0 + alphaEnd 0.4 + sizeStart 0.660000 + sizeEnd 1.320000 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 10 + lifeExp 0.7 + mass 0.33 + spread 0.3 + particleRot 0.600000024 + velocity 0.462 + randvel 0.132 + fps 16 + xsize 3.300000 + ysize 3.300000 + bounce_co 0 + blurlength 6.600000 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 +endnode + +node dummy impact + parent stone__chest + #part-number 22 + position -0.016376 0.169947 0.302769 + orientation 1 0 0.000000214 -0.122172996 +endnode +node dummy headconjure + parent c_elemashm + #part-number 23 + position 0.001982 0.487608 2.287639 + orientation 0 0 0 0 +endnode +node dummy handconjure + parent c_elemashm + #part-number 24 + position 0.377858 1.707070 1.252832 + orientation 0 0 0 0 +endnode +endmodelgeom c_elemashm + +donemodel c_elemashm diff --git a/tests/fixtures/oracle/ascii/c_marilith2.mdl b/tests/fixtures/oracle/ascii/c_marilith2.mdl new file mode 100644 index 0000000..67f3652 --- /dev/null +++ b/tests/fixtures/oracle/ascii/c_marilith2.mdl @@ -0,0 +1,12369 @@ +# Exported from NWmax 0.8 b60 at 11/4/2011 10:50:28 AM +# mdl file +# +#NWmax MODEL ASCII +# model: c_marilith2 +#local file: Unknown +filedependancy Unknown +newmodel c_marilith2 +setsupermodel c_marilith2 c_marilithe +classification Character +setanimationscale 2.5194 +#NWmax GEOM ASCII +beginmodelgeom c_marilith2 +node dummy c_marilith2 + parent NULL +endnode +node trimesh rootdummy + parent c_marilith2 + position -0.00577577 0.0605364 1.69827 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.419608 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 15 + center 0.0 1.50204e-005 0.0 + bitmap pfh0_neck001 + verts 8 + -0.0578658 0.0495993 -0.0495993 + 0.0578658 0.0495993 -0.0495993 + -0.0578658 0.0495993 0.0495993 + 0.0578658 0.0495993 0.0495993 + -0.0578658 -0.049599 -0.0495993 + 0.0578658 -0.049599 -0.0495993 + -0.0578658 -0.049599 0.0495993 + 0.0578658 -0.049599 0.0495993 + faces 12 + 0 2 3 2 0 0 0 2 + 3 1 0 2 0 0 0 2 + 4 5 7 4 0 0 0 1 + 7 6 4 4 0 0 0 1 + 0 1 5 32 0 0 0 5 + 5 4 0 32 0 0 0 5 + 1 3 7 16 0 0 0 4 + 7 5 1 16 0 0 0 4 + 3 2 6 32 0 0 0 6 + 6 7 3 32 0 0 0 6 + 2 0 4 64 0 0 0 3 + 4 6 2 64 0 0 0 3 +endnode +node trimesh torso_g + parent rootdummy + position -0.000635349 -0.067339 -0.0013858 + orientation 0.508871 -0.0587522 -0.858835 -0.109018 + wirecolor 0.239216 0.521569 0.0156863 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center -0.240351 -2.8603 45.0231 + bitmap c_Marilit2bd + verts 47 + -0.00240325 0.251306 0.430873 + -0.17616 0.142929 -0.0291681 + -0.139081 0.237426 0.375858 + -0.242719 0.0177152 -0.0988147 + -0.239739 0.112785 0.349968 + -0.00240126 0.0799331 0.880209 + -0.373297 -0.137544 0.895603 + -0.00240033 -0.151505 1.03353 + -0.00240513 0.128648 -0.0882585 + -0.00240503 -0.0783866 -0.133067 + -0.00240435 -0.175937 0.00236325 + -0.20824 -0.280802 0.495435 + -0.164395 -0.164154 -0.00490872 + -0.00240065 -0.310952 0.897537 + -0.246376 -0.266401 0.840331 + -0.453586 -0.0991772 0.729187 + -0.257521 0.2823 0.423636 + -0.332458 0.0894212 0.685251 + -0.146109 0.212019 0.693574 + -0.310291 0.224966 0.506404 + -0.126118 0.29414 0.426748 + -0.0951442 0.277149 0.546053 + -0.323875 -0.0407309 0.315185 + -0.0788914 -0.351346 0.661193 + -0.232918 0.293586 0.542458 + -0.364431 -0.00124426 0.852524 + -0.00240238 0.210548 0.640174 + -0.00240516 0.175164 -0.0768919 + 0.172051 0.142929 -0.0291694 + 0.13507 0.237272 0.379101 + 0.238611 0.0177158 -0.0988165 + 0.250201 0.125975 0.381165 + 0.368493 -0.137543 0.8956 + 0.203433 -0.282825 0.495432 + 0.160288 -0.164153 -0.00491 + 0.241575 -0.285087 0.842899 + 0.448779 -0.0991759 0.729186 + 0.128129 0.276948 0.425781 + 0.268837 0.213534 0.416672 + 0.139173 0.167664 0.706665 + 0.328014 0.0827091 0.684871 + 0.221554 0.284358 0.549662 + 0.307482 0.203649 0.545574 + 0.0976309 0.281121 0.546938 + 0.319423 -0.0407301 0.315183 + 0.0740881 -0.350745 0.658538 + 0.359626 -0.00124325 0.85252 + faces 90 + 0 1 2 1 199 200 201 1 + 1 3 4 1 200 202 203 1 + 5 6 7 1 204 205 206 1 + 8 3 1 1 207 202 200 1 + 8 9 3 1 207 208 202 1 + 10 11 12 1 209 210 211 1 + 13 7 6 1 212 213 214 1 + 13 6 14 1 212 214 215 1 + 14 15 11 1 215 216 210 1 + 10 12 9 1 209 211 217 1 + 12 3 9 1 211 218 217 1 + 4 16 2 1 203 219 201 1 + 17 5 18 1 220 204 221 1 + 4 17 19 1 203 220 222 1 + 14 6 15 1 215 214 216 1 + 20 21 0 1 223 224 199 1 + 1 4 2 1 200 203 201 1 + 15 17 4 1 225 220 203 1 + 4 19 16 1 203 222 219 1 + 22 15 4 1 226 225 203 1 + 13 14 23 1 212 215 227 1 + 10 23 11 1 209 227 210 1 + 12 11 15 1 211 210 216 1 + 16 24 20 1 219 228 223 1 + 2 20 0 1 201 223 199 1 + 16 19 24 1 219 222 228 1 + 2 16 20 1 201 219 223 1 + 15 25 17 1 225 229 220 1 + 19 17 24 1 222 220 228 1 + 26 18 5 1 230 221 204 1 + 6 5 25 1 205 204 229 1 + 20 24 21 1 223 228 224 1 + 26 21 18 1 230 224 221 1 + 12 22 3 1 211 231 218 1 + 23 14 11 1 227 215 210 1 + 10 13 23 1 209 212 227 1 + 27 0 28 1 232 199 233 1 + 28 0 29 1 233 199 234 1 + 30 28 31 1 235 233 236 1 + 32 5 7 1 237 204 206 1 + 30 8 28 1 235 207 233 1 + 9 8 30 1 208 207 235 1 + 33 10 34 1 238 209 239 1 + 7 13 32 1 213 212 240 1 + 32 13 35 1 240 212 241 1 + 36 35 33 1 242 241 238 1 + 34 10 9 1 239 209 217 1 + 30 34 9 1 243 239 217 1 + 37 38 29 1 244 245 234 1 + 39 40 41 1 246 247 248 1 + 40 31 42 1 247 236 249 1 + 32 35 36 1 240 241 242 1 + 43 37 0 1 250 244 199 1 + 31 28 29 1 236 233 234 1 + 40 36 31 1 247 251 236 1 + 42 31 38 1 249 236 245 1 + 44 30 31 1 252 235 236 1 + 35 13 45 1 241 212 253 1 + 45 10 33 1 253 209 238 1 + 33 34 36 1 238 239 242 1 + 41 38 37 1 248 245 244 1 + 37 29 0 1 244 234 199 1 + 42 38 41 1 249 245 248 1 + 38 31 29 1 245 236 234 1 + 32 36 46 1 237 251 254 1 + 40 42 41 1 247 249 248 1 + 41 43 39 1 248 250 246 1 + 5 46 40 1 204 254 247 1 + 41 37 43 1 248 244 250 1 + 39 26 5 1 246 230 204 1 + 36 34 44 1 242 239 255 1 + 35 45 33 1 241 253 238 1 + 13 10 45 1 212 209 253 1 + 8 27 28 1 207 232 233 1 + 46 36 40 1 254 251 247 1 + 5 32 46 1 204 237 254 1 + 15 6 25 1 225 205 229 1 + 25 5 17 1 229 204 220 1 + 36 44 31 1 251 252 236 1 + 44 34 30 1 255 239 243 1 + 3 22 4 1 202 226 203 1 + 12 15 22 1 211 216 231 1 + 43 0 26 1 250 199 230 1 + 0 21 26 1 199 224 230 1 + 39 43 26 1 246 250 230 1 + 5 40 39 1 204 247 246 1 + 21 24 18 1 224 228 221 1 + 17 18 24 1 220 221 228 1 + 8 1 27 1 207 200 232 1 + 1 0 27 1 200 199 232 1 + tverts 256 + 0.149575 0.38725 0 + 0.026644 0.156951 0 + 0.274184 0.155067 0 + 0.0139049 0.869598 0 + 0.373832 0.956397 0 + 0.00289817 0.952308 0 + 0.00581772 0.995571 0 + 0.337425 0.387513 0 + 0.150575 0.423667 0 + 0.376365 0.764677 0 + 0.114225 0.752976 0 + 0.262045 0.433443 0 + 0.411164 0.561102 0 + 0.359272 0.559582 0 + 0.110128 0.578197 0 + 0.0050664 0.544151 0 + 0.454088 0.460789 0 + 0.43887 0.30195 0 + 0.246971 0.540351 0 + 0.154494 0.509157 0 + 0.449833 0.722145 0 + 0.379838 0.886058 0 + 0.335793 0.641858 0 + 0.0134712 0.703743 0 + 0.0661135 0.61493 0 + 0.433153 0.155912 0 + 0.202859 0.736098 0 + 0.276056 0.689012 0 + 0.137101 0.694378 0 + 0.374362 0.617545 0 + 0.458677 0.504993 0 + 0.148326 0.387363 0 + 0.372583 0.95651 0 + 0.149327 0.42378 0 + 0.336176 0.387626 0 + 0.375116 0.764789 0 + 0.112976 0.753089 0 + 0.409915 0.561214 0 + 0.260797 0.433556 0 + 0.358954 0.560896 0 + 0.109869 0.578009 0 + 0.452839 0.460902 0 + 0.437621 0.302062 0 + 0.245723 0.540464 0 + 0.153246 0.50927 0 + 0.379809 0.885558 0 + 0.449717 0.723963 0 + 0.335671 0.641558 0 + 0.0648648 0.615042 0 + 0.433759 0.155297 0 + 0.203321 0.736098 0 + 0.278446 0.688011 0 + 0.136821 0.694403 0 + 0.371762 0.619198 0 + 0.457428 0.505106 0 + 0.274597 0.156325 0 + 0.783668 0.159423 0 + 0.975743 0.15735 0 + 0.741763 0.432818 0 + 0.969841 0.958806 0 + 0.554562 0.954069 0 + 0.699257 0.882549 0 + 0.469453 0.786347 0 + 0.741555 0.577485 0 + 0.976755 0.0573845 0 + 0.782575 0.0502158 0 + 0.973377 0.00108593 0 + 0.65532 0.017206 0 + 0.88501 0.729792 0 + 0.766189 0.436063 0 + 0.980317 0.44187 0 + 0.91378 0.478679 0 + 0.763478 0.0534183 0 + 0.759853 0.141737 0 + 0.58812 0.162739 0 + 0.979678 0.470001 0 + 0.605769 0.176871 0 + 0.618978 0.261953 0 + 0.543513 0.454341 0 + 0.562794 0.472692 0 + 0.976109 0.0586162 0 + 0.975097 0.158582 0 + 0.785915 0.145617 0 + 0.552382 0.954069 0 + 0.697076 0.882549 0 + 0.467273 0.786347 0 + 0.739375 0.577485 0 + 0.782751 0.0597778 0 + 0.653139 0.017206 0 + 0.882831 0.729792 0 + 0.764009 0.436063 0 + 0.9116 0.478679 0 + 0.616797 0.261953 0 + 0.608744 0.173854 0 + 0.606957 0.176439 0 + 0.547268 0.452554 0 + 0.784086 0.159002 0 + 0.739583 0.432818 0 + 0.560614 0.472692 0 + 0.785573 0.0432167 0 + 0.58643 0.163781 0 + 0.640463 0.0544342 0 + 0.601828 0.0368165 0 + 0.640568 0.0565262 0 + 0.589633 0.162792 0 + 0.601864 0.0429659 0 + 0.490373 0.133662 0 + 0.468834 0.0261058 0 + 0.556996 0.0144097 0 + 0.283888 0.0080908 0 + 0.49195 0.0100072 0 + 0.430962 0.0179503 0 + 0.282714 0.0060219 0 + 0.282714 0.0240873 0 + 0.0295756 0.0168386 0 + 0.112982 0.0261058 0 + 0.0988142 0.130349 0 + 0.0783652 0.0100072 0 + 0.131926 0.0179503 0 + 0.284209 0.12123 0 + 0.0541056 0.0098516 0 + 0.508677 0.0105764 0 + 0.283019 0.0227484 0 + 0.0293125 0.135858 0 + 0.561773 0.142712 0 + 0.545684 0.577775 0 + 0.545115 0.581517 0 + 0.544804 0.580456 0 + 0.544521 0.578973 0 + 0.546968 0.581517 0 + 0.546399 0.577775 0 + 0.547278 0.580456 0 + 0.547562 0.578973 0 + 0.815336 0.0277176 0 + 0.817029 0.0281968 0 + 0.817026 0.0285417 0 + 0.814924 0.0279714 0 + 0.817029 0.0238141 0 + 0.815535 0.0237034 0 + 0.81535 0.0231945 0 + 0.816938 0.0233262 0 + 0.814766 0.0259878 0 + 0.814318 0.025913 0 + 0.818518 0.0237279 0 + 0.81852 0.0232237 0 + 0.818737 0.0277176 0 + 0.81897 0.0279714 0 + 0.819321 0.0260329 0 + 0.81905 0.0250622 0 + 0.819343 0.0248115 0 + 0.819665 0.0259666 0 + 0.212456 0.74451 0 + 0.213173 0.744709 0 + 0.335915 0.641709 0 + 0.335733 0.641484 0 + 0.212275 0.744546 0 + 0.212466 0.744475 0 + 0.212814 0.744821 0 + 0.335793 0.641708 0 + 0.335793 0.641633 0 + 0.212375 0.744591 0 + 0.760369 0.430494 0 + 0.979103 0.419434 0 + 0.913723 0.445421 0 + 0.718609 0.414034 0 + 0.715644 0.43197 0 + 0.630419 0.426098 0 + 0.743501 0.411692 0 + 0.982905 0.447405 0 + 0.634093 0.441925 0 + 0.51951 0.454005 0 + 0.760444 0.430697 0 + 0.9145 0.445151 0 + 0.715663 0.431915 0 + 0.718674 0.413841 0 + 0.630684 0.425316 0 + 0.743768 0.411471 0 + 0.634358 0.441143 0 + 0.519775 0.453223 0 + 0.544999 0.57848 0 + 0.140286 0.708634 0 + 0.140361 0.709098 0 + 0.546921 0.578313 0 + 0.760477 0.430494 0 + 0.747593 0.434083 0 + 0.742005 0.412392 0 + 0.743501 0.411692 0 + 0.760336 0.430498 0 + 0.746487 0.43414 0 + 0.74189 0.412449 0 + 0.743189 0.411471 0 + 0.542443 0.437538 0 + 0.569033 0.443289 0 + 0.569452 0.443289 0 + 0.715355 0.432088 0 + 0.569493 0.443555 0 + 0.569598 0.443426 0 + 0.716289 0.431444 0 + 0.542517 0.437318 0 + 0.525385 0.490255 0 + 0.760019 0.08462 0 + 0.673121 0.428193 0 + 0.991603 0.036714 0 + 0.898832 0.373526 0 + 0.525385 0.860239 0 + 0.990511 0.9909 0 + 0.525384 0.986481 0 + 0.525385 0.062798 0 + 0.525385 0.025903 0 + 0.486462 0.096308 0 + 0.267346 0.52363 0 + 0.271392 0.090431 0 + 0.486462 0.862968 0 + 0.486462 0.981526 0 + 0.00954816 0.989702 0 + 0.200696 0.816754 0 + 0.00861365 0.750153 0 + 0.486462 0.039072 0 + 0.00631186 0.0425075 0 + 0.815824 0.45979 0 + 0.899466 0.69971 0 + 0.670517 0.702001 0 + 0.861733 0.534702 0 + 0.695194 0.463324 0 + 0.645115 0.56877 0 + 0.99043 0.715598 0 + 0.992317 0.371808 0 + 0.388461 0.645946 0 + 0.804823 0.585978 0 + 0.905169 0.860631 0 + 0.525385 0.662595 0 + 0.00854573 0.374497 0 + 0.525385 0.093316 0 + 0.760959 0.08462 0 + 0.673361 0.428193 0 + 0.992543 0.036714 0 + 0.899073 0.373526 0 + 0.990751 0.9909 0 + 0.268954 0.523629 0 + 0.272253 0.090431 0 + 0.0111552 0.989702 0 + 0.202303 0.818831 0 + 0.0102217 0.750153 0 + 0.00717186 0.0425075 0 + 0.695435 0.463324 0 + 0.816065 0.45979 0 + 0.668304 0.705472 0 + 0.899706 0.69971 0 + 0.805064 0.585978 0 + 0.861974 0.534702 0 + 0.645355 0.56877 0 + 0.99067 0.715598 0 + 0.992907 0.371808 0 + 0.390069 0.643801 0 + 0.90541 0.860631 0 + 0.00978073 0.374497 0 +endnode +node dummy Impact + parent torso_g + position 0.00240518 0.221912 0.274859 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.894118 0.6 0.721569 +endnode +node trimesh rbicep_g + parent torso_g + position 0.406657 -0.151524 0.755863 + orientation -0.843006 0.488564 -0.225046 -0.298136 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 2.25636 -0.527949 -36.8445 + bitmap c_Marilit2bc + verts 21 + 0.112507 0.0500769 -0.066693 + 0.0239705 0.124862 -0.0634345 + 0.00484581 -0.0212057 0.0984839 + -0.0181463 -0.0269492 0.109677 + -0.0683889 -0.0316287 0.0776937 + 0.00853529 -0.11803 0.0362231 + 0.0956204 0.0370824 -0.218462 + 0.0259491 -0.119681 -0.139712 + 0.108378 -0.0970655 -0.0413154 + 0.0796118 -0.0854388 -0.29283 + 0.0470493 0.0739847 -0.522294 + 0.0624026 -0.0100239 -0.846567 + -0.0317383 -0.0237298 -0.786201 + -0.0120229 0.0826433 0.067078 + -0.0414648 0.00664383 -0.130131 + 0.00490815 -0.0720798 -0.793961 + 0.0391371 -0.135421 -0.412983 + 0.0698715 -0.124341 -0.798798 + 0.113516 -0.0134787 -0.609514 + 0.11022 -0.0371098 -0.79716 + 0.109202 -0.0888573 -0.384869 + faces 38 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 0 6 1 1 0 6 1 1 + 4 7 5 1 7 8 9 1 + 5 7 8 1 10 11 12 1 + 9 0 8 1 13 0 12 1 + 10 11 12 1 14 15 16 1 + 13 14 4 1 17 18 7 1 + 12 15 16 1 19 20 21 1 + 12 16 7 1 19 21 11 1 + 16 17 18 1 21 22 23 1 + 15 11 17 2 24 25 26 1 + 17 11 19 2 26 25 27 1 + 9 7 16 1 13 11 21 1 + 16 18 20 1 21 23 28 1 + 16 20 9 1 21 28 13 1 + 15 17 16 1 20 22 21 1 + 12 11 15 2 16 15 29 1 + 10 19 11 1 14 30 15 1 + 6 10 1 1 6 14 1 1 + 18 10 6 1 23 14 6 1 + 10 12 14 1 14 16 18 1 + 19 10 18 1 30 14 23 1 + 10 14 1 1 14 18 1 1 + 17 19 18 1 22 30 23 1 + 2 1 13 1 2 1 17 1 + 18 6 20 1 23 6 28 1 + 20 6 9 1 28 6 13 1 + 9 6 0 1 13 6 0 1 + 8 7 9 1 12 11 13 1 + 8 2 5 1 12 2 10 1 + 8 0 2 1 12 0 2 1 + 2 13 3 1 31 32 3 1 + 2 3 5 1 31 3 5 1 + 4 3 13 1 4 3 32 1 + 14 13 1 1 18 17 1 1 + 4 14 7 1 7 18 8 1 + 14 12 7 1 18 16 8 1 + tverts 33 + 0.441694 0.811641 0 + 0.677257 0.790256 0 + 0.483914 0.980396 0 + 0.773037 0.938545 0 + 0.776636 0.974217 0 + 0.729166 0.942321 0 + 0.474605 0.666692 0 + 0.85467 0.980396 0 + 0.984841 0.793621 0 + 0.971286 0.980396 0 + 0.0293166 0.980396 0 + 0.0293166 0.797518 0 + 0.260648 0.818089 0 + 0.247212 0.596321 0 + 0.681967 0.407232 0 + 0.724125 0.0122263 0 + 0.985418 0.0271399 0 + 0.672494 0.980396 0 + 0.865576 0.755035 0 + 0.0293166 0.0146418 0 + 0.141094 0.0146418 0 + 0.139075 0.478536 0 + 0.268588 0.0126599 0 + 0.472222 0.286055 0 + 0.430606 0.0714821 0 + 0.430853 0.0970362 0 + 0.487004 0.0721456 0 + 0.486692 0.0973213 0 + 0.259191 0.51157 0 + 0.924498 0.10198 0 + 0.476925 0.0138144 0 + 0.771637 0.904639 0 + 0.845486 0.934674 0 +endnode +node trimesh rbicep_g02 + parent rbicep_g + position 0.000683111 0.00850816 0.00535062 + orientation 0.383151 0.383466 0.840327 -0.74318 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 2.25636 -0.527949 -36.8445 + bitmap c_Marilit2bc + verts 21 + 0.112507 0.0500769 -0.066693 + 0.0239704 0.124862 -0.0634345 + 0.00484581 -0.0212057 0.0984838 + -0.0181463 -0.0269492 0.109677 + -0.0683889 -0.0316287 0.0776937 + 0.00853529 -0.11803 0.036223 + 0.0956204 0.0370824 -0.218461 + 0.0259491 -0.119681 -0.139712 + 0.108378 -0.0970655 -0.0413154 + 0.0796118 -0.0854388 -0.29283 + 0.0470493 0.0739847 -0.522294 + 0.0624026 -0.0100239 -0.846567 + -0.0317383 -0.0237299 -0.786201 + -0.0120229 0.0826433 0.067078 + -0.0414648 0.00664382 -0.130131 + 0.00490817 -0.0720798 -0.79396 + 0.0391371 -0.135421 -0.412983 + 0.0698715 -0.124341 -0.798798 + 0.113516 -0.0134788 -0.609514 + 0.11022 -0.0371099 -0.79716 + 0.109202 -0.0888573 -0.384869 + faces 38 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 0 6 1 1 0 6 1 1 + 4 7 5 1 7 8 9 1 + 5 7 8 1 10 11 12 1 + 9 0 8 1 13 0 12 1 + 10 11 12 1 14 15 16 1 + 13 14 4 1 17 18 7 1 + 12 15 16 1 19 20 21 1 + 12 16 7 1 19 21 11 1 + 16 17 18 1 21 22 23 1 + 15 11 17 2 24 25 26 1 + 17 11 19 2 26 25 27 1 + 9 7 16 1 13 11 21 1 + 16 18 20 1 21 23 28 1 + 16 20 9 1 21 28 13 1 + 15 17 16 1 20 22 21 1 + 12 11 15 2 16 15 29 1 + 10 19 11 1 14 30 15 1 + 6 10 1 1 6 14 1 1 + 18 10 6 1 23 14 6 1 + 10 12 14 1 14 16 18 1 + 19 10 18 1 30 14 23 1 + 10 14 1 1 14 18 1 1 + 17 19 18 1 22 30 23 1 + 2 1 13 1 2 1 17 1 + 18 6 20 1 23 6 28 1 + 20 6 9 1 28 6 13 1 + 9 6 0 1 13 6 0 1 + 8 7 9 1 12 11 13 1 + 8 2 5 1 12 2 10 1 + 8 0 2 1 12 0 2 1 + 2 13 3 1 31 32 3 1 + 2 3 5 1 31 3 5 1 + 4 3 13 1 4 3 32 1 + 14 13 1 1 18 17 1 1 + 4 14 7 1 7 18 8 1 + 14 12 7 1 18 16 8 1 + tverts 33 + 0.441694 0.811641 0 + 0.677257 0.790256 0 + 0.483914 0.980396 0 + 0.773037 0.938545 0 + 0.776636 0.974217 0 + 0.729166 0.942321 0 + 0.474605 0.666692 0 + 0.85467 0.980396 0 + 0.984841 0.793621 0 + 0.971286 0.980396 0 + 0.0293166 0.980396 0 + 0.0293166 0.797518 0 + 0.260648 0.818089 0 + 0.247212 0.596321 0 + 0.681967 0.407232 0 + 0.724125 0.0122263 0 + 0.985418 0.0271399 0 + 0.672494 0.980396 0 + 0.865576 0.755035 0 + 0.0293166 0.0146418 0 + 0.141094 0.0146418 0 + 0.139075 0.478536 0 + 0.268588 0.0126599 0 + 0.472222 0.286055 0 + 0.430606 0.0714821 0 + 0.430853 0.0970362 0 + 0.487004 0.0721456 0 + 0.486692 0.0973213 0 + 0.259191 0.51157 0 + 0.924498 0.10198 0 + 0.476925 0.0138144 0 + 0.771637 0.904639 0 + 0.845486 0.934674 0 +endnode +node trimesh rforearm_g02 + parent rbicep_g02 + position 0.0815498 -0.0634 -0.806583 + orientation -0.933443 -0.246098 0.260998 -1.32707 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center -0.2544 2.29429 -31.3325 + bitmap c_Marilit2fa + verts 16 + -0.023979 -0.0131253 0.0506219 + 0.0681508 0.0182221 -0.0842439 + -0.0197018 0.0208086 0.0535241 + -0.107375 0.0292107 0.0198052 + 0.0197406 -0.0716273 -0.0336437 + -0.0936113 -0.0301066 -0.202902 + 0.0897964 0.0519372 -0.239238 + -0.00847757 0.087259 -0.0625544 + 0.0364543 0.105666 -0.649085 + 0.102287 0.117513 -0.647912 + 0.072524 0.0512969 -0.680174 + 0.094569 -0.00377114 -0.652356 + 0.0257725 -0.00477342 -0.655827 + 0.0168915 0.114952 -0.220949 + -0.101003 0.0470781 -0.19997 + 0.0832458 0.00347147 -0.234263 + faces 28 + 0 1 2 1 0 1 2 1 + 3 4 0 1 3 4 0 1 + 5 4 3 1 5 6 7 1 + 6 7 1 1 8 9 10 1 + 8 9 10 1 11 12 13 1 + 10 9 11 1 13 12 14 1 + 10 11 12 1 13 14 15 1 + 10 12 8 1 13 15 11 1 + 7 3 2 1 16 17 2 1 + 13 14 7 1 18 19 9 1 + 1 7 2 1 1 16 2 1 + 15 1 4 1 20 10 6 1 + 9 6 11 1 21 8 22 1 + 12 11 4 1 23 22 6 1 + 14 3 7 1 19 24 9 1 + 4 1 0 1 4 1 0 1 + 3 0 2 1 25 26 27 1 + 8 13 9 1 28 18 21 1 + 13 7 6 1 18 9 8 1 + 6 15 11 1 8 20 22 1 + 4 11 15 1 6 22 20 1 + 5 14 8 1 29 19 28 1 + 14 5 3 1 19 29 24 1 + 12 5 8 1 30 29 28 1 + 8 14 13 1 28 19 18 1 + 5 12 4 1 5 23 6 1 + 9 13 6 1 21 18 8 1 + 6 1 15 1 8 10 20 1 + tverts 31 + 0.639261 0.988851 0 + 0.540403 0.910581 0 + 0.273524 0.99403 0 + 0.988656 0.973631 0 + 0.818857 0.940127 0 + 0.987444 0.646272 0 + 0.818655 0.940208 0 + 0.987203 0.972761 0 + 0.537145 0.605926 0 + 0.307847 0.93944 0 + 0.540411 0.90921 0 + 0.183022 0.092366 0 + 0.152216 0.0926122 0 + 0.166603 0.0709773 0 + 0.152132 0.0493724 0 + 0.182844 0.0494121 0 + 0.307651 0.940574 0 + 0.0140807 0.971362 0 + 0.326942 0.617916 0 + 0.146925 0.64082 0 + 0.589782 0.602906 0 + 0.444531 0.035104 0 + 0.684228 0.0298909 0 + 0.986295 0.040729 0 + 0.0136801 0.972217 0 + 0.0698193 0.925089 0 + 0.0796389 0.896324 0 + 0.0627417 0.894112 0 + 0.293168 0.040729 0 + 0.0136801 0.646654 0 + 0.0136801 0.040729 0 +endnode +node trimesh claw06 + parent rforearm_g02 + position 0.0273902 0.0189415 -0.623913 + orientation -0.631712 0.296583 0.716225 -0.90891 + wirecolor 0.694118 0.694118 0.694118 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 10 + center -5.88711 0.8527 -24.2011 + bitmap c_Marilit2n + verts 48 + 0.0117789 0.113471 -0.166256 + -0.0171075 -0.0782773 -0.0776549 + 0.021105 -0.0557331 -0.0476496 + 0.0258625 0.026155 -0.0337858 + 0.0104335 0.0220706 -0.325664 + -0.0631013 0.0731941 -0.165048 + 0.0474065 -0.128436 -0.285807 + 0.0126425 0.103765 -0.287081 + -0.025285 -0.0248625 -0.450236 + -0.0576304 -0.124341 -0.368517 + 0.0633624 0.0804341 -0.310272 + 0.0704324 -0.0179539 -0.310698 + 0.00382198 0.0832218 -0.4307 + 0.0205493 -0.0637597 -0.316823 + 0.00145356 -0.15348 -0.344204 + 0.0244271 -0.13816 -0.382845 + -0.049179 -0.00153487 -0.401916 + -0.00248189 -0.110966 -0.372447 + -0.125329 -0.0553213 -0.354518 + -0.0351937 -0.0509071 -0.390242 + -0.0295531 0.102369 -0.383415 + -0.0377371 0.0645009 -0.38387 + -0.118587 0.109623 -0.401628 + -0.129156 0.0822411 -0.434537 + -0.119014 0.0598355 -0.393921 + -0.0512225 0.108583 -0.0716753 + -0.110178 0.174373 -0.188819 + -0.113924 0.12549 -0.194393 + -0.0846793 0.145972 -0.20582 + -0.135304 0.166293 -0.298775 + -0.136921 0.10721 -0.273417 + -0.0841111 0.13214 -0.286275 + -0.160611 -0.0442882 -0.391425 + -0.0587368 -0.144859 -0.403151 + -0.159939 0.0788486 -0.329142 + -0.0522751 -0.157562 -0.366969 + -0.133036 -0.0201318 -0.36077 + 0.00714391 -0.145298 -0.26229 + -0.192755 -0.0362918 -0.267129 + -0.149646 0.174616 -0.392867 + -0.11703 -0.153401 -0.333852 + 0.0750127 -0.0134576 -0.256241 + 0.0245879 -0.0492301 -0.331904 + 0.00779541 0.00730554 -0.333927 + 0.0271439 0.0441845 -0.34691 + 0.012874 -0.0867875 -0.322209 + -0.0381216 0.0368248 -0.0659459 + -0.0145978 0.06942 -0.053673 + faces 92 + 19 18 8 1 47 46 36 1 + 30 31 27 1 58 59 55 1 + 22 23 34 1 97 98 100 1 + 9 35 14 32 5 22 42 1 + 7 10 12 1 69 78 80 1 + 31 28 27 1 59 56 55 1 + 4 11 43 1 39 79 91 1 + 15 35 33 1 43 63 61 1 + 22 12 23 1 50 40 51 1 + 4 7 44 32 2 4 31 1 + 43 16 19 32 29 7 10 1 + 24 21 20 32 14 12 11 1 + 20 12 22 1 48 40 50 1 + 18 36 38 32 9 24 25 1 + 36 16 8 1 64 44 36 1 + 41 3 2 1 89 38 35 1 + 32 38 36 1 99 102 101 1 + 33 40 9 1 110 111 68 1 + 1 37 2 1 1 65 21 1 + 36 8 32 1 64 36 60 1 + 38 32 18 1 108 104 62 1 + 10 44 12 1 78 92 80 1 + 18 19 16 32 9 10 7 1 + 44 21 12 1 72 49 40 1 + 35 40 33 1 107 109 105 1 + 15 33 17 1 43 61 45 1 + 15 14 35 1 43 42 63 1 + 0 7 5 1 30 69 41 1 + 21 24 12 1 49 52 40 1 + 5 7 4 32 3 4 2 1 + 25 27 5 32 15 17 3 1 + 10 11 4 1 78 79 39 1 + 6 15 45 1 54 82 93 1 + 22 24 20 32 13 14 11 1 + 29 26 28 64 87 85 86 1 + 9 17 33 1 37 45 61 1 + 10 0 41 1 78 30 89 1 + 40 35 9 32 27 22 5 1 + 15 37 14 1 43 65 42 1 + 44 20 21 32 31 11 12 1 + 16 43 8 1 44 71 36 1 + 0 26 25 64 30 85 84 1 + 7 12 20 1 69 80 83 1 + 27 29 30 32 17 18 19 1 + 4 13 5 32 2 6 3 1 + 36 18 16 32 24 9 7 1 + 13 45 37 32 6 32 65 1 + 32 8 18 1 60 36 46 1 + 27 25 26 32 17 15 16 1 + 23 24 34 1 66 103 106 1 + 13 4 42 32 6 2 28 1 + 11 13 42 1 79 81 90 1 + 9 14 17 32 5 42 8 1 + 12 24 23 1 40 52 51 1 + 22 34 24 32 13 20 14 1 + 27 28 5 1 55 56 33 1 + 8 11 42 1 77 79 90 1 + 0 5 28 1 0 33 56 1 + 31 39 29 64 95 96 26 1 + 39 31 30 1 67 59 58 1 + 27 26 29 32 17 16 18 1 + 28 26 0 64 86 85 30 1 + 0 25 47 65 30 84 94 1 + 31 29 28 64 88 87 86 1 + 13 37 5 32 6 65 3 1 + 14 37 45 32 42 65 32 1 + 0 10 7 1 30 78 69 1 + 5 37 1 32 3 65 1 1 + 0 3 41 1 30 38 89 1 + 10 41 11 1 78 89 79 1 + 11 6 13 1 79 54 81 1 + 6 41 2 1 54 89 35 1 + 5 46 25 32 3 74 15 1 + 29 39 30 32 26 96 57 1 + 11 41 6 1 79 89 54 1 + 45 13 6 1 93 81 54 1 + 6 37 15 1 34 65 43 1 + 37 6 2 1 65 34 21 1 + 8 42 19 1 36 70 47 1 + 42 43 19 32 28 29 10 1 + 43 11 8 1 91 79 77 1 + 4 43 42 32 2 29 28 1 + 7 20 44 32 4 11 31 1 + 4 44 10 1 39 92 78 1 + 45 17 14 32 32 8 42 1 + 45 15 17 1 73 43 45 1 + 47 25 46 2 76 53 75 2 + 1 2 3 2 1 21 23 2 + 5 1 46 32 3 1 74 1 + 3 46 1 2 23 75 1 2 + 3 47 46 2 23 76 75 2 + 0 47 3 65 30 94 38 1 + tverts 112 + 0.13145 0.858247 0 + 0.582654 0.996561 0 + 0.750005 0.560035 0 + 0.810216 0.79339 0 + 0.849169 0.654735 0 + 0.587736 0.345546 0 + 0.623225 0.557757 0 + 0.752996 0.354604 0 + 0.589038 0.433465 0 + 0.708823 0.174232 0 + 0.667041 0.356844 0 + 0.893256 0.425331 0 + 0.832293 0.396879 0 + 0.935194 0.278852 0 + 0.878409 0.257594 0 + 0.839296 0.922782 0 + 0.948297 0.780304 0 + 0.885275 0.762742 0 + 0.958908 0.630581 0 + 0.876816 0.651145 0 + 0.959588 0.142428 0 + 0.464859 0.920542 0 + 0.534583 0.343022 0 + 0.303642 0.989732 0 + 0.768482 0.175881 0 + 0.760356 0.0313209 0 + 0.952002 0.112875 0 + 0.568081 0.242453 0 + 0.633968 0.535215 0 + 0.733464 0.537151 0 + 0.662494 0.725276 0 + 0.766898 0.543589 0 + 0.604743 0.533624 0 + 0.111728 0.778911 0 + 0.449084 0.616543 0 + 0.288415 0.955472 0 + 0.329175 0.3575 0 + 0.453384 0.338688 0 + 0.459956 1.01305 0 + 0.466965 0.333096 0 + 0.157775 0.389718 0 + 0.652442 0.672606 0 + 0.509969 0.463385 0 + 0.476189 0.455838 0 + 0.281741 0.326493 0 + 0.436156 0.430645 0 + 0.362627 0.178686 0 + 0.366659 0.33691 0 + 0.120007 0.388493 0 + 0.190762 0.365553 0 + 0.100507 0.261886 0 + 0.145077 0.265371 0 + 0.177177 0.245225 0 + 0.116019 0.933231 0 + 0.104839 0.404144 0 + 0.0886802 0.758366 0 + 0.0622704 0.763267 0 + 0.972888 0.138933 0 + 0.112478 0.644797 0 + 0.0757429 0.662931 0 + 0.337157 0.168343 0 + 0.485388 0.331623 0 + 0.981834 0.10484 0 + 0.514746 0.343952 0 + 0.298182 0.174311 0 + 0.499334 0.623166 0 + 0.928292 0.014687 0 + 0.0175125 0.490214 0 + 0.885651 0.114357 0 + 0.6407 0.445832 0 + 0.357439 0.547368 0 + 0.265609 0.527348 0 + 0.221462 0.524616 0 + 0.403097 0.550801 0 + 0.743187 0.951115 0 + 0.268296 1.02608 0 + 0.212505 0.962523 0 + 0.402449 0.0130479 0 + 0.538472 0.415981 0 + 0.319266 0.391586 0 + 0.605479 0.105339 0 + 0.271692 0.33528 0 + 0.107434 0.165217 0 + 0.680923 0.199525 0 + 0.716512 0.903775 0 + 0.91865 0.618679 0 + 0.831339 0.58674 0 + 0.926984 0.349306 0 + 0.800957 0.398592 0 + 0.32426 0.520499 0 + 0.298856 0.307131 0 + 0.437858 0.30844 0 + 0.497485 0.300399 0 + 0.229946 0.311938 0 + 0.594617 0.955693 0 + 0.926293 0.128714 0 + 0.95962 0.0370209 0 + 0.921551 0.0900369 0 + 0.939385 0.0665822 0 + 0.9457 0.0552315 0 + 0.956049 0.13866 0 + 0.921016 0.0752639 0 + 0.95777 0.141049 0 + 0.944753 0.0529391 0 + 0.949098 0.0731761 0 + 0.956196 0.0465156 0 + 0.904504 0.109688 0 + 0.966107 0.0796962 0 + 0.920028 0.183178 0 + 0.911925 0.112427 0 + 0.899145 0.0775537 0 + 0.948299 0.151193 0 +endnode +node trimesh g_WSwSc_b_12 + parent claw06 + position -0.0174228 -0.329434 -0.167906 + orientation -0.971012 -0.0508134 0.233568 -6.04563 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.045 0.045 0.045 + shininess 26 + center 0.0534401 28.0813 3.47066 + bitmap W_metal_tex + verts 17 + 0.00053445 0.346977 0.00347302 + 0.00053433 0.514584 -0.0518507 + 0.0523318 0.514923 -5.33729e-005 + 0.049339 0.355452 0.0515362 + -0.0482701 0.355452 0.0515362 + 0.000534502 0.363925 0.0995994 + 0.000534397 0.514584 0.0517441 + -0.051263 0.514923 -5.34341e-005 + 0.0474622 0.181521 0.0750497 + 0.000534572 0.189669 0.0288348 + -0.0463928 0.181521 0.0750495 + 0.000534643 0.173371 0.121264 + 0.0448059 0.0958681 0.00683173 + 0.000534582 0.121261 -0.0294332 + 0.000534665 0.070475 0.0430967 + -0.0437365 0.0958681 0.00683167 + 0.000534631 0.046704 -0.0275936 + faces 28 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 4 5 6 1 4 5 6 1 + 6 7 4 1 6 7 4 1 + 3 2 6 1 8 9 6 4 + 6 5 3 1 6 5 8 4 + 1 0 4 1 1 0 4 3 + 4 7 1 1 4 7 1 3 + 0 3 8 1 0 3 10 5 + 8 9 0 1 10 11 0 5 + 5 4 10 1 5 4 12 5 + 10 11 5 1 12 13 5 5 + 3 5 11 1 8 5 13 5 + 11 8 3 1 13 14 8 5 + 4 0 9 1 4 0 11 5 + 9 10 4 1 11 12 4 5 + 9 8 12 1 11 10 15 5 + 12 13 9 1 15 16 11 5 + 8 11 14 1 14 13 17 5 + 14 12 8 1 17 18 14 5 + 11 10 15 1 13 12 19 5 + 15 14 11 1 19 17 13 5 + 10 9 13 1 12 11 16 5 + 13 15 10 1 16 19 12 5 + 13 12 16 2 20 21 22 5 + 12 14 16 2 21 23 22 5 + 14 15 16 2 23 21 22 5 + 15 13 16 2 21 20 22 5 + tverts 24 + 0.076014 0.410662 0 + 0.0760139 0.472588 0 + 0.0415826 0.472731 0 + 0.0115727 0.41423 0 + 0.140455 0.41423 0 + 0.175578 0.417799 0 + 0.175579 0.472588 0 + 0.110445 0.472731 0 + 0.210702 0.41423 0 + 0.240712 0.472731 0 + 0.00688148 0.338272 0 + 0.0760141 0.341704 0 + 0.145146 0.338272 0 + 0.175578 0.334841 0 + 0.206011 0.338272 0 + 0.0409523 0.296707 0 + 0.076014 0.304586 0 + 0.175578 0.288828 0 + 0.240081 0.296707 0 + 0.111076 0.296707 0 + 0.0725556 0.697127 0 + 0.159728 0.652506 0 + 0.10462 0.522781 0 + 0.246901 0.607886 0 +endnode +node trimesh g_WSwSc_t_12 + parent g_WSwSc_b_12 + position -0.000343704 0.841107 -0.0280283 + orientation -0.218456 -0.954513 -0.202935 -1.35654e-005 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.045 0.045 0.045 + shininess 26 + center 0.10606 43.5068 -5.96035 + bitmap W_metal_tex + verts 17 + -0.0156955 0.222276 0.00541927 + -0.0156949 -0.293799 0.0654929 + 0.0178169 0.222276 0.00541929 + 0.0178176 -0.293799 0.065493 + -0.015696 0.598282 -0.0393431 + 0.0178164 0.598282 -0.0393431 + -0.0156964 0.870653 -0.0263296 + 0.017816 0.870653 -0.0263296 + 0.00105951 1.16608 0.033297 + 0.0178175 -0.295944 -0.0636128 + -0.0156949 -0.295944 -0.0636128 + 0.00106128 -0.24238 -0.0249541 + 0.00106115 -0.164464 -0.0636129 + 0.00106062 0.222276 -0.111954 + 0.00106021 0.532258 -0.171834 + 0.00105983 0.825349 -0.1847 + 0.00105961 1.03049 -0.105478 + faces 30 + 0 1 2 1 0 1 2 1 + 3 2 1 1 1 0 3 1 + 4 0 5 1 4 0 5 1 + 2 5 0 1 0 4 2 1 + 6 4 7 1 6 4 7 1 + 5 7 4 1 4 6 5 1 + 7 8 6 1 6 8 7 1 + 9 10 11 1 9 10 11 2 + 3 1 9 2 1 3 9 5 + 10 9 1 2 9 10 1 5 + 9 11 3 4 9 11 1 4 + 11 12 3 4 11 12 1 4 + 2 3 13 4 0 1 13 4 + 12 13 3 4 12 13 1 4 + 5 2 14 4 4 0 14 4 + 13 14 2 4 13 14 0 4 + 7 5 15 4 6 4 15 4 + 14 15 5 4 14 15 4 4 + 8 7 16 4 8 6 16 4 + 15 16 7 4 15 16 6 4 + 6 8 15 8 6 8 15 3 + 16 15 8 8 16 15 8 3 + 4 6 14 8 4 6 14 3 + 15 14 6 8 15 14 6 3 + 0 4 13 8 0 4 13 3 + 14 13 4 8 14 13 4 3 + 1 0 12 8 1 0 12 3 + 13 12 0 8 13 12 0 3 + 12 11 1 8 12 11 1 3 + 11 10 1 8 11 9 1 3 + tverts 17 + 0.0747846 0.839272 0 + 0.0266073 0.761898 0 + 0.0747846 0.839272 0 + 0.0266073 0.761898 0 + 0.0941997 0.895646 0 + 0.0941997 0.895646 0 + 0.0847334 0.937311 0 + 0.0847334 0.937311 0 + 0.0266073 0.980775 0 + 0.135204 0.761576 0 + 0.135204 0.761576 0 + 0.102687 0.770806 0 + 0.135204 0.781289 0 + 0.212323 0.839272 0 + 0.245806 0.895646 0 + 0.232796 0.937311 0 + 0.138644 0.967238 0 +endnode +node trimesh g_WSwSc_m_22 + parent g_WSwSc_b_12 + position 0.000471799 0.280243 -5.34948e-005 + orientation -0.218456 -0.954513 -0.202935 -1.35654e-005 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.045 0.045 0.045 + shininess 26 + center -0.117945 7.44285 -0.0812492 + bitmap W_metal_tex + verts 17 + 0.0608029 0.233604 0.125661 + -0.00117934 0.383278 0.251314 + -0.0631615 0.233604 0.125661 + 0.031412 -0.167001 -0.110421 + -0.0337697 -0.167001 -0.110421 + -0.00117875 -0.234421 -0.0653859 + 0.0608028 0.234237 -0.123478 + -0.0631618 0.234237 -0.123478 + 0.0551682 0.176523 -0.20021 + -0.0575269 0.176523 -0.20021 + 0.0469811 0.0127156 -0.205527 + -0.0493393 0.0127158 -0.205527 + -0.00117934 0.290101 0.0542629 + -0.00117955 0.329785 -0.209552 + -0.00117943 0.217067 -0.248945 + -0.00117915 -0.00466543 -0.252939 + -0.00117882 -0.208702 -0.126952 + faces 30 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 2 + 0 2 6 2 6 7 8 5 + 7 6 2 2 9 8 7 5 + 6 7 8 2 8 9 10 5 + 9 8 7 2 11 10 9 5 + 8 9 10 2 10 11 12 5 + 11 10 9 2 13 12 11 5 + 10 11 3 2 12 13 14 5 + 4 3 11 2 15 14 13 5 + 12 0 13 4 16 6 17 4 + 6 13 0 4 8 17 6 4 + 13 6 14 4 17 8 18 4 + 8 14 6 4 10 18 8 4 + 14 8 15 4 18 10 19 4 + 10 15 8 4 12 19 10 4 + 15 10 16 4 19 12 20 4 + 3 16 10 4 14 20 12 4 + 16 3 5 4 20 14 5 4 + 2 12 7 4 7 16 9 3 + 13 7 12 4 17 9 16 3 + 7 13 9 4 9 17 11 3 + 14 9 13 4 18 11 17 3 + 9 14 11 4 11 18 13 3 + 15 11 14 4 19 13 18 3 + 11 15 4 4 13 19 15 3 + 16 4 15 4 20 15 19 3 + 5 4 16 4 5 4 20 3 + 0 12 1 4 0 1 21 1 + 2 1 12 4 2 1 21 1 + tverts 22 + 0.0297893 0.532896 0 + 0.0415299 0.619614 0 + 0.0297893 0.706333 0 + 0.23173 0.573018 0 + 0.23173 0.664567 0 + 0.238488 0.618792 0 + 0.0303787 0.532074 0 + 0.0303787 0.705511 0 + 0.0994503 0.532074 0 + 0.0994503 0.705511 0 + 0.120812 0.539957 0 + 0.120812 0.697628 0 + 0.178317 0.551412 0 + 0.178317 0.686173 0 + 0.208109 0.560201 0 + 0.208109 0.677384 0 + 0.0421193 0.618792 0 + 0.0979803 0.618792 0 + 0.124745 0.618792 0 + 0.175611 0.618792 0 + 0.21019 0.618792 0 + 0.0415299 0.619614 0 +endnode +node trimesh rbicep_g01 + parent rbicep_g + position 0.0117605 -0.019057 0.0243694 + orientation -0.247598 0.769154 -0.58915 -0.851947 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 2.25636 -0.527949 -36.8445 + bitmap c_Marilit2bc + verts 21 + 0.112507 0.0500769 -0.066693 + 0.0239705 0.124862 -0.0634345 + 0.0048458 -0.0212057 0.0984838 + -0.0181463 -0.0269492 0.109677 + -0.0683889 -0.0316287 0.0776937 + 0.00853528 -0.11803 0.0362231 + 0.0956204 0.0370824 -0.218461 + 0.0259491 -0.119681 -0.139712 + 0.108378 -0.0970655 -0.0413154 + 0.0796118 -0.0854388 -0.29283 + 0.0470494 0.0739847 -0.522294 + 0.0624027 -0.0100239 -0.846567 + -0.0317382 -0.0237298 -0.786201 + -0.0120229 0.0826433 0.067078 + -0.0414648 0.00664382 -0.130131 + 0.00490825 -0.0720798 -0.79396 + 0.0391372 -0.135421 -0.412983 + 0.0698716 -0.124341 -0.798798 + 0.113516 -0.0134787 -0.609514 + 0.110221 -0.0371098 -0.79716 + 0.109202 -0.0888573 -0.384869 + faces 38 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 0 6 1 1 0 6 1 1 + 4 7 5 1 7 8 9 1 + 5 7 8 1 10 11 12 1 + 9 0 8 1 13 0 12 1 + 10 11 12 1 14 15 16 1 + 13 14 4 1 17 18 7 1 + 12 15 16 1 19 20 21 1 + 12 16 7 1 19 21 11 1 + 16 17 18 1 21 22 23 1 + 15 11 17 2 24 25 26 1 + 17 11 19 2 26 25 27 1 + 9 7 16 1 13 11 21 1 + 16 18 20 1 21 23 28 1 + 16 20 9 1 21 28 13 1 + 15 17 16 1 20 22 21 1 + 12 11 15 2 16 15 29 1 + 10 19 11 1 14 30 15 1 + 6 10 1 1 6 14 1 1 + 18 10 6 1 23 14 6 1 + 10 12 14 1 14 16 18 1 + 19 10 18 1 30 14 23 1 + 10 14 1 1 14 18 1 1 + 17 19 18 1 22 30 23 1 + 2 1 13 1 2 1 17 1 + 18 6 20 1 23 6 28 1 + 20 6 9 1 28 6 13 1 + 9 6 0 1 13 6 0 1 + 8 7 9 1 12 11 13 1 + 8 2 5 1 12 2 10 1 + 8 0 2 1 12 0 2 1 + 2 13 3 1 31 32 3 1 + 2 3 5 1 31 3 5 1 + 4 3 13 1 4 3 32 1 + 14 13 1 1 18 17 1 1 + 4 14 7 1 7 18 8 1 + 14 12 7 1 18 16 8 1 + tverts 33 + 0.441694 0.811641 0 + 0.677257 0.790256 0 + 0.483914 0.980396 0 + 0.773037 0.938545 0 + 0.776636 0.974217 0 + 0.729166 0.942321 0 + 0.474605 0.666692 0 + 0.85467 0.980396 0 + 0.984841 0.793621 0 + 0.971286 0.980396 0 + 0.0293166 0.980396 0 + 0.0293166 0.797518 0 + 0.260648 0.818089 0 + 0.247212 0.596321 0 + 0.681967 0.407232 0 + 0.724125 0.0122263 0 + 0.985418 0.0271399 0 + 0.672494 0.980396 0 + 0.865576 0.755035 0 + 0.0293166 0.0146418 0 + 0.141094 0.0146418 0 + 0.139075 0.478536 0 + 0.268588 0.0126599 0 + 0.472222 0.286055 0 + 0.430606 0.0714821 0 + 0.430853 0.0970362 0 + 0.487004 0.0721456 0 + 0.486692 0.0973213 0 + 0.259191 0.51157 0 + 0.924498 0.10198 0 + 0.476925 0.0138144 0 + 0.771637 0.904639 0 + 0.845486 0.934674 0 +endnode +node trimesh rforearm_g01 + parent rbicep_g01 + position 0.0815497 -0.0633999 -0.806583 + orientation -0.839566 0.219671 0.496863 -1.65068 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center -0.2544 2.29429 -31.3324 + bitmap c_Marilit2fa + verts 16 + -0.023979 -0.0131253 0.0506218 + 0.0681509 0.0182221 -0.0842439 + -0.0197017 0.0208086 0.0535241 + -0.107375 0.0292107 0.0198052 + 0.0197406 -0.0716272 -0.0336437 + -0.0936113 -0.0301067 -0.202902 + 0.0897964 0.0519371 -0.239238 + -0.00847756 0.087259 -0.0625543 + 0.0364543 0.105666 -0.649084 + 0.102287 0.117513 -0.647911 + 0.072524 0.0512967 -0.680173 + 0.094569 -0.00377127 -0.652356 + 0.0257725 -0.00477355 -0.655827 + 0.0168915 0.114952 -0.220948 + -0.101003 0.0470781 -0.19997 + 0.0832458 0.00347143 -0.234262 + faces 28 + 0 1 2 1 0 1 2 1 + 3 4 0 1 3 4 0 1 + 5 4 3 1 5 6 7 1 + 6 7 1 1 8 9 10 1 + 8 9 10 1 11 12 13 1 + 10 9 11 1 13 12 14 1 + 10 11 12 1 13 14 15 1 + 10 12 8 1 13 15 11 1 + 7 3 2 1 16 17 2 1 + 13 14 7 1 18 19 9 1 + 1 7 2 1 1 16 2 1 + 15 1 4 1 20 10 6 1 + 9 6 11 1 21 8 22 1 + 12 11 4 1 23 22 6 1 + 14 3 7 1 19 24 9 1 + 4 1 0 1 4 1 0 1 + 3 0 2 1 25 26 27 1 + 8 13 9 1 28 18 21 1 + 13 7 6 1 18 9 8 1 + 6 15 11 1 8 20 22 1 + 4 11 15 1 6 22 20 1 + 5 14 8 1 29 19 28 1 + 14 5 3 1 19 29 24 1 + 12 5 8 1 30 29 28 1 + 8 14 13 1 28 19 18 1 + 5 12 4 1 5 23 6 1 + 9 13 6 1 21 18 8 1 + 6 1 15 1 8 10 20 1 + tverts 31 + 0.639261 0.988851 0 + 0.540403 0.910581 0 + 0.273524 0.99403 0 + 0.988656 0.973631 0 + 0.818857 0.940127 0 + 0.987444 0.646272 0 + 0.818655 0.940208 0 + 0.987203 0.972761 0 + 0.537145 0.605926 0 + 0.307847 0.93944 0 + 0.540411 0.90921 0 + 0.183022 0.092366 0 + 0.152216 0.0926122 0 + 0.166603 0.0709773 0 + 0.152132 0.0493724 0 + 0.182844 0.0494121 0 + 0.307651 0.940574 0 + 0.0140807 0.971362 0 + 0.326942 0.617916 0 + 0.146925 0.64082 0 + 0.589782 0.602906 0 + 0.444531 0.035104 0 + 0.684228 0.0298909 0 + 0.986295 0.040729 0 + 0.0136801 0.972217 0 + 0.0698193 0.925089 0 + 0.0796389 0.896324 0 + 0.0627417 0.894112 0 + 0.293168 0.040729 0 + 0.0136801 0.646654 0 + 0.0136801 0.040729 0 +endnode +node trimesh claw05 + parent rforearm_g01 + position 0.0831077 0.0560261 -0.598105 + orientation 0.998311 -0.0377809 -0.0441246 -6.27359 + wirecolor 0.694118 0.694118 0.694118 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 10 + center -5.88711 0.852749 -24.201 + bitmap c_Marilit2n + verts 48 + 0.0117789 0.113471 -0.166255 + -0.0171075 -0.0782773 -0.0776548 + 0.021105 -0.0557331 -0.0476496 + 0.0258626 0.026155 -0.0337858 + 0.0104336 0.0220707 -0.325663 + -0.0631013 0.0731941 -0.165048 + 0.0474066 -0.128436 -0.285807 + 0.0126426 0.103765 -0.28708 + -0.0252849 -0.0248624 -0.450235 + -0.0576303 -0.124341 -0.368517 + 0.0633625 0.0804342 -0.310272 + 0.0704325 -0.0179538 -0.310698 + 0.00382212 0.0832219 -0.430699 + 0.0205494 -0.0637596 -0.316822 + 0.00145364 -0.15348 -0.344203 + 0.0244272 -0.13816 -0.382845 + -0.0491789 -0.00153477 -0.401916 + -0.0024818 -0.110966 -0.372447 + -0.125328 -0.0553212 -0.354517 + -0.0351936 -0.050907 -0.390241 + -0.029553 0.102369 -0.383415 + -0.037737 0.064501 -0.383869 + -0.118587 0.109623 -0.401628 + -0.129156 0.0822412 -0.434536 + -0.119014 0.0598355 -0.393921 + -0.0512224 0.108583 -0.0716752 + -0.110178 0.174373 -0.188818 + -0.113924 0.12549 -0.194392 + -0.0846792 0.145972 -0.205819 + -0.135304 0.166293 -0.298774 + -0.13692 0.10721 -0.273417 + -0.084111 0.13214 -0.286275 + -0.160611 -0.0442881 -0.391425 + -0.0587367 -0.144859 -0.40315 + -0.159939 0.0788486 -0.329142 + -0.052275 -0.157561 -0.366969 + -0.133036 -0.0201317 -0.360769 + 0.00714396 -0.145298 -0.26229 + -0.192755 -0.0362918 -0.267129 + -0.149646 0.174616 -0.392866 + -0.11703 -0.1534 -0.333852 + 0.0750128 -0.0134576 -0.25624 + 0.024588 -0.04923 -0.331903 + 0.0077955 0.00730563 -0.333927 + 0.027144 0.0441846 -0.346909 + 0.0128741 -0.0867874 -0.322209 + -0.0381216 0.0368248 -0.0659458 + -0.0145978 0.06942 -0.053673 + faces 92 + 19 18 8 1 47 46 36 1 + 30 31 27 1 58 59 55 1 + 22 23 34 1 97 98 100 1 + 9 35 14 32 5 22 42 1 + 7 10 12 1 69 78 80 1 + 31 28 27 1 59 56 55 1 + 4 11 43 1 39 79 91 1 + 15 35 33 1 43 63 61 1 + 22 12 23 1 50 40 51 1 + 4 7 44 32 2 4 31 1 + 43 16 19 32 29 7 10 1 + 24 21 20 32 14 12 11 1 + 20 12 22 1 48 40 50 1 + 18 36 38 32 9 24 25 1 + 36 16 8 1 64 44 36 1 + 41 3 2 1 89 38 35 1 + 32 38 36 1 99 102 101 1 + 33 40 9 1 110 111 68 1 + 1 37 2 1 1 65 21 1 + 36 8 32 1 64 36 60 1 + 38 32 18 1 108 104 62 1 + 10 44 12 1 78 92 80 1 + 18 19 16 32 9 10 7 1 + 44 21 12 1 72 49 40 1 + 35 40 33 1 107 109 105 1 + 15 33 17 1 43 61 45 1 + 15 14 35 1 43 42 63 1 + 0 7 5 1 30 69 41 1 + 21 24 12 1 49 52 40 1 + 5 7 4 32 3 4 2 1 + 25 27 5 32 15 17 3 1 + 10 11 4 1 78 79 39 1 + 6 15 45 1 54 82 93 1 + 22 24 20 32 13 14 11 1 + 29 26 28 64 87 85 86 1 + 9 17 33 1 37 45 61 1 + 10 0 41 1 78 30 89 1 + 40 35 9 32 27 22 5 1 + 15 37 14 1 43 65 42 1 + 44 20 21 32 31 11 12 1 + 16 43 8 1 44 71 36 1 + 0 26 25 64 30 85 84 1 + 7 12 20 1 69 80 83 1 + 27 29 30 32 17 18 19 1 + 4 13 5 32 2 6 3 1 + 36 18 16 32 24 9 7 1 + 13 45 37 32 6 32 65 1 + 32 8 18 1 60 36 46 1 + 27 25 26 32 17 15 16 1 + 23 24 34 1 66 103 106 1 + 13 4 42 32 6 2 28 1 + 11 13 42 1 79 81 90 1 + 9 14 17 32 5 42 8 1 + 12 24 23 1 40 52 51 1 + 22 34 24 32 13 20 14 1 + 27 28 5 1 55 56 33 1 + 8 11 42 1 77 79 90 1 + 0 5 28 1 0 33 56 1 + 31 39 29 64 95 96 26 1 + 39 31 30 1 67 59 58 1 + 27 26 29 32 17 16 18 1 + 28 26 0 64 86 85 30 1 + 0 25 47 65 30 84 94 1 + 31 29 28 64 88 87 86 1 + 13 37 5 32 6 65 3 1 + 14 37 45 32 42 65 32 1 + 0 10 7 1 30 78 69 1 + 5 37 1 32 3 65 1 1 + 0 3 41 1 30 38 89 1 + 10 41 11 1 78 89 79 1 + 11 6 13 1 79 54 81 1 + 6 41 2 1 54 89 35 1 + 5 46 25 32 3 74 15 1 + 29 39 30 32 26 96 57 1 + 11 41 6 1 79 89 54 1 + 45 13 6 1 93 81 54 1 + 6 37 15 1 34 65 43 1 + 37 6 2 1 65 34 21 1 + 8 42 19 1 36 70 47 1 + 42 43 19 32 28 29 10 1 + 43 11 8 1 91 79 77 1 + 4 43 42 32 2 29 28 1 + 7 20 44 32 4 11 31 1 + 4 44 10 1 39 92 78 1 + 45 17 14 32 32 8 42 1 + 45 15 17 1 73 43 45 1 + 47 25 46 2 76 53 75 2 + 1 2 3 2 1 21 23 2 + 5 1 46 32 3 1 74 1 + 3 46 1 2 23 75 1 2 + 3 47 46 2 23 76 75 2 + 0 47 3 65 30 94 38 1 + tverts 112 + 0.13145 0.858247 0 + 0.582654 0.996561 0 + 0.750005 0.560035 0 + 0.810216 0.79339 0 + 0.849169 0.654735 0 + 0.587736 0.345546 0 + 0.623225 0.557757 0 + 0.752996 0.354604 0 + 0.589038 0.433465 0 + 0.708823 0.174232 0 + 0.667041 0.356844 0 + 0.893256 0.425331 0 + 0.832293 0.396879 0 + 0.935194 0.278852 0 + 0.878409 0.257594 0 + 0.839296 0.922782 0 + 0.948297 0.780304 0 + 0.885275 0.762742 0 + 0.958908 0.630581 0 + 0.876816 0.651145 0 + 0.959588 0.142428 0 + 0.464859 0.920542 0 + 0.534583 0.343022 0 + 0.303642 0.989732 0 + 0.768482 0.175881 0 + 0.760356 0.0313209 0 + 0.952002 0.112875 0 + 0.568081 0.242453 0 + 0.633968 0.535215 0 + 0.733464 0.537151 0 + 0.662494 0.725276 0 + 0.766898 0.543589 0 + 0.604743 0.533624 0 + 0.111728 0.778911 0 + 0.449084 0.616543 0 + 0.288415 0.955472 0 + 0.329175 0.3575 0 + 0.453384 0.338688 0 + 0.459956 1.01305 0 + 0.466965 0.333096 0 + 0.157775 0.389718 0 + 0.652442 0.672606 0 + 0.509969 0.463385 0 + 0.476189 0.455838 0 + 0.281741 0.326493 0 + 0.436156 0.430645 0 + 0.362627 0.178686 0 + 0.366659 0.33691 0 + 0.120007 0.388493 0 + 0.190762 0.365553 0 + 0.100507 0.261886 0 + 0.145077 0.265371 0 + 0.177177 0.245225 0 + 0.116019 0.933231 0 + 0.104839 0.404144 0 + 0.0886802 0.758366 0 + 0.0622704 0.763267 0 + 0.972888 0.138933 0 + 0.112478 0.644797 0 + 0.0757429 0.662931 0 + 0.337157 0.168343 0 + 0.485388 0.331623 0 + 0.981834 0.10484 0 + 0.514746 0.343952 0 + 0.298182 0.174311 0 + 0.499334 0.623166 0 + 0.928292 0.014687 0 + 0.0175125 0.490214 0 + 0.885651 0.114357 0 + 0.6407 0.445832 0 + 0.357439 0.547368 0 + 0.265609 0.527348 0 + 0.221462 0.524616 0 + 0.403097 0.550801 0 + 0.743187 0.951115 0 + 0.268296 1.02608 0 + 0.212505 0.962523 0 + 0.402449 0.0130479 0 + 0.538472 0.415981 0 + 0.319266 0.391586 0 + 0.605479 0.105339 0 + 0.271692 0.33528 0 + 0.107434 0.165217 0 + 0.680923 0.199525 0 + 0.716512 0.903775 0 + 0.91865 0.618679 0 + 0.831339 0.58674 0 + 0.926984 0.349306 0 + 0.800957 0.398592 0 + 0.32426 0.520499 0 + 0.298856 0.307131 0 + 0.437858 0.30844 0 + 0.497485 0.300399 0 + 0.229946 0.311938 0 + 0.594617 0.955693 0 + 0.926293 0.128714 0 + 0.95962 0.0370209 0 + 0.921551 0.0900369 0 + 0.939385 0.0665822 0 + 0.9457 0.0552315 0 + 0.956049 0.13866 0 + 0.921016 0.0752639 0 + 0.95777 0.141049 0 + 0.944753 0.0529391 0 + 0.949098 0.0731761 0 + 0.956196 0.0465156 0 + 0.904504 0.109688 0 + 0.966107 0.0796962 0 + 0.920028 0.183178 0 + 0.911925 0.112427 0 + 0.899145 0.0775537 0 + 0.948299 0.151193 0 +endnode +node trimesh g_WSwSc_b_13 + parent claw05 + position -0.075032 -0.363485 -0.112561 + orientation -0.517488 0.821119 -0.24077 -5.69908 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.045 0.045 0.045 + shininess 26 + center 0.05867 30.8101 3.80794 + bitmap W_metal_tex + verts 17 + 0.000586675 0.380695 0.00381065 + 0.000586714 0.564589 -0.0568892 + 0.0574175 0.56496 -5.83943e-005 + 0.0541338 0.389992 0.0565444 + -0.0529605 0.389992 0.0565444 + 0.000586697 0.399291 0.109278 + 0.000586732 0.564589 0.0567724 + -0.0562441 0.56496 -5.84117e-005 + 0.0520745 0.199161 0.0823426 + 0.000586663 0.208101 0.031637 + -0.050901 0.199161 0.0823426 + 0.000586682 0.190219 0.133048 + 0.04916 0.105184 0.00749561 + 0.000586647 0.133045 -0.0322933 + 0.000586659 0.0773236 0.0472847 + -0.0479866 0.105184 0.00749559 + 0.000586639 0.0512424 -0.0302749 + faces 28 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 4 5 6 1 4 5 6 1 + 6 7 4 1 6 7 4 1 + 3 2 6 1 8 9 6 4 + 6 5 3 1 6 5 8 4 + 1 0 4 1 1 0 4 3 + 4 7 1 1 4 7 1 3 + 0 3 8 1 0 3 10 5 + 8 9 0 1 10 11 0 5 + 5 4 10 1 5 4 12 5 + 10 11 5 1 12 13 5 5 + 3 5 11 1 8 5 13 5 + 11 8 3 1 13 14 8 5 + 4 0 9 1 4 0 11 5 + 9 10 4 1 11 12 4 5 + 9 8 12 1 11 10 15 5 + 12 13 9 1 15 16 11 5 + 8 11 14 1 14 13 17 5 + 14 12 8 1 17 18 14 5 + 11 10 15 1 13 12 19 5 + 15 14 11 1 19 17 13 5 + 10 9 13 1 12 11 16 5 + 13 15 10 1 16 19 12 5 + 13 12 16 2 20 21 22 5 + 12 14 16 2 21 23 22 5 + 14 15 16 2 23 21 22 5 + 15 13 16 2 21 20 22 5 + tverts 24 + 0.076014 0.410662 0 + 0.0760139 0.472588 0 + 0.0415826 0.472731 0 + 0.0115727 0.41423 0 + 0.140455 0.41423 0 + 0.175578 0.417799 0 + 0.175579 0.472588 0 + 0.110445 0.472731 0 + 0.210702 0.41423 0 + 0.240712 0.472731 0 + 0.00688148 0.338272 0 + 0.0760141 0.341704 0 + 0.145146 0.338272 0 + 0.175578 0.334841 0 + 0.206011 0.338272 0 + 0.0409523 0.296707 0 + 0.076014 0.304586 0 + 0.175578 0.288828 0 + 0.240081 0.296707 0 + 0.111076 0.296707 0 + 0.0725556 0.697127 0 + 0.159728 0.652506 0 + 0.10462 0.522781 0 + 0.246901 0.607886 0 +endnode +node trimesh g_WSwSc_t_13 + parent g_WSwSc_b_13 + position -0.000377152 0.922842 -0.0307519 + orientation 0.0923457 0.956414 0.277027 -1.13406e-006 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.045 0.045 0.045 + shininess 26 + center 0.116415 47.7348 -6.53955 + bitmap W_metal_tex + verts 17 + -0.0172204 0.243876 0.0059461 + -0.0172205 -0.322348 0.071857 + 0.0195487 0.243876 0.0059461 + 0.0195485 -0.322348 0.071857 + -0.0172203 0.656421 -0.0431657 + 0.0195487 0.656421 -0.0431657 + -0.0172202 0.955261 -0.0288874 + 0.0195488 0.955261 -0.0288874 + 0.00116436 1.2794 0.0365337 + 0.0195485 -0.324703 -0.0697946 + -0.0172205 -0.324703 -0.0697946 + 0.00116402 -0.265933 -0.0273793 + 0.00116404 -0.180445 -0.0697946 + 0.00116412 0.243876 -0.122832 + 0.00116423 0.583981 -0.188532 + 0.00116429 0.905554 -0.202648 + 0.00116433 1.13063 -0.115727 + faces 30 + 0 1 2 1 0 1 2 1 + 3 2 1 1 1 0 3 1 + 4 0 5 1 4 0 5 1 + 2 5 0 1 0 4 2 1 + 6 4 7 1 6 4 7 1 + 5 7 4 1 4 6 5 1 + 7 8 6 1 6 8 7 1 + 9 10 11 1 9 10 11 2 + 3 1 9 2 1 3 9 5 + 10 9 1 2 9 10 1 5 + 9 11 3 4 9 11 1 4 + 11 12 3 4 11 12 1 4 + 2 3 13 4 0 1 13 4 + 12 13 3 4 12 13 1 4 + 5 2 14 4 4 0 14 4 + 13 14 2 4 13 14 0 4 + 7 5 15 4 6 4 15 4 + 14 15 5 4 14 15 4 4 + 8 7 16 4 8 6 16 4 + 15 16 7 4 15 16 6 4 + 6 8 15 8 6 8 15 3 + 16 15 8 8 16 15 8 3 + 4 6 14 8 4 6 14 3 + 15 14 6 8 15 14 6 3 + 0 4 13 8 0 4 13 3 + 14 13 4 8 14 13 4 3 + 1 0 12 8 1 0 12 3 + 13 12 0 8 13 12 0 3 + 12 11 1 8 12 11 1 3 + 11 10 1 8 11 9 1 3 + tverts 17 + 0.0747846 0.839272 0 + 0.0266073 0.761898 0 + 0.0747846 0.839272 0 + 0.0266073 0.761898 0 + 0.0941997 0.895646 0 + 0.0941997 0.895646 0 + 0.0847334 0.937311 0 + 0.0847334 0.937311 0 + 0.0266073 0.980775 0 + 0.135204 0.761576 0 + 0.135204 0.761576 0 + 0.102687 0.770806 0 + 0.135204 0.781289 0 + 0.212323 0.839272 0 + 0.245806 0.895646 0 + 0.232796 0.937311 0 + 0.138644 0.967238 0 +endnode +node trimesh g_WSwSc_m_23 + parent g_WSwSc_b_13 + position 0.0005172 0.307476 -5.82642e-005 + orientation -0.042977 0.980153 0.193526 -1.1143e-006 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.045 0.045 0.045 + shininess 26 + center -0.12936 8.16605 -0.0890999 + bitmap W_metal_tex + verts 17 + 0.0667118 0.256305 0.137872 + -0.00129347 0.420523 0.275736 + -0.069299 0.256305 0.137872 + 0.0344643 -0.183229 -0.121152 + -0.0370515 -0.183229 -0.121152 + -0.00129365 -0.257202 -0.07174 + 0.0667118 0.256999 -0.135477 + -0.069299 0.256999 -0.135477 + 0.0605297 0.193677 -0.219666 + -0.0631166 0.193677 -0.219666 + 0.0515468 0.0139512 -0.225498 + -0.0541338 0.0139512 -0.225498 + -0.00129349 0.318294 0.0595361 + -0.00129346 0.361833 -0.229914 + -0.00129349 0.238161 -0.273135 + -0.00129356 -0.00511903 -0.277518 + -0.00129363 -0.228982 -0.139289 + faces 30 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 2 + 0 2 6 2 6 7 8 5 + 7 6 2 2 9 8 7 5 + 6 7 8 2 8 9 10 5 + 9 8 7 2 11 10 9 5 + 8 9 10 2 10 11 12 5 + 11 10 9 2 13 12 11 5 + 10 11 3 2 12 13 14 5 + 4 3 11 2 15 14 13 5 + 12 0 13 4 16 6 17 4 + 6 13 0 4 8 17 6 4 + 13 6 14 4 17 8 18 4 + 8 14 6 4 10 18 8 4 + 14 8 15 4 18 10 19 4 + 10 15 8 4 12 19 10 4 + 15 10 16 4 19 12 20 4 + 3 16 10 4 14 20 12 4 + 16 3 5 4 20 14 5 4 + 2 12 7 4 7 16 9 3 + 13 7 12 4 17 9 16 3 + 7 13 9 4 9 17 11 3 + 14 9 13 4 18 11 17 3 + 9 14 11 4 11 18 13 3 + 15 11 14 4 19 13 18 3 + 11 15 4 4 13 19 15 3 + 16 4 15 4 20 15 19 3 + 5 4 16 4 5 4 20 3 + 0 12 1 4 0 1 21 1 + 2 1 12 4 2 1 21 1 + tverts 22 + 0.0297893 0.532896 0 + 0.0415299 0.619614 0 + 0.0297893 0.706333 0 + 0.23173 0.573018 0 + 0.23173 0.664567 0 + 0.238488 0.618792 0 + 0.0303787 0.532074 0 + 0.0303787 0.705511 0 + 0.0994503 0.532074 0 + 0.0994503 0.705511 0 + 0.120812 0.539957 0 + 0.120812 0.697628 0 + 0.178317 0.551412 0 + 0.178317 0.686173 0 + 0.208109 0.560201 0 + 0.208109 0.677384 0 + 0.0421193 0.618792 0 + 0.0979803 0.618792 0 + 0.124745 0.618792 0 + 0.175611 0.618792 0 + 0.21019 0.618792 0 + 0.0415299 0.619614 0 +endnode +node trimesh rforearm_g + parent rbicep_g + position 0.0815493 -0.0633999 -0.806583 + orientation -1.0 -4.85832e-007 -3.33361e-007 -0.518063 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center -0.2544 2.29434 -31.3324 + bitmap c_Marilit2fa + verts 16 + -0.023979 -0.0131253 0.0506218 + 0.0681508 0.0182222 -0.0842439 + -0.0197018 0.0208086 0.053524 + -0.107375 0.0292107 0.0198052 + 0.0197406 -0.0716273 -0.0336436 + -0.0936112 -0.0301066 -0.202902 + 0.0897964 0.0519372 -0.239238 + -0.00847756 0.0872591 -0.0625544 + 0.0364544 0.105667 -0.649084 + 0.102287 0.117514 -0.647911 + 0.0725241 0.0512969 -0.680173 + 0.094569 -0.0037711 -0.652356 + 0.0257726 -0.00477338 -0.655827 + 0.0168915 0.114952 -0.220949 + -0.101003 0.0470781 -0.199969 + 0.0832458 0.00347149 -0.234262 + faces 28 + 0 1 2 1 0 1 2 1 + 3 4 0 1 3 4 0 1 + 5 4 3 1 5 6 7 1 + 6 7 1 1 8 9 10 1 + 8 9 10 1 11 12 13 1 + 10 9 11 1 13 12 14 1 + 10 11 12 1 13 14 15 1 + 10 12 8 1 13 15 11 1 + 7 3 2 1 16 17 2 1 + 13 14 7 1 18 19 9 1 + 1 7 2 1 1 16 2 1 + 15 1 4 1 20 10 6 1 + 9 6 11 1 21 8 22 1 + 12 11 4 1 23 22 6 1 + 14 3 7 1 19 24 9 1 + 4 1 0 1 4 1 0 1 + 3 0 2 1 25 26 27 1 + 8 13 9 1 28 18 21 1 + 13 7 6 1 18 9 8 1 + 6 15 11 1 8 20 22 1 + 4 11 15 1 6 22 20 1 + 5 14 8 1 29 19 28 1 + 14 5 3 1 19 29 24 1 + 12 5 8 1 30 29 28 1 + 8 14 13 1 28 19 18 1 + 5 12 4 1 5 23 6 1 + 9 13 6 1 21 18 8 1 + 6 1 15 1 8 10 20 1 + tverts 31 + 0.639261 0.988851 0 + 0.540403 0.910581 0 + 0.273524 0.99403 0 + 0.988656 0.973631 0 + 0.818857 0.940127 0 + 0.987444 0.646272 0 + 0.818655 0.940208 0 + 0.987203 0.972761 0 + 0.537145 0.605926 0 + 0.307847 0.93944 0 + 0.540411 0.90921 0 + 0.183022 0.092366 0 + 0.152216 0.0926122 0 + 0.166603 0.0709773 0 + 0.152132 0.0493724 0 + 0.182844 0.0494121 0 + 0.307651 0.940574 0 + 0.0140807 0.971362 0 + 0.326942 0.617916 0 + 0.146925 0.64082 0 + 0.589782 0.602906 0 + 0.444531 0.035104 0 + 0.684228 0.0298909 0 + 0.986295 0.040729 0 + 0.0136801 0.972217 0 + 0.0698193 0.925089 0 + 0.0796389 0.896324 0 + 0.0627417 0.894112 0 + 0.293168 0.040729 0 + 0.0136801 0.646654 0 + 0.0136801 0.040729 0 +endnode +node trimesh rhand_g + parent rforearm_g + position 0.0831077 0.0560259 -0.598106 + orientation -0.99831 0.0377794 0.0441481 -0.00959671 + wirecolor 0.694118 0.694118 0.694118 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 10 + center -5.88711 0.8528 -24.2011 + bitmap c_Marilit2n + verts 48 + 0.0117789 0.113471 -0.166256 + -0.0171075 -0.0782773 -0.0776549 + 0.021105 -0.0557331 -0.0476496 + 0.0258625 0.0261551 -0.0337859 + 0.0104336 0.0220707 -0.325664 + -0.0631013 0.0731942 -0.165048 + 0.0474066 -0.128436 -0.285807 + 0.0126426 0.103765 -0.287081 + -0.0252849 -0.0248623 -0.450236 + -0.0576303 -0.124341 -0.368517 + 0.0633625 0.0804342 -0.310272 + 0.0704325 -0.0179538 -0.310698 + 0.00382211 0.083222 -0.4307 + 0.0205494 -0.0637596 -0.316823 + 0.00145363 -0.15348 -0.344204 + 0.0244272 -0.13816 -0.382845 + -0.0491789 -0.00153469 -0.401916 + -0.0024818 -0.110966 -0.372447 + -0.125328 -0.0553212 -0.354518 + -0.0351936 -0.050907 -0.390242 + -0.029553 0.102369 -0.383415 + -0.037737 0.0645011 -0.38387 + -0.118587 0.109623 -0.401628 + -0.129156 0.0822413 -0.434537 + -0.119014 0.0598357 -0.393921 + -0.0512225 0.108583 -0.0716753 + -0.110178 0.174374 -0.188819 + -0.113924 0.12549 -0.194393 + -0.0846792 0.145973 -0.20582 + -0.135304 0.166293 -0.298775 + -0.13692 0.10721 -0.273417 + -0.084111 0.13214 -0.286275 + -0.160611 -0.0442881 -0.391425 + -0.0587367 -0.144859 -0.403151 + -0.159939 0.0788487 -0.329142 + -0.052275 -0.157561 -0.366969 + -0.133036 -0.0201316 -0.36077 + 0.00714396 -0.145298 -0.26229 + -0.192755 -0.0362917 -0.267129 + -0.149646 0.174617 -0.392867 + -0.11703 -0.1534 -0.333852 + 0.0750127 -0.0134575 -0.256241 + 0.024588 -0.04923 -0.331904 + 0.00779549 0.0073057 -0.333927 + 0.027144 0.0441846 -0.34691 + 0.012874 -0.0867874 -0.322209 + -0.0381216 0.0368249 -0.0659459 + -0.0145978 0.06942 -0.053673 + faces 92 + 19 18 8 1 47 46 36 1 + 30 31 27 1 58 59 55 1 + 22 23 34 1 97 98 100 1 + 9 35 14 32 5 22 42 1 + 7 10 12 1 69 78 80 1 + 31 28 27 1 59 56 55 1 + 4 11 43 1 39 79 91 1 + 15 35 33 1 43 63 61 1 + 22 12 23 1 50 40 51 1 + 4 7 44 32 2 4 31 1 + 43 16 19 32 29 7 10 1 + 24 21 20 32 14 12 11 1 + 20 12 22 1 48 40 50 1 + 18 36 38 32 9 24 25 1 + 36 16 8 1 64 44 36 1 + 41 3 2 1 89 38 35 1 + 32 38 36 1 99 102 101 1 + 33 40 9 1 110 111 68 1 + 1 37 2 1 1 65 21 1 + 36 8 32 1 64 36 60 1 + 38 32 18 1 108 104 62 1 + 10 44 12 1 78 92 80 1 + 18 19 16 32 9 10 7 1 + 44 21 12 1 72 49 40 1 + 35 40 33 1 107 109 105 1 + 15 33 17 1 43 61 45 1 + 15 14 35 1 43 42 63 1 + 0 7 5 1 30 69 41 1 + 21 24 12 1 49 52 40 1 + 5 7 4 32 3 4 2 1 + 25 27 5 32 15 17 3 1 + 10 11 4 1 78 79 39 1 + 6 15 45 1 54 82 93 1 + 22 24 20 32 13 14 11 1 + 29 26 28 64 87 85 86 1 + 9 17 33 1 37 45 61 1 + 10 0 41 1 78 30 89 1 + 40 35 9 32 27 22 5 1 + 15 37 14 1 43 65 42 1 + 44 20 21 32 31 11 12 1 + 16 43 8 1 44 71 36 1 + 0 26 25 64 30 85 84 1 + 7 12 20 1 69 80 83 1 + 27 29 30 32 17 18 19 1 + 4 13 5 32 2 6 3 1 + 36 18 16 32 24 9 7 1 + 13 45 37 32 6 32 65 1 + 32 8 18 1 60 36 46 1 + 27 25 26 32 17 15 16 1 + 23 24 34 1 66 103 106 1 + 13 4 42 32 6 2 28 1 + 11 13 42 1 79 81 90 1 + 9 14 17 32 5 42 8 1 + 12 24 23 1 40 52 51 1 + 22 34 24 32 13 20 14 1 + 27 28 5 1 55 56 33 1 + 8 11 42 1 77 79 90 1 + 0 5 28 1 0 33 56 1 + 31 39 29 64 95 96 26 1 + 39 31 30 1 67 59 58 1 + 27 26 29 32 17 16 18 1 + 28 26 0 64 86 85 30 1 + 0 25 47 65 30 84 94 1 + 31 29 28 64 88 87 86 1 + 13 37 5 32 6 65 3 1 + 14 37 45 32 42 65 32 1 + 0 10 7 1 30 78 69 1 + 5 37 1 32 3 65 1 1 + 0 3 41 1 30 38 89 1 + 10 41 11 1 78 89 79 1 + 11 6 13 1 79 54 81 1 + 6 41 2 1 54 89 35 1 + 5 46 25 32 3 74 15 1 + 29 39 30 32 26 96 57 1 + 11 41 6 1 79 89 54 1 + 45 13 6 1 93 81 54 1 + 6 37 15 1 34 65 43 1 + 37 6 2 1 65 34 21 1 + 8 42 19 1 36 70 47 1 + 42 43 19 32 28 29 10 1 + 43 11 8 1 91 79 77 1 + 4 43 42 32 2 29 28 1 + 7 20 44 32 4 11 31 1 + 4 44 10 1 39 92 78 1 + 45 17 14 32 32 8 42 1 + 45 15 17 1 73 43 45 1 + 47 25 46 2 76 53 75 2 + 1 2 3 2 1 21 23 2 + 5 1 46 32 3 1 74 1 + 3 46 1 2 23 75 1 2 + 3 47 46 2 23 76 75 2 + 0 47 3 65 30 94 38 1 + tverts 112 + 0.13145 0.858247 0 + 0.582654 0.996561 0 + 0.750005 0.560035 0 + 0.810216 0.79339 0 + 0.849169 0.654735 0 + 0.587736 0.345546 0 + 0.623225 0.557757 0 + 0.752996 0.354604 0 + 0.589038 0.433465 0 + 0.708823 0.174232 0 + 0.667041 0.356844 0 + 0.893256 0.425331 0 + 0.832293 0.396879 0 + 0.935194 0.278852 0 + 0.878409 0.257594 0 + 0.839296 0.922782 0 + 0.948297 0.780304 0 + 0.885275 0.762742 0 + 0.958908 0.630581 0 + 0.876816 0.651145 0 + 0.959588 0.142428 0 + 0.464859 0.920542 0 + 0.534583 0.343022 0 + 0.303642 0.989732 0 + 0.768482 0.175881 0 + 0.760356 0.0313209 0 + 0.952002 0.112875 0 + 0.568081 0.242453 0 + 0.633968 0.535215 0 + 0.733464 0.537151 0 + 0.662494 0.725276 0 + 0.766898 0.543589 0 + 0.604743 0.533624 0 + 0.111728 0.778911 0 + 0.449084 0.616543 0 + 0.288415 0.955472 0 + 0.329175 0.3575 0 + 0.453384 0.338688 0 + 0.459956 1.01305 0 + 0.466965 0.333096 0 + 0.157775 0.389718 0 + 0.652442 0.672606 0 + 0.509969 0.463385 0 + 0.476189 0.455838 0 + 0.281741 0.326493 0 + 0.436156 0.430645 0 + 0.362627 0.178686 0 + 0.366659 0.33691 0 + 0.120007 0.388493 0 + 0.190762 0.365553 0 + 0.100507 0.261886 0 + 0.145077 0.265371 0 + 0.177177 0.245225 0 + 0.116019 0.933231 0 + 0.104839 0.404144 0 + 0.0886802 0.758366 0 + 0.0622704 0.763267 0 + 0.972888 0.138933 0 + 0.112478 0.644797 0 + 0.0757429 0.662931 0 + 0.337157 0.168343 0 + 0.485388 0.331623 0 + 0.981834 0.10484 0 + 0.514746 0.343952 0 + 0.298182 0.174311 0 + 0.499334 0.623166 0 + 0.928292 0.014687 0 + 0.0175125 0.490214 0 + 0.885651 0.114357 0 + 0.6407 0.445832 0 + 0.357439 0.547368 0 + 0.265609 0.527348 0 + 0.221462 0.524616 0 + 0.403097 0.550801 0 + 0.743187 0.951115 0 + 0.268296 1.02608 0 + 0.212505 0.962523 0 + 0.402449 0.0130479 0 + 0.538472 0.415981 0 + 0.319266 0.391586 0 + 0.605479 0.105339 0 + 0.271692 0.33528 0 + 0.107434 0.165217 0 + 0.680923 0.199525 0 + 0.716512 0.903775 0 + 0.91865 0.618679 0 + 0.831339 0.58674 0 + 0.926984 0.349306 0 + 0.800957 0.398592 0 + 0.32426 0.520499 0 + 0.298856 0.307131 0 + 0.437858 0.30844 0 + 0.497485 0.300399 0 + 0.229946 0.311938 0 + 0.594617 0.955693 0 + 0.926293 0.128714 0 + 0.95962 0.0370209 0 + 0.921551 0.0900369 0 + 0.939385 0.0665822 0 + 0.9457 0.0552315 0 + 0.956049 0.13866 0 + 0.921016 0.0752639 0 + 0.95777 0.141049 0 + 0.944753 0.0529391 0 + 0.949098 0.0731761 0 + 0.956196 0.0465156 0 + 0.904504 0.109688 0 + 0.966107 0.0796962 0 + 0.920028 0.183178 0 + 0.911925 0.112427 0 + 0.899145 0.0775537 0 + 0.948299 0.151193 0 +endnode +node dummy rhand + parent rhand_g + position -0.0339054 0.0308217 -0.221639 + orientation 0.931836 -0.330849 0.149067 -1.16295 + wirecolor 0.0313726 0.239216 0.541176 +endnode +node trimesh lbicep_g + parent torso_g + position -0.398401 -0.0839355 0.789421 + orientation 0.793594 -0.346818 0.499925 -0.471138 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center -2.25636 -0.527999 -36.8445 + bitmap c_Marilit2bc + verts 21 + -0.0239704 0.124861 -0.0634345 + -0.112507 0.0500769 -0.066693 + -0.00484584 -0.0212056 0.0984838 + 0.0683889 -0.0316287 0.0776937 + 0.0181463 -0.0269491 0.109677 + -0.00853521 -0.11803 0.036223 + -0.0956203 0.0370824 -0.218461 + -0.0259491 -0.119681 -0.139712 + -0.108378 -0.0970654 -0.0413154 + -0.0796118 -0.0854388 -0.29283 + -0.0624025 -0.010024 -0.846567 + -0.0470493 0.0739846 -0.522294 + 0.0317383 -0.0237299 -0.786201 + 0.0414651 0.00664381 -0.130131 + 0.0120229 0.0826432 0.067078 + -0.00490809 -0.0720798 -0.79396 + -0.0391371 -0.135421 -0.412983 + -0.0698715 -0.124341 -0.798798 + -0.113516 -0.0134788 -0.609514 + -0.11022 -0.0371099 -0.79716 + -0.109202 -0.0888573 -0.384869 + faces 38 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 6 1 0 1 6 1 0 1 + 7 3 5 1 7 8 9 1 + 7 5 8 1 10 11 12 1 + 1 9 8 1 1 13 12 1 + 10 11 12 1 14 15 16 1 + 13 14 3 1 17 18 8 1 + 15 12 16 1 19 20 21 1 + 16 12 7 1 21 20 10 1 + 17 16 18 1 22 21 23 1 + 10 15 17 2 24 25 26 1 + 10 17 19 2 24 26 27 1 + 7 9 16 1 10 13 21 1 + 18 16 20 1 23 21 28 1 + 20 16 9 1 28 21 13 1 + 17 15 16 1 22 19 21 1 + 10 12 15 2 14 16 29 1 + 19 11 10 1 30 15 14 1 + 11 6 0 1 15 6 0 1 + 11 18 6 1 15 23 6 1 + 13 11 0 1 17 15 0 1 + 11 19 18 1 15 30 23 1 + 13 12 11 1 17 16 15 1 + 19 17 18 1 30 22 23 1 + 0 2 14 1 0 2 18 1 + 6 18 20 1 6 23 28 1 + 6 20 9 1 6 28 13 1 + 6 9 1 1 6 13 1 1 + 7 8 9 1 10 12 13 1 + 2 8 5 1 2 12 11 1 + 1 8 2 1 1 12 2 1 + 14 2 4 1 31 32 4 1 + 4 2 5 1 4 32 5 1 + 4 3 14 1 4 3 31 1 + 14 13 0 1 18 17 0 1 + 13 3 7 1 17 8 7 1 + 12 13 7 1 16 17 7 1 + tverts 33 + 0.706379 0.801998 0 + 0.427631 0.811641 0 + 0.469851 0.980396 0 + 0.762573 0.974217 0 + 0.758973 0.938545 0 + 0.715103 0.942321 0 + 0.471748 0.661155 0 + 0.979958 0.780991 0 + 0.840606 0.980396 0 + 0.964472 0.976771 0 + 0.015253 0.797518 0 + 0.015253 0.980396 0 + 0.246584 0.818089 0 + 0.246135 0.603571 0 + 0.691904 0.0146418 0 + 0.731847 0.384871 0 + 0.985649 0.0230111 0 + 0.8498 0.732235 0 + 0.658431 0.980396 0 + 0.127031 0.0146418 0 + 0.015253 0.0146418 0 + 0.122767 0.455658 0 + 0.254524 0.0126599 0 + 0.457652 0.281756 0 + 0.416789 0.0970362 0 + 0.416542 0.0714821 0 + 0.47294 0.0721456 0 + 0.472628 0.0973213 0 + 0.245127 0.51157 0 + 0.92376 0.0955084 0 + 0.499964 0.0138144 0 + 0.831422 0.934674 0 + 0.757573 0.904639 0 +endnode +node trimesh lforearm_g + parent lbicep_g + position -0.081367 -0.0621729 -0.807606 + orientation -1.0 0.0 0.0 -0.22771 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.2544 2.29429 -31.2411 + bitmap c_Marilit2fa + verts 16 + -0.0681509 0.0182222 -0.0842439 + 0.023979 -0.0101991 0.055169 + 0.0197018 0.0184596 0.0553524 + -0.0197406 -0.0716273 -0.0336437 + 0.107375 0.0367514 0.026931 + 0.0936112 -0.0301065 -0.202902 + 0.00847755 0.0872589 -0.0625544 + -0.0897965 0.0519371 -0.239238 + -0.102287 0.117513 -0.647912 + -0.0364544 0.105666 -0.649085 + -0.0725241 0.0512969 -0.680175 + -0.094569 -0.00377117 -0.652356 + -0.0257726 -0.00477345 -0.655827 + 0.101004 0.0470781 -0.199971 + -0.0168915 0.114952 -0.220949 + -0.0832458 0.00347146 -0.234263 + faces 28 + 0 1 2 1 0 1 2 1 + 3 4 1 1 3 4 1 1 + 3 5 4 1 5 6 7 1 + 6 7 0 1 8 9 10 1 + 8 9 10 1 11 12 13 1 + 8 10 11 1 11 13 14 1 + 11 10 12 1 14 13 15 1 + 12 10 9 1 15 13 12 1 + 4 6 2 1 16 17 2 1 + 13 14 6 1 18 19 8 1 + 6 0 2 1 17 0 2 1 + 0 15 3 1 10 20 5 1 + 7 8 11 1 9 21 22 1 + 11 12 3 1 22 23 5 1 + 4 13 6 1 24 18 8 1 + 0 3 1 1 0 3 1 1 + 1 4 2 1 25 26 27 1 + 14 9 8 1 19 28 21 1 + 6 14 7 1 8 19 9 1 + 15 7 11 1 20 9 22 1 + 11 3 15 1 22 5 20 1 + 13 5 9 1 18 29 28 1 + 5 13 4 1 29 18 24 1 + 5 12 9 1 29 30 28 1 + 13 9 14 1 18 28 19 1 + 12 5 3 1 23 6 5 1 + 14 8 7 1 19 21 9 1 + 0 7 15 1 10 9 20 1 + tverts 31 + 0.540403 0.910581 0 + 0.639261 0.988851 0 + 0.273524 0.99403 0 + 0.818857 0.940127 0 + 0.988656 0.973631 0 + 0.818655 0.940208 0 + 0.987444 0.646272 0 + 0.987203 0.972761 0 + 0.307847 0.93944 0 + 0.537145 0.605926 0 + 0.540411 0.90921 0 + 0.152216 0.0926122 0 + 0.183022 0.092366 0 + 0.166603 0.0709773 0 + 0.152132 0.0493724 0 + 0.182844 0.0494121 0 + 0.0140807 0.971362 0 + 0.307651 0.940574 0 + 0.146925 0.64082 0 + 0.326942 0.617916 0 + 0.589782 0.602906 0 + 0.444531 0.035104 0 + 0.684228 0.0298909 0 + 0.986295 0.040729 0 + 0.0136801 0.972217 0 + 0.0796389 0.896324 0 + 0.0698193 0.925089 0 + 0.0627417 0.894112 0 + 0.293168 0.040729 0 + 0.0136801 0.646654 0 + 0.0136801 0.040729 0 +endnode +node trimesh lhand_g + parent lforearm_g + position -0.0666772 0.0783807 -0.605282 + orientation 0.991818 -0.00570279 0.127529 -0.359894 + wirecolor 0.109804 0.109804 0.109804 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 10 + center 3.19302 3.04375 -22.4178 + bitmap c_Marilit2n + verts 48 + -0.0137709 0.11277 -0.117319 + 0.00919182 -0.0477154 -0.0468899 + -0.0211839 -0.0452387 -0.0275396 + -0.0249661 0.00216 -0.0120178 + -0.012701 0.0401153 -0.244035 + 0.0457522 0.0807537 -0.11636 + -0.0420906 -0.0795248 -0.212354 + -0.0144573 0.105055 -0.213366 + -0.0499742 0.00869013 -0.360281 + 0.038284 -0.0740937 -0.299163 + -0.0547751 0.0865095 -0.2318 + -0.0603945 0.00829952 -0.232139 + -0.05349 0.0910752 -0.32066 + -0.0207419 -0.0281122 -0.237006 + -0.00556212 -0.0994328 -0.258771 + -0.0238239 -0.0872543 -0.28949 + -0.00884792 0.0284688 -0.35042 + -0.00243392 -0.0656373 -0.281223 + 0.041001 -0.00641437 -0.38937 + -0.00625614 -0.0118249 -0.339477 + -0.0246608 0.107805 -0.324563 + -0.0183786 0.0782372 -0.330464 + 0.0184261 0.124318 -0.410772 + -0.00509023 0.103653 -0.426536 + 0.0260311 0.0852977 -0.415625 + 0.0363096 0.0715891 -0.0421367 + 0.0831735 0.161182 -0.135255 + 0.0861516 0.122324 -0.139687 + 0.0629047 0.138606 -0.148769 + 0.103147 0.15476 -0.222662 + 0.104432 0.107793 -0.202505 + 0.0624529 0.127611 -0.212726 + 0.0341494 0.00554579 -0.428538 + 0.0391636 -0.0904035 -0.326696 + 0.0816546 0.105674 -0.436338 + 0.0340272 -0.100501 -0.297933 + 0.0393792 0.0221009 -0.394751 + -0.0100855 -0.0929286 -0.193658 + 0.127896 0.0129628 -0.388388 + 0.114547 0.161376 -0.297456 + 0.0905376 -0.0953724 -0.294551 + -0.0640355 0.0118736 -0.18885 + -0.0239523 -0.0165627 -0.248996 + -0.0106039 0.0283784 -0.250604 + -0.0259844 0.0576941 -0.260924 + -0.0146406 -0.0464177 -0.241289 + 0.0374175 -0.0116948 -0.0439446 + 0.00922642 0.0457547 -0.0289185 + faces 89 + 18 19 8 1 58 59 48 1 + 31 30 27 1 71 70 67 1 + 23 22 34 1 80 78 104 1 + 35 9 14 32 32 14 16 1 + 10 7 12 1 65 53 77 1 + 28 31 27 1 68 71 67 1 + 11 4 43 1 66 50 98 1 + 35 15 33 1 75 55 73 1 + 12 22 23 1 52 62 63 1 + 7 4 44 32 13 11 43 1 + 16 43 19 32 17 41 20 1 + 21 24 20 32 22 24 21 1 + 12 20 22 1 52 60 62 1 + 36 18 38 32 35 19 37 1 + 16 36 8 1 56 76 48 1 + 3 41 2 1 46 96 42 1 + 38 32 36 1 106 102 105 1 + 40 33 9 1 107 103 74 1 + 37 1 2 1 36 10 31 1 + 8 36 32 1 48 76 72 1 + 32 38 18 1 3 7 0 1 + 44 10 12 1 99 65 77 1 + 19 18 16 32 20 19 17 1 + 21 44 12 1 89 99 77 1 + 40 35 33 1 8 6 4 1 + 33 15 17 1 73 55 57 1 + 14 15 35 1 82 84 94 1 + 7 0 5 1 47 9 45 1 + 24 21 12 1 64 61 52 1 + 7 5 4 32 13 12 11 1 + 27 25 5 32 27 25 12 1 + 11 10 4 1 66 65 50 1 + 15 6 45 1 84 51 100 1 + 24 22 20 32 24 23 21 1 + 26 29 28 64 91 93 92 1 + 17 9 33 1 57 49 73 1 + 0 10 41 1 33 65 96 1 + 35 40 9 32 32 39 14 1 + 37 15 14 1 95 84 82 1 + 20 44 21 32 21 43 22 1 + 43 16 8 1 83 56 48 1 + 26 0 25 64 91 33 90 1 + 12 7 20 1 52 47 87 1 + 29 27 30 32 28 27 29 1 + 13 4 5 32 15 11 12 1 + 18 36 16 32 19 35 17 1 + 45 13 37 32 44 15 36 1 + 8 32 18 1 48 72 25 1 + 25 27 26 32 25 27 26 1 + 24 23 34 1 2 1 5 1 + 4 13 42 32 11 15 40 1 + 13 11 42 1 81 66 97 1 + 14 9 17 32 16 36 86 1 + 24 12 23 1 64 52 63 1 + 34 22 24 32 30 23 24 1 + 28 27 5 1 68 67 45 1 + 11 8 42 1 66 54 97 1 + 5 0 28 1 45 9 68 1 + 39 31 29 64 110 109 38 1 + 31 39 30 1 71 79 70 1 + 26 27 29 32 26 27 28 1 + 26 28 0 64 91 92 33 1 + 25 0 47 65 90 33 101 1 + 29 31 28 64 69 71 68 1 + 37 13 5 32 36 15 12 1 + 37 14 45 32 36 16 44 1 + 10 0 7 1 65 33 53 1 + 37 5 46 32 36 12 10 1 + 3 0 41 1 46 33 96 1 + 41 10 11 1 96 65 66 1 + 6 11 13 1 51 66 81 1 + 41 6 2 1 96 51 42 1 + 1 37 46 32 10 12 25 1 + 39 29 30 32 110 38 108 1 + 41 11 6 1 96 66 51 1 + 13 45 6 1 81 100 51 1 + 37 6 15 1 95 51 84 1 + 6 37 2 1 51 95 42 1 + 42 8 19 1 97 54 88 1 + 43 42 19 32 41 40 20 1 + 11 43 8 1 66 98 54 1 + 43 4 42 32 41 11 40 1 + 20 7 44 32 21 13 43 1 + 44 4 10 1 99 50 65 1 + 17 45 14 32 18 44 16 1 + 15 45 17 1 55 85 57 1 + 46 5 25 32 86 12 25 1 + 47 0 3 65 101 33 46 1 + 25 47 46 0 25 34 10 0 + tverts 111 + 0.894784 0.0919939 0 + 0.890056 0.0765572 0 + 0.920368 0.0973675 0 + 0.888899 0.0502677 0 + 0.914549 0.0676432 0 + 0.979843 0.0710089 0 + 0.908238 0.0984561 0 + 0.986456 0.0872165 0 + 0.96711 0.101665 0 + 0.13145 0.858247 0 + 0.582654 0.996561 0 + 0.750005 0.560035 0 + 0.810216 0.79339 0 + 0.849169 0.654735 0 + 0.587736 0.345546 0 + 0.623225 0.557757 0 + 0.516175 0.462222 0 + 0.752996 0.354604 0 + 0.589038 0.433465 0 + 0.708823 0.174232 0 + 0.667041 0.356844 0 + 0.893256 0.425331 0 + 0.832293 0.396879 0 + 0.935194 0.278852 0 + 0.878409 0.257594 0 + 0.839296 0.922782 0 + 0.948297 0.780304 0 + 0.885275 0.762742 0 + 0.958908 0.630581 0 + 0.876816 0.651145 0 + 0.959588 0.142428 0 + 0.489333 0.918095 0 + 0.534583 0.343022 0 + 0.760127 0.627118 0 + 0.303642 0.989732 0 + 0.768482 0.175881 0 + 0.500608 0.642717 0 + 0.760356 0.0313209 0 + 0.915749 0.15779 0 + 0.568081 0.242453 0 + 0.633968 0.535215 0 + 0.733464 0.537151 0 + 0.357202 0.981037 0 + 0.766898 0.543589 0 + 0.604743 0.533624 0 + 0.111728 0.778911 0 + 0.503483 0.998679 0 + 0.137283 0.600786 0 + 0.329175 0.3575 0 + 0.453384 0.338688 0 + 0.480293 0.308542 0 + 0.162481 0.483592 0 + 0.157775 0.389718 0 + 0.684858 0.358008 0 + 0.336933 0.0123362 0 + 0.476189 0.455838 0 + 0.281741 0.326493 0 + 0.436156 0.430645 0 + 0.362627 0.178686 0 + 0.366659 0.33691 0 + 0.120007 0.388493 0 + 0.190762 0.365553 0 + 0.100507 0.261886 0 + 0.145077 0.265371 0 + 0.177177 0.245225 0 + 0.63378 0.33453 0 + 0.410117 0.382828 0 + 0.0886802 0.758366 0 + 0.0622704 0.763267 0 + 0.0301831 0.616203 0 + 0.112478 0.644797 0 + 0.0757429 0.662931 0 + 0.337157 0.168343 0 + 0.485388 0.331623 0 + 0.927997 0.137593 0 + 0.514746 0.343952 0 + 0.298182 0.174311 0 + 0.597248 0.0777012 0 + 0.976141 0.153638 0 + 0.0175125 0.490214 0 + 0.99438 0.128991 0 + 0.290217 0.372977 0 + 0.0680367 0.346727 0 + 0.265609 0.527348 0 + 0.0917568 0.25997 0 + 0.403097 0.550801 0 + 0.714775 0.958579 0 + 0.201065 0.958842 0 + 0.275782 0.0644056 0 + 0.543909 0.0417042 0 + 0.667641 0.843844 0 + 0.859414 0.503657 0 + 0.793216 0.487659 0 + 0.786226 0.249188 0 + 0.0309173 0.217931 0 + 0.124286 0.530635 0 + 0.44555 0.505825 0 + 0.317827 0.333301 0 + 0.442198 0.29588 0 + 0.525684 0.255789 0 + 0.233228 0.368973 0 + 0.609006 0.90911 0 + 0.943835 0.0802147 0 + 0.924724 0.108368 0 + 0.915845 0.130071 0 + 0.941592 0.114837 0 + 0.859753 0.122571 0 + 0.877276 0.13461 0 + 0.882667 0.199062 0 + 0.956469 0.182876 0 + 0.903683 0.0376465 0 +endnode +node dummy lhand + parent lhand_g + position 0.00589455 0.0419351 -0.18402 + orientation -0.442568 -0.0439952 -0.895655 -0.33996 + wirecolor 0.768628 0.345098 0.882353 +endnode +node dummy lforearm + parent lhand_g + position -0.0421041 -0.105586 0.156548 + orientation -0.442568 -0.0439952 -0.895655 -0.33996 + wirecolor 0.768628 0.345098 0.882353 +endnode +node trimesh lbicep_g01 + parent lbicep_g + position 0.0360085 -0.0525479 0.0168837 + orientation 0.871292 -0.383189 -0.306622 -0.8043 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center -2.25636 -0.527949 -36.8445 + bitmap c_Marilit2bc + verts 21 + -0.0239704 0.124862 -0.0634346 + -0.112507 0.0500769 -0.066693 + -0.00484584 -0.0212057 0.0984839 + 0.0683889 -0.0316287 0.0776937 + 0.0181462 -0.0269492 0.109677 + -0.00853521 -0.11803 0.0362231 + -0.0956203 0.0370824 -0.218462 + -0.0259491 -0.119681 -0.139712 + -0.108378 -0.0970655 -0.0413154 + -0.0796117 -0.0854388 -0.29283 + -0.0624025 -0.0100239 -0.846567 + -0.0470493 0.0739847 -0.522294 + 0.0317384 -0.0237298 -0.786201 + 0.0414651 0.00664382 -0.130131 + 0.0120229 0.0826433 0.0670781 + -0.00490808 -0.0720798 -0.793961 + -0.0391371 -0.135421 -0.412983 + -0.0698715 -0.124341 -0.798798 + -0.113516 -0.0134787 -0.609515 + -0.11022 -0.0371098 -0.79716 + -0.109202 -0.0888573 -0.384869 + faces 38 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 6 1 0 1 6 1 0 1 + 7 3 5 1 7 8 9 1 + 7 5 8 1 10 11 12 1 + 1 9 8 1 1 13 12 1 + 10 11 12 1 14 15 16 1 + 13 14 3 1 17 18 8 1 + 15 12 16 1 19 20 21 1 + 16 12 7 1 21 20 10 1 + 17 16 18 1 22 21 23 1 + 10 15 17 2 24 25 26 1 + 10 17 19 2 24 26 27 1 + 7 9 16 1 10 13 21 1 + 18 16 20 1 23 21 28 1 + 20 16 9 1 28 21 13 1 + 17 15 16 1 22 19 21 1 + 10 12 15 2 14 16 29 1 + 19 11 10 1 30 15 14 1 + 11 6 0 1 15 6 0 1 + 11 18 6 1 15 23 6 1 + 13 11 0 1 17 15 0 1 + 11 19 18 1 15 30 23 1 + 13 12 11 1 17 16 15 1 + 19 17 18 1 30 22 23 1 + 0 2 14 1 0 2 18 1 + 6 18 20 1 6 23 28 1 + 6 20 9 1 6 28 13 1 + 6 9 1 1 6 13 1 1 + 7 8 9 1 10 12 13 1 + 2 8 5 1 2 12 11 1 + 1 8 2 1 1 12 2 1 + 14 2 4 1 31 32 4 1 + 4 2 5 1 4 32 5 1 + 4 3 14 1 4 3 31 1 + 14 13 0 1 18 17 0 1 + 13 3 7 1 17 8 7 1 + 12 13 7 1 16 17 7 1 + tverts 33 + 0.706379 0.801998 0 + 0.427631 0.811641 0 + 0.469851 0.980396 0 + 0.762573 0.974217 0 + 0.758973 0.938545 0 + 0.715103 0.942321 0 + 0.471748 0.661155 0 + 0.979958 0.780991 0 + 0.840606 0.980396 0 + 0.964472 0.976771 0 + 0.015253 0.797518 0 + 0.015253 0.980396 0 + 0.246584 0.818089 0 + 0.246135 0.603571 0 + 0.691904 0.0146418 0 + 0.731847 0.384871 0 + 0.985649 0.0230111 0 + 0.8498 0.732235 0 + 0.658431 0.980396 0 + 0.127031 0.0146418 0 + 0.015253 0.0146418 0 + 0.122767 0.455658 0 + 0.254524 0.0126599 0 + 0.457652 0.281756 0 + 0.416789 0.0970362 0 + 0.416542 0.0714821 0 + 0.47294 0.0721456 0 + 0.472628 0.0973213 0 + 0.245127 0.51157 0 + 0.92376 0.0955084 0 + 0.499964 0.0138144 0 + 0.831422 0.934674 0 + 0.757573 0.904639 0 +endnode +node trimesh lforearm_g01 + parent lbicep_g01 + position -0.0813662 -0.0621724 -0.807606 + orientation -0.871613 0.0796923 -0.483673 -1.14378 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.2544 2.29429 -31.2411 + bitmap c_Marilit2fa + verts 16 + -0.0681508 0.0182221 -0.0842439 + 0.023979 -0.0101991 0.055169 + 0.0197017 0.0184596 0.0553524 + -0.0197406 -0.0716273 -0.0336437 + 0.107375 0.0367514 0.026931 + 0.0936113 -0.0301065 -0.202902 + 0.00847757 0.0872589 -0.0625544 + -0.0897964 0.0519371 -0.239238 + -0.102287 0.117513 -0.647912 + -0.0364542 0.105666 -0.649085 + -0.0725239 0.0512969 -0.680175 + -0.0945689 -0.00377114 -0.652356 + -0.0257724 -0.00477342 -0.655827 + 0.101004 0.0470781 -0.199971 + -0.0168914 0.114952 -0.220949 + -0.0832458 0.00347147 -0.234263 + faces 28 + 0 1 2 1 0 1 2 1 + 3 4 1 1 3 4 1 1 + 3 5 4 1 5 6 7 1 + 6 7 0 1 8 9 10 1 + 8 9 10 1 11 12 13 1 + 8 10 11 1 11 13 14 1 + 11 10 12 1 14 13 15 1 + 12 10 9 1 15 13 12 1 + 4 6 2 1 16 17 2 1 + 13 14 6 1 18 19 8 1 + 6 0 2 1 17 0 2 1 + 0 15 3 1 10 20 5 1 + 7 8 11 1 9 21 22 1 + 11 12 3 1 22 23 5 1 + 4 13 6 1 24 18 8 1 + 0 3 1 1 0 3 1 1 + 1 4 2 1 25 26 27 1 + 14 9 8 1 19 28 21 1 + 6 14 7 1 8 19 9 1 + 15 7 11 1 20 9 22 1 + 11 3 15 1 22 5 20 1 + 13 5 9 1 18 29 28 1 + 5 13 4 1 29 18 24 1 + 5 12 9 1 29 30 28 1 + 13 9 14 1 18 28 19 1 + 12 5 3 1 23 6 5 1 + 14 8 7 1 19 21 9 1 + 0 7 15 1 10 9 20 1 + tverts 31 + 0.540403 0.910581 0 + 0.639261 0.988851 0 + 0.273524 0.99403 0 + 0.818857 0.940127 0 + 0.988656 0.973631 0 + 0.818655 0.940208 0 + 0.987444 0.646272 0 + 0.987203 0.972761 0 + 0.307847 0.93944 0 + 0.537145 0.605926 0 + 0.540411 0.90921 0 + 0.152216 0.0926122 0 + 0.183022 0.092366 0 + 0.166603 0.0709773 0 + 0.152132 0.0493724 0 + 0.182844 0.0494121 0 + 0.0140807 0.971362 0 + 0.307651 0.940574 0 + 0.146925 0.64082 0 + 0.326942 0.617916 0 + 0.589782 0.602906 0 + 0.444531 0.035104 0 + 0.684228 0.0298909 0 + 0.986295 0.040729 0 + 0.0136801 0.972217 0 + 0.0796389 0.896324 0 + 0.0698193 0.925089 0 + 0.0627417 0.894112 0 + 0.293168 0.040729 0 + 0.0136801 0.646654 0 + 0.0136801 0.040729 0 +endnode +node trimesh claw07 + parent lforearm_g01 + position -0.0589574 0.0234259 -0.629901 + orientation -0.496222 -0.364033 0.78819 -0.441483 + wirecolor 0.109804 0.109804 0.109804 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 10 + center 3.19308 3.04375 -22.4178 + bitmap c_Marilit2n + verts 48 + -0.0137709 0.11277 -0.117319 + 0.00919183 -0.0477154 -0.0468898 + -0.0211839 -0.0452387 -0.0275395 + -0.0249662 0.00216 -0.0120178 + -0.012701 0.0401153 -0.244035 + 0.0457523 0.0807537 -0.11636 + -0.0420906 -0.0795247 -0.212353 + -0.0144572 0.105055 -0.213366 + -0.0499741 0.00869014 -0.36028 + 0.0382841 -0.0740937 -0.299163 + -0.054775 0.0865095 -0.231799 + -0.0603945 0.00829952 -0.232138 + -0.05349 0.0910752 -0.320659 + -0.0207418 -0.0281122 -0.237006 + -0.00556208 -0.0994328 -0.258771 + -0.0238239 -0.0872542 -0.289489 + -0.00884786 0.0284688 -0.350419 + -0.00243387 -0.0656373 -0.281223 + 0.0410011 -0.00641436 -0.38937 + -0.00625609 -0.0118249 -0.339477 + -0.0246607 0.107805 -0.324562 + -0.0183786 0.0782372 -0.330463 + 0.0184262 0.124318 -0.410772 + -0.00509016 0.103653 -0.426535 + 0.0260312 0.0852977 -0.415624 + 0.0363096 0.0715892 -0.0421367 + 0.0831735 0.161183 -0.135255 + 0.0861516 0.122324 -0.139687 + 0.0629048 0.138606 -0.148769 + 0.103147 0.15476 -0.222661 + 0.104432 0.107793 -0.202505 + 0.062453 0.127611 -0.212725 + 0.0341495 0.0055458 -0.428538 + 0.0391637 -0.0904035 -0.326695 + 0.0816547 0.105674 -0.436338 + 0.0340272 -0.100501 -0.297933 + 0.0393793 0.0221009 -0.39475 + -0.0100855 -0.0929286 -0.193657 + 0.127897 0.0129628 -0.388387 + 0.114548 0.161376 -0.297456 + 0.0905377 -0.0953724 -0.29455 + -0.0640354 0.0118736 -0.18885 + -0.0239523 -0.0165627 -0.248995 + -0.0106039 0.0283784 -0.250603 + -0.0259843 0.0576941 -0.260923 + -0.0146405 -0.0464176 -0.241288 + 0.0374175 -0.0116948 -0.0439446 + 0.00922643 0.0457547 -0.0289185 + faces 89 + 18 19 8 1 58 59 48 1 + 31 30 27 1 71 70 67 1 + 23 22 34 1 80 78 104 1 + 35 9 14 32 32 14 16 1 + 10 7 12 1 65 53 77 1 + 28 31 27 1 68 71 67 1 + 11 4 43 1 66 50 98 1 + 35 15 33 1 75 55 73 1 + 12 22 23 1 52 62 63 1 + 7 4 44 32 13 11 43 1 + 16 43 19 32 17 41 20 1 + 21 24 20 32 22 24 21 1 + 12 20 22 1 52 60 62 1 + 36 18 38 32 35 19 37 1 + 16 36 8 1 56 76 48 1 + 3 41 2 1 46 96 42 1 + 38 32 36 1 106 102 105 1 + 40 33 9 1 107 103 74 1 + 37 1 2 1 36 10 31 1 + 8 36 32 1 48 76 72 1 + 32 38 18 1 3 7 0 1 + 44 10 12 1 99 65 77 1 + 19 18 16 32 20 19 17 1 + 21 44 12 1 89 99 77 1 + 40 35 33 1 8 6 4 1 + 33 15 17 1 73 55 57 1 + 14 15 35 1 82 84 94 1 + 7 0 5 1 47 9 45 1 + 24 21 12 1 64 61 52 1 + 7 5 4 32 13 12 11 1 + 27 25 5 32 27 25 12 1 + 11 10 4 1 66 65 50 1 + 15 6 45 1 84 51 100 1 + 24 22 20 32 24 23 21 1 + 26 29 28 64 91 93 92 1 + 17 9 33 1 57 49 73 1 + 0 10 41 1 33 65 96 1 + 35 40 9 32 32 39 14 1 + 37 15 14 1 95 84 82 1 + 20 44 21 32 21 43 22 1 + 43 16 8 1 83 56 48 1 + 26 0 25 64 91 33 90 1 + 12 7 20 1 52 47 87 1 + 29 27 30 32 28 27 29 1 + 13 4 5 32 15 11 12 1 + 18 36 16 32 19 35 17 1 + 45 13 37 32 44 15 36 1 + 8 32 18 1 48 72 25 1 + 25 27 26 32 25 27 26 1 + 24 23 34 1 2 1 5 1 + 4 13 42 32 11 15 40 1 + 13 11 42 1 81 66 97 1 + 14 9 17 32 16 36 86 1 + 24 12 23 1 64 52 63 1 + 34 22 24 32 30 23 24 1 + 28 27 5 1 68 67 45 1 + 11 8 42 1 66 54 97 1 + 5 0 28 1 45 9 68 1 + 39 31 29 64 110 109 38 1 + 31 39 30 1 71 79 70 1 + 26 27 29 32 26 27 28 1 + 26 28 0 64 91 92 33 1 + 25 0 47 65 90 33 101 1 + 29 31 28 64 69 71 68 1 + 37 13 5 32 36 15 12 1 + 37 14 45 32 36 16 44 1 + 10 0 7 1 65 33 53 1 + 37 5 46 32 36 12 10 1 + 3 0 41 1 46 33 96 1 + 41 10 11 1 96 65 66 1 + 6 11 13 1 51 66 81 1 + 41 6 2 1 96 51 42 1 + 1 37 46 32 10 12 25 1 + 39 29 30 32 110 38 108 1 + 41 11 6 1 96 66 51 1 + 13 45 6 1 81 100 51 1 + 37 6 15 1 95 51 84 1 + 6 37 2 1 51 95 42 1 + 42 8 19 1 97 54 88 1 + 43 42 19 32 41 40 20 1 + 11 43 8 1 66 98 54 1 + 43 4 42 32 41 11 40 1 + 20 7 44 32 21 13 43 1 + 44 4 10 1 99 50 65 1 + 17 45 14 32 18 44 16 1 + 15 45 17 1 55 85 57 1 + 46 5 25 32 86 12 25 1 + 47 0 3 65 101 33 46 1 + 25 47 46 0 25 34 10 0 + tverts 111 + 0.894784 0.0919939 0 + 0.890056 0.0765572 0 + 0.920368 0.0973675 0 + 0.888899 0.0502677 0 + 0.914549 0.0676432 0 + 0.979843 0.0710089 0 + 0.908238 0.0984561 0 + 0.986456 0.0872165 0 + 0.96711 0.101665 0 + 0.13145 0.858247 0 + 0.582654 0.996561 0 + 0.750005 0.560035 0 + 0.810216 0.79339 0 + 0.849169 0.654735 0 + 0.587736 0.345546 0 + 0.623225 0.557757 0 + 0.516175 0.462222 0 + 0.752996 0.354604 0 + 0.589038 0.433465 0 + 0.708823 0.174232 0 + 0.667041 0.356844 0 + 0.893256 0.425331 0 + 0.832293 0.396879 0 + 0.935194 0.278852 0 + 0.878409 0.257594 0 + 0.839296 0.922782 0 + 0.948297 0.780304 0 + 0.885275 0.762742 0 + 0.958908 0.630581 0 + 0.876816 0.651145 0 + 0.959588 0.142428 0 + 0.489333 0.918095 0 + 0.534583 0.343022 0 + 0.760127 0.627118 0 + 0.303642 0.989732 0 + 0.768482 0.175881 0 + 0.500608 0.642717 0 + 0.760356 0.0313209 0 + 0.915749 0.15779 0 + 0.568081 0.242453 0 + 0.633968 0.535215 0 + 0.733464 0.537151 0 + 0.357202 0.981037 0 + 0.766898 0.543589 0 + 0.604743 0.533624 0 + 0.111728 0.778911 0 + 0.503483 0.998679 0 + 0.137283 0.600786 0 + 0.329175 0.3575 0 + 0.453384 0.338688 0 + 0.480293 0.308542 0 + 0.162481 0.483592 0 + 0.157775 0.389718 0 + 0.684858 0.358008 0 + 0.336933 0.0123362 0 + 0.476189 0.455838 0 + 0.281741 0.326493 0 + 0.436156 0.430645 0 + 0.362627 0.178686 0 + 0.366659 0.33691 0 + 0.120007 0.388493 0 + 0.190762 0.365553 0 + 0.100507 0.261886 0 + 0.145077 0.265371 0 + 0.177177 0.245225 0 + 0.63378 0.33453 0 + 0.410117 0.382828 0 + 0.0886802 0.758366 0 + 0.0622704 0.763267 0 + 0.0301831 0.616203 0 + 0.112478 0.644797 0 + 0.0757429 0.662931 0 + 0.337157 0.168343 0 + 0.485388 0.331623 0 + 0.927997 0.137593 0 + 0.514746 0.343952 0 + 0.298182 0.174311 0 + 0.597248 0.0777012 0 + 0.976141 0.153638 0 + 0.0175125 0.490214 0 + 0.99438 0.128991 0 + 0.290217 0.372977 0 + 0.0680367 0.346727 0 + 0.265609 0.527348 0 + 0.0917568 0.25997 0 + 0.403097 0.550801 0 + 0.714775 0.958579 0 + 0.201065 0.958842 0 + 0.275782 0.0644056 0 + 0.543909 0.0417042 0 + 0.667641 0.843844 0 + 0.859414 0.503657 0 + 0.793216 0.487659 0 + 0.786226 0.249188 0 + 0.0309173 0.217931 0 + 0.124286 0.530635 0 + 0.44555 0.505825 0 + 0.317827 0.333301 0 + 0.442198 0.29588 0 + 0.525684 0.255789 0 + 0.233228 0.368973 0 + 0.609006 0.90911 0 + 0.943835 0.0802147 0 + 0.924724 0.108368 0 + 0.915845 0.130071 0 + 0.941592 0.114837 0 + 0.859753 0.122571 0 + 0.877276 0.13461 0 + 0.882667 0.199062 0 + 0.956469 0.182876 0 + 0.903683 0.0376465 0 +endnode +node trimesh g_WSwSc_b_15 + parent claw07 + position 0.0512204 -0.199403 -0.078183 + orientation 0.862712 0.491841 -0.117561 -0.667841 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.045 0.045 0.045 + shininess 26 + center 0.04565 23.9744 2.96308 + bitmap W_metal_tex + verts 17 + 0.000456494 0.296232 0.00296515 + 0.000456528 0.439326 -0.0442674 + 0.0446785 0.439614 -4.5516e-005 + 0.0421233 0.303466 0.0439989 + -0.0412104 0.303466 0.0439989 + 0.000456486 0.310701 0.0850329 + 0.000456518 0.439326 0.0441765 + -0.0437655 0.439614 -4.54872e-005 + 0.0405209 0.154974 0.0640735 + 0.000456487 0.161929 0.0246177 + -0.0396078 0.154974 0.0640735 + 0.000456478 0.148016 0.103529 + 0.038253 0.0818475 0.00583255 + 0.000456492 0.103527 -0.0251286 + 0.000456485 0.0601681 0.0367938 + -0.0373399 0.0818475 0.00583258 + 0.000456487 0.0398734 -0.0235579 + faces 28 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 4 5 6 1 4 5 6 1 + 6 7 4 1 6 7 4 1 + 3 2 6 1 8 9 6 4 + 6 5 3 1 6 5 8 4 + 1 0 4 1 1 0 4 3 + 4 7 1 1 4 7 1 3 + 0 3 8 1 0 3 10 5 + 8 9 0 1 10 11 0 5 + 5 4 10 1 5 4 12 5 + 10 11 5 1 12 13 5 5 + 3 5 11 1 8 5 13 5 + 11 8 3 1 13 14 8 5 + 4 0 9 1 4 0 11 5 + 9 10 4 1 11 12 4 5 + 9 8 12 1 11 10 15 5 + 12 13 9 1 15 16 11 5 + 8 11 14 1 14 13 17 5 + 14 12 8 1 17 18 14 5 + 11 10 15 1 13 12 19 5 + 15 14 11 1 19 17 13 5 + 10 9 13 1 12 11 16 5 + 13 15 10 1 16 19 12 5 + 13 12 16 2 20 21 22 5 + 12 14 16 2 21 23 22 5 + 14 15 16 2 23 21 22 5 + 15 13 16 2 21 20 22 5 + tverts 24 + 0.076014 0.410662 0 + 0.0760139 0.472588 0 + 0.0415826 0.472731 0 + 0.0115727 0.41423 0 + 0.140455 0.41423 0 + 0.175578 0.417799 0 + 0.175579 0.472588 0 + 0.110445 0.472731 0 + 0.210702 0.41423 0 + 0.240712 0.472731 0 + 0.00688148 0.338272 0 + 0.0760141 0.341704 0 + 0.145146 0.338272 0 + 0.175578 0.334841 0 + 0.206011 0.338272 0 + 0.0409523 0.296707 0 + 0.076014 0.304586 0 + 0.175578 0.288828 0 + 0.240081 0.296707 0 + 0.111076 0.296707 0 + 0.0725556 0.697127 0 + 0.159728 0.652506 0 + 0.10462 0.522781 0 + 0.246901 0.607886 0 +endnode +node trimesh g_WSwSc_m_25 + parent g_WSwSc_b_15 + position 0.000403458 0.239257 -4.56953e-005 + orientation 0.802765 -0.531794 -0.269749 -1.02374e-006 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.045 0.045 0.045 + shininess 26 + center -0.100665 6.35435 -0.0693007 + bitmap W_metal_tex + verts 17 + 0.0519107 0.199438 0.107283 + -0.00100658 0.327224 0.21456 + -0.053924 0.199438 0.107283 + 0.0268179 -0.142577 -0.0942721 + -0.0288309 -0.142577 -0.0942722 + -0.00100658 -0.200137 -0.0558233 + 0.0519107 0.19998 -0.105419 + -0.053924 0.19998 -0.105419 + 0.0471002 0.150706 -0.170929 + -0.0491132 0.150706 -0.170929 + 0.0401103 0.0108559 -0.175468 + -0.0421233 0.0108559 -0.175468 + -0.00100658 0.247674 0.0463271 + -0.00100659 0.281554 -0.178903 + -0.00100659 0.18532 -0.212536 + -0.00100658 -0.0039833 -0.215946 + -0.00100657 -0.178179 -0.108385 + faces 30 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 2 + 0 2 6 2 6 7 8 5 + 7 6 2 2 9 8 7 5 + 6 7 8 2 8 9 10 5 + 9 8 7 2 11 10 9 5 + 8 9 10 2 10 11 12 5 + 11 10 9 2 13 12 11 5 + 10 11 3 2 12 13 14 5 + 4 3 11 2 15 14 13 5 + 12 0 13 4 16 6 17 4 + 6 13 0 4 8 17 6 4 + 13 6 14 4 17 8 18 4 + 8 14 6 4 10 18 8 4 + 14 8 15 4 18 10 19 4 + 10 15 8 4 12 19 10 4 + 15 10 16 4 19 12 20 4 + 3 16 10 4 14 20 12 4 + 16 3 5 4 20 14 5 4 + 2 12 7 4 7 16 9 3 + 13 7 12 4 17 9 16 3 + 7 13 9 4 9 17 11 3 + 14 9 13 4 18 11 17 3 + 9 14 11 4 11 18 13 3 + 15 11 14 4 19 13 18 3 + 11 15 4 4 13 19 15 3 + 16 4 15 4 20 15 19 3 + 5 4 16 4 5 4 20 3 + 0 12 1 4 0 1 21 1 + 2 1 12 4 2 1 21 1 + tverts 22 + 0.0297893 0.532896 0 + 0.0415299 0.619614 0 + 0.0297893 0.706333 0 + 0.23173 0.573018 0 + 0.23173 0.664567 0 + 0.238488 0.618792 0 + 0.0303787 0.532074 0 + 0.0303787 0.705511 0 + 0.0994503 0.532074 0 + 0.0994503 0.705511 0 + 0.120812 0.539957 0 + 0.120812 0.697628 0 + 0.178317 0.551412 0 + 0.178317 0.686173 0 + 0.208109 0.560201 0 + 0.208109 0.677384 0 + 0.0421193 0.618792 0 + 0.0979803 0.618792 0 + 0.124745 0.618792 0 + 0.175611 0.618792 0 + 0.21019 0.618792 0 + 0.0415299 0.619614 0 +endnode +node trimesh g_WSwSc_t_15 + parent g_WSwSc_b_15 + position -0.000292578 0.718093 -0.0239292 + orientation 0.802765 -0.531794 -0.269749 -1.02374e-006 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.045 0.045 0.045 + shininess 26 + center 0.090585 37.144 -5.08863 + bitmap W_metal_tex + verts 17 + -0.0133998 0.189768 0.00462687 + -0.0133998 -0.25083 0.0559143 + 0.0152114 0.189768 0.00462688 + 0.0152115 -0.25083 0.0559143 + -0.0133998 0.510783 -0.0335887 + 0.0152115 0.510783 -0.0335887 + -0.0133998 0.74332 -0.0224782 + 0.0152114 0.74332 -0.0224782 + 0.000905833 0.995542 0.0284283 + 0.0152115 -0.252663 -0.0543096 + -0.0133998 -0.252663 -0.0543096 + 0.000905804 -0.206932 -0.0213047 + 0.000905804 -0.140411 -0.0543096 + 0.000905801 0.189768 -0.09558 + 0.000905827 0.454416 -0.146703 + 0.000905826 0.704641 -0.157687 + 0.000905829 0.879778 -0.0900506 + faces 30 + 0 1 2 1 0 1 2 1 + 3 2 1 1 1 0 3 1 + 4 0 5 1 4 0 5 1 + 2 5 0 1 0 4 2 1 + 6 4 7 1 6 4 7 1 + 5 7 4 1 4 6 5 1 + 7 8 6 1 6 8 7 1 + 9 10 11 1 9 10 11 2 + 3 1 9 2 1 3 9 5 + 10 9 1 2 9 10 1 5 + 9 11 3 4 9 11 1 4 + 11 12 3 4 11 12 1 4 + 2 3 13 4 0 1 13 4 + 12 13 3 4 12 13 1 4 + 5 2 14 4 4 0 14 4 + 13 14 2 4 13 14 0 4 + 7 5 15 4 6 4 15 4 + 14 15 5 4 14 15 4 4 + 8 7 16 4 8 6 16 4 + 15 16 7 4 15 16 6 4 + 6 8 15 8 6 8 15 3 + 16 15 8 8 16 15 8 3 + 4 6 14 8 4 6 14 3 + 15 14 6 8 15 14 6 3 + 0 4 13 8 0 4 13 3 + 14 13 4 8 14 13 4 3 + 1 0 12 8 1 0 12 3 + 13 12 0 8 13 12 0 3 + 12 11 1 8 12 11 1 3 + 11 10 1 8 11 9 1 3 + tverts 17 + 0.0747846 0.839272 0 + 0.0266073 0.761898 0 + 0.0747846 0.839272 0 + 0.0266073 0.761898 0 + 0.0941997 0.895646 0 + 0.0941997 0.895646 0 + 0.0847334 0.937311 0 + 0.0847334 0.937311 0 + 0.0266073 0.980775 0 + 0.135204 0.761576 0 + 0.135204 0.761576 0 + 0.102687 0.770806 0 + 0.135204 0.781289 0 + 0.212323 0.839272 0 + 0.245806 0.895646 0 + 0.232796 0.937311 0 + 0.138644 0.967238 0 +endnode +node trimesh lbicep_g02 + parent lbicep_g + position 0.123652 -0.0945094 0.000586902 + orientation -0.240275 -0.572044 -0.784241 -1.44453 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center -2.25636 -0.527949 -36.8445 + bitmap c_Marilit2bc + verts 21 + -0.0239704 0.124862 -0.0634346 + -0.112507 0.0500769 -0.066693 + -0.00484583 -0.0212057 0.0984839 + 0.0683889 -0.0316287 0.0776937 + 0.0181463 -0.0269492 0.109677 + -0.00853521 -0.11803 0.0362231 + -0.0956204 0.0370824 -0.218462 + -0.0259491 -0.119681 -0.139712 + -0.108378 -0.0970655 -0.0413154 + -0.0796118 -0.0854388 -0.29283 + -0.0624027 -0.0100239 -0.846567 + -0.0470494 0.0739847 -0.522294 + 0.0317382 -0.0237298 -0.786201 + 0.0414651 0.00664382 -0.130131 + 0.012023 0.0826433 0.0670781 + -0.00490822 -0.0720798 -0.793961 + -0.0391372 -0.135421 -0.412983 + -0.0698716 -0.124341 -0.798798 + -0.113516 -0.0134787 -0.609515 + -0.110221 -0.0371098 -0.79716 + -0.109202 -0.0888573 -0.384869 + faces 38 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 6 1 0 1 6 1 0 1 + 7 3 5 1 7 8 9 1 + 7 5 8 1 10 11 12 1 + 1 9 8 1 1 13 12 1 + 10 11 12 1 14 15 16 1 + 13 14 3 1 17 18 8 1 + 15 12 16 1 19 20 21 1 + 16 12 7 1 21 20 10 1 + 17 16 18 1 22 21 23 1 + 10 15 17 2 24 25 26 1 + 10 17 19 2 24 26 27 1 + 7 9 16 1 10 13 21 1 + 18 16 20 1 23 21 28 1 + 20 16 9 1 28 21 13 1 + 17 15 16 1 22 19 21 1 + 10 12 15 2 14 16 29 1 + 19 11 10 1 30 15 14 1 + 11 6 0 1 15 6 0 1 + 11 18 6 1 15 23 6 1 + 13 11 0 1 17 15 0 1 + 11 19 18 1 15 30 23 1 + 13 12 11 1 17 16 15 1 + 19 17 18 1 30 22 23 1 + 0 2 14 1 0 2 18 1 + 6 18 20 1 6 23 28 1 + 6 20 9 1 6 28 13 1 + 6 9 1 1 6 13 1 1 + 7 8 9 1 10 12 13 1 + 2 8 5 1 2 12 11 1 + 1 8 2 1 1 12 2 1 + 14 2 4 1 31 32 4 1 + 4 2 5 1 4 32 5 1 + 4 3 14 1 4 3 31 1 + 14 13 0 1 18 17 0 1 + 13 3 7 1 17 8 7 1 + 12 13 7 1 16 17 7 1 + tverts 33 + 0.706379 0.801998 0 + 0.427631 0.811641 0 + 0.469851 0.980396 0 + 0.762573 0.974217 0 + 0.758973 0.938545 0 + 0.715103 0.942321 0 + 0.471748 0.661155 0 + 0.979958 0.780991 0 + 0.840606 0.980396 0 + 0.964472 0.976771 0 + 0.015253 0.797518 0 + 0.015253 0.980396 0 + 0.246584 0.818089 0 + 0.246135 0.603571 0 + 0.691904 0.0146418 0 + 0.731847 0.384871 0 + 0.985649 0.0230111 0 + 0.8498 0.732235 0 + 0.658431 0.980396 0 + 0.127031 0.0146418 0 + 0.015253 0.0146418 0 + 0.122767 0.455658 0 + 0.254524 0.0126599 0 + 0.457652 0.281756 0 + 0.416789 0.0970362 0 + 0.416542 0.0714821 0 + 0.47294 0.0721456 0 + 0.472628 0.0973213 0 + 0.245127 0.51157 0 + 0.92376 0.0955084 0 + 0.499964 0.0138144 0 + 0.831422 0.934674 0 + 0.757573 0.904639 0 +endnode +node trimesh lforearm_g02 + parent lbicep_g02 + position -0.081367 -0.062173 -0.807606 + orientation -0.757422 0.28224 0.588772 -0.908619 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.25435 2.29429 -31.2411 + bitmap c_Marilit2fa + verts 16 + -0.0681509 0.0182221 -0.084244 + 0.023979 -0.0101991 0.055169 + 0.0197018 0.0184596 0.0553524 + -0.0197406 -0.0716273 -0.0336437 + 0.107375 0.0367514 0.026931 + 0.0936112 -0.0301065 -0.202902 + 0.00847754 0.0872589 -0.0625544 + -0.0897965 0.0519371 -0.239238 + -0.102288 0.117513 -0.647912 + -0.0364545 0.105666 -0.649085 + -0.0725242 0.0512969 -0.680175 + -0.0945691 -0.00377113 -0.652356 + -0.0257727 -0.0047734 -0.655827 + 0.101004 0.0470781 -0.199971 + -0.0168915 0.114952 -0.220949 + -0.0832458 0.00347147 -0.234263 + faces 28 + 0 1 2 1 0 1 2 1 + 3 4 1 1 3 4 1 1 + 3 5 4 1 5 6 7 1 + 6 7 0 1 8 9 10 1 + 8 9 10 1 11 12 13 1 + 8 10 11 1 11 13 14 1 + 11 10 12 1 14 13 15 1 + 12 10 9 1 15 13 12 1 + 4 6 2 1 16 17 2 1 + 13 14 6 1 18 19 8 1 + 6 0 2 1 17 0 2 1 + 0 15 3 1 10 20 5 1 + 7 8 11 1 9 21 22 1 + 11 12 3 1 22 23 5 1 + 4 13 6 1 24 18 8 1 + 0 3 1 1 0 3 1 1 + 1 4 2 1 25 26 27 1 + 14 9 8 1 19 28 21 1 + 6 14 7 1 8 19 9 1 + 15 7 11 1 20 9 22 1 + 11 3 15 1 22 5 20 1 + 13 5 9 1 18 29 28 1 + 5 13 4 1 29 18 24 1 + 5 12 9 1 29 30 28 1 + 13 9 14 1 18 28 19 1 + 12 5 3 1 23 6 5 1 + 14 8 7 1 19 21 9 1 + 0 7 15 1 10 9 20 1 + tverts 31 + 0.540403 0.910581 0 + 0.639261 0.988851 0 + 0.273524 0.99403 0 + 0.818857 0.940127 0 + 0.988656 0.973631 0 + 0.818655 0.940208 0 + 0.987444 0.646272 0 + 0.987203 0.972761 0 + 0.307847 0.93944 0 + 0.537145 0.605926 0 + 0.540411 0.90921 0 + 0.152216 0.0926122 0 + 0.183022 0.092366 0 + 0.166603 0.0709773 0 + 0.152132 0.0493724 0 + 0.182844 0.0494121 0 + 0.0140807 0.971362 0 + 0.307651 0.940574 0 + 0.146925 0.64082 0 + 0.326942 0.617916 0 + 0.589782 0.602906 0 + 0.444531 0.035104 0 + 0.684228 0.0298909 0 + 0.986295 0.040729 0 + 0.0136801 0.972217 0 + 0.0796389 0.896324 0 + 0.0698193 0.925089 0 + 0.0627417 0.894112 0 + 0.293168 0.040729 0 + 0.0136801 0.646654 0 + 0.0136801 0.040729 0 +endnode +node trimesh claw08 + parent lforearm_g02 + position -0.0737712 0.0432233 -0.618798 + orientation -0.879359 0.446902 -0.164336 -0.333488 + wirecolor 0.109804 0.109804 0.109804 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 10 + center 3.19302 3.04375 -22.4178 + bitmap c_Marilit2n + verts 48 + -0.0137709 0.11277 -0.117319 + 0.00919178 -0.0477154 -0.0468899 + -0.0211839 -0.0452387 -0.0275396 + -0.0249661 0.00215999 -0.0120178 + -0.0127011 0.0401152 -0.244035 + 0.0457522 0.0807537 -0.11636 + -0.0420907 -0.0795248 -0.212354 + -0.0144573 0.105055 -0.213366 + -0.0499742 0.00869008 -0.360281 + 0.0382839 -0.0740937 -0.299163 + -0.054775 0.0865095 -0.2318 + -0.0603945 0.00829947 -0.232139 + -0.05349 0.0910752 -0.32066 + -0.0207419 -0.0281123 -0.237006 + -0.00556222 -0.0994328 -0.258771 + -0.023824 -0.0872543 -0.28949 + -0.00884799 0.0284688 -0.35042 + -0.00243401 -0.0656373 -0.281223 + 0.0410009 -0.00641439 -0.38937 + -0.00625623 -0.011825 -0.339477 + -0.0246608 0.107805 -0.324563 + -0.0183786 0.0782371 -0.330464 + 0.0184261 0.124318 -0.410772 + -0.00509028 0.103653 -0.426536 + 0.0260311 0.0852976 -0.415625 + 0.0363096 0.0715892 -0.0421367 + 0.0831735 0.161183 -0.135255 + 0.0861516 0.122324 -0.139687 + 0.0629047 0.138606 -0.148769 + 0.103147 0.15476 -0.222662 + 0.104432 0.107793 -0.202505 + 0.0624529 0.127611 -0.212726 + 0.0341493 0.00554576 -0.428538 + 0.0391635 -0.0904035 -0.326696 + 0.0816545 0.105674 -0.436338 + 0.0340271 -0.100501 -0.297933 + 0.0393791 0.0221008 -0.394751 + -0.0100856 -0.0929286 -0.193658 + 0.127896 0.0129628 -0.388388 + 0.114547 0.161376 -0.297456 + 0.0905374 -0.0953724 -0.294551 + -0.0640355 0.0118735 -0.18885 + -0.0239524 -0.0165627 -0.248996 + -0.010604 0.0283783 -0.250604 + -0.0259844 0.057694 -0.260924 + -0.0146406 -0.0464177 -0.241289 + 0.0374175 -0.0116948 -0.0439446 + 0.00922643 0.0457546 -0.0289185 + faces 89 + 18 19 8 1 58 59 48 1 + 31 30 27 1 71 70 67 1 + 23 22 34 1 80 78 104 1 + 35 9 14 32 32 14 16 1 + 10 7 12 1 65 53 77 1 + 28 31 27 1 68 71 67 1 + 11 4 43 1 66 50 98 1 + 35 15 33 1 75 55 73 1 + 12 22 23 1 52 62 63 1 + 7 4 44 32 13 11 43 1 + 16 43 19 32 17 41 20 1 + 21 24 20 32 22 24 21 1 + 12 20 22 1 52 60 62 1 + 36 18 38 32 35 19 37 1 + 16 36 8 1 56 76 48 1 + 3 41 2 1 46 96 42 1 + 38 32 36 1 106 102 105 1 + 40 33 9 1 107 103 74 1 + 37 1 2 1 36 10 31 1 + 8 36 32 1 48 76 72 1 + 32 38 18 1 3 7 0 1 + 44 10 12 1 99 65 77 1 + 19 18 16 32 20 19 17 1 + 21 44 12 1 89 99 77 1 + 40 35 33 1 8 6 4 1 + 33 15 17 1 73 55 57 1 + 14 15 35 1 82 84 94 1 + 7 0 5 1 47 9 45 1 + 24 21 12 1 64 61 52 1 + 7 5 4 32 13 12 11 1 + 27 25 5 32 27 25 12 1 + 11 10 4 1 66 65 50 1 + 15 6 45 1 84 51 100 1 + 24 22 20 32 24 23 21 1 + 26 29 28 64 91 93 92 1 + 17 9 33 1 57 49 73 1 + 0 10 41 1 33 65 96 1 + 35 40 9 32 32 39 14 1 + 37 15 14 1 95 84 82 1 + 20 44 21 32 21 43 22 1 + 43 16 8 1 83 56 48 1 + 26 0 25 64 91 33 90 1 + 12 7 20 1 52 47 87 1 + 29 27 30 32 28 27 29 1 + 13 4 5 32 15 11 12 1 + 18 36 16 32 19 35 17 1 + 45 13 37 32 44 15 36 1 + 8 32 18 1 48 72 25 1 + 25 27 26 32 25 27 26 1 + 24 23 34 1 2 1 5 1 + 4 13 42 32 11 15 40 1 + 13 11 42 1 81 66 97 1 + 14 9 17 32 16 36 86 1 + 24 12 23 1 64 52 63 1 + 34 22 24 32 30 23 24 1 + 28 27 5 1 68 67 45 1 + 11 8 42 1 66 54 97 1 + 5 0 28 1 45 9 68 1 + 39 31 29 64 110 109 38 1 + 31 39 30 1 71 79 70 1 + 26 27 29 32 26 27 28 1 + 26 28 0 64 91 92 33 1 + 25 0 47 65 90 33 101 1 + 29 31 28 64 69 71 68 1 + 37 13 5 32 36 15 12 1 + 37 14 45 32 36 16 44 1 + 10 0 7 1 65 33 53 1 + 37 5 46 32 36 12 10 1 + 3 0 41 1 46 33 96 1 + 41 10 11 1 96 65 66 1 + 6 11 13 1 51 66 81 1 + 41 6 2 1 96 51 42 1 + 1 37 46 32 10 12 25 1 + 39 29 30 32 110 38 108 1 + 41 11 6 1 96 66 51 1 + 13 45 6 1 81 100 51 1 + 37 6 15 1 95 51 84 1 + 6 37 2 1 51 95 42 1 + 42 8 19 1 97 54 88 1 + 43 42 19 32 41 40 20 1 + 11 43 8 1 66 98 54 1 + 43 4 42 32 41 11 40 1 + 20 7 44 32 21 13 43 1 + 44 4 10 1 99 50 65 1 + 17 45 14 32 18 44 16 1 + 15 45 17 1 55 85 57 1 + 46 5 25 32 86 12 25 1 + 47 0 3 65 101 33 46 1 + 25 47 46 0 25 34 10 0 + tverts 111 + 0.894784 0.0919939 0 + 0.890056 0.0765572 0 + 0.920368 0.0973675 0 + 0.888899 0.0502677 0 + 0.914549 0.0676432 0 + 0.979843 0.0710089 0 + 0.908238 0.0984561 0 + 0.986456 0.0872165 0 + 0.96711 0.101665 0 + 0.13145 0.858247 0 + 0.582654 0.996561 0 + 0.750005 0.560035 0 + 0.810216 0.79339 0 + 0.849169 0.654735 0 + 0.587736 0.345546 0 + 0.623225 0.557757 0 + 0.516175 0.462222 0 + 0.752996 0.354604 0 + 0.589038 0.433465 0 + 0.708823 0.174232 0 + 0.667041 0.356844 0 + 0.893256 0.425331 0 + 0.832293 0.396879 0 + 0.935194 0.278852 0 + 0.878409 0.257594 0 + 0.839296 0.922782 0 + 0.948297 0.780304 0 + 0.885275 0.762742 0 + 0.958908 0.630581 0 + 0.876816 0.651145 0 + 0.959588 0.142428 0 + 0.489333 0.918095 0 + 0.534583 0.343022 0 + 0.760127 0.627118 0 + 0.303642 0.989732 0 + 0.768482 0.175881 0 + 0.500608 0.642717 0 + 0.760356 0.0313209 0 + 0.915749 0.15779 0 + 0.568081 0.242453 0 + 0.633968 0.535215 0 + 0.733464 0.537151 0 + 0.357202 0.981037 0 + 0.766898 0.543589 0 + 0.604743 0.533624 0 + 0.111728 0.778911 0 + 0.503483 0.998679 0 + 0.137283 0.600786 0 + 0.329175 0.3575 0 + 0.453384 0.338688 0 + 0.480293 0.308542 0 + 0.162481 0.483592 0 + 0.157775 0.389718 0 + 0.684858 0.358008 0 + 0.336933 0.0123362 0 + 0.476189 0.455838 0 + 0.281741 0.326493 0 + 0.436156 0.430645 0 + 0.362627 0.178686 0 + 0.366659 0.33691 0 + 0.120007 0.388493 0 + 0.190762 0.365553 0 + 0.100507 0.261886 0 + 0.145077 0.265371 0 + 0.177177 0.245225 0 + 0.63378 0.33453 0 + 0.410117 0.382828 0 + 0.0886802 0.758366 0 + 0.0622704 0.763267 0 + 0.0301831 0.616203 0 + 0.112478 0.644797 0 + 0.0757429 0.662931 0 + 0.337157 0.168343 0 + 0.485388 0.331623 0 + 0.927997 0.137593 0 + 0.514746 0.343952 0 + 0.298182 0.174311 0 + 0.597248 0.0777012 0 + 0.976141 0.153638 0 + 0.0175125 0.490214 0 + 0.99438 0.128991 0 + 0.290217 0.372977 0 + 0.0680367 0.346727 0 + 0.265609 0.527348 0 + 0.0917568 0.25997 0 + 0.403097 0.550801 0 + 0.714775 0.958579 0 + 0.201065 0.958842 0 + 0.275782 0.0644056 0 + 0.543909 0.0417042 0 + 0.667641 0.843844 0 + 0.859414 0.503657 0 + 0.793216 0.487659 0 + 0.786226 0.249188 0 + 0.0309173 0.217931 0 + 0.124286 0.530635 0 + 0.44555 0.505825 0 + 0.317827 0.333301 0 + 0.442198 0.29588 0 + 0.525684 0.255789 0 + 0.233228 0.368973 0 + 0.609006 0.90911 0 + 0.943835 0.0802147 0 + 0.924724 0.108368 0 + 0.915845 0.130071 0 + 0.941592 0.114837 0 + 0.859753 0.122571 0 + 0.877276 0.13461 0 + 0.882667 0.199062 0 + 0.956469 0.182876 0 + 0.903683 0.0376465 0 +endnode +node trimesh g_WSwSc_b_14 + parent claw08 + position 0.0977867 -0.258321 -0.116697 + orientation 0.410437 0.826018 -0.38631 -0.687967 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.045 0.045 0.045 + shininess 26 + center 0.0476301 25.0042 3.09035 + bitmap W_metal_tex + verts 17 + 0.000476162 0.308955 0.00309241 + 0.000476202 0.458196 -0.0461689 + 0.0465977 0.458497 -4.75914e-005 + 0.0439327 0.316501 0.0458889 + -0.0429803 0.316501 0.0458888 + 0.000476201 0.324046 0.0886854 + 0.000476238 0.458196 0.0460739 + -0.0456451 0.458497 -4.76185e-005 + 0.0422614 0.161629 0.0668256 + 0.000476139 0.168885 0.025675 + -0.041309 0.161629 0.0668256 + 0.00047617 0.154374 0.107976 + 0.0398961 0.0853631 0.00608308 + 0.000476106 0.107973 -0.0262079 + 0.000476123 0.0627525 0.0383742 + -0.0389437 0.085363 0.00608305 + 0.00047609 0.0415861 -0.0245699 + faces 28 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 4 5 6 1 4 5 6 1 + 6 7 4 1 6 7 4 1 + 3 2 6 1 8 9 6 4 + 6 5 3 1 6 5 8 4 + 1 0 4 1 1 0 4 3 + 4 7 1 1 4 7 1 3 + 0 3 8 1 0 3 10 5 + 8 9 0 1 10 11 0 5 + 5 4 10 1 5 4 12 5 + 10 11 5 1 12 13 5 5 + 3 5 11 1 8 5 13 5 + 11 8 3 1 13 14 8 5 + 4 0 9 1 4 0 11 5 + 9 10 4 1 11 12 4 5 + 9 8 12 1 11 10 15 5 + 12 13 9 1 15 16 11 5 + 8 11 14 1 14 13 17 5 + 14 12 8 1 17 18 14 5 + 11 10 15 1 13 12 19 5 + 15 14 11 1 19 17 13 5 + 10 9 13 1 12 11 16 5 + 13 15 10 1 16 19 12 5 + 13 12 16 2 20 21 22 5 + 12 14 16 2 21 23 22 5 + 14 15 16 2 23 21 22 5 + 15 13 16 2 21 20 22 5 + tverts 24 + 0.076014 0.410662 0 + 0.0760139 0.472588 0 + 0.0415826 0.472731 0 + 0.0115727 0.41423 0 + 0.140455 0.41423 0 + 0.175578 0.417799 0 + 0.175579 0.472588 0 + 0.110445 0.472731 0 + 0.210702 0.41423 0 + 0.240712 0.472731 0 + 0.00688148 0.338272 0 + 0.0760141 0.341704 0 + 0.145146 0.338272 0 + 0.175578 0.334841 0 + 0.206011 0.338272 0 + 0.0409523 0.296707 0 + 0.076014 0.304586 0 + 0.175578 0.288828 0 + 0.240081 0.296707 0 + 0.111076 0.296707 0 + 0.0725556 0.697127 0 + 0.159728 0.652506 0 + 0.10462 0.522781 0 + 0.246901 0.607886 0 +endnode +node trimesh g_WSwSc_t_14 + parent g_WSwSc_b_14 + position -0.000305753 0.748939 -0.0249571 + orientation 0.873353 0.21743 0.435867 -3.09715e-007 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.045 0.045 0.045 + shininess 26 + center 0.09448 38.7393 -5.3073 + bitmap W_metal_tex + verts 17 + -0.0139753 0.197919 0.00482559 + -0.0139754 -0.261604 0.058316 + 0.0158648 0.197919 0.00482559 + 0.0158647 -0.261604 0.058316 + -0.0139752 0.532722 -0.0350314 + 0.0158651 0.532722 -0.0350314 + -0.0139751 0.775248 -0.0234439 + 0.0158651 0.775248 -0.0234439 + 0.000945121 1.0383 0.0296491 + 0.0158647 -0.263515 -0.0566423 + -0.0139755 -0.263515 -0.0566423 + 0.000944633 -0.21582 -0.0222198 + 0.000944656 -0.146442 -0.0566423 + 0.000944782 0.197919 -0.0996855 + 0.00094491 0.473934 -0.153005 + 0.000945006 0.734908 -0.164462 + 0.000945074 0.917566 -0.0939187 + faces 30 + 0 1 2 1 0 1 2 1 + 3 2 1 1 1 0 3 1 + 4 0 5 1 4 0 5 1 + 2 5 0 1 0 4 2 1 + 6 4 7 1 6 4 7 1 + 5 7 4 1 4 6 5 1 + 7 8 6 1 6 8 7 1 + 9 10 11 1 9 10 11 2 + 3 1 9 2 1 3 9 5 + 10 9 1 2 9 10 1 5 + 9 11 3 4 9 11 1 4 + 11 12 3 4 11 12 1 4 + 2 3 13 4 0 1 13 4 + 12 13 3 4 12 13 1 4 + 5 2 14 4 4 0 14 4 + 13 14 2 4 13 14 0 4 + 7 5 15 4 6 4 15 4 + 14 15 5 4 14 15 4 4 + 8 7 16 4 8 6 16 4 + 15 16 7 4 15 16 6 4 + 6 8 15 8 6 8 15 3 + 16 15 8 8 16 15 8 3 + 4 6 14 8 4 6 14 3 + 15 14 6 8 15 14 6 3 + 0 4 13 8 0 4 13 3 + 14 13 4 8 14 13 4 3 + 1 0 12 8 1 0 12 3 + 13 12 0 8 13 12 0 3 + 12 11 1 8 12 11 1 3 + 11 10 1 8 11 9 1 3 + tverts 17 + 0.0747846 0.839272 0 + 0.0266073 0.761898 0 + 0.0747846 0.839272 0 + 0.0266073 0.761898 0 + 0.0941997 0.895646 0 + 0.0941997 0.895646 0 + 0.0847334 0.937311 0 + 0.0847334 0.937311 0 + 0.0266073 0.980775 0 + 0.135204 0.761576 0 + 0.135204 0.761576 0 + 0.102687 0.770806 0 + 0.135204 0.781289 0 + 0.212323 0.839272 0 + 0.245806 0.895646 0 + 0.232796 0.937311 0 + 0.138644 0.967238 0 +endnode +node trimesh g_WSwSc_m_24 + parent g_WSwSc_b_14 + position 0.0004199 0.249534 -4.77442e-005 + orientation 0.873353 0.21743 0.435867 -3.09715e-007 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.045 0.045 0.045 + shininess 26 + center -0.10498 6.6272 -0.0723009 + bitmap W_metal_tex + verts 17 + 0.0541404 0.208005 0.111891 + -0.00104969 0.341278 0.223776 + -0.05624 0.208005 0.111891 + 0.0279697 -0.148701 -0.0983215 + -0.0300693 -0.148701 -0.0983215 + -0.00104989 -0.208734 -0.0582211 + 0.0541404 0.20857 -0.109947 + -0.05624 0.20857 -0.109947 + 0.0491232 0.157179 -0.178271 + -0.0512227 0.157179 -0.178271 + 0.041833 0.0113222 -0.183005 + -0.0439326 0.0113222 -0.183005 + -0.00104972 0.258313 0.048317 + -0.00104971 0.293649 -0.186588 + -0.00104975 0.193281 -0.221666 + -0.00104981 -0.0041544 -0.225222 + -0.00104988 -0.185832 -0.113041 + faces 30 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 2 + 0 2 6 2 6 7 8 5 + 7 6 2 2 9 8 7 5 + 6 7 8 2 8 9 10 5 + 9 8 7 2 11 10 9 5 + 8 9 10 2 10 11 12 5 + 11 10 9 2 13 12 11 5 + 10 11 3 2 12 13 14 5 + 4 3 11 2 15 14 13 5 + 12 0 13 4 16 6 17 4 + 6 13 0 4 8 17 6 4 + 13 6 14 4 17 8 18 4 + 8 14 6 4 10 18 8 4 + 14 8 15 4 18 10 19 4 + 10 15 8 4 12 19 10 4 + 15 10 16 4 19 12 20 4 + 3 16 10 4 14 20 12 4 + 16 3 5 4 20 14 5 4 + 2 12 7 4 7 16 9 3 + 13 7 12 4 17 9 16 3 + 7 13 9 4 9 17 11 3 + 14 9 13 4 18 11 17 3 + 9 14 11 4 11 18 13 3 + 15 11 14 4 19 13 18 3 + 11 15 4 4 13 19 15 3 + 16 4 15 4 20 15 19 3 + 5 4 16 4 5 4 20 3 + 0 12 1 4 0 1 21 1 + 2 1 12 4 2 1 21 1 + tverts 22 + 0.0297893 0.532896 0 + 0.0415299 0.619614 0 + 0.0297893 0.706333 0 + 0.23173 0.573018 0 + 0.23173 0.664567 0 + 0.238488 0.618792 0 + 0.0303787 0.532074 0 + 0.0303787 0.705511 0 + 0.0994503 0.532074 0 + 0.0994503 0.705511 0 + 0.120812 0.539957 0 + 0.120812 0.697628 0 + 0.178317 0.551412 0 + 0.178317 0.686173 0 + 0.208109 0.560201 0 + 0.208109 0.677384 0 + 0.0421193 0.618792 0 + 0.0979803 0.618792 0 + 0.124745 0.618792 0 + 0.175611 0.618792 0 + 0.21019 0.618792 0 + 0.0415299 0.619614 0 +endnode +node trimesh neck_g + parent torso_g + position -0.00275735 -0.114711 0.883222 + orientation -0.367656 0.706268 -0.604992 -0.0964704 + wirecolor 0.576471 0.694118 0.101961 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.2489 -0.0285001 8.6537 + bitmap c_Marilit2hd + verts 10 + 0.00248914 0.0114069 -0.124152 + -0.129872 -0.00339081 -0.00373684 + 0.00248915 0.133821 -0.000230029 + 0.00248913 -0.134391 0.0102851 + -0.0880003 0.0246122 0.243042 + 0.00248915 0.113686 0.177865 + 0.00248913 -0.0888723 0.212812 + 0.00248915 0.0155313 0.297226 + 0.13485 -0.00339083 -0.00373684 + 0.0929789 0.0246122 0.243042 + faces 16 + 0 1 2 1 8 9 10 2 + 0 3 1 1 0 2 1 2 + 2 4 5 1 14 16 17 2 + 2 1 4 1 14 11 16 2 + 1 6 4 1 1 4 3 2 + 1 3 6 1 1 2 4 2 + 7 5 4 1 18 17 16 2 + 7 4 6 1 5 3 4 2 + 8 0 2 1 15 12 13 2 + 3 0 8 1 2 0 6 2 + 9 2 5 1 20 14 17 2 + 8 2 9 1 19 14 20 2 + 6 8 9 1 4 6 7 2 + 3 8 6 1 2 6 4 2 + 5 7 9 1 17 18 20 2 + 9 7 6 1 7 5 4 2 + tverts 21 + 0.201576 0.00567636 0 + 0.133656 0.0653991 0 + 0.201576 0.0615267 0 + 0.155142 0.19268 0 + 0.201576 0.167872 0 + 0.201576 0.219352 0 + 0.269497 0.0653991 0 + 0.248011 0.19268 0 + 0.215748 0.0126437 0 + 0.214379 0.197426 0 + 0.00335756 0.259754 0 + 0.268187 0.0281865 0 + 0.778968 0.016651 0 + 0.987353 0.255764 0 + 0.197823 0.00657101 0 + 0.780333 0.201433 0 + 0.245928 0.147682 0 + 0.197823 0.0996838 0 + 0.197823 0.176515 0 + 0.127459 0.0281865 0 + 0.149718 0.147682 0 +endnode +node danglymesh head_g + parent neck_g + position 0.0163117 0.00251429 0.0371286 + orientation -0.10063 -0.353439 0.930029 -0.165239 + wirecolor 0.831373 0.603922 0.894118 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 10 + center 0.0 0.0 0.0 + period 8.0 + tightness 3.0 + displacement 0.03 + showdispl true + displtype 1 + center 0.0 0.0 0.0 + bitmap c_Marilit2hd + verts 726 + -0.147757 0.19015 0.498502 + -0.180281 0.17985 0.457342 + -0.0905969 0.209594 0.528213 + -0.103773 0.15745 0.10382 + -0.122194 0.0999715 0.131804 + -0.0834268 0.0979984 0.101127 + -0.0694732 0.115877 0.0899567 + -0.0277397 0.148273 0.0728796 + -0.0650966 0.236939 0.0750427 + -0.0427144 -0.0572814 0.143139 + -0.0668166 -0.0335006 0.147243 + -0.0513766 0.135733 0.0847964 + -0.19908 0.0946778 0.351037 + -0.197129 0.0872836 0.310808 + -0.193457 0.156466 0.287962 + -0.19584 0.0827966 0.301526 + -0.190698 0.0763133 0.279828 + -0.192293 0.152706 0.258585 + -0.199601 0.110013 0.40137 + -0.178881 0.0648715 0.250234 + -0.129071 -0.0232497 0.206086 + -0.139869 0.0257521 0.190648 + -0.157589 0.0521682 0.189728 + -0.169526 0.0658155 0.208131 + -0.202104 0.154111 0.317994 + -0.177641 0.144646 0.224273 + -0.103527 -0.0635178 0.201909 + -0.0564106 -0.107796 0.189228 + -0.0875614 0.0297947 0.153121 + -0.180185 0.182578 0.317814 + -0.166727 0.20474 0.292234 + -0.0829508 0.252251 0.327824 + -0.0762704 0.250841 0.314507 + -0.0715982 0.255082 0.31526 + -0.0773178 0.252193 0.331924 + -0.157108 0.203705 0.204131 + -0.168855 0.207128 0.247484 + -0.0985253 0.268751 0.197364 + -0.0795251 0.285443 0.241542 + -0.112938 0.26822 0.228492 + -0.115071 0.254693 0.192696 + -0.177804 0.217772 0.408117 + -0.192373 0.170421 0.371962 + -0.179204 0.221101 0.365515 + -0.125119 0.220753 0.165324 + -0.152367 0.180376 0.180368 + -0.125588 0.175812 0.14102 + -0.0924554 0.23449 0.124005 + -0.138276 0.236245 0.203271 + -0.133248 0.252723 0.242253 + -0.12041 0.24732 0.304882 + -0.122635 0.244276 0.312907 + -0.146216 0.227823 0.319444 + -0.151415 0.224143 0.310448 + -0.137288 0.254649 0.387805 + -0.146606 0.245711 0.436023 + -0.0868421 0.26547 0.442879 + -0.0960139 0.217926 0.101106 + -0.119188 0.162526 0.11868 + -0.0882131 0.203655 0.0904718 + -0.065652 0.269631 0.0876041 + -0.181708 0.191799 0.340196 + -0.199183 0.157347 0.345494 + -0.125515 0.244241 0.336419 + -0.122477 0.246814 0.344161 + -0.102287 0.251027 0.334423 + -0.0982173 0.252237 0.327407 + -0.0658356 0.292822 0.262376 + -0.0666182 0.286583 0.286461 + -0.0962439 0.276396 0.265638 + -0.126483 0.246343 0.279735 + -0.155189 0.219523 0.329706 + -0.142853 0.230575 0.337154 + -0.148402 0.224188 0.332505 + -0.162213 0.21286 0.334615 + -0.0671586 0.274979 0.107073 + -0.0887411 0.0045083 0.150885 + -0.120659 0.197075 0.327396 + -0.124887 0.242469 0.338573 + -0.140905 0.227782 0.334563 + -0.150543 0.22054 0.32987 + -0.153706 0.213895 0.328361 + -0.104032 0.246235 0.335941 + -0.0883495 0.248048 0.328366 + -0.080452 0.246534 0.316881 + -0.14304 0.226749 0.322488 + -0.119932 0.241966 0.314124 + -0.0950651 0.251073 0.311274 + -0.0860215 0.255732 0.305694 + -0.158607 0.212472 0.324343 + -0.165381 0.205699 0.324466 + -0.0950704 0.24708 0.314408 + -0.0802015 0.261923 0.299268 + -0.0576442 0.28233 0.125198 + -0.0913323 0.256172 0.142409 + -0.116389 0.243852 0.168649 + -0.0439103 0.299865 0.219132 + -0.0491789 0.301573 0.201871 + -0.0501215 0.296576 0.29635 + -0.0494261 0.30959 0.277556 + -0.0502856 0.28243 0.323582 + -0.05258 0.279828 0.335623 + -0.074563 0.280546 0.352704 + -0.0650368 0.268499 0.333326 + -0.0720425 0.258576 0.321654 + -0.0662431 0.259508 0.318796 + -0.0593205 0.274774 0.319801 + -0.0749999 0.288799 0.199264 + -0.0662281 0.293224 0.224942 + -0.0572277 0.337571 0.240807 + -0.0498378 0.330962 0.228504 + -0.0706891 0.301729 0.241479 + -0.0622725 0.308179 0.228128 + -0.0535255 0.334389 0.257072 + -0.0658369 0.306553 0.251331 + -0.0440285 0.319877 0.225592 + -0.0343356 0.304703 0.24592 + -0.0416999 0.324423 0.252158 + -0.0568927 0.308969 0.252069 + -0.0567837 0.288408 0.249763 + -0.0664363 0.294797 0.226845 + -0.0729402 0.287725 0.240924 + -0.0665352 0.293483 0.25465 + -0.0501045 0.319472 0.265973 + -0.135295 0.116904 0.136748 + -0.161623 0.130108 0.188306 + -0.153543 0.107746 0.162239 + -0.107116 0.257521 0.165921 + -0.0800584 0.276518 0.146102 + -0.0524626 0.286045 0.146664 + -0.078015 0.293772 0.17928 + -0.0507328 0.308942 0.189859 + -0.0800985 0.280186 0.150856 + -0.0549823 0.291701 0.149502 + -0.165367 0.102713 0.209394 + -0.0952234 0.261658 0.328377 + -0.126882 0.246601 0.389445 + -0.156147 0.232301 0.340117 + -0.169793 0.213762 0.342941 + -0.173022 0.200649 0.322902 + -0.157168 0.216424 0.304303 + -0.119094 0.24985 0.296147 + -0.0777702 0.295769 0.174621 + -0.0507725 0.311913 0.185553 + -0.0808142 0.281746 0.155958 + -0.0963613 0.271669 0.164534 + -0.0558444 0.293722 0.167871 + -0.0558476 0.297709 0.158699 + -0.0790984 0.275645 0.163744 + -0.052138 0.287512 0.169643 + -0.0824404 0.28205 0.163564 + -0.0771749 0.297251 0.167423 + -0.0503561 0.311307 0.174944 + -0.0282035 0.289909 0.127114 + -0.0350401 0.292646 0.309211 + -0.0381867 0.283051 0.338216 + -0.0389594 0.286119 0.348721 + -0.0411879 0.27291 0.438934 + -0.0354492 0.342067 0.227574 + -0.0363483 0.346567 0.243022 + -0.0344758 0.326532 0.22243 + -0.0362908 0.324634 0.2681 + 0.0646847 0.200927 0.50566 + 0.102881 0.185799 0.471667 + 0.00712615 0.214525 0.532232 + 0.0630597 0.16816 0.100519 + 0.090524 0.105678 0.129029 + 0.0511849 0.103504 0.0929858 + 0.0355906 0.122341 0.0873196 + -0.00798786 0.149494 0.0723526 + -0.0178416 0.152939 0.0673425 + -0.0232939 0.250747 0.0670196 + 0.0191278 0.241664 0.0742685 + -0.011334 -0.0544184 0.142055 + 0.0205179 -0.0531917 0.133447 + 0.0477219 -0.0237658 0.106769 + 0.0158436 0.13988 0.0830459 + 0.13498 0.111751 0.363604 + 0.138203 0.104015 0.333326 + 0.12856 0.173684 0.297191 + 0.141917 0.100428 0.312011 + 0.139314 0.0937614 0.288747 + 0.130427 0.171013 0.265783 + 0.130573 0.12663 0.416289 + 0.133651 0.0814928 0.256719 + 0.0896838 -0.0125612 0.210334 + 0.0977727 0.0361968 0.192316 + 0.114589 0.0636883 0.190831 + 0.126475 0.0807102 0.210828 + 0.129997 0.171307 0.329153 + 0.121307 0.167117 0.228049 + 0.0670067 -0.0572275 0.206951 + 0.0320759 -0.103204 0.192137 + 0.0531986 0.0355778 0.141736 + 0.105407 0.200617 0.327997 + 0.094845 0.217488 0.304756 + 0.0118748 0.257256 0.328475 + 0.00672791 0.255092 0.317473 + 0.00158944 0.258834 0.317777 + 0.00603198 0.256601 0.33226 + 0.0978753 0.219847 0.207403 + 0.104332 0.222293 0.253688 + 0.0369396 0.276066 0.19979 + 0.00874709 0.290109 0.243649 + 0.0472612 0.276626 0.232184 + 0.0549746 0.263963 0.195241 + 0.0833192 0.230934 0.419146 + 0.11741 0.185969 0.387226 + 0.0893565 0.234654 0.377317 + 0.0688319 0.231646 0.16329 + 0.0977429 0.202305 0.180978 + 0.0801238 0.194129 0.139381 + 0.04794 0.2427 0.123924 + 0.0781448 0.248198 0.20655 + 0.0689485 0.263411 0.247233 + 0.0502411 0.254601 0.311099 + 0.0512159 0.253071 0.319471 + 0.0701995 0.238964 0.327837 + 0.0730059 0.229927 0.327149 + 0.0481353 0.262857 0.398379 + 0.0521963 0.255875 0.441981 + 0.00403353 0.269407 0.450111 + 0.0540269 0.226639 0.100934 + 0.0749139 0.17867 0.11586 + 0.0437498 0.211259 0.0884805 + -0.0258031 0.286589 0.0769376 + 0.0149607 0.274094 0.0876733 + 0.104607 0.207773 0.348701 + 0.124701 0.173832 0.359104 + 0.0503548 0.25393 0.339481 + 0.0476201 0.256296 0.346208 + 0.0284385 0.257309 0.340949 + 0.0245559 0.257693 0.336763 + -0.00315107 0.296068 0.264482 + -0.00386787 0.289661 0.288766 + 0.0279434 0.282886 0.268289 + 0.0591211 0.255917 0.285521 + 0.0799024 0.231461 0.338958 + 0.0673496 0.241289 0.345236 + 0.0724853 0.235433 0.341271 + 0.0861014 0.225554 0.343985 + -0.0271172 0.290606 0.101783 + 0.014195 0.279529 0.107412 + 0.0565875 0.010854 0.140311 + -0.0125969 -0.0970278 0.190236 + 0.0523974 0.205967 0.33352 + 0.0505457 0.252218 0.341026 + 0.0662898 0.238354 0.342455 + 0.0757649 0.232209 0.338021 + 0.0787356 0.226381 0.334664 + 0.0320478 0.254137 0.33562 + 0.01738 0.253603 0.329443 + 0.0110638 0.251232 0.319962 + 0.0680631 0.238091 0.328474 + 0.0482901 0.250358 0.321332 + 0.0246517 0.256923 0.316893 + 0.0167049 0.260998 0.30946 + 0.0834227 0.224599 0.334636 + 0.0903339 0.219095 0.333811 + 0.0246807 0.252937 0.320008 + 0.01353 0.267873 0.302408 + 0.00214383 0.28568 0.125677 + 0.0363319 0.263384 0.143005 + 0.0565214 0.253875 0.170742 + -0.0325267 0.300351 0.210592 + -0.0219171 0.301028 0.219729 + -0.0154159 0.303373 0.202691 + -0.0364731 0.30201 0.299483 + -0.0221352 0.297884 0.29744 + -0.0225268 0.310965 0.278562 + -0.0363439 0.314521 0.281464 + -0.0229016 0.283962 0.323953 + -0.0218622 0.28116 0.33705 + -0.000389402 0.283911 0.35367 + -0.00936811 0.268838 0.337432 + 0.000228618 0.261289 0.336573 + -0.00451394 0.262391 0.321145 + -0.0131932 0.274911 0.321772 + 0.0119348 0.293467 0.201175 + 0.000726248 0.296759 0.226794 + -0.0145081 0.339765 0.242353 + -0.020227 0.332495 0.229499 + 0.0027736 0.305557 0.243813 + -0.00526075 0.311162 0.22986 + -0.019253 0.336141 0.258363 + -0.00343469 0.309783 0.253446 + -0.0366604 0.340017 0.258263 + -0.0245044 0.320895 0.226206 + -0.0296066 0.325045 0.25259 + -0.0129071 0.311244 0.25356 + -0.0106514 0.290819 0.251183 + 0.000428258 0.298322 0.228723 + 0.0065523 0.291895 0.243284 + -0.00166166 0.296854 0.256773 + -0.0218738 0.320918 0.267018 + 0.0950859 0.133003 0.13372 + 0.112454 0.166058 0.18719 + 0.106059 0.130279 0.160622 + 0.0451684 0.266468 0.167474 + 0.0213424 0.282116 0.147981 + -0.0293058 0.292635 0.148119 + -0.00513913 0.288634 0.147154 + 0.0153017 0.299701 0.17885 + -0.0135915 0.310925 0.190747 + -0.0319673 0.308652 0.196821 + 0.0205028 0.285584 0.15369 + -0.0299229 0.300429 0.152063 + -0.00350997 0.294481 0.150249 + 0.119705 0.120119 0.211614 + 0.0151209 0.269209 0.323105 + 0.0504615 0.262626 0.358178 + 0.0769146 0.243466 0.360918 + 0.091584 0.227069 0.353357 + 0.0981066 0.211647 0.330928 + 0.0783936 0.225308 0.322398 + 0.0505806 0.258584 0.302098 + 0.0154951 0.301453 0.175389 + -0.0134901 0.313903 0.186443 + -0.0318311 0.310256 0.183041 + 0.0206115 0.286234 0.166576 + 0.0370117 0.279026 0.166914 + -0.0304795 0.302664 0.161624 + -0.00481506 0.296497 0.168771 + -0.00435268 0.300505 0.159495 + 0.0179972 0.28048 0.169289 + -0.0300983 0.292902 0.165239 + -0.00798045 0.289924 0.170361 + -0.0304582 0.305942 0.157092 + 0.0208135 0.285942 0.178843 + 0.0158238 0.302494 0.170243 + -0.0128854 0.313318 0.175775 + -0.0313874 0.312176 0.170064 + -0.0428739 0.225861 0.538711 + -0.110675 -0.167207 0.268477 + -0.0574943 -0.178813 0.258464 + -0.163642 -0.135176 0.263628 + -0.195275 -0.0596692 0.324072 + -0.189688 -0.0236457 0.409617 + -0.145282 -0.104623 0.230631 + -0.166481 -0.0452401 0.24381 + -0.182583 -0.0612853 0.272652 + -0.193276 0.0731699 0.417714 + -0.257952 -0.0539776 0.352876 + -0.231982 -0.0194306 0.277772 + -0.212658 0.0122752 0.28229 + -0.213253 0.024808 0.297986 + -0.206182 0.0146534 0.266184 + -0.223613 -0.0170696 0.267919 + -0.206281 -0.00271764 0.241356 + -0.192364 0.021031 0.248839 + -0.204109 0.0581487 0.289798 + -0.194159 0.0677461 0.279917 + -0.192722 0.00127802 0.277201 + -0.211097 -0.0218732 0.285153 + -0.210308 -0.00158819 0.30873 + -0.199222 0.00878183 0.295377 + -0.188603 0.00124811 0.270145 + -0.172516 0.0110056 0.24243 + -0.18819 -0.0113904 0.238205 + -0.204583 -0.0242972 0.269303 + -0.169725 0.035189 0.202721 + -0.182012 0.0108619 0.205184 + -0.174559 0.0105998 0.207146 + -0.184538 0.0661848 0.248523 + -0.171265 0.0547541 0.224509 + -0.188 0.070261 0.265198 + -0.213494 0.0251431 0.333358 + -0.197714 0.0299873 0.295819 + -0.185843 0.0209605 0.228649 + -0.166139 0.0333962 0.200865 + -0.166604 0.0579577 0.197698 + -0.187463 0.0438996 0.248318 + -0.180768 0.0338595 0.218535 + -0.17629 0.0457279 0.225398 + -0.196554 0.0421893 0.263252 + -0.201267 0.0425431 0.276802 + -0.0847817 -0.119812 0.217825 + -0.0397547 -0.125483 0.211667 + -0.182533 0.0136073 0.218172 + -0.206262 0.042489 0.291626 + -0.250681 -0.0658997 0.371145 + -0.230973 -0.0387279 0.317516 + -0.225746 -0.0296351 0.268554 + -0.205503 -0.0167411 0.239672 + -0.012151 -0.130606 0.213099 + 0.0845887 -0.157356 0.276596 + 0.0338484 -0.174208 0.262277 + 0.13402 -0.120773 0.287152 + 0.155209 -0.0418548 0.337943 + 0.137493 -0.00714042 0.424564 + 0.116302 -0.0911681 0.239958 + 0.132652 -0.0295951 0.252921 + 0.146917 -0.0450301 0.296018 + 0.138138 0.0900716 0.432035 + 0.206267 -0.00806724 0.357968 + 0.194099 0.00535973 0.30248 + 0.166217 0.0342538 0.294912 + 0.167842 0.0445887 0.318701 + 0.164709 0.0341715 0.27677 + 0.186374 0.00447091 0.280415 + 0.169087 0.0172027 0.251004 + 0.152149 0.0393923 0.257263 + 0.155594 0.0762896 0.312246 + 0.146246 0.0857125 0.289304 + 0.150865 0.0185096 0.299558 + 0.172601 -0.00256553 0.309492 + 0.165854 0.0170857 0.333759 + 0.154809 0.0264269 0.31885 + 0.147926 0.0188734 0.280247 + 0.133845 0.0273724 0.249694 + 0.152031 0.00666696 0.246952 + 0.166542 -0.00496833 0.281178 + 0.134932 0.0520608 0.206351 + 0.149225 0.0289637 0.210547 + 0.141499 0.0278631 0.212334 + 0.140185 0.083702 0.255202 + 0.132301 0.0714018 0.229122 + 0.141438 0.0878312 0.273185 + 0.166669 0.0467983 0.336605 + 0.15127 0.0474374 0.318722 + 0.13233 0.0382058 0.234689 + 0.131675 0.0499076 0.204303 + 0.130282 0.0746005 0.200037 + 0.14521 0.0617553 0.255705 + 0.144424 0.0516328 0.223826 + 0.138077 0.0629009 0.230576 + 0.152838 0.0607366 0.272246 + 0.156061 0.0613517 0.286963 + 0.0585879 -0.112472 0.223144 + 0.0148714 -0.122693 0.213733 + 0.148052 0.0315414 0.224338 + 0.159486 0.061578 0.303004 + 0.215985 -0.0301543 0.377579 + 0.214225 -0.0201871 0.342064 + 0.190308 -0.00781272 0.281606 + 0.169749 0.00309762 0.249753 + -0.0114376 -0.183836 0.259991 + -0.196976 0.203338 0.167036 + -0.156479 0.241722 0.0601459 + -0.190981 0.199252 0.0604816 + -0.173515 0.24258 0.166832 + -0.217511 0.166197 0.269794 + -0.212358 0.156177 0.167304 + -0.204684 0.216486 0.268212 + -0.202744 0.247695 -0.281754 + -0.214289 0.154849 0.063031 + -0.228532 0.185598 -0.253038 + -0.11301 0.336663 -0.268722 + -0.117534 0.260975 0.056037 + -0.176117 0.322283 -0.338808 + -0.18425 0.257152 0.262622 + -0.145681 0.256642 0.162735 + -0.160602 0.270175 0.255358 + -0.209798 0.0630477 0.168793 + -0.221408 0.114389 0.0722818 + -0.220761 0.071133 0.0860712 + -0.214686 0.110958 0.167499 + -0.22728 0.0337162 0.261511 + -0.21085 0.0270061 0.175311 + -0.222761 0.0689327 0.259312 + -0.264355 0.0676777 -0.118277 + -0.225201 0.0339074 0.101407 + -0.253906 0.114148 -0.13331 + -0.219797 0.118889 0.264779 + -0.0916886 0.234948 0.545165 + -0.11842 0.256516 0.506646 + -0.141259 0.221288 0.521946 + -0.0831727 0.260447 0.518545 + -0.0421239 0.191376 0.562407 + -0.095496 0.18416 0.5749 + -0.0432359 0.240753 0.529406 + -0.174105 0.212332 0.473201 + -0.151793 0.174921 0.540238 + -0.181528 0.167555 0.485275 + -0.122446 0.268145 0.449405 + -0.100992 0.26215 0.496449 + -0.145762 0.255287 0.460078 + -0.0427363 0.25418 0.501219 + -0.0761357 0.25541 0.504396 + -0.0414288 0.239724 0.487361 + -0.191712 0.213365 0.412888 + -0.183075 0.259527 0.329528 + -0.207302 0.217089 0.341168 + -0.16439 0.258774 0.396129 + -0.202802 0.165275 0.426662 + -0.219958 0.167531 0.348286 + -0.158444 0.273138 0.319265 + -0.14041 0.273971 0.372068 + -0.0939109 0.0921237 0.593768 + -0.151232 0.120682 0.55398 + -0.137238 0.0773328 0.564397 + -0.0962961 0.137461 0.588137 + -0.0363407 0.0567528 0.586473 + -0.0887345 0.0486681 0.596392 + -0.0384283 0.102136 0.581666 + -0.169141 0.0700966 0.514429 + -0.120897 0.0369382 0.571083 + -0.158423 0.0322281 0.515773 + -0.180373 0.110635 0.498992 + -0.0406095 0.148548 0.577858 + -0.209725 0.0731935 0.427277 + -0.226172 0.117996 0.345736 + -0.231009 0.0711658 0.341054 + -0.209648 0.112476 0.43028 + -0.202734 0.0380213 0.428158 + -0.233054 0.0355765 0.343112 + -0.216273 0.203176 -0.222411 + -0.214263 0.1548 0.0624969 + -0.190955 0.199202 0.0599487 + -0.162486 0.341047 -0.333939 + -0.156452 0.241673 0.0596124 + -0.117508 0.260925 0.0555032 + -0.201968 0.287483 -0.307465 + -0.285678 0.0501432 -0.161793 + -0.225167 0.0338561 0.100888 + -0.220731 0.0710825 0.0855459 + -0.253825 0.111274 -0.147098 + -0.22138 0.114339 0.0717511 + -0.271453 0.0787342 -0.136921 + 0.147369 0.22272 0.169275 + 0.151136 0.218597 0.058338 + 0.108932 0.25512 0.0597327 + 0.119053 0.258805 0.17015 + 0.160731 0.186237 0.279762 + 0.168261 0.177835 0.168376 + 0.14265 0.234753 0.278183 + 0.177924 0.257092 -0.240778 + 0.180761 0.178066 0.0596457 + 0.234704 0.204744 -0.242488 + 0.0563876 0.342297 -0.25389 + 0.068191 0.270115 0.0560351 + 0.105766 0.318543 -0.268497 + 0.118341 0.272955 0.271972 + 0.0897349 0.269669 0.165474 + 0.0940183 0.283476 0.263206 + 0.175188 0.0848905 0.170138 + 0.194595 0.0954354 0.0828995 + 0.19183 0.138719 0.0683984 + 0.175468 0.133237 0.168089 + 0.184585 0.0554972 0.272611 + 0.178848 0.048751 0.17878 + 0.176963 0.0902407 0.269067 + 0.25965 0.0944025 -0.110039 + 0.201367 0.0584418 0.100478 + 0.241188 0.140484 -0.124635 + 0.168494 0.139594 0.274218 + 0.0041743 0.239782 0.549167 + 0.0567153 0.231265 0.530262 + 0.0317143 0.264086 0.512914 + -0.00461607 0.264408 0.521825 + -0.0421234 0.191376 0.562407 + 0.0105775 0.189508 0.579329 + -0.0432354 0.240753 0.529406 + 0.0961354 0.225833 0.485597 + 0.0720248 0.186091 0.5506 + 0.114927 0.181878 0.503205 + 0.039297 0.276301 0.456157 + 0.0147176 0.267984 0.501279 + 0.0628175 0.265804 0.468786 + -0.0427358 0.25418 0.501219 + -0.00991103 0.25875 0.507161 + -0.0414283 0.239724 0.487361 + 0.1167 0.228909 0.425835 + 0.13797 0.234697 0.354386 + 0.110548 0.274478 0.340908 + 0.0862579 0.271414 0.406579 + 0.133547 0.182086 0.442022 + 0.154993 0.186678 0.362487 + 0.0855752 0.285569 0.328686 + 0.0627964 0.284097 0.381335 + 0.0162739 0.0977727 0.597816 + 0.0610051 0.0898557 0.559564 + 0.071531 0.133195 0.556511 + 0.0149592 0.143071 0.592782 + -0.0363402 0.0567528 0.586473 + 0.0155474 0.0539594 0.600549 + -0.0384278 0.102136 0.581666 + 0.109317 0.0856743 0.52115 + 0.0579711 0.0468814 0.575469 + 0.111247 0.046731 0.527482 + 0.12035 0.125574 0.515815 + -0.040609 0.148548 0.577858 + 0.150126 0.0917023 0.443379 + 0.176395 0.0920191 0.356195 + 0.166447 0.138086 0.360362 + 0.14634 0.130331 0.446721 + 0.146409 0.0562273 0.443804 + 0.181816 0.0567584 0.358897 + 0.151163 0.218549 0.0578006 + 0.108956 0.255069 0.059194 + 0.149243 0.283819 -0.23083 + 0.151163 0.218549 0.0578006 + 0.207348 0.222971 -0.205882 + 0.180786 0.178017 0.0591083 + 0.0682151 0.270066 0.0554977 + 0.0877639 0.321623 -0.266944 + 0.108956 0.255069 0.059194 + 0.19462 0.0953864 0.0823624 + 0.285678 0.0769403 -0.111764 + 0.201392 0.0583928 0.0999405 + 0.243564 0.137414 -0.137686 + 0.191855 0.13867 0.0678613 + 0.27723 0.108724 -0.16857 + -0.0354754 0.036166 0.590579 + 0.0530902 0.0415194 0.575855 + 0.0462728 0.184258 0.541529 + -0.0423 0.204674 0.550534 + 0.114539 0.155031 0.486766 + 0.123792 0.0442055 0.507656 + 0.0949835 0.199358 0.449787 + 0.0338863 0.230306 0.483066 + -0.0414556 0.238989 0.48886 + 0.164882 0.033978 0.399404 + 0.1422 0.12513 0.405931 + 0.149657 0.104658 0.326897 + 0.163621 0.0199439 0.300877 + 0.138233 0.1379 0.351782 + 0.113106 0.166561 0.402335 + -0.0204486 -0.198583 0.492828 + 0.0662506 -0.194501 0.488618 + 0.0644898 -0.093255 0.551459 + -0.0286174 -0.100381 0.562501 + 0.132985 -0.139333 0.475285 + 0.129186 -0.0507037 0.494284 + 0.153429 -0.149827 0.413316 + 0.168648 -0.0508081 0.412815 + 0.165381 -0.156643 0.322728 + 0.180779 -0.052756 0.308003 + 0.170345 -0.0371933 0.232432 + 0.141002 0.0154398 0.231212 + 0.170285 -0.123351 0.234042 + 0.175817 -0.0814903 0.14345 + 0.17359 0.0126633 0.144575 + 0.136872 0.0577721 0.135621 + 0.176885 0.0397917 -0.0174326 + 0.117285 0.0963672 -0.0355756 + 0.196925 -0.165427 -0.119016 + 0.226694 -0.194678 -0.378389 + 0.186713 0.0542531 -0.111664 + 0.101464 0.121515 -0.151924 + 0.0898918 -0.226604 0.223862 + 0.0922887 -0.249939 0.141747 + 0.0875297 -0.2326 0.318374 + -0.0106106 -0.24679 0.309091 + -0.00665196 -0.278236 0.214831 + -0.00332746 -0.281489 0.139124 + 0.111856 -0.288382 -0.111617 + 0.146807 -0.306271 -0.600549 + 0.0071091 -0.319889 -0.112263 + 0.0223168 -0.346567 -0.481387 + 0.0831024 -0.215806 0.414237 + -0.0155952 -0.231447 0.40996 + -0.117781 0.0323777 0.570194 + -0.127682 0.175496 0.534185 + -0.178874 0.140788 0.469609 + -0.179397 0.0284655 0.49369 + -0.115324 0.222783 0.476837 + -0.168961 0.186113 0.438209 + -0.216856 0.0144832 0.383548 + -0.205217 0.107535 0.391773 + -0.203689 0.0863469 0.315119 + -0.203318 0.00148456 0.277756 + -0.180637 0.1517 0.390377 + -0.198085 0.12064 0.339557 + -0.106992 -0.203236 0.481385 + -0.117075 -0.100435 0.537499 + -0.172062 -0.067214 0.48485 + -0.170474 -0.153643 0.459794 + -0.191425 -0.16721 0.398854 + -0.213355 -0.0704559 0.395369 + -0.216078 -0.0724273 0.281743 + -0.195283 -0.17483 0.307683 + -0.201211 -0.0567141 0.2218 + -0.17717 -0.00166531 0.224336 + -0.195299 -0.142025 0.220392 + -0.199447 -0.00819988 0.141716 + -0.19517 -0.101171 0.134399 + -0.167198 0.0401541 0.136739 + -0.193816 0.0135157 0.0651559 + -0.140237 0.0759453 0.0504239 + -0.198575 -0.0662191 0.0614844 + -0.196316 0.0335591 -0.118091 + -0.213069 -0.0568121 -0.102807 + -0.117184 0.10964 -0.155941 + -0.106807 -0.236985 0.21754 + -0.104594 -0.200022 0.137527 + -0.11011 -0.242566 0.310122 + -0.0999618 -0.299062 -0.12046 + -0.105212 -0.334446 -0.35276 + -0.115377 -0.225814 0.405951 + 0.17359 0.0126633 0.144575 + 0.175817 -0.0814903 0.14345 + 0.170345 -0.0371933 0.232432 + 0.170285 -0.123351 0.234042 + 0.141002 0.0154398 0.231212 + 0.136872 0.0577721 0.135621 + 0.176885 0.0397917 -0.0174326 + 0.117285 0.0963672 -0.0355756 + 0.196925 -0.165427 -0.119016 + 0.186713 0.0542531 -0.111664 + 0.226694 -0.194678 -0.378389 + 0.101464 0.121515 -0.151924 + 0.0898918 -0.226604 0.223862 + 0.0922887 -0.249939 0.141747 + -0.00665196 -0.278236 0.214831 + -0.00332746 -0.281489 0.139124 + 0.111856 -0.288382 -0.111617 + 0.146807 -0.306271 -0.600549 + 0.0071091 -0.319889 -0.112263 + 0.0223168 -0.346567 -0.481387 + -0.19517 -0.101171 0.134399 + -0.199447 -0.00819988 0.141716 + -0.201211 -0.0567141 0.2218 + -0.195299 -0.142025 0.220392 + -0.17717 -0.00166531 0.224336 + -0.167198 0.0401541 0.136739 + -0.193816 0.0135157 0.0651559 + -0.140237 0.0759453 0.0504239 + -0.198575 -0.0662191 0.0614844 + -0.213069 -0.0568121 -0.102807 + -0.196316 0.0335591 -0.118091 + -0.117184 0.10964 -0.155941 + -0.106807 -0.236985 0.21754 + -0.104594 -0.200022 0.137527 + -0.0999618 -0.299062 -0.12046 + -0.105212 -0.334446 -0.35276 + faces 1242 + 3 6 5 1 0 1 2 1 + 5 4 3 1 2 3 0 1 + 7 8 171 1 4 5 6 1 + 171 170 7 1 6 7 4 1 + 14 17 16 1 8 9 10 1 + 16 15 14 1 10 11 8 1 + 15 13 24 1 11 12 13 1 + 24 14 15 1 13 8 11 1 + 25 19 16 1 14 15 10 1 + 16 17 25 1 10 9 14 1 + 29 30 14 1 16 17 8 1 + 14 24 29 1 8 13 16 1 + 31 34 33 1 18 19 20 1 + 33 32 31 1 20 21 18 1 + 17 36 25 1 9 22 14 1 + 37 40 39 1 23 24 25 1 + 39 38 37 1 25 26 23 1 + 44 47 46 1 27 28 29 1 + 46 45 44 1 29 30 27 1 + 36 49 48 1 22 31 32 1 + 50 53 52 1 33 34 35 1 + 52 51 50 1 35 36 33 1 + 54 43 41 1 37 38 39 1 + 41 55 54 1 39 40 37 1 + 54 55 56 1 37 40 41 1 + 56 102 54 1 41 42 37 1 + 41 1 0 1 39 43 44 1 + 0 55 41 1 44 40 39 1 + 2 56 55 1 45 41 40 1 + 55 0 2 1 40 44 45 1 + 57 59 3 1 46 47 0 1 + 3 58 57 1 0 48 46 1 + 171 8 60 1 6 5 49 1 + 60 225 171 1 49 50 6 1 + 29 24 62 1 16 13 51 1 + 62 61 29 1 51 52 16 1 + 63 66 65 1 53 54 55 1 + 65 64 63 1 55 56 53 1 + 14 30 36 1 8 17 22 1 + 36 17 14 1 22 9 8 1 + 70 49 36 1 57 31 22 1 + 36 30 70 1 22 17 57 1 + 71 74 73 1 58 59 60 1 + 73 72 71 1 60 61 58 1 + 241 225 60 1 62 50 49 1 + 60 75 241 1 49 63 62 1 + 10 9 27 1 64 65 66 1 + 27 26 10 1 66 67 64 1 + 244 27 9 1 68 66 65 1 + 9 173 244 1 65 69 68 1 + 77 80 79 1 70 71 72 1 + 79 78 77 1 72 73 70 1 + 82 83 77 1 74 75 70 1 + 77 78 82 1 70 73 74 1 + 85 81 77 1 76 77 70 1 + 77 86 85 1 70 78 76 1 + 31 65 66 1 18 55 54 1 + 66 34 31 1 54 19 18 1 + 87 88 50 1 79 80 33 1 + 50 51 87 1 33 36 79 1 + 89 52 53 1 81 35 34 1 + 53 90 89 1 34 82 81 1 + 72 73 63 1 61 60 53 1 + 63 64 72 1 53 56 61 1 + 91 86 77 1 83 78 70 1 + 77 84 91 1 70 84 83 1 + 32 33 88 1 21 20 80 1 + 88 87 32 1 80 79 21 1 + 92 68 69 1 85 86 87 1 + 69 70 92 1 87 57 85 1 + 39 40 48 1 25 24 32 1 + 48 49 39 1 32 31 25 1 + 241 75 93 1 62 63 88 1 + 93 153 241 1 88 89 62 1 + 94 47 44 1 90 28 27 1 + 44 95 94 1 27 91 90 1 + 70 69 49 1 57 87 31 1 + 267 270 99 1 92 93 94 1 + 99 98 267 1 94 95 92 1 + 100 154 267 1 96 97 92 1 + 267 98 100 1 92 95 96 1 + 100 101 155 1 96 98 99 1 + 155 154 100 1 99 97 96 1 + 101 102 156 1 98 42 100 1 + 157 156 102 1 101 100 42 1 + 102 56 157 1 42 41 101 1 + 157 56 2 1 101 41 45 1 + 2 332 157 1 45 102 101 1 + 94 93 75 1 90 88 63 1 + 75 47 94 1 63 28 90 1 + 47 75 60 1 28 63 49 1 + 60 57 47 1 49 46 28 1 + 57 60 8 1 46 49 5 1 + 8 59 57 1 5 47 46 1 + 8 7 11 1 5 4 103 1 + 11 59 8 1 103 47 5 1 + 105 104 103 1 104 105 106 1 + 103 106 105 1 106 107 104 1 + 92 105 106 1 85 104 107 1 + 106 68 92 1 107 86 85 1 + 98 99 67 1 95 94 108 1 + 67 68 98 1 108 86 95 1 + 107 108 96 1 109 110 111 1 + 96 97 107 1 111 112 109 1 + 80 71 72 1 71 58 61 1 + 72 79 80 1 61 72 71 1 + 64 65 82 1 56 55 74 1 + 82 78 64 1 74 73 56 1 + 31 32 84 1 18 21 84 1 + 84 83 31 1 84 75 18 1 + 51 52 85 1 36 35 76 1 + 85 86 51 1 76 78 36 1 + 65 31 83 1 55 18 75 1 + 83 82 65 1 75 74 55 1 + 87 51 86 1 79 36 78 1 + 86 91 87 1 78 83 79 1 + 52 89 81 1 35 81 77 1 + 81 85 52 1 77 76 35 1 + 72 64 78 1 61 56 73 1 + 78 79 72 1 73 72 61 1 + 32 87 91 1 21 79 83 1 + 91 84 32 1 83 84 21 1 + 109 159 158 1 113 114 115 1 + 158 110 109 1 115 116 113 1 + 109 110 112 1 113 116 117 1 + 112 111 109 1 117 118 113 1 + 111 114 113 1 118 119 120 1 + 113 109 111 1 120 113 118 1 + 109 113 286 1 113 120 121 1 + 286 159 109 1 121 114 113 1 + 110 158 160 1 116 115 122 1 + 160 115 110 1 122 123 116 1 + 116 119 118 1 110 117 110 1 + 118 117 116 1 110 124 110 1 + 120 121 111 1 125 126 118 1 + 111 112 120 1 118 117 125 1 + 121 122 114 1 126 127 119 1 + 114 111 121 1 119 118 126 1 + 122 123 113 1 127 128 120 1 + 113 114 122 1 120 119 127 1 + 123 161 286 1 128 129 121 1 + 286 113 123 1 121 120 128 1 + 38 39 69 1 26 25 87 1 + 69 67 38 1 87 108 26 1 + 96 108 120 1 111 110 125 1 + 108 38 121 1 110 26 126 1 + 121 120 108 1 126 125 110 1 + 38 67 122 1 26 108 127 1 + 122 121 38 1 127 126 26 1 + 67 99 123 1 108 94 128 1 + 123 122 67 1 128 127 108 1 + 99 270 161 1 94 93 129 1 + 161 123 99 1 129 128 94 1 + 58 3 4 1 48 0 3 1 + 4 124 58 1 3 130 48 1 + 46 126 125 1 29 131 132 1 + 125 45 46 1 132 30 29 1 + 21 28 76 1 133 134 135 1 + 76 20 21 1 135 136 133 1 + 127 128 94 1 137 138 90 1 + 94 95 127 1 90 91 137 1 + 129 300 153 1 139 140 89 1 + 3 59 11 1 0 47 103 1 + 11 6 3 1 103 1 0 1 + 4 5 28 1 3 2 134 1 + 28 21 4 1 134 133 3 1 + 47 57 46 1 28 46 29 1 + 46 58 124 1 29 48 130 1 + 124 126 46 1 130 131 29 1 + 45 125 25 1 30 132 14 1 + 25 35 45 1 14 141 30 1 + 48 40 95 1 32 24 91 1 + 95 44 48 1 91 27 32 1 + 44 45 35 1 27 30 141 1 + 35 48 44 1 141 32 27 1 + 40 37 127 1 24 23 137 1 + 127 95 40 1 137 91 24 1 + 145 37 107 1 142 23 109 1 + 107 130 145 1 109 143 142 1 + 264 304 131 1 144 145 146 1 + 131 97 264 1 146 112 144 1 + 97 131 130 1 112 146 143 1 + 130 107 97 1 143 109 112 1 + 128 127 145 1 138 137 142 1 + 145 132 128 1 142 147 138 1 + 129 133 306 1 139 148 149 1 + 306 300 129 1 149 140 139 1 + 4 21 22 1 3 133 150 1 + 22 124 4 1 150 130 3 1 + 125 126 23 1 132 131 151 1 + 23 134 125 1 151 152 132 1 + 126 124 22 1 131 130 150 1 + 22 23 126 1 150 151 131 1 + 134 19 25 1 152 15 14 1 + 25 125 134 1 14 132 152 1 + 19 134 23 1 15 152 151 1 + 107 37 38 1 109 23 26 1 + 38 108 107 1 26 110 109 1 + 93 94 128 1 88 90 138 1 + 128 129 93 1 138 139 88 1 + 128 132 133 1 138 147 148 1 + 133 129 128 1 148 139 138 1 + 34 66 135 1 19 54 153 1 + 135 104 34 1 153 105 19 1 + 66 63 136 1 54 53 154 1 + 136 135 66 1 154 153 54 1 + 136 63 73 1 154 53 60 1 + 73 137 136 1 60 155 154 1 + 73 74 138 1 60 59 156 1 + 138 137 73 1 156 155 60 1 + 90 53 140 1 82 34 157 1 + 140 139 90 1 157 158 82 1 + 53 50 141 1 34 33 159 1 + 141 140 53 1 159 157 34 1 + 141 50 88 1 159 33 80 1 + 88 92 141 1 80 85 159 1 + 92 88 33 1 85 80 20 1 + 33 105 92 1 20 104 85 1 + 33 34 104 1 20 19 105 1 + 104 105 33 1 105 104 20 1 + 103 104 135 1 106 105 153 1 + 135 102 103 1 153 42 106 1 + 135 136 54 1 153 154 37 1 + 54 102 135 1 37 42 153 1 + 54 136 137 1 37 154 155 1 + 137 43 54 1 155 38 37 1 + 43 137 138 1 38 155 156 1 + 138 61 43 1 156 52 38 1 + 139 140 30 1 158 157 17 1 + 30 29 139 1 17 16 158 1 + 140 141 70 1 157 159 57 1 + 70 30 140 1 57 17 157 1 + 61 138 139 1 52 156 158 1 + 139 29 61 1 158 16 52 1 + 138 74 90 1 156 59 82 1 + 90 139 138 1 82 158 156 1 + 74 71 89 1 59 58 81 1 + 89 90 74 1 81 82 59 1 + 71 80 81 1 58 71 77 1 + 81 89 71 1 77 81 58 1 + 62 42 43 1 51 160 38 1 + 43 61 62 1 38 52 51 1 + 12 62 24 1 161 51 13 1 + 24 13 12 1 13 12 161 1 + 41 42 18 1 39 160 162 1 + 18 1 41 1 162 43 39 1 + 62 12 18 1 51 161 162 1 + 18 42 62 1 162 160 51 1 + 116 96 120 1 110 111 125 1 + 120 119 116 1 125 117 110 1 + 264 96 115 1 163 111 123 1 + 115 160 264 1 123 122 163 1 + 117 115 96 1 124 123 111 1 + 96 116 117 1 111 110 124 1 + 143 131 304 1 164 146 145 1 + 304 318 143 1 145 165 164 1 + 143 142 130 1 164 166 143 1 + 130 131 143 1 143 146 164 1 + 146 149 325 1 167 168 169 1 + 325 321 146 1 169 170 167 1 + 147 133 132 1 171 148 147 1 + 132 144 147 1 147 172 171 1 + 106 100 98 1 107 96 95 1 + 98 68 106 1 95 86 107 1 + 101 100 106 1 98 96 107 1 + 106 103 101 1 107 106 98 1 + 327 306 133 1 173 149 148 1 + 133 147 327 1 148 171 173 1 + 150 148 149 1 174 175 168 1 + 149 146 150 1 168 167 174 1 + 152 149 148 1 176 177 178 1 + 148 151 152 1 178 179 176 1 + 318 331 152 1 165 180 176 1 + 152 143 318 1 176 164 165 1 + 331 325 149 1 180 169 177 1 + 149 152 331 1 177 176 180 1 + 142 143 152 1 166 164 176 1 + 152 151 142 1 176 179 166 1 + 146 147 144 1 167 171 172 1 + 144 150 146 1 172 174 167 1 + 321 327 147 1 170 173 171 1 + 147 146 321 1 171 167 170 1 + 167 168 165 1 2 1 0 1 + 165 166 167 1 0 3 2 1 + 171 172 169 1 6 5 4 1 + 169 170 171 1 4 7 6 1 + 181 182 179 1 10 9 8 1 + 179 180 181 1 8 11 10 1 + 189 178 180 1 13 12 11 1 + 180 179 189 1 11 8 13 1 + 181 184 190 1 10 15 14 1 + 190 182 181 1 14 9 10 1 + 179 195 194 1 8 17 16 1 + 194 189 179 1 16 13 8 1 + 198 199 196 1 20 19 18 1 + 196 197 198 1 18 21 20 1 + 200 201 190 1 141 22 14 1 + 204 205 202 1 25 24 23 1 + 202 203 204 1 23 26 25 1 + 211 212 209 1 29 28 27 1 + 209 210 211 1 27 30 29 1 + 201 200 213 1 22 141 32 1 + 217 218 215 1 35 181 33 1 + 215 216 217 1 33 36 35 1 + 206 208 219 1 39 38 37 1 + 219 220 206 1 37 40 39 1 + 221 220 219 1 41 40 37 1 + 219 273 221 1 37 42 41 1 + 162 163 206 1 44 43 39 1 + 206 220 162 1 39 40 44 1 + 220 221 164 1 40 41 45 1 + 164 162 220 1 45 44 40 1 + 165 224 222 1 0 47 46 1 + 222 223 165 1 46 48 0 1 + 226 172 171 1 49 5 6 1 + 171 225 226 1 6 50 49 1 + 228 189 194 1 51 13 16 1 + 194 227 228 1 16 52 51 1 + 231 232 229 1 55 54 53 1 + 229 230 231 1 53 56 55 1 + 201 195 179 1 22 17 8 1 + 179 182 201 1 8 9 22 1 + 201 214 236 1 22 31 57 1 + 236 195 201 1 57 17 22 1 + 239 240 237 1 60 59 58 1 + 237 238 239 1 58 61 60 1 + 226 225 241 1 49 50 62 1 + 241 242 226 1 62 63 49 1 + 192 174 175 1 66 65 64 1 + 175 191 192 1 64 67 66 1 + 174 192 244 1 65 66 68 1 + 244 173 174 1 68 69 65 1 + 247 248 245 1 72 71 70 1 + 245 246 247 1 70 73 72 1 + 245 251 250 1 70 75 74 1 + 250 246 245 1 74 73 70 1 + 245 249 253 1 70 77 76 1 + 253 254 245 1 76 78 70 1 + 232 231 196 1 54 55 18 1 + 196 199 232 1 18 19 54 1 + 215 256 255 1 33 80 79 1 + 255 216 215 1 79 36 33 1 + 218 217 257 1 181 35 81 1 + 257 258 218 1 81 82 181 1 + 229 239 238 1 53 60 61 1 + 238 230 229 1 61 56 53 1 + 245 254 259 1 70 78 83 1 + 259 252 245 1 83 84 70 1 + 256 198 197 1 80 20 21 1 + 197 255 256 1 21 79 80 1 + 235 234 260 1 87 86 85 1 + 260 236 235 1 85 57 87 1 + 213 205 204 1 32 24 25 1 + 204 214 213 1 25 31 32 1 + 261 242 241 1 88 63 62 1 + 241 153 261 1 62 89 88 1 + 209 212 262 1 27 28 90 1 + 262 263 209 1 90 91 27 1 + 204 235 214 1 25 87 31 1 + 266 264 265 1 112 144 111 1 + 269 270 267 1 94 93 92 1 + 267 268 269 1 92 95 94 1 + 267 154 271 1 92 97 96 1 + 271 268 267 1 96 95 92 1 + 155 272 271 1 99 98 96 1 + 271 154 155 1 96 97 99 1 + 273 272 156 1 42 98 100 1 + 273 156 157 1 42 100 101 1 + 157 221 273 1 101 41 42 1 + 164 221 157 1 45 41 101 1 + 157 332 164 1 101 102 45 1 + 242 261 262 1 63 88 90 1 + 262 212 242 1 90 28 63 1 + 226 242 212 1 49 63 28 1 + 212 222 226 1 28 46 49 1 + 172 226 222 1 5 49 46 1 + 222 224 172 1 46 47 5 1 + 176 169 172 1 103 4 5 1 + 172 224 176 1 5 47 103 1 + 274 275 276 1 106 105 104 1 + 276 277 274 1 104 107 106 1 + 277 276 260 1 107 104 85 1 + 260 234 277 1 85 86 107 1 + 233 269 268 1 108 94 95 1 + 268 234 233 1 95 86 108 1 + 265 279 278 1 111 110 109 1 + 278 266 265 1 109 112 111 1 + 238 237 248 1 61 58 71 1 + 248 247 238 1 71 72 61 1 + 250 231 230 1 74 55 56 1 + 230 246 250 1 56 73 74 1 + 252 197 196 1 84 21 18 1 + 196 251 252 1 18 75 84 1 + 253 217 216 1 76 35 36 1 + 216 254 253 1 36 78 76 1 + 251 196 231 1 75 18 55 1 + 231 250 251 1 55 74 75 1 + 254 216 255 1 78 36 79 1 + 255 259 254 1 79 83 78 1 + 249 257 217 1 77 81 35 1 + 217 253 249 1 35 76 77 1 + 246 230 238 1 73 56 61 1 + 238 247 246 1 61 72 73 1 + 259 255 197 1 83 79 21 1 + 197 252 259 1 21 84 83 1 + 158 159 280 1 115 114 113 1 + 280 281 158 1 113 116 115 1 + 283 281 280 1 117 116 113 1 + 280 282 283 1 113 118 117 1 + 284 285 282 1 120 119 118 1 + 282 280 284 1 118 113 120 1 + 286 284 280 1 121 120 113 1 + 280 159 286 1 113 114 121 1 + 160 158 281 1 122 115 116 1 + 289 290 116 1 117 110 110 1 + 116 288 289 1 110 124 117 1 + 291 283 282 1 125 117 118 1 + 285 293 292 1 119 127 126 1 + 284 294 293 1 120 128 127 1 + 293 285 284 1 127 119 120 1 + 286 161 294 1 121 129 128 1 + 294 284 286 1 128 120 121 1 + 235 204 203 1 87 25 26 1 + 203 233 235 1 26 108 87 1 + 291 279 265 1 125 110 111 1 + 292 203 279 1 126 26 110 1 + 279 291 292 1 110 125 126 1 + 293 233 203 1 127 108 26 1 + 203 292 293 1 26 126 127 1 + 294 269 233 1 128 94 108 1 + 233 293 294 1 108 127 128 1 + 161 270 269 1 129 93 94 1 + 269 294 161 1 94 128 129 1 + 166 165 223 1 3 0 48 1 + 223 295 166 1 48 130 3 1 + 296 297 211 1 132 131 29 1 + 211 210 296 1 29 30 132 1 + 243 193 186 1 135 134 133 1 + 186 185 243 1 133 136 135 1 + 262 299 298 1 90 138 137 1 + 298 263 262 1 137 91 90 1 + 301 261 153 1 139 88 89 1 + 176 224 165 1 103 47 0 1 + 165 168 176 1 0 1 103 1 + 193 167 166 1 134 2 3 1 + 166 186 193 1 3 133 134 1 + 222 212 211 1 46 28 29 1 + 295 223 211 1 130 48 29 1 + 211 297 295 1 29 131 130 1 + 190 296 210 1 14 132 30 1 + 210 200 190 1 30 141 14 1 + 263 205 213 1 91 24 32 1 + 213 209 263 1 32 27 91 1 + 200 210 209 1 141 30 27 1 + 209 213 200 1 27 32 141 1 + 298 202 205 1 137 23 24 1 + 205 263 298 1 24 91 137 1 + 278 202 320 1 109 23 142 1 + 320 302 278 1 142 143 109 1 + 303 304 264 1 146 145 144 1 + 264 266 303 1 144 112 146 1 + 302 303 266 1 143 146 112 1 + 266 278 302 1 112 109 143 1 + 320 298 299 1 142 137 138 1 + 299 305 320 1 138 147 142 1 + 306 307 301 1 149 148 139 1 + 301 300 306 1 139 140 149 1 + 187 186 166 1 150 133 3 1 + 166 295 187 1 3 130 150 1 + 188 297 296 1 151 131 132 1 + 296 308 188 1 132 152 151 1 + 187 295 297 1 150 130 131 1 + 297 188 187 1 131 151 150 1 + 190 184 308 1 14 15 152 1 + 308 296 190 1 152 132 14 1 + 188 308 184 1 151 152 15 1 + 203 202 278 1 26 23 109 1 + 278 279 203 1 109 110 26 1 + 299 262 261 1 138 90 88 1 + 261 301 299 1 88 139 138 1 + 307 305 299 1 148 147 138 1 + 309 232 199 1 153 54 19 1 + 199 275 309 1 19 105 153 1 + 310 229 232 1 154 53 54 1 + 232 309 310 1 54 153 154 1 + 239 229 310 1 60 53 154 1 + 310 311 239 1 154 155 60 1 + 312 240 239 1 156 59 60 1 + 239 311 312 1 60 155 156 1 + 314 218 258 1 157 181 82 1 + 258 313 314 1 82 158 157 1 + 315 215 218 1 159 33 181 1 + 218 314 315 1 181 157 159 1 + 256 215 315 1 80 33 159 1 + 315 260 256 1 159 85 80 1 + 198 256 260 1 20 80 85 1 + 260 276 198 1 85 104 20 1 + 275 199 198 1 105 19 20 1 + 198 276 275 1 20 104 105 1 + 309 275 274 1 153 105 106 1 + 274 273 309 1 106 42 153 1 + 219 310 309 1 37 154 153 1 + 309 273 219 1 153 42 37 1 + 311 310 219 1 155 154 37 1 + 219 208 311 1 37 38 155 1 + 312 311 208 1 156 155 38 1 + 208 227 312 1 38 52 156 1 + 195 314 313 1 17 157 158 1 + 313 194 195 1 158 16 17 1 + 236 315 314 1 57 159 157 1 + 314 195 236 1 157 17 57 1 + 313 312 227 1 158 156 52 1 + 227 194 313 1 52 16 158 1 + 258 240 312 1 82 59 156 1 + 312 313 258 1 156 158 82 1 + 257 237 240 1 81 58 59 1 + 240 258 257 1 59 82 81 1 + 249 248 237 1 77 71 58 1 + 237 257 249 1 58 81 77 1 + 208 207 228 1 38 160 51 1 + 228 227 208 1 51 52 38 1 + 189 228 177 1 13 51 161 1 + 177 178 189 1 161 12 13 1 + 183 207 206 1 162 160 39 1 + 206 163 183 1 39 43 162 1 + 183 177 228 1 162 161 51 1 + 228 207 183 1 51 160 162 1 + 281 283 289 1 116 117 117 1 + 289 288 281 1 117 124 116 1 + 283 291 290 1 117 125 110 1 + 290 289 283 1 110 117 117 1 + 291 265 116 1 125 111 110 1 + 116 290 291 1 110 110 125 1 + 287 265 264 1 123 111 163 1 + 264 160 287 1 163 122 123 1 + 304 303 317 1 145 146 164 1 + 317 318 304 1 164 165 145 1 + 302 316 317 1 143 166 164 1 + 317 303 302 1 164 146 143 1 + 325 326 322 1 169 168 167 1 + 322 321 325 1 167 170 169 1 + 305 307 323 1 147 148 171 1 + 323 319 305 1 171 172 147 1 + 268 271 277 1 95 96 107 1 + 277 234 268 1 107 86 95 1 + 277 271 272 1 107 96 98 1 + 272 274 277 1 98 106 107 1 + 307 306 327 1 148 149 173 1 + 327 323 307 1 173 171 148 1 + 326 324 328 1 168 175 174 1 + 328 322 326 1 174 167 168 1 + 324 326 330 1 178 177 176 1 + 330 329 324 1 176 179 178 1 + 330 331 318 1 176 180 165 1 + 318 317 330 1 165 164 176 1 + 326 325 331 1 177 169 180 1 + 331 330 326 1 180 176 177 1 + 330 317 316 1 176 164 166 1 + 316 329 330 1 166 179 176 1 + 319 323 322 1 172 171 167 1 + 322 328 319 1 167 174 172 1 + 323 327 321 1 171 173 170 1 + 321 322 323 1 170 167 171 1 + 76 10 20 1 182 64 183 1 + 127 37 145 1 137 23 142 1 + 145 130 142 1 142 143 166 1 + 132 145 144 1 147 142 172 1 + 148 150 145 1 175 174 142 1 + 145 151 148 1 142 179 178 1 + 151 145 142 1 179 142 166 1 + 145 150 144 1 142 174 172 1 + 41 43 42 1 39 38 160 1 + 67 69 68 1 108 87 86 1 + 10 26 20 1 64 67 183 1 + 77 81 80 1 70 77 71 1 + 83 84 77 1 75 84 70 1 + 103 102 101 1 106 42 98 1 + 70 141 92 1 57 159 85 1 + 115 117 110 1 123 124 116 1 + 243 185 175 1 182 183 64 1 + 298 320 202 1 137 142 23 1 + 320 316 302 1 142 166 143 1 + 305 319 320 1 147 172 142 1 + 324 320 328 1 175 142 174 1 + 320 324 329 1 142 178 179 1 + 329 316 320 1 179 166 142 1 + 320 319 328 1 142 172 174 1 + 206 207 208 1 39 160 38 1 + 233 234 235 1 108 86 87 1 + 175 185 191 1 64 183 67 1 + 245 248 249 1 70 71 77 1 + 251 245 252 1 75 70 84 1 + 274 272 273 1 106 98 42 1 + 236 260 315 1 57 85 159 1 + 213 214 201 1 32 31 22 1 + 48 35 36 1 32 141 22 1 + 57 58 46 1 46 48 29 1 + 211 223 222 1 29 48 46 1 + 69 39 49 1 87 25 31 1 + 235 236 214 1 87 57 31 1 + 272 155 156 1 98 99 100 1 + 156 155 101 1 100 99 98 1 + 36 35 25 1 22 141 14 1 + 201 182 190 1 22 9 14 1 + 264 97 96 1 144 112 111 1 + 153 300 301 1 89 140 139 1 + 153 93 129 1 89 88 139 1 + 285 292 282 1 119 126 118 1 + 292 291 282 1 126 125 118 1 + 307 299 301 1 148 138 139 1 + 287 160 281 1 123 122 116 1 + 116 265 288 1 110 111 124 1 + 112 110 118 1 117 116 117 1 + 120 112 119 1 125 117 110 1 + 118 119 112 1 117 110 117 1 + 288 287 281 1 124 123 116 1 + 335 340 339 1 184 185 186 1 + 339 338 335 1 186 187 184 1 + 342 345 344 1 188 189 190 1 + 344 343 342 1 190 191 188 1 + 346 349 348 1 192 193 194 1 + 348 347 346 1 194 195 192 1 + 13 351 350 1 12 196 197 1 + 350 12 13 1 197 198 12 1 + 1 18 341 1 199 200 201 1 + 355 354 353 1 202 203 204 1 + 353 352 355 1 204 205 202 1 + 358 357 356 1 206 207 208 1 + 356 359 358 1 208 209 206 1 + 19 364 363 1 15 210 211 1 + 363 16 19 1 211 10 15 1 + 13 15 365 1 12 11 212 1 + 365 351 13 1 212 196 12 1 + 366 354 355 1 213 203 202 1 + 355 367 366 1 202 214 213 1 + 368 20 339 1 215 216 186 1 + 339 357 368 1 186 217 215 1 + 356 340 336 1 218 185 219 1 + 336 352 356 1 219 220 218 1 + 367 355 337 1 221 222 223 1 + 337 341 367 1 223 201 221 1 + 369 370 23 1 224 225 151 1 + 23 22 369 1 151 150 224 1 + 369 360 364 1 224 226 210 1 + 364 370 369 1 210 225 224 1 + 371 373 372 1 227 228 229 1 + 372 349 371 1 229 193 227 1 + 346 344 375 1 192 190 230 1 + 375 374 346 1 230 231 192 1 + 350 341 18 1 232 201 200 1 + 18 12 350 1 200 233 232 1 + 376 377 334 1 234 235 236 1 + 334 333 376 1 236 237 234 1 + 333 335 338 1 237 184 187 1 + 338 376 333 1 187 234 237 1 + 347 343 344 1 195 191 190 1 + 344 346 347 1 190 192 195 1 + 378 348 349 1 238 194 193 1 + 349 372 378 1 193 229 238 1 + 359 356 352 1 209 208 205 1 + 352 353 359 1 205 204 209 1 + 362 368 357 1 239 240 207 1 + 357 358 362 1 207 206 239 1 + 365 15 16 1 212 11 10 1 + 16 363 365 1 10 211 212 1 + 356 357 339 1 218 217 186 1 + 339 340 356 1 186 185 218 1 + 355 352 336 1 222 220 219 1 + 336 337 355 1 219 223 222 1 + 374 371 349 1 231 227 193 1 + 349 346 374 1 193 192 231 1 + 379 375 344 1 241 230 190 1 + 344 345 379 1 190 189 241 1 + 380 342 343 1 242 188 191 1 + 343 381 380 1 191 243 242 1 + 382 381 343 1 244 243 191 1 + 343 347 382 1 191 195 244 1 + 383 382 347 1 245 244 195 1 + 347 348 383 1 195 194 245 1 + 383 348 378 1 245 194 238 1 + 378 361 383 1 238 246 245 1 + 361 378 372 1 246 238 229 1 + 372 360 361 1 229 247 246 1 + 364 360 372 1 248 247 229 1 + 372 373 364 1 229 228 248 1 + 364 373 371 1 248 228 227 1 + 371 363 364 1 227 249 248 1 + 363 371 374 1 249 227 231 1 + 374 365 363 1 231 250 249 1 + 351 365 374 1 251 250 231 1 + 374 375 351 1 231 230 251 1 + 350 351 375 1 252 251 230 1 + 375 379 350 1 230 241 252 1 + 366 350 379 1 213 252 241 1 + 379 345 366 1 241 189 213 1 + 380 366 345 1 242 213 189 1 + 345 342 380 1 189 188 242 1 + 20 26 338 1 216 253 187 1 + 338 339 20 1 187 186 216 1 + 26 27 376 1 253 254 234 1 + 376 338 26 1 234 187 253 1 + 436 334 377 1 255 236 235 1 + 377 384 436 1 235 256 255 1 + 384 377 27 1 256 235 254 1 + 27 244 384 1 254 257 256 1 + 22 21 368 1 150 133 258 1 + 368 369 22 1 258 224 150 1 + 23 370 19 1 151 225 15 1 + 368 362 360 1 240 239 247 1 + 360 369 368 1 247 259 240 1 + 358 383 361 1 206 245 246 1 + 361 362 358 1 246 239 206 1 + 359 382 383 1 209 244 245 1 + 383 358 359 1 245 206 209 1 + 353 381 382 1 204 243 244 1 + 382 359 353 1 244 209 204 1 + 380 381 353 1 242 243 204 1 + 353 354 380 1 204 203 242 1 + 391 392 387 1 186 185 184 1 + 387 390 391 1 184 187 186 1 + 396 397 394 1 190 189 188 1 + 394 395 396 1 188 191 190 1 + 400 401 398 1 194 193 192 1 + 398 399 400 1 192 195 194 1 + 402 403 178 1 197 196 12 1 + 178 177 402 1 12 198 197 1 + 393 183 163 1 201 200 199 1 + 405 406 407 1 204 203 202 1 + 407 404 405 1 202 260 204 1 + 408 409 410 1 208 207 206 1 + 410 411 408 1 206 209 208 1 + 415 416 184 1 211 210 15 1 + 184 181 415 1 15 10 211 1 + 417 180 178 1 212 11 12 1 + 178 403 417 1 12 196 212 1 + 407 406 418 1 202 203 213 1 + 418 419 407 1 213 214 202 1 + 391 185 420 1 186 216 215 1 + 420 409 391 1 215 217 186 1 + 388 392 408 1 219 185 218 1 + 408 404 388 1 218 220 219 1 + 389 407 419 1 223 222 221 1 + 419 393 389 1 221 201 223 1 + 188 422 421 1 151 225 224 1 + 421 187 188 1 224 150 151 1 + 416 412 421 1 210 226 224 1 + 421 422 416 1 224 225 210 1 + 424 425 423 1 229 228 227 1 + 423 401 424 1 227 193 229 1 + 427 396 398 1 230 190 192 1 + 398 426 427 1 192 231 230 1 + 183 393 402 1 200 201 232 1 + 402 177 183 1 232 233 200 1 + 386 429 428 1 236 235 234 1 + 428 385 386 1 234 237 236 1 + 390 387 385 1 187 184 237 1 + 385 428 390 1 237 234 187 1 + 396 395 399 1 190 191 195 1 + 399 398 396 1 195 192 190 1 + 401 400 430 1 193 194 238 1 + 430 424 401 1 238 229 193 1 + 404 408 411 1 260 208 209 1 + 411 405 404 1 209 204 260 1 + 409 420 414 1 207 240 239 1 + 414 410 409 1 239 206 207 1 + 181 180 417 1 10 11 212 1 + 417 415 181 1 212 211 10 1 + 391 409 408 1 186 217 218 1 + 408 392 391 1 218 185 186 1 + 388 404 407 1 219 220 222 1 + 407 389 388 1 222 223 219 1 + 401 423 426 1 193 227 231 1 + 426 398 401 1 231 192 193 1 + 396 427 431 1 190 230 241 1 + 431 397 396 1 241 189 190 1 + 395 394 432 1 191 188 242 1 + 432 433 395 1 242 243 191 1 + 395 433 434 1 191 243 244 1 + 434 399 395 1 244 195 191 1 + 399 434 435 1 195 244 245 1 + 435 400 399 1 245 194 195 1 + 430 400 435 1 238 194 245 1 + 435 413 430 1 245 246 238 1 + 424 430 413 1 229 238 246 1 + 413 412 424 1 246 247 229 1 + 424 412 416 1 229 247 248 1 + 416 425 424 1 248 228 229 1 + 423 425 416 1 227 228 248 1 + 416 415 423 1 248 249 227 1 + 426 423 415 1 231 227 249 1 + 415 417 426 1 249 250 231 1 + 426 417 403 1 231 250 251 1 + 403 427 426 1 251 230 231 1 + 427 403 402 1 230 251 252 1 + 402 431 427 1 252 241 230 1 + 431 402 418 1 241 252 213 1 + 418 397 431 1 213 189 241 1 + 397 418 432 1 189 213 242 1 + 432 394 397 1 242 188 189 1 + 390 191 185 1 187 253 216 1 + 185 391 390 1 216 186 187 1 + 428 192 191 1 234 254 253 1 + 191 390 428 1 253 187 234 1 + 429 386 436 1 235 236 255 1 + 436 384 429 1 255 256 235 1 + 192 429 384 1 254 235 256 1 + 384 244 192 1 256 257 254 1 + 420 186 187 1 258 133 150 1 + 187 421 420 1 150 224 258 1 + 184 422 188 1 15 225 151 1 + 412 414 420 1 247 239 240 1 + 420 421 412 1 240 259 247 1 + 413 435 410 1 246 245 206 1 + 410 414 413 1 206 239 246 1 + 435 434 411 1 245 244 209 1 + 411 410 435 1 209 206 245 1 + 434 433 405 1 244 243 204 1 + 405 411 434 1 204 209 244 1 + 405 433 432 1 204 243 242 1 + 432 406 405 1 242 203 204 1 + 360 362 361 1 247 239 246 1 + 368 21 20 1 258 133 261 1 + 350 366 367 1 252 213 214 1 + 350 367 341 1 232 221 201 1 + 27 377 376 1 254 235 234 1 + 370 364 19 1 225 210 15 1 + 354 366 380 1 203 213 242 1 + 412 413 414 1 247 246 239 1 + 420 185 186 1 258 261 133 1 + 402 419 418 1 252 214 213 1 + 402 393 419 1 232 201 221 1 + 192 428 429 1 254 234 235 1 + 422 184 416 1 225 15 210 1 + 406 432 418 1 203 242 213 1 + 437 438 439 1 262 263 264 1 + 438 437 440 1 263 262 265 1 + 441 437 442 1 266 262 267 1 + 437 441 443 1 262 266 268 1 + 444 445 439 1 269 270 264 1 + 447 438 448 1 271 263 272 1 + 450 451 440 1 273 274 265 1 + 451 450 452 1 274 273 275 1 + 442 439 445 1 267 264 270 1 + 439 442 437 1 264 267 262 1 + 449 439 438 1 276 264 263 1 + 448 440 451 1 272 265 274 1 + 440 448 438 1 265 272 263 1 + 443 440 437 1 268 265 262 1 + 440 443 450 1 265 268 273 1 + 453 454 455 1 277 278 279 1 + 454 453 456 1 278 277 280 1 + 457 453 458 1 281 277 282 1 + 453 457 459 1 277 281 283 1 + 460 461 455 1 284 285 279 1 + 446 454 445 1 286 278 270 1 + 463 442 456 1 287 267 280 1 + 442 463 441 1 267 287 266 1 + 458 455 461 1 282 279 285 1 + 455 458 453 1 279 282 277 1 + 462 455 454 1 288 279 278 1 + 445 456 442 1 270 280 267 1 + 456 445 454 1 280 270 278 1 + 459 456 453 1 283 280 277 1 + 456 459 463 1 280 283 287 1 + 464 465 466 1 289 290 291 1 + 465 464 467 1 290 289 292 1 + 468 464 469 1 293 289 294 1 + 464 468 470 1 289 293 295 1 + 471 472 466 1 296 297 291 1 + 472 471 473 1 297 296 298 1 + 474 465 475 1 299 290 300 1 + 465 474 476 1 290 299 301 1 + 477 478 467 1 302 303 292 1 + 478 477 479 1 303 302 304 1 + 469 466 472 1 294 291 297 1 + 466 469 464 1 291 294 289 1 + 476 466 465 1 301 291 290 1 + 466 476 471 1 291 301 296 1 + 475 467 478 1 300 292 303 1 + 467 475 465 1 292 300 290 1 + 470 467 464 1 295 292 289 1 + 467 470 477 1 292 295 302 1 + 480 481 482 1 305 306 307 1 + 481 480 483 1 306 305 308 1 + 473 480 484 1 298 305 309 1 + 480 473 471 1 305 298 296 1 + 443 485 482 1 268 310 307 1 + 485 443 441 1 310 268 266 1 + 452 481 486 1 275 306 311 1 + 481 452 450 1 306 275 273 1 + 476 487 483 1 301 312 308 1 + 487 476 474 1 312 301 299 1 + 484 482 485 1 309 307 310 1 + 482 484 480 1 307 309 305 1 + 450 482 481 1 273 307 306 1 + 482 450 443 1 307 273 268 1 + 486 483 487 1 311 308 312 1 + 483 486 481 1 308 311 306 1 + 471 483 480 1 296 308 305 1 + 483 471 476 1 308 296 301 1 + 488 489 490 1 313 314 315 1 + 489 488 491 1 314 313 316 1 + 492 488 493 1 317 313 318 1 + 488 492 494 1 313 317 319 1 + 495 496 490 1 320 321 315 1 + 496 495 497 1 321 320 322 1 + 473 489 472 1 298 314 297 1 + 489 473 498 1 314 298 323 1 + 499 469 491 1 324 294 316 1 + 469 499 468 1 294 324 293 1 + 493 490 496 1 318 315 321 1 + 490 493 488 1 315 318 313 1 + 498 490 489 1 323 315 314 1 + 490 498 495 1 315 323 320 1 + 472 491 469 1 297 316 294 1 + 491 472 489 1 316 297 314 1 + 494 491 488 1 319 316 313 1 + 491 494 499 1 316 319 324 1 + 500 501 502 1 325 326 327 1 + 501 500 503 1 326 325 328 1 + 497 500 504 1 322 325 329 1 + 500 497 495 1 325 322 320 1 + 459 505 502 1 283 330 327 1 + 505 459 457 1 330 283 281 1 + 441 501 485 1 266 326 310 1 + 501 441 463 1 326 266 287 1 + 498 484 503 1 323 309 328 1 + 484 498 473 1 309 323 298 1 + 504 502 505 1 329 327 330 1 + 502 504 500 1 327 329 325 1 + 463 502 501 1 287 327 326 1 + 502 463 459 1 327 287 283 1 + 485 503 484 1 310 328 309 1 + 503 485 501 1 328 310 326 1 + 495 503 500 1 320 328 325 1 + 503 495 498 1 328 320 323 1 + 506 507 508 1 269 270 264 1 + 509 510 511 1 331 263 272 1 + 512 508 510 1 276 264 263 1 + 513 514 515 1 332 285 279 1 + 516 517 507 1 333 278 270 1 + 518 515 517 1 288 279 278 1 + 519 520 521 1 334 335 336 1 + 521 522 519 1 336 337 334 1 + 523 524 519 1 338 339 334 1 + 519 525 523 1 334 340 338 1 + 526 520 527 1 341 335 342 1 + 529 530 521 1 343 344 336 1 + 532 522 533 1 345 337 346 1 + 533 534 532 1 346 347 345 1 + 524 527 520 1 339 342 335 1 + 520 519 524 1 335 334 339 1 + 531 521 520 1 348 336 335 1 + 530 533 522 1 344 346 337 1 + 522 521 530 1 337 336 344 1 + 525 519 522 1 340 334 337 1 + 522 532 525 1 337 345 340 1 + 535 536 537 1 349 350 351 1 + 537 538 535 1 351 352 349 1 + 539 540 535 1 353 354 349 1 + 535 541 539 1 349 355 353 1 + 542 536 543 1 356 350 357 1 + 528 527 537 1 358 342 351 1 + 545 538 524 1 359 352 339 1 + 524 523 545 1 339 338 359 1 + 540 543 536 1 354 357 350 1 + 536 535 540 1 350 349 354 1 + 544 537 536 1 360 351 350 1 + 527 524 538 1 342 339 352 1 + 538 537 527 1 352 351 342 1 + 541 535 538 1 355 349 352 1 + 538 545 541 1 352 359 355 1 + 546 547 548 1 361 362 363 1 + 548 549 546 1 363 364 361 1 + 550 551 546 1 365 366 361 1 + 546 552 550 1 361 367 365 1 + 553 547 554 1 368 362 369 1 + 554 555 553 1 369 370 368 1 + 556 557 548 1 371 372 363 1 + 548 558 556 1 363 373 371 1 + 559 549 560 1 374 364 375 1 + 560 561 559 1 375 376 374 1 + 551 554 547 1 366 369 362 1 + 547 546 551 1 362 361 366 1 + 558 548 547 1 373 363 362 1 + 547 553 558 1 362 368 373 1 + 557 560 549 1 372 375 364 1 + 549 548 557 1 364 363 372 1 + 552 546 549 1 367 361 364 1 + 549 559 552 1 364 374 367 1 + 562 563 564 1 377 378 379 1 + 564 565 562 1 379 380 377 1 + 555 566 562 1 370 381 377 1 + 562 553 555 1 377 368 370 1 + 525 563 567 1 340 378 382 1 + 567 523 525 1 382 338 340 1 + 534 568 564 1 347 383 379 1 + 564 532 534 1 379 345 347 1 + 558 565 569 1 373 380 384 1 + 569 556 558 1 384 371 373 1 + 566 567 563 1 381 382 378 1 + 563 562 566 1 378 377 381 1 + 532 564 563 1 345 379 378 1 + 563 525 532 1 378 340 345 1 + 568 569 565 1 383 384 380 1 + 565 564 568 1 380 379 383 1 + 553 562 565 1 368 377 380 1 + 565 558 553 1 380 373 368 1 + 570 571 572 1 385 386 387 1 + 572 573 570 1 387 388 385 1 + 574 575 570 1 389 390 385 1 + 570 576 574 1 385 391 389 1 + 577 571 578 1 392 386 393 1 + 578 579 577 1 393 394 392 1 + 555 554 572 1 370 369 387 1 + 572 580 555 1 387 395 370 1 + 581 573 551 1 396 388 366 1 + 551 550 581 1 366 365 396 1 + 575 578 571 1 390 393 386 1 + 571 570 575 1 386 385 390 1 + 580 572 571 1 395 387 386 1 + 571 577 580 1 386 392 395 1 + 554 551 573 1 369 366 388 1 + 573 572 554 1 388 387 369 1 + 576 570 573 1 391 385 388 1 + 573 581 576 1 388 396 391 1 + 582 583 584 1 397 398 399 1 + 584 585 582 1 399 400 397 1 + 579 586 582 1 394 401 397 1 + 582 577 579 1 397 392 394 1 + 541 583 587 1 355 398 402 1 + 587 539 541 1 402 353 355 1 + 523 567 584 1 338 382 399 1 + 584 545 523 1 399 359 338 1 + 580 585 566 1 395 400 381 1 + 566 555 580 1 381 370 395 1 + 586 587 583 1 401 402 398 1 + 583 582 586 1 398 397 401 1 + 545 584 583 1 359 399 398 1 + 583 541 545 1 398 355 359 1 + 567 566 585 1 382 381 400 1 + 585 584 567 1 400 399 382 1 + 577 582 585 1 392 397 400 1 + 585 580 577 1 400 395 392 1 + 590 589 588 1 348 336 335 1 + 592 591 593 1 403 335 342 1 + 595 594 596 1 404 344 336 1 + 598 597 599 1 356 350 357 1 + 600 593 601 1 405 342 351 1 + 602 601 597 1 406 351 350 1 + 603 604 605 1 407 408 409 1 + 605 606 603 1 409 410 407 1 + 607 605 604 1 411 409 408 1 + 604 608 607 1 408 412 411 1 + 609 610 605 1 413 414 409 1 + 605 607 609 1 409 411 413 1 + 606 605 610 1 410 409 414 1 + 610 611 606 1 414 415 410 1 + 608 612 613 1 412 416 417 1 + 613 607 608 1 417 411 412 1 + 614 613 612 1 418 417 416 1 + 612 615 614 1 416 419 418 1 + 616 617 613 1 420 421 417 1 + 613 614 616 1 417 418 420 1 + 607 613 617 1 411 417 421 1 + 617 609 607 1 421 413 411 1 + 618 619 620 1 422 423 424 1 + 620 621 618 1 424 425 422 1 + 622 620 619 1 426 424 423 1 + 620 622 623 1 424 426 427 1 + 608 604 620 1 412 408 424 1 + 620 623 608 1 424 427 412 1 + 621 620 604 1 425 424 408 1 + 604 603 621 1 408 407 425 1 + 622 624 625 1 426 428 429 1 + 625 623 622 1 429 427 426 1 + 626 625 624 1 430 429 428 1 + 625 626 627 1 429 430 431 1 + 615 612 625 1 419 416 429 1 + 625 627 615 1 429 431 419 1 + 623 625 612 1 427 429 416 1 + 612 608 623 1 416 412 427 1 + 615 627 628 1 419 431 432 1 + 628 629 615 1 432 433 419 1 + 630 628 627 1 434 432 431 1 + 627 626 630 1 431 430 434 1 + 631 632 628 1 435 436 432 1 + 628 630 631 1 432 434 435 1 + 629 628 632 1 433 432 436 1 + 632 633 629 1 436 437 433 1 + 633 632 634 1 437 436 438 1 + 634 635 633 1 438 439 437 1 + 636 634 632 1 440 438 436 1 + 632 631 636 1 436 435 440 1 + 637 638 634 1 441 442 438 1 + 634 636 637 1 438 440 441 1 + 635 634 638 1 439 438 442 1 + 638 639 635 1 442 443 439 1 + 631 630 640 1 435 434 444 1 + 640 641 631 1 444 445 435 1 + 642 640 630 1 446 444 434 1 + 630 626 642 1 434 430 446 1 + 643 644 640 1 447 448 444 1 + 640 642 643 1 444 446 447 1 + 641 640 644 1 445 444 448 1 + 644 645 641 1 448 449 445 1 + 637 636 646 1 441 440 450 1 + 646 647 637 1 450 451 441 1 + 641 646 636 1 445 450 440 1 + 636 631 641 1 440 435 445 1 + 645 648 646 1 449 452 450 1 + 646 641 645 1 450 445 449 1 + 647 646 648 1 451 450 452 1 + 648 649 647 1 452 453 451 1 + 643 642 650 1 447 446 454 1 + 650 651 643 1 454 455 447 1 + 624 650 642 1 428 454 446 1 + 642 626 624 1 446 430 428 1 + 622 619 650 1 426 423 454 1 + 650 624 622 1 454 428 426 1 + 651 650 619 1 455 454 423 1 + 619 618 651 1 423 422 455 1 + 652 603 653 1 408 407 409 1 + 606 653 603 1 410 409 407 1 + 653 654 652 1 409 411 408 1 + 655 652 654 1 412 408 411 1 + 656 657 653 1 414 413 409 1 + 654 653 657 1 411 409 413 1 + 653 606 656 1 409 410 414 1 + 611 656 606 1 415 414 410 1 + 658 655 659 1 416 412 417 1 + 654 659 655 1 411 417 412 1 + 659 660 658 1 417 418 416 1 + 661 658 660 1 419 416 418 1 + 662 663 659 1 421 420 417 1 + 660 659 663 1 418 417 420 1 + 659 654 662 1 417 411 421 1 + 657 662 654 1 413 421 411 1 + 664 618 665 1 423 422 424 1 + 621 665 618 1 425 424 422 1 + 665 666 667 1 424 427 426 1 + 667 664 665 1 426 423 424 1 + 652 655 665 1 408 412 424 1 + 666 665 655 1 427 424 412 1 + 665 621 652 1 424 425 408 1 + 603 652 621 1 407 408 425 1 + 668 667 669 1 428 426 429 1 + 666 669 667 1 427 429 426 1 + 669 670 671 1 429 431 430 1 + 671 668 669 1 430 428 429 1 + 658 661 669 1 416 419 429 1 + 670 669 661 1 431 429 419 1 + 669 666 658 1 429 427 416 1 + 655 658 666 1 412 416 427 1 + 670 661 672 1 431 419 432 1 + 673 672 661 1 433 432 419 1 + 672 674 670 1 432 434 431 1 + 671 670 674 1 430 431 434 1 + 675 676 672 1 436 435 432 1 + 674 672 676 1 434 432 435 1 + 672 673 675 1 432 433 436 1 + 677 675 673 1 437 436 433 1 + 675 677 678 1 436 437 438 1 + 679 678 677 1 439 438 437 1 + 678 680 675 1 438 440 436 1 + 676 675 680 1 435 436 440 1 + 681 682 678 1 442 441 438 1 + 680 678 682 1 440 438 441 1 + 678 679 681 1 438 439 442 1 + 683 681 679 1 443 442 439 1 + 674 676 684 1 434 435 444 1 + 685 684 676 1 445 444 435 1 + 684 686 674 1 444 446 434 1 + 671 674 686 1 430 434 446 1 + 644 643 684 1 448 447 444 1 + 686 684 643 1 446 444 447 1 + 684 685 644 1 444 445 448 1 + 645 644 685 1 449 448 445 1 + 680 682 687 1 440 441 450 1 + 688 687 682 1 451 450 441 1 + 687 685 680 1 450 445 440 1 + 676 680 685 1 435 440 445 1 + 648 645 687 1 452 449 450 1 + 685 687 645 1 445 450 449 1 + 687 688 648 1 450 451 452 1 + 649 648 688 1 453 452 451 1 + 686 643 689 1 446 447 454 1 + 651 689 643 1 455 454 447 1 + 689 668 686 1 454 428 446 1 + 671 686 668 1 430 446 428 1 + 664 667 689 1 423 426 454 1 + 668 689 667 1 428 454 426 1 + 689 651 664 1 454 455 423 1 + 618 664 651 1 422 423 455 1 + 691 690 692 1 435 436 432 1 + 692 693 691 1 432 434 435 1 + 694 692 690 1 433 432 436 1 + 690 695 694 1 436 437 433 1 + 695 690 696 1 437 436 438 1 + 696 697 695 1 438 439 437 1 + 698 696 690 1 440 438 436 1 + 690 691 698 1 436 435 440 1 + 700 699 696 1 441 442 438 1 + 696 698 700 1 438 440 441 1 + 697 696 699 1 439 438 442 1 + 699 701 697 1 442 443 439 1 + 691 693 702 1 435 434 444 1 + 702 703 691 1 444 445 435 1 + 703 702 704 1 445 444 448 1 + 704 705 703 1 448 449 445 1 + 700 698 706 1 441 440 450 1 + 706 707 700 1 450 451 441 1 + 703 706 698 1 445 450 440 1 + 698 691 703 1 440 435 445 1 + 705 708 706 1 449 452 450 1 + 706 703 705 1 450 445 449 1 + 707 706 708 1 451 450 452 1 + 708 709 707 1 452 453 451 1 + 711 710 712 1 436 435 432 1 + 713 712 710 1 434 432 435 1 + 712 714 711 1 432 433 436 1 + 715 711 714 1 437 436 433 1 + 711 715 716 1 436 437 438 1 + 717 716 715 1 439 438 437 1 + 716 718 711 1 438 440 436 1 + 710 711 718 1 435 436 440 1 + 720 719 716 1 442 441 438 1 + 718 716 719 1 440 438 441 1 + 716 717 720 1 438 439 442 1 + 721 720 717 1 443 442 439 1 + 713 710 722 1 434 435 444 1 + 723 722 710 1 445 444 435 1 + 722 723 704 1 444 445 448 1 + 705 704 723 1 449 448 445 1 + 718 719 724 1 440 441 450 1 + 725 724 719 1 451 450 441 1 + 724 723 718 1 450 445 440 1 + 710 718 723 1 435 440 445 1 + 708 705 724 1 452 449 450 1 + 723 724 705 1 445 450 449 1 + 724 725 708 1 450 451 452 1 + 709 708 725 1 453 452 451 1 + tverts 456 + 0.176215 0.209554 0 + 0.181091 0.195624 0 + 0.196576 0.221574 0 + 0.191486 0.231694 0 + 0.05662 0.038887 0 + 0.054399 0.044636 0 + 0.009802 0.023331 0 + 0.009842 0.01436 0 + 0.196469 0.557379 0 + 0.194573 0.504653 0 + 0.215058 0.476418 0 + 0.22971 0.53162 0 + 0.23003 0.598812 0 + 0.198586 0.615316 0 + 0.198903 0.443439 0 + 0.215921 0.438545 0 + 0.185931 0.621072 0 + 0.169616 0.568406 0 + 0.057999 0.64506 0 + 0.05408 0.646015 0 + 0.048952 0.612929 0 + 0.051656 0.613526 0 + 0.152965 0.482109 0 + 0.096444 0.278868 0 + 0.121251 0.30889 0 + 0.099858 0.324391 0 + 0.061611 0.420904 0 + 0.139519 0.274204 0 + 0.074371 0.150767 0 + 0.168443 0.251478 0 + 0.167278 0.29272 0 + 0.126697 0.41088 0 + 0.143001 0.338532 0 + 0.118213 0.569201 0 + 0.146194 0.604783 0 + 0.136195 0.626443 0 + 0.111955 0.599195 0 + 0.098282 0.786478 0 + 0.16898 0.759031 0 + 0.173771 0.842642 0 + 0.101192 0.887484 0 + 0.05202 0.878635 0 + 0.034985 0.729493 0 + 0.166176 0.949846 0 + 0.099943 0.981609 0 + 0.035262 0.982945 0 + 0.087469 0.122778 0 + 0.088295 0.11235 0 + 0.174918 0.223155 0 + 0.050881 0.054101 0 + 0.0098 0.034483 0 + 0.209871 0.725989 0 + 0.180329 0.657488 0 + 0.098365 0.700879 0 + 0.069744 0.680714 0 + 0.074138 0.660273 0 + 0.101964 0.675734 0 + 0.118124 0.497325 0 + 0.133414 0.657584 0 + 0.146845 0.670068 0 + 0.135526 0.697263 0 + 0.124906 0.663953 0 + 0.009839 0.102351 0 + 0.042435 0.099239 0 + 0.16271 0.079396 0 + 0.188111 0.108485 0 + 0.215741 0.07582 0 + 0.188002 0.039459 0 + 0.234718 0.104343 0 + 0.207398 0.141173 0 + 0.098978 0.631335 0 + 0.130123 0.655998 0 + 0.124214 0.660933 0 + 0.102951 0.670098 0 + 0.07583 0.658103 0 + 0.061726 0.64391 0 + 0.1338 0.6295 0 + 0.138536 0.642444 0 + 0.110602 0.602656 0 + 0.085757 0.598292 0 + 0.076459 0.577118 0 + 0.143365 0.641787 0 + 0.150455 0.641891 0 + 0.088025 0.601573 0 + 0.05548 0.616984 0 + 0.070635 0.563405 0 + 0.050695 0.522679 0 + 0.090235 0.473295 0 + 0.037393 0.132607 0 + 0.010006 0.126651 0 + 0.069447 0.166493 0 + 0.120681 0.266277 0 + 0.010029 0.545547 0 + 0.010091 0.52486 0 + 0.027786 0.521718 0 + 0.027425 0.547135 0 + 0.02732 0.577172 0 + 0.010001 0.578206 0 + 0.022019 0.672611 0 + 0.010304 0.666623 0 + 0.010275 0.729232 0 + 0.008921 0.867256 0 + 0.011587 0.95339 0 + 0.091103 0.103098 0 + 0.044604 0.604842 0 + 0.04846 0.649881 0 + 0.032887 0.661201 0 + 0.033532 0.593474 0 + 0.054486 0.486451 0 + 0.056961 0.34066 0 + 0.047931 0.386139 0 + 0.02523 0.382935 0 + 0.025055 0.346793 0 + 0.023739 0.458376 0 + 0.009707 0.457527 0 + 0.01009 0.437974 0 + 0.024416 0.438297 0 + 0.039008 0.439624 0 + 0.043939 0.459158 0 + 0.050304 0.459161 0 + 0.027878 0.490697 0 + 0.010294 0.489211 0 + 0.010158 0.427038 0 + 0.020044 0.411589 0 + 0.027944 0.403917 0 + 0.044827 0.423512 0 + 0.057983 0.421527 0 + 0.052567 0.472372 0 + 0.027316 0.510658 0 + 0.010531 0.508563 0 + 0.187977 0.245087 0 + 0.181898 0.263882 0 + 0.188004 0.335566 0 + 0.229268 0.283718 0 + 0.232204 0.262315 0 + 0.249157 0.316288 0 + 0.252624 0.378771 0 + 0.098825 0.243645 0 + 0.072014 0.220456 0 + 0.034532 0.193014 0 + 0.009367 0.192732 0 + 0.164249 0.387303 0 + 0.089326 0.245869 0 + 0.053778 0.314623 0 + 0.010883 0.382363 0 + 0.009356 0.320389 0 + 0.025045 0.320285 0 + 0.069269 0.225055 0 + 0.03617 0.203619 0 + 0.009375 0.201245 0 + 0.221925 0.303162 0 + 0.214897 0.314036 0 + 0.211188 0.379468 0 + 0.063887 0.693715 0 + 0.094316 0.719488 0 + 0.138486 0.71878 0 + 0.158861 0.693801 0 + 0.151315 0.597958 0 + 0.169133 0.631801 0 + 0.118249 0.555055 0 + 0.20477 0.796458 0 + 0.223048 0.667331 0 + 0.223078 0.804419 0 + 0.010915 0.382345 0 + 0.025119 0.287455 0 + 0.009338 0.289346 0 + 0.05422 0.288233 0 + 0.031238 0.237526 0 + 0.025634 0.250291 0 + 0.008817 0.241804 0 + 0.008822 0.232429 0 + 0.034301 0.218839 0 + 0.060014 0.231335 0 + 0.00882 0.221153 0 + 0.057058 0.247319 0 + 0.05513 0.255554 0 + 0.025262 0.274897 0 + 0.025681 0.250955 0 + 0.055466 0.256497 0 + 0.054254 0.28096 0 + 0.008867 0.248441 0 + 0.146536 0.604783 0 + 0.135688 0.049653 0 + 0.156032 0.011865 0 + 0.190633 0.097126 0 + 0.17495 0.120631 0 + 0.175281 0.150031 0 + 0.190542 0.13152 0 + 0.346326 0.247738 0 + 0.327645 0.270771 0 + 0.314808 0.203609 0 + 0.345336 0.204013 0 + 0.305905 0.175166 0 + 0.290265 0.148474 0 + 0.313296 0.121366 0 + 0.335176 0.16277 0 + 0.276612 0.560819 0 + 0.29068 0.630475 0 + 0.227468 0.673996 0 + 0.075988 0.060928 0 + 0.079486 0.066202 0 + 0.107449 0.055824 0 + 0.367548 0.262602 0 + 0.357248 0.286974 0 + 0.357719 0.207686 0 + 0.369065 0.199043 0 + 0.321441 0.101402 0 + 0.322251 0.074184 0 + 0.352918 0.131095 0 + 0.347225 0.151286 0 + 0.238366 0.436312 0 + 0.267216 0.458688 0 + 0.275749 0.512991 0 + 0.335771 0.301626 0 + 0.335485 0.308935 0 + 0.156158 0.173205 0 + 0.173594 0.198173 0 + 0.159473 0.161588 0 + 0.160172 0.140573 0 + 0.169531 0.099661 0 + 0.157817 0.127745 0 + 0.143566 0.123355 0 + 0.151358 0.120294 0 + 0.15151 0.054713 0 + 0.237236 0.365456 0 + 0.231007 0.402776 0 + 0.255392 0.415377 0 + 0.261936 0.193967 0 + 0.251749 0.147443 0 + 0.252459 0.096316 0 + 0.287628 0.253128 0 + 0.275959 0.225637 0 + 0.119852 0.126004 0 + 0.092172 0.094007 0 + 0.208821 0.119958 0 + 0.242232 0.082002 0 + 0.232256 0.033289 0 + 0.224534 0.064287 0 + 0.290891 0.099908 0 + 0.287206 0.06877 0 + 0.300165 0.061661 0 + 0.30624 0.26988 0 + 0.357215 0.280861 0 + 0.356816 0.209176 0 + 0.346634 0.155276 0 + 0.320431 0.106488 0 + 0.287652 0.073612 0 + 0.246191 0.075436 0 + 0.242269 0.146023 0 + 0.252412 0.213472 0 + 0.268422 0.243329 0 + 0.28505 0.275516 0 + 0.310685 0.307656 0 + 0.193027 0.172341 0 + 0.212639 0.153642 0 + 0.242973 0.020273 0 + 0.255309 0.07141 0 + 0.226859 0.141949 0 + 0.254755 0.409456 0 + 0.264138 0.047499 0 + 0.368438 0.199043 0 + 0.26416 0.389977 0 + 0.948537 0.231432 0 + 0.967268 0.124155 0 + 0.944444 0.121947 0 + 0.968601 0.234182 0 + 0.930748 0.336573 0 + 0.92757 0.229947 0 + 0.951572 0.337146 0 + 0.930706 0.041228 0 + 0.923576 0.121681 0 + 0.97776 0.032169 0 + 0.987809 0.125015 0 + 0.969953 0.337012 0 + 0.985116 0.235292 0 + 0.983166 0.335645 0 + 0.958864 0.0396 0 + 0.888163 0.231053 0 + 0.905711 0.126595 0 + 0.88797 0.13553 0 + 0.90805 0.229829 0 + 0.873088 0.330725 0 + 0.87156 0.234423 0 + 0.889945 0.330417 0 + 0.887843 0.05251 0 + 0.87156 0.143653 0 + 0.907218 0.042881 0 + 0.910587 0.33347 0 + 0.902568 0.046832 0 + 0.966099 0.545189 0 + 0.973803 0.51239 0 + 0.95834 0.512555 0 + 0.978314 0.537265 0 + 0.959643 0.589694 0 + 0.948846 0.559623 0 + 0.977116 0.572105 0 + 0.952847 0.474851 0 + 0.941079 0.519754 0 + 0.93529 0.479789 0 + 0.982039 0.474813 0 + 0.982269 0.514515 0 + 0.971126 0.474795 0 + 0.986403 0.562714 0 + 0.985188 0.537167 0 + 0.992739 0.562442 0 + 0.951588 0.433056 0 + 0.970182 0.382965 0 + 0.951985 0.385817 0 + 0.970379 0.428893 0 + 0.932856 0.438638 0 + 0.932122 0.387989 0 + 0.982487 0.381399 0 + 0.982177 0.426847 0 + 0.919745 0.579879 0 + 0.922936 0.530825 0 + 0.908462 0.544832 0 + 0.933884 0.570094 0 + 0.917332 0.623947 0 + 0.907387 0.592937 0 + 0.930203 0.614097 0 + 0.900562 0.504143 0 + 0.89615 0.561865 0 + 0.886117 0.519676 0 + 0.915642 0.4901 0 + 0.944758 0.602137 0 + 0.8944 0.442419 0 + 0.911696 0.386647 0 + 0.891433 0.38532 0 + 0.912469 0.44102 0 + 0.876767 0.446927 0 + 0.874079 0.386704 0 + 0.988828 0.032169 0 + 0.876775 0.05251 0 + 0.909432 0.043988 0 + 0.948537 0.231432 0 + 0.944444 0.121947 0 + 0.967268 0.124155 0 + 0.968601 0.234182 0 + 0.930748 0.336573 0 + 0.92757 0.229947 0 + 0.951572 0.337146 0 + 0.941775 0.041228 0 + 0.923576 0.121681 0 + 0.988828 0.032169 0 + 0.987809 0.125015 0 + 0.969953 0.337012 0 + 0.985116 0.235292 0 + 0.983166 0.335645 0 + 0.969933 0.0396 0 + 0.888163 0.231053 0 + 0.88797 0.13553 0 + 0.905711 0.126595 0 + 0.90805 0.229829 0 + 0.873088 0.330725 0 + 0.87156 0.234423 0 + 0.889945 0.330417 0 + 0.887843 0.05251 0 + 0.87156 0.143653 0 + 0.918286 0.042881 0 + 0.910587 0.33347 0 + 0.902568 0.046832 0 + 0.966099 0.545189 0 + 0.95834 0.512555 0 + 0.973803 0.51239 0 + 0.978314 0.537265 0 + 0.959643 0.589694 0 + 0.948846 0.559623 0 + 0.977116 0.572105 0 + 0.952847 0.474851 0 + 0.941079 0.519754 0 + 0.93529 0.479789 0 + 0.982039 0.474813 0 + 0.982269 0.514515 0 + 0.971126 0.474795 0 + 0.986403 0.562714 0 + 0.985188 0.537167 0 + 0.992739 0.562442 0 + 0.951588 0.433056 0 + 0.951985 0.385817 0 + 0.970182 0.382965 0 + 0.970379 0.428893 0 + 0.932856 0.438638 0 + 0.932122 0.387989 0 + 0.982487 0.381399 0 + 0.982177 0.426847 0 + 0.919745 0.579879 0 + 0.908462 0.544832 0 + 0.922936 0.530825 0 + 0.933884 0.570094 0 + 0.917332 0.623947 0 + 0.907387 0.592937 0 + 0.930203 0.614097 0 + 0.900562 0.504143 0 + 0.89615 0.561865 0 + 0.886117 0.519676 0 + 0.915642 0.4901 0 + 0.944758 0.602137 0 + 0.8944 0.442419 0 + 0.891433 0.38532 0 + 0.911696 0.386647 0 + 0.912469 0.44102 0 + 0.876767 0.446927 0 + 0.874079 0.386704 0 + 0.930706 0.041228 0 + 0.97776 0.032169 0 + 0.909432 0.043988 0 + 0.8915 0.046832 0 + 0.84871 0.985669 0 + 0.857283 0.914342 0 + 0.913383 0.916206 0 + 0.918535 0.98477 0 + 0.915587 0.844471 0 + 0.869158 0.839336 0 + 0.947461 0.847874 0 + 0.948174 0.915038 0 + 0.951123 0.971552 0 + 0.877822 0.74568 0 + 0.918917 0.772366 0 + 0.924812 0.70132 0 + 0.883074 0.645483 0 + 0.950238 0.741266 0 + 0.948102 0.791681 0 + 0.754225 0.900209 0 + 0.778656 0.846008 0 + 0.814953 0.889865 0 + 0.795918 0.958059 0 + 0.802588 0.807401 0 + 0.833904 0.825968 0 + 0.801511 0.761393 0 + 0.837772 0.749225 0 + 0.79606 0.704793 0 + 0.837653 0.665715 0 + 0.837525 0.61029 0 + 0.870052 0.590816 0 + 0.797263 0.630198 0 + 0.79682 0.553786 0 + 0.83309 0.530935 0 + 0.863026 0.502875 0 + 0.825728 0.46288 0 + 0.85981 0.424105 0 + 0.789872 0.486441 0 + 0.780481 0.396972 0 + 0.815632 0.366629 0 + 0.852864 0.315566 0 + 0.746292 0.655087 0 + 0.746029 0.584924 0 + 0.750171 0.730072 0 + 0.710114 0.755098 0 + 0.703034 0.670007 0 + 0.701565 0.602515 0 + 0.740068 0.520792 0 + 0.727742 0.430157 0 + 0.695583 0.543232 0 + 0.682346 0.458405 0 + 0.764479 0.796506 0 + 0.72919 0.839126 0 + constraints 726 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 116.0 + 116.0 + 0.0 + 0.0 + 0.0 + 0.0 + 191.0 + 116.0 + 191.0 + 191.0 + 116.0 + 191.0 + 0.0 + 0.0 + 0.0 + 0.0 + 116.0 + 116.0 + 0.0 + 0.0 + 0.0 + 0.0 + 191.0 + 116.0 + 191.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 191.0 + 116.0 + 116.0 + 191.0 + 116.0 + 116.0 + 191.0 + 191.0 + 116.0 + 116.0 + 191.0 + 116.0 + 191.0 + 0.0 + 116.0 + 116.0 + 0.0 + 0.0 + 0.0 + 0.0 + 191.0 + 116.0 + 191.0 + 191.0 + 116.0 + 191.0 + 0.0 + 0.0 + 0.0 + 0.0 + 116.0 + 116.0 + 0.0 + 0.0 + 0.0 + 0.0 + 213.0 + 116.0 + 213.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 116.0 + 116.0 + 191.0 + 116.0 + 191.0 + 116.0 + 116.0 + 191.0 + 116.0 + 116.0 + 213.0 + 116.0 + 213.0 + 116.0 + 213.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 116.0 + 116.0 + 138.0 + 223.0 + 191.0 + 91.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 138.0 + 223.0 + 138.0 + 223.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 116.0 + 0.0 + 116.0 + 0.0 + 0.0 + 91.0 + 0.0 + 0.0 + 0.0 + 138.0 + 138.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 116.0 + 116.0 + 138.0 + 191.0 + 223.0 + 91.0 + 0.0 + 0.0 + 0.0 + 0.0 + 138.0 + 223.0 + 138.0 + 223.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 116.0 + 0.0 + 116.0 + 0.0 + 0.0 + 91.0 + 0.0 + 0.0 + 138.0 + 138.0 +endnode +node emitter EyeGlow02 + parent head_g + position -0.113384 0.226237 0.318176 + orientation 1.0 -2.93976e-007 -1.68748e-006 -1.2859 + wirecolor 0.694118 0.694118 0.694118 + update_sel 1 + update Fountain + render_sel 1 + render Normal + blend_sel 3 + Blend Lighten + spawntype_sel 0 + spawnType -1 + xSize 0.0 + ySize 0.0 + inherit 1 + inherit_local 0 + inheritvel 0 + inherit_part 0 + renderorder 0 + threshold 0.0 + combinetime 0.0 + deadspace 0.0 + opacity 0.5 + colorStart 1.0 0.921569 0.0431373 + colorEnd 1.0 0.733333 0.00784314 + alphaStart 0.2 + alphaEnd 0.0 + sizeStart 0.05 + sizeEnd 0.07 + sizeStart_y 0.0 + sizeEnd_y 0.0 + birthrate 20 + lifeExp 1.0 + Mass 0.0 + spread 1.5708 + particleRot 0.0 + velocity 0.04 + randvel 0.02 + bounce_co 0.0 + blurlength 1.0 + loop 0 + bounce 0 + m_isTinted 0 + Splat 0 + affectedByWind false + texture fxpa_flame05 + twosidedtex 0 + xgrid 4 + ygrid 4 + fps 16 + framestart 0 + frameend 0 + random 1 + lightningDelay 0.0 + lightningRadius 0.0 + lightningSubDiv 0 + lightningScale 0.0 + blastRadius 0.0 + blastLength 0.0 + p2p 0 + p2p_type Bezier + p2p_sel 1 + p2p_bezier2 0.0 + p2p_bezier3 0.0 + grav 0.0 + Drag 0.0 +endnode +node emitter EyeGlow01 + parent head_g + position 0.0421989 0.233225 0.324436 + orientation 1.0 -2.93976e-007 -1.68748e-006 -1.2859 + wirecolor 0.694118 0.694118 0.694118 + update_sel 1 + update Fountain + render_sel 1 + render Normal + blend_sel 3 + Blend Lighten + spawntype_sel 0 + spawnType -1 + xSize 0.0 + ySize 0.0 + inherit 1 + inherit_local 0 + inheritvel 0 + inherit_part 0 + renderorder 0 + threshold 0.0 + combinetime 0.0 + deadspace 0.0 + opacity 0.5 + colorStart 1.0 0.921569 0.0431373 + colorEnd 1.0 0.733333 0.00784314 + alphaStart 0.2 + alphaEnd 0.0 + sizeStart 0.05 + sizeEnd 0.07 + sizeStart_y 0.0 + sizeEnd_y 0.0 + birthrate 20 + lifeExp 1.0 + Mass 0.0 + spread 1.5708 + particleRot 0.0 + velocity 0.04 + randvel 0.02 + bounce_co 0.0 + blurlength 1.0 + loop 0 + bounce 0 + m_isTinted 0 + Splat 0 + affectedByWind false + texture fxpa_flame05 + twosidedtex 0 + xgrid 4 + ygrid 4 + fps 16 + framestart 0 + frameend 0 + random 1 + lightningDelay 0.0 + lightningRadius 0.0 + lightningSubDiv 0 + lightningScale 0.0 + blastRadius 0.0 + blastLength 0.0 + p2p 0 + p2p_type Bezier + p2p_sel 1 + p2p_bezier2 0.0 + p2p_bezier3 0.0 + grav 0.0 + Drag 0.0 +endnode +node trimesh Object01 + parent head_g + position -0.0322162 0.127147 -1.87187 + orientation -1.0 -3.28103e-007 0.0 -0.0625087 + wirecolor 0.839216 0.894118 0.647059 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 10 + center -0.000710011 25.5981 199.925 + bitmap c_Marilit2hd + verts 21 + 0.01307 0.250215 2.0263 + 0.011665 0.299122 2.02096 + -1.25793e-006 0.306597 2.02615 + -5.45245e-006 0.243175 2.03227 + 0.0227324 0.195379 2.04062 + -5.87466e-006 0.197592 2.04646 + 0.0243993 0.168275 2.03175 + -6.28987e-006 0.167914 2.03737 + 0.00882525 0.33194 2.00683 + 0.0149975 0.335293 1.99772 + -0.00094085 0.30457 2.01976 + 0.0099558 0.335353 1.99777 + -0.012281 0.255396 2.0247 + -0.0123444 0.300204 2.02091 + -0.0227429 0.195378 2.04062 + -0.0244135 0.168277 2.03175 + -0.00882562 0.33194 2.00683 + -0.0150008 0.335293 1.99772 + -0.0099591 0.335353 1.99777 + 0.0158137 0.344047 1.95204 + -0.0158182 0.344047 1.95204 + faces 33 + 2 3 0 1 8 21 2 1 + 0 1 2 1 2 3 8 1 + 3 5 4 1 21 23 22 1 + 4 0 3 1 22 2 21 1 + 5 7 6 1 5 7 6 1 + 6 4 5 1 6 4 5 1 + 1 9 8 1 3 25 24 1 + 8 2 1 1 24 8 3 1 + 10 11 9 2 10 11 9 1 + 9 1 10 2 9 1 10 1 + 10 2 8 4 26 8 24 1 + 8 11 10 4 24 27 26 1 + 2 13 12 1 8 29 28 1 + 12 3 2 1 28 21 8 1 + 3 12 14 1 21 28 30 1 + 14 5 3 1 30 23 21 1 + 5 14 15 1 5 14 15 1 + 15 7 5 1 15 7 5 1 + 13 2 16 1 29 8 31 1 + 16 17 13 1 31 32 29 1 + 10 13 17 8 10 13 17 1 + 17 18 10 8 17 18 10 1 + 10 18 16 16 26 33 31 1 + 16 2 10 16 31 8 26 1 + 10 1 0 2 10 1 0 1 + 0 12 10 2 0 12 10 1 + 8 9 19 1 24 25 34 1 + 19 11 8 4 34 27 24 1 + 11 19 9 2 11 19 9 1 + 13 10 12 2 13 10 12 1 + 20 17 16 1 35 32 31 1 + 16 18 20 16 16 18 20 1 + 18 17 20 8 18 17 20 1 + tverts 36 + 0.456156 0.123875 0 + 0.457044 0.0793012 0 + 0.454866 0.144698 0 + 0.460241 0.0928888 0 + 0.450178 0.177758 0 + 0.462975 0.168812 0 + 0.448586 0.20081 0 + 0.462444 0.193339 0 + 0.47465 0.0889321 0 + 0.454158 0.0425559 0 + 0.450183 0.0798647 0 + 0.451689 0.0453166 0 + 0.471207 0.11041 0 + 0.470923 0.0727884 0 + 0.475721 0.162146 0 + 0.476346 0.18386 0 + 0.479918 0.042369 0 + 0.485722 0.036326 0 + 0.450705 0.0459872 0 + 0.452269 0.0189625 0 + 0.496388 0.0111107 0 + 0.469727 0.155717 0 + 0.440082 0.207352 0 + 0.46684 0.20945 0 + 0.465329 0.052022 0 + 0.457897 0.0431068 0 + 0.475135 0.0872471 0 + 0.46371 0.0432723 0 + 0.484385 0.139584 0 + 0.487975 0.0927147 0 + 0.492445 0.209121 0 + 0.485654 0.0527083 0 + 0.492438 0.0442732 0 + 0.486641 0.0440467 0 + 0.454646 0.00760604 0 + 0.491069 0.00883599 0 +endnode +node trimesh bodypelvis_g + parent rootdummy + position 0.019827 0.0102821 -0.185806 + orientation 0.00482329 -0.131729 0.991274 -0.0791823 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center -1.15045 -5.6321 -17.5259 + bitmap c_Marilit2t2 + verts 45 + -0.197054 0.0597496 0.0235471 + -0.253029 -0.0137419 0.0780667 + -0.129754 -0.0235026 0.2049 + -0.00447657 0.088858 0.199851 + -0.0182061 0.0820859 -0.536925 + -0.00598833 -0.0461159 -0.575473 + -0.320784 -0.00453713 -0.504927 + -0.323648 0.118161 -0.454951 + -0.381788 0.0181932 -0.429016 + -0.169541 -0.122717 -0.595527 + -0.341073 -0.116071 -0.527052 + -0.00303232 -0.285419 0.060771 + 0.00356334 -0.249764 0.245008 + -0.157191 -0.219357 0.163242 + -0.239673 -0.332603 -0.251496 + -0.0951806 -0.361872 -0.270585 + -0.340107 -0.206811 -0.43597 + -0.319181 -0.287058 -0.437772 + -0.127435 -0.320096 -0.505819 + -0.00706842 -0.320697 -0.272833 + -0.254997 -0.171405 -0.50871 + -0.0129067 -0.231422 -0.540691 + -0.38583 -0.101058 -0.305299 + -0.238203 0.0829568 -0.147229 + 0.151078 -0.219357 0.163242 + 0.179031 0.240396 -0.253225 + -0.211161 0.228804 -0.254767 + 0.219386 0.148092 -0.149366 + 0.267356 0.167229 -0.478083 + 0.175545 0.097041 0.012628 + 0.23408 -0.130273 0.058159 + 0.1208 -0.0235026 0.2049 + 0.262269 -0.000876423 -0.504439 + 0.362821 0.00814968 -0.430353 + 0.157563 -0.122717 -0.595525 + 0.282936 -0.11241 -0.526564 + 0.25608 -0.335006 -0.251815 + 0.0810464 -0.361872 -0.270585 + 0.228872 -0.171405 -0.50871 + 0.290175 -0.224126 -0.438148 + 0.262644 -0.287342 -0.437809 + 0.101621 -0.320096 -0.505819 + 0.349098 -0.112302 -0.306586 + -0.0205688 0.143391 -0.00609565 + -0.0102571 0.24923 -0.273262 + faces 86 + 0 1 2 1 0 3 4 1 + 0 2 3 1 0 4 28 1 + 4 5 6 1 6 7 10 1 + 4 6 7 1 6 10 13 1 + 7 6 8 1 78 77 79 1 + 5 9 6 1 7 20 10 1 + 6 9 10 1 10 20 12 1 + 6 10 8 1 77 80 79 1 + 11 12 13 1 14 15 17 1 + 13 14 15 1 70 71 72 1 + 14 16 17 1 71 73 74 1 + 12 2 13 1 15 5 17 1 + 13 2 1 1 17 5 1 1 + 15 18 19 1 19 23 24 1 + 20 9 18 1 25 11 23 1 + 18 9 21 1 23 11 27 1 + 20 16 10 1 25 16 12 1 + 20 10 9 1 25 12 11 1 + 21 9 5 1 27 11 9 1 + 11 15 19 1 14 19 24 1 + 18 15 14 1 75 72 71 1 + 19 18 21 1 24 23 27 1 + 14 22 16 1 71 76 73 1 + 10 16 8 1 80 81 79 1 + 18 17 20 1 23 21 25 1 + 1 0 23 1 3 0 54 1 + 22 23 8 1 44 54 40 1 + 8 23 7 1 40 54 30 1 + 13 22 14 1 70 76 71 1 + 24 12 11 1 31 15 14 1 + 11 13 15 1 14 17 19 1 + 26 4 7 1 55 29 30 1 + 26 7 23 1 55 30 54 1 + 23 0 26 1 54 0 55 1 + 22 1 23 1 44 3 54 1 + 27 28 25 1 45 46 41 1 + 30 29 31 1 48 47 49 1 + 31 29 3 1 49 47 22 1 + 5 4 32 1 7 6 42 1 + 32 4 28 1 42 6 33 1 + 32 28 33 1 42 33 2 1 + 34 5 32 1 43 7 42 1 + 34 32 35 1 43 42 12 1 + 35 32 33 1 12 42 2 1 + 36 24 37 1 63 58 64 1 + 38 39 40 1 37 16 38 1 + 31 12 24 1 32 15 31 1 + 31 24 30 1 32 31 1 1 + 36 37 41 1 63 64 68 1 + 21 38 41 1 27 37 39 1 + 34 38 21 1 61 65 35 1 + 33 39 35 1 60 66 62 1 + 35 38 34 1 12 37 34 1 + 34 21 5 1 34 27 9 1 + 37 11 19 1 36 14 24 1 + 40 36 41 1 67 63 68 1 + 41 19 21 1 39 24 27 1 + 30 24 36 1 59 58 63 1 + 19 41 37 1 24 39 36 1 + 29 30 27 1 47 48 45 1 + 36 39 42 1 63 66 69 1 + 27 33 28 1 45 50 46 1 + 42 30 36 1 69 59 63 1 + 24 11 37 1 31 14 36 1 + 4 25 28 1 26 41 46 1 + 29 27 25 1 47 45 41 1 + 42 33 27 1 51 50 45 1 + 35 39 38 1 12 16 37 1 + 40 39 36 1 67 66 63 1 + 38 40 41 1 65 67 68 1 + 17 16 20 1 21 16 25 1 + 18 14 17 1 75 71 74 1 + 16 22 8 1 81 82 79 1 + 13 1 22 1 70 18 76 1 + 42 39 33 1 69 66 60 1 + 30 42 27 1 48 51 45 1 + 12 31 3 1 15 32 8 1 + 12 3 2 1 15 8 5 1 + 3 43 0 1 28 56 0 1 + 3 29 43 1 22 47 52 1 + 43 44 26 1 56 57 55 1 + 43 25 44 1 52 41 53 1 + 43 26 0 1 56 55 0 1 + 43 29 25 1 52 47 41 1 + 44 4 26 1 57 29 55 1 + 25 4 44 1 41 26 53 1 + tverts 83 + 0.313555 0.765984 0 + 0.503141 0.81503 0 + 0.384822 0.22175 0 + 0.416523 0.82811 0 + 0.320542 0.993017 0 + 0.84105 0.993263 0 + 0.00604658 0.145253 0 + 0.00604779 0.0350446 0 + 0.993559 0.987438 0 + 0.993623 0.0394176 0 + 0.377751 0.166714 0 + 0.76243 0.0111047 0 + 0.499983 0.00617779 0 + 0.352492 0.269465 0 + 0.993562 0.721007 0 + 0.99356 0.943635 0 + 0.554132 0.29078 0 + 0.80592 0.845198 0 + 0.603908 0.763349 0 + 0.894632 0.45905 0 + 0.238296 0.00673668 0 + 0.664513 0.284597 0 + 0.00929632 0.982361 0 + 0.86655 0.214705 0 + 0.993618 0.456744 0 + 0.650378 0.129006 0 + 0.00829599 0.112627 0 + 0.993621 0.178963 0 + 0.00190686 0.991391 0 + 0.00189917 0.186511 0 + 0.295189 0.20773 0 + 0.801605 0.845202 0 + 0.836739 0.993266 0 + 0.320906 0.227007 0 + 0.757991 0.0111127 0 + 0.584777 0.202617 0 + 0.890199 0.459052 0 + 0.64844 0.129014 0 + 0.66008 0.284604 0 + 0.862115 0.214708 0 + 0.487132 0.243266 0 + 0.17216 0.362337 0 + 0.375692 0.170397 0 + 0.236233 0.00673476 0 + 0.579724 0.399941 0 + 0.296433 0.45489 0 + 0.327862 0.0844434 0 + 0.270574 0.720746 0 + 0.497452 0.816185 0 + 0.311986 0.982173 0 + 0.523625 0.151176 0 + 0.589558 0.368644 0 + 0.00799489 0.727024 0 + 0.010238 0.446079 0 + 0.356623 0.589628 0 + 0.167556 0.380732 0 + 0.00521405 0.753262 0 + 0.00501291 0.443963 0 + 0.692589 0.785328 0 + 0.817881 0.785926 0 + 0.962323 0.306516 0 + 0.756078 0.165424 0 + 0.839171 0.233575 0 + 0.685638 0.475919 0 + 0.561947 0.444455 0 + 0.769742 0.248434 0 + 0.774798 0.317714 0 + 0.719012 0.321883 0 + 0.600271 0.253025 0 + 0.879738 0.41772 0 + 0.830959 0.845631 0 + 0.845383 0.355408 0 + 0.97112 0.348785 0 + 0.688042 0.154619 0 + 0.756669 0.143682 0 + 0.919676 0.0880557 0 + 0.58425 0.309862 0 + 0.570999 0.192847 0 + 0.463593 0.21835 0 + 0.559058 0.259579 0 + 0.671955 0.191453 0 + 0.731013 0.284507 0 + 0.637669 0.385713 0 +endnode +node trimesh tail01 + parent bodypelvis_g + position -0.00831912 -0.011645 -0.48441 + orientation -0.995757 -0.0679482 0.0620601 -0.503255 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 0 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.3634 -0.689052 -48.6227 + bitmap c_Marilitht1 + verts 29 + 0.00363401 -0.0459714 0.265647 + -0.263341 -0.187795 0.236634 + 0.00363423 -0.166079 0.235172 + -0.373484 0.099203 0.0291521 + -0.20725 0.229473 0.0962171 + -0.0102751 0.247209 0.14637 + 0.00363403 -0.276484 0.0341084 + -0.241647 -0.330585 0.0629478 + -0.291422 0.112681 -1.11792 + -0.157938 -0.0669594 -1.16033 + -0.262308 -0.051749 -0.968883 + -0.153572 0.316804 -0.527486 + -0.159176 0.314892 -1.07846 + -0.283754 0.281436 -0.509786 + 0.0108515 0.249893 -1.04934 + -0.417634 0.100718 -0.178646 + 0.270609 -0.163719 0.227189 + 0.380751 0.099203 0.0291521 + 0.214518 0.229473 0.0962171 + 0.248916 -0.328593 0.063056 + 0.165205 -0.0669594 -1.16033 + 0.298692 0.112681 -1.11792 + 0.269579 -0.0517487 -0.968883 + 0.166443 0.314892 -1.07846 + 0.160839 0.316804 -0.527486 + 0.291021 0.281436 -0.509786 + 0.424902 0.100718 -0.178646 + 0.003634 -0.0693699 -1.1579 + 0.00363403 0.145145 -1.2381 + faces 58 + 0 1 2 1 0 1 2 0 + 3 1 0 1 3 1 0 0 + 3 0 4 1 3 0 4 0 + 4 0 5 1 4 0 5 0 + 5 0 2 1 5 0 2 0 + 5 2 6 1 5 2 6 0 + 6 2 7 1 44 45 46 0 + 7 2 1 1 46 45 42 0 + 8 9 10 1 47 48 49 0 + 11 12 13 1 9 10 11 0 + 12 8 13 1 10 7 11 0 + 14 12 5 1 12 10 13 0 + 10 6 7 1 49 50 51 0 + 8 10 15 1 47 49 52 0 + 15 7 3 1 52 51 53 0 + 5 11 4 1 13 9 16 0 + 7 1 3 1 46 42 43 0 + 9 6 10 1 54 50 49 0 + 9 27 6 1 55 56 57 0 + 10 7 15 1 49 51 52 0 + 15 3 13 1 14 15 11 0 + 8 15 13 1 7 14 11 0 + 12 11 5 1 10 9 13 0 + 4 13 3 1 16 11 15 0 + 11 13 4 1 9 11 16 0 + 16 0 2 1 19 20 21 0 + 16 17 0 1 19 22 20 0 + 0 17 18 1 20 22 23 0 + 0 18 5 1 20 23 24 0 + 0 5 2 1 20 24 21 0 + 2 5 6 1 21 24 25 0 + 2 6 19 1 60 61 62 0 + 2 19 16 1 60 62 58 0 + 20 21 22 1 63 64 65 0 + 23 24 25 1 28 29 30 0 + 21 23 25 1 27 28 30 0 + 23 14 5 1 28 31 32 0 + 6 22 19 1 66 65 67 0 + 22 21 26 1 65 64 68 0 + 19 26 17 1 67 68 69 0 + 24 5 18 1 29 32 35 0 + 16 19 17 1 58 62 59 0 + 6 20 22 1 66 70 65 0 + 27 20 6 1 71 72 73 0 + 19 22 26 1 67 65 68 0 + 17 26 25 1 34 33 30 0 + 26 21 25 1 33 27 30 0 + 24 23 5 1 29 28 32 0 + 25 18 17 1 30 35 34 0 + 25 24 18 1 30 29 35 0 + 9 8 28 1 8 7 38 0 + 8 12 28 1 74 75 79 0 + 12 14 28 1 75 76 79 0 + 27 9 28 1 18 17 39 0 + 21 20 28 1 27 26 40 0 + 23 21 28 1 78 77 79 0 + 14 23 28 1 76 78 79 0 + 20 27 28 1 37 36 41 0 + tverts 80 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.033231 0.923409 0 + 0.00941113 0.917821 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.03339 0.923064 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.033231 0.923409 0 + 0.00941113 0.917821 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.03339 0.923064 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.562649 0.915606 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.786695 0.190904 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.562649 0.915606 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.786695 0.190904 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + -0.0765852 0.383238 0 + 0.0222587 0.455394 0 + 0.300226 0.455003 0 + -0.0869005 0.378539 0 + 0.0218892 0.460093 0 + 0.290967 0.24271 0 +endnode +node trimesh tail02 + parent tail01 + position -0.000466861 0.118581 -0.975436 + orientation 0.994929 0.0825211 -0.057494 -0.498796 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 0 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.363399 6.4845 -55.7714 + bitmap 24 + verts 26 + 0.00363408 -0.0247512 0.0174611 + -0.291393 0.0964185 -0.068774 + -0.206985 0.201051 -0.061835 + 0.00337562 0.142053 -0.0541623 + 0.00363409 -0.157279 -0.130024 + -0.196944 -0.134097 -0.121474 + -0.245605 0.110295 -1.03138 + -0.132849 -0.0414508 -1.0672 + -0.221013 -0.0286021 -0.905484 + -0.12916 0.282721 -0.532626 + -0.133894 0.281107 -0.998042 + -0.239128 0.252846 -0.517676 + 0.00363401 0.286969 -1.00242 + -0.307339 0.0760294 -0.299534 + 0.29866 0.0964186 -0.0687739 + 0.214252 0.201051 -0.061835 + 0.204212 -0.134097 -0.121474 + 0.140117 -0.0414508 -1.0672 + 0.252874 0.110295 -1.03138 + 0.228282 -0.0286021 -0.905484 + 0.141162 0.281107 -0.998042 + 0.136428 0.282721 -0.532626 + 0.246396 0.252846 -0.517676 + 0.314607 0.0760296 -0.299534 + 0.00363404 -0.0434869 -1.06515 + 0.00363403 0.137718 -1.13289 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 40 41 42 0 + 9 10 11 1 63 64 65 0 + 10 6 11 1 64 62 65 0 + 12 10 3 1 66 64 67 0 + 8 4 5 1 42 43 44 0 + 6 8 13 1 40 42 45 0 + 13 5 1 1 45 44 46 0 + 3 9 2 1 67 63 68 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 47 43 42 0 + 7 24 4 1 48 49 50 0 + 8 5 13 1 42 44 45 0 + 13 1 11 1 13 14 12 0 + 6 13 11 1 10 13 12 0 + 10 9 3 1 64 63 67 0 + 2 11 1 1 15 12 14 0 + 9 11 2 1 63 65 68 0 + 0 14 15 1 19 21 22 0 + 0 15 3 1 19 22 23 0 + 0 3 4 1 20 23 24 0 + 0 4 16 1 25 26 27 0 + 17 18 19 1 51 52 53 0 + 20 21 22 1 70 71 72 0 + 18 20 22 1 69 70 72 0 + 20 12 3 1 70 73 74 0 + 4 19 16 1 54 53 55 0 + 19 18 23 1 53 52 56 0 + 16 23 14 1 55 56 57 0 + 21 3 15 1 71 74 75 0 + 0 16 14 1 18 27 21 0 + 4 17 19 1 54 58 53 0 + 24 17 4 1 59 60 61 0 + 16 19 23 1 55 53 56 0 + 14 23 22 1 32 31 30 0 + 23 18 22 1 31 29 30 0 + 21 20 3 1 71 70 74 0 + 22 15 14 1 30 33 32 0 + 22 21 15 1 72 71 75 0 + 7 6 25 1 11 10 36 0 + 6 10 25 1 76 77 81 0 + 10 12 25 1 77 78 81 0 + 24 7 25 1 17 16 37 0 + 18 17 25 1 29 28 38 0 + 20 18 25 1 80 79 81 0 + 12 20 25 1 78 80 81 0 + 17 24 25 1 35 34 39 0 + tverts 82 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.453088 0.484826 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.453088 0.484826 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.287847 0.467123 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0390017 0.923064 0 + 0.35066 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.287847 0.467123 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0390017 0.923064 0 + 0.35066 0.925614 0 + 0.515922 0.274306 0 + 0.319108 0.469549 0 + 0.0216734 0.453975 0 + 0.508406 0.272756 0 + 0.319709 0.46814 0 + 0.0200365 0.15394 0 +endnode +node trimesh tail03 + parent tail02 + position 0.000189714 0.179049 -0.836932 + orientation 0.998122 0.00472005 -0.06107 -1.32334 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 0 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.36335 6.7868 -55.7981 + bitmap 24 + verts 26 + 0.00363408 -0.0133896 -0.0363426 + -0.263932 0.0965019 -0.114551 + -0.187381 0.191396 -0.108258 + 0.00363416 0.134567 -0.101483 + 0.00363405 -0.133583 -0.1701 + -0.178275 -0.112558 -0.162345 + -0.222406 0.109087 -0.987561 + -0.120145 -0.0285347 -1.02005 + -0.200103 -0.0168821 -0.873382 + -0.1168 0.265466 -0.53523 + -0.121093 0.263999 -0.957325 + -0.216532 0.23837 -0.521668 + 0.0036341 0.269319 -0.961294 + -0.278394 0.0780107 -0.323832 + 0.2712 0.0965019 -0.114551 + 0.194649 0.191396 -0.108258 + 0.185543 -0.112558 -0.162346 + 0.127414 -0.0285347 -1.02005 + 0.229677 0.109087 -0.987561 + 0.207373 -0.0168818 -0.873382 + 0.128361 0.263999 -0.957325 + 0.124068 0.265466 -0.53523 + 0.2238 0.23837 -0.521668 + 0.285661 0.0780107 -0.323832 + 0.00363407 -0.0303815 -1.01819 + 0.0036341 0.133958 -1.07962 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 48 49 50 0 + 9 10 11 1 71 72 73 0 + 10 6 11 1 72 70 73 0 + 12 10 3 1 74 72 75 0 + 8 4 5 1 50 51 52 0 + 6 8 13 1 48 50 53 0 + 13 5 1 1 53 52 54 0 + 3 9 2 1 75 71 76 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 55 51 50 0 + 7 24 4 1 56 57 58 0 + 8 5 13 1 50 52 53 0 + 13 1 11 1 15 16 13 0 + 6 13 11 1 10 15 13 0 + 10 9 3 1 72 71 75 0 + 2 11 1 1 17 13 16 0 + 9 11 2 1 71 73 76 0 + 0 14 15 1 21 23 24 0 + 0 15 3 1 21 24 25 0 + 0 3 4 1 22 25 26 0 + 0 4 16 1 27 28 29 0 + 17 18 19 1 59 60 61 0 + 20 21 22 1 78 79 80 0 + 18 20 22 1 77 78 80 0 + 20 12 3 1 78 81 82 0 + 4 19 16 1 62 61 63 0 + 19 18 23 1 61 60 64 0 + 16 23 14 1 63 64 65 0 + 21 3 15 1 79 82 83 0 + 0 16 14 1 20 29 23 0 + 4 17 19 1 62 66 61 0 + 24 17 4 1 67 68 69 0 + 16 19 23 1 63 61 64 0 + 14 23 22 1 36 35 33 0 + 23 18 22 1 35 31 33 0 + 21 20 3 1 79 78 82 0 + 22 15 14 1 33 37 36 0 + 22 21 15 1 80 79 83 0 + 7 6 25 1 11 10 40 0 + 6 10 25 1 10 12 41 0 + 10 12 25 1 12 14 42 0 + 24 7 25 1 19 18 43 0 + 18 17 25 1 31 30 44 0 + 20 18 25 1 32 31 45 0 + 12 20 25 1 34 32 46 0 + 17 24 25 1 39 38 47 0 + tverts 84 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 +endnode +node trimesh tail04 + parent tail03 + position -0.00016889 0.161409 -0.815376 + orientation 0.793736 0.568818 -0.215475 -0.50327 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 0 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.363451 7.0852 -52.2595 + bitmap 24 + verts 26 + 0.00363411 -0.0021699 -0.0181707 + -0.236815 0.0965844 -0.0884529 + -0.168022 0.181862 -0.0827977 + 0.00363418 0.130792 -0.0767091 + 0.00363406 -0.110182 -0.138372 + -0.159838 -0.0912878 -0.131404 + -0.199498 0.107894 -0.944287 + -0.1076 -0.0157802 -0.973482 + -0.179454 -0.00530855 -0.841681 + -0.104594 0.248424 -0.537799 + -0.108452 0.247107 -0.917118 + -0.194218 0.224074 -0.525613 + 0.0036342 0.251886 -0.920682 + -0.24981 0.0799672 -0.276525 + 0.244083 0.0965844 -0.0884529 + 0.17529 0.181862 -0.0827977 + 0.167107 -0.0912875 -0.131404 + 0.114869 -0.0157802 -0.973482 + 0.206767 0.107894 -0.944287 + 0.186724 -0.00530833 -0.841681 + 0.115721 0.247107 -0.917118 + 0.111863 0.248424 -0.537799 + 0.201487 0.224074 -0.525613 + 0.257079 0.0799672 -0.276525 + 0.00363416 -0.0174398 -0.971815 + 0.00363421 0.130244 -1.02702 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 48 49 50 0 + 9 10 11 1 71 72 73 0 + 10 6 11 1 72 70 73 0 + 12 10 3 1 74 72 75 0 + 8 4 5 1 50 51 52 0 + 6 8 13 1 48 50 53 0 + 13 5 1 1 53 52 54 0 + 3 9 2 1 75 71 76 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 55 51 50 0 + 7 24 4 1 56 57 58 0 + 8 5 13 1 50 52 53 0 + 13 1 11 1 15 16 13 0 + 6 13 11 1 10 15 13 0 + 10 9 3 1 72 71 75 0 + 2 11 1 1 17 13 16 0 + 9 11 2 1 71 73 76 0 + 0 14 15 1 21 23 24 0 + 0 15 3 1 21 24 25 0 + 0 3 4 1 22 25 26 0 + 0 4 16 1 27 28 29 0 + 17 18 19 1 59 60 61 0 + 20 21 22 1 78 79 80 0 + 18 20 22 1 77 78 80 0 + 20 12 3 1 78 81 82 0 + 4 19 16 1 62 61 63 0 + 19 18 23 1 61 60 64 0 + 16 23 14 1 63 64 65 0 + 21 3 15 1 79 82 83 0 + 0 16 14 1 20 29 23 0 + 4 17 19 1 62 66 61 0 + 24 17 4 1 67 68 69 0 + 16 19 23 1 63 61 64 0 + 14 23 22 1 36 35 33 0 + 23 18 22 1 35 31 33 0 + 21 20 3 1 79 78 82 0 + 22 15 14 1 33 37 36 0 + 22 21 15 1 80 79 83 0 + 7 6 25 1 11 10 40 0 + 6 10 25 1 10 12 41 0 + 10 12 25 1 12 14 42 0 + 24 7 25 1 19 18 43 0 + 18 17 25 1 31 30 44 0 + 20 18 25 1 32 31 45 0 + 12 20 25 1 34 32 46 0 + 17 24 25 1 39 38 47 0 + tverts 84 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 +endnode +node trimesh tail05 + parent tail04 + position 0.000107174 0.0921998 -0.804798 + orientation 0.0337226 0.99716 0.0673443 -0.328482 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 0 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.5046 5.61485 -45.7264 + bitmap 24 + verts 26 + 0.00504668 -0.012763 -0.0148776 + -0.221868 0.0804324 -0.0812034 + -0.156946 0.160909 -0.0758666 + 0.00504677 0.112714 -0.0701206 + 0.00504663 -0.114695 -0.128313 + -0.149224 -0.0968644 -0.121737 + -0.186651 0.0911053 -0.821574 + -0.0999264 -0.0256075 -0.849124 + -0.167736 -0.015725 -0.724743 + -0.0970893 0.223725 -0.437968 + -0.10073 0.222481 -0.795934 + -0.181669 0.200745 -0.426468 + 0.00504684 0.226992 -0.799297 + -0.234132 0.0647506 -0.258687 + 0.231962 0.0804325 -0.0812037 + 0.16704 0.16091 -0.0758667 + 0.159318 -0.0968643 -0.121737 + 0.11002 -0.0256071 -0.849124 + 0.196746 0.0911054 -0.821574 + 0.177831 -0.0157248 -0.724743 + 0.110824 0.222481 -0.795934 + 0.107183 0.223725 -0.437968 + 0.191762 0.200745 -0.426468 + 0.244224 0.0647506 -0.258687 + 0.0050468 -0.0271733 -0.847551 + 0.00504683 0.112197 -0.89965 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 48 49 50 0 + 9 10 11 1 71 72 73 0 + 10 6 11 1 72 70 73 0 + 12 10 3 1 74 72 75 0 + 8 4 5 1 50 51 52 0 + 6 8 13 1 48 50 53 0 + 13 5 1 1 53 52 54 0 + 3 9 2 1 75 71 76 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 55 51 50 0 + 7 24 4 1 56 57 58 0 + 8 5 13 1 50 52 53 0 + 13 1 11 1 15 16 13 0 + 6 13 11 1 10 15 13 0 + 10 9 3 1 72 71 75 0 + 2 11 1 1 17 13 16 0 + 9 11 2 1 71 73 76 0 + 0 14 15 1 21 23 24 0 + 0 15 3 1 21 24 25 0 + 0 3 4 1 22 25 26 0 + 0 4 16 1 27 28 29 0 + 17 18 19 1 59 60 61 0 + 20 21 22 1 78 79 80 0 + 18 20 22 1 77 78 80 0 + 20 12 3 1 78 81 82 0 + 4 19 16 1 62 61 63 0 + 19 18 23 1 61 60 64 0 + 16 23 14 1 63 64 65 0 + 21 3 15 1 79 82 83 0 + 0 16 14 1 20 29 23 0 + 4 17 19 1 62 66 61 0 + 24 17 4 1 67 68 69 0 + 16 19 23 1 63 61 64 0 + 14 23 22 1 36 35 33 0 + 23 18 22 1 35 31 33 0 + 21 20 3 1 79 78 82 0 + 22 15 14 1 33 37 36 0 + 22 21 15 1 80 79 83 0 + 7 6 25 1 11 10 40 0 + 6 10 25 1 10 12 41 0 + 10 12 25 1 12 14 42 0 + 24 7 25 1 19 18 43 0 + 18 17 25 1 31 30 44 0 + 20 18 25 1 32 31 45 0 + 12 20 25 1 34 32 46 0 + 17 24 25 1 39 38 47 0 + tverts 84 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 +endnode +node trimesh tail06 + parent tail05 + position -0.00173703 0.0764933 -0.667942 + orientation -0.975191 -0.208594 -0.0740984 -0.0281646 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 0 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 1.0759 5.7074 -45.2301 + bitmap 24 + verts 26 + 0.0107589 -0.0100355 -0.0214824 + -0.210222 0.0807228 -0.086074 + -0.146999 0.159095 -0.0808767 + 0.010759 0.112161 -0.075281 + 0.0107589 -0.109302 -0.131951 + -0.139478 -0.0919378 -0.125547 + -0.175926 0.0911169 -0.807085 + -0.0914696 -0.0225437 -0.833912 + -0.157506 -0.0129198 -0.712786 + -0.0887064 0.220269 -0.433507 + -0.0922525 0.219058 -0.782112 + -0.171075 0.19789 -0.422309 + 0.0107589 0.22345 -0.785389 + -0.222165 0.0654512 -0.258916 + 0.23174 0.080723 -0.0860741 + 0.168516 0.159095 -0.0808767 + 0.160997 -0.0919375 -0.125547 + 0.112987 -0.0225437 -0.833912 + 0.197445 0.0911171 -0.807085 + 0.179025 -0.0129197 -0.712786 + 0.11377 0.219058 -0.782113 + 0.110224 0.220269 -0.433507 + 0.192593 0.19789 -0.42231 + 0.243683 0.0654512 -0.258916 + 0.0107589 -0.0240689 -0.832381 + 0.0107589 0.111657 -0.88312 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 48 49 50 0 + 9 10 11 1 71 72 73 0 + 10 6 11 1 72 70 73 0 + 12 10 3 1 74 72 75 0 + 8 4 5 1 50 51 52 0 + 6 8 13 1 48 50 53 0 + 13 5 1 1 53 52 54 0 + 3 9 2 1 75 71 76 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 55 51 50 0 + 7 24 4 1 56 57 58 0 + 8 5 13 1 50 52 53 0 + 13 1 11 1 15 16 13 0 + 6 13 11 1 10 15 13 0 + 10 9 3 1 72 71 75 0 + 2 11 1 1 17 13 16 0 + 9 11 2 1 71 73 76 0 + 0 14 15 1 21 23 24 0 + 0 15 3 1 21 24 25 0 + 0 3 4 1 22 25 26 0 + 0 4 16 1 27 28 29 0 + 17 18 19 1 59 60 61 0 + 20 21 22 1 78 79 80 0 + 18 20 22 1 77 78 80 0 + 20 12 3 1 78 81 82 0 + 4 19 16 1 62 61 63 0 + 19 18 23 1 61 60 64 0 + 16 23 14 1 63 64 65 0 + 21 3 15 1 79 82 83 0 + 0 16 14 1 20 29 23 0 + 4 17 19 1 62 66 61 0 + 24 17 4 1 67 68 69 0 + 16 19 23 1 63 61 64 0 + 14 23 22 1 36 35 33 0 + 23 18 22 1 35 31 33 0 + 21 20 3 1 79 78 82 0 + 22 15 14 1 33 37 36 0 + 22 21 15 1 80 79 83 0 + 7 6 25 1 11 10 40 0 + 6 10 25 1 10 12 41 0 + 10 12 25 1 12 14 42 0 + 24 7 25 1 19 18 43 0 + 18 17 25 1 31 30 44 0 + 20 18 25 1 32 31 45 0 + 12 20 25 1 34 32 46 0 + 17 24 25 1 39 38 47 0 + tverts 84 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 +endnode +node trimesh tail07 + parent tail06 + position -0.000695675 0.0650391 -0.660521 + orientation -0.193756 -0.979183 0.0604897 -0.277379 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 0 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.37185 7.6245 -44.6971 + bitmap 24 + verts 26 + 0.00371947 0.0102199 -0.023116 + -0.21369 0.0995117 -0.0866638 + -0.151488 0.176618 -0.0815506 + 0.00371946 0.130441 -0.0760453 + 0.00371944 -0.087442 -0.1318 + -0.14409 -0.0703586 -0.125499 + -0.179949 0.109738 -0.796022 + -0.096857 -0.00208601 -0.822417 + -0.161826 0.00738234 -0.703245 + -0.0941386 0.236802 -0.428483 + -0.0976274 0.235611 -0.771453 + -0.175176 0.214785 -0.417466 + 0.00371902 0.239932 -0.774678 + -0.225441 0.0844868 -0.256714 + 0.221128 0.0995114 -0.0866635 + 0.158928 0.176618 -0.0815505 + 0.151529 -0.0703586 -0.125499 + 0.104295 -0.00208609 -0.822417 + 0.187388 0.109738 -0.796022 + 0.169266 0.00738234 -0.703245 + 0.105065 0.235611 -0.771453 + 0.101577 0.236802 -0.428483 + 0.182614 0.214785 -0.417464 + 0.232878 0.0844866 -0.256713 + 0.00371911 -0.00358656 -0.820908 + 0.00371904 0.129946 -0.870826 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 48 49 50 0 + 9 10 11 1 71 72 73 0 + 10 6 11 1 72 70 73 0 + 12 10 3 1 74 72 75 0 + 8 4 5 1 50 51 52 0 + 6 8 13 1 48 50 53 0 + 13 5 1 1 53 52 54 0 + 3 9 2 1 75 71 76 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 55 51 50 0 + 7 24 4 1 56 57 58 0 + 8 5 13 1 50 52 53 0 + 13 1 11 1 15 16 13 0 + 6 13 11 1 10 15 13 0 + 10 9 3 1 72 71 75 0 + 2 11 1 1 17 13 16 0 + 9 11 2 1 71 73 76 0 + 0 14 15 1 21 23 24 0 + 0 15 3 1 21 24 25 0 + 0 3 4 1 22 25 26 0 + 0 4 16 1 27 28 29 0 + 17 18 19 1 59 60 61 0 + 20 21 22 1 78 79 80 0 + 18 20 22 1 77 78 80 0 + 20 12 3 1 78 81 82 0 + 4 19 16 1 62 61 63 0 + 19 18 23 1 61 60 64 0 + 16 23 14 1 63 64 65 0 + 21 3 15 1 79 82 83 0 + 0 16 14 1 20 29 23 0 + 4 17 19 1 62 66 61 0 + 24 17 4 1 67 68 69 0 + 16 19 23 1 63 61 64 0 + 14 23 22 1 36 35 33 0 + 23 18 22 1 35 31 33 0 + 21 20 3 1 79 78 82 0 + 22 15 14 1 33 37 36 0 + 22 21 15 1 80 79 83 0 + 7 6 25 1 11 10 40 0 + 6 10 25 1 10 12 41 0 + 10 12 25 1 12 14 42 0 + 24 7 25 1 19 18 43 0 + 18 17 25 1 31 30 44 0 + 20 18 25 1 32 31 45 0 + 12 20 25 1 34 32 46 0 + 17 24 25 1 39 38 47 0 + tverts 84 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 +endnode +node trimesh tail08 + parent tail07 + position 0.00610882 0.120649 -0.646223 + orientation 0.0108863 -0.997401 0.0712205 -0.364768 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 0 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.55845 3.30655 -42.9947 + bitmap 24 + verts 26 + 0.00558501 -0.0298106 -0.026309 + -0.201455 0.0552224 -0.0868257 + -0.14222 0.12865 -0.0819563 + 0.00558488 0.0846762 -0.0767135 + 0.00558505 -0.122814 -0.129808 + -0.135174 -0.106546 -0.123808 + -0.169323 0.0649613 -0.762349 + -0.0901946 -0.0415292 -0.787484 + -0.152065 -0.0325123 -0.673996 + -0.0876058 0.185964 -0.41234 + -0.0909284 0.18483 -0.738954 + -0.164778 0.164998 -0.401849 + 0.00558417 0.188945 -0.742022 + -0.212644 0.0409143 -0.248765 + 0.212625 0.055222 -0.0868254 + 0.15339 0.12865 -0.081956 + 0.146344 -0.106546 -0.123808 + 0.101363 -0.0415293 -0.787484 + 0.180494 0.0649608 -0.762349 + 0.163235 -0.0325127 -0.673996 + 0.102097 0.18483 -0.738954 + 0.0987747 0.185964 -0.41234 + 0.175947 0.164997 -0.401849 + 0.223813 0.0409137 -0.248764 + 0.00558447 -0.0429582 -0.786049 + 0.00558427 0.0842054 -0.833585 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 48 49 50 0 + 9 10 11 1 71 72 73 0 + 10 6 11 1 72 70 73 0 + 12 10 3 1 74 72 75 0 + 8 4 5 1 50 51 52 0 + 6 8 13 1 48 50 53 0 + 13 5 1 1 53 52 54 0 + 3 9 2 1 75 71 76 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 55 51 50 0 + 7 24 4 1 56 57 58 0 + 8 5 13 1 50 52 53 0 + 13 1 11 1 15 16 13 0 + 6 13 11 1 10 15 13 0 + 10 9 3 1 72 71 75 0 + 2 11 1 1 17 13 16 0 + 9 11 2 1 71 73 76 0 + 0 14 15 1 21 23 24 0 + 0 15 3 1 21 24 25 0 + 0 3 4 1 22 25 26 0 + 0 4 16 1 27 28 29 0 + 17 18 19 1 59 60 61 0 + 20 21 22 1 78 79 80 0 + 18 20 22 1 77 78 80 0 + 20 12 3 1 78 81 82 0 + 4 19 16 1 62 61 63 0 + 19 18 23 1 61 60 64 0 + 16 23 14 1 63 64 65 0 + 21 3 15 1 79 82 83 0 + 0 16 14 1 20 29 23 0 + 4 17 19 1 62 66 61 0 + 24 17 4 1 67 68 69 0 + 16 19 23 1 63 61 64 0 + 14 23 22 1 36 35 33 0 + 23 18 22 1 35 31 33 0 + 21 20 3 1 79 78 82 0 + 22 15 14 1 33 37 36 0 + 22 21 15 1 80 79 83 0 + 7 6 25 1 11 10 40 0 + 6 10 25 1 10 12 41 0 + 10 12 25 1 12 14 42 0 + 24 7 25 1 19 18 43 0 + 18 17 25 1 31 30 44 0 + 20 18 25 1 32 31 45 0 + 12 20 25 1 34 32 46 0 + 17 24 25 1 39 38 47 0 + tverts 84 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 +endnode +node trimesh tail09 + parent tail08 + position 0.0057478 0.0523381 -0.643552 + orientation -0.147213 -0.982242 -0.116318 -0.428876 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 0 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.85575 4.83815 -40.8066 + bitmap 24 + verts 26 + 0.00855832 -0.0148581 -0.0020994 + -0.199675 0.0706658 -0.0629651 + -0.140099 0.144517 -0.0580677 + 0.00855823 0.10029 -0.0527947 + 0.00855842 -0.108398 -0.106196 + -0.133012 -0.0920358 -0.100161 + -0.167357 0.0804617 -0.742382 + -0.0877729 -0.0266428 -0.767665 + -0.149999 -0.0175743 -0.653524 + -0.0851697 0.202162 -0.390358 + -0.0885112 0.201023 -0.718854 + -0.162786 0.181075 -0.379804 + 0.00855797 0.205161 -0.721942 + -0.21093 0.0562753 -0.225837 + 0.216792 0.0706652 -0.0629651 + 0.157215 0.144517 -0.0580678 + 0.150129 -0.092036 -0.100161 + 0.10489 -0.0266431 -0.767665 + 0.184475 0.0804612 -0.742383 + 0.167118 -0.0175747 -0.653524 + 0.105627 0.201022 -0.718854 + 0.102286 0.202162 -0.390358 + 0.179903 0.181075 -0.379804 + 0.228045 0.0562747 -0.225838 + 0.00855831 -0.0280802 -0.766222 + 0.00855813 0.0998173 -0.814033 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 48 49 50 0 + 9 10 11 1 71 72 73 0 + 10 6 11 1 72 70 73 0 + 12 10 3 1 74 72 75 0 + 8 4 5 1 50 51 52 0 + 6 8 13 1 48 50 53 0 + 13 5 1 1 53 52 54 0 + 3 9 2 1 75 71 76 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 55 51 50 0 + 7 24 4 1 56 57 58 0 + 8 5 13 1 50 52 53 0 + 13 1 11 1 15 16 13 0 + 6 13 11 1 10 15 13 0 + 10 9 3 1 72 71 75 0 + 2 11 1 1 17 13 16 0 + 9 11 2 1 71 73 76 0 + 0 14 15 1 21 23 24 0 + 0 15 3 1 21 24 25 0 + 0 3 4 1 22 25 26 0 + 0 4 16 1 27 28 29 0 + 17 18 19 1 59 60 61 0 + 20 21 22 1 78 79 80 0 + 18 20 22 1 77 78 80 0 + 20 12 3 1 78 81 82 0 + 4 19 16 1 62 61 63 0 + 19 18 23 1 61 60 64 0 + 16 23 14 1 63 64 65 0 + 21 3 15 1 79 82 83 0 + 0 16 14 1 20 29 23 0 + 4 17 19 1 62 66 61 0 + 24 17 4 1 67 68 69 0 + 16 19 23 1 63 61 64 0 + 14 23 22 1 36 35 33 0 + 23 18 22 1 35 31 33 0 + 21 20 3 1 79 78 82 0 + 22 15 14 1 33 37 36 0 + 22 21 15 1 80 79 83 0 + 7 6 25 1 11 10 40 0 + 6 10 25 1 10 12 41 0 + 10 12 25 1 12 14 42 0 + 24 7 25 1 19 18 43 0 + 18 17 25 1 31 30 44 0 + 20 18 25 1 32 31 45 0 + 12 20 25 1 34 32 46 0 + 17 24 25 1 39 38 47 0 + tverts 84 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 +endnode +node trimesh tail10 + parent tail09 + position -0.000627775 0.09079 -0.61438 + orientation -0.481767 -0.610143 -0.628989 -0.0914808 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 0 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.3851 1.89595 -38.2963 + bitmap 24 + verts 26 + 0.00385102 -0.0368406 -0.0247585 + -0.179884 0.0386219 -0.0784632 + -0.127317 0.103785 -0.0741422 + 0.00385116 0.0647611 -0.0694899 + 0.00385128 -0.119376 -0.116608 + -0.121064 -0.104939 -0.111283 + -0.151368 0.0472667 -0.677949 + -0.0811454 -0.0472376 -0.700256 + -0.136052 -0.0392363 -0.599542 + -0.0788492 0.154649 -0.367339 + -0.0817967 0.153644 -0.657187 + -0.147335 0.136043 -0.358028 + 0.0038527 0.157295 -0.659911 + -0.189814 0.0259247 -0.222174 + 0.187587 0.0386218 -0.0784641 + 0.135019 0.103785 -0.0741428 + 0.128766 -0.104938 -0.111284 + 0.0888511 -0.0472376 -0.700256 + 0.159074 0.0472665 -0.67795 + 0.143758 -0.0392362 -0.599543 + 0.089502 0.153645 -0.657187 + 0.0865529 0.154649 -0.367339 + 0.155038 0.136043 -0.358029 + 0.197516 0.0259247 -0.222175 + 0.0038529 -0.0485057 -0.698981 + 0.00385297 0.0643451 -0.741168 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 48 49 50 0 + 9 10 11 1 71 72 73 0 + 10 6 11 1 72 70 73 0 + 12 10 3 1 74 72 75 0 + 8 4 5 1 50 51 52 0 + 6 8 13 1 48 50 53 0 + 13 5 1 1 53 52 54 0 + 3 9 2 1 75 71 76 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 55 51 50 0 + 7 24 4 1 56 57 58 0 + 8 5 13 1 50 52 53 0 + 13 1 11 1 15 16 13 0 + 6 13 11 1 10 15 13 0 + 10 9 3 1 72 71 75 0 + 2 11 1 1 17 13 16 0 + 9 11 2 1 71 73 76 0 + 0 14 15 1 21 23 24 0 + 0 15 3 1 21 24 25 0 + 0 3 4 1 22 25 26 0 + 0 4 16 1 27 28 29 0 + 17 18 19 1 59 60 61 0 + 20 21 22 1 78 79 80 0 + 18 20 22 1 77 78 80 0 + 20 12 3 1 78 81 82 0 + 4 19 16 1 62 61 63 0 + 19 18 23 1 61 60 64 0 + 16 23 14 1 63 64 65 0 + 21 3 15 1 79 82 83 0 + 0 16 14 1 20 29 23 0 + 4 17 19 1 62 66 61 0 + 24 17 4 1 67 68 69 0 + 16 19 23 1 63 61 64 0 + 14 23 22 1 36 35 33 0 + 23 18 22 1 35 31 33 0 + 21 20 3 1 79 78 82 0 + 22 15 14 1 33 37 36 0 + 22 21 15 1 80 79 83 0 + 7 6 25 1 11 10 40 0 + 6 10 25 1 10 12 41 0 + 10 12 25 1 12 14 42 0 + 24 7 25 1 19 18 43 0 + 18 17 25 1 31 30 44 0 + 20 18 25 1 32 31 45 0 + 12 20 25 1 34 32 46 0 + 17 24 25 1 39 38 47 0 + tverts 84 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 +endnode +node trimesh tail11 + parent tail10 + position 0.00208464 0.0409357 -0.593247 + orientation 0.917768 0.297696 -0.262831 -0.0886551 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 0 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 12 + center 0.61055 2.18672 -28.2848 + bitmap 24 + verts 26 + 0.00610412 -0.0238163 0.0104062 + -0.144317 0.0379632 -0.0335599 + -0.101281 0.0913116 -0.030023 + 0.00610471 0.0593636 -0.0262146 + 0.00610434 -0.0913866 -0.0647885 + -0.096162 -0.0795674 -0.0604285 + -0.120969 0.0450415 -0.524345 + -0.0634793 -0.0323275 -0.542607 + -0.108431 -0.0257771 -0.460156 + -0.0615996 0.132954 -0.270056 + -0.0640118 0.132132 -0.507347 + -0.117668 0.117721 -0.262432 + 0.00610816 0.135121 -0.509578 + -0.152446 0.0275684 -0.151213 + 0.156526 0.0379644 -0.0335621 + 0.11349 0.0913124 -0.0300244 + 0.108371 -0.0795664 -0.0604301 + 0.0756946 -0.0323269 -0.542607 + 0.133185 0.0450425 -0.524346 + 0.120646 -0.0257763 -0.460157 + 0.0762279 0.132132 -0.507348 + 0.0738125 0.132954 -0.270058 + 0.12988 0.117722 -0.262434 + 0.164657 0.0275696 -0.151214 + 0.00610772 -0.0333656 -0.541565 + 0.00610831 0.0590241 -0.576102 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 48 49 50 0 + 9 10 11 1 71 72 73 0 + 10 6 11 1 72 70 73 0 + 12 10 3 1 74 72 75 0 + 8 4 5 1 50 51 52 0 + 6 8 13 1 48 50 53 0 + 13 5 1 1 53 52 54 0 + 3 9 2 1 75 71 76 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 55 51 50 0 + 7 24 4 1 56 57 58 0 + 8 5 13 1 50 52 53 0 + 13 1 11 1 15 16 13 0 + 6 13 11 1 10 15 13 0 + 10 9 3 1 72 71 75 0 + 2 11 1 1 17 13 16 0 + 9 11 2 1 71 73 76 0 + 0 14 15 1 21 23 24 0 + 0 15 3 1 21 24 25 0 + 0 3 4 1 22 25 26 0 + 0 4 16 1 27 28 29 0 + 17 18 19 1 59 60 61 0 + 20 21 22 1 78 79 80 0 + 18 20 22 1 77 78 80 0 + 20 12 3 1 78 81 82 0 + 4 19 16 1 62 61 63 0 + 19 18 23 1 61 60 64 0 + 16 23 14 1 63 64 65 0 + 21 3 15 1 79 82 83 0 + 0 16 14 1 20 29 23 0 + 4 17 19 1 62 66 61 0 + 24 17 4 1 67 68 69 0 + 16 19 23 1 63 61 64 0 + 14 23 22 1 36 35 33 0 + 23 18 22 1 35 31 33 0 + 21 20 3 1 79 78 82 0 + 22 15 14 1 33 37 36 0 + 22 21 15 1 80 79 83 0 + 7 6 25 1 11 10 40 0 + 6 10 25 1 10 12 41 0 + 10 12 25 1 12 14 42 0 + 24 7 25 1 19 18 43 0 + 18 17 25 1 31 30 44 0 + 20 18 25 1 32 31 45 0 + 12 20 25 1 34 32 46 0 + 17 24 25 1 39 38 47 0 + tverts 84 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 +endnode +node trimesh tail12 + parent tail11 + position -0.020795 0.0932111 -0.454013 + orientation -0.828807 0.545873 -0.122889 -0.142367 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 0 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 2.59915 -5.66263 -27.1617 + bitmap 24 + verts 26 + 0.0200292 -0.0500345 0.0166696 + -0.124784 -0.0133378 -0.067651 + -0.0850233 0.0353655 -0.0943746 + 0.0192763 0.0132617 -0.0676765 + 0.0254936 -0.125797 -0.0147733 + -0.0736559 -0.118953 -0.0215267 + -0.024164 -0.12037 -0.531082 + 0.00779445 -0.157792 -0.514277 + -0.0180485 -0.145313 -0.474463 + -0.0368911 0.017319 -0.34627 + 0.00398379 -0.0758617 -0.549336 + -0.0908538 0.00354569 -0.332077 + 0.0408939 -0.0731008 -0.550016 + -0.126876 -0.0499492 -0.173844 + 0.165275 -0.000486936 -0.0562465 + 0.122049 0.0445394 -0.0862329 + 0.123545 -0.110216 -0.0137733 + 0.0810373 -0.154546 -0.511396 + 0.10959 -0.114444 -0.525824 + 0.102507 -0.139972 -0.469724 + 0.0777879 -0.072592 -0.546436 + 0.093667 0.0231034 -0.341136 + 0.14782 0.0141199 -0.322693 + 0.178859 -0.0364037 -0.161824 + 0.0444062 -0.156527 -0.511956 + 0.0437947 -0.117374 -0.559903 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 48 49 50 0 + 9 10 11 1 71 72 73 0 + 10 6 11 1 72 70 73 0 + 12 10 3 1 74 72 75 0 + 8 4 5 1 50 51 52 0 + 6 8 13 1 48 50 53 0 + 13 5 1 1 53 52 54 0 + 3 9 2 1 75 71 76 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 55 51 50 0 + 7 24 4 1 56 57 58 0 + 8 5 13 1 50 52 53 0 + 13 1 11 1 15 16 13 0 + 6 13 11 1 10 15 13 0 + 10 9 3 1 72 71 75 0 + 2 11 1 1 17 13 16 0 + 9 11 2 1 71 73 76 0 + 0 14 15 1 21 23 24 0 + 0 15 3 1 21 24 25 0 + 0 3 4 1 22 25 26 0 + 0 4 16 1 27 28 29 0 + 17 18 19 1 59 60 61 0 + 20 21 22 1 78 79 80 0 + 18 20 22 1 77 78 80 0 + 20 12 3 1 78 81 82 0 + 4 19 16 1 62 61 63 0 + 19 18 23 1 61 60 64 0 + 16 23 14 1 63 64 65 0 + 21 3 15 1 79 82 83 0 + 0 16 14 1 20 29 23 0 + 4 17 19 1 62 66 61 0 + 24 17 4 1 67 68 69 0 + 16 19 23 1 63 61 64 0 + 14 23 22 1 36 35 33 0 + 23 18 22 1 35 31 33 0 + 21 20 3 1 79 78 82 0 + 22 15 14 1 33 37 36 0 + 22 21 15 1 80 79 83 0 + 7 6 25 1 11 10 40 0 + 6 10 25 1 10 12 41 0 + 10 12 25 1 12 14 42 0 + 24 7 25 1 19 18 43 0 + 18 17 25 1 31 30 44 0 + 20 18 25 1 32 31 45 0 + 12 20 25 1 34 32 46 0 + 17 24 25 1 39 38 47 0 + tverts 84 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 +endnode +node skin tailmesh + parent bodypelvis_g + position -0.00369614 0.0382477 -1.47518 + orientation -0.999216 -0.0392354 -0.00521394 0.0 + wirecolor 0.0313726 0.0313726 0.529412 + alpha 1.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10.0 + bitmap c_Marilit2t1 + verts 203 + 0.00391555 -0.21798 1.20141 + -0.268942 -0.322602 1.11874 + -0.0014518 -0.308614 1.11708 + -0.373181 0.0310988 1.07901 + -0.200446 0.109468 1.19357 + -0.00173937 0.0966619 1.23807 + -0.0107309 -0.308731 0.887889 + -0.257104 -0.364737 0.89713 + -0.316444 0.593569 0.0753603 + -0.209525 0.453077 -0.0470404 + -0.292966 0.376191 0.127331 + -0.159137 0.484715 0.686617 + -0.206693 0.762892 0.193234 + -0.290095 0.448007 0.690427 + -0.0145435 0.65612 0.140529 + -0.422444 0.133277 0.899392 + 0.265132 -0.30846 1.10042 + 0.380261 0.0148512 1.04852 + 0.220879 0.100383 1.17651 + 0.233023 -0.373611 0.878347 + 0.152449 0.44874 -0.0523492 + 0.273322 0.585954 0.0652308 + 0.238363 0.364735 0.105826 + 0.166559 0.758486 0.187936 + 0.154943 0.477943 0.673905 + 0.284077 0.435625 0.667188 + 0.419206 0.115127 0.865327 + -0.0285769 0.437699 -0.0535408 + -0.264314 0.494112 -0.789926 + -0.15857 0.354428 -0.658808 + -0.237004 0.42878 -0.597998 + -0.148012 0.787494 -0.373926 + -0.171832 0.594233 -0.874134 + -0.258671 0.764324 -0.353271 + -0.00593187 0.589712 -0.852552 + -0.332296 0.629622 -0.0820385 + 0.159073 0.368627 -0.659112 + 0.251342 0.515244 -0.788225 + 0.211846 0.431045 -0.578112 + 0.15593 0.609114 -0.874709 + 0.117459 0.787157 -0.366039 + 0.226637 0.763707 -0.338853 + 0.289453 0.628055 -0.0664725 + 0.00109558 0.35208 -0.651119 + -0.188678 -0.271632 -1.00874 + -0.0831547 -0.293392 -0.857738 + -0.17584 -0.154155 -0.840092 + -0.118006 0.183972 -1.08223 + -0.114712 -0.227136 -1.12822 + -0.216838 0.184458 -1.04911 + 0.0282506 -0.18862 -1.11938 + -0.274532 0.254744 -0.907986 + 0.192683 -0.230446 -0.882401 + 0.260921 -0.176463 -1.04656 + 0.224362 -0.0970857 -0.852431 + 0.169699 -0.161347 -1.15394 + 0.122298 0.198113 -1.09068 + 0.222464 0.210309 -1.06455 + 0.28762 0.296642 -0.927656 + 0.0566948 -0.262981 -0.859212 + 0.161005 -1.00873 -1.0042 + 0.258722 -0.975694 -0.86296 + 0.144179 -0.882105 -0.873879 + 0.0874361 -0.615274 -1.17038 + 0.214813 -0.975729 -1.12446 + 0.00136829 -0.630642 -1.13676 + 0.329162 -0.902152 -1.1212 + -0.122725 -0.484971 -0.986478 + 0.483217 -0.810162 -0.89613 + 0.55265 -0.757503 -1.05812 + 0.489716 -0.694561 -0.915621 + 0.446044 -0.805089 -1.1588 + 0.289163 -0.541548 -1.19728 + 0.370147 -0.495864 -1.18595 + 0.34967 -0.312324 -1.04949 + 0.374333 -0.877432 -0.868794 + 0.607543 -1.53439 -1.02067 + 0.698172 -1.49019 -0.886176 + 0.575206 -1.43154 -0.891022 + 0.435218 -1.20562 -1.16293 + 0.649365 -1.49194 -1.13582 + 0.413344 -1.27366 -1.13106 + 0.751815 -1.40638 -1.13315 + 0.27275 -1.15653 -1.00492 + 0.895063 -1.33172 -0.921539 + 0.925843 -1.27803 -1.07782 + 0.841074 -1.21598 -0.938581 + 0.852688 -1.32831 -1.17235 + 0.641782 -1.10589 -1.19244 + 0.700651 -1.04071 -1.18246 + 0.640783 -0.85813 -1.07076 + 0.798763 -1.41151 -0.894372 + 1.04508 -2.03434 -1.08516 + 1.13725 -2.02258 -0.932436 + 1.02173 -1.96002 -0.930064 + 0.901601 -1.74715 -1.18877 + 1.09633 -2.01972 -1.17714 + 0.832386 -1.78639 -1.15591 + 1.21209 -1.9528 -1.17178 + 0.698805 -1.67346 -1.02845 + 1.38661 -1.91704 -0.963309 + 1.42417 -1.86405 -1.11518 + 1.35218 -1.78239 -0.978392 + 1.34702 -1.90209 -1.20842 + 1.05537 -1.62402 -1.21647 + 1.11349 -1.5613 -1.20655 + 1.05889 -1.3851 -1.09331 + 1.2552 -1.97041 -0.938535 + 1.18874 -2.56428 -1.12203 + 1.27487 -2.56601 -0.990367 + 1.19065 -2.48163 -0.98751 + 1.18773 -2.29626 -1.23899 + 1.24381 -2.5416 -1.22798 + 1.11104 -2.31591 -1.20889 + 1.36543 -2.51615 -1.21817 + 1.08965 -2.19867 -1.08211 + 1.50726 -2.52117 -1.00945 + 1.56325 -2.48439 -1.15394 + 1.49346 -2.35257 -1.02314 + 1.48393 -2.49617 -1.24756 + 1.36673 -2.21997 -1.26005 + 1.43827 -2.17644 -1.24739 + 1.50882 -2.02002 -1.13143 + 1.39141 -2.54516 -0.990865 + 1.20678 -3.07868 -1.14409 + 1.28338 -3.15151 -1.01556 + 1.22621 -3.00188 -1.02307 + 1.29584 -2.87651 -1.27199 + 1.24884 -3.10075 -1.24763 + 1.21956 -2.86743 -1.24743 + 1.38897 -3.14197 -1.23749 + 1.17183 -2.70678 -1.13326 + 1.5097 -3.20062 -1.03284 + 1.57576 -3.18703 -1.17372 + 1.55882 -3.04638 -1.04489 + 1.50277 -3.16883 -1.26641 + 1.48175 -2.86904 -1.28293 + 1.55942 -2.85381 -1.26743 + 1.6072 -2.68931 -1.15887 + 1.39619 -3.178 -1.01527 + 0.977816 -3.66584 -1.17879 + 1.03325 -3.67788 -1.27849 + 1.1395 -3.72426 -1.2742 + 1.14386 -3.7695 -1.06572 + 1.04336 -3.72286 -1.061 + 0.766205 -4.16698 -1.22096 + 0.826053 -4.21561 -1.12389 + 0.828685 -4.10303 -1.12329 + 0.92199 -3.95326 -1.32798 + 0.810193 -4.17699 -1.30837 + 0.867067 -3.91672 -1.30019 + 0.899762 -4.21591 -1.30921 + 0.901229 -3.7816 -1.18635 + 1.30474 -3.80966 -1.21858 + 1.24029 -3.76989 -1.30454 + 1.24413 -3.81193 -1.08615 + 0.994301 -4.29276 -1.15216 + 1.0407 -4.29329 -1.2667 + 1.07904 -4.22189 -1.16183 + 0.983635 -4.25647 -1.33755 + 1.06999 -4.0235 -1.35076 + 1.13764 -4.04512 -1.34185 + 1.24785 -3.94603 -1.23973 + 0.910754 -4.25555 -1.13141 + 0.575378 -4.63004 -1.22286 + 0.647394 -4.59575 -1.14078 + 0.726552 -4.42207 -1.32244 + 0.606409 -4.65087 -1.2991 + 0.681792 -4.39236 -1.29904 + 0.691907 -4.67181 -1.30426 + 0.710503 -4.2754 -1.21422 + 0.815734 -4.67163 -1.1701 + 0.825163 -4.72294 -1.27602 + 0.76616 -4.70894 -1.33371 + 0.848611 -4.47642 -1.34438 + 0.904935 -4.49174 -1.33915 + 0.99639 -4.40262 -1.26558 + 0.735376 -4.64323 -1.14974 + 0.512631 -5.10931 -1.17396 + 0.5539 -5.1079 -1.14236 + 0.541665 -5.06072 -1.1482 + 0.542597 -4.91753 -1.2991 + 0.525403 -5.1312 -1.22357 + 0.499677 -4.88779 -1.27512 + 0.558911 -5.14374 -1.23307 + 0.529067 -4.73277 -1.20941 + 0.622196 -5.12905 -1.15882 + 0.637351 -5.14793 -1.20403 + 0.654077 -5.09552 -1.1753 + 0.594221 -5.15252 -1.24016 + 0.664342 -4.95523 -1.32843 + 0.72225 -4.95669 -1.32874 + 0.814223 -4.82102 -1.27802 + 0.588398 -5.11767 -1.1502 + 0.565193 -5.1585 -1.19055 + 1.0439 -3.59939 -1.06402 + 1.16414 -3.42459 -1.30271 + 1.09832 -3.38553 -1.27581 + 1.12267 -3.22333 -1.15459 + 1.33683 -3.71803 -1.09012 + 1.3373 -3.4947 -1.31814 + 1.41489 -3.51372 -1.30402 + 1.5282 -3.3875 -1.19074 + faces 406 + 0 1 2 1 0 1 2 0 + 3 1 0 1 3 1 0 0 + 3 0 4 1 3 0 4 0 + 4 0 5 1 4 0 5 0 + 5 0 2 1 5 0 2 0 + 5 2 6 1 5 2 6 0 + 6 2 7 1 44 45 46 0 + 7 2 1 1 46 45 42 0 + 8 9 10 1 47 48 49 0 + 11 12 13 1 9 10 11 0 + 12 8 13 1 10 7 11 0 + 14 12 5 1 12 10 13 0 + 10 6 7 1 49 50 51 0 + 8 10 15 1 47 49 52 0 + 15 7 3 1 52 51 53 0 + 5 11 4 1 13 9 16 0 + 7 1 3 1 46 42 43 0 + 9 6 10 1 54 50 49 0 + 9 27 6 1 55 56 57 0 + 10 7 15 1 49 51 52 0 + 15 3 13 1 14 15 11 0 + 8 15 13 1 7 14 11 0 + 12 11 5 1 10 9 13 0 + 4 13 3 1 16 11 15 0 + 11 13 4 1 9 11 16 0 + 16 0 2 1 19 20 21 0 + 16 17 0 1 19 22 20 0 + 0 17 18 1 20 22 23 0 + 0 18 5 1 20 23 24 0 + 0 5 2 1 20 24 21 0 + 2 5 6 1 21 24 25 0 + 2 6 19 1 60 61 62 0 + 2 19 16 1 60 62 58 0 + 20 21 22 1 63 64 65 0 + 23 24 25 1 28 29 30 0 + 21 23 25 1 27 28 30 0 + 23 14 5 1 28 31 32 0 + 6 22 19 1 66 65 67 0 + 22 21 26 1 65 64 68 0 + 19 26 17 1 67 68 69 0 + 24 5 18 1 29 32 35 0 + 16 19 17 1 58 62 59 0 + 6 20 22 1 66 70 65 0 + 27 20 6 1 71 72 73 0 + 19 22 26 1 67 65 68 0 + 17 26 25 1 34 33 30 0 + 26 21 25 1 33 27 30 0 + 24 23 5 1 29 28 32 0 + 25 18 17 1 30 35 34 0 + 25 24 18 1 30 29 35 0 + 28 29 30 1 120 121 122 0 + 31 32 33 1 143 144 145 0 + 32 28 33 1 144 142 145 0 + 34 32 14 1 146 144 147 0 + 30 27 9 1 122 123 124 0 + 28 30 35 1 120 122 125 0 + 35 9 8 1 125 124 126 0 + 14 31 12 1 147 143 148 0 + 29 27 30 1 127 123 122 0 + 29 43 27 1 128 129 130 0 + 30 9 35 1 122 124 125 0 + 35 8 33 1 93 94 92 0 + 28 35 33 1 90 93 92 0 + 32 31 14 1 144 143 147 0 + 12 33 8 1 95 92 94 0 + 31 33 12 1 143 145 148 0 + 36 37 38 1 131 132 133 0 + 39 40 41 1 150 151 152 0 + 37 39 41 1 149 150 152 0 + 39 34 14 1 150 153 154 0 + 27 38 20 1 134 133 135 0 + 38 37 42 1 133 132 136 0 + 20 42 21 1 135 136 137 0 + 40 14 23 1 151 154 155 0 + 27 36 38 1 134 138 133 0 + 43 36 27 1 139 140 141 0 + 20 38 42 1 135 133 136 0 + 21 42 41 1 112 111 110 0 + 42 37 41 1 111 109 110 0 + 40 39 14 1 151 150 154 0 + 41 23 21 1 110 113 112 0 + 41 40 23 1 152 151 155 0 + 44 45 46 1 210 211 212 0 + 47 48 49 1 233 234 235 0 + 48 44 49 1 234 232 235 0 + 50 48 34 1 236 234 237 0 + 46 43 29 1 212 213 214 0 + 44 46 51 1 210 212 215 0 + 51 29 28 1 215 214 216 0 + 34 47 32 1 237 233 238 0 + 45 43 46 1 217 213 212 0 + 45 59 43 1 218 219 220 0 + 46 29 51 1 212 214 215 0 + 51 28 49 1 177 178 175 0 + 44 51 49 1 172 177 175 0 + 48 47 34 1 234 233 237 0 + 32 49 28 1 179 175 178 0 + 47 49 32 1 233 235 238 0 + 52 53 54 1 221 222 223 0 + 55 56 57 1 240 241 242 0 + 53 55 57 1 239 240 242 0 + 55 50 34 1 240 243 244 0 + 43 54 36 1 224 223 225 0 + 54 53 58 1 223 222 226 0 + 36 58 37 1 225 226 227 0 + 56 34 39 1 241 244 245 0 + 43 52 54 1 224 228 223 0 + 59 52 43 1 229 230 231 0 + 36 54 58 1 225 223 226 0 + 37 58 57 1 198 197 195 0 + 58 53 57 1 197 193 195 0 + 56 55 34 1 241 240 244 0 + 57 39 37 1 195 199 198 0 + 57 56 39 1 242 241 245 0 + 60 61 62 1 294 295 296 0 + 63 64 65 1 317 318 319 0 + 64 60 65 1 318 316 319 0 + 66 64 50 1 320 318 321 0 + 62 59 45 1 296 297 298 0 + 60 62 67 1 294 296 299 0 + 67 45 44 1 299 298 300 0 + 50 63 48 1 321 317 322 0 + 61 59 62 1 301 297 296 0 + 61 75 59 1 302 303 304 0 + 62 45 67 1 296 298 299 0 + 67 44 65 1 261 262 259 0 + 60 67 65 1 256 261 259 0 + 64 63 50 1 318 317 321 0 + 48 65 44 1 263 259 262 0 + 63 65 48 1 317 319 322 0 + 68 69 70 1 305 306 307 0 + 71 72 73 1 324 325 326 0 + 69 71 73 1 323 324 326 0 + 71 66 50 1 324 327 328 0 + 59 70 52 1 308 307 309 0 + 70 69 74 1 307 306 310 0 + 52 74 53 1 309 310 311 0 + 72 50 55 1 325 328 329 0 + 59 68 70 1 308 312 307 0 + 75 68 59 1 313 314 315 0 + 52 70 74 1 309 307 310 0 + 53 74 73 1 282 281 279 0 + 74 69 73 1 281 277 279 0 + 72 71 50 1 325 324 328 0 + 73 55 53 1 279 283 282 0 + 73 72 55 1 326 325 329 0 + 76 77 78 1 378 379 380 0 + 79 80 81 1 401 402 403 0 + 80 76 81 1 402 400 403 0 + 82 80 66 1 404 402 405 0 + 78 75 61 1 380 381 382 0 + 76 78 83 1 378 380 383 0 + 83 61 60 1 383 382 384 0 + 66 79 64 1 405 401 406 0 + 77 75 78 1 385 381 380 0 + 77 91 75 1 386 387 388 0 + 78 61 83 1 380 382 383 0 + 83 60 81 1 345 346 343 0 + 76 83 81 1 340 345 343 0 + 80 79 66 1 402 401 405 0 + 64 81 60 1 347 343 346 0 + 79 81 64 1 401 403 406 0 + 84 85 86 1 389 390 391 0 + 87 88 89 1 408 409 410 0 + 85 87 89 1 407 408 410 0 + 87 82 66 1 408 411 412 0 + 75 86 68 1 392 391 393 0 + 86 85 90 1 391 390 394 0 + 68 90 69 1 393 394 395 0 + 88 66 71 1 409 412 413 0 + 75 84 86 1 392 396 391 0 + 91 84 75 1 397 398 399 0 + 68 86 90 1 393 391 394 0 + 69 90 89 1 366 365 363 0 + 90 85 89 1 365 361 363 0 + 88 87 66 1 409 408 412 0 + 89 71 69 1 363 367 366 0 + 89 88 71 1 410 409 413 0 + 92 93 94 1 462 463 464 0 + 95 96 97 1 485 486 487 0 + 96 92 97 1 486 484 487 0 + 98 96 82 1 488 486 489 0 + 94 91 77 1 464 465 466 0 + 92 94 99 1 462 464 467 0 + 99 77 76 1 467 466 468 0 + 82 95 80 1 489 485 490 0 + 93 91 94 1 469 465 464 0 + 93 107 91 1 470 471 472 0 + 94 77 99 1 464 466 467 0 + 99 76 97 1 429 430 427 0 + 92 99 97 1 424 429 427 0 + 96 95 82 1 486 485 489 0 + 80 97 76 1 431 427 430 0 + 95 97 80 1 485 487 490 0 + 100 101 102 1 473 474 475 0 + 103 104 105 1 492 493 494 0 + 101 103 105 1 491 492 494 0 + 103 98 82 1 492 495 496 0 + 91 102 84 1 476 475 477 0 + 102 101 106 1 475 474 478 0 + 84 106 85 1 477 478 479 0 + 104 82 87 1 493 496 497 0 + 91 100 102 1 476 480 475 0 + 107 100 91 1 481 482 483 0 + 84 102 106 1 477 475 478 0 + 85 106 105 1 450 449 447 0 + 106 101 105 1 449 445 447 0 + 104 103 82 1 493 492 496 0 + 105 87 85 1 447 451 450 0 + 105 104 87 1 494 493 497 0 + 108 109 110 1 546 547 548 0 + 111 112 113 1 569 570 571 0 + 112 108 113 1 570 568 571 0 + 114 112 98 1 572 570 573 0 + 110 107 93 1 548 549 550 0 + 108 110 115 1 546 548 551 0 + 115 93 92 1 551 550 552 0 + 98 111 96 1 573 569 574 0 + 109 107 110 1 553 549 548 0 + 109 123 107 1 554 555 556 0 + 110 93 115 1 548 550 551 0 + 115 92 113 1 513 514 511 0 + 108 115 113 1 508 513 511 0 + 112 111 98 1 570 569 573 0 + 96 113 92 1 515 511 514 0 + 111 113 96 1 569 571 574 0 + 116 117 118 1 557 558 559 0 + 119 120 121 1 576 577 578 0 + 117 119 121 1 575 576 578 0 + 119 114 98 1 576 579 580 0 + 107 118 100 1 560 559 561 0 + 118 117 122 1 559 558 562 0 + 100 122 101 1 561 562 563 0 + 120 98 103 1 577 580 581 0 + 107 116 118 1 560 564 559 0 + 123 116 107 1 565 566 567 0 + 100 118 122 1 561 559 562 0 + 101 122 121 1 534 533 531 0 + 122 117 121 1 533 529 531 0 + 120 119 98 1 577 576 580 0 + 121 103 101 1 531 535 534 0 + 121 120 103 1 578 577 581 0 + 124 125 126 1 630 631 632 0 + 127 128 129 1 653 654 655 0 + 128 124 129 1 654 652 655 0 + 130 128 114 1 656 654 657 0 + 126 123 109 1 632 633 634 0 + 124 126 131 1 630 632 635 0 + 131 109 108 1 635 634 636 0 + 114 127 112 1 657 653 658 0 + 125 123 126 1 637 633 632 0 + 125 139 123 1 638 639 640 0 + 126 109 131 1 632 634 635 0 + 131 108 129 1 597 598 595 0 + 124 131 129 1 592 597 595 0 + 128 127 114 1 654 653 657 0 + 112 129 108 1 599 595 598 0 + 127 129 112 1 653 655 658 0 + 132 133 134 1 641 642 643 0 + 135 136 137 1 660 661 662 0 + 133 135 137 1 659 660 662 0 + 135 130 114 1 660 663 664 0 + 123 134 116 1 644 643 645 0 + 134 133 138 1 643 642 646 0 + 116 138 117 1 645 646 647 0 + 136 114 119 1 661 664 665 0 + 123 132 134 1 644 648 643 0 + 139 132 123 1 649 650 651 0 + 116 134 138 1 645 643 646 0 + 117 138 137 1 618 617 615 0 + 138 133 137 1 617 613 615 0 + 136 135 114 1 661 660 664 0 + 137 119 117 1 615 619 618 0 + 137 136 119 1 662 661 665 0 + 145 146 147 1 714 715 716 0 + 148 149 150 1 737 738 739 0 + 149 145 150 1 738 736 739 0 + 151 149 142 1 740 738 741 0 + 147 143 144 1 716 717 718 0 + 145 147 152 1 714 716 719 0 + 152 144 140 1 719 718 720 0 + 142 148 141 1 741 737 742 0 + 146 143 147 1 721 717 716 0 + 146 163 143 1 722 723 724 0 + 147 144 152 1 716 718 719 0 + 152 140 150 1 681 682 679 0 + 145 152 150 1 676 681 679 0 + 149 148 142 1 738 737 741 0 + 141 150 140 1 683 679 682 0 + 148 150 141 1 737 739 742 0 + 156 157 158 1 725 726 727 0 + 159 160 161 1 744 745 746 0 + 157 159 161 1 743 744 746 0 + 159 151 142 1 744 747 748 0 + 143 158 155 1 728 727 729 0 + 158 157 162 1 727 726 730 0 + 155 162 153 1 729 730 731 0 + 160 142 154 1 745 748 749 0 + 143 156 158 1 728 732 727 0 + 163 156 143 1 733 734 735 0 + 155 158 162 1 729 727 730 0 + 153 162 161 1 702 701 699 0 + 162 157 161 1 701 697 699 0 + 160 159 142 1 745 744 748 0 + 161 154 153 1 699 703 702 0 + 161 160 154 1 746 745 749 0 + 166 167 168 1 821 822 823 0 + 167 164 168 1 822 820 823 0 + 169 167 151 1 824 822 825 0 + 165 163 146 1 800 801 802 0 + 164 165 170 1 798 800 803 0 + 170 146 145 1 803 802 804 0 + 151 166 149 1 825 821 826 0 + 165 177 163 1 806 807 808 0 + 165 146 170 1 800 802 803 0 + 170 145 168 1 765 766 763 0 + 164 170 168 1 760 765 763 0 + 167 166 151 1 822 821 825 0 + 149 168 145 1 767 763 766 0 + 166 168 149 1 821 823 826 0 + 173 174 175 1 828 829 830 0 + 172 173 175 1 827 828 830 0 + 173 169 151 1 828 831 832 0 + 163 171 156 1 812 811 813 0 + 171 172 176 1 811 810 814 0 + 156 176 157 1 813 814 815 0 + 174 151 159 1 829 832 833 0 + 177 171 163 1 817 818 819 0 + 156 171 176 1 813 811 814 0 + 157 176 175 1 786 785 783 0 + 176 172 175 1 785 781 783 0 + 174 173 151 1 829 828 832 0 + 175 159 157 1 783 787 786 0 + 175 174 159 1 830 829 833 0 + 178 179 180 1 882 883 884 0 + 181 182 183 1 905 906 907 0 + 182 178 183 1 906 904 907 0 + 184 182 169 1 908 906 909 0 + 180 177 165 1 884 885 886 0 + 178 180 185 1 882 884 887 0 + 185 165 164 1 887 886 888 0 + 169 181 167 1 909 905 910 0 + 179 177 180 1 889 885 884 0 + 179 193 177 1 890 891 892 0 + 180 165 185 1 884 886 887 0 + 185 164 183 1 849 850 847 0 + 178 185 183 1 844 849 847 0 + 182 181 169 1 906 905 909 0 + 167 183 164 1 851 847 850 0 + 181 183 167 1 905 907 910 0 + 186 187 188 1 893 894 895 0 + 189 190 191 1 912 913 914 0 + 187 189 191 1 911 912 914 0 + 189 184 169 1 912 915 916 0 + 177 188 171 1 896 895 897 0 + 188 187 192 1 895 894 898 0 + 171 192 172 1 897 898 899 0 + 190 169 173 1 913 916 917 0 + 177 186 188 1 896 900 895 0 + 193 186 177 1 901 902 903 0 + 171 188 192 1 897 895 898 0 + 172 192 191 1 870 869 867 0 + 192 187 191 1 869 865 867 0 + 190 189 169 1 913 912 916 0 + 191 173 172 1 867 871 870 0 + 191 190 173 1 914 913 917 0 + 179 178 194 1 845 844 874 0 + 178 182 194 1 844 846 875 0 + 182 184 194 1 846 848 876 0 + 193 179 194 1 853 852 877 0 + 187 186 194 1 865 864 878 0 + 189 187 194 1 866 865 879 0 + 184 189 194 1 868 866 880 0 + 186 193 194 1 873 872 881 0 + 140 144 195 1 966 967 968 0 + 196 141 197 1 989 990 991 0 + 141 140 197 1 990 988 991 0 + 142 141 130 1 992 990 993 0 + 195 139 125 1 968 969 970 0 + 140 195 198 1 966 968 971 0 + 198 125 124 1 971 970 972 0 + 130 196 128 1 993 989 994 0 + 144 139 195 1 973 969 968 0 + 144 143 139 1 974 975 976 0 + 195 125 198 1 968 970 971 0 + 198 124 197 1 933 934 931 0 + 140 198 197 1 928 933 931 0 + 141 196 130 1 990 989 993 0 + 128 197 124 1 935 931 934 0 + 196 197 128 1 989 991 994 0 + 155 153 199 1 977 978 979 0 + 154 200 201 1 996 997 998 0 + 153 154 201 1 995 996 998 0 + 154 142 130 1 996 999 1000 0 + 139 199 132 1 980 979 981 0 + 199 153 202 1 979 978 982 0 + 132 202 133 1 981 982 983 0 + 200 130 135 1 997 1000 1001 0 + 139 155 199 1 980 984 979 0 + 143 155 139 1 985 986 987 0 + 132 199 202 1 981 979 982 0 + 133 202 201 1 954 953 951 0 + 202 153 201 1 953 949 951 0 + 200 154 130 1 997 996 1000 0 + 201 135 133 1 951 955 954 0 + 201 200 135 1 998 997 1001 0 + tverts 1002 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.033231 0.923409 0 + 0.00941113 0.917821 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.03339 0.923064 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.033231 0.923409 0 + 0.00941113 0.917821 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.03339 0.923064 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.562649 0.915606 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.786695 0.190904 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.562649 0.915606 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.786695 0.190904 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + -0.0765852 0.383238 0 + 0.0222587 0.455394 0 + 0.300226 0.455003 0 + -0.0869005 0.378539 0 + 0.0218892 0.460093 0 + 0.290967 0.24271 0 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.453088 0.484826 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.453088 0.484826 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.287847 0.467123 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0390017 0.923064 0 + 0.35066 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.287847 0.467123 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0390017 0.923064 0 + 0.35066 0.925614 0 + 0.515922 0.274306 0 + 0.319108 0.469549 0 + 0.0216734 0.453975 0 + 0.508406 0.272756 0 + 0.319709 0.46814 0 + 0.0200365 0.15394 0 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.976915 0.918209 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.771731 0.168457 0 + 0.976924 0.918198 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.976915 0.918209 0 + 0.589355 0.020881 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.0128139 0.923064 0 + 0.397424 0.925614 0 + weights 203 + tail01 1.0 + tail01 1.0 + tail01 1.0 + tail01 1.0 + tail01 1.0 + tail01 1.0 + tail01 1.0 + tail01 1.0 + tail02 0.415289 tail01 0.584711 + tail03 4.61441e-007 tail01 0.500316 tail02 0.499683 + tail01 0.654414 tail02 0.345586 + tail01 0.84858 tail02 0.15142 + tail01 0.464966 tail02 0.535034 + tail01 0.899178 tail02 0.100822 + tail01 0.5 tail02 0.5 + tail01 1.0 + tail01 1.0 + tail01 1.0 + tail01 1.0 + tail01 1.0 + tail01 0.499993 tail02 0.499993 tail03 1.45503e-005 + tail01 0.572672 tail02 0.427328 + tail01 0.650192 tail02 0.349808 + tail01 0.460101 tail02 0.539899 + tail01 0.850439 tail02 0.149561 + tail01 0.90183 tail02 0.0981699 + tail01 1.0 + tail01 0.499935 tail02 0.499935 tail03 0.0001303 + tail01 0.0627722 tail02 0.489923 tail03 0.447305 + tail04 0.000498185 tail01 0.1252 tail02 0.386271 tail03 0.488031 + tail01 0.197186 tail02 0.458554 tail03 0.34426 + tail01 0.365761 tail02 0.481625 tail03 0.152615 + tail01 0.0307965 tail02 0.484602 tail03 0.484602 + tail01 0.438126 tail02 0.450152 tail03 0.111722 + tail01 0.0413429 tail02 0.479329 tail03 0.479329 + tail01 0.61202 tail02 0.387891 tail03 8.89719e-005 + tail01 0.11876 tail02 0.382158 tail03 0.498607 tail04 0.000474862 + tail01 0.0575622 tail02 0.483742 tail03 0.458696 + tail01 0.202661 tail02 0.453983 tail03 0.343356 + tail01 0.0276487 tail02 0.487662 tail03 0.484689 + tail01 0.366043 tail02 0.487843 tail03 0.146114 + tail01 0.436477 tail02 0.461605 tail03 0.101917 + tail01 0.588453 tail02 0.411524 tail03 2.34673e-005 + tail01 0.127199 tail02 0.42773 tail03 0.443693 tail04 0.00137762 + tail03 0.617463 tail04 0.382537 + tail03 0.615441 tail04 0.384559 + tail01 0.000763085 tail02 0.000530213 tail03 0.696123 tail04 0.302584 + tail01 0.000232775 tail02 0.16958 tail03 0.496309 tail04 0.333879 + tail03 0.489882 tail04 0.510118 + tail01 0.000744807 tail02 0.191628 tail03 0.530605 tail04 0.277022 + tail02 5.6318e-006 tail03 0.499997 tail04 0.499997 + tail01 0.0195656 tail02 0.294711 tail03 0.612288 tail04 0.073435 + tail05 9.43188e-007 tail03 0.506846 tail04 0.493153 + tail03 0.437952 tail04 0.562048 + tail01 0.000837396 tail02 0.00210223 tail03 0.640554 tail04 0.356506 + tail02 3.50561e-006 tail03 0.441963 tail04 0.558034 + tail01 0.000120769 tail02 0.172698 tail03 0.492818 tail04 0.334363 + tail01 0.000284763 tail02 0.197989 tail03 0.524152 tail04 0.277574 + tail01 0.0132899 tail02 0.322446 tail03 0.599257 tail04 0.0650076 + tail03 0.501036 tail04 0.498964 + tail03 0.000270419 tail04 0.568379 tail05 0.431351 + tail03 0.000201938 tail04 0.576728 tail05 0.42307 + tail03 0.0166552 tail04 0.595201 tail05 0.388144 + tail03 0.241715 tail04 0.554957 tail05 0.203328 + tail03 0.000347132 tail04 0.467415 tail05 0.532238 + tail03 0.319103 tail04 0.522823 tail05 0.158074 + tail06 1.12219e-005 tail03 0.00129939 tail04 0.499345 tail05 0.499345 + tail03 0.634182 tail04 0.36135 tail05 0.00446823 + tail03 0.00124825 tail04 0.543512 tail05 0.45524 + tail03 0.000993333 tail04 0.45928 tail05 0.539726 + tail03 0.0156537 tail04 0.579747 tail05 0.404599 + tail03 0.00192274 tail04 0.428004 tail05 0.570074 + tail03 0.175786 tail04 0.59528 tail05 0.228934 + tail03 0.183283 tail04 0.613597 tail05 0.20312 + tail03 0.374279 tail04 0.611552 tail05 0.0141691 + tail03 0.00157227 tail04 0.499214 tail05 0.499214 + tail04 0.00345166 tail05 0.496928 tail06 0.49962 + tail04 0.00246973 tail05 0.562424 tail06 0.435106 + tail04 0.0436125 tail05 0.566784 tail06 0.389604 + tail04 0.295431 tail05 0.546344 tail06 0.158225 + tail04 0.00223493 tail05 0.424192 tail06 0.573573 + tail04 0.276961 tail05 0.516239 tail06 0.2068 + tail04 0.00273155 tail05 0.498634 tail06 0.498634 + tail04 0.596186 tail05 0.393234 tail06 0.01058 + tail04 0.000616482 tail05 0.535927 tail06 0.463457 + tail04 0.000269505 tail05 0.483943 tail06 0.515788 + tail04 0.018673 tail05 0.559053 tail06 0.422274 + tail04 0.000503354 tail05 0.443763 tail06 0.555734 + tail04 0.14706 tail05 0.577708 tail06 0.275232 + tail04 0.151782 tail05 0.597747 tail06 0.250471 + tail04 0.360631 tail05 0.621018 tail06 0.0183506 + tail04 0.00193102 tail05 0.499034 tail06 0.499034 + tail07 0.548193 tail08 2.27533e-005 tail05 0.000742292 tail06 0.451042 + tail05 0.000233212 tail06 0.509197 tail07 0.490556 tail08 1.35147e-005 + tail05 0.0175264 tail06 0.557138 tail07 0.425336 + tail05 0.173948 tail06 0.549651 tail07 0.276401 + tail05 5.14458e-005 tail06 0.432119 tail07 0.567466 tail08 0.000363131 + tail05 0.205532 tail06 0.546802 tail07 0.247666 + tail05 5.02604e-005 tail06 0.499929 tail07 0.499929 tail08 9.1699e-005 + tail05 0.471724 tail06 0.51113 tail07 0.0171464 + tail06 0.662713 tail07 0.337287 + tail06 0.59519 tail07 0.40481 + tail05 0.00230065 tail06 0.632909 tail07 0.36479 + tail06 0.477365 tail07 0.522635 + tail05 0.175428 tail06 0.563383 tail07 0.261189 + tail05 0.207843 tail06 0.569692 tail07 0.222465 + tail05 0.464085 tail06 0.523017 tail07 0.0128977 + tail05 1.40394e-005 tail06 0.514796 tail07 0.485185 tail08 4.90764e-006 + tail06 0.000565848 tail07 0.466187 tail08 0.533247 + tail06 0.00115274 tail07 0.553313 tail08 0.445534 + tail06 0.0220827 tail07 0.603369 tail08 0.374548 + tail06 0.111614 tail07 0.62186 tail08 0.266526 + tail06 0.000379172 tail07 0.413597 tail08 0.586024 + tail06 0.114469 tail07 0.648676 tail08 0.236855 + tail06 0.00117318 tail07 0.499413 tail08 0.499413 + tail06 0.306428 tail07 0.651125 tail08 0.0424468 + tail06 0.000818168 tail07 0.547647 tail08 0.451535 + tail06 0.000364558 tail07 0.531264 tail08 0.468371 + tail06 0.0578581 tail07 0.562145 tail08 0.379997 + tail06 0.000215275 tail07 0.471168 tail08 0.528616 + tail06 0.16275 tail07 0.587245 tail08 0.250005 + tail06 0.225023 tail07 0.569573 tail08 0.205404 + tail06 0.564381 tail07 0.419949 tail08 0.0156699 + tail06 0.00155053 tail07 0.499225 tail08 0.499225 + tail09 0.510636 tail07 0.00724094 tail08 0.482123 + tail07 0.00189527 tail08 0.532588 tail09 0.465517 + tail07 0.0510489 tail08 0.587167 tail09 0.361784 + tail07 0.136171 tail08 0.585315 tail09 0.278514 + tail07 0.00271986 tail08 0.407822 tail09 0.589458 + tail07 0.137674 tail08 0.607553 tail09 0.254773 + tail07 0.00284241 tail08 0.498579 tail09 0.498579 + tail07 0.343696 tail08 0.634028 tail09 0.0222762 + tail07 0.000782795 tail08 0.550161 tail09 0.449056 + tail07 0.000625609 tail08 0.5125 tail09 0.486875 + tail07 0.0508842 tail08 0.542664 tail09 0.406452 + tail07 0.00067433 tail08 0.451685 tail09 0.547641 + tail07 0.197419 tail08 0.537359 tail09 0.265222 + tail07 0.266882 tail08 0.506205 tail09 0.226912 + tail07 0.596577 tail08 0.387907 tail09 0.0155166 + tail07 0.00185994 tail08 0.49907 tail09 0.49907 + tail10 0.487771 tail09 0.512229 + tail09 0.453706 tail10 0.546294 + tail08 4.71728e-005 tail09 0.499976 tail10 0.499976 + tail08 1.28632e-005 tail09 0.499994 tail10 0.499994 + tail09 0.555439 tail10 0.444561 + tail11 0.423637 tail09 0.00947641 tail10 0.566887 + tail09 0.0120436 tail10 0.548822 tail11 0.439134 + tail09 0.0699564 tail10 0.6109 tail11 0.319144 + tail09 0.250437 tail10 0.628132 tail11 0.121431 + tail09 0.00803572 tail10 0.494635 tail11 0.49733 + tail09 0.291468 tail10 0.625455 tail11 0.0830769 + tail09 0.0130121 tail10 0.493494 tail11 0.493494 + tail09 0.492893 tail10 0.507107 tail11 1.97251e-007 + tail08 4.4728e-005 tail09 0.549301 tail10 0.450655 + tail08 9.22536e-006 tail09 0.461819 tail10 0.538172 + tail08 2.14358e-005 tail09 0.569557 tail10 0.430421 + tail09 0.0136654 tail10 0.55355 tail11 0.432784 + tail09 0.0125587 tail10 0.54726 tail11 0.440181 + tail09 0.082579 tail10 0.596321 tail11 0.3211 + tail09 0.00968612 tail10 0.484598 tail11 0.505716 + tail09 0.264733 tail10 0.611776 tail11 0.123491 + tail09 0.321019 tail10 0.593051 tail11 0.0859302 + tail09 0.544634 tail10 0.455362 tail11 4.05012e-006 + tail09 0.014196 tail10 0.492902 tail11 0.492902 + tail12 0.47855 tail10 0.0143649 tail11 0.507085 + tail10 0.0497788 tail11 0.489172 tail12 0.461049 + tail10 0.347575 tail11 0.486839 tail12 0.165586 + tail10 0.0108108 tail11 0.470006 tail12 0.519183 + tail10 0.399785 tail11 0.45982 tail12 0.140395 + tail10 0.0176277 tail11 0.491186 tail12 0.491186 + tail10 0.581734 tail11 0.408981 tail12 0.00928431 + tail10 0.0462531 tail11 0.476873 tail12 0.476873 + tail10 0.0176681 tail11 0.474567 tail12 0.507765 + tail10 0.0128931 tail11 0.448091 tail12 0.539016 + tail10 0.335191 tail11 0.497214 tail12 0.167594 + tail10 0.376302 tail11 0.47966 tail12 0.144039 + tail10 0.546157 tail11 0.444079 tail12 0.00976422 + tail10 0.0513215 tail11 0.474339 tail12 0.474339 + tail12 1.0 + tail11 5.05658e-005 tail12 0.999949 + tail11 0.0049552 tail12 0.995045 + tail11 0.129014 tail12 0.870986 + tail12 1.0 + tail11 0.153135 tail12 0.846865 + tail12 1.0 + tail11 0.499438 tail12 0.500562 + tail11 2.97873e-005 tail12 0.99997 + tail12 1.0 + tail11 0.00407308 tail12 0.995927 + tail12 1.0 + tail11 0.120458 tail12 0.879542 + tail11 0.147876 tail12 0.852124 + tail10 4.43656e-005 tail11 0.450445 tail12 0.549511 + tail11 7.55316e-005 tail12 0.999924 + tail12 1.0 + tail08 0.00517726 tail09 0.609424 tail10 0.385398 + tail08 0.11081 tail09 0.690987 tail10 0.198203 + tail08 0.110187 tail09 0.723114 tail10 0.166699 + tail08 0.322073 tail09 0.676381 tail10 0.00154593 + tail08 0.0202487 tail09 0.62728 tail10 0.352471 + tail08 0.169772 tail09 0.654873 tail10 0.175355 + tail08 0.236608 tail09 0.635172 tail10 0.12822 + tail08 0.568218 tail09 0.431229 tail10 0.000552295 +endnode +node dummy handconjure + parent c_marilith2 + position 0.0 0.822216 4.71375 + orientation 1.0 0.0 0.0 -0.0421075 + wirecolor 0.101961 0.694118 0.580392 +endnode +endmodelgeom c_marilith2 +donemodel c_marilith2 diff --git a/tests/fixtures/oracle/ascii/c_marilithe.mdl b/tests/fixtures/oracle/ascii/c_marilithe.mdl new file mode 100644 index 0000000..574f565 --- /dev/null +++ b/tests/fixtures/oracle/ascii/c_marilithe.mdl @@ -0,0 +1,25606 @@ +# Exported from NWmax 0.8 b60 at 11/4/2011 10:42:00 AM +# mdl file +# +#NWmax MODEL ASCII +# model: c_marilithe +#local file: Unknown +filedependancy Unknown +newmodel c_marilithe +setsupermodel c_marilithe c_marilithe1 +classification Character +setanimationscale 0.988 +#NWmax GEOM ASCII +beginmodelgeom c_marilithe +node dummy c_marilithe + parent NULL +endnode +node trimesh rootdummy + parent c_marilithe + position 0.000249139 -0.0325529 1.19227 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.419608 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 15 + center 0.0 5.06639e-006 0.0 + bitmap pfh0_neck001 + verts 8 + -0.0226925 0.0194507 -0.0194507 + 0.0226925 0.0194507 -0.0194507 + -0.0226925 0.0194507 0.0194507 + 0.0226925 0.0194507 0.0194507 + -0.0226925 -0.0194506 -0.0194507 + 0.0226925 -0.0194506 -0.0194507 + -0.0226925 -0.0194506 0.0194507 + 0.0226925 -0.0194506 0.0194507 + faces 12 + 0 2 3 2 0 0 0 2 + 3 1 0 2 0 0 0 2 + 4 5 7 4 0 0 0 1 + 7 6 4 4 0 0 0 1 + 0 1 5 32 0 0 0 5 + 5 4 0 32 0 0 0 5 + 1 3 7 16 0 0 0 4 + 7 5 1 16 0 0 0 4 + 3 2 6 32 0 0 0 6 + 6 7 3 32 0 0 0 6 + 2 0 4 64 0 0 0 3 + 4 6 2 64 0 0 0 3 +endnode +node danglymesh torso_g + parent rootdummy + position -0.000249157 0.0106959 -0.000543518 + orientation -0.00996792 0.942527 0.333981 -4.17573e-006 + wirecolor 0.239216 0.521569 0.0156863 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center -0.0942497 0.56445 17.656 + period 8.0 + tightness 3.0 + displacement 0.02 + showdispl true + displtype 1 + center -0.0942497 0.56445 17.656 + bitmap medusae_chest + verts 47 + -0.000942455 0.0985512 0.16897 + -0.0690821 0.0632231 0.00477203 + -0.0544696 0.0935484 0.139413 + -0.0951841 0.0069471 -0.0387509 + -0.0988065 0.0632781 0.138471 + -0.000941668 0.0313463 0.34518 + -0.146391 -0.053939 0.351217 + -0.000941305 -0.0594137 0.405304 + -0.00094319 0.0504502 -0.0346112 + -0.000943146 -0.0307398 -0.0521832 + -0.000942883 -0.0689948 0.000926762 + -0.0816631 -0.110118 0.194288 + -0.0644689 -0.0643739 -0.00192499 + -0.000941428 -0.121942 0.351975 + -0.0966185 -0.104471 0.329542 + -0.177877 -0.038893 0.285956 + -0.117689 0.120564 0.159771 + -0.130376 0.0350671 0.268726 + -0.060894 0.0912622 0.272578 + -0.143388 0.110252 0.200683 + -0.0506144 0.136959 0.168569 + -0.024587 0.139918 0.216028 + -0.12701 -0.0159729 0.123602 + -0.0309378 -0.137783 0.259291 + -0.11184 0.149072 0.222843 + -0.142914 -0.000487948 0.334323 + -0.00094211 0.0825677 0.251049 + -0.00094306 0.0686162 0.00477176 + 0.067471 0.0632233 0.00477149 + 0.0525844 0.0935485 0.139413 + 0.0935729 0.00694737 -0.0387516 + 0.0969215 0.0632784 0.13847 + 0.144507 -0.0539385 0.351216 + 0.0797779 -0.110912 0.194287 + 0.0628581 -0.0643737 -0.00192549 + 0.0947355 -0.111799 0.330549 + 0.175992 -0.0388925 0.285955 + 0.0487294 0.136959 0.168569 + 0.115803 0.120564 0.15977 + 0.05339 0.0879449 0.278373 + 0.128492 0.0350674 0.268725 + 0.109956 0.149072 0.222841 + 0.141504 0.110252 0.200682 + 0.0227024 0.139918 0.216028 + 0.125264 -0.0159726 0.123601 + 0.0290542 -0.137547 0.25825 + 0.14103 -0.000487552 0.334322 + faces 90 + 0 1 2 1 199 200 201 1 + 1 3 4 1 200 202 203 1 + 5 6 7 1 204 205 206 1 + 8 3 1 1 207 202 200 1 + 8 9 3 1 207 208 202 1 + 10 11 12 1 209 210 211 1 + 13 7 6 1 212 213 214 1 + 13 6 14 1 212 214 215 1 + 14 15 11 1 215 216 210 1 + 10 12 9 1 209 211 217 1 + 12 3 9 1 211 218 217 1 + 4 16 2 1 203 219 201 1 + 17 5 18 1 220 204 221 1 + 4 17 19 1 203 220 222 1 + 14 6 15 1 215 214 216 1 + 20 21 0 1 223 224 199 1 + 1 4 2 1 200 203 201 1 + 15 17 4 1 225 220 203 1 + 4 19 16 1 203 222 219 1 + 22 15 4 1 226 225 203 1 + 13 14 23 1 212 215 227 1 + 10 23 11 1 209 227 210 1 + 12 11 15 1 211 210 216 1 + 16 24 20 1 219 228 223 1 + 2 20 0 1 201 223 199 1 + 16 19 24 1 219 222 228 1 + 2 16 20 1 201 219 223 1 + 15 25 17 1 225 229 220 1 + 19 17 24 1 222 220 228 1 + 26 18 5 1 230 221 204 1 + 6 5 25 1 205 204 229 1 + 20 24 21 1 223 228 224 1 + 26 21 18 1 230 224 221 1 + 12 22 3 1 211 231 218 1 + 23 14 11 1 227 215 210 1 + 10 13 23 1 209 212 227 1 + 27 0 28 1 232 199 233 1 + 28 0 29 1 233 199 234 1 + 30 28 31 1 235 233 236 1 + 32 5 7 1 237 204 206 1 + 30 8 28 1 235 207 233 1 + 9 8 30 1 208 207 235 1 + 33 10 34 1 238 209 239 1 + 7 13 32 1 213 212 240 1 + 32 13 35 1 240 212 241 1 + 36 35 33 1 242 241 238 1 + 34 10 9 1 239 209 217 1 + 30 34 9 1 243 239 217 1 + 37 38 29 1 244 245 234 1 + 39 40 41 1 246 247 248 1 + 40 31 42 1 247 236 249 1 + 32 35 36 1 240 241 242 1 + 43 37 0 1 250 244 199 1 + 31 28 29 1 236 233 234 1 + 40 36 31 1 247 251 236 1 + 42 31 38 1 249 236 245 1 + 44 30 31 1 252 235 236 1 + 35 13 45 1 241 212 253 1 + 45 10 33 1 253 209 238 1 + 33 34 36 1 238 239 242 1 + 41 38 37 1 248 245 244 1 + 37 29 0 1 244 234 199 1 + 42 38 41 1 249 245 248 1 + 38 31 29 1 245 236 234 1 + 32 36 46 1 237 251 254 1 + 40 42 41 1 247 249 248 1 + 41 43 39 1 248 250 246 1 + 5 46 40 1 204 254 247 1 + 41 37 43 1 248 244 250 1 + 39 26 5 1 246 230 204 1 + 36 34 44 1 242 239 255 1 + 35 45 33 1 241 253 238 1 + 13 10 45 1 212 209 253 1 + 8 27 28 1 207 232 233 1 + 46 36 40 1 254 251 247 1 + 5 32 46 1 204 237 254 1 + 15 6 25 1 225 205 229 1 + 25 5 17 1 229 204 220 1 + 36 44 31 1 251 252 236 1 + 44 34 30 1 255 239 243 1 + 3 22 4 1 202 226 203 1 + 12 15 22 1 211 216 231 1 + 43 0 26 1 250 199 230 1 + 0 21 26 1 199 224 230 1 + 39 43 26 1 246 250 230 1 + 5 40 39 1 204 247 246 1 + 21 24 18 1 224 228 221 1 + 17 18 24 1 220 221 228 1 + 8 1 27 1 207 200 232 1 + 1 0 27 1 200 199 232 1 + tverts 256 + 0.149575 0.38725 0 + 0.026644 0.156951 0 + 0.274184 0.155067 0 + 0.0139049 0.869598 0 + 0.373832 0.956397 0 + 0.00289817 0.952308 0 + 0.00581772 0.995571 0 + 0.337425 0.387513 0 + 0.150575 0.423667 0 + 0.376365 0.764677 0 + 0.114225 0.752976 0 + 0.262045 0.433443 0 + 0.411164 0.561102 0 + 0.359272 0.559582 0 + 0.110128 0.578197 0 + 0.0050664 0.544151 0 + 0.454088 0.460789 0 + 0.43887 0.30195 0 + 0.246971 0.540351 0 + 0.154494 0.509157 0 + 0.449833 0.722145 0 + 0.379838 0.886058 0 + 0.335793 0.641858 0 + 0.0134712 0.703743 0 + 0.0661135 0.61493 0 + 0.433153 0.155912 0 + 0.202859 0.736098 0 + 0.276056 0.689012 0 + 0.137101 0.694378 0 + 0.374362 0.617545 0 + 0.458677 0.504993 0 + 0.148326 0.387363 0 + 0.372583 0.95651 0 + 0.149327 0.42378 0 + 0.336176 0.387626 0 + 0.375116 0.764789 0 + 0.112976 0.753089 0 + 0.409915 0.561214 0 + 0.260797 0.433556 0 + 0.358954 0.560896 0 + 0.109869 0.578009 0 + 0.452839 0.460902 0 + 0.437621 0.302062 0 + 0.245723 0.540464 0 + 0.153246 0.50927 0 + 0.379809 0.885558 0 + 0.449717 0.723963 0 + 0.335671 0.641558 0 + 0.0648648 0.615042 0 + 0.433759 0.155297 0 + 0.203321 0.736098 0 + 0.278446 0.688011 0 + 0.136821 0.694403 0 + 0.371762 0.619198 0 + 0.457428 0.505106 0 + 0.274597 0.156325 0 + 0.783668 0.159423 0 + 0.975743 0.15735 0 + 0.741763 0.432818 0 + 0.969841 0.958806 0 + 0.554562 0.954069 0 + 0.699257 0.882549 0 + 0.469453 0.786347 0 + 0.741555 0.577485 0 + 0.976755 0.0573845 0 + 0.782575 0.0502158 0 + 0.973377 0.00108593 0 + 0.65532 0.017206 0 + 0.88501 0.729792 0 + 0.766189 0.436063 0 + 0.980317 0.44187 0 + 0.91378 0.478679 0 + 0.763478 0.0534183 0 + 0.759853 0.141737 0 + 0.58812 0.162739 0 + 0.979678 0.470001 0 + 0.605769 0.176871 0 + 0.618978 0.261953 0 + 0.543513 0.454341 0 + 0.562794 0.472692 0 + 0.976109 0.0586162 0 + 0.975097 0.158582 0 + 0.785915 0.145617 0 + 0.552382 0.954069 0 + 0.697076 0.882549 0 + 0.467273 0.786347 0 + 0.739375 0.577485 0 + 0.782751 0.0597778 0 + 0.653139 0.017206 0 + 0.882831 0.729792 0 + 0.764009 0.436063 0 + 0.9116 0.478679 0 + 0.616797 0.261953 0 + 0.608744 0.173854 0 + 0.606957 0.176439 0 + 0.547268 0.452554 0 + 0.784086 0.159002 0 + 0.739583 0.432818 0 + 0.560614 0.472692 0 + 0.785573 0.0432167 0 + 0.58643 0.163781 0 + 0.640463 0.0544342 0 + 0.601828 0.0368165 0 + 0.640568 0.0565262 0 + 0.589633 0.162792 0 + 0.601864 0.0429659 0 + 0.490373 0.133662 0 + 0.468834 0.0261058 0 + 0.556996 0.0144097 0 + 0.283888 0.0080908 0 + 0.49195 0.0100072 0 + 0.430962 0.0179503 0 + 0.282714 0.0060219 0 + 0.282714 0.0240873 0 + 0.0295756 0.0168386 0 + 0.112982 0.0261058 0 + 0.0988142 0.130349 0 + 0.0783652 0.0100072 0 + 0.131926 0.0179503 0 + 0.284209 0.12123 0 + 0.0541056 0.0098516 0 + 0.508677 0.0105764 0 + 0.283019 0.0227484 0 + 0.0293125 0.135858 0 + 0.561773 0.142712 0 + 0.545684 0.577775 0 + 0.545115 0.581517 0 + 0.544804 0.580456 0 + 0.544521 0.578973 0 + 0.546968 0.581517 0 + 0.546399 0.577775 0 + 0.547278 0.580456 0 + 0.547562 0.578973 0 + 0.815336 0.0277176 0 + 0.817029 0.0281968 0 + 0.817026 0.0285417 0 + 0.814924 0.0279714 0 + 0.817029 0.0238141 0 + 0.815535 0.0237034 0 + 0.81535 0.0231945 0 + 0.816938 0.0233262 0 + 0.814766 0.0259878 0 + 0.814318 0.025913 0 + 0.818518 0.0237279 0 + 0.81852 0.0232237 0 + 0.818737 0.0277176 0 + 0.81897 0.0279714 0 + 0.819321 0.0260329 0 + 0.81905 0.0250622 0 + 0.819343 0.0248115 0 + 0.819665 0.0259666 0 + 0.212456 0.74451 0 + 0.213173 0.744709 0 + 0.335915 0.641709 0 + 0.335733 0.641484 0 + 0.212275 0.744546 0 + 0.212466 0.744475 0 + 0.212814 0.744821 0 + 0.335793 0.641708 0 + 0.335793 0.641633 0 + 0.212375 0.744591 0 + 0.760369 0.430494 0 + 0.979103 0.419434 0 + 0.913723 0.445421 0 + 0.718609 0.414034 0 + 0.715644 0.43197 0 + 0.630419 0.426098 0 + 0.743501 0.411692 0 + 0.982905 0.447405 0 + 0.634093 0.441925 0 + 0.51951 0.454005 0 + 0.760444 0.430697 0 + 0.9145 0.445151 0 + 0.715663 0.431915 0 + 0.718674 0.413841 0 + 0.630684 0.425316 0 + 0.743768 0.411471 0 + 0.634358 0.441143 0 + 0.519775 0.453223 0 + 0.544999 0.57848 0 + 0.140286 0.708634 0 + 0.140361 0.709098 0 + 0.546921 0.578313 0 + 0.760477 0.430494 0 + 0.747593 0.434083 0 + 0.742005 0.412392 0 + 0.743501 0.411692 0 + 0.760336 0.430498 0 + 0.746487 0.43414 0 + 0.74189 0.412449 0 + 0.743189 0.411471 0 + 0.542443 0.437538 0 + 0.569033 0.443289 0 + 0.569452 0.443289 0 + 0.715355 0.432088 0 + 0.569493 0.443555 0 + 0.569598 0.443426 0 + 0.716289 0.431444 0 + 0.542517 0.437318 0 + 0.525385 0.490255 0 + 0.760019 0.08462 0 + 0.673121 0.428193 0 + 0.991603 0.036714 0 + 0.898832 0.373526 0 + 0.525385 0.860239 0 + 0.990511 0.9909 0 + 0.525384 0.986481 0 + 0.525385 0.062798 0 + 0.525385 0.025903 0 + 0.486462 0.096308 0 + 0.267346 0.52363 0 + 0.271392 0.090431 0 + 0.486462 0.862968 0 + 0.486462 0.981526 0 + 0.00954816 0.989702 0 + 0.200696 0.816754 0 + 0.00861365 0.750153 0 + 0.486462 0.039072 0 + 0.00631186 0.0425075 0 + 0.815824 0.45979 0 + 0.899466 0.69971 0 + 0.670517 0.702001 0 + 0.861733 0.534702 0 + 0.695194 0.463324 0 + 0.645115 0.56877 0 + 0.99043 0.715598 0 + 0.992317 0.371808 0 + 0.388461 0.645946 0 + 0.804823 0.585978 0 + 0.905169 0.860631 0 + 0.525385 0.662595 0 + 0.00854573 0.374497 0 + 0.525385 0.093316 0 + 0.760959 0.08462 0 + 0.673361 0.428193 0 + 0.992543 0.036714 0 + 0.899073 0.373526 0 + 0.990751 0.9909 0 + 0.268954 0.523629 0 + 0.272253 0.090431 0 + 0.0111552 0.989702 0 + 0.202303 0.818831 0 + 0.0102217 0.750153 0 + 0.00717186 0.0425075 0 + 0.695435 0.463324 0 + 0.816065 0.45979 0 + 0.668304 0.705472 0 + 0.899706 0.69971 0 + 0.805064 0.585978 0 + 0.861974 0.534702 0 + 0.645355 0.56877 0 + 0.99067 0.715598 0 + 0.992907 0.371808 0 + 0.390069 0.643801 0 + 0.90541 0.860631 0 + 0.00978073 0.374497 0 + constraints 47 + 245.0 + 0.0 + 230.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 230.0 + 230.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 150.0 + 0.0 + 245.0 + 0.0 + 0.0 + 230.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 230.0 + 230.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 +endnode +node trimesh rbicep_g + parent torso_g + position 0.138727 -0.0354328 0.305405 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.87451 0.337255 0.337255 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 1.91291 0.129685 -14.2483 + bitmap medusae_biceps + verts 21 + 0.00955654 0.0584678 -0.0251363 + 0.0649208 0.0168704 -0.0264143 + 0.0398738 0.0147065 0.0263417 + -0.0266625 -0.0151711 0.0302083 + 0.00923571 -0.0178226 0.04728 + 0.0148572 -0.0520298 0.0232501 + 0.0520216 0.0117745 -0.0859316 + 0.0103325 -0.0497014 -0.0550489 + 0.0631188 -0.0408325 -0.0164623 + 0.0452314 -0.036273 -0.115095 + 0.0246269 -0.00669864 -0.332247 + 0.0186064 0.0262459 -0.205081 + -0.012291 -0.0120735 -0.308574 + -0.0208086 -0.000162295 -0.0512918 + 0.00615015 0.038918 0.0260451 + 0.00208011 -0.0310343 -0.311617 + 0.0155039 -0.0558741 -0.162214 + 0.027556 -0.0515289 -0.313514 + 0.0446716 -0.00805343 -0.239285 + 0.0542866 -0.0173205 -0.312872 + 0.0429804 -0.0376136 -0.151189 + faces 38 + 1 0 2 1 310 309 311 2 + 4 3 5 1 313 312 314 2 + 1 6 0 1 310 315 309 2 + 3 7 5 1 317 316 318 2 + 5 7 8 1 320 319 321 2 + 9 1 8 1 322 310 321 2 + 11 10 12 1 324 323 325 2 + 14 13 3 1 327 326 317 2 + 12 15 16 1 329 328 330 2 + 12 16 7 1 329 330 319 2 + 16 17 18 1 330 331 332 2 + 15 10 17 1 334 333 335 2 + 17 10 19 1 335 333 336 2 + 9 7 16 1 322 319 330 2 + 16 18 20 1 330 332 337 2 + 16 20 9 1 330 337 322 2 + 15 17 16 1 328 331 330 2 + 12 10 15 1 325 323 338 2 + 11 19 10 1 324 339 323 2 + 6 11 0 1 315 324 309 2 + 18 11 6 1 332 324 315 2 + 11 12 0 1 324 325 309 2 + 19 11 18 1 339 324 332 2 + 12 13 0 1 325 326 309 2 + 17 19 18 1 331 339 332 2 + 2 0 14 1 311 309 327 2 + 18 6 20 1 332 315 337 2 + 20 6 9 1 337 315 322 2 + 9 6 1 1 322 315 310 2 + 8 7 9 1 321 319 322 2 + 8 2 5 1 321 311 320 2 + 8 1 2 1 321 310 311 2 + 2 14 4 1 341 340 313 2 + 2 4 5 1 341 313 314 2 + 3 4 14 1 312 313 340 2 + 13 14 0 1 326 327 309 2 + 3 13 7 1 317 326 316 2 + 13 12 7 1 326 325 316 2 + tverts 342 + 0.0464313 0.979481 0 + 0.0464344 0.97948 0 + 0.0464312 0.979482 0 + 0.0464267 0.979479 0 + 0.0464121 0.979481 0 + 0.0464296 0.979485 0 + 0.0464172 0.97948 0 + 0.0464121 0.979474 0 + 0.0464172 0.979475 0 + 0.0464301 0.979473 0 + 0.04643 0.979481 0 + 0.0464234 0.979479 0 + 0.0464129 0.97948 0 + 0.0464277 0.979483 0 + 0.0464242 0.979476 0 + 0.0464128 0.979475 0 + 0.0464314 0.979475 0 + 0.0464292 0.979473 0 + 0.0464334 0.979487 0 + 0.0464325 0.979484 0 + 0.0464252 0.979486 0 + 0.0464304 0.979472 0 + 0.0464133 0.979482 0 + 0.0464185 0.979475 0 + 0.0464135 0.979474 0 + 0.0464319 0.979473 0 + 0.0464214 0.979471 0 + 0.0464293 0.979483 0 + 0.0464181 0.979481 0 + 0.0464322 0.97947 0 + 0.0464354 0.979481 0 + 0.0464364 0.979478 0 + 0.0464289 0.979477 0 + 0.0464231 0.979479 0 + 0.0464291 0.979473 0 + 0.0464346 0.979478 0 + 0.555857 0.723624 0 + 0.628988 0.458373 0 + 0.756479 0.820704 0 + 0.337069 0.439469 0 + 0.189897 0.779925 0 + 0.967222 0.770996 0 + 0.948069 0.482777 0 + 0.358605 0.80593 0 + 0.133177 0.464914 0 + 0.822084 0.46418 0 + 0.0212207 0.813251 0 + 0.0480289 0.482777 0 + 0.133177 0.470841 0 + 0.133177 0.470841 0 + 0.0480289 0.482777 0 + 0.047127 0.979299 0 + 0.0465264 0.979269 0 + 0.0471037 0.979358 0 + 0.0471319 0.979322 0 + 0.0471282 0.979357 0 + 0.0470795 0.979379 0 + 0.0470385 0.979327 0 + 0.0470503 0.979362 0 + 0.0470583 0.979386 0 + 0.0471426 0.979351 0 + 0.0471412 0.979315 0 + 0.0470418 0.97936 0 + 0.189579 0.779801 0 + 0.189733 0.779618 0 + 0.359006 0.806106 0 + 0.358672 0.806624 0 + 0.021193 0.813245 0 + 0.0434444 0.9798 0 + 0.358198 0.804905 0 + 0.0462773 0.979232 0 + 0.0415312 0.979538 0 + 0.0211953 0.812676 0 + 0.189815 0.780006 0 + 0.0398159 0.977781 0 + 0.0423126 0.978766 0 + 0.0409175 0.978046 0 + 0.0403572 0.978656 0 + 0.0402688 0.979299 0 + 0.0427171 0.97864 0 + 0.0395827 0.978988 0 + 0.0406966 0.977839 0 + 0.0397399 0.97787 0 + 0.0427407 0.978637 0 + 0.0434773 0.979755 0 + 0.0406395 0.978051 0 + 0.0407711 0.977712 0 + 0.0395944 0.979006 0 + 0.0419474 0.978127 0 + 0.0402749 0.979283 0 + 0.0397188 0.977846 0 + 0.0464179 0.979482 0 + 0.0464309 0.979482 0 + 0.0464316 0.979483 0 + 0.0464208 0.97947 0 + 0.0464266 0.979468 0 + 0.215207 0.416289 0 + 0.0464204 0.979479 0 + 0.0464199 0.979471 0 + 0.0464189 0.979471 0 + 0.0464184 0.979474 0 + 0.0464197 0.979474 0 + 0.0464207 0.979474 0 + 0.0464295 0.979475 0 + 0.0464299 0.979474 0 + 0.0464299 0.979474 0 + 0.0464298 0.979476 0 + 0.0464299 0.979474 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464175 0.97947 0 + 0.0464229 0.979482 0 + 0.0464178 0.979479 0 + 0.0464183 0.97948 0 + 0.664273 0.0351878 0 + 0.726937 0.0371316 0 + 0.771732 0.402705 0 + 0.958603 0.308892 0 + 0.51261 0.0546927 0 + 0.331424 0.089814 0 + 0.211995 0.42412 0 + 0.357837 0.406143 0 + 0.494516 0.404457 0 + 0.932627 0.484456 0 + 0.0452439 0.978712 0 + 0.0593426 0.31788 0 + 0.0525984 0.467994 0 + 0.0593426 0.31788 0 + 0.0452439 0.978712 0 + 0.0452439 0.978712 0 + 0.0452439 0.978712 0 + 0.0610509 0.0299206 0 + 0.0632866 0.0293717 0 + 0.976393 0.0463092 0 + 0.0607317 0.027176 0 + 0.0452439 0.978712 0 + 0.558186 0.982818 0 + 0.561785 0.947145 0 + 0.605655 0.950922 0 + 0.0423308 0.978617 0 + 0.0459654 0.979211 0 + 0.0451755 0.979216 0 + 0.0415487 0.978619 0 + 0.489336 0.943275 0 + 0.563185 0.91324 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456652 0.979215 0 + 0.0456653 0.979216 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.045665 0.979211 0 + 0.0456684 0.979213 0 + 0.0456684 0.979213 0 + 0.0456652 0.979215 0 + 0.0456684 0.979213 0 + 0.0456652 0.979215 0 + 0.0454287 0.978811 0 + 0.0454287 0.978811 0 + 0.0454287 0.978811 0 + 0.0454287 0.978811 0 + 0.0454287 0.978811 0 + 0.0454287 0.978811 0 + 0.0454287 0.978811 0 + 0.0454287 0.978811 0 + 0.0454287 0.978811 0 + 0.196855 0.88774 0 + 0.420989 0.894528 0 + 0.375026 0.976259 0 + 0.358734 0.806188 0 + 0.756489 0.820713 0 + 0.945278 0.974177 0 + 0.831441 0.975396 0 + 0.568354 0.875785 0 + 0.554979 0.724182 0 + 0.512914 0.0541726 0 + 0.042526 0.978017 0 + 0.0470364 0.979393 0 + 0.0212206 0.813259 0 + 0.186446 0.976259 0 + 0.0454709 0.979205 0 + 0.777606 0.414237 0 + 0.0436853 0.979379 0 + 0.0417077 0.979637 0 + 0.0427797 0.978219 0 + 0.0455931 0.978814 0 + 0.756996 0.820844 0 + 0.832629 0.974832 0 + 0.0409595 0.977904 0 + 0.0409595 0.977904 0 + 0.0454287 0.978811 0 + 0.0409595 0.977904 0 + 0.0409595 0.977904 0 + 0.756996 0.820844 0 + 0.0409595 0.977904 0 + 0.021444 0.812631 0 + 0.189882 0.780002 0 + 0.0414634 0.977846 0 + 0.0379507 0.953358 0 + 0.945619 0.97376 0 + 0.0214679 0.81318 0 + 0.0212206 0.813254 0 + 0.967508 0.77125 0 + 0.306405 0.743281 0 + 0.556734 0.826658 0 + 0.514514 0.980396 0 + 0.221792 0.974217 0 + 0.225392 0.938545 0 + 0.269262 0.942321 0 + 0.505366 0.689564 0 + 0.00586145 0.816108 0 + 0.143758 0.980396 0 + 0.00606471 0.980396 0 + 0.996212 0.813792 0 + 0.996212 0.980396 0 + 0.73778 0.832533 0 + 0.734605 0.6305 0 + 0.230885 0.100584 0 + 0.299411 0.441156 0 + 0.00907585 0.32655 0 + 0.127315 0.813763 0 + 0.325934 0.980396 0 + 0.857334 0.100584 0 + 0.996212 0.100584 0 + 0.81108 0.372681 0 + 0.731623 0.10056 0 + 0.562232 0.371126 0 + 0.663933 0.190382 0 + 0.664178 0.164827 0 + 0.607781 0.165491 0 + 0.608092 0.190667 0 + 0.672993 0.511135 0 + 0.00606471 0.100584 0 + 0.541239 0.0998303 0 + 0.152942 0.934674 0 + 0.226792 0.904639 0 +endnode +node trimesh rforearm_g + parent rbicep_g + position 0.0318229 -0.0250664 -0.316211 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.87451 0.337255 0.337255 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center -0.0113249 0.329775 -11.6181 + bitmap medusae_forearms + verts 16 + 0.0407823 0.00144644 -0.0294602 + -0.00915615 -0.0271287 0.0235889 + -0.00747883 0.0104477 0.0307965 + 0.00798866 -0.0337887 -0.00961687 + -0.0418606 -0.00202397 0.00290649 + -0.0364633 -0.0175061 -0.0759925 + 0.00862838 0.0285196 -0.0209544 + 0.0416341 0.014668 -0.0902421 + 0.0403589 0.0403842 -0.250506 + 0.014542 0.0357382 -0.250966 + 0.028687 0.0144168 -0.263158 + 0.0373322 -0.00717844 -0.252249 + 0.0103532 -0.00757153 -0.25361 + -0.0393623 0.0127624 -0.0748428 + 0.0121863 0.0393795 -0.0830697 + 0.0389882 -0.00433816 -0.0882912 + faces 28 + 1 0 2 1 106 105 107 2 + 4 3 1 1 109 108 106 2 + 5 3 4 1 111 110 112 2 + 7 6 0 1 114 113 115 2 + 9 8 10 1 117 116 118 2 + 10 8 11 1 118 116 119 2 + 10 11 12 1 118 119 120 2 + 10 12 9 1 118 120 117 2 + 6 4 2 1 122 121 107 2 + 14 13 6 1 124 123 113 2 + 0 6 2 1 105 122 107 2 + 15 0 3 1 125 115 110 2 + 8 7 11 1 126 114 127 2 + 12 11 3 1 128 127 110 2 + 13 4 6 1 123 129 113 2 + 3 0 1 1 108 105 106 2 + 4 1 2 1 131 130 132 2 + 9 14 8 1 133 124 126 2 + 14 6 7 1 124 113 114 2 + 7 15 11 1 114 125 127 2 + 3 11 15 1 110 127 125 2 + 5 13 9 1 134 123 133 2 + 13 5 4 1 123 134 129 2 + 12 5 9 1 135 134 133 2 + 9 13 14 1 133 123 124 2 + 5 12 3 1 111 128 110 2 + 8 14 7 1 126 124 114 2 + 7 0 15 1 114 115 125 2 + tverts 136 + 0.0416201 0.365536 0 + 0.039465 0.365609 0 + 0.0396753 0.362891 0 + 0.040783 0.366687 0 + 0.0377911 0.367185 0 + 0.0373172 0.365651 0 + 0.0378329 0.366524 0 + 0.0392382 0.365864 0 + 0.0394486 0.365093 0 + 0.0374673 0.366061 0 + 0.0405333 0.366345 0 + 0.0405861 0.367017 0 + 0.041201 0.366416 0 + 0.0410031 0.365644 0 + 0.489252 0.992958 0 + 0.49531 0.859954 0 + 0.776393 0.917493 0 + 0.206504 0.931733 0 + 0.703345 0.528129 0 + 0.816592 0.571123 0 + 0.201056 0.566786 0 + 0.952185 0.47429 0 + 0.933502 0.860688 0 + 0.0987463 0.86757 0 + 0.101004 0.649646 0 + 0.500178 0.515783 0 + 0.702557 0.528949 0 + 0.0412654 0.361808 0 + 0.0412362 0.361992 0 + 0.0412868 0.361996 0 + 0.0412614 0.361936 0 + 0.0412574 0.361935 0 + 0.0412649 0.361933 0 + 0.0412719 0.361936 0 + 0.0412759 0.361935 0 + 0.0412392 0.361975 0 + 0.0412528 0.361968 0 + 0.0412457 0.361998 0 + 0.0412654 0.361985 0 + 0.0412708 0.36197 0 + 0.041264 0.36197 0 + 0.0412847 0.361971 0 + 0.0412977 0.361973 0 + 0.70257 0.52219 0 + 0.0412219 0.361996 0 + 0.0412219 0.361996 0 + 0.0412219 0.361996 0 + 0.041211 0.361935 0 + 0.041211 0.361935 0 + 0.0412329 0.361973 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.0412356 0.361933 0 + 0.196412 0.474105 0 + 0.0956876 0.491859 0 + 0.192203 0.509617 0 + 0.413195 0.0377081 0 + 0.298085 0.0447981 0 + 0.488736 0.0209943 0 + 0.638415 0.0201429 0 + 0.885311 0.0139353 0 + 0.0911781 0.386185 0 + 0.318301 0.32021 0 + 0.268917 0.524923 0 + 0.44665 0.506775 0 + 0.53226 0.342114 0 + 0.446331 0.284951 0 + 0.656821 0.386529 0 + 0.829847 0.457674 0 + 0.157484 0.505667 0 + 0.195279 0.47416 0 + 0.195395 0.474223 0 + 0.195395 0.474223 0 + 0.0584426 0.03032 0 + 0.949605 0.00792682 0 + 0.0 -0.0144203 0 + 0.0 -0.0144203 0 + 0.0 -0.0144203 0 + 0.0 -0.0144203 0 + 0.0 -0.0144203 0 + 0.964028 0.420712 0 + 0.540403 0.910581 0 + 0.639261 0.988851 0 + 0.273524 0.99403 0 + 0.818857 0.940127 0 + 0.988656 0.973631 0 + 0.818655 0.940208 0 + 0.987444 0.646272 0 + 0.987203 0.972761 0 + 0.307847 0.93944 0 + 0.537145 0.605926 0 + 0.540411 0.90921 0 + 0.152216 0.0926122 0 + 0.183022 0.092366 0 + 0.166603 0.0709773 0 + 0.152132 0.0493724 0 + 0.182844 0.0494121 0 + 0.0140807 0.971362 0 + 0.307651 0.940574 0 + 0.146925 0.64082 0 + 0.326942 0.617916 0 + 0.589782 0.602906 0 + 0.444531 0.035104 0 + 0.684228 0.0298909 0 + 0.986295 0.040729 0 + 0.0136801 0.972217 0 + 0.0796389 0.896324 0 + 0.0698193 0.925089 0 + 0.0627417 0.894112 0 + 0.293168 0.040729 0 + 0.0136801 0.646654 0 + 0.0136801 0.040729 0 +endnode +node trimesh rhand_g + parent rforearm_g + position 0.02544 0.0213915 -0.256022 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.87451 0.337255 0.337255 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.56754 0.156565 -5.72788 + bitmap medusae_hands + verts 90 + -0.0218652 0.0348723 -0.0333246 + -0.00483205 0.0305899 -0.0603754 + -0.0218371 0.0393557 -0.0600505 + 0.0144966 0.0329244 -0.0697558 + -0.00176433 0.0310483 -0.0559897 + 0.0198366 0.0168484 -0.0785828 + 0.0149525 0.0299494 -0.0932848 + 0.0242174 -0.00481344 -0.0953652 + 0.0167066 -0.00177665 -0.0851888 + 0.0162257 -0.0232146 -0.0788268 + 0.0167217 -0.0399786 -0.0639158 + 0.0174797 -0.0409436 -0.0737968 + 0.0249665 0.0136254 -0.0987688 + 0.0189825 0.0168464 -0.0944188 + -0.0095332 0.0131123 -0.0307837 + -0.00409013 -0.0344297 -0.0286457 + -0.0180811 -0.00707369 -0.000687639 + 0.0271986 0.0272934 -0.0640428 + 0.0433726 0.0179064 -0.0692999 + 0.0256908 0.0132644 -0.0235028 + 0.0483497 -0.0012236 -0.0741969 + 0.0266569 -0.0199636 -0.0229958 + 0.0405797 -0.0199616 -0.0699449 + 0.0246397 -0.0387576 -0.0642318 + 0.00964889 -0.0360936 -0.0253457 + -0.00769503 -0.0256537 -0.000615677 + 0.0165757 0.0333794 -0.0469888 + 0.00632678 0.0339253 -0.0289707 + -0.00569638 0.0440749 -0.0597365 + 0.0257656 -0.0220926 -0.0916728 + 0.0300726 0.0282424 -0.0871158 + 0.0420086 -0.00810462 -0.0919669 + 0.0389465 0.00946938 -0.0985129 + 0.0372026 0.0211974 -0.0908618 + -0.00956975 0.0157133 -0.000553671 + 0.0246747 -0.0389016 -0.0712998 + 0.0395126 -0.0190076 -0.0911729 + 0.0344596 -0.0315826 -0.0889808 + 0.0410086 -0.00113662 -0.0967069 + 0.00699691 0.0178923 -0.000460734 + 0.0172609 0.00316136 -0.000406777 + 0.012192 -0.0231836 -0.000437752 + -0.0308388 0.0092158 -0.0917399 + -0.0182775 0.0113601 -0.103128 + -0.0181559 -0.00203764 -0.103246 + -0.0315839 -0.00114698 -0.0935312 + -0.0005751 -0.00681308 -0.0978129 + 0.00196603 -0.0229224 -0.0972871 + -0.0177402 -0.0202934 -0.0923022 + -0.0193297 -0.00907688 -0.0930202 + -0.0106777 0.0275449 -0.115942 + -0.00116728 0.0158478 -0.116973 + -0.0231118 0.0156347 -0.113984 + -0.0235844 0.0251368 -0.113969 + -0.000110485 0.0111713 -0.106794 + 0.000573684 -0.00432067 -0.104759 + -0.0306596 -0.0189835 -0.0789719 + -0.0313473 -0.0096249 -0.079013 + -0.0182786 0.0348658 -0.0899193 + -0.0107095 0.0288331 -0.0820681 + -0.0198397 -0.0325035 -0.0761808 + -0.0175789 -0.0261815 -0.0793598 + -0.000659199 -0.0284907 -0.0853836 + -0.00156814 -0.0393957 -0.0894038 + -0.0108375 0.0253111 -0.0955442 + -0.036138 0.00440284 -0.0864976 + -0.0304779 0.0209493 -0.11253 + -0.036243 -0.0141258 -0.0737905 + -0.0246884 -0.0283256 -0.0742616 + 0.00842095 0.0291183 -0.108135 + 0.011524 0.0163813 -0.109792 + -0.0239334 0.0074754 -0.111572 + -0.0042965 0.026887 -0.125636 + -0.0219899 -0.0166252 -0.103459 + -0.0369989 -0.0139874 -0.0816346 + -0.0240676 -0.000604826 -0.111721 + -0.0229141 -0.0109396 -0.103379 + -0.00058145 -0.0372217 -0.101596 + -0.0124876 0.0346466 -0.0878964 + -0.0283741 0.021018 -0.119145 + -0.0362887 0.0041384 -0.0944428 + -0.0250438 -0.0301928 -0.0826637 + 0.00584079 0.00661733 -0.115028 + 0.00745624 -0.00259767 -0.11733 + 0.00573129 -0.00948007 -0.110677 + 0.00584358 -0.0184301 -0.108128 + 0.0177986 0.0284953 -0.11486 + 0.0198504 0.0210153 -0.117513 + -0.000783614 0.0208609 -0.128763 + 3.82942e-005 -0.00321192 0.0142054 + faces 180 + 1 0 2 1 43 42 44 2 + 4 3 5 1 199 45 47 2 + 3 6 5 1 45 48 47 2 + 8 7 9 1 50 49 51 2 + 10 9 11 1 52 51 53 2 + 5 12 8 1 47 54 50 2 + 5 6 13 1 47 48 55 2 + 5 8 14 1 47 50 200 2 + 14 8 9 1 200 50 51 2 + 14 15 16 1 200 57 58 2 + 5 14 4 1 47 200 199 2 + 4 14 1 1 46 56 43 2 + 14 0 1 1 56 42 43 2 + 18 17 19 1 60 59 61 2 + 21 20 19 1 63 62 61 2 + 20 18 19 1 62 60 61 2 + 22 21 23 1 64 63 65 2 + 24 15 23 1 66 57 65 2 + 15 24 25 1 57 66 67 2 + 9 10 14 1 51 52 200 2 + 10 15 14 1 52 57 200 2 + 27 26 28 1 69 68 70 2 + 9 29 22 1 51 71 64 2 + 0 27 2 1 42 69 44 2 + 2 27 28 1 44 69 70 2 + 6 3 30 1 48 45 72 2 + 30 3 17 1 72 45 59 2 + 26 27 19 1 201 202 61 2 + 31 7 8 1 73 49 50 2 + 20 21 22 1 62 63 64 2 + 12 5 32 1 54 47 74 2 + 33 5 13 1 75 47 55 2 + 28 26 1 1 70 68 43 2 + 30 17 18 1 72 59 60 2 + 1 26 4 1 43 68 46 2 + 26 3 4 1 201 45 199 2 + 32 5 18 1 74 47 60 2 + 18 20 32 1 60 62 74 2 + 14 34 0 1 200 76 198 2 + 23 15 10 1 65 57 52 2 + 11 35 10 1 53 77 52 2 + 17 26 19 1 59 201 61 2 + 17 3 26 1 59 45 201 2 + 18 5 33 1 60 47 75 2 + 33 30 18 1 75 72 60 2 + 29 36 22 1 71 78 64 2 + 22 36 20 1 64 78 62 2 + 35 37 22 1 77 79 64 2 + 22 37 9 1 64 79 51 2 + 23 21 24 1 65 63 66 2 + 36 31 20 1 78 73 62 2 + 20 31 8 1 62 73 50 2 + 20 8 38 1 62 50 80 2 + 38 32 20 1 80 74 62 2 + 23 35 22 1 65 77 64 2 + 10 35 23 1 52 77 65 2 + 15 25 16 1 57 67 58 2 + 0 34 27 1 198 81 202 2 + 14 16 34 1 200 58 76 2 + 27 39 19 1 202 82 61 2 + 34 39 27 1 81 82 202 2 + 21 40 41 1 63 83 84 2 + 19 39 40 1 61 82 83 2 + 19 40 21 1 61 83 63 2 + 21 41 24 1 63 84 66 2 + 24 41 25 1 66 84 67 2 + 43 42 44 1 91 90 92 2 + 44 42 45 1 92 90 93 2 + 47 46 48 1 95 94 96 2 + 46 49 48 1 94 97 96 2 + 51 50 52 1 99 98 100 2 + 50 53 52 1 98 101 100 2 + 54 43 55 1 102 91 103 2 + 55 43 44 1 103 91 92 2 + 48 49 56 1 96 97 104 2 + 49 57 56 1 97 105 104 2 + 2 58 1 1 107 106 108 2 + 1 58 59 1 108 106 109 2 + 61 60 62 1 111 110 112 2 + 62 60 63 1 112 110 113 2 + 9 7 29 1 203 114 116 2 + 58 64 59 1 106 117 109 2 + 9 62 11 1 115 112 118 2 + 42 65 45 1 90 119 93 2 + 53 66 52 1 101 120 100 2 + 7 8 12 1 122 121 123 2 + 57 67 56 1 105 124 104 2 + 61 68 60 1 111 125 110 2 + 7 12 55 1 122 123 103 2 + 12 54 55 1 123 102 103 2 + 29 7 47 1 116 114 95 2 + 7 46 47 1 114 94 95 2 + 63 11 62 1 113 118 112 2 + 6 69 13 1 127 126 128 2 + 13 69 70 1 128 126 129 2 + 50 51 69 1 98 99 126 2 + 69 51 70 1 126 99 129 2 + 71 42 43 1 131 130 132 2 + 72 53 50 1 134 133 135 2 + 74 73 56 1 137 136 138 2 + 48 56 73 1 139 138 136 2 + 55 44 75 1 141 140 142 2 + 54 71 43 1 143 131 132 2 + 76 57 49 1 145 144 146 2 + 63 60 77 1 148 147 149 2 + 64 78 59 1 151 150 152 2 + 2 28 58 1 154 153 155 2 + 79 66 53 1 157 156 133 2 + 79 52 66 1 157 158 156 2 + 42 80 65 1 130 159 160 2 + 57 74 67 1 144 137 161 2 + 56 67 74 1 138 161 137 2 + 60 68 81 1 147 162 163 2 + 32 82 12 1 165 164 166 2 + 12 82 54 1 166 164 143 2 + 38 7 83 1 168 167 169 2 + 7 55 83 1 167 141 169 2 + 31 84 7 1 171 170 172 2 + 84 31 85 1 170 171 173 2 + 29 47 36 1 175 174 176 2 + 62 9 47 1 178 177 179 2 + 47 9 37 1 179 177 180 2 + 35 77 37 1 181 149 180 2 + 77 35 63 1 149 181 148 2 + 11 63 35 1 182 148 181 2 + 30 86 6 1 184 183 185 2 + 6 86 69 1 185 183 186 2 + 33 13 87 1 188 187 189 2 + 13 70 87 1 187 190 189 2 + 78 64 58 1 150 151 155 2 + 32 38 82 1 165 168 164 2 + 69 86 50 1 186 183 135 2 + 7 38 8 1 167 168 191 2 + 36 85 31 1 176 173 171 2 + 70 51 87 1 190 192 189 2 + 51 52 88 1 192 158 193 2 + 48 73 47 1 139 136 174 2 + 85 36 47 1 173 176 174 2 + 78 1 59 1 150 194 152 2 + 47 61 62 1 179 195 178 2 + 81 68 61 1 163 162 195 2 + 75 44 45 1 142 140 196 2 + 45 65 80 1 196 160 159 2 + 80 42 71 1 159 130 131 2 + 83 82 38 1 169 164 168 2 + 33 87 30 1 188 189 184 2 + 49 46 76 1 146 197 145 2 + 7 84 46 1 172 170 197 2 + 81 61 47 1 163 195 179 2 + 37 77 47 1 180 149 179 2 + 79 53 72 1 157 133 134 2 + 87 86 30 1 189 183 184 2 + 76 84 73 1 145 170 136 2 + 84 76 46 1 170 145 197 2 + 75 80 71 1 142 159 131 2 + 80 75 45 1 159 142 196 2 + 88 52 79 1 193 158 157 2 + 88 79 72 1 193 157 134 2 + 81 77 60 1 163 149 147 2 + 77 81 47 1 149 163 179 2 + 58 28 78 1 155 153 150 2 + 28 1 78 1 153 194 150 2 + 83 75 82 1 169 142 164 2 + 83 55 75 1 169 141 142 2 + 86 72 50 1 183 134 135 2 + 72 86 88 1 134 183 193 2 + 73 74 76 1 136 137 145 2 + 76 74 57 1 145 137 144 2 + 47 73 85 1 174 136 173 2 + 85 73 84 1 173 136 170 2 + 75 71 82 1 142 131 164 2 + 82 71 54 1 164 131 143 2 + 88 87 51 1 193 189 192 2 + 87 88 86 1 189 193 183 2 + 16 25 89 0 88 85 205 2 + 34 16 89 0 89 88 205 2 + 39 34 89 0 86 89 205 2 + 41 40 89 0 204 87 205 2 + 40 39 89 0 87 86 205 2 + 25 41 89 0 85 204 205 2 + tverts 206 + 0.248053 0.483334 0 + 0.0293599 0.0471002 0 + 0.0126962 0.980441 0 + 0.449229 0.982624 0 + 0.507964 0.676089 0 + 0.511248 0.679577 0 + 0.508035 0.679569 0 + 0.508492 0.683039 0 + 0.505431 0.679282 0 + 0.447873 0.059173 0 + 0.506686 0.680288 0 + 0.509977 0.681186 0 + 0.986926 0.826777 0 + 0.489757 0.786499 0 + 0.508677 0.677412 0 + 0.274038 0.423567 0 + 0.509074 0.678092 0 + 0.508563 0.677277 0 + 0.506638 0.674614 0 + 0.506776 0.683825 0 + 0.506638 0.674614 0 + 0.507988 0.674609 0 + 0.507988 0.674609 0 + 0.507988 0.674609 0 + 0.507988 0.674609 0 + 0.507988 0.674609 0 + 0.507988 0.674609 0 + 0.507988 0.674609 0 + 0.507988 0.674609 0 + 0.507988 0.674609 0 + 0.507988 0.674609 0 + 0.989459 0.309815 0 + 0.496523 0.301046 0 + 0.989753 0.992847 0 + 0.49818 0.978723 0 + 0.996448 0.501917 0 + 0.989459 0.798836 0 + 0.489603 0.784443 0 + 0.492772 0.52266 0 + 0.986926 0.0136573 0 + 0.495528 0.00869365 0 + 0.986926 0.0136573 0 + 1.95549 0.420141 0 + 1.8651 0.0741138 0 + 1.94619 0.0553008 0 + 0.771874 0.340816 0 + 1.82243 0.230375 0 + 0.610416 0.251277 0 + 0.770467 0.118817 0 + 0.38299 0.090721 0 + 0.421832 0.181631 0 + 0.198923 0.232982 0 + 0.0204562 0.36669 0 + 0.0146745 0.273267 0 + 0.59665 0.0603402 0 + 0.629584 0.102649 0 + 1.80826 0.602948 0 + 0.0626925 0.701027 0 + 0.332272 0.975222 0 + 0.711625 0.392369 0 + 0.617393 0.33911 0 + 0.559693 0.768501 0 + 0.422914 0.285359 0 + 0.208945 0.760004 0 + 0.228628 0.317916 0 + 0.03313 0.364205 0 + 0.0442144 0.731432 0 + 0.131795 0.968107 0 + 1.88121 0.299822 0 + 1.96876 0.468839 0 + 1.98284 0.0149359 0 + 0.20835 0.112173 0 + 0.749466 0.176194 0 + 0.359377 0.11527 0 + 0.551706 0.0609998 0 + 0.675035 0.137967 0 + 0.576558 0.985984 0 + 0.0346125 0.297593 0 + 0.241421 0.118175 0 + 0.104843 0.133542 0 + 0.43653 0.0735645 0 + 0.581025 0.986155 0 + 0.601517 0.987834 0 + 0.442571 0.982158 0 + 0.158367 0.970823 0 + 0.111269 -0.0141025 0 + 0.604502 -0.0199266 0 + 0.480935 -0.026133 0 + 0.355556 -0.0197569 0 + 0.601467 -0.0251248 0 + -0.106602 0.0825062 0 + -0.0848582 0.213841 0 + -0.240698 0.211362 0 + -0.212058 0.0794352 0 + -0.0646188 0.468593 0 + -0.232614 0.484707 0 + -0.249832 0.255661 0 + -0.0928865 0.236272 0 + -0.135037 0.248645 0 + -0.255986 0.282603 0 + -0.249186 0.126819 0 + -0.167528 0.126033 0 + -0.08148 0.410373 0 + -0.254714 0.393034 0 + -0.229961 0.140265 0 + -0.115595 0.12956 0 + -0.0689685 -0.642425 0 + -0.0139282 -0.309629 0 + -0.256581 -0.365461 0 + -0.227516 -0.55711 0 + -0.258828 0.201613 0 + -0.118466 0.183703 0 + -0.134887 0.339078 0 + -0.280988 0.342488 0 + -0.0398903 0.608682 0 + -0.00736971 0.639508 0 + -0.246693 0.626417 0 + -0.204655 -0.992826 0 + -0.252639 0.61877 0 + -0.155713 0.0189718 0 + -0.223476 0.040877 0 + -0.236437 0.797236 0 + -0.252605 0.598116 0 + -0.0887274 0.580085 0 + -0.172076 0.0335987 0 + -0.182515 0.03721 0 + -0.10354 0.375003 0 + -0.130561 0.577748 0 + -0.27029 0.524839 0 + -0.254762 0.364834 0 + -0.0708521 0.159075 0 + -0.0807638 0.220949 0 + -0.0472034 0.247883 0 + -0.133498 0.226515 0 + -0.143768 0.336439 0 + -0.0885523 0.373905 0 + -0.16266 0.187259 0 + -0.146475 0.0822557 0 + -0.19492 0.11435 0 + -0.197094 0.204638 0 + -0.25316 0.266403 0 + -0.265135 0.452101 0 + -0.216352 0.217961 0 + -0.0410156 0.448592 0 + -0.0834378 0.107167 0 + -0.105442 0.191499 0 + -0.0713313 0.200932 0 + -0.219896 0.149543 0 + -0.237237 0.313845 0 + -0.205986 0.240881 0 + -0.159438 -0.625291 0 + -0.201087 -0.981995 0 + -0.257386 -0.618468 0 + -0.105672 -0.316762 0 + -0.0133975 -0.324866 0 + -0.114467 -0.709571 0 + -0.238896 0.0447939 0 + -0.192311 0.200665 0 + -0.284862 0.211172 0 + -0.145706 0.123923 0 + -0.148993 0.0253764 0 + -0.13703 0.00587281 0 + -0.153397 0.0174705 0 + -0.195832 0.0881055 0 + -0.0923286 0.399498 0 + -0.0893233 0.587193 0 + -0.0461585 0.622015 0 + -0.282799 0.750067 0 + -0.222281 0.597454 0 + -0.225709 0.387742 0 + -0.0898082 0.439137 0 + -0.0562149 0.699822 0 + -0.00550392 0.705675 0 + -0.2544 0.456375 0 + -0.296879 0.468132 0 + -0.276983 0.681002 0 + -0.228177 0.693529 0 + -0.0902113 0.538075 0 + -0.105877 0.223318 0 + -0.146924 0.247778 0 + -0.109485 0.528742 0 + -0.14951 0.549656 0 + -0.221479 0.54776 0 + -0.0989029 0.440894 0 + -0.0870897 0.680407 0 + -0.0247402 0.674151 0 + -0.0220147 0.477543 0 + -0.244657 0.589199 0 + -0.191098 0.603626 0 + -0.215902 0.455082 0 + -0.273819 0.509664 0 + -0.258548 0.802082 0 + -0.2811 0.385067 0 + -0.22049 0.327515 0 + -0.28344 -0.360028 0 + -0.118678 0.0834135 0 + -0.229004 0.159053 0 + -0.0519354 0.46247 0 + 0.776632 0.684645 0 + 0.746834 0.469692 0 + 0.552014 0.699885 0 + 0.767014 0.55538 0 + 0.765077 0.725266 0 + -0.213942 0.733982 0 + 0.108342 -0.0224981 0 + 0.354946 -0.306106 0 +endnode +node dummy rhand + parent rhand_g + position -0.000688475 -0.00464905 -0.0512737 + orientation 0.439066 -0.898418 0.00809168 -4.2445e-006 + wirecolor 0.6 0.894118 0.839216 +endnode +node trimesh neck_g + parent torso_g + position -0.00108132 -0.0449849 0.346362 + orientation 0.0557463 -0.942004 -0.33094 -4.19546e-006 + wirecolor 0.576471 0.694118 0.101961 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center 0.10828 -0.0123951 3.76434 + bitmap medusae_neck + verts 10 + 0.00108276 0.00496191 -0.0540052 + -0.0564934 -0.00147498 -0.0016255 + 0.00108276 0.0582111 -0.000100061 + 0.00108276 -0.058459 0.00447395 + -0.0382796 0.0107061 0.105722 + 0.00108276 0.0494526 0.0773703 + 0.00108276 -0.0386589 0.0925723 + 0.00108276 0.00675599 0.129292 + 0.058659 -0.00147499 -0.0016255 + 0.0404452 0.0107061 0.105722 + faces 16 + 0 1 2 1 20 21 22 2 + 0 3 1 1 20 23 21 2 + 2 4 5 1 22 24 25 2 + 2 1 4 1 22 21 24 2 + 1 6 4 1 21 26 24 2 + 1 3 6 1 21 23 26 2 + 7 5 4 1 27 25 24 2 + 7 4 6 1 27 24 26 2 + 8 0 2 1 32 28 29 2 + 3 0 8 1 23 28 32 2 + 9 2 5 1 33 29 30 2 + 8 2 9 1 32 29 33 2 + 6 8 9 1 26 32 33 2 + 3 8 6 1 23 32 26 2 + 5 7 9 1 30 31 33 2 + 9 7 6 1 33 31 26 2 + tverts 34 + 0.0531232 0.0355193 0 + 0.593792 0.0710549 0 + 0.0224588 0.132779 0 + 0.727604 0.0850491 0 + 0.596982 0.939176 0 + 0.0185372 0.718282 0 + 0.839256 0.936682 0 + 0.0238823 0.973065 0 + 0.338605 0.0769271 0 + 0.366588 0.914491 0 + 0.974864 0.0541362 0 + 0.975504 0.13831 0 + 0.974864 0.0541362 0 + 0.975504 0.13831 0 + 0.966478 0.691288 0 + 0.975504 0.13831 0 + 0.954621 0.958989 0 + 0.966478 0.691288 0 + 0.954621 0.958989 0 + 0.954621 0.958989 0 + 0.215748 0.0126437 0 + 0.214379 0.197426 0 + 0.00335756 0.259754 0 + 0.499356 0.254683 0 + 0.215974 0.801769 0 + 0.00759397 0.636411 0 + 0.501353 0.759353 0 + 0.216317 0.983348 0 + 0.778968 0.016651 0 + 0.987353 0.255764 0 + 0.98711 0.640422 0 + 0.782384 0.999359 0 + 0.780333 0.201433 0 + 0.778728 0.801776 0 +endnode +node trimesh head_g + parent neck_g + position 0.00147924 -0.00637068 0.0751964 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.776471 0.87451 0.337255 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 27 + center 0.25975 -0.649 11.1125 + bitmap medusae_head + verts 79 + -0.0283998 0.120249 0.171452 + -0.0666717 0.0888378 0.14774 + 0.00623226 0.136978 0.174381 + -0.044004 0.10963 0.141038 + -0.0610903 0.0779264 0.0838366 + -0.0886716 0.0535231 0.108509 + -0.052889 0.067983 0.0275061 + 0.0065708 0.14939 0.141175 + -0.0139836 0.129259 0.150211 + -0.0488897 0.0706286 -0.00941526 + 0.00498464 0.0710119 -0.0143458 + -0.00853942 0.150297 0.0971349 + -0.0348028 0.129944 0.0995991 + -0.0418797 0.140917 0.105863 + -0.0491195 0.120247 0.0956046 + -0.0479722 0.119761 0.0811503 + -0.0368765 0.107917 0.0233648 + -0.0357812 0.127687 0.0591227 + -0.00777574 0.144775 0.0493743 + 0.00656819 0.141293 0.0183518 + 0.00670729 0.148898 0.0432491 + -0.0113082 0.130783 -0.0233464 + 0.00676017 0.154149 0.0890073 + -0.00933275 0.133653 0.0864755 + 0.00654967 0.146369 0.108694 + 0.00660775 0.140155 -0.0253308 + -0.0226466 0.132277 0.0184956 + -0.0339881 0.130014 0.0838163 + 0.00699507 0.161933 0.0532389 + -0.124712 -0.0189172 0.136905 + -0.0858053 0.0649453 0.205119 + -0.0482842 0.110724 0.237044 + -0.120337 0.00766398 -0.00453076 + 0.00590055 0.12748 0.247871 + -0.0553325 0.0112759 -0.0375751 + -0.100445 -0.0949918 0.123525 + -0.0819284 -0.0851805 0.19391 + -0.0624371 -0.0237861 0.230131 + -0.0982303 -0.0811912 0.033853 + 0.00438801 0.0631587 0.259826 + -0.0653426 -0.0522764 0.0222492 + 0.00255779 -0.0331058 -0.00923576 + -0.0485641 -0.159836 0.122346 + -0.0429565 -0.134899 0.212942 + 0.0017074 -0.0527613 0.251388 + 0.000184579 -0.130451 0.0645344 + -0.00105185 -0.174913 0.199166 + 0.0400587 0.118659 0.171556 + 0.0769018 0.0855019 0.147957 + 0.0552446 0.107324 0.141188 + 0.0710127 0.074857 0.0840361 + 0.0973562 0.0492009 0.10879 + 0.0625285 0.0653013 0.0276805 + 0.0261407 0.128327 0.150272 + 0.0587679 0.0681272 -0.00925263 + 0.0218397 0.149591 0.0971808 + 0.047122 0.12804 0.0997229 + 0.0546819 0.138674 0.106009 + 0.0609848 0.117689 0.095771 + 0.0598598 0.117256 0.0813132 + 0.0484005 0.105935 0.0234936 + 0.0481167 0.125738 0.0592494 + 0.0209647 0.144108 0.0494178 + 0.0240631 0.129961 -0.023293 + 0.0218914 0.132928 0.0865226 + 0.0353322 0.13093 0.0185832 + 0.046359 0.128147 0.0839377 + 0.129907 -0.0248331 0.13729 + 0.0947318 0.0607506 0.205391 + 0.059281 0.108225 0.237207 + 0.127199 0.00191257 -0.00415684 + 0.0625322 0.00853735 -0.0373971 + 0.102174 -0.0996996 0.123831 + 0.0839204 -0.0890339 0.19416 + 0.0671924 -0.026798 0.230327 + 0.100873 -0.0858173 0.0341538 + 0.0693991 -0.055407 0.0224528 + 0.047341 -0.162064 0.122491 + 0.0426242 -0.136887 0.213071 + faces 154 + 3 4 1 1 180 182 178 2 + 1 4 5 1 178 182 183 2 + 1 0 3 1 178 177 180 2 + 4 6 5 1 182 184 183 2 + 2 7 8 1 179 185 186 2 + 0 2 8 1 177 179 186 2 + 0 8 3 1 177 186 180 2 + 11 12 13 1 225 226 227 2 + 14 13 15 1 256 227 254 2 + 16 17 18 1 228 229 230 2 + 19 18 20 1 231 230 232 2 + 6 4 17 1 249 257 229 2 + 4 15 17 1 257 254 229 2 + 9 21 10 1 248 235 187 2 + 22 18 23 1 237 230 238 2 + 23 11 22 1 238 225 237 2 + 6 16 9 1 249 228 248 2 + 24 22 11 1 239 237 225 2 + 21 19 25 1 235 231 240 2 + 21 26 19 1 235 241 231 2 + 4 14 15 1 182 190 191 2 + 13 24 11 1 227 239 225 2 + 9 16 21 1 248 228 235 2 + 6 17 16 1 249 229 228 2 + 17 15 27 1 229 254 242 2 + 8 13 3 1 243 227 250 2 + 27 23 17 1 242 238 229 2 + 23 12 11 1 238 226 225 2 + 19 26 18 1 231 241 230 2 + 25 10 21 1 240 187 235 2 + 18 28 20 1 230 244 232 2 + 22 28 18 1 237 244 230 2 + 4 3 14 1 182 180 190 2 + 3 13 14 1 250 227 256 2 + 12 27 15 1 226 242 254 2 + 13 12 15 1 227 226 254 2 + 23 27 12 1 238 242 226 2 + 18 17 23 1 230 229 238 2 + 13 7 24 1 227 245 239 2 + 13 8 7 1 227 243 245 2 + 21 16 26 1 235 228 241 2 + 26 16 18 1 241 228 230 2 + 29 30 1 1 192 193 178 2 + 1 5 29 1 178 183 192 2 + 30 31 0 1 193 194 177 2 + 0 1 30 1 177 178 193 2 + 32 29 5 1 195 192 183 2 + 5 6 32 1 183 184 195 2 + 31 33 2 1 194 196 179 2 + 2 0 31 1 179 177 194 2 + 34 32 6 1 197 195 184 2 + 6 9 34 1 184 188 197 2 + 10 34 9 1 189 197 188 2 + 35 36 30 1 198 199 193 2 + 30 29 35 1 193 192 198 2 + 36 37 31 1 199 201 194 2 + 31 30 36 1 194 193 199 2 + 38 35 29 1 202 198 192 2 + 29 32 38 1 192 195 202 2 + 37 39 33 1 201 204 196 2 + 33 31 37 1 196 194 201 2 + 40 38 32 1 222 220 208 2 + 32 34 40 1 195 197 205 2 + 41 40 34 1 206 205 197 2 + 34 10 41 1 219 203 223 2 + 42 43 36 1 207 209 199 2 + 36 35 42 1 199 198 207 2 + 37 36 43 1 201 199 209 2 + 35 38 42 1 198 202 207 2 + 43 44 39 1 209 210 204 2 + 39 37 43 1 204 201 209 2 + 45 42 38 1 211 207 202 2 + 38 40 45 1 220 222 234 2 + 40 41 45 1 205 206 211 2 + 43 42 46 1 209 207 212 2 + 44 43 46 1 210 209 212 2 + 42 45 46 1 224 234 236 2 + 49 48 50 1 251 247 252 2 + 48 51 50 1 247 260 252 2 + 48 49 47 1 247 251 246 2 + 50 51 52 1 252 260 261 2 + 2 53 7 1 181 262 200 2 + 47 53 2 1 246 262 181 2 + 47 49 53 1 246 251 262 2 + 55 57 56 1 279 280 226 2 + 58 59 57 1 258 263 280 2 + 60 62 61 1 281 283 282 2 + 19 20 62 1 284 232 283 2 + 52 61 50 1 255 282 259 2 + 50 61 59 1 259 282 263 2 + 54 10 63 1 248 187 285 2 + 22 64 62 1 286 238 283 2 + 64 22 55 1 238 286 279 2 + 52 54 60 1 255 248 281 2 + 24 55 22 1 287 279 286 2 + 63 25 19 1 285 288 284 2 + 63 19 65 1 285 284 289 2 + 50 59 58 1 252 266 265 2 + 57 55 24 1 280 279 287 2 + 54 63 60 1 248 285 281 2 + 52 60 61 1 255 281 282 2 + 61 66 59 1 282 242 263 2 + 53 49 57 1 290 253 280 2 + 66 61 64 1 242 282 238 2 + 64 55 56 1 238 279 226 2 + 19 62 65 1 284 283 289 2 + 25 63 10 1 288 285 187 2 + 62 20 28 1 283 232 291 2 + 22 62 28 1 286 283 291 2 + 50 58 49 1 252 265 251 2 + 49 58 57 1 253 258 280 2 + 56 59 66 1 226 263 242 2 + 57 59 56 1 280 263 226 2 + 64 56 66 1 238 226 242 2 + 62 64 61 1 283 238 282 2 + 57 24 7 1 280 287 292 2 + 57 7 53 1 280 292 290 2 + 63 65 60 1 285 289 281 2 + 65 62 60 1 289 283 281 2 + 67 48 68 1 267 247 268 2 + 48 67 51 1 247 267 260 2 + 68 47 69 1 268 246 269 2 + 47 68 48 1 246 268 247 2 + 70 51 67 1 270 260 267 2 + 51 70 52 1 260 270 261 2 + 69 2 33 1 269 181 218 2 + 2 69 47 1 181 269 246 2 + 71 52 70 1 271 261 270 2 + 52 71 54 1 261 271 264 2 + 10 54 71 1 203 264 271 2 + 72 68 73 1 272 268 273 2 + 68 72 67 1 268 272 267 2 + 73 69 74 1 273 269 274 2 + 69 73 68 1 269 273 268 2 + 75 67 72 1 275 267 272 2 + 67 75 70 1 267 275 270 2 + 74 33 39 1 274 218 221 2 + 33 74 69 1 218 274 269 2 + 76 70 75 1 216 213 215 2 + 70 76 71 1 270 276 271 2 + 41 71 76 1 223 271 276 2 + 71 41 10 1 214 206 189 2 + 77 73 78 1 277 273 278 2 + 73 77 72 1 273 277 272 2 + 74 78 73 1 274 278 273 2 + 72 77 75 1 272 277 275 2 + 78 39 44 1 278 221 233 2 + 39 78 74 1 221 278 274 2 + 45 75 77 1 234 275 277 2 + 75 45 76 1 215 211 216 2 + 76 45 41 1 276 234 223 2 + 78 46 77 1 278 236 277 2 + 44 46 78 1 233 236 278 2 + 77 46 45 1 217 212 211 2 + tverts 1716 + 0.0141124 0.395877 0 + 0.367729 0.51728 0 + 0.437726 0.663293 0 + 0.00821917 0.989463 0 + 0.0220187 0.0295549 0 + 0.0218762 0.0111259 0 + 0.353564 0.990772 0 + 0.19665 0.0363949 0 + 0.421358 0.231266 0 + 0.0177089 0.651268 0 + 0.28697 0.762342 0 + 0.246526 0.026488 0 + 0.370621 0.51849 0 + 0.438342 0.664207 0 + 0.357825 0.928737 0 + 0.199358 0.0374287 0 + 0.424796 0.233042 0 + 0.28734 0.769208 0 + 0.242954 0.0236796 0 + 0.103579 0.419504 0 + 0.104051 0.419079 0 + 0.0139716 0.347939 0 + 0.0139726 0.769395 0 + 0.0227176 0.27546 0 + 0.141578 0.234447 0 + 0.141191 0.235326 0 + 0.400512 0.48609 0 + 0.399786 0.484494 0 + 0.0247369 0.243401 0 + 0.391979 0.216435 0 + 0.392461 0.21552 0 + 0.348051 0.651149 0 + 0.348553 0.648971 0 + 0.419839 0.838568 0 + 0.333594 0.0565594 0 + 0.333594 0.0386001 0 + 0.327422 0.0466015 0 + 0.328415 0.0389633 0 + 0.322493 0.0539403 0 + 0.327025 0.0526932 0 + 0.333594 0.0609965 0 + 0.339766 0.0466015 0 + 0.338994 0.0390774 0 + 0.344889 0.0538278 0 + 0.340163 0.0526932 0 + 0.815598 0.363623 0 + 0.879959 0.320075 0 + 0.985862 0.356815 0 + 0.906098 0.362985 0 + 0.689217 0.420077 0 + 0.564544 0.364869 0 + 0.638004 0.951461 0 + 0.925421 0.721985 0 + 0.908812 0.707854 0 + 0.930386 0.952404 0 + 0.775314 0.936646 0 + 0.885509 0.955714 0 + 0.853543 0.773817 0 + 0.892261 0.790885 0 + 0.754649 0.568215 0 + 0.945392 0.731572 0 + 0.950702 0.61188 0 + 0.909451 0.722866 0 + 0.89681 0.419653 0 + 0.819613 0.488021 0 + 0.788261 0.800042 0 + 0.86675 0.71572 0 + 0.965851 0.770413 0 + 0.875221 0.910527 0 + 0.807846 0.508761 0 + 0.887108 0.0371405 0 + 0.907741 0.486452 0 + 0.66213 0.661112 0 + 0.791309 0.68728 0 + 0.666103 0.993954 0 + 0.596592 0.992029 0 + 0.554635 0.925301 0 + 0.776685 0.799443 0 + 0.53589 0.797228 0 + 0.617599 0.77233 0 + 0.573161 0.400064 0 + 0.543639 0.665894 0 + 0.579979 0.596381 0 + 0.986807 0.476758 0 + 0.900242 0.991565 0 + 0.77116 0.833727 0 + 0.544228 0.829787 0 + 0.713936 0.314066 0 + 0.670098 0.493792 0 + 0.493629 0.777666 0 + 0.930456 0.134766 0 + 0.989577 0.0464907 0 + 0.817516 0.258601 0 + 0.612802 0.33066 0 + 0.532037 0.774679 0 + 0.52827 0.754939 0 + 0.584412 0.750898 0 + 0.487479 0.750178 0 + 0.525176 0.650051 0 + 0.627019 0.646554 0 + 0.608438 0.615059 0 + 0.659663 0.462195 0 + 0.555004 0.774767 0 + 0.55678 0.762266 0 + 0.60249 0.771248 0 + 0.605063 0.637025 0 + 0.65287 0.60519 0 + 0.657556 0.601283 0 + 0.661335 0.39661 0 + 0.536398 0.990476 0 + 0.890684 0.526638 0 + 0.760619 0.838472 0 + 0.902991 0.789235 0 + 0.605637 0.989073 0 + 0.665186 0.991949 0 + 0.639876 0.966715 0 + 0.82423 0.933441 0 + 0.89675 0.990092 0 + 0.596684 0.860635 0 + 0.968484 0.77304 0 + 0.997917 0.49172 0 + 0.576273 0.840908 0 + 0.595597 0.87947 0 + 0.561122 0.988901 0 + 0.590808 0.878297 0 + 0.75715 0.541456 0 + 0.554 0.688145 0 + 0.862762 0.148491 0 + 0.76854 0.207361 0 + 0.984497 0.0556339 0 + 0.92339 0.143367 0 + 0.688352 0.413512 0 + 0.510642 0.427169 0 + 0.682318 0.368314 0 + 0.786373 0.146647 0 + 0.664698 0.986295 0 + 0.547336 0.882443 0 + 0.647756 0.981008 0 + 0.633833 0.859583 0 + 0.514841 0.85168 0 + 0.525117 0.766822 0 + 0.509414 0.795725 0 + 0.561468 0.801988 0 + 0.587199 0.665281 0 + 0.61652 0.66577 0 + 0.564473 0.65219 0 + 0.657589 0.480742 0 + 0.671959 0.854537 0 + 0.618884 0.86641 0 + 0.603517 0.886893 0 + 0.691767 0.798315 0 + 0.644129 0.7829 0 + 0.643969 0.786276 0 + 0.751334 0.618659 0 + 0.614931 0.0588578 0 + 0.605602 0.0239378 0 + 0.635902 0.0456123 0 + 0.61963 0.0446087 0 + 0.643277 0.0717492 0 + 0.621729 0.0287249 0 + 0.508082 0.134138 0 + 0.472075 0.0701576 0 + 0.536531 0.0668553 0 + 0.675261 0.122045 0 + 0.716718 0.279562 0 + 0.55363 0.29515 0 + 0.450288 0.0603121 0 + 0.456559 0.0563513 0 + 0.451693 0.0560512 0 + 0.464014 0.066638 0 + 0.452321 0.0513014 0 + 0.510051 0.0638782 0 + 0.506583 0.120649 0 + 0.576204 0.0835141 0 + 0.652102 0.102059 0 + 0.714883 0.279395 0 + 0.577921 0.284409 0 + 1.45156 0.703321 0 + 1.54241 0.656002 0 + 1.3992 0.925719 0 + 1.4008 0.58823 0 + 1.39953 0.927072 0 + 1.46878 0.544722 0 + 1.61279 0.533418 0 + 1.53656 0.373677 0 + 1.50352 0.75316 0 + 1.39859 0.646159 0 + 0.202069 0.0131464 0 + 1.60413 0.206949 0 + 1.60104 0.190418 0 + 1.36556 0.517623 0 + 1.36611 0.398113 0 + 1.70998 0.584294 0 + 1.55602 0.812986 0 + 1.47118 0.920175 0 + 1.82422 0.0625666 0 + 1.43839 0.9564 0 + 1.64819 0.00754879 0 + 1.84807 0.537132 0 + 1.83072 0.770396 0 + 1.50385 0.754513 0 + 1.71812 0.89245 0 + 1.97944 0.203636 0 + 1.60136 0.191771 0 + 1.55656 0.993635 0 + 1.99171 0.00758899 0 + 1.72761 0.0994991 0 + 1.9919 0.495966 0 + 1.82207 0.0614422 0 + 1.92054 0.831423 0 + 1.76891 0.961492 0 + 1.75645 0.399611 0 + 1.98932 0.808963 0 + 1.82175 0.0600892 0 + 1.64819 0.00754879 0 + 1.97944 0.203636 0 + 1.99171 0.00758899 0 + 1.9919 0.495966 0 + 1.43872 0.957753 0 + 1.64851 0.00890179 0 + 1.97976 0.204989 0 + 1.55688 0.994988 0 + 1.99204 0.00894203 0 + 1.72794 0.100852 0 + 1.99223 0.497319 0 + 0.143775 0.817848 0 + 0.286339 0.80495 0 + 0.28611 0.904572 0 + 0.227014 0.225341 0 + 0.344126 0.490375 0 + 0.144328 0.414366 0 + 0.00933021 0.228503 0 + 0.00701902 0.363224 0 + 1.76923 0.962845 0 + 1.7543 0.396009 0 + 0.110381 0.00612421 0 + 1.98932 0.808963 0 + 0.0108266 0.735696 0 + 0.143602 0.742162 0 + 0.0121679 0.836454 0 + 0.0103104 0.00740402 0 + 0.1411 0.227697 0 + 0.317722 0.723575 0 + 0.207079 0.986955 0 + 0.00817781 0.425162 0 + 0.00918471 0.989309 0 + 1.45189 0.704674 0 + 1.54274 0.657355 0 + 0.305136 0.189389 0 + 0.420067 0.411384 0 + 0.398036 0.987876 0 + 1.39862 0.583906 0 + 1.4691 0.546075 0 + 0.398036 0.987876 0 + 0.423277 0.760065 0 + 0.420067 0.411384 0 + 0.438812 0.898493 0 + 0.427604 0.60258 0 + 0.438812 0.898493 0 + 0.427604 0.60258 0 + 1.61312 0.534771 0 + 1.53689 0.37503 0 + 1.39891 0.647512 0 + 0.423277 0.760065 0 + 1.60446 0.208302 0 + 1.36589 0.518976 0 + 1.36219 0.399466 0 + 1.7103 0.585647 0 + 1.55635 0.814339 0 + 1.47151 0.921528 0 + 1.82207 0.0614422 0 + 1.64851 0.00890179 0 + 1.8484 0.538485 0 + 1.83104 0.771749 0 + 1.71845 0.893803 0 + 1.97976 0.204989 0 + 1.99204 0.00894203 0 + 1.99223 0.497319 0 + 1.92087 0.832776 0 + 0.143775 0.817848 0 + 0.28611 0.904572 0 + 0.227014 0.225341 0 + 0.344126 0.490375 0 + 0.144328 0.414366 0 + 0.00933021 0.228503 0 + 0.110381 0.00612421 0 + 0.0108266 0.735696 0 + 0.0121679 0.836454 0 + 0.0103104 0.00930971 0 + 0.1411 0.227697 0 + 0.207079 0.986955 0 + 0.00817781 0.425162 0 + 0.00918471 0.989309 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.837959 0.374725 0 + 0.856379 0.420591 0 + 0.6447 0.472786 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.45232 0.59132 0 + 0.782625 0.920431 0 + 0.531144 0.686134 0 + 0.959677 0.751926 0 + 0.526992 0.996235 0 + 0.989996 0.82181 0 + 0.453691 0.00718925 0 + 0.708225 0.815329 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.547035 0.290765 0 + 0.706222 0.493213 0 + 0.522715 0.150502 0 + 0.317586 0.181528 0 + 0.758173 0.41371 0 + 0.451163 0.00585135 0 + 0.257577 0.00783744 0 + 0.791307 0.473448 0 + 0.70707 0.813917 0 + 0.782881 0.922398 0 + 0.320649 0.181012 0 + 0.471981 0.905367 0 + 0.526283 0.994285 0 + 0.837959 0.374725 0 + 0.856379 0.420591 0 + 0.6447 0.472786 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.45232 0.59132 0 + 0.782625 0.920431 0 + 0.531144 0.686134 0 + 0.959677 0.751926 0 + 0.526992 0.996235 0 + 0.989996 0.82181 0 + 0.453691 0.00718925 0 + 0.708225 0.815329 0 + 0.469791 0.905908 0 + 0.521361 0.151012 0 + 0.988007 0.820421 0 + 0.548994 0.290228 0 + 0.960443 0.751223 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.837959 0.374725 0 + 0.856379 0.420591 0 + 0.6447 0.472786 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.45232 0.59132 0 + 0.782625 0.920431 0 + 0.531144 0.686134 0 + 0.959677 0.751926 0 + 0.526992 0.996235 0 + 0.989996 0.82181 0 + 0.453691 0.00718925 0 + 0.708225 0.815329 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.837959 0.374725 0 + 0.856379 0.420591 0 + 0.6447 0.472786 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.45232 0.59132 0 + 0.782625 0.920431 0 + 0.531144 0.686134 0 + 0.959677 0.751926 0 + 0.526992 0.996235 0 + 0.989996 0.82181 0 + 0.453691 0.00718925 0 + 0.708225 0.815329 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.837959 0.374725 0 + 0.856379 0.420591 0 + 0.6447 0.472786 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.45232 0.59132 0 + 0.782625 0.920431 0 + 0.531144 0.686134 0 + 0.959677 0.751926 0 + 0.526992 0.996235 0 + 0.989996 0.82181 0 + 0.453691 0.00718925 0 + 0.708225 0.815329 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 +endnode +node danglymesh snakehead + parent head_g + position 0.00427944 0.0407556 -0.0128833 + orientation 0.426936 0.0537058 0.902686 -0.0257438 + wirecolor 0.564706 0.109804 0.694118 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 27 + center -0.18185 -11.8508 13.9052 + period 8.0 + tightness 3.0 + displacement 0.03 + showdispl true + displtype 1 + center -0.18185 -11.8508 13.9052 + bitmap medusae_head + verts 182 + -0.313097 -0.0284459 -0.0854782 + -0.270934 -0.0465827 -0.0878548 + -0.286144 -0.00654092 -0.0554325 + -0.294256 -0.0458874 -0.0550184 + -0.22974 -0.0470202 -0.0415071 + -0.235901 -0.0307666 -0.0283637 + -0.241696 -0.0498297 -0.025554 + -0.138374 -0.0271726 -0.0459497 + -0.154047 -0.00539081 0.000588745 + -0.143798 -0.0579231 -0.00224557 + -0.0250747 0.0525223 0.00635143 + -0.0525202 0.0192572 0.0901684 + -0.00902392 -0.0568758 0.0214694 + -0.355826 -0.0888823 0.109662 + -0.347593 -0.110949 0.0701952 + -0.310364 -0.0917501 0.10383 + -0.335464 -0.122991 0.106671 + -0.296411 -0.143671 0.0577484 + -0.281305 -0.135871 0.071382 + -0.292538 -0.152008 0.0756603 + -0.194577 -0.147685 0.0332774 + -0.185833 -0.1184 0.0774575 + -0.189604 -0.171745 0.0810417 + -0.103527 -0.0240988 0.0569373 + -0.0978601 -0.00548637 0.147567 + -0.0783724 -0.128615 0.0868983 + -0.303327 -0.288194 0.199177 + -0.292551 -0.281799 0.154958 + -0.266002 -0.261524 0.197029 + -0.268736 -0.298911 0.182575 + -0.23559 -0.26975 0.133615 + -0.224826 -0.26151 0.150678 + -0.224263 -0.281036 0.145849 + -0.141089 -0.266878 0.123446 + -0.144428 -0.22651 0.158733 + -0.124904 -0.273979 0.174168 + -0.0799861 -0.141074 0.0849036 + -0.0831496 -0.1059 0.171528 + -0.0199249 -0.187764 0.166554 + -0.11115 -0.0449712 0.421448 + -0.145615 -0.0507244 0.391592 + -0.0948163 -0.0666536 0.384406 + -0.124035 -0.0803203 0.408356 + -0.148885 -0.0959925 0.349338 + -0.128276 -0.102443 0.346412 + -0.140759 -0.111434 0.359381 + -0.161304 -0.0696054 0.276403 + -0.109622 -0.0826255 0.283138 + -0.145736 -0.120896 0.272946 + -0.0743081 0.0358609 0.204584 + -0.00355562 -0.0195492 0.233025 + -0.0759055 -0.0678762 0.163472 + -3.34958e-005 -0.169266 0.462678 + 0.0268282 -0.190153 0.431783 + -0.0268922 -0.190235 0.431888 + -3.66747e-005 -0.208463 0.455566 + 0.0108562 -0.240181 0.398808 + -0.010936 -0.240205 0.398838 + -2.101e-005 -0.250517 0.412232 + 0.0268282 -0.222163 0.301473 + -0.0268923 -0.222279 0.301405 + -3.67703e-005 -0.267542 0.291267 + 0.0470995 -0.10392 0.227899 + -0.0471612 -0.104032 0.227693 + -3.91904e-005 -0.20212 0.190289 + 0.109945 -0.0449713 0.421448 + 0.14441 -0.0507245 0.391592 + 0.0936115 -0.0666537 0.384406 + 0.12283 -0.0803204 0.408356 + 0.14768 -0.0959925 0.349338 + 0.127071 -0.102443 0.346412 + 0.139554 -0.111434 0.359381 + 0.160099 -0.0696055 0.276403 + 0.108417 -0.0826256 0.283138 + 0.144531 -0.120896 0.272946 + 0.0731033 0.0358608 0.204584 + 0.00235079 -0.0195493 0.233025 + 0.0747007 -0.0678763 0.163472 + 0.303236 -0.288194 0.199177 + 0.29246 -0.2818 0.154958 + 0.265911 -0.261525 0.197029 + 0.268645 -0.298911 0.182575 + 0.235499 -0.26975 0.133615 + 0.224735 -0.261511 0.150678 + 0.224172 -0.281036 0.145849 + 0.140998 -0.266878 0.123446 + 0.144337 -0.22651 0.158733 + 0.124813 -0.273979 0.174168 + 0.0798953 -0.141074 0.0849036 + 0.0830589 -0.1059 0.171528 + 0.0198342 -0.187764 0.166554 + 0.352189 -0.0888824 0.109662 + 0.343956 -0.110949 0.0701952 + 0.306727 -0.0917502 0.10383 + 0.331827 -0.122992 0.106671 + 0.292774 -0.143671 0.0577484 + 0.277668 -0.135871 0.071382 + 0.288901 -0.152008 0.0756603 + 0.19094 -0.147685 0.0332774 + 0.182196 -0.118401 0.0774575 + 0.185966 -0.171745 0.0810417 + 0.0998902 -0.0240989 0.0569373 + 0.094223 -0.00548644 0.147567 + 0.0747353 -0.128616 0.0868983 + 0.311791 -0.028446 -0.0854782 + 0.269627 -0.0465828 -0.0878548 + 0.284837 -0.00654104 -0.0554325 + 0.292949 -0.0458875 -0.0550184 + 0.228433 -0.0470203 -0.0415071 + 0.234595 -0.0307667 -0.0283637 + 0.240389 -0.0498299 -0.025554 + 0.137067 -0.0271727 -0.0459497 + 0.15274 -0.0053909 0.000588745 + 0.142491 -0.0579232 -0.00224557 + 0.023768 0.0525223 0.00635143 + 0.0512135 0.0192571 0.0901684 + 0.00771719 -0.0568758 0.0214694 + -3.35404e-005 -0.48394 0.151555 + 0.0268282 -0.448425 0.162934 + -0.0268923 -0.448427 0.1628 + -3.67249e-005 -0.44873 0.13292 + 0.0108561 -0.388716 0.157937 + -0.010936 -0.388716 0.157899 + -2.10508e-005 -0.388888 0.140996 + 0.0268282 -0.260543 0.124837 + -0.0268923 -0.26052 0.124706 + -3.68511e-005 -0.266876 0.0787588 + 0.0470995 -0.165578 0.202962 + -0.0471612 -0.165425 0.202784 + -3.91968e-005 -0.164742 0.0978093 + -3.34552e-005 -0.278876 -0.184574 + 0.0268282 -0.274017 -0.147599 + -0.0268923 -0.274148 -0.147624 + -3.66294e-005 -0.303495 -0.153254 + 0.0108562 -0.289588 -0.0897393 + -0.010936 -0.289625 -0.0897464 + -2.099e-005 -0.306226 -0.0929316 + 0.0268283 -0.214942 -0.00628011 + -0.0268923 -0.215027 -0.00617675 + -3.67659e-005 -0.25398 0.0190057 + 0.0470996 -0.0479952 0.00672825 + -0.0471612 -0.0480299 0.00696032 + -3.92167e-005 -0.165841 0.0972203 + -3.35323e-005 0.246925 0.330104 + -0.0268921 0.209746 0.327773 + 0.0268283 0.209713 0.327644 + -3.67043e-005 0.217261 0.356694 + -0.0109358 0.15299 0.346956 + 0.0108562 0.15298 0.346919 + -2.09994e-005 0.15724 0.363317 + -0.0268923 0.0960086 0.296753 + 0.0268282 0.0961235 0.296685 + -3.6772e-005 0.0652857 0.331504 + -0.0471611 0.0643526 0.15575 + 0.0470995 0.0645796 0.15569 + -3.923e-005 -0.0196343 0.211727 + -0.245635 0.217477 0.234639 + -0.243975 0.183676 0.203541 + -0.21942 0.183661 0.251322 + -0.25812 0.180202 0.241098 + -0.234368 0.123813 0.216555 + -0.224394 0.123809 0.23593 + -0.244321 0.121852 0.233946 + -0.177649 0.0657858 0.169249 + -0.153037 0.0656709 0.217 + -0.19624 0.034948 0.209104 + -0.0617144 0.0342418 0.0864868 + -0.0184758 0.0340148 0.170245 + -0.0898417 -0.0499721 0.154096 + 0.242946 0.217477 0.234639 + 0.241286 0.183676 0.203541 + 0.216731 0.183661 0.251322 + 0.255431 0.180202 0.241098 + 0.231679 0.123813 0.216555 + 0.221705 0.123808 0.23593 + 0.241632 0.121852 0.233946 + 0.17496 0.0657857 0.169249 + 0.150348 0.0656708 0.217 + 0.193551 0.0349479 0.209104 + 0.0590253 0.0342417 0.0864868 + 0.0157867 0.0340148 0.170245 + 0.0871527 -0.0499722 0.154096 + faces 294 + 0 2 1 1 182 184 183 2 + 0 1 3 1 185 187 186 2 + 0 3 2 1 188 190 189 2 + 2 5 4 8 184 192 191 3 + 2 4 1 8 184 191 183 3 + 1 4 6 8 187 194 193 3 + 1 6 3 8 187 193 186 3 + 3 6 5 8 190 196 195 3 + 3 5 2 8 190 195 189 3 + 5 8 7 8 192 198 197 3 + 5 7 4 8 192 197 191 3 + 4 7 9 8 199 201 200 3 + 4 9 6 8 199 200 202 3 + 6 9 8 8 203 205 204 3 + 6 8 5 8 203 204 206 3 + 8 11 10 8 198 208 207 3 + 8 10 7 8 198 207 197 3 + 7 10 12 8 201 210 209 3 + 7 12 9 8 201 209 200 3 + 9 12 11 8 205 212 211 3 + 9 11 8 8 205 211 204 3 + 13 15 14 1 213 215 214 2 + 13 14 16 1 216 218 217 2 + 13 16 15 1 219 221 220 2 + 15 18 17 8 215 223 222 3 + 15 17 14 8 215 222 214 3 + 14 17 19 8 218 225 224 3 + 14 19 16 8 218 224 217 3 + 16 19 18 8 221 227 226 3 + 16 18 15 8 221 226 220 3 + 18 21 20 8 223 229 228 3 + 18 20 17 8 223 228 222 3 + 17 20 22 8 230 232 231 3 + 17 22 19 8 230 231 233 3 + 19 22 21 8 234 236 235 3 + 19 21 18 8 234 235 237 3 + 21 24 23 8 229 239 238 3 + 21 23 20 8 229 238 228 3 + 20 23 25 8 232 241 240 3 + 20 25 22 8 232 240 231 3 + 22 25 24 8 236 243 242 3 + 22 24 21 8 236 242 235 3 + 26 28 27 1 244 246 245 2 + 26 27 29 1 247 249 248 2 + 26 29 28 1 250 252 251 2 + 28 31 30 8 246 254 253 3 + 28 30 27 8 246 253 245 3 + 27 30 32 8 249 256 255 3 + 27 32 29 8 249 255 248 3 + 29 32 31 8 252 258 257 3 + 29 31 28 8 252 257 251 3 + 31 34 33 8 254 260 259 3 + 31 33 30 8 254 259 253 3 + 30 33 35 8 261 263 262 3 + 30 35 32 8 261 262 264 3 + 32 35 34 8 265 267 266 3 + 32 34 31 8 265 266 268 3 + 34 37 36 8 260 270 269 3 + 34 36 33 8 260 269 259 3 + 33 36 38 8 263 272 271 3 + 33 38 35 8 263 271 262 3 + 35 38 37 8 267 274 273 3 + 35 37 34 8 267 273 266 3 + 39 41 40 1 306 308 307 2 + 39 40 42 1 309 311 310 2 + 39 42 41 1 312 314 313 2 + 41 44 43 8 308 316 315 3 + 41 43 40 8 308 315 307 3 + 40 43 45 8 311 318 317 3 + 40 45 42 8 311 317 310 3 + 42 45 44 8 314 320 319 3 + 42 44 41 8 314 319 313 3 + 44 47 46 8 316 322 321 3 + 44 46 43 8 316 321 315 3 + 43 46 48 8 323 325 324 3 + 43 48 45 8 323 324 326 3 + 45 48 47 8 327 329 328 3 + 45 47 44 8 327 328 330 3 + 47 50 49 8 322 332 331 3 + 47 49 46 8 322 331 321 3 + 46 49 51 8 325 334 333 3 + 46 51 48 8 325 333 324 3 + 48 51 50 8 329 336 335 3 + 48 50 47 8 329 335 328 3 + 52 53 54 1 474 475 476 2 + 52 55 53 1 477 478 479 2 + 52 54 55 1 480 481 482 2 + 54 56 57 8 476 483 484 3 + 54 53 56 8 476 475 483 3 + 53 58 56 8 479 485 486 3 + 53 55 58 8 479 478 485 3 + 55 57 58 8 482 487 488 3 + 55 54 57 8 482 481 487 3 + 57 59 60 8 484 489 490 3 + 57 56 59 8 484 483 489 3 + 56 61 59 8 491 492 493 3 + 56 58 61 8 491 494 492 3 + 58 60 61 8 495 496 497 3 + 58 57 60 8 495 498 496 3 + 60 62 63 8 490 499 500 3 + 60 59 62 8 490 489 499 3 + 59 64 62 8 493 501 502 3 + 59 61 64 8 493 492 501 3 + 61 63 64 8 497 503 504 3 + 61 60 63 8 497 496 503 3 + 65 66 67 1 533 534 535 2 + 65 68 66 1 536 537 538 2 + 65 67 68 1 539 540 541 2 + 67 69 70 8 535 542 543 3 + 67 66 69 8 535 534 542 3 + 66 71 69 8 538 544 545 3 + 66 68 71 8 538 537 544 3 + 68 70 71 8 541 546 547 3 + 68 67 70 8 541 540 546 3 + 70 72 73 8 543 548 549 3 + 70 69 72 8 543 542 548 3 + 69 74 72 8 550 551 552 3 + 69 71 74 8 550 553 551 3 + 71 73 74 8 554 555 556 3 + 71 70 73 8 554 557 555 3 + 73 75 76 8 549 558 559 3 + 73 72 75 8 549 548 558 3 + 72 77 75 8 552 560 561 3 + 72 74 77 8 552 551 560 3 + 74 76 77 8 556 562 563 3 + 74 73 76 8 556 555 562 3 + 78 79 80 1 595 596 597 2 + 78 81 79 1 598 599 600 2 + 78 80 81 1 601 602 603 2 + 80 82 83 8 597 604 605 3 + 80 79 82 8 597 596 604 3 + 79 84 82 8 600 606 607 3 + 79 81 84 8 600 599 606 3 + 81 83 84 8 603 608 609 3 + 81 80 83 8 603 602 608 3 + 83 85 86 8 605 610 611 3 + 83 82 85 8 605 604 610 3 + 82 87 85 8 612 613 614 3 + 82 84 87 8 612 615 613 3 + 84 86 87 8 616 617 618 3 + 84 83 86 8 616 619 617 3 + 86 88 89 8 611 620 621 3 + 86 85 88 8 611 610 620 3 + 85 90 88 8 614 622 623 3 + 85 87 90 8 614 613 622 3 + 87 89 90 8 618 624 625 3 + 87 86 89 8 618 617 624 3 + 91 92 93 1 626 627 628 2 + 91 94 92 1 629 630 631 2 + 91 93 94 1 632 633 634 2 + 93 95 96 8 628 635 636 3 + 93 92 95 8 628 627 635 3 + 92 97 95 8 631 637 638 3 + 92 94 97 8 631 630 637 3 + 94 96 97 8 634 639 640 3 + 94 93 96 8 634 633 639 3 + 96 98 99 8 636 641 642 3 + 96 95 98 8 636 635 641 3 + 95 100 98 8 643 644 645 3 + 95 97 100 8 643 646 644 3 + 97 99 100 8 647 648 649 3 + 97 96 99 8 647 650 648 3 + 99 101 102 8 642 651 652 3 + 99 98 101 8 642 641 651 3 + 98 103 101 8 645 653 654 3 + 98 100 103 8 645 644 653 3 + 100 102 103 8 649 655 656 3 + 100 99 102 8 649 648 655 3 + 104 105 106 1 657 658 659 2 + 104 107 105 1 660 661 662 2 + 104 106 107 1 663 664 665 2 + 106 108 109 8 659 666 667 3 + 106 105 108 8 659 658 666 3 + 105 110 108 8 662 668 669 3 + 105 107 110 8 662 661 668 3 + 107 109 110 8 665 670 671 3 + 107 106 109 8 665 664 670 3 + 109 111 112 8 667 672 673 3 + 109 108 111 8 667 666 672 3 + 108 113 111 8 674 675 676 3 + 108 110 113 8 674 677 675 3 + 110 112 113 8 678 679 680 3 + 110 109 112 8 678 681 679 3 + 112 114 115 8 673 682 683 3 + 112 111 114 8 673 672 682 3 + 111 116 114 8 676 684 685 3 + 111 113 116 8 676 675 684 3 + 113 115 116 8 680 686 687 3 + 113 112 115 8 680 679 686 3 + 117 118 119 1 688 689 690 2 + 117 120 118 1 691 692 693 2 + 117 119 120 1 694 695 696 2 + 119 121 122 8 690 697 698 3 + 119 118 121 8 690 689 697 3 + 118 123 121 8 693 699 700 3 + 118 120 123 8 693 692 699 3 + 120 122 123 8 696 701 702 3 + 120 119 122 8 696 695 701 3 + 122 124 125 8 698 703 704 3 + 122 121 124 8 698 697 703 3 + 121 126 124 8 705 706 707 3 + 121 123 126 8 705 708 706 3 + 123 125 126 8 709 710 711 3 + 123 122 125 8 709 712 710 3 + 125 127 128 8 704 713 714 3 + 125 124 127 8 704 703 713 3 + 124 129 127 8 707 715 716 3 + 124 126 129 8 707 706 715 3 + 126 128 129 8 711 717 718 3 + 126 125 128 8 711 710 717 3 + 130 132 131 1 719 721 720 2 + 130 131 133 1 722 724 723 2 + 130 133 132 1 725 727 726 2 + 132 135 134 8 721 729 728 3 + 132 134 131 8 721 728 720 3 + 131 134 136 8 724 731 730 3 + 131 136 133 8 724 730 723 3 + 133 136 135 8 727 733 732 3 + 133 135 132 8 727 732 726 3 + 135 138 137 8 729 735 734 3 + 135 137 134 8 729 734 728 3 + 134 137 139 8 736 738 737 3 + 134 139 136 8 736 737 739 3 + 136 139 138 8 740 742 741 3 + 136 138 135 8 740 741 743 3 + 138 141 140 8 735 745 744 3 + 138 140 137 8 735 744 734 3 + 137 140 142 8 738 747 746 3 + 137 142 139 8 738 746 737 3 + 139 142 141 8 742 749 748 3 + 139 141 138 8 742 748 741 3 + 143 145 144 1 777 783 780 2 + 143 146 145 1 776 779 778 2 + 143 144 146 1 805 803 786 2 + 144 148 147 8 780 790 789 3 + 144 145 148 8 780 783 790 3 + 145 149 148 8 778 782 781 3 + 145 146 149 8 778 779 782 3 + 146 147 149 8 786 800 792 3 + 146 144 147 8 786 803 800 3 + 147 151 150 8 789 793 791 3 + 147 148 151 8 789 790 793 3 + 148 152 151 8 797 785 784 3 + 148 149 152 8 797 799 785 3 + 149 150 152 8 804 801 795 3 + 149 147 150 8 804 806 801 3 + 150 154 153 8 791 796 794 3 + 150 151 154 8 791 793 796 3 + 151 155 154 8 784 788 787 3 + 151 152 155 8 784 785 788 3 + 152 153 155 8 795 802 798 3 + 152 150 153 8 795 801 802 3 + 156 158 157 1 833 835 834 2 + 156 157 159 1 836 838 837 2 + 156 159 158 1 839 841 840 2 + 158 161 160 8 835 843 842 3 + 158 160 157 8 835 842 834 3 + 157 160 162 8 838 845 844 3 + 157 162 159 8 838 844 837 3 + 159 162 161 8 841 847 846 3 + 159 161 158 8 841 846 840 3 + 161 164 163 8 843 849 848 3 + 161 163 160 8 843 848 842 3 + 160 163 165 8 850 852 851 3 + 160 165 162 8 850 851 853 3 + 162 165 164 8 854 856 855 3 + 162 164 161 8 854 855 857 3 + 164 167 166 8 849 859 858 3 + 164 166 163 8 849 858 848 3 + 163 166 168 8 852 861 860 3 + 163 168 165 8 852 860 851 3 + 165 168 167 8 856 863 862 3 + 165 167 164 8 856 862 855 3 + 169 170 171 1 890 891 892 2 + 169 172 170 1 893 894 895 2 + 169 171 172 1 896 897 898 2 + 171 173 174 8 892 899 900 3 + 171 170 173 8 892 891 899 3 + 170 175 173 8 895 901 902 3 + 170 172 175 8 895 894 901 3 + 172 174 175 8 898 903 904 3 + 172 171 174 8 898 897 903 3 + 174 176 177 8 900 905 906 3 + 174 173 176 8 900 899 905 3 + 173 178 176 8 907 908 909 3 + 173 175 178 8 907 910 908 3 + 175 177 178 8 911 912 913 3 + 175 174 177 8 911 914 912 3 + 177 179 180 8 906 915 916 3 + 177 176 179 8 906 905 915 3 + 176 181 179 8 909 917 918 3 + 176 178 181 8 909 908 917 3 + 178 180 181 8 913 919 920 3 + 178 177 180 8 913 912 919 3 + tverts 921 + 0.438812 0.898493 0 + 0.427604 0.60258 0 + 0.438812 0.898493 0 + 0.427604 0.60258 0 + 1.61312 0.534771 0 + 1.53689 0.37503 0 + 1.39891 0.647512 0 + 0.423277 0.760065 0 + 1.60446 0.208302 0 + 1.36589 0.518976 0 + 1.36219 0.399466 0 + 1.7103 0.585647 0 + 1.55635 0.814339 0 + 1.47151 0.921528 0 + 1.82207 0.0614422 0 + 1.64851 0.00890179 0 + 1.8484 0.538485 0 + 1.83104 0.771749 0 + 1.71845 0.893803 0 + 1.97976 0.204989 0 + 1.99204 0.00894203 0 + 1.99223 0.497319 0 + 1.92087 0.832776 0 + 0.143775 0.817848 0 + 0.28611 0.904572 0 + 0.227014 0.225341 0 + 0.344126 0.490375 0 + 0.144328 0.414366 0 + 0.00933021 0.228503 0 + 0.110381 0.00612421 0 + 0.0108266 0.735696 0 + 0.0121679 0.836454 0 + 0.0103104 0.00930971 0 + 0.1411 0.227697 0 + 0.207079 0.986955 0 + 0.00817781 0.425162 0 + 0.00918471 0.989309 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.228257 0.00757725 0 + 0.441614 0.00643937 0 + 0.436216 0.0693643 0 + 0.320332 0.19395 0 + 0.514979 0.0549897 0 + 0.539582 0.30372 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.547035 0.290765 0 + 0.706222 0.493213 0 + 0.522715 0.150502 0 + 0.317586 0.181528 0 + 0.758173 0.41371 0 + 0.451163 0.00585135 0 + 0.257577 0.00783744 0 + 0.791307 0.473448 0 + 0.70707 0.813917 0 + 0.782881 0.922398 0 + 0.320649 0.181012 0 + 0.471981 0.905367 0 + 0.526283 0.994285 0 + 0.837959 0.374725 0 + 0.856379 0.420591 0 + 0.6447 0.472786 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.45232 0.59132 0 + 0.782625 0.920431 0 + 0.531144 0.686134 0 + 0.959677 0.751926 0 + 0.526992 0.996235 0 + 0.989996 0.82181 0 + 0.453691 0.00718925 0 + 0.708225 0.815329 0 + 0.469791 0.905908 0 + 0.521361 0.151012 0 + 0.988007 0.820421 0 + 0.548994 0.290228 0 + 0.960443 0.751223 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.837959 0.374725 0 + 0.856379 0.420591 0 + 0.6447 0.472786 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.45232 0.59132 0 + 0.782625 0.920431 0 + 0.531144 0.686134 0 + 0.959677 0.751926 0 + 0.526992 0.996235 0 + 0.989996 0.82181 0 + 0.453691 0.00718925 0 + 0.708225 0.815329 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.989439 -0.175539 0 + 0.979405 -0.216361 0 + 0.952603 -0.252361 0 + 0.988852 -0.176023 0 + 0.42236 -0.0819693 0 + 0.453901 -0.0250813 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.547035 0.290765 0 + 0.706222 0.493213 0 + 0.522715 0.150502 0 + 0.317586 0.181528 0 + 0.758173 0.41371 0 + 0.451163 0.00585135 0 + 0.257577 0.00783744 0 + 0.791307 0.473448 0 + 0.70707 0.813917 0 + 0.782881 0.922398 0 + 0.320649 0.181012 0 + 0.471981 0.905367 0 + 0.526283 0.994285 0 + 0.837959 0.374725 0 + 0.856379 0.420591 0 + 0.6447 0.472786 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.45232 0.59132 0 + 0.782625 0.920431 0 + 0.531144 0.686134 0 + 0.959677 0.751926 0 + 0.526992 0.996235 0 + 0.989996 0.82181 0 + 0.453691 0.00718925 0 + 0.708225 0.815329 0 + 0.469791 0.905908 0 + 0.521361 0.151012 0 + 0.988007 0.820421 0 + 0.548994 0.290228 0 + 0.960443 0.751223 0 + 0.454487 -0.0245974 0 + 0.501799 -0.00193418 0 + 0.675546 -0.191232 0 + 0.421774 -0.0824531 0 + 0.723332 -0.141389 0 + 0.768948 -0.056837 0 + 0.229101 0.00675469 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + 0.501213 -0.00241803 0 + 0.33578 0.00759571 0 + 0.442459 0.00561675 0 + 0.321177 0.193128 0 + 0.722746 -0.141873 0 + 0.437061 0.0685418 0 + 0.515824 0.0541671 0 + 0.540426 0.302897 0 + 0.953189 -0.251878 0 + 0.979991 -0.215878 0 + 0.67496 -0.191716 0 + 0.768362 -0.0573209 0 + 0.334935 0.00841833 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.706222 0.493213 0 + 0.791307 0.473448 0 + 0.758173 0.41371 0 + 0.547035 0.290765 0 + 0.317586 0.181528 0 + 0.522715 0.150502 0 + 0.548994 0.290228 0 + 0.521361 0.151012 0 + 0.320649 0.181012 0 + 0.856379 0.420591 0 + 0.837959 0.374725 0 + 0.257577 0.00783744 0 + 0.451163 0.00585135 0 + 0.453691 0.00718925 0 + 0.264424 0.00570546 0 + 0.707189 0.558862 0 + 0.6447 0.472786 0 + 0.959677 0.751926 0 + 0.782881 0.922398 0 + 0.70707 0.813917 0 + 0.989996 0.82181 0 + 0.988007 0.820421 0 + 0.708225 0.815329 0 + 0.782625 0.920431 0 + 0.960443 0.751223 0 + 0.531144 0.686134 0 + 0.45232 0.59132 0 + 0.526283 0.994285 0 + 0.471981 0.905367 0 + 0.469791 0.905908 0 + 0.526992 0.996235 0 + constraints 182 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 +endnode +node dummy Impact + parent torso_g + position 0.000943207 0.0870239 0.107788 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.52549 0.231373 0.0313726 +endnode +node trimesh lbicep_g + parent torso_g + position -0.13857 -0.0356329 0.305501 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.337255 0.556863 0.882353 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center -1.98744 0.145335 -14.2283 + bitmap medusae_biceps + verts 21 + -0.0103022 0.0586243 -0.0249361 + -0.0656664 0.0170267 -0.0262137 + -0.040619 0.0148628 0.0265421 + 0.0259175 -0.0150146 0.0304081 + -0.00998061 -0.0176661 0.0474802 + -0.0156022 -0.0518733 0.0234503 + -0.0527676 0.0119308 -0.0857311 + -0.0110781 -0.0495449 -0.0548487 + -0.0638642 -0.0406762 -0.0162617 + -0.0459775 -0.0361167 -0.114895 + -0.0253748 -0.0065422 -0.332047 + -0.0193534 0.0264024 -0.204881 + 0.0115433 -0.011917 -0.308374 + 0.0200629 -5.75542e-006 -0.0510918 + -0.00689537 0.0390745 0.0262453 + -0.0028278 -0.0308778 -0.311417 + -0.0162503 -0.0557176 -0.162014 + -0.0283036 -0.0513724 -0.313314 + -0.0454188 -0.00789705 -0.239085 + -0.0550344 -0.0171642 -0.312672 + -0.0437268 -0.0374573 -0.150989 + faces 38 + 0 1 2 1 67 68 69 2 + 3 4 5 1 70 71 72 2 + 6 1 0 1 73 68 67 2 + 7 3 5 1 74 75 76 2 + 7 5 8 1 77 78 79 2 + 1 9 8 1 68 80 79 2 + 10 11 12 1 81 82 83 2 + 13 14 3 1 84 85 75 2 + 15 12 16 1 86 87 88 2 + 16 12 7 1 88 87 77 2 + 17 16 18 1 89 88 90 2 + 10 15 17 1 91 92 93 2 + 10 17 19 1 91 93 94 2 + 7 9 16 1 77 80 88 2 + 18 16 20 1 90 88 95 2 + 20 16 9 1 95 88 80 2 + 17 15 16 1 89 86 88 2 + 10 12 15 1 81 83 96 2 + 19 11 10 1 97 82 81 2 + 11 6 0 1 82 73 67 2 + 11 18 6 1 82 90 73 2 + 12 11 0 1 83 82 67 2 + 11 19 18 1 82 97 90 2 + 13 12 0 1 84 83 67 2 + 19 17 18 1 97 89 90 2 + 0 2 14 1 67 69 85 2 + 6 18 20 1 73 90 95 2 + 6 20 9 1 73 95 80 2 + 6 9 1 1 73 80 68 2 + 7 8 9 1 77 79 80 2 + 2 8 5 1 69 79 78 2 + 1 8 2 1 68 79 69 2 + 14 2 4 1 98 99 71 2 + 4 2 5 1 71 99 72 2 + 4 3 14 1 71 70 98 2 + 14 13 0 1 85 84 67 2 + 13 3 7 1 84 75 74 2 + 12 13 7 1 83 84 74 2 + tverts 100 + 0.0383597 0.98195 0 + 0.0383628 0.98195 0 + 0.0383596 0.981951 0 + 0.0383551 0.981949 0 + 0.0383638 0.98195 0 + 0.0383649 0.981948 0 + 0.0383574 0.981947 0 + 0.0383516 0.981949 0 + 0.0383575 0.981942 0 + 0.0383631 0.981948 0 + 0.555857 0.723624 0 + 0.628988 0.458373 0 + 0.756479 0.820704 0 + 0.337069 0.439469 0 + 0.189897 0.770046 0 + 0.967222 0.770996 0 + 0.948069 0.482777 0 + 0.358605 0.80593 0 + 0.133177 0.464914 0 + 0.822084 0.46418 0 + 0.0212207 0.773735 0 + 0.0480289 0.487716 0 + 0.133177 0.470841 0 + 0.133177 0.470841 0 + 0.0480289 0.487716 0 + 0.664273 0.0351878 0 + 0.726937 0.0371316 0 + 0.771732 0.402705 0 + 0.958603 0.308892 0 + 0.51261 0.0546927 0 + 0.331424 0.089814 0 + 0.211995 0.42412 0 + 0.357837 0.406143 0 + 0.494516 0.404457 0 + 0.932627 0.484456 0 + 0.0593426 0.31788 0 + 0.0525984 0.467994 0 + 0.0593426 0.31788 0 + 0.0610509 0.0299206 0 + 0.0632866 0.0293717 0 + 0.976393 0.0463092 0 + 0.0607317 0.027176 0 + 0.558186 0.982818 0 + 0.561785 0.947145 0 + 0.605655 0.950922 0 + 0.489336 0.943275 0 + 0.563185 0.91324 0 + 0.225106 0.875391 0 + 0.420989 0.894528 0 + 0.375026 0.976259 0 + 0.358734 0.806188 0 + 0.756489 0.820713 0 + 0.945278 0.974177 0 + 0.827405 0.963047 0 + 0.568354 0.875785 0 + 0.554979 0.724182 0 + 0.0212206 0.773744 0 + 0.186446 0.96638 0 + 0.756996 0.820844 0 + 0.828593 0.962483 0 + 0.756996 0.820844 0 + 0.189882 0.770123 0 + 0.0621653 0.965707 0 + 0.945619 0.97376 0 + 0.0214679 0.773665 0 + 0.0212206 0.773739 0 + 0.967508 0.77125 0 + 0.306405 0.743281 0 + 0.556734 0.826658 0 + 0.514514 0.980396 0 + 0.221792 0.974217 0 + 0.225392 0.938545 0 + 0.269262 0.942321 0 + 0.505366 0.689564 0 + 0.00586145 0.816108 0 + 0.143758 0.980396 0 + 0.00606471 0.980396 0 + 0.996212 0.813792 0 + 0.996212 0.980396 0 + 0.73778 0.832533 0 + 0.734605 0.6305 0 + 0.230885 0.100584 0 + 0.299411 0.441156 0 + 0.00907585 0.32655 0 + 0.127315 0.813763 0 + 0.325934 0.980396 0 + 0.857334 0.100584 0 + 0.996212 0.100584 0 + 0.81108 0.372681 0 + 0.731623 0.10056 0 + 0.562232 0.371126 0 + 0.663933 0.190382 0 + 0.664178 0.164827 0 + 0.607781 0.165491 0 + 0.608092 0.190667 0 + 0.672993 0.511135 0 + 0.00606471 0.100584 0 + 0.541239 0.0998303 0 + 0.152942 0.934674 0 + 0.226792 0.904639 0 +endnode +node trimesh lforearm_g + parent lbicep_g + position -0.03198 -0.0248663 -0.316307 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.337255 0.556863 0.882353 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center -0.040035 0.27408 -11.6639 + bitmap medusae_forearms + verts 16 + -0.0412958 0.000889447 -0.0299182 + 0.00864317 -0.0276855 0.0231305 + 0.0069658 0.00989087 0.0303381 + -0.00850189 -0.0343456 -0.0100751 + 0.0413474 -0.00258073 0.00244784 + 0.0359495 -0.0180629 -0.0764511 + -0.00914187 0.0279627 -0.0214126 + -0.0421481 0.014111 -0.0907001 + -0.0408742 0.0398272 -0.250964 + -0.0150573 0.0351813 -0.251425 + -0.0292023 0.0138599 -0.263616 + -0.0378474 -0.0077354 -0.252707 + -0.0108684 -0.00812841 -0.254069 + 0.0388484 0.0122056 -0.0753014 + -0.0127003 0.0388226 -0.0835279 + -0.0395021 -0.00489514 -0.0887492 + faces 28 + 0 1 2 1 50 51 52 2 + 3 4 1 1 53 54 51 2 + 3 5 4 1 55 56 57 2 + 6 7 0 1 58 59 60 2 + 8 9 10 1 61 62 63 2 + 8 10 11 1 61 63 64 2 + 11 10 12 1 64 63 65 2 + 12 10 9 1 65 63 62 2 + 4 6 2 1 66 67 52 2 + 13 14 6 1 68 69 58 2 + 6 0 2 1 67 50 52 2 + 0 15 3 1 60 70 55 2 + 7 8 11 1 59 71 72 2 + 11 12 3 1 72 73 55 2 + 4 13 6 1 74 68 58 2 + 0 3 1 1 50 53 51 2 + 1 4 2 1 75 76 77 2 + 14 9 8 1 69 78 71 2 + 6 14 7 1 58 69 59 2 + 15 7 11 1 70 59 72 2 + 11 3 15 1 72 55 70 2 + 13 5 9 1 68 79 78 2 + 5 13 4 1 79 68 74 2 + 5 12 9 1 79 80 78 2 + 13 9 14 1 68 78 69 2 + 12 5 3 1 73 56 55 2 + 14 8 7 1 69 71 59 2 + 0 7 15 1 60 59 70 2 + tverts 81 + 0.0416201 0.365536 0 + 0.039465 0.365609 0 + 0.0396753 0.362891 0 + 0.040783 0.366687 0 + 0.0377911 0.367185 0 + 0.0373172 0.365651 0 + 0.0378329 0.366524 0 + 0.0392382 0.365864 0 + 0.0394486 0.365093 0 + 0.0374673 0.366061 0 + 0.0405333 0.366345 0 + 0.0405861 0.367017 0 + 0.041201 0.366416 0 + 0.0410031 0.365644 0 + 0.489252 0.992958 0 + 0.49531 0.859954 0 + 0.776393 0.917493 0 + 0.206504 0.931733 0 + 0.703345 0.528129 0 + 0.816592 0.571123 0 + 0.201056 0.566786 0 + 0.952185 0.47429 0 + 0.933502 0.860688 0 + 0.0987463 0.86757 0 + 0.101004 0.649646 0 + 0.500178 0.515783 0 + 0.702557 0.528949 0 + 0.196412 0.474105 0 + 0.0956876 0.491859 0 + 0.192203 0.509617 0 + 0.413195 0.0377081 0 + 0.298085 0.0447981 0 + 0.488736 0.0209943 0 + 0.638415 0.0201429 0 + 0.885311 0.0139353 0 + 0.0911781 0.386185 0 + 0.318301 0.32021 0 + 0.268917 0.524923 0 + 0.44665 0.506775 0 + 0.53226 0.342114 0 + 0.446331 0.284951 0 + 0.656821 0.386529 0 + 0.829847 0.457674 0 + 0.157484 0.505667 0 + 0.195279 0.47416 0 + 0.195395 0.474223 0 + 0.195395 0.474223 0 + 0.0584426 0.03032 0 + 0.949605 0.00792682 0 + 0.964028 0.420712 0 + 0.540403 0.910581 0 + 0.639261 0.988851 0 + 0.273524 0.99403 0 + 0.818857 0.940127 0 + 0.988656 0.973631 0 + 0.818655 0.940208 0 + 0.987444 0.646272 0 + 0.987203 0.972761 0 + 0.307847 0.93944 0 + 0.537145 0.605926 0 + 0.540411 0.90921 0 + 0.152216 0.0926122 0 + 0.183022 0.092366 0 + 0.166603 0.0709773 0 + 0.152132 0.0493724 0 + 0.182844 0.0494121 0 + 0.0140807 0.971362 0 + 0.307651 0.940574 0 + 0.146925 0.64082 0 + 0.326942 0.617916 0 + 0.589782 0.602906 0 + 0.444531 0.035104 0 + 0.684228 0.0298909 0 + 0.986295 0.040729 0 + 0.0136801 0.972217 0 + 0.0796389 0.896324 0 + 0.0698193 0.925089 0 + 0.0627417 0.894112 0 + 0.293168 0.040729 0 + 0.0136801 0.646654 0 + 0.0136801 0.040729 0 +endnode +node trimesh lhand_g + parent lforearm_g + position -0.0254361 0.0213915 -0.256022 + orientation -0.0654438 -0.942688 -0.327196 -4.79716e-006 + wirecolor 0.337255 0.556863 0.882353 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 11 + center -0.415835 0.143735 -5.72897 + bitmap medusae_hands + verts 90 + 0.0233824 0.0347441 -0.0333356 + 0.00634911 0.0304616 -0.0603863 + 0.0233541 0.0392275 -0.0600615 + -0.0129796 0.0327961 -0.0697666 + 0.0032814 0.0309201 -0.0560006 + -0.0183196 0.0167201 -0.0785936 + -0.0134356 0.0298211 -0.0932956 + -0.0227004 -0.00494174 -0.095376 + -0.0151896 -0.00190493 -0.0851996 + -0.0147086 -0.0233429 -0.0788376 + -0.0152046 -0.0401069 -0.0639266 + -0.0159626 -0.0410719 -0.0738076 + -0.0234496 0.0134971 -0.0987796 + -0.0174656 0.0167181 -0.0944296 + 0.0110504 0.0129841 -0.0307946 + 0.00560737 -0.0345579 -0.0286566 + 0.0195984 -0.00720191 -0.000698585 + -0.0256816 0.0271651 -0.0640536 + -0.0418556 0.0177781 -0.0693106 + -0.0241736 0.0131361 -0.0235136 + -0.0468326 -0.00135193 -0.0742076 + -0.0251396 -0.0200919 -0.0230066 + -0.0390626 -0.0200899 -0.0699556 + -0.0231226 -0.0388859 -0.0642426 + -0.00813163 -0.0362219 -0.0253566 + 0.00921235 -0.0257819 -0.000626582 + -0.0150586 0.0332511 -0.0469996 + -0.00480961 0.0337971 -0.0289816 + 0.00721342 0.0439466 -0.0597474 + -0.0242486 -0.0222209 -0.0916836 + -0.0285556 0.0281141 -0.0871266 + -0.0404916 -0.00823293 -0.0919776 + -0.0374296 0.00934106 -0.0985236 + -0.0356856 0.0210691 -0.0908726 + 0.011087 0.0155851 -0.000564607 + -0.0231576 -0.0390299 -0.0713106 + -0.0379956 -0.0191359 -0.0911836 + -0.0329426 -0.0317109 -0.0889916 + -0.0394916 -0.00126493 -0.0967176 + -0.00547964 0.0177641 -0.000471615 + -0.0157436 0.0030331 -0.000417619 + -0.0106746 -0.0233119 -0.000448601 + 0.0323558 0.00908757 -0.0917509 + 0.0197944 0.0112318 -0.103139 + 0.0196729 -0.00216588 -0.103257 + 0.0331009 -0.00127521 -0.0935422 + 0.00209207 -0.00694134 -0.0978238 + -0.000449034 -0.0230507 -0.0972979 + 0.0192572 -0.0204216 -0.0923131 + 0.0208467 -0.00920512 -0.0930311 + 0.0121946 0.0274167 -0.115953 + 0.00268417 0.0157195 -0.116984 + 0.0246287 0.0155064 -0.113995 + 0.0251013 0.0250085 -0.11398 + 0.00162741 0.0110431 -0.106805 + 0.000943261 -0.00444894 -0.10477 + 0.0321766 -0.0191117 -0.0789828 + 0.0328643 -0.00975313 -0.079024 + 0.0197955 0.0347375 -0.0899303 + 0.0122265 0.0287049 -0.082079 + 0.0213567 -0.0326317 -0.0761917 + 0.019096 -0.0263097 -0.0793707 + 0.00217625 -0.0286189 -0.0853945 + 0.00308518 -0.0395239 -0.0894147 + 0.0123544 0.0251829 -0.0955552 + 0.037655 0.00427462 -0.0865086 + 0.0319948 0.0208211 -0.112541 + 0.03776 -0.014254 -0.0738015 + 0.0262055 -0.0284539 -0.0742726 + -0.00690404 0.0289901 -0.108146 + -0.0100071 0.0162531 -0.109803 + 0.0254503 0.00734716 -0.111583 + 0.00581335 0.0267587 -0.125647 + 0.0235069 -0.0167534 -0.10347 + 0.0385159 -0.0141156 -0.0816456 + 0.0255845 -0.000733066 -0.111732 + 0.024431 -0.0110678 -0.10339 + 0.00209846 -0.0373499 -0.101607 + 0.0140046 0.0345184 -0.0879073 + 0.029891 0.0208898 -0.119156 + 0.0378057 0.00401018 -0.0944538 + 0.0265609 -0.030321 -0.0826747 + -0.00432389 0.00648905 -0.115039 + -0.00593932 -0.00272595 -0.117341 + -0.00421434 -0.00960835 -0.110688 + -0.00432663 -0.0185583 -0.108139 + -0.0162817 0.0283671 -0.114871 + -0.0183335 0.0208871 -0.117524 + 0.00230045 0.0207326 -0.128774 + 0.00147906 -0.00334016 0.0141946 + faces 180 + 0 1 2 1 21 22 23 2 + 3 4 5 1 24 178 26 2 + 6 3 5 1 27 24 26 2 + 7 8 9 1 28 29 30 2 + 9 10 11 1 30 31 32 2 + 12 5 8 1 33 26 29 2 + 6 5 13 1 27 26 34 2 + 8 5 14 1 29 26 179 2 + 8 14 9 1 29 179 30 2 + 15 14 16 1 36 179 37 2 + 14 5 4 1 179 26 178 2 + 14 4 1 1 35 25 22 2 + 0 14 1 1 21 35 22 2 + 17 18 19 1 38 39 40 2 + 20 21 19 1 41 42 40 2 + 18 20 19 1 39 41 40 2 + 21 22 23 1 42 43 44 2 + 15 24 23 1 36 45 44 2 + 24 15 25 1 45 36 46 2 + 10 9 14 1 31 30 179 2 + 15 10 14 1 36 31 179 2 + 26 27 28 1 47 48 49 2 + 29 9 22 1 50 30 43 2 + 27 0 2 1 48 21 23 2 + 27 2 28 1 48 23 49 2 + 3 6 30 1 24 27 51 2 + 3 30 17 1 24 51 38 2 + 27 26 19 1 181 180 40 2 + 7 31 8 1 28 52 29 2 + 21 20 22 1 42 41 43 2 + 5 12 32 1 26 33 53 2 + 5 33 13 1 26 54 34 2 + 26 28 1 1 47 49 22 2 + 17 30 18 1 38 51 39 2 + 26 1 4 1 47 22 25 2 + 3 26 4 1 24 180 178 2 + 5 32 18 1 26 53 39 2 + 20 18 32 1 41 39 53 2 + 34 14 0 1 55 179 177 2 + 15 23 10 1 36 44 31 2 + 35 11 10 1 56 32 31 2 + 26 17 19 1 180 38 40 2 + 3 17 26 1 24 38 180 2 + 5 18 33 1 26 39 54 2 + 30 33 18 1 51 54 39 2 + 36 29 22 1 57 50 43 2 + 36 22 20 1 57 43 41 2 + 37 35 22 1 58 56 43 2 + 37 22 9 1 58 43 30 2 + 21 23 24 1 42 44 45 2 + 31 36 20 1 52 57 41 2 + 31 20 8 1 52 41 29 2 + 8 20 38 1 29 41 59 2 + 32 38 20 1 53 59 41 2 + 35 23 22 1 56 44 43 2 + 35 10 23 1 56 31 44 2 + 25 15 16 1 46 36 37 2 + 34 0 27 1 60 177 181 2 + 16 14 34 1 37 179 55 2 + 39 27 19 1 61 181 40 2 + 39 34 27 1 61 60 181 2 + 40 21 41 1 62 42 63 2 + 39 19 40 1 61 40 62 2 + 40 19 21 1 62 40 42 2 + 41 21 24 1 63 42 45 2 + 41 24 25 1 63 45 46 2 + 42 43 44 1 69 70 71 2 + 42 44 45 1 69 71 72 2 + 46 47 48 1 73 74 75 2 + 49 46 48 1 76 73 75 2 + 50 51 52 1 77 78 79 2 + 53 50 52 1 80 77 79 2 + 43 54 55 1 70 81 82 2 + 43 55 44 1 70 82 71 2 + 49 48 56 1 76 75 83 2 + 57 49 56 1 84 76 83 2 + 58 2 1 1 85 86 87 2 + 58 1 59 1 85 87 88 2 + 60 61 62 1 89 90 91 2 + 60 62 63 1 89 91 92 2 + 7 9 29 1 93 182 95 2 + 64 58 59 1 96 85 88 2 + 62 9 11 1 91 94 97 2 + 65 42 45 1 98 69 72 2 + 66 53 52 1 99 80 79 2 + 8 7 12 1 100 101 102 2 + 67 57 56 1 103 84 83 2 + 68 61 60 1 104 90 89 2 + 12 7 55 1 102 101 82 2 + 54 12 55 1 81 102 82 2 + 7 29 47 1 93 95 74 2 + 46 7 47 1 73 93 74 2 + 11 63 62 1 97 92 91 2 + 69 6 13 1 105 106 107 2 + 69 13 70 1 105 107 108 2 + 51 50 69 1 78 77 105 2 + 51 69 70 1 78 105 108 2 + 42 71 43 1 109 110 111 2 + 53 72 50 1 112 113 114 2 + 73 74 56 1 115 116 117 2 + 56 48 73 1 117 118 115 2 + 44 55 75 1 119 120 121 2 + 71 54 43 1 110 122 111 2 + 57 76 49 1 123 124 125 2 + 60 63 77 1 126 127 128 2 + 78 64 59 1 129 130 131 2 + 28 2 58 1 132 133 134 2 + 66 79 53 1 135 136 112 2 + 52 79 66 1 137 136 135 2 + 80 42 65 1 138 109 139 2 + 74 57 67 1 116 123 140 2 + 67 56 74 1 140 117 116 2 + 68 60 81 1 141 126 142 2 + 82 32 12 1 143 144 145 2 + 82 12 54 1 143 145 122 2 + 7 38 83 1 146 147 148 2 + 55 7 83 1 120 146 148 2 + 84 31 7 1 149 150 151 2 + 31 84 85 1 150 149 152 2 + 47 29 36 1 153 154 155 2 + 9 62 47 1 156 157 158 2 + 9 47 37 1 156 158 159 2 + 77 35 37 1 128 160 159 2 + 35 77 63 1 160 128 127 2 + 63 11 35 1 127 161 160 2 + 86 30 6 1 162 163 164 2 + 86 6 69 1 162 164 165 2 + 13 33 87 1 166 167 168 2 + 70 13 87 1 169 166 168 2 + 64 78 58 1 130 129 134 2 + 38 32 82 1 147 144 143 2 + 86 69 50 1 162 165 114 2 + 38 7 8 1 147 146 170 2 + 85 36 31 1 152 155 150 2 + 51 70 87 1 171 169 168 2 + 52 51 88 1 137 171 172 2 + 73 48 47 1 115 118 153 2 + 36 85 47 1 155 152 153 2 + 1 78 59 1 173 129 131 2 + 61 47 62 1 174 158 157 2 + 68 81 61 1 141 142 174 2 + 44 75 45 1 119 121 175 2 + 65 45 80 1 139 175 138 2 + 42 80 71 1 109 138 110 2 + 82 83 38 1 143 148 147 2 + 87 33 30 1 168 167 163 2 + 46 49 76 1 176 125 124 2 + 84 7 46 1 149 151 176 2 + 61 81 47 1 174 142 158 2 + 77 37 47 1 128 159 158 2 + 53 79 72 1 112 136 113 2 + 86 87 30 1 162 168 163 2 + 84 76 73 1 149 124 115 2 + 76 84 46 1 124 149 176 2 + 80 75 71 1 138 121 110 2 + 75 80 45 1 121 138 175 2 + 52 88 79 1 137 172 136 2 + 79 88 72 1 136 172 113 2 + 77 81 60 1 128 142 126 2 + 81 77 47 1 142 128 158 2 + 28 58 78 1 132 134 129 2 + 1 28 78 1 173 132 129 2 + 75 83 82 1 121 148 143 2 + 55 83 75 1 120 148 121 2 + 72 86 50 1 113 162 114 2 + 86 72 88 1 162 113 172 2 + 74 73 76 1 116 115 124 2 + 74 76 57 1 116 124 123 2 + 73 47 85 1 115 153 152 2 + 73 85 84 1 115 152 149 2 + 71 75 82 1 110 121 143 2 + 71 82 54 1 110 143 122 2 + 87 88 51 1 168 172 171 2 + 88 87 86 1 172 168 162 2 + 25 16 89 0 64 67 184 2 + 16 34 89 0 67 68 184 2 + 34 39 89 0 68 65 184 2 + 40 41 89 0 66 183 184 2 + 39 40 89 0 65 66 184 2 + 41 25 89 0 183 64 184 2 + tverts 185 + 0.248053 0.483334 0 + 0.0293599 0.0471002 0 + 0.0126962 0.980441 0 + 0.449229 0.982624 0 + 0.507964 0.676089 0 + 0.511248 0.679577 0 + 0.508035 0.679569 0 + 0.508492 0.683039 0 + 0.505431 0.679282 0 + 0.447873 0.059173 0 + 0.989459 0.309815 0 + 0.496523 0.301046 0 + 0.989753 0.992847 0 + 0.49818 0.978723 0 + 0.996448 0.501917 0 + 0.989459 0.798836 0 + 0.489603 0.784443 0 + 0.492772 0.52266 0 + 0.986926 0.0136573 0 + 0.495528 0.00869365 0 + 0.986926 0.0136573 0 + 1.95549 0.420141 0 + 1.8651 0.0741138 0 + 1.94619 0.0553008 0 + 0.771874 0.340816 0 + 1.82243 0.230375 0 + 0.610416 0.251277 0 + 0.770467 0.118817 0 + 0.38299 0.090721 0 + 0.421832 0.181631 0 + 0.198923 0.232982 0 + 0.0204562 0.36669 0 + 0.0146745 0.273267 0 + 0.59665 0.0603402 0 + 0.629584 0.102649 0 + 1.80826 0.602948 0 + 0.0626925 0.701027 0 + 0.332272 0.975222 0 + 0.711625 0.392369 0 + 0.617393 0.33911 0 + 0.559693 0.768501 0 + 0.422914 0.285359 0 + 0.208945 0.760004 0 + 0.228628 0.317916 0 + 0.03313 0.364205 0 + 0.0442144 0.731432 0 + 0.131795 0.968107 0 + 1.88121 0.299822 0 + 1.96876 0.468839 0 + 1.98284 0.0149359 0 + 0.20835 0.112173 0 + 0.749466 0.176194 0 + 0.359377 0.11527 0 + 0.551706 0.0609998 0 + 0.675035 0.137967 0 + 0.576558 0.985984 0 + 0.0346125 0.297593 0 + 0.241421 0.118175 0 + 0.104843 0.133542 0 + 0.43653 0.0735645 0 + 0.581025 0.986155 0 + 0.601517 0.987834 0 + 0.442571 0.982158 0 + 0.158367 0.970823 0 + 0.111269 -0.0141025 0 + 0.604502 -0.0199266 0 + 0.480935 -0.026133 0 + 0.355556 -0.0197569 0 + 0.601467 -0.0251248 0 + -0.106602 0.0825062 0 + -0.0848582 0.213841 0 + -0.240698 0.211362 0 + -0.212058 0.0794352 0 + -0.0646188 0.468593 0 + -0.232614 0.484707 0 + -0.249832 0.255661 0 + -0.0928865 0.236272 0 + -0.135037 0.248645 0 + -0.255986 0.282603 0 + -0.249186 0.126819 0 + -0.167528 0.126033 0 + -0.08148 0.410373 0 + -0.254714 0.393034 0 + -0.229961 0.140265 0 + -0.115595 0.12956 0 + -0.0689685 -0.642425 0 + -0.0139282 -0.309629 0 + -0.256581 -0.365461 0 + -0.227516 -0.55711 0 + -0.258828 0.201613 0 + -0.118466 0.183703 0 + -0.134887 0.339078 0 + -0.280988 0.342488 0 + -0.0398903 0.608682 0 + -0.00736971 0.639508 0 + -0.246693 0.626417 0 + -0.204655 -0.992826 0 + -0.252639 0.61877 0 + -0.155713 0.0189718 0 + -0.223476 0.040877 0 + -0.236437 0.797236 0 + -0.252605 0.598116 0 + -0.0887274 0.580085 0 + -0.172076 0.0335987 0 + -0.182515 0.03721 0 + -0.10354 0.375003 0 + -0.130561 0.577748 0 + -0.27029 0.524839 0 + -0.254762 0.364834 0 + -0.0708521 0.159075 0 + -0.0807638 0.220949 0 + -0.0472034 0.247883 0 + -0.133498 0.226515 0 + -0.143768 0.336439 0 + -0.0885523 0.373905 0 + -0.16266 0.187259 0 + -0.146475 0.0822557 0 + -0.19492 0.11435 0 + -0.197094 0.204638 0 + -0.25316 0.266403 0 + -0.265135 0.452101 0 + -0.216352 0.217961 0 + -0.0410156 0.448592 0 + -0.0834378 0.107167 0 + -0.105442 0.191499 0 + -0.0713313 0.200932 0 + -0.219896 0.149543 0 + -0.237237 0.313845 0 + -0.205986 0.240881 0 + -0.159438 -0.625291 0 + -0.201087 -0.981995 0 + -0.257386 -0.618468 0 + -0.105672 -0.316762 0 + -0.0133975 -0.324866 0 + -0.114467 -0.709571 0 + -0.238896 0.0447939 0 + -0.192311 0.200665 0 + -0.284862 0.211172 0 + -0.145706 0.123923 0 + -0.148993 0.0253764 0 + -0.13703 0.00587281 0 + -0.153397 0.0174705 0 + -0.195832 0.0881055 0 + -0.0923286 0.399498 0 + -0.0893233 0.587193 0 + -0.0461585 0.622015 0 + -0.282799 0.750067 0 + -0.222281 0.597454 0 + -0.225709 0.387742 0 + -0.0898082 0.439137 0 + -0.0562149 0.699822 0 + -0.00550392 0.705675 0 + -0.2544 0.456375 0 + -0.296879 0.468132 0 + -0.276983 0.681002 0 + -0.228177 0.693529 0 + -0.0902113 0.538075 0 + -0.105877 0.223318 0 + -0.146924 0.247778 0 + -0.109485 0.528742 0 + -0.14951 0.549656 0 + -0.221479 0.54776 0 + -0.0989029 0.440894 0 + -0.0870897 0.680407 0 + -0.0247402 0.674151 0 + -0.0220147 0.477543 0 + -0.244657 0.589199 0 + -0.191098 0.603626 0 + -0.215902 0.455082 0 + -0.273819 0.509664 0 + -0.258548 0.802082 0 + -0.2811 0.385067 0 + -0.22049 0.327515 0 + -0.28344 -0.360028 0 + -0.118678 0.0834135 0 + -0.229004 0.159053 0 + -0.0519354 0.46247 0 + 0.776632 0.684645 0 + 0.746834 0.469692 0 + 0.552014 0.699885 0 + 0.767014 0.55538 0 + 0.765077 0.725266 0 + -0.213942 0.733982 0 + 0.108342 -0.0224981 0 + 0.354946 -0.306106 0 +endnode +node dummy lhand + parent lhand_g + position -0.008093 0.00280999 -0.0561281 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.694118 0.101961 0.345098 +endnode +node dummy lforearm + parent lforearm_g + position -0.0301827 -2.29035e-007 -0.187034 + orientation 1.50038e-006 -1.0 -5.04775e-005 -0.069811 + wirecolor 0.694118 0.101961 0.345098 +endnode +node trimesh bodypelvis_g + parent rootdummy + position 0.00777529 0.0040322 -0.0728656 + orientation 0.666275 -0.0802573 0.741374 -0.089407 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 4 + center -0.1717 -3.45752 -11.1087 + bitmap medusae_tail + verts 45 + -0.0663076 0.0590313 0.0320647 + -0.103791 -0.00574668 0.0305367 + -0.0508838 -0.00921668 0.0803527 + -0.00175552 0.0348463 0.0783727 + -0.001719 0.0580574 -0.249533 + -0.001719 -0.0108085 -0.291696 + -0.146612 0.0136264 -0.253328 + -0.122007 0.0662452 -0.177525 + -0.172757 0.00532273 -0.168483 + -0.0900574 -0.052183 -0.302527 + -0.15757 -0.046616 -0.265279 + -0.00174604 -0.100326 -0.01015 + -0.00175552 -0.0535227 0.0634867 + -0.0622008 -0.0744197 0.0300347 + -0.104933 -0.144454 -0.0993035 + -0.0362912 -0.15499 -0.106664 + -0.168359 -0.0838544 -0.171335 + -0.116508 -0.15443 -0.173405 + -0.0466305 -0.167804 -0.200146 + -0.00173739 -0.138843 -0.107546 + -0.132872 -0.120757 -0.25742 + -0.00171758 -0.13303 -0.213821 + -0.16713 -0.0419215 -0.119936 + -0.125746 0.0643618 -0.0580483 + 0.0586898 -0.0744197 0.0300347 + 0.0458709 0.0923587 -0.099559 + -0.0493457 0.0923587 -0.099559 + 0.122308 0.0643618 -0.0580483 + 0.118574 0.0662452 -0.177525 + 0.0627965 0.0590313 0.0320647 + 0.100288 -0.00574668 0.0305367 + 0.0473727 -0.00921668 0.0803527 + 0.143174 0.0136265 -0.253328 + 0.169323 0.00532273 -0.168483 + 0.0866194 -0.052183 -0.302526 + 0.154337 -0.046616 -0.265279 + 0.101458 -0.144454 -0.0993035 + 0.0328174 -0.15499 -0.106664 + 0.128479 -0.120757 -0.25742 + 0.165112 -0.0838544 -0.171334 + 0.113074 -0.15443 -0.173405 + 0.0431954 -0.167804 -0.200146 + 0.163843 -0.0419215 -0.119936 + -0.00370677 0.070001 0.0175236 + -0.00387035 0.0986535 -0.12857 + faces 86 + 0 1 2 1 154 155 157 1 + 0 2 3 1 154 157 158 1 + 4 5 6 1 160 161 164 1 + 4 6 7 1 160 164 167 1 + 7 6 8 1 167 164 156 1 + 5 9 6 1 161 174 164 1 + 6 9 10 1 164 174 166 1 + 6 10 8 1 164 166 156 1 + 11 12 13 1 168 169 171 1 + 13 14 15 1 171 172 173 1 + 14 16 17 1 172 170 175 1 + 12 2 13 1 169 159 171 1 + 13 2 1 1 171 159 155 1 + 15 18 19 1 173 177 178 1 + 20 9 18 1 179 165 177 1 + 18 9 21 1 177 165 181 1 + 20 16 10 1 179 170 166 1 + 20 10 9 1 179 166 165 1 + 21 9 5 1 181 165 163 1 + 11 15 19 1 168 173 178 1 + 18 15 14 1 177 173 172 1 + 19 18 21 1 178 177 181 1 + 14 22 16 1 172 176 170 1 + 10 16 8 1 166 170 156 1 + 18 17 20 1 177 175 179 1 + 1 0 23 1 155 154 180 1 + 22 23 8 1 176 180 156 1 + 8 23 7 1 156 180 167 1 + 13 22 14 1 171 176 172 1 + 24 12 11 1 185 169 168 1 + 11 13 15 1 168 171 173 1 + 26 4 7 1 183 160 167 1 + 26 7 23 1 183 167 180 1 + 23 0 26 1 180 154 183 1 + 22 1 23 1 176 155 180 1 + 27 28 25 1 184 187 182 1 + 30 29 31 1 155 194 195 1 + 31 29 3 1 195 194 158 1 + 5 4 32 1 161 160 196 1 + 32 4 28 1 196 160 187 1 + 32 28 33 1 196 187 156 1 + 34 5 32 1 197 161 196 1 + 34 32 35 1 197 196 166 1 + 35 32 33 1 166 196 156 1 + 36 24 37 1 189 185 190 1 + 38 39 40 1 191 170 192 1 + 31 12 24 1 186 169 185 1 + 31 24 30 1 186 185 155 1 + 36 37 41 1 189 190 193 1 + 21 38 41 1 181 191 193 1 + 34 38 21 1 188 191 181 1 + 33 39 35 1 156 170 166 1 + 35 38 34 1 166 191 188 1 + 34 21 5 1 188 181 163 1 + 37 11 19 1 190 168 178 1 + 40 36 41 1 192 189 193 1 + 41 19 21 1 193 178 181 1 + 30 24 36 1 155 185 189 1 + 19 41 37 1 178 193 190 1 + 29 30 27 1 194 155 184 1 + 36 39 42 1 189 170 176 1 + 27 33 28 1 184 156 187 1 + 42 30 36 1 176 155 189 1 + 24 11 37 1 185 168 190 1 + 4 25 28 1 160 182 187 1 + 29 27 25 1 194 184 182 1 + 42 33 27 1 176 156 184 1 + 35 39 38 1 166 170 191 1 + 40 39 36 1 192 170 189 1 + 38 40 41 1 191 192 193 1 + 17 16 20 1 175 170 179 1 + 18 14 17 1 177 172 175 1 + 16 22 8 1 170 176 156 1 + 13 1 22 1 171 155 176 1 + 42 39 33 1 176 170 156 1 + 30 42 27 1 155 176 184 1 + 12 31 3 1 169 186 162 1 + 12 3 2 1 169 162 159 1 + 3 43 0 1 158 198 154 1 + 3 29 43 1 158 194 198 1 + 43 44 26 1 198 199 183 1 + 43 25 44 1 198 182 199 1 + 43 26 0 1 198 183 154 1 + 43 29 25 1 198 194 182 1 + 44 4 26 1 199 160 183 1 + 25 4 44 1 182 160 199 1 + tverts 200 + 0.341772 0.896212 0 + 0.571324 0.882679 0 + 0.556289 0.961219 0 + 0.00643584 0.899497 0 + 0.0469013 0.961219 0 + 0.167244 0.954985 0 + 0.111137 0.0861071 0 + 0.13053 0.0422587 0 + 0.48283 0.0425741 0 + 0.342221 0.0888783 0 + 0.576579 0.112342 0 + 0.363958 0.0402135 0 + 0.568985 0.0390337 0 + 0.974591 0.778564 0 + 0.971907 0.994022 0 + 0.82002 0.907989 0 + 0.74407 0.382273 0 + 0.913296 0.437388 0 + 0.57635 0.112424 0 + 0.718212 0.127681 0 + 0.558582 0.98918 0 + 0.570704 0.882027 0 + 0.885195 0.105072 0 + 0.974634 0.4202 0 + 0.696792 0.052781 0 + 0.76878 0.0273034 0 + 0.974634 0.10624 0 + 0.56891 0.0384987 0 + 0.974634 0.019581 0 + 0.576157 0.266314 0 + 0.576353 0.112161 0 + 0.394109 0.44174 0 + 0.575087 0.264891 0 + 0.821203 0.911471 0 + 0.218541 0.417605 0 + 0.108237 0.0861071 0 + 0.0113534 0.417605 0 + 0.221441 0.417605 0 + 0.391209 0.44174 0 + 0.340903 0.0888783 0 + 0.338789 0.896212 0 + 0.570614 0.882679 0 + 0.550622 0.987499 0 + 0.12763 0.0422587 0 + 0.47993 0.0425743 0 + 0.576513 0.112342 0 + 0.361058 0.0402137 0 + 0.568271 0.0390337 0 + 0.742484 0.382273 0 + 0.91171 0.437388 0 + 0.69723 0.052781 0 + 0.576304 0.112424 0 + 0.718825 0.126084 0 + 0.557081 0.98918 0 + 0.570342 0.882027 0 + 0.883609 0.105072 0 + 0.767194 0.0273036 0 + 0.576297 0.112161 0 + 0.568328 0.0384987 0 + 0.575793 0.266314 0 + 0.57464 0.264891 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.106588 0.0918574 0 + 0.10686 0.106161 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 + 0.207396 0.846804 0 + 0.503141 0.81503 0 + 0.462341 0.291887 0 + 0.159296 0.988894 0 + 0.00609102 0.983066 0 + 0.84105 0.993263 0 + 0.00604658 0.145253 0 + 0.00604779 0.0350446 0 + 0.993559 0.987438 0 + 0.993623 0.0394176 0 + 0.38698 0.135337 0 + 0.76243 0.0111047 0 + 0.499983 0.00617779 0 + 0.352492 0.269465 0 + 0.993562 0.721007 0 + 0.99356 0.943635 0 + 0.554132 0.29078 0 + 0.80592 0.845198 0 + 0.697993 0.478286 0 + 0.894632 0.45905 0 + 0.238296 0.00673668 0 + 0.664513 0.284597 0 + 0.504342 0.427225 0 + 0.86655 0.214705 0 + 0.993618 0.456744 0 + 0.650378 0.129006 0 + 0.332116 0.581754 0 + 0.993621 0.178963 0 + 0.140997 0.473247 0 + 0.143049 0.473251 0 + 0.330066 0.581747 0 + 0.801605 0.845202 0 + 0.836739 0.993266 0 + 0.350437 0.269458 0 + 0.757991 0.0111127 0 + 0.693564 0.478292 0 + 0.890199 0.459052 0 + 0.64844 0.129014 0 + 0.66008 0.284604 0 + 0.862115 0.214708 0 + 0.205245 0.8468 0 + 0.157147 0.988891 0 + 0.38492 0.135329 0 + 0.236233 0.00673476 0 + 0.0121778 0.804014 0 + 0.0121821 0.397419 0 +endnode +node trimesh tail01 + parent bodypelvis_g + position -0.0032624 -0.00456664 -0.189965 + orientation -0.995757 -0.0679482 0.0620601 -0.503255 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 4 + center 0.1425 -0.1716 -19.0676 + bitmap medusae_tail + verts 29 + 0.0014251 -0.018028 0.104175 + -0.103271 -0.073645 0.0927976 + 0.00142519 -0.0651291 0.092224 + -0.146464 0.0389031 0.0114322 + -0.0812746 0.0899893 0.0377322 + 0.00142517 0.0425756 0.0833196 + 0.00142511 -0.108425 0.0133758 + -0.0947637 -0.129641 0.0246854 + -0.114283 0.0441887 -0.438401 + -0.0619364 -0.0262586 -0.45503 + -0.102866 -0.0202937 -0.379954 + -0.0602239 0.124237 -0.206857 + -0.0624217 0.123487 -0.422924 + -0.111276 0.110367 -0.199916 + 0.00142511 0.126209 -0.424955 + -0.163778 0.0394972 -0.0700568 + 0.106121 -0.0642037 0.0890934 + 0.149314 0.0389031 0.0114322 + 0.0841248 0.0899892 0.0377322 + 0.0976139 -0.12886 0.0247278 + 0.0647866 -0.0262586 -0.45503 + 0.117134 0.0441887 -0.438401 + 0.105717 -0.0202936 -0.379954 + 0.0652719 0.123487 -0.422924 + 0.0630741 0.124237 -0.206857 + 0.114126 0.110367 -0.199916 + 0.166628 0.0394972 -0.0700568 + 0.0014251 -0.0272039 -0.45408 + 0.00142511 0.0569196 -0.485528 + faces 58 + 0 1 2 1 0 1 2 0 + 3 1 0 1 3 1 0 0 + 3 0 4 1 3 0 4 0 + 4 0 5 1 4 0 5 0 + 5 0 2 1 5 0 2 0 + 5 2 6 1 5 2 6 0 + 6 2 7 1 7 8 9 0 + 7 2 1 1 9 8 1 0 + 8 9 10 1 10 11 12 0 + 11 12 13 1 13 14 15 0 + 12 8 13 1 14 10 15 0 + 14 12 5 1 16 14 17 0 + 10 6 7 1 12 18 19 0 + 8 10 15 1 10 12 20 0 + 15 7 3 1 20 19 21 0 + 5 11 4 1 17 13 27 0 + 7 1 3 1 9 1 3 0 + 9 6 10 1 28 18 12 0 + 9 27 6 1 29 30 31 0 + 10 7 15 1 12 19 20 0 + 15 3 13 1 20 21 15 0 + 8 15 13 1 10 20 15 0 + 12 11 5 1 14 13 17 0 + 4 13 3 1 27 15 21 0 + 11 13 4 1 13 15 27 0 + 16 0 2 1 32 33 34 0 + 16 17 0 1 32 35 33 0 + 0 17 18 1 33 35 36 0 + 0 18 5 1 33 36 37 0 + 0 5 2 1 33 37 34 0 + 2 5 6 1 34 37 38 0 + 2 6 19 1 39 40 41 0 + 2 19 16 1 39 41 32 0 + 20 21 22 1 42 43 44 0 + 23 24 25 1 45 46 47 0 + 21 23 25 1 43 45 47 0 + 23 14 5 1 45 48 49 0 + 6 22 19 1 50 44 51 0 + 22 21 26 1 44 43 52 0 + 19 26 17 1 51 52 53 0 + 24 5 18 1 46 49 59 0 + 16 19 17 1 32 41 35 0 + 6 20 22 1 50 60 44 0 + 27 20 6 1 61 62 63 0 + 19 22 26 1 51 44 52 0 + 17 26 25 1 53 52 47 0 + 26 21 25 1 52 43 47 0 + 24 23 5 1 46 45 49 0 + 25 18 17 1 47 59 53 0 + 25 24 18 1 47 46 59 0 + 9 8 28 1 11 10 68 0 + 8 12 28 1 10 14 70 0 + 12 14 28 1 14 16 71 0 + 27 9 28 1 30 29 72 0 + 21 20 28 1 43 42 74 0 + 23 21 28 1 45 43 75 0 + 14 23 28 1 48 45 76 0 + 20 27 28 1 62 61 78 0 + tverts 142 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.10686 0.106161 0 + 0.106588 0.0918574 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.106588 0.0918574 0 + 0.10686 0.106161 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.980235 0.0351188 0 +endnode +node trimesh tail02 + parent tail01 + position -0.000183093 0.0465022 -0.382524 + orientation 0.994929 0.0825212 -0.057494 -0.498796 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 4 + center 0.1425 2.54294 -21.8712 + bitmap medusae_tail + verts 26 + 0.00142513 -0.00970634 0.00684745 + -0.114272 0.0378112 -0.0269702 + -0.0811705 0.0788437 -0.024249 + 0.00142517 0.0542706 -0.0213194 + 0.00142512 -0.0616782 -0.0509897 + -0.077233 -0.0525871 -0.0476368 + -0.0963158 0.043253 -0.404463 + -0.0520976 -0.0162552 -0.41851 + -0.0866716 -0.0112165 -0.355092 + -0.050651 0.110871 -0.208873 + -0.0525075 0.110238 -0.391389 + -0.0937757 0.0991551 -0.20301 + 0.00142512 0.112537 -0.393105 + -0.120525 0.0298155 -0.117464 + 0.117122 0.0378112 -0.0269702 + 0.0840207 0.0788436 -0.024249 + 0.0800832 -0.052587 -0.0476368 + 0.0549478 -0.0162552 -0.41851 + 0.0991667 0.043253 -0.404463 + 0.0895225 -0.0112165 -0.355092 + 0.0553577 0.110238 -0.391389 + 0.0535012 0.110871 -0.208873 + 0.0966257 0.0991551 -0.20301 + 0.123375 0.0298155 -0.117464 + 0.00142511 -0.0170537 -0.417707 + 0.00142512 0.054007 -0.444272 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 10 11 12 0 + 9 10 11 1 13 14 15 0 + 10 6 11 1 14 10 15 0 + 12 10 3 1 16 14 17 0 + 8 4 5 1 12 18 19 0 + 6 8 13 1 10 12 20 0 + 13 5 1 1 20 19 21 0 + 3 9 2 1 17 13 27 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 28 18 12 0 + 7 24 4 1 29 30 31 0 + 8 5 13 1 12 19 20 0 + 13 1 11 1 20 21 15 0 + 6 13 11 1 10 20 15 0 + 10 9 3 1 14 13 17 0 + 2 11 1 1 27 15 21 0 + 9 11 2 1 13 15 27 0 + 0 14 15 1 33 35 36 0 + 0 15 3 1 33 36 37 0 + 0 3 4 1 34 37 38 0 + 0 4 16 1 39 40 41 0 + 17 18 19 1 42 43 44 0 + 20 21 22 1 45 46 47 0 + 18 20 22 1 43 45 47 0 + 20 12 3 1 45 48 49 0 + 4 19 16 1 50 44 51 0 + 19 18 23 1 44 43 52 0 + 16 23 14 1 51 52 53 0 + 21 3 15 1 46 49 59 0 + 0 16 14 1 32 41 35 0 + 4 17 19 1 50 60 44 0 + 24 17 4 1 61 62 63 0 + 16 19 23 1 51 44 52 0 + 14 23 22 1 53 52 47 0 + 23 18 22 1 52 43 47 0 + 21 20 3 1 46 45 49 0 + 22 15 14 1 47 59 53 0 + 22 21 15 1 47 46 59 0 + 7 6 25 1 11 10 68 0 + 6 10 25 1 10 14 70 0 + 10 12 25 1 14 16 71 0 + 24 7 25 1 30 29 72 0 + 18 17 25 1 43 42 74 0 + 20 18 25 1 45 43 75 0 + 12 20 25 1 48 45 76 0 + 17 24 25 1 62 61 78 0 + tverts 80 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.10686 0.106161 0 + 0.106588 0.0918574 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.106588 0.0918574 0 + 0.10686 0.106161 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 +endnode +node trimesh tail03 + parent tail02 + position 7.44039e-005 0.070215 -0.328209 + orientation 0.998122 0.00472 -0.06107 -1.32334 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 4 + center 0.1425 2.66148 -21.8817 + bitmap medusae_tail + verts 26 + 0.00142513 -0.00525081 -0.014252 + -0.103503 0.0378439 -0.044922 + -0.0734827 0.0750573 -0.0424541 + 0.00142516 0.0527713 -0.0397972 + 0.00142512 -0.0523853 -0.0667059 + -0.0699117 -0.0441403 -0.063665 + -0.0872183 0.0427793 -0.387279 + -0.0471158 -0.0111901 -0.400018 + -0.0784718 -0.0066204 -0.342503 + -0.0458039 0.104104 -0.209894 + -0.0474876 0.103529 -0.375422 + -0.0849147 0.0934781 -0.204576 + 0.00142512 0.105615 -0.376978 + -0.109174 0.0305924 -0.126993 + 0.106353 0.0378439 -0.044922 + 0.0763329 0.0750572 -0.0424541 + 0.0727619 -0.0441403 -0.063665 + 0.0499661 -0.0111901 -0.400018 + 0.0900692 0.0427793 -0.387279 + 0.0813227 -0.00662032 -0.342503 + 0.0503378 0.103529 -0.375422 + 0.0486541 0.104104 -0.209894 + 0.0877647 0.0934781 -0.204576 + 0.112024 0.0305924 -0.126993 + 0.00142511 -0.0119143 -0.39929 + 0.00142512 0.0525323 -0.423382 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 10 11 12 0 + 9 10 11 1 13 14 15 0 + 10 6 11 1 14 10 15 0 + 12 10 3 1 16 14 17 0 + 8 4 5 1 12 18 19 0 + 6 8 13 1 10 12 20 0 + 13 5 1 1 20 19 21 0 + 3 9 2 1 17 13 27 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 28 18 12 0 + 7 24 4 1 29 30 31 0 + 8 5 13 1 12 19 20 0 + 13 1 11 1 20 21 15 0 + 6 13 11 1 10 20 15 0 + 10 9 3 1 14 13 17 0 + 2 11 1 1 27 15 21 0 + 9 11 2 1 13 15 27 0 + 0 14 15 1 33 35 36 0 + 0 15 3 1 33 36 37 0 + 0 3 4 1 34 37 38 0 + 0 4 16 1 39 40 41 0 + 17 18 19 1 42 43 44 0 + 20 21 22 1 45 46 47 0 + 18 20 22 1 43 45 47 0 + 20 12 3 1 45 48 49 0 + 4 19 16 1 50 44 51 0 + 19 18 23 1 44 43 52 0 + 16 23 14 1 51 52 53 0 + 21 3 15 1 46 49 59 0 + 0 16 14 1 32 41 35 0 + 4 17 19 1 50 60 44 0 + 24 17 4 1 61 62 63 0 + 16 19 23 1 51 44 52 0 + 14 23 22 1 53 52 47 0 + 23 18 22 1 52 43 47 0 + 21 20 3 1 46 45 49 0 + 22 15 14 1 47 59 53 0 + 22 21 15 1 47 46 59 0 + 7 6 25 1 11 10 68 0 + 6 10 25 1 10 14 70 0 + 10 12 25 1 14 16 71 0 + 24 7 25 1 30 29 72 0 + 18 17 25 1 43 42 74 0 + 20 18 25 1 45 43 75 0 + 12 20 25 1 48 45 76 0 + 17 24 25 1 62 61 78 0 + tverts 80 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.10686 0.106161 0 + 0.106588 0.0918574 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.106588 0.0918574 0 + 0.10686 0.106161 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 +endnode +node trimesh tail04 + parent tail03 + position -6.62586e-005 0.0632978 -0.319755 + orientation 0.793736 0.568818 -0.215475 -0.50327 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 4 + center 0.142505 2.7785 -20.494 + bitmap medusae_tail + verts 26 + 0.00142514 -0.000850943 -0.00712578 + -0.092869 0.0378762 -0.0346874 + -0.065891 0.0713181 -0.0324697 + 0.00142516 0.0512908 -0.030082 + 0.00142512 -0.0432085 -0.0542636 + -0.0626819 -0.0357991 -0.0515309 + -0.0782345 0.0423114 -0.370309 + -0.0421963 -0.00618832 -0.381758 + -0.0703744 -0.00208176 -0.330071 + -0.0410173 0.0974209 -0.210902 + -0.0425304 0.0969046 -0.359654 + -0.0761643 0.087872 -0.206123 + 0.00142512 0.0987785 -0.361052 + -0.0979649 0.0313597 -0.108441 + 0.0957191 0.0378762 -0.0346874 + 0.0687412 0.0713181 -0.0324697 + 0.0655321 -0.035799 -0.0515309 + 0.0450465 -0.00618832 -0.381758 + 0.0810853 0.0423114 -0.370309 + 0.0732252 -0.00208169 -0.330071 + 0.0453807 0.0969046 -0.359654 + 0.0438676 0.0974209 -0.210902 + 0.0790144 0.087872 -0.206123 + 0.100815 0.0313597 -0.108441 + 0.00142511 -0.00683911 -0.381104 + 0.00142512 0.051076 -0.402754 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 10 11 12 0 + 9 10 11 1 13 14 15 0 + 10 6 11 1 14 10 15 0 + 12 10 3 1 16 14 17 0 + 8 4 5 1 12 18 19 0 + 6 8 13 1 10 12 20 0 + 13 5 1 1 20 19 21 0 + 3 9 2 1 17 13 27 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 28 18 12 0 + 7 24 4 1 29 30 31 0 + 8 5 13 1 12 19 20 0 + 13 1 11 1 20 21 15 0 + 6 13 11 1 10 20 15 0 + 10 9 3 1 14 13 17 0 + 2 11 1 1 27 15 21 0 + 9 11 2 1 13 15 27 0 + 0 14 15 1 33 35 36 0 + 0 15 3 1 33 36 37 0 + 0 3 4 1 34 37 38 0 + 0 4 16 1 39 40 41 0 + 17 18 19 1 42 43 44 0 + 20 21 22 1 45 46 47 0 + 18 20 22 1 43 45 47 0 + 20 12 3 1 45 48 49 0 + 4 19 16 1 50 44 51 0 + 19 18 23 1 44 43 52 0 + 16 23 14 1 51 52 53 0 + 21 3 15 1 46 49 59 0 + 0 16 14 1 32 41 35 0 + 4 17 19 1 50 60 44 0 + 24 17 4 1 61 62 63 0 + 16 19 23 1 51 44 52 0 + 14 23 22 1 53 52 47 0 + 23 18 22 1 52 43 47 0 + 21 20 3 1 46 45 49 0 + 22 15 14 1 47 59 53 0 + 22 21 15 1 47 46 59 0 + 7 6 25 1 11 10 68 0 + 6 10 25 1 10 14 70 0 + 10 12 25 1 14 16 71 0 + 24 7 25 1 30 29 72 0 + 18 17 25 1 43 42 74 0 + 20 18 25 1 45 43 75 0 + 12 20 25 1 48 45 76 0 + 17 24 25 1 62 61 78 0 + tverts 80 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.10686 0.106161 0 + 0.106588 0.0918574 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.106588 0.0918574 0 + 0.10686 0.106161 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 +endnode +node trimesh tail05 + parent tail04 + position 4.18894e-005 0.0361567 -0.315607 + orientation 0.0337211 0.99716 0.0673451 -0.328482 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 4 + center 0.1979 2.20189 -17.9319 + bitmap medusae_tail + verts 26 + 0.00197909 -0.00500508 -0.00583437 + -0.0870072 0.0315421 -0.0318445 + -0.0615477 0.0631015 -0.0297516 + 0.00197911 0.0442016 -0.0274983 + 0.00197907 -0.0449783 -0.0503188 + -0.0585193 -0.037986 -0.0477399 + -0.0731965 0.0357276 -0.322186 + -0.0391869 -0.0100421 -0.33299 + -0.0657789 -0.00616664 -0.284213 + -0.0380743 0.087735 -0.171752 + -0.0395022 0.0872477 -0.312131 + -0.0712428 0.0787236 -0.167242 + 0.00197907 0.0890162 -0.31345 + -0.0918162 0.0253924 -0.101446 + 0.0909652 0.0315421 -0.0318446 + 0.0655059 0.0631015 -0.0297516 + 0.0624774 -0.037986 -0.0477399 + 0.043145 -0.010042 -0.33299 + 0.0771551 0.0357276 -0.322186 + 0.0697375 -0.00616659 -0.284213 + 0.0434603 0.0872477 -0.312131 + 0.0420324 0.087735 -0.171752 + 0.0752008 0.0787236 -0.167242 + 0.0957742 0.0253924 -0.101446 + 0.00197907 -0.0106562 -0.332373 + 0.00197907 0.0439988 -0.352804 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 10 11 12 0 + 9 10 11 1 13 14 15 0 + 10 6 11 1 14 10 15 0 + 12 10 3 1 16 14 17 0 + 8 4 5 1 12 18 19 0 + 6 8 13 1 10 12 20 0 + 13 5 1 1 20 19 21 0 + 3 9 2 1 17 13 27 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 28 18 12 0 + 7 24 4 1 29 30 31 0 + 8 5 13 1 12 19 20 0 + 13 1 11 1 20 21 15 0 + 6 13 11 1 10 20 15 0 + 10 9 3 1 14 13 17 0 + 2 11 1 1 27 15 21 0 + 9 11 2 1 13 15 27 0 + 0 14 15 1 33 35 36 0 + 0 15 3 1 33 36 37 0 + 0 3 4 1 34 37 38 0 + 0 4 16 1 39 40 41 0 + 17 18 19 1 42 43 44 0 + 20 21 22 1 45 46 47 0 + 18 20 22 1 43 45 47 0 + 20 12 3 1 45 48 49 0 + 4 19 16 1 50 44 51 0 + 19 18 23 1 44 43 52 0 + 16 23 14 1 51 52 53 0 + 21 3 15 1 46 49 59 0 + 0 16 14 1 32 41 35 0 + 4 17 19 1 50 60 44 0 + 24 17 4 1 61 62 63 0 + 16 19 23 1 51 44 52 0 + 14 23 22 1 53 52 47 0 + 23 18 22 1 52 43 47 0 + 21 20 3 1 46 45 49 0 + 22 15 14 1 47 59 53 0 + 22 21 15 1 47 46 59 0 + 7 6 25 1 11 10 68 0 + 6 10 25 1 10 14 70 0 + 10 12 25 1 14 16 71 0 + 24 7 25 1 30 29 72 0 + 18 17 25 1 43 42 74 0 + 20 18 25 1 45 43 75 0 + 12 20 25 1 48 45 76 0 + 17 24 25 1 62 61 78 0 + tverts 80 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.10686 0.106161 0 + 0.106588 0.0918574 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.106588 0.0918574 0 + 0.10686 0.106161 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 +endnode +node trimesh tail06 + parent tail05 + position -0.000681226 0.0299974 -0.261938 + orientation -0.975175 -0.208648 -0.0741645 -0.0281638 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 4 + center 0.42191 2.23819 -17.7373 + bitmap medusae_tail + verts 26 + 0.00421919 -0.00393548 -0.0084245 + -0.0824402 0.031656 -0.0337546 + -0.0576465 0.0623902 -0.0317164 + 0.00421922 0.0439845 -0.029522 + 0.00421918 -0.0428634 -0.0517456 + -0.0546972 -0.036054 -0.0492342 + -0.0689906 0.0357321 -0.316504 + -0.0358704 -0.00884068 -0.327025 + -0.061767 -0.00506662 -0.279524 + -0.0347868 0.0863796 -0.170003 + -0.0361774 0.085905 -0.306711 + -0.0670881 0.0776039 -0.165612 + 0.00421918 0.0876273 -0.307996 + -0.0871235 0.0256671 -0.101536 + 0.0908784 0.031656 -0.0337546 + 0.0660848 0.0623902 -0.0317164 + 0.0631356 -0.0360539 -0.0492342 + 0.0443087 -0.00884068 -0.327025 + 0.0774295 0.0357321 -0.316504 + 0.0702058 -0.00506656 -0.279524 + 0.0446157 0.085905 -0.306711 + 0.0432252 0.0863796 -0.170003 + 0.0755263 0.0776039 -0.165612 + 0.0955617 0.0256671 -0.101536 + 0.00421917 -0.00943878 -0.326424 + 0.00421918 0.0437871 -0.346322 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 10 11 12 0 + 9 10 11 1 13 14 15 0 + 10 6 11 1 14 10 15 0 + 12 10 3 1 16 14 17 0 + 8 4 5 1 12 18 19 0 + 6 8 13 1 10 12 20 0 + 13 5 1 1 20 19 21 0 + 3 9 2 1 17 13 27 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 28 18 12 0 + 7 24 4 1 29 30 31 0 + 8 5 13 1 12 19 20 0 + 13 1 11 1 20 21 15 0 + 6 13 11 1 10 20 15 0 + 10 9 3 1 14 13 17 0 + 2 11 1 1 27 15 21 0 + 9 11 2 1 13 15 27 0 + 0 14 15 1 33 35 36 0 + 0 15 3 1 33 36 37 0 + 0 3 4 1 34 37 38 0 + 0 4 16 1 39 40 41 0 + 17 18 19 1 42 43 44 0 + 20 21 22 1 45 46 47 0 + 18 20 22 1 43 45 47 0 + 20 12 3 1 45 48 49 0 + 4 19 16 1 50 44 51 0 + 19 18 23 1 44 43 52 0 + 16 23 14 1 51 52 53 0 + 21 3 15 1 46 49 59 0 + 0 16 14 1 32 41 35 0 + 4 17 19 1 50 60 44 0 + 24 17 4 1 61 62 63 0 + 16 19 23 1 51 44 52 0 + 14 23 22 1 53 52 47 0 + 23 18 22 1 52 43 47 0 + 21 20 3 1 46 45 49 0 + 22 15 14 1 47 59 53 0 + 22 21 15 1 47 46 59 0 + 7 6 25 1 11 10 68 0 + 6 10 25 1 10 14 70 0 + 10 12 25 1 14 16 71 0 + 24 7 25 1 30 29 72 0 + 18 17 25 1 43 42 74 0 + 20 18 25 1 45 43 75 0 + 12 20 25 1 48 45 76 0 + 17 24 25 1 62 61 78 0 + tverts 80 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.10686 0.106161 0 + 0.106588 0.0918574 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.106588 0.0918574 0 + 0.10686 0.106161 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 +endnode +node trimesh tail07 + parent tail06 + position -0.000272853 0.0255054 -0.259028 + orientation -0.193724 -0.979189 0.0605036 -0.277385 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 4 + center 0.14585 2.98999 -17.5283 + bitmap medusae_tail + verts 26 + 0.00145862 0.00400781 -0.00906514 + -0.0838002 0.0390241 -0.0339858 + -0.0594072 0.0692616 -0.0319806 + 0.00145865 0.0511533 -0.0298217 + 0.00145861 -0.034291 -0.0516862 + -0.0565057 -0.0275916 -0.0492153 + -0.070568 0.0430343 -0.312166 + -0.037983 -0.000818137 -0.322517 + -0.0634611 0.00289494 -0.275783 + -0.036917 0.0928632 -0.168033 + -0.0382851 0.0923964 -0.302531 + -0.0686962 0.0842294 -0.163712 + 0.00145861 0.0940908 -0.303796 + -0.0884079 0.033132 -0.100672 + 0.0867173 0.0390241 -0.0339858 + 0.0623245 0.0692616 -0.0319806 + 0.0594229 -0.0275916 -0.0492154 + 0.0409002 -0.000818136 -0.322517 + 0.0734857 0.0430343 -0.312166 + 0.0663788 0.00289499 -0.275783 + 0.0412023 0.0923964 -0.302531 + 0.0398342 0.0928632 -0.168033 + 0.0716133 0.0842294 -0.163712 + 0.0913249 0.033132 -0.100672 + 0.0014586 -0.00140657 -0.321925 + 0.00145861 0.0509591 -0.341501 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 10 11 12 0 + 9 10 11 1 13 14 15 0 + 10 6 11 1 14 10 15 0 + 12 10 3 1 16 14 17 0 + 8 4 5 1 12 18 19 0 + 6 8 13 1 10 12 20 0 + 13 5 1 1 20 19 21 0 + 3 9 2 1 17 13 27 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 28 18 12 0 + 7 24 4 1 29 30 31 0 + 8 5 13 1 12 19 20 0 + 13 1 11 1 20 21 15 0 + 6 13 11 1 10 20 15 0 + 10 9 3 1 14 13 17 0 + 2 11 1 1 27 15 21 0 + 9 11 2 1 13 15 27 0 + 0 14 15 1 33 35 36 0 + 0 15 3 1 33 36 37 0 + 0 3 4 1 34 37 38 0 + 0 4 16 1 39 40 41 0 + 17 18 19 1 42 43 44 0 + 20 21 22 1 45 46 47 0 + 18 20 22 1 43 45 47 0 + 20 12 3 1 45 48 49 0 + 4 19 16 1 50 44 51 0 + 19 18 23 1 44 43 52 0 + 16 23 14 1 51 52 53 0 + 21 3 15 1 46 49 59 0 + 0 16 14 1 32 41 35 0 + 4 17 19 1 50 60 44 0 + 24 17 4 1 61 62 63 0 + 16 19 23 1 51 44 52 0 + 14 23 22 1 53 52 47 0 + 23 18 22 1 52 43 47 0 + 21 20 3 1 46 45 49 0 + 22 15 14 1 47 59 53 0 + 22 21 15 1 47 46 59 0 + 7 6 25 1 11 10 68 0 + 6 10 25 1 10 14 70 0 + 10 12 25 1 14 16 71 0 + 24 7 25 1 30 29 72 0 + 18 17 25 1 43 42 74 0 + 20 18 25 1 45 43 75 0 + 12 20 25 1 48 45 76 0 + 17 24 25 1 62 61 78 0 + tverts 80 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.10686 0.106161 0 + 0.106588 0.0918574 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.106588 0.0918574 0 + 0.10686 0.106161 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 +endnode +node trimesh tail08 + parent tail07 + position 0.00239596 0.0473134 -0.253421 + orientation 0.0108832 -0.997397 0.0712847 -0.364807 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 4 + center 0.21901 1.29666 -16.8607 + bitmap medusae_tail + verts 26 + 0.00219019 -0.0116904 -0.0103173 + -0.079002 0.0216557 -0.0340493 + -0.0557725 0.0504509 -0.0321397 + 0.00219022 0.0332063 -0.0300838 + 0.00219018 -0.0481625 -0.0509054 + -0.0530093 -0.0417826 -0.0485524 + -0.066401 0.0254746 -0.298961 + -0.0353702 -0.0162862 -0.308818 + -0.059633 -0.0127502 -0.264313 + -0.034355 0.0729268 -0.161702 + -0.0356579 0.0724822 -0.289786 + -0.0646184 0.0647047 -0.157588 + 0.00219018 0.0740958 -0.29099 + -0.0833899 0.0160446 -0.0975549 + 0.0833823 0.0216557 -0.0340493 + 0.0601529 0.0504509 -0.0321397 + 0.0573897 -0.0417826 -0.0485524 + 0.0397505 -0.0162862 -0.308818 + 0.0707818 0.0254746 -0.298961 + 0.0640139 -0.0127502 -0.264313 + 0.0400382 0.0724822 -0.289786 + 0.0387354 0.0729268 -0.161702 + 0.0689987 0.0647047 -0.157588 + 0.0877701 0.0160446 -0.0975549 + 0.00219018 -0.0168466 -0.308255 + 0.00219018 0.0330214 -0.326897 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 10 11 12 0 + 9 10 11 1 13 14 15 0 + 10 6 11 1 14 10 15 0 + 12 10 3 1 16 14 17 0 + 8 4 5 1 12 18 19 0 + 6 8 13 1 10 12 20 0 + 13 5 1 1 20 19 21 0 + 3 9 2 1 17 13 27 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 28 18 12 0 + 7 24 4 1 29 30 31 0 + 8 5 13 1 12 19 20 0 + 13 1 11 1 20 21 15 0 + 6 13 11 1 10 20 15 0 + 10 9 3 1 14 13 17 0 + 2 11 1 1 27 15 21 0 + 9 11 2 1 13 15 27 0 + 0 14 15 1 33 35 36 0 + 0 15 3 1 33 36 37 0 + 0 3 4 1 34 37 38 0 + 0 4 16 1 39 40 41 0 + 17 18 19 1 42 43 44 0 + 20 21 22 1 45 46 47 0 + 18 20 22 1 43 45 47 0 + 20 12 3 1 45 48 49 0 + 4 19 16 1 50 44 51 0 + 19 18 23 1 44 43 52 0 + 16 23 14 1 51 52 53 0 + 21 3 15 1 46 49 59 0 + 0 16 14 1 32 41 35 0 + 4 17 19 1 50 60 44 0 + 24 17 4 1 61 62 63 0 + 16 19 23 1 51 44 52 0 + 14 23 22 1 53 52 47 0 + 23 18 22 1 52 43 47 0 + 21 20 3 1 46 45 49 0 + 22 15 14 1 47 59 53 0 + 22 21 15 1 47 46 59 0 + 7 6 25 1 11 10 68 0 + 6 10 25 1 10 14 70 0 + 10 12 25 1 14 16 71 0 + 24 7 25 1 30 29 72 0 + 18 17 25 1 43 42 74 0 + 20 18 25 1 45 43 75 0 + 12 20 25 1 48 45 76 0 + 17 24 25 1 62 61 78 0 + tverts 80 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.10686 0.106161 0 + 0.106588 0.0918574 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.106588 0.0918574 0 + 0.10686 0.106161 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 +endnode +node trimesh tail09 + parent tail08 + position 0.00225413 0.0205248 -0.252374 + orientation -0.147215 -0.982262 -0.116141 -0.429021 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 4 + center 0.335615 1.89726 -16.0026 + bitmap medusae_tail + verts 26 + 0.0033562 -0.00582668 -0.000823311 + -0.0783043 0.0277118 -0.0246922 + -0.0549408 0.0566731 -0.0227716 + 0.00335623 0.0393291 -0.0207038 + 0.00335619 -0.0425091 -0.0416455 + -0.0521617 -0.0360925 -0.039279 + -0.0656306 0.0315527 -0.291131 + -0.0344208 -0.0104489 -0.301046 + -0.0588236 -0.00689259 -0.256285 + -0.0333998 0.0792786 -0.153082 + -0.0347102 0.0788315 -0.281904 + -0.0638378 0.0710092 -0.148943 + 0.00335619 0.0804544 -0.283115 + -0.0827175 0.0220683 -0.0885641 + 0.0850166 0.0277118 -0.0246922 + 0.0616532 0.0566731 -0.0227716 + 0.0588741 -0.0360924 -0.039279 + 0.0411332 -0.0104489 -0.301046 + 0.0723435 0.0315527 -0.291131 + 0.0655365 -0.00689252 -0.256285 + 0.0414225 0.0788315 -0.281904 + 0.0401122 0.0792787 -0.153082 + 0.07055 0.0710092 -0.148943 + 0.0894298 0.0220683 -0.0885641 + 0.00335619 -0.0110125 -0.30048 + 0.00335619 0.0391431 -0.319229 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 10 11 12 0 + 9 10 11 1 13 14 15 0 + 10 6 11 1 14 10 15 0 + 12 10 3 1 16 14 17 0 + 8 4 5 1 12 18 19 0 + 6 8 13 1 10 12 20 0 + 13 5 1 1 20 19 21 0 + 3 9 2 1 17 13 27 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 28 18 12 0 + 7 24 4 1 29 30 31 0 + 8 5 13 1 12 19 20 0 + 13 1 11 1 20 21 15 0 + 6 13 11 1 10 20 15 0 + 10 9 3 1 14 13 17 0 + 2 11 1 1 27 15 21 0 + 9 11 2 1 13 15 27 0 + 0 14 15 1 33 35 36 0 + 0 15 3 1 33 36 37 0 + 0 3 4 1 34 37 38 0 + 0 4 16 1 39 40 41 0 + 17 18 19 1 42 43 44 0 + 20 21 22 1 45 46 47 0 + 18 20 22 1 43 45 47 0 + 20 12 3 1 45 48 49 0 + 4 19 16 1 50 44 51 0 + 19 18 23 1 44 43 52 0 + 16 23 14 1 51 52 53 0 + 21 3 15 1 46 49 59 0 + 0 16 14 1 32 41 35 0 + 4 17 19 1 50 60 44 0 + 24 17 4 1 61 62 63 0 + 16 19 23 1 51 44 52 0 + 14 23 22 1 53 52 47 0 + 23 18 22 1 52 43 47 0 + 21 20 3 1 46 45 49 0 + 22 15 14 1 47 59 53 0 + 22 21 15 1 47 46 59 0 + 7 6 25 1 11 10 68 0 + 6 10 25 1 10 14 70 0 + 10 12 25 1 14 16 71 0 + 24 7 25 1 30 29 72 0 + 18 17 25 1 43 42 74 0 + 20 18 25 1 45 43 75 0 + 12 20 25 1 48 45 76 0 + 17 24 25 1 62 61 78 0 + tverts 80 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.10686 0.106161 0 + 0.106588 0.0918574 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.106588 0.0918574 0 + 0.10686 0.106161 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 +endnode +node trimesh tail10 + parent tail09 + position -0.000246462 0.0356031 -0.240934 + orientation -0.479857 -0.613981 -0.626709 -0.0916043 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 4 + center 0.15101 0.74346 -15.0183 + bitmap medusae_tail + verts 26 + 0.00151017 -0.0144472 -0.00970938 + -0.0705432 0.0151456 -0.0307702 + -0.0499284 0.0406997 -0.0290755 + 0.00151019 0.0253962 -0.027251 + 0.00151016 -0.046814 -0.045729 + -0.0474762 -0.0411523 -0.0436409 + -0.0593605 0.0185347 -0.265864 + -0.0318225 -0.0185256 -0.274612 + -0.0533544 -0.0153877 -0.235116 + -0.0309216 0.0606458 -0.144055 + -0.0320778 0.0602512 -0.257722 + -0.0577786 0.0533492 -0.140404 + 0.00151016 0.0616832 -0.25879 + -0.0744372 0.0101661 -0.0871277 + 0.0735634 0.0151456 -0.0307702 + 0.0529487 0.0406997 -0.0290755 + 0.0504965 -0.0411522 -0.0436409 + 0.0348428 -0.0185256 -0.274612 + 0.0623813 0.0185347 -0.265864 + 0.0563751 -0.0153876 -0.235116 + 0.0350981 0.0602512 -0.257722 + 0.0339419 0.0606458 -0.144055 + 0.0607988 0.0533492 -0.140404 + 0.0774574 0.0101661 -0.0871277 + 0.00151016 -0.0190229 -0.274112 + 0.00151016 0.025232 -0.290656 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 10 11 12 0 + 9 10 11 1 13 14 15 0 + 10 6 11 1 14 10 15 0 + 12 10 3 1 16 14 17 0 + 8 4 5 1 12 18 19 0 + 6 8 13 1 10 12 20 0 + 13 5 1 1 20 19 21 0 + 3 9 2 1 17 13 27 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 28 18 12 0 + 7 24 4 1 29 30 31 0 + 8 5 13 1 12 19 20 0 + 13 1 11 1 20 21 15 0 + 6 13 11 1 10 20 15 0 + 10 9 3 1 14 13 17 0 + 2 11 1 1 27 15 21 0 + 9 11 2 1 13 15 27 0 + 0 14 15 1 33 35 36 0 + 0 15 3 1 33 36 37 0 + 0 3 4 1 34 37 38 0 + 0 4 16 1 39 40 41 0 + 17 18 19 1 42 43 44 0 + 20 21 22 1 45 46 47 0 + 18 20 22 1 43 45 47 0 + 20 12 3 1 45 48 49 0 + 4 19 16 1 50 44 51 0 + 19 18 23 1 44 43 52 0 + 16 23 14 1 51 52 53 0 + 21 3 15 1 46 49 59 0 + 0 16 14 1 32 41 35 0 + 4 17 19 1 50 60 44 0 + 24 17 4 1 61 62 63 0 + 16 19 23 1 51 44 52 0 + 14 23 22 1 53 52 47 0 + 23 18 22 1 52 43 47 0 + 21 20 3 1 46 45 49 0 + 22 15 14 1 47 59 53 0 + 22 21 15 1 47 46 59 0 + 7 6 25 1 11 10 68 0 + 6 10 25 1 10 14 70 0 + 10 12 25 1 14 16 71 0 + 24 7 25 1 30 29 72 0 + 18 17 25 1 43 42 74 0 + 20 18 25 1 45 43 75 0 + 12 20 25 1 48 45 76 0 + 17 24 25 1 62 61 78 0 + tverts 80 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.10686 0.106161 0 + 0.106588 0.0918574 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.106588 0.0918574 0 + 0.10686 0.106161 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 +endnode +node trimesh tail11 + parent tail10 + position 0.000816812 0.0160521 -0.232647 + orientation 0.920606 0.288113 -0.263581 -0.0888534 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 4 + center 0.239375 0.857465 -11.0922 + bitmap medusae_tail + verts 26 + 0.00239383 -0.00933957 0.00408086 + -0.056595 0.0148875 -0.0131612 + -0.039718 0.0358082 -0.0117739 + 0.00239384 0.0232795 -0.0102802 + 0.00239382 -0.0358377 -0.0254078 + -0.0377105 -0.0312026 -0.0236982 + -0.04744 0.0176621 -0.205628 + -0.0248951 -0.0126785 -0.21279 + -0.0425228 -0.0101095 -0.180456 + -0.0241575 0.0521377 -0.105906 + -0.0251041 0.0518147 -0.198962 + -0.0461449 0.0461641 -0.102916 + 0.00239382 0.052987 -0.199837 + -0.059783 0.0108109 -0.0593001 + 0.0613826 0.0148875 -0.0131613 + 0.0445057 0.0358082 -0.0117739 + 0.0424981 -0.0312025 -0.0236983 + 0.0296827 -0.0126785 -0.21279 + 0.0522279 0.0176621 -0.205628 + 0.0473108 -0.0101095 -0.180456 + 0.0298917 0.0518147 -0.198962 + 0.0289451 0.0521377 -0.105906 + 0.0509324 0.0461641 -0.102916 + 0.0645705 0.0108109 -0.0593001 + 0.00239382 -0.0130857 -0.212381 + 0.00239382 0.0231451 -0.225925 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 10 11 12 0 + 9 10 11 1 13 14 15 0 + 10 6 11 1 14 10 15 0 + 12 10 3 1 16 14 17 0 + 8 4 5 1 12 18 19 0 + 6 8 13 1 10 12 20 0 + 13 5 1 1 20 19 21 0 + 3 9 2 1 17 13 27 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 28 18 12 0 + 7 24 4 1 29 30 31 0 + 8 5 13 1 12 19 20 0 + 13 1 11 1 20 21 15 0 + 6 13 11 1 10 20 15 0 + 10 9 3 1 14 13 17 0 + 2 11 1 1 27 15 21 0 + 9 11 2 1 13 15 27 0 + 0 14 15 1 33 35 36 0 + 0 15 3 1 33 36 37 0 + 0 3 4 1 34 37 38 0 + 0 4 16 1 39 40 41 0 + 17 18 19 1 42 43 44 0 + 20 21 22 1 45 46 47 0 + 18 20 22 1 43 45 47 0 + 20 12 3 1 45 48 49 0 + 4 19 16 1 50 44 51 0 + 19 18 23 1 44 43 52 0 + 16 23 14 1 51 52 53 0 + 21 3 15 1 46 49 59 0 + 0 16 14 1 32 41 35 0 + 4 17 19 1 50 60 44 0 + 24 17 4 1 61 62 63 0 + 16 19 23 1 51 44 52 0 + 14 23 22 1 53 52 47 0 + 23 18 22 1 52 43 47 0 + 21 20 3 1 46 45 49 0 + 22 15 14 1 47 59 53 0 + 22 21 15 1 47 46 59 0 + 7 6 25 1 11 10 68 0 + 6 10 25 1 10 14 70 0 + 10 12 25 1 14 16 71 0 + 24 7 25 1 30 29 72 0 + 18 17 25 1 43 42 74 0 + 20 18 25 1 45 43 75 0 + 12 20 25 1 48 45 76 0 + 17 24 25 1 62 61 78 0 + tverts 80 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.10686 0.106161 0 + 0.106588 0.0918574 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.106588 0.0918574 0 + 0.10686 0.106161 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 +endnode +node trimesh tail12 + parent tail11 + position -0.00815639 0.0365519 -0.178047 + orientation -0.827845 0.544455 -0.135057 -0.141163 + wirecolor 0.0313726 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 4 + center 1.0192 -2.22082 -10.6519 + bitmap medusae_tail + verts 26 + 0.00785479 -0.0196211 0.00653695 + -0.0489347 -0.00523033 -0.026531 + -0.0333428 0.0138684 -0.0370105 + 0.00755893 0.00520005 -0.0265402 + 0.0099979 -0.0493318 -0.00579429 + -0.028884 -0.0466474 -0.00844311 + -0.00947772 -0.0472069 -0.208273 + 0.00305514 -0.0618816 -0.201682 + -0.00707914 -0.056988 -0.186069 + -0.0144685 0.00678952 -0.135795 + 0.00156026 -0.029753 -0.215431 + -0.0356301 0.00138863 -0.130229 + 0.0160347 -0.0286705 -0.215697 + -0.0497555 -0.0195883 -0.0681766 + 0.0648131 -0.000192068 -0.0220572 + 0.0478613 0.0174651 -0.0338167 + 0.048449 -0.043222 -0.0054016 + 0.0317776 -0.0606094 -0.200552 + 0.0429743 -0.0448836 -0.20621 + 0.0401973 -0.054894 -0.18421 + 0.0305028 -0.0284711 -0.214293 + 0.0367303 0.00905729 -0.133781 + 0.0579668 0.00553432 -0.126548 + 0.0701394 -0.0142777 -0.0634612 + 0.0174126 -0.0613855 -0.200772 + 0.0171724 -0.0460323 -0.219575 + faces 50 + 1 0 2 1 3 0 4 0 + 2 0 3 1 4 0 5 0 + 3 0 4 1 5 2 6 0 + 4 0 5 1 7 8 9 0 + 6 7 8 1 10 11 12 0 + 9 10 11 1 13 14 15 0 + 10 6 11 1 14 10 15 0 + 12 10 3 1 16 14 17 0 + 8 4 5 1 12 18 19 0 + 6 8 13 1 10 12 20 0 + 13 5 1 1 20 19 21 0 + 3 9 2 1 17 13 27 0 + 5 0 1 1 9 1 3 0 + 7 4 8 1 28 18 12 0 + 7 24 4 1 29 30 31 0 + 8 5 13 1 12 19 20 0 + 13 1 11 1 20 21 15 0 + 6 13 11 1 10 20 15 0 + 10 9 3 1 14 13 17 0 + 2 11 1 1 27 15 21 0 + 9 11 2 1 13 15 27 0 + 0 14 15 1 33 35 36 0 + 0 15 3 1 33 36 37 0 + 0 3 4 1 34 37 38 0 + 0 4 16 1 39 40 41 0 + 17 18 19 1 42 43 44 0 + 20 21 22 1 45 46 47 0 + 18 20 22 1 43 45 47 0 + 20 12 3 1 45 48 49 0 + 4 19 16 1 50 44 51 0 + 19 18 23 1 44 43 52 0 + 16 23 14 1 51 52 53 0 + 21 3 15 1 46 49 59 0 + 0 16 14 1 32 41 35 0 + 4 17 19 1 50 60 44 0 + 24 17 4 1 61 62 63 0 + 16 19 23 1 51 44 52 0 + 14 23 22 1 53 52 47 0 + 23 18 22 1 52 43 47 0 + 21 20 3 1 46 45 49 0 + 22 15 14 1 47 59 53 0 + 22 21 15 1 47 46 59 0 + 7 6 25 1 11 10 68 0 + 6 10 25 1 10 14 70 0 + 10 12 25 1 14 16 71 0 + 24 7 25 1 30 29 72 0 + 18 17 25 1 43 42 74 0 + 20 18 25 1 45 43 75 0 + 12 20 25 1 48 45 76 0 + 17 24 25 1 62 61 78 0 + tverts 80 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.10686 0.106161 0 + 0.106588 0.0918574 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.982527 0.910727 0 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.106588 0.0918574 0 + 0.10686 0.106161 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 + 0.982527 0.910727 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.106588 0.0918574 0 + 0.00774474 0.0212189 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.318015 0.0209685 0 + 0.00774474 0.0212189 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 +endnode +node danglymesh belt_g + parent rootdummy + position 0.00784597 -0.00245282 -0.0243296 + orientation 0.666275 -0.0802573 0.741374 -0.089407 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + Diffuse 1.0 1.0 1.0 + Specular 0.0 0.0 0.0 + shininess 15 + center -0.253151 -2.97425 -20.1943 + period 5.0 + tightness 3.0 + displacement 0.02 + showdispl true + displtype 1 + center -0.253151 -2.97425 -20.1943 + bitmap medusa_belt + verts 51 + -0.0697645 0.0743293 -0.0112432 + -0.109833 0.00620359 -0.0127707 + -0.0549784 0.00689411 0.0397812 + -0.000762186 0.0470697 0.0350639 + -0.000762435 -0.10199 -0.0566713 + -0.0007622 -0.0447424 0.0182488 + -0.0653749 -0.0707301 -0.0134631 + -0.131874 -0.119255 -0.125809 + -0.104623 -0.148489 -0.146536 + -0.000793201 -0.00119349 -0.125822 + 0.103037 -0.148489 -0.146536 + -0.00079319 -0.164309 -0.146537 + -0.202598 -0.112905 -0.418086 + -0.211683 -0.0499671 -0.409533 + -0.209332 0.0247976 -0.418062 + -0.133408 0.0843125 -0.125785 + -0.155093 -0.0376076 -0.101922 + 0.0638503 -0.0704821 -0.0136533 + -0.000984819 0.0687645 -0.294838 + -0.000793175 0.11024 -0.125809 + 0.131837 0.0843125 -0.125785 + 0.0682399 0.0743293 -0.0112432 + -0.000762256 0.0743293 -0.0111188 + 0.108316 0.00620359 -0.0127708 + 0.053454 0.00689412 0.0397812 + 0.130304 -0.119255 -0.125809 + 0.153718 -0.0376076 -0.101922 + -0.00104871 -0.174843 -0.443668 + -0.104879 -0.164482 -0.443667 + 0.102781 -0.164482 -0.443667 + 0.204684 -0.0461603 -0.422343 + 0.187255 -0.109099 -0.430895 + 0.19399 0.0286044 -0.430871 + -0.000793174 0.11891 -0.165922 + 0.090667 0.095648 -0.165898 + -0.0922534 0.095648 -0.165898 + 0.102909 -0.156486 -0.295102 + -0.104751 -0.156486 -0.295102 + -0.00092095 -0.178395 -0.295102 + -0.204271 -0.0387952 -0.203232 + -0.188089 -0.101734 -0.211785 + -0.200084 0.0359695 -0.211761 + 0.193001 0.0359767 -0.211844 + 0.181006 -0.101726 -0.211868 + 0.202691 -0.0387879 -0.203315 + -0.209576 -0.0408377 -0.313039 + -0.197765 -0.103776 -0.321591 + -0.20652 0.033927 -0.321567 + 0.20662 -0.0407065 -0.313786 + 0.183962 -0.103645 -0.322339 + 0.192717 0.0340582 -0.322315 + faces 98 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 4 5 6 1 4 5 6 0 + 4 7 8 1 4 7 8 0 + 5 2 6 1 5 2 6 0 + 6 2 1 1 6 2 1 0 + 8 9 10 2 8 9 10 0 + 4 8 11 1 4 8 11 0 + 9 8 7 2 9 8 7 0 + 12 13 14 2 12 13 14 0 + 1 0 15 1 1 0 15 0 + 7 15 9 2 7 15 9 0 + 6 16 7 1 6 16 7 0 + 17 5 4 1 17 5 4 0 + 4 6 7 1 4 6 7 0 + 15 0 19 1 15 0 21 0 + 16 1 15 1 16 1 15 0 + 20 9 15 2 22 9 15 0 + 21 22 3 1 23 24 3 0 + 23 21 24 1 25 23 26 0 + 24 21 3 1 26 23 3 0 + 24 3 2 1 26 3 2 0 + 25 17 4 1 27 17 4 0 + 2 5 24 1 2 5 26 0 + 24 5 17 1 26 5 17 0 + 24 17 23 1 26 17 25 0 + 25 10 9 2 27 10 9 0 + 10 4 11 1 10 4 11 0 + 26 17 25 1 28 17 27 0 + 27 28 29 2 29 30 31 0 + 21 23 20 1 23 25 22 0 + 25 9 20 2 27 9 22 0 + 26 23 17 1 28 25 17 0 + 25 4 10 1 27 4 10 0 + 21 20 19 1 23 22 21 0 + 30 31 32 2 32 33 34 0 + 21 19 22 1 23 21 24 0 + 6 1 16 1 6 1 16 0 + 23 26 20 1 25 28 22 0 + 33 20 34 1 35 22 36 0 + 20 33 19 1 22 35 21 0 + 20 15 35 2 22 15 37 0 + 35 34 20 2 37 36 22 0 + 15 19 33 1 15 21 35 0 + 33 35 15 1 35 37 15 0 + 33 34 18 1 35 36 38 0 + 34 35 18 4 36 37 40 0 + 33 18 35 1 35 40 37 0 + 8 10 36 4 8 10 41 0 + 29 28 37 4 31 30 42 0 + 38 37 28 1 43 42 30 0 + 37 38 11 1 42 43 11 0 + 29 36 38 1 31 41 43 0 + 11 36 10 1 11 41 10 0 + 7 16 39 1 7 16 44 0 + 39 40 7 1 44 45 7 0 + 39 15 41 1 44 15 46 0 + 15 39 16 1 15 44 16 0 + 41 7 40 4 46 7 45 0 + 7 41 15 4 7 46 15 0 + 25 20 42 4 27 22 47 0 + 42 43 25 4 47 48 27 0 + 44 25 43 1 49 27 48 0 + 25 44 26 1 27 49 28 0 + 20 26 44 1 22 28 49 0 + 44 42 20 1 49 47 22 0 + 40 39 45 1 45 44 50 0 + 45 46 40 1 50 51 45 0 + 45 41 47 1 50 46 52 0 + 41 45 39 1 46 50 44 0 + 47 40 46 4 52 45 51 0 + 40 47 41 4 45 52 46 0 + 48 43 49 1 53 48 54 0 + 43 48 44 1 48 53 49 0 + 43 42 50 4 48 47 55 0 + 50 49 43 4 55 54 48 0 + 42 44 48 1 47 49 53 0 + 48 50 42 1 53 55 47 0 + 46 45 13 1 51 50 13 0 + 13 12 46 1 13 12 51 0 + 13 47 14 1 13 52 14 0 + 47 13 45 1 52 13 50 0 + 14 46 12 4 14 51 12 0 + 46 14 47 4 51 14 52 0 + 30 49 31 1 32 54 33 0 + 49 30 48 1 54 32 53 0 + 49 50 32 4 54 55 34 0 + 32 31 49 4 34 33 54 0 + 50 48 30 1 55 53 32 0 + 30 32 50 1 32 34 55 0 + 22 19 0 1 24 21 0 0 + 22 0 3 1 24 0 3 0 + 11 8 37 1 11 8 42 0 + 36 37 8 4 41 42 8 0 + 28 27 38 1 30 29 43 0 + 29 38 27 1 31 43 29 0 + 11 38 36 1 11 43 41 0 + 37 36 29 4 42 41 31 0 + tverts 56 + 0.0790722 0.692265 0 + 0.0237789 0.994782 0 + -0.0139122 0.656228 0 + 0.0142993 0.362865 0 + 0.0729888 0.354831 0 + 0.0117594 0.368195 0 + 0.0799893 0.688003 0 + 0.499636 0.808728 0 + 0.4946 0.615293 0 + 0.303846 0.270681 0 + 0.496311 0.619994 0 + 0.361531 0.249686 0 + 1.03998 0.843138 0 + 1.02795 0.884211 0 + 1.04865 0.867182 0 + 0.518927 0.861935 0 + 0.465563 0.994761 0 + 0.0817802 0.692923 0 + 0.939465 0.00929795 0 + 0.968436 0.403405 0 + 0.967389 0.400527 0 + 0.303809 0.270695 0 + 0.520658 0.866691 0 + 0.0808634 0.697186 0 + 0.0677527 0.364457 0 + 0.0255811 0.999733 0 + -0.0121213 0.661148 0 + 0.501367 0.813484 0 + 0.467549 1.00022 0 + 0.953321 0.00425497 0 + 0.983579 0.452596 0 + 0.984627 0.455474 0 + 1.05831 0.856622 0 + 1.0595 0.785794 0 + 1.06818 0.809838 0 + 0.415517 0.230037 0 + 0.534174 0.556252 0 + 0.532463 0.551551 0 + 0.751305 0.479829 0 + 0.677491 0.119667 0 + 0.749926 0.476039 0 + 0.740469 0.537734 0 + 0.739089 0.533944 0 + 0.657426 0.12697 0 + 0.649851 0.932918 0 + 0.652664 0.866537 0 + 0.668168 0.909341 0 + 0.662974 0.894353 0 + 0.64747 0.851549 0 + 0.651802 0.937558 0 + 0.779035 0.907521 0 + 0.78752 0.856727 0 + 0.798819 0.887977 0 + 0.781048 0.906576 0 + 0.775454 0.8171 0 + 0.786753 0.84835 0 + constraints 51 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 150.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 +endnode +node dummy headconjure + parent c_marilithe + position 0.0 -0.0278785 2.31815 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.882353 0.345098 0.780392 +endnode +node dummy handconjure + parent c_marilithe + position 0.0 0.278383 1.4067 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.345098 0.345098 0.882353 +endnode +endmodelgeom c_marilithe + +#NWmax ANIM ASCII +newanim walk c_marilithe + length 1.0 + transtime 0.25 + animroot rootdummy + event 0.0333333 snd_footstep + event 0.533333 snd_footstep + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.00385051 0.0403576 1.13218 + 0.0333333 -0.00153789 0.0475459 1.1374 + 0.0666667 8.51342e-005 0.0530576 1.14626 + 0.1 -0.000805358 0.0555976 1.15706 + 0.133333 -0.00340175 0.0544009 1.16587 + 0.166667 -0.00670585 0.0501268 1.1738 + 0.2 -0.00993389 0.0438012 1.1801 + 0.233333 -0.0138138 0.0364499 1.18405 + 0.3 -0.0136755 0.0227729 1.18144 + 0.333333 -0.00998703 0.0184989 1.17397 + 0.366667 -0.00483316 0.0173021 1.1641 + 0.4 0.000956681 0.0198421 1.15343 + 0.433333 0.0054521 0.0253129 1.14349 + 0.466667 0.00882061 0.0325422 1.13614 + 0.5 0.00944221 0.0403576 1.13272 + 0.533333 0.00666964 0.0475868 1.13445 + 0.566667 0.00255103 0.0530576 1.14044 + 0.6 1.2207e-006 0.0555976 1.14924 + 0.633333 0.00106677 0.0544009 1.15946 + 0.666667 0.00477606 0.0501268 1.16967 + 0.7 0.00948718 0.043845 1.1784 + 0.733333 0.0136762 0.0364499 1.18438 + 0.766667 0.0156422 0.0290985 1.18603 + 0.8 0.0130177 0.0227729 1.1809 + 0.833333 0.00637654 0.0184989 1.16955 + 0.866667 0.0020064 0.0173021 1.15917 + 0.9 -0.002489 0.0198421 1.14843 + 0.933333 -0.00454958 0.0253129 1.14054 + 0.966667 -0.00528263 0.0325422 1.13506 + 1.0 -0.00385051 0.0403576 1.13218 + endlist + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.508871 -0.0587522 -0.858835 -0.109018 + 0.1 0.608117 -0.126916 -0.783637 -0.0926452 + 0.166667 0.75629 -0.258078 -0.601184 -0.073903 + 0.233333 0.915493 -0.364046 -0.171296 -0.0601625 + 0.3 0.868674 -0.292122 0.400089 -0.062452 + 0.366667 0.687851 -0.0568605 0.723622 -0.0784075 + 0.433333 0.555654 0.156807 0.816493 -0.097836 + 0.666667 0.638799 0.574529 0.511714 -0.086736 + 0.766667 0.749511 0.654593 -0.0986993 -0.0731561 + 0.833333 0.691912 0.48817 -0.531929 -0.0787757 + 0.9 0.594093 0.217529 -0.774425 -0.0919612 + 1.0 0.508871 -0.0587522 -0.858835 -0.109018 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.843006 0.488564 -0.225046 -0.298136 + 0.1 -0.819342 0.419924 -0.390311 -0.329797 + 0.166667 -0.775928 0.35643 -0.520475 -0.310906 + 0.5 0.685647 0.280428 -0.671751 -0.481444 + 0.566667 0.679139 0.346926 -0.646848 -0.451004 + 0.8 -0.088145 0.327368 -0.940777 -0.193036 + 1.0 -0.843006 0.488564 -0.225046 -0.298136 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.999937 0.00215638 0.0110093 -0.386877 + 0.1 -0.988924 0.0245507 0.146381 -0.365525 + 0.2 -0.908772 0.0567345 0.413418 -0.248612 + 0.333333 -0.498212 0.0615132 0.86487 -0.227034 + 0.4 -0.0135363 0.0129694 0.999824 -0.241642 + 0.466667 -0.121904 0.0261813 0.992197 -0.283109 + 0.533333 -0.319365 0.0569178 0.945921 -0.329025 + 0.9 -0.903562 0.0802252 0.42088 -0.413698 + 1.0 -0.999947 0.00197327 0.0100746 -0.386873 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -2.37823e-005 -5.84489e-006 1.0 -0.00854818 + 0.0333333 -0.802309 -0.00691433 -0.596869 -0.0288631 + 0.0666667 -0.646652 -0.0131115 -0.762672 -0.0531557 + 0.1 -0.494789 -0.0150845 -0.868882 -0.0701431 + 0.133333 -0.310237 -0.0121956 -0.950581 -0.0826515 + 0.166667 -0.0913077 -0.00426702 -0.995814 -0.0937606 + 0.2 0.142458 0.00750719 -0.989772 -0.106397 + 0.233333 0.360031 0.0206088 -0.932713 -0.122594 + 0.266667 0.538424 0.032477 -0.842048 -0.143025 + 0.333333 0.768613 0.0476586 -0.637936 -0.193789 + 0.4 0.884966 0.0511846 -0.462834 -0.248642 + 0.433333 0.919244 0.0494904 -0.390566 -0.273968 + 0.466667 0.944681 0.045694 -0.324792 -0.29568 + 0.5 0.964284 0.0397482 -0.261871 -0.312256 + 0.533333 0.97971 0.0315257 -0.197925 -0.322342 + 0.566667 0.991507 0.020853 -0.128372 -0.324787 + 0.6 0.999597 0.00458082 -0.0279992 -0.324487 + 0.633333 0.993895 -0.0179613 0.108859 -0.329014 + 0.7 0.920344 -0.0635198 0.385917 -0.353937 + 0.733333 0.867291 -0.0790801 0.491479 -0.366873 + 0.766667 0.81884 -0.0871822 0.567363 -0.371 + 0.8 0.782811 -0.0874495 0.616084 -0.358753 + 0.833333 0.752257 -0.0788452 0.654135 -0.317756 + 0.866667 0.709429 -0.0627475 0.701978 -0.250674 + 0.9 0.638568 -0.0424355 0.768395 -0.172538 + 0.933333 0.4999 -0.0213018 0.865821 -0.0983478 + 0.966667 0.190798 -0.00394139 0.981621 -0.0420597 + 1.0 6.78103e-006 -1.03497e-005 1.0 -0.00854823 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.999693 0.0224929 0.010378 -3.20925e-006 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.367656 0.706268 -0.604992 -0.0964703 + 0.5 0.163621 -0.229882 -0.959366 -0.192789 + 1.0 -0.367656 0.706268 -0.604992 -0.0964703 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.236084 -0.654653 0.718118 -0.0723004 + 1.0 0.236085 -0.654653 0.718118 -0.0723004 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.793594 -0.346818 0.499925 -0.471138 + 0.0333333 0.813059 -0.350104 0.465147 -0.450898 + 0.0666667 0.821419 -0.3657 0.437646 -0.417397 + 0.233333 0.519233 -0.819446 0.242706 -0.142029 + 0.3 -0.0827788 -0.947338 0.309353 -0.12189 + 0.466667 -0.584541 -0.794801 0.163107 -0.255551 + 0.5 -0.623846 -0.753795 0.206422 -0.262566 + 0.566667 -0.630935 -0.711473 0.309398 -0.264429 + 0.633333 -0.30278 -0.71283 0.632611 -0.258406 + 0.733333 0.18067 -0.908849 0.375967 -0.199032 + 1.0 0.793585 -0.346814 0.499943 -0.471142 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -1.0 1.31592e-007 -1.31343e-007 -0.22771 + 0.1 -1.0 2.96254e-007 -3.83811e-007 -0.0814541 + 0.366667 -1.0 0.0 -2.05409e-007 -0.181784 + 0.633333 -1.0 0.0 0.0 -0.266562 + 0.733333 -1.0 0.0 0.0 -0.363727 + 0.933333 -1.0 0.0 -1.84902e-007 -0.161845 + 1.0 -1.0 0.0 0.0 -0.22771 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.705101 0.135265 -0.696086 -0.306584 + 0.266667 -0.825259 0.221005 -0.519716 -0.139814 + 0.566667 -0.925234 -0.267851 0.268695 -0.26757 + 1.0 -0.705101 0.135265 -0.696086 -0.306584 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.99999 -0.00438466 -5.91499e-005 -3.93436e-006 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0149664 -0.156977 -0.987489 -0.259921 + 1.0 -0.0149664 -0.156977 -0.987489 -0.259921 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.995757 -0.0679482 0.0620601 -0.503255 + 0.133333 -0.995921 -0.0882104 -0.018968 -0.407893 + 0.266667 -0.841606 -0.532381 -0.0909423 -0.382492 + 0.4 -0.869052 -0.485866 -0.0931822 -0.424375 + 0.533333 -0.861912 -0.49853 -0.0926059 -0.412122 + 0.666667 -0.867708 -0.488283 -0.0930741 -0.421983 + 0.8 -0.939038 0.337829 0.0638763 -0.408062 + 1.0 -0.995757 -0.0679482 0.0620601 -0.503255 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.994929 0.0825211 -0.057494 -0.498796 + 0.133333 0.888503 0.454812 -0.0608999 -0.433219 + 0.266667 0.863563 -0.438522 0.248911 -0.348983 + 0.4 0.888247 -0.381402 0.256026 -0.39184 + 0.533333 0.888074 -0.381838 0.255976 -0.391473 + 0.666667 0.895644 -0.362182 0.258158 -0.408753 + 0.8 0.92165 -0.382845 -0.0631722 -0.390627 + 1.0 0.994929 0.0825212 -0.057494 -0.498796 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.998122 0.00472001 -0.06107 -1.32334 + 0.133333 0.953541 0.183608 -0.238847 -1.25199 + 0.266667 0.94039 0.199447 0.275476 -1.167 + 0.4 0.894891 -0.0584892 0.442435 -1.20934 + 0.533333 0.895662 -0.0462787 0.442322 -1.30606 + 0.666667 0.893018 -0.0821098 0.442466 -1.05449 + 0.8 0.993374 -0.0457304 0.105432 -1.33659 + 1.0 0.998122 0.00472001 -0.06107 -1.32334 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.793736 0.568818 -0.215475 -0.50327 + 0.133333 0.837089 0.42677 -0.342271 -0.466011 + 0.266667 0.932129 0.34853 0.0982962 -0.594498 + 0.4 0.854909 0.327946 0.401972 -0.630609 + 0.533333 0.782683 -0.339669 0.521567 -0.435833 + 0.666667 0.808171 -0.18779 0.558207 -0.68115 + 0.8 0.909185 -0.340551 0.239598 -0.437528 + 1.0 0.793736 0.568818 -0.215475 -0.50327 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.0337223 0.99716 0.067345 -0.328482 + 0.133333 0.0081686 0.997467 0.0706565 -0.17344 + 0.266667 -0.136997 0.990262 0.0247411 -0.173279 + 0.4 -0.35153 0.92833 -0.120956 -0.182528 + 0.533333 -0.261742 0.931675 -0.251938 -0.183056 + 0.666667 0.367419 -0.886885 0.280068 -0.19265 + 0.8 0.312135 -0.944982 0.0978794 -0.182297 + 1.0 0.0337211 0.99716 0.0673449 -0.328482 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.975172 -0.208664 -0.0741622 -0.0281623 + 0.133333 1.99183e-006 1.0 8.50695e-007 -0.174532 + 0.266667 -0.268746 0.960944 0.0660499 -0.177878 + 0.4 -0.528688 0.846892 -0.0571211 -0.198728 + 0.533333 0.366197 0.913039 0.179612 -0.194885 + 0.666667 0.121679 0.795775 -0.593242 -1.6806e-006 + 0.8 -0.172742 -0.976854 -0.126161 -0.180456 + 1.0 -0.975175 -0.208648 -0.0741623 -0.0281639 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.193724 -0.979189 0.0605047 -0.277385 + 0.133333 -1.0 -0.000194335 -2.52393e-006 -0.00872517 + 0.266667 -0.0498085 0.998521 -0.0217919 -0.174749 + 0.4 -0.149152 0.9887 -0.0150108 -0.175499 + 0.533333 -0.334169 0.936801 -0.10361 -0.183664 + 0.666667 -0.324781 0.893453 -0.310258 -0.19162 + 0.8 -0.103233 -0.994061 -0.0344275 -0.176221 + 1.0 -0.193724 -0.979189 0.0605038 -0.277385 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.0108834 -0.997397 0.0712854 -0.364807 + 0.133333 -0.049785 -0.998522 0.0217821 -0.174754 + 0.266667 -0.0498077 0.998521 -0.0218 -0.174747 + 0.4 -0.0498049 0.998521 -0.021808 -0.174747 + 0.533333 -0.200529 0.978962 -0.037711 -0.177085 + 0.666667 -0.101369 0.993071 -0.0594484 -0.175208 + 0.8 -0.0497898 0.998522 -0.0218121 -0.17475 + 1.0 0.0108829 -0.997397 0.0712845 -0.364807 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.147215 -0.982262 -0.11614 -0.429021 + 0.133333 -0.0497604 -0.998524 0.0217788 -0.17476 + 0.266667 -0.0497513 -0.998525 0.0217604 -0.174759 + 0.4 -0.0498207 0.998519 -0.0218426 -0.174742 + 0.533333 -0.158904 0.987191 -0.0142329 -0.176 + 0.666667 -0.363781 0.914772 -0.175655 -0.187376 + 0.8 -0.214314 0.966373 -0.142104 -0.178284 + 1.0 -0.147215 -0.982262 -0.116141 -0.429021 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.479859 -0.613981 -0.626708 -0.0916044 + 0.133333 -0.0397673 -0.99899 0.020921 -0.174681 + 0.266667 -0.0397538 -0.998991 0.0208971 -0.174681 + 0.4 -0.0397933 -0.998991 0.0208294 -0.174681 + 0.533333 -0.140724 0.990041 0.00404856 -0.175623 + 0.666667 -0.378934 0.917855 -0.118117 -0.186779 + 0.8 -0.299983 0.942331 -0.148403 -0.18172 + 1.0 -0.479856 -0.613978 -0.626713 -0.0916045 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.920607 0.288112 -0.26358 -0.0888532 + 0.133333 -0.009796 -0.999814 0.0166134 -0.174492 + 0.266667 -0.00977808 -0.999815 0.016587 -0.174494 + 0.4 -0.00980573 -0.999816 0.0165035 -0.174496 + 0.533333 -0.0098312 -0.99982 0.0162481 -0.174502 + 0.666667 -0.00996649 0.9998 -0.0173303 -0.174572 + 0.8 -0.198724 0.977441 -0.0715446 -0.17645 + 1.0 0.920606 0.288112 -0.263583 -0.0888536 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.827846 0.544455 -0.135057 -0.141163 + 0.133333 -0.0397921 -0.99899 0.0208498 -0.174344 + 0.266667 -0.0397626 -0.998992 0.0208256 -0.174349 + 0.4 -0.0397559 -0.998994 0.0207423 -0.174356 + 0.533333 -0.0397439 -0.999 0.0204577 -0.174362 + 0.666667 -0.998314 0.037191 -0.0445581 -0.00700485 + 0.8 -0.440282 0.895585 -0.0638753 -0.190117 + 1.0 -0.827845 0.544455 -0.13506 -0.141163 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim walk c_marilithe + + +#NWmax ANIM ASCII +newanim walk_shieldl c_marilithe + length 1.0 + transtime 0.25 + animroot lbicep_g + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.00624593 0.0401486 1.13332 + 0.0333333 -0.00354704 0.0475868 1.13972 + 0.0666667 -0.00100547 0.0530576 1.14806 + 0.1 0.0 0.0555976 1.15701 + 0.133333 -0.00162412 0.0544009 1.16583 + 0.166667 -0.00540303 0.0501268 1.17377 + 0.2 -0.00993389 0.0438012 1.18009 + 0.233333 -0.0138138 0.0364499 1.18405 + 0.266667 -0.01564 0.0290985 1.18491 + 0.3 -0.0143562 0.0227729 1.18144 + 0.333333 -0.0105455 0.0184989 1.17397 + 0.366667 -0.0052642 0.0173021 1.1641 + 0.4 0.000431453 0.0198421 1.15343 + 0.433333 0.00548524 0.0253129 1.14357 + 0.466667 0.0088409 0.0325422 1.13614 + 0.5 0.00944221 0.0403576 1.13272 + 0.533333 0.00666964 0.0475868 1.13445 + 0.566667 0.00255103 0.0530576 1.14044 + 0.6 1.2207e-006 0.0555976 1.14924 + 0.633333 0.00106677 0.0544009 1.15946 + 0.666667 0.00477606 0.0501268 1.16967 + 0.7 0.00951669 0.0438012 1.17845 + 0.733333 0.0136762 0.0364499 1.18438 + 0.766667 0.0156422 0.0290985 1.18603 + 0.8 0.0145146 0.0227729 1.1809 + 0.833333 0.0110682 0.0184989 1.16955 + 0.866667 0.00620319 0.0173021 1.15522 + 0.9 0.00081971 0.0198421 1.14114 + 0.933333 -0.00418208 0.0253129 1.13054 + 0.966667 -0.00790203 0.0325422 1.12666 + 1.0 -0.00944 0.0403576 1.13272 + endlist + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.618234 -0.104354 -0.779036 -0.116749 + 0.0333333 0.629114 -0.150928 -0.76252 -0.115043 + 0.1 0.694105 -0.258532 -0.671847 -0.104507 + 0.166667 0.80073 -0.37771 -0.464937 -0.0902834 + 0.233333 0.886341 -0.452836 -0.0966423 -0.0809252 + 0.3 0.857551 -0.393944 0.330778 -0.082982 + 0.366667 0.753876 -0.197613 0.626594 -0.0942992 + 0.433333 0.657961 0.0125095 0.752948 -0.108988 + 0.466667 0.628314 0.0920888 0.77249 -0.114781 + 0.5 0.615205 0.149793 0.774006 -0.117758 + 0.533333 0.619795 0.195384 0.760052 -0.117236 + 0.566667 0.639942 0.241211 0.729583 -0.113751 + 0.6 0.674357 0.288268 0.679812 -0.107984 + 0.666667 0.779219 0.381898 0.496962 -0.0930944 + 0.766667 0.905267 0.419487 -0.0672521 -0.0790801 + 0.833333 0.837629 0.276701 -0.470971 -0.0847588 + 0.9 0.715331 0.0480226 -0.697134 -0.0990918 + 0.966667 0.625805 -0.129394 -0.769172 -0.113915 + 1.0 0.606125 -0.185046 -0.773544 -0.118002 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.344861 0.52205 -0.780086 -0.637899 + 0.3 0.335451 0.521195 -0.784747 -0.635513 + 0.8 0.351075 0.522586 -0.77695 -0.639527 + 1.0 0.344861 0.52205 -0.780086 -0.637899 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.999981 0.00356589 0.00498889 -0.74751 + 0.166667 -0.999984 0.00344796 0.00451716 -0.810011 + 0.233333 -0.999985 0.00341844 0.00440007 -0.827091 + 0.3 -0.999985 0.00340755 0.00435633 -0.833636 + 0.366667 -0.999985 0.00341855 0.00439997 -0.827091 + 0.433333 -0.999984 0.00344796 0.00451713 -0.810011 + 0.666667 -0.99998 0.00361844 0.00519883 -0.722575 + 0.733333 -0.999979 0.00365677 0.00535041 -0.705495 + 0.8 -0.999979 0.00367189 0.00541069 -0.69895 + 0.866667 -0.999979 0.00365674 0.0053507 -0.705495 + 0.933333 -0.99998 0.00361859 0.00519877 -0.722575 + 1.0 -0.999981 0.00356476 0.00498486 -0.748036 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.00322336 0.00240608 0.999992 -0.262949 + 1.0 0.00225892 0.00168635 0.999996 -0.262603 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.956873 0.254625 -0.139861 -0.385358 + 0.0333333 -0.962178 0.237136 -0.13409 -0.389852 + 0.0666667 -0.968845 0.21462 -0.1236 -0.390055 + 0.1 -0.975956 0.188632 -0.109217 -0.385486 + 0.166667 -0.989323 0.127706 -0.0702228 -0.367046 + 0.233333 -0.998559 0.0501692 -0.0190304 -0.34589 + 0.3 -0.995871 -0.0789891 0.0447498 -0.334314 + 0.333333 -0.986215 -0.147238 0.075501 -0.33639 + 0.366667 -0.973537 -0.204703 0.1016 -0.34419 + 0.4 -0.961988 -0.244643 0.121366 -0.355408 + 0.433333 -0.955253 -0.263659 0.134071 -0.367167 + 0.466667 -0.954136 -0.264632 0.139977 -0.377464 + 0.5 -0.956868 -0.254641 0.139863 -0.38536 + 0.533333 -0.962174 -0.23715 0.134092 -0.389853 + 0.566667 -0.968843 -0.214629 0.123602 -0.390056 + 0.6 -0.975954 -0.188639 0.109218 -0.385487 + 0.666667 -0.989323 -0.127707 0.0702236 -0.367046 + 0.733333 -0.998559 -0.0501706 0.0190312 -0.34589 + 0.8 -0.995871 0.0789804 -0.0447477 -0.334314 + 0.833333 -0.986218 0.147224 -0.0754981 -0.336389 + 0.866667 -0.973541 0.204686 -0.101598 -0.344188 + 0.9 -0.961993 0.244623 -0.121363 -0.355406 + 0.933333 -0.955259 0.263639 -0.134068 -0.367164 + 0.966667 -0.954142 0.264614 -0.139975 -0.377462 + 1.0 -0.956873 0.254625 -0.139861 -0.385358 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.236084 -0.654653 0.718118 -0.0723005 + 0.0333333 0.267892 -0.649753 0.711376 -0.0710648 + 0.0666667 0.40997 -0.618255 0.670586 -0.0695455 + 0.1 0.604056 -0.544125 0.582274 -0.0698307 + 0.166667 0.897487 -0.305328 0.318264 -0.076726 + 0.2 0.963835 -0.185095 0.191736 -0.0780677 + 0.233333 0.995738 -0.0640758 0.0663305 -0.076106 + 0.3 0.956045 0.20285 -0.211732 -0.0709444 + 0.4 0.626791 0.532721 -0.568632 -0.0714202 + 0.466667 0.327858 0.638755 -0.696061 -0.0724718 + 0.5 0.236091 0.654634 -0.718133 -0.0722985 + 0.533333 0.267898 0.649734 -0.71139 -0.0710631 + 0.566667 0.409978 0.618233 -0.670601 -0.0695441 + 0.6 0.60407 0.5441 -0.582284 -0.0698295 + 0.666667 0.897496 0.305297 -0.318268 -0.076725 + 0.7 0.963841 0.185063 -0.191737 -0.0780673 + 0.733333 0.99574 0.0640441 -0.0663342 -0.0761059 + 0.8 0.956038 -0.202885 0.21173 -0.0709449 + 0.9 0.626779 -0.532745 0.568621 -0.0714217 + 0.966667 0.327849 -0.638775 0.696047 -0.0724734 + 1.0 0.236085 -0.654654 0.718117 -0.0723004 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.032787 -0.591946 0.805311 -0.555887 + 0.0333333 -0.029584 -0.602489 0.797579 -0.539028 + 0.0666667 -0.0251271 -0.617441 0.786216 -0.518228 + 0.133333 -0.0139856 -0.657298 0.753501 -0.472067 + 0.2 -0.00319007 -0.701821 0.712346 -0.431453 + 0.233333 0.000434447 -0.721014 0.692921 -0.417217 + 0.266667 0.0016719 -0.734903 0.678171 -0.408915 + 0.333333 -0.00360705 -0.753708 0.657199 -0.405541 + 0.4 -0.0148832 -0.764282 0.64471 -0.413333 + 0.466667 -0.0259753 -0.76238 0.646609 -0.42943 + 0.533333 -0.0314223 -0.745212 0.666086 -0.451288 + 0.566667 -0.0310003 -0.728448 0.684399 -0.4661 + 0.633333 -0.0270066 -0.681963 0.730888 -0.506799 + 0.7 -0.0235029 -0.638673 0.769119 -0.547766 + 0.733333 -0.0231046 -0.623821 0.781226 -0.562036 + 0.766667 -0.0239934 -0.612933 0.789771 -0.5712 + 0.833333 -0.0282202 -0.596124 0.802396 -0.580199 + 0.9 -0.0327961 -0.586729 0.809119 -0.578181 + 0.966667 -0.0343317 -0.586566 0.809173 -0.566933 + 1.0 -0.0327579 -0.591996 0.805275 -0.555844 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.98947 0.0804127 0.120349 -1.5147 + 1.0 -0.98947 0.0804127 0.120349 -1.5147 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.265104 0.808037 0.526115 -0.515584 + 1.0 0.265104 0.808037 0.526115 -0.515584 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 -1.97686e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0285903 0.00721001 -0.999565 -0.248145 + 1.0 -0.0285778 0.00727315 -0.999565 -0.248233 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.995757 -0.0679482 0.0620601 -0.503255 + 0.133333 -0.995921 -0.0882104 -0.018968 -0.407893 + 0.266667 -0.841606 -0.532381 -0.0909423 -0.382492 + 0.4 -0.869052 -0.485866 -0.0931822 -0.424375 + 0.533333 -0.861912 -0.49853 -0.0926059 -0.412122 + 0.666667 -0.867708 -0.488283 -0.0930741 -0.421983 + 0.8 -0.939038 0.337829 0.0638763 -0.408062 + 1.0 -0.995757 -0.0679482 0.0620601 -0.503255 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.99493 0.0825208 -0.0574939 -0.498798 + 0.133333 0.888503 0.454812 -0.0608999 -0.433219 + 0.266667 0.863563 -0.438522 0.248911 -0.348983 + 0.4 0.888247 -0.381402 0.256026 -0.39184 + 0.533333 0.888074 -0.381838 0.255976 -0.391473 + 0.666667 0.895644 -0.362182 0.258158 -0.408753 + 0.8 0.92165 -0.382845 -0.0631723 -0.390627 + 1.0 0.994929 0.0825211 -0.057494 -0.498796 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.998122 0.00471994 -0.0610699 -1.32334 + 0.133333 0.953541 0.183608 -0.238847 -1.25199 + 0.266667 0.94039 0.199447 0.275476 -1.167 + 0.4 0.894891 -0.0584892 0.442435 -1.20934 + 0.533333 0.895662 -0.0462787 0.442322 -1.30606 + 0.666667 0.893018 -0.0821098 0.442466 -1.05449 + 0.8 0.993374 -0.0457304 0.105432 -1.33659 + 1.0 0.998122 0.00472001 -0.06107 -1.32334 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.793737 0.568817 -0.215475 -0.50327 + 0.133333 0.837089 0.42677 -0.342271 -0.466011 + 0.266667 0.932129 0.34853 0.0982961 -0.594498 + 0.4 0.854909 0.327946 0.401972 -0.630609 + 0.533333 0.782683 -0.339669 0.521567 -0.435833 + 0.666667 0.808171 -0.18779 0.558207 -0.681151 + 0.8 0.909185 -0.340551 0.239598 -0.437528 + 1.0 0.793736 0.568818 -0.215475 -0.50327 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.0337304 0.99716 0.0673433 -0.328482 + 0.133333 0.00816988 0.997467 0.0706556 -0.17344 + 0.266667 -0.136997 0.990262 0.0247411 -0.173279 + 0.4 -0.35153 0.92833 -0.120955 -0.182528 + 0.533333 -0.26174 0.931676 -0.251937 -0.183055 + 0.666667 0.367419 -0.886886 0.280066 -0.19265 + 0.8 0.312135 -0.944982 0.0978789 -0.182297 + 1.0 0.0337217 0.99716 0.0673449 -0.328482 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.975167 -0.208683 -0.0741704 -0.0281631 + 0.133333 1.94936e-006 1.0 3.84518e-007 -0.174532 + 0.266667 -0.268746 0.960944 0.0660498 -0.177878 + 0.4 -0.528688 0.846892 -0.0571209 -0.198728 + 0.533333 0.366199 0.913037 0.179614 -0.194885 + 0.666667 0.111515 0.590039 -0.799636 -1.54857e-006 + 0.8 -0.172742 -0.976854 -0.126162 -0.180456 + 1.0 -0.975174 -0.208652 -0.074162 -0.0281637 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.193723 -0.979189 0.060503 -0.277385 + 0.133333 -1.0 -0.000198005 5.66175e-007 -0.00872544 + 0.266667 -0.0498086 0.998521 -0.0217925 -0.174749 + 0.4 -0.149153 0.9887 -0.0150112 -0.175499 + 0.533333 -0.33417 0.936801 -0.103609 -0.183664 + 0.666667 -0.324782 0.893451 -0.31026 -0.19162 + 0.8 -0.103233 -0.994061 -0.034429 -0.176221 + 1.0 -0.193723 -0.979189 0.0605035 -0.277385 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.0108834 -0.997397 0.0712842 -0.364807 + 0.133333 -0.0497862 -0.998522 0.021782 -0.174754 + 0.266667 -0.0498085 0.998521 -0.0217996 -0.174747 + 0.4 -0.049805 0.998521 -0.0218082 -0.174747 + 0.533333 -0.200528 0.978962 -0.0377109 -0.177085 + 0.666667 -0.10137 0.993071 -0.0594514 -0.175208 + 0.8 -0.0497927 0.998521 -0.0218145 -0.17475 + 1.0 0.0108835 -0.997397 0.071285 -0.364807 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.147215 -0.982262 -0.116141 -0.429021 + 0.133333 -0.0497602 -0.998524 0.0217795 -0.17476 + 0.266667 -0.0497506 -0.998525 0.0217596 -0.174759 + 0.4 -0.0498189 0.998519 -0.021844 -0.174742 + 0.533333 -0.158903 0.987192 -0.0142337 -0.176 + 0.666667 -0.363782 0.914772 -0.175658 -0.187376 + 0.8 -0.214315 0.966372 -0.142104 -0.178284 + 1.0 -0.147215 -0.982262 -0.11614 -0.429021 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.479858 -0.61398 -0.62671 -0.0916043 + 0.133333 -0.0397669 -0.99899 0.020921 -0.174681 + 0.266667 -0.0397531 -0.998991 0.0208965 -0.174681 + 0.4 -0.0397928 -0.998991 0.0208278 -0.174681 + 0.533333 -0.140724 0.990041 0.00404698 -0.175623 + 0.666667 -0.378935 0.917854 -0.118119 -0.186779 + 0.8 -0.299985 0.94233 -0.148403 -0.18172 + 1.0 -0.47986 -0.613981 -0.626707 -0.0916039 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.920606 0.288112 -0.263581 -0.0888533 + 0.133333 -0.00979743 -0.999814 0.0166135 -0.174492 + 0.266667 -0.00977899 -0.999815 0.0165875 -0.174494 + 0.4 -0.00980504 -0.999816 0.016502 -0.174496 + 0.533333 -0.009831 -0.99982 0.0162457 -0.174503 + 0.666667 -0.00996597 0.9998 -0.0173317 -0.174571 + 0.8 -0.198725 0.97744 -0.0715434 -0.176449 + 1.0 0.920607 0.288114 -0.263576 -0.0888531 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.827845 0.544455 -0.135059 -0.141163 + 0.133333 -0.0397917 -0.99899 0.0208497 -0.174344 + 0.266667 -0.0397621 -0.998992 0.0208262 -0.174349 + 0.4 -0.0397566 -0.998994 0.0207406 -0.174356 + 0.533333 -0.0397435 -0.999 0.0204556 -0.174362 + 0.666667 -0.998314 0.0371579 -0.0445851 -0.00700459 + 0.8 -0.440282 0.895585 -0.0638734 -0.190117 + 1.0 -0.827846 0.544456 -0.135054 -0.141163 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim walk_shieldl c_marilithe + + +#NWmax ANIM ASCII +newanim walk_swordl c_marilithe + length 1.0 + transtime 0.25 + animroot lbicep_g + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.00652508 0.0400645 1.1334 + 0.0333333 -0.00361016 0.0475868 1.13919 + 0.0666667 -0.00102914 0.0530576 1.14729 + 0.1 0.0 0.0555976 1.15621 + 0.133333 -0.00162412 0.0544009 1.16514 + 0.166667 -0.00540303 0.0501268 1.17328 + 0.2 -0.00993389 0.0438012 1.17983 + 0.233333 -0.0138138 0.0364499 1.18397 + 0.266667 -0.01564 0.0290985 1.18491 + 0.3 -0.0143562 0.0227729 1.18144 + 0.333333 -0.0105455 0.0184989 1.17397 + 0.366667 -0.0052642 0.0173021 1.1641 + 0.4 0.000431453 0.0198421 1.15343 + 0.433333 0.00548524 0.0253129 1.14357 + 0.466667 0.0088409 0.0325422 1.13614 + 0.5 0.00944221 0.0403576 1.13272 + 0.533333 0.00666964 0.0475868 1.13445 + 0.566667 0.00255103 0.0530576 1.14044 + 0.6 1.2207e-006 0.0555976 1.14924 + 0.633333 0.00106677 0.0544009 1.15946 + 0.666667 0.00477606 0.0501268 1.16967 + 0.7 0.00951669 0.0438012 1.17845 + 0.733333 0.0136762 0.0364499 1.18438 + 0.766667 0.0156422 0.0290985 1.18603 + 0.8 0.0145146 0.0227729 1.1809 + 0.833333 0.0110682 0.0184989 1.16955 + 0.866667 0.00620319 0.0173021 1.15522 + 0.9 0.00081971 0.0198421 1.14114 + 0.933333 -0.00418208 0.0253129 1.13054 + 0.966667 -0.00790203 0.0325422 1.12666 + 1.0 -0.00944 0.0403576 1.13272 + endlist + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.618234 -0.104354 -0.779036 -0.116749 + 0.0333333 0.629114 -0.150928 -0.76252 -0.115043 + 0.1 0.694105 -0.258532 -0.671847 -0.104507 + 0.166667 0.80073 -0.37771 -0.464937 -0.0902834 + 0.233333 0.886341 -0.452836 -0.0966425 -0.0809252 + 0.3 0.857551 -0.393944 0.330778 -0.082982 + 0.366667 0.753876 -0.197613 0.626594 -0.0942992 + 0.433333 0.657961 0.0125094 0.752948 -0.108988 + 0.466667 0.628314 0.0920888 0.77249 -0.114781 + 0.5 0.615205 0.149793 0.774006 -0.117758 + 0.533333 0.619795 0.195384 0.760052 -0.117236 + 0.566667 0.639942 0.241211 0.729583 -0.113751 + 0.6 0.674357 0.288268 0.679812 -0.107984 + 0.666667 0.779219 0.381898 0.496963 -0.0930944 + 0.766667 0.905267 0.419487 -0.0672522 -0.0790801 + 0.833333 0.837629 0.276701 -0.470971 -0.0847588 + 0.9 0.715331 0.0480226 -0.697134 -0.0990918 + 0.966667 0.625805 -0.129394 -0.769172 -0.113915 + 1.0 0.606125 -0.185046 -0.773544 -0.118002 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.344861 0.52205 -0.780086 -0.637899 + 0.3 0.335451 0.521195 -0.784747 -0.635513 + 0.8 0.351075 0.522586 -0.77695 -0.639527 + 1.0 0.344861 0.52205 -0.780086 -0.637899 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.999981 0.00356595 0.00498869 -0.747557 + 0.166667 -0.999984 0.00344805 0.00451719 -0.810011 + 0.233333 -0.999985 0.00341848 0.00440008 -0.827091 + 0.3 -0.999985 0.0034075 0.00435622 -0.833636 + 0.366667 -0.999985 0.00341849 0.00440001 -0.827091 + 0.433333 -0.999984 0.00344797 0.0045172 -0.810011 + 0.666667 -0.99998 0.00361844 0.00519898 -0.722575 + 0.733333 -0.999979 0.00365679 0.00535053 -0.705495 + 0.8 -0.999979 0.00367187 0.00541074 -0.69895 + 0.866667 -0.999979 0.00365678 0.00535054 -0.705495 + 0.933333 -0.99998 0.00361846 0.00519873 -0.722575 + 1.0 -0.999981 0.0035659 0.00498864 -0.747557 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.0 -2.04612e-007 1.0 -0.261799 + 0.566667 -0.0299869 0.00406465 0.999542 -0.269595 + 0.833333 -0.0250673 0.00338094 0.99968 -0.268267 + 1.0 0.00285864 -0.00035341 0.999996 -0.260679 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.956873 0.254625 -0.139861 -0.385358 + 0.0333333 -0.962178 0.237136 -0.13409 -0.389852 + 0.0666667 -0.968845 0.21462 -0.1236 -0.390055 + 0.1 -0.975956 0.188632 -0.109216 -0.385486 + 0.166667 -0.989323 0.127706 -0.0702228 -0.367046 + 0.233333 -0.998559 0.0501692 -0.0190304 -0.34589 + 0.3 -0.995871 -0.078989 0.0447498 -0.334314 + 0.333333 -0.986215 -0.147238 0.0755009 -0.33639 + 0.366667 -0.973537 -0.204703 0.1016 -0.34419 + 0.4 -0.961988 -0.244643 0.121366 -0.355408 + 0.433333 -0.955253 -0.263659 0.134071 -0.367167 + 0.466667 -0.954136 -0.264632 0.139977 -0.377464 + 0.5 -0.956868 -0.254641 0.139863 -0.38536 + 0.533333 -0.962174 -0.23715 0.134092 -0.389853 + 0.566667 -0.968843 -0.214629 0.123602 -0.390056 + 0.6 -0.975954 -0.188639 0.109218 -0.385487 + 0.666667 -0.989323 -0.127707 0.0702236 -0.367046 + 0.733333 -0.998559 -0.0501706 0.0190312 -0.34589 + 0.8 -0.995871 0.0789804 -0.0447477 -0.334314 + 0.833333 -0.986218 0.147224 -0.0754981 -0.336389 + 0.866667 -0.973541 0.204685 -0.101598 -0.344188 + 0.9 -0.961993 0.244623 -0.121363 -0.355406 + 0.933333 -0.955259 0.263639 -0.134068 -0.367164 + 0.966667 -0.954142 0.264614 -0.139975 -0.377462 + 1.0 -0.956873 0.254625 -0.139861 -0.385358 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.236084 -0.654654 0.718118 -0.0723004 + 0.0333333 0.267891 -0.649753 0.711376 -0.0710648 + 0.0666667 0.40997 -0.618255 0.670586 -0.0695455 + 0.1 0.604058 -0.544124 0.582274 -0.0698309 + 0.166667 0.897487 -0.305328 0.318264 -0.0767258 + 0.2 0.963835 -0.185095 0.191736 -0.0780677 + 0.233333 0.995738 -0.0640757 0.0663304 -0.076106 + 0.3 0.956045 0.20285 -0.211732 -0.0709444 + 0.4 0.626792 0.53272 -0.568631 -0.0714204 + 0.466667 0.327858 0.638755 -0.696061 -0.0724718 + 0.5 0.236091 0.654634 -0.718133 -0.0722985 + 0.533333 0.267899 0.649734 -0.71139 -0.0710631 + 0.566667 0.409979 0.618233 -0.670601 -0.0695441 + 0.6 0.60407 0.5441 -0.582284 -0.0698295 + 0.666667 0.897496 0.305297 -0.318268 -0.076725 + 0.7 0.963841 0.185063 -0.191737 -0.0780674 + 0.733333 0.99574 0.064044 -0.0663342 -0.0761059 + 0.8 0.956038 -0.202885 0.21173 -0.0709449 + 0.9 0.62678 -0.532745 0.568621 -0.0714217 + 0.966667 0.327849 -0.638775 0.696048 -0.0724736 + 1.0 0.236086 -0.654654 0.718117 -0.0723004 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.685093 -0.67597 -0.2715 -0.366837 + 0.166667 0.672231 -0.688204 -0.272913 -0.360882 + 0.333333 0.667023 -0.693039 -0.273455 -0.358583 + 0.666667 0.692618 -0.668614 -0.270621 -0.370516 + 0.833333 0.697338 -0.663922 -0.270049 -0.372902 + 1.0 0.685093 -0.67597 -0.2715 -0.366837 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -1.0 2.38965e-006 1.68353e-006 -0.326344 + 0.133333 -1.0 3.84015e-006 2.84398e-006 -0.285726 + 0.233333 -1.0 4.20247e-006 4.79771e-006 -0.263021 + 0.3 -1.0 4.13107e-006 5.08997e-006 -0.257785 + 0.366667 -1.0 4.01302e-006 4.87941e-006 -0.263021 + 0.433333 -1.0 3.89232e-006 2.926e-006 -0.276689 + 0.633333 -1.0 1.65875e-006 1.13934e-006 -0.337616 + 0.733333 -1.0 0.0 0.0 -0.36032 + 0.8 -1.0 0.0 0.0 -0.365557 + 0.866667 -1.0 0.0 0.0 -0.36032 + 0.933333 -1.0 1.62114e-006 1.09016e-006 -0.346653 + 1.0 -1.0 2.16262e-006 1.60035e-006 -0.326344 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.998298 0.00384102 -0.0581876 -0.132209 + 0.0333333 0.997937 0.00420785 -0.0640595 -0.131454 + 0.4 0.999806 0.00126948 -0.0196453 -0.129032 + 0.766667 1.0 -8.19196e-006 0.000126705 -0.131742 + 1.0 0.997928 0.00424086 -0.0641971 -0.132209 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.999889 0.00648195 -0.0134024 -9.43374e-007 + 1.0 0.999863 -0.00238897 0.0163684 -1.01503e-006 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0151331 0.00208465 -0.999883 -0.483162 + 1.0 -0.0151331 0.00211838 -0.999883 -0.48325 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + orientationkey + 0.4 0.666275 -0.0802573 0.741374 -0.089407 + endlist + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.995757 -0.0679482 0.0620601 -0.503255 + 0.133333 -0.995921 -0.0882104 -0.018968 -0.407893 + 0.266667 -0.841606 -0.532381 -0.0909423 -0.382492 + 0.4 -0.869052 -0.485866 -0.0931822 -0.424375 + 0.533333 -0.861912 -0.49853 -0.0926059 -0.412122 + 0.666667 -0.867708 -0.488283 -0.0930741 -0.421983 + 0.8 -0.939038 0.337829 0.0638763 -0.408062 + 1.0 -0.995757 -0.0679482 0.0620601 -0.503255 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.994929 0.0825212 -0.057494 -0.498796 + 0.133333 0.888503 0.454812 -0.0608999 -0.433219 + 0.266667 0.863563 -0.438522 0.248911 -0.348983 + 0.4 0.888247 -0.381402 0.256026 -0.39184 + 0.533333 0.888074 -0.381838 0.255976 -0.391473 + 0.666667 0.895644 -0.362182 0.258158 -0.408753 + 0.8 0.92165 -0.382845 -0.0631722 -0.390627 + 1.0 0.994929 0.0825212 -0.057494 -0.498796 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.998122 0.00472001 -0.06107 -1.32334 + 0.133333 0.953541 0.183608 -0.238847 -1.25199 + 0.266667 0.94039 0.199447 0.275476 -1.167 + 0.4 0.894891 -0.0584891 0.442435 -1.20934 + 0.533333 0.895662 -0.0462787 0.442322 -1.30606 + 0.666667 0.893018 -0.0821098 0.442466 -1.05449 + 0.8 0.993374 -0.0457304 0.105432 -1.33659 + 1.0 0.998122 0.00472 -0.06107 -1.32334 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.793736 0.568818 -0.215475 -0.50327 + 0.133333 0.837089 0.42677 -0.342271 -0.466011 + 0.266667 0.932129 0.34853 0.0982961 -0.594498 + 0.4 0.854909 0.327946 0.401972 -0.630609 + 0.533333 0.782683 -0.339669 0.521567 -0.435833 + 0.666667 0.808171 -0.18779 0.558207 -0.68115 + 0.8 0.909185 -0.340551 0.239598 -0.437528 + 1.0 0.793736 0.568818 -0.215475 -0.50327 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.0337219 0.99716 0.0673447 -0.328482 + 0.133333 0.00816785 0.997467 0.0706551 -0.17344 + 0.266667 -0.136997 0.990262 0.0247415 -0.173279 + 0.4 -0.35153 0.92833 -0.120954 -0.182528 + 0.533333 -0.261741 0.931675 -0.251938 -0.183055 + 0.666667 0.367419 -0.886885 0.280067 -0.19265 + 0.8 0.312135 -0.944982 0.0978794 -0.182297 + 1.0 0.0337216 0.99716 0.0673457 -0.328482 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.975175 -0.208644 -0.0741713 -0.0281638 + 0.133333 1.82328e-006 1.0 -1.33274e-007 -0.174532 + 0.266667 -0.268746 0.960944 0.0660503 -0.177878 + 0.4 -0.528688 0.846892 -0.0571206 -0.198728 + 0.533333 0.366198 0.913038 0.179611 -0.194885 + 0.666667 -0.240656 0.681601 -0.691017 -1.52488e-006 + 0.8 -0.172741 -0.976854 -0.126162 -0.180456 + 1.0 -0.975174 -0.208651 -0.0741597 -0.0281637 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.193723 -0.979189 0.060503 -0.277385 + 0.133333 -1.0 -0.000206942 -7.87861e-006 -0.00872518 + 0.266667 -0.0498086 0.998521 -0.0217924 -0.174749 + 0.4 -0.149153 0.9887 -0.0150107 -0.175499 + 0.533333 -0.334169 0.936801 -0.103612 -0.183664 + 0.666667 -0.324782 0.893452 -0.310258 -0.19162 + 0.8 -0.103232 -0.994061 -0.0344288 -0.176222 + 1.0 -0.193723 -0.979189 0.060504 -0.277385 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.0108834 -0.997397 0.0712841 -0.364807 + 0.133333 -0.0497872 -0.998522 0.0217822 -0.174754 + 0.266667 -0.0498077 0.998521 -0.0218002 -0.174747 + 0.4 -0.0498041 0.998521 -0.0218082 -0.174747 + 0.533333 -0.200529 0.978962 -0.0377138 -0.177085 + 0.666667 -0.10137 0.993071 -0.0594498 -0.175208 + 0.8 -0.0497902 0.998521 -0.0218131 -0.17475 + 1.0 0.0108833 -0.997397 0.0712853 -0.364807 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.147215 -0.982262 -0.116142 -0.429021 + 0.133333 -0.0497615 -0.998524 0.0217788 -0.17476 + 0.266667 -0.0497527 -0.998524 0.0217592 -0.174759 + 0.4 -0.0498192 0.998519 -0.0218427 -0.174742 + 0.533333 -0.158902 0.987192 -0.0142364 -0.176 + 0.666667 -0.363782 0.914772 -0.175656 -0.187376 + 0.8 -0.214314 0.966373 -0.142105 -0.178284 + 1.0 -0.147215 -0.982262 -0.11614 -0.429021 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.479857 -0.61398 -0.626711 -0.0916044 + 0.133333 -0.0397674 -0.99899 0.0209202 -0.174681 + 0.266667 -0.0397531 -0.998991 0.0208962 -0.174681 + 0.4 -0.0397933 -0.998991 0.0208292 -0.174681 + 0.533333 -0.140724 0.990041 0.00404514 -0.175623 + 0.666667 -0.378934 0.917855 -0.118118 -0.186779 + 0.8 -0.299984 0.94233 -0.148404 -0.18172 + 1.0 -0.479859 -0.613982 -0.626707 -0.0916042 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.920606 0.288111 -0.263583 -0.0888536 + 0.133333 -0.00979726 -0.999814 0.0166129 -0.174492 + 0.266667 -0.00977726 -0.999815 0.0165863 -0.174494 + 0.4 -0.00980556 -0.999816 0.0165041 -0.174496 + 0.533333 -0.00983126 -0.99982 0.0162444 -0.174503 + 0.666667 -0.00996679 0.9998 -0.0173314 -0.174571 + 0.8 -0.198724 0.977441 -0.0715451 -0.176449 + 1.0 0.920606 0.288113 -0.263581 -0.0888531 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.827845 0.544454 -0.135061 -0.141163 + 0.133333 -0.039793 -0.99899 0.0208497 -0.174344 + 0.266667 -0.0397627 -0.998992 0.0208251 -0.174349 + 0.4 -0.0397557 -0.998994 0.0207425 -0.174356 + 0.533333 -0.0397452 -0.999 0.0204536 -0.174362 + 0.666667 -0.998314 0.037175 -0.0445787 -0.00700468 + 0.8 -0.440283 0.895584 -0.0638756 -0.190118 + 1.0 -0.827846 0.544455 -0.135056 -0.141163 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim walk_swordl c_marilithe + + +#NWmax ANIM ASCII +newanim walk_swordr c_marilithe + length 1.0 + transtime 0.25 + animroot rbicep_g + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.00652508 0.0400645 1.1334 + 0.0333333 -0.00361016 0.0475868 1.13919 + 0.0666667 -0.00102914 0.0530576 1.14729 + 0.1 0.0 0.0555976 1.15621 + 0.133333 -0.00162412 0.0544009 1.16514 + 0.166667 -0.00540303 0.0501268 1.17328 + 0.2 -0.00993389 0.0438012 1.17983 + 0.233333 -0.0138138 0.0364499 1.18397 + 0.266667 -0.01564 0.0290985 1.18491 + 0.3 -0.0143562 0.0227729 1.18144 + 0.333333 -0.0105455 0.0184989 1.17397 + 0.366667 -0.0052642 0.0173021 1.1641 + 0.4 0.000431453 0.0198421 1.15343 + 0.433333 0.00548524 0.0253129 1.14357 + 0.466667 0.0088409 0.0325422 1.13614 + 0.5 0.00944221 0.0403576 1.13272 + 0.533333 0.00666964 0.0475868 1.13445 + 0.566667 0.00255103 0.0530576 1.14044 + 0.6 1.2207e-006 0.0555976 1.14924 + 0.633333 0.00106677 0.0544009 1.15946 + 0.666667 0.00477606 0.0501268 1.16967 + 0.7 0.00951669 0.0438012 1.17845 + 0.733333 0.0136762 0.0364499 1.18438 + 0.766667 0.0156422 0.0290985 1.18603 + 0.8 0.0145146 0.0227729 1.1809 + 0.833333 0.0110682 0.0184989 1.16955 + 0.866667 0.00620319 0.0173021 1.15522 + 0.9 0.00081971 0.0198421 1.14114 + 0.933333 -0.00418208 0.0253129 1.13054 + 0.966667 -0.00790203 0.0325422 1.12666 + 1.0 -0.00944 0.0403576 1.13272 + endlist + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.618234 -0.104354 -0.779036 -0.116749 + 0.0333333 0.629114 -0.150928 -0.76252 -0.115043 + 0.1 0.694105 -0.258532 -0.671847 -0.104507 + 0.166667 0.80073 -0.37771 -0.464937 -0.0902834 + 0.233333 0.886341 -0.452836 -0.0966425 -0.0809252 + 0.3 0.857551 -0.393944 0.330778 -0.082982 + 0.366667 0.753876 -0.197613 0.626594 -0.0942992 + 0.433333 0.657961 0.0125094 0.752948 -0.108988 + 0.466667 0.628314 0.0920888 0.77249 -0.114781 + 0.5 0.615205 0.149793 0.774006 -0.117758 + 0.533333 0.619795 0.195384 0.760052 -0.117236 + 0.566667 0.639942 0.241211 0.729583 -0.113751 + 0.6 0.674357 0.288268 0.679812 -0.107984 + 0.666667 0.779219 0.381898 0.496963 -0.0930944 + 0.766667 0.905267 0.419487 -0.0672522 -0.0790801 + 0.833333 0.837629 0.276701 -0.470971 -0.0847588 + 0.9 0.715331 0.0480226 -0.697134 -0.0990918 + 0.966667 0.625805 -0.129394 -0.769172 -0.113915 + 1.0 0.606125 -0.185046 -0.773544 -0.118002 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.344861 0.52205 -0.780086 -0.637899 + 0.3 0.335451 0.521195 -0.784747 -0.635513 + 0.8 0.351075 0.522586 -0.77695 -0.639527 + 1.0 0.344861 0.52205 -0.780086 -0.637899 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.999981 0.00356583 0.00498865 -0.747557 + 0.166667 -0.999984 0.00344803 0.00451721 -0.810011 + 0.233333 -0.999985 0.00341854 0.00440002 -0.827092 + 0.3 -0.999985 0.00340757 0.00435628 -0.833636 + 0.366667 -0.999985 0.00341856 0.00439988 -0.827092 + 0.433333 -0.999984 0.003448 0.00451708 -0.810011 + 0.666667 -0.99998 0.00361849 0.00519896 -0.722575 + 0.733333 -0.999979 0.00365678 0.00535056 -0.705495 + 0.8 -0.999979 0.00367194 0.00541058 -0.69895 + 0.866667 -0.999979 0.00365682 0.00535067 -0.705495 + 0.933333 -0.99998 0.00361857 0.00519887 -0.722575 + 1.0 -0.999981 0.00356592 0.0049886 -0.747557 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.0 0.0 1.0 -0.261799 + 0.566667 -0.0299866 0.00406478 0.999542 -0.269595 + 0.833333 -0.0250673 0.00338109 0.99968 -0.268267 + 1.0 0.00285879 -0.000353287 0.999996 -0.260679 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.956873 0.254625 -0.139861 -0.385358 + 0.0333333 -0.962178 0.237136 -0.13409 -0.389852 + 0.0666667 -0.968845 0.21462 -0.1236 -0.390055 + 0.1 -0.975956 0.188632 -0.109216 -0.385486 + 0.166667 -0.989323 0.127706 -0.0702228 -0.367046 + 0.233333 -0.998559 0.0501692 -0.0190304 -0.34589 + 0.3 -0.995871 -0.0789891 0.0447498 -0.334314 + 0.333333 -0.986215 -0.147238 0.0755009 -0.33639 + 0.366667 -0.973537 -0.204703 0.1016 -0.34419 + 0.4 -0.961988 -0.244643 0.121366 -0.355408 + 0.433333 -0.955253 -0.263659 0.134071 -0.367167 + 0.466667 -0.954136 -0.264632 0.139977 -0.377464 + 0.5 -0.956868 -0.254641 0.139863 -0.38536 + 0.533333 -0.962174 -0.23715 0.134092 -0.389853 + 0.566667 -0.968843 -0.214629 0.123602 -0.390056 + 0.6 -0.975954 -0.188639 0.109218 -0.385487 + 0.666667 -0.989323 -0.127707 0.0702236 -0.367046 + 0.733333 -0.998559 -0.0501706 0.0190312 -0.34589 + 0.8 -0.995871 0.0789804 -0.0447477 -0.334314 + 0.833333 -0.986218 0.147224 -0.0754981 -0.336389 + 0.866667 -0.973541 0.204685 -0.101598 -0.344188 + 0.9 -0.961993 0.244623 -0.121363 -0.355406 + 0.933333 -0.955259 0.263639 -0.134068 -0.367164 + 0.966667 -0.954142 0.264614 -0.139975 -0.377462 + 1.0 -0.956873 0.254625 -0.139861 -0.385358 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.236084 -0.654654 0.718118 -0.0723004 + 0.0333333 0.267892 -0.649753 0.711376 -0.0710648 + 0.0666667 0.409971 -0.618255 0.670586 -0.0695455 + 0.1 0.604058 -0.544124 0.582274 -0.0698309 + 0.166667 0.897487 -0.305328 0.318264 -0.0767258 + 0.2 0.963835 -0.185095 0.191736 -0.0780677 + 0.233333 0.995738 -0.0640758 0.0663304 -0.076106 + 0.3 0.956045 0.20285 -0.211732 -0.0709444 + 0.4 0.626792 0.53272 -0.568631 -0.0714203 + 0.466667 0.327859 0.638756 -0.69606 -0.0724719 + 0.5 0.236091 0.654634 -0.718133 -0.0722985 + 0.533333 0.267898 0.649734 -0.71139 -0.0710631 + 0.566667 0.409978 0.618233 -0.670601 -0.0695441 + 0.6 0.60407 0.5441 -0.582284 -0.0698295 + 0.666667 0.897496 0.305297 -0.318268 -0.076725 + 0.7 0.963841 0.185063 -0.191737 -0.0780673 + 0.733333 0.99574 0.0640441 -0.0663342 -0.0761059 + 0.8 0.956038 -0.202885 0.21173 -0.0709449 + 0.9 0.62678 -0.532745 0.568621 -0.0714217 + 0.966667 0.327849 -0.638775 0.696048 -0.0724736 + 1.0 0.236084 -0.654654 0.718117 -0.0723004 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.685093 -0.67597 -0.2715 -0.366837 + 0.166667 0.672231 -0.688204 -0.272913 -0.360882 + 0.333333 0.667023 -0.693039 -0.273455 -0.358583 + 0.666667 0.692618 -0.668614 -0.270621 -0.370516 + 0.833333 0.697338 -0.663922 -0.270049 -0.372902 + 1.0 0.685093 -0.67597 -0.2715 -0.366837 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -1.0 2.16954e-006 1.50361e-006 -0.326344 + 0.133333 -1.0 3.907e-006 2.90904e-006 -0.285726 + 0.233333 -1.0 4.33969e-006 4.85457e-006 -0.263021 + 0.3 -1.0 4.09241e-006 5.05603e-006 -0.257785 + 0.366667 -1.0 3.95774e-006 4.90048e-006 -0.263021 + 0.433333 -1.0 3.94874e-006 2.90525e-006 -0.276689 + 0.633333 -1.0 1.65848e-006 1.14674e-006 -0.337616 + 0.733333 -1.0 0.0 0.0 -0.36032 + 0.8 -1.0 0.0 0.0 -0.365557 + 0.866667 -1.0 0.0 0.0 -0.36032 + 0.933333 -1.0 1.68004e-006 1.10388e-006 -0.346653 + 1.0 -1.0 2.39308e-006 1.72583e-006 -0.326344 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.998298 0.00384091 -0.0581876 -0.132209 + 0.0333333 0.997937 0.00420752 -0.0640594 -0.131454 + 0.4 0.999806 0.00126915 -0.0196453 -0.129032 + 0.766667 1.0 -8.19573e-006 0.000126718 -0.131742 + 1.0 0.997928 0.00424077 -0.064197 -0.132209 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0151331 0.00208472 -0.999883 -0.483162 + 1.0 -0.0151331 0.00211838 -0.999883 -0.48325 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.995757 -0.0679482 0.0620601 -0.503255 + 0.133333 -0.995921 -0.0882104 -0.018968 -0.407893 + 0.266667 -0.841606 -0.532381 -0.0909423 -0.382492 + 0.4 -0.869052 -0.485866 -0.0931822 -0.424375 + 0.533333 -0.861912 -0.49853 -0.0926059 -0.412122 + 0.666667 -0.867708 -0.488283 -0.0930741 -0.421983 + 0.8 -0.939038 0.337829 0.0638763 -0.408062 + 1.0 -0.995757 -0.0679482 0.0620601 -0.503255 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.994929 0.0825211 -0.057494 -0.498796 + 0.133333 0.888503 0.454812 -0.0608999 -0.433219 + 0.266667 0.863563 -0.438522 0.248911 -0.348983 + 0.4 0.888247 -0.381402 0.256026 -0.39184 + 0.533333 0.888074 -0.381838 0.255976 -0.391473 + 0.666667 0.895644 -0.362182 0.258158 -0.408753 + 0.8 0.92165 -0.382845 -0.0631723 -0.390627 + 1.0 0.994929 0.0825211 -0.057494 -0.498796 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.998122 0.00472 -0.06107 -1.32334 + 0.133333 0.953541 0.183608 -0.238847 -1.25199 + 0.266667 0.94039 0.199447 0.275476 -1.167 + 0.4 0.894891 -0.0584891 0.442435 -1.20934 + 0.533333 0.895662 -0.0462787 0.442322 -1.30606 + 0.666667 0.893018 -0.0821098 0.442466 -1.05449 + 0.8 0.993374 -0.0457304 0.105432 -1.33659 + 1.0 0.998122 0.00472002 -0.06107 -1.32334 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.793737 0.568817 -0.215475 -0.503271 + 0.133333 0.837089 0.426769 -0.342271 -0.466011 + 0.266667 0.932129 0.34853 0.0982961 -0.594498 + 0.4 0.854909 0.327946 0.401972 -0.630609 + 0.533333 0.782683 -0.339669 0.521567 -0.435833 + 0.666667 0.808171 -0.18779 0.558207 -0.68115 + 0.8 0.909185 -0.340551 0.239598 -0.437528 + 1.0 0.793736 0.568818 -0.215475 -0.50327 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.0337299 0.997159 0.067344 -0.328482 + 0.133333 0.00816727 0.997467 0.0706565 -0.17344 + 0.266667 -0.136997 0.990262 0.0247409 -0.173279 + 0.4 -0.351532 0.928329 -0.120955 -0.182528 + 0.533333 -0.261741 0.931675 -0.251937 -0.183055 + 0.666667 0.367419 -0.886885 0.280067 -0.192651 + 0.8 0.312135 -0.944982 0.0978798 -0.182297 + 1.0 0.0337211 0.99716 0.0673457 -0.328482 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.975175 -0.208648 -0.0741636 -0.0281642 + 0.133333 2.5564e-006 1.0 -5.98857e-007 -0.174532 + 0.266667 -0.268746 0.960944 0.0660495 -0.177878 + 0.4 -0.528688 0.846892 -0.0571204 -0.198728 + 0.533333 0.366198 0.913038 0.179612 -0.194885 + 0.666667 0.0234608 0.679686 -0.733128 -1.27907e-006 + 0.8 -0.172741 -0.976854 -0.126161 -0.180456 + 1.0 -0.975175 -0.208647 -0.0741616 -0.0281637 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.193724 -0.979189 0.0605032 -0.277385 + 0.133333 -1.0 -0.000184729 -1.06269e-005 -0.0087252 + 0.266667 -0.0498086 0.998521 -0.0217922 -0.174749 + 0.4 -0.149153 0.9887 -0.0150101 -0.175499 + 0.533333 -0.334169 0.936801 -0.10361 -0.183664 + 0.666667 -0.324782 0.893452 -0.310258 -0.19162 + 0.8 -0.103232 -0.994061 -0.0344272 -0.176222 + 1.0 -0.193723 -0.979189 0.0605036 -0.277385 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.0108832 -0.997397 0.0712839 -0.364807 + 0.133333 -0.0497863 -0.998522 0.021782 -0.174754 + 0.266667 -0.0498085 0.998521 -0.0217994 -0.174747 + 0.4 -0.0498057 0.998521 -0.0218073 -0.174747 + 0.533333 -0.200529 0.978962 -0.0377112 -0.177085 + 0.666667 -0.10137 0.993071 -0.0594499 -0.175208 + 0.8 -0.0497897 0.998522 -0.0218126 -0.17475 + 1.0 0.0108833 -0.997397 0.0712849 -0.364807 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.147215 -0.982262 -0.116141 -0.429021 + 0.133333 -0.0497599 -0.998524 0.0217807 -0.17476 + 0.266667 -0.0497514 -0.998525 0.0217599 -0.174759 + 0.4 -0.0498204 0.998519 -0.0218423 -0.174742 + 0.533333 -0.158903 0.987192 -0.0142337 -0.176 + 0.666667 -0.363782 0.914772 -0.175657 -0.187376 + 0.8 -0.214314 0.966373 -0.142104 -0.178284 + 1.0 -0.147216 -0.982262 -0.11614 -0.429021 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.479856 -0.61398 -0.626711 -0.0916043 + 0.133333 -0.0397661 -0.99899 0.0209228 -0.174681 + 0.266667 -0.0397534 -0.998991 0.0208968 -0.174681 + 0.4 -0.0397927 -0.998991 0.0208305 -0.174681 + 0.533333 -0.140723 0.990041 0.00404716 -0.175623 + 0.666667 -0.378934 0.917855 -0.118119 -0.186779 + 0.8 -0.299984 0.94233 -0.148404 -0.18172 + 1.0 -0.479858 -0.613982 -0.626707 -0.0916039 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.920606 0.288112 -0.263582 -0.0888535 + 0.133333 -0.00979601 -0.999814 0.0166161 -0.174492 + 0.266667 -0.00977903 -0.999815 0.0165867 -0.174494 + 0.4 -0.00980605 -0.999816 0.0165053 -0.174496 + 0.533333 -0.00983092 -0.99982 0.0162463 -0.174502 + 0.666667 -0.0099672 0.9998 -0.0173318 -0.174571 + 0.8 -0.198724 0.977441 -0.0715454 -0.17645 + 1.0 0.920607 0.288114 -0.263579 -0.088853 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.827845 0.544456 -0.135058 -0.141163 + 0.133333 -0.0397914 -0.99899 0.0208529 -0.174344 + 0.266667 -0.0397631 -0.998992 0.0208253 -0.174349 + 0.4 -0.0397559 -0.998994 0.0207435 -0.174356 + 0.533333 -0.0397436 -0.999 0.020456 -0.174362 + 0.666667 -0.998314 0.0371612 -0.0445933 -0.00700485 + 0.8 -0.440281 0.895585 -0.0638756 -0.190117 + 1.0 -0.827846 0.544454 -0.135055 -0.141163 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim walk_swordr c_marilithe + + +#NWmax ANIM ASCII +newanim walk_bowl c_marilithe + length 1.0 + transtime 0.25 + animroot lbicep_g + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.00652508 0.0400645 1.1334 + 0.0333333 -0.00361016 0.0475868 1.13919 + 0.0666667 -0.00102914 0.0530576 1.14729 + 0.1 0.0 0.0555976 1.15621 + 0.133333 -0.00162412 0.0544009 1.16514 + 0.166667 -0.00540303 0.0501268 1.17328 + 0.2 -0.00993389 0.0438012 1.17983 + 0.233333 -0.0138138 0.0364499 1.18397 + 0.266667 -0.01564 0.0290985 1.18491 + 0.3 -0.0143562 0.0227729 1.18144 + 0.333333 -0.0105455 0.0184989 1.17397 + 0.366667 -0.0052642 0.0173021 1.1641 + 0.4 0.000431453 0.0198421 1.15343 + 0.433333 0.00548524 0.0253129 1.14357 + 0.466667 0.0088409 0.0325422 1.13614 + 0.5 0.00944221 0.0403576 1.13272 + 0.533333 0.00666964 0.0475868 1.13445 + 0.566667 0.00255103 0.0530576 1.14044 + 0.6 1.2207e-006 0.0555976 1.14924 + 0.633333 0.00106677 0.0544009 1.15946 + 0.666667 0.00477606 0.0501268 1.16967 + 0.7 0.00951669 0.0438012 1.17845 + 0.733333 0.0136762 0.0364499 1.18438 + 0.766667 0.0156422 0.0290985 1.18603 + 0.8 0.0145146 0.0227729 1.1809 + 0.833333 0.0110682 0.0184989 1.16955 + 0.866667 0.00620319 0.0173021 1.15522 + 0.9 0.00081971 0.0198421 1.14114 + 0.933333 -0.00418208 0.0253129 1.13054 + 0.966667 -0.00790203 0.0325422 1.12666 + 1.0 -0.00944 0.0403576 1.13272 + endlist + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.618234 -0.104354 -0.779036 -0.116749 + 0.0333333 0.629114 -0.150928 -0.76252 -0.115043 + 0.1 0.694105 -0.258532 -0.671847 -0.104507 + 0.166667 0.80073 -0.37771 -0.464937 -0.0902834 + 0.233333 0.886341 -0.452836 -0.0966425 -0.0809252 + 0.3 0.857551 -0.393944 0.330778 -0.082982 + 0.366667 0.753876 -0.197613 0.626594 -0.0942992 + 0.433333 0.657961 0.0125094 0.752948 -0.108988 + 0.466667 0.628314 0.0920888 0.77249 -0.114781 + 0.5 0.615205 0.149793 0.774006 -0.117758 + 0.533333 0.619795 0.195384 0.760052 -0.117236 + 0.566667 0.639942 0.241211 0.729583 -0.113751 + 0.6 0.674357 0.288268 0.679812 -0.107984 + 0.666667 0.779219 0.381898 0.496963 -0.0930944 + 0.766667 0.905267 0.419487 -0.0672522 -0.0790801 + 0.833333 0.837629 0.276701 -0.470971 -0.0847588 + 0.9 0.715331 0.0480226 -0.697134 -0.0990918 + 0.966667 0.625805 -0.129394 -0.769172 -0.113915 + 1.0 0.606125 -0.185046 -0.773544 -0.118002 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.344861 0.52205 -0.780086 -0.637899 + 0.3 0.335451 0.521195 -0.784747 -0.635513 + 0.8 0.351075 0.522586 -0.77695 -0.639527 + 1.0 0.344861 0.52205 -0.780086 -0.637899 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.999981 0.00356585 0.00498837 -0.747557 + 0.166667 -0.999984 0.00344804 0.00451717 -0.810011 + 0.233333 -0.999985 0.00341847 0.00440013 -0.827091 + 0.3 -0.999985 0.00340752 0.00435624 -0.833636 + 0.366667 -0.999985 0.00341855 0.00439992 -0.827091 + 0.433333 -0.999984 0.00344796 0.00451716 -0.810011 + 0.666667 -0.99998 0.00361855 0.00519901 -0.722575 + 0.733333 -0.999979 0.00365679 0.0053505 -0.705495 + 0.8 -0.999979 0.00367189 0.00541062 -0.69895 + 0.866667 -0.999979 0.00365674 0.00535066 -0.705495 + 0.933333 -0.99998 0.00361857 0.00519881 -0.722575 + 1.0 -0.999981 0.0035659 0.00498864 -0.747557 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -2.11996e-007 0.0 1.0 -0.261799 + 0.566667 -0.0299868 0.00406455 0.999542 -0.269595 + 0.833333 -0.0250671 0.00338111 0.99968 -0.268267 + 1.0 0.00285872 -0.000353325 0.999996 -0.260679 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.956873 0.254625 -0.139861 -0.385358 + 0.0333333 -0.962178 0.237136 -0.13409 -0.389852 + 0.0666667 -0.968845 0.21462 -0.1236 -0.390055 + 0.1 -0.975956 0.188632 -0.109216 -0.385486 + 0.166667 -0.989323 0.127706 -0.0702228 -0.367046 + 0.233333 -0.998559 0.0501692 -0.0190304 -0.34589 + 0.3 -0.995871 -0.0789891 0.0447498 -0.334314 + 0.333333 -0.986215 -0.147238 0.075501 -0.33639 + 0.366667 -0.973537 -0.204703 0.1016 -0.34419 + 0.4 -0.961988 -0.244643 0.121366 -0.355408 + 0.433333 -0.955253 -0.263659 0.134071 -0.367167 + 0.466667 -0.954136 -0.264632 0.139977 -0.377464 + 0.5 -0.956868 -0.254641 0.139863 -0.38536 + 0.533333 -0.962174 -0.23715 0.134092 -0.389853 + 0.566667 -0.968843 -0.214629 0.123602 -0.390056 + 0.6 -0.975954 -0.188639 0.109218 -0.385487 + 0.666667 -0.989323 -0.127707 0.0702236 -0.367046 + 0.733333 -0.998559 -0.0501706 0.0190312 -0.34589 + 0.8 -0.995871 0.0789804 -0.0447477 -0.334314 + 0.833333 -0.986218 0.147224 -0.0754981 -0.336389 + 0.866667 -0.973541 0.204685 -0.101598 -0.344188 + 0.9 -0.961993 0.244623 -0.121363 -0.355406 + 0.933333 -0.955259 0.263639 -0.134068 -0.367164 + 0.966667 -0.954142 0.264614 -0.139975 -0.377462 + 1.0 -0.956873 0.254625 -0.139861 -0.385358 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.236084 -0.654654 0.718118 -0.0723004 + 0.0333333 0.267891 -0.649753 0.711376 -0.0710648 + 0.0666667 0.40997 -0.618255 0.670586 -0.0695455 + 0.1 0.604058 -0.544124 0.582273 -0.0698309 + 0.166667 0.897487 -0.305328 0.318264 -0.0767258 + 0.2 0.963835 -0.185095 0.191736 -0.0780677 + 0.233333 0.995738 -0.0640758 0.0663305 -0.076106 + 0.3 0.956045 0.20285 -0.211732 -0.0709444 + 0.4 0.626792 0.53272 -0.568631 -0.0714204 + 0.466667 0.327858 0.638756 -0.69606 -0.0724718 + 0.5 0.236091 0.654634 -0.718133 -0.0722985 + 0.533333 0.267898 0.649734 -0.71139 -0.0710631 + 0.566667 0.409978 0.618233 -0.670601 -0.0695441 + 0.6 0.60407 0.5441 -0.582284 -0.0698295 + 0.666667 0.897496 0.305297 -0.318268 -0.0767249 + 0.7 0.963841 0.185063 -0.191737 -0.0780673 + 0.733333 0.99574 0.064044 -0.0663342 -0.0761059 + 0.8 0.956038 -0.202885 0.21173 -0.0709449 + 0.9 0.626779 -0.532745 0.568621 -0.0714217 + 0.966667 0.327848 -0.638775 0.696048 -0.0724735 + 1.0 0.236084 -0.654654 0.718117 -0.0723004 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.685093 -0.67597 -0.2715 -0.366837 + 0.166667 0.672231 -0.688204 -0.272913 -0.360882 + 0.333333 0.667023 -0.693039 -0.273455 -0.358583 + 0.666667 0.692618 -0.668614 -0.270621 -0.370516 + 0.833333 0.697338 -0.663922 -0.270049 -0.372902 + 1.0 0.685093 -0.67597 -0.2715 -0.366837 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -1.0 2.23503e-006 1.54281e-006 -0.326344 + 0.133333 -1.0 3.83759e-006 2.7811e-006 -0.285726 + 0.233333 -1.0 4.38431e-006 4.85344e-006 -0.263021 + 0.3 -1.0 4.02272e-006 5.10159e-006 -0.257785 + 0.366667 -1.0 4.12804e-006 4.91179e-006 -0.263021 + 0.433333 -1.0 3.8977e-006 2.93652e-006 -0.276689 + 0.633333 -1.0 1.70611e-006 1.12014e-006 -0.337616 + 0.733333 -1.0 0.0 0.0 -0.36032 + 0.8 -1.0 0.0 0.0 -0.365557 + 0.866667 -1.0 0.0 0.0 -0.36032 + 0.933333 -1.0 1.70443e-006 1.11017e-006 -0.346653 + 1.0 -1.0 2.38863e-006 1.62269e-006 -0.326344 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.998298 0.00384049 -0.0581878 -0.132209 + 0.0333333 0.997937 0.00420753 -0.0640595 -0.131454 + 0.4 0.999806 0.00126939 -0.0196453 -0.129032 + 0.766667 1.0 -8.3357e-006 0.000126652 -0.131742 + 1.0 0.997928 0.0042408 -0.064197 -0.132209 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0151331 0.00208466 -0.999883 -0.483162 + 1.0 -0.0151331 0.00211834 -0.999883 -0.48325 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + orientationkey + 0.733333 0.666275 -0.0802573 0.741374 -0.089407 + endlist + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.995757 -0.0679484 0.0620605 -0.503253 + 0.133333 -0.995921 -0.0882104 -0.018968 -0.407893 + 0.266667 -0.841606 -0.532381 -0.0909423 -0.382492 + 0.4 -0.869052 -0.485866 -0.0931822 -0.424375 + 0.533333 -0.861912 -0.49853 -0.0926059 -0.412122 + 0.666667 -0.867708 -0.488283 -0.0930741 -0.421983 + 0.8 -0.939038 0.337829 0.0638763 -0.408062 + 1.0 -0.995757 -0.0679482 0.0620601 -0.503255 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.994929 0.0825211 -0.057494 -0.498796 + 0.133333 0.888503 0.454812 -0.0608999 -0.433219 + 0.266667 0.863563 -0.438522 0.248911 -0.348983 + 0.4 0.888247 -0.381402 0.256026 -0.39184 + 0.533333 0.888074 -0.381838 0.255976 -0.391473 + 0.666667 0.895644 -0.362182 0.258158 -0.408753 + 0.8 0.92165 -0.382845 -0.0631722 -0.390627 + 1.0 0.994929 0.0825212 -0.057494 -0.498796 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.998122 0.00471999 -0.06107 -1.32334 + 0.133333 0.953541 0.183608 -0.238847 -1.25199 + 0.266667 0.94039 0.199447 0.275476 -1.167 + 0.4 0.894891 -0.0584891 0.442435 -1.20934 + 0.533333 0.895662 -0.0462788 0.442322 -1.30606 + 0.666667 0.893018 -0.0821098 0.442466 -1.05449 + 0.8 0.993374 -0.0457304 0.105432 -1.33659 + 1.0 0.998122 0.00472001 -0.06107 -1.32334 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.793736 0.568818 -0.215475 -0.50327 + 0.133333 0.837089 0.42677 -0.342271 -0.466011 + 0.266667 0.932129 0.34853 0.0982961 -0.594498 + 0.4 0.854909 0.327946 0.401972 -0.630609 + 0.533333 0.782683 -0.339668 0.521567 -0.435833 + 0.666667 0.808171 -0.18779 0.558207 -0.68115 + 0.8 0.909185 -0.340551 0.239598 -0.437528 + 1.0 0.793736 0.568818 -0.215475 -0.50327 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.0337214 0.99716 0.0673449 -0.328482 + 0.133333 0.00816861 0.997467 0.0706559 -0.17344 + 0.266667 -0.136998 0.990262 0.0247407 -0.173279 + 0.4 -0.35153 0.92833 -0.120955 -0.182528 + 0.533333 -0.261743 0.931675 -0.251938 -0.183056 + 0.666667 0.367417 -0.886886 0.280067 -0.19265 + 0.8 0.312136 -0.944982 0.0978795 -0.182297 + 1.0 0.0337215 0.99716 0.0673451 -0.328482 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.97517 -0.208671 -0.0741686 -0.0281608 + 0.133333 1.77711e-006 1.0 0.0 -0.174532 + 0.266667 -0.268746 0.960944 0.0660499 -0.177878 + 0.4 -0.528688 0.846892 -0.0571213 -0.198728 + 0.533333 0.366198 0.913038 0.179611 -0.194885 + 0.666667 0.153622 0.713109 -0.684015 -1.35985e-006 + 0.8 -0.17274 -0.976854 -0.12616 -0.180456 + 1.0 -0.975174 -0.208649 -0.0741646 -0.0281639 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.193723 -0.979189 0.0605041 -0.277385 + 0.133333 -1.0 -0.00020934 -1.98555e-005 -0.00872507 + 0.266667 -0.0498077 0.998521 -0.0217927 -0.174749 + 0.4 -0.149154 0.9887 -0.0150113 -0.175499 + 0.533333 -0.334168 0.936801 -0.103611 -0.183664 + 0.666667 -0.324782 0.893452 -0.310257 -0.19162 + 0.8 -0.103233 -0.994061 -0.0344278 -0.176222 + 1.0 -0.193724 -0.979189 0.0605033 -0.277385 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.0108828 -0.997397 0.0712855 -0.364807 + 0.133333 -0.0497854 -0.998522 0.0217817 -0.174754 + 0.266667 -0.0498098 0.998521 -0.0218 -0.174747 + 0.4 -0.0498056 0.998521 -0.0218082 -0.174747 + 0.533333 -0.200529 0.978962 -0.0377134 -0.177085 + 0.666667 -0.101371 0.993071 -0.0594484 -0.175208 + 0.8 -0.0497909 0.998521 -0.0218135 -0.17475 + 1.0 0.0108834 -0.997397 0.0712844 -0.364807 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.147215 -0.982262 -0.11614 -0.429021 + 0.133333 -0.0497604 -0.998524 0.0217804 -0.17476 + 0.266667 -0.0497525 -0.998524 0.0217596 -0.174759 + 0.4 -0.0498207 0.998519 -0.021843 -0.174742 + 0.533333 -0.158904 0.987191 -0.0142353 -0.176 + 0.666667 -0.363782 0.914772 -0.175655 -0.187376 + 0.8 -0.214314 0.966373 -0.142104 -0.178284 + 1.0 -0.147215 -0.982262 -0.116141 -0.429021 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.479856 -0.61398 -0.62671 -0.0916043 + 0.133333 -0.0397669 -0.99899 0.0209215 -0.174681 + 0.266667 -0.0397536 -0.998991 0.0208964 -0.174681 + 0.4 -0.0397925 -0.998991 0.0208288 -0.174681 + 0.533333 -0.140725 0.99004 0.00404577 -0.175623 + 0.666667 -0.378934 0.917855 -0.118117 -0.186779 + 0.8 -0.299985 0.94233 -0.148403 -0.18172 + 1.0 -0.479855 -0.613982 -0.62671 -0.0916042 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.920605 0.288113 -0.263584 -0.0888532 + 0.133333 -0.00979616 -0.999814 0.016615 -0.174492 + 0.266667 -0.00977786 -0.999815 0.0165856 -0.174494 + 0.4 -0.0098072 -0.999816 0.0165034 -0.174496 + 0.533333 -0.00983111 -0.99982 0.0162446 -0.174502 + 0.666667 -0.00996613 0.9998 -0.0173301 -0.174571 + 0.8 -0.198724 0.977441 -0.0715436 -0.17645 + 1.0 0.920607 0.288111 -0.263582 -0.0888532 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.827846 0.544454 -0.135059 -0.141163 + 0.133333 -0.039793 -0.99899 0.0208513 -0.174344 + 0.266667 -0.0397638 -0.998992 0.0208245 -0.174349 + 0.4 -0.039757 -0.998994 0.0207417 -0.174356 + 0.533333 -0.0397452 -0.999 0.0204544 -0.174361 + 0.666667 -0.998316 0.0371569 -0.0445553 -0.00700458 + 0.8 -0.440281 0.895585 -0.0638739 -0.190117 + 1.0 -0.827846 0.544455 -0.135058 -0.141163 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim walk_bowl c_marilithe + + +#NWmax ANIM ASCII +newanim run c_marilithe + length 0.8 + transtime 0.25 + animroot rootdummy + event 0.366667 snd_footstep + event 0.766667 snd_footstep + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.0135294 0.0365053 1.10808 + 0.0333333 -0.0172876 0.0225341 1.09964 + 0.0666667 -0.0194955 0.00856301 1.09315 + 0.1 -0.0202941 2.56177e-005 1.09055 + 0.133333 -0.0194955 0.00259148 1.09315 + 0.166667 -0.0172876 0.0153233 1.09964 + 0.233333 -0.00977124 0.0522792 1.11653 + 0.266667 -0.00502656 0.0670391 1.12302 + 0.3 0.0 0.0730106 1.12562 + 0.333333 0.00502655 0.0676024 1.12302 + 0.366667 0.00977124 0.0540819 1.11653 + 0.433333 0.0172876 0.0189287 1.09964 + 0.466667 0.0194955 0.00540825 1.09315 + 0.5 0.0202941 0.0 1.09055 + 0.533333 0.0194955 0.0059716 1.09315 + 0.566667 0.0172876 0.0207315 1.09964 + 0.633333 0.00977123 0.0576874 1.11653 + 0.666667 0.00502655 0.0704192 1.12302 + 0.7 0.0 0.0730106 1.12562 + 0.733333 -0.00502656 0.0644476 1.12302 + 0.766667 -0.00977125 0.0504765 1.11653 + 0.8 -0.0135294 0.0365053 1.10808 + endlist + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.969146 0.0406686 -0.243109 -0.341849 + 0.0333333 0.987852 0.0238101 -0.153565 -0.35825 + 0.0666667 0.997425 0.00834579 -0.0712243 -0.377411 + 0.1 0.999979 -0.00560997 0.00324666 -0.398936 + 0.133333 0.997393 -0.0180689 0.0698606 -0.422462 + 0.166667 0.99121 -0.0291204 0.129053 -0.447675 + 0.2 0.984849 -0.0358091 0.169674 -0.433214 + 0.233333 0.976187 -0.0428709 0.212651 -0.419531 + 0.266667 0.964855 -0.0502932 0.257926 -0.406703 + 0.3 0.950464 -0.0580504 0.305365 -0.394814 + 0.333333 0.956572 -0.0528176 0.286671 -0.376983 + 0.366667 0.96282 -0.0470491 0.266016 -0.359319 + 0.4 0.969146 -0.0406672 0.243109 -0.341849 + 0.433333 0.987852 -0.0238088 0.153565 -0.35825 + 0.466667 0.997425 -0.00834457 0.0712243 -0.377411 + 0.5 0.999979 0.0056111 -0.00324675 -0.398936 + 0.533333 0.997393 0.01807 -0.0698606 -0.422462 + 0.566667 0.99121 0.0291215 -0.129053 -0.447675 + 0.6 0.984849 0.0358102 -0.169674 -0.433214 + 0.633333 0.976187 0.042872 -0.212651 -0.419531 + 0.666667 0.964855 0.0502943 -0.257926 -0.406703 + 0.7 0.950464 0.0580516 -0.305365 -0.394814 + 0.733333 0.956572 0.0528188 -0.286671 -0.376983 + 0.766667 0.96282 0.0470503 -0.266016 -0.35932 + 0.8 0.969146 0.0406686 -0.243109 -0.341849 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.576645 0.816663 0.0232769 -0.185268 + 0.166667 0.659211 0.687789 -0.303952 -0.195386 + 0.266667 0.908347 0.33498 -0.250389 -0.257558 + 0.366667 0.959045 0.211425 -0.188499 -0.161266 + 0.6 -0.853541 0.377664 -0.358939 -0.445489 + 0.7 -0.857496 0.456705 -0.236899 -0.346266 + 0.8 -0.576645 0.816663 0.0232768 -0.185268 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.999997 0.000157643 -0.00250839 -1.47974 + 0.0333333 -0.999982 0.00215254 0.00559579 -1.37401 + 0.0666667 -0.999868 0.00395689 0.0157414 -1.24277 + 0.1 -0.999584 0.00550091 0.0283152 -1.12777 + 0.133333 -0.999072 0.00720507 0.0424598 -1.0562 + 0.166667 -0.999994 0.00101567 -0.00333754 -1.01438 + 0.2 -0.999998 -0.000936423 0.00182791 -0.971622 + 0.233333 -0.999954 -0.000209822 0.009633 -0.964955 + 0.266667 -0.999853 0.000555348 0.0171401 -0.967284 + 0.3 -0.999712 0.00152059 0.0239606 -0.985334 + 0.333333 -0.999967 0.00799169 0.00108467 -1.01239 + 0.366667 -0.999994 0.00100455 -0.00332669 -1.01874 + 0.4 -0.999778 -0.00600503 -0.0202167 -1.08129 + 0.433333 -0.998788 -0.0128678 -0.0475048 -1.12971 + 0.466667 -0.997132 -0.0258362 -0.0711313 -1.19088 + 0.5 -0.994941 -0.0437941 -0.0904103 -1.2577 + 0.533333 -0.997427 -0.0394485 -0.0598564 -1.31355 + 0.566667 -0.998896 -0.0340132 -0.0324144 -1.36691 + 0.6 -0.999997 0.000186394 -0.00253627 -1.45831 + 0.633333 -0.999937 -0.00227607 -0.0110245 -1.49978 + 0.666667 -0.999808 -0.0046889 -0.0190067 -1.52549 + 0.7 -0.99962 -0.00695375 -0.0266878 -1.53871 + 0.733333 -0.999884 -0.00297698 -0.0149331 -1.53328 + 0.766667 -0.999997 0.000110988 -0.00246342 -1.51512 + 0.8 -0.999997 0.000157633 -0.00250836 -1.47974 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.0 0.0 0.0 -1.78814e-007 + 0.8 0.976564 0.0412283 -0.211241 -2.73143e-007 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.781498 -0.124835 0.611291 -0.252339 + 0.233333 -0.978016 -0.0405988 0.204538 -0.300982 + 0.433333 -0.993187 -0.0121175 -0.115899 -0.168838 + 0.633333 -0.960995 -0.0531995 0.271401 -0.28022 + 0.8 -0.781498 -0.124835 0.611291 -0.252339 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.735798 0.0522873 -0.675179 -0.209726 + 0.433333 -0.972854 0.017868 -0.230727 -0.158871 + 0.8 -0.735798 0.0522873 -0.675179 -0.209726 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.796235 -0.374058 0.47549 -0.383557 + 0.2 -0.827005 -0.317687 0.46383 -0.591051 + 0.366667 -0.92652 -0.285506 0.245046 -0.600834 + 0.466667 -0.733318 -0.54253 0.409763 -0.375321 + 0.7 0.854226 -0.351753 0.382841 -0.457354 + 0.766667 0.855678 -0.368637 0.363212 -0.433601 + 0.8 0.796235 -0.374058 0.47549 -0.383557 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.996728 -0.0384144 -0.0711144 -1.06017 + 0.266667 -0.997605 -0.0376383 -0.0580361 -1.30439 + 0.5 -0.997931 -0.0372135 -0.052432 -1.46165 + 0.8 -0.996139 -0.0321767 -0.0816796 -1.06112 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.0371968 -0.943422 -0.329502 -4.77637e-006 + 0.8 -0.0358359 -0.944265 -0.327229 -4.78974e-006 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.968095 -0.23194 -0.0948502 -0.327632 + 0.0333333 0.952549 -0.277495 -0.125085 -0.27023 + 0.0666667 0.917179 -0.356574 -0.177871 -0.206848 + 0.1 0.820276 -0.50094 -0.276056 -0.144457 + 0.133333 0.47933 -0.750217 -0.455431 -0.0944148 + 0.166667 -0.306806 -0.792504 -0.527075 -0.0873505 + 0.2 -0.737656 -0.547811 -0.394672 -0.123593 + 0.233333 -0.856218 -0.410219 -0.314025 -0.162153 + 0.266667 -0.901481 -0.337453 -0.271031 -0.194304 + 0.3 -0.912601 -0.31574 -0.259746 -0.206444 + 0.333333 -0.912056 -0.315355 -0.262118 -0.206546 + 0.366667 -0.882554 -0.364425 -0.29714 -0.180677 + 0.4 -0.684614 -0.58058 -0.440716 -0.116867 + 0.433333 0.247382 -0.797861 -0.549746 -0.0882036 + 0.466667 0.836892 -0.465633 -0.287746 -0.156791 + 0.5 0.936229 -0.306828 -0.171264 -0.245462 + 0.533333 0.961233 -0.244867 -0.126775 -0.314418 + 0.566667 0.970145 -0.217376 -0.107544 -0.359198 + 0.6 0.973315 -0.206335 -0.100416 -0.38124 + 0.633333 0.975226 -0.199228 -0.0961357 -0.397095 + 0.666667 0.976045 -0.195895 -0.0946637 -0.405296 + 0.7 0.975284 -0.198247 -0.0975704 -0.400448 + 0.733333 0.973205 -0.20506 -0.104027 -0.386008 + 0.766667 0.969121 -0.217914 -0.115404 -0.360961 + 0.8 0.962514 -0.236954 -0.131981 -0.329046 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.995757 -0.0679482 0.0620601 -0.503255 + 0.133333 -0.995921 -0.0882104 -0.018968 -0.407893 + 0.233333 -0.841606 -0.532381 -0.0909423 -0.382492 + 0.333333 -0.869052 -0.485866 -0.0931822 -0.424375 + 0.433333 -0.861912 -0.49853 -0.0926059 -0.412122 + 0.533333 -0.867708 -0.488283 -0.0930741 -0.421983 + 0.633333 -0.939038 0.337829 0.0638763 -0.408062 + 0.8 -0.995757 -0.0679482 0.0620601 -0.503255 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.994929 0.0825211 -0.057494 -0.498796 + 0.133333 0.888503 0.454812 -0.0608999 -0.433219 + 0.233333 0.863563 -0.438522 0.248911 -0.348983 + 0.333333 0.888247 -0.381402 0.256026 -0.39184 + 0.433333 0.888074 -0.381838 0.255976 -0.391473 + 0.533333 0.895644 -0.362182 0.258158 -0.408753 + 0.633333 0.92165 -0.382845 -0.0631722 -0.390627 + 0.8 0.994929 0.0825212 -0.057494 -0.498796 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.998122 0.00472001 -0.06107 -1.32334 + 0.133333 0.953541 0.183608 -0.238847 -1.25199 + 0.233333 0.94039 0.199447 0.275476 -1.167 + 0.333333 0.894891 -0.0584891 0.442435 -1.20934 + 0.433333 0.895662 -0.0462787 0.442322 -1.30606 + 0.533333 0.893018 -0.0821098 0.442466 -1.05449 + 0.633333 0.993374 -0.0457304 0.105432 -1.33659 + 0.8 0.998122 0.00472001 -0.0610701 -1.32334 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.793737 0.568817 -0.215475 -0.503271 + 0.133333 0.837089 0.426769 -0.342271 -0.466011 + 0.233333 0.932129 0.34853 0.0982962 -0.594498 + 0.333333 0.854909 0.327946 0.401972 -0.630609 + 0.433333 0.782683 -0.339669 0.521567 -0.435833 + 0.533333 0.808171 -0.18779 0.558207 -0.68115 + 0.633333 0.909185 -0.340551 0.239598 -0.437528 + 0.8 0.793736 0.568818 -0.215475 -0.50327 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.0337258 0.99716 0.0673443 -0.328482 + 0.133333 0.00816799 0.997467 0.0706554 -0.17344 + 0.233333 -0.136997 0.990262 0.0247411 -0.173279 + 0.333333 -0.35153 0.92833 -0.120955 -0.182528 + 0.433333 -0.261742 0.931675 -0.251937 -0.183055 + 0.533333 0.367417 -0.886886 0.280066 -0.192651 + 0.633333 0.312137 -0.944981 0.0978801 -0.182297 + 0.8 0.0337211 0.99716 0.0673454 -0.328482 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.975167 -0.208683 -0.0741642 -0.028163 + 0.133333 1.87945e-006 1.0 0.0 -0.174532 + 0.233333 -0.268746 0.960944 0.0660501 -0.177878 + 0.333333 -0.528688 0.846892 -0.0571202 -0.198728 + 0.433333 0.366197 0.913038 0.179614 -0.194885 + 0.533333 0.00676776 0.709785 -0.704386 -1.27001e-006 + 0.633333 -0.172742 -0.976854 -0.12616 -0.180456 + 0.8 -0.975174 -0.208651 -0.0741604 -0.0281637 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.193723 -0.979189 0.0605029 -0.277385 + 0.133333 -1.0 -0.000192612 -1.80727e-006 -0.00872519 + 0.233333 -0.0498087 0.998521 -0.0217923 -0.174749 + 0.333333 -0.149154 0.9887 -0.01501 -0.175499 + 0.433333 -0.33417 0.936801 -0.103608 -0.183664 + 0.533333 -0.324782 0.893452 -0.310258 -0.19162 + 0.633333 -0.103234 -0.994061 -0.0344271 -0.176222 + 0.8 -0.193723 -0.979189 0.0605035 -0.277385 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.0108835 -0.997397 0.0712842 -0.364807 + 0.133333 -0.0497849 -0.998522 0.021782 -0.174754 + 0.233333 -0.0498079 0.998521 -0.0218002 -0.174747 + 0.333333 -0.0498052 0.998521 -0.0218078 -0.174747 + 0.433333 -0.200526 0.978962 -0.0377096 -0.177085 + 0.533333 -0.10137 0.993071 -0.0594477 -0.175208 + 0.633333 -0.0497925 0.998521 -0.0218127 -0.17475 + 0.8 0.0108832 -0.997397 0.0712848 -0.364807 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.147215 -0.982262 -0.116141 -0.429021 + 0.133333 -0.0497605 -0.998524 0.0217788 -0.17476 + 0.233333 -0.0497524 -0.998525 0.0217598 -0.174759 + 0.333333 -0.0498205 0.998519 -0.021842 -0.174742 + 0.433333 -0.158902 0.987192 -0.014232 -0.176 + 0.533333 -0.363783 0.914772 -0.175654 -0.187376 + 0.633333 -0.214315 0.966372 -0.142103 -0.178284 + 0.8 -0.147216 -0.982262 -0.11614 -0.429021 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.479856 -0.61398 -0.626711 -0.0916044 + 0.133333 -0.0397673 -0.99899 0.02092 -0.174681 + 0.233333 -0.0397529 -0.998991 0.0208967 -0.174681 + 0.333333 -0.0397931 -0.998991 0.0208296 -0.174681 + 0.433333 -0.140724 0.990041 0.00404902 -0.175623 + 0.533333 -0.378933 0.917855 -0.118117 -0.186779 + 0.633333 -0.299985 0.94233 -0.148402 -0.18172 + 0.8 -0.479858 -0.613983 -0.626707 -0.091604 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.920606 0.288114 -0.263583 -0.0888533 + 0.133333 -0.00979613 -0.999814 0.016613 -0.174492 + 0.233333 -0.00977774 -0.999815 0.0165857 -0.174494 + 0.333333 -0.0098069 -0.999816 0.0165041 -0.174496 + 0.433333 -0.00982975 -0.99982 0.0162482 -0.174503 + 0.533333 -0.00996627 0.9998 -0.0173301 -0.174571 + 0.633333 -0.198724 0.977441 -0.0715424 -0.17645 + 0.8 0.920608 0.288112 -0.263577 -0.0888533 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.827845 0.544456 -0.135059 -0.141163 + 0.133333 -0.0397923 -0.99899 0.0208496 -0.174344 + 0.233333 -0.0397642 -0.998992 0.0208241 -0.174349 + 0.333333 -0.0397572 -0.998994 0.0207421 -0.174356 + 0.433333 -0.0397439 -0.999 0.0204583 -0.174361 + 0.533333 -0.998316 0.0371538 -0.0445585 -0.00700483 + 0.633333 -0.440282 0.895585 -0.0638725 -0.190118 + 0.8 -0.827846 0.544455 -0.135056 -0.141163 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim run c_marilithe + + +#NWmax ANIM ASCII +newanim run_shieldl c_marilithe + length 0.8 + transtime 0.25 + animroot lbicep_g + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.0135294 0.0365053 1.10808 + 0.0333333 -0.0172876 0.0225341 1.09964 + 0.0666667 -0.0194955 0.00856301 1.09315 + 0.1 -0.0202941 2.56177e-005 1.09055 + 0.133333 -0.0194955 0.00259148 1.09315 + 0.166667 -0.0172876 0.0153233 1.09964 + 0.233333 -0.00977124 0.0522792 1.11653 + 0.266667 -0.00502656 0.0670391 1.12302 + 0.3 0.0 0.0730106 1.12562 + 0.333333 0.00502655 0.0676024 1.12302 + 0.366667 0.00977124 0.0540819 1.11653 + 0.433333 0.0172876 0.0189287 1.09964 + 0.466667 0.0194955 0.00540825 1.09315 + 0.5 0.0202941 0.0 1.09055 + 0.533333 0.0194955 0.0059716 1.09315 + 0.566667 0.0172876 0.0207315 1.09964 + 0.633333 0.00977123 0.0576874 1.11653 + 0.666667 0.00502655 0.0704192 1.12302 + 0.7 0.0 0.0730106 1.12562 + 0.733333 -0.00502656 0.0644476 1.12302 + 0.766667 -0.00977125 0.0504765 1.11653 + 0.8 -0.0135294 0.0365053 1.10808 + endlist + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.969146 0.0406686 -0.243109 -0.341849 + 0.0333333 0.987852 0.0238101 -0.153565 -0.35825 + 0.0666667 0.997425 0.00834577 -0.0712243 -0.377411 + 0.1 0.999979 -0.00560999 0.00324667 -0.398936 + 0.133333 0.997393 -0.0180689 0.0698606 -0.422462 + 0.166667 0.99121 -0.0291204 0.129053 -0.447675 + 0.2 0.984849 -0.0358091 0.169674 -0.433214 + 0.233333 0.976187 -0.0428709 0.212651 -0.419531 + 0.266667 0.964855 -0.0502932 0.257926 -0.406703 + 0.3 0.950464 -0.0580504 0.305365 -0.394814 + 0.333333 0.956572 -0.0528176 0.286671 -0.376983 + 0.366667 0.96282 -0.0470491 0.266016 -0.359319 + 0.4 0.969146 -0.0406672 0.243109 -0.341849 + 0.433333 0.987852 -0.0238088 0.153565 -0.35825 + 0.466667 0.997425 -0.00834457 0.0712243 -0.377411 + 0.5 0.999979 0.0056111 -0.00324673 -0.398936 + 0.533333 0.997393 0.01807 -0.0698606 -0.422462 + 0.566667 0.99121 0.0291215 -0.129053 -0.447675 + 0.6 0.984849 0.0358102 -0.169674 -0.433214 + 0.633333 0.976187 0.042872 -0.212651 -0.419531 + 0.666667 0.964855 0.0502943 -0.257926 -0.406703 + 0.7 0.950464 0.0580516 -0.305365 -0.394814 + 0.733333 0.956572 0.0528188 -0.286671 -0.376983 + 0.766667 0.96282 0.0470503 -0.266016 -0.35932 + 0.8 0.969146 0.0406686 -0.243109 -0.341849 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.775161 0.612354 -0.155398 -0.39166 + 0.1 -0.77095 0.574006 -0.275959 -0.458041 + 0.3 0.264586 0.631603 -0.728747 -0.30442 + 0.4 0.773986 0.424302 -0.470015 -0.372097 + 0.5 0.830071 0.474569 -0.292859 -0.321122 + 0.566667 0.619375 0.763571 -0.182574 -0.239828 + 0.7 -0.32969 0.942104 -0.0611933 -0.248459 + 0.8 -0.775161 0.612354 -0.155398 -0.39166 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.999828 0.00726818 0.0170899 -0.197337 + 0.1 -0.999928 0.00529122 0.0107755 -0.305979 + 0.166667 -0.999973 0.00387058 0.00623866 -0.503666 + 0.4 -0.99998 0.00353272 0.00515986 -0.593787 + 0.566667 -0.999958 0.00443435 0.00803925 -0.401206 + 0.633333 -0.999927 0.00530974 0.0108351 -0.304405 + 0.8 -0.999828 0.00726813 0.0170899 -0.197337 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -0.0724601 0.447797 0.891194 -0.214826 + 0.5 -0.0667463 0.482631 0.873277 -0.219335 + 0.8 -0.0724601 0.447797 0.891194 -0.214826 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.781498 -0.124835 0.611291 -0.252339 + 0.233333 -0.978016 -0.0405988 0.204538 -0.300982 + 0.433333 -0.993187 -0.0121175 -0.115899 -0.168838 + 0.633333 -0.960995 -0.0531995 0.271401 -0.28022 + 0.8 -0.781498 -0.124835 0.611291 -0.252339 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.735798 0.0522873 -0.675179 -0.209726 + 0.433333 -0.972854 0.017868 -0.230727 -0.158871 + 0.8 -0.735798 0.0522873 -0.675179 -0.209726 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.0739381 -0.979385 0.187984 -0.391365 + 0.5 -0.766744 -0.554809 0.32294 -0.381043 + 0.8 0.073938 -0.979385 0.187984 -0.391365 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.966408 0.126943 0.223476 -1.56738 + 0.8 -0.966408 0.126943 0.223476 -1.56738 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.437457 0.312836 -0.843069 -0.561545 + 0.8 -0.43732 0.312693 -0.843193 -0.56132 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.998029 0.0623086 -0.00744677 -6.17994e-007 + 0.8 0.999139 -0.0407347 0.00785245 -1.23455e-006 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0151331 0.00236497 -0.999883 -0.483898 + 0.8 -0.0151333 0.00239169 -0.999883 -0.483969 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.995757 -0.0679482 0.0620601 -0.503255 + 0.133333 -0.995921 -0.0882104 -0.018968 -0.407893 + 0.233333 -0.841606 -0.532381 -0.0909423 -0.382492 + 0.333333 -0.869052 -0.485866 -0.0931822 -0.424375 + 0.433333 -0.861912 -0.49853 -0.0926059 -0.412122 + 0.533333 -0.867708 -0.488283 -0.0930741 -0.421983 + 0.633333 -0.939038 0.337829 0.0638763 -0.408062 + 0.8 -0.995757 -0.0679482 0.0620601 -0.503255 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.99493 0.0825204 -0.0574937 -0.4988 + 0.133333 0.888503 0.454812 -0.0608999 -0.433219 + 0.233333 0.863563 -0.438522 0.248911 -0.348983 + 0.333333 0.888247 -0.381402 0.256026 -0.39184 + 0.433333 0.888074 -0.381838 0.255976 -0.391473 + 0.533333 0.895644 -0.362182 0.258158 -0.408753 + 0.633333 0.92165 -0.382845 -0.0631722 -0.390627 + 0.8 0.994929 0.0825211 -0.057494 -0.498796 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.998122 0.00471995 -0.06107 -1.32334 + 0.133333 0.953541 0.183608 -0.238847 -1.25199 + 0.233333 0.94039 0.199447 0.275476 -1.167 + 0.333333 0.894891 -0.0584891 0.442435 -1.20934 + 0.433333 0.895662 -0.0462787 0.442322 -1.30606 + 0.533333 0.893018 -0.0821098 0.442466 -1.05449 + 0.633333 0.993374 -0.0457304 0.105432 -1.33659 + 0.8 0.998122 0.00472 -0.06107 -1.32334 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.793736 0.568818 -0.215475 -0.50327 + 0.133333 0.837089 0.42677 -0.342271 -0.466011 + 0.233333 0.932129 0.34853 0.0982962 -0.594498 + 0.333333 0.854909 0.327946 0.401972 -0.630609 + 0.433333 0.782683 -0.339669 0.521567 -0.435833 + 0.533333 0.808171 -0.18779 0.558207 -0.68115 + 0.633333 0.909185 -0.340551 0.239598 -0.437528 + 0.8 0.793736 0.568818 -0.215475 -0.50327 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.0337213 0.99716 0.0673448 -0.328482 + 0.133333 0.00816882 0.997467 0.0706563 -0.17344 + 0.233333 -0.136997 0.990263 0.0247415 -0.173279 + 0.333333 -0.35153 0.92833 -0.120956 -0.182528 + 0.433333 -0.261742 0.931675 -0.251937 -0.183055 + 0.533333 0.367419 -0.886885 0.280068 -0.19265 + 0.633333 0.312135 -0.944982 0.0978791 -0.182297 + 0.8 0.0337216 0.99716 0.0673454 -0.328482 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.975168 -0.208681 -0.0741652 -0.0281633 + 0.133333 1.74613e-006 1.0 -2.04105e-007 -0.174532 + 0.233333 -0.268745 0.960944 0.0660506 -0.177878 + 0.333333 -0.528688 0.846892 -0.0571218 -0.198728 + 0.433333 0.366198 0.913038 0.179612 -0.194885 + 0.533333 -0.0648774 0.76145 -0.644969 -1.41867e-006 + 0.633333 -0.172742 -0.976854 -0.126162 -0.180456 + 0.8 -0.975175 -0.20865 -0.0741548 -0.0281642 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.193724 -0.979189 0.060503 -0.277385 + 0.133333 -1.0 -0.00018962 -2.65967e-005 -0.00872513 + 0.233333 -0.0498092 0.998521 -0.0217918 -0.17475 + 0.333333 -0.149153 0.9887 -0.0150116 -0.175499 + 0.433333 -0.334169 0.936801 -0.103611 -0.183664 + 0.533333 -0.324782 0.893452 -0.310258 -0.19162 + 0.633333 -0.103232 -0.994061 -0.0344279 -0.176222 + 0.8 -0.193724 -0.979189 0.0605044 -0.277385 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.0108833 -0.997397 0.0712843 -0.364807 + 0.133333 -0.0497844 -0.998522 0.0217821 -0.174754 + 0.233333 -0.0498081 0.998521 -0.0217989 -0.174747 + 0.333333 -0.0498045 0.998521 -0.0218078 -0.174747 + 0.433333 -0.200529 0.978962 -0.0377117 -0.177085 + 0.533333 -0.101371 0.993071 -0.0594481 -0.175208 + 0.633333 -0.0497914 0.998521 -0.0218135 -0.17475 + 0.8 0.0108834 -0.997397 0.0712854 -0.364807 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.147215 -0.982262 -0.116141 -0.429021 + 0.133333 -0.0497592 -0.998524 0.0217794 -0.17476 + 0.233333 -0.0497512 -0.998525 0.02176 -0.174759 + 0.333333 -0.0498206 0.998519 -0.021843 -0.174742 + 0.433333 -0.158903 0.987192 -0.0142336 -0.176 + 0.533333 -0.363782 0.914772 -0.175655 -0.187376 + 0.633333 -0.214314 0.966373 -0.142103 -0.178284 + 0.8 -0.147216 -0.982262 -0.116141 -0.429021 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.479857 -0.61398 -0.62671 -0.0916043 + 0.133333 -0.0397668 -0.99899 0.0209216 -0.174681 + 0.233333 -0.0397538 -0.998991 0.0208969 -0.174681 + 0.333333 -0.0397936 -0.998991 0.0208286 -0.174681 + 0.433333 -0.140724 0.990041 0.00404793 -0.175623 + 0.533333 -0.378933 0.917855 -0.118117 -0.186779 + 0.633333 -0.299985 0.94233 -0.148402 -0.18172 + 0.8 -0.479859 -0.613981 -0.626708 -0.0916043 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.920606 0.288113 -0.263583 -0.0888531 + 0.133333 -0.00979523 -0.999814 0.0166147 -0.174492 + 0.233333 -0.00977645 -0.999815 0.0165871 -0.174494 + 0.333333 -0.00980485 -0.999816 0.0165031 -0.174496 + 0.433333 -0.00982981 -0.99982 0.016247 -0.174503 + 0.533333 -0.00996614 0.9998 -0.0173301 -0.174571 + 0.633333 -0.198725 0.977441 -0.0715421 -0.176449 + 0.8 0.920607 0.288111 -0.263581 -0.0888532 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.827845 0.544455 -0.135058 -0.141163 + 0.133333 -0.039792 -0.99899 0.0208518 -0.174344 + 0.233333 -0.039763 -0.998992 0.0208259 -0.174349 + 0.333333 -0.039756 -0.998994 0.0207416 -0.174356 + 0.433333 -0.0397449 -0.999 0.0204563 -0.174362 + 0.533333 -0.998315 0.0371664 -0.0445528 -0.00700467 + 0.633333 -0.440282 0.895585 -0.0638717 -0.190117 + 0.8 -0.827846 0.544454 -0.135058 -0.141163 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim run_shieldl c_marilithe + + +#NWmax ANIM ASCII +newanim run_swordl c_marilithe + length 0.8 + transtime 0.25 + animroot lbicep_g + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.0135294 0.0365053 1.10808 + 0.0333333 -0.0172876 0.0225341 1.09964 + 0.0666667 -0.0194955 0.00856301 1.09315 + 0.1 -0.0202941 0.0 1.09055 + 0.133333 -0.0194955 0.00259148 1.09315 + 0.166667 -0.0172876 0.0153233 1.09964 + 0.233333 -0.00977124 0.0522792 1.11653 + 0.266667 -0.00502656 0.0670391 1.12302 + 0.3 0.0 0.0730106 1.12562 + 0.333333 0.00502655 0.0676024 1.12302 + 0.366667 0.00977124 0.0540819 1.11653 + 0.433333 0.0172699 0.0190302 1.09969 + 0.466667 0.0194858 0.00547178 1.09318 + 0.5 0.0202941 2.96032e-007 1.09055 + 0.533333 0.0195052 0.00590206 1.09312 + 0.566667 0.0173052 0.0206217 1.09959 + 0.633333 0.00977123 0.0576874 1.11653 + 0.666667 0.00502655 0.0704192 1.12302 + 0.7 0.0 0.0730106 1.12562 + 0.733333 -0.00502656 0.0644476 1.12302 + 0.766667 -0.00977125 0.0504765 1.11653 + 0.8 -0.0135294 0.0365053 1.10808 + endlist + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.969146 0.0406686 -0.243109 -0.341849 + 0.0333333 0.987852 0.0238101 -0.153565 -0.35825 + 0.0666667 0.997425 0.00834577 -0.0712243 -0.377411 + 0.1 0.999979 -0.00560999 0.00324666 -0.398936 + 0.133333 0.997393 -0.0180689 0.0698606 -0.422462 + 0.166667 0.99121 -0.0291204 0.129053 -0.447675 + 0.2 0.984849 -0.0358091 0.169674 -0.433214 + 0.233333 0.976187 -0.0428709 0.212651 -0.419531 + 0.266667 0.964855 -0.0502932 0.257926 -0.406703 + 0.3 0.950464 -0.0580504 0.305365 -0.394814 + 0.333333 0.956572 -0.0528176 0.286671 -0.376983 + 0.366667 0.96282 -0.0470491 0.266016 -0.359319 + 0.4 0.969146 -0.0406672 0.243109 -0.341849 + 0.433333 0.987852 -0.0238088 0.153565 -0.35825 + 0.466667 0.997425 -0.00834457 0.0712243 -0.377411 + 0.5 0.999979 0.0056111 -0.00324673 -0.398936 + 0.533333 0.997393 0.01807 -0.0698606 -0.422462 + 0.566667 0.99121 0.0291215 -0.129053 -0.447675 + 0.6 0.984849 0.0358102 -0.169674 -0.433214 + 0.633333 0.976187 0.042872 -0.212651 -0.419531 + 0.666667 0.964855 0.0502943 -0.257926 -0.406703 + 0.7 0.950464 0.0580516 -0.305365 -0.394814 + 0.733333 0.956572 0.0528188 -0.286671 -0.376983 + 0.766667 0.96282 0.0470503 -0.266016 -0.35932 + 0.8 0.969146 0.0406686 -0.243109 -0.341849 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.775161 0.612354 -0.155398 -0.39166 + 0.1 -0.77095 0.574006 -0.275959 -0.458041 + 0.3 0.264586 0.631603 -0.728747 -0.30442 + 0.4 0.773986 0.424302 -0.470015 -0.372097 + 0.5 0.830071 0.474569 -0.292859 -0.321122 + 0.566667 0.619375 0.763571 -0.182574 -0.239828 + 0.7 -0.32969 0.942104 -0.0611934 -0.248459 + 0.8 -0.775161 0.612354 -0.155398 -0.39166 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.999828 0.00726803 0.0170898 -0.197337 + 0.1 -0.999928 0.00529115 0.0107755 -0.305979 + 0.166667 -0.999973 0.00387063 0.00623869 -0.503666 + 0.4 -0.99998 0.00353273 0.00515983 -0.593787 + 0.566667 -0.999958 0.00443433 0.0080392 -0.401206 + 0.633333 -0.999927 0.00530976 0.0108351 -0.304405 + 0.8 -0.999828 0.0072682 0.0170899 -0.197337 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -0.0724602 0.447797 0.891194 -0.214826 + 0.5 -0.0667463 0.482631 0.873277 -0.219335 + 0.8 -0.0724602 0.447797 0.891194 -0.214826 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.781498 -0.124835 0.611291 -0.252339 + 0.233333 -0.978016 -0.0405988 0.204538 -0.300982 + 0.433333 -0.993187 -0.0121175 -0.115899 -0.168838 + 0.633333 -0.960995 -0.0531995 0.271401 -0.28022 + 0.8 -0.781498 -0.124835 0.611291 -0.252339 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.735798 0.0522873 -0.675179 -0.209726 + 0.433333 -0.972854 0.017868 -0.230727 -0.158871 + 0.8 -0.735798 0.0522873 -0.675179 -0.209726 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.00783531 -0.911133 0.412038 -0.274896 + 0.0666667 0.039651 -0.967398 0.250138 -0.276986 + 0.166667 -0.33167 -0.939932 -0.0807581 -0.283825 + 0.266667 -0.558729 -0.824536 -0.0892329 -0.366965 + 0.3 -0.607087 -0.782924 -0.135925 -0.388765 + 0.4 -0.750426 -0.659824 -0.0386286 -0.529915 + 0.5 -0.777689 -0.626945 0.0462601 -0.564775 + 0.633333 -0.445795 -0.863344 0.23644 -0.337095 + 0.7 -0.109816 -0.916452 0.384781 -0.297895 + 0.733333 0.0803941 -0.919918 0.38378 -0.286265 + 0.8 0.00783426 -0.911133 0.412038 -0.274895 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -1.0 -5.23459e-007 7.15042e-006 -0.427963 + 0.0666667 -1.0 -3.64696e-007 6.68988e-006 -0.449229 + 0.133333 -1.0 -6.42723e-007 7.58065e-006 -0.398043 + 0.233333 -1.0 -7.32528e-007 7.95226e-006 -0.37786 + 0.4 -1.0 -1.16506e-006 9.49871e-006 -0.314446 + 0.466667 -1.0 -5.03929e-007 7.23564e-006 -0.416279 + 0.566667 -1.0 0.0 5.41589e-006 -0.566311 + 0.733333 -1.0 -1.62405e-007 5.9152e-006 -0.516931 + 0.8 -1.0 -5.0527e-007 7.10939e-006 -0.427963 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.905913 -0.345582 -0.244734 -0.188292 + 0.8 -0.905913 -0.345582 -0.244734 -0.188292 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0151221 -0.0482318 -0.998722 -0.379522 + 0.8 -0.015122 -0.0482318 -0.998722 -0.379522 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.995757 -0.0679482 0.0620601 -0.503255 + 0.133333 -0.995921 -0.0882104 -0.018968 -0.407893 + 0.233333 -0.841606 -0.532381 -0.0909423 -0.382492 + 0.333333 -0.869052 -0.485866 -0.0931822 -0.424375 + 0.433333 -0.861912 -0.49853 -0.0926059 -0.412122 + 0.533333 -0.867708 -0.488283 -0.0930741 -0.421983 + 0.633333 -0.939038 0.337829 0.0638763 -0.408062 + 0.8 -0.995757 -0.0679482 0.0620601 -0.503255 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.994929 0.0825211 -0.057494 -0.498796 + 0.133333 0.888503 0.454812 -0.0608999 -0.433219 + 0.233333 0.863563 -0.438522 0.248911 -0.348983 + 0.333333 0.888247 -0.381402 0.256026 -0.39184 + 0.433333 0.888074 -0.381838 0.255976 -0.391473 + 0.533333 0.895644 -0.362182 0.258158 -0.408753 + 0.633333 0.92165 -0.382845 -0.0631722 -0.390627 + 0.8 0.994929 0.0825211 -0.057494 -0.498796 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.998122 0.00472 -0.06107 -1.32334 + 0.133333 0.953541 0.183608 -0.238847 -1.25199 + 0.233333 0.94039 0.199447 0.275476 -1.167 + 0.333333 0.894891 -0.0584892 0.442435 -1.20934 + 0.433333 0.895662 -0.0462787 0.442322 -1.30606 + 0.533333 0.893018 -0.0821098 0.442466 -1.05449 + 0.633333 0.993374 -0.0457304 0.105432 -1.33659 + 0.8 0.998122 0.00472 -0.06107 -1.32334 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.793737 0.568817 -0.215475 -0.503271 + 0.133333 0.837089 0.42677 -0.342271 -0.466011 + 0.233333 0.932129 0.34853 0.0982961 -0.594498 + 0.333333 0.854909 0.327946 0.401972 -0.630609 + 0.433333 0.782683 -0.339668 0.521567 -0.435833 + 0.533333 0.808171 -0.18779 0.558207 -0.681151 + 0.633333 0.909185 -0.340551 0.239598 -0.437528 + 0.8 0.793736 0.568818 -0.215475 -0.50327 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.0337273 0.99716 0.0673445 -0.328482 + 0.133333 0.00816818 0.997467 0.0706559 -0.17344 + 0.233333 -0.136997 0.990263 0.0247409 -0.173279 + 0.333333 -0.35153 0.92833 -0.120955 -0.182528 + 0.433333 -0.261742 0.931675 -0.251938 -0.183056 + 0.533333 0.367418 -0.886886 0.280066 -0.192651 + 0.633333 0.312136 -0.944982 0.0978798 -0.182297 + 0.8 0.0337214 0.99716 0.0673457 -0.328482 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.975174 -0.208651 -0.0741664 -0.0281639 + 0.133333 2.45845e-006 1.0 -8.50872e-007 -0.174532 + 0.233333 -0.268745 0.960944 0.0660494 -0.177878 + 0.333333 -0.528689 0.846892 -0.0571203 -0.198728 + 0.433333 0.366197 0.913039 0.179611 -0.194885 + 0.533333 0.215693 0.586503 -0.780699 -1.48175e-006 + 0.633333 -0.17274 -0.976854 -0.126161 -0.180456 + 0.8 -0.975175 -0.208649 -0.0741576 -0.028164 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.193724 -0.979189 0.0605033 -0.277385 + 0.133333 -1.0 -0.00017758 -1.11324e-005 -0.00872481 + 0.233333 -0.0498089 0.998521 -0.0217925 -0.174749 + 0.333333 -0.149153 0.9887 -0.0150103 -0.175499 + 0.433333 -0.334169 0.936801 -0.103611 -0.183664 + 0.533333 -0.324783 0.893451 -0.31026 -0.19162 + 0.633333 -0.103234 -0.994061 -0.0344283 -0.176221 + 0.8 -0.193724 -0.979189 0.0605032 -0.277385 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.0108832 -0.997397 0.071284 -0.364807 + 0.133333 -0.0497854 -0.998522 0.0217823 -0.174754 + 0.233333 -0.0498088 0.998521 -0.0217996 -0.174747 + 0.333333 -0.0498057 0.998521 -0.0218076 -0.174747 + 0.433333 -0.200528 0.978962 -0.0377127 -0.177085 + 0.533333 -0.10137 0.993071 -0.0594503 -0.175208 + 0.633333 -0.0497908 0.998521 -0.0218131 -0.17475 + 0.8 0.0108834 -0.997397 0.0712849 -0.364807 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.147215 -0.982262 -0.116141 -0.429021 + 0.133333 -0.0497589 -0.998524 0.0217786 -0.17476 + 0.233333 -0.0497529 -0.998524 0.0217597 -0.174759 + 0.333333 -0.0498197 0.998519 -0.0218428 -0.174742 + 0.433333 -0.158903 0.987192 -0.0142351 -0.176 + 0.533333 -0.363783 0.914771 -0.175657 -0.187376 + 0.633333 -0.214312 0.966373 -0.142104 -0.178284 + 0.8 -0.147216 -0.982262 -0.116141 -0.429021 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.479858 -0.61398 -0.62671 -0.0916042 + 0.133333 -0.0397667 -0.99899 0.0209203 -0.174681 + 0.233333 -0.0397528 -0.998991 0.0208977 -0.174681 + 0.333333 -0.0397923 -0.998991 0.0208291 -0.174681 + 0.433333 -0.140725 0.99004 0.00404592 -0.175623 + 0.533333 -0.378935 0.917854 -0.118118 -0.186779 + 0.633333 -0.299983 0.942331 -0.148402 -0.18172 + 0.8 -0.479856 -0.613983 -0.626709 -0.0916041 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.920606 0.288113 -0.263582 -0.0888533 + 0.133333 -0.009796 -0.999814 0.0166129 -0.174492 + 0.233333 -0.0097774 -0.999815 0.0165875 -0.174494 + 0.333333 -0.00980644 -0.999816 0.0165036 -0.174496 + 0.433333 -0.0098299 -0.99982 0.0162449 -0.174502 + 0.533333 -0.00996525 0.9998 -0.0173305 -0.174571 + 0.633333 -0.198724 0.977441 -0.071544 -0.176449 + 0.8 0.920607 0.288111 -0.263581 -0.0888533 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.827845 0.544455 -0.135057 -0.141163 + 0.133333 -0.0397927 -0.99899 0.0208497 -0.174344 + 0.233333 -0.039763 -0.998992 0.020826 -0.174349 + 0.333333 -0.0397557 -0.998994 0.0207424 -0.174356 + 0.433333 -0.0397454 -0.999 0.0204548 -0.174362 + 0.533333 -0.998317 0.037144 -0.0445457 -0.00700465 + 0.633333 -0.440282 0.895584 -0.0638743 -0.190118 + 0.8 -0.827845 0.544455 -0.135057 -0.141163 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim run_swordl c_marilithe + + +#NWmax ANIM ASCII +newanim run_swordr c_marilithe + length 0.8 + transtime 0.25 + animroot rbicep_g + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.0135294 0.0365053 1.10808 + 0.0333333 -0.0172876 0.0225341 1.09964 + 0.0666667 -0.0194955 0.00856301 1.09315 + 0.1 -0.0202941 2.56177e-005 1.09055 + 0.133333 -0.0194955 0.00259148 1.09315 + 0.166667 -0.0172876 0.0153233 1.09964 + 0.233333 -0.00977124 0.0522792 1.11653 + 0.266667 -0.00502656 0.0670391 1.12302 + 0.3 0.0 0.0730106 1.12562 + 0.333333 0.00502655 0.0676024 1.12302 + 0.366667 0.00977124 0.0540819 1.11653 + 0.433333 0.0172876 0.0189287 1.09964 + 0.466667 0.0194955 0.00540825 1.09315 + 0.5 0.0202941 0.0 1.09055 + 0.533333 0.0194955 0.0059716 1.09315 + 0.566667 0.0172876 0.0207315 1.09964 + 0.633333 0.00977123 0.0576874 1.11653 + 0.666667 0.00502655 0.0704192 1.12302 + 0.7 0.0 0.0730106 1.12562 + 0.733333 -0.00502656 0.0644476 1.12302 + 0.766667 -0.00977125 0.0504765 1.11653 + 0.8 -0.0135294 0.0365053 1.10808 + endlist + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.969146 0.0406686 -0.243109 -0.341849 + 0.0333333 0.987852 0.0238101 -0.153565 -0.35825 + 0.0666667 0.997425 0.00834577 -0.0712243 -0.377411 + 0.1 0.999979 -0.00560999 0.00324667 -0.398936 + 0.133333 0.997393 -0.0180689 0.0698606 -0.422462 + 0.166667 0.99121 -0.0291204 0.129053 -0.447675 + 0.2 0.984849 -0.0358091 0.169674 -0.433214 + 0.233333 0.976187 -0.0428709 0.212651 -0.419531 + 0.266667 0.964855 -0.0502932 0.257926 -0.406703 + 0.3 0.950464 -0.0580504 0.305365 -0.394814 + 0.333333 0.956572 -0.0528176 0.286671 -0.376983 + 0.366667 0.96282 -0.0470491 0.266016 -0.359319 + 0.4 0.969146 -0.0406672 0.243109 -0.341849 + 0.433333 0.987852 -0.0238088 0.153565 -0.35825 + 0.466667 0.997425 -0.00834456 0.0712243 -0.377411 + 0.5 0.999979 0.00561111 -0.00324673 -0.398936 + 0.533333 0.997393 0.01807 -0.0698606 -0.422462 + 0.566667 0.99121 0.0291215 -0.129053 -0.447675 + 0.6 0.984849 0.0358102 -0.169674 -0.433214 + 0.633333 0.976187 0.042872 -0.212651 -0.419531 + 0.666667 0.964855 0.0502943 -0.257926 -0.406703 + 0.7 0.950464 0.0580516 -0.305365 -0.394814 + 0.733333 0.956572 0.0528188 -0.286671 -0.376983 + 0.766667 0.96282 0.0470503 -0.266016 -0.35932 + 0.8 0.969146 0.0406686 -0.243109 -0.341849 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.775161 0.612354 -0.155398 -0.39166 + 0.1 -0.77095 0.574006 -0.275959 -0.458041 + 0.3 0.264586 0.631603 -0.728747 -0.30442 + 0.4 0.773986 0.424302 -0.470015 -0.372097 + 0.5 0.830071 0.474569 -0.292859 -0.321122 + 0.566667 0.619375 0.763571 -0.182574 -0.239828 + 0.7 -0.32969 0.942104 -0.0611933 -0.248459 + 0.8 -0.775161 0.612354 -0.155398 -0.39166 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.999828 0.00726829 0.0170899 -0.197337 + 0.1 -0.999928 0.00529115 0.0107754 -0.305979 + 0.166667 -0.999973 0.00387064 0.00623871 -0.503666 + 0.4 -0.99998 0.00353276 0.00515988 -0.593787 + 0.566667 -0.999958 0.00443429 0.00803921 -0.401206 + 0.633333 -0.999927 0.00530972 0.0108351 -0.304405 + 0.8 -0.999828 0.00726831 0.0170899 -0.197337 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -0.0724602 0.447797 0.891194 -0.214826 + 0.5 -0.0667464 0.482631 0.873277 -0.219335 + 0.8 -0.0724602 0.447797 0.891194 -0.214826 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.781498 -0.124835 0.611291 -0.252339 + 0.233333 -0.978016 -0.0405988 0.204538 -0.300982 + 0.433333 -0.993187 -0.0121175 -0.115899 -0.168838 + 0.633333 -0.960995 -0.0531995 0.271401 -0.28022 + 0.8 -0.781498 -0.124835 0.611291 -0.252339 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.735798 0.0522873 -0.675179 -0.209726 + 0.433333 -0.972854 0.017868 -0.230727 -0.158871 + 0.8 -0.735798 0.0522873 -0.675179 -0.209726 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.073938 -0.979385 0.187984 -0.391365 + 0.5 -0.766744 -0.554809 0.32294 -0.381043 + 0.8 0.0739379 -0.979385 0.187984 -0.391365 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.966408 0.126943 0.223476 -1.56738 + 0.8 -0.966408 0.126943 0.223476 -1.56738 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.437457 0.312836 -0.843069 -0.561545 + 0.8 -0.43732 0.312693 -0.843193 -0.56132 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.99232 0.00627299 0.12354 -2.8273e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0151331 0.00236528 -0.999883 -0.483898 + 0.8 -0.0151333 0.00239167 -0.999883 -0.483969 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.995757 -0.0679482 0.0620601 -0.503255 + 0.133333 -0.995921 -0.0882104 -0.018968 -0.407893 + 0.233333 -0.841606 -0.532381 -0.0909423 -0.382492 + 0.333333 -0.869052 -0.485866 -0.0931822 -0.424375 + 0.433333 -0.861912 -0.49853 -0.0926059 -0.412122 + 0.533333 -0.867708 -0.488283 -0.0930741 -0.421983 + 0.633333 -0.939038 0.337829 0.0638763 -0.408062 + 0.8 -0.995757 -0.0679482 0.0620601 -0.503255 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.994929 0.0825211 -0.057494 -0.498796 + 0.133333 0.888503 0.454812 -0.0608999 -0.433219 + 0.233333 0.863563 -0.438522 0.248911 -0.348983 + 0.333333 0.888247 -0.381402 0.256026 -0.39184 + 0.433333 0.888074 -0.381838 0.255976 -0.391473 + 0.533333 0.895644 -0.362182 0.258158 -0.408753 + 0.633333 0.92165 -0.382845 -0.0631722 -0.390627 + 0.8 0.994929 0.0825211 -0.057494 -0.498796 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.998122 0.00471999 -0.06107 -1.32334 + 0.133333 0.953541 0.183608 -0.238847 -1.25199 + 0.233333 0.94039 0.199447 0.275476 -1.167 + 0.333333 0.894891 -0.0584891 0.442435 -1.20934 + 0.433333 0.895662 -0.0462787 0.442322 -1.30606 + 0.533333 0.893018 -0.0821098 0.442466 -1.05449 + 0.633333 0.993374 -0.0457304 0.105432 -1.33659 + 0.8 0.998122 0.00472 -0.06107 -1.32334 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.793736 0.568818 -0.215475 -0.50327 + 0.133333 0.837089 0.42677 -0.342271 -0.466011 + 0.233333 0.932129 0.34853 0.0982962 -0.594498 + 0.333333 0.854909 0.327946 0.401972 -0.630609 + 0.433333 0.782683 -0.339669 0.521567 -0.435833 + 0.533333 0.808171 -0.18779 0.558207 -0.68115 + 0.633333 0.909185 -0.340551 0.239598 -0.437528 + 0.8 0.793736 0.568818 -0.215475 -0.50327 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.0337216 0.99716 0.067345 -0.328482 + 0.133333 0.0081678 0.997467 0.070656 -0.17344 + 0.233333 -0.136997 0.990262 0.0247412 -0.173279 + 0.333333 -0.351531 0.92833 -0.120954 -0.182528 + 0.433333 -0.261742 0.931675 -0.251938 -0.183055 + 0.533333 0.36742 -0.886885 0.280066 -0.19265 + 0.633333 0.312136 -0.944982 0.0978796 -0.182297 + 0.8 0.0337211 0.99716 0.0673452 -0.328482 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.975168 -0.208677 -0.0741682 -0.0281604 + 0.133333 1.40229e-006 1.0 -1.0168e-006 -0.174532 + 0.233333 -0.268746 0.960944 0.06605 -0.177878 + 0.333333 -0.528688 0.846892 -0.0571203 -0.198728 + 0.433333 0.366197 0.913038 0.179613 -0.194885 + 0.533333 0.171529 0.708093 -0.684968 -1.53011e-006 + 0.633333 -0.172741 -0.976854 -0.126161 -0.180456 + 0.8 -0.975176 -0.208643 -0.0741627 -0.028164 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.193723 -0.979189 0.0605028 -0.277385 + 0.133333 -1.0 -0.000185171 -2.26113e-005 -0.0087253 + 0.233333 -0.0498088 0.998521 -0.0217921 -0.174749 + 0.333333 -0.149153 0.9887 -0.0150097 -0.175499 + 0.433333 -0.33417 0.936801 -0.103609 -0.183663 + 0.533333 -0.324781 0.893452 -0.310259 -0.19162 + 0.633333 -0.103233 -0.994061 -0.0344272 -0.176221 + 0.8 -0.193724 -0.979189 0.0605034 -0.277385 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.0108834 -0.997397 0.0712836 -0.364807 + 0.133333 -0.0497875 -0.998522 0.0217827 -0.174754 + 0.233333 -0.0498075 0.998521 -0.0217999 -0.174747 + 0.333333 -0.0498053 0.998521 -0.0218073 -0.174747 + 0.433333 -0.200528 0.978962 -0.03771 -0.177085 + 0.533333 -0.101369 0.993071 -0.0594509 -0.175208 + 0.633333 -0.0497906 0.998521 -0.0218129 -0.17475 + 0.8 0.0108832 -0.997397 0.0712841 -0.364807 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.147215 -0.982262 -0.116142 -0.429021 + 0.133333 -0.0497615 -0.998524 0.0217785 -0.17476 + 0.233333 -0.0497507 -0.998525 0.0217601 -0.174759 + 0.333333 -0.0498191 0.998519 -0.0218421 -0.174742 + 0.433333 -0.158903 0.987192 -0.0142324 -0.176 + 0.533333 -0.363782 0.914771 -0.175658 -0.187376 + 0.633333 -0.214314 0.966373 -0.142103 -0.178284 + 0.8 -0.147215 -0.982262 -0.116141 -0.429021 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.479853 -0.613982 -0.626712 -0.0916043 + 0.133333 -0.0397672 -0.99899 0.0209196 -0.174681 + 0.233333 -0.039753 -0.998991 0.020897 -0.174681 + 0.333333 -0.0397927 -0.998991 0.0208295 -0.174681 + 0.433333 -0.140723 0.990041 0.00404844 -0.175623 + 0.533333 -0.378934 0.917854 -0.11812 -0.186779 + 0.633333 -0.299983 0.942331 -0.148403 -0.18172 + 0.8 -0.479856 -0.613981 -0.626711 -0.0916044 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.920606 0.288111 -0.263583 -0.0888535 + 0.133333 -0.00979537 -0.999814 0.0166123 -0.174492 + 0.233333 -0.0097768 -0.999815 0.0165877 -0.174494 + 0.333333 -0.00980724 -0.999816 0.016504 -0.174496 + 0.433333 -0.00983134 -0.99982 0.0162478 -0.174503 + 0.533333 -0.00996612 0.9998 -0.017333 -0.174571 + 0.633333 -0.198722 0.977441 -0.0715438 -0.176449 + 0.8 0.920607 0.28811 -0.263582 -0.0888535 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.827845 0.544455 -0.13506 -0.141163 + 0.133333 -0.0397926 -0.99899 0.0208486 -0.174344 + 0.233333 -0.0397629 -0.998992 0.0208267 -0.174349 + 0.333333 -0.0397561 -0.998994 0.0207424 -0.174356 + 0.433333 -0.0397441 -0.999 0.0204576 -0.174362 + 0.533333 -0.998312 0.0371757 -0.0446201 -0.00700485 + 0.633333 -0.440282 0.895585 -0.0638743 -0.190117 + 0.8 -0.827845 0.544455 -0.135059 -0.141163 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim run_swordr c_marilithe + + +#NWmax ANIM ASCII +newanim run_bowl c_marilithe + length 0.8 + transtime 0.25 + animroot lbicep_g + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.0135294 0.0365053 1.10808 + 0.0333333 -0.0172876 0.0225341 1.09964 + 0.0666667 -0.0194955 0.00856301 1.09315 + 0.1 -0.0202941 0.0 1.09055 + 0.133333 -0.0194955 0.00259148 1.09315 + 0.166667 -0.0172876 0.0153233 1.09964 + 0.233333 -0.00977124 0.0522792 1.11653 + 0.266667 -0.00502656 0.0670391 1.12302 + 0.3 0.0 0.0730106 1.12562 + 0.333333 0.00502655 0.0676024 1.12302 + 0.366667 0.00977124 0.0540819 1.11653 + 0.433333 0.0172699 0.0190302 1.09969 + 0.466667 0.0194858 0.00547178 1.09318 + 0.5 0.0202941 2.96032e-007 1.09055 + 0.533333 0.0195052 0.00590206 1.09312 + 0.566667 0.0173052 0.0206217 1.09959 + 0.633333 0.00977123 0.0576874 1.11653 + 0.666667 0.00502655 0.0704192 1.12302 + 0.7 0.0 0.0730106 1.12562 + 0.733333 -0.00502656 0.0644476 1.12302 + 0.766667 -0.00977125 0.0504765 1.11653 + 0.8 -0.0135294 0.0365053 1.10808 + endlist + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.969146 0.0406686 -0.243109 -0.341849 + 0.0333333 0.987852 0.0238101 -0.153565 -0.35825 + 0.0666667 0.997425 0.00834579 -0.0712243 -0.377411 + 0.1 0.999979 -0.00560997 0.00324666 -0.398936 + 0.133333 0.997393 -0.0180689 0.0698606 -0.422462 + 0.166667 0.99121 -0.0291204 0.129053 -0.447675 + 0.2 0.984849 -0.0358091 0.169674 -0.433214 + 0.233333 0.976187 -0.0428709 0.212651 -0.419531 + 0.266667 0.964855 -0.0502932 0.257926 -0.406703 + 0.3 0.950464 -0.0580504 0.305365 -0.394814 + 0.333333 0.956572 -0.0528176 0.286671 -0.376983 + 0.366667 0.96282 -0.0470491 0.266016 -0.359319 + 0.4 0.969146 -0.0406672 0.243109 -0.341849 + 0.433333 0.987852 -0.0238088 0.153565 -0.35825 + 0.466667 0.997425 -0.00834457 0.0712243 -0.377411 + 0.5 0.999979 0.00561112 -0.00324674 -0.398936 + 0.533333 0.997393 0.01807 -0.0698606 -0.422462 + 0.566667 0.99121 0.0291215 -0.129053 -0.447675 + 0.6 0.984849 0.0358102 -0.169674 -0.433214 + 0.633333 0.976187 0.042872 -0.212651 -0.419531 + 0.666667 0.964855 0.0502943 -0.257926 -0.406703 + 0.7 0.950464 0.0580516 -0.305365 -0.394814 + 0.733333 0.956572 0.0528188 -0.286671 -0.376983 + 0.766667 0.96282 0.0470503 -0.266016 -0.35932 + 0.8 0.969146 0.0406686 -0.243109 -0.341849 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.775161 0.612354 -0.155398 -0.39166 + 0.1 -0.77095 0.574006 -0.275959 -0.458041 + 0.3 0.264586 0.631603 -0.728747 -0.30442 + 0.4 0.773986 0.424302 -0.470015 -0.372097 + 0.5 0.830071 0.474569 -0.292859 -0.321122 + 0.566667 0.619375 0.763571 -0.182574 -0.239828 + 0.7 -0.32969 0.942104 -0.0611934 -0.248459 + 0.8 -0.775161 0.612354 -0.155398 -0.39166 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.999828 0.00726814 0.0170899 -0.197337 + 0.1 -0.999928 0.00529119 0.0107754 -0.305979 + 0.166667 -0.999973 0.00387054 0.00623865 -0.503666 + 0.4 -0.99998 0.00353272 0.00515989 -0.593787 + 0.566667 -0.999958 0.00443441 0.00803926 -0.401206 + 0.633333 -0.999927 0.00530972 0.0108351 -0.304405 + 0.8 -0.999828 0.00726817 0.0170898 -0.197337 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -0.0724601 0.447797 0.891194 -0.214826 + 0.5 -0.0667464 0.482631 0.873277 -0.219335 + 0.8 -0.07246 0.447797 0.891194 -0.214826 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.781498 -0.124835 0.611291 -0.252339 + 0.233333 -0.978016 -0.0405988 0.204538 -0.300982 + 0.433333 -0.993187 -0.0121175 -0.115899 -0.168838 + 0.633333 -0.960995 -0.0531995 0.271401 -0.28022 + 0.8 -0.781498 -0.124835 0.611291 -0.252339 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.735798 0.0522873 -0.675179 -0.209726 + 0.433333 -0.972854 0.017868 -0.230727 -0.158871 + 0.8 -0.735798 0.0522873 -0.675179 -0.209726 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.8 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.00783528 -0.911133 0.412038 -0.274896 + 0.0666667 0.039651 -0.967398 0.250138 -0.276986 + 0.166667 -0.33167 -0.939932 -0.080758 -0.283825 + 0.266667 -0.558729 -0.824536 -0.0892329 -0.366965 + 0.3 -0.607086 -0.782924 -0.135925 -0.388765 + 0.4 -0.750426 -0.659824 -0.0386286 -0.529915 + 0.5 -0.777689 -0.626945 0.0462601 -0.564775 + 0.633333 -0.445795 -0.863344 0.23644 -0.337095 + 0.7 -0.109816 -0.916452 0.384781 -0.297895 + 0.733333 0.0803941 -0.919918 0.38378 -0.286265 + 0.8 0.00783433 -0.911133 0.412038 -0.274895 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -1.0 -5.2992e-007 7.11784e-006 -0.427963 + 0.0666667 -1.0 -5.02066e-007 6.7291e-006 -0.449229 + 0.133333 -1.0 -6.11479e-007 7.60923e-006 -0.398043 + 0.233333 -1.0 -6.5826e-007 7.98358e-006 -0.37786 + 0.4 -1.0 -1.1825e-006 9.43771e-006 -0.314446 + 0.466667 -1.0 -5.81691e-007 7.24376e-006 -0.416279 + 0.566667 -1.0 0.0 5.4555e-006 -0.566311 + 0.733333 -1.0 -1.66493e-007 5.9301e-006 -0.516931 + 0.8 -1.0 -5.02795e-007 7.11689e-006 -0.427963 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.905913 -0.345582 -0.244734 -0.188292 + 0.8 -0.905913 -0.345582 -0.244734 -0.188292 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.999373 0.0337277 -0.0107772 -1.40229e-006 + 0.8 0.999994 -0.00249668 -0.00225892 -2.78966e-006 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0151221 -0.0482318 -0.998722 -0.379522 + 0.8 -0.0151221 -0.0482318 -0.998722 -0.379522 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.995757 -0.0679482 0.0620601 -0.503255 + 0.133333 -0.995921 -0.0882104 -0.018968 -0.407893 + 0.233333 -0.841606 -0.532381 -0.0909423 -0.382492 + 0.333333 -0.869052 -0.485866 -0.0931822 -0.424375 + 0.433333 -0.861912 -0.49853 -0.0926059 -0.412122 + 0.533333 -0.867708 -0.488283 -0.0930741 -0.421983 + 0.633333 -0.939038 0.337829 0.0638762 -0.408062 + 0.8 -0.995757 -0.0679482 0.0620601 -0.503255 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.99493 0.0825206 -0.0574938 -0.498798 + 0.133333 0.888503 0.454812 -0.0608999 -0.433219 + 0.233333 0.863563 -0.438522 0.248911 -0.348983 + 0.333333 0.888247 -0.381402 0.256026 -0.39184 + 0.433333 0.888074 -0.381838 0.255976 -0.391473 + 0.533333 0.895644 -0.362182 0.258158 -0.408753 + 0.633333 0.92165 -0.382845 -0.0631722 -0.390627 + 0.8 0.994929 0.0825211 -0.057494 -0.498796 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.998122 0.0047199 -0.0610699 -1.32334 + 0.133333 0.953541 0.183608 -0.238847 -1.25199 + 0.233333 0.94039 0.199447 0.275476 -1.167 + 0.333333 0.894891 -0.0584891 0.442435 -1.20934 + 0.433333 0.895662 -0.0462787 0.442322 -1.30606 + 0.533333 0.893018 -0.0821098 0.442466 -1.05449 + 0.633333 0.993374 -0.0457304 0.105432 -1.33659 + 0.8 0.998122 0.00472001 -0.06107 -1.32334 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.793737 0.568816 -0.215475 -0.503271 + 0.133333 0.837089 0.42677 -0.342271 -0.466011 + 0.233333 0.932129 0.34853 0.0982962 -0.594498 + 0.333333 0.854909 0.327946 0.401972 -0.630609 + 0.433333 0.782683 -0.339668 0.521567 -0.435833 + 0.533333 0.80817 -0.18779 0.558207 -0.681151 + 0.633333 0.909185 -0.340551 0.239598 -0.437528 + 0.8 0.793736 0.568818 -0.215475 -0.50327 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.0337259 0.99716 0.0673442 -0.328482 + 0.133333 0.00816738 0.997467 0.0706563 -0.17344 + 0.233333 -0.136997 0.990262 0.0247413 -0.173279 + 0.333333 -0.351531 0.92833 -0.120954 -0.182528 + 0.433333 -0.261741 0.931675 -0.251938 -0.183055 + 0.533333 0.367418 -0.886886 0.280067 -0.19265 + 0.633333 0.312137 -0.944982 0.0978792 -0.182297 + 0.8 0.0337211 0.99716 0.0673452 -0.328482 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.975167 -0.208684 -0.0741684 -0.0281629 + 0.133333 1.63525e-006 1.0 -5.7322e-007 -0.174532 + 0.233333 -0.268746 0.960944 0.0660501 -0.177878 + 0.333333 -0.528689 0.846891 -0.0571208 -0.198728 + 0.433333 0.366198 0.913038 0.179613 -0.194886 + 0.533333 0.0497795 0.675511 -0.735668 -1.39085e-006 + 0.633333 -0.172741 -0.976854 -0.126162 -0.180456 + 0.8 -0.975174 -0.20865 -0.074166 -0.0281639 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.193723 -0.979189 0.060503 -0.277385 + 0.133333 -1.0 -0.000188152 -3.50145e-005 -0.00872518 + 0.233333 -0.0498083 0.998521 -0.0217918 -0.174749 + 0.333333 -0.149154 0.9887 -0.0150104 -0.175499 + 0.433333 -0.334168 0.936801 -0.103609 -0.183664 + 0.533333 -0.324784 0.893452 -0.310258 -0.19162 + 0.633333 -0.103233 -0.994061 -0.0344274 -0.176222 + 0.8 -0.193723 -0.979189 0.0605033 -0.277385 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.0108835 -0.997397 0.0712844 -0.364807 + 0.133333 -0.0497855 -0.998522 0.0217813 -0.174755 + 0.233333 -0.0498103 0.998521 -0.021799 -0.174747 + 0.333333 -0.0498064 0.998521 -0.0218074 -0.174747 + 0.433333 -0.200528 0.978962 -0.0377114 -0.177085 + 0.533333 -0.101371 0.993071 -0.0594484 -0.175208 + 0.633333 -0.0497927 0.998521 -0.021813 -0.17475 + 0.8 0.0108834 -0.997397 0.0712838 -0.364807 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.147215 -0.982262 -0.116141 -0.429021 + 0.133333 -0.0497608 -0.998524 0.021778 -0.17476 + 0.233333 -0.0497522 -0.998525 0.0217599 -0.174759 + 0.333333 -0.0498183 0.998519 -0.0218427 -0.174742 + 0.433333 -0.158902 0.987192 -0.014234 -0.176 + 0.533333 -0.363783 0.914772 -0.175655 -0.187376 + 0.633333 -0.214312 0.966373 -0.142104 -0.178284 + 0.8 -0.147215 -0.982262 -0.116141 -0.429021 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.479858 -0.613982 -0.626708 -0.0916038 + 0.133333 -0.0397662 -0.99899 0.0209194 -0.174681 + 0.233333 -0.0397529 -0.998991 0.020897 -0.174681 + 0.333333 -0.0397936 -0.998991 0.0208299 -0.174681 + 0.433333 -0.140724 0.990041 0.00404697 -0.175623 + 0.533333 -0.378934 0.917855 -0.118117 -0.186779 + 0.633333 -0.299985 0.94233 -0.148403 -0.18172 + 0.8 -0.479855 -0.61398 -0.626712 -0.0916045 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.920607 0.288114 -0.263578 -0.088853 + 0.133333 -0.00979625 -0.999814 0.0166124 -0.174492 + 0.233333 -0.00977731 -0.999815 0.0165869 -0.174494 + 0.333333 -0.00980707 -0.999816 0.0165046 -0.174496 + 0.433333 -0.00983094 -0.99982 0.0162458 -0.174502 + 0.533333 -0.00996715 0.9998 -0.0173295 -0.174571 + 0.633333 -0.198724 0.977441 -0.071544 -0.17645 + 0.8 0.920606 0.288111 -0.263583 -0.0888536 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.827846 0.544455 -0.135055 -0.141163 + 0.133333 -0.0397925 -0.99899 0.0208493 -0.174344 + 0.233333 -0.039763 -0.998992 0.0208255 -0.174349 + 0.333333 -0.039756 -0.998994 0.0207423 -0.174356 + 0.433333 -0.0397431 -0.999001 0.0204556 -0.174362 + 0.533333 -0.998316 0.0371698 -0.0445278 -0.00700466 + 0.633333 -0.440282 0.895584 -0.0638742 -0.190118 + 0.8 -0.827845 0.544455 -0.13506 -0.141163 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim run_bowl c_marilithe + + +#NWmax ANIM ASCII +newanim 2hreadyr c_marilithe + length 1.0 + transtime 0.75 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000247936 -0.0325525 1.02808 + 0.0666667 0.000248011 -0.0368082 1.02508 + 0.266667 0.000248009 -0.0937032 1.00366 + 0.433333 0.000248007 -0.141066 1.00441 + 0.5 0.000248158 -0.145974 1.00588 + 0.566667 0.000248007 -0.141945 1.00863 + 0.766667 0.000248009 -0.0848686 1.02942 + 0.933333 0.000248011 -0.037448 1.02923 + 1.0 0.000247936 -0.0325525 1.02808 + endlist + orientationkey + 0.0 0.40204 0.466024 0.788153 -0.46655 + 0.0666667 0.401903 0.466045 0.78821 -0.466555 + 0.433333 0.499728 0.52581 0.688328 -0.394786 + 0.5 0.508875 0.531089 0.677488 -0.38929 + 0.566667 0.499728 0.525811 0.688328 -0.394786 + 0.933333 0.401903 0.466045 0.78821 -0.466555 + 1.0 0.401904 0.466045 0.78821 -0.466555 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.524354 -0.380472 0.76177 -0.520465 + 0.0666667 0.513485 -0.377292 0.770703 -0.525657 + 0.433333 0.392565 -0.339035 0.854955 -0.595127 + 0.5 0.384019 -0.336149 0.859961 -0.600981 + 0.566667 0.392565 -0.339035 0.854955 -0.595127 + 0.933333 0.513485 -0.377292 0.770704 -0.525657 + 1.0 0.524353 -0.380472 0.761771 -0.520465 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.223312 0.770287 -0.597319 -0.486651 + 0.0666667 -0.290149 0.724145 -0.625641 -0.495018 + 0.133333 -0.346304 0.683661 -0.642403 -0.518902 + 0.266667 -0.330577 0.727178 -0.601607 -0.502954 + 0.433333 -0.140593 0.804457 -0.577133 -0.51935 + 0.5 -0.0710851 0.82544 -0.559997 -0.532872 + 0.566667 0.0175543 0.844645 -0.535039 -0.546802 + 0.633333 0.0791498 0.855269 -0.512104 -0.563226 + 0.766667 -0.0871584 0.817535 -0.569245 -0.506059 + 0.933333 -0.161361 0.798445 -0.580042 -0.498862 + 1.0 -0.223312 0.770287 -0.597319 -0.486651 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -1.0 0.0 0.0 -2.04933 + 0.0666667 -1.0 0.0 0.0 -2.03472 + 0.133333 -1.0 0.0 0.0 -2.02864 + 0.266667 -1.0 0.0 0.0 -2.06168 + 0.433333 -1.0 0.0 0.0 -2.06702 + 0.5 -1.0 0.0 0.0 -2.06867 + 0.566667 -1.0 0.0 0.0 -2.0758 + 0.633333 -1.0 0.0 0.0 -2.07176 + 0.766667 -1.0 0.0 0.0 -2.04334 + 0.933333 -1.0 0.0 0.0 -2.05536 + 1.0 -1.0 0.0 0.0 -2.04933 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.455179 -0.430545 0.779386 -0.348379 + 0.0666667 0.58231 -0.402816 0.706155 -0.354997 + 0.133333 0.685745 -0.349332 0.638531 -0.38614 + 0.266667 0.663967 -0.366017 0.652058 -0.407675 + 0.433333 0.445416 -0.341659 0.827571 -0.34668 + 0.5 0.331899 -0.335522 0.881628 -0.337628 + 0.566667 0.144354 -0.338307 0.929898 -0.333355 + 0.633333 -0.092428 -0.280094 0.955513 -0.342397 + 0.766667 0.172928 -0.382939 0.907443 -0.326839 + 0.933333 0.383385 -0.402798 0.831126 -0.346154 + 1.0 0.455179 -0.430545 0.779387 -0.348379 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 -1.51963e-007 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.199132 -0.0335321 -0.979399 -0.338477 + 0.0666667 0.187659 -0.0356157 -0.981588 -0.337677 + 0.233333 0.118788 -0.0479245 -0.991762 -0.33393 + 0.433333 0.0338492 -0.0626357 -0.997462 -0.331642 + 0.5 0.020755 -0.0648577 -0.997679 -0.331508 + 0.566667 0.0329139 -0.0627947 -0.997484 -0.33163 + 0.733333 0.103847 -0.0505495 -0.993308 -0.333346 + 0.933333 0.186772 -0.0357768 -0.981752 -0.337617 + 1.0 0.199135 -0.0335311 -0.979398 -0.338477 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.664231 0.191276 -0.722641 -0.65893 + 0.0666667 -0.647748 0.194756 -0.736541 -0.669464 + 0.233333 -0.611062 0.210865 -0.76298 -0.620199 + 0.433333 -0.470082 0.247361 -0.847252 -0.571967 + 0.5 -0.448833 0.252535 -0.85719 -0.564279 + 0.566667 -0.470709 0.247204 -0.846949 -0.572202 + 0.733333 -0.584268 0.215657 -0.782383 -0.62604 + 0.933333 -0.643709 0.196176 -0.739699 -0.66631 + 1.0 -0.651364 0.193499 -0.733678 -0.672338 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.308507 -0.506023 0.805459 -2.00006 + 0.0666667 -0.309293 -0.50794 0.80395 -1.96067 + 0.133333 -0.30532 -0.518846 0.798485 -1.95273 + 0.266667 -0.318732 -0.507407 0.800592 -1.93701 + 0.433333 -0.320468 -0.481112 0.815985 -1.95509 + 0.5 -0.316442 -0.478914 0.818844 -1.99727 + 0.566667 -0.312634 -0.475629 0.822215 -2.03873 + 0.633333 -0.31896 -0.463455 0.826725 -2.02038 + 0.766667 -0.309474 -0.491179 0.814229 -2.02342 + 0.933333 -0.311115 -0.496621 0.810293 -1.99955 + 1.0 -0.308055 -0.506757 0.80517 -1.99849 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 1.0 -4.2669e-007 0.0 -4.99431 + 0.0666667 1.0 -4.41989e-007 1.35968e-007 -4.99963 + 0.133333 1.0 -3.5843e-007 0.0 -4.98947 + 0.266667 1.0 -3.98666e-007 0.0 -4.97174 + 0.433333 1.0 -5.02025e-007 0.0 -5.00021 + 0.5 1.0 -4.47141e-007 0.0 -5.00972 + 0.566667 1.0 -4.89866e-007 1.79407e-007 -5.00969 + 0.633333 1.0 -4.53648e-007 0.0 -5.01612 + 0.766667 1.0 -4.09866e-007 0.0 -5.01905 + 0.933333 1.0 -4.22038e-007 0.0 -4.99925 + 1.0 1.0 -4.37896e-007 1.23142e-007 -4.99431 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.0545012 0.47726 0.87707 -5.30919 + 0.0666667 0.0874419 0.448504 0.889493 -5.32644 + 0.133333 0.106158 0.431924 0.895641 -5.29853 + 0.266667 0.0610351 0.438226 0.89679 -5.33132 + 0.433333 0.0484733 0.47165 0.880452 -5.35735 + 0.5 0.0472197 0.494141 0.868099 -5.32182 + 0.566667 0.0245765 0.527248 0.849356 -5.29461 + 0.633333 -0.0133837 0.539198 0.842073 -5.34954 + 0.766667 0.0374337 0.497273 0.866786 -5.32139 + 0.933333 0.0429293 0.483927 0.874055 -5.3157 + 1.0 0.0545014 0.47726 0.87707 -5.30919 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 -6.28319 + 1.0 -0.998841 0.0279882 0.0391496 -6.28318 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.0316302 0.200513 0.97918 -5.9379 + 1.0 0.0316291 0.200513 0.97918 -5.9379 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558185 -0.756076 + 0.166667 -0.925528 -0.374542 0.0558186 -0.756076 + 0.333333 -0.925528 -0.374542 0.0558187 -0.756075 + 0.5 -0.925528 -0.374543 0.0558188 -0.756075 + 0.666667 -0.925528 -0.374543 0.0558191 -0.756074 + 0.833333 -0.925528 -0.374542 0.0558187 -0.756076 + 1.0 -0.925528 -0.374542 0.0558187 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.935766 0.343783 -0.0784553 -0.772815 + 0.166667 0.935766 0.343783 -0.0784552 -0.772815 + 0.333333 0.935766 0.343783 -0.0784553 -0.772815 + 0.5 0.935766 0.343783 -0.0784552 -0.772815 + 0.666667 0.935766 0.343783 -0.0784553 -0.772816 + 0.833333 0.935766 0.343782 -0.0784554 -0.772816 + 1.0 0.935767 0.343782 -0.0784556 -0.772818 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.853311 0.417112 -0.312854 -1.34817 + 0.166667 0.856975 0.411871 -0.309767 -1.39261 + 0.333333 0.86041 0.406882 -0.306826 -1.43709 + 0.5 0.856975 0.411871 -0.309767 -1.39261 + 0.666667 0.857925 0.410499 -0.308959 -1.40462 + 0.833333 0.856975 0.411871 -0.309767 -1.39261 + 1.0 0.853311 0.417112 -0.312854 -1.34817 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.499281 0.854668 -0.142343 -0.440147 + 0.166667 0.428231 0.899367 -0.0880705 -0.403207 + 0.333333 0.33859 0.94066 -0.0226843 -0.370937 + 0.5 0.428231 0.899367 -0.0880702 -0.403207 + 0.666667 0.49928 0.854668 -0.142343 -0.440147 + 0.833333 0.428231 0.899367 -0.0880697 -0.403207 + 1.0 0.499281 0.854668 -0.142343 -0.440147 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.298666 -0.92909 -0.218154 -0.508895 + 0.166667 -0.298666 -0.92909 -0.218154 -0.508895 + 0.333333 -0.298665 -0.92909 -0.218154 -0.508895 + 0.5 -0.298664 -0.92909 -0.218153 -0.508894 + 0.666667 -0.33286 -0.922478 -0.195545 -0.517266 + 0.833333 -0.298666 -0.92909 -0.218154 -0.508895 + 1.0 -0.298665 -0.92909 -0.218154 -0.508895 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.164038 -0.913369 -0.372623 -0.521738 + 0.166667 -0.164038 -0.913369 -0.372623 -0.521738 + 0.333333 -0.164038 -0.913369 -0.372623 -0.521738 + 0.5 -0.164038 -0.91337 -0.372623 -0.521738 + 0.666667 -0.363912 -0.862107 -0.352619 -0.554226 + 0.833333 -0.164038 -0.91337 -0.372623 -0.521738 + 1.0 -0.164038 -0.913369 -0.372623 -0.521738 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 0.249291 -0.886398 -0.390067 -0.752086 + 0.166667 0.249291 -0.886398 -0.390067 -0.752087 + 0.333333 0.249292 -0.886398 -0.390067 -0.752087 + 0.5 0.249294 -0.886398 -0.390066 -0.752087 + 0.666667 0.0844737 -0.855499 -0.510867 -0.734811 + 0.833333 0.24929 -0.886398 -0.390068 -0.752086 + 1.0 0.249291 -0.886398 -0.390068 -0.752087 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.304393 -0.733251 -0.60802 -0.977309 + 0.166667 -0.35094 -0.751365 -0.55883 -0.741799 + 0.333333 0.304394 -0.733251 -0.608019 -0.977309 + 0.5 -0.35094 -0.751365 -0.558831 -0.741799 + 0.666667 0.304393 -0.733251 -0.60802 -0.977307 + 0.833333 -0.350941 -0.751365 -0.558831 -0.741799 + 1.0 0.304394 -0.733251 -0.60802 -0.977309 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.831539 0.541681 -0.122985 -5.6414 + 0.166667 0.449734 -0.724506 0.522332 -0.140431 + 0.333333 -0.83154 0.54168 -0.122983 -5.6414 + 0.5 0.449741 -0.724503 0.52233 -0.140432 + 0.666667 -0.83154 0.541679 -0.122986 -5.6414 + 0.833333 0.449736 -0.724505 0.522332 -0.140431 + 1.0 -0.831539 0.541681 -0.122984 -5.6414 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.665325 0.696748 -0.268116 -5.6412 + 0.166667 0.823947 0.541358 -0.167459 -5.98534 + 0.333333 -0.665324 0.696748 -0.268116 -5.64121 + 0.5 0.823948 0.541363 -0.167436 -5.98534 + 0.666667 -0.665324 0.696748 -0.268116 -5.6412 + 0.833333 0.823946 0.541359 -0.16746 -5.98534 + 1.0 -0.665324 0.696748 -0.268116 -5.6412 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.794569 0.522821 -0.308738 -5.60637 + 0.166667 0.919657 0.0267472 0.39181 -5.93298 + 0.333333 -0.794571 0.522825 -0.308726 -5.60637 + 0.5 0.919641 0.0267922 0.391846 -5.93298 + 0.666667 -0.794566 0.522831 -0.308728 -5.60636 + 0.833333 0.919658 0.0267471 0.391808 -5.93298 + 1.0 -0.794569 0.522821 -0.308738 -5.60637 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.326889 -0.935169 0.136388 -0.289646 + 0.166667 -0.821285 -0.0647859 -0.566827 -0.501753 + 0.333333 0.326763 -0.935232 0.136264 -0.289649 + 0.5 -0.821312 -0.0646793 -0.566801 -0.50175 + 0.666667 -0.327374 0.934982 -0.136512 -5.99301 + 0.833333 -0.821285 -0.0647853 -0.566828 -0.501753 + 1.0 0.326887 -0.93517 0.13639 -0.289646 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim 2hreadyr c_marilithe + + +#NWmax ANIM ASCII +newanim 2hreadyl c_marilithe + length 1.0 + transtime 0.75 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000247559 -0.0325532 1.02808 + 0.0666667 0.000247558 -0.0367074 1.02501 + 0.233333 -0.00020607 -0.0727613 1.00257 + 0.433333 0.000247631 -0.116502 0.996379 + 0.5 0.000247782 -0.121111 0.996685 + 0.566667 0.000247631 -0.116751 0.999882 + 0.733333 0.000247482 -0.0805271 1.02073 + 0.933333 0.000247558 -0.0376712 1.0277 + 1.0 0.000247559 -0.0325532 1.02808 + endlist + orientationkey + 0.0 0.933086 0.0489378 0.356309 -0.235167 + 0.0666667 0.935153 0.0475578 0.351037 -0.238796 + 0.233333 0.944222 0.0404106 0.326821 -0.257433 + 0.433333 0.95367 0.0336554 0.298966 -0.281432 + 0.5 0.954766 0.0327496 0.295548 -0.284763 + 0.566667 0.95367 0.0336554 0.298966 -0.281432 + 0.733333 0.946369 0.0394323 0.320672 -0.26195 + 0.933333 0.935153 0.0475578 0.351037 -0.238796 + 1.0 0.933086 0.0489378 0.356309 -0.235167 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.877818 0.0970433 -0.46906 -0.23112 + 0.0666667 0.872487 0.0977443 -0.478761 -0.226537 + 0.233333 0.816558 0.0863654 -0.570767 -0.186521 + 0.433333 0.761841 0.108033 -0.638692 -0.170711 + 0.5 0.747482 0.108931 -0.65529 -0.166455 + 0.566667 0.760851 0.108098 -0.63986 -0.170404 + 0.733333 0.823161 0.103187 -0.558354 -0.194831 + 0.933333 0.872063 0.0977988 -0.479522 -0.226186 + 1.0 0.877818 0.0970434 -0.469061 -0.23112 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.483669 0.308084 -0.819237 -1.2121 + 0.0666667 -0.498289 0.311136 -0.80926 -1.22478 + 0.133333 -0.507055 0.313893 -0.802724 -1.23231 + 0.233333 -0.490473 0.311311 -0.813954 -1.21405 + 0.5 -0.434384 0.331383 -0.837553 -1.2545 + 0.566667 -0.411015 0.336447 -0.847272 -1.26454 + 0.633333 -0.39133 0.330456 -0.858871 -1.24746 + 0.733333 -0.400643 0.323258 -0.857315 -1.24775 + 1.0 -0.483669 0.308084 -0.819237 -1.2121 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -1.0 0.0 0.0 -0.984543 + 0.0666667 -1.0 0.0 0.0 -0.964612 + 0.133333 -1.0 0.0 0.0 -0.957231 + 0.233333 -1.0 0.0 0.0 -0.986967 + 0.5 -1.0 0.0 0.0 -1.02592 + 0.566667 -1.0 0.0 0.0 -1.05146 + 0.633333 -1.0 0.0 0.0 -1.05925 + 0.733333 -1.0 0.0 0.0 -1.04497 + 1.0 -1.0 0.0 0.0 -0.984543 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.264739 0.670195 0.693363 -1.08462 + 0.0666667 0.275352 0.649884 0.708401 -1.08372 + 0.133333 0.28916 0.633749 0.71746 -1.08877 + 0.233333 0.296188 0.64654 0.703035 -1.08528 + 0.5 0.249866 0.673509 0.695667 -1.14779 + 0.566667 0.242212 0.682833 0.689255 -1.1689 + 0.633333 0.2159 0.703081 0.677543 -1.15949 + 0.733333 0.212372 0.703036 0.678703 -1.14523 + 1.0 0.264739 0.670195 0.693363 -1.08462 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 -1.0 1.15279e-006 0.0 -0.18326 + 1.0 -1.0 1.19127e-006 0.0 -0.18326 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.889417 -0.0175323 -0.456761 -0.0764253 + 0.0666667 0.889418 -0.0175323 -0.456758 -0.0764258 + 0.566667 0.889429 -0.0175323 -0.456737 -0.0764294 + 1.0 0.889417 -0.0175323 -0.456761 -0.0764253 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.984448 -0.0846581 0.15393 -0.415585 + 0.0666667 -0.985612 -0.0802394 0.148764 -0.432013 + 0.566667 -0.97539 -0.114656 0.188329 -0.330015 + 1.0 -0.984448 -0.0846581 0.15393 -0.415585 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.999988 0.00159748 0.00472201 -4.91512e-007 + 1.0 1.0 -0.000224588 0.000201617 -1.04095e-006 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.41491 -0.349277 0.840152 -1.24433 + 0.0666667 -0.417742 -0.358555 0.834823 -1.2693 + 0.133333 -0.432247 -0.3582 0.82756 -1.24734 + 0.233333 -0.438772 -0.340532 0.831575 -1.18275 + 0.5 -0.442832 -0.31358 0.839981 -1.10908 + 0.566667 -0.446426 -0.297544 0.843902 -1.05416 + 0.633333 -0.442386 -0.277593 0.852782 -1.04587 + 0.733333 -0.414332 -0.303115 0.858167 -1.11059 + 1.0 -0.415007 -0.350381 0.839644 -1.24266 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -1.0 7.47412e-007 0.0 -0.618077 + 0.0666667 -1.0 7.44877e-007 -3.46354e-007 -0.610095 + 0.133333 -1.0 8.00455e-007 0.0 -0.61898 + 0.233333 -1.0 9.74169e-007 0.0 -0.64863 + 0.5 -1.0 8.13406e-007 0.0 -0.660286 + 0.566667 -1.0 7.28802e-007 0.0 -0.685195 + 0.633333 -1.0 7.37513e-007 0.0 -0.658924 + 0.733333 -1.0 7.02947e-007 0.0 -0.651211 + 1.0 -1.0 7.62118e-007 1.96167e-007 -0.618077 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.0541635 -0.549767 -0.83356 -1.16552 + 0.0666667 -0.0360324 -0.53655 -0.843099 -1.18932 + 0.133333 -0.0153587 -0.536152 -0.843982 -1.16133 + 0.233333 -0.0137194 -0.560285 -0.828186 -1.10662 + 0.5 -0.0633906 -0.599549 -0.797823 -1.03954 + 0.566667 -0.0712006 -0.625395 -0.777053 -0.992456 + 0.633333 -0.116548 -0.632945 -0.765374 -0.988912 + 0.733333 -0.110698 -0.614819 -0.780861 -1.06752 + 1.0 -0.0541635 -0.549767 -0.83356 -1.16552 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.999339 0.0348581 0.0102805 -7.46844e-007 + 1.0 0.999996 0.00283355 0.000788412 -1.49547e-006 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0316211 -0.201873 -0.978901 -0.343007 + 1.0 -0.0316204 -0.201873 -0.978901 -0.343007 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.166667 -0.925528 -0.374542 0.0558187 -0.756076 + 0.333333 -0.925528 -0.374542 0.0558187 -0.756076 + 0.5 -0.925528 -0.374542 0.0558188 -0.756076 + 0.666667 -0.925528 -0.374542 0.0558188 -0.756075 + 0.833333 -0.925528 -0.374543 0.055819 -0.756075 + 1.0 -0.925528 -0.374543 0.0558193 -0.756074 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.946346 0.319161 -0.0506556 -0.906057 + 0.166667 0.953865 0.298961 -0.0276518 -1.05113 + 0.333333 0.946346 0.319161 -0.0506557 -0.906057 + 0.5 0.953865 0.298961 -0.0276518 -1.05113 + 0.666667 0.946346 0.319161 -0.0506558 -0.906057 + 0.833333 0.953865 0.298961 -0.0276518 -1.05113 + 1.0 0.946346 0.319161 -0.0506557 -0.906057 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.855379 0.413186 -0.312417 -1.35916 + 0.166667 0.817533 0.481737 -0.315546 -1.21314 + 0.333333 0.855379 0.413186 -0.312417 -1.35916 + 0.5 0.817533 0.481737 -0.315546 -1.21314 + 0.666667 0.855379 0.413186 -0.312417 -1.35916 + 0.833333 0.817533 0.481737 -0.315546 -1.21314 + 1.0 0.855379 0.413186 -0.312417 -1.35916 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.456719 0.884719 -0.0931605 -0.423959 + 0.166667 0.428231 0.899367 -0.0880699 -0.403207 + 0.333333 0.456719 0.88472 -0.0931605 -0.423959 + 0.5 0.428232 0.899367 -0.0880699 -0.403207 + 0.666667 0.456719 0.88472 -0.0931605 -0.423959 + 0.833333 0.428232 0.899367 -0.0880704 -0.403207 + 1.0 0.456719 0.884719 -0.0931609 -0.423959 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.378316 -0.913846 -0.147519 -0.517149 + 0.166667 -0.298666 -0.92909 -0.218153 -0.508894 + 0.333333 -0.378316 -0.913846 -0.147519 -0.517149 + 0.5 -0.298665 -0.92909 -0.218154 -0.508895 + 0.666667 -0.378316 -0.913846 -0.147519 -0.517149 + 0.833333 -0.298666 -0.92909 -0.218153 -0.508894 + 1.0 -0.378317 -0.913846 -0.147518 -0.517149 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.164038 -0.91337 -0.372622 -0.521739 + 0.166667 -0.164038 -0.91337 -0.372622 -0.521738 + 0.333333 -0.164038 -0.91337 -0.372622 -0.521739 + 0.5 -0.164037 -0.91337 -0.372622 -0.521738 + 0.666667 -0.164035 -0.91337 -0.372622 -0.521738 + 0.833333 -0.164032 -0.913371 -0.372621 -0.521738 + 1.0 -0.164038 -0.91337 -0.372622 -0.521738 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 0.249289 -0.886398 -0.390068 -0.752086 + 0.166667 0.24929 -0.886398 -0.390068 -0.752086 + 0.333333 0.249292 -0.886398 -0.390067 -0.752087 + 0.5 0.249288 -0.886399 -0.390068 -0.752087 + 0.666667 0.249289 -0.886399 -0.390067 -0.752087 + 0.833333 0.24929 -0.886399 -0.390067 -0.752087 + 1.0 0.249291 -0.886398 -0.390066 -0.752087 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.304394 0.733252 0.608018 -5.30589 + 0.166667 0.350949 0.751362 0.558829 -5.54139 + 0.333333 -0.304394 0.733252 0.608018 -5.30589 + 0.5 0.350949 0.751362 0.558829 -5.54139 + 0.666667 -0.304394 0.733252 0.608018 -5.30589 + 0.833333 0.350949 0.751363 0.558828 -5.54139 + 1.0 -0.304394 0.733252 0.608018 -5.30589 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.831541 0.541677 -0.122985 -5.6414 + 0.166667 -0.449862 0.724434 -0.522322 -6.14279 + 0.333333 -0.831541 0.541677 -0.122985 -5.6414 + 0.5 -0.44986 0.724438 -0.522317 -6.14279 + 0.666667 -0.831541 0.541677 -0.122984 -5.6414 + 0.833333 -0.449862 0.724433 -0.522322 -6.14279 + 1.0 -0.831541 0.541677 -0.122985 -5.6414 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.665315 0.696763 -0.2681 -5.6412 + 0.166667 0.823964 0.54136 -0.167371 -5.98534 + 0.333333 -0.665316 0.696763 -0.268099 -5.6412 + 0.5 0.823962 0.541364 -0.167367 -5.98534 + 0.666667 -0.665316 0.696763 -0.268099 -5.6412 + 0.833333 0.823964 0.54136 -0.16737 -5.98534 + 1.0 -0.665315 0.696763 -0.2681 -5.6412 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.794615 0.522814 -0.308631 -5.60635 + 0.166667 0.919558 0.0268839 0.392033 -5.93297 + 0.333333 -0.794616 0.522811 -0.308632 -5.60635 + 0.5 0.919559 0.0269064 0.392031 -5.93297 + 0.666667 -0.794616 0.522811 -0.308633 -5.60635 + 0.833333 0.919558 0.0268839 0.392033 -5.93297 + 1.0 -0.794615 0.522814 -0.308631 -5.60635 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.326469 -0.935407 0.135764 -0.289734 + 0.166667 0.820697 0.0651028 0.567643 -5.78131 + 0.333333 0.326509 -0.935392 0.135767 -0.289732 + 0.5 0.820711 0.0651622 0.567616 -5.78131 + 0.666667 0.326511 -0.935392 0.135767 -0.289732 + 0.833333 0.820697 0.0651035 0.567643 -5.78131 + 1.0 0.326469 -0.935407 0.135765 -0.289734 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim 2hreadyl c_marilithe + + +#NWmax ANIM ASCII +newanim plreadyr c_marilithe + length 1.0 + transtime 0.75 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.00189454 -0.0312607 0.998121 + 0.0666667 -0.00189454 -0.0351284 0.994219 + 0.233333 -0.00189454 -0.0562252 0.978125 + 0.433333 -0.00189455 -0.0815414 0.97931 + 0.5 -0.00189455 -0.0851327 0.979271 + 0.566667 -0.00189455 -0.0815413 0.981654 + 0.733333 -0.00189455 -0.0604445 0.99341 + 0.933333 -0.00189454 -0.0351284 0.998068 + 1.0 -0.00189454 -0.0312607 0.998121 + endlist + orientationkey + 0.0 0.916263 0.0597051 0.396103 -0.211064 + 0.0666667 0.91813 0.0585731 0.391926 -0.213363 + 0.433333 0.936514 0.0466051 0.34752 -0.241268 + 0.5 0.937678 0.0457873 0.344476 -0.243448 + 0.566667 0.936514 0.0466049 0.347519 -0.241268 + 0.933333 0.91813 0.0585731 0.391926 -0.213363 + 1.0 0.916263 0.0597051 0.396103 -0.211064 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.847587 0.100707 -0.521013 -0.208508 + 0.0666667 0.854153 0.101596 -0.51 -0.203184 + 0.433333 0.945793 0.114377 -0.303962 -0.143128 + 0.5 0.953125 0.115455 -0.279685 -0.138924 + 0.566667 0.945793 0.114377 -0.303962 -0.143128 + 0.933333 0.854153 0.101596 -0.51 -0.203184 + 1.0 0.847587 0.100708 -0.521013 -0.208508 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.893147 0.443933 -0.0721879 -0.487368 + 0.0666667 0.880932 0.46767 -0.0724131 -0.469787 + 0.133333 0.867265 0.491302 -0.0804614 -0.459409 + 0.233333 0.869167 0.483872 -0.102058 -0.478867 + 0.5 0.873281 0.461362 -0.156606 -0.524505 + 0.566667 0.885137 0.439231 -0.153652 -0.545617 + 0.633333 0.893341 0.426357 -0.141989 -0.548301 + 1.0 0.893147 0.443933 -0.0721878 -0.487369 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.993849 -0.0483555 -0.0996327 -1.64098 + 0.0666667 -0.993879 -0.0479653 -0.099514 -1.64637 + 0.133333 -0.993942 -0.0471672 -0.0992709 -1.65746 + 0.233333 -0.993996 -0.0464713 -0.099059 -1.66723 + 0.5 -0.993894 -0.047774 -0.0994557 -1.64902 + 0.566667 -0.993876 -0.0480042 -0.0995257 -1.64583 + 0.633333 -0.993819 -0.0487263 -0.0997454 -1.63589 + 1.0 -0.993849 -0.0483555 -0.0996326 -1.64098 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.217945 -0.630849 -0.744667 -0.352683 + 0.0666667 0.281541 -0.647739 -0.707933 -0.35703 + 0.133333 0.339888 -0.658357 -0.671597 -0.357782 + 0.233333 0.350206 -0.646823 -0.677478 -0.343679 + 0.5 0.221147 -0.591447 -0.775426 -0.299421 + 0.566667 0.139181 -0.564763 -0.813432 -0.296484 + 0.633333 0.0848268 -0.553587 -0.82846 -0.304298 + 1.0 0.217945 -0.630849 -0.744667 -0.352683 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 3.18676e-005 1.0 -8.4203e-005 -0.497556 + 1.0 3.23021e-005 1.0 -8.42045e-005 -0.497556 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.898819 -0.0473257 -0.435758 -0.079701 + 0.5 -0.890688 0.132852 -0.434771 -0.159867 + 1.0 -0.898819 -0.0473257 -0.435758 -0.0797011 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.973996 -0.118527 0.19309 -0.321534 + 0.1 -0.972453 -0.135425 0.189724 -0.277338 + 0.5 -0.987334 -0.139381 0.0757983 -0.229534 + 0.633333 -0.987924 -0.11502 0.103815 -0.288092 + 1.0 -0.973996 -0.118527 0.19309 -0.321534 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.845994 -0.506835 0.165568 -1.14276 + 0.0666667 -0.844397 -0.509448 0.165703 -1.16257 + 0.133333 -0.839842 -0.517346 0.164372 -1.18138 + 0.233333 -0.828339 -0.533395 0.171305 -1.19602 + 0.433333 -0.805954 -0.563898 0.180158 -1.16954 + 0.5 -0.802141 -0.568876 0.181519 -1.16611 + 0.566667 -0.804266 -0.565743 0.18191 -1.14756 + 0.633333 -0.809421 -0.558272 0.182127 -1.13079 + 0.933333 -0.842009 -0.513243 0.16614 -1.13845 + 1.0 -0.845602 -0.508008 0.163967 -1.14266 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.997246 0.0166134 -0.0722751 -1.77968 + 0.0666667 -0.997159 0.0154807 -0.0737183 -1.74189 + 0.133333 -0.997097 0.0147096 -0.074701 -1.71684 + 0.233333 -0.997103 0.0147823 -0.0746084 -1.71917 + 0.433333 -0.997256 0.0167368 -0.0721175 -1.78387 + 0.5 -0.997292 0.0172241 -0.0714966 -1.80056 + 0.566667 -0.997378 0.0184007 -0.0699962 -1.84177 + 0.633333 -0.997414 0.0189235 -0.0693298 -1.86051 + 0.933333 -0.997279 0.0170467 -0.0717226 -1.79446 + 1.0 -0.997246 0.0166134 -0.072275 -1.77968 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.235527 -0.344787 0.908652 -4.47782 + 0.0666667 -0.221652 -0.353739 0.908702 -4.47345 + 0.133333 -0.201077 -0.362971 0.909846 -4.47322 + 0.233333 -0.207485 -0.336885 0.9184 -4.44792 + 0.433333 -0.19055 -0.327486 0.925442 -4.4653 + 0.5 -0.191935 -0.320682 0.927537 -4.46545 + 0.566667 -0.208364 -0.308896 0.927991 -4.47074 + 0.633333 -0.220528 -0.307528 0.925632 -4.47782 + 0.933333 -0.236007 -0.339104 0.910664 -4.47829 + 1.0 -0.235527 -0.344787 0.908652 -4.47782 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.997699 -0.0128814 0.0665605 -9.77589e-007 + 1.0 0.99999 -0.00445042 0.00107461 -2.04184e-006 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.0316096 0.203616 0.97854 -5.94306 + 1.0 0.031055 0.27343 0.96139 -6.0289 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.166667 -0.925528 -0.374542 0.0558187 -0.756076 + 0.333333 -0.925528 -0.374542 0.0558188 -0.756076 + 0.5 -0.925528 -0.374542 0.0558188 -0.756075 + 0.666667 -0.925528 -0.374542 0.055819 -0.756075 + 0.833333 -0.925528 -0.374543 0.0558192 -0.756074 + 1.0 -0.925528 -0.374543 0.0558196 -0.756073 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.946346 0.319161 -0.0506557 -0.906057 + 0.166667 0.953865 0.298961 -0.0276518 -1.05113 + 0.333333 0.946346 0.319161 -0.0506557 -0.906057 + 0.5 0.953865 0.298961 -0.0276518 -1.05113 + 0.666667 0.946346 0.319161 -0.0506557 -0.906057 + 0.833333 0.953865 0.298961 -0.0276518 -1.05113 + 1.0 0.946346 0.319161 -0.0506557 -0.906057 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.855379 0.413186 -0.312417 -1.35916 + 0.166667 0.817533 0.481737 -0.315546 -1.21314 + 0.333333 0.855379 0.413186 -0.312417 -1.35916 + 0.5 0.817533 0.481737 -0.315546 -1.21314 + 0.666667 0.855379 0.413186 -0.312417 -1.35916 + 0.833333 0.817533 0.481737 -0.315546 -1.21314 + 1.0 0.855379 0.413186 -0.312417 -1.35916 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.45672 0.884719 -0.0931603 -0.423959 + 0.166667 0.428231 0.899367 -0.0880699 -0.403207 + 0.333333 0.456719 0.88472 -0.09316 -0.423959 + 0.5 0.428231 0.899367 -0.0880703 -0.403207 + 0.666667 0.456719 0.88472 -0.09316 -0.423959 + 0.833333 0.428231 0.899367 -0.0880704 -0.403207 + 1.0 0.456719 0.88472 -0.0931603 -0.423959 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.378317 -0.913846 -0.147519 -0.517149 + 0.166667 -0.298666 -0.92909 -0.218154 -0.508895 + 0.333333 -0.378317 -0.913846 -0.147518 -0.517149 + 0.5 -0.298665 -0.92909 -0.218154 -0.508895 + 0.666667 -0.378316 -0.913846 -0.147518 -0.517149 + 0.833333 -0.298666 -0.92909 -0.218154 -0.508894 + 1.0 -0.378317 -0.913846 -0.147518 -0.517149 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.164038 -0.91337 -0.372622 -0.521738 + 0.166667 -0.164038 -0.91337 -0.372622 -0.521738 + 0.333333 -0.164038 -0.91337 -0.372622 -0.521738 + 0.5 -0.164037 -0.91337 -0.372622 -0.521738 + 0.666667 -0.164037 -0.91337 -0.372622 -0.521738 + 0.833333 -0.164036 -0.91337 -0.372622 -0.521738 + 1.0 -0.164035 -0.913371 -0.372622 -0.521738 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 0.249289 -0.886398 -0.390068 -0.752087 + 0.166667 0.249289 -0.886398 -0.390068 -0.752087 + 0.333333 0.24929 -0.886398 -0.390067 -0.752087 + 0.5 0.249291 -0.886398 -0.390067 -0.752087 + 0.666667 0.249293 -0.886398 -0.390066 -0.752087 + 0.833333 0.249289 -0.886398 -0.390068 -0.752087 + 1.0 0.24929 -0.886398 -0.390067 -0.752087 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.304392 -0.733249 -0.608023 -0.977311 + 0.166667 0.350949 0.751362 0.558829 -5.54139 + 0.333333 -0.304394 0.733252 0.608018 -5.30589 + 0.5 0.350949 0.751362 0.558829 -5.54139 + 0.666667 -0.304394 0.733252 0.608018 -5.30589 + 0.833333 0.350949 0.751362 0.558829 -5.54139 + 1.0 0.304392 -0.733248 -0.608023 -0.977312 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.831541 0.541677 -0.122985 -5.6414 + 0.166667 -0.449865 0.724431 -0.522323 -6.14279 + 0.333333 -0.831541 0.541677 -0.122985 -5.6414 + 0.5 -0.449862 0.724433 -0.522322 -6.14279 + 0.666667 -0.831541 0.541677 -0.122985 -5.6414 + 0.833333 -0.449864 0.724432 -0.522322 -6.14279 + 1.0 -0.831541 0.541677 -0.122986 -5.6414 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.665314 0.696763 -0.268101 -5.6412 + 0.166667 0.823964 0.541359 -0.167373 -5.98535 + 0.333333 -0.665315 0.696763 -0.2681 -5.6412 + 0.5 0.823964 0.54136 -0.16737 -5.98534 + 0.666667 -0.665315 0.696763 -0.2681 -5.6412 + 0.833333 0.823965 0.541359 -0.167371 -5.98535 + 1.0 -0.665314 0.696763 -0.268101 -5.6412 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.794614 0.522816 -0.30863 -5.60635 + 0.166667 0.919558 0.0268671 0.392035 -5.93297 + 0.333333 -0.794614 0.522814 -0.308631 -5.60635 + 0.5 0.919558 0.0268802 0.392033 -5.93297 + 0.666667 -0.794614 0.522814 -0.308631 -5.60635 + 0.833333 0.919558 0.0268667 0.392036 -5.93297 + 1.0 -0.794614 0.522816 -0.308631 -5.60635 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.32644 -0.935417 0.135766 -0.289735 + 0.166667 0.820684 0.0650548 0.567666 -5.78132 + 0.333333 0.326466 -0.935408 0.135765 -0.289734 + 0.5 0.820694 0.0650922 0.567648 -5.78131 + 0.666667 0.326467 -0.935407 0.135766 -0.289734 + 0.833333 0.820684 0.0650552 0.567667 -5.78132 + 1.0 0.326439 -0.935417 0.135766 -0.289736 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim plreadyr c_marilithe + + +#NWmax ANIM ASCII +newanim plreadyl c_marilithe + length 1.0 + transtime 0.75 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.00301221 -0.0312602 1.00252 + 0.0666667 -0.00189454 -0.0338273 0.999836 + 0.233333 -0.00189455 -0.0562252 0.982741 + 0.433333 -0.00189455 -0.0815413 0.979366 + 0.5 -0.00189455 -0.0851328 0.979271 + 0.566667 -0.00189455 -0.0815413 0.981827 + 0.733333 -0.00189455 -0.0604445 0.995662 + 0.933333 -0.00189454 -0.0351284 1.00189 + 1.0 0.00301221 -0.0312602 1.00252 + endlist + orientationkey + 0.0 0.916261 0.0597125 0.396105 -0.211063 + 0.0666667 0.91813 0.0585731 0.391926 -0.213363 + 0.433333 0.936514 0.046605 0.34752 -0.241268 + 0.5 0.937678 0.0457887 0.344476 -0.243448 + 0.566667 0.936514 0.046605 0.34752 -0.241268 + 0.933333 0.91813 0.0585731 0.391926 -0.213363 + 1.0 0.916261 0.0597125 0.396105 -0.211063 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.847587 0.100708 -0.521013 -0.208508 + 0.0666667 0.854153 0.101596 -0.51 -0.203184 + 0.433333 0.945793 0.114377 -0.303962 -0.143128 + 0.5 0.953125 0.115455 -0.279685 -0.138925 + 0.566667 0.945793 0.114377 -0.303962 -0.143128 + 0.933333 0.854153 0.101596 -0.51 -0.203184 + 1.0 0.847587 0.100708 -0.521013 -0.208508 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.754142 0.416067 -0.508092 -0.838735 + 0.0666667 -0.773418 0.40391 -0.48855 -0.85999 + 0.133333 -0.790498 0.386556 -0.475065 -0.87508 + 0.5 -0.723065 0.436936 -0.535036 -0.811237 + 0.566667 -0.685453 0.47051 -0.555674 -0.794615 + 0.633333 -0.661292 0.487897 -0.56978 -0.778269 + 0.933333 -0.731421 0.444509 -0.517141 -0.832953 + 1.0 -0.754142 0.416068 -0.508092 -0.838735 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.974757 0.000234284 -0.223269 -0.742611 + 0.0666667 -0.97206 -0.00432208 -0.234692 -0.704719 + 0.133333 -0.970575 -0.00672604 -0.240705 -0.686221 + 0.5 -0.978689 0.00740745 -0.205212 -0.811049 + 0.566667 -0.980726 0.0114268 -0.195056 -0.855009 + 0.633333 -0.981216 0.0124315 -0.192513 -0.866721 + 0.933333 -0.976421 0.00318546 -0.215851 -0.769356 + 1.0 -0.974757 0.000234229 -0.223269 -0.74261 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -0.600678 -0.486972 -0.634069 -0.733653 + 0.0666667 -0.604061 -0.494808 -0.62472 -0.743384 + 0.133333 -0.594865 -0.500328 -0.629133 -0.751863 + 0.5 -0.58153 -0.496434 -0.644497 -0.706544 + 0.566667 -0.591747 -0.492496 -0.638188 -0.689167 + 0.633333 -0.608547 -0.46445 -0.643395 -0.682922 + 0.933333 -0.613591 -0.489349 -0.619713 -0.721729 + 1.0 -0.600678 -0.486972 -0.634069 -0.733653 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 3.19393e-005 1.0 -8.38514e-005 -0.497556 + 1.0 3.31174e-005 1.0 -8.43651e-005 -0.497556 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.898818 -0.0473258 -0.435759 -0.0797008 + 0.5 -0.890688 0.132852 -0.434771 -0.159867 + 1.0 -0.898819 -0.0473258 -0.435758 -0.0797009 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.951929 -0.171483 0.253819 -0.237355 + 0.1 -0.942759 -0.205396 0.262713 -0.19354 + 0.5 -0.967597 -0.22687 0.110839 -0.144037 + 0.633333 -0.975447 -0.169769 0.140289 -0.202328 + 1.0 -0.951929 -0.171483 0.253819 -0.237355 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.584026 -0.74891 -0.313126 -0.821783 + 0.0666667 -0.63527 -0.713743 -0.294963 -0.846274 + 0.133333 -0.646912 -0.699354 -0.303988 -0.868443 + 0.5 -0.56267 -0.747074 -0.353952 -0.820955 + 0.566667 -0.539906 -0.770017 -0.339965 -0.795007 + 0.633333 -0.488716 -0.80598 -0.333996 -0.75251 + 1.0 -0.582781 -0.748991 -0.315244 -0.822749 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.998091 0.00207325 -0.0617182 -2.40585 + 0.0666667 -0.998064 0.000958022 -0.0621906 -2.36957 + 0.133333 -0.998046 0.000249343 -0.0624907 -2.34678 + 0.5 -0.998114 0.00302583 -0.0613146 -2.43725 + 0.566667 -0.998147 0.00452848 -0.0606776 -2.48752 + 0.633333 -0.998159 0.00508022 -0.0604435 -2.50621 + 1.0 -0.998091 0.00207324 -0.0617181 -2.40585 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.278709 -0.0244299 0.960065 -5.04142 + 0.0666667 -0.303283 -0.0299224 0.952431 -5.03476 + 0.133333 -0.300824 -0.0391621 0.952875 -5.02231 + 0.5 -0.284672 -0.0299853 0.958156 -5.01757 + 0.566667 -0.295965 -0.0044088 0.955189 -5.03693 + 0.633333 -0.264625 -0.0135436 0.964256 -5.06663 + 1.0 -0.278709 -0.0244301 0.960065 -5.04142 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 -6.28319 + 1.0 0.0 0.0 0.0 -6.28319 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.0310266 0.276539 0.960502 -6.03173 + 1.0 0.0293863 0.414104 0.909755 -6.11483 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558188 -0.756076 + 0.166667 -0.925528 -0.374542 0.0558187 -0.756076 + 0.333333 -0.925528 -0.374542 0.0558188 -0.756076 + 0.5 -0.925528 -0.374542 0.0558188 -0.756076 + 0.666667 -0.925528 -0.374542 0.0558188 -0.756076 + 0.833333 -0.925528 -0.374542 0.0558189 -0.756075 + 1.0 -0.925528 -0.374543 0.055819 -0.756075 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.946346 0.319161 -0.0506557 -0.906057 + 0.166667 0.953865 0.298961 -0.0276518 -1.05113 + 0.333333 0.946346 0.319161 -0.0506557 -0.906057 + 0.5 0.953865 0.298961 -0.0276518 -1.05113 + 0.666667 0.946346 0.319161 -0.0506557 -0.906057 + 0.833333 0.953865 0.298961 -0.0276518 -1.05113 + 1.0 0.946346 0.319161 -0.0506557 -0.906057 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.855379 0.413186 -0.312417 -1.35916 + 0.166667 0.817533 0.481737 -0.315546 -1.21314 + 0.333333 0.855379 0.413186 -0.312417 -1.35916 + 0.5 0.817533 0.481737 -0.315546 -1.21314 + 0.666667 0.855379 0.413186 -0.312417 -1.35916 + 0.833333 0.817533 0.481737 -0.315546 -1.21314 + 1.0 0.855379 0.413186 -0.312417 -1.35916 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.45672 0.884719 -0.0931608 -0.423959 + 0.166667 0.428231 0.899367 -0.0880698 -0.403207 + 0.333333 0.456719 0.88472 -0.0931605 -0.423959 + 0.5 0.428231 0.899367 -0.0880699 -0.403207 + 0.666667 0.456719 0.884719 -0.0931602 -0.423959 + 0.833333 0.428231 0.899367 -0.0880703 -0.403207 + 1.0 0.45672 0.884719 -0.0931599 -0.423959 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.378316 -0.913846 -0.147519 -0.517149 + 0.166667 -0.298666 -0.92909 -0.218153 -0.508894 + 0.333333 -0.378316 -0.913846 -0.147519 -0.517149 + 0.5 -0.298665 -0.92909 -0.218154 -0.508894 + 0.666667 -0.378316 -0.913846 -0.147518 -0.517149 + 0.833333 -0.298666 -0.92909 -0.218154 -0.508895 + 1.0 -0.378317 -0.913846 -0.147518 -0.517149 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.164038 -0.913369 -0.372623 -0.521738 + 0.166667 -0.164038 -0.91337 -0.372622 -0.521738 + 0.333333 -0.164037 -0.91337 -0.372622 -0.521738 + 0.5 -0.164036 -0.91337 -0.372622 -0.521738 + 0.666667 -0.164034 -0.913371 -0.372621 -0.521738 + 0.833333 -0.164032 -0.913371 -0.372621 -0.521738 + 1.0 -0.164038 -0.91337 -0.372622 -0.521738 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 0.24929 -0.886398 -0.390068 -0.752086 + 0.166667 0.249291 -0.886398 -0.390067 -0.752087 + 0.333333 0.249293 -0.886398 -0.390066 -0.752087 + 0.5 0.249288 -0.886399 -0.390068 -0.752087 + 0.666667 0.249289 -0.886399 -0.390067 -0.752087 + 0.833333 0.24929 -0.886398 -0.390067 -0.752087 + 1.0 0.249291 -0.886398 -0.390067 -0.752087 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.304392 -0.733249 -0.608023 -0.977312 + 0.166667 0.350949 0.751362 0.558829 -5.54139 + 0.333333 -0.304394 0.733252 0.608018 -5.30589 + 0.5 0.350949 0.751362 0.558829 -5.54139 + 0.666667 -0.304394 0.733252 0.608018 -5.30589 + 0.833333 0.350949 0.751362 0.558829 -5.54139 + 1.0 0.304392 -0.733249 -0.608023 -0.977312 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.831541 0.541677 -0.122986 -5.6414 + 0.166667 -0.449864 0.724432 -0.522323 -6.14279 + 0.333333 -0.831541 0.541677 -0.122985 -5.6414 + 0.5 -0.449863 0.724433 -0.522321 -6.14279 + 0.666667 -0.831541 0.541677 -0.122985 -5.6414 + 0.833333 -0.449865 0.724431 -0.522323 -6.14279 + 1.0 -0.831541 0.541677 -0.122986 -5.6414 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.665314 0.696764 -0.2681 -5.6412 + 0.166667 0.823965 0.541358 -0.167373 -5.98535 + 0.333333 -0.665315 0.696763 -0.2681 -5.6412 + 0.5 0.823964 0.54136 -0.16737 -5.98534 + 0.666667 -0.665315 0.696763 -0.2681 -5.6412 + 0.833333 0.823964 0.541359 -0.167372 -5.98535 + 1.0 -0.665314 0.696764 -0.268101 -5.6412 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.794613 0.522817 -0.308631 -5.60635 + 0.166667 0.919558 0.0268661 0.392035 -5.93297 + 0.333333 -0.794615 0.522814 -0.308631 -5.60635 + 0.5 0.919558 0.0268804 0.392033 -5.93297 + 0.666667 -0.794615 0.522814 -0.308631 -5.60635 + 0.833333 0.919558 0.0268667 0.392036 -5.93297 + 1.0 -0.794613 0.522816 -0.308631 -5.60635 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.326439 -0.935417 0.135766 -0.289736 + 0.166667 0.820684 0.0650546 0.567667 -5.78132 + 0.333333 0.326466 -0.935408 0.135766 -0.289734 + 0.5 0.820694 0.065093 0.567648 -5.78131 + 0.666667 0.326466 -0.935408 0.135766 -0.289735 + 0.833333 0.820684 0.0650551 0.567667 -5.78132 + 1.0 0.32644 -0.935417 0.135765 -0.289735 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim plreadyl c_marilithe + + +#NWmax ANIM ASCII +newanim 2hslashl c_marilithe + length 1.0 + transtime 0.3 + animroot rootdummy + event 0.5 hit + event 0.566667 blur_end + event 0.433333 blur_start + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000247936 -0.0325525 1.02808 + 0.0666667 0.000247936 -0.0419736 1.02869 + 0.233333 0.000247937 -0.164448 1.03654 + 0.333333 0.000247936 -0.140457 1.02808 + 0.5 0.000247739 0.193946 0.919631 + 0.6 0.000247699 0.249243 0.893496 + 0.666667 0.000247675 0.217466 0.921006 + 0.733333 0.000247652 0.170418 0.946392 + 0.933333 0.00024757 -0.00905775 1.0188 + 1.0 0.000247936 -0.0325525 1.02808 + endlist + orientationkey + 0.0 0.401904 0.466045 0.78821 -0.466555 + 0.233333 0.401904 0.466045 0.78821 -0.466555 + 0.333333 0.401904 0.466045 0.78821 -0.466555 + 0.933333 0.908256 0.0908262 0.408439 -0.23996 + 1.0 0.401904 0.466045 0.78821 -0.466555 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.524354 -0.380472 0.76177 -0.520465 + 0.233333 0.358975 -0.179392 0.915945 -0.91987 + 0.333333 0.419257 -0.252184 0.872139 -0.720414 + 0.5 0.444656 -0.308343 -0.840955 -0.851493 + 0.6 0.320985 -0.0936603 -0.942442 -1.11234 + 0.666667 0.298398 -0.0837701 -0.950758 -1.0109 + 0.933333 0.746219 0.0497784 -0.663836 -0.280732 + 1.0 0.524353 -0.380472 0.761771 -0.520465 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.223312 0.770286 -0.59732 -0.486651 + 0.233333 -0.715257 0.486886 0.501347 -1.43157 + 0.333333 -0.701822 0.515582 0.491549 -1.411 + 0.433333 -0.550545 0.832333 -0.0641984 -1.49525 + 0.5 -0.677124 0.649775 -0.345392 -2.12164 + 0.6 -0.674624 0.231373 -0.700963 -2.25839 + 0.666667 -0.581392 0.21982 -0.783366 -2.39233 + 0.733333 -0.51784 0.31405 -0.795748 -2.34447 + 0.933333 -0.489702 0.312646 -0.813907 -1.35284 + 1.0 -0.223312 0.770286 -0.597319 -0.486651 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -1.0 0.0 0.0 -2.04933 + 0.233333 1.0 0.0 0.0 -4.53011 + 0.333333 -1.0 0.0 0.0 -1.80442 + 0.433333 -1.0 0.0 0.0 -1.40979 + 0.5 -1.0 -8.38815e-007 4.41735e-007 -0.318311 + 0.6 1.0 5.96864e-007 1.82729e-007 -5.92065 + 0.666667 1.0 5.37227e-007 0.0 -5.75235 + 0.733333 1.0 0.0 0.0 -5.24193 + 0.933333 -1.0 0.0 0.0 -0.990068 + 1.0 -1.0 0.0 0.0 -2.04933 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.455179 -0.430545 0.779386 -0.348379 + 0.233333 -0.468086 0.572551 -0.673113 -4.03012 + 0.333333 -0.452908 -0.172295 -0.874751 -4.90633 + 0.433333 0.0965866 0.333172 0.937906 -2.18131 + 0.5 0.108138 -0.495901 0.86162 -2.5891 + 0.6 -0.218902 0.665228 -0.713831 -4.0106 + 0.666667 -0.0304985 0.673597 -0.738469 -4.2754 + 0.733333 -0.0177173 0.589176 -0.807811 -4.74869 + 0.933333 0.255341 0.516152 0.81755 -1.02021 + 1.0 0.455179 -0.430545 0.779386 -0.348379 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.233333 0.0 0.0 0.0 -2.14908e-007 + 0.333333 -0.970044 0.159858 0.182921 -6.28318 + 0.5 0.0 0.0 0.0 -1.46001e-007 + 1.0 0.0 0.0 0.0 -1.93141e-007 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.199135 -0.033531 -0.979398 -0.338477 + 0.233333 0.199139 -0.0335316 -0.979397 -0.338477 + 0.333333 0.199135 -0.0335215 -0.979399 -0.338477 + 0.433333 0.360049 0.253434 -0.897851 -0.184579 + 0.5 0.542958 0.705249 -0.455874 -0.120895 + 0.6 0.790075 0.496251 -0.359884 -0.139038 + 0.666667 0.810234 0.451067 -0.374246 -0.12697 + 0.733333 0.831675 0.395006 -0.390239 -0.115309 + 0.933333 0.890816 0.0563419 -0.450857 -0.0802253 + 1.0 0.199135 -0.0335311 -0.979398 -0.338477 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.651364 0.193499 -0.733678 -0.672338 + 0.233333 -0.154811 0.221055 -0.962896 -0.78148 + 0.333333 -0.275052 0.214275 -0.937247 -0.62337 + 0.433333 -0.986809 0.15171 -0.0565009 -0.429375 + 0.5 -0.704659 0.131273 0.697297 -0.621768 + 0.6 -0.482963 -0.0389743 0.874773 -0.653265 + 0.666667 -0.431663 -0.09093 0.89744 -0.636341 + 0.733333 -0.482247 -0.0991794 0.870403 -0.661075 + 0.933333 -0.948009 -0.0928602 0.304394 -0.42071 + 1.0 -0.651364 0.193499 -0.733678 -0.672338 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.995604 -0.0207693 -0.0913342 -6.0931e-007 + 1.0 0.999865 -0.0164109 -0.000592345 -1.23383e-006 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.297559 -0.523588 0.79832 -1.96297 + 0.0666667 -0.406145 -0.504074 0.762204 -2.0793 + 0.233333 -0.619201 -0.431523 0.656033 -2.52085 + 0.333333 -0.7309 -0.28806 0.618714 -2.55588 + 0.433333 -0.643104 -0.503237 0.577209 -2.41212 + 0.5 -0.861201 -0.340697 0.37717 -2.0481 + 0.6 -0.425756 -0.904664 -0.0177184 -0.809318 + 0.666667 0.379223 -0.913556 0.146987 -0.753964 + 0.733333 0.484226 -0.784948 0.3865 -0.828049 + 0.833333 -0.0610338 -0.867772 0.4932 -0.705137 + 0.933333 -0.402763 -0.501795 0.765496 -1.02553 + 1.0 -0.297088 -0.524332 0.798006 -1.96143 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 1.0 -4.21834e-007 1.6375e-007 -4.99431 + 0.0666667 1.0 -5.37896e-007 0.0 -5.17581 + 0.233333 1.0 -5.41557e-007 0.0 -5.27199 + 0.333333 1.0 -1.48838e-006 -2.09694e-007 -5.96285 + 0.433333 1.0 -1.0322e-006 0.0 -5.80595 + 0.5 -1.0 9.73952e-007 1.56414e-007 -0.5024 + 0.6 -1.0 2.16783e-007 -1.33599e-007 -1.93955 + 0.666667 -1.0 2.22503e-007 -1.43219e-007 -1.95368 + 0.733333 -1.0 2.59754e-007 -1.71479e-007 -1.82624 + 0.833333 -1.0 3.36567e-007 0.0 -1.44581 + 0.933333 -1.0 7.04749e-007 0.0 -0.814697 + 1.0 1.0 -4.08808e-007 1.8526e-007 -4.99431 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.0545013 0.47726 0.87707 -5.30919 + 0.0666667 0.0671691 0.16938 0.983259 -5.09824 + 0.233333 -0.122098 -0.108344 0.986587 -4.3117 + 0.333333 -0.298885 -0.760226 0.576822 -5.4081 + 0.433333 -0.74658 -0.229963 0.624288 -5.34798 + 0.5 0.916375 0.131943 -0.377953 -1.9738 + 0.6 0.59445 -0.137666 -0.792261 -2.41021 + 0.666667 0.153161 -0.102246 -0.982897 -1.74857 + 0.733333 -0.402442 -0.0708191 -0.912702 -1.19144 + 0.833333 0.117933 0.0521696 -0.99165 -0.874386 + 0.933333 -0.111937 -0.208828 -0.971525 -0.798328 + 1.0 0.0545013 0.47726 0.87707 -5.30919 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 -0.990634 0.112148 0.077895 -6.28318 + 1.0 0.995282 0.0956022 -0.0165553 -6.28318 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.031651 0.22798 0.973151 -5.97859 + 1.0 0.0316476 0.227981 0.973151 -5.97859 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558188 -0.756076 + 0.233333 -0.932547 -0.360373 0.0220834 -0.624866 + 0.6 -0.928644 -0.366699 0.056141 -0.881105 + 1.0 -0.925528 -0.374542 0.0558186 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.947311 0.316644 -0.0483628 -0.884067 + 0.233333 0.960704 0.277244 -0.01355 -0.834156 + 0.6 0.947317 0.317524 -0.0420515 -1.52074 + 1.0 0.947311 0.316644 -0.0483627 -0.884067 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.843929 0.423051 -0.329866 -1.2461 + 0.233333 0.957728 0.20961 -0.197029 -1.34881 + 0.6 0.912859 -0.3898 -0.121423 -0.930469 + 1.0 0.843929 0.423051 -0.329866 -1.2461 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.488943 0.865121 -0.111804 -0.439568 + 0.233333 0.810475 0.264645 -0.522583 -0.454128 + 0.6 0.873514 -0.324568 -0.362806 -0.128981 + 1.0 0.488943 0.865121 -0.111803 -0.439568 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.136147 -0.914871 -0.380099 -0.46156 + 0.233333 0.468939 0.0396758 -0.882339 -6.0929 + 0.6 -0.0874879 0.99607 -0.013783 -0.16477 + 1.0 0.136147 -0.914871 -0.380098 -0.46156 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.393772 -0.843573 -0.365142 -0.566005 + 0.233333 -0.982661 0.157324 -0.098118 -0.338256 + 0.6 -0.188878 0.976747 -0.101441 -0.652799 + 1.0 -0.393772 -0.843573 -0.365142 -0.566005 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.175445 -0.704046 -0.688141 -0.789493 + 0.233333 -0.352504 -0.148544 -0.923946 -0.795141 + 0.6 0.371849 0.413773 -0.830975 -0.580861 + 1.0 -0.175445 -0.704046 -0.688141 -0.789493 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.534531 -0.652466 -0.537183 -0.508357 + 0.233333 -0.799939 -0.561285 -0.212266 -0.961906 + 0.6 0.58094 0.364788 -0.727625 -0.254415 + 1.0 -0.534531 -0.652466 -0.537183 -0.508357 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.186748 0.293763 0.937459 -0.300986 + 0.233333 -0.77797 -0.344162 0.525658 -0.849256 + 0.6 -0.525301 -0.738356 -0.422952 -5.43902 + 1.0 -0.186748 0.293763 0.937459 -0.300986 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.609802 -0.428833 0.666516 -0.428774 + 0.233333 -0.595415 -0.645576 0.478239 -1.05514 + 0.6 0.603348 0.630016 -0.488929 -5.7037 + 1.0 -0.609803 -0.428831 0.666516 -0.428774 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555737 -0.721894 0.412342 -0.425799 + 0.233333 -0.105265 0.917528 -0.383486 -5.62248 + 0.6 0.0149109 -0.99625 0.0852233 -1.14851 + 1.0 0.555737 -0.721893 0.412343 -0.425798 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.326593 0.935518 -0.134698 -5.99296 + 0.233333 0.0361799 0.998145 -0.0489737 -5.74647 + 0.6 0.0917556 -0.988961 -0.116352 -0.688371 + 1.0 -0.326595 0.935517 -0.134699 -5.99296 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim 2hslashl c_marilithe + + +#NWmax ANIM ASCII +newanim 2hslashr c_marilithe + length 1.0 + transtime 0.3 + animroot rootdummy + event 0.5 hit + event 0.6 blur_end + event 0.433333 blur_start + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000247559 -0.0325532 1.02808 + 0.0666667 -0.00540522 -0.0396983 1.02808 + 0.133333 -0.0122725 -0.065292 1.02807 + 0.2 -0.0180657 -0.0871109 1.02807 + 0.266667 -0.0238517 -0.102111 1.02807 + 0.333333 -0.0220711 -0.0478079 1.01555 + 0.4 -0.0165804 0.0689783 0.99051 + 0.466667 0.0198351 0.198577 0.941488 + 0.533333 0.0801312 0.279878 0.917021 + 0.6 0.109597 0.265647 0.917037 + 0.666667 0.112962 0.25229 0.917211 + 0.733333 0.0883165 0.202245 0.92813 + 0.8 0.0597615 0.143546 0.95312 + 0.866667 0.0378047 0.0848462 0.978108 + 0.9 0.0283896 0.0554968 0.990602 + 1.0 0.000247936 -0.0325525 1.02808 + endlist + orientationkey + 0.0 0.933086 0.0489378 0.356309 -0.235167 + 0.0666667 0.890609 0.0443542 -0.452602 -0.202542 + 0.133333 0.0736188 0.000821164 -0.997286 -0.653355 + 0.2 -0.0474504 -0.00539538 -0.998859 -1.0362 + 0.266667 -0.0513492 -0.0175806 -0.998526 -1.01188 + 0.333333 0.0471974 -0.087039 -0.995086 -0.582704 + 0.4 0.811161 -0.565141 0.150443 -0.162607 + 0.466667 0.334746 -0.18674 0.92362 -0.68256 + 0.533333 0.313753 -0.15423 0.936895 -1.08007 + 0.6 0.303564 -0.114341 0.945926 -1.29253 + 0.666667 0.302095 -0.114779 0.946343 -1.29963 + 0.733333 0.301963 -0.0858744 0.949444 -1.21941 + 0.8 0.30234 -0.015461 0.953075 -1.0548 + 0.866667 0.30053 0.0777479 0.950598 -0.895929 + 0.9 0.319792 0.138344 0.937333 -0.779835 + 1.0 0.40204 0.466024 0.788153 -0.46655 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.877818 0.0970434 -0.46906 -0.23112 + 0.0666667 0.673663 0.114845 -0.730061 -0.255921 + 0.166667 -0.0457937 0.0510513 -0.997646 -0.398697 + 0.233333 -0.196636 0.0335373 -0.979903 -0.392947 + 0.3 -0.192782 0.35604 -0.914369 -0.50672 + 0.366667 -0.196899 0.480437 -0.854641 -0.510313 + 0.5 0.262898 0.207258 -0.9423 -0.569189 + 0.6 0.337487 -0.584616 0.737785 -0.233604 + 0.666667 -0.222532 -0.71358 0.664292 -0.484395 + 0.733333 -0.311401 -0.562749 0.76573 -0.577386 + 0.8 -0.194225 -0.54283 0.817076 -0.550483 + 0.866667 0.0869243 -0.561178 0.823118 -0.424374 + 1.0 0.524353 -0.380472 0.761771 -0.520465 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.483668 0.308084 -0.819237 -1.2121 + 0.0666667 -0.517162 0.257454 -0.816248 -1.41067 + 0.166667 -0.535492 0.21258 -0.817348 -1.92666 + 0.233333 -0.543059 0.143575 -0.827329 -1.93535 + 0.3 -0.572015 0.244542 -0.782942 -2.09827 + 0.366667 -0.6334 0.224426 -0.740566 -2.34307 + 0.433333 -0.711014 0.102413 -0.69568 -2.66308 + 0.5 -0.553863 0.568044 -0.608738 -2.64202 + 0.6 -0.851383 0.443542 -0.280032 -1.39348 + 0.633333 -0.822994 0.546398 -0.155337 -1.16065 + 0.666667 -0.839141 0.543448 -0.0225045 -1.10775 + 0.7 -0.829821 0.555012 0.0579597 -1.03534 + 0.733333 -0.846446 0.501808 0.178097 -1.0211 + 0.766667 -0.795885 0.549071 0.255124 -0.960389 + 0.866667 -0.569037 0.819981 -0.0618765 -0.667555 + 0.9 -0.401484 0.891992 -0.207753 -0.627519 + 1.0 -0.223312 0.770287 -0.597319 -0.486651 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -1.0 0.0 0.0 -0.984543 + 0.0666667 -1.0 1.25367e-007 2.29818e-007 -0.902513 + 0.166667 1.0 1.81971e-007 0.0 -5.4133 + 0.233333 1.0 1.58361e-007 0.0 -5.4217 + 0.3 1.0 0.0 0.0 -5.25562 + 0.366667 1.0 1.97586e-007 0.0 -5.60901 + 0.433333 -1.0 2.67861e-006 -6.74962e-007 -6.19687 + 0.5 1.0 2.31183e-007 -6.78904e-007 -6.01019 + 0.6 -1.0 -1.41994e-007 0.0 -0.841866 + 0.633333 -1.0 0.0 0.0 -1.13135 + 0.666667 -1.0 0.0 0.0 -1.30361 + 0.7 -1.0 0.0 0.0 -1.30173 + 0.733333 -1.0 0.0 0.0 -1.47015 + 0.766667 -1.0 0.0 0.0 -1.47149 + 0.866667 -1.0 0.0 0.0 -1.70077 + 0.9 -1.0 0.0 0.0 -1.80884 + 1.0 -1.0 0.0 0.0 -2.04933 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.264739 0.670195 0.693363 -1.08462 + 0.0666667 0.0105863 0.815667 0.578425 -0.74653 + 0.166667 0.127768 -0.635161 0.761739 -5.86897 + 0.233333 0.277782 -0.0927216 0.956159 -5.61219 + 0.3 -0.0209821 0.114252 0.99323 -5.77365 + 0.366667 0.318155 -0.198622 0.926999 -5.82558 + 0.433333 -0.455901 -0.0112214 0.88996 -5.90536 + 0.5 -0.516561 0.540849 -0.663812 -5.47495 + 0.6 0.626804 -0.308036 -0.715703 -0.809791 + 0.633333 0.693618 -0.120189 -0.710246 -0.859785 + 0.666667 -0.485883 0.259758 0.834532 -5.51371 + 0.7 -0.106632 0.317803 0.942142 -5.55915 + 0.733333 -0.182298 0.423766 0.887237 -5.5507 + 0.766667 -0.101258 0.450735 0.886896 -5.71587 + 0.866667 0.0995462 -0.865749 -0.490478 -0.194019 + 0.9 0.147389 -0.943688 0.296191 -0.139515 + 1.0 0.455179 -0.430545 0.779386 -0.348379 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 -1.0 8.33345e-007 5.15437e-007 -0.18326 + 0.0666667 1.0 2.28757e-005 8.56217e-006 -0.016622 + 0.166667 -1.0 -1.72751e-006 -1.85905e-006 -6.18678 + 0.233333 -1.0 -3.46515e-006 -9.8309e-007 -6.16683 + 0.3 -1.0 -1.61992e-007 -1.30532e-006 -6.15956 + 0.433333 0.296873 -0.90479 -0.305321 -6.09794 + 0.5 0.851455 0.468292 0.236064 -1.36032 + 0.633333 0.843984 0.535945 0.0213159 -2.33364 + 0.7 0.838397 0.385402 0.38543 -2.11188 + 0.733333 0.66158 0.528969 0.53151 -2.12314 + 0.766667 0.587852 0.589983 0.553489 -1.88642 + 0.8 0.51722 0.617593 0.592505 -1.57003 + 0.833333 0.439408 0.621184 0.648884 -1.28884 + 1.0 0.0 0.0 0.0 -1.3328e-007 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.889417 -0.0175322 -0.456761 -0.0764253 + 0.0666667 0.544229 0.0272877 0.838493 -0.124824 + 0.166667 0.209886 0.0327558 0.977177 -0.321357 + 0.233333 0.14572 0.033294 0.988765 -0.458748 + 0.3 0.110566 0.0335251 0.993303 -0.597165 + 0.366667 0.666262 0.293947 0.685339 -0.416562 + 0.5 0.821218 0.38427 -0.421826 -0.825329 + 0.6 0.472791 0.443914 -0.761189 -0.978194 + 0.666667 0.261916 0.434888 -0.861552 -1.16424 + 0.733333 0.259439 0.404192 -0.877109 -0.992039 + 0.833333 0.252627 0.332188 -0.908752 -0.736619 + 0.933333 0.234654 0.184719 -0.954367 -0.489493 + 1.0 0.199132 -0.0335323 -0.979399 -0.338477 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.984448 -0.0846581 0.15393 -0.415585 + 0.0666667 -0.939652 -0.0928453 0.329293 -0.431885 + 0.166667 -0.100234 -0.145207 0.984311 -0.875667 + 0.233333 0.0517636 -0.105628 0.993058 -0.846255 + 0.3 0.309845 -0.272823 0.910804 -0.642995 + 0.366667 -0.345505 -0.644048 0.682516 -0.493176 + 0.5 -0.92859 0.0120677 0.37091 -0.956488 + 0.6 -0.933662 0.34019 -0.112008 -0.660548 + 0.666667 -0.675446 0.450299 -0.583955 -0.47686 + 0.733333 -0.483398 0.218973 -0.847571 -0.719498 + 0.833333 -0.459206 0.247051 -0.853285 -0.763932 + 0.933333 -0.655329 0.188613 -0.731416 -0.698791 + 1.0 -0.664231 0.191276 -0.722641 -0.65893 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.999995 0.00317038 -0.000547283 -1.70682e-006 + 1.0 0.999982 0.00304778 -0.00508161 -3.42532e-006 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.41711 -0.376114 0.82738 -1.20505 + 0.0666667 -0.418057 -0.503559 0.75608 -1.09024 + 0.166667 -0.254902 -0.8158 0.519129 -1.01895 + 0.233333 -0.220953 -0.892592 0.393012 -0.902165 + 0.3 -0.202375 -0.921827 0.330574 -1.05103 + 0.366667 -0.372826 -0.922682 0.0982817 -1.07456 + 0.433333 -0.600621 -0.794524 -0.0893621 -1.09566 + 0.5 -0.722574 -0.653623 0.225086 -1.31717 + 0.6 -0.685977 -0.432842 0.584879 -1.93927 + 0.733333 -0.752054 -0.194493 0.629752 -1.87884 + 0.8 -0.474183 -0.499933 0.724719 -1.38829 + 1.0 -0.296611 -0.525086 0.797688 -1.95985 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -1.0 7.71997e-007 -1.44256e-007 -0.618077 + 0.0666667 -1.0 6.86546e-007 1.22361e-007 -0.721637 + 0.166667 -1.0 5.79228e-007 0.0 -1.06009 + 0.233333 -1.0 5.04826e-007 -1.92252e-007 -1.21034 + 0.3 -1.0 3.6893e-007 -2.54e-007 -1.4596 + 0.366667 -1.0 4.47806e-007 -1.43048e-007 -1.33107 + 0.433333 -1.0 4.22445e-007 -1.70614e-007 -1.41398 + 0.5 -1.0 4.37642e-007 0.0 -1.2334 + 0.6 1.0 -1.51186e-006 -2.12902e-007 -5.91236 + 0.733333 1.0 -1.28034e-006 5.43267e-007 -5.83069 + 0.8 1.0 -3.48826e-007 0.0 -5.1464 + 1.0 1.0 -3.4427e-007 1.85808e-007 -4.99431 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.0541635 -0.549767 -0.83356 -1.16552 + 0.0666667 -0.320991 -0.41233 -0.852613 -1.17056 + 0.166667 -0.70256 -0.433253 -0.564536 -1.71043 + 0.233333 -0.638592 -0.566783 -0.520535 -1.94183 + 0.3 -0.466913 -0.690727 -0.552167 -2.20021 + 0.366667 -0.437082 -0.640292 -0.631652 -2.10657 + 0.433333 -0.185185 -0.446183 -0.875573 -2.04829 + 0.5 -0.14345 -0.346484 0.927023 -3.80093 + 0.6 -0.290552 -0.531638 0.795575 -4.28466 + 0.733333 -0.708135 -0.269662 0.652554 -5.57126 + 0.8 -0.0444968 0.118199 0.991992 -6.12928 + 1.0 0.0545014 0.47726 0.87707 -5.30919 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.981645 0.133231 0.136462 -6.28318 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0316421 -0.227981 -0.973151 -0.304591 + 1.0 0.0316554 0.227981 0.973151 -5.97859 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.233333 -0.932547 -0.360373 0.0220833 -0.624866 + 0.6 -0.928644 -0.366699 0.0561411 -0.881105 + 1.0 -0.925528 -0.374542 0.0558187 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.952688 0.302289 -0.0317386 -0.983868 + 0.233333 0.960704 0.277244 -0.01355 -0.834156 + 0.6 0.849979 0.396231 -0.347185 -1.62719 + 1.0 0.952688 0.302289 -0.0317385 -0.983868 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.846072 0.419319 -0.329142 -1.2556 + 0.233333 0.764963 -0.520538 0.379305 -1.64792 + 0.6 0.887028 -0.286366 -0.362181 -0.754991 + 1.0 0.846072 0.419319 -0.329142 -1.2556 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.539439 0.825098 -0.167985 -0.460618 + 0.233333 0.810476 0.264645 -0.522582 -0.454128 + 0.6 0.926559 -0.346601 0.146137 -0.196503 + 1.0 0.539439 0.825098 -0.167986 -0.460618 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.308514 -0.950602 -0.0342711 -0.44742 + 0.233333 0.715098 -0.210509 0.666574 -0.199496 + 0.6 -0.329166 0.908363 -0.257928 -0.20602 + 1.0 -0.308514 -0.950602 -0.0342719 -0.44742 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.393772 -0.843573 -0.365141 -0.566005 + 0.233333 0.962555 -0.175617 0.206513 -6.04626 + 0.6 0.447773 0.892184 -0.0592159 -0.319788 + 1.0 -0.393772 -0.843572 -0.365143 -0.566005 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.175446 -0.704046 -0.688141 -0.789494 + 0.233333 -0.538327 -0.0124899 -0.842643 -0.854973 + 0.433333 0.215567 0.411818 -0.885402 -0.584923 + 0.6 0.212673 0.867059 -0.450532 -0.794746 + 1.0 -0.175445 -0.704046 -0.688142 -0.789493 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.53453 -0.652464 -0.537185 -0.50836 + 0.233333 -0.865527 -0.389612 -0.314747 -0.99588 + 0.433333 -0.152534 0.0238111 -0.988011 -0.186868 + 0.6 0.594465 0.793887 -0.127887 -0.751538 + 1.0 -0.534532 -0.652465 -0.537182 -0.508358 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.186738 0.293747 0.937466 -0.300981 + 0.233333 -0.949615 -0.277233 -0.146198 -0.766047 + 0.433333 -0.628673 0.511745 0.585566 -0.291751 + 0.6 -0.429537 -0.672295 -0.602924 -5.6272 + 1.0 -0.186747 0.293768 0.937457 -0.300987 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.651309 -0.424583 0.628909 -0.414355 + 0.233333 -0.59543 -0.645552 0.478253 -1.05512 + 0.433333 -0.655926 -0.511369 0.555214 -0.604555 + 0.6 0.723069 0.0107512 -0.690692 -6.00632 + 1.0 -0.651341 -0.424517 0.62892 -0.414357 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555693 -0.721895 0.4124 -0.425889 + 0.233333 -0.105363 0.917557 -0.38339 -5.62249 + 0.433333 0.0688622 -0.979663 0.188461 -0.874475 + 0.6 0.0482618 -0.995494 0.0816259 -1.06875 + 1.0 0.555742 -0.721895 0.412333 -0.425801 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.327245 0.935451 -0.133576 -5.99299 + 0.233333 0.0360826 0.998143 -0.0490786 -5.7463 + 0.433333 -0.0309062 -0.995616 -0.0882787 -0.754124 + 0.6 -0.0277223 -0.987486 -0.155252 -0.940426 + 1.0 -0.326685 0.935473 -0.134786 -5.99303 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim 2hslashr c_marilithe + + +#NWmax ANIM ASCII +newanim 2hstab c_marilithe + length 1.0 + transtime 0.4 + animroot rootdummy + event 0.3 snd_footstep + event 0.5 hit + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000247747 -0.0325529 1.02808 + 0.0666667 -0.0157 -0.0690023 1.03951 + 0.1 -0.0328346 -0.103007 1.05086 + 0.166667 -0.064204 -0.151235 1.06141 + 0.233333 -0.114164 -0.21864 1.06937 + 0.3 -0.164374 -0.278732 1.06894 + 0.366667 -0.139849 -0.142622 1.04914 + 0.433333 -0.0866432 0.0904906 0.974853 + 0.5 -0.0701847 0.168195 0.950093 + 0.633333 -0.0680749 0.21376 0.93359 + 0.733333 -0.0501431 0.14548 0.959754 + 0.833333 -0.0237987 0.0322146 1.00391 + 0.9 -0.00623574 -0.0139501 1.02157 + 1.0 0.000247747 -0.0325529 1.02808 + endlist + orientationkey + 0.0 0.627492 0.351856 0.694587 -0.325185 + 0.0666667 0.531914 0.305661 0.789708 -0.396915 + 0.1 0.493219 0.286738 0.821289 -0.43498 + 0.166667 0.43041 0.255765 0.865639 -0.513913 + 0.233333 0.382312 0.231855 0.894472 -0.595335 + 0.3 0.344616 0.213012 0.914257 -0.678351 + 0.366667 0.484926 0.202988 0.850672 -0.620281 + 0.433333 0.947606 0.0953191 0.304889 -0.573123 + 0.5 0.99491 0.0486102 0.0882703 -0.623856 + 0.633333 0.995297 0.0456116 0.0854546 -0.649908 + 0.733333 0.967354 0.118704 0.223912 -0.511085 + 0.833333 0.871391 0.224025 0.436452 -0.395543 + 0.9 0.719043 0.314374 0.619795 -0.340112 + 1.0 0.627492 0.351856 0.694587 -0.325185 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.894606 -0.386439 0.224378 -0.255901 + 0.0666667 0.873619 -0.368933 0.317298 -0.262244 + 0.233333 0.166244 -0.364172 0.916374 -0.561208 + 0.3 0.0340194 -0.522953 0.851683 -0.625051 + 0.366667 0.640596 -0.264328 0.720949 -0.412575 + 0.433333 0.980337 -0.177906 -0.0853753 -0.161286 + 0.5 0.181192 -0.0230648 -0.983177 -0.166585 + 0.633333 0.803729 0.0431591 -0.593428 -0.275891 + 0.733333 0.991064 -0.0566181 0.120772 -0.210408 + 0.833333 0.965679 -0.198845 0.167106 -0.223898 + 1.0 0.894606 -0.386439 0.224378 -0.255901 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.260154 0.717797 -0.645823 -0.186119 + 0.0666667 -0.147682 0.666308 -0.730906 -0.266668 + 0.1 0.0669565 0.613787 -0.786627 -0.446981 + 0.166667 0.205955 0.562037 -0.80106 -0.829842 + 0.2 0.217183 0.576468 -0.787728 -1.02679 + 0.233333 0.13144 0.592395 -0.794853 -1.04106 + 0.3 -0.0522276 0.639526 -0.766993 -1.10022 + 0.366667 0.0767354 0.730855 -0.678206 -1.22827 + 0.433333 0.37359 0.730577 -0.571567 -0.982505 + 0.466667 -0.43926 0.783459 -0.439595 -1.33477 + 0.5 -0.985197 -0.123447 0.118941 -1.74005 + 0.533333 -0.997726 0.0517081 0.0432394 -1.65295 + 0.566667 -0.971017 0.235815 -0.0389625 -1.60496 + 0.633333 -0.962411 0.269956 0.0298074 -1.4246 + 0.733333 -0.384438 0.611994 -0.691137 -0.633653 + 0.833333 -0.641091 0.474037 -0.603566 -0.517628 + 0.9 -0.569066 0.523318 -0.634273 -0.311804 + 0.933333 -0.474982 0.577172 -0.664278 -0.211291 + 1.0 -0.260154 0.717797 -0.645823 -0.186119 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.966792 -0.209574 -0.146258 -1.65226 + 0.0666667 -0.971812 -0.207605 -0.111717 -1.60817 + 0.1 -0.983147 -0.174836 -0.0534282 -1.64809 + 0.166667 -0.99219 -0.111007 0.0568914 -1.74083 + 0.2 -0.990606 -0.0804641 0.110565 -1.77187 + 0.233333 -0.989724 -0.0944882 0.107327 -1.7333 + 0.3 -0.987329 -0.123256 0.0999494 -1.64817 + 0.366667 -0.987503 -0.140857 0.0706881 -1.64491 + 0.433333 -0.990171 -0.139371 0.0117017 -1.9852 + 0.466667 -0.982476 -0.186363 -0.0032336 -1.53979 + 0.5 -0.749519 -0.635898 0.183999 -0.355738 + 0.533333 -0.911236 -0.408368 0.0537016 -0.560762 + 0.566667 -0.956773 -0.290726 -0.00795763 -0.789347 + 0.633333 -0.983341 -0.168158 -0.0690159 -1.33862 + 0.733333 -0.991846 0.0333304 -0.123005 -2.19492 + 0.833333 -0.988067 -0.0619706 -0.141006 -1.81969 + 0.9 -0.979863 -0.138123 -0.144187 -1.73013 + 0.933333 -0.973201 -0.178051 -0.145526 -1.68764 + 1.0 -0.966792 -0.209574 -0.146258 -1.65226 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.848897 0.329653 0.413162 -0.189749 + 0.0666667 0.90666 0.163692 0.38881 -0.201068 + 0.1 0.883697 0.185873 0.429571 -0.261655 + 0.166667 0.859336 0.203749 0.469072 -0.433269 + 0.2 0.871636 0.139039 0.47002 -0.570194 + 0.233333 0.981435 -0.058109 0.182782 -0.632043 + 0.3 0.954101 -0.299484 -0.000983729 -0.870496 + 0.366667 0.441186 -0.162103 0.882654 -0.303089 + 0.433333 -0.122634 0.753533 0.645871 -0.426166 + 0.466667 0.220283 0.42935 0.875862 -1.02038 + 0.5 0.856584 -0.0882828 -0.5084 -0.545602 + 0.533333 0.953723 -0.284376 0.0976853 -0.509566 + 0.566667 0.738811 -0.192903 0.645715 -0.647321 + 0.633333 0.8438 -0.0889766 0.529231 -0.874153 + 0.733333 0.8237 0.28892 0.487897 -0.852261 + 0.833333 0.448765 0.446006 0.774396 -0.415194 + 0.9 0.206121 0.520286 0.828744 -0.204434 + 0.933333 -0.250872 0.563949 0.786781 -0.118488 + 1.0 0.848897 0.329653 0.413162 -0.189749 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 -1.68587e-007 + 0.0666667 0.997684 -0.0600119 0.0320239 -0.0586151 + 0.2 0.997684 -0.0600128 0.0320233 -0.52021 + 0.5 0.916984 0.366286 0.158036 -0.812474 + 0.633333 0.926698 0.336592 0.167142 -0.886302 + 0.733333 0.937585 0.322125 0.131037 -0.88118 + 0.833333 0.953221 0.299794 0.0386356 -0.546417 + 0.933333 0.953221 0.299794 0.0386364 -0.109283 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.346952 -0.0324625 -0.937321 -0.195457 + 0.0666667 0.251165 -0.000405514 -0.967944 -0.257074 + 0.233333 0.0680696 0.058436 -0.995968 -0.645101 + 0.3 0.0579818 0.0615924 -0.996416 -0.702414 + 0.366667 0.0649067 0.0596701 -0.996106 -0.562403 + 0.433333 0.12054 0.0440464 -0.991731 -0.212767 + 0.5 0.103145 -0.10527 0.98908 -0.139718 + 0.633333 0.51864 -0.121941 0.846252 -0.162135 + 0.733333 0.836027 -0.169055 0.521995 -0.0954306 + 0.866667 0.737574 -0.112357 -0.665854 -0.100174 + 1.0 0.346952 -0.0324625 -0.937321 -0.195457 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.959734 0.0606966 -0.274276 -0.468544 + 0.0666667 -0.948896 0.0684679 -0.308073 -0.473715 + 0.233333 -0.11379 0.147556 -0.982486 -0.358289 + 0.3 0.258483 0.307207 -0.915866 -0.352035 + 0.366667 -0.774804 0.391704 -0.496233 -0.282794 + 0.433333 -0.989854 0.0530264 0.131825 -0.469736 + 0.5 -0.999748 0.0141044 0.0174605 -0.450589 + 0.633333 -0.999903 -0.00288815 0.013613 -0.659811 + 0.733333 -0.817462 -0.0620091 -0.572635 -0.316963 + 0.866667 -0.942947 0.0846431 -0.322005 -0.393713 + 1.0 -0.959734 0.0606966 -0.274276 -0.468544 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.468413 -0.347873 0.812141 -0.946629 + 0.0666667 -0.56862 -0.254907 0.782109 -0.746462 + 0.1 -0.584542 -0.163995 0.794617 -0.693356 + 0.166667 -0.640597 0.0363196 0.767018 -0.656456 + 0.2 -0.702318 0.13836 0.698288 -0.700488 + 0.233333 -0.746792 0.15145 0.647584 -0.760859 + 0.3 -0.793791 0.0844367 0.602301 -0.947862 + 0.366667 -0.840192 0.176974 0.512598 -1.03418 + 0.433333 -0.494684 -0.210988 0.843073 -1.47268 + 0.466667 -0.991069 0.122664 0.0523124 -0.906593 + 0.5 -0.999889 -0.00771096 0.0127859 -1.76171 + 0.533333 -0.996851 -0.0216274 0.0762901 -1.81036 + 0.566667 -0.992743 -0.0450263 0.11151 -1.8661 + 0.633333 -0.961434 -0.143776 0.234465 -1.62734 + 0.733333 -0.5764 -0.391703 0.717169 -0.848734 + 0.833333 -0.746038 -0.384192 0.543897 -0.763532 + 0.9 -0.623115 -0.397981 0.673304 -0.834995 + 0.933333 -0.563109 -0.398957 0.7237 -0.858801 + 1.0 -0.468817 -0.349245 0.811319 -0.945026 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.889632 0.350904 0.292268 -0.970268 + 0.0666667 -0.852443 0.407895 0.327052 -0.935514 + 0.1 -0.812085 0.434907 0.389067 -0.975939 + 0.166667 -0.717278 0.50532 0.479755 -1.05624 + 0.2 -0.648579 0.562317 0.512977 -1.07384 + 0.233333 -0.600666 0.617973 0.507256 -0.996479 + 0.3 -0.567058 0.657668 0.495901 -0.92492 + 0.366667 -0.101775 0.907448 0.407652 -0.72622 + 0.433333 -0.807848 0.365193 0.462618 -1.22076 + 0.466667 -0.772215 0.432004 0.465893 -1.09232 + 0.5 0.166368 0.937956 0.304236 -0.66757 + 0.533333 0.153483 0.943571 0.293456 -0.653451 + 0.566667 0.138525 0.949163 0.282666 -0.639387 + 0.633333 -0.754492 0.508291 0.41519 -0.935953 + 0.733333 -0.934905 0.142773 0.324912 -1.75824 + 0.833333 -0.914859 0.234974 0.32836 -1.33329 + 0.9 -0.901912 0.288011 0.321876 -1.14356 + 0.933333 -0.896964 0.311186 0.314038 -1.07521 + 1.0 -0.889632 0.350904 0.292268 -0.970268 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.627561 0.302938 -0.717214 -0.603471 + 0.0666667 -0.566646 0.449913 -0.690283 -0.581599 + 0.1 -0.514087 0.284667 -0.809123 -0.712185 + 0.166667 0.463599 -0.0783358 0.882576 -5.19794 + 0.2 0.459558 -0.0354433 0.88744 -4.9191 + 0.233333 0.599467 -0.0306671 0.799812 -4.75399 + 0.3 0.688838 -0.00119017 0.724915 -4.34617 + 0.366667 -0.793777 0.129632 -0.594233 -1.40892 + 0.433333 0.416744 0.100624 0.903437 -4.67843 + 0.466667 0.197801 0.676519 -0.709363 -1.36931 + 0.5 0.161216 0.789364 -0.59238 -1.47536 + 0.533333 0.108631 0.769039 -0.629904 -1.43875 + 0.566667 0.103807 0.751452 -0.65157 -1.42572 + 0.633333 0.100007 0.55489 -0.825891 -1.7457 + 0.733333 -0.0280899 0.292465 -0.955864 -1.53805 + 0.833333 -0.0511884 0.63181 -0.773431 -0.935987 + 0.9 -0.334148 0.609723 -0.718737 -0.616784 + 0.933333 -0.52088 0.547989 -0.654516 -0.477424 + 1.0 -0.627561 0.302938 -0.717214 -0.603471 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0316538 -0.22798 -0.973151 -0.304591 + 1.0 -0.0316531 -0.22798 -0.973151 -0.304591 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.233333 -0.932547 -0.360373 0.0220836 -0.624866 + 0.6 -0.928644 -0.366699 0.056141 -0.881105 + 1.0 -0.925528 -0.374542 0.0558187 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.947311 0.316644 -0.0483628 -0.884067 + 0.233333 0.960704 0.277244 -0.0135501 -0.834156 + 0.6 0.923228 0.376073 -0.0788646 -1.16545 + 1.0 0.947311 0.316644 -0.0483628 -0.884067 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.843929 0.423051 -0.329866 -1.2461 + 0.233333 0.955498 0.204705 -0.212415 -1.30945 + 0.6 0.906603 -0.401883 -0.128688 -0.906258 + 1.0 0.843929 0.423051 -0.329866 -1.2461 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.488943 0.865121 -0.111804 -0.439568 + 0.233333 0.810476 0.264645 -0.522582 -0.454128 + 0.6 0.873514 -0.324569 -0.362805 -0.12898 + 1.0 0.488943 0.865121 -0.111804 -0.439568 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.136147 -0.914871 -0.3801 -0.46156 + 0.233333 0.468939 0.0396759 -0.882339 -6.0929 + 0.6 -0.0874883 0.99607 -0.0137818 -0.16477 + 1.0 0.136147 -0.914871 -0.3801 -0.46156 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.393772 -0.843573 -0.365142 -0.566005 + 0.233333 -0.982661 0.157323 -0.0981183 -0.338256 + 0.6 0.11248 0.981468 -0.15514 -0.606056 + 1.0 -0.393772 -0.843573 -0.365142 -0.566005 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.175445 -0.704046 -0.688141 -0.789494 + 0.233333 -0.352503 -0.148544 -0.923946 -0.795141 + 0.6 0.0234617 0.73341 -0.679381 -0.480194 + 1.0 -0.175445 -0.704046 -0.688141 -0.789494 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.534529 -0.652466 -0.537184 -0.508358 + 0.233333 -0.799939 -0.561285 -0.212264 -0.961907 + 0.333333 -0.741036 -0.641935 -0.19694 -0.702558 + 0.6 0.53979 0.554109 -0.633711 -0.220873 + 1.0 -0.53453 -0.652465 -0.537184 -0.508359 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.186743 0.293748 0.937464 -0.300984 + 0.233333 -0.777971 -0.344158 0.525658 -0.849259 + 0.333333 -0.551971 -0.690077 0.468105 -0.375705 + 0.6 -0.621643 -0.753492 -0.214032 -5.51405 + 1.0 -0.186743 0.293749 0.937464 -0.300984 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.60978 -0.428864 0.666517 -0.428777 + 0.233333 -0.595409 -0.645583 0.478237 -1.05515 + 0.333333 -0.601322 -0.654896 0.457737 -0.915636 + 0.6 0.625856 0.69571 -0.35255 -5.73565 + 1.0 -0.60978 -0.428865 0.666516 -0.428777 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555704 -0.721883 0.412405 -0.425848 + 0.233333 -0.105276 0.917538 -0.383459 -5.62248 + 0.333333 0.0494306 -0.955673 0.29025 -0.781855 + 0.6 0.0415265 0.990306 -0.132553 -5.15157 + 1.0 0.555704 -0.721883 0.412405 -0.425849 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.326942 0.935477 -0.134134 -5.9929 + 0.233333 0.0360449 0.998153 -0.0489105 -5.74646 + 0.333333 -0.0142673 0.999894 0.00272271 -5.70588 + 0.6 0.118397 -0.986986 -0.108817 -0.695201 + 1.0 -0.326943 0.935476 -0.134135 -5.9929 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim 2hstab c_marilithe + + +#NWmax ANIM ASCII +newanim 2hcloseh c_marilithe + length 1.0 + transtime 0.4 + animroot rootdummy + event 0.566667 snd_footstep + event 0.933333 snd_footstep + event 0.5 hit + event 0.5 blur_end + event 0.433333 blur_start + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000247747 -0.0325529 1.02808 + 0.0666667 0.000248464 -0.0221787 1.0246 + 0.233333 0.000248466 0.0261777 1.00561 + 0.3 0.000248466 0.0332298 1.00284 + 0.366667 0.000248387 -0.0601756 1.01351 + 0.433333 0.000248454 -0.275934 1.03248 + 0.5 0.000248517 -0.58686 1.0583 + 0.566667 0.000248585 -0.757579 1.0718 + 0.633333 0.000248585 -0.757579 1.0718 + 0.7 0.000248512 -0.721212 1.0696 + 0.766667 0.000248515 -0.643932 1.06492 + 0.8 0.000248516 -0.603019 1.06244 + 0.933333 0.00024846 -0.125702 1.03354 + 1.0 0.000247747 -0.0325529 1.02808 + endlist + orientationkey + 0.0 0.627492 0.351856 0.694587 -0.325185 + 0.0666667 0.634298 0.342361 0.693149 -0.308486 + 0.233333 0.692385 0.252244 0.676 -0.209387 + 0.3 0.704589 0.231101 0.67093 -0.195258 + 0.366667 0.833236 0.161251 0.528882 -0.250854 + 0.433333 0.914263 0.0963939 0.393487 -0.343053 + 0.5 0.948674 0.0580293 0.310886 -0.440888 + 0.566667 0.961029 0.0408831 0.273407 -0.50579 + 0.633333 0.953377 0.0564527 0.296456 -0.488411 + 0.7 0.944298 0.073081 0.320875 -0.471449 + 0.766667 0.931156 0.0945788 0.35214 -0.451664 + 0.8 0.922183 0.107934 0.371387 -0.44045 + 0.933333 0.705232 0.306437 0.639331 -0.337278 + 1.0 0.627492 0.351856 0.694587 -0.325185 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.894606 -0.386439 0.224378 -0.255901 + 0.0666667 0.845206 -0.480005 0.234992 -0.197828 + 0.166667 -0.980984 -0.193617 -0.0135029 -0.394113 + 0.233333 -0.990396 -0.133773 -0.034939 -0.530118 + 0.3 -0.99187 -0.123181 -0.0319286 -0.575706 + 0.366667 -0.990482 -0.132427 -0.0375199 -0.531159 + 0.5 0.960671 -0.218648 -0.171184 -0.260927 + 0.566667 0.981345 -0.144 -0.12738 -0.378095 + 0.666667 0.979841 -0.187578 -0.0687396 -0.345273 + 0.733333 0.977621 -0.205779 -0.0437289 -0.333492 + 0.933333 0.912587 -0.363289 0.187632 -0.262867 + 1.0 0.894606 -0.386439 0.224378 -0.255901 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.260154 0.717797 -0.645823 -0.186119 + 0.0666667 -0.798134 0.446059 -0.404985 -0.305358 + 0.266667 -0.998643 0.0479614 0.020288 -2.42681 + 0.3 -0.998747 0.0422048 0.0269044 -2.65342 + 0.333333 -0.999332 0.0197964 0.0307027 -2.70638 + 0.366667 -0.998756 0.0411694 0.0281462 -2.6767 + 0.433333 -0.995686 0.0435126 -0.0819529 -1.91477 + 0.5 -0.987151 -0.00428087 -0.15973 -1.10342 + 0.566667 -0.942814 0.0517252 -0.329281 -1.27487 + 0.666667 -0.957834 0.00953878 -0.287164 -1.02569 + 0.733333 -0.966065 0.0218795 -0.257371 -0.956571 + 0.8 -0.978044 -0.000373436 -0.2084 -0.967717 + 0.933333 -0.678032 0.447427 -0.583165 -0.247198 + 1.0 -0.260154 0.717797 -0.645823 -0.186119 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.966792 -0.209574 -0.146258 -1.65226 + 0.0666667 -0.965904 -0.204302 -0.159028 -1.67544 + 0.266667 0.9238 0.30868 0.226517 -5.01094 + 0.3 0.916404 0.326182 0.231967 -5.05615 + 0.333333 0.925467 0.184982 0.330594 -4.82841 + 0.366667 0.907688 0.297435 0.29603 -5.01619 + 0.433333 -0.787295 -0.414554 -0.456412 -0.926079 + 0.5 -0.517854 -0.530306 -0.67127 -0.698885 + 0.566667 -0.497828 -0.133393 -0.856956 -0.820814 + 0.666667 -0.749418 -0.154541 -0.643809 -0.939109 + 0.733333 -0.806099 -0.16496 -0.568325 -0.995251 + 0.8 -0.826088 -0.302743 -0.475315 -0.888656 + 0.933333 -0.960476 -0.214099 -0.177899 -1.52288 + 1.0 -0.966792 -0.209574 -0.146258 -1.65226 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.848897 0.329653 0.413162 -0.189749 + 0.0666667 0.262402 0.550182 0.792745 -0.132624 + 0.266667 -0.208112 -0.937272 -0.27966 -5.74019 + 0.3 -0.266766 -0.909385 -0.319147 -5.74903 + 0.333333 0.492315 0.678509 0.545207 -0.658999 + 0.366667 -0.447509 -0.760776 -0.470058 -5.6654 + 0.433333 -0.0838708 -0.857822 -0.507057 -5.60093 + 0.5 0.564763 0.555208 0.610563 -0.727676 + 0.566667 0.732235 -0.0190128 0.680787 -1.39035 + 0.666667 0.855112 0.0762803 0.5128 -1.37464 + 0.733333 0.886753 0.0752177 0.456082 -1.31204 + 0.8 0.909652 0.217485 0.353882 -1.01882 + 0.933333 0.832673 0.239033 0.499518 -0.244684 + 1.0 0.848897 0.329653 0.413162 -0.189749 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.449336 -0.893352 0.00445087 -4.29567e-006 + 1.0 0.450336 -0.892858 0.00121853 -4.28781e-006 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.346952 -0.0324625 -0.937321 -0.195457 + 0.0666667 0.670267 -0.016054 -0.741947 -0.225407 + 0.233333 0.994585 0.0197853 -0.102024 -0.653296 + 0.3 0.997265 0.0212135 -0.0708049 -0.724324 + 0.566667 0.988125 0.0151359 -0.152903 -0.34253 + 0.733333 0.931696 0.00490732 -0.363207 -0.265922 + 0.933333 0.455484 -0.0280505 -0.889802 -0.194691 + 1.0 0.346952 -0.0324624 -0.937321 -0.195457 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.959734 0.0606966 -0.274276 -0.468544 + 0.0666667 -0.965555 0.0629084 -0.25248 -0.468195 + 0.233333 -0.989943 0.0754347 -0.11968 -0.470974 + 0.3 -0.991965 0.0771322 -0.100284 -0.472072 + 0.566667 -0.997497 0.0313492 -0.0633766 -0.863018 + 0.633333 -0.99481 0.0450679 -0.0912251 -0.687154 + 0.733333 -0.993197 0.0379409 -0.110094 -0.727905 + 0.833333 -0.990082 0.109353 -0.0882063 -0.832214 + 0.933333 -0.958906 0.19105 -0.20976 -0.506328 + 1.0 -0.959734 0.0606967 -0.274276 -0.468544 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.999719 -0.0107906 0.0211187 -3.50098e-007 + 1.0 0.999996 0.00263109 -0.000677433 -6.43344e-007 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.469083 -0.350212 0.810748 -0.944061 + 0.0666667 -0.637149 -0.429624 0.639895 -0.846221 + 0.133333 -0.907773 -0.357413 0.219556 -1.31716 + 0.2 -0.979601 -0.191167 0.0619418 -1.95319 + 0.266667 -0.996387 -0.0544488 0.0651733 -2.67313 + 0.3 -0.957358 -0.263353 0.11879 -2.89313 + 0.333333 -0.93153 -0.339998 0.129045 -2.82959 + 0.366667 -0.947691 -0.298514 0.113006 -2.80916 + 0.433333 -0.996984 -0.0756086 -0.0175215 -1.92765 + 0.5 -0.972575 -0.181006 0.146061 -1.00486 + 0.566667 -0.988256 -0.152805 0.00127188 -0.865098 + 0.666667 -0.98285 -0.17945 0.0424665 -0.699306 + 0.733333 -0.916648 -0.298327 0.266004 -0.749742 + 0.8 -0.813262 -0.397811 0.424677 -0.93267 + 0.933333 -0.632788 -0.274649 0.72398 -0.631381 + 1.0 -0.469479 -0.351574 0.809929 -0.942486 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.890467 0.349033 0.291967 -0.974045 + 0.0666667 -0.902353 0.295101 0.314124 -1.11842 + 0.133333 -0.832134 0.389968 0.394307 -1.01026 + 0.2 0.706322 -0.510162 -0.490759 -5.39537 + 0.266667 0.414611 -0.689506 -0.593867 -5.53792 + 0.3 0.566179 -0.395914 -0.722975 -5.52778 + 0.333333 0.7939 0.0194414 -0.607738 -5.24177 + 0.366667 0.749525 -0.288431 -0.595835 -5.42198 + 0.433333 -0.492191 0.571417 0.656682 -0.654029 + 0.5 -0.440679 0.659149 0.609364 -0.654709 + 0.566667 -0.857551 0.276124 0.434007 -1.02268 + 0.666667 -0.892936 0.234957 0.384005 -1.16002 + 0.733333 -0.896556 0.246342 0.368108 -1.14682 + 0.8 -0.86929 0.332445 0.365807 -0.976763 + 0.933333 -0.883466 0.355058 0.305649 -0.960409 + 1.0 -0.890467 0.349033 0.291967 -0.974045 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.614691 0.307113 -0.726524 -0.611394 + 0.0666667 -0.475819 0.0226203 -0.879252 -0.35488 + 0.133333 0.567348 -0.216079 0.794623 -5.99371 + 0.2 0.706994 -0.608758 0.359963 -6.08623 + 0.266667 0.681104 -0.478434 -0.554256 -6.05887 + 0.3 0.400882 0.0768761 0.912898 -5.79715 + 0.333333 -0.0842157 0.0591057 0.994693 -5.5728 + 0.366667 -0.0638005 0.374437 0.925055 -5.65495 + 0.433333 0.380997 0.697467 0.606944 -5.97593 + 0.5 0.228714 -0.352466 -0.907446 -0.986703 + 0.566667 0.738442 -0.0509014 -0.672393 -1.52199 + 0.666667 0.714851 -0.0326031 -0.698517 -1.56622 + 0.733333 0.600304 -0.0679979 -0.796876 -1.61062 + 0.8 0.382107 -0.115704 -0.916846 -1.50026 + 0.933333 -0.444825 -0.0756127 -0.89242 -0.45383 + 1.0 -0.614691 0.307113 -0.726524 -0.611394 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.999421 -0.0137666 -0.0311196 -1.68903e-006 + 1.0 0.999676 -0.00305766 -0.0252676 -3.58867e-006 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0316545 -0.22798 -0.973151 -0.304591 + 1.0 -0.0316535 -0.22798 -0.973151 -0.304591 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.233333 -0.932547 -0.360373 0.0220834 -0.624866 + 0.6 -0.922577 -0.378838 0.0730317 -0.793412 + 1.0 -0.925528 -0.374542 0.0558187 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.947311 0.316644 -0.0483628 -0.884067 + 0.233333 0.960704 0.277244 -0.01355 -0.834156 + 0.6 0.906979 0.406679 -0.109548 -0.967089 + 1.0 0.947311 0.316644 -0.0483628 -0.884067 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.843929 0.423051 -0.329866 -1.2461 + 0.233333 0.955498 0.204705 -0.212415 -1.30945 + 0.6 0.923778 -0.368244 -0.105023 -0.968197 + 1.0 0.843929 0.423051 -0.329866 -1.2461 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.488943 0.865121 -0.111804 -0.439568 + 0.233333 0.810476 0.264645 -0.522582 -0.454128 + 0.6 0.953116 -0.277587 -0.120483 -0.181217 + 1.0 0.488943 0.865121 -0.111804 -0.439568 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.136147 -0.914871 -0.3801 -0.46156 + 0.233333 0.468939 0.0396753 -0.882339 -6.0929 + 0.6 0.58514 0.782548 0.212676 -0.181351 + 1.0 0.136147 -0.914871 -0.3801 -0.46156 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.393772 -0.843573 -0.365142 -0.566005 + 0.233333 -0.982661 0.157322 -0.0981159 -0.338256 + 0.333333 0.0458695 0.820631 -0.569614 -0.199453 + 0.6 0.146581 0.976578 -0.157508 -0.604411 + 1.0 -0.393771 -0.843573 -0.365142 -0.566006 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.175445 -0.704046 -0.688141 -0.789494 + 0.233333 -0.352504 -0.148545 -0.923945 -0.79514 + 0.333333 -0.305419 0.0192429 -0.952024 -0.657616 + 0.6 0.0234614 0.733411 -0.679381 -0.480195 + 1.0 -0.175445 -0.704046 -0.688141 -0.789494 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.53453 -0.652466 -0.537183 -0.508359 + 0.233333 -0.799942 -0.561281 -0.212264 -0.961905 + 0.333333 -0.792455 -0.539092 -0.285299 -0.665383 + 0.6 0.539786 0.55411 -0.633714 -0.220872 + 1.0 -0.53453 -0.652466 -0.537184 -0.508359 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.186742 0.293749 0.937464 -0.300984 + 0.233333 -0.777969 -0.344165 0.525656 -0.849254 + 0.333333 -0.676336 -0.0925952 0.730751 -0.520811 + 0.6 -0.621643 -0.753493 -0.214029 -5.51405 + 1.0 -0.186743 0.293748 0.937464 -0.300984 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.60978 -0.428864 0.666516 -0.428777 + 0.233333 -0.152657 -0.77365 0.614948 -1.19565 + 0.333333 -0.230072 -0.776934 0.586038 -1.0016 + 0.6 0.625855 0.695716 -0.35254 -5.73565 + 1.0 -0.609779 -0.428865 0.666516 -0.428777 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555704 -0.721883 0.412405 -0.425848 + 0.233333 -0.378722 0.881866 -0.280861 -5.63494 + 0.333333 0.220939 -0.947958 0.229262 -0.762583 + 0.6 -0.04141 -0.990309 0.132564 -1.13167 + 1.0 0.555704 -0.721883 0.412405 -0.425848 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.326942 0.935477 -0.134135 -5.9929 + 0.233333 -0.266721 0.957483 -0.109934 -5.77798 + 0.333333 -0.218113 0.975271 -0.0356691 -5.73006 + 0.6 0.118376 -0.986987 -0.108831 -0.695207 + 1.0 -0.326942 0.935477 -0.134135 -5.9929 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim 2hcloseh c_marilithe + + +#NWmax ANIM ASCII +newanim 2hclosel c_marilithe + length 1.0 + transtime 0.4 + animroot rootdummy + event 0.866667 snd_footstep + event 0.5 hit + event 0.5 blur_end + event 0.4 blur_start + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000247747 -0.0325529 1.02808 + 0.0666667 0.000248463 -0.0302598 1.03759 + 0.166667 0.000248463 -0.0303377 1.07299 + 0.233333 0.000248462 -0.0303896 1.0966 + 0.3 0.000248463 -0.0304085 1.1052 + 0.366667 0.000248534 -0.13557 1.07636 + 0.433333 0.000248455 -0.255525 1.00683 + 0.5 0.000248454 -0.300709 0.965288 + 0.566667 0.000248453 -0.345892 0.923742 + 0.633333 0.000248301 -0.370146 0.888532 + 0.7 0.000248226 -0.378137 0.870927 + 0.733333 0.000248226 -0.378137 0.870927 + 0.8 0.00024853 -0.291162 0.910134 + 1.0 0.000247747 -0.0325529 1.02808 + endlist + orientationkey + 0.0 0.627492 0.351856 0.694587 -0.325185 + 0.0666667 0.549783 0.411313 0.727022 -0.282252 + 0.233333 -0.681038 0.616618 0.39493 -0.202588 + 0.3 -0.789849 0.551039 0.269249 -0.22872 + 0.366667 0.569661 0.665491 0.482295 -0.120329 + 0.433333 0.980738 0.102419 0.166326 -0.323795 + 0.5 0.993054 0.0209924 0.115773 -0.445084 + 0.566667 0.995938 -0.025884 0.0862364 -0.568687 + 0.633333 0.99633 -0.025856 0.0815949 -0.599113 + 0.7 0.996666 -0.0258303 0.0773877 -0.62955 + 0.733333 0.996666 -0.0258303 0.0773877 -0.62955 + 0.8 0.983711 0.0318103 0.176919 -0.530777 + 1.0 0.627492 0.351856 0.694587 -0.325185 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.894606 -0.386439 0.224378 -0.255901 + 0.233333 -0.795204 -0.4576 0.39781 -0.188356 + 0.3 -0.833084 -0.413381 0.367542 -0.206532 + 0.366667 -0.514155 -0.669692 0.53587 -0.133073 + 0.4 0.884272 -0.402403 0.236929 -0.244931 + 0.5 0.988371 -0.14695 0.0390825 -0.769622 + 0.533333 0.989024 -0.141997 0.0408489 -0.791063 + 0.566667 0.989618 -0.137288 0.0425265 -0.812522 + 0.633333 0.99033 -0.131358 0.0446357 -0.841163 + 0.666667 0.990655 -0.128531 0.0456393 -0.855493 + 0.733333 0.986176 -0.153395 0.0626689 -0.702569 + 0.8 0.977576 -0.191063 0.0885481 -0.550561 + 0.9 0.936347 -0.307601 0.169222 -0.32707 + 1.0 0.894606 -0.386439 0.224378 -0.255901 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.260154 0.717797 -0.645823 -0.186119 + 0.166667 -0.992483 0.0656008 -0.103319 -1.84737 + 0.233333 -0.996649 0.0220429 -0.078777 -2.33152 + 0.3 -0.996893 0.0115022 -0.077918 -2.37784 + 0.366667 -0.993096 -0.0216706 -0.115282 -2.39013 + 0.4 -0.987658 -0.00166933 -0.156618 -2.50122 + 0.5 -0.896787 0.123098 -0.424994 -1.71685 + 0.533333 -0.889773 0.130833 -0.437249 -1.68394 + 0.566667 -0.912052 0.0901033 -0.400053 -1.55938 + 0.633333 -0.898144 0.0938437 -0.42957 -1.44167 + 0.666667 -0.889654 0.0946632 -0.446715 -1.40145 + 0.733333 -0.93577 -0.0328971 -0.351074 -1.13161 + 0.8 -0.963347 -0.135673 -0.231419 -0.944627 + 0.9 -0.975536 0.0267892 -0.218203 -0.455497 + 1.0 -0.260154 0.717797 -0.645823 -0.186119 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.966792 -0.209574 -0.146258 -1.65226 + 0.166667 -0.939921 -0.293285 -0.174734 -1.16581 + 0.233333 0.924626 0.326963 0.195352 -5.25123 + 0.3 0.927875 0.31459 0.200202 -5.22685 + 0.366667 0.900327 0.355663 0.25083 -5.39016 + 0.4 -0.776276 -0.474535 -0.414984 -0.605568 + 0.5 -0.436351 -0.158667 -0.885676 -0.42107 + 0.533333 -0.44076 -0.153467 -0.884409 -0.440054 + 0.566667 -0.764631 -0.0141874 -0.644312 -0.643403 + 0.633333 -0.900553 0.0845644 -0.426442 -1.03036 + 0.666667 -0.921353 0.108683 -0.373226 -1.19931 + 0.733333 -0.922037 -0.0367533 -0.385352 -1.13417 + 0.8 -0.861284 -0.304588 -0.406714 -0.800425 + 0.9 -0.961803 -0.202088 -0.18465 -1.52271 + 1.0 -0.966792 -0.209574 -0.146258 -1.65226 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.848897 0.329653 0.413162 -0.189749 + 0.166667 -0.0471181 -0.956959 -0.286372 -5.66438 + 0.233333 -0.0904435 -0.978423 -0.185766 -5.65812 + 0.3 -0.107027 -0.984532 -0.138718 -5.69705 + 0.366667 0.285851 -0.957813 0.029728 -5.72448 + 0.4 0.189144 -0.953234 -0.235731 -5.68068 + 0.5 0.672821 0.129029 0.728467 -1.22136 + 0.533333 0.616601 0.175258 0.76752 -1.18363 + 0.566667 0.734972 0.252047 0.629514 -1.15524 + 0.633333 0.831088 0.251883 0.49583 -1.32681 + 0.666667 0.86681 0.235319 0.439619 -1.43819 + 0.733333 0.887929 0.322834 0.327658 -1.1894 + 0.8 0.864036 0.468429 0.184433 -0.915999 + 0.9 0.950333 0.0464687 0.307747 -0.421784 + 1.0 0.848897 0.329653 0.413162 -0.189749 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.346952 -0.0324624 -0.937321 -0.195457 + 0.133333 0.793079 0.0310951 -0.608324 -0.30113 + 0.233333 0.322896 -0.0352227 -0.945779 -0.193537 + 0.3 0.221961 -0.0464063 -0.973951 -0.187861 + 0.366667 -0.106517 0.0698224 -0.991856 -0.163548 + 0.5 -0.981871 0.15157 -0.113821 -0.673409 + 0.666667 -0.980162 0.162239 -0.113848 -0.630327 + 0.9 -0.105203 0.0424742 -0.993543 -0.171145 + 1.0 0.346952 -0.0324625 -0.937321 -0.195457 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.959734 0.0606967 -0.274276 -0.468544 + 0.133333 0.915674 -0.0711403 -0.395575 -0.158082 + 0.233333 0.994039 -0.0692107 0.0842422 -0.331422 + 0.3 0.991401 -0.0653025 0.113398 -0.337341 + 0.366667 0.994489 -0.0321481 0.09979 -0.32509 + 0.466667 0.991919 0.101738 0.0758026 -0.386536 + 0.5 0.855557 0.501961 0.126718 -0.0873692 + 0.566667 0.984849 0.171905 -0.0228276 -0.290686 + 0.666667 -0.926227 0.356253 -0.123235 -0.135533 + 0.9 -0.961182 0.071907 -0.266381 -0.430239 + 1.0 -0.959734 0.0606966 -0.274276 -0.468544 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.469492 -0.35162 0.809901 -0.942432 + 0.1 -0.923693 -0.333409 0.188757 -1.38213 + 0.166667 -0.95734 -0.279599 0.0729649 -2.01214 + 0.233333 -0.985219 -0.165013 0.0459738 -2.48139 + 0.3 -0.98577 -0.160516 0.0499129 -2.49802 + 0.366667 -0.958986 -0.27983 0.0451735 -2.55782 + 0.4 -0.96998 -0.243166 0.0029865 -2.49896 + 0.5 -0.975707 0.0128217 -0.218703 -1.1354 + 0.533333 -0.973129 0.0177762 -0.229573 -1.12937 + 0.566667 -0.974427 0.0131906 -0.224315 -1.1124 + 0.633333 -0.961324 0.0381066 -0.27277 -1.00088 + 0.666667 -0.955029 0.0511716 -0.292065 -0.943678 + 0.733333 -0.964063 0.0374822 -0.263015 -0.813117 + 0.8 -0.970375 0.00329389 -0.241583 -0.707227 + 0.9 -0.972403 -0.120926 0.199525 -0.522054 + 1.0 -0.47019 -0.351741 0.809444 -0.940679 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.890467 0.349033 0.291967 -0.974045 + 0.1 -0.849113 0.431752 0.304298 -0.829964 + 0.166667 -0.801842 0.508542 0.313743 -0.728822 + 0.233333 0.669477 -0.667686 -0.32557 -5.70165 + 0.3 0.733488 -0.598633 -0.321921 -5.64582 + 0.366667 0.57815 -0.747973 -0.326005 -5.75506 + 0.4 0.472442 -0.820737 -0.321231 -5.7951 + 0.5 -0.880753 0.370215 0.295321 -0.932831 + 0.533333 -0.857682 0.416058 0.302121 -0.854074 + 0.566667 -0.889463 0.351282 0.292329 -0.969512 + 0.633333 -0.9367 0.22349 0.269527 -1.30766 + 0.666667 -0.948584 0.179514 0.260697 -1.476 + 0.733333 -0.933415 0.234405 0.271645 -1.2709 + 0.8 -0.871286 0.38972 0.298293 -0.8977 + 0.9 -0.915391 0.28774 0.281542 -1.11486 + 1.0 -0.889594 0.35099 0.292282 -0.970096 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.614691 0.307113 -0.726524 -0.611394 + 0.1 -0.473171 0.785051 -0.399756 -0.316171 + 0.166667 0.4179 -0.900365 0.121253 -6.09272 + 0.233333 0.209903 -0.80913 -0.548863 -6.01246 + 0.3 0.313862 -0.604184 -0.732429 -6.13513 + 0.366667 0.910179 0.347616 0.225249 -5.90358 + 0.4 0.799344 0.317564 0.5101 -5.99658 + 0.5 0.909993 -0.0675633 -0.409082 -1.15914 + 0.533333 0.906444 -0.0375625 -0.420651 -0.981664 + 0.566667 0.892586 0.0194928 -0.450456 -0.973057 + 0.633333 0.893794 0.11728 -0.432871 -1.1397 + 0.666667 0.887647 0.148114 -0.436057 -1.26452 + 0.733333 0.830505 0.178903 -0.527498 -1.03927 + 0.8 0.694355 0.238008 -0.679134 -0.819385 + 0.9 0.429121 0.33679 -0.83811 -0.289445 + 1.0 -0.627677 0.304464 -0.716466 -0.602807 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 -1.3328e-007 + 1.0 0.929503 -0.319741 -0.183821 -3.50098e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0316537 -0.22798 -0.973151 -0.304591 + 1.0 -0.0316534 -0.22798 -0.973151 -0.304591 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.233333 -0.859328 -0.511388 0.00609998 -0.375438 + 0.6 -0.922577 -0.378838 0.0730317 -0.793412 + 1.0 -0.925528 -0.374542 0.0558187 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.947311 0.316644 -0.0483628 -0.884067 + 0.233333 0.948146 0.317733 -0.00809228 -0.657794 + 0.6 0.934635 0.350061 -0.0625654 -1.21561 + 1.0 0.947311 0.316644 -0.0483628 -0.884067 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.843929 0.423051 -0.329866 -1.2461 + 0.233333 0.954113 0.209003 -0.214444 -1.26654 + 0.333333 0.978348 0.0783806 -0.191548 -1.19994 + 0.6 0.875234 -0.4534 -0.168505 -0.789571 + 1.0 0.843929 0.423051 -0.329866 -1.2461 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.488943 0.865121 -0.111804 -0.439568 + 0.233333 0.766753 0.312469 -0.560761 -0.383282 + 0.333333 0.872155 0.180909 -0.454553 -0.382858 + 0.6 0.783372 -0.318866 -0.533528 -0.0982196 + 1.0 0.488943 0.865121 -0.111804 -0.439568 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.136148 -0.914871 -0.3801 -0.46156 + 0.233333 0.900727 -0.0184109 0.433996 -0.175106 + 0.333333 0.714855 0.315291 0.624158 -0.125961 + 0.6 0.585139 0.782548 0.212677 -0.181351 + 1.0 0.136147 -0.914871 -0.3801 -0.46156 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.393772 -0.843573 -0.365141 -0.566006 + 0.233333 -0.5341 0.321528 -0.781893 -0.168244 + 0.333333 0.0458695 0.820631 -0.569614 -0.199452 + 0.6 0.146581 0.976578 -0.157508 -0.604411 + 1.0 -0.393772 -0.843573 -0.365142 -0.566005 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.175445 -0.704046 -0.688141 -0.789494 + 0.233333 -0.352504 -0.148545 -0.923945 -0.79514 + 0.333333 -0.305419 0.0192426 -0.952024 -0.657616 + 0.6 0.0234617 0.733411 -0.679381 -0.480194 + 1.0 -0.175445 -0.704046 -0.688141 -0.789494 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.53453 -0.652466 -0.537184 -0.508359 + 0.233333 -0.799942 -0.561282 -0.212264 -0.961905 + 0.333333 -0.792455 -0.539092 -0.285299 -0.665383 + 0.6 -0.539788 -0.554141 0.633686 -6.06231 + 1.0 -0.53453 -0.652466 -0.537183 -0.508359 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.186743 0.293749 0.937464 -0.300984 + 0.233333 -0.77797 -0.344168 0.525653 -0.84925 + 0.333333 -0.676339 -0.0925898 0.730748 -0.520811 + 0.6 -0.431122 -0.787808 -0.439878 -5.85955 + 1.0 -0.186742 0.293748 0.937464 -0.300984 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.609781 -0.428864 0.666516 -0.428777 + 0.233333 -0.152648 -0.77365 0.614951 -1.19565 + 0.333333 -0.230075 -0.776937 0.586032 -1.00159 + 0.6 0.612102 0.658875 -0.437282 -5.87751 + 1.0 -0.60978 -0.428864 0.666516 -0.428777 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555704 -0.721883 0.412405 -0.425847 + 0.233333 -0.378846 0.881751 -0.281054 -5.63499 + 0.333333 0.22096 -0.947955 0.229256 -0.762559 + 0.6 -0.0414468 -0.9903 0.132617 -1.13171 + 1.0 0.555705 -0.721883 0.412405 -0.425848 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.326942 0.935477 -0.134136 -5.9929 + 0.233333 -0.266722 0.957492 -0.109859 -5.77793 + 0.333333 -0.218972 0.975058 -0.0362297 -5.73082 + 0.6 0.118243 -0.987007 -0.108791 -0.695253 + 1.0 -0.326941 0.935477 -0.134136 -5.9929 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim 2hclosel c_marilithe + + +#NWmax ANIM ASCII +newanim 2hreach c_marilithe + length 1.0 + transtime 0.4 + animroot rootdummy + event 0.4 snd_footstep + event 0.933333 snd_footstep + event 0.5 hit + event 0.5 blur_end + event 0.433333 blur_start + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000247747 -0.0325529 1.02808 + 0.0666667 0.000248462 -0.0584412 1.0254 + 0.133333 0.000248459 -0.143051 1.0144 + 0.2 0.000248457 -0.217045 0.998321 + 0.266667 0.000248533 -0.203707 0.992897 + 0.333333 0.000248618 0.0651431 0.986893 + 0.4 0.000248785 0.475812 0.964259 + 0.466667 0.000249022 0.727464 0.916938 + 0.533333 0.00024948 0.858748 0.848357 + 0.6 0.000249784 0.914453 0.800858 + 0.666667 0.000250162 0.918179 0.773802 + 0.733333 0.000250006 0.792157 0.778487 + 0.8 0.000249543 0.532641 0.847879 + 0.866667 0.00024908 0.305649 0.950623 + 0.933333 0.000248619 0.084488 1.01234 + 1.0 0.000247747 -0.0325529 1.02808 + endlist + orientationkey + 0.0 0.627492 0.351856 0.694587 -0.325185 + 0.0666667 0.574572 0.337963 0.745418 -0.300437 + 0.133333 0.303443 0.254453 0.918246 -0.236893 + 0.2 0.0123194 0.148141 0.98889 -0.215258 + 0.266667 0.125488 0.0908102 0.98793 -0.214614 + 0.333333 0.676721 0.00412802 0.736228 -0.289577 + 0.4 0.901716 -0.0528708 0.429084 -0.496499 + 0.466667 0.944773 -0.06906 0.320367 -0.660376 + 0.533333 0.953514 -0.072943 0.292386 -0.72079 + 0.6 0.956511 -0.0743056 0.282072 -0.745793 + 0.666667 0.954363 -0.0621837 0.292104 -0.724379 + 0.733333 0.944815 -0.0328153 0.325958 -0.657404 + 0.8 0.915226 0.035163 0.401404 -0.544291 + 0.866667 0.852615 0.135033 0.50479 -0.439835 + 0.933333 0.715423 0.281924 0.639288 -0.351837 + 1.0 0.627492 0.351856 0.694587 -0.325185 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.894606 -0.386439 0.224378 -0.255901 + 0.1 -0.953987 -0.207755 -0.216208 -0.34345 + 0.166667 -0.966115 -0.131881 -0.221877 -0.483119 + 0.233333 -0.967234 -0.122285 -0.222497 -0.50919 + 0.3 -0.963584 -0.117381 -0.240265 -0.484467 + 0.366667 -0.916097 -0.0719584 -0.394448 -0.341307 + 0.5 0.820824 0.269135 -0.5038 -0.403006 + 0.566667 0.913967 0.224567 -0.337985 -0.571067 + 0.733333 0.962141 0.116794 -0.246261 -0.440967 + 0.933333 0.941482 -0.305155 0.143151 -0.267331 + 1.0 0.894606 -0.386439 0.224378 -0.255901 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.260154 0.717797 -0.645823 -0.186119 + 0.0666667 -0.970122 0.155056 -0.186603 -0.566219 + 0.166667 -0.996064 0.0791129 -0.0399747 -2.17215 + 0.233333 -0.999657 0.0250674 -0.00764021 -2.43248 + 0.3 -0.99977 0.0182605 -0.01125 -2.46233 + 0.366667 -0.99923 0.00143934 -0.0392024 -2.60655 + 0.433333 -0.996698 0.0129128 -0.0801669 -2.58731 + 0.5 -0.991675 0.0471723 -0.119814 -2.19988 + 0.533333 -0.99108 -0.132124 -0.0174302 -1.99773 + 0.566667 -0.996049 -0.0201374 -0.0864872 -1.82209 + 0.633333 -0.989775 -0.0413753 -0.136506 -1.3767 + 0.733333 -0.964738 -0.0429145 -0.259692 -1.09887 + 0.8 -0.929076 -0.0157273 -0.369555 -0.82075 + 0.933333 -0.842882 0.331541 -0.423829 -0.301902 + 1.0 -0.260154 0.717797 -0.645823 -0.186119 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.966792 -0.209574 -0.146258 -1.65226 + 0.0666667 -0.953682 -0.271569 -0.12939 -1.36275 + 0.166667 0.804714 0.593594 0.00906447 -5.60593 + 0.233333 0.911342 0.403762 0.0801991 -5.2682 + 0.3 0.902524 0.424594 0.0719054 -5.31092 + 0.366667 0.827579 0.558802 0.0534124 -5.55003 + 0.433333 -0.802489 -0.572783 -0.167126 -0.687896 + 0.5 -0.501487 -0.550852 -0.667137 -0.46942 + 0.533333 -0.205569 -0.688529 -0.695463 -0.414147 + 0.566667 -0.582205 -0.516378 -0.628006 -0.500148 + 0.633333 -0.854861 -0.29731 -0.425229 -0.808557 + 0.733333 -0.924225 -0.219874 -0.312193 -1.13775 + 0.8 -0.95241 -0.181373 -0.244988 -1.42241 + 0.933333 -0.95864 -0.236178 -0.158837 -1.478 + 1.0 -0.966792 -0.209574 -0.146258 -1.65226 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.848897 0.329653 0.413162 -0.189749 + 0.0666667 0.822076 0.528234 0.212507 -0.585097 + 0.166667 -0.158125 -0.942861 -0.293273 -5.77752 + 0.233333 0.0874898 -0.995419 0.0385604 -5.80598 + 0.3 0.633404 -0.750888 0.186995 -5.6817 + 0.366667 0.533174 -0.812927 0.234256 -5.76211 + 0.433333 -0.0103538 -0.999734 0.0206096 -5.75357 + 0.5 0.872789 0.150927 0.464177 -1.33383 + 0.533333 0.885676 0.40278 0.23097 -1.02688 + 0.566667 0.800771 0.36932 0.471559 -0.914385 + 0.633333 0.779313 0.495826 0.383182 -0.86453 + 0.733333 0.697941 0.66707 0.260569 -0.769146 + 0.8 0.758768 0.619713 0.200564 -0.712907 + 0.933333 -0.0309189 0.991218 -0.12857 -0.127375 + 1.0 0.848897 0.329653 0.413162 -0.189749 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.346952 -0.0324624 -0.937321 -0.195457 + 0.1 0.590725 0.274579 -0.758716 -0.106299 + 0.166667 0.676956 0.418747 -0.605294 -0.0908776 + 0.233333 0.705557 0.479364 -0.521919 -0.0864969 + 0.3 0.559734 0.554532 -0.615786 -0.0739631 + 0.366667 -0.365022 0.600037 -0.711839 -0.0658307 + 0.5 -0.971754 0.130484 -0.196644 -0.260387 + 0.733333 -0.723554 0.104669 -0.682286 -0.158876 + 0.933333 0.256885 -0.0202189 -0.96623 -0.180589 + 1.0 0.346952 -0.0324625 -0.937321 -0.195457 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.959734 0.0606966 -0.274276 -0.468544 + 0.1 0.864668 -0.27013 -0.423532 -0.0717528 + 0.166667 0.986332 -0.162218 -0.0289037 -0.192557 + 0.233333 0.988849 -0.147991 0.0165978 -0.241802 + 0.3 0.975748 -0.208886 0.065448 -0.151847 + 0.366667 -0.985875 -0.0690841 0.152571 -0.21869 + 0.5 -0.990963 0.0271361 0.131359 -0.716446 + 0.6 -0.995887 0.0189106 0.0886084 -0.596045 + 0.733333 -0.999874 0.0148631 -0.00562042 -0.947045 + 0.933333 -0.967365 0.0582001 -0.246614 -0.460662 + 1.0 -0.959734 0.0606966 -0.274276 -0.468544 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.993296 0.021008 -0.113676 -4.71216e-007 + 1.0 0.99975 0.00994145 -0.0200106 -9.04931e-007 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.469672 -0.352142 0.809571 -0.941657 + 0.0666667 -0.947975 -0.141283 0.285277 -0.760485 + 0.1 -0.93859 -0.243842 0.24411 -1.36517 + 0.133333 -0.98675 -0.128049 0.0996342 -1.91347 + 0.166667 -0.999614 0.0240714 0.01384 -2.31209 + 0.233333 -0.99315 -0.0595735 0.100517 -2.76885 + 0.3 -0.996357 -0.00256452 0.0852459 -2.82038 + 0.366667 -0.996209 -0.059251 0.0636965 -2.84514 + 0.433333 -0.98325 -0.175179 0.0503129 -2.79242 + 0.5 -0.999313 -0.0293638 -0.022622 -1.88539 + 0.533333 -0.995585 -0.093577 0.00731511 -1.77595 + 0.566667 -0.997258 -0.0738029 -0.00539493 -1.72918 + 0.633333 -0.992297 -0.1204 -0.0291699 -1.30488 + 0.733333 -0.97573 -0.208099 -0.0681542 -0.987152 + 0.8 -0.976825 -0.150523 -0.152171 -0.709131 + 0.933333 -0.590911 -0.393925 0.704022 -1.02789 + 1.0 -0.470057 -0.353524 0.808744 -0.940068 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.889632 0.350904 0.292268 -0.970268 + 0.0666667 -0.844763 0.439481 0.30534 -0.818566 + 0.1 -0.64501 0.691064 0.326179 -0.564834 + 0.133333 -0.155572 -0.963661 -0.217152 -5.84861 + 0.166667 -0.239788 -0.951064 -0.19488 -5.84089 + 0.233333 -0.152058 -0.964023 -0.218032 -5.84885 + 0.3 -0.228083 -0.953278 -0.19809 -5.84217 + 0.366667 -0.197876 -0.958292 -0.206209 -5.84518 + 0.433333 -0.165331 -0.962592 -0.214669 -5.84791 + 0.5 -0.827905 0.468059 0.309021 -0.778946 + 0.533333 -0.655271 0.681443 0.325969 -0.571591 + 0.566667 -0.46139 0.827299 0.320462 -0.484814 + 0.633333 -0.787738 0.528855 0.315882 -0.705995 + 0.733333 -0.899604 0.327857 0.288483 -1.0188 + 0.8 -0.927214 0.253887 0.275346 -1.20962 + 0.933333 -0.842063 0.444201 0.305967 -0.811756 + 1.0 -0.889632 0.350904 0.292268 -0.970268 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.627561 0.302938 -0.717214 -0.603471 + 0.0666667 0.0808156 0.791961 -0.605199 -0.517249 + 0.1 -0.215843 0.619403 -0.754819 -0.443872 + 0.133333 0.564935 -0.824371 -0.0355148 -6.04547 + 0.166667 -0.0729573 -0.220207 -0.972721 -5.92114 + 0.233333 0.48374 -0.206457 -0.850512 -5.76987 + 0.3 0.476743 -0.19917 -0.856182 -5.40675 + 0.366667 0.490328 -0.354918 -0.795997 -5.6682 + 0.433333 0.547818 -0.811109 -0.204935 -5.84918 + 0.5 0.827903 0.217389 -0.517028 -1.51787 + 0.533333 0.73069 0.335642 -0.594506 -1.20185 + 0.566667 0.731454 0.421887 -0.535712 -0.833742 + 0.633333 0.622285 0.512636 -0.591579 -0.743596 + 0.733333 0.45055 0.569684 -0.68736 -0.594775 + 0.8 0.387135 0.762304 -0.518671 -0.590007 + 0.933333 -0.796489 0.0593192 -0.601736 -0.622085 + 1.0 -0.627561 0.302938 -0.717214 -0.603471 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.998613 -0.046067 -0.025493 -1.4149e-006 + 0.0666667 0.999509 -0.0298101 0.00968394 -1.8535e-006 + 0.166667 -0.999994 -0.000162528 0.00339659 -6.28318 + 0.233333 -0.999958 0.00820406 -0.00400192 -6.28318 + 0.366667 0.999808 0.0194303 0.00236214 -6.28318 + 0.433333 0.999766 0.0207644 -0.00605552 -6.28318 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0316534 -0.22798 -0.973151 -0.304591 + 1.0 -0.0316527 -0.22798 -0.973151 -0.304591 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.233333 -0.915427 -0.402036 -0.0189757 -0.716295 + 0.6 -0.911057 -0.389793 0.134302 -0.646435 + 1.0 -0.925528 -0.374542 0.0558187 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.947311 0.316644 -0.0483628 -0.884067 + 0.233333 0.953756 0.29987 0.0206857 -0.97385 + 0.6 0.934635 0.350061 -0.0625654 -1.21561 + 0.733333 0.943834 0.330371 -0.00577698 -1.43053 + 1.0 0.947311 0.316644 -0.0483627 -0.884067 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.843929 0.423051 -0.329866 -1.2461 + 0.233333 0.95987 0.19957 -0.197029 -1.35968 + 0.6 0.728192 -0.592406 -0.344661 -0.610835 + 0.733333 0.799143 -0.139499 -0.584731 -0.547103 + 1.0 0.843929 0.423051 -0.329866 -1.2461 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.488943 0.865121 -0.111804 -0.439568 + 0.233333 0.740269 0.339174 -0.580485 -0.362541 + 0.6 0.169272 -0.181878 -0.968642 -0.0867791 + 0.733333 0.009474 0.854983 -0.51857 -0.157733 + 1.0 0.488943 0.865121 -0.111804 -0.439568 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.136147 -0.914871 -0.380099 -0.46156 + 0.233333 -0.0672739 0.165264 0.983952 -0.124067 + 0.6 0.585137 0.782549 0.212676 -0.181351 + 0.733333 -0.90331 0.0818553 -0.421107 -0.102381 + 1.0 0.136147 -0.91487 -0.3801 -0.46156 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.393772 -0.843573 -0.365142 -0.566005 + 0.233333 -0.850815 0.309377 -0.424734 -0.231083 + 0.6 0.219185 0.962662 -0.158872 -0.598566 + 0.733333 0.125198 0.839837 -0.528205 -0.259271 + 1.0 -0.393772 -0.843573 -0.365142 -0.566005 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.175445 -0.704046 -0.688141 -0.789494 + 0.233333 -0.479475 -0.0481786 -0.876232 -0.806071 + 0.6 0.0543134 0.714394 -0.697632 -0.479764 + 0.733333 -0.0702891 0.108228 -0.991638 -0.414138 + 1.0 -0.175445 -0.704046 -0.688141 -0.789494 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.53453 -0.652466 -0.537184 -0.508358 + 0.233333 -0.799942 -0.561281 -0.212265 -0.961906 + 0.6 0.53978 0.554119 -0.633711 -0.220872 + 0.733333 -0.0577827 -0.153195 -0.986505 -0.188073 + 1.0 -0.53453 -0.652466 -0.537184 -0.508358 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.186743 0.29375 0.937464 -0.300984 + 0.233333 -0.777968 -0.344164 0.525658 -0.849253 + 0.6 -0.431128 -0.787808 -0.439871 -5.85955 + 0.733333 0.294622 0.721764 0.626303 -0.349499 + 1.0 -0.186742 0.293749 0.937464 -0.300984 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.609781 -0.428863 0.666516 -0.428777 + 0.233333 -0.15266 -0.773649 0.614948 -1.19565 + 0.6 0.612113 0.658872 -0.43727 -5.87752 + 0.733333 -0.618727 -0.586488 0.522694 -0.408552 + 1.0 -0.60978 -0.428864 0.666516 -0.428777 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555705 -0.721883 0.412404 -0.425847 + 0.233333 -0.378738 0.88186 -0.280855 -5.63494 + 0.6 -0.0414792 -0.990296 0.132638 -1.13171 + 0.733333 0.0597541 -0.980801 0.185629 -0.867755 + 1.0 0.555704 -0.721882 0.412405 -0.425848 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.326941 0.935477 -0.134137 -5.9929 + 0.233333 -0.26674 0.957476 -0.109951 -5.77797 + 0.6 0.118183 -0.987013 -0.108808 -0.695301 + 0.733333 0.156011 -0.98552 -0.0664112 -0.556284 + 1.0 -0.326942 0.935477 -0.134135 -5.9929 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim 2hreach c_marilithe + + +#NWmax ANIM ASCII +newanim 2hparryl c_marilithe + length 1.0 + transtime 0.4 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000247747 -0.0325529 1.02808 + 0.0666667 0.00635436 -0.0604096 1.0221 + 0.2 0.0178016 -0.127508 1.01955 + 0.266667 0.0094241 -0.151716 1.02 + 0.4 -0.0283267 -0.16633 1.0202 + 0.466667 -0.0433576 -0.166619 1.02 + 0.533333 -0.0888949 -0.157505 1.0204 + 0.6 -0.109945 -0.139002 1.01812 + 0.666667 -0.11616 -0.126146 1.01722 + 0.733333 -0.108091 -0.10469 1.01881 + 0.8 -0.0825545 -0.0784243 1.01947 + 0.933333 -0.0111351 -0.0392972 1.02321 + 1.0 0.000247747 -0.0325529 1.02808 + endlist + orientationkey + 0.0 0.627492 0.351856 0.694587 -0.325185 + 0.0666667 0.636214 0.345191 0.689982 -0.273912 + 0.2 0.667971 0.319709 0.672013 -0.171494 + 0.266667 0.702364 0.290062 0.650038 -0.120573 + 0.466667 0.464128 -0.88284 0.0719621 -0.15289 + 0.533333 0.342299 -0.939561 -0.00755329 -0.165579 + 0.6 0.223759 -0.960054 -0.16801 -0.184109 + 0.666667 0.25363 -0.855878 0.450716 -0.174727 + 0.733333 0.192247 -0.212478 0.958068 -0.341761 + 0.8 0.352124 -0.0365274 0.93524 -0.242428 + 0.933333 0.78539 0.377201 0.490798 -0.231624 + 1.0 0.627492 0.351856 0.694587 -0.325185 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.894606 -0.386439 0.224378 -0.255901 + 0.0666667 0.905963 -0.38846 0.168314 -0.23746 + 0.2 0.855012 -0.339501 -0.392039 -0.157233 + 0.266667 0.783601 -0.302111 -0.542862 -0.150918 + 0.333333 0.641093 -0.321132 -0.697046 -0.17788 + 0.4 0.310993 -0.318742 -0.89537 -0.31463 + 0.466667 0.252769 -0.313889 -0.915195 -0.365253 + 0.5 0.127252 -0.29672 -0.946448 -0.430137 + 0.533333 -0.152349 -0.323008 -0.934053 -0.50596 + 0.6 -0.385988 -0.340868 -0.857218 -0.635985 + 0.766667 0.0707428 -0.328422 -0.941878 -0.44336 + 0.933333 0.889058 -0.457584 -0.0139055 -0.229715 + 1.0 0.894606 -0.386439 0.224378 -0.255901 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.260154 0.717797 -0.645823 -0.186119 + 0.0666667 -0.329957 0.755738 -0.565675 -0.164518 + 0.166667 -0.127061 0.796371 -0.591311 -0.197636 + 0.2 -0.13896 0.805469 -0.576117 -0.159915 + 0.266667 -0.321124 0.808641 -0.492929 -0.153056 + 0.333333 -0.937595 0.239907 -0.251713 -0.289171 + 0.4 -0.923133 0.164242 -0.347634 -0.828596 + 0.466667 -0.887902 0.0563188 -0.456573 -1.47124 + 0.533333 -0.910492 0.0766413 -0.406363 -1.47984 + 0.6 -0.943867 0.0511227 -0.326347 -1.42202 + 0.666667 -0.91605 0.0418927 -0.398871 -1.46903 + 0.733333 -0.813494 0.0606561 -0.578402 -1.63478 + 0.8 -0.745895 0.143664 -0.650385 -1.37909 + 0.833333 -0.829962 -0.00795555 -0.557763 -0.793095 + 0.866667 -0.995519 -0.0636543 -0.0699313 -0.344738 + 0.933333 -0.272982 0.884719 0.377826 -0.141789 + 1.0 -0.260154 0.717797 -0.645823 -0.186119 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.966792 -0.209574 -0.146258 -1.65226 + 0.0666667 -0.96725 -0.210621 -0.141657 -1.66716 + 0.166667 -0.967136 -0.226638 -0.115255 -1.66341 + 0.2 -0.967222 -0.227878 -0.112042 -1.66625 + 0.266667 -0.971463 -0.214224 -0.10182 -1.65952 + 0.333333 -0.984724 -0.157234 -0.0748046 -1.57206 + 0.4 -0.994795 -0.0809236 -0.0619191 -1.34538 + 0.466667 -0.998653 -1.87931e-005 -0.0518862 -0.821411 + 0.533333 -0.913731 -0.404383 0.0396287 -0.552885 + 0.6 -0.695147 -0.70105 0.159059 -0.46625 + 0.666667 -0.748267 -0.661415 0.0512471 -0.623698 + 0.733333 -0.800055 -0.59969 0.0168639 -0.68458 + 0.8 -0.897713 -0.43637 -0.060762 -0.924592 + 0.833333 -0.939902 -0.325537 -0.103003 -1.19736 + 0.866667 -0.958728 -0.252564 -0.130581 -1.46907 + 0.933333 -0.967107 -0.209403 -0.144413 -1.67471 + 1.0 -0.966792 -0.209574 -0.146258 -1.65226 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.848897 0.329653 0.413162 -0.189749 + 0.0666667 0.896452 0.209508 0.390488 -0.187357 + 0.166667 0.746165 0.2956 0.596538 -0.230961 + 0.2 0.803344 0.216541 0.55475 -0.236668 + 0.266667 0.560017 0.44131 0.701161 -0.173536 + 0.333333 0.358257 -0.0467165 0.932454 -0.435663 + 0.4 0.289716 0.408996 0.865325 -1.55596 + 0.466667 0.00714012 -0.228599 -0.973495 -3.46661 + 0.533333 0.0399911 -0.130519 -0.990639 -3.29737 + 0.6 0.0749357 -0.130855 -0.988565 -3.42731 + 0.666667 0.101201 -0.149706 -0.983538 -3.38246 + 0.733333 0.147996 -0.144115 -0.978431 -3.35797 + 0.8 -0.526917 0.355848 0.771836 -2.02048 + 0.833333 -0.545181 0.456466 0.703148 -1.24004 + 0.866667 -0.402061 0.40183 0.822727 -0.49644 + 0.933333 0.0196512 0.291165 0.956471 -0.184748 + 1.0 0.848897 0.329653 0.413162 -0.189749 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 -1.26441e-007 + 0.0666667 0.0 0.0 0.0 0.0 + 0.166667 0.0 0.0 0.0 0.0 + 0.866667 -3.28046e-007 2.43547e-006 1.0 -0.0562598 + 0.933333 -7.32552e-007 2.25562e-007 1.0 -0.0255726 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.346952 -0.0324625 -0.937321 -0.195457 + 0.466667 0.791541 -0.0191331 -0.610817 -0.0858093 + 0.6 0.97251 0.0771249 0.219718 -0.204152 + 1.0 0.346952 -0.0324624 -0.937321 -0.195457 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.959734 0.0606966 -0.274276 -0.468544 + 0.466667 0.00731244 0.949884 0.312516 -0.251556 + 0.6 0.703319 0.56437 0.432238 -0.337647 + 1.0 -0.959734 0.0606965 -0.274276 -0.468544 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.470484 -0.355003 0.807847 -0.938368 + 0.0666667 -0.574828 -0.293564 0.763802 -0.723761 + 0.166667 -0.812728 -0.208894 0.543909 -0.485825 + 0.2 -0.890773 -0.165489 0.423246 -0.412499 + 0.266667 -0.796968 -0.230848 0.558168 -0.571655 + 0.333333 -0.732608 -0.241832 0.636241 -0.707523 + 0.4 -0.652309 -0.485708 0.581877 -1.1566 + 0.466667 -0.673804 -0.677065 0.295923 -1.43262 + 0.533333 -0.592567 -0.706473 0.386989 -1.53295 + 0.6 -0.48695 -0.716341 0.499734 -1.70217 + 0.666667 -0.600528 -0.742742 0.296144 -1.337 + 0.733333 -0.567141 -0.823005 -0.0318556 -0.969625 + 0.8 -0.802725 -0.555068 -0.21802 -0.670885 + 0.833333 -0.899949 -0.434835 -0.0317883 -0.571638 + 0.866667 -0.756889 -0.359939 0.545494 -0.646402 + 0.933333 -0.526549 -0.305249 0.793454 -0.990108 + 1.0 -0.470913 -0.356367 0.806997 -0.9368 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.889632 0.350904 0.292268 -0.970268 + 0.0666667 -0.895629 0.337231 0.29004 -0.998524 + 0.166667 -0.813243 0.470231 0.34281 -1.04917 + 0.2 -0.812827 0.467435 0.347588 -1.08026 + 0.266667 -0.82572 0.465444 0.318666 -1.03095 + 0.333333 -0.963141 0.259692 0.0701332 -1.05888 + 0.4 -0.980894 0.11161 -0.159341 -1.28481 + 0.466667 -0.946314 0.147808 -0.287478 -1.35678 + 0.533333 -0.931889 0.156665 -0.327169 -1.10502 + 0.6 -0.903766 0.148426 -0.401468 -0.885892 + 0.666667 -0.958626 0.16535 -0.231722 -1.23226 + 0.733333 -1.0 1.94147e-007 -3.36793e-007 -1.54121 + 0.8 -0.990823 0.132321 -0.0275841 -1.4457 + 0.833333 -0.986509 0.153443 0.0570548 -1.33548 + 0.866667 -0.967392 0.201789 0.153084 -1.1549 + 0.933333 -0.917231 0.320224 0.236948 -0.925869 + 1.0 -0.889632 0.350904 0.292268 -0.970268 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.627561 0.302938 -0.717214 -0.603471 + 0.0666667 -0.527193 0.605972 -0.595706 -0.461947 + 0.166667 -0.206327 0.91509 -0.346468 -0.328698 + 0.2 0.02207 0.981094 -0.192269 -0.338637 + 0.266667 -0.102562 0.974635 -0.198917 -0.283435 + 0.333333 0.740154 0.671265 0.0396837 -0.553009 + 0.4 0.972666 -0.0057384 0.232136 -1.4028 + 0.466667 -0.43144 0.0528867 -0.90059 -4.02284 + 0.533333 0.39518 -0.0529799 0.917075 -2.11094 + 0.6 0.333265 -0.16102 0.928982 -1.72589 + 0.666667 -0.301964 0.0725727 -0.950553 -4.16746 + 0.733333 -0.265301 0.0755501 -0.961201 -4.31555 + 0.8 0.225926 -0.279712 0.933123 -1.55785 + 0.833333 0.405941 -0.159456 0.899881 -1.12425 + 0.866667 0.785048 -0.305829 0.538673 -0.510569 + 0.933333 -0.352787 0.767417 -0.535362 -0.442452 + 1.0 -0.627561 0.302938 -0.717214 -0.603471 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.997157 0.0602804 -0.0452107 -9.60171e-007 + 0.0666667 0.998624 0.0286171 0.0439401 -1.55829e-006 + 1.0 0.999841 0.00182924 -0.0177568 -3.10831e-006 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0316529 -0.22798 -0.973151 -0.304591 + 1.0 -0.0316524 -0.22798 -0.973151 -0.304591 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.6 -0.902604 -0.413418 0.119965 -0.649851 + 1.0 -0.925528 -0.374542 0.0558187 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.947311 0.316644 -0.0483628 -0.884067 + 0.6 0.943138 0.325903 -0.0654093 -0.847343 + 1.0 0.947311 0.316644 -0.0483628 -0.884067 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.85136 0.412362 -0.32426 -1.29253 + 0.6 0.907371 0.29135 -0.302973 -1.52609 + 1.0 0.85136 0.412362 -0.32426 -1.29253 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.466779 0.879407 -0.0935975 -0.430386 + 0.6 0.547975 0.813776 -0.193629 -0.449661 + 1.0 0.46678 0.879407 -0.0935973 -0.430386 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.0325501 -0.944591 -0.326632 -0.453149 + 0.6 0.278713 0.95966 0.0370373 -5.86917 + 1.0 0.0325498 -0.944591 -0.326631 -0.453149 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.483675 -0.80414 -0.345568 -0.586815 + 0.6 -0.420912 -0.829552 -0.366984 -0.586776 + 1.0 -0.483675 -0.80414 -0.345567 -0.586815 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.269966 -0.633251 -0.725335 -0.812253 + 0.6 -0.392387 -0.507471 -0.767141 -0.811955 + 1.0 -0.269965 -0.633252 -0.725335 -0.812253 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.534532 -0.652465 -0.537183 -0.508357 + 0.6 -0.37866 -0.503811 -0.776396 -0.625484 + 1.0 -0.534532 -0.652464 -0.537183 -0.508358 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.186741 0.29376 0.937461 -0.300988 + 0.6 0.37944 -0.58264 0.718718 -0.236721 + 1.0 -0.18674 0.29376 0.937461 -0.300987 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.609792 -0.42884 0.666521 -0.428779 + 0.6 -0.102208 0.630008 -0.769834 -5.44176 + 1.0 -0.609793 -0.42884 0.666521 -0.428779 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555692 -0.721894 0.412403 -0.42585 + 0.6 -0.865329 0.422441 -0.26972 -5.6583 + 1.0 0.555692 -0.721894 0.412401 -0.425849 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.326979 0.935454 -0.134202 -5.99302 + 0.6 -0.798496 0.535844 -0.274364 -5.87871 + 1.0 -0.326979 0.935454 -0.134203 -5.99302 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim 2hparryl c_marilithe + + +#NWmax ANIM ASCII +newanim 2hparryr c_marilithe + length 1.0 + transtime 0.4 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000247747 -0.0325529 1.02808 + 0.166667 0.0215323 -0.0678633 1.0269 + 0.233333 0.0356715 -0.0954259 1.01439 + 0.3 0.0498106 -0.122988 1.00188 + 0.366667 0.0498106 -0.122988 1.00188 + 0.466667 -0.0968948 -0.011303 0.944238 + 0.533333 -0.108242 -0.00243789 0.943798 + 0.6 -0.123049 -0.0109624 0.939104 + 1.0 0.000247747 -0.0325529 1.02808 + endlist + orientationkey + 0.0 0.627492 0.351856 0.694587 -0.325185 + 1.0 0.627492 0.351856 0.694587 -0.325185 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.894606 -0.386439 0.224379 -0.255901 + 0.166667 0.22898 -0.267619 -0.935921 -0.515378 + 0.3 0.101199 -0.180316 -0.978389 -0.748449 + 0.466667 -0.0276574 0.755951 0.654044 -0.312461 + 0.6 -0.26556 0.574969 0.773879 -0.418842 + 0.766667 0.265904 0.600897 0.753802 -0.308655 + 1.0 0.894606 -0.386439 0.224378 -0.255901 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.260154 0.717797 -0.645823 -0.186119 + 0.166667 -0.686098 0.268086 -0.676313 -1.25059 + 0.3 -0.855131 -0.184089 -0.484626 -2.24762 + 0.366667 -0.838957 -0.0514815 -0.541757 -2.33698 + 0.466667 -0.991504 -0.0916311 -0.092325 -0.733786 + 0.533333 -0.92265 -0.165828 -0.348164 -0.506687 + 0.6 -0.956642 -0.0895529 -0.277156 -0.728425 + 0.766667 -0.85776 -0.0690898 -0.509387 -0.582357 + 1.0 -0.260154 0.717797 -0.645823 -0.186119 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.966792 -0.209574 -0.146258 -1.65226 + 0.166667 -0.946809 -0.29665 -0.124709 -1.24721 + 0.3 0.359813 0.925614 -0.117362 -5.8776 + 0.366667 0.853547 0.517341 0.061772 -5.5452 + 0.466667 -0.587427 -0.80779 0.0490483 -0.468691 + 0.533333 -0.928774 -0.354089 -0.109546 -1.06341 + 0.6 -0.727269 -0.686346 -0.00286617 -0.554672 + 0.766667 -0.928887 -0.353764 -0.109634 -1.06431 + 1.0 -0.966792 -0.209574 -0.146258 -1.65226 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.848897 0.329653 0.413162 -0.189749 + 0.166667 -0.890763 0.249189 -0.380061 -5.83975 + 0.3 -0.564364 -0.477993 0.673064 -5.30899 + 0.366667 -0.460438 -0.587341 0.665603 -5.82991 + 0.466667 0.227245 0.920065 0.319123 -1.29766 + 0.533333 0.443665 0.891755 0.0890798 -1.48121 + 0.6 0.141349 0.97938 0.144342 -1.30117 + 0.766667 0.425683 0.78187 0.455492 -1.00679 + 1.0 0.848897 0.329653 0.413162 -0.189749 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.346952 -0.0324625 -0.937321 -0.195457 + 0.166667 0.449126 -0.0308288 -0.892936 -0.150905 + 0.3 0.576241 -0.0279956 -0.8168 -0.117509 + 0.466667 0.519976 -0.0103736 -0.854118 -0.214177 + 0.533333 0.519945 -0.0103842 -0.854137 -0.214172 + 0.6 0.519972 -0.0104148 -0.85412 -0.214176 + 0.766667 0.555069 -0.0118396 -0.83172 -0.167683 + 1.0 0.346952 -0.0324624 -0.937321 -0.195457 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.959734 0.0606966 -0.274276 -0.468544 + 0.166667 -0.613176 0.335561 0.715132 -0.3483 + 0.3 -0.256085 0.261859 0.930511 -0.266114 + 0.466667 0.154731 0.0325311 0.987421 -0.288536 + 0.533333 0.70762 0.00710423 0.706558 -0.341836 + 0.6 0.00832157 0.0803516 0.996732 -0.329135 + 0.766667 -0.346553 -0.0312415 0.93751 -0.27191 + 1.0 -0.959734 0.0606966 -0.274276 -0.468544 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.47007 -0.35357 0.808716 -0.940015 + 0.166667 -0.906203 -0.24007 -0.348084 -0.496887 + 0.3 -0.72595 -0.455042 -0.515687 -1.41295 + 0.366667 -0.669906 -0.481079 -0.565498 -1.61414 + 0.466667 -0.931673 -0.129043 0.339609 -0.799697 + 0.533333 -0.657036 -0.418148 0.627261 -0.60356 + 0.6 -0.99713 -0.0197067 -0.0730956 -0.733851 + 0.766667 -0.817737 -0.503898 0.278196 -0.493682 + 1.0 -0.470471 -0.354957 0.807875 -0.938421 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.889632 0.350904 0.292268 -0.970268 + 0.166667 -0.932994 0.235773 0.271907 -1.26642 + 0.3 -0.955944 0.147292 0.253922 -1.62343 + 0.366667 -0.961438 0.119252 0.247823 -1.77136 + 0.466667 -0.186589 0.939318 0.287865 -0.437004 + 0.533333 -0.902113 0.321801 0.287465 -1.0323 + 0.6 -0.0953506 0.957539 0.272079 -0.431206 + 0.766667 -0.896503 0.335191 0.289706 -1.00286 + 1.0 -0.889632 0.350904 0.292268 -0.970268 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.627561 0.302938 -0.717214 -0.603471 + 0.166667 -0.202795 -0.376018 -0.904149 -0.707904 + 0.3 -0.0671863 0.0639638 0.995688 -4.71916 + 0.366667 -0.272516 0.542119 0.794885 -4.81151 + 0.466667 0.845351 -0.349311 -0.404182 -0.400289 + 0.533333 0.640452 -0.0170405 -0.767809 -0.851694 + 0.6 0.362448 0.915727 0.173423 -0.228092 + 0.766667 0.751851 0.375203 -0.542165 -0.671544 + 1.0 -0.627561 0.302938 -0.717214 -0.603471 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 -1.26441e-007 + 1.0 0.996608 -0.0665639 0.0483884 -3.00989e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0316533 -0.22798 -0.973151 -0.304591 + 1.0 -0.0316534 -0.22798 -0.973151 -0.304591 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.6 -0.921319 -0.379362 0.0851789 -1.04173 + 1.0 -0.925528 -0.374542 0.0558187 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.947311 0.316644 -0.0483628 -0.884067 + 0.6 0.943854 0.327378 -0.0442981 -1.19446 + 1.0 0.947311 0.316644 -0.0483628 -0.884067 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.85136 0.412362 -0.32426 -1.29253 + 0.6 0.885162 0.320984 -0.336834 -1.33123 + 1.0 0.85136 0.412362 -0.32426 -1.29253 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.466779 0.879407 -0.0935975 -0.430386 + 0.6 0.549648 0.812413 -0.194608 -0.450403 + 1.0 0.466779 0.879407 -0.0935976 -0.430386 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.0325497 -0.944591 -0.326632 -0.453149 + 0.6 -0.278712 -0.95966 -0.0370383 -0.414013 + 1.0 0.0325493 -0.944591 -0.326632 -0.453149 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.483675 -0.80414 -0.345568 -0.586816 + 0.6 -0.420912 -0.829551 -0.366985 -0.586776 + 1.0 -0.483675 -0.80414 -0.345568 -0.586816 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.269965 -0.633252 -0.725335 -0.812253 + 0.6 -0.392386 -0.507471 -0.767142 -0.811955 + 1.0 -0.269965 -0.633251 -0.725335 -0.812253 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.534532 -0.652464 -0.537183 -0.508358 + 0.6 -0.378663 -0.503814 -0.776393 -0.625481 + 1.0 -0.534532 -0.652464 -0.537183 -0.508358 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.18674 0.293759 0.937461 -0.300988 + 0.6 0.379409 -0.582614 0.718755 -0.236715 + 1.0 -0.18674 0.293759 0.937461 -0.300988 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.609791 -0.42884 0.666521 -0.428779 + 0.6 0.102207 -0.630041 0.769806 -0.841543 + 1.0 -0.609792 -0.42884 0.666521 -0.428779 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555692 -0.721894 0.412402 -0.42585 + 0.6 -0.86554 0.422212 -0.269402 -5.65838 + 1.0 0.555692 -0.721894 0.412402 -0.425849 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.32698 0.935454 -0.134202 -5.99302 + 0.6 -0.798635 0.535638 -0.274359 -5.87904 + 1.0 -0.32698 0.935454 -0.134202 -5.99302 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim 2hparryr c_marilithe + + +#NWmax ANIM ASCII +newanim plslashl c_marilithe + length 1.0 + transtime 0.3 + animroot rootdummy + event 0.866667 snd_footstep + event 0.5 hit + event 0.533333 blur_end + event 0.4 blur_start + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.00189454 -0.0312607 0.998121 + 0.0666667 -0.00190538 -0.0466307 0.996351 + 0.133333 -0.00193789 -0.0927406 0.99104 + 0.2 -0.00202134 -0.211146 0.977402 + 0.266667 -0.00206363 -0.28512 0.968483 + 0.333333 -0.0080743 -0.266945 0.960873 + 0.4 -0.0240284 -0.0594603 0.940851 + 0.466667 -0.0742142 0.205758 0.911605 + 0.533333 -0.126138 0.345057 0.913568 + 0.6 -0.173731 0.373688 0.925514 + 0.666667 -0.191372 0.343459 0.931061 + 0.733333 -0.174796 0.311506 0.937155 + 0.8 -0.13381 0.232496 0.952221 + 0.866667 -0.0759468 0.120951 0.973492 + 0.933333 -0.0167275 0.00679269 0.995261 + 1.0 0.00301221 -0.0312602 1.00252 + endlist + orientationkey + 0.0 0.916263 0.0597051 0.396103 -0.211064 + 0.0666667 0.832927 0.106094 0.543117 -0.231653 + 0.133333 0.59315 0.187701 0.782906 -0.32244 + 0.2 0.294793 0.244638 0.923715 -0.625226 + 0.266667 0.186127 0.242059 0.952242 -0.912304 + 0.333333 0.211586 0.27139 0.938924 -0.923425 + 0.4 0.535725 0.46955 0.701798 -0.581388 + 0.466667 0.763387 0.483608 -0.428209 -0.592733 + 0.533333 0.544773 0.332989 -0.769637 -0.86166 + 0.6 0.465697 0.320913 -0.824707 -0.923185 + 0.666667 0.463265 0.321861 -0.825706 -0.92536 + 0.733333 0.482631 0.322281 -0.814372 -0.849036 + 0.8 0.54645 0.322496 -0.772909 -0.662555 + 0.866667 0.710313 0.312841 -0.630544 -0.411731 + 0.933333 0.982248 0.187359 -0.00925108 -0.222545 + 1.0 0.916261 0.0597125 0.396105 -0.211063 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.847587 0.100708 -0.521013 -0.208508 + 0.0666667 0.920265 -0.106568 -0.376504 -0.154159 + 0.2 -0.118834 -0.715928 0.687986 -0.283086 + 0.233333 -0.218403 -0.675975 0.703817 -0.374467 + 0.3 -0.251426 -0.660698 0.707293 -0.42125 + 0.366667 -0.340882 -0.709594 0.616665 -0.315289 + 0.5 -0.0505983 0.167525 -0.984569 -0.499571 + 0.566667 0.113772 0.400243 -0.909319 -0.539273 + 0.633333 0.192657 0.435528 -0.879317 -0.620851 + 0.7 0.222752 0.427381 -0.8762 -0.567406 + 0.866667 0.604042 0.27588 -0.747679 -0.273076 + 0.933333 0.78546 0.156255 -0.598864 -0.221296 + 1.0 0.847587 0.100707 -0.521012 -0.208508 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.893147 0.443933 -0.072188 -0.487369 + 0.0666667 0.85782 0.513946 0.00203111 -0.59202 + 0.2 0.746237 0.645335 0.163317 -1.15755 + 0.233333 0.752319 0.627876 0.199468 -1.3564 + 0.3 0.756995 0.621609 0.201398 -1.46352 + 0.366667 0.572257 0.746243 0.340064 -1.21027 + 0.433333 -0.200943 0.865077 0.459634 -1.08028 + 0.5 -0.739079 0.590892 0.323434 -1.48538 + 0.533333 -0.846893 0.521978 0.101543 -1.58922 + 0.566667 -0.948745 0.315968 -0.00690919 -1.69173 + 0.633333 -0.998532 0.0361364 -0.0403485 -1.82704 + 0.7 -0.996396 0.0551238 -0.0644688 -1.71194 + 0.8 -0.981231 0.11404 -0.1555 -1.2939 + 0.866667 -0.954101 0.173431 -0.244156 -1.02419 + 0.933333 -0.822225 0.355987 -0.444094 -0.874064 + 1.0 -0.754142 0.416068 -0.508092 -0.838735 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.993753 -0.0487807 -0.10038 -1.63748 + 0.0666667 -0.99225 -0.0326185 -0.119896 -1.62955 + 0.2 -0.974696 0.0498684 -0.217899 -1.5998 + 0.233333 -0.967954 0.0751973 -0.239605 -1.66057 + 0.3 -0.964332 0.0873258 -0.249876 -1.69158 + 0.366667 -0.958214 0.0506784 -0.281529 -1.43079 + 0.433333 -0.932399 -0.0644547 -0.355638 -1.00752 + 0.5 -0.814422 -0.308143 -0.491696 -0.619758 + 0.533333 -0.712744 -0.490149 -0.501747 -0.624124 + 0.566667 -0.598444 -0.634015 -0.489785 -0.660084 + 0.633333 -0.144401 -0.896336 -0.419201 -0.593558 + 0.7 -0.20793 -0.874065 -0.439063 -0.54511 + 0.8 -0.526307 -0.682317 -0.507389 -0.403854 + 0.866667 -0.772424 -0.390417 -0.500935 -0.361233 + 0.933333 -0.961461 -0.0563081 -0.269114 -0.635624 + 1.0 -0.974224 0.000126186 -0.225584 -0.739313 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.217945 -0.630849 -0.744667 -0.352683 + 0.0666667 0.0968797 -0.744123 -0.660981 -0.307004 + 0.2 -0.600915 -0.747266 0.283717 -0.340919 + 0.233333 -0.55587 -0.674984 0.485185 -0.412158 + 0.3 -0.537697 -0.608578 0.583537 -0.452198 + 0.366667 -0.772721 -0.630763 -0.0709959 -0.403436 + 0.433333 -0.703834 -0.318545 -0.634938 -0.817649 + 0.5 -0.641928 -0.1644 -0.748933 -1.29619 + 0.533333 0.624995 0.0751967 0.776999 -5.11211 + 0.566667 0.49778 0.107241 0.860648 -5.07632 + 0.633333 0.374065 0.153201 0.914661 -4.72764 + 0.7 0.396584 0.161061 0.903759 -4.80346 + 0.8 -0.471136 -0.212993 -0.855959 -1.24518 + 0.866667 -0.529424 -0.256536 -0.808641 -1.09807 + 0.933333 -0.586735 -0.41385 -0.696039 -0.812903 + 1.0 -0.600678 -0.486972 -0.634069 -0.733653 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 3.18534e-005 1.0 -8.38983e-005 -0.497556 + 0.2 1.0 0.000495949 0.000459639 -0.101447 + 0.233333 1.0 0.000495949 0.000460224 -0.128959 + 0.366667 1.0 0.000496109 0.000460096 -0.170225 + 0.566667 -1.0 -0.000496175 -0.000459357 -5.9938 + 0.633333 -1.0 -0.000496059 -0.000459976 -5.97773 + 0.7 -1.0 -0.000496731 -0.000459353 -6.01184 + 1.0 3.15585e-005 1.0 -8.37727e-005 -0.497556 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.898819 -0.0473257 -0.435758 -0.079701 + 0.0666667 -0.546243 -0.0962601 -0.832077 -0.192543 + 0.2 -0.322429 -0.110247 -0.940152 -0.838455 + 0.233333 -0.309608 -0.110815 -0.944385 -1.01602 + 0.3 -0.304615 -0.111031 -0.945982 -1.10485 + 0.366667 -0.440215 -0.159478 -0.883616 -0.818642 + 0.5 -0.386601 -0.13664 0.912069 -0.974472 + 0.566667 -0.406479 -0.13777 0.903213 -0.779153 + 0.7 -0.441861 -0.139642 0.886149 -0.568579 + 0.866667 -0.741648 -0.146313 0.654637 -0.159851 + 0.933333 -0.994629 -0.103501 0.00124527 -0.0838419 + 1.0 -0.898819 -0.0473257 -0.435758 -0.0797009 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.973996 -0.118527 0.19309 -0.321534 + 0.0666667 -0.961287 -0.0254591 0.27437 -0.233899 + 0.2 0.992103 0.0654921 0.106965 -0.235841 + 0.233333 0.973359 -0.228176 -0.0225221 -0.35379 + 0.3 0.903674 -0.387002 -0.183313 -0.408881 + 0.366667 0.893331 -0.302659 -0.332202 -0.325443 + 0.5 0.104392 -0.975841 0.191931 -0.105677 + 0.566667 -0.109231 -0.498869 0.859767 -0.52679 + 0.7 -0.27242 -0.330822 0.903518 -0.629143 + 0.933333 -0.859699 -0.231533 0.455314 -0.256409 + 1.0 -0.951929 -0.171483 0.253819 -0.237355 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.995759 0.0245904 -0.0886541 -3.37175e-007 + 1.0 0.999077 0.0147862 -0.0403253 -6.9638e-007 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.825474 -0.556557 0.0940055 -1.14282 + 0.0666667 -0.855099 -0.517423 0.0328504 -1.0345 + 0.133333 -0.855972 -0.51633 -0.0267596 -0.871729 + 0.2 -0.862985 -0.501325 -0.0626892 -0.811248 + 0.233333 -0.935298 -0.336066 -0.110807 -0.726045 + 0.3 -0.968348 -0.183035 -0.169704 -0.665281 + 0.366667 -0.98027 -0.190391 -0.0531174 -0.57568 + 0.433333 -0.930215 -0.0874817 -0.356436 -0.544354 + 0.5 -0.931052 -0.323073 -0.169603 -0.705438 + 0.533333 -0.812334 -0.484751 -0.324238 -0.685036 + 0.566667 -0.734882 -0.617544 -0.280335 -0.534647 + 0.633333 0.00989122 -0.904456 -0.426452 -0.392516 + 0.7 -0.192364 -0.721587 -0.665063 -0.44076 + 0.8 -0.370352 -0.626053 -0.686219 -0.660214 + 0.866667 -0.426823 -0.667616 -0.61001 -0.694687 + 0.933333 -0.426993 -0.778501 -0.460014 -0.810716 + 1.0 -0.529183 -0.748194 -0.400213 -0.869214 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.997246 0.0166134 -0.072275 -1.77968 + 0.0666667 -0.999379 -0.000284075 0.0352283 -1.74289 + 0.133333 -0.937718 -0.128316 0.322832 -1.80532 + 0.2 -0.859738 -0.100083 0.500833 -1.94335 + 0.233333 -0.79583 -0.126237 0.592215 -1.96545 + 0.3 -0.760969 -0.151566 0.630835 -1.97084 + 0.366667 -0.75348 -0.125451 0.645392 -1.75109 + 0.433333 -0.806583 -0.128334 0.577021 -1.75402 + 0.5 -0.827717 -0.0451961 0.559322 -1.64306 + 0.533333 -0.986488 0.15289 0.0588664 -1.60258 + 0.566667 -0.908123 0.186297 -0.374975 -2.16373 + 0.633333 -0.905255 0.137206 -0.402105 -2.46535 + 0.7 -0.919313 0.134891 -0.369687 -2.45224 + 0.8 -0.960228 0.083772 -0.266353 -2.30453 + 0.866667 -0.979922 0.0490143 -0.193263 -2.16382 + 0.933333 -0.995541 0.0146425 -0.0931862 -2.28225 + 1.0 -0.998091 0.00207321 -0.0617182 -2.40585 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.235527 -0.344787 0.908652 -4.47782 + 0.0666667 -0.238752 -0.284638 0.928428 -4.40176 + 0.133333 -0.0975983 -0.193009 0.976331 -3.95295 + 0.2 -0.0381935 -0.0657984 0.997102 -3.60858 + 0.233333 -0.0224681 -0.10561 0.994154 -3.45514 + 0.3 -0.0352667 -0.146291 0.988613 -3.41697 + 0.366667 0.186151 -0.146473 0.971542 -3.6591 + 0.433333 -0.18356 0.0109426 -0.982948 -2.40779 + 0.5 -0.266132 -0.210995 -0.940561 -2.64093 + 0.533333 -0.323004 -0.161286 -0.932553 -1.85472 + 0.566667 0.276103 0.113804 0.954367 -5.26617 + 0.633333 0.444234 -0.0185874 0.895718 -5.21714 + 0.7 0.315542 -0.000518519 0.948911 -5.35359 + 0.8 -0.0952709 0.00536192 0.995437 -5.35225 + 0.866667 -0.162267 -0.111504 0.980427 -5.22767 + 0.933333 -0.194629 0.00571427 0.98086 -5.06332 + 1.0 -0.278709 -0.0244301 0.960065 -5.04142 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.995391 0.0659332 -0.069638 -1.48773e-006 + 1.0 0.99978 0.000179408 -0.0209872 -2.34209e-006 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.000129634 1.0 -0.000137607 -6.19593 + 1.0 0.000124146 1.0 -0.000137622 -6.19593 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.3 -0.925528 -0.374542 0.0558185 -0.756076 + 1.0 -0.925528 -0.374542 0.0558188 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.956783 0.290218 -0.018434 -1.08343 + 0.3 0.921719 0.381276 -0.0711479 -0.982129 + 1.0 0.956783 0.290218 -0.018434 -1.08343 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.84647 0.421109 -0.325815 -1.26948 + 0.3 0.853883 0.420931 -0.306106 -1.32895 + 0.633333 0.837327 -0.543524 -0.058869 -1.36964 + 1.0 0.84647 0.421109 -0.325815 -1.26948 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.296108 0.952068 0.0767308 -0.396572 + 0.3 0.504104 0.859424 -0.0852644 -0.446746 + 0.633333 0.443521 0.896264 -0.000148712 -0.521602 + 1.0 0.296108 0.952068 0.0767306 -0.396572 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.0795063 -0.966631 -0.243525 -0.443987 + 0.3 0.470946 -0.845413 -0.251965 -0.472345 + 0.633333 -0.123836 0.913483 0.387574 -5.66335 + 1.0 -0.0795073 -0.966631 -0.243524 -0.443987 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.483675 -0.804141 -0.345567 -0.586816 + 0.3 -0.311683 0.935183 -0.168189 -5.80184 + 0.633333 0.149003 0.973381 -0.174149 -5.94455 + 1.0 -0.483675 -0.804141 -0.345567 -0.586815 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.269966 -0.633251 -0.725335 -0.812253 + 0.3 -0.236121 0.967123 -0.0944499 -5.73241 + 0.633333 0.548148 -0.4183 -0.724265 -6.01006 + 0.833333 -0.654716 -0.48141 -0.582745 -0.423907 + 1.0 -0.269966 -0.633252 -0.725335 -0.812253 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.580826 -0.341198 -0.73907 -0.572813 + 0.3 -0.355509 0.926893 0.120342 -5.57182 + 0.633333 0.604718 -0.529008 -0.595371 -5.99211 + 0.833333 -0.889821 -0.357214 -0.283929 -0.284443 + 1.0 -0.580826 -0.341199 -0.73907 -0.572813 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.186729 0.293766 0.937461 -0.300986 + 0.3 -0.57137 0.173157 -0.802217 -5.86322 + 0.633333 -0.507514 0.179736 0.842689 -0.599887 + 0.833333 -0.391922 0.226239 0.891747 -0.430586 + 1.0 -0.18673 0.293766 0.937461 -0.300986 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.609791 -0.428836 0.666525 -0.428776 + 0.3 -0.612121 0.435204 -0.660231 -5.58552 + 0.633333 -0.667782 0.218923 0.711435 -0.642338 + 0.833333 0.321087 0.254966 0.912083 -0.667668 + 1.0 -0.609791 -0.428835 0.666525 -0.428775 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555651 -0.721912 0.412425 -0.425873 + 0.3 -0.756402 0.430695 -0.492298 -5.59898 + 0.633333 -0.632453 -0.331885 0.699897 -0.345268 + 0.833333 0.617867 0.0540174 0.784425 -0.481427 + 1.0 0.555651 -0.721912 0.412425 -0.425872 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.325713 -0.93563 0.136041 -0.290434 + 0.3 0.596589 -0.635476 0.490155 -0.419727 + 0.633333 -0.843737 -0.536686 0.00873358 -0.368267 + 0.833333 -0.467255 -0.492353 -0.734344 -5.70761 + 1.0 0.325713 -0.93563 0.136038 -0.290434 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim plslashl c_marilithe + + +#NWmax ANIM ASCII +newanim plslashr c_marilithe + length 1.0 + transtime 0.3 + animroot rootdummy + event 0.5 hit + event 0.566667 blur_end + event 0.433333 blur_start + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.00301221 -0.0312602 1.00252 + 0.0666667 -0.00646391 -0.0575602 0.997462 + 0.133333 -0.0301543 -0.12331 0.984823 + 0.2 -0.0538446 -0.18906 0.972183 + 0.266667 -0.0619669 -0.211603 0.967849 + 0.333333 -0.0229126 -0.143595 0.963783 + 0.4 0.0646511 0.0251988 0.954048 + 0.466667 0.13573 0.199497 0.944119 + 0.533333 0.158845 0.295864 0.945445 + 0.6 0.145137 0.310704 0.953741 + 0.666667 0.132531 0.270908 0.956407 + 0.733333 0.106831 0.16979 0.963658 + 0.8 0.0633069 0.0828208 0.97692 + 0.866667 0.0200906 0.00939473 0.990233 + 0.933333 0.00427239 -0.0190049 0.995819 + 1.0 -0.00189454 -0.0312607 0.998121 + endlist + orientationkey + 0.0 0.916261 0.0597125 0.396105 -0.211063 + 0.0666667 0.985223 0.128348 0.113413 -0.172379 + 0.133333 0.306238 0.102376 -0.946434 -0.40564 + 0.2 0.0933319 0.0760266 -0.992728 -0.792637 + 0.266667 0.0552026 0.070985 -0.995949 -0.951762 + 0.333333 0.245242 0.0949928 -0.964797 -0.733125 + 0.4 0.957911 0.14673 -0.246734 -0.484 + 0.466667 0.827283 0.0777112 0.556385 -0.866814 + 0.533333 0.668749 -0.00185937 0.743486 -1.1625 + 0.6 0.538971 -0.0154995 0.842182 -1.33115 + 0.666667 0.459465 0.0296209 0.887702 -1.53585 + 0.733333 0.463751 0.0353834 0.885259 -1.34098 + 0.8 0.53768 0.0215224 0.842874 -0.849251 + 0.866667 0.75393 -0.0256587 0.656453 -0.376581 + 0.933333 0.858336 0.0239214 0.51253 -0.256151 + 1.0 0.916263 0.0597051 0.396103 -0.211064 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.847587 0.100707 -0.521012 -0.208508 + 0.0666667 0.646126 0.105805 -0.755862 -0.228861 + 0.3 -0.0758042 0.0721826 -0.994507 -0.645667 + 0.366667 -0.084728 0.0706793 -0.993894 -0.677963 + 0.4 -0.086056 0.0715735 -0.993716 -0.662831 + 0.433333 -0.0796942 0.0745601 -0.994027 -0.617212 + 0.5 0.0410127 0.0992165 -0.99422 -0.391256 + 0.566667 0.719602 -0.664509 0.201498 -0.219186 + 0.633333 0.23312 -0.565745 0.790941 -0.647462 + 0.7 0.174674 -0.624303 0.761403 -0.764747 + 0.766667 0.213862 -0.626935 0.749143 -0.657304 + 0.933333 0.962181 -0.100558 -0.253173 -0.181703 + 1.0 0.847587 0.100707 -0.521012 -0.208508 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.754142 0.416068 -0.508092 -0.838735 + 0.0666667 -0.903854 0.238157 -0.355428 -0.880356 + 0.1 -0.896911 0.204621 -0.392022 -0.908038 + 0.166667 -0.878372 0.14194 -0.456416 -0.968838 + 0.266667 -0.84358 0.0594252 -0.533705 -1.07124 + 0.3 -0.831047 0.0348937 -0.555106 -1.10781 + 0.333333 -0.830816 0.0251375 -0.55598 -1.10577 + 0.366667 -0.82838 0.0224637 -0.559717 -1.11578 + 0.433333 -0.810412 0.189167 -0.55448 -1.24078 + 0.5 -0.637662 0.439598 -0.632567 -0.825221 + 0.566667 0.117809 0.729423 -0.673842 -0.612239 + 0.6 0.308697 0.745211 -0.591072 -0.740335 + 0.633333 0.434455 0.736987 -0.517783 -0.889235 + 0.666667 -0.46164 -0.728721 0.50582 -5.43227 + 0.733333 0.521749 0.707373 -0.476866 -0.776716 + 0.8 0.590101 0.677366 -0.439268 -0.706633 + 0.866667 0.666687 0.635105 -0.390091 -0.642016 + 0.9 0.707628 0.607951 -0.360081 -0.612304 + 0.933333 0.749763 0.575911 -0.325856 -0.584682 + 1.0 0.893147 0.443933 -0.0721878 -0.487368 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.974224 0.000126155 -0.225584 -0.739313 + 0.0666667 -0.933307 -0.122381 -0.337581 -0.48474 + 0.1 -0.929023 -0.184841 -0.320548 -0.507728 + 0.166667 -0.912239 -0.291629 -0.287702 -0.559066 + 0.266667 0.877223 0.413465 0.243979 -5.63701 + 0.3 0.864735 0.445902 0.231094 -5.60596 + 0.333333 0.867361 0.44157 0.229567 -5.59609 + 0.366667 -0.866405 -0.443898 -0.228685 -0.688156 + 0.433333 -0.899328 -0.41098 -0.149345 -0.653192 + 0.5 -0.986885 0.103578 0.123811 -1.55954 + 0.566667 -0.868639 -0.345323 0.355273 -1.6096 + 0.6 -0.847461 -0.355638 0.394121 -1.59296 + 0.633333 -0.824168 -0.36536 0.432734 -1.57841 + 0.666667 -0.855889 -0.341179 0.388653 -1.56569 + 0.733333 -0.910864 -0.288483 0.295134 -1.55104 + 0.8 -0.952851 -0.231156 0.196578 -1.5511 + 0.866667 -0.980614 -0.170881 0.0958905 -1.56586 + 0.9 -0.989066 -0.140217 0.0456807 -1.57864 + 0.933333 -0.993978 -0.109507 -0.00397096 -1.5949 + 1.0 -0.993754 -0.048773 -0.100372 -1.63749 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -0.600678 -0.486972 -0.634069 -0.733653 + 0.0666667 -0.469829 -0.397085 -0.788406 -0.868046 + 0.1 -0.407788 -0.372882 -0.833467 -0.818988 + 0.166667 -0.252882 -0.307056 -0.917479 -0.737629 + 0.266667 -0.0504281 0.159972 0.985833 -5.61134 + 0.3 -0.160352 0.101225 0.981856 -5.61505 + 0.333333 -0.157136 -0.0736807 0.984825 -5.58867 + 0.366667 -0.150052 -0.230544 0.961423 -5.54428 + 0.433333 0.0300936 0.463911 -0.885371 -0.797643 + 0.5 0.667413 0.420869 -0.614352 -1.16256 + 0.566667 -0.216956 0.885895 -0.410025 -1.51752 + 0.6 -0.280007 0.895499 -0.345945 -1.34562 + 0.633333 -0.354618 0.897257 -0.263014 -1.18357 + 0.666667 -0.350987 0.892168 -0.284331 -1.06802 + 0.733333 -0.340169 0.875999 -0.341923 -0.838701 + 0.8 -0.319106 0.841441 -0.43606 -0.614029 + 0.866667 -0.265689 0.743394 -0.613819 -0.401892 + 0.9 -0.201673 0.614892 -0.762388 -0.308771 + 0.933333 -0.0746884 0.339586 -0.937605 -0.238502 + 1.0 0.217945 -0.630849 -0.744667 -0.352683 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 3.14648e-005 1.0 -8.4123e-005 -0.497556 + 0.0666667 3.20923e-005 1.0 -8.41215e-005 -0.497556 + 0.3 0.000132866 -1.0 -8.07251e-005 -5.32319 + 0.433333 -3.41979e-005 1.0 -3.70546e-005 -0.637218 + 0.566667 5.74322e-005 1.0 8.0083e-005 -0.663198 + 1.0 3.19877e-005 1.0 -8.423e-005 -0.497556 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.898819 -0.0473257 -0.435758 -0.0797009 + 0.0666667 0.0416416 -0.503875 0.862772 -0.0768203 + 0.3 0.540315 -0.288894 0.790316 -0.939625 + 0.366667 0.541847 -0.287945 0.789613 -0.977635 + 0.4 0.542254 -0.289053 0.788929 -0.96993 + 0.433333 0.563502 -0.329333 0.757631 -0.838389 + 0.466667 0.594741 -0.437143 0.674677 -0.484613 + 0.5 0.57522 -0.810229 0.112476 -0.178599 + 0.566667 -0.088146 0.439721 -0.893798 -0.491487 + 1.0 -0.898819 -0.0473255 -0.435758 -0.0797009 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.951929 -0.171483 0.253819 -0.237355 + 0.0666667 -0.950083 -0.072533 0.303448 -0.254902 + 0.3 -0.941821 -0.110985 0.317264 -0.54469 + 0.4 -0.998767 0.0425908 -0.025494 -0.821123 + 0.466667 -0.90629 0.193614 -0.375703 -0.932301 + 0.5 -0.85187 0.269375 -0.449171 -0.808822 + 0.566667 -0.80125 0.250659 -0.543294 -0.840581 + 0.633333 -0.427802 0.142689 -0.892539 -1.51057 + 0.7 -0.297797 0.11255 -0.947971 -1.6388 + 0.733333 -0.302123 0.119903 -0.945698 -1.52937 + 0.866667 -0.717646 0.307462 -0.624861 -0.422525 + 0.933333 -0.995682 0.0403004 0.083623 -0.273235 + 1.0 -0.973996 -0.118527 0.19309 -0.321534 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.529142 -0.748191 -0.400274 -0.869252 + 0.0666667 -0.491792 -0.795011 -0.355103 -0.770309 + 0.1 -0.546104 -0.768616 -0.333167 -0.781478 + 0.166667 -0.0399312 -0.998017 -0.0486471 -0.865764 + 0.266667 0.374228 -0.91124 0.17203 -1.06219 + 0.3 0.33029 -0.925588 0.18492 -1.05073 + 0.333333 0.240672 -0.953547 0.181177 -1.02953 + 0.366667 -0.058361 -0.993885 0.0937404 -0.959173 + 0.433333 -0.551449 -0.77005 -0.320822 -0.779228 + 0.5 -0.92184 -0.381431 0.0687145 -1.37277 + 0.566667 -0.673554 -0.531586 0.513557 -1.51399 + 0.6 -0.657275 -0.445627 0.607788 -1.58722 + 0.633333 -0.543318 -0.52111 0.658217 -2.03688 + 0.666667 0.552591 0.552759 -0.623779 -4.28939 + 0.733333 -0.583952 -0.60209 0.544507 -1.88 + 0.8 -0.690703 -0.570982 0.443744 -1.64642 + 0.866667 -0.780619 -0.533181 0.326117 -1.48589 + 0.9 -0.768696 -0.566581 0.296803 -1.42121 + 0.933333 -0.800136 -0.549014 0.241591 -1.314 + 1.0 -0.824374 -0.55873 0.0907148 -1.14299 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.998091 0.0020732 -0.0617182 -2.40585 + 0.0666667 -0.988173 -0.0759286 -0.133226 -2.111 + 0.1 -0.969607 -0.154677 -0.189573 -2.0745 + 0.166667 -0.900665 -0.310592 -0.303867 -2.00758 + 0.266667 -0.684878 -0.582658 -0.437552 -1.83397 + 0.3 -0.495507 -0.769329 -0.403243 -1.64749 + 0.333333 -0.169553 -0.974754 -0.145279 -1.42963 + 0.366667 0.0516704 -0.997786 0.0418641 -1.43178 + 0.433333 -0.887875 0.0541762 -0.456884 -1.91 + 0.5 -0.922528 0.383402 -0.0440988 -1.00875 + 0.566667 -0.971585 0.236066 -0.0172032 -1.35138 + 0.6 0.965094 -0.202541 0.166047 -5.00141 + 0.633333 0.917503 -0.188064 0.350456 -5.11203 + 0.666667 0.927939 -0.199244 0.31501 -5.02267 + 0.733333 0.939485 -0.217933 0.264335 -4.86592 + 0.8 0.944053 -0.232986 0.233411 -4.74795 + 0.866667 -0.970176 0.151381 -0.18932 -1.58539 + 0.9 -0.980626 0.114496 -0.158942 -1.64748 + 0.933333 -0.988572 0.0824248 -0.126221 -1.70178 + 1.0 -0.997246 0.0166134 -0.072275 -1.77968 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.278709 -0.0244299 0.960065 -5.04142 + 0.0666667 -0.161736 -0.150534 0.975285 -4.99328 + 0.1 -0.239446 -0.232244 0.942724 -4.92503 + 0.166667 -0.0156963 -0.209325 0.97772 -4.66932 + 0.266667 0.110881 -0.260337 0.95913 -4.08024 + 0.3 0.0992633 -0.317219 0.943143 -3.69633 + 0.333333 0.141621 -0.338113 0.930389 -3.09342 + 0.366667 0.110561 -0.440744 0.890798 -2.91726 + 0.433333 0.241602 0.14886 -0.95889 -0.950027 + 0.5 0.0649105 0.1343 -0.988813 -1.36908 + 0.566667 0.257831 -0.193267 0.946663 -4.98798 + 0.6 0.192492 -0.223283 0.955558 -5.11638 + 0.633333 0.344879 -0.121697 0.930725 -4.86259 + 0.666667 0.298453 -0.104883 0.948644 -4.8736 + 0.733333 0.192595 -0.100407 0.976128 -4.88879 + 0.8 -0.0286698 -0.164667 0.985932 -4.96638 + 0.866667 -0.205044 -0.244166 0.947808 -4.80918 + 0.9 -0.197903 -0.248901 0.948094 -4.73015 + 0.933333 -0.238111 -0.277445 0.930767 -4.66434 + 1.0 -0.235527 -0.344787 0.908652 -4.47782 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 -1.19209e-007 + 0.3 -0.94307 0.33053 0.0369841 -6.28319 + 0.4 -0.993934 -0.0213588 0.107888 -6.28318 + 0.433333 0.999014 0.00982961 0.0432827 -6.28318 + 1.0 0.0 0.0 0.0 -2.6656e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.0001303 1.0 -0.000137741 -6.19593 + 1.0 0.00012551 1.0 -0.000137649 -6.19593 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.3 -0.925528 -0.374542 0.0558187 -0.756076 + 1.0 -0.925528 -0.374542 0.0558187 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.956783 0.290218 -0.018434 -1.08343 + 0.3 0.992735 0.116134 -0.0314516 -1.15369 + 1.0 0.956783 0.290218 -0.0184341 -1.08343 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.84647 0.421109 -0.325815 -1.26948 + 0.3 0.903674 -0.329487 0.273516 -1.18827 + 0.633333 0.969221 -0.0846809 -0.231172 -0.991215 + 1.0 0.84647 0.421109 -0.325815 -1.26948 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.296107 0.952068 0.076731 -0.396572 + 0.133333 0.620009 0.764161 -0.177896 -0.376338 + 0.3 0.775225 0.57545 -0.260543 -0.294201 + 0.633333 -0.288926 -0.949231 -0.124427 -5.59204 + 0.833333 0.430311 0.898791 0.0837037 -0.5517 + 1.0 0.296108 0.952068 0.0767306 -0.396572 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.0795067 -0.966631 -0.243524 -0.443987 + 0.133333 0.434746 -0.810961 -0.391583 -0.473699 + 0.3 0.5249 -0.819795 -0.228947 -0.427828 + 0.633333 0.0380187 -0.728902 -0.683561 -5.71987 + 0.833333 0.941153 -0.252674 0.224471 -0.190585 + 1.0 -0.079507 -0.96663 -0.243525 -0.443987 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.483675 -0.80414 -0.345567 -0.586816 + 0.133333 0.194617 -0.0882266 -0.976903 -6.12578 + 0.3 0.0530028 -0.627648 -0.776691 -5.34409 + 0.633333 -0.470638 0.300942 0.829418 -0.381122 + 0.833333 0.752527 0.64934 -0.109825 -5.96538 + 1.0 -0.483675 -0.80414 -0.345567 -0.586816 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.269966 -0.633251 -0.725335 -0.812253 + 0.133333 0.644608 0.68784 0.333702 -5.90874 + 0.3 0.484321 -0.140059 -0.863607 -5.76171 + 0.633333 -0.50126 0.637477 0.585117 -0.492958 + 0.833333 -0.654718 -0.481409 -0.582743 -0.423907 + 1.0 -0.269966 -0.633252 -0.725335 -0.812253 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.580826 -0.341198 -0.73907 -0.572813 + 0.133333 -0.776379 -0.41342 -0.475731 -0.236662 + 0.3 0.0198337 0.0924794 0.995517 -0.275235 + 0.633333 -0.576308 0.660638 0.481067 -0.501942 + 0.833333 -0.889825 -0.357208 -0.283926 -0.284445 + 0.9 -0.58329 -0.599343 -0.548234 -0.328231 + 1.0 -0.580826 -0.341199 -0.73907 -0.572813 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.18673 0.293766 0.937461 -0.300988 + 0.133333 -0.164549 0.236717 0.957543 -0.398234 + 0.3 -0.148005 0.194644 0.969643 -0.521139 + 0.633333 -0.5817 0.287092 0.761054 -0.700596 + 0.833333 -0.391939 0.226241 0.891739 -0.430587 + 0.9 0.25764 -0.0329028 0.96568 -0.490992 + 1.0 -0.18673 0.293766 0.937461 -0.300987 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.60979 -0.428836 0.666525 -0.428776 + 0.133333 -0.430992 -0.423699 0.796696 -0.612057 + 0.3 0.306192 0.409638 -0.859327 -5.42161 + 0.633333 -0.757459 0.247521 0.604143 -0.795393 + 0.833333 0.321068 0.254957 0.912092 -0.667667 + 0.9 0.141687 0.0569291 0.988273 -0.510513 + 1.0 -0.60979 -0.428836 0.666525 -0.428776 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555651 -0.721912 0.412426 -0.425872 + 0.133333 0.313212 -0.829074 0.463178 -0.512762 + 0.3 0.0975683 -0.871948 0.479779 -0.655411 + 0.633333 -0.775175 -0.256988 0.577114 -0.439384 + 0.833333 0.617775 0.0539248 0.784504 -0.481472 + 0.9 0.654551 -0.257803 0.710704 -0.418643 + 1.0 0.555651 -0.721912 0.412426 -0.425873 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.325713 -0.93563 0.136041 -0.290434 + 0.133333 -0.17378 -0.971348 -0.16212 -0.548769 + 0.3 -0.354436 -0.897248 -0.263287 -0.95334 + 0.633333 -0.914875 -0.40371 -0.00468556 -0.531999 + 0.833333 -0.46716 -0.49294 -0.734011 -5.70765 + 0.9 -0.586069 -0.17587 -0.790944 -5.94097 + 1.0 0.325714 -0.93563 0.136041 -0.290434 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim plslashr c_marilithe + + +#NWmax ANIM ASCII +newanim plstab c_marilithe + length 1.0 + transtime 0.4 + animroot rootdummy + event 0.4 snd_footstep + event 0.666667 snd_footstep + event 0.5 hit + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000558796 -0.0312604 1.00032 + 0.0666667 -0.00958774 -0.0595851 0.995295 + 0.133333 -0.0339394 -0.127564 0.983238 + 0.2 -0.0582912 -0.195543 0.971181 + 0.266667 -0.0749147 -0.244007 0.962417 + 0.333333 -0.0811269 -0.226842 0.961785 + 0.4 -0.0863706 -0.0357069 0.964892 + 0.466667 -0.0941766 0.207193 0.969488 + 0.533333 -0.0961546 0.385258 0.971795 + 0.6 -0.0948499 0.423627 0.9718 + 0.666667 -0.0891597 0.318865 0.972093 + 0.733333 -0.0691374 0.091379 0.972983 + 0.8 -0.0476848 0.0427892 0.97804 + 0.866667 -0.0213628 0.00239845 0.989018 + 0.933333 -0.00237207 -0.0267725 1.00011 + 1.0 0.000558796 -0.0312604 1.00032 + endlist + orientationkey + 0.0 0.916262 0.0597088 0.396104 -0.211063 + 0.0666667 0.613365 -0.0084311 0.789755 -0.260587 + 0.133333 0.152393 -0.0749153 0.985477 -0.505782 + 0.2 -0.0111819 -0.0930333 0.9956 -0.793635 + 0.266667 -0.0696933 -0.0989081 0.992653 -0.995927 + 0.333333 -0.0295043 -0.107764 0.993739 -0.965287 + 0.4 0.239685 -0.142387 0.960353 -0.695047 + 0.466667 0.858362 -0.176669 0.481667 -0.501185 + 0.533333 0.988351 -0.145837 0.0435293 -0.561948 + 0.6 0.988351 -0.145837 0.0435293 -0.561948 + 0.666667 0.98457 -0.147861 0.0935865 -0.409523 + 0.733333 0.968065 -0.150942 0.200165 -0.259263 + 0.8 0.963946 -0.0866106 0.251609 -0.249016 + 0.866667 0.952171 -0.0166512 0.305112 -0.240581 + 0.933333 0.926548 0.0455111 0.373414 -0.219584 + 1.0 0.916262 0.0597088 0.396104 -0.211063 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.847587 0.100707 -0.521012 -0.208508 + 0.333333 0.565506 0.13676 0.813326 -0.50181 + 0.5 0.5325 -0.348084 0.771545 -0.666529 + 0.6 0.555256 -0.32469 0.765681 -0.681858 + 0.733333 0.733935 -0.264336 0.625673 -0.493314 + 0.866667 0.963139 -0.185608 -0.194711 -0.144483 + 0.933333 0.888055 0.0391944 -0.458063 -0.186942 + 1.0 0.847587 0.100707 -0.521012 -0.208508 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.671965 0.551239 -0.494569 -0.419778 + 0.133333 -0.489332 0.814082 0.31277 -0.865848 + 0.2 -0.501347 0.685051 0.528542 -1.22491 + 0.333333 -0.3879 0.709865 0.587899 -1.56612 + 0.366667 -0.226995 0.824158 0.51888 -1.48111 + 0.4 0.00229218 0.924913 0.380172 -1.34808 + 0.433333 0.150283 0.954428 0.257841 -1.24317 + 0.466667 -0.311032 0.898638 0.309368 -1.01362 + 0.5 -0.813763 0.473441 -0.337109 -1.97395 + 0.533333 -0.820426 0.520354 -0.236923 -1.91746 + 0.6 -0.814496 0.526707 -0.243262 -1.62827 + 0.666667 -0.691586 0.639916 -0.334987 -1.30685 + 0.733333 0.107383 0.780462 -0.615912 -0.935911 + 0.866667 -0.321925 0.726411 -0.607199 -0.491573 + 0.933333 -0.577197 0.594889 -0.55942 -0.448105 + 1.0 -0.671965 0.551239 -0.494569 -0.419778 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.980566 -0.0825346 -0.177984 -0.857139 + 0.133333 -0.651091 -0.758502 -0.0274947 -0.81987 + 0.2 -0.065795 -0.975101 0.211777 -0.884723 + 0.333333 -0.00548534 0.991681 -0.128604 -4.87612 + 0.366667 0.121565 0.962772 -0.241437 -4.83979 + 0.4 -0.532762 -0.84561 0.0332983 -1.6618 + 0.433333 -0.72606 -0.685373 -0.0556884 -1.98167 + 0.466667 -0.82367 -0.556884 -0.106991 -2.44731 + 0.5 -0.771524 -0.588665 0.241298 -1.89261 + 0.533333 -0.801029 -0.576882 0.159876 -2.07972 + 0.6 -0.824435 -0.560673 0.0771509 -2.29753 + 0.666667 -0.833062 -0.532941 0.148264 -2.09837 + 0.733333 -0.885011 -0.431946 0.173721 -2.05527 + 0.866667 -0.974798 -0.218696 -0.0440532 -1.08958 + 0.933333 -0.982628 -0.128548 -0.133859 -0.919218 + 1.0 -0.980566 -0.0825362 -0.177984 -0.857155 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -0.474388 -0.330872 -0.81577 -0.691183 + 0.133333 0.0519028 -0.358429 -0.932113 -1.14461 + 0.2 0.170374 -0.257798 -0.951059 -1.75596 + 0.333333 0.407682 -0.202131 -0.890471 -2.01341 + 0.366667 0.259281 -0.276081 -0.925501 -1.85625 + 0.4 0.197153 -0.441611 -0.875278 -1.11489 + 0.433333 0.0579518 -0.482099 -0.874198 -0.548947 + 0.466667 0.942852 0.0262888 0.332174 -0.588947 + 0.5 0.710368 0.63642 0.300579 -1.07749 + 0.533333 0.657625 0.645101 0.389069 -1.20745 + 0.6 -0.690729 -0.682413 -0.239178 -5.04192 + 0.666667 0.771998 0.635615 -0.00360005 -0.97763 + 0.733333 0.384452 0.752281 -0.535042 -0.568967 + 0.866667 -0.351399 -0.148626 -0.924353 -0.484912 + 0.933333 -0.442581 -0.28361 -0.850698 -0.611437 + 1.0 -0.474388 -0.330872 -0.815769 -0.691183 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 -1.63234e-007 + 0.333333 0.0 0.0 0.0 0.0 + 0.5 0.978231 0.203411 -0.0410932 -0.89457 + 0.6 0.978231 0.203411 -0.0410932 -0.89457 + 0.666667 0.976746 0.214334 0.00530105 -0.770628 + 0.733333 0.981505 0.188561 -0.0330686 -0.647689 + 0.866667 0.981504 0.188562 -0.033069 -0.141682 + 0.933333 0.981504 0.188563 -0.0330646 -0.0404804 + 1.0 0.0 0.0 0.0 -1.3328e-007 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.898819 -0.0473254 -0.435758 -0.0797009 + 0.333333 -0.1415 0.157213 -0.977375 -1.26705 + 0.5 -0.741297 0.286878 -0.606779 -0.766553 + 0.6 -0.583441 0.412408 -0.699655 -0.649931 + 0.733333 -0.239385 0.575402 -0.782053 -0.318999 + 0.866667 -0.75741 0.2224 -0.613896 -0.150596 + 0.933333 -0.848236 0.0754567 -0.524216 -0.0996158 + 1.0 -0.898819 -0.0473257 -0.435758 -0.0797009 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.973996 -0.118527 0.19309 -0.321534 + 0.0666667 -0.945394 -0.133941 0.297137 -0.279151 + 0.233333 -0.317167 0.0798489 -0.945002 -0.209009 + 0.333333 -0.735965 0.140684 -0.662241 -0.0987351 + 0.5 -0.890552 0.0566002 -0.451347 -0.423072 + 0.533333 -0.96678 0.0168422 -0.255053 -0.353882 + 0.566667 -0.970644 0.00926921 -0.240342 -0.316484 + 0.6 -0.942351 0.0156187 -0.334262 -0.288954 + 0.733333 -0.969443 0.210247 -0.126395 -0.0697479 + 0.866667 -0.976067 -0.102652 0.191717 -0.246322 + 0.933333 -0.974505 -0.114801 0.192772 -0.300038 + 1.0 -0.973996 -0.118527 0.19309 -0.321534 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.704854 -0.542376 -0.457175 -0.756642 + 0.133333 -0.90641 -0.422398 0.00115268 -0.484578 + 0.2 -0.801506 -0.384575 0.457919 -0.432321 + 0.333333 -0.698134 -0.021276 0.715651 -0.0923693 + 0.366667 -0.776818 0.168456 0.606776 -0.172881 + 0.4 -0.686649 -0.197093 0.699763 -0.288428 + 0.433333 -0.634941 -0.560184 0.532019 -0.605874 + 0.466667 -0.774804 -0.624367 0.0992147 -1.12678 + 0.5 -0.840501 -0.529844 -0.113245 -1.95278 + 0.533333 -0.866594 -0.494927 -0.0637382 -1.97825 + 0.6 -0.856658 -0.513654 -0.047922 -1.79049 + 0.666667 -0.799379 -0.582045 0.149053 -1.68394 + 0.733333 -0.536054 -0.658782 0.527876 -1.42215 + 0.866667 -0.621633 -0.746553 0.23713 -0.681294 + 0.933333 -0.636673 -0.757284 -0.145495 -0.617967 + 1.0 -0.70342 -0.542589 -0.459127 -0.757884 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.99782 0.00953716 -0.0653001 -2.12317 + 0.133333 -0.99594 -0.0199151 -0.087794 -1.38913 + 0.2 -0.995232 -0.0275103 -0.0935784 -1.26396 + 0.333333 -0.996513 -0.0128868 -0.082435 -1.52461 + 0.366667 -0.996662 -0.0108899 -0.0809119 -1.56703 + 0.4 -0.997191 -0.00294667 -0.0748468 -1.75532 + 0.433333 -0.997643 0.00547824 -0.0684061 -1.99324 + 0.466667 -0.997535 0.00327083 -0.0700951 -1.92683 + 0.5 -0.983345 -0.102329 -0.150203 -0.6452 + 0.533333 -0.990499 -0.0643461 -0.121538 -0.864672 + 0.6 -0.995341 -0.0263997 -0.0927332 -1.28104 + 0.666667 -0.990467 -0.0645499 -0.121692 -0.86312 + 0.733333 -0.994848 -0.0312699 -0.0964393 -1.20899 + 0.866667 -0.997253 -0.001892 -0.0740407 -1.78285 + 0.933333 -0.997672 0.00612019 -0.0679154 -2.01311 + 1.0 -0.99782 0.00953722 -0.0653001 -2.12317 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.371359 -0.292318 0.881273 -4.89516 + 0.133333 -0.0779486 0.318238 -0.944801 -1.41528 + 0.2 -0.219501 0.230123 -0.948084 -1.51934 + 0.333333 -0.149408 0.193047 -0.969747 -1.53301 + 0.366667 -0.108157 0.249212 -0.962391 -1.46245 + 0.4 0.029199 0.11075 -0.993419 -1.42088 + 0.433333 0.180033 -0.0862834 -0.979869 -1.5025 + 0.466667 -0.336791 0.0825924 0.93795 -4.34459 + 0.5 0.290959 0.435486 -0.851877 -2.27415 + 0.533333 0.362613 0.335389 -0.869498 -2.24303 + 0.6 -0.380688 -0.207609 0.901097 -4.08413 + 0.666667 0.137297 0.380033 -0.914726 -2.15653 + 0.733333 -0.0491809 0.196394 -0.979291 -1.9691 + 0.866667 0.0421051 0.281182 -0.95873 -1.21754 + 0.933333 0.18644 0.280126 -0.941684 -1.21372 + 1.0 -0.371359 -0.292318 0.881273 -4.89517 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.990148 0.0926059 -0.105026 -1.94607e-006 + 1.0 0.999045 0.043174 -0.00675476 -3.45013e-006 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.000130539 1.0 -0.000137018 -6.19593 + 1.0 0.000125716 1.0 -0.000136909 -6.19593 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.3 -0.925528 -0.374542 0.0558187 -0.756076 + 1.0 -0.925528 -0.374542 0.0558187 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.956783 0.290218 -0.018434 -1.08343 + 0.3 0.863908 0.498837 -0.0694585 -1.1759 + 1.0 0.956783 0.290218 -0.018434 -1.08343 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.84647 0.421109 -0.325815 -1.26948 + 0.3 0.851448 0.41822 -0.316432 -1.31485 + 0.633333 0.879053 -0.0829893 -0.469444 -0.929626 + 0.833333 0.907006 0.203321 -0.368782 -1.19907 + 1.0 0.84647 0.421109 -0.325815 -1.26948 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.296107 0.952068 0.0767308 -0.396572 + 0.3 0.271054 0.952078 -0.141696 -0.400509 + 0.633333 0.414384 0.910041 -0.0104903 -0.521305 + 0.833333 0.423873 0.905638 -0.0123234 -0.460141 + 1.0 0.296107 0.952068 0.0767311 -0.396572 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.0795061 -0.96663 -0.243525 -0.443987 + 0.3 0.151525 -0.925717 -0.346538 -0.4188 + 0.633333 0.283204 -0.867861 -0.408182 -0.704401 + 0.833333 0.0296971 -0.945818 -0.323336 -0.519863 + 1.0 -0.0795067 -0.96663 -0.243525 -0.443987 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.483675 -0.804141 -0.345567 -0.586815 + 0.3 0.311682 -0.935183 0.168188 -0.481342 + 0.633333 -0.301811 0.939918 -0.159577 -5.84714 + 0.833333 -0.392405 -0.901168 -0.184161 -0.452818 + 1.0 -0.483675 -0.804141 -0.345567 -0.586815 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.269966 -0.633252 -0.725335 -0.812253 + 0.3 -0.236121 0.967122 -0.0944516 -5.73241 + 0.633333 0.548146 -0.4183 -0.724266 -6.01006 + 0.833333 -0.654716 -0.48141 -0.582745 -0.423907 + 1.0 -0.269966 -0.633252 -0.725335 -0.812253 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.580826 -0.341199 -0.73907 -0.572812 + 0.3 -0.355507 0.926895 0.120338 -5.57182 + 0.633333 0.604713 -0.52901 -0.595374 -5.99211 + 0.833333 -0.88982 -0.357218 -0.283928 -0.284444 + 1.0 -0.580826 -0.341198 -0.73907 -0.572813 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.18673 0.293765 0.937461 -0.300988 + 0.3 -0.571374 0.173147 -0.802217 -5.86321 + 0.633333 0.507491 -0.179774 -0.842695 -5.68327 + 0.833333 -0.39192 0.22623 0.89175 -0.430586 + 1.0 -0.186731 0.293766 0.937461 -0.300987 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.60979 -0.428835 0.666526 -0.428776 + 0.3 -0.612113 0.43529 -0.660181 -5.58542 + 0.633333 -0.667778 0.218922 0.711439 -0.64232 + 0.833333 0.321103 0.25495 0.912082 -0.667677 + 1.0 -0.609791 -0.428834 0.666526 -0.428776 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555651 -0.721912 0.412425 -0.425873 + 0.3 -0.75643 0.430814 -0.492152 -5.59883 + 0.633333 -0.632372 -0.331953 0.699938 -0.345327 + 0.833333 0.617905 0.0540364 0.784393 -0.481476 + 1.0 0.555651 -0.721912 0.412425 -0.425872 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.325714 -0.93563 0.136042 -0.290434 + 0.3 0.596947 -0.635343 0.489892 -0.419703 + 0.633333 -0.843748 -0.536657 0.0094362 -0.368374 + 0.833333 -0.467225 -0.49241 -0.734325 -5.70758 + 1.0 0.325713 -0.93563 0.13604 -0.290434 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim plstab c_marilithe + + +#NWmax ANIM ASCII +newanim plcloseh c_marilithe + length 1.0 + transtime 0.4 + animroot c_marilithe + event 0.366667 snd_footstep + event 0.5 hit + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000558796 -0.0312604 1.00032 + 0.0666667 0.000164791 -0.0962617 1.00427 + 0.133333 0.00778812 -0.252265 1.01375 + 0.166667 0.0179273 -0.330266 1.01848 + 0.233333 0.0547888 -0.486269 1.02796 + 0.3 0.0842761 -0.528795 1.03142 + 0.366667 0.044836 -0.438901 1.02981 + 0.433333 0.0120576 -0.274838 1.02714 + 0.466667 0.00422026 -0.190992 1.02581 + 0.533333 0.000483795 -0.0233075 1.01869 + 0.6 0.000652569 0.0200917 1.03126 + 0.666667 0.000164717 -0.0608391 1.03607 + 0.733333 -6.96368e-005 -0.109936 1.02913 + 0.8 5.40705e-007 -0.113009 1.01517 + 0.866667 0.000193963 -0.092583 1.0028 + 0.933333 0.000402461 -0.0592706 0.999781 + 1.0 0.000558796 -0.0312604 1.00032 + endlist + orientationkey + 0.0 0.916262 0.0597088 0.396104 -0.211063 + 0.0666667 0.837232 0.0852799 0.540157 -0.166304 + 0.233333 -0.822949 0.103976 0.55852 -0.225793 + 0.3 -0.867777 0.0922918 0.488308 -0.268776 + 0.366667 -0.490658 0.195081 0.849234 -0.152559 + 0.433333 0.932337 0.126336 0.338803 -0.366486 + 0.466667 0.972491 0.0958605 0.212302 -0.565512 + 0.533333 0.984186 0.0773834 0.159343 -0.718449 + 0.6 0.980095 0.0745744 0.183988 -0.608498 + 0.666667 0.972552 0.0763449 0.219803 -0.490716 + 0.733333 0.964272 0.0765431 0.253615 -0.40731 + 0.8 0.95855 0.0741582 0.275105 -0.35774 + 0.866667 0.950283 0.0709612 0.303194 -0.308401 + 0.933333 0.937565 0.0664631 0.341401 -0.259425 + 1.0 0.916262 0.0597088 0.396104 -0.211063 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.847587 0.100707 -0.521012 -0.208508 + 0.3 -0.960006 -0.0246655 -0.27889 -0.397088 + 0.5 0.928758 0.0886177 -0.359938 -0.2989 + 0.733333 -0.401579 0.0716339 -0.913018 -0.12062 + 0.833333 -0.420407 0.0697588 -0.90465 -0.121736 + 1.0 0.847587 0.100707 -0.521012 -0.208508 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.671965 0.551239 -0.494569 -0.419778 + 0.1 -0.381785 0.737833 -0.556635 -0.325932 + 0.2 0.108702 0.84225 -0.528014 -0.29 + 0.3 0.55489 0.754373 -0.35074 -0.342797 + 0.333333 0.423783 0.888955 -0.173688 -0.41239 + 0.4 -0.473992 0.840619 0.262091 -0.430323 + 0.466667 -0.92658 0.23211 0.295931 -1.04945 + 0.5 -0.943592 0.329853 0.0288192 -1.96215 + 0.533333 -0.961287 0.255758 0.102546 -1.72459 + 0.566667 -0.962933 0.261814 0.0649157 -1.54171 + 0.6 -0.957256 0.288956 0.0128196 -1.34401 + 0.666667 -0.934802 0.309592 -0.174063 -1.09005 + 0.733333 -0.612477 0.588757 -0.527482 -0.392783 + 0.833333 -0.483929 0.665349 -0.568439 -0.336658 + 1.0 -0.671965 0.551239 -0.494569 -0.419778 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.980566 -0.0825362 -0.177984 -0.857155 + 0.1 -0.994756 -0.0271747 -0.0986051 -1.16372 + 0.2 -0.998771 0.00742711 -0.0490095 -1.48111 + 0.3 -0.999396 0.0316942 -0.0142535 -1.79479 + 0.333333 -0.99973 0.00804363 -0.0217928 -1.92276 + 0.4 -0.998096 -0.0341196 -0.0513857 -1.9297 + 0.466667 -0.992652 -0.0691054 -0.0993282 -1.76805 + 0.5 -0.918532 -0.35123 -0.181482 -0.57088 + 0.533333 -0.983848 -0.12141 -0.131538 -1.03741 + 0.566667 -0.989543 -0.0739033 -0.123868 -1.01882 + 0.6 -0.994106 -0.0107551 -0.107874 -0.994472 + 0.666667 -0.983215 0.153296 -0.0989385 -0.644966 + 0.733333 -0.993843 0.0987386 -0.0502724 -1.26172 + 0.833333 -0.996108 0.0441446 -0.0762849 -1.21525 + 1.0 -0.980546 -0.0825753 -0.178076 -0.857147 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -0.474388 -0.330872 -0.815769 -0.691183 + 0.1 -0.402596 0.0586761 -0.913495 -0.836157 + 0.2 -0.317908 0.312887 -0.895006 -1.06656 + 0.3 0.250137 -0.46705 0.848113 -4.94434 + 0.333333 0.196524 -0.460882 0.865428 -5.00791 + 0.4 -0.162686 0.281486 -0.945674 -1.15197 + 0.466667 0.0456369 -0.113833 -0.992451 -1.1235 + 0.5 -0.191595 0.224726 -0.9554 -1.01858 + 0.533333 0.113691 0.0151492 -0.993401 -1.07596 + 0.566667 0.198823 0.0646251 -0.977902 -1.06662 + 0.6 0.167858 0.14758 -0.974702 -1.01712 + 0.666667 -0.124813 0.40703 -0.904847 -0.902256 + 0.733333 -0.0667119 0.0610297 -0.995904 -0.759593 + 0.833333 -0.20358 -0.107759 -0.97311 -0.701949 + 1.0 -0.474388 -0.330872 -0.815769 -0.691183 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 -2.02129e-007 + 1.0 0.0 0.0 0.0 -1.68587e-007 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.898819 -0.0473257 -0.435758 -0.0797009 + 0.3 0.999247 0.014887 -0.0358255 -0.932524 + 0.5 0.995579 0.0106252 -0.0933283 -0.373783 + 0.733333 0.960996 -0.00327028 -0.276544 -0.126338 + 1.0 -0.898819 -0.0473257 -0.435758 -0.079701 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.973996 -0.118527 0.19309 -0.321534 + 0.3 -0.989155 -0.146725 0.00660798 -0.335825 + 0.5 -0.999302 -0.0222717 0.029981 -1.38094 + 0.6 -0.996576 -0.0633574 0.0531206 -0.672155 + 0.733333 -0.992261 -0.0869295 0.0886667 -0.491639 + 1.0 -0.973996 -0.118527 0.19309 -0.321534 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.703372 -0.542596 -0.459192 -0.757925 + 0.1 -0.164643 -0.428856 -0.888243 -0.751529 + 0.2 0.0213305 -0.33552 -0.941792 -0.843482 + 0.3 -0.0457647 -0.434259 -0.899625 -0.743446 + 0.333333 0.0160964 -0.413153 -0.910519 -0.748457 + 0.4 -0.0774668 -0.469884 -0.879322 -0.749032 + 0.466667 -0.624936 -0.574982 -0.528063 -0.980293 + 0.5 -0.7604 -0.637706 -0.122975 -1.65854 + 0.533333 -0.800361 -0.584658 -0.132655 -1.74043 + 0.566667 -0.756753 -0.653616 0.0105351 -1.86252 + 0.6 -0.747917 -0.659991 0.0709353 -1.80546 + 0.666667 -0.615168 -0.740303 0.271145 -1.65318 + 0.7 -0.763311 -0.602721 -0.23256 -1.0602 + 0.733333 -0.50905 -0.71511 -0.479047 -0.825847 + 0.833333 -0.427795 -0.70494 -0.56573 -0.779054 + 1.0 -0.701925 -0.54281 -0.461148 -0.759153 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.99782 0.00953714 -0.0653001 -2.12317 + 0.1 -0.997887 0.0112394 -0.063997 -2.18069 + 0.2 -0.997568 0.00393981 -0.0695828 -1.94664 + 0.3 -0.997099 -0.00443301 -0.0759817 -1.71758 + 0.333333 -0.997429 0.00124232 -0.0716455 -1.8684 + 0.4 -0.997614 0.00488007 -0.0688637 -1.97495 + 0.466667 -0.997416 0.000999565 -0.0718308 -1.86157 + 0.5 -0.99333 -0.0443948 -0.106414 -1.04657 + 0.533333 -0.992129 -0.0534145 -0.113257 -0.956326 + 0.566667 -0.967124 -0.162722 -0.195428 -0.457131 + 0.6 -0.930395 -0.254806 -0.263512 -0.315695 + 0.666667 -0.734954 -0.510812 -0.445997 -0.170147 + 0.7 -0.994708 -0.032587 -0.0974412 -1.19071 + 0.733333 -0.997282 -0.00140373 -0.073669 -1.79581 + 0.833333 -0.997757 0.00801476 -0.0664655 -2.07324 + 1.0 -0.99782 0.00953716 -0.0653001 -2.12317 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.371359 -0.292318 0.881273 -4.89517 + 0.1 -0.0122823 -0.470436 0.882349 -4.68567 + 0.2 0.213407 -0.565303 0.7968 -4.31834 + 0.3 0.313578 -0.570166 0.759328 -4.07304 + 0.333333 0.287258 -0.507733 0.812213 -4.12796 + 0.4 -0.262764 0.374873 -0.889059 -2.043 + 0.466667 -0.121819 0.0949179 -0.988003 -1.99006 + 0.5 -0.1704 0.0125618 -0.985295 -2.27039 + 0.533333 -0.0810119 0.0967715 -0.992004 -2.23482 + 0.566667 -0.106026 0.23752 -0.965579 -2.40657 + 0.6 -0.123267 0.291476 -0.948603 -2.38981 + 0.666667 -0.213096 0.308506 -0.927046 -2.51958 + 0.7 0.111384 0.156025 -0.981453 -1.72126 + 0.733333 0.263727 0.00971926 -0.964548 -1.67176 + 0.833333 -0.277745 -0.0566701 0.958982 -4.7356 + 1.0 -0.371359 -0.292318 0.881273 -4.89517 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.999637 0.0112979 -0.0244447 -3.47833e-006 + 1.0 0.0 0.0 0.0 -1.46001e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.000131178 1.0 -0.000136094 -6.19593 + 1.0 0.000126277 1.0 -0.000136494 -6.19593 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.3 -0.906768 -0.41359 0.0819413 -0.602197 + 1.0 -0.925528 -0.374542 0.0558187 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.956783 0.290218 -0.0184339 -1.08343 + 0.3 0.811691 0.580094 -0.0681812 -0.908836 + 0.533333 0.821025 0.564467 -0.0854032 -0.606875 + 1.0 0.956783 0.290218 -0.018434 -1.08343 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.84647 0.421109 -0.325815 -1.26948 + 0.3 0.849627 0.422798 -0.31524 -1.28519 + 0.4 0.914043 0.220934 -0.340167 -1.39035 + 0.533333 0.901415 -0.0740689 -0.426574 -1.0202 + 0.833333 0.907006 0.203321 -0.368782 -1.19907 + 1.0 0.84647 0.421109 -0.325815 -1.26948 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.296107 0.952068 0.0767306 -0.396572 + 0.3 0.48148 0.812728 -0.328101 -0.536437 + 0.4 0.320928 0.943039 -0.0876521 -0.4631 + 0.533333 0.536799 0.842331 -0.0482234 -0.544307 + 0.833333 0.423873 0.905638 -0.0123232 -0.460141 + 1.0 0.296107 0.952068 0.0767307 -0.396572 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.0795075 -0.96663 -0.243525 -0.443987 + 0.3 0.102982 -0.944582 -0.311704 -0.41786 + 0.4 -0.115387 -0.970084 -0.213594 -0.511634 + 0.533333 0.283204 -0.867861 -0.408182 -0.7044 + 0.833333 0.170815 -0.910422 -0.376767 -0.55207 + 1.0 -0.0795059 -0.966631 -0.243525 -0.443987 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.483675 -0.804141 -0.345567 -0.586815 + 0.3 0.311683 -0.935182 0.168189 -0.481342 + 0.4 0.0416583 -0.983333 0.176976 -0.442789 + 0.533333 -0.301811 0.939918 -0.159577 -5.84714 + 0.833333 -0.364401 -0.912657 -0.185116 -0.450979 + 1.0 -0.483675 -0.80414 -0.345567 -0.586815 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.269966 -0.633251 -0.725335 -0.812253 + 0.3 0.236121 -0.967123 0.0944489 -0.550778 + 0.533333 0.548145 -0.4183 -0.724267 -6.01006 + 0.833333 -0.654717 -0.48141 -0.582744 -0.423906 + 1.0 -0.269966 -0.633252 -0.725335 -0.812253 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.580825 -0.341199 -0.73907 -0.572812 + 0.3 0.355507 -0.926893 -0.120348 -0.711363 + 0.533333 0.604713 -0.529009 -0.595375 -5.99211 + 0.833333 -0.88982 -0.357219 -0.283926 -0.284443 + 1.0 -0.580826 -0.341199 -0.73907 -0.572813 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.186729 0.293765 0.937462 -0.300987 + 0.3 -0.57139 0.17318 -0.802198 -5.86321 + 0.533333 0.50749 -0.179771 -0.842696 -5.68327 + 0.833333 -0.391917 0.22623 0.891752 -0.430587 + 1.0 -0.186731 0.293765 0.937461 -0.300986 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.60979 -0.428836 0.666526 -0.428775 + 0.3 -0.612143 0.435227 -0.660195 -5.58544 + 0.533333 -0.66779 0.218915 0.71143 -0.642321 + 0.833333 0.321103 0.254952 0.912081 -0.667678 + 1.0 -0.609791 -0.428835 0.666525 -0.428776 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555651 -0.721912 0.412425 -0.425873 + 0.3 -0.756323 0.430818 -0.492313 -5.59875 + 0.533333 -0.632377 -0.332019 0.699902 -0.345347 + 0.833333 0.617909 0.0540482 0.784389 -0.481478 + 1.0 0.555651 -0.721912 0.412425 -0.425873 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.325714 -0.93563 0.13604 -0.290434 + 0.3 -0.597189 0.635089 -0.489927 -5.86408 + 0.533333 -0.843715 -0.536708 0.00945608 -0.368401 + 0.833333 -0.467226 -0.492453 -0.734295 -5.7076 + 1.0 0.325713 -0.93563 0.136039 -0.290434 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim plcloseh c_marilithe + + +#NWmax ANIM ASCII +newanim plclosel c_marilithe + length 1.0 + transtime 0.4 + animroot c_marilithe + event 0.5 hit + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000558796 -0.0312604 1.00032 + 0.0666667 -0.000585298 -0.0455595 1.02532 + 0.133333 0.000841968 -0.0883136 1.08242 + 0.2 0.00724706 -0.135193 1.11531 + 0.266667 0.00988406 -0.167107 1.12558 + 0.333333 0.000698325 -0.155946 1.11244 + 0.4 -0.0173032 -0.0860521 1.04531 + 0.466667 -0.0253418 -0.026811 0.964022 + 0.533333 -0.0270197 0.00661759 0.899026 + 0.6 -0.0257917 0.0146076 0.880362 + 0.666667 -0.0242725 0.029369 0.900955 + 0.733333 -0.023015 0.0340948 0.980801 + 0.8 -0.0172264 0.0159916 1.00771 + 0.866667 -0.0112158 -0.00579253 1.01059 + 0.933333 -0.00524609 -0.0216966 1.00205 + 1.0 0.000558796 -0.0312604 1.00032 + endlist + orientationkey + 0.0 0.916262 0.0597088 0.396104 -0.211063 + 0.0666667 0.901427 0.174498 -0.396207 -0.137819 + 0.133333 0.268563 0.174145 -0.94739 -0.20327 + 0.2 -0.0465358 0.139691 -0.989101 -0.333948 + 0.266667 -0.179818 0.12063 -0.976276 -0.479167 + 0.333333 -0.057471 0.12212 -0.99085 -0.419678 + 0.4 0.6942 0.110214 -0.711294 -0.242959 + 0.466667 0.980101 0.00524032 0.198432 -0.365664 + 0.533333 0.91724 -0.0191871 0.397873 -0.474082 + 0.6 0.935576 -0.0229195 0.35238 -0.49305 + 0.666667 0.934351 -0.0163452 0.35598 -0.445907 + 0.733333 0.932766 -0.00824415 0.360388 -0.398795 + 0.8 0.930647 0.00199491 0.365914 -0.351726 + 0.866667 0.927685 0.0153577 0.373048 -0.304719 + 0.933333 0.923299 0.0335389 0.382616 -0.25781 + 1.0 0.916262 0.0597088 0.396104 -0.211063 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.847587 0.100707 -0.521012 -0.208508 + 0.0666667 0.631561 0.192567 -0.751032 -0.198269 + 0.233333 -0.410519 0.310675 -0.857295 -0.452782 + 0.3 -0.457176 0.307094 -0.834676 -0.506448 + 0.366667 -0.0889484 0.346393 -0.933863 -0.370072 + 0.466667 0.999685 0.0143065 -0.020638 -0.751845 + 0.6 0.995963 0.022506 -0.0868959 -0.461538 + 0.766667 0.262671 0.0494841 -0.963616 -0.0726652 + 0.933333 0.827113 0.0992948 -0.553195 -0.186437 + 1.0 0.847587 0.100707 -0.521013 -0.208508 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.671965 0.551239 -0.494569 -0.419778 + 0.0666667 -0.749844 0.476261 -0.45925 -0.470863 + 0.133333 -0.805195 0.41181 -0.426701 -0.526665 + 0.2 -0.845045 0.357256 -0.397829 -0.585838 + 0.3 -0.885947 0.290852 -0.361251 -0.678977 + 0.4 -0.971144 0.0327738 -0.236233 -1.13574 + 0.466667 -0.956441 0.000160188 -0.291927 -1.81714 + 0.5 -0.927756 0.0477447 -0.37012 -1.93961 + 0.533333 -0.896393 0.044865 -0.440985 -1.63032 + 0.566667 -0.889243 0.0575533 -0.453801 -1.5868 + 0.6 -0.877317 0.0712791 -0.474588 -1.57392 + 0.633333 -0.881758 0.0603125 -0.467831 -1.48992 + 0.666667 -0.884193 0.0622692 -0.462953 -1.37539 + 0.7 -0.89018 0.0631821 -0.451206 -1.29921 + 0.733333 -0.887865 0.075737 -0.453828 -1.20692 + 0.766667 -0.877532 0.113207 -0.465964 -1.13788 + 0.8 -0.850977 0.178586 -0.493908 -0.935758 + 0.833333 -0.773575 0.283493 -0.566757 -0.711577 + 0.933333 -0.707563 0.477052 -0.521321 -0.4736 + 1.0 -0.671965 0.551239 -0.494569 -0.419778 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.980546 -0.0825753 -0.178076 -0.857147 + 0.0666667 -0.988544 -0.0825937 -0.126329 -1.14197 + 0.133333 -0.992215 -0.0824746 -0.0933165 -1.42837 + 0.2 -0.994168 -0.0823226 -0.069669 -1.71555 + 0.3 -0.995683 -0.0820867 -0.0433163 -2.14708 + 0.4 -0.99078 -0.0625023 -0.120199 -1.29124 + 0.466667 -0.818236 -0.175831 -0.547332 -0.284953 + 0.5 0.467255 -0.428208 -0.773506 -0.182845 + 0.533333 -0.975114 -0.0311885 -0.2195 -0.753897 + 0.566667 -0.968103 -0.0563213 -0.244142 -0.66351 + 0.6 -0.948941 -0.104775 -0.297545 -0.52329 + 0.633333 -0.95482 -0.119785 -0.271974 -0.556182 + 0.666667 -0.975773 -0.085577 -0.201355 -0.764184 + 0.7 -0.980213 -0.0864859 -0.178055 -0.849464 + 0.733333 -0.985161 -0.0784392 -0.152662 -0.990416 + 0.766667 -0.987475 -0.0783781 -0.136934 -1.08655 + 0.8 -0.99233 -0.076777 -0.0968801 -1.44157 + 0.833333 -0.994132 -0.0822648 -0.0702411 -1.70983 + 0.933333 -0.986145 -0.0824327 -0.143956 -1.02721 + 1.0 -0.980581 -0.0825064 -0.177914 -0.857155 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -0.474388 -0.330872 -0.81577 -0.691183 + 0.0666667 -0.211321 -0.263876 -0.941123 -0.566727 + 0.133333 0.171141 -0.136702 -0.975717 -0.511144 + 0.2 -0.53817 -0.0188675 0.842625 -5.73728 + 0.3 -0.822742 -0.179858 0.53921 -5.55221 + 0.4 0.705914 -0.158668 0.690297 -5.95883 + 0.466667 -0.958333 0.1538 -0.240713 -0.722003 + 0.5 -0.968332 0.249316 -0.0131861 -0.954594 + 0.533333 -0.853621 0.482528 -0.196209 -0.436601 + 0.566667 -0.903448 0.420111 -0.0853669 -0.496104 + 0.6 -0.949593 0.313486 -0.000675548 -0.585372 + 0.633333 -0.952755 0.30374 -0.000401066 -0.532993 + 0.666667 -0.847776 -0.527152 -0.0582043 -0.365412 + 0.7 -0.763902 -0.645207 -0.0127178 -0.276038 + 0.733333 -0.473168 -0.879738 0.046618 -0.172591 + 0.766667 -0.112003 -0.972812 -0.202712 -0.0878327 + 0.8 0.42295 -0.4686 -0.775582 -0.274227 + 0.833333 0.40734 -0.11896 -0.905496 -0.507735 + 0.933333 -0.355454 -0.315834 -0.879716 -0.619629 + 1.0 -0.474388 -0.330872 -0.81577 -0.691183 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 -2.06477e-007 + 0.933333 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 -1.63234e-007 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.898819 -0.0473257 -0.435758 -0.079701 + 0.3 0.460203 -0.244835 0.853387 -0.851235 + 0.466667 -0.752234 0.53801 0.380381 -0.136786 + 0.933333 -0.928951 0.0134239 -0.369959 -0.0792245 + 1.0 -0.898819 -0.0473257 -0.435758 -0.0797009 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.973996 -0.118527 0.19309 -0.321534 + 0.3 -0.168819 -0.214326 0.962063 -0.230654 + 0.466667 0.918825 -0.00667669 -0.394609 -0.315975 + 0.6 -0.517838 -0.207334 -0.829974 -0.0885085 + 0.7 0.990939 -0.0471239 -0.125771 -0.324432 + 0.8 0.998387 -0.0549898 -0.0141269 -0.432866 + 0.933333 -0.975719 -0.127157 0.178334 -0.282327 + 1.0 -0.973996 -0.118527 0.19309 -0.321534 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.701878 -0.542817 -0.461213 -0.759195 + 0.0666667 -0.710959 -0.577877 -0.400743 -1.11717 + 0.133333 -0.704468 -0.623262 -0.339514 -1.52058 + 0.2 -0.685887 -0.66488 -0.295793 -1.97259 + 0.3 -0.636057 -0.728807 -0.25352 -2.6989 + 0.4 -0.596619 -0.763578 -0.246971 -2.84459 + 0.466667 -0.608317 -0.743382 -0.278089 -2.57956 + 0.5 -0.58011 -0.7624 -0.286738 -2.52641 + 0.533333 -0.616698 -0.712787 -0.334093 -2.67526 + 0.566667 -0.609144 -0.734931 -0.298026 -2.57144 + 0.6 -0.609946 -0.748126 -0.261292 -2.45077 + 0.633333 -0.648181 -0.735005 -0.19907 -2.3943 + 0.666667 -0.700854 -0.698476 -0.144691 -2.43242 + 0.7 -0.730393 -0.675569 -0.10066 -2.41333 + 0.733333 -0.758118 -0.647717 -0.0756289 -2.40357 + 0.766667 -0.745534 -0.658948 -0.0998319 -2.35276 + 0.8 -0.714108 -0.656341 -0.243449 -2.37721 + 0.833333 -0.689192 -0.5961 -0.41192 -2.27477 + 0.933333 -0.678246 -0.569535 -0.464341 -0.992979 + 1.0 -0.700427 -0.543022 -0.463172 -0.760455 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.99782 0.00953713 -0.0653001 -2.12317 + 0.0666667 -0.997729 0.00738705 -0.0669456 -2.05307 + 0.133333 -0.997599 0.00456227 -0.0691066 -1.96532 + 0.2 0.99734 0.000390619 0.0728935 -4.46006 + 0.3 0.996302 0.015584 0.0844926 -4.81303 + 0.4 0.997351 0.000190171 0.0727404 -4.45459 + 0.466667 -0.997074 -0.004836 -0.0762888 -1.70755 + 0.5 -0.997361 -5.55812e-006 -0.0725989 -1.83366 + 0.533333 -0.997005 -0.00591191 -0.077112 -1.6812 + 0.566667 -0.997123 -0.00405244 -0.0756915 -1.72713 + 0.6 -0.997264 -0.0017179 -0.0739079 -1.78745 + 0.633333 -0.997016 -0.00574032 -0.0769806 -1.68537 + 0.666667 -0.996558 -0.0122867 -0.0819779 -1.53716 + 0.7 -0.995939 -0.0199226 -0.0877997 -1.389 + 0.733333 -0.995343 -0.0263826 -0.0927203 -1.2813 + 0.766667 -0.995577 -0.023923 -0.0908473 -1.32058 + 0.8 0.997208 0.00265839 0.0746263 -4.5204 + 0.833333 -0.997681 0.00630572 -0.0677728 -2.01891 + 0.933333 -0.997857 0.010453 -0.0645991 -2.1539 + 1.0 -0.99782 0.00953713 -0.0653001 -2.12317 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.371359 -0.292318 0.881273 -4.89517 + 0.0666667 -0.290122 -0.273952 0.91694 -4.68907 + 0.133333 -0.214051 -0.228382 0.949749 -4.47565 + 0.2 -0.132537 -0.207831 0.969144 -4.2432 + 0.3 -0.0220395 -0.230781 0.972756 -3.85868 + 0.4 -0.111315 -0.0646702 0.991679 -4.23241 + 0.466667 -0.100295 -0.187503 0.97713 -4.53252 + 0.5 -0.140822 -0.138809 0.980256 -4.55708 + 0.533333 -0.162557 -0.267596 0.94972 -4.34618 + 0.566667 -0.190603 -0.230538 0.954213 -4.39804 + 0.6 -0.254119 -0.179815 0.950311 -4.46509 + 0.633333 -0.287097 -0.220373 0.932208 -4.49471 + 0.666667 -0.483781 -0.14275 0.863469 -4.48805 + 0.7 -0.468743 -0.209862 0.858043 -4.51596 + 0.733333 -0.457659 -0.265026 0.848711 -4.51418 + 0.766667 -0.393166 -0.279456 0.875971 -4.46481 + 0.8 -0.412268 -0.115056 0.903768 -4.25657 + 0.833333 -0.323832 -0.122556 0.938143 -4.09661 + 0.933333 -0.346334 -0.257334 0.902126 -4.7635 + 1.0 -0.371359 -0.292318 0.881273 -4.89517 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.981533 -0.136263 0.134257 -4.48027e-007 + 1.0 0.987397 0.00420199 0.158204 -8.70922e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.000130474 1.0 -0.000137013 -6.19593 + 1.0 0.000125579 1.0 -0.000136716 -6.19593 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.3 -0.906768 -0.41359 0.0819413 -0.602197 + 0.533333 -0.934797 -0.355108 -0.00727323 -1.09575 + 1.0 -0.925528 -0.374542 0.0558187 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.956783 0.290218 -0.018434 -1.08343 + 0.3 0.811691 0.580094 -0.0681812 -0.908836 + 0.533333 0.912835 0.408302 0.00460163 -1.42679 + 0.833333 0.936416 0.350415 -0.0182814 -1.11457 + 1.0 0.956783 0.290218 -0.018434 -1.08343 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.84647 0.421109 -0.325815 -1.26948 + 0.3 0.795505 0.59635 -0.107418 -1.01653 + 0.4 0.914043 0.220934 -0.340167 -1.39035 + 0.533333 0.901415 -0.0740689 -0.426574 -1.0202 + 0.833333 0.902676 0.209326 -0.375976 -1.17106 + 1.0 0.84647 0.421109 -0.325815 -1.26948 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.296108 0.952068 0.0767313 -0.396572 + 0.3 0.355468 0.83857 -0.412847 -0.425333 + 0.4 0.320928 0.943039 -0.0876523 -0.463099 + 0.533333 0.639246 0.765835 -0.0697175 -0.575474 + 0.833333 0.371242 0.928351 0.0185262 -0.453121 + 1.0 0.296106 0.952068 0.076731 -0.396572 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.079507 -0.96663 -0.243525 -0.443987 + 0.3 0.0196737 -0.939478 -0.342044 -0.437338 + 0.4 0.115388 0.970084 0.213594 -5.77155 + 0.533333 -0.0234274 -0.90797 -0.418379 -0.600686 + 0.833333 0.170815 -0.910422 -0.376767 -0.55207 + 1.0 -0.0795069 -0.96663 -0.243525 -0.443987 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.483675 -0.804141 -0.345567 -0.586815 + 0.3 0.75177 -0.658286 0.0387412 -0.505586 + 0.4 0.0416583 -0.983333 0.176976 -0.442789 + 0.533333 -0.0913079 0.989221 -0.114472 -5.91369 + 0.833333 -0.364401 -0.912657 -0.185116 -0.450979 + 1.0 -0.483675 -0.804141 -0.345567 -0.586816 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.269966 -0.633252 -0.725335 -0.812253 + 0.3 0.795646 -0.605079 -0.0287596 -0.561185 + 0.533333 0.548146 -0.418299 -0.724267 -6.01006 + 0.833333 -0.654716 -0.481411 -0.582744 -0.423906 + 1.0 -0.269966 -0.633252 -0.725335 -0.812253 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.580826 -0.341198 -0.73907 -0.572813 + 0.3 0.694466 -0.716857 0.0619145 -0.714164 + 0.533333 0.604713 -0.529009 -0.595376 -5.99211 + 0.833333 -0.889821 -0.35722 -0.283926 -0.284443 + 1.0 -0.580826 -0.341199 -0.73907 -0.572813 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.186731 0.293766 0.937461 -0.300987 + 0.3 -0.571389 0.173184 -0.802198 -5.86321 + 0.533333 -0.507502 0.179735 0.842697 -0.599881 + 0.833333 -0.391918 0.226229 0.891752 -0.430589 + 1.0 -0.18673 0.293765 0.937461 -0.300987 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.60979 -0.428835 0.666526 -0.428776 + 0.3 -0.612145 0.435244 -0.660182 -5.58548 + 0.533333 -0.667792 0.218925 0.711425 -0.642324 + 0.833333 0.321103 0.254948 0.912082 -0.667681 + 1.0 -0.60979 -0.428835 0.666526 -0.428776 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555651 -0.721912 0.412425 -0.425873 + 0.3 -0.756386 0.430779 -0.492249 -5.59891 + 0.533333 -0.632421 -0.332068 0.699839 -0.345367 + 0.833333 0.617908 0.0540449 0.784391 -0.481492 + 1.0 0.555651 -0.721912 0.412425 -0.425873 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.325714 -0.93563 0.136039 -0.290434 + 0.3 -0.597058 0.635565 -0.489467 -5.86384 + 0.533333 -0.843647 -0.536816 0.00943848 -0.368516 + 0.833333 -0.467217 -0.492418 -0.734325 -5.7076 + 1.0 0.325713 -0.93563 0.136041 -0.290435 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim plclosel c_marilithe + + +#NWmax ANIM ASCII +newanim plreach c_marilithe + length 1.0 + transtime 0.4 + animroot rootdummy + event 0.4 snd_footstep + event 0.866667 snd_footstep + event 0.5 hit + event 0.5 blur_end + event 0.4 blur_start + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000558796 -0.0312604 1.00032 + 0.0666667 -0.00537892 -0.0599133 1.01278 + 0.1 -0.0238829 -0.128718 1.04152 + 0.166667 -0.041312 -0.197523 1.05332 + 0.233333 -0.0629959 -0.339525 1.06256 + 0.3 -0.0598565 -0.229201 1.04464 + 0.466667 -0.0727585 0.268123 0.831697 + 0.5 -0.0690924 0.3833 0.782526 + 0.633333 -0.0690329 0.432842 0.760589 + 0.733333 -0.0580942 0.297556 0.893181 + 1.0 0.000558796 -0.0312604 1.00032 + endlist + orientationkey + 0.0 0.916262 0.0597088 0.396104 -0.211063 + 0.0666667 0.613365 -0.00843107 0.789755 -0.260587 + 0.1 0.152393 -0.0749153 0.985477 -0.505782 + 0.166667 -0.0111818 -0.0930332 0.9956 -0.793635 + 0.233333 -0.0696932 -0.098908 0.992653 -0.995927 + 0.3 -0.0295042 -0.107764 0.993739 -0.965287 + 1.0 0.916262 0.0597088 0.396104 -0.211063 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.847587 0.100707 -0.521013 -0.208508 + 0.2 0.476362 0.0548069 0.877539 -0.505124 + 0.3 0.565509 0.136754 0.813325 -0.501809 + 0.4 0.854849 0.506359 -0.113286 -0.606487 + 0.466667 0.77695 0.486023 -0.400164 -0.992424 + 0.5 0.858874 0.418338 -0.295514 -1.10296 + 0.633333 0.879935 0.259193 -0.398163 -1.24867 + 0.7 0.803347 0.250451 -0.540285 -0.927551 + 1.0 0.847587 0.100708 -0.521012 -0.208508 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.671965 0.551239 -0.494569 -0.419778 + 0.0666667 -0.589062 0.724973 0.356958 -0.456616 + 0.1 -0.469069 0.861918 -0.19254 -0.602812 + 0.166667 0.0722243 0.891185 -0.447854 -0.969227 + 0.233333 0.386765 0.777615 -0.495709 -1.46188 + 0.3 0.231672 0.803983 -0.547667 -1.29102 + 0.333333 0.248664 0.844735 -0.473908 -1.05264 + 0.4 0.542716 0.67689 -0.497271 -0.783612 + 0.433333 0.456226 0.685553 -0.56734 -0.494893 + 0.466667 -0.956599 0.0824162 -0.279509 -0.812036 + 0.5 -0.96601 0.13303 -0.221647 -2.34801 + 0.633333 -0.990618 0.12918 -0.044588 -2.49017 + 0.7 -0.99232 0.111385 -0.0537971 -2.10664 + 0.733333 -0.992543 0.103879 -0.0637821 -1.91922 + 0.833333 -0.884522 0.360309 -0.296307 -0.956621 + 1.0 -0.671965 0.551239 -0.494569 -0.419778 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.980581 -0.0825064 -0.177914 -0.857155 + 0.0666667 -0.99682 -0.0379744 -0.0700502 -0.705167 + 0.1 -0.999998 -0.000491964 -0.00182431 -0.526554 + 0.166667 -0.999999 -0.000492258 -0.00152981 -0.621912 + 0.233333 -1.0 -0.000491974 -0.000679544 -1.25255 + 0.3 -0.999999 -0.000492173 -0.00162538 -0.587416 + 0.333333 -0.999999 -0.000492137 -0.00129011 -0.728235 + 0.4 -0.999549 -0.0299763 -0.00151519 -1.08924 + 0.433333 -0.995803 -0.0849213 -0.0341249 -1.46131 + 0.466667 -0.995558 -0.0881948 -0.0329406 -1.41156 + 0.5 -0.790211 -0.591629 0.159817 -0.197913 + 0.633333 -0.921118 -0.381665 0.0766402 -0.312664 + 0.7 0.618668 -0.760987 0.195317 -0.144151 + 0.733333 0.621626 -0.770573 0.140707 -0.13881 + 0.833333 -0.984617 -0.124436 -0.122656 -0.71798 + 1.0 -0.980592 -0.0825021 -0.177856 -0.857361 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -0.474388 -0.330872 -0.81577 -0.691183 + 0.0666667 -0.409824 -0.504706 -0.759813 -1.05436 + 0.1 -0.376351 -0.488161 -0.787438 -0.964824 + 0.166667 -0.417133 -0.527854 -0.739845 -0.600806 + 0.233333 0.739103 -0.000467206 -0.673592 -0.123105 + 0.3 -0.907536 -0.16694 -0.38537 -0.445324 + 0.333333 -0.693674 -0.336041 -0.637098 -0.387198 + 0.4 -0.394922 -0.826237 -0.401709 -0.259042 + 0.433333 0.914406 -0.396089 -0.0835224 -0.311989 + 0.466667 0.994492 -0.0264129 0.101432 -1.01894 + 0.5 0.913426 -0.0749103 0.400052 -1.11251 + 0.633333 0.980281 0.00311369 0.197583 -1.27896 + 0.7 0.997218 -0.0561762 0.0489848 -0.611348 + 0.733333 0.979109 -0.0875134 -0.183541 -0.392245 + 0.833333 -0.236719 -0.597397 -0.766212 -0.235471 + 1.0 -0.474388 -0.330872 -0.81577 -0.691183 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 -3.39799e-007 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.898819 -0.0473257 -0.435758 -0.0797009 + 0.0666667 -0.703903 0.0370244 -0.70933 -0.103222 + 0.233333 -0.246587 0.155495 -0.956565 -0.317954 + 0.466667 -0.454307 0.115629 -0.883309 -0.251971 + 0.5 -0.490413 0.107582 -0.864824 -0.243871 + 0.633333 -0.673404 0.0655603 -0.736362 -0.223273 + 0.933333 -0.860925 -0.0229459 -0.508214 -0.091528 + 1.0 -0.898819 -0.0473258 -0.435758 -0.0797009 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.973996 -0.118527 0.19309 -0.321534 + 0.0666667 -0.983013 -0.0325526 -0.180624 -0.272195 + 0.233333 0.0263216 0.227699 -0.973376 -0.730635 + 0.466667 -0.962316 0.250346 0.106183 -0.53829 + 0.5 -0.960399 0.277196 0.0282125 -0.603296 + 0.633333 -0.876978 0.157324 0.454047 -0.481071 + 0.933333 -0.969856 -0.0834678 0.228937 -0.333176 + 1.0 -0.973996 -0.118527 0.19309 -0.321534 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.700379 -0.543029 -0.463236 -0.760497 + 0.0666667 -0.519992 -0.775564 0.357922 -0.604432 + 0.1 -0.553623 -0.755222 0.350915 -0.465849 + 0.166667 -0.840439 -0.22675 0.492186 -0.43104 + 0.233333 -0.671135 -0.548216 0.499036 -0.232652 + 0.3 -0.494715 -0.235932 0.836417 -0.546216 + 0.4 -0.0549882 -0.278943 -0.958732 -0.738844 + 0.5 0.113663 -0.236225 -0.965028 -1.1767 + 0.633333 -0.0929594 -0.222207 -0.970558 -1.35347 + 0.666667 -0.0587076 -0.207268 -0.976521 -1.28356 + 0.7 -0.0865864 -0.205757 -0.974765 -1.22854 + 0.9 -0.636036 -0.519985 -0.570153 -0.778389 + 1.0 -0.698954 -0.543228 -0.465153 -0.761756 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.99782 0.00953719 -0.0653001 -2.12317 + 0.0666667 -0.997668 0.00603053 -0.0679842 -2.01032 + 0.1 -0.996701 -0.0103499 -0.0804994 -1.57882 + 0.166667 -0.992433 -0.0512236 -0.111596 -0.976894 + 0.233333 -0.995716 -0.0224203 -0.0897033 -1.3456 + 0.3 -0.993262 -0.0449323 -0.106822 -1.04076 + 0.4 -0.998257 0.0395306 -0.0438171 -1.76508 + 0.5 -0.979548 0.158251 -0.12427 -0.580897 + 0.633333 -0.975707 0.0994204 -0.195222 -0.533644 + 0.666667 -0.989287 0.0772189 -0.12389 -0.830119 + 0.7 -0.992414 0.0672662 -0.10291 -1.00363 + 0.9 -0.997533 0.0125515 -0.0690675 -1.98431 + 1.0 -0.99782 0.00953716 -0.0653001 -2.12317 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.371359 -0.292318 0.881273 -4.89517 + 0.0666667 0.0446734 0.0673475 -0.996729 -1.14681 + 0.1 -0.224387 0.216541 -0.950137 -1.37279 + 0.166667 -0.381251 0.382459 -0.841649 -1.67845 + 0.233333 -0.32626 0.355129 -0.876035 -1.69891 + 0.3 -0.533992 0.269511 -0.801384 -1.79906 + 0.4 -0.201986 0.667553 -0.716641 -0.507735 + 0.5 0.00288883 -0.998707 0.0507521 -0.429557 + 0.633333 -0.0572459 -0.605739 0.793601 -0.507236 + 0.666667 -0.0572456 -0.605739 0.793601 -0.507236 + 0.7 0.548456 -0.61496 0.566587 -0.412919 + 0.9 0.384411 0.276646 -0.880735 -1.22255 + 1.0 -0.371359 -0.292318 0.881273 -4.89517 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 -1.3328e-007 + 1.0 0.0 0.0 0.0 -2.30848e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.000128984 1.0 -0.000137987 -6.19593 + 1.0 0.000122316 1.0 -0.000137885 -6.19593 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.3 -0.906768 -0.41359 0.0819412 -0.602197 + 0.533333 -0.934797 -0.355108 -0.00727328 -1.09575 + 1.0 -0.925528 -0.374542 0.0558187 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.956783 0.290218 -0.018434 -1.08343 + 0.3 0.762378 0.64423 -0.0612128 -1.08302 + 0.533333 0.861118 0.508138 -0.0164643 -1.97704 + 0.833333 0.934594 0.355715 4.74075e-005 -1.3666 + 1.0 0.956783 0.290218 -0.018434 -1.08343 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.84647 0.421109 -0.325815 -1.26948 + 0.3 0.795505 0.59635 -0.107418 -1.01653 + 0.4 0.914043 0.220934 -0.340167 -1.39035 + 0.533333 0.812291 -0.152593 -0.562937 -0.928004 + 0.833333 0.902676 0.209326 -0.375976 -1.17106 + 1.0 0.84647 0.421109 -0.325815 -1.26948 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.296107 0.952068 0.076731 -0.396572 + 0.3 0.355468 0.83857 -0.412848 -0.425333 + 0.4 0.320928 0.943039 -0.0876531 -0.4631 + 0.533333 0.723266 0.690158 -0.0238289 -0.616189 + 0.833333 0.371242 0.928351 0.0185256 -0.453121 + 1.0 0.296108 0.952067 0.0767307 -0.396572 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.0795065 -0.96663 -0.243525 -0.443987 + 0.3 0.0196725 -0.939478 -0.342044 -0.437338 + 0.4 0.115387 0.970084 0.213594 -5.77155 + 0.533333 -0.0234272 -0.90797 -0.41838 -0.600686 + 0.833333 0.170816 -0.910422 -0.376767 -0.55207 + 1.0 -0.0795067 -0.96663 -0.243525 -0.443987 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.483675 -0.804141 -0.345567 -0.586815 + 0.3 0.751771 -0.658285 0.0387391 -0.505586 + 0.4 -0.0416578 0.983333 -0.176978 -5.8404 + 0.533333 -0.0913073 0.989222 -0.114472 -5.91369 + 0.833333 -0.364401 -0.912657 -0.185117 -0.450979 + 1.0 -0.483675 -0.804141 -0.345567 -0.586816 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.269966 -0.633252 -0.725335 -0.812253 + 0.3 -0.795646 0.605079 0.0287621 -5.722 + 0.533333 0.548146 -0.418299 -0.724267 -6.01006 + 0.833333 -0.654715 -0.481411 -0.582745 -0.423906 + 1.0 -0.269966 -0.633252 -0.725335 -0.812253 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.580826 -0.341199 -0.73907 -0.572813 + 0.3 -0.694468 0.716854 -0.0619208 -5.56902 + 0.533333 0.604712 -0.52901 -0.595376 -5.99211 + 0.833333 -0.88982 -0.357223 -0.283924 -0.284442 + 1.0 -0.580826 -0.341199 -0.73907 -0.572813 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.18673 0.293766 0.937461 -0.300988 + 0.3 -0.571394 0.173217 -0.802188 -5.8632 + 0.533333 0.551465 -0.16393 -0.817932 -5.68711 + 0.833333 -0.391913 0.226228 0.891754 -0.430591 + 1.0 -0.186732 0.293766 0.937461 -0.300988 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.609791 -0.428834 0.666526 -0.428776 + 0.3 -0.612147 0.435269 -0.660164 -5.58544 + 0.533333 -0.801578 -0.0347839 0.596877 -0.671751 + 0.833333 0.3211 0.254953 0.912082 -0.667686 + 1.0 -0.609791 -0.428835 0.666525 -0.428776 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555651 -0.721912 0.412425 -0.425873 + 0.3 0.756325 -0.430695 0.492417 -0.68448 + 0.533333 -0.563479 -0.628417 0.536268 -0.462583 + 0.833333 0.6179 0.0540736 0.784395 -0.481504 + 1.0 0.555651 -0.721912 0.412425 -0.425873 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.325714 -0.93563 0.13604 -0.290434 + 0.3 0.596615 -0.635542 0.490038 -0.419706 + 0.533333 -0.616893 -0.776488 0.128488 -0.557577 + 0.833333 -0.467226 -0.492628 -0.734178 -5.70762 + 1.0 0.325713 -0.935631 0.136039 -0.290434 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim plreach c_marilithe + + +#NWmax ANIM ASCII +newanim plparryl c_marilithe + length 1.0 + transtime 0.4 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000558796 -0.0312604 1.00032 + 0.0666667 0.00718335 -0.0433627 0.995277 + 0.133333 0.015046 -0.0736182 0.989287 + 0.2 0.016187 -0.109175 0.991309 + 0.266667 0.0157307 -0.125812 1.02419 + 0.3 0.0128083 -0.128897 1.06152 + 0.333333 0.0107774 -0.128993 1.08729 + 0.366667 0.0102666 -0.117317 1.10356 + 0.4 0.00975565 -0.0954372 1.09666 + 0.433333 0.00924471 -0.0866512 1.05963 + 0.533333 0.00658784 -0.0817017 0.939483 + 0.6 0.00592363 -0.0824702 0.909445 + 0.666667 0.00566918 -0.0826503 0.897886 + 0.733333 0.00464716 -0.0718717 0.906208 + 0.8 0.0036251 -0.0595732 0.92513 + 0.866667 0.00151704 -0.0429316 0.968679 + 0.933333 0.000814328 -0.0343728 0.991882 + 1.0 0.000558796 -0.0312604 1.00032 + endlist + orientationkey + 0.0 0.916262 0.0597088 0.396104 -0.211063 + 0.0666667 0.919155 0.0601538 0.389277 -0.207253 + 0.2 0.934414 0.062584 0.350648 -0.188393 + 0.333333 0.867724 -0.327032 0.374305 -0.202962 + 0.533333 0.739398 0.503343 -0.447143 -0.283098 + 0.6 0.67751 0.546016 -0.492795 -0.31564 + 0.666667 0.626974 0.599317 -0.497718 -0.341466 + 0.933333 0.946913 0.15412 0.282141 -0.206576 + 1.0 0.916262 0.0597088 0.396104 -0.211063 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.847587 0.100708 -0.521012 -0.208508 + 0.0666667 0.834651 0.10207 -0.54124 -0.20086 + 0.133333 0.785593 0.106372 -0.609532 -0.178725 + 0.2 0.769289 0.10755 -0.629784 -0.173069 + 0.333333 -0.718963 -0.168683 0.674269 -0.322686 + 0.4 -0.711626 -0.121435 0.691984 -0.424974 + 0.466667 0.679917 0.673113 -0.290914 -0.25763 + 0.533333 0.725552 0.536016 -0.431579 -0.46079 + 0.6 0.730577 0.506944 -0.457455 -0.543436 + 0.666667 0.731742 0.498952 -0.464328 -0.571129 + 0.733333 0.735177 0.492126 -0.466184 -0.552118 + 0.8 0.745721 0.470376 -0.471854 -0.499635 + 0.933333 0.830929 0.211189 -0.514739 -0.247275 + 1.0 0.847587 0.100707 -0.521012 -0.208508 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.671965 0.551239 -0.494569 -0.419778 + 0.0666667 -0.568235 0.630524 -0.528723 -0.377502 + 0.133333 -0.0461654 0.826194 -0.561491 -0.310375 + 0.2 0.124967 0.835298 -0.535407 -0.312514 + 0.266667 -0.112934 0.734685 -0.668942 -0.271055 + 0.3 -0.250845 0.644855 -0.721969 -0.260692 + 0.333333 -0.38734 0.529997 -0.754368 -0.258537 + 0.366667 -0.493199 0.594152 -0.635404 -0.280222 + 0.4 -0.570742 0.634449 -0.521276 -0.308816 + 0.433333 -0.427981 0.902136 0.0546119 -0.718074 + 0.466667 -0.358632 0.910245 0.206971 -1.20519 + 0.533333 -0.332842 0.907201 0.257299 -1.5375 + 0.6 -0.325779 0.905897 0.270589 -1.65267 + 0.666667 -0.323482 0.905431 0.27487 -1.69278 + 0.733333 -0.331062 0.905772 0.264527 -1.62127 + 0.8 -0.354739 0.905867 0.231443 -1.42412 + 0.866667 -0.442529 0.8915 0.0969365 -0.943137 + 0.933333 -0.612707 0.747216 -0.257407 -0.518799 + 1.0 -0.671965 0.551239 -0.494569 -0.419778 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.980592 -0.0825022 -0.177856 -0.85736 + 0.0666667 -0.983329 -0.0823973 -0.162095 -0.92946 + 0.133333 -0.988614 -0.0823715 -0.125925 -1.14466 + 0.2 -0.989563 -0.0823517 -0.118251 -1.20218 + 0.266667 -0.990739 -0.0823159 -0.107979 -1.28754 + 0.3 -0.991243 -0.0822964 -0.103268 -1.33025 + 0.333333 -0.9917 -0.0822761 -0.098805 -1.37298 + 0.366667 -0.991789 -0.0808581 -0.0990757 -1.40529 + 0.4 -0.991873 -0.0794941 -0.0993373 -1.43759 + 0.433333 -0.989711 -0.0672848 -0.126273 -1.47256 + 0.466667 -0.98681 -0.055488 -0.152073 -1.50838 + 0.533333 -0.984511 -0.0478494 -0.168665 -1.53269 + 0.6 -0.983656 -0.0452604 -0.174275 -1.54117 + 0.666667 -0.983348 -0.0443769 -0.176233 -1.5441 + 0.733333 -0.983284 -0.045552 -0.176287 -1.50974 + 0.8 -0.98309 -0.04905 -0.176432 -1.41464 + 0.866667 -0.982414 -0.0598255 -0.176869 -1.17696 + 0.933333 -0.981244 -0.0752794 -0.177461 -0.939423 + 1.0 -0.980599 -0.0824861 -0.177827 -0.857323 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -0.474388 -0.330872 -0.81577 -0.691183 + 0.0666667 -0.462435 -0.300025 -0.83435 -0.671138 + 0.133333 -0.418592 -0.191916 -0.887665 -0.617051 + 0.2 -0.404335 -0.159403 -0.900613 -0.604406 + 0.266667 -0.442698 -0.202781 -0.873441 -0.553994 + 0.3 -0.463702 -0.227074 -0.856398 -0.529705 + 0.333333 -0.485942 -0.253264 -0.836491 -0.506147 + 0.366667 -0.478214 -0.269601 -0.835839 -0.487468 + 0.4 -0.469711 -0.287108 -0.83483 -0.468953 + 0.433333 -0.224554 -0.254846 -0.940547 -0.456129 + 0.466667 0.0330347 -0.205002 -0.978204 -0.4758 + 0.533333 -0.187278 0.168007 0.967833 -5.77783 + 0.6 -0.235224 0.155385 0.95944 -5.76502 + 0.666667 -0.251218 0.15105 0.956072 -5.76028 + 0.733333 -0.20772 0.165722 0.964048 -5.76081 + 0.8 -0.0856985 0.20423 0.975165 -5.75662 + 0.866667 -0.198985 -0.279531 -0.939291 -0.571268 + 0.933333 -0.416358 -0.322484 -0.850089 -0.655586 + 1.0 -0.474388 -0.330872 -0.81577 -0.691183 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.0666667 0.9911 -0.119186 0.0592933 -2.85854e-007 + 0.133333 0.989502 -0.117305 0.0844099 -6.87394e-007 + 0.333333 0.996718 -0.0793831 0.0158304 -1.46001e-006 + 0.4 0.999925 -0.0122482 -0.000580481 -2.60664e-006 + 0.466667 -0.981689 -0.0466793 -0.184681 -6.28318 + 0.533333 0.995415 -0.0399463 0.0869095 -6.28318 + 0.6 0.993127 -0.04991 0.105867 -6.28318 + 0.733333 0.992214 -0.0769783 0.0979095 -6.28318 + 0.8 0.0 0.0 0.0 -6.28319 + 0.933333 0.0 0.0 0.0 -2.14908e-007 + 1.0 0.953801 -0.0366709 -0.298193 -4.25662e-007 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.898819 -0.0473257 -0.435758 -0.0797009 + 0.0666667 -0.866816 -0.0511196 -0.496001 -0.0700594 + 0.133333 -0.625488 -0.0672209 -0.777332 -0.0447726 + 0.2 -0.483165 -0.0716072 -0.872596 -0.0398999 + 0.333333 -0.197529 0.624074 -0.755986 -0.122446 + 0.4 -0.18342 0.660815 -0.727792 -0.149802 + 0.466667 -0.380939 0.559021 -0.736465 -0.112756 + 0.533333 -0.470562 0.499306 -0.727506 -0.102234 + 0.6 -0.51607 0.465106 -0.71927 -0.0978329 + 0.733333 -0.596428 0.397164 -0.69752 -0.0913063 + 0.8 -0.648883 0.346572 -0.677376 -0.087789 + 0.933333 -0.875413 0.0155278 -0.483127 -0.0793809 + 1.0 -0.898819 -0.0473257 -0.435758 -0.0797009 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.973996 -0.118527 0.19309 -0.321534 + 0.0666667 -0.972499 -0.122751 0.197935 -0.312687 + 0.133333 -0.967147 -0.136933 0.214186 -0.286234 + 0.2 -0.965458 -0.141152 0.219014 -0.279207 + 0.333333 0.249774 0.102604 -0.962853 -0.300231 + 0.4 0.51074 -0.103576 -0.853473 -0.239943 + 0.466667 -0.778315 -0.0178003 -0.627622 -0.183652 + 0.533333 0.0262851 -0.390704 0.920141 -0.0623676 + 0.6 -0.192878 -0.41224 0.890425 -0.0647141 + 0.733333 -0.955388 -0.111964 0.273309 -0.220457 + 0.8 -0.959614 -0.113332 0.257481 -0.23507 + 0.933333 -0.972602 -0.117973 0.200319 -0.308815 + 1.0 -0.973996 -0.118527 0.19309 -0.321534 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.68113 -0.545425 -0.48844 -0.777689 + 0.0666667 -0.654983 -0.575716 -0.489437 -0.762034 + 0.133333 -0.639435 -0.60015 -0.480564 -0.759196 + 0.2 -0.655418 -0.586992 -0.475256 -0.770613 + 0.266667 -0.73325 -0.642077 -0.223787 -1.16451 + 0.3 -0.774437 -0.615663 -0.145621 -1.40302 + 0.333333 -0.789819 -0.607158 -0.0868637 -1.64111 + 0.366667 -0.810854 -0.580212 -0.0766142 -1.70546 + 0.4 -0.77539 -0.62518 -0.0889944 -1.77666 + 0.433333 -0.749673 -0.55516 -0.360261 -0.849908 + 0.533333 -0.836444 -0.396494 0.378356 -0.789722 + 0.6 -0.840546 -0.324378 0.433891 -0.946694 + 0.666667 -0.837474 -0.306396 0.452503 -1.01215 + 0.733333 -0.842023 -0.327593 0.42858 -0.948937 + 0.8 -0.865632 -0.377707 0.328663 -0.78773 + 0.866667 -0.892426 -0.419075 -0.16719 -0.576105 + 0.933333 -0.73144 -0.474613 -0.489631 -0.688097 + 1.0 -0.679697 -0.545582 -0.490258 -0.778978 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.99782 0.0095372 -0.0653001 -2.12317 + 0.0666667 -0.997862 0.0105942 -0.0644909 -2.15868 + 0.133333 -0.997968 0.0135057 -0.0622615 -2.26005 + 0.2 -0.997992 0.014216 -0.0617175 -2.28556 + 0.266667 -0.998081 0.0170989 -0.0595088 -2.39216 + 0.3 -0.998087 0.0172943 -0.059359 -2.39956 + 0.333333 -0.998068 0.016639 -0.0598615 -2.37483 + 0.366667 -0.998068 0.0166243 -0.0598723 -2.37428 + 0.4 -0.998068 0.0166342 -0.0598649 -2.37466 + 0.433333 -0.998018 0.0150084 -0.0611108 -2.31437 + 0.533333 -0.994084 -0.0381659 -0.101683 -1.11845 + 0.6 -0.9905 -0.0643374 -0.121532 -0.864738 + 0.666667 -0.988054 -0.0787787 -0.13245 -0.766413 + 0.733333 -0.99039 -0.0650365 -0.122061 -0.859435 + 0.8 -0.993887 -0.0398496 -0.102962 -1.09816 + 0.866667 -0.996753 -0.00961384 -0.0799381 -1.59512 + 0.933333 -0.997662 0.00590375 -0.0680805 -2.00638 + 1.0 -0.99782 0.0095372 -0.0653001 -2.12317 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.371359 -0.292318 0.881273 -4.89517 + 0.0666667 -0.359884 -0.287198 0.887694 -4.87423 + 0.133333 -0.374895 -0.266156 0.88804 -4.78463 + 0.2 -0.392046 -0.25756 0.883155 -4.75096 + 0.266667 -0.513219 -0.0236736 0.857931 -4.6072 + 0.3 -0.574142 0.0576944 0.816721 -4.49064 + 0.333333 -0.603755 0.114506 0.788903 -4.38168 + 0.366667 -0.616549 0.127098 0.77699 -4.37302 + 0.4 -0.560189 0.154548 0.81382 -4.37379 + 0.433333 -0.0774607 -0.230659 0.969947 -4.8784 + 0.533333 -0.774487 0.350915 -0.526335 -2.3495 + 0.6 -0.81203 0.335653 -0.477435 -2.5696 + 0.666667 -0.825451 0.32691 -0.460175 -2.65595 + 0.733333 -0.804281 0.339 -0.488069 -2.5452 + 0.8 -0.729903 0.377101 -0.570119 -2.24904 + 0.866667 -0.397521 0.466601 -0.790102 -1.62889 + 0.933333 -0.179413 -0.386285 0.904762 -4.92498 + 1.0 -0.371359 -0.292318 0.881273 -4.89517 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.998498 -0.0209934 0.0506134 -2.01953e-006 + 1.0 0.999888 -0.0148275 0.00185393 -3.81819e-006 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.000130174 1.0 -0.000136941 -6.19593 + 1.0 0.000124889 1.0 -0.000137685 -6.19593 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.925528 -0.374542 0.0558187 -0.756076 + 0.366667 -0.905886 -0.413018 0.0937324 -0.639909 + 0.666667 -0.95097 -0.300728 0.0722457 -0.851169 + 1.0 -0.925528 -0.374542 0.0558187 -0.756076 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.956783 0.290218 -0.0184339 -1.08343 + 0.2 0.955118 0.29492 -0.027786 -1.0742 + 0.366667 0.929742 0.355606 -0.0955166 -0.760288 + 0.666667 0.96621 0.0899936 0.241537 -1.49813 + 1.0 0.956783 0.290218 -0.018434 -1.08343 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.84647 0.421109 -0.325815 -1.26948 + 0.2 0.840253 0.432378 -0.327146 -1.24193 + 0.366667 0.844751 0.424278 -0.326165 -1.26238 + 0.666667 0.993945 0.000181127 -0.10988 -0.827583 + 1.0 0.84647 0.421109 -0.325815 -1.26948 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.296107 0.952068 0.0767308 -0.396572 + 0.2 0.312029 0.948474 0.0550816 -0.392241 + 0.366667 0.602537 0.748543 -0.276827 -0.49278 + 0.666667 0.309012 0.949642 0.051882 -0.65509 + 1.0 0.296107 0.952068 0.076731 -0.396572 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.0795068 -0.96663 -0.243525 -0.443987 + 0.2 6.68631e-005 -0.951469 -0.307743 -0.452045 + 0.366667 0.0638096 -0.931993 -0.356815 -0.462201 + 0.666667 0.386956 0.708276 0.590432 -0.114254 + 1.0 -0.0795067 -0.96663 -0.243525 -0.443987 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.483675 -0.804141 -0.345567 -0.586815 + 0.2 -0.476691 -0.807202 -0.348126 -0.585922 + 0.366667 -0.470833 -0.809718 -0.350247 -0.585205 + 0.666667 -0.485505 0.86996 0.0863455 -0.407711 + 1.0 -0.483675 -0.80414 -0.345567 -0.586816 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.269966 -0.633252 -0.725335 -0.812253 + 0.2 -0.377102 -0.537607 -0.75417 -0.826608 + 0.366667 -0.456835 -0.45297 -0.765585 -0.850198 + 0.533333 -0.198643 -0.123274 -0.972288 -0.651465 + 0.666667 -0.0259174 0.35908 -0.932947 -0.592909 + 1.0 -0.269966 -0.633251 -0.725335 -0.812253 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.580826 -0.341199 -0.73907 -0.572812 + 0.2 -0.581142 -0.293126 -0.759178 -0.587351 + 0.366667 -0.580267 -0.254295 -0.773708 -0.600565 + 0.533333 -0.265904 -0.332992 -0.904661 -0.545928 + 0.666667 0.220576 -0.0189284 0.975186 -5.83098 + 1.0 -0.580826 -0.341198 -0.73907 -0.572813 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.186731 0.293766 0.937461 -0.300987 + 0.2 -0.186723 0.293769 0.937462 -0.300987 + 0.366667 -0.186716 0.29377 0.937463 -0.300987 + 0.533333 -0.709573 -0.384038 -0.59078 -5.91481 + 0.666667 -0.682699 -0.622229 -0.383084 -5.64965 + 0.8 0.888855 0.150501 0.432765 -0.39194 + 1.0 -0.186731 0.293766 0.937461 -0.300988 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.609791 -0.428834 0.666525 -0.428776 + 0.2 -0.609788 -0.428831 0.66653 -0.428774 + 0.366667 -0.609789 -0.428819 0.666537 -0.428773 + 0.533333 0.146793 -0.39171 -0.908303 -5.99877 + 0.666667 -0.44456 -0.741944 -0.501881 -5.89556 + 1.0 -0.609791 -0.428835 0.666525 -0.428776 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.555651 -0.721912 0.412425 -0.425872 + 0.2 0.429466 -0.674878 0.600082 -0.34588 + 0.366667 0.250865 -0.572846 0.78033 -0.299471 + 0.533333 0.756267 0.0113853 0.654164 -0.315201 + 0.666667 -0.845156 -0.331229 -0.419522 -5.84784 + 1.0 0.555651 -0.721912 0.412425 -0.425873 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.325713 -0.93563 0.136039 -0.290434 + 0.2 0.32597 -0.935505 0.136282 -0.290391 + 0.366667 0.326075 -0.935453 0.13639 -0.290376 + 0.533333 0.912988 0.0869946 0.398603 -0.2331 + 0.666667 -0.727614 -0.606032 -0.321407 -5.86392 + 1.0 0.325713 -0.93563 0.136041 -0.290434 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim plparryl c_marilithe + + +#NWmax ANIM ASCII +newanim plparryr c_marilithe + length 1.0 + transtime 0.4 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.000558796 -0.0312604 1.00032 + 0.0666667 0.00146693 -0.0563157 1.00358 + 0.133333 -0.00920718 -0.0807146 1.01246 + 0.2 -0.0209062 -0.105114 1.03242 + 0.266667 -0.0325431 -0.11039 1.073 + 0.333333 -0.0340547 -0.101915 1.11358 + 0.366667 -0.0312721 -0.0860785 1.11587 + 0.4 -0.0279497 -0.0702414 1.10369 + 0.466667 -0.020074 -0.0605644 1.04776 + 0.533333 0.000985862 -0.0559738 0.984468 + 0.6 0.0122704 -0.0538897 0.960653 + 0.666667 0.0173009 -0.0531319 0.951994 + 0.733333 0.0183069 -0.0519382 0.954804 + 0.8 0.0188101 -0.0519386 0.954804 + 0.866667 0.0157918 -0.0429884 0.975882 + 0.933333 0.0105414 -0.0340383 0.996961 + 1.0 0.000558796 -0.0312604 1.00032 + endlist + orientationkey + 0.0 0.916262 0.0597088 0.396104 -0.211063 + 0.0666667 0.901382 0.0682784 0.427608 -0.195196 + 0.2 0.60945 0.335721 0.718236 -0.32748 + 0.266667 0.517435 0.388157 0.762624 -0.407905 + 0.366667 0.490374 0.401959 0.77328 -0.439077 + 0.466667 0.600707 0.377329 0.704822 -0.392873 + 0.533333 0.932152 0.207309 0.296842 -0.316331 + 0.666667 0.812165 -0.201926 -0.54737 -0.499899 + 0.733333 0.749811 -0.239343 -0.616845 -0.571689 + 0.8 0.795755 -0.225397 -0.562113 -0.49742 + 0.933333 0.994175 -0.0355914 0.101732 -0.228866 + 1.0 0.916262 0.0597088 0.396104 -0.211063 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.847587 0.100707 -0.521012 -0.208508 + 0.0666667 0.840328 0.0113674 -0.541958 -0.198527 + 0.133333 0.759143 -0.298717 -0.578333 -0.180556 + 0.2 0.720152 -0.384352 -0.577628 -0.179292 + 0.3 -0.243617 0.740935 0.625832 -0.262538 + 0.366667 -0.307433 0.711272 0.632121 -0.365846 + 0.433333 -0.22003 0.822109 0.525095 -0.288303 + 0.533333 0.654946 -0.190904 -0.731164 -0.392611 + 0.666667 0.555981 0.0700518 -0.828238 -0.58687 + 0.733333 0.552537 0.0267632 -0.833058 -0.669345 + 0.8 0.57208 0.0312021 -0.819604 -0.594443 + 0.933333 0.809289 0.0912675 -0.580277 -0.234254 + 1.0 0.847587 0.100707 -0.521013 -0.208508 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.671965 0.551239 -0.494569 -0.419778 + 0.0666667 -0.640414 0.619716 -0.453677 -0.472015 + 0.133333 -0.558556 0.751367 -0.351373 -0.669083 + 0.2 -0.450453 0.86283 -0.229381 -1.23613 + 0.233333 -0.421885 0.884594 -0.19876 -1.52653 + 0.266667 -0.414974 0.889466 -0.191434 -1.61235 + 0.3 -0.408563 0.893854 -0.184666 -1.69828 + 0.333333 -0.406052 0.895539 -0.182022 -1.7337 + 0.366667 -0.403608 0.89716 -0.179454 -1.76913 + 0.4 -0.406525 0.8952 -0.182632 -1.75542 + 0.433333 -0.409466 0.893197 -0.185842 -1.74173 + 0.466667 -0.467055 0.84815 -0.250001 -1.49964 + 0.5 -0.534795 0.778196 -0.32925 -1.26978 + 0.533333 -0.612724 0.664481 -0.427824 -1.06038 + 0.6 -0.672954 0.531966 -0.513951 -0.925347 + 0.666667 -0.683087 0.502427 -0.530056 -0.903868 + 0.733333 -0.682812 0.503674 -0.529226 -0.879606 + 0.8 -0.681957 0.507488 -0.526678 -0.812389 + 0.866667 -0.67675 0.52923 -0.511786 -0.560543 + 0.933333 -0.673626 0.541219 -0.503299 -0.476737 + 1.0 -0.671965 0.551239 -0.494569 -0.419778 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.980599 -0.0824861 -0.177827 -0.857323 + 0.0666667 -0.981861 -0.0823735 -0.170776 -0.888384 + 0.133333 -0.98529 -0.0823317 -0.149751 -0.992976 + 0.2 -0.990616 -0.0821768 -0.109209 -1.27326 + 0.233333 -0.992159 -0.082079 -0.0942517 -1.41385 + 0.266667 -0.992527 -0.0820527 -0.0903139 -1.45527 + 0.3 -0.992864 -0.0820318 -0.0865602 -1.49669 + 0.333333 -0.992993 -0.0820283 -0.0850681 -1.51375 + 0.366667 0.993118 0.0820245 0.0836022 -4.75237 + 0.4 -0.992866 -0.0835201 -0.0850919 -1.52607 + 0.433333 -0.992609 -0.0850239 -0.0865894 -1.52133 + 0.466667 -0.986904 -0.113346 -0.114776 -1.43693 + 0.5 -0.978768 -0.144294 -0.145573 -1.3543 + 0.533333 -0.967513 -0.178216 -0.179325 -1.27381 + 0.6 -0.956492 -0.205822 -0.206788 -1.21511 + 0.666667 -0.954246 -0.210977 -0.211903 -1.20474 + 0.733333 -0.955547 -0.206238 -0.210702 -1.18706 + 0.8 -0.959203 -0.192399 -0.207152 -1.13828 + 0.866667 -0.973191 -0.128957 -0.190443 -0.957496 + 0.933333 -0.977704 -0.102503 -0.18327 -0.89824 + 1.0 -0.980598 -0.082484 -0.177832 -0.857284 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -0.474388 -0.330872 -0.81577 -0.691183 + 0.0666667 -0.443311 -0.325826 -0.835053 -0.678461 + 0.133333 -0.324561 -0.301502 -0.896525 -0.641602 + 0.2 0.0635198 -0.195773 -0.97859 -0.606849 + 0.233333 0.258094 -0.129016 -0.957467 -0.627439 + 0.266667 -0.310703 0.109299 0.944202 -5.64511 + 0.3 -0.360518 0.0899152 0.928408 -5.63255 + 0.333333 -0.380165 0.0820695 0.92127 -5.62685 + 0.366667 -0.399294 0.0743171 0.913806 -5.62085 + 0.4 -0.392818 0.0782013 0.916285 -5.62557 + 0.433333 -0.386227 0.0821336 0.91874 -5.63026 + 0.466667 -0.245817 0.161424 0.95578 -5.7069 + 0.5 0.0607195 -0.254358 -0.965202 -0.518634 + 0.533333 -0.160901 -0.349862 -0.92288 -0.486781 + 0.6 -0.332154 -0.41147 -0.848744 -0.483057 + 0.666667 -0.361727 -0.420909 -0.831859 -0.484302 + 0.733333 -0.369765 -0.414981 -0.831303 -0.49433 + 0.8 -0.390276 -0.39954 -0.829489 -0.522346 + 0.866667 -0.449492 -0.352262 -0.820895 -0.629726 + 0.933333 -0.464654 -0.339469 -0.817837 -0.666123 + 1.0 -0.474388 -0.330872 -0.81577 -0.691183 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 -1.26441e-007 + 0.0666667 0.0 0.0 0.0 -1.46001e-007 + 0.133333 0.916856 0.35124 0.18975 -2.73143e-007 + 0.233333 -0.949878 -0.250842 -0.186577 -6.28318 + 0.3 -0.995719 -0.0912631 0.0146745 -6.28318 + 0.433333 -0.991308 0.11907 0.0559589 -6.28318 + 0.533333 0.996815 -0.0781165 0.0160245 -6.28318 + 0.6 0.997093 -0.0754869 -0.0103842 -6.28318 + 0.733333 0.995215 -0.0975877 0.00488823 -6.28318 + 0.8 0.0 0.0 0.0 -6.28319 + 0.866667 0.0 0.0 0.0 0.0 + 0.933333 0.996538 0.0271608 0.0785751 -2.52881e-007 + 1.0 0.998541 0.0256536 0.0475226 -4.98688e-007 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.898819 -0.0473257 -0.435758 -0.0797009 + 0.2 -0.373334 -0.630943 -0.680098 -0.225441 + 0.3 -0.269224 -0.68431 -0.677672 -0.342846 + 0.366667 -0.253088 -0.691596 -0.676492 -0.372635 + 0.433333 -0.36085 -0.735579 -0.573333 -0.327346 + 0.666667 -0.633961 -0.163316 0.755924 -0.509718 + 0.733333 -0.602184 -0.108436 0.790959 -0.577762 + 0.8 -0.617688 -0.108926 0.778843 -0.507682 + 0.933333 -0.944876 -0.104202 0.310405 -0.118703 + 1.0 -0.898819 -0.0473257 -0.435758 -0.0797009 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.973996 -0.118527 0.19309 -0.321534 + 0.2 -0.799098 0.581665 0.152013 -0.23429 + 0.3 -0.931064 -0.35492 -0.0845671 -0.115006 + 0.366667 -0.704354 -0.689056 -0.170549 -0.123423 + 0.433333 -0.844315 -0.534154 0.0425632 -0.116727 + 0.666667 -0.590529 0.411454 0.694248 -0.340172 + 0.733333 -0.564341 0.436909 0.70045 -0.378404 + 0.8 -0.63173 0.390682 0.669541 -0.35813 + 0.933333 -0.95559 -0.0269292 0.293466 -0.312809 + 1.0 -0.973996 -0.118527 0.19309 -0.321534 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.679649 -0.545587 -0.490318 -0.779021 + 0.0666667 -0.649123 -0.555897 -0.519247 -0.730404 + 0.133333 -0.547676 -0.500381 -0.670575 -0.615549 + 0.2 -0.31166 -0.228589 -0.922288 -0.428981 + 0.266667 -0.303932 -0.257735 -0.917168 -0.256653 + 0.333333 -0.300307 -0.270905 -0.914563 -0.20894 + 0.366667 -0.441217 -0.189685 -0.877124 -0.204116 + 0.4 -0.447531 -0.0933812 -0.889379 -0.233258 + 0.466667 0.354338 -0.295221 -0.887293 -0.402376 + 0.533333 0.220557 -0.491445 -0.842518 -1.01527 + 0.6 -0.00173132 -0.707619 -0.706592 -1.40566 + 0.666667 -0.248156 -0.667666 -0.701884 -1.51572 + 0.733333 -0.285115 -0.673567 -0.681921 -1.459 + 0.8 -0.368373 -0.678667 -0.635384 -1.31102 + 0.866667 -0.451424 -0.758873 -0.469392 -0.914784 + 0.933333 -0.628872 -0.599238 -0.495413 -0.829294 + 1.0 -0.678223 -0.545735 -0.492124 -0.780336 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.99782 0.00953721 -0.0653001 -2.12317 + 0.0666667 -0.997868 0.0107493 -0.0643721 -2.16395 + 0.133333 -0.997823 0.00960993 -0.0652444 -2.12559 + 0.2 -0.997301 -0.00107897 -0.0734197 -1.8045 + 0.266667 -0.996658 -0.0109486 -0.0809561 -1.56576 + 0.333333 -0.996514 -0.0128788 -0.0824287 -1.52477 + 0.366667 -0.996231 -0.0164571 -0.0851584 -1.4532 + 0.4 -0.996157 -0.0173641 -0.0858498 -1.43593 + 0.466667 -0.99733 -0.000570002 -0.0730307 -1.81824 + 0.533333 -0.998152 0.0197604 -0.0574689 -2.49474 + 0.6 -0.998197 0.0217508 -0.055943 -2.57386 + 0.666667 0.998201 -0.0219629 0.0557801 -3.70078 + 0.733333 0.998197 -0.0217541 0.0559402 -3.70919 + 0.8 -0.998176 0.0207962 -0.0566749 -2.53567 + 0.866667 -0.997994 0.0142742 -0.0616729 -2.28767 + 0.933333 -0.997898 0.0115354 -0.0637704 -2.19088 + 1.0 -0.99782 0.00953721 -0.0653001 -2.12317 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.371359 -0.292318 0.881273 -4.89517 + 0.0666667 -0.444407 -0.0955641 0.890713 -4.94829 + 0.133333 -0.310414 0.0188182 0.950415 -4.9599 + 0.2 -0.185663 0.102056 -0.977299 -1.67826 + 0.266667 -0.331308 0.11195 -0.936858 -2.1063 + 0.333333 -0.255765 0.0680267 -0.964343 -2.2426 + 0.366667 -0.360327 0.14022 -0.922227 -2.27667 + 0.4 -0.427818 0.191081 -0.883436 -2.25835 + 0.466667 -0.481041 0.166119 -0.860816 -1.97867 + 0.533333 -0.121881 0.00036629 -0.992545 -1.5585 + 0.6 0.0235463 0.0550007 0.998209 -4.61398 + 0.666667 -0.21824 0.0750477 0.973005 -4.51902 + 0.733333 -0.24625 0.0746302 0.966329 -4.55714 + 0.8 -0.301281 0.0501492 0.952216 -4.6531 + 0.866667 -0.252356 -0.10955 0.961413 -4.8768 + 0.933333 -0.359015 -0.233387 0.903681 -4.88729 + 1.0 -0.371359 -0.292318 0.881273 -4.89517 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 -2.59811e-007 + 1.0 0.0 0.0 0.0 -2.19001e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.000129379 1.0 -0.000136372 -6.19593 + 1.0 0.00012346 1.0 -0.000137056 -6.19593 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.533333 0.967311 0.23087 0.104922 -1.11297 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.533333 0.952311 0.212838 -0.218643 -0.988742 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.533333 0.651712 0.7417 -0.158594 -0.64965 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.533333 -0.714238 0.495298 0.494514 -5.9628 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.533333 0.737208 0.0773351 0.671225 -6.02541 + endlist + endnode + node trimesh tail07 + parent tail06 + endnode + node trimesh tail08 + parent tail07 + endnode + node trimesh tail09 + parent tail08 + endnode + node trimesh tail10 + parent tail09 + endnode + node trimesh tail11 + parent tail10 + endnode + node trimesh tail12 + parent tail11 + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim plparryr c_marilithe + + +#NWmax ANIM ASCII +newanim kdbck c_marilithe + length 1.0 + transtime 0.2 + animroot rootdummy + event 0.4 snd_hitground + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.00162281 -0.43031 1.04477 + 0.0333333 0.00162769 -0.43214 1.04498 + 0.0666667 0.00162513 -0.441728 1.10705 + 0.1 0.00162219 -0.460973 1.14879 + 0.133333 0.00161774 -0.49117 1.15493 + 0.166667 0.00161254 -0.519351 1.12568 + 0.2 0.00160877 -0.568306 1.02855 + 0.233333 0.00160869 -0.604362 0.914849 + 0.266667 0.0016065 -0.618867 0.80148 + 0.3 0.00161243 -0.623356 0.614748 + 0.333333 0.00161838 -0.610733 0.421582 + 0.366667 0.00161872 -0.602749 0.207565 + 0.4 0.00161908 -0.603034 0.103223 + 0.433333 0.00161943 -0.603319 0.245058 + 0.466667 0.0016198 -0.603603 0.320227 + 0.5 0.00162014 -0.603888 0.248514 + 0.533333 0.00162049 -0.604173 0.110412 + 0.566667 0.00162085 -0.604458 0.212601 + 0.6 0.0016212 -0.604743 0.227185 + 0.633333 0.00162156 -0.605027 0.170811 + 0.666667 0.00162188 -0.605312 0.115644 + 1.0 0.00162188 -0.605312 0.115644 + endlist + orientationkey + 0.0 -0.937239 0.252842 0.240114 -0.754568 + 0.1 -0.96768 0.157735 0.196762 -1.12055 + 0.2 -0.973682 0.155893 0.166254 -0.933449 + 0.233333 -0.97164 0.160707 0.17346 -0.79519 + 0.3 -0.993464 0.0924468 0.0669485 -1.24057 + 0.333333 -0.996744 0.0722859 0.0357292 -1.46676 + 0.366667 -0.99679 0.0720737 0.034869 -1.46461 + 0.4 -0.996835 0.071861 0.0340067 -1.46247 + 0.466667 -0.996923 0.0714338 0.0322757 -1.45817 + 0.533333 -0.997009 0.0710043 0.0305362 -1.45388 + 0.6 -0.997091 0.0705725 0.0287883 -1.4496 + 0.666667 -0.997171 0.0701384 0.0270317 -1.44531 + 1.0 -0.997171 0.0701384 0.0270317 -1.44531 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 -0.900925 -0.317607 0.295737 -0.264702 + 0.133333 -0.949207 -0.218074 0.226827 -0.365549 + 0.333333 -0.958586 -0.176652 0.223398 -0.657187 + 0.4 0.629095 -0.650707 0.425228 -0.241878 + 0.466667 0.922188 -0.339793 0.184689 -0.491202 + 0.533333 0.941319 -0.291398 0.170309 -0.562814 + 0.6 0.865156 -0.384148 0.322391 -0.380684 + 0.666667 0.927859 -0.286839 0.238329 -0.514096 + 0.866667 0.962354 -0.226065 0.150894 -0.712624 + 1.0 0.954308 -0.242602 0.174473 -0.645706 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.762145 0.634983 -0.126221 -0.743419 + 0.133333 -0.290643 0.952723 -0.0885764 -1.20308 + 0.233333 -0.591087 0.712628 0.377859 -1.09672 + 0.333333 0.663111 -0.747413 -0.0407275 -5.35071 + 0.4 0.393125 0.886468 -0.244186 -1.35958 + 0.466667 0.585125 0.795782 0.156078 -1.03399 + 0.533333 0.503479 0.826097 0.253125 -1.23691 + 0.6 0.830976 0.517889 -0.203151 -1.61216 + 0.666667 0.794717 0.600629 -0.0875743 -1.54965 + 0.866667 0.810209 0.585995 0.0130662 -1.38707 + 1.0 0.81711 0.576468 0.00409324 -1.38873 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.972116 -0.118469 -0.202374 -0.793857 + 0.133333 -0.95202 -0.131952 -0.276128 -0.461776 + 0.233333 0.909016 0.330816 0.253476 -5.49629 + 0.333333 0.676401 0.694811 0.244375 -5.55895 + 0.4 -0.947817 -0.27029 -0.169077 -1.23571 + 0.466667 -0.936536 -0.350533 -0.00515863 -0.655907 + 0.533333 -0.988705 -0.14868 -0.0188807 -1.44425 + 0.6 -0.991835 -0.0517583 0.116552 -1.38479 + 0.666667 -0.993516 -0.056258 0.0987957 -1.58641 + 0.866667 -0.992936 -0.0546148 0.105331 -1.5068 + 1.0 -0.993158 -0.0552898 0.102857 -1.5353 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -0.751169 0.655254 0.0799204 -6.11866 + 0.133333 0.271523 -0.530768 0.802845 -5.8172 + 0.233333 -0.430125 -0.194948 0.881469 -5.54261 + 0.333333 -0.652298 -0.515818 0.555373 -4.71593 + 0.4 0.943935 0.31224 -0.107201 -1.09313 + 0.466667 0.526696 0.497131 -0.68953 -1.10981 + 0.533333 0.521119 0.277422 -0.807138 -1.5505 + 0.6 0.616701 0.666702 -0.418555 -1.30576 + 0.666667 0.645272 0.502043 -0.575827 -1.36043 + 0.866667 0.537561 0.598059 -0.594435 -1.3291 + 1.0 0.551376 0.559729 -0.618618 -1.38297 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 -6.28319 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.999821 -0.0164869 -0.0092501 -0.561383 + 0.3 -0.997373 -0.0464362 -0.0555972 -0.501046 + 0.333333 0.98753 0.0771508 0.137229 -6.03682 + 0.366667 -0.94953 -0.123417 -0.288378 -0.132005 + 0.466667 -0.993261 -0.0512087 -0.103976 -0.436609 + 0.6 0.987234 -0.000575103 -0.159273 -0.377418 + 0.666667 0.970596 0.00450936 -0.240673 -0.286553 + 0.866667 0.986801 0.0121291 -0.16148 -0.423356 + 1.0 0.970596 0.00450926 -0.240673 -0.286553 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.726489 0.220371 -0.650885 -0.18725 + 0.3 -0.667473 -0.376286 0.642564 -6.1417 + 0.333333 -0.989496 -0.110177 0.0935855 -5.55129 + 0.366667 0.991991 0.101903 -0.0746301 -0.829243 + 0.433333 -0.923412 0.170623 -0.3438 -0.259112 + 0.466667 -0.826621 0.283694 -0.48602 -0.172252 + 0.533333 0.987435 0.125589 -0.0959148 -0.598285 + 0.6 0.950801 0.221121 -0.216986 -0.291838 + 0.666667 0.889805 0.320768 -0.324585 -0.180704 + 0.866667 -0.945768 0.177688 -0.271938 -0.254192 + 1.0 0.889805 0.320768 -0.324585 -0.180704 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.114553 -0.977863 -0.175102 -0.679359 + 0.133333 0.0180259 -0.995044 -0.0977869 -1.02586 + 0.166667 0.244454 -0.96302 0.113287 -1.33872 + 0.233333 0.219125 -0.973887 0.0594034 -1.58428 + 0.333333 -0.293337 0.82013 -0.491263 -4.67679 + 0.4 0.497326 -0.83965 -0.218301 -1.26467 + 0.466667 0.574552 -0.548967 -0.607062 -1.33523 + 0.533333 0.626608 -0.620708 -0.471258 -1.47712 + 0.6 0.784169 -0.502421 -0.364214 -1.34134 + 0.666667 0.668099 -0.541457 -0.51036 -1.40678 + 0.866667 0.492474 -0.553777 -0.671417 -1.36569 + 1.0 0.482416 -0.544393 -0.68623 -1.4242 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.862507 -0.213155 -0.458963 -0.824071 + 0.133333 -0.86849 -0.191583 -0.457189 -0.779711 + 0.166667 -0.924307 -0.116758 -0.36335 -0.868933 + 0.233333 -0.978955 0.00725974 -0.203946 -1.14093 + 0.333333 0.96701 -0.127962 0.220268 -5.85844 + 0.4 -0.994618 0.0993754 0.0293101 -0.923898 + 0.466667 -0.8858 0.353271 0.300929 -0.32743 + 0.533333 -0.995254 0.0510022 0.0828727 -1.15149 + 0.6 -0.994375 0.0604694 0.0869536 -0.627893 + 0.666667 -0.997598 -0.0140889 0.0678253 -0.929044 + 0.866667 -0.995681 -0.00748602 0.0925396 -0.681656 + 1.0 -0.996579 -0.0103053 0.0819959 -0.769936 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -1.0 -6.93211e-006 3.95006e-006 -0.0718084 + 0.1 -0.606045 -0.0981973 -0.789346 -5.43498 + 0.133333 -0.5755 0.0533259 -0.816061 -5.39513 + 0.166667 -0.962443 0.0081142 -0.271363 -5.61392 + 0.233333 -0.976957 -0.011392 0.213131 -5.26372 + 0.333333 -0.884381 0.462543 0.0626469 -5.58781 + 0.4 0.633356 -0.250352 0.732246 -1.00657 + 0.466667 -0.0465996 -0.449585 0.892021 -1.02945 + 0.533333 0.454069 -0.195823 0.86918 -0.949142 + 0.6 0.125493 -0.611611 0.781142 -0.968004 + 0.666667 0.245253 -0.348926 0.90449 -0.976664 + 0.866667 -0.0178652 -0.405501 0.91392 -1.03419 + 1.0 0.0283157 -0.309323 0.950535 -1.10566 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.996492 -0.073262 0.0404492 -2.12831e-006 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 6.34618e-006 -1.0 -5.0984e-005 -0.0698111 + 0.466667 0.0403916 -0.0747138 0.996387 -1.05178 + 0.6 0.0370457 -0.0935755 0.994923 -0.864284 + 1.0 0.0393538 -0.0705562 0.996731 -1.10541 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.549893 -0.767547 -0.329378 -0.191247 + 0.1 -0.393859 0.12091 -0.911184 -0.510683 + 0.233333 -0.168697 0.421038 -0.891217 -0.850187 + 0.333333 -0.341665 0.473596 -0.811771 -0.875927 + 0.4 -0.743589 0.476497 -0.46907 -1.08318 + 0.5 -0.533178 0.402565 -0.744085 -0.709063 + 0.666667 -0.533178 0.402565 -0.744085 -0.709063 + 1.0 -0.326494 0.372312 -0.868784 -0.64875 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.893977 0.436811 0.100007 -0.451 + 0.1 0.779141 0.441824 -0.444668 -0.647563 + 0.233333 0.481291 0.433001 -0.762148 -0.572673 + 0.333333 0.250469 0.831199 -0.49636 -0.555693 + 0.5 0.766903 0.345095 -0.541082 -0.476139 + 0.666667 0.766903 0.345095 -0.541082 -0.476139 + 1.0 0.766903 0.345095 -0.541082 -0.476139 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.987304 0.103647 -0.120368 -1.36906 + 0.1 0.962466 0.267821 0.0439338 -1.20235 + 0.233333 0.976466 0.202689 0.0737036 -0.752976 + 0.333333 0.74272 0.667319 0.0552405 -0.551299 + 0.5 0.572244 -0.323572 0.75355 -0.301748 + 0.666667 0.572244 -0.323572 0.75355 -0.301748 + 1.0 0.0888648 -0.0216677 0.995808 -0.349975 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.809447 0.587012 -0.0145794 -0.712722 + 0.1 0.834887 0.514906 0.194514 -0.643039 + 0.233333 0.373486 0.847124 0.378008 -0.36671 + 0.333333 -0.496595 0.0942671 0.862848 -0.396769 + 0.5 -0.0892973 -0.995713 -0.0241213 -0.426541 + 0.666667 -0.0892969 -0.995713 -0.0241213 -0.426541 + 1.0 -0.391458 -0.912575 0.118182 -0.414796 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.35153 -0.900114 -0.257336 -0.400134 + 0.1 0.370201 -0.915388 -0.158165 -0.381909 + 0.233333 0.849537 -0.520428 -0.0862606 -0.713022 + 0.333333 -0.502548 0.725319 0.470486 -5.897 + 0.5 -0.162264 -0.911698 -0.37746 -0.459472 + 0.666667 -0.162264 -0.911698 -0.37746 -0.459472 + 1.0 -0.191443 -0.905066 -0.379743 -0.456496 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.26605 -0.715222 -0.646278 -0.246402 + 0.1 0.257127 -0.726584 -0.637151 -0.194296 + 0.233333 0.805953 -0.546442 -0.227684 -0.32219 + 0.333333 0.960104 0.0918059 -0.264145 -0.3946 + 0.5 -0.117817 -0.817577 0.563637 -0.943675 + 0.666667 -0.117816 -0.817577 0.563637 -0.943675 + 1.0 -0.151707 -0.82077 0.550747 -0.929762 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 0.685432 -0.460521 -0.564006 -0.39246 + 0.1 0.685433 -0.46052 -0.564005 -0.39246 + 0.233333 0.76253 -0.473974 -0.440337 -0.44248 + 0.333333 0.865813 -0.314811 -0.388925 -0.449686 + 0.5 0.0758175 -0.772017 0.631064 -0.732037 + 0.666667 0.0758184 -0.772017 0.631064 -0.732038 + 1.0 0.19999 -0.861486 0.466741 -0.922653 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.886226 -0.256627 -0.385676 -0.571995 + 0.1 0.886227 -0.256622 -0.385676 -0.571986 + 0.233333 0.527605 0.312225 -0.790031 -0.408401 + 0.333333 0.527616 0.31223 -0.790021 -0.408398 + 0.5 0.829125 -0.398341 -0.39227 -0.233154 + 0.666667 0.829125 -0.398342 -0.392269 -0.233154 + 1.0 0.737462 -0.659063 -0.147598 -0.601034 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.853342 0.512881 -0.0935945 -5.69563 + 0.1 0.853359 -0.51286 0.0935523 -0.58753 + 0.233333 0.898543 -0.42363 0.114706 -0.467833 + 0.266667 0.992514 -0.120613 0.0191767 -0.557072 + 0.333333 0.854452 -0.519086 0.0214544 -0.419314 + 0.5 0.848922 -0.526118 0.0503037 -0.46485 + 0.666667 0.848922 -0.526118 0.0503041 -0.46485 + 1.0 -0.780802 0.624657 0.0123381 -5.5771 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.700806 0.666806 -0.253458 -5.67759 + 0.1 -0.700803 0.666814 -0.253445 -5.6776 + 0.233333 0.627366 -0.598955 0.49766 -0.364514 + 0.266667 0.771128 -0.0880351 0.630564 -0.389535 + 0.333333 0.299169 -0.257671 0.918751 -0.288687 + 0.5 0.476369 -0.460218 0.749181 -0.329687 + 0.666667 0.476371 -0.460218 0.74918 -0.329688 + 1.0 -0.476413 0.460053 -0.749254 -5.95354 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.808713 0.479706 -0.340391 -5.6445 + 0.1 -0.808648 0.479769 -0.340455 -5.64446 + 0.233333 -0.585262 0.371544 -0.720711 -5.93177 + 0.3 0.535057 0.491983 0.68678 -0.412698 + 0.333333 0.29867 -0.228058 0.926707 -0.331136 + 0.5 0.513397 -0.360974 0.778538 -0.369891 + 0.666667 0.513402 -0.360975 0.778534 -0.369892 + 1.0 -0.513486 0.360579 -0.778662 -5.91337 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.290597 -0.926691 0.238322 -0.250385 + 0.1 -0.289667 0.927124 -0.237768 -6.03273 + 0.233333 -0.289668 0.927456 -0.23647 -6.03281 + 0.3 0.901565 0.198613 0.384361 -0.205906 + 0.333333 0.596242 -0.800366 0.0625223 -0.326368 + 0.5 0.54837 -0.832665 0.077195 -0.316961 + 0.666667 0.548389 -0.832655 0.0771671 -0.316961 + 1.0 -0.548061 0.832809 -0.0778333 -5.96628 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim kdbck c_marilithe + + +#NWmax ANIM ASCII +newanim kdbckps c_marilithe + length 1.0 + transtime 0.5 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.00162188 -0.605312 0.115644 + 0.166667 0.00162188 -0.605312 0.115644 + 1.0 0.00162188 -0.605312 0.115644 + endlist + orientationkey + 0.0 -0.997171 0.0701384 0.0270317 -1.44531 + 0.166667 -0.997171 0.0701384 0.0270317 -1.44531 + 1.0 -0.997171 0.0701384 0.0270317 -1.44531 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.954308 -0.242602 0.174473 -0.645706 + 0.0666667 0.954783 -0.241677 0.173149 -0.649136 + 0.5 0.961103 -0.228773 0.154741 -0.700774 + 0.566667 0.961475 -0.227974 0.153604 -0.704228 + 0.633333 0.960987 -0.229021 0.155094 -0.699712 + 0.933333 0.954929 -0.241393 0.172744 -0.650192 + 1.0 0.954308 -0.242602 0.174473 -0.645706 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.81711 0.576468 0.00409328 -1.38873 + 0.0666667 0.8177 0.575627 0.00449387 -1.38864 + 0.5 0.820135 0.572048 0.0118331 -1.36723 + 0.566667 0.820193 0.57194 0.0129437 -1.36536 + 0.633333 0.820508 0.571531 0.0108842 -1.36915 + 0.933333 0.817969 0.575253 0.00325081 -1.38928 + 1.0 0.81711 0.576468 0.0040933 -1.38874 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.993158 -0.0552898 0.102857 -1.5353 + 0.0666667 -0.993157 -0.0553138 0.102859 -1.53488 + 0.5 -0.992966 -0.0547099 0.104997 -1.5105 + 0.566667 -0.992952 -0.0546498 0.105163 -1.50884 + 0.633333 -0.992976 -0.0547037 0.10491 -1.51196 + 0.933333 -0.993147 -0.0551329 0.103051 -1.53466 + 1.0 -0.993154 -0.055157 0.102969 -1.53555 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.551376 0.559728 -0.618618 -1.38297 + 0.0666667 0.550305 0.562345 -0.617197 -1.38203 + 0.5 0.533628 0.593591 -0.602405 -1.36276 + 0.566667 0.532219 0.59532 -0.601945 -1.36163 + 0.633333 0.534333 0.593645 -0.601725 -1.36305 + 0.933333 0.550629 0.563711 -0.61566 -1.38098 + 1.0 0.551376 0.559729 -0.618618 -1.38297 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.970596 0.00450931 -0.240673 -0.286553 + 0.0666667 0.972209 0.00515372 -0.234057 -0.294526 + 0.5 0.98627 0.0118294 -0.164714 -0.415251 + 0.566667 0.986804 0.0121389 -0.161463 -0.42335 + 0.633333 0.9861 0.0117317 -0.165739 -0.41276 + 0.933333 0.97268 0.00534489 -0.23209 -0.296982 + 1.0 0.970596 0.0045093 -0.240673 -0.286553 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.889805 0.320768 -0.324585 -0.180704 + 0.0666667 0.86855 0.345043 -0.355762 -0.166234 + 0.5 -0.779853 0.367788 -0.506519 -0.130469 + 0.566667 -0.822678 0.329623 -0.463195 -0.143623 + 0.633333 -0.763956 0.380662 -0.521026 -0.126576 + 0.933333 0.860847 0.35322 -0.366303 -0.161857 + 1.0 0.889804 0.320768 -0.324586 -0.180704 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.99992 0.00579403 -0.0112683 -1.12145e-006 + 1.0 0.999994 0.00239918 -0.00253022 -2.24291e-006 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.482415 -0.544362 -0.686255 -1.42425 + 0.0666667 0.481882 -0.544495 -0.686524 -1.42248 + 0.5 0.474942 -0.549447 -0.687414 -1.39009 + 0.566667 0.473577 -0.549824 -0.688054 -1.38858 + 0.633333 0.474212 -0.549254 -0.688072 -1.39161 + 0.933333 0.482264 -0.543882 -0.686742 -1.42273 + 1.0 0.482338 -0.543475 -0.687012 -1.4258 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.996579 -0.0103054 0.0819959 -0.769936 + 0.0666667 -0.996545 -0.0101896 0.0824291 -0.765883 + 0.5 -0.995879 -0.00807587 0.0903342 -0.698483 + 0.566667 -0.995822 -0.00790449 0.0909757 -0.693506 + 0.633333 -0.99589 -0.00811037 0.0902055 -0.699486 + 0.933333 -0.996533 -0.0101503 0.0825762 -0.764516 + 1.0 -0.996579 -0.0103055 0.081996 -0.769936 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.0283155 -0.309323 0.950535 -1.10566 + 0.0666667 0.0256564 -0.312813 0.949468 -1.10334 + 0.5 -0.016392 -0.37047 0.9287 -1.06658 + 0.566667 -0.0199056 -0.373541 0.9274 -1.06519 + 0.633333 -0.0160597 -0.368462 0.929504 -1.06824 + 0.933333 0.0251337 -0.314583 0.948897 -1.10176 + 1.0 0.0283156 -0.309323 0.950535 -1.10566 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.99999 -0.00432568 -0.0010717 -2.4127e-006 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.0393537 -0.070556 0.996731 -1.10541 + 0.0666667 0.0393542 -0.0705557 0.996731 -1.10541 + 0.5 0.0393547 -0.0705554 0.996731 -1.10541 + 0.566667 0.0393556 -0.0705549 0.996731 -1.10541 + 0.633333 0.0393537 -0.0705561 0.996731 -1.10541 + 0.933333 0.0393539 -0.070556 0.996731 -1.10541 + 1.0 0.039354 -0.0705559 0.996731 -1.10541 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.326494 0.372312 -0.868784 -0.64875 + 0.5 -0.158094 0.704893 -0.691471 -0.776318 + 1.0 -0.326494 0.372312 -0.868784 -0.64875 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.766903 0.345095 -0.541082 -0.476139 + 0.5 0.772484 0.427753 -0.469357 -0.543762 + 1.0 0.766903 0.345095 -0.541082 -0.476139 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.0888644 -0.0216672 0.995808 -0.349975 + 0.5 -0.250647 -0.458758 0.852477 -0.379622 + 1.0 0.0888638 -0.0216671 0.995808 -0.349975 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 -0.391458 -0.912575 0.118182 -0.414795 + 0.5 -0.40044 -0.916184 0.0159588 -0.6799 + 1.0 -0.391459 -0.912575 0.118182 -0.414795 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.191444 -0.905066 -0.379743 -0.456496 + 0.5 -0.255868 -0.911202 -0.322866 -0.633942 + 1.0 -0.191443 -0.905066 -0.379743 -0.456496 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.151707 -0.82077 0.550747 -0.929761 + 0.5 -0.151657 -0.891464 0.426957 -1.06516 + 1.0 -0.151707 -0.82077 0.550747 -0.929762 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 0.19999 -0.861486 0.46674 -0.922653 + 0.5 0.199991 -0.861485 0.466741 -0.922654 + 1.0 0.199991 -0.861485 0.466741 -0.922654 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.737461 -0.659064 -0.147598 -0.601034 + 0.5 0.77726 -0.58691 -0.226721 -0.399053 + 1.0 0.737461 -0.659064 -0.147598 -0.601034 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.780802 0.624656 0.0123382 -5.5771 + 0.5 -0.0935251 -0.908258 -0.407823 -6.04924 + 1.0 -0.780802 0.624657 0.0123383 -5.5771 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.476413 0.460053 -0.749254 -5.95354 + 0.5 -0.541455 0.414219 0.731607 -0.476348 + 1.0 -0.476413 0.460053 -0.749254 -5.95354 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.513486 0.36058 -0.778662 -5.91337 + 0.5 -0.565202 0.109848 0.817606 -0.44288 + 1.0 -0.513487 0.36058 -0.778661 -5.91337 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.548061 0.832809 -0.0778327 -5.96628 + 0.5 -0.985524 -0.155862 0.0667111 -0.593963 + 1.0 -0.548061 0.832809 -0.0778328 -5.96628 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim kdbckps c_marilithe + + +#NWmax ANIM ASCII +newanim kdbckdmg c_marilithe + length 0.333333 + transtime 0.2 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.00162541 -0.608028 0.246377 + 0.333333 0.00162188 -0.605312 0.115644 + endlist + orientationkey + 0.0 -0.991604 0.0982015 0.0841299 -0.681886 + 0.333333 -0.997171 0.0701384 0.0270317 -1.44531 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.820548 -0.250773 0.513628 -0.215855 + 0.166667 0.0834245 -0.600101 0.795562 -0.19057 + 0.333333 0.954308 -0.242602 0.174473 -0.645706 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.49543 0.866988 0.0536809 -0.966846 + 0.166667 0.750853 0.659961 0.0259037 -1.43783 + 0.266667 0.77376 0.62622 0.0956235 -1.35431 + 0.333333 0.81711 0.576468 0.00409331 -1.38873 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.939851 0.17137 0.295486 -0.744912 + 0.166667 -0.994152 -0.0581879 0.0909747 -1.69093 + 0.266667 -0.993594 -0.056434 0.0979096 -1.59832 + 0.333333 -0.993154 -0.0551583 0.102967 -1.53556 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.928078 -0.36325 -0.0819835 -0.666918 + 0.166667 0.569179 0.396236 -0.720439 -1.78187 + 0.266667 0.520158 0.503713 -0.689716 -1.4688 + 0.333333 0.551376 0.559728 -0.618618 -1.38297 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.998913 0.0389373 -0.0256171 -3.53456e-006 + 0.166667 0.0 0.0 0.0 -1.93141e-007 + 0.333333 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.97285 -0.0619697 -0.222987 -0.442184 + 0.1 0.527005 -0.059143 -0.847802 -0.100112 + 0.233333 -0.972961 -0.063187 -0.222159 -0.287891 + 0.333333 0.970596 0.00450926 -0.240673 -0.286553 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.94793 -0.146735 -0.282662 -0.232505 + 0.1 0.940248 0.0674153 -0.33375 -0.193852 + 0.233333 -0.954096 0.162403 -0.251646 -0.270208 + 0.333333 0.889805 0.320768 -0.324585 -0.180704 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.333333 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.305414 -0.748368 -0.588785 -0.913613 + 0.166667 0.468078 -0.573956 -0.67192 -1.57735 + 0.233333 0.464979 -0.554249 -0.690364 -1.55337 + 0.333333 0.482326 -0.542826 -0.687533 -1.4269 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.85191 -0.516769 -0.0848434 -0.649909 + 0.166667 -0.997791 -0.0149109 0.064743 -0.972048 + 0.233333 -0.997481 -0.0136105 0.0696196 -0.905601 + 0.333333 -0.996579 -0.0103055 0.0819961 -0.769936 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.0 0.0 0.0 -1.63234e-007 + 0.166667 0.0183315 -0.271059 0.962388 -1.55331 + 0.233333 -0.05572 -0.271358 0.960864 -1.14984 + 0.333333 0.0283156 -0.309323 0.950535 -1.10566 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.986503 0.124488 0.106371 -3.60103e-007 + 0.166667 0.997256 0.0738512 0.00520972 -7.32434e-007 + 0.333333 0.99952 0.0181099 0.0251503 -1.51436e-006 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.0172084 -0.388093 0.92146 -0.213903 + 0.166667 0.0372754 -0.0744211 0.99653 -1.04132 + 0.333333 0.0393539 -0.0705559 0.996731 -1.10541 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.896021 0.330986 -0.295964 -1.19906 + 0.333333 -0.918393 0.189726 -0.347215 -0.687509 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.766223 0.346901 -0.54089 -0.47541 + 0.333333 0.742921 0.613317 -0.268163 -0.802748 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.477922 -0.223701 0.84944 -0.3041 + 0.333333 0.869546 -0.311671 0.38308 -0.526613 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 -0.236846 -0.970345 0.0483239 -0.410011 + 0.333333 -0.0821847 -0.932231 -0.352407 -0.536713 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.118174 -0.919808 -0.37415 -0.462392 + 0.333333 -0.284555 -0.921273 -0.265111 -0.6775 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.165542 -0.75926 0.62938 -0.872614 + 0.333333 0.0689348 -0.994134 0.0833352 -0.89761 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.0973494 -0.714688 0.692636 -0.663041 + 0.333333 0.277331 -0.945995 0.167874 -0.626126 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.586276 -0.347016 -0.732025 -0.203667 + 0.333333 0.337942 -0.671342 -0.659617 -0.498629 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 0.260856 0.793469 0.549873 -0.281605 + 0.333333 0.115132 -0.968778 0.219574 -5.77502 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.544468 0.526123 0.653261 -0.415893 + 0.333333 0.228496 -0.972884 0.0358736 -5.63877 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.473631 0.160847 0.865911 -0.349136 + 0.333333 -0.425208 0.898045 0.112752 -0.552965 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.961624 -0.270666 -0.0449312 -0.332155 + 0.333333 -0.961895 0.107075 -0.251581 -0.61679 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim kdbckdmg c_marilithe + + +#NWmax ANIM ASCII +newanim kdbckdie c_marilithe + length 1.0 + transtime 0.25 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.00162188 -0.605312 0.115644 + 0.166667 0.00162188 -0.605312 0.115644 + 0.3 0.00162188 -0.605312 0.115644 + 0.433333 0.00162188 -0.605312 0.115644 + 0.633333 0.00160438 -0.607184 0.115779 + 1.0 0.00160438 -0.607184 0.115779 + endlist + orientationkey + 0.0 -0.997171 0.0701384 0.0270317 -1.44531 + 0.166667 -0.997171 0.0701384 0.0270317 -1.44531 + 0.3 -0.997171 0.0701384 0.0270317 -1.44531 + 0.433333 -0.997171 0.0701384 0.0270317 -1.44531 + 0.633333 -0.998373 0.0561073 0.0102064 -1.72152 + 1.0 -0.998373 0.0561073 0.0102064 -1.72152 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.954308 -0.242602 0.174473 -0.645706 + 0.166667 0.948785 -0.186565 -0.254951 -0.891973 + 0.3 0.989445 -0.100455 -0.104439 -1.00419 + 0.433333 0.989277 -0.10172 -0.104805 -0.995556 + 0.633333 0.925244 -0.366086 0.0995166 -0.289313 + 0.733333 0.965277 -0.256246 0.0507747 -0.421818 + 0.833333 0.925244 -0.366086 0.0995167 -0.289313 + 1.0 0.925244 -0.366086 0.0995167 -0.289313 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.81711 0.576468 0.00409324 -1.38873 + 0.166667 0.929033 0.368027 -0.038135 -1.27823 + 0.3 0.88111 0.472453 -0.0208331 -1.13219 + 0.433333 0.898818 0.437051 -0.0333583 -1.14276 + 0.533333 0.73951 0.662285 0.120433 -1.12501 + 0.633333 0.511172 0.692266 -0.509383 -1.32212 + 0.733333 0.523031 0.675816 -0.519338 -1.31929 + 0.833333 0.519707 0.682328 -0.514133 -1.32301 + 1.0 0.519707 0.682328 -0.514133 -1.32301 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.993154 -0.0551583 0.102967 -1.53556 + 0.166667 -0.987905 -0.0434505 0.14885 -1.11296 + 0.3 -0.987659 -0.0429616 0.15061 -1.10155 + 0.433333 -0.988455 -0.0444416 0.144849 -1.14218 + 0.533333 -0.99095 -0.0973841 0.0923831 -1.18276 + 0.633333 -0.937361 -0.285185 0.200061 -0.434705 + 0.733333 -0.937962 -0.283975 0.198963 -0.436849 + 0.833333 -0.933225 -0.292568 0.208554 -0.421579 + 1.0 -0.933225 -0.292568 0.208554 -0.421579 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.551376 0.559728 -0.618618 -1.38297 + 0.166667 0.381707 0.882274 -0.275486 -1.14364 + 0.3 0.338528 0.872431 -0.352509 -1.13997 + 0.433333 0.35911 0.871062 -0.335099 -1.1927 + 0.533333 0.551737 0.410891 -0.725779 -1.35215 + 0.633333 0.71422 0.326855 -0.618915 -0.872465 + 0.733333 0.70546 0.378035 -0.599513 -0.838574 + 0.833333 0.686436 0.277912 -0.67199 -0.925847 + 1.0 0.686436 0.277912 -0.67199 -0.925847 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.166667 0.0 0.0 0.0 0.0 + 0.3 0.992493 -0.0110922 -0.121797 -3.90854e-007 + 0.433333 0.998027 -0.00636947 -0.0624626 -4.91512e-007 + 0.633333 0.992781 -0.0852315 -0.0843859 -7.49219e-007 + 0.833333 0.996849 -0.023479 -0.0757706 -1.39212e-006 + 1.0 0.999774 -0.0186047 0.0102585 -2.6676e-006 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.970596 0.00450931 -0.240672 -0.286553 + 0.166667 0.890313 -0.0186253 -0.454968 -0.155283 + 0.3 0.972169 -0.00131422 -0.234276 -0.294423 + 0.433333 0.972169 -0.00131418 -0.234276 -0.294423 + 0.633333 0.673774 0.698709 0.240486 -0.322663 + 0.733333 -0.382029 0.910409 0.158772 -0.257718 + 0.833333 -0.011944 0.975585 0.219298 -0.238273 + 0.9 -0.245436 0.951464 0.185679 -0.246109 + 1.0 -0.245436 0.951464 0.185679 -0.246109 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.889805 0.320768 -0.324585 -0.180704 + 0.166667 -0.479064 0.0763665 -0.874452 -0.233712 + 0.3 0.291924 0.601165 -0.743896 -0.0858095 + 0.433333 0.641583 0.495026 -0.585936 -0.107014 + 0.633333 0.342973 0.503403 -0.793067 -0.386417 + 0.733333 -0.39575 0.530465 -0.749659 -0.559625 + 0.833333 -0.0422138 0.648165 -0.760329 -0.61237 + 0.9 -0.198043 0.595176 -0.77881 -0.669691 + 1.0 -0.198043 0.595176 -0.77881 -0.669691 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.999878 0.0156154 0.000489195 -4.29815e-007 + 1.0 0.999998 -0.0004122 -0.0017329 -7.62147e-007 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.482317 -0.542492 -0.687803 -1.42748 + 0.166667 0.349199 -0.679269 -0.645487 -1.26485 + 0.3 0.427191 -0.618058 -0.659934 -1.28169 + 0.433333 0.42712 -0.616828 -0.661129 -1.28649 + 0.533333 -0.154734 -0.521263 -0.839251 -1.48963 + 0.633333 -0.316237 -0.47023 -0.823941 -1.5521 + 0.733333 -0.180151 -0.453012 -0.873113 -1.83744 + 0.833333 -0.243953 -0.413047 -0.877427 -1.89938 + 0.933333 -0.272122 -0.394494 -0.877681 -1.9078 + 1.0 -0.26303 -0.399932 -0.877992 -1.90743 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.996579 -0.0103055 0.081996 -0.769936 + 0.166667 -1.0 -1.2516e-007 -2.45715e-007 -0.823083 + 0.3 -1.0 -2.85201e-007 0.0 -0.688284 + 0.433333 -1.0 -2.87186e-007 -2.61386e-007 -0.696808 + 0.533333 -1.0 -3.61003e-007 -2.96559e-007 -0.982361 + 0.633333 1.0 0.0 1.6668e-007 -5.37795 + 0.733333 1.0 0.0 1.57311e-007 -5.38749 + 0.833333 1.0 0.0 1.6226e-007 -5.35492 + 0.933333 1.0 0.0 0.0 -5.33141 + 1.0 1.0 2.64292e-007 1.2295e-007 -5.32861 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.0283156 -0.309323 0.950535 -1.10566 + 0.166667 -0.00445577 -0.354658 0.934986 -1.10311 + 0.3 -0.123951 -0.569019 0.812929 -0.971593 + 0.433333 -0.117266 -0.559071 0.820785 -0.976257 + 0.533333 -0.147758 0.208844 -0.966722 -5.19878 + 0.633333 -0.163619 0.426352 -0.889636 -5.4919 + 0.733333 0.497611 0.0671049 0.864801 -5.69106 + 0.833333 0.784028 0.209024 0.584474 -5.98416 + 0.933333 0.601725 0.518107 0.607859 -5.94012 + 1.0 0.646976 0.331652 0.686607 -5.95792 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.999752 0.00284865 -0.0220922 -2.03574e-006 + 1.0 -0.967467 -0.0931223 -0.235236 -6.28318 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.039354 -0.0705561 0.996731 -1.10541 + 0.3 0.0361512 -0.0963729 0.994689 -0.825335 + 0.433333 0.0363429 -0.0956637 0.99475 -0.836193 + 0.533333 -0.0402148 0.0266474 -0.998836 -4.20454 + 0.633333 -0.0411687 0.00896071 -0.999112 -3.46351 + 0.733333 -0.0408946 0.0140683 -0.999064 -3.69733 + 0.833333 -0.0412331 0.00775917 -0.999119 -3.40693 + 1.0 -0.0412578 0.00729669 -0.999122 -3.38504 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.918393 0.189726 -0.347215 -0.687509 + 0.333333 -0.961515 -0.146302 -0.232562 -0.806529 + 0.666667 -0.891844 -0.417084 -0.175087 -0.908399 + 0.833333 -0.637899 -0.6352 -0.435438 -0.849047 + 1.0 0.424083 -0.882795 0.202055 -0.705492 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.742921 0.613317 -0.268163 -0.802748 + 0.333333 -0.412911 -0.873547 0.25772 -5.68703 + 0.666667 -0.659573 -0.714049 0.234728 -5.67243 + 1.0 0.0792825 0.629918 -0.772604 -0.707202 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.869547 -0.311671 0.38308 -0.526613 + 0.333333 0.731947 -0.0406064 0.68015 -0.422006 + 0.666667 -0.916047 -0.317083 -0.245595 -5.82951 + 1.0 0.597915 0.733127 -0.324072 -0.855418 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 -0.082185 -0.932231 -0.352407 -0.536713 + 0.333333 0.703216 -0.395026 -0.591136 -0.471237 + 0.666667 0.743927 0.358226 -0.564133 -0.317745 + 1.0 0.550803 0.41454 -0.724412 -0.859487 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.284555 -0.921273 -0.265111 -0.6775 + 0.333333 0.532147 -0.783308 -0.321323 -0.515843 + 0.666667 0.78646 -0.41179 -0.460336 -0.391017 + 1.0 0.93343 0.285002 -0.217904 -0.370649 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 0.0689347 -0.994134 0.0833352 -0.89761 + 0.333333 0.358748 -0.906152 0.224029 -0.577639 + 0.666667 0.925005 -0.379912 -0.00571105 -0.375071 + 1.0 0.922301 0.0231716 -0.385777 -0.207321 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 0.277331 -0.945995 0.167874 -0.626126 + 0.333333 0.0568238 -0.996705 -0.0578849 -0.518044 + 0.666667 -0.562713 -0.825973 -0.0334956 -0.539898 + 1.0 0.866738 -0.396915 0.302033 -0.526506 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.337942 -0.671342 -0.659617 -0.498629 + 0.333333 0.11227 -0.513675 -0.850608 -0.560358 + 0.666667 -0.610195 -0.376314 -0.697173 -0.645432 + 1.0 0.421655 0.0474993 0.905511 -0.413529 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 0.115132 -0.968778 0.219575 -5.77502 + 0.333333 -0.144097 0.941601 -0.304343 -0.236959 + 0.666667 -0.731352 -0.015988 -0.681813 -0.160902 + 1.0 0.198526 0.275344 0.940624 -0.972449 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 0.228496 -0.972884 0.0358742 -5.63877 + 0.333333 -0.175341 0.984359 0.0170823 -0.318813 + 0.666667 -0.748252 0.441878 -0.494837 -0.114896 + 1.0 -0.529804 -0.825384 -0.19506 -5.80221 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.425207 0.898046 0.112753 -0.552965 + 0.333333 -0.208018 0.959721 0.188849 -0.336292 + 0.666667 -0.654523 0.655471 -0.376772 -0.4478 + 1.0 0.0855014 -0.734335 -0.673381 -6.11894 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.961895 0.107075 -0.251581 -0.61679 + 0.333333 -0.899118 0.347694 -0.265889 -0.42666 + 0.666667 0.798523 -0.514414 0.312633 -5.59385 + 1.0 0.141527 -0.97354 0.179418 -5.93726 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim kdbckdie c_marilithe + + +#NWmax ANIM ASCII +newanim deadbck c_marilithe + length 0.0333333 + transtime 0.5 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.00160438 -0.607184 0.115779 + 0.0333333 0.00160438 -0.607184 0.115779 + endlist + orientationkey + 0.0 -0.998373 0.0561073 0.0102064 -1.72152 + 0.0333333 -0.998373 0.0561073 0.0102064 -1.72152 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.925244 -0.366086 0.0995167 -0.289313 + 0.0333333 0.925244 -0.366086 0.0995167 -0.289313 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.519707 0.682328 -0.514133 -1.32301 + 0.0333333 0.519707 0.682328 -0.514133 -1.32301 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.933225 -0.292568 0.208554 -0.421579 + 0.0333333 -0.933225 -0.292568 0.208554 -0.421579 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.686436 0.277912 -0.67199 -0.925847 + 0.0333333 0.686436 0.277912 -0.67199 -0.925847 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.0333333 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.245436 0.951464 0.185679 -0.246109 + 0.0333333 -0.245436 0.951464 0.185679 -0.246109 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.198043 0.595176 -0.77881 -0.669691 + 0.0333333 -0.198043 0.595176 -0.77881 -0.669691 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.999998 -0.000843351 -0.00173623 -3.03984e-006 + 0.0333333 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.26303 -0.399932 -0.877992 -1.90743 + 0.0333333 -0.263015 -0.399932 -0.877996 -1.9075 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 1.0 0.0 0.0 -5.32861 + 0.0333333 1.0 1.21181e-007 0.0 -5.32861 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.646976 0.331652 0.686607 -5.95792 + 0.0333333 0.646976 0.331652 0.686607 -5.95792 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 -6.28319 + 0.0333333 0.0 0.0 0.0 -6.28319 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0412576 0.00729667 -0.999122 -3.38504 + 0.0333333 -0.0412577 0.0072964 -0.999122 -3.38504 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 0.424083 -0.882795 0.202055 -0.705492 + 0.0333333 0.424083 -0.882795 0.202055 -0.705492 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.0792821 0.629919 -0.772604 -0.707202 + 0.0333333 0.0792823 0.629919 -0.772604 -0.707202 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.597915 0.733127 -0.324072 -0.855418 + 0.0333333 0.597915 0.733127 -0.324072 -0.855418 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.550802 0.41454 -0.724413 -0.859487 + 0.0333333 0.550802 0.41454 -0.724413 -0.859487 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.93343 0.285002 -0.217904 -0.370649 + 0.0333333 0.93343 0.285002 -0.217904 -0.370649 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 0.922301 0.0231717 -0.385777 -0.207321 + 0.0333333 0.922301 0.0231716 -0.385778 -0.207321 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 0.866738 -0.396915 0.302032 -0.526506 + 0.0333333 0.866738 -0.396915 0.302032 -0.526506 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.421654 0.0474993 0.905512 -0.413529 + 0.0333333 0.421655 0.0474992 0.905512 -0.413529 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 0.198526 0.275344 0.940624 -0.972449 + 0.0333333 0.198526 0.275344 0.940624 -0.972449 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.529804 -0.825384 -0.19506 -5.80221 + 0.0333333 -0.529804 -0.825384 -0.19506 -5.80221 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.0855005 -0.734336 -0.67338 -6.11894 + 0.0333333 0.0854995 -0.734336 -0.67338 -6.11894 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.141527 -0.973539 0.179419 -5.93726 + 0.0333333 0.141526 -0.97354 0.179419 -5.93726 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim deadbck c_marilithe + + +#NWmax ANIM ASCII +newanim gutokdb c_marilithe + length 1.0 + transtime 0.25 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.00160438 -0.607184 0.115779 + 0.266667 0.00160438 -0.607184 0.115779 + 0.6 0.00160438 -0.607184 0.115779 + 1.0 0.00162188 -0.605312 0.115644 + endlist + orientationkey + 0.0 -0.998373 0.0561073 0.0102064 -1.72152 + 0.266667 -0.998373 0.0561073 0.0102064 -1.72152 + 0.6 -0.998373 0.0561073 0.0102064 -1.72152 + 1.0 -0.997171 0.0701384 0.0270317 -1.44531 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.925244 -0.366086 0.0995167 -0.289313 + 0.266667 0.97262 -0.0496643 -0.227031 -0.72087 + 0.6 0.968747 -0.124602 0.214486 -1.04032 + 0.866667 0.962355 -0.226064 0.150892 -0.712624 + 1.0 0.954308 -0.242602 0.174473 -0.645706 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.519707 0.682328 -0.514133 -1.32301 + 0.133333 0.695836 0.585673 -0.415691 -1.51167 + 0.266667 0.898349 0.438106 -0.0321324 -1.34369 + 0.6 0.763314 0.644801 0.0397915 -1.32509 + 0.866667 0.81508 0.577683 0.0438995 -1.40635 + 1.0 0.81711 0.576468 0.00409327 -1.38873 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.933225 -0.292568 0.208554 -0.421579 + 0.133333 -0.986485 -0.106693 0.124355 -0.974145 + 0.266667 -0.990625 -0.0488247 0.127584 -1.28188 + 0.6 -0.993114 -0.0549496 0.103468 -1.53099 + 0.866667 -0.993346 -0.0555227 0.100905 -1.56339 + 1.0 -0.993145 -0.0550002 0.103141 -1.53548 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.686436 0.277912 -0.67199 -0.925847 + 0.133333 0.845721 0.384509 -0.370013 -1.07583 + 0.266667 0.554977 0.561123 -0.614119 -1.24698 + 0.6 0.519376 0.564001 -0.64199 -1.36516 + 0.866667 0.552085 0.529335 -0.64421 -1.38966 + 1.0 0.551376 0.559729 -0.618618 -1.38297 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.266667 0.0 0.0 0.0 0.0 + 0.6 0.0 0.0 0.0 0.0 + 1.0 0.997131 0.00336088 0.0756217 -4.63615e-007 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.245436 0.951464 0.185679 -0.246109 + 0.266667 -0.736335 0.658478 0.15562 -0.226484 + 0.6 -0.178023 0.935708 0.304562 -0.154927 + 0.766667 -0.463843 0.849306 0.252051 -0.172125 + 1.0 0.970596 0.00450931 -0.240673 -0.286553 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.198043 0.595176 -0.77881 -0.669691 + 0.266667 -0.519481 0.0231519 -0.854168 -0.635242 + 0.6 0.85495 -0.477671 0.202214 -0.460647 + 0.766667 0.80847 -0.588464 -0.00931338 -0.397174 + 1.0 0.889804 0.320769 -0.324586 -0.180704 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.263015 -0.399932 -0.877996 -1.9075 + 0.266667 -0.231371 -0.44501 -0.865121 -1.77942 + 0.433333 -0.111398 -0.45555 -0.883213 -1.56519 + 0.6 0.512954 -0.533029 -0.672873 -1.30454 + 0.866667 0.473 -0.550313 -0.68806 -1.41822 + 1.0 0.482252 -0.540694 -0.689262 -1.43058 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 1.0 0.0 2.31382e-007 -5.32861 + 0.266667 1.0 0.0 2.47086e-007 -5.18723 + 0.433333 -0.99963 -0.0106777 0.0250032 -1.217 + 0.6 -0.991575 0.00243131 0.12951 -0.483876 + 0.866667 -0.996652 -0.0105525 0.0810719 -0.778718 + 1.0 -0.996579 -0.0103055 0.0819959 -0.769936 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.646976 0.331653 0.686607 -5.95792 + 0.266667 0.291328 0.282505 0.913958 -5.4605 + 0.433333 -0.34734 0.417117 -0.839862 -5.76541 + 0.6 -0.112114 -0.537097 0.836037 -0.971019 + 0.866667 0.0413169 -0.283884 0.957968 -1.13047 + 1.0 0.0283157 -0.309323 0.950535 -1.10566 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 -0.974545 0.174901 -0.140256 -6.28319 + 1.0 0.998278 -0.0436003 -0.039246 -8.52367e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0412578 0.00729666 -0.999122 -3.38504 + 0.266667 -0.0405377 0.0215078 -0.998946 -4.0081 + 0.433333 -0.0398662 0.0342216 -0.998619 -4.45023 + 0.6 0.0364525 -0.0947054 0.994838 -0.847477 + 1.0 0.0393539 -0.0705563 0.996731 -1.10541 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 0.424083 -0.882795 0.202055 -0.705492 + 0.3 -0.73588 -0.674021 -0.0646208 -0.608075 + 0.633333 -0.964153 -0.190857 -0.184345 -0.747285 + 0.8 -0.976606 -0.00858024 -0.214864 -0.821316 + 1.0 -0.918393 0.189726 -0.347215 -0.687509 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.0792824 0.629918 -0.772604 -0.707202 + 0.3 -0.197193 -0.708775 0.677313 -5.60536 + 1.0 0.742921 0.613317 -0.268163 -0.802748 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.597915 0.733127 -0.324072 -0.855418 + 0.3 0.642847 0.756947 -0.117383 -0.593348 + 1.0 0.869546 -0.311671 0.38308 -0.526613 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.550802 0.41454 -0.724413 -0.859487 + 0.3 0.495222 0.301907 -0.814621 -0.48259 + 1.0 -0.0821848 -0.932231 -0.352407 -0.536713 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.93343 0.285002 -0.217905 -0.370649 + 0.3 0.85734 -0.512134 0.0518466 -0.138926 + 1.0 -0.284555 -0.921273 -0.265111 -0.6775 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 0.9223 0.023172 -0.385779 -0.207321 + 0.133333 0.753983 0.523333 -0.397029 -0.110714 + 0.3 0.313182 -0.922286 0.226505 -0.260512 + 1.0 0.0689347 -0.994134 0.0833352 -0.89761 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 0.866738 -0.396915 0.302032 -0.526506 + 0.3 0.759139 -0.609855 0.227562 -0.531803 + 1.0 0.277331 -0.945995 0.167874 -0.626126 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.421655 0.0474992 0.905511 -0.413529 + 0.3 0.479901 0.844217 -0.238732 -0.609944 + 1.0 0.337941 -0.671342 -0.659618 -0.498629 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 0.198526 0.275344 0.940624 -0.972449 + 0.3 0.16558 0.485633 0.858338 -0.709345 + 1.0 0.115132 -0.968778 0.219575 -5.77502 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.529804 -0.825384 -0.195061 -5.80221 + 0.3 0.275392 0.953773 0.120319 -0.490311 + 1.0 0.228496 -0.972884 0.0358745 -5.63877 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.0855002 -0.734335 -0.673381 -6.11894 + 0.3 -0.303362 0.881012 0.363028 -0.265161 + 1.0 -0.425207 0.898046 0.112753 -0.552965 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.141526 -0.97354 0.179418 -5.93726 + 0.3 0.615435 -0.743241 0.262362 -5.93696 + 1.0 -0.961895 0.107075 -0.251581 -0.61679 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim gutokdb c_marilithe + + +#NWmax ANIM ASCII +newanim gustandb c_marilithe + length 1.0 + transtime 0.25 + animroot rootdummy + event 0.933333 snd_footstep + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.00162188 -0.605312 0.115644 + 0.2 0.00162541 -0.417414 0.256303 + 0.233333 0.00162549 -0.408959 0.272996 + 0.266667 0.00162549 -0.389197 0.312208 + 0.3 0.00162557 -0.363612 0.402743 + 0.333333 0.00162572 -0.32706 0.484131 + 0.366667 0.00162633 -0.252784 0.562009 + 0.4 0.00162648 -0.192265 0.599293 + 0.433333 0.00162648 -0.118066 0.622519 + 0.466667 0.00162663 -0.0764611 0.631075 + 0.533333 0.00162701 -0.0121309 0.634871 + 0.6 0.00162709 0.0328009 0.677934 + 0.666667 0.00162739 0.0476058 0.803866 + 0.733333 0.00162807 0.0197394 0.92174 + 0.8 0.00162875 -0.0233576 0.97333 + 0.866667 0.00162951 -0.0467806 0.997263 + 0.933333 0.00162981 -0.0445003 1.01141 + 1.0 0.00163011 -0.0319063 1.0153 + endlist + orientationkey + 0.0 -0.997171 0.0701384 0.0270317 -1.44531 + 0.2 -0.43476 -0.588875 0.681329 -0.289329 + 0.266667 -0.359126 -0.634213 0.684691 -0.289708 + 0.333333 -0.12745 -0.736248 0.664602 -0.303834 + 0.366667 0.243245 -0.799165 0.549697 -0.379276 + 0.4 0.395384 -0.718922 0.571684 -0.361905 + 0.533333 0.846305 -0.213145 0.488198 -0.40767 + 0.733333 0.798152 -0.000679382 0.602455 -0.349855 + 0.866667 0.720677 0.201117 0.663458 -0.327622 + 1.0 0.601938 0.362342 0.711604 -0.317222 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.954308 -0.242602 0.174473 -0.645706 + 0.2 0.880667 -0.251993 0.401156 -0.523491 + 0.3 0.602793 -0.568373 0.559993 -0.700448 + 0.4 0.641538 -0.621077 0.450214 -0.811731 + 0.533333 0.79091 -0.551648 0.26485 -0.444015 + 0.933333 0.87289 -0.42571 0.238397 -0.258303 + 1.0 0.882687 -0.407404 0.234277 -0.244461 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.81711 0.576468 0.00409327 -1.38873 + 0.1 0.715887 0.669844 0.197013 -0.965484 + 0.2 0.520404 0.853481 -0.0273726 -0.627604 + 0.233333 0.424314 0.844392 0.327047 -0.549231 + 0.266667 0.0245417 0.674636 0.737743 -0.532135 + 0.3 -0.321933 0.896048 0.305706 -0.589312 + 0.366667 -0.455644 0.816661 0.354193 -0.917528 + 0.4 -0.531353 0.728552 0.432291 -0.972016 + 0.466667 0.134495 0.968896 0.207731 -0.956779 + 0.633333 0.194807 0.970073 0.144941 -0.774525 + 0.733333 0.146064 0.985355 0.0879836 -0.624878 + 0.933333 -0.14744 0.958138 -0.245423 -0.310359 + 1.0 -0.235332 0.909742 -0.342036 -0.276643 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.993145 -0.0550004 0.103141 -1.53548 + 0.1 -0.997829 -0.0120993 0.0647379 -1.38395 + 0.2 -0.997794 0.0616483 0.0246438 -0.952355 + 0.233333 -0.974184 0.206631 -0.0909321 -1.0625 + 0.266667 -0.8778 0.391908 -0.275453 -1.03286 + 0.3 -0.437568 0.492041 -0.752616 -0.805248 + 0.366667 -0.342431 0.36208 -0.866971 -0.576749 + 0.4 -0.0827685 0.289001 -0.953744 -0.528788 + 0.466667 -0.768192 -0.207447 -0.605678 -0.677267 + 0.633333 -0.929401 -0.146903 -0.338575 -1.98818 + 0.733333 -0.947302 -0.139304 -0.288467 -1.81667 + 0.933333 -0.984191 -0.114429 -0.13518 -1.43105 + 1.0 -0.988143 -0.10968 -0.107442 -1.37842 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.551376 0.559729 -0.618618 -1.38297 + 0.1 0.382869 0.711252 -0.589518 -1.23587 + 0.2 0.0783798 0.985482 -0.150607 -1.17589 + 0.233333 0.0870444 0.944321 -0.317302 -1.08421 + 0.266667 -0.05056 0.909318 -0.413019 -0.981923 + 0.3 -0.0301063 0.993882 0.106262 -1.09201 + 0.366667 -0.974182 -0.175181 -0.142414 -0.355603 + 0.4 -0.929118 0.202531 -0.309389 -0.470821 + 0.466667 -0.828362 0.166812 0.534781 -0.311356 + 0.633333 0.578931 -0.377455 0.722749 -0.694994 + 0.733333 -0.360418 -0.575029 0.734466 -0.423589 + 0.933333 -0.731875 -0.235406 0.639486 -0.24762 + 1.0 -0.797372 -0.13717 0.587692 -0.232202 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.970596 0.00450935 -0.240673 -0.286553 + 0.1 -0.634738 0.223991 -0.739551 -0.200546 + 0.2 0.0247301 0.841619 -0.539505 -0.221638 + 0.6 -0.535288 0.387646 -0.750465 -0.208398 + 0.933333 -0.0628043 -0.00112608 -0.998025 -0.181341 + 1.0 -0.0124285 -0.0412788 -0.99907 -0.183363 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.889804 0.320769 -0.324586 -0.180704 + 0.1 -0.797589 0.368919 -0.477233 -0.284359 + 0.2 -0.802809 0.403107 -0.439321 -0.420513 + 0.433333 -0.172857 0.709122 -0.683569 -0.21382 + 0.6 -0.906421 0.135128 -0.400176 -0.407279 + 0.933333 -0.941633 0.0710305 -0.329062 -0.402113 + 1.0 -0.944384 0.0650882 -0.322338 -0.401848 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.999944 0.00099072 0.0105188 -3.20981e-007 + 1.0 0.999979 -0.00402774 -0.00497469 -7.63312e-007 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.482252 -0.540664 -0.689287 -1.43064 + 0.1 0.878418 -0.416748 -0.233887 -0.887995 + 0.2 0.170248 -0.978395 0.117301 -0.455315 + 0.266667 0.503001 -0.826899 -0.251453 -0.59191 + 0.3 0.382601 -0.864168 -0.326849 -0.55725 + 0.333333 0.224946 -0.951572 -0.209549 -0.537084 + 0.366667 0.0613445 -0.976395 -0.207098 -0.532686 + 0.4 0.0641456 -0.996852 -0.0465955 -0.574637 + 0.466667 0.434631 -0.898395 -0.0630999 -0.386872 + 0.533333 0.276274 -0.959625 -0.0528351 -0.341972 + 0.566667 0.0500455 -0.995712 -0.0778031 -0.296943 + 0.6 -0.178405 -0.983618 -0.0258241 -0.278622 + 0.633333 -0.472265 -0.849343 0.235758 -0.358996 + 0.7 -0.664679 -0.567311 0.486168 -0.601032 + 0.733333 -0.611631 -0.568766 0.549921 -0.669678 + 0.933333 -0.585015 -0.534858 -0.609659 -0.562988 + 1.0 -0.51021 -0.531277 -0.676336 -0.581312 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.996579 -0.0103055 0.0819957 -0.769936 + 0.1 -0.983616 -0.180167 0.00634389 -1.71513 + 0.2 -0.958254 -0.279049 -0.0623023 -2.2031 + 0.266667 -0.965864 -0.257819 -0.0252272 -1.9893 + 0.3 -0.961657 -0.274029 -0.0111365 -1.71423 + 0.333333 -0.959933 -0.278413 -0.0318665 -1.5292 + 0.366667 -0.963064 -0.265737 -0.0434904 -1.35281 + 0.4 -0.968938 -0.234354 -0.0789758 -1.29706 + 0.466667 -0.980854 -0.0907873 -0.172288 -1.63127 + 0.533333 -0.984273 -0.00218655 -0.176641 -1.74929 + 0.566667 -0.983457 -0.0482313 -0.174602 -1.63341 + 0.6 -0.978265 -0.113122 -0.173785 -1.52335 + 0.633333 -0.965333 -0.194844 -0.173687 -1.19242 + 0.7 -0.87124 -0.370958 -0.321451 -0.534517 + 0.733333 -0.883217 -0.300593 -0.359962 -0.388879 + 0.933333 -0.983231 0.179237 0.0336348 -1.26937 + 1.0 -0.978805 0.198954 0.0485548 -1.41248 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.0283156 -0.309323 0.950535 -1.10566 + 0.1 0.770817 -0.637056 0.000767415 -1.25758 + 0.2 -0.737946 0.23118 -0.634028 -5.05964 + 0.266667 0.784214 -0.524838 0.330989 -0.839588 + 0.3 0.812733 -0.553508 0.181917 -0.641631 + 0.333333 0.806788 -0.575677 0.133 -0.540697 + 0.366667 0.626071 -0.777325 -0.0616458 -0.34775 + 0.4 0.559293 -0.821785 -0.108906 -0.386113 + 0.533333 0.406477 -0.691362 -0.597323 -0.427869 + 0.6 0.318252 -0.584537 -0.746346 -0.482781 + 0.633333 0.259513 -0.526733 -0.809447 -0.553599 + 0.7 0.152724 -0.506792 -0.848432 -0.6822 + 0.733333 0.155596 -0.534437 -0.830763 -0.68563 + 0.933333 0.802955 0.13166 -0.581316 -0.147302 + 1.0 0.719103 0.334712 -0.608982 -0.127758 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.995934 -0.0428176 -0.0792555 -6.59702e-007 + 1.0 0.994824 -0.0526069 -0.0869336 -1.03324e-006 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 0.0393539 -0.0705563 0.996731 -1.10541 + 0.1 -0.0562677 -0.556631 -0.828852 -0.152131 + 0.2 0.0302398 0.673606 0.738472 -6.1535 + 0.3 -0.0410195 -0.137221 -0.989691 -0.616369 + 1.0 2.21472e-006 -1.0 -5.33382e-005 -0.069811 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.918393 0.189726 -0.347215 -0.687509 + 0.2 -0.980533 -0.116816 -0.157823 -1.69513 + 0.433333 -0.971196 -0.188823 -0.14534 -1.59084 + 0.666667 -0.960142 -0.256193 -0.111769 -1.49799 + 1.0 -0.90857 -0.415352 -0.044535 -0.915381 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.742921 0.613317 -0.268163 -0.802748 + 0.2 0.218308 0.943186 -0.250483 -0.322508 + 0.433333 0.441629 -0.83171 -0.336485 -0.478003 + 0.5 0.479977 -0.825467 -0.29703 -0.460868 + 0.6 0.631209 -0.703541 0.326506 -0.717451 + 0.666667 0.933619 -0.342752 0.104292 -0.735534 + 1.0 0.938534 -0.205671 0.277225 -0.790651 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.869546 -0.311671 0.38308 -0.526613 + 0.2 0.905003 -0.197264 0.376905 -0.55678 + 0.3 0.715598 -0.411305 0.564578 -0.395844 + 0.433333 0.467804 -0.88276 0.0435247 -0.628455 + 0.5 0.50067 -0.814788 0.292317 -0.847499 + 0.6 0.790726 -0.38824 0.47331 -1.2289 + 0.666667 0.834639 -0.2192 0.505301 -1.5881 + 0.8 0.877963 -0.210036 0.430192 -1.27148 + 1.0 0.923995 -0.0834479 0.373189 -1.23751 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 -0.0821847 -0.932231 -0.352407 -0.536713 + 0.2 0.168199 -0.849188 -0.500588 -0.382709 + 0.433333 0.431749 -0.708703 -0.557972 -0.621794 + 0.5 0.404473 -0.626871 -0.665909 -0.618938 + 0.6 0.428595 -0.212729 -0.878096 -0.459293 + 0.666667 0.309034 -0.385625 -0.869363 -0.659207 + 0.8 0.512518 -0.444987 -0.734379 -0.612168 + 1.0 0.753045 -0.469462 -0.461009 -0.61272 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.284555 -0.921273 -0.265112 -0.6775 + 0.2 -0.317028 -0.902714 -0.290863 -0.5297 + 0.433333 -0.120651 -0.925152 -0.359912 -0.640096 + 0.5 -0.135824 -0.800602 -0.5836 -0.495881 + 0.6 -0.104489 -0.0242355 -0.994231 -0.315563 + 0.666667 -0.0938504 0.214865 -0.972124 -0.437821 + 0.8 0.243301 0.754937 -0.608995 -0.253909 + 1.0 0.285003 0.934293 0.214172 -0.49854 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 0.0689346 -0.994134 0.0833351 -0.89761 + 0.2 0.0459158 -0.99462 0.0928591 -0.661419 + 0.433333 -0.231668 0.966483 -0.11064 -5.58826 + 0.5 -0.313106 0.946294 -0.0805744 -5.77448 + 0.6 0.829911 -0.496749 0.253946 -0.219886 + 0.666667 0.953317 -0.0354245 -0.299887 -0.158194 + 0.8 0.828296 0.0595851 0.557114 -0.345056 + 1.0 0.199628 0.966122 0.163576 -0.66764 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 0.277331 -0.945994 0.167875 -0.626126 + 0.2 0.312736 -0.93085 0.188983 -0.446462 + 0.433333 -0.510039 0.818042 -0.265835 -5.76551 + 0.5 -0.618387 0.735674 -0.276373 -5.87837 + 0.6 0.866699 -0.414949 0.276857 -0.263835 + 0.666667 0.974014 0.0728213 0.214461 -0.219181 + 0.8 0.809934 0.545889 0.214504 -0.280267 + 1.0 0.260242 0.964802 0.0378219 -0.52615 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.337942 -0.671343 -0.659617 -0.498628 + 0.2 0.390554 -0.560146 -0.73055 -0.369204 + 0.433333 -0.440337 0.560269 0.701571 -5.85834 + 0.5 -0.658587 0.312303 0.684639 -5.89649 + 0.8 0.461961 0.800871 -0.381049 -0.37891 + 1.0 0.31502 0.942564 -0.111067 -0.538854 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 0.115133 -0.968778 0.219575 -5.77502 + 0.2 0.113681 -0.96579 0.233078 -5.90352 + 0.3 0.0625004 -0.425138 -0.902968 -5.6497 + 0.433333 0.3385 -0.611236 -0.715408 -5.97333 + 0.5 0.36395 -0.539424 -0.759317 -6.01861 + 0.8 -0.413916 -0.483968 0.771005 -0.138468 + 1.0 0.145531 0.96811 -0.20392 -6.06988 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 0.228496 -0.972884 0.0358738 -5.63877 + 0.2 0.200697 -0.979555 0.01389 -5.83258 + 0.3 -0.456504 0.214842 0.863393 -0.414885 + 0.433333 0.10792 -0.992467 -0.0579894 -6.05672 + 0.5 0.0354724 -0.992895 -0.113582 -6.11945 + 1.0 0.394279 -0.902251 0.174606 -0.33727 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.425206 0.898046 0.112753 -0.552965 + 0.2 -0.367038 0.907495 0.204292 -0.368057 + 0.3 -0.123292 -0.168855 0.977899 -0.724936 + 0.433333 0.109927 -0.844296 -0.52448 -6.11265 + 0.5 -0.118509 -0.696507 -0.707696 -6.14925 + 1.0 -0.653783 0.686701 -0.31782 -5.8639 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.961895 0.107075 -0.251581 -0.61679 + 0.2 -0.969691 -0.0321825 -0.242205 -0.480041 + 0.3 -0.763661 -0.334414 0.552259 -0.48251 + 0.433333 0.924124 0.320769 0.207612 -5.94199 + 0.5 0.86133 0.463541 0.207944 -5.96507 + 1.0 -0.0883106 0.993919 0.0657797 -5.85177 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim gustandb c_marilithe + + +#NWmax ANIM ASCII +newanim pause1 c_marilithe + length 2.0 + transtime 1.0 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.070305 -0.0758129 1.16539 + 0.1 0.070305 -0.0756476 1.16539 + 0.966667 0.070305 -0.0706907 1.16539 + 1.06667 0.070305 -0.0705254 1.16539 + 1.16667 0.070305 -0.0707143 1.16539 + 1.9 0.070305 -0.075624 1.16539 + 2.0 0.070305 -0.0758129 1.16539 + endlist + orientationkey + 0.0 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + 0.1 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + 0.966667 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + 1.16667 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + 1.9 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + 2.0 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 -0.0116803 -0.448545 0.893684 -0.45341 + 0.1 -0.0146467 -0.449052 0.893386 -0.453513 + 0.966667 -0.102613 -0.462223 0.880807 -0.458447 + 1.06667 -0.105498 -0.462594 0.880271 -0.458672 + 1.16667 -0.1022 -0.46217 0.880883 -0.458415 + 1.9 -0.0150704 -0.449124 0.893342 -0.453528 + 2.0 -0.0116803 -0.448545 0.893684 -0.45341 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.0168006 0.984952 -0.172007 -0.235676 + 0.1 0.0188481 0.981681 -0.189599 -0.237155 + 0.166667 0.0381885 0.9798 -0.196301 -0.23878 + 0.966667 0.30685 0.918537 -0.249265 -0.278357 + 1.06667 0.304577 0.928316 -0.213221 -0.275639 + 1.16667 0.297552 0.933363 -0.200739 -0.273442 + 1.23333 0.281939 0.940041 -0.191919 -0.270273 + 1.9 0.0264229 0.986315 -0.162739 -0.236099 + 2.0 0.0168007 0.984953 -0.172006 -0.235676 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.943242 -0.325484 -0.0659873 -0.173219 + 0.1 -0.943368 -0.325128 -0.0659479 -0.173406 + 0.166667 -0.947197 -0.314047 -0.0647419 -0.179423 + 0.966667 -0.971473 -0.230558 -0.0555206 -0.242871 + 1.06667 -0.970937 -0.232748 -0.0557657 -0.240641 + 1.16667 -0.97029 -0.235363 -0.0560578 -0.238033 + 1.23333 -0.968832 -0.241142 -0.0567022 -0.23246 + 1.9 -0.94495 -0.3206 -0.0654556 -0.175816 + 2.0 -0.943242 -0.325484 -0.0659868 -0.173219 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.886682 0.137161 -0.441568 -0.435849 + 0.1 0.889226 0.149357 -0.4324 -0.437361 + 0.166667 0.895407 0.140445 -0.422518 -0.440646 + 0.966667 0.915192 0.144098 -0.376376 -0.430813 + 1.06667 0.905091 0.141642 -0.400934 -0.431041 + 1.16667 0.900053 0.141978 -0.412004 -0.428364 + 1.23333 0.894484 0.143448 -0.423462 -0.425177 + 1.9 0.883575 0.137882 -0.447531 -0.436745 + 2.0 0.886682 0.137161 -0.441568 -0.435849 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.0400615 0.581116 -0.812834 -0.211343 + 0.1 0.0400615 0.581116 -0.812834 -0.211343 + 0.633333 0.0786467 0.589629 -0.803836 -0.212932 + 1.2 0.0400615 0.581116 -0.812834 -0.211343 + 1.6 0.000891471 0.571515 -0.820591 -0.210103 + 2.0 0.0400615 0.581116 -0.812834 -0.211343 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.191554 0.23441 -0.953079 -0.203313 + 0.1 0.197903 0.234954 -0.951646 -0.203628 + 1.1 0.378275 0.246327 -0.892318 -0.217433 + 1.2 0.372256 0.246082 -0.894913 -0.216794 + 2.0 0.191554 0.23441 -0.953079 -0.203313 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.999996 -0.00269928 0.00113787 -3.52903e-006 + 2.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.226329 -0.0273303 -0.973667 -0.588992 + 0.1 0.227662 -0.0270752 -0.973364 -0.589398 + 0.966667 0.283426 -0.0200558 -0.958784 -0.592623 + 1.06667 0.281317 -0.0205905 -0.959394 -0.59797 + 1.16667 0.279219 -0.0211823 -0.959994 -0.599965 + 1.9 0.226159 -0.0275483 -0.973701 -0.596217 + 2.0 0.224095 -0.0273738 -0.974183 -0.593163 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.886868 0.443767 0.128595 -0.249989 + 0.1 -0.887697 0.442172 0.128368 -0.25086 + 0.966667 -0.881954 0.453077 0.129916 -0.245025 + 1.06667 -0.878879 0.458785 0.130722 -0.242078 + 1.16667 -0.879246 0.458109 0.130627 -0.242423 + 1.9 -0.887794 0.441984 0.128341 -0.250963 + 2.0 -0.886868 0.443767 0.128595 -0.249989 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.985376 -0.0981325 0.139301 -0.389375 + 0.966667 0.986082 -0.0971121 0.13495 -0.391244 + 1.06667 0.983777 -0.097553 0.150554 -0.390894 + 1.16667 0.983076 -0.0978183 0.154898 -0.391438 + 1.9 0.984087 -0.09828 0.148032 -0.391581 + 2.0 0.985376 -0.0981325 0.139301 -0.389375 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.0 0.0 0.0 0.0 0.0 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.00087532 -0.999641 -0.0267648 -0.0698374 + 2.0 -0.000101747 -0.999995 -0.00319473 -0.0698115 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.825306 -0.564514 -0.0139352 -0.643921 + 2.0 -0.825306 -0.564514 -0.0139352 -0.643921 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.883006 0.467006 0.0469605 -0.584519 + 2.0 0.883006 0.467006 0.0469605 -0.584519 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.996427 0.0661781 -0.0524718 -1.15658 + 0.4 0.943611 0.177388 0.279521 -1.18705 + 0.866667 0.941807 0.190155 0.277201 -1.20711 + 1.23333 0.948699 0.159991 0.272715 -1.19915 + 1.63333 0.880893 0.234589 0.411091 -1.24122 + 2.0 0.996427 0.0661781 -0.0524718 -1.15658 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.862765 -0.307589 -0.40128 -0.597195 + 0.4 0.833964 0.0538037 -0.549189 -0.628989 + 0.866667 0.824048 0.0416491 -0.564987 -0.613091 + 1.23333 0.820694 -0.495853 -0.283886 -0.694441 + 1.63333 0.909179 -0.4155 0.0274576 -0.843082 + 2.0 0.862765 -0.307589 -0.40128 -0.597195 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.56194 0.789217 0.247708 -0.773591 + 0.4 0.561596 0.789212 0.248506 -0.769183 + 0.866667 0.568186 0.789221 0.233011 -0.864244 + 1.23333 0.522841 0.785213 0.331781 -0.477596 + 1.63333 0.363637 0.724443 0.585619 -0.215514 + 2.0 0.56194 0.789218 0.247708 -0.773591 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 0.590436 0.800608 0.102041 -6.12253 + 0.4 -0.564303 -0.8193 -0.101535 -5.65796 + 0.866667 -0.564303 -0.8193 -0.101535 -5.65796 + 1.23333 0.556889 0.824377 0.101372 -0.267449 + 1.63333 -0.552063 -0.82763 -0.101265 -6.08859 + 2.0 0.590435 0.800608 0.102041 -6.12253 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.600305 -0.655742 -0.457861 -0.64131 + 0.4 0.435901 0.461641 0.772579 -5.93999 + 0.866667 -0.567998 -0.651311 0.503162 -5.87041 + 1.23333 -0.431249 -0.506517 0.746635 -5.98224 + 1.63333 -0.323102 0.0528813 0.944885 -6.10098 + 2.0 -0.600305 -0.655742 -0.457861 -0.64131 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.810866 -0.578402 -0.0891546 -0.458916 + 0.4 0.829391 0.550553 0.0948759 -5.94297 + 0.866667 -0.659199 -0.750482 -0.047257 -5.97177 + 1.23333 -0.628847 -0.776518 -0.0396365 -6.04068 + 1.63333 0.896671 0.426758 0.117723 -6.11983 + 2.0 -0.810866 -0.578401 -0.0891541 -0.458916 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.631559 -0.774164 -0.0424578 -0.724393 + 0.4 0.55386 0.83261 -0.00059489 -5.74975 + 0.866667 -0.925162 0.00917009 -0.37946 -6.07427 + 1.23333 -0.838077 -0.530256 -0.128279 -5.85675 + 1.63333 -0.558485 -0.829442 -0.0109569 -0.404425 + 2.0 -0.63156 -0.774164 -0.0424578 -0.724393 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.397426 -0.9062 -0.144411 -0.693681 + 0.4 -0.442416 -0.865485 -0.234956 -1.04958 + 0.866667 -0.0305777 0.00563021 -0.999517 -5.91363 + 1.23333 -0.786418 -0.499616 -0.363222 -5.84521 + 1.63333 -0.384566 -0.917847 -0.0983117 -0.515415 + 2.0 -0.397426 -0.9062 -0.144411 -0.693681 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.0524183 -0.974134 0.219807 -0.403177 + 0.4 0.0832084 -0.953871 -0.288457 -0.624511 + 0.866667 -0.11723 0.224449 -0.967409 -5.74406 + 1.23333 -0.0946773 -0.583365 -0.806673 -5.46038 + 1.63333 -0.0505471 -0.620926 0.782238 -0.323578 + 2.0 0.0524176 -0.974134 0.219807 -0.403176 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.252966 0.926656 -0.27806 -5.77173 + 0.4 0.180373 -0.911242 0.370275 -0.354416 + 0.866667 0.290239 0.43179 -0.854002 -5.60608 + 1.23333 0.550788 0.136648 -0.823383 -5.31111 + 1.63333 0.430623 0.779761 -0.454463 -5.62783 + 2.0 0.252965 0.926656 -0.278061 -5.77173 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim pause1 c_marilithe + + +#NWmax ANIM ASCII +newanim pause2 c_marilithe + length 2.0 + transtime 1.0 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.0563633 0.0356712 1.16547 + 0.1 -0.0563633 0.035875 1.16547 + 1.0 -0.0563633 0.0421915 1.16547 + 1.1 -0.0563633 0.0423953 1.16547 + 1.2 -0.0563633 0.0421462 1.16547 + 1.9 -0.0563633 0.0359203 1.16547 + 2.0 -0.0563633 0.0356712 1.16547 + endlist + orientationkey + 0.0 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + 0.1 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + 1.0 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + 1.2 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + 1.9 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + 2.0 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.178005 -0.0828486 0.980536 -0.229614 + 0.1 0.173558 -0.0823964 0.981371 -0.229428 + 1.0 0.0317089 -0.0672837 0.99723 -0.226046 + 1.1 0.0270531 -0.0667655 0.997402 -0.226014 + 1.2 0.0327433 -0.0673987 0.997189 -0.226053 + 1.9 0.172568 -0.0822956 0.981554 -0.229388 + 2.0 0.178004 -0.0828486 0.980536 -0.229614 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.208011 0.418058 0.884284 -0.29599 + 0.1 0.210791 0.420266 0.882578 -0.293981 + 0.6 0.23739 0.420116 0.87587 -0.297887 + 1.0 0.237462 0.424946 0.873517 -0.29953 + 1.1 0.230649 0.427816 0.873942 -0.299432 + 1.2 0.229665 0.431673 0.872303 -0.296389 + 1.6 0.202062 0.428794 0.880515 -0.295059 + 1.9 0.200912 0.422016 0.884046 -0.295397 + 2.0 0.208011 0.418058 0.884284 -0.29599 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.740154 -0.664892 -0.100452 -0.0854694 + 0.1 -0.737783 -0.667486 -0.100692 -0.0851399 + 0.6 -0.715876 -0.690618 -0.102807 -0.0823105 + 1.1 -0.691627 -0.714588 -0.104954 -0.0795707 + 1.2 -0.701334 -0.705188 -0.104118 -0.0806229 + 2.0 -0.740153 -0.664893 -0.100451 -0.0854693 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.815514 0.487351 -0.312131 -0.255762 + 0.1 0.821642 0.484625 -0.300072 -0.257567 + 0.6 0.822424 0.480203 -0.304998 -0.255696 + 1.1 0.814049 0.485486 -0.318792 -0.248122 + 1.2 0.818063 0.486353 -0.306976 -0.24768 + 1.6 0.816772 0.486862 -0.309595 -0.25172 + 2.0 0.815514 0.487351 -0.31213 -0.255762 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.446197 -0.894917 0.00559739 -4.28325e-006 + 2.0 0.455611 -0.890179 -0.000460946 -4.2737e-006 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.110305 -0.061652 -0.991984 -0.128644 + 0.1 0.114357 -0.0613614 -0.991543 -0.128704 + 1.1 0.24006 -0.0517594 -0.969377 -0.131715 + 1.2 0.235434 -0.0521333 -0.970491 -0.131562 + 2.0 0.110305 -0.061652 -0.991984 -0.128644 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.126756 -0.360564 -0.924081 -0.107544 + 0.1 0.136406 -0.359611 -0.923078 -0.107684 + 1.1 0.413884 -0.316051 -0.853705 -0.117196 + 1.2 0.404691 -0.318037 -0.857367 -0.116666 + 2.0 0.126756 -0.360565 -0.924081 -0.107544 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.055805 -0.465255 -0.883416 -0.455983 + 0.1 0.0569005 -0.464794 -0.883589 -0.4563 + 0.333333 0.0685577 -0.461358 -0.884561 -0.457731 + 1.1 0.0905139 -0.453729 -0.886531 -0.462145 + 1.2 0.0892008 -0.453942 -0.886555 -0.462192 + 1.46667 0.0742993 -0.457609 -0.886044 -0.461283 + 2.0 0.0554481 -0.46209 -0.885098 -0.460046 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.966287 0.238197 0.0977293 -0.451259 + 0.1 -0.966371 0.237877 0.097679 -0.451821 + 1.1 -0.968805 0.228396 0.0961835 -0.469141 + 1.2 -0.968717 0.228746 0.096239 -0.468478 + 2.0 -0.966287 0.238197 0.0977292 -0.451259 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.986099 0.0519989 0.157813 -0.636499 + 0.1 0.98609 0.0518012 0.157935 -0.636935 + 1.1 0.985788 0.0458475 0.161615 -0.650377 + 1.2 0.985801 0.0460708 0.161477 -0.649862 + 2.0 0.986099 0.0519988 0.157813 -0.636499 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.0 0.0 0.0 0.0 0.0 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 1.55912e-006 -1.0 -5.05914e-005 -0.069811 + 2.0 1.85985e-006 -1.0 -5.04245e-005 -0.069811 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.825306 -0.564514 -0.0139352 -0.643921 + 2.0 -0.825306 -0.564514 -0.0139352 -0.643921 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.883006 0.467006 0.0469605 -0.584519 + 2.0 0.883006 0.467006 0.0469605 -0.584519 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.996427 0.0661781 -0.0524718 -1.15658 + 0.4 0.943611 0.177388 0.279521 -1.18705 + 0.866667 0.941807 0.190155 0.277201 -1.20711 + 1.23333 0.948699 0.159991 0.272715 -1.19915 + 1.63333 0.880893 0.234589 0.411091 -1.24122 + 2.0 0.996427 0.0661781 -0.0524718 -1.15658 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.862765 -0.307589 -0.40128 -0.597195 + 0.4 0.833964 0.0538038 -0.549189 -0.628989 + 0.866667 0.824048 0.0416491 -0.564987 -0.613091 + 1.23333 0.820694 -0.495853 -0.283886 -0.694441 + 1.63333 0.909179 -0.4155 0.0274577 -0.843082 + 2.0 0.862765 -0.307589 -0.40128 -0.597195 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.56194 0.789218 0.247708 -0.773591 + 0.4 0.561596 0.789212 0.248506 -0.769183 + 0.866667 0.568186 0.789221 0.233011 -0.864244 + 1.23333 0.522841 0.785213 0.331781 -0.477596 + 1.63333 0.363636 0.724443 0.58562 -0.215514 + 2.0 0.56194 0.789218 0.247708 -0.773591 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 0.590436 0.800608 0.102042 -6.12253 + 0.4 -0.564303 -0.8193 -0.101535 -5.65796 + 0.866667 -0.564303 -0.8193 -0.101535 -5.65796 + 1.23333 0.556889 0.824377 0.101372 -0.267449 + 1.63333 -0.552063 -0.82763 -0.101265 -6.08859 + 2.0 0.590435 0.800608 0.102042 -6.12253 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.600305 -0.655742 -0.457861 -0.64131 + 0.4 0.4359 0.461641 0.772579 -5.93999 + 0.866667 -0.567998 -0.651312 0.503162 -5.87041 + 1.23333 -0.431249 -0.506517 0.746635 -5.98224 + 1.63333 0.196949 0.188381 0.962145 -6.02152 + 2.0 -0.600305 -0.655742 -0.45786 -0.64131 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.810866 -0.578401 -0.0891544 -0.458916 + 0.4 0.829391 0.550553 0.094876 -5.94297 + 0.866667 -0.659199 -0.750482 -0.0472569 -5.97177 + 1.23333 -0.628847 -0.776518 -0.0396366 -6.04068 + 1.63333 -0.896668 -0.42675 -0.117776 -0.163358 + 2.0 -0.810866 -0.578401 -0.0891539 -0.458916 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.631559 -0.774164 -0.0424579 -0.724393 + 0.4 0.553859 0.83261 -0.000594713 -5.74975 + 0.866667 -0.925162 0.00916835 -0.379461 -6.07427 + 1.23333 -0.838077 -0.530256 -0.128279 -5.85675 + 1.63333 -0.558487 -0.829441 -0.0109532 -0.404424 + 2.0 -0.63156 -0.774164 -0.0424578 -0.724393 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.397426 -0.9062 -0.144411 -0.693681 + 0.4 -0.442416 -0.865485 -0.234956 -1.04958 + 0.866667 -0.0305777 0.00562862 -0.999517 -5.91362 + 1.23333 -0.786418 -0.499617 -0.363222 -5.84521 + 1.63333 -0.384562 -0.917849 -0.0983121 -0.515414 + 2.0 -0.397426 -0.9062 -0.144411 -0.693681 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.0524182 -0.974134 0.219807 -0.403177 + 0.4 0.0832088 -0.95387 -0.288457 -0.624511 + 0.866667 -0.117229 0.224448 -0.967409 -5.74406 + 1.23333 -0.0946773 -0.583365 -0.806673 -5.46038 + 1.63333 -0.0505062 -0.620943 0.782227 -0.323582 + 2.0 0.0524178 -0.974134 0.219807 -0.403177 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.252966 0.926656 -0.27806 -5.77173 + 0.4 0.180374 -0.911241 0.370276 -0.354416 + 0.866667 0.290238 0.43179 -0.854002 -5.60608 + 1.23333 0.550788 0.136648 -0.823383 -5.31111 + 1.63333 -0.430943 -0.780173 0.453451 -0.655671 + 2.0 0.252966 0.926656 -0.27806 -5.77173 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim pause2 c_marilithe + + +#NWmax ANIM ASCII +newanim taunt c_marilithe + length 2.16667 + transtime 0.4 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.0563633 0.0356712 1.16547 + 0.266667 -0.0563633 0.0467831 1.16547 + 0.533333 -0.0538461 0.0431677 1.16547 + 0.866667 -0.0554363 0.0468417 1.16547 + 1.13333 -0.0538461 0.0431677 1.16547 + 1.46667 -0.0554363 0.0468417 1.16547 + 1.63333 -0.0540002 0.0428162 1.16547 + 1.7 -0.0537402 0.041923 1.16547 + 2.16667 -0.0563633 0.0356712 1.16547 + endlist + orientationkey + 0.0 -7.66376e-007 1.0 -1.23253e-005 -0.0698131 + 2.16667 -7.66376e-007 1.0 -1.23253e-005 -0.0698131 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.178004 -0.0828486 0.980536 -0.229614 + 0.266667 0.093871 0.024465 0.995284 -0.532422 + 0.533333 0.0964257 0.0290251 0.994917 -0.462656 + 0.866667 0.093871 0.024465 0.995284 -0.532422 + 1.13333 0.0964257 0.0290251 0.994917 -0.462656 + 1.46667 0.093871 0.024465 0.995284 -0.532422 + 1.63333 0.0964256 0.0290251 0.994917 -0.462656 + 2.16667 0.178004 -0.0828486 0.980536 -0.229614 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.208011 0.418058 0.884285 -0.29599 + 0.266667 0.152533 0.292117 0.944141 -0.477332 + 0.366667 0.168693 0.296502 0.940015 -0.482585 + 0.533333 0.161941 0.262888 0.951139 -0.475351 + 0.633333 0.147818 0.26273 0.953479 -0.472094 + 0.866667 0.161107 0.285339 0.944789 -0.478062 + 0.966667 0.174923 0.288542 0.941353 -0.482695 + 1.13333 0.161941 0.262888 0.951139 -0.475351 + 1.23333 0.147818 0.26273 0.953479 -0.472094 + 1.46667 0.161107 0.285339 0.944789 -0.478062 + 2.16667 0.208011 0.418058 0.884284 -0.29599 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.740153 -0.664893 -0.100452 -0.0854693 + 0.266667 -0.964917 -0.25599 -0.058354 -0.219269 + 0.366667 -0.946911 -0.31489 -0.0648343 -0.178952 + 0.533333 -0.959063 -0.276624 -0.0606376 -0.203234 + 0.633333 -0.967704 -0.245516 -0.05719 -0.228413 + 0.866667 -0.966316 -0.250789 -0.0577769 -0.223717 + 0.966667 -0.952375 -0.298345 -0.0630258 -0.188702 + 1.13333 -0.959063 -0.276624 -0.0606368 -0.203234 + 1.23333 -0.967704 -0.245516 -0.0571902 -0.228413 + 1.46667 -0.966316 -0.250789 -0.0577762 -0.223717 + 2.16667 -0.740153 -0.664893 -0.100452 -0.0854693 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.815514 0.487351 -0.312131 -0.255762 + 0.266667 0.901319 0.253453 -0.351264 -0.417277 + 0.366667 0.921621 0.329527 -0.205005 -0.348419 + 0.533333 0.909951 0.348859 -0.224248 -0.387497 + 0.633333 0.910096 0.27538 -0.309664 -0.416063 + 0.866667 0.936423 0.333004 -0.110547 -0.388225 + 0.966667 0.922474 0.385552 0.0198075 -0.350573 + 1.13333 0.909951 0.348859 -0.224248 -0.387497 + 1.23333 0.910096 0.27538 -0.309664 -0.416063 + 1.46667 0.936423 0.333004 -0.110547 -0.388225 + 2.16667 0.815514 0.487351 -0.31213 -0.255762 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.61192 -0.790883 0.00762384 -4.83092e-006 + 2.16667 0.716286 -0.697782 0.00581861 -5.457e-006 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.110305 -0.061652 -0.991984 -0.128644 + 0.266667 0.0419125 -0.0290237 -0.9987 -0.320011 + 0.433333 0.0419126 -0.0290237 -0.9987 -0.320011 + 0.533333 0.0419128 -0.0290238 -0.9987 -0.320011 + 0.866667 0.035413 -0.0259201 -0.999037 -0.372312 + 1.03333 0.0419126 -0.0290237 -0.9987 -0.320011 + 1.13333 0.0419126 -0.0290237 -0.9987 -0.320011 + 1.46667 0.035413 -0.0259201 -0.999037 -0.372312 + 1.63333 0.0419126 -0.0290237 -0.9987 -0.320011 + 2.16667 0.110305 -0.061652 -0.991984 -0.128644 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.126756 -0.360565 -0.924081 -0.107544 + 0.266667 0.44313 -0.121306 -0.888212 -0.241569 + 0.433333 0.509256 -0.209236 -0.834792 -0.214135 + 0.533333 0.588016 -0.231256 -0.775086 -0.185635 + 0.666667 0.434997 -0.258943 -0.862395 -0.170518 + 0.866667 0.55407 -0.193412 -0.80969 -0.196035 + 0.966667 0.59424 -0.179692 -0.783958 -0.197356 + 1.03333 0.509256 -0.209236 -0.834792 -0.214135 + 1.13333 0.588016 -0.231256 -0.775086 -0.185635 + 1.26667 0.434997 -0.258943 -0.862395 -0.170518 + 1.46667 0.55407 -0.193412 -0.80969 -0.196035 + 1.56667 0.59424 -0.179692 -0.783958 -0.197356 + 1.63333 0.586542 -0.176143 -0.790533 -0.18493 + 1.76667 0.459486 -0.18782 -0.868099 -0.178685 + 2.16667 0.126756 -0.360565 -0.924081 -0.107544 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.16667 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.0748361 -0.63462 -0.769192 -0.307535 + 0.266667 -0.85537 -0.44082 -0.272064 -1.12654 + 0.433333 -0.863959 -0.415418 -0.284611 -1.14585 + 0.533333 -0.871741 -0.414135 -0.26184 -1.14848 + 0.8 -0.885992 -0.394114 -0.244319 -1.25597 + 0.833333 -0.882097 -0.399896 -0.248975 -1.24943 + 0.866667 -0.874 -0.390632 -0.289017 -1.23676 + 1.03333 -0.863436 -0.415924 -0.285456 -1.14637 + 1.13333 -0.871235 -0.414657 -0.262697 -1.14896 + 1.4 -0.885536 -0.394663 -0.245086 -1.25643 + 1.43333 -0.881633 -0.400439 -0.249745 -1.2499 + 1.46667 -0.873515 -0.391156 -0.289774 -1.23728 + 1.63333 -0.870523 -0.406189 -0.27785 -1.18235 + 1.7 -0.870483 -0.390567 -0.299529 -1.16337 + 2.16667 0.0741097 -0.62813 -0.774571 -0.311498 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.966287 0.238197 0.0977293 -0.451258 + 0.266667 -0.988478 0.149094 0.0261189 -0.780762 + 0.433333 -0.996495 0.0834312 0.00614878 -1.51891 + 0.533333 -0.995873 0.0882196 0.0213134 -1.37519 + 0.8 -0.970889 0.239464 0.00554514 -0.485708 + 0.833333 -0.97578 0.21719 -0.0260969 -0.542107 + 0.866667 -0.986546 0.162914 -0.0136536 -0.743728 + 1.03333 -0.996495 0.083431 0.00614877 -1.51891 + 1.13333 -0.995873 0.0882197 0.0213135 -1.37519 + 1.4 -0.970889 0.239464 0.00554512 -0.485708 + 1.43333 -0.97578 0.21719 -0.026097 -0.542107 + 1.46667 -0.986546 0.162914 -0.0136535 -0.743728 + 1.63333 -0.996483 0.0835739 0.00603163 -1.51588 + 1.7 -0.995875 0.0890957 0.0171631 -1.39927 + 2.16667 -0.966287 0.238197 0.0977294 -0.451259 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.986099 0.0519992 0.157813 -0.636499 + 0.266667 0.174828 -0.293054 -0.939976 -1.55932 + 0.433333 -0.201143 0.0716373 0.976939 -4.86318 + 0.533333 0.273846 -0.278758 0.92049 -4.85771 + 0.8 -0.197864 0.231975 -0.952385 -1.31207 + 0.833333 0.0190732 0.0903734 -0.995725 -1.34373 + 0.866667 0.234441 -0.0332907 -0.97156 -1.4497 + 1.03333 -0.201143 0.0716376 0.976939 -4.86318 + 1.13333 0.273846 -0.278758 0.92049 -4.85771 + 1.4 -0.197864 0.231975 -0.952385 -1.31207 + 1.43333 0.0190732 0.0903733 -0.995725 -1.34373 + 1.46667 0.234441 -0.0332907 -0.97156 -1.4497 + 1.63333 -0.248199 0.10099 0.96343 -4.85057 + 1.7 0.313922 -0.378178 0.870881 -4.92413 + 2.16667 0.986099 0.0519991 0.157813 -0.636499 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.16667 0.0 0.0 0.0 0.0 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 6.83759e-006 -1.0 -5.02778e-005 -0.069811 + 2.16667 1.09816e-005 -1.0 -5.01711e-005 -0.069811 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.825306 -0.564514 -0.0139352 -0.643921 + 0.566667 -0.825306 -0.564514 -0.0139352 -0.643921 + 1.03333 -0.825306 -0.564514 -0.0139352 -0.643921 + 1.4 -0.825306 -0.564514 -0.0139351 -0.643921 + 1.8 -0.825306 -0.564514 -0.0139351 -0.643921 + 2.16667 -0.825305 -0.564515 -0.013935 -0.64392 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.917773 -0.324139 0.229405 -0.575765 + 0.566667 0.917773 -0.324139 0.229405 -0.575765 + 1.03333 0.917773 -0.324139 0.229405 -0.575765 + 1.4 0.917773 -0.324139 0.229405 -0.575765 + 1.8 0.917773 -0.324139 0.229405 -0.575766 + 2.16667 0.917773 -0.324138 0.229405 -0.575766 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.973591 -0.0614628 0.21987 -0.835141 + 0.566667 0.951295 -0.102052 0.290899 -0.819386 + 1.03333 0.951295 -0.102052 0.290899 -0.819386 + 1.4 0.951295 -0.102052 0.290899 -0.819386 + 1.8 0.836903 -0.224177 0.499338 -0.805539 + 2.16667 0.973591 -0.061463 0.21987 -0.835141 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.908408 -0.277242 -0.312941 -0.734465 + 0.566667 0.941061 0.102457 -0.322346 -0.913761 + 1.03333 0.941061 0.102457 -0.322346 -0.913761 + 1.4 0.820694 -0.495853 -0.283886 -0.694441 + 1.8 0.623684 -0.750805 -0.217508 -0.701731 + 2.16667 0.908408 -0.277242 -0.312941 -0.734465 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.56194 0.789218 0.247707 -0.773591 + 0.566667 0.561596 0.789212 0.248505 -0.769184 + 1.03333 0.568186 0.789221 0.233011 -0.864244 + 1.4 0.522842 0.785212 0.331781 -0.477596 + 1.8 0.36364 0.724441 0.585621 -0.215514 + 2.16667 0.56194 0.789218 0.247708 -0.773591 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.590434 -0.800609 -0.102044 -0.160655 + 0.566667 0.564303 0.8193 0.101536 -0.625222 + 1.03333 0.564304 0.8193 0.101535 -0.625222 + 1.4 0.556891 0.824376 0.101371 -0.267448 + 1.8 0.552067 0.827628 0.101261 -0.194597 + 2.16667 -0.590434 -0.800609 -0.102045 -0.160655 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.600306 -0.655741 -0.457861 -0.641311 + 0.566667 0.435903 0.461641 0.772578 -5.93999 + 1.03333 -0.567999 -0.651313 0.503159 -5.87041 + 1.4 0.431243 0.50651 -0.746643 -0.300949 + 1.8 -0.196944 -0.188387 -0.962145 -0.261673 + 2.16667 -0.600306 -0.65574 -0.457861 -0.641311 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.810864 -0.578404 -0.0891556 -0.458916 + 0.566667 0.829398 0.550544 0.0948679 -5.94297 + 1.03333 -0.659198 -0.750482 -0.0472665 -5.97177 + 1.4 0.628847 0.77652 0.0396111 -0.242498 + 1.8 -0.896646 -0.426801 -0.117755 -0.163363 + 2.16667 -0.810863 -0.578405 -0.0891559 -0.458916 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.631557 -0.774166 -0.0424451 -0.724398 + 0.566667 0.553873 0.832601 -0.000593607 -5.74976 + 1.03333 -0.925163 0.00931313 -0.379457 -6.07427 + 1.4 0.838094 0.530233 0.12826 -0.426423 + 1.8 -0.558472 -0.829452 -0.0109137 -0.404444 + 2.16667 -0.631557 -0.774166 -0.0424446 -0.724397 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.397473 -0.906184 -0.14438 -0.693712 + 0.566667 -0.442453 -0.865471 -0.234938 -1.04956 + 1.03333 -0.0306625 0.00590974 -0.999512 -5.91361 + 1.4 -0.786365 -0.499667 -0.363267 -5.84519 + 1.8 -0.384581 -0.917855 -0.0981822 -0.515482 + 2.16667 -0.397473 -0.906184 -0.14438 -0.693712 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.052784 0.974145 -0.219671 -5.88014 + 0.566667 0.0830385 -0.953867 -0.288516 -0.624523 + 1.03333 -0.117505 0.22479 -0.967296 -5.74385 + 1.4 -0.0946299 -0.583333 -0.806702 -5.46032 + 1.8 -0.0508829 -0.621133 0.782052 -0.323896 + 2.16667 -0.0527844 0.974145 -0.219671 -5.88014 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.252915 0.926679 -0.278027 -5.77164 + 0.566667 -0.182204 0.91152 -0.368691 -5.92902 + 1.03333 0.290605 0.431787 -0.853878 -5.60615 + 1.4 0.550317 0.136799 -0.823673 -5.31063 + 1.8 0.430418 0.780281 -0.453765 -5.62757 + 2.16667 0.252915 0.92668 -0.278027 -5.77164 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim taunt c_marilithe + + +#NWmax ANIM ASCII +newanim sitcross c_marilithe + length 1.5 + transtime 0.4 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.070305 -0.0758129 1.16539 + 0.133333 0.00025333 -0.0261615 0.885122 + 0.333333 0.000263447 -0.275195 0.482754 + 0.633333 0.00026453 -0.297573 0.293055 + 1.5 0.00026453 -0.297573 0.293055 + endlist + orientationkey + 0.0 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + 0.333333 -1.0 -2.67995e-005 -0.000179833 -0.287186 + 0.633333 -0.853156 -0.516266 -0.074791 -0.335753 + 1.5 -0.853156 -0.516266 -0.074791 -0.335753 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 -0.0116802 -0.448545 0.893684 -0.45341 + 0.133333 0.981125 -0.192677 0.0164297 -0.838932 + 0.333333 0.932693 -0.350693 0.0842518 -1.17229 + 0.633333 0.99381 -0.0361142 0.10506 -0.849533 + 1.2 0.974826 -0.0063883 0.222874 -0.533498 + 1.5 0.966122 0.00279799 0.258069 -0.46898 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.0168007 0.984953 -0.172006 -0.235676 + 0.133333 -0.164705 0.955236 0.245757 -0.401224 + 0.333333 -0.435211 0.477668 0.763167 -0.583578 + 0.5 -0.0861846 0.630752 0.771183 -0.384749 + 0.633333 0.169372 0.768801 0.616651 -0.267913 + 0.833333 0.244557 0.708962 0.661487 -0.28533 + 1.2 0.363967 0.56999 0.736641 -0.344631 + 1.5 0.438007 0.564342 0.699763 -0.355231 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.942175 -0.328494 -0.0663138 -0.171657 + 0.133333 -0.997221 -0.0700519 0.0253689 -0.776385 + 0.333333 -0.990195 -0.139165 0.0120944 -0.414262 + 0.5 -0.995302 -0.0966191 -0.00622644 -0.598869 + 0.633333 -0.995276 -0.0964948 -0.0106986 -0.596848 + 0.833333 -0.994998 -0.0984535 -0.0169147 -0.575817 + 1.2 -0.994912 -0.0963114 -0.0295671 -0.571667 + 1.5 -0.994958 -0.0920821 -0.0397411 -0.581018 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.88529 0.137557 -0.444229 -0.435071 + 0.133333 0.176462 0.898554 0.401823 -0.430298 + 0.333333 -0.807332 -0.156017 -0.569099 -0.361232 + 0.5 -0.145623 0.988542 -0.0397234 -0.743483 + 0.633333 0.018401 0.999025 0.0401301 -1.53883 + 0.833333 0.0264821 0.999494 -0.0176018 -1.53028 + 1.2 0.0424318 0.988591 -0.144528 -1.5253 + 1.5 0.0646153 0.983876 -0.166774 -1.53238 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.447396 -0.894288 0.00931187 -4.28242e-006 + 1.5 0.461176 -0.887242 0.0109049 -4.28698e-006 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.0400612 0.581116 -0.812834 -0.211343 + 0.333333 0.224752 0.0442652 0.97341 -0.285222 + 0.633333 0.224752 0.0442652 0.97341 -0.285222 + 1.0 1.0 -3.55455e-006 -6.39521e-007 -0.068151 + 1.5 1.0 1.9681e-005 1.3571e-006 -0.0681484 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.191555 0.23441 -0.953079 -0.203313 + 0.133333 0.633227 -0.144055 0.760442 -0.345235 + 0.333333 0.755977 -0.155857 0.635773 -0.235771 + 0.633333 0.204186 -0.653391 0.728964 -0.503493 + 0.8 0.589133 -0.584963 0.557441 -0.316987 + 1.0 -0.866245 0.485812 -0.116648 -0.187417 + 1.5 -0.753278 0.625432 -0.203489 -0.218541 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.5 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.166075 -0.0284477 -0.985703 -0.726135 + 0.0666667 0.438811 -0.19015 -0.87823 -0.67997 + 0.133333 0.509831 -0.41413 -0.754035 -0.654684 + 0.233333 -0.227625 -0.856538 -0.463173 -0.80151 + 0.333333 -0.610713 -0.753749 -0.242676 -1.265 + 0.366667 -0.733222 -0.635522 -0.241861 -1.28484 + 0.466667 -0.780827 -0.612051 -0.12531 -1.3274 + 0.566667 -0.640497 -0.767869 -0.0118881 -1.16104 + 0.6 -0.600671 -0.799436 0.00979254 -1.06525 + 0.633333 -0.597658 -0.801678 -0.0108626 -0.949716 + 0.733333 -0.535129 -0.844332 -0.0272195 -0.628217 + 0.833333 -0.391717 -0.916809 -0.0775863 -0.299931 + 0.9 -0.313498 -0.89681 0.312172 -0.199698 + 1.1 -0.167307 -0.984776 -0.0471753 -0.172993 + 1.2 0.0136623 -0.998261 0.05734 -0.166331 + 1.26667 0.1122 -0.991995 -0.0579474 -0.166669 + 1.5 0.382425 -0.903627 -0.192896 -0.180166 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.886868 0.443767 0.128595 -0.249989 + 0.0666667 -0.990963 0.134045 0.00490665 -0.893602 + 0.133333 -0.995484 0.0896671 -0.0311557 -1.30434 + 0.233333 -0.995515 0.0936185 -0.0135883 -1.30961 + 0.333333 -0.993442 0.112618 -0.0197736 -1.05792 + 0.366667 -0.993832 0.110041 -0.0137238 -1.09257 + 0.466667 -0.99496 0.0975559 -0.0231879 -1.22408 + 0.566667 -0.992992 0.117 -0.0166429 -1.02283 + 0.6 -0.991799 0.126892 -0.0152459 -0.9381 + 0.633333 -0.990172 0.139156 -0.0139516 -0.849164 + 0.733333 -0.972782 0.231002 -0.0182614 -0.510507 + 0.833333 -0.80277 0.595341 -0.0336029 -0.193535 + 0.9 0.119673 0.989475 -0.0813534 -0.116123 + 1.1 0.34001 0.936097 -0.0900901 -0.122598 + 1.2 0.324295 0.941703 -0.0896017 -0.121879 + 1.26667 0.11729 0.989769 -0.0812382 -0.116087 + 1.5 -0.405624 0.912922 -0.0451949 -0.126144 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.985376 -0.0981324 0.139301 -0.389375 + 0.0666667 0.762734 0.430292 0.482789 -0.518099 + 0.133333 0.403721 0.726512 0.556048 -0.68981 + 0.233333 0.390223 0.000656848 0.92072 -0.509426 + 0.333333 0.0973049 -0.561311 0.821865 -0.453182 + 0.366667 0.0255334 -0.484317 0.87452 -0.66232 + 0.466667 0.170491 -0.212525 0.962167 -0.652665 + 0.566667 0.161983 -0.906184 0.390631 -0.687055 + 0.6 0.230631 -0.937201 0.261656 -0.598968 + 0.633333 0.266718 -0.93994 0.213013 -0.461847 + 0.733333 0.244411 -0.939504 -0.239989 -1.03291 + 0.833333 0.261809 -0.536636 -0.802171 -1.05607 + 0.9 0.233808 -0.440747 -0.866646 -1.25422 + 1.1 0.269271 -0.481441 -0.834091 -1.20564 + 1.2 0.291116 -0.479058 -0.828103 -1.22806 + 1.26667 0.306341 -0.493502 -0.814009 -1.22156 + 1.5 0.349605 -0.518669 -0.78023 -1.22674 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.5 0.0 0.0 0.0 -1.26441e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0304079 -0.375569 -0.926296 -0.185769 + 1.5 -0.0307103 -0.351989 -0.9355 -0.198164 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.825306 -0.564514 -0.0139352 -0.643921 + 0.366667 -0.339435 -0.852905 0.396657 -1.34146 + 0.733333 -0.325538 -0.856588 0.400352 -1.38454 + 1.5 -0.325538 -0.856588 0.400352 -1.38454 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.917773 -0.324139 0.229405 -0.575765 + 0.366667 0.940053 -0.24382 0.238437 -0.552257 + 0.733333 0.940053 -0.24382 0.238437 -0.552258 + 1.5 0.940053 -0.243819 0.238437 -0.552258 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.973591 -0.0614629 0.21987 -0.835141 + 0.366667 0.994081 -0.0490059 0.0969559 -0.904918 + 0.733333 0.981252 0.130599 0.141733 -0.905448 + 1.5 0.981252 0.130599 0.141733 -0.905448 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.908408 -0.277242 -0.312941 -0.734465 + 0.366667 0.886546 -0.257729 -0.384203 -0.728168 + 0.733333 0.965135 -0.15409 -0.211593 -0.738604 + 1.5 0.965135 -0.15409 -0.211593 -0.738604 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.56194 0.789217 0.247707 -0.773591 + 0.366667 -0.90403 -0.393426 -0.167167 -5.56658 + 0.733333 -0.876139 -0.44394 -0.187877 -5.63355 + 1.5 -0.876139 -0.44394 -0.187877 -5.63355 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.590433 -0.800609 -0.102045 -0.160655 + 0.366667 -0.251626 0.967026 -0.0393041 -5.66544 + 0.733333 -0.747419 0.582942 -0.318658 -5.62047 + 1.5 -0.747419 0.582942 -0.318658 -5.62047 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.600306 -0.655741 -0.457861 -0.64131 + 0.366667 -0.371424 0.907332 -0.196959 -5.78707 + 0.733333 -0.890366 -0.0990149 -0.444347 -5.32498 + 1.5 -0.886018 0.0138905 -0.463443 -5.2977 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.810864 -0.578404 -0.0891556 -0.458916 + 0.366667 0.693902 0.71711 0.0652227 -5.88323 + 0.733333 -0.132281 -0.120795 -0.983824 -5.71389 + 1.5 0.0469446 -0.314723 -0.948022 -5.66068 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.631557 -0.774167 -0.0424448 -0.724398 + 0.366667 0.557175 0.829824 0.0307852 -5.66475 + 0.733333 0.254954 0.227307 -0.939856 -5.70964 + 1.5 0.441766 0.131889 -0.887383 -5.65337 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.397472 -0.906184 -0.14438 -0.693712 + 0.366667 0.332103 0.933615 0.13443 -5.76262 + 0.733333 0.632731 0.0971764 -0.76825 -5.80834 + 1.5 0.698853 0.100443 -0.708178 -5.76421 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.0527841 0.974145 -0.219671 -5.88014 + 0.366667 -0.35802 0.899206 -0.251498 -6.02955 + 0.733333 -0.538422 0.219454 0.813598 -0.679364 + 1.5 -0.620562 0.125809 0.773999 -0.740284 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.252915 0.92668 -0.278027 -5.77164 + 0.366667 0.241402 0.909208 -0.339213 -5.97058 + 0.733333 -0.651403 0.0623688 0.756165 -0.822881 + 1.5 -0.6395 -0.142234 0.755519 -1.01708 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim sitcross c_marilithe + + +#NWmax ANIM ASCII +newanim sitcrossps c_marilithe + length 2.0 + transtime 1.0 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.00026453 -0.297573 0.293055 + 2.0 0.00026453 -0.297573 0.293055 + endlist + orientationkey + 0.0 -0.853156 -0.516266 -0.074791 -0.335753 + 2.0 -0.853156 -0.516266 -0.074791 -0.335753 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.966122 0.00279802 0.258069 -0.46898 + 0.0666667 0.965943 0.00297136 0.258738 -0.46774 + 1.03333 0.959347 0.00903455 0.282085 -0.428201 + 1.1 0.959111 0.00924174 0.28288 -0.426971 + 1.16667 0.959419 0.00897106 0.281841 -0.42858 + 1.93333 0.965887 0.00302483 0.258945 -0.467359 + 2.0 0.966122 0.00279796 0.258069 -0.46898 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.438007 0.564342 0.699763 -0.355231 + 0.0666667 0.439693 0.564358 0.698692 -0.355397 + 1.03333 0.49184 0.563708 0.663571 -0.361431 + 1.1 0.493411 0.563653 0.66245 -0.361642 + 1.16667 0.491356 0.563725 0.663915 -0.361366 + 1.93333 0.440212 0.564362 0.698362 -0.355448 + 2.0 0.438007 0.564342 0.699763 -0.355231 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.994958 -0.0920821 -0.0397409 -0.581018 + 0.0666667 -0.994963 -0.0920357 -0.0397354 -0.581285 + 1.03333 -0.995103 -0.0905744 -0.039566 -0.589813 + 1.1 -0.995108 -0.0905294 -0.0395607 -0.590079 + 1.16667 -0.995102 -0.0905882 -0.0395678 -0.589731 + 1.93333 -0.994964 -0.0920215 -0.0397338 -0.581367 + 2.0 -0.994958 -0.0920821 -0.0397411 -0.581018 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.0646153 0.983876 -0.166774 -1.53238 + 0.0666667 0.0650971 0.98378 -0.167151 -1.53257 + 1.03333 0.0804497 0.98053 -0.179132 -1.53892 + 1.1 0.0809273 0.980423 -0.179504 -1.53912 + 1.16667 0.0803027 0.980563 -0.179017 -1.53885 + 1.93333 0.0652453 0.983751 -0.167266 -1.53263 + 2.0 0.0646153 0.983876 -0.166774 -1.53238 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.525079 -0.851045 0.00381505 -4.46757e-006 + 2.0 0.63091 -0.77583 0.00637339 -4.90119e-006 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 1.0 1.99619e-005 1.30284e-006 -0.0681485 + 1.0 1.0 1.95896e-005 1.3267e-006 -0.0681489 + 1.1 1.0 1.98531e-005 1.27732e-006 -0.0681498 + 1.2 1.0 1.98606e-005 1.24119e-006 -0.0681516 + 1.56667 1.0 1.51427e-005 1.38976e-006 -0.0681484 + 1.9 1.0 1.55448e-005 1.38715e-006 -0.0681486 + 2.0 1.0 1.56344e-005 1.37213e-006 -0.0681489 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.715554 0.666143 -0.210324 -0.205713 + 0.433333 -0.559703 0.796261 -0.229568 -0.173141 + 1.0 -0.584772 0.778722 -0.227231 -0.176646 + 1.1 -0.586049 0.777798 -0.227105 -0.176835 + 1.56667 -0.716388 0.665292 -0.210176 -0.205462 + 2.0 -0.715554 0.666143 -0.210324 -0.205713 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.382387 -0.903562 -0.193278 -0.180186 + 0.0666667 0.389277 -0.899612 -0.197894 -0.180923 + 1.03333 0.566939 -0.764537 -0.306698 -0.210433 + 1.1 0.571139 -0.760194 -0.309686 -0.21156 + 1.16667 0.565322 -0.765534 -0.307196 -0.210208 + 1.93333 0.3891 -0.894503 -0.22015 -0.18232 + 2.0 0.380006 -0.899403 -0.21603 -0.181434 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.405624 0.912922 -0.0451949 -0.126144 + 0.0666667 -0.420778 0.906105 -0.043805 -0.127102 + 1.03333 -0.741627 0.67077 -0.00753557 -0.17198 + 1.1 -0.747585 0.664132 -0.00669175 -0.173706 + 1.16667 -0.739758 0.672828 -0.00779885 -0.171452 + 1.93333 -0.425371 0.903979 -0.0433794 -0.127403 + 2.0 -0.405624 0.912922 -0.0451952 -0.126144 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.349605 -0.518669 -0.78023 -1.22674 + 0.0666667 0.350921 -0.519452 -0.779117 -1.22689 + 1.03333 0.392187 -0.543417 -0.742218 -1.23358 + 1.1 0.393448 -0.544131 -0.741027 -1.23384 + 1.16667 0.391799 -0.543197 -0.742584 -1.2335 + 1.93333 0.351326 -0.519693 -0.778774 -1.22694 + 2.0 0.349604 -0.518669 -0.78023 -1.22674 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.987308 0.114761 -0.109784 -4.63615e-007 + 2.0 0.992045 0.101975 -0.0738129 -7.7486e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.0307161 -0.351497 -0.935685 -0.19844 + 2.0 -0.0310393 -0.32409 -0.945517 -0.215139 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.325538 -0.856588 0.400352 -1.38454 + 2.0 -0.325538 -0.856588 0.400352 -1.38454 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.940053 -0.243819 0.238437 -0.552257 + 2.0 0.940053 -0.243819 0.238437 -0.552257 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.981252 0.130599 0.141733 -0.905448 + 2.0 0.981252 0.130599 0.141733 -0.905448 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.965135 -0.15409 -0.211593 -0.738603 + 2.0 0.965135 -0.15409 -0.211593 -0.738603 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 -0.876139 -0.44394 -0.187878 -5.63355 + 2.0 -0.876139 -0.44394 -0.187878 -5.63355 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.74742 0.582942 -0.318658 -5.62047 + 2.0 -0.74742 0.582942 -0.318658 -5.62047 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.886018 0.0138908 -0.463443 -5.2977 + 0.466667 -0.864737 0.152335 -0.478564 -5.24595 + 1.0 -0.864737 0.152335 -0.478564 -5.24595 + 1.33333 -0.867483 -0.304173 -0.393639 -5.34527 + 2.0 -0.886018 0.0138905 -0.463443 -5.2977 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.0469444 -0.314723 -0.948022 -5.66068 + 0.466667 -0.501055 0.351774 -0.790695 -5.67121 + 1.0 -0.501055 0.351774 -0.790695 -5.67121 + 1.33333 -0.228005 -0.00913418 -0.973617 -5.72435 + 1.53333 0.0519801 -0.319897 -0.946025 -5.65842 + 2.0 0.0469447 -0.314723 -0.948022 -5.66068 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 0.441766 0.131889 -0.887383 -5.65337 + 0.466667 0.523828 0.084073 -0.847665 -5.61169 + 1.0 -0.0864702 0.363454 -0.927591 -5.73672 + 1.33333 -0.451981 0.456824 -0.766176 -5.67685 + 1.53333 0.323514 0.194233 -0.926074 -5.69367 + 2.0 0.441767 0.131889 -0.887382 -5.65337 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 0.698852 0.100443 -0.708178 -5.76421 + 0.466667 0.804764 0.104223 -0.584374 -5.64452 + 1.0 -0.0338682 0.0457914 -0.998377 -5.93482 + 1.33333 -0.902774 -0.063945 -0.425335 -5.58485 + 1.53333 0.565999 0.0934486 -0.819093 -5.8406 + 2.0 0.698853 0.100443 -0.708178 -5.76421 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.620562 0.125809 0.773999 -0.740285 + 0.466667 0.735534 0.0377562 -0.676435 -5.37449 + 1.0 -0.410197 -0.733262 -0.542278 -5.57289 + 1.33333 -0.320722 -0.710358 -0.626521 -5.62389 + 1.53333 -0.028114 0.588799 0.807791 -0.58533 + 2.0 -0.620562 0.125809 0.773999 -0.740284 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.6395 -0.142234 0.755519 -1.01708 + 0.466667 -0.628416 -0.215865 0.747325 -1.12149 + 1.0 0.429438 -0.782178 -0.451422 -5.67257 + 1.33333 0.498589 -0.674727 -0.544199 -5.66846 + 1.53333 -0.49421 0.682728 0.538181 -0.614948 + 2.0 -0.6395 -0.142234 0.755519 -1.01708 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim sitcrossps c_marilithe + + +#NWmax ANIM ASCII +newanim bow c_marilithe + length 2.0 + transtime 0.5 + animroot rootdummy + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.0527694 -0.00760396 1.16708 + 0.333333 -0.2014 0.0180535 1.08699 + 0.666667 -0.231993 0.0122207 1.03378 + 1.0 -0.23488 0.00893674 1.02885 + 1.46667 -0.200291 0.0183116 1.08934 + 2.0 -0.0695816 -0.00623502 1.16329 + endlist + orientationkey + 0.0 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + 2.0 -7.66378e-007 1.0 -1.23253e-005 -0.0698131 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.0534268 -0.331727 0.941861 -0.334803 + 0.333333 0.946582 -0.151969 0.284408 -0.740768 + 0.666667 0.9936 -0.0698923 0.0887332 -1.12791 + 1.0 0.994169 -0.0692769 0.0826302 -1.18863 + 1.16667 0.991883 -0.076447 0.101606 -1.11341 + 2.0 0.0529258 -0.358446 0.932049 -0.310269 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.114367 0.992968 -0.030565 -0.290427 + 0.166667 -0.581642 0.755931 0.300435 -0.509254 + 0.333333 -0.636401 0.653218 0.410243 -0.768369 + 0.666667 -0.606397 0.586569 0.536861 -1.05143 + 1.0 -0.602963 0.616264 0.50661 -1.06888 + 1.16667 -0.676877 0.548943 0.490407 -1.09035 + 1.46667 -0.689467 0.565795 0.45223 -1.013 + 2.0 -0.386866 0.811414 0.438112 -0.436836 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.758696 -0.643955 -0.0985008 -0.0882253 + 0.166667 -0.986444 -0.157152 -0.0472289 -0.351947 + 0.333333 -0.994656 -0.095139 -0.0400956 -0.563951 + 0.666667 -0.991998 -0.118767 -0.0428268 -0.459103 + 1.0 -0.992071 -0.118184 -0.0427601 -0.461226 + 1.16667 -0.983771 -0.17261 -0.0489889 -0.321599 + 1.46667 0.819102 -0.571937 -0.0442745 -0.1002 + 2.0 0.771263 -0.6343 -0.0530724 -0.0902959 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.603995 -0.0901997 -0.791867 -0.390308 + 0.166667 0.459534 -0.278464 -0.843378 -0.566125 + 0.333333 0.769366 0.632876 0.0868587 -0.307127 + 0.666667 0.122705 0.219843 0.967787 -1.14464 + 1.0 0.0635522 0.428153 0.901469 -1.12133 + 1.16667 0.0635523 0.428153 0.901469 -1.12133 + 1.46667 -0.0854612 0.234121 0.968444 -1.28882 + 2.0 0.290575 0.933835 0.208611 -0.206676 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.447618 -0.894186 0.00836307 -4.256e-006 + 2.0 0.461025 -0.88734 0.0091901 -4.2633e-006 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.0749948 0.338669 -0.937912 -0.182712 + 0.666667 -0.902042 0.237149 -0.360668 -0.224628 + 1.0 -0.682858 0.43497 -0.586947 -0.132542 + 1.13333 -0.59579 0.484204 -0.640766 -0.120548 + 1.83333 -0.373681 0.276799 -0.885294 -0.196199 + 2.0 0.0749949 0.338669 -0.937912 -0.182712 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.17644 0.0296352 -0.983865 -0.149004 + 0.666667 -0.953218 0.297558 -0.0532468 -0.672046 + 1.0 -0.407001 0.908872 0.0911166 -0.218643 + 1.13333 0.0147893 0.98924 0.145555 -0.199668 + 1.83333 -0.580081 -0.0287615 -0.814051 -0.179928 + 2.0 0.17644 0.0296352 -0.983865 -0.149004 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.262533 -0.227728 -0.937665 -0.475711 + 0.166667 -0.101143 -0.356385 -0.928849 -0.672536 + 0.333333 -0.291079 -0.481739 -0.826559 -0.940068 + 0.666667 -0.384644 -0.434785 -0.814255 -1.14073 + 1.0 -0.416608 -0.453896 -0.787665 -1.17244 + 1.16667 -0.451945 -0.446157 -0.772457 -1.18758 + 1.46667 -0.383327 -0.362578 -0.849469 -1.15123 + 2.0 -0.0364121 -0.439045 -0.897727 -0.631375 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.970248 0.222582 0.0952635 -0.480421 + 0.166667 -0.980169 0.177524 0.0880599 -0.589851 + 0.333333 -0.968856 0.228196 0.0961519 -0.469521 + 0.666667 -0.985092 0.150321 0.0836483 -0.682851 + 1.0 -0.980188 0.177427 0.0880443 -0.590137 + 1.16667 -0.964652 0.244346 0.0986962 -0.440707 + 1.46667 -0.918341 0.377482 0.118986 -0.292101 + 2.0 -0.865802 0.482114 0.133987 -0.230734 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.740559 0.424088 0.521269 -0.430267 + 0.166667 0.606857 0.449299 0.655633 -0.590727 + 0.333333 0.660466 -0.72269 -0.203726 -0.457106 + 0.666667 0.0463586 -0.195018 -0.979703 -1.25076 + 1.0 0.113416 -0.360235 -0.925941 -1.24848 + 1.16667 0.113416 -0.360235 -0.925941 -1.24848 + 1.46667 0.0434651 -0.325486 -0.944547 -1.24469 + 2.0 0.552923 -0.833151 0.0116326 -0.473858 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.999993 0.00243237 0.00282957 -3.83837e-006 + 2.0 0.0 0.0 0.0 -1.19209e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 2.24408e-006 -1.0 -5.00507e-005 -0.069811 + 2.0 3.06813e-006 -1.0 -4.97991e-005 -0.069811 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.825306 -0.564514 -0.0139352 -0.643921 + 0.633333 -0.889534 -0.455392 -0.0366982 -0.824091 + 2.0 -0.825306 -0.564514 -0.0139352 -0.643921 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.917773 -0.324139 0.229405 -0.575765 + 0.633333 0.937573 -0.214243 0.273965 -0.770012 + 2.0 0.917773 -0.324139 0.229405 -0.575765 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.973591 -0.0614629 0.21987 -0.835141 + 0.633333 0.953752 -0.0661215 0.293231 -1.1039 + 0.966667 0.948388 -0.0671424 0.309922 -1.19021 + 2.0 0.973591 -0.0614628 0.21987 -0.835141 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.908408 -0.277242 -0.312941 -0.734465 + 0.633333 0.802524 -0.160927 -0.574507 -0.588724 + 0.966667 0.843767 -0.198947 -0.498475 -0.621616 + 2.0 0.908408 -0.277242 -0.312941 -0.734465 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.56194 0.789218 0.247708 -0.773591 + 0.633333 0.512994 0.821536 0.248828 -0.777058 + 0.966667 0.738937 0.631646 0.234512 -0.784368 + 2.0 0.56194 0.789218 0.247707 -0.773591 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.590434 -0.800609 -0.102043 -0.160655 + 0.633333 0.451305 -0.824194 -0.342095 -0.353836 + 0.966667 0.827517 0.561045 -0.0210972 -6.10995 + 2.0 -0.590435 -0.800608 -0.102045 -0.160655 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.600307 -0.65574 -0.457861 -0.64131 + 0.633333 0.265369 0.871223 0.412977 -5.59581 + 0.966667 0.797002 0.411899 0.441731 -5.60677 + 2.0 -0.600306 -0.655741 -0.457861 -0.641311 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.810864 -0.578404 -0.0891555 -0.458916 + 0.633333 0.81087 0.578399 0.0891351 -5.82427 + 0.966667 -0.924989 -0.262705 -0.274558 -0.512431 + 2.0 -0.810863 -0.578404 -0.089156 -0.458916 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.631557 -0.774166 -0.0424452 -0.724398 + 0.633333 -0.478945 -0.825844 0.297647 -0.816204 + 0.966667 -0.558211 -0.81002 0.179632 -0.30185 + 2.0 -0.631557 -0.774167 -0.0424449 -0.724398 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.397472 -0.906184 -0.14438 -0.693712 + 0.633333 0.484423 0.864606 -0.133386 -5.55216 + 0.966667 0.073451 0.648481 -0.757679 -0.48123 + 2.0 -0.397473 -0.906184 -0.14438 -0.693712 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.0527846 0.974145 -0.219671 -5.88014 + 0.633333 0.37173 0.772364 -0.515044 -5.80323 + 0.966667 0.548321 0.729151 -0.409491 -0.435703 + 2.0 -0.0527844 0.974145 -0.219671 -5.88014 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.252915 0.92668 -0.278027 -5.77164 + 0.633333 0.589605 0.743315 -0.315988 -5.64698 + 0.966667 -0.507232 0.486814 -0.711145 -0.332585 + 2.0 0.252915 0.92668 -0.278027 -5.77164 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim bow c_marilithe + + +#NWmax ANIM ASCII +newanim tlkforce c_marilithe + length 2.0 + transtime 0.5 + animroot c_marilithe + event 0.166667 snd_footstep + event 1.46667 snd_footstep + event 1.93333 snd_footstep + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.00336002 0.042072 1.15046 + 0.0666667 -0.00261558 0.0453414 1.14973 + 0.133333 -0.000424827 0.0549629 1.14759 + 0.166667 0.00249624 0.0677915 1.14473 + 0.233333 0.0083382 0.0934488 1.13902 + 0.3 0.0100399 0.100922 1.13735 + 0.366667 0.00825561 0.0928225 1.13868 + 0.466667 0.00145869 0.0619676 1.14373 + 0.5 -0.000806959 0.0516827 1.14541 + 0.6 -0.00760378 0.0208278 1.15047 + 0.666667 -0.00958623 0.0118285 1.15194 + 0.733333 -0.00851893 0.016552 1.15095 + 0.8 -0.00510362 0.0316673 1.1478 + 0.833333 -0.00202187 0.0453065 1.14495 + 0.9 0.00414168 0.0725849 1.13925 + 0.966667 0.0103052 0.0998633 1.13356 + 1.0 0.013387 0.113503 1.13071 + 1.06667 0.0160285 0.125193 1.12827 + 1.13333 0.0135937 0.114585 1.13078 + 1.2 0.00750656 0.0880624 1.13707 + 1.26667 0.0014195 0.0615403 1.14336 + 1.33333 -0.000667542 0.0524471 1.14552 + 1.4 0.00128251 0.0610839 1.14373 + 1.46667 0.00697019 0.0862747 1.1385 + 1.53333 0.0126579 0.111465 1.13327 + 1.6 0.014933 0.121542 1.13118 + 1.63333 0.0141707 0.11823 1.13199 + 1.66667 0.0134085 0.114919 1.13279 + 1.8 0.00586268 0.0821379 1.14074 + 1.93333 -0.00168326 0.0493564 1.14869 + 2.0 -0.00336002 0.042072 1.15046 + endlist + orientationkey + 0.0 0.627492 0.351856 0.694587 -0.325185 + 0.0666667 0.625977 0.344974 0.69939 -0.331597 + 0.133333 0.621604 0.326047 0.712251 -0.350591 + 0.166667 0.616027 0.303545 0.726892 -0.376173 + 0.233333 0.605862 0.266099 0.749748 -0.428018 + 0.3 0.603154 0.256738 0.755176 -0.443253 + 0.366667 0.599478 0.265376 0.755117 -0.431402 + 0.5 0.576157 0.317041 0.753345 -0.371881 + 0.6 0.551438 0.366812 0.749243 -0.328247 + 0.666667 0.542565 0.38362 0.747301 -0.315742 + 0.733333 0.54982 0.370901 0.748419 -0.321936 + 0.8 0.570566 0.332846 0.750778 -0.342181 + 0.833333 0.5865 0.301727 0.75165 -0.360934 + 0.966667 0.631654 0.202116 0.74844 -0.439327 + 1.0 0.639661 0.1822 0.746751 -0.459554 + 1.06667 0.645781 0.166396 0.745171 -0.477042 + 1.13333 0.636095 0.183614 0.749445 -0.450603 + 1.26667 0.556834 0.307942 0.771432 -0.322371 + 1.33333 0.534621 0.338584 0.774301 -0.301439 + 1.4 0.565259 0.316561 0.761756 -0.31869 + 1.46667 0.634356 0.262317 0.727174 -0.371312 + 1.53333 0.682469 0.220101 0.696988 -0.426365 + 1.6 0.697678 0.20585 0.686201 -0.448868 + 1.63333 0.695797 0.210411 0.686727 -0.443546 + 1.66667 0.693854 0.215076 0.687248 -0.438235 + 1.8 0.670557 0.267596 0.691915 -0.386331 + 1.93333 0.636946 0.334528 0.694543 -0.336059 + 2.0 0.627492 0.351856 0.694587 -0.325185 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.143956 -0.286137 -0.947313 -0.289048 + 0.166667 0.056538 -0.42412 -0.903839 -0.2165 + 0.3 0.261665 -0.144549 -0.954273 -0.492134 + 0.5 0.114883 -0.454261 -0.88343 -0.192262 + 0.666667 0.0411372 -0.706496 -0.70652 -0.140513 + 0.833333 0.341383 -0.272392 -0.899589 -0.383442 + 0.966667 0.218568 -0.450183 -0.865773 -0.223558 + 1.06667 0.293119 -0.203025 -0.934271 -0.425453 + 1.26667 0.524217 -0.69927 -0.486023 -0.165462 + 1.46667 0.620079 -0.171722 -0.765516 -0.450841 + 1.63333 0.462746 -0.372373 -0.80449 -0.191015 + 1.8 0.419862 -0.147821 -0.895469 -0.412782 + 2.0 0.143956 -0.286137 -0.947313 -0.289048 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.826186 0.505202 0.249376 -1.56534 + 0.233333 -0.83612 0.482936 0.260146 -1.61314 + 0.433333 -0.828225 0.499444 0.254164 -1.57109 + 0.766667 -0.871105 0.383021 0.307361 -1.84142 + 0.9 -0.828225 0.499444 0.254164 -1.57109 + 1.03333 -0.871105 0.383021 0.307361 -1.84142 + 1.16667 -0.828225 0.499444 0.254164 -1.57109 + 1.4 -0.871105 0.383021 0.307361 -1.84142 + 1.43333 -0.843638 0.454943 0.285135 -1.64529 + 1.53333 -0.655728 0.736873 0.164434 -1.11919 + 1.56667 -0.522961 0.847334 0.0923941 -0.983894 + 1.7 -0.470515 0.881913 -0.029082 -1.08187 + 1.86667 -0.828225 0.499444 0.254164 -1.57109 + 1.93333 -0.827213 0.502322 0.251775 -1.5682 + 2.0 -0.826186 0.505202 0.249376 -1.56534 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.954719 -0.216159 -0.204418 -1.36734 + 0.266667 -0.956417 -0.22427 -0.186999 -1.57518 + 0.466667 -0.964829 -0.1776 -0.193812 -1.15531 + 0.8 -0.964874 -0.214235 -0.152059 -1.65598 + 0.933333 -0.964829 -0.1776 -0.193812 -1.15531 + 1.06667 -0.964874 -0.214235 -0.152059 -1.65598 + 1.2 -0.964829 -0.1776 -0.193812 -1.15531 + 1.43333 -0.964874 -0.214235 -0.152059 -1.65598 + 1.53333 -0.972914 -0.144067 -0.180785 -1.05184 + 1.6 -0.974224 -0.0344535 -0.222935 -0.65545 + 1.73333 -0.964874 -0.214235 -0.152059 -1.65598 + 1.9 -0.964829 -0.1776 -0.193812 -1.15531 + 1.93333 -0.961313 -0.191773 -0.197739 -1.22581 + 2.0 -0.954719 -0.216159 -0.204418 -1.36734 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.617028 0.224532 -0.754229 -4.77442 + 0.5 -0.145779 -0.3837 -0.911879 -4.67754 + 0.833333 0.614277 0.200352 -0.763232 -4.76693 + 0.966667 -0.145779 -0.3837 -0.911879 -4.67754 + 1.1 0.614277 0.200352 -0.763232 -4.76693 + 1.23333 -0.145779 -0.3837 -0.911879 -4.67754 + 1.43333 0.529566 0.11668 -0.840206 -4.81946 + 1.46667 0.614277 0.200352 -0.763232 -4.76694 + 1.53333 -0.340351 0.0477487 0.939085 -1.42325 + 1.63333 0.145779 0.3837 0.911879 -1.60565 + 1.76667 -0.614277 -0.200352 0.763232 -1.51625 + 1.93333 -0.145779 -0.3837 -0.911879 -4.67754 + 2.0 0.617028 0.224532 -0.754229 -4.77442 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 -0.619467 0.785009 -0.00467115 -6.28318 + 2.0 -0.723152 0.690612 0.0102962 -6.28318 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 -0.532551 -0.0302676 0.845857 -0.134056 + 0.166667 0.888295 -0.410415 -0.206136 -0.0799505 + 0.3 0.757627 0.0436799 0.651225 -0.149422 + 0.5 0.963111 -0.0380193 -0.266407 -0.232892 + 0.666667 -0.672653 -0.392077 -0.627545 -0.14761 + 0.833333 0.739824 0.0323567 0.672022 -0.153728 + 0.966667 -0.263405 0.636393 -0.724998 -0.119563 + 1.06667 0.776097 0.466656 0.424152 -0.165199 + 1.26667 0.298967 0.345103 -0.889676 -0.157553 + 1.46667 0.594161 0.239626 0.767823 -0.121639 + 1.63333 -0.152967 -0.290003 -0.944722 -0.0781071 + 1.8 0.993046 -0.0987797 0.0640424 -0.154059 + 2.0 -0.532551 -0.0302676 0.845857 -0.134056 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.920429 -0.0326326 -0.389546 -0.212495 + 0.166667 -0.958281 0.126432 -0.256346 -0.329408 + 0.233333 -0.9899 0.108968 -0.0906864 -0.454186 + 0.3 -0.99894 0.042045 0.018719 -0.531724 + 0.4 -0.995508 0.0876142 -0.0358734 -0.512655 + 0.5 -0.963655 0.195677 -0.181879 -0.236594 + 0.666667 -0.372523 0.721825 -0.583262 -0.068275 + 0.733333 -0.989964 0.0786378 -0.117419 -0.415937 + 0.833333 -0.991751 0.0496123 -0.118188 -0.454213 + 0.9 -0.834202 0.159303 -0.527949 -0.112011 + 0.966667 -0.241335 0.0609648 -0.968525 -0.055832 + 1.06667 -0.999413 -0.0292396 -0.0178787 -0.558972 + 1.16667 -0.99835 -0.027904 -0.0501928 -0.441975 + 1.26667 -0.994916 -0.0337193 -0.0948998 -0.316708 + 1.33333 -0.997749 -0.0312888 -0.0593057 -0.541027 + 1.46667 -0.997794 -0.0368738 -0.0552094 -0.615417 + 1.53333 -0.98539 0.0176863 -0.169395 -0.376074 + 1.63333 -0.952932 0.0672526 -0.295631 -0.393811 + 1.7 -0.997766 0.0206992 -0.0635116 -0.600768 + 1.8 -0.990737 -0.00470873 0.135711 -0.613097 + 1.86667 -0.969796 -0.0722796 0.232964 -0.134118 + 2.0 -0.920429 -0.0326326 -0.389546 -0.212495 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.877629 -0.396114 -0.269927 -1.45346 + 0.166667 -0.891197 -0.366045 -0.267916 -1.57627 + 0.366667 -0.876252 -0.404594 -0.261698 -1.45263 + 0.7 -0.917107 -0.307148 -0.254115 -1.92557 + 0.833333 -0.875917 -0.405011 -0.262173 -1.45301 + 0.966667 -0.916976 -0.307411 -0.254272 -1.92578 + 1.1 -0.875726 -0.40525 -0.262444 -1.45323 + 1.33333 -0.916795 -0.307772 -0.254488 -1.92606 + 1.43333 -0.830107 -0.512634 -0.219382 -1.20001 + 1.5 -0.625451 -0.766207 -0.147438 -0.774302 + 1.53333 -0.654362 -0.731756 -0.19064 -0.774057 + 1.8 -0.875223 -0.405875 -0.263155 -1.45379 + 1.93333 -0.875886 -0.400566 -0.269019 -1.45465 + 2.0 -0.876196 -0.397904 -0.271942 -1.45511 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.949727 0.287055 0.124968 -1.49612 + 0.2 -0.939247 0.319462 0.125535 -1.69085 + 0.4 -0.950677 0.269204 0.154084 -1.31986 + 0.733333 -0.93117 0.331262 0.152275 -1.73015 + 0.866667 -0.950677 0.269204 0.154084 -1.31986 + 1.0 -0.93117 0.331262 0.152275 -1.73015 + 1.13333 -0.950677 0.269204 0.154084 -1.31986 + 1.36667 -0.93117 0.331262 0.152275 -1.73015 + 1.43333 -0.943151 0.285925 0.169449 -1.36333 + 1.53333 -0.964296 0.153416 0.215863 -0.822007 + 1.83333 -0.950677 0.269204 0.154084 -1.31986 + 1.93333 -0.950214 0.280392 0.135916 -1.42548 + 2.0 -0.949728 0.287055 0.124968 -1.49612 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.469531 -0.0892133 0.878397 -4.78239 + 0.2 0.380615 0.0187653 0.924543 -4.78948 + 0.3 0.587294 -0.252995 0.768817 -4.72664 + 0.4 0.607995 -0.285531 0.74082 -4.70783 + 0.5 0.130791 0.278163 0.951588 -4.71236 + 0.733333 0.313864 0.0936747 0.944836 -4.78161 + 0.866667 0.589977 -0.257129 0.765383 -4.7244 + 1.0 0.305326 0.102929 0.946669 -4.77989 + 1.13333 0.602984 -0.277512 0.747929 -4.71274 + 1.23333 0.087658 0.317745 0.944116 -4.68611 + 1.36667 0.292459 0.116745 0.949125 -4.77703 + 1.43333 -0.605503 0.281531 -0.744383 -1.57288 + 1.53333 -0.153279 -0.256971 -0.954186 -1.55869 + 1.83333 0.161962 0.248684 0.954947 -4.72891 + 1.93333 0.602984 -0.277512 0.747929 -4.71274 + 2.0 0.469531 -0.0892132 0.878397 -4.78239 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.999757 -0.0214416 0.00506791 -6.28318 + 2.0 -0.999997 -0.00180044 0.00191159 -6.28318 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 4.39501e-006 1.0 5.05289e-005 -6.21337 + 2.0 -3.43021e-007 1.0 4.9763e-005 -6.21337 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.858914 -0.511835 -0.0170804 -0.801366 + 2.0 -0.858914 -0.511835 -0.0170804 -0.801366 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.944496 -0.214974 0.248421 -0.678936 + 2.0 0.944496 -0.214974 0.248421 -0.678936 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.969322 -0.0499425 0.240667 -0.880252 + 2.0 0.969322 -0.0499425 0.240667 -0.880252 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.792446 -0.207097 -0.573708 -0.642332 + 2.0 0.792446 -0.207097 -0.573708 -0.642332 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.584781 0.770576 0.253464 -0.774002 + 0.3 0.584781 0.770575 0.253464 -0.774002 + 0.966667 0.584782 0.770575 0.253464 -0.774002 + 2.0 0.584782 0.770575 0.253464 -0.774002 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.59043 -0.800611 -0.102049 -0.160656 + 0.3 0.519465 0.827323 0.213759 -0.291565 + 0.633333 0.846693 0.529141 0.0558664 -0.321714 + 0.966667 0.519465 0.827323 0.213758 -0.291565 + 2.0 -0.59043 -0.800611 -0.102047 -0.160656 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.600305 -0.655741 -0.457862 -0.641311 + 0.3 0.493619 0.743614 -0.450976 -0.353375 + 0.633333 0.635212 0.529948 -0.561837 -0.399349 + 0.966667 0.493619 0.743613 -0.450976 -0.353374 + 2.0 -0.600305 -0.65574 -0.457862 -0.641311 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.81086 -0.578409 -0.0891518 -0.458916 + 0.3 -0.488285 -0.868785 0.0823985 -5.76423 + 0.633333 -0.702307 -0.706189 -0.0897889 -5.8255 + 0.966667 -0.488284 -0.868786 0.0823989 -5.76423 + 2.0 -0.810861 -0.578409 -0.0891514 -0.458917 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.631561 -0.774164 -0.0424347 -0.724399 + 0.3 -0.676653 -0.554726 0.48417 -5.89108 + 0.633333 -0.919554 0.250023 0.303166 -5.82802 + 0.966667 -0.676647 -0.554687 0.484222 -5.89108 + 2.0 -0.631561 -0.774164 -0.0424346 -0.724399 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.397477 -0.90618 -0.144395 -0.693716 + 0.3 -0.811063 -0.283852 0.511473 -5.6808 + 0.633333 -0.803513 0.145479 0.577237 -5.61463 + 0.966667 -0.811063 -0.283851 0.511474 -5.6808 + 2.0 -0.397477 -0.90618 -0.144396 -0.693717 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.0527556 0.974134 -0.219725 -5.88016 + 0.3 -0.837433 -0.249156 -0.486443 -5.56433 + 0.633333 -0.960187 0.266117 0.0849844 -5.61839 + 0.966667 -0.837435 -0.249169 -0.486434 -5.56433 + 2.0 -0.0527557 0.974134 -0.219725 -5.88016 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.252972 0.92663 -0.278141 -5.77164 + 0.3 0.0800301 -0.0573721 -0.99514 -6.00262 + 0.633333 0.613913 0.673694 -0.411397 -5.55372 + 0.966667 0.0799328 -0.0574114 -0.995146 -6.0026 + 2.0 0.252972 0.92663 -0.278141 -5.77164 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim tlkforce c_marilithe + + +#NWmax ANIM ASCII +newanim plpause1 c_marilithe + length 2.0 + transtime 0.4 + animroot rbicep_g + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.000102231 -0.0323418 1.02319 + 2.0 -0.000102231 -0.0323418 1.02319 + endlist + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.0 0.0 0.0 0.0 0.0 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.0227836 0.939781 0.341018 -4.16145e-006 + 2.0 0.0562986 0.938534 0.340565 -4.167e-006 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.0861561 0.455475 -0.88607 -0.257658 + 1.16667 0.118891 0.451031 -0.884554 -0.257379 + 2.0 0.086156 0.455475 -0.88607 -0.257658 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -1.0 0.0 0.0 -2.30385 + 1.16667 -1.0 0.0 0.0 -2.29775 + 2.0 -1.0 0.0 0.0 -2.30385 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.255472 -0.953976 -0.157048 -5.88904 + 1.16667 0.279062 -0.946496 -0.162077 -5.88843 + 2.0 0.255472 -0.953976 -0.157047 -5.88904 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 2.02004e-006 -1.0 4.65081e-006 -4.6922 + 2.0 2.11341e-006 -1.0 4.54019e-006 -4.69219 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.471756 -0.831503 -0.29334 -4.73735e-006 + 2.0 0.69792 -0.675381 -0.238262 -5.83243e-006 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.993139 -0.047907 0.10668 -3.67428e-007 + 2.0 0.998283 -0.0239976 0.0534384 -7.33646e-007 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.570852 -0.417844 0.706777 -0.923764 + 2.0 -0.649922 -0.464502 0.601531 -0.930066 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.939544 0.273684 0.205801 -1.08181 + 2.0 -0.967306 0.212529 0.138383 -1.19338 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.354813 0.350778 -0.866639 -0.734955 + 2.0 -0.166722 0.363144 -0.916695 -0.894956 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.0 0.0 0.0 0.0 -2.02129e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 -0.000128998 -1.0 0.000137086 -0.0872567 + 2.0 -0.000126202 -1.0 0.000136759 -0.0872568 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.879035 -0.47432 -0.0481451 -0.792493 + 2.0 -0.879035 -0.47432 -0.0481451 -0.792493 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.92268 0.374229 0.0928164 -0.773846 + 2.0 0.92268 0.374229 0.0928163 -0.773846 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.998275 0.0507292 -0.0295439 -1.38858 + 0.4 0.955185 0.179663 0.235252 -1.46402 + 0.866667 0.953668 0.190479 0.232885 -1.47979 + 1.23333 0.960656 0.165487 0.223057 -1.55087 + 1.63333 0.914423 0.249828 0.318461 -1.61478 + 2.0 0.998275 0.0507293 -0.0295439 -1.38858 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.752878 -0.330442 -0.569195 -0.442012 + 0.4 0.586543 0.016806 -0.809744 -0.469282 + 0.866667 0.565423 -0.00686873 -0.824772 -0.459289 + 1.23333 0.397448 -0.707803 -0.583995 -0.551663 + 1.63333 0.662462 -0.71894 -0.210404 -0.682383 + 2.0 0.752878 -0.330442 -0.569195 -0.442012 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.56194 0.789217 0.247708 -0.773591 + 0.4 0.561596 0.789212 0.248506 -0.769183 + 0.866667 0.568186 0.789221 0.233011 -0.864244 + 1.23333 0.52284 0.785213 0.331781 -0.477596 + 1.63333 0.363636 0.724442 0.585621 -0.215514 + 2.0 0.56194 0.789218 0.247708 -0.773591 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 0.590436 0.800608 0.10204 -6.12253 + 0.4 -0.564303 -0.8193 -0.101535 -5.65796 + 0.866667 -0.564303 -0.8193 -0.101536 -5.65796 + 1.23333 0.556889 0.824377 0.101372 -0.267449 + 1.63333 -0.552063 -0.827631 -0.101265 -6.08859 + 2.0 0.590437 0.800608 0.10204 -6.12253 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 0.600308 0.655739 0.457861 -5.64188 + 0.4 0.435901 0.461641 0.772579 -5.93999 + 0.866667 -0.567998 -0.651311 0.503161 -5.87041 + 1.23333 -0.431249 -0.506518 0.746635 -5.98224 + 1.63333 0.196949 0.18838 0.962145 -6.02152 + 2.0 0.600308 0.655738 0.457861 -5.64188 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.810866 -0.578401 -0.089155 -0.458917 + 0.4 0.829391 0.550553 0.094874 -5.94297 + 0.866667 -0.6592 -0.750481 -0.0472568 -5.97177 + 1.23333 -0.628847 -0.776518 -0.039638 -6.04068 + 1.63333 0.896673 0.426755 0.117718 -6.11983 + 2.0 -0.810866 -0.578401 -0.0891545 -0.458916 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.631559 -0.774165 -0.0424585 -0.724394 + 0.4 0.553859 0.83261 -0.000597314 -5.74975 + 0.866667 -0.925164 0.00916601 -0.379456 -6.07427 + 1.23333 -0.838077 -0.530255 -0.128281 -5.85675 + 1.63333 -0.558479 -0.829446 -0.0109509 -0.404427 + 2.0 -0.631559 -0.774164 -0.0424586 -0.724394 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.397425 -0.906201 -0.144404 -0.693684 + 0.4 -0.442417 -0.865484 -0.234955 -1.04958 + 0.866667 -0.0305666 0.00561835 -0.999517 -5.91363 + 1.23333 -0.786418 -0.499614 -0.363224 -5.84521 + 1.63333 -0.384556 -0.917854 -0.0982924 -0.515417 + 2.0 -0.397425 -0.906201 -0.144405 -0.693684 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.0524055 -0.974128 0.219836 -0.403185 + 0.4 0.0831863 -0.953877 -0.288441 -0.62451 + 0.866667 -0.117192 0.224449 -0.967413 -5.74408 + 1.23333 -0.0946801 -0.58337 -0.806669 -5.46039 + 1.63333 -0.0505358 -0.620881 0.782275 -0.323602 + 2.0 0.0524061 -0.974128 0.219836 -0.403185 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.252999 0.926681 -0.277947 -5.77167 + 0.4 -0.182248 0.911805 -0.367963 -5.92863 + 0.866667 0.290259 0.431703 -0.854039 -5.60604 + 1.23333 0.550821 0.136682 -0.823355 -5.31112 + 1.63333 0.430563 0.779825 -0.45441 -5.62785 + 2.0 0.252999 0.926681 -0.277946 -5.77167 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim plpause1 c_marilithe + + +#NWmax ANIM ASCII +newanim sitdown c_marilithe + length 1.16667 + transtime 0.3 + animroot c_marilithe + event 0.2 snd_footstep + event 0.466667 snd_footstep + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 0.070305 -0.0758129 1.16539 + 0.133333 0.00498926 0.134593 1.17082 + 0.266667 0.0140451 0.260547 1.15528 + 0.366667 0.0141193 0.363461 1.16257 + 0.466667 -0.00660661 0.403141 1.14711 + 0.533333 -0.00660661 0.399363 1.14643 + 0.6 -0.00660657 0.372307 1.13656 + 0.666667 -0.0066065 0.319311 1.10974 + 0.733333 -0.00660633 0.236218 1.05856 + 0.8 -0.00660623 0.135459 0.983804 + 0.866667 -0.00660614 0.0510888 0.913823 + 0.933333 -0.00660605 -0.0323599 0.845888 + 1.0 -0.00660598 -0.0933 0.785699 + 1.03333 -0.00660597 -0.11193 0.757162 + 1.1 -0.00660596 -0.116838 0.768114 + 1.16667 -0.00660596 -0.117655 0.771923 + endlist + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 0.466667 0.0 0.0 0.0 0.0 + 0.666667 1.0 -2.37595e-006 -5.56647e-006 -0.0916289 + 0.733333 1.0 -2.60354e-006 -1.61445e-006 -0.152715 + 0.8 1.0 -2.62754e-006 -1.3315e-006 -0.160351 + 0.866667 1.0 -2.51662e-006 -3.58978e-006 -0.114536 + 1.03333 0.0 0.0 0.0 0.0 + 1.1 0.0 0.0 0.0 0.0 + 1.16667 0.0 0.0 0.0 0.0 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 -0.0455106 -0.315326 0.947891 -0.426604 + 0.133333 0.987821 -0.142314 -0.0629065 -0.146554 + 0.3 0.978936 0.0284459 0.202177 -0.157664 + 0.4 0.99399 0.0275332 -0.105956 -0.17496 + 0.466667 0.991832 0.0142387 -0.126752 -0.182664 + 0.566667 0.99704 0.0132138 -0.0757434 -0.303769 + 0.666667 0.9879 0.0380613 0.150346 -0.434445 + 0.866667 0.942753 0.0689601 0.326284 -0.740826 + 1.16667 0.907519 0.019488 -0.419559 -0.0554015 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 0.0168007 0.984953 -0.172006 -0.235676 + 0.133333 0.692586 0.716563 0.0828434 -0.268266 + 0.266667 0.748127 0.655143 0.105322 -0.239435 + 0.3 0.692555 0.675935 0.25195 -0.223552 + 0.333333 0.602554 0.684569 0.410237 -0.211258 + 0.466667 0.492348 0.781944 -0.382305 -0.206691 + 0.533333 -0.823898 0.557791 0.100304 -0.234528 + 0.8 -0.139902 0.220015 -0.965412 -0.770405 + 0.866667 -0.151497 0.20954 -0.965993 -0.761097 + 0.933333 -0.11139 0.201479 -0.973139 -0.660363 + 1.0 -0.0927078 0.1935 -0.97671 -0.559548 + 1.03333 -0.09214 0.181593 -0.979048 -0.518933 + 1.1 -0.208435 0.176537 -0.961972 -0.433688 + 1.16667 -0.356003 0.160722 -0.92056 -0.355092 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.943242 -0.325484 -0.065987 -0.173219 + 0.133333 -0.979953 -0.190762 -0.0574696 -0.290831 + 0.266667 -0.981555 -0.182702 -0.0562955 -0.303295 + 0.3 -0.967695 -0.243573 -0.0651112 -0.229047 + 0.333333 -0.935523 -0.344222 -0.0794182 -0.162932 + 0.466667 -0.990655 -0.127588 -0.048213 -0.428428 + 0.533333 -0.98879 -0.140646 -0.0501364 -0.390385 + 0.8 -0.99978 -0.0188948 -0.00909948 -1.33225 + 0.866667 -0.999921 -0.0112052 -0.00565992 -1.50355 + 0.933333 -0.999949 -0.00899042 -0.00449519 -1.50771 + 1.0 -0.999971 -0.00680529 -0.00349361 -1.47857 + 1.03333 -0.999979 -0.0056768 -0.00305964 -1.45698 + 1.1 -0.999991 -0.00365713 -0.00222875 -1.27328 + 1.16667 -0.999998 -0.00101557 -0.00147417 -1.08651 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 0.886682 0.137161 -0.441568 -0.435849 + 0.133333 -0.152325 -0.883734 0.442505 -0.0976119 + 0.266667 0.52942 -0.734296 0.424881 -0.0699326 + 0.3 0.352992 -0.930354 -0.0991874 -0.053916 + 0.333333 -0.0991962 -0.785326 -0.611084 -0.0619435 + 0.466667 0.855661 -0.176646 0.486457 -0.294901 + 0.533333 0.801951 -0.425568 0.419245 -0.107991 + 0.8 0.106935 0.135767 -0.984953 -1.31575 + 0.866667 0.0670082 0.143536 -0.987374 -1.4552 + 0.933333 0.0366176 0.147856 -0.988331 -1.45551 + 1.0 0.0139729 0.136689 -0.990515 -1.43128 + 1.03333 0.0139018 0.125687 -0.991973 -1.43457 + 1.1 -0.0228632 0.0917174 -0.995523 -1.34047 + 1.16667 -0.070218 0.0608609 -0.995673 -1.28629 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.16667 0.0 0.0 0.0 -1.93141e-007 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 0.0400615 0.581116 -0.812834 -0.211343 + 0.133333 0.823619 0.0143771 0.566961 -0.0615547 + 0.266667 0.826061 -0.00483318 -0.56356 -0.0402617 + 0.466667 1.0 2.78546e-006 6.52656e-006 -0.00706953 + 0.533333 -1.0 1.45558e-006 4.89878e-006 -0.0103837 + 0.666667 0.958107 -0.0346439 0.284306 -0.275018 + 0.866667 0.958107 -0.0346439 0.284306 -0.275018 + 1.03333 1.0 3.07345e-007 0.0 -0.0681561 + 1.16667 1.0 3.11642e-007 0.0 -0.0681561 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 0.191554 0.23441 -0.953079 -0.203313 + 0.133333 -0.899434 -0.293774 -0.323598 -0.101274 + 0.266667 -0.992299 -0.123722 -0.00589659 -0.152523 + 0.366667 -0.984667 -0.118098 0.12839 -0.0844838 + 0.466667 -0.988845 -0.00209293 0.148934 -0.156391 + 0.533333 -0.992388 0.000311425 0.123147 -0.189246 + 0.666667 -0.148847 -0.129549 0.980338 -0.449999 + 0.866667 -0.148847 -0.129549 0.980338 -0.449999 + 1.03333 -0.989771 -0.00150665 0.142654 -0.163297 + 1.1 -0.993043 0.000814063 0.117753 -0.197909 + 1.16667 -0.954343 -0.0161806 0.298274 -0.0779222 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 1.16667 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 0.2238 -0.0273796 -0.97425 -0.59372 + 0.133333 0.223959 -0.883472 -0.411484 -0.119073 + 0.3 -0.575701 -0.80005 -0.168784 -0.250359 + 0.366667 -0.323555 -0.903986 0.279502 -0.249024 + 0.4 -0.0538487 -0.998248 0.0245295 -0.196351 + 0.466667 0.59654 -0.769504 -0.228044 -0.213357 + 0.533333 0.415818 -0.868531 -0.26972 -0.181605 + 0.6 0.649797 -0.735551 0.191647 -0.216653 + 0.666667 0.731102 -0.541953 0.414461 -0.323907 + 0.8 0.177501 -0.53941 0.823122 -0.365335 + 0.866667 0.345512 -0.597585 0.723543 -0.264949 + 0.933333 0.180581 -0.478405 0.859372 -0.257907 + 1.0 -0.0698773 -0.269121 0.960568 -0.344731 + 1.03333 -0.159432 -0.184225 0.969867 -0.375795 + 1.1 -0.285065 -0.202578 0.936857 -0.592427 + 1.16667 -0.315047 -0.207216 0.926179 -0.878541 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.886868 0.443767 0.128595 -0.249989 + 0.133333 -0.757309 0.641797 0.120744 -0.177633 + 0.3 -0.918724 0.382348 0.098774 -0.292831 + 0.366667 -0.966554 0.242094 0.0846341 -0.450065 + 0.4 -0.975158 0.206243 0.0808116 -0.52105 + 0.466667 -0.97744 0.195612 0.0796627 -0.546512 + 0.533333 -0.965793 0.245009 0.0849411 -0.445123 + 0.6 -0.987535 0.150365 0.0465396 -0.627461 + 0.666667 -0.996617 0.0772043 0.028176 -0.983978 + 0.8 -0.999629 0.0257739 0.00886019 -1.41332 + 0.866667 -0.99982 0.0171066 0.00822296 -1.60785 + 0.933333 -0.999896 0.0131714 0.00591783 -1.56482 + 1.0 -0.99995 0.00941623 0.0034545 -1.47973 + 1.03333 -0.99997 0.00746111 0.00218934 -1.42151 + 1.1 -0.999993 0.00358272 -0.000903943 -1.15072 + 1.16667 -0.999984 -0.00301156 -0.00484879 -0.844065 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 0.985376 -0.0981325 0.139301 -0.389375 + 0.133333 -0.0746773 -0.944448 0.320064 -0.0557246 + 0.3 -0.57458 0.79137 -0.208787 -0.0215969 + 0.366667 0.16804 -0.0920354 -0.981474 -0.145833 + 0.4 0.752931 0.0247558 -0.657634 -0.133075 + 0.466667 0.948259 0.113754 -0.29642 -0.120216 + 0.533333 0.936287 0.114968 -0.331888 -0.0703687 + 0.6 -0.229395 -0.404873 0.88513 -0.322385 + 0.666667 -0.183616 -0.384814 0.904546 -0.644623 + 0.8 -0.353715 -0.270534 0.895375 -0.853569 + 0.866667 -0.348866 -0.223236 0.910197 -0.997354 + 0.933333 -0.322062 -0.14789 0.935096 -1.04167 + 1.0 -0.228679 -0.0897347 0.969357 -1.12219 + 1.03333 -0.210203 -0.0575926 0.97596 -1.15468 + 1.1 -0.200615 -0.119057 0.972409 -1.04251 + 1.16667 -0.282839 -0.261933 0.92271 -0.864369 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.999855 0.0149123 0.00822189 -1.18612e-006 + 0.533333 1.0 0.000203534 0.000521218 -2.43724e-006 + 1.16667 0.0 0.0 0.0 -1.19209e-007 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 2.01341e-005 -1.0 -4.90889e-005 -0.0698107 + 1.16667 3.98849e-005 -1.0 -4.84889e-005 -0.0698107 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.825306 -0.564514 -0.0139352 -0.643921 + 0.633333 -0.790224 -0.60392 -0.104056 -0.919449 + 0.8 -0.85955 -0.481294 -0.171844 -1.27757 + 1.16667 -0.999543 0.0113733 0.0279914 -1.61348 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.917773 -0.324139 0.229405 -0.575765 + 0.4 0.900663 0.432455 -0.0422965 -0.504644 + 0.633333 0.917159 0.395365 0.0500602 -0.681473 + 0.8 0.865427 0.49927 -0.0420073 -0.595453 + 0.966667 0.948989 0.290857 -0.121747 -1.05944 + 1.16667 0.769607 0.425691 -0.475913 -0.781438 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.973591 -0.0614627 0.21987 -0.835141 + 0.4 0.660373 -0.35893 0.659604 -1.25721 + 0.633333 0.858378 -0.252024 0.446847 -1.14557 + 0.8 0.955421 -0.132883 0.263653 -1.41906 + 0.966667 0.997742 -0.028816 0.0606617 -1.67947 + 1.03333 0.999442 0.0172654 -0.0286051 -1.84546 + 1.16667 0.989655 0.0727805 -0.123635 -1.39188 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.908408 -0.277242 -0.312941 -0.734465 + 0.4 0.943558 -0.00823753 -0.331105 -0.660067 + 0.633333 0.775184 0.563296 -0.285986 -0.922737 + 0.8 0.843765 0.474308 -0.251183 -0.971367 + 0.966667 0.532422 0.760219 -0.372281 -0.839029 + 1.1 0.448208 0.752993 -0.48178 -1.05669 + 1.16667 0.235572 0.849322 -0.472396 -0.972105 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.56194 0.789218 0.247707 -0.773591 + 0.4 0.466963 0.865173 0.182813 -0.90773 + 0.633333 0.419168 0.895694 0.148427 -1.04416 + 0.8 0.451783 0.869188 0.201007 -0.828603 + 0.966667 0.443079 0.469304 0.763829 -0.442552 + 1.16667 0.844296 -0.531322 0.0697159 -0.591553 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 -0.590435 -0.800608 -0.102045 -0.160655 + 0.233333 0.466053 0.884528 0.0201083 -0.414807 + 0.4 0.53669 0.843569 -0.018852 -0.853793 + 0.633333 -0.234115 -0.966009 -0.109619 -5.47756 + 0.8 -0.101454 -0.990347 -0.0944466 -5.73738 + 1.16667 0.609817 -0.698689 -0.374107 -0.556826 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 -0.600306 -0.65574 -0.457861 -0.641311 + 0.233333 -0.229489 -0.372529 -0.899198 -0.2939 + 0.4 -0.326477 -0.558499 0.762556 -5.98483 + 0.633333 -0.460197 -0.865569 0.197506 -5.78039 + 0.8 -0.516965 -0.847639 0.119399 -5.77941 + 1.16667 0.381839 -0.867177 -0.319692 -0.696443 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 -0.810864 -0.578404 -0.0891564 -0.458916 + 0.233333 -0.881249 -0.384173 -0.275338 -0.119225 + 0.4 -0.346291 -0.937823 0.0238934 -6.13114 + 0.633333 -0.570979 -0.818432 -0.0644351 -5.89762 + 0.8 -0.465711 -0.884892 -0.00893157 -5.72794 + 1.16667 0.252827 -0.740745 -0.622394 -0.812277 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.631557 -0.774167 -0.0424446 -0.724398 + 0.4 -0.650975 -0.758056 -0.0397852 -6.02345 + 0.633333 -0.637471 -0.760361 -0.124424 -5.79666 + 0.8 -0.520676 -0.843823 -0.129841 -5.83268 + 1.16667 -0.234634 -0.342442 -0.909769 -0.355222 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 -0.397476 -0.906183 -0.144377 -0.693718 + 0.4 0.101503 0.993448 0.0525147 -5.86906 + 0.633333 -0.727872 -0.516953 -0.450512 -5.84608 + 0.8 -0.21753 -0.81345 -0.539425 -5.59571 + 1.16667 0.349445 -0.598026 0.721286 -0.221929 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 -0.0527834 0.974148 -0.219658 -5.88014 + 0.4 0.0652865 0.995718 0.0654542 -5.73338 + 0.633333 -0.56749 -0.465703 -0.679025 -5.82594 + 0.8 -0.354726 -0.729578 -0.584709 -5.64083 + 1.16667 0.0357284 -0.585015 -0.810235 -6.07404 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 0.252896 0.926689 -0.278014 -5.77162 + 0.4 0.285536 0.940691 0.183218 -5.65916 + 0.633333 0.104265 -0.596821 -0.795571 -6.04679 + 0.8 0.0698572 -0.896583 -0.437332 -5.80307 + 1.16667 -0.163196 -0.981353 -0.101552 -5.88108 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim sitdown c_marilithe + + +#NWmax ANIM ASCII +newanim sit c_marilithe + length 2.0 + transtime 0.4 + animroot c_marilithe + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + positionkey + 0.0 -0.00660596 -0.11756 0.771923 + 2.0 -0.00660596 -0.11756 0.771923 + endlist + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.0 0.0 0.0 0.0 0.0 + endlist + endnode + node danglymesh torso_g + parent rootdummy + orientationkey + 0.0 0.872511 0.0205401 -0.488163 -0.0476232 + 0.733333 0.955145 0.0174049 -0.295627 -0.0785855 + 0.833333 0.956663 0.0173173 -0.290681 -0.0799202 + 0.933333 0.955518 0.0173835 -0.29442 -0.0789071 + 1.9 0.877375 0.0204096 -0.479371 -0.0484958 + 2.0 0.872511 0.0205401 -0.488163 -0.0476232 + endlist + endnode + node trimesh rbicep_g + parent torso_g + orientationkey + 0.0 -0.346149 0.160613 -0.924329 -0.349938 + 0.833333 -0.354489 0.162423 -0.920846 -0.347737 + 2.0 -0.346149 0.160613 -0.924329 -0.349938 + endlist + endnode + node trimesh rforearm_g + parent rbicep_g + orientationkey + 0.0 -0.999998 -0.00101742 -0.00147432 -1.08576 + 0.833333 -0.999998 -0.000997789 -0.00143309 -1.11705 + 2.0 -0.999998 -0.00101747 -0.00147437 -1.08576 + endlist + endnode + node trimesh rhand_g + parent rforearm_g + orientationkey + 0.0 -0.070875 0.0587009 -0.995756 -1.28455 + 0.833333 -0.0692084 0.0590665 -0.995852 -1.29636 + 2.0 -0.0708751 0.0587009 -0.995756 -1.28455 + endlist + endnode + node dummy rhand + parent rhand_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.0 0.999062 -0.034611 -0.0260085 -2.64889e-006 + endlist + endnode + node trimesh neck_g + parent torso_g + orientationkey + 0.0 1.0 2.02052e-007 3.4102e-007 -0.068156 + 0.4 0.959465 0.00837342 0.281702 -0.0619385 + 0.833333 1.0 1.27777e-007 4.54178e-007 -0.0783371 + 1.06667 0.92593 -0.016162 -0.377348 -0.0924482 + 1.4 0.92593 -0.0227452 -0.377009 -0.0924482 + 1.73333 0.917193 -0.0192973 -0.397976 -0.0827553 + 2.0 1.0 1.85054e-007 6.9616e-007 -0.068156 + endlist + endnode + node trimesh head_g + parent neck_g + orientationkey + 0.0 -0.954343 -0.0161806 0.298274 -0.0779222 + 0.4 -0.880574 -0.043493 0.471909 -0.104283 + 0.833333 -0.942031 -0.0196852 0.334949 -0.0693688 + 1.06667 -0.991623 0.0255139 -0.126621 -0.0908149 + 1.4 -0.987921 0.0206962 -0.15357 -0.0752655 + 1.73333 -0.939053 0.0546391 -0.339403 -0.0791669 + 2.0 -0.954343 -0.0161806 0.298273 -0.0779223 + endlist + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + orientationkey + 0.0 0.0 0.0 0.0 0.0 + 2.0 0.0 0.0 0.0 0.0 + endlist + endnode + node trimesh lbicep_g + parent torso_g + orientationkey + 0.0 -0.311408 -0.201 0.928775 -0.860239 + 0.833333 -0.317625 -0.20581 0.925611 -0.847836 + 2.0 -0.312357 -0.203237 0.92797 -0.856412 + endlist + endnode + node trimesh lforearm_g + parent lbicep_g + orientationkey + 0.0 -0.999984 -0.0029732 -0.00481801 -0.851431 + 0.833333 -0.999985 -0.00285661 -0.00462834 -0.888702 + 2.0 -0.999984 -0.0029732 -0.00481815 -0.851431 + endlist + endnode + node trimesh lhand_g + parent lforearm_g + orientationkey + 0.0 -0.278456 -0.24264 0.929295 -0.87413 + 0.833333 -0.25746 -0.230914 0.938293 -0.897873 + 2.0 -0.278456 -0.24264 0.929294 -0.87413 + endlist + endnode + node dummy lhand + parent lhand_g + orientationkey + 0.0 0.994139 -0.016683 0.106811 -1.13092e-006 + 2.0 0.998482 0.0473914 0.0280573 -2.40496e-006 + endlist + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.0 5.14768e-006 -1.0 -4.98802e-005 -0.069811 + 2.0 6.9651e-006 -1.0 -4.94308e-005 -0.069811 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + orientationkey + 0.0 -0.999543 0.0113733 0.0279914 -1.61348 + 2.0 -0.999543 0.0113733 0.0279914 -1.61348 + endlist + endnode + node trimesh tail02 + parent tail01 + orientationkey + 0.0 0.769607 0.425691 -0.475913 -0.781438 + 2.0 0.769607 0.425691 -0.475913 -0.781438 + endlist + endnode + node trimesh tail03 + parent tail02 + orientationkey + 0.0 0.989655 0.0727805 -0.123635 -1.39188 + 2.0 0.989655 0.0727805 -0.123635 -1.39188 + endlist + endnode + node trimesh tail04 + parent tail03 + orientationkey + 0.0 0.235572 0.849322 -0.472396 -0.972105 + 2.0 0.235572 0.849322 -0.472396 -0.972105 + endlist + endnode + node trimesh tail05 + parent tail04 + orientationkey + 0.0 0.844297 -0.531322 0.069716 -0.591553 + 2.0 0.844297 -0.531322 0.069716 -0.591553 + endlist + endnode + node trimesh tail06 + parent tail05 + orientationkey + 0.0 0.609818 -0.698689 -0.374107 -0.556826 + 2.0 0.609818 -0.698689 -0.374107 -0.556826 + endlist + endnode + node trimesh tail07 + parent tail06 + orientationkey + 0.0 0.381839 -0.867177 -0.319692 -0.696443 + 0.466667 0.839839 -0.275792 -0.467557 -0.841626 + 0.866667 0.775831 -0.45032 -0.441926 -0.776223 + 1.3 0.604711 -0.796341 -0.0128642 -0.690516 + 2.0 0.381839 -0.867177 -0.319692 -0.696443 + endlist + endnode + node trimesh tail08 + parent tail07 + orientationkey + 0.0 0.252827 -0.740745 -0.622394 -0.812277 + 0.466667 -0.376098 0.474474 0.79588 -5.38077 + 0.866667 -0.553999 0.218283 0.803391 -5.21193 + 1.3 0.339721 -0.584799 -0.736613 -0.818304 + 2.0 0.252827 -0.740745 -0.622394 -0.812277 + endlist + endnode + node trimesh tail09 + parent tail08 + orientationkey + 0.0 -0.234633 -0.342444 -0.909769 -0.355223 + 0.466667 0.761957 0.372134 0.530035 -5.76946 + 0.866667 -0.295151 0.240742 0.924624 -5.88894 + 1.3 -0.72661 0.11237 0.677799 -5.59737 + 2.0 -0.234634 -0.342442 -0.909769 -0.355223 + endlist + endnode + node trimesh tail10 + parent tail09 + orientationkey + 0.0 0.349445 -0.598027 0.721285 -0.22193 + 0.466667 0.749112 0.48611 -0.450032 -5.9104 + 0.866667 -0.0256187 0.719405 -0.694118 -6.06064 + 1.3 -0.957539 0.26188 -0.120571 -5.66128 + 2.0 0.349446 -0.598027 0.721285 -0.22193 + endlist + endnode + node trimesh tail11 + parent tail10 + orientationkey + 0.0 0.0357299 -0.585016 -0.810235 -6.07404 + 0.466667 0.938595 0.0531419 -0.340905 -5.7756 + 0.866667 0.157501 -0.437263 -0.885435 -6.09597 + 1.3 -0.890584 -0.353277 -0.286452 -5.86215 + 2.0 0.03573 -0.585015 -0.810235 -6.07404 + endlist + endnode + node trimesh tail12 + parent tail11 + orientationkey + 0.0 -0.163196 -0.981353 -0.101552 -5.88108 + 0.466667 0.944272 0.132265 -0.301423 -5.2007 + 0.866667 0.147533 -0.921455 -0.35938 -5.98972 + 1.3 0.005539 -0.969439 -0.24527 -5.95505 + 2.0 -0.163196 -0.981353 -0.101551 -5.88108 + endlist + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim sit c_marilithe + + +#NWmax ANIM ASCII +newanim newanim c_marilithe + length 0.8 + transtime 0.25 + animroot c_marilithe + node dummy c_marilithe + parent NULL + endnode + node trimesh rootdummy + parent c_marilithe + endnode + node danglymesh torso_g + parent rootdummy + endnode + node trimesh rbicep_g + parent torso_g + endnode + node trimesh rforearm_g + parent rbicep_g + endnode + node trimesh rhand_g + parent rforearm_g + endnode + node dummy rhand + parent rhand_g + endnode + node trimesh neck_g + parent torso_g + endnode + node trimesh head_g + parent neck_g + endnode + node danglymesh snakehead + parent head_g + endnode + node dummy Impact + parent torso_g + endnode + node trimesh lbicep_g + parent torso_g + endnode + node trimesh lforearm_g + parent lbicep_g + endnode + node trimesh lhand_g + parent lforearm_g + endnode + node dummy lhand + parent lhand_g + endnode + node dummy lforearm + parent lforearm_g + orientationkey + 0.166667 -0.000129928 -1.0 0.000137396 -0.0872569 + 0.7 -0.000129928 -1.0 0.000137396 -0.0872569 + endlist + endnode + node trimesh bodypelvis_g + parent rootdummy + endnode + node trimesh tail01 + parent bodypelvis_g + endnode + node trimesh tail02 + parent tail01 + endnode + node trimesh tail03 + parent tail02 + endnode + node trimesh tail04 + parent tail03 + endnode + node trimesh tail05 + parent tail04 + endnode + node trimesh tail06 + parent tail05 + endnode + node trimesh tail07 + parent tail06 + endnode + node trimesh tail08 + parent tail07 + endnode + node trimesh tail09 + parent tail08 + endnode + node trimesh tail10 + parent tail09 + endnode + node trimesh tail11 + parent tail10 + endnode + node trimesh tail12 + parent tail11 + endnode + node danglymesh belt_g + parent rootdummy + endnode + node dummy headconjure + parent c_marilithe + endnode + node dummy handconjure + parent c_marilithe + endnode +doneanim newanim c_marilithe + +donemodel c_marilithe diff --git a/tests/fixtures/oracle/ascii/c_nightmare.mdl b/tests/fixtures/oracle/ascii/c_nightmare.mdl new file mode 100644 index 0000000..34bf409 --- /dev/null +++ b/tests/fixtures/oracle/ascii/c_nightmare.mdl @@ -0,0 +1,10696 @@ +#Exported from 3ds max by MDL Plug-in Suite 1.0b +#http://www.bricksbuilder.com/nwn/utils/ +#MAXMODEL ASCII +# model: c_nightmare +filedependancy Unknown +newmodel c_nightmare +setsupermodel c_nightmare NULL +classification Tile +setanimationscale 1.0 +#MAXGEOM ASCII +beginmodelgeom c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + position 0 -0.492866 1.6335 + orientation 0.608122 0.510272 -0.60812 -2.19793 + wirecolor 0.695313 0.695313 0.695313 +endnode +node trimesh Torso_g + parent rootdummy + position 0.000410325 -0.0254386 0 + orientation -0.540716 0.644403 -0.540714 -1.99674 + wirecolor 0.425781 0.425781 0.425781 + ambient 0.588235 0.588235 0.588235 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 59 + 0 -1.09702 0.194653 + 0 -0.807746 0.322129 + 0.237375 -0.938228 0.188429 + 0.331736 -1.15036 -0.00257246 + 0.199893 -1.28976 -0.126097 + 0 -1.32345 -0.156989 + 0 -0.683964 0.301484 + 0.310585 -0.795175 0.115219 + 0.47028 -1.0081 -0.305131 + 0.365838 -0.964523 -0.544496 + 0 -1.12339 -0.58134 + 0 -0.455051 0.248989 + 0.275915 -0.44512 0.0580781 + 0.385527 -0.429486 -0.309981 + 0.300076 -0.420712 -0.512496 + 0 -0.476511 -0.611924 + 0 -0.0473962 0.328179 + 0.25415 -0.0159362 0.167249 + 0.380544 0.0311025 -0.159258 + 0.295296 0.0707784 -0.336812 + 0 0.0562887 -0.410756 + 0 -0.922521 0.287272 + 0.203563 -1.11748 0.134004 + 0.130315 -1.27602 0.0169766 + 0 -1.29621 -0.00624759 + 0.334465 -1.20862 -0.33017 + 0.205268 -1.11913 -0.582572 + 0 -1.31372 -0.382204 + 0 -0.851552 -0.629067 + 0.18207 -1.27926 -0.376907 + 0.194312 -0.85902 -0.620406 + -0.237372 -0.938228 0.188429 + -0.331733 -1.15036 -0.00257246 + -0.199891 -1.28977 -0.126097 + -0.310582 -0.795175 0.115219 + -0.470277 -1.0081 -0.305131 + -0.365835 -0.964525 -0.544496 + -0.275912 -0.445121 0.0580781 + -0.385524 -0.429486 -0.309981 + -0.300074 -0.420712 -0.512496 + -0.254581 -0.0158708 0.167249 + -0.380541 0.0311026 -0.159258 + -0.295293 0.0707771 -0.336812 + -0.20356 -1.11748 0.134004 + -0.130313 -1.27602 0.0169766 + -0.334462 -1.20862 -0.33017 + -0.205265 -1.11913 -0.582573 + -0.182067 -1.27926 -0.376907 + -0.194309 -0.85902 -0.620406 + -0.119603 -1.20034 -0.498954 + -0.189522 -1.2278 -0.443 + -0.218405 -1.21702 -0.410045 + -0.292132 -1.22823 -0.343151 + -0.321048 -1.2167 -0.309828 + -0.334131 -1.20153 -0.290323 + -0.405669 -1.07444 -0.164035 + 0 0.388018 -0.041163 + -0.130313 -1.27602 0.0169767 + 0 -1.29621 -0.00624769 + faces 110 + 2 1 21 1 2 1 36 0 + 21 22 2 1 36 37 2 0 + 3 2 22 1 3 2 37 0 + 22 21 0 1 37 36 0 0 + 22 23 3 1 37 38 3 0 + 4 3 23 1 4 3 38 0 + 23 24 4 1 38 39 4 0 + 5 4 24 1 5 4 39 0 + 1 7 6 1 1 7 6 0 + 7 1 2 1 7 1 2 0 + 2 3 7 1 2 3 7 0 + 8 7 3 1 8 7 3 0 + 9 8 25 1 9 8 40 0 + 3 25 8 1 3 40 8 0 + 25 3 4 1 40 3 4 0 + 26 9 29 1 41 9 50 0 + 25 29 9 1 40 50 9 0 + 29 27 26 1 50 42 41 0 + 10 26 27 1 10 41 42 0 + 4 5 29 1 4 5 50 0 + 27 29 5 1 57 50 5 0 + 29 25 4 1 50 40 4 0 + 6 7 12 1 6 7 12 0 + 12 11 6 1 12 11 6 0 + 7 8 12 1 7 8 12 0 + 13 12 8 1 13 12 8 0 + 8 9 13 1 8 9 13 0 + 14 13 9 1 14 13 9 0 + 15 14 30 1 15 14 51 0 + 9 30 14 1 9 51 14 0 + 30 28 15 1 51 43 15 0 + 26 10 30 1 41 10 51 0 + 28 30 10 1 43 51 10 0 + 30 9 26 1 51 9 41 0 + 11 12 16 1 11 12 16 0 + 17 16 12 1 17 16 12 0 + 12 13 17 1 12 13 17 0 + 18 17 13 1 18 17 13 0 + 13 14 18 1 13 14 18 0 + 19 18 14 1 19 18 14 0 + 14 15 19 1 14 15 19 0 + 20 19 15 1 20 19 15 0 + 21 1 31 1 36 1 2 0 + 31 43 21 1 2 37 36 0 + 43 31 32 1 37 2 3 0 + 0 21 43 1 0 36 37 0 + 32 44 43 1 3 55 37 0 + 44 32 33 1 55 3 4 0 + 33 24 44 1 4 39 55 0 + 24 33 5 1 39 4 5 0 + 6 34 1 1 6 7 1 0 + 31 1 34 1 2 1 7 0 + 34 32 31 1 7 3 2 0 + 32 34 55 1 3 7 418 0 + 45 35 36 1 40 8 9 0 + 55 54 32 1 418 417 3 0 + 33 32 53 1 4 3 416 0 + 47 51 50 1 50 414 413 0 + 51 47 52 1 414 50 415 0 + 49 27 47 1 412 42 50 0 + 27 49 10 1 42 412 10 0 + 47 5 33 1 50 5 4 0 + 5 47 27 1 5 50 57 0 + 33 52 47 1 4 415 50 0 + 11 37 6 1 11 12 6 0 + 34 6 37 1 7 6 12 0 + 37 35 34 1 12 8 7 0 + 35 37 38 1 8 12 13 0 + 38 36 35 1 13 9 8 0 + 36 38 39 1 9 13 14 0 + 48 39 15 1 51 14 15 0 + 39 48 36 1 14 51 9 0 + 15 28 48 1 15 43 51 0 + 48 10 46 1 51 10 41 0 + 10 48 28 1 10 51 43 0 + 46 36 48 1 41 9 51 0 + 16 37 11 1 16 12 11 0 + 37 16 40 1 12 16 17 0 + 40 38 37 1 17 13 12 0 + 38 40 41 1 13 17 52 0 + 41 39 38 1 52 14 13 0 + 39 41 42 1 14 52 19 0 + 42 15 39 1 19 15 14 0 + 15 42 20 1 15 19 20 0 + 18 19 56 1 17 16 16 0 + 16 17 56 1 16 17 16 0 + 42 41 56 1 16 17 16 0 + 40 16 56 1 17 16 16 0 + 40 56 41 1 17 16 17 0 + 17 18 56 1 17 17 16 0 + 49 46 10 1 412 41 10 0 + 50 49 47 1 413 412 50 0 + 46 49 50 1 41 412 413 0 + 50 36 46 1 413 9 41 0 + 51 36 50 1 414 9 413 0 + 36 51 45 1 9 414 40 0 + 51 52 45 1 414 415 40 0 + 33 53 52 1 4 416 415 0 + 53 45 52 1 416 40 415 0 + 53 32 54 1 416 3 417 0 + 53 54 45 1 416 417 40 0 + 35 45 54 1 8 40 417 0 + 35 54 55 1 8 417 418 0 + 55 34 35 1 418 7 8 0 + 56 19 20 1 16 16 16 0 + 56 20 42 1 16 16 16 0 + 57 58 0 1 37 0 0 0 + 0 43 57 1 0 37 37 0 + 23 22 0 1 0 0 0 0 + 0 58 23 1 0 0 0 0 + tverts 419 + 0.262578 0.981211 0 + 0.381514 0.99432 0 + 0.334945 0.902421 0 + 0.253721 0.839995 0 + 0.189437 0.799895 0 + 0.122463 0.788467 0 + 0.427288 0.98266 0 + 0.384579 0.874159 0 + 0.30377 0.731343 0 + 0.321076 0.658929 0 + 0.227351 0.580317 0 + 0.504804 0.962469 0 + 0.503544 0.850476 0 + 0.502639 0.730642 0 + 0.502446 0.669414 0 + 0.476422 0.57537 0 + 0.663309 0.970709 0 + 0.652536 0.877775 0 + 0.662838 0.76622 0 + 0.673342 0.706409 0 + 0.665866 0.611893 0 + 0.777235 0.981194 0 + 0.79318 0.873423 0 + 0.763709 0.750793 0 + 0.754416 0.695233 0 + 0.731663 0.608014 0 + 0.961288 0.928949 0 + 0.981486 0.870231 0 + 0.918763 0.853856 0 + 0.852117 0.722176 0 + 0.835839 0.66371 0 + 0.833927 0.611136 0 + 0.991693 0.79082 0 + 0.986153 0.720847 0 + 0.981284 0.661527 0 + 0.972553 0.618242 0 + 0.328095 0.988767 0 + 0.263697 0.902991 0 + 0.179998 0.85441 0 + 0.140992 0.84955 0 + 0.234352 0.72206 0 + 0.252346 0.617615 0 + 0.14525 0.655325 0 + 0.360222 0.55222 0 + 0.724898 0.654779 0 + 0.832397 0.93535 0 + 0.883799 0.973423 0 + 0.880373 0.791136 0 + 0.934983 0.744089 0 + 0.928461 0.665498 0 + 0.179232 0.704257 0 + 0.353184 0.601032 0 + 0.662837 0.76622 0 + 0.793179 0.873423 0 + 0.918762 0.853856 0 + 0.179997 0.85441 0 + 0.899034 0.614822 0 + 0.126443 0.698068 0 + 0.818112 0.560547 0 + 0.889802 0.548145 0 + 0.988352 0.493879 0 + 0.843582 0.51305 0 + 0.948405 0.442036 0 + 0.941258 0.5651 0 + 0.844214 0.425301 0 + 0.921142 0.400996 0 + 0.815744 0.303206 0 + 0.838479 0.299757 0 + 0.894272 0.281389 0 + 0.847418 0.247352 0 + 0.830991 0.27263 0 + 0.841366 0.263429 0 + 0.863587 0.256221 0 + 0.846896 0.562848 0 + 0.945835 0.524372 0 + 0.9726 0.458288 0 + 0.923476 0.477826 0 + 0.895904 0.411171 0 + 0.888185 0.325013 0 + 0.840941 0.346974 0 + 0.875838 0.288121 0 + 0.811953 0.267183 0 + 0.885485 0.250908 0 + 0.850731 0.2715 0 + 0.854347 0.598614 0 + 0.870146 0.330713 0 + 0.867309 0.265084 0 + 0.733748 0.510234 0 + 0.770445 0.536818 0 + 0.687296 0.480821 0 + 0.78931 0.55553 0 + 0.647258 0.476035 0 + 0.785691 0.50144 0 + 0.808737 0.518178 0 + 0.747297 0.479734 0 + 0.662484 0.445723 0 + 0.705345 0.452029 0 + 0.684566 0.424517 0 + 0.775155 0.331994 0 + 0.760073 0.430211 0 + 0.738157 0.384651 0 + 0.806062 0.425466 0 + 0.704672 0.382312 0 + 0.781837 0.283919 0 + 0.806662 0.342431 0 + 0.738956 0.308648 0 + 0.761986 0.316192 0 + 0.760444 0.275475 0 + 0.739537 0.266108 0 + 0.791311 0.261968 0 + 0.789292 0.238365 0 + 0.752357 0.24468 0 + 0.770633 0.253211 0 + 0.695437 0.52356 0 + 0.745873 0.554632 0 + 0.483261 0.100211 0 + 0.419075 0.128149 0 + 0.518626 0.223572 0 + 0.492634 0.224726 0 + 0.523727 0.297727 0 + 0.503676 0.297166 0 + 0.536911 0.317971 0 + 0.55669 0.319594 0 + 0.56196 0.334205 0 + 0.52268 0.324933 0 + 0.517083 0.0881269 0 + 0.444243 0.111348 0 + 0.502116 0.160306 0 + 0.452955 0.176666 0 + 0.550604 0.258568 0 + 0.52453 0.2596 0 + 0.504922 0.267873 0 + 0.57072 0.30779 0 + 0.536106 0.309372 0 + 0.505088 0.316665 0 + 0.518016 0.336891 0 + 0.508028 0.0400067 0 + 0.52797 0.151871 0 + 0.477736 0.168632 0 + 0.551039 0.308747 0 + 0.51897 0.314125 0 + 0.679909 0.0720007 0 + 0.561103 0.0796891 0 + 0.628824 0.0941939 0 + 0.686947 0.13574 0 + 0.56023 0.221107 0 + 0.602589 0.219563 0 + 0.645046 0.226185 0 + 0.556972 0.288408 0 + 0.597916 0.289908 0 + 0.635182 0.297893 0 + 0.586072 0.329205 0 + 0.592971 0.0816186 0 + 0.664107 0.118408 0 + 0.561257 0.148703 0 + 0.665241 0.177827 0 + 0.578605 0.218839 0 + 0.598182 0.156798 0 + 0.626354 0.221847 0 + 0.636535 0.272746 0 + 0.57914 0.288734 0 + 0.612847 0.266654 0 + 0.616437 0.292894 0 + 0.634633 0.314834 0 + 0.597231 0.307683 0 + 0.609558 0.321195 0 + 0.59628 0.0453772 0 + 0.645953 0.171414 0 + 0.579628 0.263716 0 + 0.61129 0.30989 0 + 0.417277 0.0556725 0 + 0.582743 0.501774 0 + 0.527622 0.516767 0 + 0.546371 0.512544 0 + 0.567738 0.502714 0 + 0.597619 0.502714 0 + 0.619315 0.513178 0 + 0.52556 0.493237 0 + 0.544971 0.492556 0 + 0.620496 0.492987 0 + 0.523667 0.473883 0 + 0.546231 0.471843 0 + 0.565927 0.469201 0 + 0.582678 0.469604 0 + 0.59943 0.469201 0 + 0.617175 0.472705 0 + 0.517176 0.401812 0 + 0.540125 0.401057 0 + 0.556286 0.393055 0 + 0.582678 0.399247 0 + 0.609071 0.393055 0 + 0.625176 0.402779 0 + 0.515917 0.387396 0 + 0.532924 0.386146 0 + 0.582678 0.384592 0 + 0.632432 0.38787 0 + 0.514217 0.36797 0 + 0.533323 0.364318 0 + 0.558061 0.369545 0 + 0.582678 0.368352 0 + 0.607295 0.369545 0 + 0.630309 0.366042 0 + 0.513203 0.349203 0 + 0.509814 0.516583 0 + 0.508318 0.496845 0 + 0.502071 0.475105 0 + 0.493034 0.404016 0 + 0.498929 0.387785 0 + 0.494912 0.366226 0 + 0.559392 0.348464 0 + 0.605888 0.348464 0 + 0.568079 0.524722 0 + 0.582808 0.532378 0 + 0.568079 0.509411 0 + 0.597537 0.524722 0 + 0.597537 0.509411 0 + 0.276583 0.421201 0 + 0.241102 0.448264 0 + 0.283389 0.46963 0 + 0.244534 0.384198 0 + 0.272553 0.392523 0 + 0.297191 0.376797 0 + 0.318149 0.437436 0 + 0.376545 0.511694 0 + 0.380315 0.538521 0 + 0.354883 0.528193 0 + 0.351955 0.500799 0 + 0.373284 0.488492 0 + 0.39718 0.494443 0 + 0.401916 0.521583 0 + 0.316574 0.464132 0 + 0.324971 0.471963 0 + 0.343778 0.451794 0 + 0.343589 0.489324 0 + 0.357883 0.475372 0 + 0.279184 0.546058 0 + 0.3061 0.492628 0 + 0.301754 0.5423 0 + 0.285331 0.475795 0 + 0.326117 0.431779 0 + 0.331409 0.5062 0 + 0.326837 0.529721 0 + 0.442342 0.434818 0 + 0.445949 0.484103 0 + 0.42736 0.454699 0 + 0.467101 0.472441 0 + 0.39801 0.421616 0 + 0.393972 0.444935 0 + 0.407318 0.481296 0 + 0.419652 0.499409 0 + 0.384373 0.472464 0 + 0.408664 0.392386 0 + 0.41408 0.362017 0 + 0.427175 0.292046 0 + 0.442072 0.252054 0 + 0.322378 0.364689 0 + 0.346288 0.338505 0 + 0.384304 0.260491 0 + 0.414584 0.215928 0 + 0.140928 0.251913 0 + 0.198479 0.234044 0 + 0.280562 0.160067 0 + 0.311738 0.13283 0 + 0.387322 0.166265 0 + 0.356269 0.10015 0 + 0.0989347 0.162285 0 + 0.145614 0.120045 0 + 0.203277 0.075149 0 + 0.291203 0.012691 0 + 0.365941 0.299678 0 + 0.419423 0.331068 0 + 0.241931 0.190164 0 + 0.156725 0.184029 0 + 0.107829 0.199744 0 + 0.250642 0.111672 0 + 0.248543 0.0298562 0 + 0.321372 0.0412393 0 + 0.201236 0.150981 0 + 0.299479 0.0625274 0 + 0.0808274 0.609201 0 + 0.0291238 0.586163 0 + 0.162279 0.482909 0 + 0.184854 0.501951 0 + 0.19402 0.463563 0 + 0.144206 0.532953 0 + 0.109348 0.561144 0 + 0.161278 0.580287 0 + 0.111019 0.623083 0 + 0.171211 0.451075 0 + 0.0657947 0.56117 0 + 0.103688 0.513706 0 + 0.0615854 0.511431 0 + 0.0559228 0.466883 0 + 0.0305641 0.532342 0 + 0.0305641 0.482565 0 + 0.146811 0.312914 0 + 0.154106 0.382672 0 + 0.155104 0.348131 0 + 0.0305641 0.419393 0 + 0.00863753 0.384526 0 + 0.0934095 0.296202 0 + 0.158224 0.419686 0 + 0.0524569 0.38471 0 + 0.0994231 0.44324 0 + 0.104342 0.38982 0 + 0.0749286 0.435102 0 + 0.0956223 0.351297 0 + 0.208286 0.441641 0 + 0.211399 0.533195 0 + 0.205016 0.40783 0 + 0.191275 0.373215 0 + 0.174178 0.343186 0 + 0.165916 0.307961 0 + 0.22109 0.904181 0 + 0.222129 0.96375 0 + 0.259294 0.933178 0 + 0.14392 0.89499 0 + 0.106229 0.935979 0 + 0.191226 0.912369 0 + 0.145327 0.975629 0 + 0.191998 0.956609 0 + 0.019802 0.225248 0 + 0.00494824 0.25667 0 + 0.0408398 0.225248 0 + 0.0556937 0.25667 0 + 0.0495533 0.311045 0 + 0.0110887 0.311045 0 + 0.220124 0.492967 0 + 0.779212 0.0514456 0 + 0.760227 0.0512758 0 + 0.776934 0.0761387 0 + 0.758241 0.0725201 0 + 0.799297 0.05562 0 + 0.79764 0.0769155 0 + 0.774526 0.097017 0 + 0.751715 0.0958516 0 + 0.767784 0.174558 0 + 0.741761 0.172101 0 + 0.76641 0.190478 0 + 0.74814 0.190104 0 + 0.784458 0.191683 0 + 0.743811 0.212941 0 + 0.764607 0.211117 0 + 0.784775 0.214876 0 + 0.763601 0.231272 0 + 0.822266 0.0659046 0 + 0.820541 0.102094 0 + 0.799074 0.0994774 0 + 0.792476 0.175686 0 + 0.809846 0.18415 0 + 0.811747 0.209539 0 + 0.813066 0.23187 0 + 0.854762 0.0661158 0 + 0.877787 0.0550545 0 + 0.879025 0.0765923 0 + 0.838493 0.0667951 0 + 0.838465 0.10164 0 + 0.85645 0.101914 0 + 0.875485 0.0982057 0 + 0.838594 0.177602 0 + 0.866924 0.184158 0 + 0.883916 0.17343 0 + 0.838425 0.192889 0 + 0.891914 0.189703 0 + 0.865042 0.209365 0 + 0.838493 0.210855 0 + 0.889721 0.21322 0 + 0.863481 0.232329 0 + 0.8385 0.0667906 0 + 0.822616 0.0419242 0 + 0.838566 0.0336405 0 + 0.822614 0.0585013 0 + 0.854514 0.0419295 0 + 0.854512 0.058503 0 + 0.0658272 0.88577 0 + 0.108469 0.88103 0 + 0.0660658 0.872073 0 + 0.00986874 0.927037 0 + 0.0385216 0.888778 0 + 0.00987267 0.893398 0 + 0.0380739 0.914655 0 + 0.0388983 0.867194 0 + 0.00987622 0.863464 0 + 0.00987267 0.89339 0 + 0.038522 0.888756 0 + 0.0388982 0.867198 0 + 0.0393021 0.844181 0 + 0.0098803 0.830224 0 + 0.00987622 0.863478 0 + 0.0660649 0.872081 0 + 0.108467 0.881012 0 + 0.108467 0.881048 0 + 0.065826 0.885763 0 + 0.0534799 0.822981 0 + 0.0108386 0.818241 0 + 0.0532413 0.809284 0 + 0.109438 0.864249 0 + 0.0807855 0.825989 0 + 0.109434 0.830609 0 + 0.0812332 0.851866 0 + 0.0804088 0.804405 0 + 0.109431 0.800675 0 + 0.109434 0.830601 0 + 0.0807851 0.825967 0 + 0.0804088 0.804409 0 + 0.0800049 0.781392 0 + 0.109427 0.767435 0 + 0.109431 0.800689 0 + 0.0532422 0.809292 0 + 0.0108398 0.818223 0 + 0.0108397 0.818259 0 + 0.0534811 0.822975 0 + 0.207653 0.633352 0 + 0.202728 0.676413 0 + 0.20728 0.695294 0 + 0.219042 0.717115 0 + 0.229875 0.729819 0 + 0.236708 0.736405 0 + 0.28043 0.782012 0 +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + position 0.220041 -0.994676 -0.395939 + orientation 0 0 0 0 + wirecolor 0.527344 0.527344 0.527344 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 45 + -0.196227 -0.00892578 -0.0748485 + -0.006273 -0.217439 0.0421063 + 0.182611 -0.017056 0.026296 + 0.00904627 0.177488 -0.0795169 + -0.0142552 -0.0178867 -0.395241 + 0.0424403 -0.145977 -0.397967 + 0.116437 -0.0423078 -0.382837 + 0.0401891 0.0613615 -0.384914 + -0.0382296 0.0168621 -0.624756 + 0.00267849 -0.0962961 -0.621414 + 0.144258 -0.014545 -0.607927 + 0.038807 0.0669816 -0.616636 + 0.00897575 -0.00695735 -0.691695 + 0.0334461 -0.0430571 -0.689958 + 0.0822457 -0.0234569 -0.685028 + 0.0279068 0.0291722 -0.689327 + -0.118186 -0.183892 -0.00710003 + 0.1002 -0.148247 0.0501876 + 0.127437 0.11785 -0.0347477 + -0.120292 0.148354 -0.094303 + 0.0195981 -0.22117 -0.172293 + -0.0971669 -0.0314561 -0.251486 + 0.0248259 0.127172 -0.222612 + 0.0902445 -0.126299 -0.391228 + 0.115438 -0.0980227 -0.185822 + 0.0985957 0.0416835 -0.379489 + 0.0196258 -0.0910211 -0.548047 + -0.0264945 -0.000196366 -0.535361 + 0.0391794 0.044958 -0.549383 + 0.106523 -0.0805967 -0.612569 + 0.109417 0.0261262 -0.527554 + 0.120338 0.0515065 -0.60914 + 0.0678329 -0.0664758 -0.671755 + -0.0255509 -0.00825288 -0.678793 + 0.0406524 0.0540571 -0.670588 + 0.127595 -0.00822187 -0.664582 + 0.0800417 0.0261016 -0.684444 + -0.00271037 -0.0164835 0.0886199 + -0.0505216 -0.175726 -0.208531 + -0.0617969 0.078537 -0.246113 + 0.108244 0.0805205 -0.210874 + 0.0986171 -0.0911554 -0.533041 + 0.000800519 -0.0573357 -0.677618 + -0.016938 0.0394874 -0.676748 + 0.104863 0.0418864 -0.665314 + faces 86 + 0 16 37 1 30 40 51 0 + 37 19 0 1 85 41 30 0 + 1 37 16 1 57 51 40 0 + 37 1 17 1 81 57 67 0 + 2 18 37 1 58 68 56 0 + 37 17 2 1 81 67 58 0 + 3 37 18 1 59 56 68 0 + 37 3 19 1 85 31 41 0 + 4 5 38 1 32 60 52 0 + 38 21 4 1 52 42 32 0 + 20 38 5 1 69 52 60 0 + 1 16 38 1 57 40 52 0 + 38 20 1 1 52 69 57 0 + 21 38 16 1 42 52 40 0 + 16 0 21 1 40 30 42 0 + 3 22 39 1 31 43 53 0 + 39 19 3 1 53 41 31 0 + 4 39 22 1 32 53 43 0 + 22 7 4 1 43 33 32 0 + 4 21 39 1 32 42 53 0 + 19 39 21 1 41 53 42 0 + 21 0 19 1 42 30 41 0 + 20 23 24 1 69 71 72 0 + 23 20 5 1 71 69 60 0 + 23 6 24 1 71 61 72 0 + 2 17 24 1 58 67 72 0 + 20 24 17 1 69 72 67 0 + 17 1 20 1 67 57 69 0 + 6 25 40 1 61 73 82 0 + 40 24 6 1 82 72 61 0 + 22 40 25 1 70 82 73 0 + 25 7 22 1 73 62 70 0 + 3 18 40 1 59 68 82 0 + 40 22 3 1 82 70 59 0 + 2 40 18 1 58 82 68 0 + 40 2 24 1 82 58 72 0 + 27 9 26 1 45 63 44 0 + 9 27 8 1 63 45 34 0 + 27 26 5 1 45 44 60 0 + 5 4 27 1 60 32 45 0 + 7 28 27 1 33 46 45 0 + 27 4 7 1 45 32 33 0 + 8 27 28 1 34 45 46 0 + 28 11 8 1 46 35 34 0 + 9 29 41 1 63 75 83 0 + 41 26 9 1 83 44 63 0 + 10 41 29 1 64 83 75 0 + 41 10 30 1 83 64 76 0 + 6 23 41 1 61 71 83 0 + 6 30 25 1 61 76 73 0 + 5 41 23 1 60 83 71 0 + 41 5 26 1 83 60 44 0 + 10 31 30 1 64 77 76 0 + 28 30 31 1 74 76 77 0 + 31 11 28 1 77 65 74 0 + 7 25 30 1 62 73 76 0 + 30 28 7 1 76 74 62 0 + 30 6 41 1 76 61 83 0 + 12 13 42 1 36 37 54 0 + 42 33 12 1 54 48 36 0 + 32 42 13 1 47 54 37 0 + 42 32 9 1 54 47 63 0 + 33 42 9 1 48 54 63 0 + 9 8 33 1 63 34 48 0 + 11 34 43 1 35 49 55 0 + 43 8 11 1 55 34 35 0 + 15 43 34 1 39 55 49 0 + 12 33 43 1 36 48 55 0 + 43 15 12 1 55 39 36 0 + 8 43 33 1 34 55 48 0 + 13 14 32 1 37 38 47 0 + 35 32 14 1 79 47 66 0 + 35 29 32 1 79 75 47 0 + 29 35 10 1 75 79 64 0 + 29 9 32 1 75 63 47 0 + 35 36 44 1 79 80 84 0 + 36 35 14 1 80 79 66 0 + 34 44 36 1 78 84 80 0 + 36 15 34 1 50 39 49 0 + 11 31 44 1 65 77 84 0 + 44 34 11 1 84 78 65 0 + 35 44 31 1 79 84 77 0 + 31 10 35 1 77 64 79 0 + 14 15 36 1 38 39 50 0 + 15 14 13 1 39 38 37 0 + 12 15 13 1 36 39 37 0 + tverts 86 + 0.870146 0.330713 0 + 0.867309 0.265084 0 + 0.733748 0.510234 0 + 0.770445 0.536818 0 + 0.687296 0.480821 0 + 0.78931 0.55553 0 + 0.647258 0.476035 0 + 0.785691 0.50144 0 + 0.808737 0.518178 0 + 0.747297 0.479734 0 + 0.662484 0.445723 0 + 0.705345 0.452029 0 + 0.684566 0.424517 0 + 0.775155 0.331994 0 + 0.760073 0.430211 0 + 0.738157 0.384651 0 + 0.806062 0.425466 0 + 0.704672 0.382312 0 + 0.781837 0.283919 0 + 0.806662 0.342431 0 + 0.738956 0.308648 0 + 0.761986 0.316192 0 + 0.760444 0.275475 0 + 0.739537 0.266108 0 + 0.791311 0.261968 0 + 0.789292 0.238365 0 + 0.752357 0.24468 0 + 0.770633 0.253211 0 + 0.695437 0.52356 0 + 0.745873 0.554632 0 + 0.483261 0.100211 0 + 0.419075 0.128149 0 + 0.518626 0.223572 0 + 0.492634 0.224726 0 + 0.523727 0.297727 0 + 0.503676 0.297166 0 + 0.536911 0.317971 0 + 0.55669 0.319594 0 + 0.56196 0.334205 0 + 0.52268 0.324933 0 + 0.517083 0.0881269 0 + 0.444243 0.111348 0 + 0.502116 0.160306 0 + 0.452955 0.176666 0 + 0.550604 0.258568 0 + 0.52453 0.2596 0 + 0.504922 0.267873 0 + 0.57072 0.30779 0 + 0.536106 0.309372 0 + 0.505088 0.316665 0 + 0.518016 0.336891 0 + 0.508028 0.0400067 0 + 0.52797 0.151871 0 + 0.477736 0.168632 0 + 0.551039 0.308747 0 + 0.51897 0.314125 0 + 0.679909 0.0720007 0 + 0.561103 0.0796891 0 + 0.628824 0.0941939 0 + 0.686947 0.13574 0 + 0.56023 0.221107 0 + 0.602589 0.219563 0 + 0.645046 0.226185 0 + 0.556972 0.288408 0 + 0.597916 0.289908 0 + 0.635182 0.297893 0 + 0.586072 0.329205 0 + 0.592971 0.0816186 0 + 0.664107 0.118408 0 + 0.561257 0.148703 0 + 0.665241 0.177827 0 + 0.578605 0.218839 0 + 0.598182 0.156798 0 + 0.626354 0.221847 0 + 0.636535 0.272746 0 + 0.57914 0.288734 0 + 0.612847 0.266654 0 + 0.616437 0.292894 0 + 0.634633 0.314834 0 + 0.597231 0.307683 0 + 0.609558 0.321195 0 + 0.59628 0.0453772 0 + 0.645953 0.171414 0 + 0.579628 0.263716 0 + 0.61129 0.30989 0 + 0.417277 0.0556725 0 +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + position 0.0512424 -0.00405343 -0.655128 + orientation -1 0 0 0 + wirecolor 0.582031 0.582031 0.582031 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 32 + -0.005997 0.000797568 -0.528024 + -0.005997 -0.0889789 -0.54266 + 0.0449577 -0.0665347 -0.539001 + 0.0449577 -0.0216465 -0.531683 + -0.0569518 -0.0216465 -0.531683 + -0.0569518 -0.0665347 -0.539001 + -0.00599703 -0.0717597 -0.46902 + 0.0494274 -0.0478393 -0.475939 + -0.0614215 -0.0478393 -0.475939 + -0.005997 -0.0279823 -0.393797 + 0.0532958 -0.0025691 -0.395399 + 0.0532958 0.0482572 -0.398601 + -0.00599703 0.0736703 -0.400202 + -0.0652898 0.0482572 -0.398601 + -0.0652898 -0.00256913 -0.395399 + -0.00599703 -0.048547 -0.139512 + 0.0590979 -0.0239066 -0.134838 + 0.0570258 0.0160271 -0.0962232 + -0.00599703 0.0500146 -0.120814 + -0.0690198 0.0160271 -0.0962232 + -0.071092 -0.0239066 -0.134838 + -0.00599703 -0.0762646 -0.0799753 + 0.0549536 -0.0432689 -0.075636 + -0.00599707 0.0416141 -0.0626185 + -0.0669478 -0.0432689 -0.075636 + -0.00599703 -0.0670612 -0.00253829 + 0.0555891 -0.0369073 0.0110434 + 0.0618956 0.0234005 -0.00286814 + -0.00599707 0.0535545 0.00187119 + -0.0738896 0.0234006 -0.00286814 + -0.0675832 -0.0369073 0.0110434 + -0.00599703 -0.00675327 0.0276729 + faces 60 + 0 2 1 1 32 72 73 0 + 0 3 2 1 32 74 72 0 + 0 5 4 1 32 75 76 0 + 0 1 5 1 32 73 75 0 + 1 2 6 1 33 34 38 0 + 6 2 7 1 38 34 39 0 + 2 3 7 1 34 35 39 0 + 4 5 8 1 36 37 40 0 + 5 6 8 1 64 38 65 0 + 5 1 6 1 64 33 38 0 + 6 7 9 1 38 39 41 0 + 9 7 10 1 41 39 42 0 + 7 3 11 1 39 35 43 0 + 10 7 11 1 42 39 43 0 + 3 12 11 1 35 44 43 0 + 3 0 12 1 35 32 44 0 + 0 4 12 1 32 36 44 0 + 12 4 13 1 44 36 45 0 + 4 8 13 1 36 40 45 0 + 13 8 14 1 45 40 46 0 + 8 9 14 1 65 41 66 0 + 8 6 9 1 65 38 41 0 + 9 10 15 1 41 42 47 0 + 15 10 16 1 47 42 48 0 + 10 11 16 1 42 43 48 0 + 16 11 17 1 48 43 49 0 + 11 18 17 1 43 50 49 0 + 11 12 18 1 43 44 50 0 + 12 13 18 1 44 45 50 0 + 18 13 19 1 50 45 51 0 + 13 20 19 1 45 52 51 0 + 13 14 20 1 45 46 52 0 + 14 15 20 1 66 47 67 0 + 14 9 15 1 66 41 47 0 + 15 16 21 1 47 48 53 0 + 21 16 22 1 53 48 54 0 + 16 17 22 1 48 49 54 0 + 17 18 23 1 49 50 55 0 + 18 19 23 1 50 51 55 0 + 19 20 24 1 51 52 56 0 + 20 21 24 1 67 53 68 0 + 20 15 21 1 67 47 53 0 + 21 22 25 1 53 54 57 0 + 25 22 26 1 57 54 58 0 + 22 17 27 1 54 49 59 0 + 26 22 27 1 58 54 59 0 + 17 23 27 1 49 55 59 0 + 27 23 28 1 59 55 60 0 + 23 19 29 1 55 51 61 0 + 28 23 29 1 60 55 61 0 + 19 24 29 1 51 56 61 0 + 29 24 30 1 61 56 62 0 + 24 25 30 1 68 57 69 0 + 24 21 25 1 68 53 57 0 + 31 25 26 1 63 57 58 0 + 31 26 27 1 70 58 59 0 + 31 27 28 1 70 59 60 0 + 31 28 29 1 71 60 61 0 + 31 29 30 1 71 61 62 0 + 31 30 25 1 63 69 57 0 + tverts 77 + 0.523727 0.297727 0 + 0.503676 0.297166 0 + 0.536911 0.317971 0 + 0.55669 0.319594 0 + 0.56196 0.334205 0 + 0.52268 0.324933 0 + 0.517083 0.0881269 0 + 0.444243 0.111348 0 + 0.502116 0.160306 0 + 0.452955 0.176666 0 + 0.550604 0.258568 0 + 0.52453 0.2596 0 + 0.504922 0.267873 0 + 0.57072 0.30779 0 + 0.536106 0.309372 0 + 0.505088 0.316665 0 + 0.518016 0.336891 0 + 0.508028 0.0400067 0 + 0.52797 0.151871 0 + 0.477736 0.168632 0 + 0.551039 0.308747 0 + 0.51897 0.314125 0 + 0.679909 0.0720007 0 + 0.561103 0.0796891 0 + 0.628824 0.0941939 0 + 0.686947 0.13574 0 + 0.56023 0.221107 0 + 0.602589 0.219563 0 + 0.645046 0.226185 0 + 0.556972 0.288408 0 + 0.597916 0.289908 0 + 0.635182 0.297893 0 + 0.582743 0.501774 0 + 0.527622 0.516767 0 + 0.546371 0.512544 0 + 0.567738 0.502714 0 + 0.597619 0.502714 0 + 0.619315 0.513178 0 + 0.52556 0.493237 0 + 0.544971 0.492556 0 + 0.620496 0.492987 0 + 0.523667 0.473883 0 + 0.546231 0.471843 0 + 0.565927 0.469201 0 + 0.582678 0.469604 0 + 0.59943 0.469201 0 + 0.617175 0.472705 0 + 0.517176 0.401812 0 + 0.540125 0.401057 0 + 0.556286 0.393055 0 + 0.582678 0.399247 0 + 0.609071 0.393055 0 + 0.625176 0.402779 0 + 0.515917 0.387396 0 + 0.532924 0.386146 0 + 0.582678 0.384592 0 + 0.632432 0.38787 0 + 0.514217 0.36797 0 + 0.533323 0.364318 0 + 0.558061 0.369545 0 + 0.582678 0.368352 0 + 0.607295 0.369545 0 + 0.630309 0.366042 0 + 0.513203 0.349203 0 + 0.509814 0.516583 0 + 0.508318 0.496845 0 + 0.502071 0.475105 0 + 0.493034 0.404016 0 + 0.498929 0.387785 0 + 0.494912 0.366226 0 + 0.559392 0.348464 0 + 0.605888 0.348464 0 + 0.568079 0.524722 0 + 0.582808 0.532378 0 + 0.568079 0.509411 0 + 0.597537 0.524722 0 + 0.597537 0.509411 0 +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + position 0 -0.0317091 -0.518509 + orientation 0 0 0 0 + wirecolor 0.105469 0.105469 0.105469 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 20 + -0.00530504 -0.0162031 -0.0970691 + -0.00530504 -0.136205 -0.0970691 + 0.104332 -0.0698464 -0.0970691 + 0.0696248 0.0846563 -0.0970691 + -0.00530507 0.0505677 -0.0736859 + -0.0802349 0.0846563 -0.0970691 + -0.114942 -0.0698464 -0.0970691 + -0.00530504 -0.111208 -0.0485347 + 0.0788083 -0.0573374 -0.0485347 + 0.0659773 0.0518889 -0.0485347 + -0.00530504 0.0383443 -0.0485347 + -0.0765875 0.0518889 -0.0485347 + -0.0894184 -0.0573374 -0.0485347 + -0.00530504 -0.0511982 0.00105688 + 0.0483336 -0.0250977 0.00380013 + 0.0462706 0.0271033 0.00928664 + -0.00530504 0.0445801 0.0072292 + -0.0568807 0.0271033 0.00928684 + -0.0589437 -0.0250977 0.00380013 + -0.00530504 0.000161503 0.0200544 + faces 36 + 0 2 1 1 20 21 22 0 + 0 3 2 1 20 23 21 0 + 0 4 3 1 20 24 23 0 + 0 5 4 1 20 25 24 0 + 0 6 5 1 20 26 25 0 + 0 1 6 1 20 22 26 0 + 1 8 7 1 46 47 48 0 + 1 2 8 1 46 49 47 0 + 2 9 8 1 39 40 41 0 + 2 3 9 1 39 42 40 0 + 3 4 9 1 42 34 40 0 + 9 4 10 1 40 34 35 0 + 4 5 11 1 34 43 36 0 + 10 4 11 1 35 34 36 0 + 5 6 11 1 43 50 36 0 + 11 6 12 1 36 50 51 0 + 6 1 12 1 50 46 51 0 + 12 1 7 1 51 46 48 0 + 7 8 13 1 48 47 52 0 + 13 8 14 1 52 47 53 0 + 8 15 14 1 41 44 45 0 + 8 9 15 1 41 40 44 0 + 9 10 15 1 40 35 44 0 + 15 10 16 1 44 35 37 0 + 10 11 17 1 35 36 38 0 + 16 10 17 1 37 35 38 0 + 11 12 17 1 36 51 38 0 + 17 12 18 1 38 51 54 0 + 12 7 13 1 51 48 52 0 + 18 12 13 1 54 51 52 0 + 19 13 14 1 27 28 29 0 + 19 14 15 1 27 29 30 0 + 19 15 16 1 27 30 31 0 + 19 16 17 1 27 31 32 0 + 19 17 18 1 27 32 33 0 + 19 18 13 1 27 33 28 0 + tverts 55 + 0.582678 0.469604 0 + 0.59943 0.469201 0 + 0.617175 0.472705 0 + 0.517176 0.401812 0 + 0.540125 0.401057 0 + 0.556286 0.393055 0 + 0.582678 0.399247 0 + 0.609071 0.393055 0 + 0.625176 0.402779 0 + 0.515917 0.387396 0 + 0.532924 0.386146 0 + 0.582678 0.384592 0 + 0.632432 0.38787 0 + 0.514217 0.36797 0 + 0.533323 0.364318 0 + 0.558061 0.369545 0 + 0.582678 0.368352 0 + 0.607295 0.369545 0 + 0.630309 0.366042 0 + 0.513203 0.349203 0 + 0.276583 0.421201 0 + 0.241102 0.448264 0 + 0.283389 0.46963 0 + 0.244534 0.384198 0 + 0.272553 0.392523 0 + 0.297191 0.376797 0 + 0.318149 0.437436 0 + 0.376545 0.511694 0 + 0.380315 0.538521 0 + 0.354883 0.528193 0 + 0.351955 0.500799 0 + 0.373284 0.488492 0 + 0.39718 0.494443 0 + 0.401916 0.521583 0 + 0.316574 0.464132 0 + 0.324971 0.471963 0 + 0.343778 0.451794 0 + 0.343589 0.489324 0 + 0.357883 0.475372 0 + 0.279184 0.546058 0 + 0.3061 0.492628 0 + 0.301754 0.5423 0 + 0.285331 0.475795 0 + 0.326117 0.431779 0 + 0.331409 0.5062 0 + 0.326837 0.529721 0 + 0.442342 0.434818 0 + 0.445949 0.484103 0 + 0.42736 0.454699 0 + 0.467101 0.472441 0 + 0.39801 0.421616 0 + 0.393972 0.444935 0 + 0.407318 0.481296 0 + 0.419652 0.499409 0 + 0.384373 0.472464 0 +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g + position -0.00129612 0.00962749 -0.327719 + orientation 0 -0.229205 -0.973378 -3.14159 + wirecolor 0.722656 0.722656 0.722656 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 0.8 + alphaEnd 0 + sizeStart 0.8 + sizeEnd 0.8 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 20 + spawnType 0 + lifeExp 0.8 + mass -0.06 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 16 + random 0 + inherit 0 + inherit_local 0 + inherit_part 1 + inheritvel 0 + xsize 10 + ysize 10 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Normal + Blend Lighten + update_sel 1 + render_sel 1 + blend_sel 3 + deadspace 0 + opacity 0.5 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_FireBb + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + position -0.220038 -0.994676 -0.395939 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 45 + 0.196227 -0.00892582 -0.0748484 + 0.006273 -0.217439 0.0421064 + -0.182611 -0.017056 0.0262961 + -0.0090463 0.177488 -0.0795168 + 0.0142552 -0.0178867 -0.39524 + -0.0424403 -0.145977 -0.397967 + -0.116437 -0.0423078 -0.382837 + -0.0401891 0.0613615 -0.384914 + 0.0382296 0.0168621 -0.624756 + -0.0026785 -0.0962961 -0.621414 + -0.144258 -0.014545 -0.607927 + -0.038807 0.0669816 -0.616635 + -0.00897576 -0.00695737 -0.691695 + -0.0334461 -0.0430571 -0.689958 + -0.0822457 -0.0234569 -0.685028 + -0.0279068 0.0291722 -0.689327 + 0.118186 -0.183892 -0.00709995 + -0.1002 -0.148247 0.0501877 + -0.127437 0.11785 -0.0347476 + 0.120292 0.148354 -0.0943029 + -0.0195981 -0.22117 -0.172293 + 0.0971669 -0.0314561 -0.251486 + -0.0248259 0.127172 -0.222612 + -0.0902445 -0.126299 -0.391228 + -0.115438 -0.0980227 -0.185822 + -0.0985957 0.0416835 -0.379489 + -0.0196258 -0.0910211 -0.548047 + 0.0264945 -0.000196391 -0.535361 + -0.0391794 0.044958 -0.549382 + -0.106523 -0.0805967 -0.612569 + -0.109417 0.0261262 -0.527554 + -0.120338 0.0515065 -0.609139 + -0.0678329 -0.0664758 -0.671755 + 0.0255509 -0.00825291 -0.678793 + -0.0406525 0.0540571 -0.670588 + -0.127595 -0.00822189 -0.664582 + -0.0800417 0.0261016 -0.684444 + 0.00271035 -0.0164835 0.08862 + 0.0505216 -0.175726 -0.208531 + 0.0617969 0.078537 -0.246113 + -0.108244 0.0805205 -0.210874 + -0.0986171 -0.0911554 -0.533041 + -0.000800532 -0.0573357 -0.677618 + 0.016938 0.0394874 -0.676748 + -0.104863 0.0418864 -0.665314 + faces 86 + 16 0 37 1 51 41 6 0 + 19 37 0 1 52 40 41 0 + 37 1 16 1 6 12 51 0 + 1 37 17 1 12 36 22 0 + 18 2 37 1 23 13 11 0 + 17 37 2 1 22 36 13 0 + 37 3 18 1 11 14 23 0 + 3 37 19 1 42 40 52 0 + 5 4 38 1 15 43 7 0 + 21 38 4 1 53 7 43 0 + 38 20 5 1 7 24 15 0 + 16 1 38 1 51 12 7 0 + 20 38 1 1 24 7 12 0 + 38 21 16 1 7 53 51 0 + 0 16 21 1 41 51 53 0 + 22 3 39 1 54 42 8 0 + 19 39 3 1 52 8 42 0 + 39 4 22 1 8 43 54 0 + 7 22 4 1 44 54 43 0 + 21 4 39 1 53 43 8 0 + 39 19 21 1 8 52 53 0 + 0 21 19 1 41 53 52 0 + 23 20 24 1 26 24 27 0 + 20 23 5 1 24 26 15 0 + 6 23 24 1 16 26 27 0 + 17 2 24 1 22 13 27 0 + 24 20 17 1 27 24 22 0 + 1 17 20 1 12 22 24 0 + 25 6 40 1 28 16 37 0 + 24 40 6 1 27 37 16 0 + 40 22 25 1 37 25 28 0 + 7 25 22 1 17 28 25 0 + 18 3 40 1 23 14 37 0 + 22 40 3 1 25 37 14 0 + 40 2 18 1 37 13 23 0 + 2 40 24 1 13 37 27 0 + 9 27 26 1 18 0 55 0 + 27 9 8 1 0 18 45 0 + 26 27 5 1 55 0 15 0 + 4 5 27 1 43 15 0 0 + 28 7 27 1 1 44 0 0 + 4 27 7 1 43 0 44 0 + 27 8 28 1 0 45 1 0 + 11 28 8 1 46 1 45 0 + 29 9 41 1 30 18 38 0 + 26 41 9 1 55 38 18 0 + 41 10 29 1 38 19 30 0 + 10 41 30 1 19 38 31 0 + 23 6 41 1 26 16 38 0 + 30 6 25 1 31 16 28 0 + 41 5 23 1 38 15 26 0 + 5 41 26 1 15 38 55 0 + 31 10 30 1 32 19 31 0 + 30 28 31 1 31 29 32 0 + 11 31 28 1 20 32 29 0 + 25 7 30 1 28 17 31 0 + 28 30 7 1 29 31 17 0 + 6 30 41 1 16 31 38 0 + 13 12 42 1 48 47 9 0 + 33 42 12 1 3 9 47 0 + 42 32 13 1 9 2 48 0 + 32 42 9 1 2 9 18 0 + 42 33 9 1 9 3 18 0 + 8 9 33 1 45 18 3 0 + 34 11 43 1 4 46 10 0 + 8 43 11 1 45 10 46 0 + 43 15 34 1 10 50 4 0 + 33 12 43 1 3 47 10 0 + 15 43 12 1 50 10 47 0 + 43 8 33 1 10 45 3 0 + 14 13 32 1 49 48 2 0 + 32 35 14 1 2 34 21 0 + 29 35 32 1 30 34 2 0 + 35 29 10 1 34 30 19 0 + 9 29 32 1 18 30 2 0 + 36 35 44 1 35 34 39 0 + 35 36 14 1 34 35 21 0 + 44 34 36 1 39 33 35 0 + 15 36 34 1 50 5 4 0 + 31 11 44 1 32 20 39 0 + 34 44 11 1 33 39 20 0 + 44 35 31 1 39 34 32 0 + 10 31 35 1 19 32 34 0 + 15 14 36 1 50 49 5 0 + 14 15 13 1 49 50 48 0 + 15 12 13 1 50 47 48 0 + tverts 56 + 0.52453 0.2596 0 + 0.504922 0.267873 0 + 0.57072 0.30779 0 + 0.536106 0.309372 0 + 0.505088 0.316665 0 + 0.518016 0.336891 0 + 0.508028 0.0400067 0 + 0.52797 0.151871 0 + 0.477736 0.168632 0 + 0.551039 0.308747 0 + 0.51897 0.314125 0 + 0.679909 0.0720007 0 + 0.561103 0.0796891 0 + 0.628824 0.0941939 0 + 0.686947 0.13574 0 + 0.56023 0.221107 0 + 0.602589 0.219563 0 + 0.645046 0.226185 0 + 0.556972 0.288408 0 + 0.597916 0.289908 0 + 0.635182 0.297893 0 + 0.586072 0.329205 0 + 0.592971 0.0816186 0 + 0.664107 0.118408 0 + 0.561257 0.148703 0 + 0.665241 0.177827 0 + 0.578605 0.218839 0 + 0.598182 0.156798 0 + 0.626354 0.221847 0 + 0.636535 0.272746 0 + 0.57914 0.288734 0 + 0.612847 0.266654 0 + 0.616437 0.292894 0 + 0.634633 0.314834 0 + 0.597231 0.307683 0 + 0.609558 0.321195 0 + 0.59628 0.0453772 0 + 0.645953 0.171414 0 + 0.579628 0.263716 0 + 0.61129 0.30989 0 + 0.417277 0.0556725 0 + 0.483261 0.100211 0 + 0.419075 0.128149 0 + 0.518626 0.223572 0 + 0.492634 0.224726 0 + 0.523727 0.297727 0 + 0.503676 0.297166 0 + 0.536911 0.317971 0 + 0.55669 0.319594 0 + 0.56196 0.334205 0 + 0.52268 0.324933 0 + 0.517083 0.0881269 0 + 0.444243 0.111348 0 + 0.502116 0.160306 0 + 0.452955 0.176666 0 + 0.550604 0.258568 0 +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + position -0.0512419 -0.00148132 -0.655128 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 32 + 0.00599698 -0.00177412 -0.528023 + 0.00599698 -0.0915505 -0.54266 + -0.0449577 -0.0691063 -0.539001 + -0.0449577 -0.0242182 -0.531683 + 0.0569518 -0.0242182 -0.531683 + 0.0569518 -0.0691063 -0.539001 + 0.00599701 -0.0743315 -0.46902 + -0.0494274 -0.0504109 -0.475939 + 0.0614215 -0.0504109 -0.475939 + 0.00599698 -0.0305539 -0.393797 + -0.0532958 -0.00514082 -0.395399 + -0.0532958 0.0456856 -0.398601 + 0.005997 0.0710987 -0.400201 + 0.0652899 0.0456856 -0.398601 + 0.0652899 -0.00514084 -0.395399 + 0.005997 -0.0511186 -0.139512 + -0.0590979 -0.0264783 -0.134838 + -0.0570257 0.0134555 -0.0962233 + 0.005997 0.0474429 -0.120814 + 0.0690198 0.0134555 -0.0962233 + 0.071092 -0.0264783 -0.134838 + 0.005997 -0.0788362 -0.0799754 + -0.0549536 -0.0458405 -0.0756361 + 0.00599703 0.0390425 -0.0626186 + 0.0669478 -0.0458405 -0.0756361 + 0.00599701 -0.0696328 -0.00253832 + -0.0555891 -0.0394789 0.0110433 + -0.0618955 0.020829 -0.00286817 + 0.00599703 0.0509829 0.00187116 + 0.0738896 0.0208289 -0.00286817 + 0.0675832 -0.0394789 0.0110433 + 0.005997 -0.00932498 0.0276728 + faces 60 + 2 0 1 1 72 32 73 0 + 3 0 2 1 74 32 72 0 + 5 0 4 1 75 32 76 0 + 1 0 5 1 73 32 75 0 + 2 1 6 1 34 33 38 0 + 2 6 7 1 34 38 39 0 + 3 2 7 1 35 34 39 0 + 5 4 8 1 37 36 40 0 + 6 5 8 1 38 64 65 0 + 1 5 6 1 33 64 38 0 + 7 6 9 1 39 38 41 0 + 7 9 10 1 39 41 42 0 + 3 7 11 1 35 39 43 0 + 7 10 11 1 39 42 43 0 + 12 3 11 1 44 35 43 0 + 0 3 12 1 32 35 44 0 + 4 0 12 1 36 32 44 0 + 4 12 13 1 36 44 45 0 + 8 4 13 1 40 36 45 0 + 8 13 14 1 40 45 46 0 + 9 8 14 1 41 65 66 0 + 6 8 9 1 38 65 41 0 + 10 9 15 1 42 41 47 0 + 10 15 16 1 42 47 48 0 + 11 10 16 1 43 42 48 0 + 11 16 17 1 43 48 49 0 + 18 11 17 1 50 43 49 0 + 12 11 18 1 44 43 50 0 + 13 12 18 1 45 44 50 0 + 13 18 19 1 45 50 51 0 + 20 13 19 1 52 45 51 0 + 14 13 20 1 46 45 52 0 + 15 14 20 1 47 66 67 0 + 9 14 15 1 41 66 47 0 + 16 15 21 1 48 47 53 0 + 16 21 22 1 48 53 54 0 + 17 16 22 1 49 48 54 0 + 18 17 23 1 50 49 55 0 + 19 18 23 1 51 50 55 0 + 20 19 24 1 52 51 56 0 + 21 20 24 1 53 67 68 0 + 15 20 21 1 47 67 53 0 + 22 21 25 1 54 53 57 0 + 22 25 26 1 54 57 58 0 + 17 22 27 1 49 54 59 0 + 22 26 27 1 54 58 59 0 + 23 17 27 1 55 49 59 0 + 23 27 28 1 55 59 60 0 + 19 23 29 1 51 55 61 0 + 23 28 29 1 55 60 61 0 + 24 19 29 1 56 51 61 0 + 24 29 30 1 56 61 62 0 + 25 24 30 1 57 68 69 0 + 21 24 25 1 53 68 57 0 + 25 31 26 1 57 63 58 0 + 26 31 27 1 58 70 59 0 + 27 31 28 1 59 70 60 0 + 28 31 29 1 60 71 61 0 + 29 31 30 1 61 71 62 0 + 30 31 25 1 69 63 57 0 + tverts 77 + 0.523727 0.297727 0 + 0.503676 0.297166 0 + 0.536911 0.317971 0 + 0.55669 0.319594 0 + 0.56196 0.334205 0 + 0.52268 0.324933 0 + 0.517083 0.0881269 0 + 0.444243 0.111348 0 + 0.502116 0.160306 0 + 0.452955 0.176666 0 + 0.550604 0.258568 0 + 0.52453 0.2596 0 + 0.504922 0.267873 0 + 0.57072 0.30779 0 + 0.536106 0.309372 0 + 0.505088 0.316665 0 + 0.518016 0.336891 0 + 0.508028 0.0400067 0 + 0.52797 0.151871 0 + 0.477736 0.168632 0 + 0.551039 0.308747 0 + 0.51897 0.314125 0 + 0.679909 0.0720007 0 + 0.561103 0.0796891 0 + 0.628824 0.0941939 0 + 0.686947 0.13574 0 + 0.56023 0.221107 0 + 0.602589 0.219563 0 + 0.645046 0.226185 0 + 0.556972 0.288408 0 + 0.597916 0.289908 0 + 0.635182 0.297893 0 + 0.582743 0.501774 0 + 0.527622 0.516767 0 + 0.546371 0.512544 0 + 0.567738 0.502714 0 + 0.597619 0.502714 0 + 0.619315 0.513178 0 + 0.52556 0.493237 0 + 0.544971 0.492556 0 + 0.620496 0.492987 0 + 0.523667 0.473883 0 + 0.546231 0.471843 0 + 0.565927 0.469201 0 + 0.582678 0.469604 0 + 0.59943 0.469201 0 + 0.617175 0.472705 0 + 0.517176 0.401812 0 + 0.540125 0.401057 0 + 0.556286 0.393055 0 + 0.582678 0.399247 0 + 0.609071 0.393055 0 + 0.625176 0.402779 0 + 0.515917 0.387396 0 + 0.532924 0.386146 0 + 0.582678 0.384592 0 + 0.632432 0.38787 0 + 0.514217 0.36797 0 + 0.533323 0.364318 0 + 0.558061 0.369545 0 + 0.582678 0.368352 0 + 0.607295 0.369545 0 + 0.630309 0.366042 0 + 0.513203 0.349203 0 + 0.509814 0.516583 0 + 0.508318 0.496845 0 + 0.502071 0.475105 0 + 0.493034 0.404016 0 + 0.498929 0.387785 0 + 0.494912 0.366226 0 + 0.559392 0.348464 0 + 0.605888 0.348464 0 + 0.568079 0.524722 0 + 0.582808 0.532378 0 + 0.568079 0.509411 0 + 0.597537 0.524722 0 + 0.597537 0.509411 0 +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + position 0 -0.0342809 -0.518509 + orientation 0 0 0 0 + wirecolor 0.722656 0.722656 0.722656 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 20 + 0.00530505 -0.016203 -0.0970691 + 0.00530505 -0.136205 -0.0970691 + -0.104332 -0.0698464 -0.0970691 + -0.0696248 0.0846563 -0.0970691 + 0.00530508 0.0505677 -0.0736859 + 0.0802349 0.0846563 -0.0970691 + 0.114942 -0.0698464 -0.0970691 + 0.00530505 -0.111208 -0.0485347 + -0.0788083 -0.0573374 -0.0485347 + -0.0659773 0.0518889 -0.0485347 + 0.00530505 0.0383443 -0.0485347 + 0.0765875 0.0518889 -0.0485347 + 0.0894184 -0.0573374 -0.0485347 + 0.00530505 -0.0511982 0.00105688 + -0.0483336 -0.0250977 0.00380013 + -0.0462706 0.0271033 0.00928664 + 0.00530505 0.0445801 0.00722919 + 0.0568807 0.0271033 0.00928683 + 0.0589437 -0.0250977 0.00380013 + 0.00530505 0.000161537 0.0200544 + faces 36 + 2 0 1 1 21 20 22 0 + 3 0 2 1 23 20 21 0 + 4 0 3 1 24 20 23 0 + 5 0 4 1 25 20 24 0 + 6 0 5 1 26 20 25 0 + 1 0 6 1 22 20 26 0 + 8 1 7 1 47 46 48 0 + 2 1 8 1 49 46 47 0 + 9 2 8 1 40 39 41 0 + 3 2 9 1 42 39 40 0 + 4 3 9 1 34 42 40 0 + 4 9 10 1 34 40 35 0 + 5 4 11 1 43 34 36 0 + 4 10 11 1 34 35 36 0 + 6 5 11 1 50 43 36 0 + 6 11 12 1 50 36 51 0 + 1 6 12 1 46 50 51 0 + 1 12 7 1 46 51 48 0 + 8 7 13 1 47 48 52 0 + 8 13 14 1 47 52 53 0 + 15 8 14 1 44 41 45 0 + 9 8 15 1 40 41 44 0 + 10 9 15 1 35 40 44 0 + 10 15 16 1 35 44 37 0 + 11 10 17 1 36 35 38 0 + 10 16 17 1 35 37 38 0 + 12 11 17 1 51 36 38 0 + 12 17 18 1 51 38 54 0 + 7 12 13 1 48 51 52 0 + 12 18 13 1 51 54 52 0 + 13 19 14 1 28 27 29 0 + 14 19 15 1 29 27 30 0 + 15 19 16 1 30 27 31 0 + 16 19 17 1 31 27 32 0 + 17 19 18 1 32 27 33 0 + 18 19 13 1 33 27 28 0 + tverts 55 + 0.582678 0.469604 0 + 0.59943 0.469201 0 + 0.617175 0.472705 0 + 0.517176 0.401812 0 + 0.540125 0.401057 0 + 0.556286 0.393055 0 + 0.582678 0.399247 0 + 0.609071 0.393055 0 + 0.625176 0.402779 0 + 0.515917 0.387396 0 + 0.532924 0.386146 0 + 0.582678 0.384592 0 + 0.632432 0.38787 0 + 0.514217 0.36797 0 + 0.533323 0.364318 0 + 0.558061 0.369545 0 + 0.582678 0.368352 0 + 0.607295 0.369545 0 + 0.630309 0.366042 0 + 0.513203 0.349203 0 + 0.276583 0.421201 0 + 0.241102 0.448264 0 + 0.283389 0.46963 0 + 0.244534 0.384198 0 + 0.272553 0.392523 0 + 0.297191 0.376797 0 + 0.318149 0.437436 0 + 0.376545 0.511694 0 + 0.380315 0.538521 0 + 0.354883 0.528193 0 + 0.351955 0.500799 0 + 0.373284 0.488492 0 + 0.39718 0.494443 0 + 0.401916 0.521583 0 + 0.316574 0.464132 0 + 0.324971 0.471963 0 + 0.343778 0.451794 0 + 0.343589 0.489324 0 + 0.357883 0.475372 0 + 0.279184 0.546058 0 + 0.3061 0.492628 0 + 0.301754 0.5423 0 + 0.285331 0.475795 0 + 0.326117 0.431779 0 + 0.331409 0.5062 0 + 0.326837 0.529721 0 + 0.442342 0.434818 0 + 0.445949 0.484103 0 + 0.42736 0.454699 0 + 0.467101 0.472441 0 + 0.39801 0.421616 0 + 0.393972 0.444935 0 + 0.407318 0.481296 0 + 0.419652 0.499409 0 + 0.384373 0.472464 0 +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g + position 0.0219402 0.0103638 -0.327178 + orientation 0 -0.216441 -0.976296 -3.14159 + wirecolor 0.722656 0.722656 0.722656 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 0.8 + alphaEnd 0 + sizeStart 0.8 + sizeEnd 0.8 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 20 + spawnType 0 + lifeExp 0.8 + mass -0.06 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 16 + random 0 + inherit 0 + inherit_local 0 + inherit_part 1 + inheritvel 0 + xsize 10 + ysize 10 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Normal + Blend Lighten + update_sel 1 + render_sel 1 + blend_sel 3 + deadspace 0 + opacity 0.5 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_FireBb + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +node trimesh Neck_g + parent Torso_g + position 0 -0.906092 -0.11495 + orientation -1 0 0 0 + wirecolor 0.878906 0.878906 0.878906 + ambient 0.588235 0.588235 0.588235 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 49 + -0.000467121 -0.689044 0.846941 + 0.0767779 -0.702989 0.768845 + 0.114578 -0.737082 0.59577 + -0.00046712 -0.752191 0.490845 + -0.000467057 -0.500867 0.89525 + 0.0998279 -0.535622 0.754054 + 0.148874 -0.650763 0.534013 + -0.000467121 -0.695456 0.428949 + -0.000466583 -0.013421 0.56888 + 0.147172 -0.108636 0.452293 + 0.284612 -0.345755 0.238591 + 0.184891 -0.446456 0.159909 + -0.000467122 -0.612326 0.30586 + -0.000467123 -0.530307 0.106039 + -0.000467134 0.124923 0.254999 + 0.12095 0.00233671 0.144071 + 0.145261 -0.149096 0.0261676 + -0.000467126 -0.362864 -0.114957 + 0.1631 -0.592394 0.641894 + 0.125694 -0.716725 0.698249 + 0.256793 -0.23416 0.325531 + 0.103948 0.0119805 0.30781 + -0.000467133 0.103593 0.370788 + 0.238053 -0.259322 0.0987898 + 0.0890997 -0.267969 -0.0927776 + -0.000467125 -0.442427 -0.0716677 + 0.215118 -0.116602 0.212342 + 0.0665832 -0.400402 -0.043178 + -0.0777121 -0.702989 0.768845 + -0.115512 -0.737082 0.59577 + -0.100762 -0.535622 0.754054 + -0.149808 -0.650763 0.534013 + -0.148104 -0.108636 0.452293 + -0.285547 -0.345754 0.23859 + -0.185827 -0.446456 0.159908 + -0.121885 0.00233674 0.144071 + -0.146197 -0.149096 0.0261676 + -0.164036 -0.592394 0.641894 + -0.126628 -0.716725 0.698249 + -0.257726 -0.23416 0.325531 + -0.104882 0.0119805 0.30781 + -0.238987 -0.259322 0.0987896 + -0.0900339 -0.267969 -0.0927777 + -0.216053 -0.116602 0.212342 + -0.0675174 -0.400402 -0.043178 + 0.0283305 -0.0506017 0.469711 + 0.0203427 -0.516087 0.784937 + -0.0203578 -0.515862 0.785294 + -0.0309855 -0.0514421 0.46946 + faces 82 + 0 5 46 1 35 40 66 0 + 5 0 1 1 40 35 36 0 + 19 2 18 1 54 37 53 0 + 6 18 2 1 41 53 37 0 + 18 5 19 1 53 40 54 0 + 1 19 5 1 36 54 40 0 + 7 6 3 1 42 41 38 0 + 2 3 6 1 37 38 41 0 + 46 5 45 1 66 40 63 0 + 45 5 9 1 63 40 44 0 + 18 10 20 1 53 45 55 0 + 10 18 6 1 45 53 41 0 + 20 9 18 1 55 44 53 0 + 5 18 9 1 40 53 44 0 + 11 10 6 1 46 45 41 0 + 12 6 7 1 47 41 42 0 + 6 12 11 1 41 47 46 0 + 11 12 13 1 46 47 48 0 + 15 14 21 1 50 49 56 0 + 22 21 14 1 57 56 49 0 + 45 9 22 1 63 44 57 0 + 21 22 9 1 56 57 44 0 + 16 15 26 1 51 50 61 0 + 21 26 15 1 56 61 50 0 + 26 23 16 1 61 58 51 0 + 20 23 26 1 55 58 61 0 + 23 20 10 1 58 55 45 0 + 26 9 20 1 61 44 55 0 + 9 26 21 1 44 61 56 0 + 23 10 11 1 58 45 46 0 + 24 23 27 1 59 58 62 0 + 23 24 16 1 58 59 51 0 + 27 17 24 1 62 52 59 0 + 17 27 25 1 52 62 60 0 + 13 25 27 1 48 60 62 0 + 27 11 13 1 62 46 48 0 + 11 27 23 1 46 62 58 0 + 47 30 0 1 65 40 35 0 + 28 0 30 1 36 35 40 0 + 37 29 38 1 53 37 54 0 + 29 37 31 1 37 53 41 0 + 38 30 37 1 54 40 53 0 + 30 38 28 1 40 54 36 0 + 3 31 7 1 38 41 42 0 + 31 3 29 1 41 38 37 0 + 47 48 30 1 65 64 40 0 + 30 48 32 1 40 64 44 0 + 39 33 37 1 55 45 53 0 + 31 37 33 1 41 53 45 0 + 37 32 39 1 53 44 55 0 + 32 37 30 1 44 53 40 0 + 31 33 34 1 41 45 46 0 + 7 31 12 1 42 41 47 0 + 34 12 31 1 46 47 41 0 + 13 12 34 1 48 47 46 0 + 40 14 35 1 56 49 50 0 + 14 40 22 1 49 56 57 0 + 22 32 48 1 57 44 64 0 + 32 22 40 1 44 57 56 0 + 43 35 36 1 61 50 51 0 + 35 43 40 1 50 61 56 0 + 36 41 43 1 51 58 61 0 + 43 41 39 1 61 58 55 0 + 33 39 41 1 45 55 58 0 + 39 32 43 1 55 44 61 0 + 40 43 32 1 56 61 44 0 + 34 33 41 1 46 45 58 0 + 44 41 42 1 62 58 59 0 + 36 42 41 1 51 59 58 0 + 42 17 44 1 59 52 62 0 + 25 44 17 1 60 62 52 0 + 44 25 13 1 62 60 48 0 + 13 34 44 1 48 46 62 0 + 41 44 34 1 58 62 46 0 + 8 45 22 1 43 63 57 0 + 4 46 8 1 39 66 43 0 + 8 46 45 1 43 66 63 0 + 0 46 4 1 35 66 39 0 + 4 47 0 1 39 65 35 0 + 4 8 47 1 39 43 65 0 + 48 47 8 1 64 65 43 0 + 22 48 8 1 57 64 43 0 + tverts 67 + 0.467101 0.472441 0 + 0.39801 0.421616 0 + 0.393972 0.444935 0 + 0.407318 0.481296 0 + 0.419652 0.499409 0 + 0.384373 0.472464 0 + 0.276583 0.421201 0 + 0.241102 0.448264 0 + 0.283389 0.46963 0 + 0.244534 0.384198 0 + 0.272553 0.392523 0 + 0.297191 0.376797 0 + 0.318149 0.437436 0 + 0.376545 0.511694 0 + 0.380315 0.538521 0 + 0.354883 0.528193 0 + 0.351955 0.500799 0 + 0.373284 0.488492 0 + 0.39718 0.494443 0 + 0.401916 0.521583 0 + 0.316574 0.464132 0 + 0.324971 0.471963 0 + 0.343778 0.451794 0 + 0.343589 0.489324 0 + 0.357883 0.475372 0 + 0.279184 0.546058 0 + 0.3061 0.492628 0 + 0.301754 0.5423 0 + 0.285331 0.475795 0 + 0.326117 0.431779 0 + 0.331409 0.5062 0 + 0.326837 0.529721 0 + 0.442342 0.434818 0 + 0.445949 0.484103 0 + 0.42736 0.454699 0 + 0.408664 0.392386 0 + 0.41408 0.362017 0 + 0.427175 0.292046 0 + 0.442072 0.252054 0 + 0.322378 0.364689 0 + 0.346288 0.338505 0 + 0.384304 0.260491 0 + 0.414584 0.215928 0 + 0.140928 0.251913 0 + 0.198479 0.234044 0 + 0.280562 0.160067 0 + 0.311738 0.13283 0 + 0.387322 0.166265 0 + 0.356269 0.10015 0 + 0.0989347 0.162285 0 + 0.145614 0.120045 0 + 0.203277 0.075149 0 + 0.291203 0.012691 0 + 0.365941 0.299678 0 + 0.419423 0.331068 0 + 0.241931 0.190164 0 + 0.156725 0.184029 0 + 0.107829 0.199744 0 + 0.250642 0.111672 0 + 0.248543 0.0298562 0 + 0.321372 0.0412393 0 + 0.201236 0.150981 0 + 0.299479 0.0625274 0 + 0.152154 0.248428 0 + 0.152824 0.248219 0 + 0.32712 0.359496 0 + 0.327339 0.359256 0 +endnode +node trimesh Head_g + parent Neck_g + position 0 -0.628393 0.702473 + orientation 0 0 0 0 + wirecolor 0.777344 0.777344 0.777344 + ambient 0.588235 0.588235 0.588235 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 59 + 0.167641 -0.103903 -0.101114 + 0.0984998 -0.203575 -0.157523 + 0.0908143 -0.108457 -0.227982 + 0.109631 0.0185023 0.154385 + -0.110566 0.0185023 0.154385 + -0.000466676 -0.222184 0.267191 + 0.145748 0.0360891 -0.104646 + 0.166833 -0.0941334 0.0318015 + -0.000467126 -0.00498623 -0.228901 + 0.085954 0.0637944 0.0823037 + -0.099434 -0.203575 -0.157523 + -0.0917486 -0.108457 -0.227982 + -0.000467129 -0.203257 -0.242217 + -0.168575 -0.103903 -0.101114 + -0.167768 -0.0941337 0.0318017 + -0.146684 0.0360891 -0.104646 + -0.0868882 0.0637944 0.0823036 + 0.0506014 -0.287018 -0.221243 + -0.0515357 -0.287018 -0.221243 + -0.135544 -0.132674 0.203395 + 0.13461 -0.132674 0.203395 + 0.17224 -0.224062 0.0225575 + -0.173174 -0.224062 0.0225576 + -0.146574 -0.305132 0.15254 + -0.101582 -0.383361 0.0830081 + -0.000467125 -0.278709 0.211521 + -0.000467122 -0.376078 0.139461 + -0.0257034 -0.57925 -0.401754 + 0.0247691 -0.579249 -0.401754 + 0.0512366 -0.433457 -0.308769 + -0.0521709 -0.433457 -0.308769 + -0.0311873 -0.506067 -0.360877 + 0.0302529 -0.506067 -0.360877 + 0.164921 -0.384803 -0.0711066 + 0.0701394 -0.347611 -0.271156 + 0.144502 -0.484772 -0.173492 + -0.00046712 -0.481325 0.00417256 + 0.100648 -0.383361 0.083008 + 0.10449 -0.439152 -0.0161327 + 0.136143 -0.578077 -0.26265 + 0.0649525 -0.555596 -0.0773306 + 0.0604055 -0.674332 -0.349778 + 0.0456738 -0.685368 -0.230123 + -0.0613397 -0.674332 -0.349778 + -0.0466081 -0.685368 -0.230123 + -0.0710734 -0.347611 -0.271156 + -0.0658868 -0.555596 -0.0773306 + -0.165855 -0.384803 -0.0711066 + -0.145437 -0.484772 -0.173492 + -0.105424 -0.439152 -0.0161327 + -0.137077 -0.578077 -0.26265 + 0.14564 -0.305132 0.15254 + -0.000466901 0.10058 0.213692 + 0.0198007 -0.110434 0.218088 + 0.0101355 0.0185023 0.154386 + -0.0200369 -0.110299 0.218177 + -0.0130874 0.0185023 0.154385 + -0.000467141 0.0637944 0.0823037 + -0.00046644 -0.0644156 0.296353 + faces 114 + 0 1 2 1 27 34 38 0 + 54 52 53 1 52 53 54 0 + 58 5 53 1 55 56 54 0 + 0 6 7 1 27 33 24 0 + 6 0 2 1 33 27 38 0 + 6 8 9 1 26 23 39 0 + 9 3 6 1 25 17 33 0 + 18 11 12 1 36 38 43 0 + 13 14 15 1 27 24 33 0 + 15 11 13 1 33 38 27 0 + 8 57 9 1 23 41 39 0 + 4 15 14 1 17 33 24 0 + 17 12 2 1 45 43 47 0 + 17 18 12 1 45 36 43 0 + 7 6 3 1 24 33 17 0 + 3 20 7 1 17 15 24 0 + 21 7 20 1 21 24 15 0 + 7 21 0 1 24 21 27 0 + 47 10 18 1 20 34 36 0 + 11 18 10 1 38 36 34 0 + 14 13 22 1 24 27 21 0 + 22 19 14 1 21 15 24 0 + 0 21 1 1 27 21 34 0 + 4 16 15 1 17 25 33 0 + 4 14 19 1 17 24 15 0 + 1 21 33 1 34 21 20 0 + 1 17 2 1 34 36 38 0 + 10 22 13 1 34 21 27 0 + 13 11 10 1 27 38 34 0 + 8 6 2 1 46 33 38 0 + 12 11 8 1 43 38 46 0 + 11 15 8 1 38 33 46 0 + 12 8 2 1 43 46 47 0 + 20 25 51 1 15 6 14 0 + 33 34 17 1 20 32 36 0 + 17 1 33 1 36 34 20 0 + 51 37 21 1 14 13 21 0 + 21 20 51 1 21 15 14 0 + 35 29 34 1 22 30 32 0 + 34 33 35 1 32 20 22 0 + 36 37 26 1 4 13 5 0 + 38 35 33 1 16 22 20 0 + 39 32 29 1 19 31 30 0 + 29 35 39 1 30 22 19 0 + 40 39 35 1 11 19 22 0 + 39 28 32 1 19 29 31 0 + 28 39 41 1 29 19 18 0 + 40 42 39 1 11 10 19 0 + 41 39 42 1 18 19 10 0 + 37 33 21 1 13 20 21 0 + 36 40 38 1 4 11 16 0 + 37 38 33 1 13 16 20 0 + 53 5 25 1 54 56 57 0 + 40 35 38 1 11 22 16 0 + 36 38 37 1 4 16 13 0 + 28 41 27 1 3 0 9 0 + 27 41 43 1 9 0 12 0 + 44 41 42 1 10 0 2 0 + 43 41 44 1 12 0 10 0 + 18 17 34 1 36 45 44 0 + 34 45 18 1 44 32 36 0 + 45 34 29 1 32 44 40 0 + 29 30 45 1 40 30 32 0 + 40 36 46 1 1 4 11 0 + 42 40 44 1 2 1 10 0 + 19 23 25 1 15 14 6 0 + 47 18 45 1 20 36 32 0 + 10 47 22 1 34 20 21 0 + 22 47 24 1 21 20 13 0 + 48 45 30 1 22 32 30 0 + 45 48 47 1 32 22 20 0 + 36 26 24 1 4 5 13 0 + 49 24 47 1 16 13 20 0 + 50 30 31 1 19 30 31 0 + 30 50 48 1 30 19 22 0 + 46 48 50 1 11 22 19 0 + 50 44 46 1 19 10 11 0 + 50 31 27 1 19 31 29 0 + 27 43 50 1 29 18 19 0 + 44 50 43 1 10 19 18 0 + 46 44 40 1 11 10 1 0 + 22 23 19 1 21 14 15 0 + 36 49 46 1 4 16 11 0 + 49 47 48 1 16 20 22 0 + 19 25 55 1 15 6 7 0 + 46 49 48 1 11 16 22 0 + 36 24 49 1 4 13 16 0 + 24 23 22 1 13 14 21 0 + 26 23 24 1 5 14 13 0 + 25 23 26 1 6 14 5 0 + 51 26 37 1 14 5 13 0 + 25 26 51 1 6 5 14 0 + 31 30 29 1 31 30 40 0 + 32 28 27 1 37 35 29 0 + 32 31 29 1 37 31 40 0 + 31 32 27 1 31 37 29 0 + 9 54 3 1 39 49 48 0 + 19 55 4 1 15 64 60 0 + 55 56 4 1 64 61 60 0 + 20 53 25 1 15 8 6 0 + 20 3 53 1 15 62 8 0 + 3 54 53 1 62 63 8 0 + 55 25 5 1 58 57 56 0 + 56 55 52 1 52 58 53 0 + 5 58 55 1 56 55 58 0 + 16 4 56 1 42 51 50 0 + 52 57 56 1 53 59 52 0 + 16 56 57 1 42 50 41 0 + 52 54 57 1 53 52 59 0 + 57 54 9 1 41 49 39 0 + 57 15 16 1 41 28 42 0 + 8 15 57 1 23 28 41 0 + 52 58 53 1 53 55 54 0 + 55 58 52 1 58 55 53 0 + tverts 65 + 0.00494824 0.25667 0 + 0.00863753 0.384526 0 + 0.0110887 0.311045 0 + 0.019802 0.225248 0 + 0.0305641 0.419393 0 + 0.0305641 0.482565 0 + 0.0305641 0.532342 0 + 0.0344366 0.582542 0 + 0.0346261 0.582413 0 + 0.0408398 0.225248 0 + 0.0495533 0.311045 0 + 0.0524569 0.38471 0 + 0.0556937 0.25667 0 + 0.0559228 0.466883 0 + 0.0615854 0.511431 0 + 0.0657947 0.56117 0 + 0.0749286 0.435102 0 + 0.0808274 0.609201 0 + 0.0934095 0.296202 0 + 0.0956223 0.351297 0 + 0.0994231 0.44324 0 + 0.103688 0.513706 0 + 0.104342 0.38982 0 + 0.106229 0.935979 0 + 0.109348 0.561144 0 + 0.111019 0.623083 0 + 0.14392 0.89499 0 + 0.144206 0.532953 0 + 0.145327 0.975629 0 + 0.146811 0.312914 0 + 0.154106 0.382672 0 + 0.155104 0.348131 0 + 0.158224 0.419686 0 + 0.161278 0.580287 0 + 0.162279 0.482909 0 + 0.165916 0.307961 0 + 0.171211 0.451075 0 + 0.174178 0.343186 0 + 0.184854 0.501951 0 + 0.191226 0.912369 0 + 0.191275 0.373215 0 + 0.191612 0.934489 0 + 0.191998 0.956609 0 + 0.19402 0.463563 0 + 0.205016 0.40783 0 + 0.208286 0.441641 0 + 0.211399 0.533195 0 + 0.220124 0.492967 0 + 0.22109 0.904181 0 + 0.221559 0.931097 0 + 0.221669 0.93738 0 + 0.222129 0.96375 0 + 0.262856 0.298934 0 + 0.25325 0.32554 0 + 0.207903 0.260473 0 + 0.185916 0.276766 0 + 0.121163 0.235147 0 + 0.143349 0.21686 0 + 0.207719 0.260582 0 + 0.310781 0.346544 0 + 0.0346511 0.580616 0 + 0.0878326 0.611985 0 + 0.102901 0.59425 0 + 0.0890775 0.611272 0 + 0.102626 0.593429 0 +endnode +node trimesh Ear_Left_g + parent Head_g + position 0.0723419 -0.163484 0.191583 + orientation 0 0 0 0 + wirecolor 0.34375 0.34375 0.34375 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 9 + 0.0717875 -0.022919 0.121203 + 0.0566392 -0.00883245 0.203634 + 0.00628178 -0.0161741 0.130381 + -0.00759671 0.0963448 0.0177545 + 0.0801778 -0.00959631 0.0655554 + 0.0725736 -0.0347059 -0.0274517 + 0.059441 0.0211097 0.120131 + -0.0169591 -0.0135926 0.0583651 + -0.0708853 -0.0328585 0.0101788 + faces 13 + 0 1 2 1 9 10 11 0 + 3 4 5 1 12 13 14 0 + 4 3 6 1 13 12 15 0 + 5 7 8 1 18 16 17 0 + 7 5 4 1 16 18 19 0 + 7 6 3 1 20 21 22 0 + 3 8 7 1 22 23 20 0 + 4 2 7 1 19 11 16 0 + 2 4 0 1 11 19 9 0 + 2 1 6 1 24 25 21 0 + 6 7 2 1 21 20 24 0 + 1 0 6 1 26 27 15 0 + 4 6 0 1 13 15 27 0 + tverts 28 + 0.156725 0.184029 0 + 0.107829 0.199744 0 + 0.250642 0.111672 0 + 0.248543 0.0298562 0 + 0.321372 0.0412393 0 + 0.201236 0.150981 0 + 0.299479 0.0625274 0 + 0.41408 0.362017 0 + 0.427175 0.292046 0 + 0.0658272 0.88577 0 + 0.108469 0.88103 0 + 0.0660658 0.872073 0 + 0.00986874 0.927037 0 + 0.0385216 0.888778 0 + 0.00987267 0.893398 0 + 0.0380739 0.914655 0 + 0.0388983 0.867194 0 + 0.00987622 0.863464 0 + 0.00987267 0.89339 0 + 0.038522 0.888756 0 + 0.0388982 0.867198 0 + 0.0393021 0.844181 0 + 0.0098803 0.830224 0 + 0.00987622 0.863478 0 + 0.0660649 0.872081 0 + 0.108467 0.881012 0 + 0.108467 0.881048 0 + 0.065826 0.885763 0 +endnode +node trimesh Ear_Right_g01 + parent Head_g + position -0.0925428 -0.169251 0.191583 + orientation 0.997362 -0.0461267 -0.0560532 -0.145347 + wirecolor 0.695313 0.695313 0.695313 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 9 + 0.0273087 -0.0167756 0.136611 + -0.0119142 -0.0127079 0.200956 + -0.0339528 -0.0130839 0.127051 + 0.0480266 0.110881 0.028319 + 0.051361 0.00299268 0.064009 + 0.0912023 -0.0114987 -0.00422323 + 0.00140702 0.0266839 0.121508 + -0.0400789 -0.002941 0.0556886 + -0.0277733 -0.018387 -0.0330917 + faces 13 + 0 1 2 1 0 1 2 0 + 3 4 5 1 3 4 5 0 + 4 3 6 1 4 3 6 0 + 5 7 8 1 9 7 8 0 + 7 5 4 1 7 9 10 0 + 7 6 3 1 11 12 13 0 + 3 8 7 1 13 14 11 0 + 4 2 7 1 10 2 7 0 + 2 4 0 1 2 10 0 0 + 2 1 6 1 15 16 12 0 + 6 7 2 1 12 11 15 0 + 1 0 6 1 17 18 6 0 + 4 6 0 1 4 6 18 0 + tverts 19 + 0.0658272 0.88577 0 + 0.108469 0.88103 0 + 0.0660658 0.872073 0 + 0.00986874 0.927037 0 + 0.0385216 0.888778 0 + 0.00987267 0.893398 0 + 0.0380739 0.914655 0 + 0.0388983 0.867194 0 + 0.00987622 0.863464 0 + 0.00987267 0.89339 0 + 0.038522 0.888756 0 + 0.0388982 0.867198 0 + 0.0393021 0.844181 0 + 0.0098803 0.830224 0 + 0.00987622 0.863478 0 + 0.0660649 0.872081 0 + 0.108467 0.881012 0 + 0.108467 0.881048 0 + 0.065826 0.885763 0 +endnode +node emitter Mane03 + parent Head_g + position -0.00600176 -0.269613 0.364449 + orientation -0.316241 0.326805 -0.890612 -1.68485 + wirecolor 0.691406 0.691406 0.691406 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 1 + alphaEnd 0 + sizeStart 0.8 + sizeEnd 0.7 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 10 + spawnType 0 + lifeExp 1 + mass -0.04 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 16 + random 0 + inherit 0 + inherit_local 0 + inherit_part 1 + inheritvel 0 + xsize 30 + ysize 3 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Normal + Blend Lighten + update_sel 1 + render_sel 1 + blend_sel 3 + deadspace 0 + opacity 0.5 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_FireBb + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +node emitter Fire06 + parent Head_g + position 0.118812 -0.616005 -0.242943 + orientation -0.690604 0.0513171 -0.721411 -3.2487 + wirecolor 0.722656 0.722656 0.722656 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 1 + alphaEnd 0 + sizeStart 0.3 + sizeEnd 0.3 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 5 + spawnType 0 + lifeExp 0.8 + mass -0.02 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 16 + random 1 + inherit 0 + inherit_local 0 + inherit_part 1 + inheritvel 0 + xsize 0 + ysize 0 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Normal + update_sel 1 + render_sel 1 + blend_sel 2 + deadspace 0 + opacity 0.5 + blurlength 0 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_FireBb + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +node emitter Fire05 + parent Head_g + position -0.115846 -0.616005 -0.242942 + orientation 0.674738 -0.0501465 -0.736351 -3.25093 + wirecolor 0.722656 0.722656 0.722656 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 1 + alphaEnd 0 + sizeStart 0.3 + sizeEnd 0.3 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 5 + spawnType 0 + lifeExp 0.8 + mass -0.02 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 16 + random 1 + inherit 0 + inherit_local 0 + inherit_part 1 + inheritvel 0 + xsize 0 + ysize 0 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Normal + update_sel 1 + render_sel 1 + blend_sel 2 + deadspace 0 + opacity 0.5 + blurlength 0 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_FireBb + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +node emitter R_eye01 + parent Head_g + position -0.15561 -0.325572 0.0548473 + orientation 0.523145 0.588882 -0.616066 -2.11555 + wirecolor 0.0273438 0.0273438 0.0273438 + colorStart 0.960784 0.203922 0 + colorEnd 0.87451 0.0627451 0 + alphaStart 1 + alphaEnd 1 + sizeStart 0.24 + sizeEnd 0.24 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 0 + birthrate 1 + spawnType 0 + lifeExp -1 + mass 0 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 0 + random 0 + inherit 1 + inherit_local 0 + inherit_part 0 + inheritvel 0 + xsize 0 + ysize 0 + bounce 0 + bounce_co 0 + loop 0 + update Single + render Aligned_to_World_Z + Blend Lighten + update_sel 3 + render_sel 5 + blend_sel 3 + deadspace 0 + opacity 0.5 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_Dot01 + xgrid 1 + ygrid 1 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +node emitter L_eye01 + parent R_eye01 + position -0.0212033 -0.0223436 -0.299542 + orientation -0.00598161 0.995247 -0.0971939 -2.89866 + wirecolor 0.0273438 0.0273438 0.0273438 + colorStart 0.960784 0.203922 0 + colorEnd 0.894118 0.0431373 0 + alphaStart 1 + alphaEnd 1 + sizeStart 0.24 + sizeEnd 0.24 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 0 + birthrate 1 + spawnType 0 + lifeExp -1 + mass 0 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 0 + random 0 + inherit 1 + inherit_local 0 + inherit_part 0 + inheritvel 0 + xsize 0 + ysize 0 + bounce 0 + bounce_co 0 + loop 0 + update Single + render Aligned_to_World_Z + Blend Lighten + update_sel 3 + render_sel 5 + blend_sel 3 + deadspace 0 + opacity 0.5 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_Dot01 + xgrid 1 + ygrid 1 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +node emitter Mane05 + parent Head_g + position -0.00600102 -0.0125752 0.413293 + orientation 0.107607 -0.0970119 -0.989449 -1.58496 + wirecolor 0.691406 0.691406 0.691406 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 1 + alphaEnd 0 + sizeStart 0.6 + sizeEnd 0.8 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 10 + spawnType 0 + lifeExp 1 + mass -0.06 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 16 + random 0 + inherit 0 + inherit_local 0 + inherit_part 1 + inheritvel 0 + xsize 26 + ysize 2 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Normal + Blend Lighten + update_sel 1 + render_sel 1 + blend_sel 3 + deadspace 0 + opacity 0.5 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_FireBb + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +node emitter Mane02 + parent Neck_g + position -0.00600144 -0.401973 0.96895 + orientation 0.242001 -0.232261 -0.942067 -1.63563 + wirecolor 0.691406 0.691406 0.691406 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 1 + alphaEnd 0 + sizeStart 1 + sizeEnd 0.8 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 10 + spawnType 0 + lifeExp 1 + mass -0.09 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 16 + random 0 + inherit 0 + inherit_local 0 + inherit_part 1 + inheritvel 0 + xsize 26 + ysize 2 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Normal + Blend Lighten + update_sel 1 + render_sel 1 + blend_sel 3 + deadspace 0 + opacity 0.5 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_FireBb + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +node emitter Mane01 + parent Neck_g + position -0.00600223 0.0134094 0.703863 + orientation 0.283359 -0.273975 -0.919046 -1.66086 + wirecolor 0.691406 0.691406 0.691406 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 1 + alphaEnd 0 + sizeStart 0.8 + sizeEnd 1 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 10 + spawnType 0 + lifeExp 1 + mass -0.1 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 16 + random 0 + inherit 0 + inherit_local 0 + inherit_part 1 + inheritvel 0 + xsize 26 + ysize 2 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Normal + Blend Lighten + update_sel 1 + render_sel 1 + blend_sel 3 + deadspace 0 + opacity 0.5 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_FireBb + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +node emitter Mane04 + parent Neck_g + position -0.00600177 -0.209229 0.851819 + orientation 0.283359 -0.273975 -0.919046 -1.66086 + wirecolor 0.691406 0.691406 0.691406 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 1 + alphaEnd 0 + sizeStart 0.8 + sizeEnd 1 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 10 + spawnType 0 + lifeExp 1 + mass -0.1 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 16 + random 0 + inherit 0 + inherit_local 0 + inherit_part 1 + inheritvel 0 + xsize 26 + ysize 2 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Normal + Blend Lighten + update_sel 1 + render_sel 1 + blend_sel 3 + deadspace 0 + opacity 0.5 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_FireBb + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +node trimesh abdomen_g + parent rootdummy + position -0.00592504 0.0172689 -0.0119817 + orientation -0.541875 0.642453 -0.541873 -1.99949 + wirecolor 0.652344 0.652344 0.652344 + ambient 0.588235 0.588235 0.588235 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 41 + 0.0119829 -0.0537315 0.370886 + 0.266132 -0.0222715 0.209956 + 0.392525 0.0247672 -0.11655 + 0.307278 0.0644431 -0.294104 + 0.0119829 0.0499533 -0.368049 + 0.0119829 0.2074 0.448406 + 0.299712 0.367691 0.217533 + 0.447537 0.320553 -0.142644 + 0.340897 0.293605 -0.336051 + 0.0119829 0.215282 -0.39442 + 0.0119829 0.664232 0.314952 + 0.0119829 0.731221 0.159926 + 0.191951 0.700338 0.168286 + 0.342782 0.582091 -0.212413 + 0.207168 0.510396 -0.378997 + 0.0119829 0.486253 -0.411651 + 0.0119829 0.755434 0 + 0.0119829 0.70946 -0.188756 + 0.0119829 0.677436 -0.316348 + 0.0119829 0.628004 -0.382669 + 0.178329 0.209168 -0.384658 + 0.144332 0.409474 0.391308 + 0.0119829 0.433157 0.426165 + 0.283173 0.653661 -0.00750477 + 0.163083 0.752919 -0.12967 + 0.143208 0.688218 -0.335886 + -0.242599 -0.0222062 0.209956 + -0.368559 0.0247674 -0.116551 + -0.283311 0.064442 -0.294105 + -0.275745 0.367691 0.217533 + -0.42357 0.320553 -0.142644 + -0.31693 0.293604 -0.336051 + -0.167984 0.700337 0.168286 + -0.318815 0.582091 -0.212413 + -0.183201 0.510396 -0.378997 + -0.154362 0.209168 -0.384658 + -0.120367 0.409474 0.391308 + -0.259206 0.653661 -0.00750489 + -0.139117 0.752919 -0.12967 + -0.119242 0.688216 -0.335886 + 0.0119838 -0.239616 -0.0290329 + faces 78 + 20 3 4 1 20 3 4 0 + 1 5 0 1 1 5 0 0 + 5 1 21 1 5 1 21 0 + 6 21 1 1 6 21 1 0 + 1 2 6 1 1 2 6 0 + 7 6 2 1 7 6 2 0 + 2 3 7 1 2 3 7 0 + 8 7 3 1 8 7 3 0 + 3 20 8 1 3 20 8 0 + 9 20 4 1 9 20 4 0 + 22 21 10 1 22 21 10 0 + 5 21 22 1 5 21 22 0 + 10 12 11 1 10 12 11 0 + 12 21 6 1 12 21 6 0 + 10 21 12 1 10 21 12 0 + 6 7 23 1 6 7 23 0 + 13 23 7 1 13 23 7 0 + 23 12 6 1 23 12 6 0 + 7 8 13 1 7 8 13 0 + 14 13 8 1 14 13 8 0 + 20 9 14 1 20 9 14 0 + 15 14 9 1 15 14 9 0 + 8 20 14 1 8 20 14 0 + 11 12 16 1 11 12 16 0 + 17 16 24 1 17 16 24 0 + 24 16 12 1 24 16 12 0 + 23 13 24 1 23 13 24 0 + 12 23 24 1 12 23 24 0 + 18 17 25 1 18 17 25 0 + 24 25 17 1 24 25 17 0 + 13 14 25 1 13 14 25 0 + 25 24 13 1 25 24 13 0 + 25 19 18 1 25 19 18 0 + 14 15 25 1 14 15 25 0 + 19 25 15 1 29 25 15 0 + 4 28 35 1 4 3 20 0 + 26 5 36 1 1 5 21 0 + 5 26 0 1 5 1 0 0 + 26 36 29 1 1 21 27 0 + 29 27 26 1 27 26 1 0 + 27 29 30 1 26 27 7 0 + 30 28 27 1 7 3 26 0 + 28 30 31 1 3 7 8 0 + 31 35 28 1 8 20 3 0 + 4 35 9 1 4 20 9 0 + 10 36 22 1 10 21 22 0 + 22 36 5 1 22 21 5 0 + 11 32 10 1 11 28 10 0 + 32 29 36 1 28 27 21 0 + 36 10 32 1 21 10 28 0 + 37 30 29 1 23 7 27 0 + 30 37 33 1 7 23 13 0 + 29 32 37 1 27 28 23 0 + 33 31 30 1 13 8 7 0 + 31 33 34 1 8 13 14 0 + 34 9 35 1 14 9 20 0 + 9 34 15 1 9 14 15 0 + 34 35 31 1 14 20 8 0 + 16 38 32 1 16 24 28 0 + 38 16 17 1 24 16 17 0 + 32 11 16 1 28 11 16 0 + 38 33 37 1 24 13 23 0 + 38 37 32 1 24 23 28 0 + 39 17 18 1 25 17 18 0 + 17 39 38 1 17 25 24 0 + 39 34 33 1 25 14 13 0 + 33 38 39 1 13 24 25 0 + 18 19 39 1 18 19 25 0 + 39 15 34 1 25 15 14 0 + 15 39 19 1 15 25 29 0 + 27 28 40 1 1 0 0 0 + 40 26 27 1 0 1 1 0 + 40 2 1 1 0 1 1 0 + 1 0 40 1 1 0 0 0 + 2 40 3 1 1 0 0 0 + 0 26 40 1 0 1 0 0 + 40 28 4 1 0 0 0 0 + 40 4 3 1 0 0 0 0 + tverts 41 + 0.663309 0.970709 0 + 0.652536 0.877775 0 + 0.662838 0.76622 0 + 0.673342 0.706409 0 + 0.665866 0.611893 0 + 0.777235 0.981194 0 + 0.79318 0.873423 0 + 0.763709 0.750793 0 + 0.754416 0.695233 0 + 0.731663 0.608014 0 + 0.961288 0.928949 0 + 0.981486 0.870231 0 + 0.918763 0.853856 0 + 0.852117 0.722176 0 + 0.835839 0.66371 0 + 0.833927 0.611136 0 + 0.991693 0.79082 0 + 0.986153 0.720847 0 + 0.981284 0.661527 0 + 0.972553 0.618242 0 + 0.724898 0.654779 0 + 0.832397 0.93535 0 + 0.883799 0.973423 0 + 0.880373 0.791136 0 + 0.934983 0.744089 0 + 0.928461 0.665498 0 + 0.662837 0.76622 0 + 0.793179 0.873423 0 + 0.918762 0.853856 0 + 0.899034 0.614822 0 + 0.844214 0.425301 0 + 0.921142 0.400996 0 + 0.815744 0.303206 0 + 0.838479 0.299757 0 + 0.894272 0.281389 0 + 0.847418 0.247352 0 + 0.945835 0.524372 0 + 0.9726 0.458288 0 + 0.923476 0.477826 0 + 0.895904 0.411171 0 + 0.888185 0.325013 0 +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + position 0.210923 0.415883 -0.225509 + orientation 0 0 0 0 + wirecolor 0.242188 0.242188 0.242188 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 45 + -0.0834536 -0.0387488 -0.034346 + 0.0487612 -0.26514 0.0103368 + 0.108239 -0.0248257 0.0415133 + -0.0485355 0.25407 -0.00778285 + -0.0685936 -0.0318223 -0.133445 + 0.0728969 -0.272369 -0.119506 + 0.135196 -0.136667 -0.106729 + -0.00667357 0.209196 -0.180424 + -0.0236859 0.119022 -0.368281 + 0.0663711 -0.0874814 -0.360019 + 0.118727 -0.0120786 -0.347954 + 0.0246613 0.187378 -0.329273 + -0.0252061 0.162237 -0.698876 + 0.0638205 0.0745107 -0.705728 + 0.133037 0.12518 -0.70047 + 0.0235787 0.274234 -0.688961 + 0.0175564 0.211501 -0.796417 + 0.0847254 0.13358 -0.783599 + 0.0863376 0.172197 -0.799339 + 0.0601459 0.230367 -0.792531 + -0.0174827 -0.180844 -0.0134518 + 0.102955 -0.173401 0.0342575 + 0.0812461 0.173311 0.038386 + -0.141707 0.136671 -0.0495654 + 0.00149058 -0.171303 -0.127765 + -0.0273272 0.256282 -0.108646 + -0.121793 0.128262 -0.150214 + 0.115547 0.164044 -0.11485 + -0.0283234 0.00760781 -0.281902 + 0.105384 0.161645 -0.329332 + 0.0621196 0.0141036 -0.577364 + -0.0127409 0.111047 -0.562483 + 0.0296313 0.202492 -0.575471 + -0.0446627 0.235968 -0.692368 + 0.122769 0.0742665 -0.567548 + 0.114569 0.252094 -0.690937 + 0.0203881 0.114591 -0.776478 + -0.0106035 0.168324 -0.769823 + 0.0291314 0.274323 -0.763042 + 0.122082 0.196573 -0.764729 + -0.0351239 -0.0110662 0.0574251 + -0.0291005 0.166674 -0.581826 + 0.107479 0.182233 -0.579849 + -0.0216383 0.241054 -0.765109 + 0.0995185 0.25379 -0.763951 + faces 86 + 0 20 40 1 31 32 58 0 + 40 23 0 1 57 33 31 0 + 1 40 20 1 34 58 32 0 + 40 1 21 1 28 2 17 0 + 2 22 40 1 3 18 7 0 + 40 21 2 1 28 17 3 0 + 3 40 22 1 4 7 18 0 + 40 3 23 1 57 35 33 0 + 1 20 24 1 34 32 36 0 + 24 5 1 1 36 37 34 0 + 4 24 20 1 38 36 32 0 + 20 0 4 1 32 31 38 0 + 3 25 26 1 35 39 40 0 + 26 23 3 1 40 33 35 0 + 25 7 26 1 39 41 40 0 + 23 26 4 1 33 40 38 0 + 4 0 23 1 38 31 33 0 + 2 21 6 1 3 17 5 0 + 1 6 21 1 2 5 17 0 + 6 1 5 1 5 2 37 0 + 27 7 25 1 20 6 19 0 + 3 22 27 1 4 18 20 0 + 27 25 3 1 20 19 4 0 + 6 27 22 1 5 20 18 0 + 22 2 6 1 18 3 5 0 + 31 28 8 1 42 43 44 0 + 5 24 9 1 37 36 45 0 + 28 9 24 1 43 45 36 0 + 24 4 28 1 36 38 43 0 + 7 11 8 1 41 46 44 0 + 8 26 7 1 44 40 41 0 + 26 8 28 1 40 44 43 0 + 28 4 26 1 43 38 40 0 + 5 9 6 1 37 45 5 0 + 10 6 9 1 8 5 45 0 + 7 27 29 1 6 20 21 0 + 29 11 7 1 21 9 6 0 + 10 29 27 1 8 21 20 0 + 27 6 10 1 20 5 8 0 + 12 13 30 1 47 10 48 0 + 30 31 12 1 48 42 47 0 + 31 30 9 1 42 48 45 0 + 9 28 31 1 45 43 42 0 + 11 32 41 1 46 49 50 0 + 41 8 11 1 50 44 46 0 + 33 41 32 1 51 50 49 0 + 32 15 33 1 49 52 51 0 + 12 31 41 1 47 42 50 0 + 41 33 12 1 50 51 47 0 + 8 41 31 1 44 50 42 0 + 30 14 34 1 48 11 23 0 + 14 30 13 1 11 48 10 0 + 9 34 10 1 45 23 8 0 + 34 9 30 1 23 45 48 0 + 14 35 42 1 11 24 29 0 + 42 34 14 1 29 23 11 0 + 32 42 35 1 22 29 24 0 + 35 15 32 1 24 12 22 0 + 11 29 42 1 9 21 29 0 + 42 32 11 1 29 22 9 0 + 34 42 29 1 23 29 21 0 + 29 10 34 1 21 8 23 0 + 36 37 16 1 25 53 54 0 + 17 13 36 1 14 10 25 0 + 12 36 13 1 47 25 10 0 + 36 12 37 1 25 47 53 0 + 15 38 43 1 52 55 56 0 + 43 33 15 1 56 51 52 0 + 16 43 38 1 54 56 55 0 + 38 19 16 1 26 16 13 0 + 16 37 43 1 54 53 56 0 + 33 43 37 1 51 56 53 0 + 37 12 33 1 53 47 51 0 + 39 17 18 1 27 14 15 0 + 39 14 17 1 27 11 14 0 + 14 13 17 1 11 10 14 0 + 18 19 44 1 15 16 30 0 + 44 39 18 1 30 27 15 0 + 38 44 19 1 26 30 16 0 + 15 35 44 1 12 24 30 0 + 44 38 15 1 30 26 12 0 + 39 44 35 1 27 30 24 0 + 35 14 39 1 24 11 27 0 + 18 36 16 1 15 25 13 0 + 36 18 17 1 25 15 14 0 + 16 19 18 1 13 16 15 0 + tverts 59 + 0.899034 0.614822 0 + 0.126443 0.698068 0 + 0.818112 0.560547 0 + 0.889802 0.548145 0 + 0.988352 0.493879 0 + 0.843582 0.51305 0 + 0.948405 0.442036 0 + 0.941258 0.5651 0 + 0.844214 0.425301 0 + 0.921142 0.400996 0 + 0.815744 0.303206 0 + 0.838479 0.299757 0 + 0.894272 0.281389 0 + 0.847418 0.247352 0 + 0.830991 0.27263 0 + 0.841366 0.263429 0 + 0.863587 0.256221 0 + 0.846896 0.562848 0 + 0.945835 0.524372 0 + 0.9726 0.458288 0 + 0.923476 0.477826 0 + 0.895904 0.411171 0 + 0.888185 0.325013 0 + 0.840941 0.346974 0 + 0.875838 0.288121 0 + 0.811953 0.267183 0 + 0.885485 0.250908 0 + 0.850731 0.2715 0 + 0.854347 0.598614 0 + 0.870146 0.330713 0 + 0.867309 0.265084 0 + 0.733748 0.510234 0 + 0.770445 0.536818 0 + 0.687296 0.480821 0 + 0.78931 0.55553 0 + 0.647258 0.476035 0 + 0.785691 0.50144 0 + 0.808737 0.518178 0 + 0.747297 0.479734 0 + 0.662484 0.445723 0 + 0.705345 0.452029 0 + 0.684566 0.424517 0 + 0.775155 0.331994 0 + 0.760073 0.430211 0 + 0.738157 0.384651 0 + 0.806062 0.425466 0 + 0.704672 0.382312 0 + 0.781837 0.283919 0 + 0.806662 0.342431 0 + 0.738956 0.308648 0 + 0.761986 0.316192 0 + 0.760444 0.275475 0 + 0.739537 0.266108 0 + 0.791311 0.261968 0 + 0.789292 0.238365 0 + 0.752357 0.24468 0 + 0.770633 0.253211 0 + 0.695437 0.52356 0 + 0.745873 0.554632 0 +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + position 0.0512422 0.193629 -0.738222 + orientation -1.00005 -0.000331657 -0.000132111 0 + wirecolor 0.0273438 0.0273438 0.0273438 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 32 + -0.00182176 -0.00761264 -0.57456 + -0.00182176 -0.0973891 -0.589196 + 0.049133 -0.074945 -0.585537 + 0.049133 -0.0300569 -0.578219 + -0.0527766 -0.0300569 -0.578219 + -0.0527766 -0.074945 -0.585537 + -0.00182179 -0.0801702 -0.515557 + 0.0536026 -0.0562495 -0.522476 + -0.0572463 -0.0562495 -0.522476 + -0.00182176 -0.0363926 -0.440334 + 0.0574709 -0.0109794 -0.441934 + 0.0574709 0.0398469 -0.445137 + -0.00182179 0.0652601 -0.446738 + -0.0611147 0.0398469 -0.445137 + -0.0611147 -0.0109794 -0.441934 + -0.00182179 -0.050295 -0.170137 + 0.0632731 -0.0256547 -0.165463 + 0.0612011 0.0142792 -0.126848 + -0.00182179 0.0482665 -0.15144 + -0.0648447 0.0142792 -0.126848 + -0.0669168 -0.0256547 -0.165463 + -0.00182179 -0.0780125 -0.110601 + 0.0591289 -0.0450167 -0.106261 + -0.00182182 0.0398662 -0.0932438 + -0.0627725 -0.0450167 -0.106261 + -0.00182182 -0.0736338 -0.000999531 + 0.055517 -0.0410675 -0.00382476 + 0.0493475 0.026431 0.000496632 + -0.00339324 0.0510196 -0.00257543 + -0.0558305 0.0223822 -0.00735892 + -0.0485722 -0.0414118 0.00134279 + -0.00182182 -0.00850124 0.0141352 + faces 60 + 0 2 1 1 72 73 74 0 + 0 3 2 1 72 75 73 0 + 0 5 4 1 72 76 77 0 + 0 1 5 1 72 74 76 0 + 1 2 6 1 32 33 34 0 + 6 2 7 1 34 33 35 0 + 2 3 7 1 36 49 37 0 + 4 5 8 1 56 57 58 0 + 5 6 8 1 36 34 37 0 + 5 1 6 1 36 32 34 0 + 9 7 10 1 38 35 39 0 + 9 6 7 1 38 34 35 0 + 7 3 11 1 37 49 50 0 + 10 7 11 1 51 37 50 0 + 3 12 11 1 49 60 50 0 + 3 0 12 1 49 59 60 0 + 0 4 12 1 59 56 60 0 + 12 4 13 1 60 56 61 0 + 4 8 13 1 56 58 61 0 + 13 8 14 1 61 58 62 0 + 8 9 14 1 37 38 51 0 + 8 6 9 1 37 34 38 0 + 9 10 15 1 38 39 40 0 + 15 10 16 1 40 39 41 0 + 10 11 16 1 51 50 52 0 + 16 11 17 1 52 50 53 0 + 11 18 17 1 50 63 53 0 + 11 12 18 1 50 60 63 0 + 12 13 18 1 60 61 63 0 + 18 13 19 1 63 61 64 0 + 13 20 19 1 61 65 64 0 + 13 14 20 1 61 62 65 0 + 14 15 20 1 51 40 52 0 + 14 9 15 1 51 38 40 0 + 15 16 21 1 40 41 42 0 + 21 16 22 1 42 41 43 0 + 16 17 22 1 52 53 44 0 + 17 18 23 1 53 63 66 0 + 18 19 23 1 63 64 66 0 + 19 20 24 1 64 65 67 0 + 20 21 24 1 52 42 44 0 + 20 15 21 1 52 40 42 0 + 25 22 26 1 46 43 45 0 + 25 21 22 1 46 42 43 0 + 22 17 27 1 44 53 54 0 + 26 22 27 1 47 44 54 0 + 17 23 27 1 53 66 54 0 + 27 23 28 1 54 66 69 0 + 23 19 29 1 66 64 68 0 + 28 23 29 1 69 66 68 0 + 19 24 29 1 64 67 68 0 + 29 24 30 1 68 67 70 0 + 24 21 25 1 44 42 46 0 + 30 24 25 1 47 44 46 0 + 31 25 26 1 48 46 45 0 + 31 26 27 1 55 47 54 0 + 31 27 28 1 55 54 69 0 + 31 28 29 1 71 69 68 0 + 31 29 30 1 71 68 70 0 + 31 30 25 1 48 47 46 0 + tverts 78 + 0.523727 0.297727 0 + 0.503676 0.297166 0 + 0.536911 0.317971 0 + 0.55669 0.319594 0 + 0.56196 0.334205 0 + 0.52268 0.324933 0 + 0.517083 0.0881269 0 + 0.444243 0.111348 0 + 0.502116 0.160306 0 + 0.452955 0.176666 0 + 0.550604 0.258568 0 + 0.52453 0.2596 0 + 0.504922 0.267873 0 + 0.57072 0.30779 0 + 0.536106 0.309372 0 + 0.505088 0.316665 0 + 0.518016 0.336891 0 + 0.508028 0.0400067 0 + 0.52797 0.151871 0 + 0.477736 0.168632 0 + 0.551039 0.308747 0 + 0.51897 0.314125 0 + 0.679909 0.0720007 0 + 0.561103 0.0796891 0 + 0.628824 0.0941939 0 + 0.686947 0.13574 0 + 0.56023 0.221107 0 + 0.602589 0.219563 0 + 0.645046 0.226185 0 + 0.556972 0.288408 0 + 0.597916 0.289908 0 + 0.635182 0.297893 0 + 0.779212 0.0514456 0 + 0.760227 0.0512758 0 + 0.776934 0.0761387 0 + 0.758241 0.0725201 0 + 0.799297 0.05562 0 + 0.79764 0.0769155 0 + 0.774526 0.097017 0 + 0.751715 0.0958516 0 + 0.767784 0.174558 0 + 0.741761 0.172101 0 + 0.76641 0.190478 0 + 0.74814 0.190104 0 + 0.784458 0.191683 0 + 0.743811 0.212941 0 + 0.764607 0.211117 0 + 0.784775 0.214876 0 + 0.763601 0.231272 0 + 0.822266 0.0659046 0 + 0.820541 0.102094 0 + 0.799074 0.0994774 0 + 0.792476 0.175686 0 + 0.809846 0.18415 0 + 0.811747 0.209539 0 + 0.813066 0.23187 0 + 0.854762 0.0661158 0 + 0.877787 0.0550545 0 + 0.879025 0.0765923 0 + 0.838493 0.0667951 0 + 0.838465 0.10164 0 + 0.85645 0.101914 0 + 0.875485 0.0982057 0 + 0.838594 0.177602 0 + 0.866924 0.184158 0 + 0.883916 0.17343 0 + 0.838425 0.192889 0 + 0.891914 0.189703 0 + 0.865042 0.209365 0 + 0.838493 0.210855 0 + 0.889721 0.21322 0 + 0.863481 0.232329 0 + 0.8385 0.0667906 0 + 0.822616 0.0419242 0 + 0.838566 0.0336405 0 + 0.822614 0.0585013 0 + 0.854514 0.0419295 0 + 0.854512 0.058503 0 +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + position 0 -0.0403625 -0.563138 + orientation 0 0 0 0 + wirecolor 0.0273438 0.0273438 0.0273438 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 20 + -0.00126244 -0.0173933 -0.097069 + -0.00126244 -0.137395 -0.097069 + 0.108375 -0.0710365 -0.097069 + 0.0736673 0.083466 -0.097069 + -0.00126247 0.0493776 -0.0736857 + -0.0761923 0.083466 -0.097069 + -0.1109 -0.0710365 -0.097069 + -0.00126244 -0.112398 -0.0485346 + 0.0828508 -0.0585277 -0.0485346 + 0.07002 0.0506989 -0.0485346 + -0.00126245 0.0371541 -0.0485346 + -0.0725449 0.0506986 -0.0485346 + -0.0853757 -0.0585277 -0.0485346 + -0.00126244 -0.0523884 0.00105702 + 0.0523761 -0.026288 0.00380027 + 0.0503131 0.0259131 0.00928677 + -0.00126245 0.04339 0.00722934 + -0.052838 0.0259131 0.00928697 + -0.054901 -0.026288 0.00380027 + -0.00126244 -0.00102869 0.0200545 + faces 36 + 0 2 1 1 16 17 18 0 + 0 3 2 1 16 19 17 0 + 0 4 3 1 16 20 19 0 + 0 5 4 1 16 21 20 0 + 0 6 5 1 16 22 21 0 + 0 1 6 1 16 18 22 0 + 1 8 7 1 42 43 44 0 + 1 2 8 1 42 45 43 0 + 2 9 8 1 35 36 37 0 + 2 3 9 1 35 38 36 0 + 3 4 9 1 38 30 36 0 + 9 4 10 1 36 30 31 0 + 4 5 11 1 30 39 32 0 + 10 4 11 1 31 30 32 0 + 5 6 11 1 39 46 32 0 + 11 6 12 1 32 46 47 0 + 6 1 12 1 46 42 47 0 + 12 1 7 1 47 42 44 0 + 7 8 13 1 44 43 48 0 + 13 8 14 1 48 43 49 0 + 8 15 14 1 37 40 41 0 + 8 9 15 1 37 36 40 0 + 9 10 15 1 36 31 40 0 + 15 10 16 1 40 31 33 0 + 10 11 17 1 31 32 34 0 + 16 10 17 1 33 31 34 0 + 11 12 17 1 32 47 34 0 + 17 12 18 1 34 47 50 0 + 12 7 13 1 47 44 48 0 + 18 12 13 1 50 47 48 0 + 19 13 14 1 23 24 25 0 + 19 14 15 1 23 25 26 0 + 19 15 16 1 23 26 27 0 + 19 16 17 1 23 27 28 0 + 19 17 18 1 23 28 29 0 + 19 18 13 1 23 29 24 0 + tverts 51 + 0.630309 0.366042 0 + 0.513203 0.349203 0 + 0.509814 0.516583 0 + 0.508318 0.496845 0 + 0.502071 0.475105 0 + 0.493034 0.404016 0 + 0.498929 0.387785 0 + 0.494912 0.366226 0 + 0.559392 0.348464 0 + 0.605888 0.348464 0 + 0.582743 0.501774 0 + 0.568079 0.524722 0 + 0.582808 0.532378 0 + 0.568079 0.509411 0 + 0.597537 0.524722 0 + 0.597537 0.509411 0 + 0.276583 0.421201 0 + 0.241102 0.448264 0 + 0.283389 0.46963 0 + 0.244534 0.384198 0 + 0.272553 0.392523 0 + 0.297191 0.376797 0 + 0.318149 0.437436 0 + 0.376545 0.511694 0 + 0.380315 0.538521 0 + 0.354883 0.528193 0 + 0.351955 0.500799 0 + 0.373284 0.488492 0 + 0.39718 0.494443 0 + 0.401916 0.521583 0 + 0.316574 0.464132 0 + 0.324971 0.471963 0 + 0.343778 0.451794 0 + 0.343589 0.489324 0 + 0.357883 0.475372 0 + 0.279184 0.546058 0 + 0.3061 0.492628 0 + 0.301754 0.5423 0 + 0.285331 0.475795 0 + 0.326117 0.431779 0 + 0.331409 0.5062 0 + 0.326837 0.529721 0 + 0.442342 0.434818 0 + 0.445949 0.484103 0 + 0.42736 0.454699 0 + 0.467101 0.472441 0 + 0.39801 0.421616 0 + 0.393972 0.444935 0 + 0.407318 0.481296 0 + 0.419652 0.499409 0 + 0.384373 0.472464 0 +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g + position 0.0149439 0.0090332 -0.398387 + orientation 0 -0.00254866 -0.999997 -3.1416 + wirecolor 0.722656 0.722656 0.722656 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 0.8 + alphaEnd 0 + sizeStart 0.65 + sizeEnd 0.65 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 20 + spawnType 0 + lifeExp 0.8 + mass -0.02 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 16 + random 0 + inherit 0 + inherit_local 0 + inherit_part 1 + inheritvel 0 + xsize 10 + ysize 10 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Normal + Blend Lighten + update_sel 1 + render_sel 1 + blend_sel 3 + deadspace 0 + opacity 0.5 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_FireBb + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + position -0.186956 0.415883 -0.225509 + orientation 0 0 0 0 + wirecolor 0.722656 0.722656 0.722656 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 45 + 0.0834536 -0.0387488 -0.034346 + -0.0487612 -0.26514 0.0103368 + -0.108239 -0.0248257 0.0415132 + 0.0485353 0.25407 -0.00778287 + 0.0685936 -0.0318223 -0.133445 + -0.0728969 -0.272369 -0.119506 + -0.135196 -0.136667 -0.106729 + 0.00667359 0.209196 -0.180424 + 0.0236859 0.119022 -0.368281 + -0.0663711 -0.0874814 -0.360019 + -0.118727 -0.0120786 -0.347954 + -0.0246612 0.187378 -0.329273 + 0.0252061 0.162237 -0.698876 + -0.0638205 0.0745107 -0.705728 + -0.133037 0.12518 -0.70047 + -0.0235787 0.274234 -0.688961 + -0.0175564 0.211501 -0.796417 + -0.0847254 0.13358 -0.783599 + -0.0863376 0.172197 -0.799339 + -0.0601461 0.230367 -0.792531 + 0.0174827 -0.180844 -0.0134519 + -0.102955 -0.173401 0.0342575 + -0.0812461 0.173311 0.038386 + 0.141707 0.136671 -0.0495654 + -0.00149057 -0.171303 -0.127765 + 0.0273272 0.256282 -0.108646 + 0.121793 0.128262 -0.150213 + -0.115547 0.164044 -0.11485 + 0.0283234 0.00760783 -0.281902 + -0.105384 0.161645 -0.329332 + -0.0621196 0.0141036 -0.577363 + 0.0127409 0.111047 -0.562483 + -0.0296314 0.202492 -0.575471 + 0.0446627 0.235968 -0.692368 + -0.122769 0.0742665 -0.567548 + -0.114569 0.252094 -0.690937 + -0.0203881 0.114591 -0.776478 + 0.0106035 0.168324 -0.769823 + -0.0291314 0.274323 -0.763042 + -0.122082 0.196573 -0.764729 + 0.0351239 -0.0110662 0.0574251 + 0.0291006 0.166674 -0.581826 + -0.10748 0.182233 -0.579849 + 0.0216383 0.241054 -0.765109 + -0.0995185 0.25379 -0.763951 + faces 86 + 20 0 40 1 46 45 15 0 + 23 40 0 1 47 14 45 0 + 40 1 20 1 15 48 46 0 + 1 40 21 1 16 42 31 0 + 22 2 40 1 32 17 21 0 + 21 40 2 1 31 42 17 0 + 40 3 22 1 21 18 32 0 + 3 40 23 1 49 14 47 0 + 20 1 24 1 46 48 50 0 + 5 24 1 1 51 50 48 0 + 24 4 20 1 50 52 46 0 + 0 20 4 1 45 46 52 0 + 25 3 26 1 53 49 54 0 + 23 26 3 1 47 54 49 0 + 7 25 26 1 55 53 54 0 + 26 23 4 1 54 47 52 0 + 0 4 23 1 45 52 47 0 + 21 2 6 1 31 17 19 0 + 6 1 21 1 19 16 31 0 + 1 6 5 1 16 19 51 0 + 7 27 25 1 20 34 33 0 + 22 3 27 1 32 18 34 0 + 25 27 3 1 33 34 18 0 + 27 6 22 1 34 19 32 0 + 2 22 6 1 17 32 19 0 + 28 31 8 1 0 56 1 0 + 24 5 9 1 50 51 2 0 + 9 28 24 1 2 0 50 0 + 4 24 28 1 52 50 0 0 + 11 7 8 1 3 55 1 0 + 26 8 7 1 54 1 55 0 + 8 26 28 1 1 54 0 0 + 4 28 26 1 52 0 54 0 + 9 5 6 1 2 51 19 0 + 6 10 9 1 19 22 2 0 + 27 7 29 1 34 20 35 0 + 11 29 7 1 23 35 20 0 + 29 10 27 1 35 22 34 0 + 6 27 10 1 19 34 22 0 + 13 12 30 1 24 4 5 0 + 31 30 12 1 56 5 4 0 + 30 31 9 1 5 56 2 0 + 28 9 31 1 0 2 56 0 + 32 11 41 1 6 3 7 0 + 8 41 11 1 1 7 3 0 + 41 33 32 1 7 8 6 0 + 15 32 33 1 9 6 8 0 + 31 12 41 1 56 4 7 0 + 33 41 12 1 8 7 4 0 + 41 8 31 1 7 1 56 0 + 14 30 34 1 25 5 37 0 + 30 14 13 1 5 25 24 0 + 34 9 10 1 37 2 22 0 + 9 34 30 1 2 37 5 0 + 35 14 42 1 38 25 43 0 + 34 42 14 1 37 43 25 0 + 42 32 35 1 43 36 38 0 + 15 35 32 1 26 38 36 0 + 29 11 42 1 35 23 43 0 + 32 42 11 1 36 43 23 0 + 42 34 29 1 43 37 35 0 + 10 29 34 1 22 35 37 0 + 37 36 16 1 10 39 11 0 + 13 17 36 1 24 28 39 0 + 36 12 13 1 39 4 24 0 + 12 36 37 1 4 39 10 0 + 38 15 43 1 12 9 13 0 + 33 43 15 1 8 13 9 0 + 43 16 38 1 13 11 12 0 + 19 38 16 1 30 40 27 0 + 37 16 43 1 10 11 13 0 + 43 33 37 1 13 8 10 0 + 12 37 33 1 4 10 8 0 + 17 39 18 1 28 41 29 0 + 14 39 17 1 25 41 28 0 + 13 14 17 1 24 25 28 0 + 19 18 44 1 30 29 44 0 + 39 44 18 1 41 44 29 0 + 44 38 19 1 44 40 30 0 + 35 15 44 1 38 26 44 0 + 38 44 15 1 40 44 26 0 + 44 39 35 1 44 41 38 0 + 14 35 39 1 25 38 41 0 + 36 18 16 1 39 29 27 0 + 18 36 17 1 29 39 28 0 + 19 16 18 1 30 27 29 0 + tverts 57 + 0.760073 0.430211 0 + 0.738157 0.384651 0 + 0.806062 0.425466 0 + 0.704672 0.382312 0 + 0.781837 0.283919 0 + 0.806662 0.342431 0 + 0.738956 0.308648 0 + 0.761986 0.316192 0 + 0.760444 0.275475 0 + 0.739537 0.266108 0 + 0.791311 0.261968 0 + 0.789292 0.238365 0 + 0.752357 0.24468 0 + 0.770633 0.253211 0 + 0.695437 0.52356 0 + 0.745873 0.554632 0 + 0.818112 0.560547 0 + 0.889802 0.548145 0 + 0.988352 0.493879 0 + 0.843582 0.51305 0 + 0.948405 0.442036 0 + 0.941258 0.5651 0 + 0.844214 0.425301 0 + 0.921142 0.400996 0 + 0.815744 0.303206 0 + 0.838479 0.299757 0 + 0.894272 0.281389 0 + 0.847418 0.247352 0 + 0.830991 0.27263 0 + 0.841366 0.263429 0 + 0.863587 0.256221 0 + 0.846896 0.562848 0 + 0.945835 0.524372 0 + 0.9726 0.458288 0 + 0.923476 0.477826 0 + 0.895904 0.411171 0 + 0.888185 0.325013 0 + 0.840941 0.346974 0 + 0.875838 0.288121 0 + 0.811953 0.267183 0 + 0.885485 0.250908 0 + 0.850731 0.2715 0 + 0.854347 0.598614 0 + 0.870146 0.330713 0 + 0.867309 0.265084 0 + 0.733748 0.510234 0 + 0.770445 0.536818 0 + 0.687296 0.480821 0 + 0.78931 0.55553 0 + 0.647258 0.476035 0 + 0.785691 0.50144 0 + 0.808737 0.518178 0 + 0.747297 0.479734 0 + 0.662484 0.445723 0 + 0.705345 0.452029 0 + 0.684566 0.424517 0 + 0.775155 0.331994 0 +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + position -0.0512422 0.195521 -0.738231 + orientation 0 0 0 0 + wirecolor 0.769531 0.769531 0.769531 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 32 + 0.00182127 -0.00950495 -0.57455 + 0.00182127 -0.0992814 -0.589187 + -0.0491334 -0.0768373 -0.585528 + -0.0491334 -0.0319492 -0.578209 + 0.0527761 -0.0319492 -0.578209 + 0.052776 -0.0768373 -0.585528 + 0.0018213 -0.0820625 -0.515547 + -0.0536032 -0.0581418 -0.522466 + 0.0572458 -0.0581418 -0.522466 + 0.00182127 -0.0382849 -0.440324 + -0.0574715 -0.0128717 -0.441925 + -0.0574715 0.0379545 -0.445128 + 0.00182129 0.0633678 -0.446728 + 0.0611141 0.0379545 -0.445128 + 0.0611141 -0.0128717 -0.441925 + 0.0018213 -0.0521873 -0.170127 + -0.0632736 -0.027547 -0.165453 + -0.0612016 0.0123869 -0.126839 + 0.00182129 0.0463742 -0.15143 + 0.0648441 0.0123869 -0.126839 + 0.0669163 -0.027547 -0.165453 + 0.0018213 -0.0799047 -0.110591 + -0.0591295 -0.046909 -0.106252 + 0.00182132 0.0379739 -0.0932341 + 0.0627719 -0.046909 -0.106252 + 0.00182133 -0.0755261 -0.000989917 + -0.0555176 -0.0429598 -0.00381515 + -0.049348 0.0245387 0.000506245 + 0.00339275 0.0491273 -0.00256582 + 0.05583 0.0204899 -0.00734931 + 0.0485716 -0.0433041 0.0013524 + 0.00182132 -0.0103936 0.0141449 + faces 60 + 2 0 1 1 73 72 74 0 + 3 0 2 1 75 72 73 0 + 5 0 4 1 76 72 77 0 + 1 0 5 1 74 72 76 0 + 2 1 6 1 33 32 34 0 + 2 6 7 1 33 34 35 0 + 3 2 7 1 49 36 37 0 + 5 4 8 1 57 56 58 0 + 6 5 8 1 34 36 37 0 + 1 5 6 1 32 36 34 0 + 7 9 10 1 35 38 39 0 + 6 9 7 1 34 38 35 0 + 3 7 11 1 49 37 50 0 + 7 10 11 1 37 51 50 0 + 12 3 11 1 60 49 50 0 + 0 3 12 1 59 49 60 0 + 4 0 12 1 56 59 60 0 + 4 12 13 1 56 60 61 0 + 8 4 13 1 58 56 61 0 + 8 13 14 1 58 61 62 0 + 9 8 14 1 38 37 51 0 + 6 8 9 1 34 37 38 0 + 10 9 15 1 39 38 40 0 + 10 15 16 1 39 40 41 0 + 11 10 16 1 50 51 52 0 + 11 16 17 1 50 52 53 0 + 18 11 17 1 63 50 53 0 + 12 11 18 1 60 50 63 0 + 13 12 18 1 61 60 63 0 + 13 18 19 1 61 63 64 0 + 20 13 19 1 65 61 64 0 + 14 13 20 1 62 61 65 0 + 15 14 20 1 40 51 52 0 + 9 14 15 1 38 51 40 0 + 16 15 21 1 41 40 42 0 + 16 21 22 1 41 42 43 0 + 17 16 22 1 53 52 44 0 + 18 17 23 1 63 53 66 0 + 19 18 23 1 64 63 66 0 + 20 19 24 1 65 64 67 0 + 21 20 24 1 42 52 44 0 + 15 20 21 1 40 52 42 0 + 22 25 26 1 43 46 45 0 + 21 25 22 1 42 46 43 0 + 17 22 27 1 53 44 54 0 + 22 26 27 1 44 47 54 0 + 23 17 27 1 66 53 54 0 + 23 27 28 1 66 54 69 0 + 19 23 29 1 64 66 68 0 + 23 28 29 1 66 69 68 0 + 24 19 29 1 67 64 68 0 + 24 29 30 1 67 68 70 0 + 21 24 25 1 42 44 46 0 + 24 30 25 1 44 47 46 0 + 25 31 26 1 46 48 45 0 + 26 31 27 1 47 55 54 0 + 27 31 28 1 54 55 69 0 + 28 31 29 1 69 71 68 0 + 29 31 30 1 68 71 70 0 + 30 31 25 1 47 48 46 0 + tverts 78 + 0.523727 0.297727 0 + 0.503676 0.297166 0 + 0.536911 0.317971 0 + 0.55669 0.319594 0 + 0.56196 0.334205 0 + 0.52268 0.324933 0 + 0.517083 0.0881269 0 + 0.444243 0.111348 0 + 0.502116 0.160306 0 + 0.452955 0.176666 0 + 0.550604 0.258568 0 + 0.52453 0.2596 0 + 0.504922 0.267873 0 + 0.57072 0.30779 0 + 0.536106 0.309372 0 + 0.505088 0.316665 0 + 0.518016 0.336891 0 + 0.508028 0.0400067 0 + 0.52797 0.151871 0 + 0.477736 0.168632 0 + 0.551039 0.308747 0 + 0.51897 0.314125 0 + 0.679909 0.0720007 0 + 0.561103 0.0796891 0 + 0.628824 0.0941939 0 + 0.686947 0.13574 0 + 0.56023 0.221107 0 + 0.602589 0.219563 0 + 0.645046 0.226185 0 + 0.556972 0.288408 0 + 0.597916 0.289908 0 + 0.635182 0.297893 0 + 0.779212 0.0514456 0 + 0.760227 0.0512758 0 + 0.776934 0.0761387 0 + 0.758241 0.0725201 0 + 0.799297 0.05562 0 + 0.79764 0.0769155 0 + 0.774526 0.097017 0 + 0.751715 0.0958516 0 + 0.767784 0.174558 0 + 0.741761 0.172101 0 + 0.76641 0.190478 0 + 0.74814 0.190104 0 + 0.784458 0.191683 0 + 0.743811 0.212941 0 + 0.764607 0.211117 0 + 0.784775 0.214876 0 + 0.763601 0.231272 0 + 0.822266 0.0659046 0 + 0.820541 0.102094 0 + 0.799074 0.0994774 0 + 0.792476 0.175686 0 + 0.809846 0.18415 0 + 0.811747 0.209539 0 + 0.813066 0.23187 0 + 0.854762 0.0661158 0 + 0.877787 0.0550545 0 + 0.879025 0.0765923 0 + 0.838493 0.0667951 0 + 0.838465 0.10164 0 + 0.85645 0.101914 0 + 0.875485 0.0982057 0 + 0.838594 0.177602 0 + 0.866924 0.184158 0 + 0.883916 0.17343 0 + 0.838425 0.192889 0 + 0.891914 0.189703 0 + 0.865042 0.209365 0 + 0.838493 0.210855 0 + 0.889721 0.21322 0 + 0.863481 0.232329 0 + 0.8385 0.0667906 0 + 0.822616 0.0419242 0 + 0.838566 0.0336405 0 + 0.822614 0.0585013 0 + 0.854514 0.0419295 0 + 0.854512 0.058503 0 +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + position 0 -0.0422549 -0.563128 + orientation 0 0 0 0 + wirecolor 0.878906 0.878906 0.878906 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + bitmap nightmare + verts 20 + 0.00126952 -0.0173933 -0.0970691 + 0.00126952 -0.137395 -0.0970691 + -0.108368 -0.0710365 -0.0970691 + -0.0736603 0.083466 -0.0970691 + 0.00126955 0.0493776 -0.0736859 + 0.0761994 0.083466 -0.0970691 + 0.110907 -0.0710365 -0.0970691 + 0.00126952 -0.112398 -0.0485347 + -0.0828438 -0.0585277 -0.0485347 + -0.0700129 0.0506989 -0.0485347 + 0.00126952 0.0371541 -0.0485347 + 0.0725519 0.0506986 -0.0485347 + 0.0853829 -0.0585277 -0.0485347 + 0.00126952 -0.0523884 0.00105688 + -0.0523691 -0.026288 0.00380013 + -0.0503061 0.0259131 0.00928665 + 0.00126952 0.04339 0.0072292 + 0.0528452 0.0259131 0.00928684 + 0.0549082 -0.026288 0.00380013 + 0.00126952 -0.00102865 0.0200544 + faces 36 + 2 0 1 1 21 20 22 0 + 3 0 2 1 23 20 21 0 + 4 0 3 1 24 20 23 0 + 5 0 4 1 25 20 24 0 + 6 0 5 1 26 20 25 0 + 1 0 6 1 22 20 26 0 + 8 1 7 1 47 46 48 0 + 2 1 8 1 49 46 47 0 + 9 2 8 1 40 39 41 0 + 3 2 9 1 42 39 40 0 + 4 3 9 1 34 42 40 0 + 4 9 10 1 34 40 35 0 + 5 4 11 1 43 34 36 0 + 4 10 11 1 34 35 36 0 + 6 5 11 1 50 43 36 0 + 6 11 12 1 50 36 51 0 + 1 6 12 1 46 50 51 0 + 1 12 7 1 46 51 48 0 + 8 7 13 1 47 48 52 0 + 8 13 14 1 47 52 53 0 + 15 8 14 1 44 41 45 0 + 9 8 15 1 40 41 44 0 + 10 9 15 1 35 40 44 0 + 10 15 16 1 35 44 37 0 + 11 10 17 1 36 35 38 0 + 10 16 17 1 35 37 38 0 + 12 11 17 1 51 36 38 0 + 12 17 18 1 51 38 54 0 + 7 12 13 1 48 51 52 0 + 12 18 13 1 51 54 52 0 + 13 19 14 1 28 27 29 0 + 14 19 15 1 29 27 30 0 + 15 19 16 1 30 27 31 0 + 16 19 17 1 31 27 32 0 + 17 19 18 1 32 27 33 0 + 18 19 13 1 33 27 28 0 + tverts 55 + 0.582678 0.469604 0 + 0.59943 0.469201 0 + 0.617175 0.472705 0 + 0.517176 0.401812 0 + 0.540125 0.401057 0 + 0.556286 0.393055 0 + 0.582678 0.399247 0 + 0.609071 0.393055 0 + 0.625176 0.402779 0 + 0.515917 0.387396 0 + 0.532924 0.386146 0 + 0.582678 0.384592 0 + 0.632432 0.38787 0 + 0.514217 0.36797 0 + 0.533323 0.364318 0 + 0.558061 0.369545 0 + 0.582678 0.368352 0 + 0.607295 0.369545 0 + 0.630309 0.366042 0 + 0.513203 0.349203 0 + 0.276583 0.421201 0 + 0.241102 0.448264 0 + 0.283389 0.46963 0 + 0.244534 0.384198 0 + 0.272553 0.392523 0 + 0.297191 0.376797 0 + 0.318149 0.437436 0 + 0.376545 0.511694 0 + 0.380315 0.538521 0 + 0.354883 0.528193 0 + 0.351955 0.500799 0 + 0.373284 0.488492 0 + 0.39718 0.494443 0 + 0.401916 0.521583 0 + 0.316574 0.464132 0 + 0.324971 0.471963 0 + 0.343778 0.451794 0 + 0.343589 0.489324 0 + 0.357883 0.475372 0 + 0.279184 0.546058 0 + 0.3061 0.492628 0 + 0.301754 0.5423 0 + 0.285331 0.475795 0 + 0.326117 0.431779 0 + 0.331409 0.5062 0 + 0.326837 0.529721 0 + 0.442342 0.434818 0 + 0.445949 0.484103 0 + 0.42736 0.454699 0 + 0.467101 0.472441 0 + 0.39801 0.421616 0 + 0.393972 0.444935 0 + 0.407318 0.481296 0 + 0.419652 0.499409 0 + 0.384373 0.472464 0 +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g + position 0.0220549 0.00447277 -0.395573 + orientation 0 -0.00254694 -0.999997 -3.1416 + wirecolor 0.722656 0.722656 0.722656 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 0.8 + alphaEnd 0 + sizeStart 0.66 + sizeEnd 0.65 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 20 + spawnType 0 + lifeExp 0.8 + mass -0.02 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 16 + random 0 + inherit 0 + inherit_local 0 + inherit_part 1 + inheritvel 0 + xsize 10 + ysize 10 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Normal + Blend Lighten + update_sel 1 + render_sel 1 + blend_sel 3 + deadspace 0 + opacity 0.5 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_FireBb + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +node emitter Tail01 + parent rootdummy + position -0.997418 0.0517321 -0.00600575 + orientation 0.277512 0.685515 -0.673095 -2.61599 + wirecolor 0.691406 0.691406 0.691406 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 1 + alphaEnd 0 + sizeStart 1.5 + sizeEnd 1.5 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 10 + spawnType 0 + lifeExp 1 + mass -0.06 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 16 + random 0 + inherit 0 + inherit_local 0 + inherit_part 1 + inheritvel 0 + xsize 15 + ysize 2 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Normal + Blend Lighten + update_sel 1 + render_sel 1 + blend_sel 3 + deadspace 0 + opacity 0.5 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 1 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_FireBb + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +node emitter Tail02 + parent rootdummy + position -1.11594 0.561557 -0.00600488 + orientation 0.584216 0.578348 -0.569389 -2.10531 + wirecolor 0.691406 0.691406 0.691406 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 1 + alphaEnd 0 + sizeStart 1.8 + sizeEnd 1.8 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 15 + birthrate 10 + spawnType 0 + lifeExp 1 + mass -0.06 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 16 + random 0 + inherit 0 + inherit_local 0 + inherit_part 1 + inheritvel 0 + xsize 15 + ysize 2 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Normal + Blend Lighten + update_sel 1 + render_sel 1 + blend_sel 3 + deadspace 0 + opacity 0.5 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 1 + p2p 0 + p2p_sel 1 + p2p_type Bezier + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_FireBb + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + Splat 0 +endnode +endmodelgeom c_nightmare + +#MAXANIM ASCII +newanim cwalk c_nightmare + length 1.33333 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.494813 1.91325 + 0.333333 0 -0.494813 1.78475 + 0.666667 0 -0.494813 1.91325 + 1 0 -0.494813 1.78475 + 1.33333 0 -0.494813 1.91325 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.540717 -0.644402 0.540713 1.99674 + 0.333333 0.541845 -0.66918 0.50853 1.92054 + 0.666667 0.540717 -0.644403 0.540713 1.99674 + 1 0.498231 -0.685528 0.530864 1.98096 + 1.33333 0.540717 -0.644403 0.540713 1.99674 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 0.279255 + 0.333333 -1 0 0 0.376225 + 0.666667 0.0441821 0.35918 0.93222 0 + 1 1 0 0 0.164195 + 1.33333 -1 0 0 0.279255 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 1 0 0 1.15192 + 0.333333 1 0 0 0.176369 + 0.666667 0.149606 -0.827211 -0.541604 0 + 1 1 0 0 0.263644 + 1.33333 1 0 0 1.15192 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 1 0 0 0.698135 + 0.333333 -1 0 0 0.0467551 + 0.666667 -0.0146913 -0.317763 0.948079 0 + 1 -1 0 0 0.423465 + 1.33333 1 0 0 0.698135 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 0 0 0 0 + 0.333333 1 0 0 0.209441 + 0.666667 -1 0 0 0.247782 + 1 -1 0 0 0.389441 + 1.33333 0.71176 0.230395 0.663648 0 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 0 0 0 0 + 0.333333 1 0 0 0.191985 + 0.666667 1 0 0 0.951205 + 1 1 0 0 0.122176 + 1.33333 0 0 0 0 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 1 0 0 0 + 0.333333 -1 0 0 0.349065 + 0.666667 1 0 0 0.637045 + 1 -1 0 0 0.148345 + 1.33333 0 0 0 0 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 -1 0 0 0.0872648 + 0.333333 0.856996 0 0.515323 0.203473 + 0.666667 -1 0 0 0.0872648 + 1 0.857002 0 -0.515313 0.20347 + 1.33333 -1 0 0 0.0872648 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 1 0 0 0.17453 + 0.333333 -1 0 0 0.174536 + 0.666667 1 0 0 0.17453 + 1 -1 0 0 0.174536 + 1.33333 1 0 0 0.17453 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 -1 0 0 0.0872653 + 0.333333 -1 0 0 0.261795 + 0.666667 -1 0 0 0.0872653 + 1 -1 0 0 0.261795 + 1.33333 -1 0 0 0.0872653 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 -0.999413 0.0195283 0.0281387 0.308995 + 0.333333 -0.999774 0.010395 0.018551 0.500911 + 0.666667 -0.999341 0.0209474 0.0296281 0.291552 + 1 -0.999671 0.0135103 0.0218212 0.413669 + 1.33333 -0.9993 0.021722 0.0304412 0.282832 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 0.540717 -0.644401 0.540715 1.99674 + 0.333333 0.538064 -0.618925 0.572206 2.07149 + 0.666667 0.540717 -0.644402 0.540714 1.99674 + 1 0.559807 -0.610926 0.559808 2.04476 + 1.33333 0.540594 -0.644452 0.540778 1.99691 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 0 0 0 0 + 0.333333 1 0 0 0.139625 + 0.666667 1 0 0 0.226895 + 1 -1 0 0 0.183256 + 1.33333 0 0 0 0 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 0 0 0 0 + 0.333333 1 0 0 0.0872699 + 0.666667 -1 0 0 0.890115 + 1 -1 0 0 0.453782 + 1.33333 0.0332946 -0.64109 0.766732 0 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 -0.0123473 0.801024 0.598505 0 + 0.333333 -1 0 0 0.296705 + 0.666667 1 0 0 0.593415 + 1 1 0 0 0.305436 + 1.33333 -0.0136702 0.865782 0.500236 0 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.183256 + 0.333333 -1 0 0 0.130895 + 0.666667 0 0 0 0 + 1 1 0 0 0.174535 + 1.33333 1 0 0 0.183256 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -1 0 0 0.785399 + 0.333333 -1 0 0 0.5236 + 0.666667 -0.35119 -0.250954 0.902023 0 + 1 -1 0 0 0.0698142 + 1.33333 -1 0 0 0.785399 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 1 0 0 0.567235 + 0.333333 1 0 0 0.273435 + 0.666667 0.151362 0.947631 -0.2813 0 + 1 -1 0 0 0.148355 + 1.33333 1 0 0 0.567235 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy + positionkey + 0 -0.997418 0.0611519 -0.00508063 + 0.333333 -0.997418 0.0611519 -0.00508063 + 0.666667 -0.997418 0.0611519 -0.00508063 + 1 -0.997418 0.0611519 -0.00508063 + 1.33333 -0.997418 0.0611519 -0.00508063 + endlist + orientationkey + 0 -0.27781 -0.685924 0.672555 2.61665 + 0.333333 -0.27781 -0.685924 0.672555 2.61665 + 0.666667 -0.27781 -0.685924 0.672555 2.61665 + 1 -0.27781 -0.685924 0.672555 2.61665 + 1.33333 -0.27781 -0.685924 0.672555 2.61665 + endlist +endnode +node emitter Tail02 + parent rootdummy + positionkey + 0 -1.11594 0.663811 -0.00507985 + 0.333333 -1.11594 0.663811 -0.00507985 + 0.666667 -1.11594 0.663811 -0.00507985 + 1 -1.11594 0.663811 -0.00507985 + 1.33333 -1.11594 0.663811 -0.00507985 + endlist + orientationkey + 0 -0.58457 -0.578507 0.568865 2.1064 + 0.333333 -0.58457 -0.578507 0.568865 2.1064 + 0.666667 -0.58457 -0.578507 0.568865 2.1064 + 1 -0.58457 -0.578507 0.568865 2.1064 + 1.33333 -0.58457 -0.578507 0.568865 2.1064 + endlist +endnode +event 0.466667 snd_footstep +event 0.5 snd_footstep +event 1.06667 snd_footstep +event 1.1 snd_footstep +doneanim cwalk c_nightmare + +#MAXANIM ASCII +newanim crun c_nightmare + length 1 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.494813 2.0895 + 0.333333 0 -0.494813 1.78966 + 0.666667 0 -0.494813 1.78966 + 1 0 -0.494813 2.0895 + endlist + orientationkey + 0 -0.608122 -0.510271 0.608121 2.19793 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.57735 -0.577352 0.577348 2.0944 + 0.333333 0.540716 -0.644402 0.540714 1.99674 + 0.666667 0.392362 -0.831929 0.39236 1.75378 + 1 0.577349 -0.577352 0.57735 2.0944 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 0.401429 + 0.166667 1 0 0 0.36553 + 0.333333 -1 0 0 0.312421 + 0.666667 -1 0 0 0.242608 + 0.833333 -1 0 0 0.162979 + 1 -1 0 0 0.401425 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 1.00002 0 0 0 + 0.166667 1 0 0 0.873765 + 0.333333 1 0 0 1.58826 + 0.666667 1 0 0 0.200725 + 0.833333 1 0 0 0.338165 + 1 0.998915 -0.00760044 0.0460109 0 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 1 0 0 0.113447 + 0.166667 -1 0 0 0.76849 + 0.333333 1 0 0 0.453786 + 0.833333 1 0 0 0.189307 + 1 1 0 0 0.113446 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 1.02975 + 0.166667 1 0 0 0.0624752 + 0.333333 1 0 0 0.467173 + 0.666667 -1 0 0 0.222232 + 0.833333 -1 0 0 0.590935 + 1 -1 0 0 1.02974 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 1 0 0 0.174535 + 0.166667 1 0 0 0.590688 + 0.333333 1 0 0 0.977387 + 0.666667 1 0 0 1.27409 + 0.833333 1 0 0 0.694316 + 1 1 0 0 0.174532 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 1 0 0 0.357792 + 0.166667 -1 0 0 0.688042 + 0.333333 -1 0 0 0.567232 + 0.5 1 0 0 0.685155 + 0.666667 1 0 0 0.602138 + 0.833333 -0.999997 -0.000869901 0.00214461 0.00272699 + 1 1 0 0 0.357797 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 -1 0 0 0.174537 + 0.333333 1 0 0 0.38398 + 0.5 1 0 0 0.907579 + 0.666667 1 0 0 0.837765 + 1 -1 0 0 0.174526 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 1 0 0 0.122176 + 0.333333 -1 0 0 0.671955 + 0.5 -1 0 0 0.605415 + 0.666667 1 0 0 0.165805 + 1 1 0 0 0.122176 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 1 0 0 0.0872664 + 0.333333 -1 0 0 0.702131 + 0.666667 -1 0 0 0.340338 + 1 1 0 0 0.0872678 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 -0.998176 0.0376658 0.0471747 0.17485 + 0.333333 -0.999907 0.00485304 0.0127328 0.79419 + 0.666667 -0.999771 0.0104978 0.0186563 0.497528 + 1 0.998345 0.0433159 0.0378372 0.183565 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 0.62775 -0.460286 0.627747 2.27885 + 0.333333 0.544663 -0.63772 0.544661 2.00622 + 0.666667 0.485652 -0.726833 0.48565 1.88459 + 1 0.62775 -0.460288 0.627746 2.27886 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.628319 + 0.166667 1 0 0 0.401972 + 0.333333 1 0 0 0.296706 + 0.5 1 0 0 0.0523147 + 0.666667 1 0 0 0.34034 + 0.833333 1 0 0 0.756313 + 1 1 0 0 0.628319 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -1 0 0 0.244343 + 0.166667 -1 0 0 1.12846 + 0.333333 -1 0 0 1.23918 + 0.5 -1 0 0 0.74008 + 0.666667 -1 0 0 0.916295 + 0.833333 -1 0 0 0.095766 + 1 -1 0 0 0.244343 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 1 0 0 0.610864 + 0.166667 1 0 0 0.809941 + 0.333333 1 0 0 0.343772 + 0.5 1 0 0 0.885458 + 0.666667 1 0 0 0.890117 + 0.833333 1 0 0 0.523622 + 1 1 0 0 0.610864 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.279253 + 0.166667 -1 0 0 0.647408 + 0.333333 -1 0 0 0.383972 + 0.5 1 0 0 0.614638 + 0.666667 1 0 0 0.733039 + 0.833333 1 0 0 0.640366 + 1 1 0 0 0.279253 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -1 0 0 0.191987 + 0.166667 1 0 0 0.171805 + 0.333333 -1 0 0 0.305434 + 0.5 -1 0 0 0.828805 + 0.666667 -1 0 0 0.191987 + 0.833333 1 0 0 0.0287056 + 1 -1 0 0 0.191987 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 1 0 0 0.157081 + 0.166667 -1 0 0 0.161442 + 0.333333 1 0 0 0.715586 + 0.5 1 0 0 0.494148 + 0.666667 -1 0 0 0.200712 + 0.833333 1 0 0 0.273345 + 1 1 0 0 0.15708 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy + positionkey + 0 -1.00011 -0.484096 -0.00507932 + 0.333333 -0.997418 0.0611519 -0.00508063 + 0.666667 -0.997418 0.0611519 -0.00508063 + 1 -0.875349 -0.550743 -0.00508132 + endlist + orientationkey + 0 0.0186859 -0.712899 0.701018 3.19494 + 0.333333 -0.27781 -0.685924 0.672555 2.61665 + 0.666667 -0.27781 -0.685924 0.672555 2.61665 + 1 -0.27781 -0.685924 0.672555 2.61665 + endlist +endnode +node emitter Tail02 + parent rootdummy + positionkey + 0 -1.42668 -0.601307 -0.00507801 + 0.333333 -1.45951 0.344027 -0.00508055 + 0.666667 -1.4091 0.329028 -0.00508064 + 0.833333 -1.32251 -0.262737 -0.00508187 + 1 -1.36324 -0.634745 -0.00508214 + endlist + orientationkey + 0 0.58457 0.578507 -0.568865 4.17679 + 0.333333 0.168617 0.700629 -0.693316 3.45375 + 0.666667 0.356604 0.66487 -0.65634 3.80301 + 0.833333 0.611245 0.564482 -0.554744 4.21636 + 1 0.58457 0.578507 -0.568865 4.17679 + endlist +endnode +event 0 snd_footstep +event 0.0666667 snd_footstep +event 0.3 snd_footstep +event 0.4 snd_footstep +doneanim crun c_nightmare + +#MAXANIM ASCII +newanim cpause1 c_nightmare + length 8.46667 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.494813 1.91325 + 8.43333 0 -0.494813 1.91325 + 8.46667 0 -0.484 1.91325 + endlist + orientationkey + 0 -0.608122 -0.510272 0.60812 2.19793 + 8.43333 -0.608122 -0.510272 0.60812 2.19793 + 8.46667 -0.608122 -0.510272 0.60812 2.19793 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.540717 -0.644403 0.540713 1.99674 + 0.466667 0.544664 -0.63772 0.544659 2.00621 + 1.13333 0.540717 -0.644402 0.540713 1.99674 + 2.23333 0.544664 -0.63772 0.544659 2.00621 + 2.96667 0.540717 -0.644403 0.540713 1.99674 + 6.23333 0.540717 -0.644403 0.540713 1.99674 + 7.76667 0.544664 -0.63772 0.544659 2.00621 + 8.43333 0.540717 -0.644403 0.540712 1.99674 + 8.46667 0.540717 -0.644403 0.540712 1.99674 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 0.262309 0.303836 0.915901 0 + 3.3 0.0584638 0.31639 0.946826 0 + 3.46667 -1 0 0 0.349065 + 3.56667 0.0616922 0.579611 0.812557 0 + 3.76667 -1 0.000178045 0.000266654 0.0523551 + 3.86667 -1 0 0 0.331615 + 4 0.0539225 0.73973 0.670743 0 + 8.43333 0.0539225 0.73973 0.670743 0 + 8.46667 0.0466334 0.87156 0.488066 0 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.1016 -0.735802 -0.669559 0 + 3.3 0.115813 -0.734635 -0.668497 0 + 3.46667 1 0 0 0.811575 + 3.56667 0.0674574 -0.987909 -0.139594 0 + 3.76667 1 0 0 0.811575 + 3.86667 1 0 0 0.741765 + 4 0.060149 -0.976145 -0.208635 0 + 8.43333 0.104551 -0.972554 -0.207868 0 + 8.46667 0.108442 -0.972147 -0.207781 0 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.0262213 0.122622 0.992107 0 + 3.3 -0.148633 0.121303 0.981433 0 + 3.46667 1 0 0 0.218167 + 3.56667 -0.0387426 -0.353664 0.934563 0 + 3.76667 1 0 0 0.218167 + 3.86667 1 0 0 0.36652 + 4 -0.0461367 -0.600326 0.79843 0 + 8.43333 -0.000158008 0.562509 0.826813 0 + 8.46667 -0.0780739 0.560786 0.824279 0 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 0.917712 0.130288 0.375292 0 + 8.43333 0.724022 0.226276 0.651783 0 + 8.46667 0.965771 0.0850727 0.245053 0 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 -1 0 -0.000130624 0.0100002 + 8.43333 0 0 0 0 + 8.46667 0 0 0 0 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 -1 0 0 0.0100007 + 8.43333 0 0 0 0 + 8.46667 0 0 0 0 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 0.712587 0.147049 0.685954 0 + 0.466667 1 0 0 0.104722 + 0.966667 -1 0 0 0.0610848 + 2.23333 0.736691 0.0975539 0.669238 0 + 2.46667 -1 0 0 0.253071 + 2.53333 -0.822057 -0.0439785 0.567705 0.230238 + 2.6 -0.377356 -0.0131086 -0.925976 0.203833 + 2.73333 0.544204 0.102785 0.832632 0.0801718 + 2.86667 0.6288 -0.0794613 -0.773496 0.262671 + 3.06667 1 0 0 0.287981 + 3.3 0 0 0 0 + 3.96667 0 0 0 0 + 4.43333 1 0 0 1.59698 + 6.76667 0.993339 0.0825416 0.0804018 1.60366 + 7.5 0.992623 -0.0868421 -0.0846042 1.60438 + 8.13333 -0.588072 -0.372054 0.718156 0.00965616 + 8.43333 -0.73559 -0.463605 -0.49394 0.00774524 + 8.46667 -0.735619 -0.463584 -0.493918 0.00774559 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -0.882042 0.147641 -0.447441 0 + 0.633333 -1 0 0 0.183266 + 1.13333 1 0 0 0.122176 + 2.23333 -0.830623 0.222755 -0.510325 0 + 2.46667 -1 0 0 0.392705 + 2.53333 -0.87684 -0.156855 0.454475 0.364575 + 2.6 -0.904043 -0.0782511 -0.420218 0.202875 + 2.73333 -0.200353 0.0286726 0.979304 0.159305 + 2.86667 0.523874 -0.295088 -0.799049 0.229205 + 3.06667 1 0 0 0.279245 + 3.3 -0.62032 0.343769 -0.705014 0 + 3.96667 -0.388094 0.807521 -0.444247 0 + 4.1 -1 0 0 0.815455 + 4.5 -1 0 0 0.698135 + 6.56667 -0.994328 0.0250388 0.103377 0 + 8.43333 -0.769585 0.143013 0.622337 0 + 8.46667 -0.769585 0.143013 0.622337 0 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 0 0 0 0 + 8.43333 0 0 0 0 + 8.46667 0 0 0 0 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 0.305571 0.657817 0.688406 0.0110724 + 8.43333 0.314505 0.655843 0.686263 0.0111081 + 8.46667 0.314466 0.655852 0.686272 0.0111079 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 0.559686 -0.610976 0.559875 2.04493 + 8.43333 0.559686 -0.610976 0.559876 2.04493 + 8.46667 0.559686 -0.610977 0.559874 2.04493 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 0 0 0 0 + 8.43333 0 0 0 0 + 8.46667 0 0 0 0 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.0500479 -0.64064 0.766178 0 + 8.43333 -0.216939 -0.62617 0.748873 0 + 8.46667 -0.492887 -0.558121 0.667491 0 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 -0.0164607 0.865746 0.500215 0 + 8.43333 0.0989135 0.861618 0.497831 0 + 8.46667 0.102805 0.861275 0.497633 0 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 0 0 0 0 + 8.43333 0 0 0 0 + 8.46667 0 0 0 0 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.320587 -0.238468 0.916713 0 + 8.43333 -0.439631 -0.226115 0.869225 0 + 8.46667 -0.620614 -0.197388 0.758795 0 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.295896 0.953834 -0.0517434 0 + 8.43333 0.0995008 0.993587 -0.0539002 0 + 8.46667 -0.304374 0.951152 -0.0515986 0 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 3.56667 snd_footstep +event 4 snd_footstep +doneanim cpause1 c_nightmare + +#MAXANIM ASCII +newanim creadyl c_nightmare + length 1.26667 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.494806 1.91325 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.56344 -0.604216 0.563435 2.05457 + 0.433333 0.56877 -0.594145 0.568764 2.06939 + 1.26667 0.56344 -0.604216 0.563435 2.05457 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 0.584685 + 0.433333 -1 0 0 0.680675 + 1.26667 -1 0 0 0.584685 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 1 0 0 0.532325 + 0.433333 1 0 0 0.698135 + 1.26667 1 0 0 0.532325 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 -1 0 0 0.052362 + 0.433333 -1 0 0 0.122172 + 1.26667 -1 0 0 0.0523601 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999933 0 0.0115672 0.602179 + 0.433333 -0.999947 0.000401574 0.0102695 0.680672 + 1.26667 -0.999933 0.000905365 0.0115324 0.602181 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 1 0 0 0.610866 + 0.433333 0.999999 -0.00162133 0 0.794122 + 1.26667 0.999998 -0.00207697 -0.000185999 0.610867 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 -1 0 0 0.139626 + 0.433333 -0.999992 0.00394268 -0.000960764 0.340337 + 1.26667 -0.999951 0.00928921 -0.00328042 0.139632 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 0.999868 0.00194046 -0.0161183 0.235652 + 0.433333 0.99994 0.00193019 -0.0108212 0.349088 + 0.766667 0.999877 0.00193934 -0.0155374 0.244377 + 1.26667 0.999868 0.00194047 -0.0161181 0.235654 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 1 0 0 0.392695 + 0.433333 -0.999905 -0.013499 0.00270071 0.148365 + 0.766667 -0.999482 -0.0315474 0.00631935 0.0523851 + 1.26667 1 0 0 0.392695 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 -1 0 0 0.593415 + 0.6 -0.999987 0.00509547 -0.000489297 0.253075 + 1.26667 -0.999998 0.00220327 0.00016417 0.593415 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 -0.999897 0.000292032 0.0143487 0.576019 + 0.6 -0.999341 0.000290494 0.0362984 0.218311 + 1.26667 -0.999903 -0.00236754 0.0137193 0.576005 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 0.536576 -0.65112 0.536776 1.98749 + 0.766667 0.559686 -0.610976 0.559874 2.04493 + 1.26667 0.536576 -0.65112 0.536776 1.98749 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.226895 + 0.766667 0 0 0 0 + 1.26667 1 0 0 0.226895 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -1 0 0 0.235618 + 0.766667 0.0196744 -0.419471 0.90753 0 + 1.26667 -1 0 0 0.23562 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.99967 0.000103613 -0.0256737 0.122215 + 0.766667 0 0.0653938 -0.99786 0.00313551 + 1.26667 0.99967 0.000102521 -0.0256753 0.122215 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.130901 + 0.766667 -1 0 0 0.0959931 + 1.26667 1 0 0 0.1309 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -1 0 0 0.305433 + 0.766667 -0.312099 0.0221102 0.949767 0 + 1.26667 -1 0 0 0.305434 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 1 0 0 0.305436 + 0.766667 1 0 0 0.0349069 + 1.26667 1 0 0 0.305433 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +doneanim creadyl c_nightmare + +#MAXANIM ASCII +newanim creadyr c_nightmare + length 1.26667 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.494806 1.91325 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.56344 -0.604216 0.563435 2.05457 + 0.433333 0.56877 -0.594145 0.568764 2.06939 + 1.26667 0.56344 -0.604216 0.563435 2.05457 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 0.584685 + 0.433333 -1 0 0 0.680675 + 1.26667 -1 0 0 0.584685 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 1 0 0 0.532325 + 0.433333 1 0 0 0.698135 + 1.26667 1 0 0 0.532325 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 -1 0 0 0.052362 + 0.433333 -1 0 0 0.122172 + 1.26667 -1 0 0 0.0523596 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999933 0 0.0115672 0.602179 + 0.433333 -0.999947 0.000401574 0.0102695 0.680672 + 1.26667 -0.999933 0.000905365 0.0115324 0.602181 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 1 0 0 0.610866 + 0.433333 0.999999 -0.00162133 0 0.794122 + 1.26667 0.999998 -0.00207697 -0.000185999 0.610867 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 -1 0 0 0.139626 + 0.433333 -0.999992 0.00394268 -0.000960764 0.340337 + 1.26667 -0.999951 0.00928921 -0.00328042 0.139632 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 0.999868 0.00194046 -0.0161183 0.235652 + 0.433333 0.99994 0.00193019 -0.0108212 0.349088 + 0.766667 0.999877 0.00193934 -0.0155374 0.244377 + 1.26667 0.999868 0.00194047 -0.0161181 0.235654 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 1 0 0 0.392695 + 0.433333 -0.999905 -0.013499 0.00270071 0.148365 + 0.766667 -0.999482 -0.0315474 0.00631935 0.0523851 + 1.26667 1 0 0 0.392695 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 -1 0 0 0.593415 + 0.6 -0.999987 0.00509547 -0.000489297 0.253075 + 1.26667 -0.999998 0.00220327 0.00016417 0.593415 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 -0.999897 0.000292031 0.0143487 0.576019 + 0.6 -0.999341 0.000290494 0.0362984 0.218311 + 1.26667 -0.999903 -0.00236754 0.0137193 0.576005 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 0.536576 -0.65112 0.536776 1.98749 + 0.766667 0.559686 -0.610976 0.559874 2.04493 + 1.26667 0.536576 -0.65112 0.536776 1.98749 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.226895 + 0.766667 0 0 0 0 + 1.26667 1 0 0 0.226895 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -1 0 0 0.235618 + 0.766667 0.0198042 -0.419471 0.90753 0 + 1.26667 -1 0 0 0.23562 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.99967 0.000103613 -0.0256737 0.122215 + 0.766667 0 0.0653938 -0.99786 0.00313551 + 1.26667 0.99967 0.000102521 -0.0256753 0.122215 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.130901 + 0.766667 -1 0 0 0.0959931 + 1.26667 1 0 0 0.1309 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -1 0 0 0.305433 + 0.766667 -0.315553 0.0220831 0.948604 0 + 1.26667 -1 0 0 0.305434 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 1 0 0 0.305436 + 0.766667 1 0 0 0.0349069 + 1.26667 1 0 0 0.305433 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +doneanim creadyr c_nightmare + +#MAXANIM ASCII +newanim chturnl c_nightmare + length 0.733333 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.484 1.92753 + 0.333333 0 -0.484 1.92753 + 0.7 0 -0.484 1.92753 + 0.733333 0 -0.484 1.92753 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.540717 -0.644401 0.540714 1.99673 + 0.333333 0.540717 -0.644401 0.540714 1.99673 + 0.7 0.535546 -0.646317 0.543567 2.00335 + 0.733333 0.535546 -0.646317 0.543567 2.00335 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 0.0578977 0.995292 0.0777038 0 + 0.7 0 0 0 0 + 0.733333 0 0 0 0 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.199938 -0.902843 -0.380656 0 + 0.7 0.277446 -0.801152 -0.530267 0 + 0.733333 0.277446 -0.801152 -0.530267 0 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 -0.0425337 0.759327 0.649257 0 + 0.7 0.00467808 -0.980462 0.196647 0 + 0.733333 -0.0275634 -0.9801 0.196574 0 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.000932978 0.370546 0.928814 0.00686073 + 0.7 0.000268243 -0.000266978 1 0.00637201 + 0.733333 0.00019341 -0.00026674 1 0.00637201 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 0.00320963 -0.922828 -0.385198 0.00125504 + 0.7 0.00890384 0.00307223 -0.999956 0.0004837 + 0.733333 0.0079181 0.00307202 -0.999964 0.000483696 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 -0.00172014 -0.928911 -0.370299 0.00147772 + 0.7 -0.00142042 0.48154 0.876423 0.00547015 + 0.733333 -0.00142042 0.48154 0.876423 0.00547015 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 0.000483692 0.00198151 -0.999998 0.00370533 + 0.333333 0 0 1 0.624605 + 0.7 0.591064 0.601878 0.537012 0 + 0.733333 0.591064 0.601878 0.537012 0 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -0.68442 -0.194155 0.702787 0 + 0.333333 0 0 1 0.610867 + 0.7 0.215048 -0.972033 -0.0943374 0 + 0.733333 0.215048 -0.972033 -0.0943374 0 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 0.00509251 0.00183682 -0.999985 0.00028545 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 0 0 1 0.00785475 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 0.540595 -0.644453 0.540775 1.99691 + 0.7 0.540595 -0.644453 0.540775 1.99691 + 0.733333 0.540595 -0.644453 0.540775 1.99691 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 0.15754 0.195934 -0.967857 0 + 0.7 0.0673123 0.197965 -0.977887 0 + 0.733333 -0.0245956 0.19835 -0.979794 0 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.028725 -0.417739 0.908096 0 + 0.7 -0.10548 -0.415581 0.903405 0 + 0.733333 -0.252308 -0.404394 0.879087 0 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.000785982 0.0653951 -0.997859 0.00313551 + 0.7 0 0.0653963 -0.997859 0.00313551 + 0.733333 -0.000582231 0.0653954 -0.997859 0.00313551 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 0.107143 0.0344864 0.993644 0 + 0.7 0.0110749 0.0346828 0.999337 0 + 0.733333 0.03153 0.0346674 0.998901 0 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.344701 0.0287217 0.938311 0 + 0.7 -0.477976 0.0268767 0.878029 0 + 0.733333 -0.668141 0.0227654 0.743706 0 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.188317 0.935966 0.297497 0 + 0.7 0.255754 0.921314 0.29284 0 + 0.733333 0.270951 0.917361 0.291584 0 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +doneanim chturnl c_nightmare + +#MAXANIM ASCII +newanim chturnr c_nightmare + length 0.766667 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0.3 0 -0.484 1.92753 + 0.733333 0 -0.484 1.92753 + endlist + orientationkey + 0.3 -0.608121 -0.510273 0.60812 2.19793 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0.733333 0.535546 -0.646317 0.543567 2.00335 + 0.766667 0.535546 -0.646317 0.543567 2.00335 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0.733333 0 0 0 0 + 0.766667 0 0 0 0 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0.733333 0.277444 -0.801153 -0.530265 0 + 0.766667 0.277444 -0.801153 -0.530265 0 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0.733333 0.004548 -0.979952 0.199174 0 + 0.766667 -0.0276996 -0.979586 0.1991 0 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0.733333 0.000268164 -0.000242287 1 0.00637198 + 0.766667 0.000268164 -0.000242287 1 0.00637197 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0.733333 0.00890379 0.00282939 -0.999956 0.00048399 + 0.766667 0.00791864 0.00282918 -0.999965 0.000483986 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0.733333 -0.00142043 0.481539 0.876424 0.00547028 + 0.766667 -0.0015076 0.481539 0.876423 0.00547028 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0.3 0 0 -1 0.602135 + 0.733333 0.588352 0.599116 0.543049 0 + 0.766667 0.590171 0.598133 0.542158 0 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0.3 0 0 -1 0.628319 + 0.733333 0.214738 -0.970632 -0.108376 0 + 0.766667 0.454233 -0.88539 -0.0988587 0 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g +endnode +node trimesh Ear_Right_g01 + parent Head_g +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0.733333 0.540595 -0.644453 0.540774 1.99691 + 0.766667 0.540595 -0.644453 0.540774 1.99691 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0.733333 0.168759 0.195565 -0.966033 0 + 0.766667 0.0787395 0.197793 -0.97704 0 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0.733333 -0.0284627 -0.417749 0.908118 0 + 0.766667 -0.105262 -0.415599 0.903443 0 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0.733333 0 0.0653964 -0.997859 0.00313711 + 0.766667 0 0.0653964 -0.997859 0.00313711 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0.733333 0.0180279 0.0346791 0.999236 0 + 0.766667 0.0180279 0.0346791 0.999236 0 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0.733333 -0.308578 0.0291031 0.950772 0 + 0.766667 -0.446946 0.0273704 0.894156 0 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0.733333 0.257823 0.920825 0.292684 0 + 0.766667 0.257823 0.920825 0.292684 0 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +doneanim chturnr c_nightmare + +#MAXANIM ASCII +newanim ca1slashl c_nightmare + length 0.7 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0.2 0 -0.484 1.83484 + 0.333333 0 1.19806 2.22016 + 0.466667 0 1.83996 1.9768 + 0.566667 0 1.82251 1.79908 + 0.666667 0 -0.484 1.92753 + 0.7 0 -0.484 1.92753 + endlist + orientationkey + 0.2 -0.608121 -0.510273 0.60812 2.19793 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.535546 -0.646317 0.543567 2.00335 + 0.2 0.0156249 -0.999486 0.0279848 1.57145 + 0.333333 0.543402 -0.633109 0.55126 2.02235 + 0.466667 0.584184 -0.556182 0.591093 2.13746 + 0.566667 0.561391 -0.601036 0.568854 2.06942 + 0.666667 0.535546 -0.646316 0.543568 2.00336 + 0.7 0.535546 -0.646316 0.543568 2.00336 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 0 0 0 0 + 0.0666667 -1 0 0 0.742445 + 0.133333 -1 0 0 0.118835 + 0.2 -1 0 0 0.759215 + 0.333333 -1 0 0 1.67399 + 0.466667 -1 0 0 0.853195 + 0.566667 -1 0 0 0.844036 + 0.633333 -0.999944 0.0104442 0.00153564 0.504265 + 0.666667 -0.00126426 0.921602 0.388135 0.00289518 + 0.7 -0.00126426 0.921602 0.388135 0.00289518 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.277444 -0.801153 -0.530265 0 + 0.0666667 1 0 0 1.5661 + 0.133333 1 0 0 1.4437 + 0.2 1 0 0 1.85878 + 0.333333 1 0 0 0.612545 + 0.466667 1 0 0 0.334365 + 0.566667 1 0 0 1.07061 + 0.633333 0.999982 -0.00590751 -0.000556229 0.799025 + 0.666667 0.060671 -0.352025 -0.93402 0 + 0.7 0.0309581 -0.352505 -0.935295 0 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.004548 -0.979952 0.199174 0 + 0.2 1 0 0 1.11701 + 0.333333 1 0 0 0.437096 + 0.466667 1 -0.000136467 0 0.0881334 + 0.566667 -1 0 0 0.405304 + 0.666667 0.00540769 -0.998715 0.0503685 0 + 0.7 -0.0223828 -0.99848 0.0503569 0 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 0.000268164 -0.000242287 1 0.00637198 + 0.0666667 -0.999244 0.00317019 0.0387579 0.164046 + 0.133333 -0.999956 0.00317958 0.0088804 0.689076 + 0.2 -0.999933 0.00317898 0.0111123 0.558539 + 0.333333 -0.999977 0.00317979 0.00605488 0.969057 + 0.466667 -0.999959 0.00317675 0.00851902 0.715904 + 0.566667 -0.999922 0.0121521 0.0029841 0.915681 + 0.666667 0.0150988 0.824257 0.566015 0.0117923 + 0.7 0.0150584 0.824257 0.566015 0.0117923 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 0.00890379 0.00282939 -0.999956 0.00048399 + 0.0666667 0.999981 -0.00612722 -0.00028455 1.41093 + 0.133333 0.999981 -0.00612742 -0.000238172 1.58848 + 0.2 0.999981 -0.00612763 -0.000163709 1.95477 + 0.333333 0.999975 -0.0061096 -0.00360354 0.134111 + 0.466667 -0.999966 0.00626971 -0.00537681 0.088588 + 0.566667 0.999929 -0.00694272 0.00968861 0.98552 + 0.633333 0.99993 -0.0113901 0.00307902 0.593333 + 0.666667 -0.99768 0.00625625 -0.067784 0.0887855 + 0.7 -0.99768 0.00625626 -0.067784 0.0887854 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 -0.00142043 0.481539 0.876424 0.00547028 + 0.2 0.999965 -0.00555413 0.00628536 0.898837 + 0.333333 0.99991 -0.00171091 0.0132845 0.395333 + 0.466667 0.999939 -0.00320203 0.0105681 0.507097 + 0.566667 -0.999596 0.0268217 0.00937837 0.109206 + 0.666667 0.991634 -0.11634 0.0559254 0.0891525 + 0.7 0.991634 -0.11634 0.0559257 0.0891521 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 0.589488 0.600273 0.54053 0 + 0.2 1 0 0 1.31773 + 0.333333 -1 0 0 0.376386 + 0.466667 -1 0 0 0.183085 + 0.566667 1 0 0 0.498485 + 0.6 0.999619 0.00824405 -0.0263329 0.716765 + 0.666667 0.19593 0.832816 0.517704 0 + 0.7 0.163908 0.837592 0.521124 0 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 0.140507 -0.979296 -0.145776 0 + 0.2 1 0 0 0.663225 + 0.333333 1 0 0 0.212615 + 0.466667 -1 0 0 0.224885 + 0.566667 -1 0 0 0.566656 + 0.666667 -0.642758 -0.749252 -0.159662 0 + 0.7 -0.642758 -0.749252 -0.159662 0 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0.7 0.0116618 0.00183765 -0.99993 0.000285451 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0.7 0 0 1 0.00785475 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 0.540595 -0.644453 0.540774 1.99691 + 0.2 0.447091 -0.774648 0.447247 1.82373 + 0.333333 0.576586 -0.578786 0.576677 2.09262 + 0.466667 0.672042 -0.311027 0.672028 2.53898 + 0.566667 0.426174 -0.797906 0.426288 1.79512 + 0.6 0.477732 -0.737201 0.477814 1.87146 + 0.666667 0.540449 -0.644607 0.540737 1.99744 + 0.7 0.540475 -0.644613 0.540703 1.99746 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 0.168763 0.19557 -0.966057 0 + 0.2 1 -0.000285399 -0.000164382 0.689406 + 0.333333 1 -0.000169119 -0.000146196 0.52276 + 0.466667 1 -0.000150262 -0.00014983 0.448784 + 0.533333 -0.999999 0.0010327 0.000243966 0.163964 + 0.6 -0.999999 0.0009941 0.000239224 0.178258 + 0.666667 -0.0160168 0.0666992 -0.997645 0.00042828 + 0.7 -0.0160168 0.0666992 -0.997645 0.00042828 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.0284637 -0.41775 0.908119 0 + 0.2 -1 0.000283051 0.000162339 0.925025 + 0.333333 0.999993 0.00185263 0.00324375 0.0329477 + 0.466667 1 0 0.000517247 0.206925 + 0.5 -1 0.000472213 0 1.20087 + 0.566667 -1 0.000646058 0.000117828 0.50866 + 0.633333 -1 0.000428898 0.000142417 0.468018 + 0.666667 0.0244951 0.992357 0.120944 0 + 0.7 0.0244951 0.992357 0.120944 0 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0 0.0653964 -0.997859 0.00313711 + 0.2 0.999987 0.00158915 -0.00480525 0.637053 + 0.333333 0.99999 0.00153027 -0.00421714 0.720681 + 0.466667 0.999984 0.00153361 -0.00551356 0.557932 + 0.566667 0.999994 0.00141032 -0.00328153 0.880814 + 0.633333 0.999998 0.000982437 -0.00175827 0.573804 + 0.666667 -0.156634 0.770766 0.617565 0 + 0.7 -0.156634 0.770766 0.617565 0 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 0.0180279 0.0346791 0.999236 0 + 0.2 1 -0.000300386 -0.000122273 0.671955 + 0.333333 0.999998 -0.00205176 -0.000516131 0.471245 + 0.466667 0.999999 -0.00104513 -0.000280354 0.671955 + 0.533333 -0.999868 -0.0162313 0 0.0400055 + 0.566667 -0.999981 -0.00613781 0.000686946 0.380405 + 0.6 -0.999998 -0.00151712 0.00136074 0.371724 + 0.633333 -0.991075 -0.0181092 -0.132073 0.159334 + 0.666667 -0.0507468 -0.0363496 -0.99805 0.0180826 + 0.7 -0.0507731 -0.0363498 -0.998048 0.0180826 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.308544 0.0290998 0.950665 0 + 0.2 -1 0.000315451 0.000159725 0.925025 + 0.333333 1 0.000363042 0.000839345 0.0814649 + 0.466667 0.999971 -0.00587261 -0.00484382 0.426299 + 0.5 -0.999993 -0.00159922 0.00327974 1.46084 + 0.533333 -0.999994 0.000313009 0.00356179 0.664637 + 0.566667 -0.999884 -0.0133374 0.0074144 0.210935 + 0.633333 -0.999436 -0.0320562 0.00995475 0.319495 + 0.666667 0.0360477 -0.857183 0.513749 0.00459511 + 0.7 0.0360477 -0.857183 0.513749 0.00459511 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.257823 0.920825 0.292684 0 + 0.2 1 -0.000312295 -0.000154639 0.479966 + 0.333333 1 -0.000397783 -0.00017408 0.508795 + 0.466667 0.999999 -0.00052856 -0.00115701 0.407715 + 0.566667 0.999998 -0.000185315 -0.00220623 0.817865 + 0.633333 0.999968 0.00479028 -0.00639505 0.431535 + 0.666667 -0.0003645 -0.000251023 -1 0.00167042 + 0.7 -0.00064996 -0.000251261 -1 0.00167042 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0.3 hit +event 0.466667 snd_footstep +event 0.5 snd_footstep +event 0.6 snd_footstep +event 0.6 snd_footstep +doneanim ca1slashl c_nightmare + +#MAXANIM ASCII +newanim ca1slashr c_nightmare + length 0.7 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0.2 0 -0.484 1.83484 + 0.333333 0 1.19806 2.22016 + 0.466667 0 1.83996 1.9768 + 0.566667 0 1.82251 1.79908 + 0.666667 0 -0.484 1.92753 + 0.7 0 -0.484 1.92753 + endlist + orientationkey + 0.2 -0.608121 -0.510273 0.60812 2.19793 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 -0.535546 0.646317 -0.543567 4.27983 + 0.0333333 -0.567007 0.597501 -0.567006 4.21875 + 0.1 0.449002 -0.731899 0.512563 1.65321 + 0.2 0.449002 -0.731899 0.512563 1.65321 + 0.333333 0.449002 -0.731899 0.512563 1.65321 + 0.466667 0.449002 -0.731899 0.512563 1.65321 + 0.566667 0.449002 -0.731899 0.512563 1.65321 + 0.666667 0.449002 -0.731899 0.512563 1.65321 + 0.7 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 0 0 0 0 + 0.0333333 -1 0 0 0.715586 + 0.0666667 -1 0 0 0.742445 + 0.1 -1 0 0 1.5708 + 0.133333 -1 0 0 1.5708 + 0.2 -1 0 0 1.5708 + 0.333333 -1 0 0 1.5708 + 0.466667 -1 0 0 1.5708 + 0.566667 -1 0 0 1.5708 + 0.633333 -1 0 0 1.5708 + 0.666667 -1 0 0 1.5708 + 0.7 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.276615 -0.801369 -0.530366 0 + 0.0333333 1 0 0 0.483975 + 0.0666667 1 0 0 1.5661 + 0.1 0.999498 0.000602493 0.0316629 1.77586 + 0.133333 0.999498 0.000602493 0.0316629 1.77586 + 0.2 0.999498 0.000602493 0.0316629 1.77586 + 0.333333 0.999498 0.000602493 0.0316629 1.77586 + 0.466667 0.999498 0.000602493 0.0316629 1.77586 + 0.566667 0.999498 0.000602493 0.0316629 1.77586 + 0.633333 0.999498 0.000602493 0.0316629 1.77586 + 0.666667 0.999498 0.000602493 0.0316629 1.77586 + 0.7 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.013599 -0.979894 0.199052 0 + 0.0333333 0.966126 0.218316 -0.137617 0.0763998 + 0.1 0.992072 0.105452 -0.0683624 0.41817 + 0.2 0.992072 0.105452 -0.0683624 0.41817 + 0.333333 0.992072 0.105452 -0.0683624 0.41817 + 0.466667 0.992072 0.105452 -0.0683624 0.41817 + 0.566667 0.992072 0.105452 -0.0683624 0.41817 + 0.666667 0.992072 0.105452 -0.0683624 0.41817 + 0.7 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.000243968 0.000242299 -1 6.27681 + 0.0333333 1 0 0 5.58505 + 0.0666667 0.999244 -0.00317019 -0.0387579 6.11914 + 0.1 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.133333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.2 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.333333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.466667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.566667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.666667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.7 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 0.00908127 0.00282932 -0.999955 0.00048399 + 0.0333333 1 0 0 0.333352 + 0.0666667 -0.999981 0.00612722 0.000284548 4.87226 + 0.1 -0.999997 -0.00231392 0.000606184 5.05864 + 0.133333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.2 -0.999997 -0.00231392 0.000606184 5.05864 + 0.333333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.466667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.566667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.633333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.666667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.7 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 -0.00142759 0.481539 0.876424 0.00547028 + 0.0333333 1 0 0 0.294966 + 0.1 0.999956 0.00911181 -0.00234505 0.996411 + 0.2 0.999956 0.00911181 -0.00234505 0.996411 + 0.333333 0.999956 0.00911181 -0.00234505 0.996411 + 0.466667 0.999956 0.00911181 -0.00234505 0.996411 + 0.566667 0.999956 0.00911181 -0.00234505 0.996411 + 0.666667 0.999956 0.00911181 -0.00234505 0.996411 + 0.7 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 0.585238 0.602566 0.542595 0 + 0.0333333 1 0 0 0.392695 + 0.1 1 0 0 1.45534 + 0.2 1 0 0 1.45534 + 0.333333 1 0 0 1.45534 + 0.466667 1 0 0 1.45534 + 0.566667 1 0 0 1.45534 + 0.6 1 0 0 1.45534 + 0.666667 1 0 0 1.45534 + 0.7 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -0.0642637 0.987065 0.146933 6.28318 + 0.0333333 1 0 0 5.89921 + 0.1 -1 0 0 1.50004 + 0.2 -1 0 0 1.50004 + 0.333333 -1 0 0 1.50004 + 0.466667 -1 0 0 1.50004 + 0.566667 -1 0 0 1.50004 + 0.666667 -1 0 0 1.50004 + 0.7 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0.7 0.0116618 0.00183765 -0.99993 0.000285451 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0.7 0 0 1 0.00785475 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 0.540595 -0.644453 0.540774 1.99691 + 0.0333333 0.540716 -0.644401 0.540715 1.99674 + 0.1 -0.203835 0.581959 -0.787258 0.664599 + 0.2 -0.203835 0.581959 -0.787258 0.664599 + 0.333333 -0.203835 0.581959 -0.787258 0.664599 + 0.466667 -0.203835 0.581959 -0.787258 0.664599 + 0.566667 -0.203835 0.581959 -0.787258 0.664599 + 0.6 -0.203835 0.581959 -0.787258 0.664599 + 0.666667 -0.203835 0.581959 -0.787258 0.664599 + 0.7 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 0.168469 0.195576 -0.966089 0 + 0.0333333 0 0 0 0 + 0.1 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + 0.333333 1 0 0 0.235625 + 0.466667 1 0 0 0.235625 + 0.533333 1 0 0 0.235625 + 0.6 1 0 0 0.235625 + 0.666667 1 0 0 0.235625 + 0.7 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.0633228 -0.419039 0.905752 0 + 0.0333333 0 0 0 0 + 0.1 -0.239513 0.407154 -0.881396 0.107584 + 0.2 -0.239513 0.407154 -0.881396 0.107584 + 0.333333 -0.239513 0.407154 -0.881396 0.107584 + 0.466667 -0.239513 0.407154 -0.881396 0.107584 + 0.5 -0.239513 0.407154 -0.881396 0.107584 + 0.566667 -0.239513 0.407154 -0.881396 0.107584 + 0.633333 -0.239513 0.407154 -0.881396 0.107584 + 0.666667 -0.239513 0.407154 -0.881396 0.107584 + 0.7 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.000215261 0.0654026 -0.997859 0.0031371 + 0.0333333 0 0.000742843 1 0.0148887 + 0.1 0.996592 0.0562438 0.0603348 0.563848 + 0.2 0.996592 0.0562438 0.0603348 0.563848 + 0.333333 0.996592 0.0562438 0.0603348 0.563848 + 0.466667 0.996592 0.0562438 0.0603348 0.563848 + 0.566667 0.996592 0.0562438 0.0603348 0.563848 + 0.633333 0.996592 0.0562438 0.0603348 0.563848 + 0.666667 0.996592 0.0562438 0.0603348 0.563848 + 0.7 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 0.0179022 0.0346791 0.999237 0 + 0.0333333 0 0 0 0 + 0.1 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + 0.333333 1 0 0 0.235625 + 0.466667 1 0 0 0.235625 + 0.533333 1 0 0 0.235625 + 0.566667 1 0 0 0.235625 + 0.6 1 0 0 0.235625 + 0.633333 1 0 0 0.235625 + 0.666667 1 0 0 0.235625 + 0.7 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.318008 0.0287712 0.947635 0 + 0.0333333 0 0 0 0 + 0.1 -0.732491 0.407443 -0.545387 0.0374183 + 0.2 -0.732491 0.407443 -0.545387 0.0374183 + 0.333333 -0.732491 0.407443 -0.545387 0.0374183 + 0.466667 -0.732491 0.407443 -0.545387 0.0374183 + 0.5 -0.732491 0.407443 -0.545387 0.0374183 + 0.533333 -0.732491 0.407443 -0.545387 0.0374183 + 0.566667 -0.732491 0.407443 -0.545387 0.0374183 + 0.633333 -0.732491 0.407443 -0.545387 0.0374183 + 0.666667 -0.732491 0.407443 -0.545387 0.0374183 + 0.7 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.25792 0.920784 0.29261 0 + 0.0333333 0 0 0 0 + 0.1 0.997239 -0.0625387 0.0400311 0.366118 + 0.2 0.997239 -0.0625387 0.0400311 0.366118 + 0.333333 0.997239 -0.0625387 0.0400311 0.366118 + 0.466667 0.997239 -0.0625387 0.0400311 0.366118 + 0.566667 0.997239 -0.0625387 0.0400311 0.366118 + 0.633333 0.997239 -0.0625387 0.0400311 0.366118 + 0.666667 0.997239 -0.0625387 0.0400311 0.366118 + 0.7 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0.3 hit +event 0.466667 snd_footstep +event 0.5 snd_footstep +event 0.6 snd_footstep +event 0.6 snd_footstep +doneanim ca1slashr c_nightmare + +#MAXANIM ASCII +newanim ca1stab c_nightmare + length 0.7 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0.2 0 -0.484 1.83484 + 0.333333 0 1.19806 2.22016 + 0.466667 0 1.83996 1.9768 + 0.566667 0 1.82251 1.79908 + 0.666667 0 -0.484 1.92753 + 0.7 0 -0.484 1.92753 + endlist + orientationkey + 0.2 -0.608121 -0.510273 0.60812 2.19793 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.449002 -0.731899 0.512563 1.65321 + 0.2 0.449002 -0.731899 0.512563 1.65321 + 0.333333 0.449002 -0.731899 0.512563 1.65321 + 0.466667 0.449002 -0.731899 0.512563 1.65321 + 0.566667 0.449002 -0.731899 0.512563 1.65321 + 0.666667 0.449002 -0.731899 0.512563 1.65321 + 0.7 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 1.5708 + 0.0666667 -1 0 0 1.5708 + 0.133333 -1 0 0 1.5708 + 0.2 -1 0 0 1.5708 + 0.333333 -1 0 0 1.5708 + 0.466667 -1 0 0 1.5708 + 0.566667 -1 0 0 1.5708 + 0.633333 -1 0 0 1.5708 + 0.666667 -1 0 0 1.5708 + 0.7 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.999498 0.000602493 0.0316629 1.77586 + 0.0666667 0.999498 0.000602493 0.0316629 1.77586 + 0.133333 0.999498 0.000602493 0.0316629 1.77586 + 0.2 0.999498 0.000602493 0.0316629 1.77586 + 0.333333 0.999498 0.000602493 0.0316629 1.77586 + 0.466667 0.999498 0.000602493 0.0316629 1.77586 + 0.566667 0.999498 0.000602493 0.0316629 1.77586 + 0.633333 0.999498 0.000602493 0.0316629 1.77586 + 0.666667 0.999498 0.000602493 0.0316629 1.77586 + 0.7 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.992072 0.105452 -0.0683624 0.41817 + 0.2 0.992072 0.105452 -0.0683624 0.41817 + 0.333333 0.992072 0.105452 -0.0683624 0.41817 + 0.466667 0.992072 0.105452 -0.0683624 0.41817 + 0.566667 0.992072 0.105452 -0.0683624 0.41817 + 0.666667 0.992072 0.105452 -0.0683624 0.41817 + 0.7 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.0666667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.133333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.2 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.333333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.466667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.566667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.666667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.7 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 -0.999997 -0.00231392 0.000606184 5.05864 + 0.0666667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.133333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.2 -0.999997 -0.00231392 0.000606184 5.05864 + 0.333333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.466667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.566667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.633333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.666667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.7 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 0.999956 0.00911181 -0.00234505 0.996411 + 0.2 0.999956 0.00911181 -0.00234505 0.996411 + 0.333333 0.999956 0.00911181 -0.00234505 0.996411 + 0.466667 0.999956 0.00911181 -0.00234505 0.996411 + 0.566667 0.999956 0.00911181 -0.00234505 0.996411 + 0.666667 0.999956 0.00911181 -0.00234505 0.996411 + 0.7 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 1 0 0 1.45534 + 0.2 1 0 0 1.45534 + 0.333333 1 0 0 1.45534 + 0.466667 1 0 0 1.45534 + 0.566667 1 0 0 1.45534 + 0.6 1 0 0 1.45534 + 0.666667 1 0 0 1.45534 + 0.7 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -1 0 0 1.50004 + 0.2 -1 0 0 1.50004 + 0.333333 -1 0 0 1.50004 + 0.466667 -1 0 0 1.50004 + 0.566667 -1 0 0 1.50004 + 0.666667 -1 0 0 1.50004 + 0.7 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0.7 0.0116618 0.00183765 -0.99993 0.000285451 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0.7 0 0 1 0.00785475 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 -0.203835 0.581959 -0.787258 0.664599 + 0.2 -0.203835 0.581959 -0.787258 0.664599 + 0.333333 -0.203835 0.581959 -0.787258 0.664599 + 0.466667 -0.203835 0.581959 -0.787258 0.664599 + 0.566667 -0.203835 0.581959 -0.787258 0.664599 + 0.6 -0.203835 0.581959 -0.787258 0.664599 + 0.666667 -0.203835 0.581959 -0.787258 0.664599 + 0.7 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + 0.333333 1 0 0 0.235625 + 0.466667 1 0 0 0.235625 + 0.533333 1 0 0 0.235625 + 0.6 1 0 0 0.235625 + 0.666667 1 0 0 0.235625 + 0.7 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.239513 0.407154 -0.881396 0.107584 + 0.2 -0.239513 0.407154 -0.881396 0.107584 + 0.333333 -0.239513 0.407154 -0.881396 0.107584 + 0.466667 -0.239513 0.407154 -0.881396 0.107584 + 0.5 -0.239513 0.407154 -0.881396 0.107584 + 0.566667 -0.239513 0.407154 -0.881396 0.107584 + 0.633333 -0.239513 0.407154 -0.881396 0.107584 + 0.666667 -0.239513 0.407154 -0.881396 0.107584 + 0.7 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.996592 0.0562438 0.0603348 0.563848 + 0.2 0.996592 0.0562438 0.0603348 0.563848 + 0.333333 0.996592 0.0562438 0.0603348 0.563848 + 0.466667 0.996592 0.0562438 0.0603348 0.563848 + 0.566667 0.996592 0.0562438 0.0603348 0.563848 + 0.633333 0.996592 0.0562438 0.0603348 0.563848 + 0.666667 0.996592 0.0562438 0.0603348 0.563848 + 0.7 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + 0.333333 1 0 0 0.235625 + 0.466667 1 0 0 0.235625 + 0.533333 1 0 0 0.235625 + 0.566667 1 0 0 0.235625 + 0.6 1 0 0 0.235625 + 0.633333 1 0 0 0.235625 + 0.666667 1 0 0 0.235625 + 0.7 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.732491 0.407443 -0.545387 0.0374183 + 0.2 -0.732491 0.407443 -0.545387 0.0374183 + 0.333333 -0.732491 0.407443 -0.545387 0.0374183 + 0.466667 -0.732491 0.407443 -0.545387 0.0374183 + 0.5 -0.732491 0.407443 -0.545387 0.0374183 + 0.533333 -0.732491 0.407443 -0.545387 0.0374183 + 0.566667 -0.732491 0.407443 -0.545387 0.0374183 + 0.633333 -0.732491 0.407443 -0.545387 0.0374183 + 0.666667 -0.732491 0.407443 -0.545387 0.0374183 + 0.7 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.997239 -0.0625387 0.0400311 0.366118 + 0.2 0.997239 -0.0625387 0.0400311 0.366118 + 0.333333 0.997239 -0.0625387 0.0400311 0.366118 + 0.466667 0.997239 -0.0625387 0.0400311 0.366118 + 0.566667 0.997239 -0.0625387 0.0400311 0.366118 + 0.633333 0.997239 -0.0625387 0.0400311 0.366118 + 0.666667 0.997239 -0.0625387 0.0400311 0.366118 + 0.7 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0.3 hit +event 0.466667 snd_footstep +event 0.5 snd_footstep +event 0.6 snd_footstep +event 0.6 snd_footstep +doneanim ca1stab c_nightmare + +#MAXANIM ASCII +newanim ccloseh c_nightmare + length 0.8 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.484 1.92753 + 0.3 0 -0.484 1.79907 + 0.466667 0 -0.196112 1.79907 + 0.566667 0 0.151556 1.7211 + 0.766667 0 -0.484 1.92753 + 0.8 0 -0.484 1.92753 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.449002 -0.731899 0.512563 1.65321 + 0.3 0.449002 -0.731899 0.512563 1.65321 + 0.466667 0.449002 -0.731899 0.512563 1.65321 + 0.566667 0.449002 -0.731899 0.512563 1.65321 + 0.766667 0.449002 -0.731899 0.512563 1.65321 + 0.8 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 1.5708 + 0.3 -1 0 0 1.5708 + 0.466667 -1 0 0 1.5708 + 0.566667 -1 0 0 1.5708 + 0.633333 -1 0 0 1.5708 + 0.7 -1 0 0 1.5708 + 0.766667 -1 0 0 1.5708 + 0.8 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.999498 0.000602493 0.0316629 1.77586 + 0.3 0.999498 0.000602493 0.0316629 1.77586 + 0.466667 0.999498 0.000602493 0.0316629 1.77586 + 0.566667 0.999498 0.000602493 0.0316629 1.77586 + 0.633333 0.999498 0.000602493 0.0316629 1.77586 + 0.7 0.999498 0.000602493 0.0316629 1.77586 + 0.766667 0.999498 0.000602493 0.0316629 1.77586 + 0.8 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.992072 0.105452 -0.0683624 0.41817 + 0.3 0.992072 0.105452 -0.0683624 0.41817 + 0.466667 0.992072 0.105452 -0.0683624 0.41817 + 0.566667 0.992072 0.105452 -0.0683624 0.41817 + 0.633333 0.992072 0.105452 -0.0683624 0.41817 + 0.766667 0.992072 0.105452 -0.0683624 0.41817 + 0.8 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.3 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.466667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.566667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.633333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.7 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.766667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.8 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 -0.999997 -0.00231392 0.000606184 5.05864 + 0.3 -0.999997 -0.00231392 0.000606184 5.05864 + 0.466667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.566667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.633333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.7 -0.999997 -0.00231392 0.000606184 5.05864 + 0.766667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.8 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 0.999956 0.00911181 -0.00234505 0.996411 + 0.3 0.999956 0.00911181 -0.00234505 0.996411 + 0.466667 0.999956 0.00911181 -0.00234505 0.996411 + 0.566667 0.999956 0.00911181 -0.00234505 0.996411 + 0.633333 0.999956 0.00911181 -0.00234505 0.996411 + 0.766667 0.999956 0.00911181 -0.00234505 0.996411 + 0.8 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 1 0 0 1.45534 + 0.3 1 0 0 1.45534 + 0.466667 1 0 0 1.45534 + 0.566667 1 0 0 1.45534 + 0.766667 1 0 0 1.45534 + 0.8 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -1 0 0 1.50004 + 0.3 -1 0 0 1.50004 + 0.466667 -1 0 0 1.50004 + 0.566667 -1 0 0 1.50004 + 0.766667 -1 0 0 1.50004 + 0.8 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 0.0116618 0.00183765 -0.99993 0.000285451 + 0.3 -0.37872 0.00199411 -0.925509 0.000305478 + 0.466667 -0.999925 0.0122237 -0.00096048 0.340455 + 0.766667 0.992661 -0.0121423 -0.120317 0.00879509 + 0.8 0.992661 -0.0121423 -0.120317 0.00879509 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 0 0 1 0.00785475 + 0.3 -0.000144932 0 1 0.00785475 + 0.466667 -0.999634 0.0162932 0.0215809 0.357878 + 0.766667 0.803384 -0.0128494 0.595322 0.0108601 + 0.8 0.803384 -0.0128494 0.595322 0.0108601 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 -0.203835 0.581959 -0.787258 0.664599 + 0.766667 -0.203835 0.581959 -0.787258 0.664599 + 0.8 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.3 1 0 0 0.235625 + 0.466667 1 0 0 0.235625 + 0.566667 1 0 0 0.235625 + 0.766667 1 0 0 0.235625 + 0.8 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.239513 0.407154 -0.881396 0.107584 + 0.3 -0.239513 0.407154 -0.881396 0.107584 + 0.466667 -0.239513 0.407154 -0.881396 0.107584 + 0.566667 -0.239513 0.407154 -0.881396 0.107584 + 0.766667 -0.239513 0.407154 -0.881396 0.107584 + 0.8 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.996592 0.0562438 0.0603348 0.563848 + 0.3 0.996592 0.0562438 0.0603348 0.563848 + 0.466667 0.996592 0.0562438 0.0603348 0.563848 + 0.566667 0.996592 0.0562438 0.0603348 0.563848 + 0.766667 0.996592 0.0562438 0.0603348 0.563848 + 0.8 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.3 1 0 0 0.235625 + 0.466667 1 0 0 0.235625 + 0.566667 1 0 0 0.235625 + 0.766667 1 0 0 0.235625 + 0.8 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.732491 0.407443 -0.545387 0.0374183 + 0.3 -0.732491 0.407443 -0.545387 0.0374183 + 0.466667 -0.732491 0.407443 -0.545387 0.0374183 + 0.566667 -0.732491 0.407443 -0.545387 0.0374183 + 0.766667 -0.732491 0.407443 -0.545387 0.0374183 + 0.8 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.997239 -0.0625387 0.0400311 0.366118 + 0.3 0.997239 -0.0625387 0.0400311 0.366118 + 0.466667 0.997239 -0.0625387 0.0400311 0.366118 + 0.566667 0.997239 -0.0625387 0.0400311 0.366118 + 0.766667 0.997239 -0.0625387 0.0400311 0.366118 + 0.8 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0.466667 hit +event 0.566667 snd_footstep +doneanim ccloseh c_nightmare + +#MAXANIM ASCII +newanim cclosel c_nightmare + length 0.8 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.484 1.92753 + 0.3 0 -0.484 1.79907 + 0.466667 0 -0.196112 1.79907 + 0.566667 0 0.151556 1.7211 + 0.766667 0 -0.484 1.92753 + 0.8 0 -0.484 1.92753 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.449002 -0.731899 0.512563 1.65321 + 0.3 0.449002 -0.731899 0.512563 1.65321 + 0.466667 0.449002 -0.731899 0.512563 1.65321 + 0.566667 0.449002 -0.731899 0.512563 1.65321 + 0.766667 0.449002 -0.731899 0.512563 1.65321 + 0.8 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 1.5708 + 0.3 -1 0 0 1.5708 + 0.466667 -1 0 0 1.5708 + 0.566667 -1 0 0 1.5708 + 0.633333 -1 0 0 1.5708 + 0.7 -1 0 0 1.5708 + 0.766667 -1 0 0 1.5708 + 0.8 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.999498 0.000602493 0.0316629 1.77586 + 0.3 0.999498 0.000602493 0.0316629 1.77586 + 0.466667 0.999498 0.000602493 0.0316629 1.77586 + 0.566667 0.999498 0.000602493 0.0316629 1.77586 + 0.633333 0.999498 0.000602493 0.0316629 1.77586 + 0.7 0.999498 0.000602493 0.0316629 1.77586 + 0.766667 0.999498 0.000602493 0.0316629 1.77586 + 0.8 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.992072 0.105452 -0.0683624 0.41817 + 0.3 0.992072 0.105452 -0.0683624 0.41817 + 0.466667 0.992072 0.105452 -0.0683624 0.41817 + 0.566667 0.992072 0.105452 -0.0683624 0.41817 + 0.633333 0.992072 0.105452 -0.0683624 0.41817 + 0.766667 0.992072 0.105452 -0.0683624 0.41817 + 0.8 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.3 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.466667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.566667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.633333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.7 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.766667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.8 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 -0.999997 -0.00231392 0.000606184 5.05864 + 0.3 -0.999997 -0.00231392 0.000606184 5.05864 + 0.466667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.566667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.633333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.7 -0.999997 -0.00231392 0.000606184 5.05864 + 0.766667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.8 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 0.999956 0.00911181 -0.00234505 0.996411 + 0.3 0.999956 0.00911181 -0.00234505 0.996411 + 0.466667 0.999956 0.00911181 -0.00234505 0.996411 + 0.566667 0.999956 0.00911181 -0.00234505 0.996411 + 0.633333 0.999956 0.00911181 -0.00234505 0.996411 + 0.766667 0.999956 0.00911181 -0.00234505 0.996411 + 0.8 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 1 0 0 1.45534 + 0.3 1 0 0 1.45534 + 0.466667 1 0 0 1.45534 + 0.566667 1 0 0 1.45534 + 0.766667 1 0 0 1.45534 + 0.8 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -1 0 0 1.50004 + 0.3 -1 0 0 1.50004 + 0.466667 -1 0 0 1.50004 + 0.566667 -1 0 0 1.50004 + 0.766667 -1 0 0 1.50004 + 0.8 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 0.0116618 0.00183765 -0.99993 0.000285451 + 0.3 -0.37872 0.00199411 -0.925509 0.000305478 + 0.466667 -0.999925 0.0122237 -0.00096048 0.340455 + 0.766667 0.992661 -0.0121423 -0.120317 0.00879511 + 0.8 0.992661 -0.0121424 -0.120317 0.0087951 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 0 0 1 0.00785475 + 0.3 -0.000144931 0 1 0.00785475 + 0.466667 -0.999634 0.0162932 0.0215809 0.357878 + 0.766667 0.803384 -0.0128494 0.595322 0.0108601 + 0.8 0.803384 -0.0128494 0.595322 0.0108601 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 -0.203835 0.581959 -0.787258 0.664599 + 0.766667 -0.203835 0.581959 -0.787258 0.664599 + 0.8 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.3 1 0 0 0.235625 + 0.466667 1 0 0 0.235625 + 0.566667 1 0 0 0.235625 + 0.766667 1 0 0 0.235625 + 0.8 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.239513 0.407154 -0.881396 0.107584 + 0.3 -0.239513 0.407154 -0.881396 0.107584 + 0.466667 -0.239513 0.407154 -0.881396 0.107584 + 0.566667 -0.239513 0.407154 -0.881396 0.107584 + 0.766667 -0.239513 0.407154 -0.881396 0.107584 + 0.8 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.996592 0.0562438 0.0603348 0.563848 + 0.3 0.996592 0.0562438 0.0603348 0.563848 + 0.466667 0.996592 0.0562438 0.0603348 0.563848 + 0.566667 0.996592 0.0562438 0.0603348 0.563848 + 0.766667 0.996592 0.0562438 0.0603348 0.563848 + 0.8 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.3 1 0 0 0.235625 + 0.466667 1 0 0 0.235625 + 0.566667 1 0 0 0.235625 + 0.766667 1 0 0 0.235625 + 0.8 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.732491 0.407443 -0.545387 0.0374183 + 0.3 -0.732491 0.407443 -0.545387 0.0374183 + 0.466667 -0.732491 0.407443 -0.545387 0.0374183 + 0.566667 -0.732491 0.407443 -0.545387 0.0374183 + 0.766667 -0.732491 0.407443 -0.545387 0.0374183 + 0.8 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.997239 -0.0625387 0.0400311 0.366118 + 0.3 0.997239 -0.0625387 0.0400311 0.366118 + 0.466667 0.997239 -0.0625387 0.0400311 0.366118 + 0.566667 0.997239 -0.0625387 0.0400311 0.366118 + 0.766667 0.997239 -0.0625387 0.0400311 0.366118 + 0.8 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0.466667 hit +event 0.566667 snd_footstep +doneanim cclosel c_nightmare + +#MAXANIM ASCII +newanim creach c_nightmare + length 0.7 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0.2 0 -0.484 1.83484 + 0.333333 0 1.19806 2.22016 + 0.466667 0 1.83996 1.9768 + 0.566667 0 1.82251 1.79908 + 0.666667 0 -0.484 1.92753 + 0.7 0 -0.484 1.92753 + endlist + orientationkey + 0.2 -0.608121 -0.510273 0.60812 2.19793 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.449002 -0.731899 0.512563 1.65321 + 0.2 0.449002 -0.731899 0.512563 1.65321 + 0.333333 0.449002 -0.731899 0.512563 1.65321 + 0.466667 0.449002 -0.731899 0.512563 1.65321 + 0.566667 0.449002 -0.731899 0.512563 1.65321 + 0.666667 0.449002 -0.731899 0.512563 1.65321 + 0.7 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 1.5708 + 0.0666667 -1 0 0 1.5708 + 0.133333 -1 0 0 1.5708 + 0.2 -1 0 0 1.5708 + 0.333333 -1 0 0 1.5708 + 0.466667 -1 0 0 1.5708 + 0.566667 -1 0 0 1.5708 + 0.633333 -1 0 0 1.5708 + 0.666667 -1 0 0 1.5708 + 0.7 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.999498 0.000602493 0.0316629 1.77586 + 0.0666667 0.999498 0.000602493 0.0316629 1.77586 + 0.133333 0.999498 0.000602493 0.0316629 1.77586 + 0.2 0.999498 0.000602493 0.0316629 1.77586 + 0.333333 0.999498 0.000602493 0.0316629 1.77586 + 0.466667 0.999498 0.000602493 0.0316629 1.77586 + 0.566667 0.999498 0.000602493 0.0316629 1.77586 + 0.633333 0.999498 0.000602493 0.0316629 1.77586 + 0.666667 0.999498 0.000602493 0.0316629 1.77586 + 0.7 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.992072 0.105452 -0.0683624 0.41817 + 0.2 0.992072 0.105452 -0.0683624 0.41817 + 0.333333 0.992072 0.105452 -0.0683624 0.41817 + 0.466667 0.992072 0.105452 -0.0683624 0.41817 + 0.566667 0.992072 0.105452 -0.0683624 0.41817 + 0.666667 0.992072 0.105452 -0.0683624 0.41817 + 0.7 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.0666667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.133333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.2 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.333333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.466667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.566667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.666667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.7 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 -0.999997 -0.00231392 0.000606184 5.05864 + 0.0666667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.133333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.2 -0.999997 -0.00231392 0.000606184 5.05864 + 0.333333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.466667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.566667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.633333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.666667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.7 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 0.999956 0.00911181 -0.00234505 0.996411 + 0.2 0.999956 0.00911181 -0.00234505 0.996411 + 0.333333 0.999956 0.00911181 -0.00234505 0.996411 + 0.466667 0.999956 0.00911181 -0.00234505 0.996411 + 0.566667 0.999956 0.00911181 -0.00234505 0.996411 + 0.666667 0.999956 0.00911181 -0.00234505 0.996411 + 0.7 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 1 0 0 1.45534 + 0.2 1 0 0 1.45534 + 0.333333 1 0 0 1.45534 + 0.466667 1 0 0 1.45534 + 0.566667 1 0 0 1.45534 + 0.6 1 0 0 1.45534 + 0.666667 1 0 0 1.45534 + 0.7 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -1 0 0 1.50004 + 0.2 -1 0 0 1.50004 + 0.333333 -1 0 0 1.50004 + 0.466667 -1 0 0 1.50004 + 0.566667 -1 0 0 1.50004 + 0.666667 -1 0 0 1.50004 + 0.7 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0.7 0.0116618 0.00183765 -0.99993 0.000285451 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0.7 0 0 1 0.00785475 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 -0.203835 0.581959 -0.787258 0.664599 + 0.2 -0.203835 0.581959 -0.787258 0.664599 + 0.333333 -0.203835 0.581959 -0.787258 0.664599 + 0.466667 -0.203835 0.581959 -0.787258 0.664599 + 0.566667 -0.203835 0.581959 -0.787258 0.664599 + 0.6 -0.203835 0.581959 -0.787258 0.664599 + 0.666667 -0.203835 0.581959 -0.787258 0.664599 + 0.7 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + 0.333333 1 0 0 0.235625 + 0.466667 1 0 0 0.235625 + 0.533333 1 0 0 0.235625 + 0.6 1 0 0 0.235625 + 0.666667 1 0 0 0.235625 + 0.7 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.239513 0.407154 -0.881396 0.107584 + 0.2 -0.239513 0.407154 -0.881396 0.107584 + 0.333333 -0.239513 0.407154 -0.881396 0.107584 + 0.466667 -0.239513 0.407154 -0.881396 0.107584 + 0.5 -0.239513 0.407154 -0.881396 0.107584 + 0.566667 -0.239513 0.407154 -0.881396 0.107584 + 0.633333 -0.239513 0.407154 -0.881396 0.107584 + 0.666667 -0.239513 0.407154 -0.881396 0.107584 + 0.7 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.996592 0.0562438 0.0603348 0.563848 + 0.2 0.996592 0.0562438 0.0603348 0.563848 + 0.333333 0.996592 0.0562438 0.0603348 0.563848 + 0.466667 0.996592 0.0562438 0.0603348 0.563848 + 0.566667 0.996592 0.0562438 0.0603348 0.563848 + 0.633333 0.996592 0.0562438 0.0603348 0.563848 + 0.666667 0.996592 0.0562438 0.0603348 0.563848 + 0.7 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + 0.333333 1 0 0 0.235625 + 0.466667 1 0 0 0.235625 + 0.533333 1 0 0 0.235625 + 0.566667 1 0 0 0.235625 + 0.6 1 0 0 0.235625 + 0.633333 1 0 0 0.235625 + 0.666667 1 0 0 0.235625 + 0.7 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.732491 0.407443 -0.545387 0.0374183 + 0.2 -0.732491 0.407443 -0.545387 0.0374183 + 0.333333 -0.732491 0.407443 -0.545387 0.0374183 + 0.466667 -0.732491 0.407443 -0.545387 0.0374183 + 0.5 -0.732491 0.407443 -0.545387 0.0374183 + 0.533333 -0.732491 0.407443 -0.545387 0.0374183 + 0.566667 -0.732491 0.407443 -0.545387 0.0374183 + 0.633333 -0.732491 0.407443 -0.545387 0.0374183 + 0.666667 -0.732491 0.407443 -0.545387 0.0374183 + 0.7 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.997239 -0.0625387 0.0400311 0.366118 + 0.2 0.997239 -0.0625387 0.0400311 0.366118 + 0.333333 0.997239 -0.0625387 0.0400311 0.366118 + 0.466667 0.997239 -0.0625387 0.0400311 0.366118 + 0.566667 0.997239 -0.0625387 0.0400311 0.366118 + 0.633333 0.997239 -0.0625387 0.0400311 0.366118 + 0.666667 0.997239 -0.0625387 0.0400311 0.366118 + 0.7 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0.666667 hit +event 0.466667 snd_footstep +event 0.5 snd_footstep +event 0.6 snd_footstep +event 0.6 snd_footstep +doneanim creach c_nightmare + +#MAXANIM ASCII +newanim cparryl c_nightmare + length 0.666667 + transtime 0.1 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.484 1.92753 + 0.0333333 0 -0.484 1.92753 + 0.2 0 -0.484 1.78206 + 0.366667 0 -0.484 1.92753 + 0.5 0 -0.484 1.69525 + 0.666667 0 -0.484 1.92753 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.449002 -0.731899 0.512563 1.65321 + 0.0333333 0.449002 -0.731899 0.512563 1.65321 + 0.266667 0.449002 -0.731899 0.512563 1.65321 + 0.366667 0.449002 -0.731899 0.512563 1.65321 + 0.533333 0.449002 -0.731899 0.512563 1.65321 + 0.666667 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 1.5708 + 0.0333333 -1 0 0 1.5708 + 0.2 -1 0 0 1.5708 + 0.366667 -1 0 0 1.5708 + 0.533333 -1 0 0 1.5708 + 0.666667 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.999498 0.000602493 0.0316629 1.77586 + 0.0333333 0.999498 0.000602493 0.0316629 1.77586 + 0.2 0.999498 0.000602493 0.0316629 1.77586 + 0.366667 0.999498 0.000602493 0.0316629 1.77586 + 0.533333 0.999498 0.000602493 0.0316629 1.77586 + 0.666667 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.992072 0.105452 -0.0683624 0.41817 + 0.0333333 0.992072 0.105452 -0.0683624 0.41817 + 0.2 0.992072 0.105452 -0.0683624 0.41817 + 0.366667 0.992072 0.105452 -0.0683624 0.41817 + 0.533333 0.992072 0.105452 -0.0683624 0.41817 + 0.666667 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.0333333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.2 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.366667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.533333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.666667 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 -0.999997 -0.00231392 0.000606184 5.05864 + 0.0333333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.2 -0.999997 -0.00231392 0.000606184 5.05864 + 0.366667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.533333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.666667 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 0.999956 0.00911181 -0.00234505 0.996411 + 0.0333333 0.999956 0.00911181 -0.00234505 0.996411 + 0.2 0.999956 0.00911181 -0.00234505 0.996411 + 0.366667 0.999956 0.00911181 -0.00234505 0.996411 + 0.533333 0.999956 0.00911181 -0.00234505 0.996411 + 0.666667 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 1 0 0 1.45534 + 0.0333333 1 0 0 1.45534 + 0.2 1 0 0 1.45534 + 0.366667 1 0 0 1.45534 + 0.533333 1 0 0 1.45534 + 0.666667 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -1 0 0 1.50004 + 0.0333333 -1 0 0 1.50004 + 0.2 -1 0 0 1.50004 + 0.366667 -1 0 0 1.50004 + 0.533333 -1 0 0 1.50004 + 0.666667 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 0.992661 -0.0121423 -0.120317 0.00879508 + 0.0333333 0.992661 -0.0121423 -0.120317 0.00879508 + 0.266667 0.992655 -0.0121487 -0.120366 0.00878507 + 0.466667 -0.99992 0.0124933 -0.00171929 0.628325 + 0.666667 0.00209582 0 -0.999998 0.00105554 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 0.8034 -0.0128508 0.595301 0.0108604 + 0.0333333 0.803384 -0.0128511 0.595322 0.0108601 + 0.266667 0.803305 -0.0128501 0.595429 0.0108582 + 0.466667 -0.999837 0.0162533 0.00790956 0.767972 + 0.666667 0 0.0260225 0.999661 0.00646591 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 -0.203835 0.581959 -0.787258 0.664599 + 0.0333333 -0.203835 0.581959 -0.787258 0.664599 + 0.666667 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.0333333 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + 0.366667 1 0 0 0.235625 + 0.5 1 0 0 0.235625 + 0.666667 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.239513 0.407154 -0.881396 0.107584 + 0.0333333 -0.239513 0.407154 -0.881396 0.107584 + 0.2 -0.239513 0.407154 -0.881396 0.107584 + 0.366667 -0.239513 0.407154 -0.881396 0.107584 + 0.5 -0.239513 0.407154 -0.881396 0.107584 + 0.666667 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.996592 0.0562438 0.0603348 0.563848 + 0.0333333 0.996592 0.0562438 0.0603348 0.563848 + 0.2 0.996592 0.0562438 0.0603348 0.563848 + 0.366667 0.996592 0.0562438 0.0603348 0.563848 + 0.5 0.996592 0.0562438 0.0603348 0.563848 + 0.666667 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.0333333 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + 0.366667 1 0 0 0.235625 + 0.5 1 0 0 0.235625 + 0.666667 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.732491 0.407443 -0.545387 0.0374183 + 0.0333333 -0.732491 0.407443 -0.545387 0.0374183 + 0.2 -0.732491 0.407443 -0.545387 0.0374183 + 0.366667 -0.732491 0.407443 -0.545387 0.0374183 + 0.5 -0.732491 0.407443 -0.545387 0.0374183 + 0.666667 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.997239 -0.0625387 0.0400311 0.366118 + 0.0333333 0.997239 -0.0625387 0.0400311 0.366118 + 0.2 0.997239 -0.0625387 0.0400311 0.366118 + 0.366667 0.997239 -0.0625387 0.0400311 0.366118 + 0.5 0.997239 -0.0625387 0.0400311 0.366118 + 0.666667 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +doneanim cparryl c_nightmare + +#MAXANIM ASCII +newanim cparryr c_nightmare + length 0.666667 + transtime 0.1 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.484 1.92753 + 0.0333333 0 -0.484 1.92753 + 0.2 0 -0.484 1.78206 + 0.366667 0 -0.484 1.92753 + 0.5 0 -0.484 1.69525 + 0.666667 0 -0.484 1.92753 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.449002 -0.731899 0.512563 1.65321 + 0.0333333 0.449002 -0.731899 0.512563 1.65321 + 0.266667 0.449002 -0.731899 0.512563 1.65321 + 0.366667 0.449002 -0.731899 0.512563 1.65321 + 0.533333 0.449002 -0.731899 0.512563 1.65321 + 0.666667 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 1.5708 + 0.0333333 -1 0 0 1.5708 + 0.2 -1 0 0 1.5708 + 0.366667 -1 0 0 1.5708 + 0.533333 -1 0 0 1.5708 + 0.666667 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.999498 0.000602493 0.0316629 1.77586 + 0.0333333 0.999498 0.000602493 0.0316629 1.77586 + 0.2 0.999498 0.000602493 0.0316629 1.77586 + 0.366667 0.999498 0.000602493 0.0316629 1.77586 + 0.533333 0.999498 0.000602493 0.0316629 1.77586 + 0.666667 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.992072 0.105452 -0.0683624 0.41817 + 0.0333333 0.992072 0.105452 -0.0683624 0.41817 + 0.2 0.992072 0.105452 -0.0683624 0.41817 + 0.366667 0.992072 0.105452 -0.0683624 0.41817 + 0.533333 0.992072 0.105452 -0.0683624 0.41817 + 0.666667 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.0333333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.2 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.366667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.533333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.666667 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 -0.999997 -0.00231392 0.000606184 5.05864 + 0.0333333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.2 -0.999997 -0.00231392 0.000606184 5.05864 + 0.366667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.533333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.666667 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 0.999956 0.00911181 -0.00234505 0.996411 + 0.0333333 0.999956 0.00911181 -0.00234505 0.996411 + 0.2 0.999956 0.00911181 -0.00234505 0.996411 + 0.366667 0.999956 0.00911181 -0.00234505 0.996411 + 0.533333 0.999956 0.00911181 -0.00234505 0.996411 + 0.666667 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 1 0 0 1.45534 + 0.0333333 1 0 0 1.45534 + 0.2 1 0 0 1.45534 + 0.366667 1 0 0 1.45534 + 0.533333 1 0 0 1.45534 + 0.666667 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -1 0 0 1.50004 + 0.0333333 -1 0 0 1.50004 + 0.2 -1 0 0 1.50004 + 0.366667 -1 0 0 1.50004 + 0.533333 -1 0 0 1.50004 + 0.666667 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 0.992661 -0.0121423 -0.120317 0.00879508 + 0.0333333 0.992661 -0.0121423 -0.120317 0.00879508 + 0.266667 0.992655 -0.0121487 -0.120366 0.00878507 + 0.466667 -0.99992 0.0124933 -0.00171929 0.628325 + 0.666667 0.00209582 0 -0.999998 0.00105554 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 0.803384 -0.0128493 0.595322 0.0108601 + 0.0333333 0.803384 -0.0128493 0.595322 0.0108601 + 0.266667 0.803305 -0.0128503 0.595429 0.0108582 + 0.466667 -0.999837 0.0162533 0.00790956 0.767972 + 0.666667 0 0.0260224 0.999661 0.00646591 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 -0.203835 0.581959 -0.787258 0.664599 + 0.0333333 -0.203835 0.581959 -0.787258 0.664599 + 0.666667 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.0333333 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + 0.366667 1 0 0 0.235625 + 0.5 1 0 0 0.235625 + 0.666667 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.239513 0.407154 -0.881396 0.107584 + 0.0333333 -0.239513 0.407154 -0.881396 0.107584 + 0.2 -0.239513 0.407154 -0.881396 0.107584 + 0.366667 -0.239513 0.407154 -0.881396 0.107584 + 0.5 -0.239513 0.407154 -0.881396 0.107584 + 0.666667 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.996592 0.0562438 0.0603348 0.563848 + 0.0333333 0.996592 0.0562438 0.0603348 0.563848 + 0.2 0.996592 0.0562438 0.0603348 0.563848 + 0.366667 0.996592 0.0562438 0.0603348 0.563848 + 0.5 0.996592 0.0562438 0.0603348 0.563848 + 0.666667 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.0333333 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + 0.366667 1 0 0 0.235625 + 0.5 1 0 0 0.235625 + 0.666667 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.732491 0.407443 -0.545387 0.0374183 + 0.0333333 -0.732491 0.407443 -0.545387 0.0374183 + 0.2 -0.732491 0.407443 -0.545387 0.0374183 + 0.366667 -0.732491 0.407443 -0.545387 0.0374183 + 0.5 -0.732491 0.407443 -0.545387 0.0374183 + 0.666667 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.997239 -0.0625387 0.0400311 0.366118 + 0.0333333 0.997239 -0.0625387 0.0400311 0.366118 + 0.2 0.997239 -0.0625387 0.0400311 0.366118 + 0.366667 0.997239 -0.0625387 0.0400311 0.366118 + 0.5 0.997239 -0.0625387 0.0400311 0.366118 + 0.666667 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +doneanim cparryr c_nightmare + +#MAXANIM ASCII +newanim cdodges c_nightmare + length 0.666667 + transtime 0.1 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.484 1.92753 + 0.0333333 0 -0.484 1.92753 + 0.2 0 -0.484 1.78206 + 0.366667 0 -0.484 1.92753 + 0.5 0 -0.484 1.69525 + 0.666667 0 -0.484 1.92753 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.449002 -0.731899 0.512563 1.65321 + 0.0333333 0.449002 -0.731899 0.512563 1.65321 + 0.266667 0.449002 -0.731899 0.512563 1.65321 + 0.366667 0.449002 -0.731899 0.512563 1.65321 + 0.533333 0.449002 -0.731899 0.512563 1.65321 + 0.666667 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 1.5708 + 0.0333333 -1 0 0 1.5708 + 0.2 -1 0 0 1.5708 + 0.366667 -1 0 0 1.5708 + 0.533333 -1 0 0 1.5708 + 0.666667 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.999498 0.000602493 0.0316629 1.77586 + 0.0333333 0.999498 0.000602493 0.0316629 1.77586 + 0.2 0.999498 0.000602493 0.0316629 1.77586 + 0.366667 0.999498 0.000602493 0.0316629 1.77586 + 0.533333 0.999498 0.000602493 0.0316629 1.77586 + 0.666667 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.992072 0.105452 -0.0683624 0.41817 + 0.0333333 0.992072 0.105452 -0.0683624 0.41817 + 0.2 0.992072 0.105452 -0.0683624 0.41817 + 0.366667 0.992072 0.105452 -0.0683624 0.41817 + 0.533333 0.992072 0.105452 -0.0683624 0.41817 + 0.666667 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.0333333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.2 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.366667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.533333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.666667 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 -0.999997 -0.00231392 0.000606184 5.05864 + 0.0333333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.2 -0.999997 -0.00231392 0.000606184 5.05864 + 0.366667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.533333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.666667 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 0.999956 0.00911181 -0.00234505 0.996411 + 0.0333333 0.999956 0.00911181 -0.00234505 0.996411 + 0.2 0.999956 0.00911181 -0.00234505 0.996411 + 0.366667 0.999956 0.00911181 -0.00234505 0.996411 + 0.533333 0.999956 0.00911181 -0.00234505 0.996411 + 0.666667 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 1 0 0 1.45534 + 0.0333333 1 0 0 1.45534 + 0.2 1 0 0 1.45534 + 0.366667 1 0 0 1.45534 + 0.533333 1 0 0 1.45534 + 0.666667 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -1 0 0 1.50004 + 0.0333333 -1 0 0 1.50004 + 0.2 -1 0 0 1.50004 + 0.366667 -1 0 0 1.50004 + 0.533333 -1 0 0 1.50004 + 0.666667 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 0.992661 -0.0121423 -0.120317 0.00879508 + 0.0333333 0.992661 -0.0121423 -0.120317 0.00879508 + 0.266667 0.992655 -0.0121487 -0.120366 0.00878507 + 0.466667 -0.99992 0.0124933 -0.00171929 0.628325 + 0.666667 0.00209582 0 -0.999998 0.00105554 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 0.803384 -0.0128493 0.595322 0.0108601 + 0.0333333 0.803384 -0.0128493 0.595322 0.0108601 + 0.266667 0.803305 -0.0128503 0.595429 0.0108582 + 0.466667 -0.999837 0.0162533 0.00790956 0.767972 + 0.666667 0 0.0260223 0.999661 0.00646591 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 -0.203835 0.581959 -0.787258 0.664599 + 0.0333333 -0.203835 0.581959 -0.787258 0.664599 + 0.666667 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.0333333 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + 0.366667 1 0 0 0.235625 + 0.5 1 0 0 0.235625 + 0.666667 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.239513 0.407154 -0.881396 0.107584 + 0.0333333 -0.239513 0.407154 -0.881396 0.107584 + 0.2 -0.239513 0.407154 -0.881396 0.107584 + 0.366667 -0.239513 0.407154 -0.881396 0.107584 + 0.5 -0.239513 0.407154 -0.881396 0.107584 + 0.666667 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.996592 0.0562438 0.0603348 0.563848 + 0.0333333 0.996592 0.0562438 0.0603348 0.563848 + 0.2 0.996592 0.0562438 0.0603348 0.563848 + 0.366667 0.996592 0.0562438 0.0603348 0.563848 + 0.5 0.996592 0.0562438 0.0603348 0.563848 + 0.666667 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.0333333 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + 0.366667 1 0 0 0.235625 + 0.5 1 0 0 0.235625 + 0.666667 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.732491 0.407443 -0.545387 0.0374183 + 0.0333333 -0.732491 0.407443 -0.545387 0.0374183 + 0.2 -0.732491 0.407443 -0.545387 0.0374183 + 0.366667 -0.732491 0.407443 -0.545387 0.0374183 + 0.5 -0.732491 0.407443 -0.545387 0.0374183 + 0.666667 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.997239 -0.0625387 0.0400311 0.366118 + 0.0333333 0.997239 -0.0625387 0.0400311 0.366118 + 0.2 0.997239 -0.0625387 0.0400311 0.366118 + 0.366667 0.997239 -0.0625387 0.0400311 0.366118 + 0.5 0.997239 -0.0625387 0.0400311 0.366118 + 0.666667 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +doneanim cdodges c_nightmare + +#MAXANIM ASCII +newanim cdamagel c_nightmare + length 0.166667 + transtime 0.1 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.484 1.92753 + 0.0666667 0 -1.29497 1.92753 + 0.166667 0 -0.484 1.92753 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.449002 -0.731899 0.512563 1.65321 + 0.0666667 0.449002 -0.731899 0.512563 1.65321 + 0.166667 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 1.5708 + 0.0666667 -1 0 0 1.5708 + 0.166667 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.999498 0.000602493 0.0316629 1.77586 + 0.0666667 0.999498 0.000602493 0.0316629 1.77586 + 0.166667 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.992072 0.105452 -0.0683624 0.41817 + 0.0666667 0.992072 0.105452 -0.0683624 0.41817 + 0.166667 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.0666667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.166667 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 -0.999997 -0.00231392 0.000606184 5.05864 + 0.0666667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.166667 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 0.999956 0.00911181 -0.00234505 0.996411 + 0.0666667 0.999956 0.00911181 -0.00234505 0.996411 + 0.166667 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 1 0 0 1.45534 + 0.0666667 1 0 0 1.45534 + 0.166667 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -1 0 0 1.50004 + 0.0666667 -1 0 0 1.50004 + 0.166667 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 0.00206598 0 -0.999998 0.00105554 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 0.000112832 0.0260211 0.999661 0.00646591 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 -0.203835 0.581959 -0.787258 0.664599 + 0.0666667 -0.203835 0.581959 -0.787258 0.664599 + 0.166667 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.0666667 1 0 0 0.235625 + 0.166667 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.239513 0.407154 -0.881396 0.107584 + 0.0666667 -0.239513 0.407154 -0.881396 0.107584 + 0.166667 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.996592 0.0562438 0.0603348 0.563848 + 0.0666667 0.996592 0.0562438 0.0603348 0.563848 + 0.166667 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.0666667 1 0 0 0.235625 + 0.166667 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.732491 0.407443 -0.545387 0.0374183 + 0.0666667 -0.732491 0.407443 -0.545387 0.0374183 + 0.166667 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.997239 -0.0625387 0.0400311 0.366118 + 0.0666667 0.997239 -0.0625387 0.0400311 0.366118 + 0.166667 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0 hit +doneanim cdamagel c_nightmare + +#MAXANIM ASCII +newanim cdamager c_nightmare + length 0.2 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0.0333333 0 -0.484 1.78206 + 0.2 0 -0.484 1.92753 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0.1 0.449002 -0.731899 0.512563 1.65321 + 0.2 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0.0333333 -1 0 0 1.5708 + 0.2 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0.0333333 0.999498 0.000602493 0.0316629 1.77586 + 0.2 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0.0333333 0.992072 0.105452 -0.0683624 0.41817 + 0.2 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0.0333333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.2 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0.0333333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.2 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0.0333333 0.999956 0.00911181 -0.00234505 0.996411 + 0.2 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0.0333333 1 0 0 1.45534 + 0.2 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0.0333333 -1 0 0 1.50004 + 0.2 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0.1 0.992655 -0.0121487 -0.120366 0.00878507 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0.1 0.803321 -0.0128512 0.595407 0.0108585 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0.0333333 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0.0333333 -0.239513 0.407154 -0.881396 0.107584 + 0.2 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0.0333333 0.996592 0.0562438 0.0603348 0.563848 + 0.2 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0.0333333 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0.0333333 -0.732491 0.407443 -0.545387 0.0374183 + 0.2 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0.0333333 0.997239 -0.0625387 0.0400311 0.366118 + 0.2 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0.566667 hit +doneanim cdamager c_nightmare + +#MAXANIM ASCII +newanim cdamages c_nightmare + length 0.166667 + transtime 0.1 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.484 1.92753 + 0.0666667 0 -1.29497 1.92753 + 0.166667 0 -0.484 1.92753 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.449002 -0.731899 0.512563 1.65321 + 0.0666667 0.449002 -0.731899 0.512563 1.65321 + 0.166667 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 1.5708 + 0.0666667 -1 0 0 1.5708 + 0.166667 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.999498 0.000602493 0.0316629 1.77586 + 0.0666667 0.999498 0.000602493 0.0316629 1.77586 + 0.166667 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.992072 0.105452 -0.0683624 0.41817 + 0.0666667 0.992072 0.105452 -0.0683624 0.41817 + 0.166667 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.0666667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.166667 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 -0.999997 -0.00231392 0.000606184 5.05864 + 0.0666667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.166667 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 0.999956 0.00911181 -0.00234505 0.996411 + 0.0666667 0.999956 0.00911181 -0.00234505 0.996411 + 0.166667 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 1 0 0 1.45534 + 0.0666667 1 0 0 1.45534 + 0.166667 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -1 0 0 1.50004 + 0.0666667 -1 0 0 1.50004 + 0.166667 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 0.00206598 0 -0.999998 0.00105554 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 0.000112832 0.0260212 0.999661 0.00646591 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 -0.203835 0.581959 -0.787258 0.664599 + 0.0666667 -0.203835 0.581959 -0.787258 0.664599 + 0.166667 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.0666667 1 0 0 0.235625 + 0.166667 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.239513 0.407154 -0.881396 0.107584 + 0.0666667 -0.239513 0.407154 -0.881396 0.107584 + 0.166667 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.996592 0.0562438 0.0603348 0.563848 + 0.0666667 0.996592 0.0562438 0.0603348 0.563848 + 0.166667 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.0666667 1 0 0 0.235625 + 0.166667 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.732491 0.407443 -0.545387 0.0374183 + 0.0666667 -0.732491 0.407443 -0.545387 0.0374183 + 0.166667 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.997239 -0.0625387 0.0400311 0.366118 + 0.0666667 0.997239 -0.0625387 0.0400311 0.366118 + 0.166667 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0 hit +doneanim cdamages c_nightmare + +#MAXANIM ASCII +newanim ckdbck c_nightmare + length 0.766667 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.484 1.92753 + 0.2 0 -0.484 1.92753 + 0.366667 0 -0.484 0.901543 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.449002 -0.731899 0.512563 1.65321 + 0.2 0.449002 -0.731899 0.512563 1.65321 + 0.366667 0.449002 -0.731899 0.512563 1.65321 + 0.566667 0.449002 -0.731899 0.512563 1.65321 + 0.733333 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 1.5708 + 0.2 -1 0 0 1.5708 + 0.366667 -1 0 0 1.5708 + 0.533333 -1 0 0 1.5708 + 0.733333 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.999498 0.000602493 0.0316629 1.77586 + 0.2 0.999498 0.000602493 0.0316629 1.77586 + 0.366667 0.999498 0.000602493 0.0316629 1.77586 + 0.533333 0.999498 0.000602493 0.0316629 1.77586 + 0.733333 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.992072 0.105452 -0.0683624 0.41817 + 0.2 0.992072 0.105452 -0.0683624 0.41817 + 0.533333 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.2 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.533333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.733333 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 -0.999997 -0.00231392 0.000606184 5.05864 + 0.2 -0.999997 -0.00231392 0.000606184 5.05864 + 0.366667 -0.999997 -0.00231392 0.000606184 5.05864 + 0.533333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.733333 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 0.999956 0.00911181 -0.00234505 0.996411 + 0.2 0.999956 0.00911181 -0.00234505 0.996411 + 0.366667 0.999956 0.00911181 -0.00234505 0.996411 + 0.533333 0.999956 0.00911181 -0.00234505 0.996411 + 0.566667 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 1 0 0 1.45534 + 0.2 1 0 0 1.45534 + 0.366667 1 0 0 1.45534 + 0.533333 1 0 0 1.45534 + 0.733333 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -1 0 0 1.50004 + 0.2 -1 0 0 1.50004 + 0.366667 -1 0 0 1.50004 + 0.733333 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + positionkey + 0.2 0.0723385 -0.163484 0.191583 + endlist + orientationkey + 0 0.00206598 0 -0.999998 0.00105554 + 0.2 0.00356424 0 -0.999994 0.00105555 + 0.366667 -0.999996 -0.00194568 -0.00196113 0.698135 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 0.000115131 0.0260211 0.999661 0.0064659 + 0.2 -0.000695858 0.0260143 0.999661 0.00646602 + 0.366667 -0.999965 0.00204039 0.00805277 0.715614 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 -0.203835 0.581959 -0.787258 0.664599 + 0.2 -0.203835 0.581959 -0.787258 0.664599 + 0.366667 -0.203835 0.581959 -0.787258 0.664599 + 0.533333 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + 0.366667 1 0 0 0.235625 + 0.533333 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.239513 0.407154 -0.881396 0.107584 + 0.2 -0.239513 0.407154 -0.881396 0.107584 + 0.366667 -0.239513 0.407154 -0.881396 0.107584 + 0.533333 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.996592 0.0562438 0.0603348 0.563848 + 0.2 0.996592 0.0562438 0.0603348 0.563848 + 0.366667 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.2 1 0 0 0.235625 + 0.366667 1 0 0 0.235625 + 0.533333 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.732491 0.407443 -0.545387 0.0374183 + 0.2 -0.732491 0.407443 -0.545387 0.0374183 + 0.366667 -0.732491 0.407443 -0.545387 0.0374183 + 0.533333 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.997239 -0.0625387 0.0400311 0.366118 + 0.2 0.997239 -0.0625387 0.0400311 0.366118 + 0.366667 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0.366667 snd_hitground +doneanim ckdbck c_nightmare + +#MAXANIM ASCII +newanim ckdbckps c_nightmare + length 0.166667 + transtime 0.2 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0.0666667 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0.0666667 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0.0666667 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0.0666667 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0.0666667 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0.0666667 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0.0666667 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g +endnode +node trimesh Ear_Right_g01 + parent Head_g +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +doneanim ckdbckps c_nightmare + +#MAXANIM ASCII +newanim ckdbckdie c_nightmare + length 0.366667 + transtime 0.2 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0.0333333 0 -0.484 0.901543 + 0.166667 0.368753 -0.484 0.901543 + 0.3 0.696 -0.484 0.541523 + 0.366667 0.696 -0.484 0.541523 + endlist + orientationkey + 0.366667 -0.608121 -0.510273 0.60812 2.19793 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0.0333333 0.449002 -0.731899 0.512563 1.65321 + 0.3 0.449002 -0.731899 0.512563 1.65321 + 0.333333 0.449002 -0.731899 0.512563 1.65321 + 0.366667 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0.0333333 -1 0 0 1.5708 + 0.3 -1 0 0 1.5708 + 0.366667 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0.0333333 0.999498 0.000602493 0.0316629 1.77586 + 0.3 0.999498 0.000602493 0.0316629 1.77586 + 0.366667 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0.0333333 0.992072 0.105452 -0.0683624 0.41817 + 0.3 0.992072 0.105452 -0.0683624 0.41817 + 0.366667 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0.0333333 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.366667 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0.0333333 -0.999997 -0.00231392 0.000606184 5.05864 + 0.366667 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0.0333333 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0.0333333 1 0 0 1.45534 + 0.3 1 0 0 1.45534 + 0.366667 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0.0333333 -1 0 0 1.50004 + 0.3 -1 0 0 1.50004 + 0.366667 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0.0333333 -0.999996 -0.00194568 -0.00196113 0.698135 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0.0333333 -0.999965 0.00204046 0.00805254 0.715619 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0.0333333 -0.203835 0.581959 -0.787258 0.664599 + 0.3 -0.203835 0.581959 -0.787258 0.664599 + 0.366667 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0.0333333 1 0 0 0.235625 + 0.3 1 0 0 0.235625 + 0.366667 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0.0333333 -0.239513 0.407154 -0.881396 0.107584 + 0.3 -0.239513 0.407154 -0.881396 0.107584 + 0.366667 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0.0333333 0.996592 0.0562438 0.0603348 0.563848 + 0.366667 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0.0333333 1 0 0 0.235625 + 0.3 1 0 0 0.235625 + 0.366667 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0.0333333 -0.732491 0.407443 -0.545387 0.0374183 + 0.3 -0.732491 0.407443 -0.545387 0.0374183 + 0.366667 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0.0333333 0.997239 -0.0625387 0.0400311 0.366118 + 0.3 0.997239 -0.0625387 0.0400311 0.366118 + 0.366667 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0.266667 snd_hitground +doneanim ckdbckdie c_nightmare + +#MAXANIM ASCII +newanim cdead c_nightmare + length 0 + transtime 0 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0.696 -0.484 0.541523 + endlist + orientationkey + 0 -0.608121 -0.510273 0.60812 2.19793 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g +endnode +node trimesh Ear_Right_g01 + parent Head_g +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +doneanim cdead c_nightmare + +#MAXANIM ASCII +newanim ccwalkl c_nightmare + length 0.333333 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.484 1.92753 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.449002 -0.731899 0.512563 1.65321 + 0.333333 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 1.5708 + 0.166667 -1 0 0 1.5708 + 0.333333 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.999498 0.000602493 0.0316629 1.77586 + 0.333333 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.992072 0.105452 -0.0683624 0.41817 + 0.333333 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.166667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.333333 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 -0.999997 -0.00231392 0.000606184 5.05864 + 0.333333 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 0.999956 0.00911181 -0.00234505 0.996411 + 0.333333 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 1 0 0 1.45534 + 0.166667 1 0 0 1.45534 + 0.333333 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -1 0 0 1.50004 + 0.166667 -1 0 0 1.50004 + 0.333333 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 0 0 0 0 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 0 0 0 0 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 -0.203835 0.581959 -0.787258 0.664599 + 0.333333 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.166667 1 0 0 0.235625 + 0.333333 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.239513 0.407154 -0.881396 0.107584 + 0.333333 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.996592 0.0562438 0.0603348 0.563848 + 0.333333 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.166667 1 0 0 0.235625 + 0.333333 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.732491 0.407443 -0.545387 0.0374183 + 0.333333 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.997239 -0.0625387 0.0400311 0.366118 + 0.333333 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0.3 snd_footstep +event 0.166667 snd_footstep +doneanim ccwalkl c_nightmare + +#MAXANIM ASCII +newanim ccwalkr c_nightmare + length 0.333333 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0 0 -0.484 1.92753 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0 0.449002 -0.731899 0.512563 1.65321 + 0.333333 0.449002 -0.731899 0.512563 1.65321 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0 -1 0 0 1.5708 + 0.166667 -1 0 0 1.5708 + 0.333333 -1 0 0 1.5708 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0 0.999498 0.000602493 0.0316629 1.77586 + 0.333333 0.999498 0.000602493 0.0316629 1.77586 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0 0.992072 0.105452 -0.0683624 0.41817 + 0.333333 0.992072 0.105452 -0.0683624 0.41817 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.166667 -0.999977 -0.00136269 -0.00659239 1.56458 + 0.333333 -0.999977 -0.00136269 -0.00659239 1.56458 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0 -0.999997 -0.00231392 0.000606184 5.05864 + 0.333333 -0.999997 -0.00231392 0.000606184 5.05864 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0 0.999956 0.00911181 -0.00234505 0.996411 + 0.333333 0.999956 0.00911181 -0.00234505 0.996411 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0 1 0 0 1.45534 + 0.166667 1 0 0 1.45534 + 0.333333 1 0 0 1.45534 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0 -1 0 0 1.50004 + 0.166667 -1 0 0 1.50004 + 0.333333 -1 0 0 1.50004 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0 0 0 0 0 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0 0 0 0 0 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0 -0.203835 0.581959 -0.787258 0.664599 + 0.333333 -0.203835 0.581959 -0.787258 0.664599 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.166667 1 0 0 0.235625 + 0.333333 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0 -0.239513 0.407154 -0.881396 0.107584 + 0.333333 -0.239513 0.407154 -0.881396 0.107584 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0 0.996592 0.0562438 0.0603348 0.563848 + 0.333333 0.996592 0.0562438 0.0603348 0.563848 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0 1 0 0 0.235625 + 0.166667 1 0 0 0.235625 + 0.333333 1 0 0 0.235625 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0 -0.732491 0.407443 -0.545387 0.0374183 + 0.333333 -0.732491 0.407443 -0.545387 0.0374183 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0 0.997239 -0.0625387 0.0400311 0.366118 + 0.333333 0.997239 -0.0625387 0.0400311 0.366118 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0.166667 snd_footstep +event 0.3 snd_footstep +doneanim ccwalkr c_nightmare + +#MAXANIM ASCII +newanim ccwalkf c_nightmare + length -16.2333 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare +endnode +node trimesh Torso_g + parent rootdummy +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g +endnode +node trimesh Head_g + parent Neck_g +endnode +node trimesh Ear_Left_g + parent Head_g +endnode +node trimesh Ear_Right_g01 + parent Head_g +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0 snd_footstep +event 0 snd_footstep +doneanim ccwalkf c_nightmare + +#MAXANIM ASCII +newanim ccwalkb c_nightmare + length 0.333333 + transtime 0.3 + animroot c_nightmare +node dummy c_nightmare + parent NULL +endnode +node dummy rootdummy + parent c_nightmare + positionkey + 0.233333 0 -0.492866 1.92753 + endlist + orientationkey + 0.233333 -0.608122 -0.510272 0.60812 2.19793 + endlist +endnode +node trimesh Torso_g + parent rootdummy + orientationkey + 0.0666667 0.572246 -0.587427 0.572245 2.07935 + 0.133333 0.540716 -0.644401 0.540716 1.99674 + 0.233333 0.57541 -0.581212 0.575409 2.08861 + 0.266667 -0.535546 0.646317 -0.543567 4.27983 + 0.3 -0.567007 0.597501 -0.567006 4.21875 + endlist +endnode +node trimesh Leg_Front_Left_Calf_g + parent Torso_g + orientationkey + 0.133333 -1 0 0 0.855215 + 0.233333 0 0 0 0 + 0.266667 0 0 0 0 + 0.3 -1 0 0 0.715586 + 0.333333 -1 0 0 0.742445 + endlist +endnode +node trimesh Leg_Front_Left_Shin_g + parent Leg_Front_Left_Calf_g + orientationkey + 0.0666667 0.999376 0.00207695 0.0352747 0.851476 + 0.133333 0.998298 0.0185561 0.055281 0.440795 + 0.233333 0.999989 0.00023911 0.000234607 0 + 0.266667 0.276615 -0.801369 -0.530366 0 + 0.3 1 0 0 0.483975 + 0.333333 1 0 0 1.5661 + endlist +endnode +node trimesh Leg_Front_Left_Foot_g + parent Leg_Front_Left_Shin_g + orientationkey + 0.0666667 0.998799 0.0468611 -0.0143193 0.284982 + 0.133333 0.944117 0.280869 -0.172497 0.0596871 + 0.233333 0 0 0 0 + 0.266667 0.013599 -0.979894 0.199052 0 + 0.3 0.966126 0.218316 -0.137617 0.0763998 + endlist +endnode +node emitter Fire02 + parent Leg_Front_Left_Shin_g +endnode +node trimesh Leg_Front_Right_Calf_g + parent Torso_g + orientationkey + 0.133333 -0.999936 0.00163581 -0.0111843 0.866472 + 0.233333 0 0 0 6.28319 + 0.266667 -0.000243968 0.000242299 -1 6.27681 + 0.3 1 0 0 5.58505 + 0.333333 0.999244 -0.00317019 -0.0387579 6.11914 + endlist +endnode +node trimesh Leg_Front_Right_Shin_g + parent Leg_Front_Right_Calf_g + orientationkey + 0.0666667 0.999975 0.00583433 -0.00391539 0.627654 + 0.133333 0.999981 -0.00594171 0.00131752 0.263561 + 0.233333 0 0 0 0 + 0.266667 0.00908127 0.00282932 -0.999955 0.00048399 + 0.3 1 0 0 0.333352 + 0.333333 -0.999981 0.00612722 0.000284548 4.87226 + endlist +endnode +node trimesh Leg_Front_Right_Foot_g + parent Leg_Front_Right_Shin_g + orientationkey + 0.0666667 0.999913 0.0116377 -0.0061876 0.479628 + 0.133333 0.999924 0.0120756 -0.00263729 0.221836 + 0.233333 0 0 0 0 + 0.266667 -0.00142759 0.481539 0.876424 0.00547028 + 0.3 1 0 0 0.294966 + endlist +endnode +node emitter Fire01 + parent Leg_Front_Right_Shin_g +endnode +node trimesh Neck_g + parent Torso_g + orientationkey + 0.0666667 1 0 0 0.605625 + 0.133333 1 0 0 0.305436 + 0.233333 1 0 0 0.151555 + 0.266667 0.585238 0.602566 0.542595 0 + 0.3 1 0 0 0.392695 + endlist +endnode +node trimesh Head_g + parent Neck_g + orientationkey + 0.0666667 -1 0 0 0.764245 + 0.133333 -1 0 0 0.0174532 + 0.233333 -1 0 0 0.33437 + 0.266667 -0.0642637 0.987065 0.146933 6.28318 + 0.3 1 0 0 5.89921 + endlist +endnode +node trimesh Ear_Left_g + parent Head_g + orientationkey + 0.233333 0 0 0 0 + endlist +endnode +node trimesh Ear_Right_g01 + parent Head_g + orientationkey + 0.233333 -0.997362 0.0461267 0.0560532 0.145347 + endlist +endnode +node emitter Mane03 + parent Head_g +endnode +node emitter Fire06 + parent Head_g +endnode +node emitter Fire05 + parent Head_g +endnode +node emitter R_eye01 + parent Head_g +endnode +node emitter L_eye01 + parent R_eye01 +endnode +node emitter Mane05 + parent Head_g +endnode +node emitter Mane02 + parent Neck_g +endnode +node emitter Mane01 + parent Neck_g +endnode +node emitter Mane04 + parent Neck_g +endnode +node trimesh abdomen_g + parent rootdummy + orientationkey + 0.0666667 0.488066 -0.72359 0.488066 1.88883 + 0.166667 0.57735 -0.577351 0.577349 2.0944 + 0.233333 0.541875 -0.642453 0.541873 1.99949 + 0.266667 0.540595 -0.644453 0.540774 1.99691 + 0.3 0.540716 -0.644401 0.540715 1.99674 + endlist +endnode +node trimesh Leg_Rear_Left_Calf_g + parent abdomen_g + orientationkey + 0.133333 1 0 0 0.235625 + 0.233333 0 0 0 0 + 0.266667 0.168469 0.195576 -0.966089 0 + 0.3 0 0 0 0 + endlist +endnode +node trimesh Leg_Rear_Left_Shin_g + parent Leg_Rear_Left_Calf_g + orientationkey + 0.0666667 -0.942649 0.0978361 -0.319125 0.157035 + 0.133333 0.919339 0.165004 -0.357196 0.133178 + 0.233333 0.999836 0.0041016 -0.0177615 0 + 0.266667 -0.0633228 -0.419039 0.905752 0 + 0.3 0 0 0 0 + endlist +endnode +node trimesh Leg_Rear_Left_Foot_g + parent Leg_Rear_Left_Shin_g + orientationkey + 0.0666667 0.997755 0.0513259 0.043029 0.181232 + 0.133333 0.99834 0.0488415 0.0305257 0.381917 + 0.233333 0 0 0 0 + 0.266667 0.000215261 0.0654026 -0.997859 0.0031371 + 0.3 0 0.000742843 1 0.0148887 + endlist +endnode +node emitter Fire04 + parent Leg_Rear_Left_Shin_g +endnode +node trimesh Leg_Rear_Right_Calf_g + parent abdomen_g + orientationkey + 0.133333 1 0 0 0.235625 + 0.233333 0 0 0 0 + 0.266667 0.0179022 0.0346791 0.999237 0 + 0.3 0 0 0 0 + endlist +endnode +node trimesh Leg_Rear_Right_Shin_g + parent Leg_Rear_Right_Calf_g + orientationkey + 0.0666667 -0.998348 0.0240675 -0.0521771 0.223505 + 0.133333 0.997857 0.0391636 -0.0524234 0.196165 + 0.233333 0 0 0 0 + 0.266667 -0.318008 0.0287712 0.947635 0 + 0.3 0 0 0 0 + endlist +endnode +node trimesh Leg_Rear_Right_Foot_g + parent Leg_Rear_Right_Shin_g + orientationkey + 0.0666667 0.992324 -0.103067 0.06834 0.113615 + 0.133333 0.998634 -0.0422023 0.0307978 0.252705 + 0.233333 0 0 0 0 + 0.266667 0.25792 0.920784 0.29261 0 + 0.3 0 0 0 0 + endlist +endnode +node emitter Fire03 + parent Leg_Rear_Right_Shin_g +endnode +node emitter Tail01 + parent rootdummy +endnode +node emitter Tail02 + parent rootdummy +endnode +event 0 snd_footstep +event 0 snd_footstep +doneanim ccwalkb c_nightmare +donemodel c_nightmare diff --git a/tests/fixtures/oracle/ascii/ctl_compass.mdl b/tests/fixtures/oracle/ascii/ctl_compass.mdl new file mode 100644 index 0000000..4548c71 --- /dev/null +++ b/tests/fixtures/oracle/ascii/ctl_compass.mdl @@ -0,0 +1,581 @@ +#MAXMODEL ASCII +# model: ctl_compass +filedependancy ctl_compass.max +newmodel ctl_compass +setsupermodel ctl_compass NULL +setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom ctl_compass +node dummy ctl_compass + parent NULL + #part-number 0 +endnode +node trimesh Box01 + parent ctl_compass + #part-number 1 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap gui_compass3 + verts 144 + 0.136974007 -0.228325993 0.0636655986 + -0.159554005 -0.228325993 0.0636655986 + 0.136974007 -0.228325993 0.0245012008 + -0.158316001 -0.228325993 0.0245012008 + 0.180554003 -0.198409006 0.0736524984 + 0.180554003 -0.234404996 0.0736524984 + 0.180554003 -0.198409006 0.0145143 + 0.180554003 -0.234404996 0.0145143 + -0.202189997 -0.235238999 0.0750231966 + -0.202189997 -0.197575003 0.0750231966 + -0.202189997 -0.235238999 0.0131435003 + -0.202189997 -0.197575003 0.0131435003 + 0.136974007 -0.204487994 0.0636655986 + 0.145000994 -0.234404996 0.0736524984 + 0.145000994 -0.198409006 0.0736524984 + 0.136974007 -0.204487994 0.0245012008 + 0.145000994 -0.198409006 0.0145143 + 0.145000994 -0.234404996 0.0145143 + -0.159554005 -0.204487994 0.0636655986 + -0.166344002 -0.197575003 0.0750231966 + -0.166344002 -0.235238999 0.0750231966 + -0.158316001 -0.204487994 0.0245012008 + -0.166344002 -0.235238999 0.0131435003 + -0.166344002 -0.197575003 0.0131435003 + -0.0112902001 -0.875326991 0.0717618987 + -0.119230002 -0.815811992 0.128969997 + -0.132498994 -0.851216972 0.0717618987 + -0.0112902001 -0.837283015 0.128969997 + -0.110316999 -0.797665 0.0677091032 + -0.0112902001 -0.817363024 0.0677091032 + -0.210737005 -0.754669011 0.128969997 + -0.235255003 -0.782558024 0.0717618987 + -0.194269001 -0.741571009 0.0677091032 + -0.271880001 -0.663161993 0.128969997 + -0.303914994 -0.679800987 0.0717618987 + -0.250362992 -0.657618999 0.0677091032 + -0.293350011 -0.555221975 0.128969997 + -0.328025013 -0.558592021 0.0717618987 + -0.270060986 -0.558592021 0.0677091032 + -0.271880001 -0.447281986 0.128969997 + -0.303914994 -0.437382996 0.0717618987 + -0.250362992 -0.459565014 0.0677091032 + -0.210737005 -0.355774999 0.128969997 + -0.235255003 -0.334627002 0.0717618987 + -0.194269001 -0.375613004 0.0677091032 + -0.172903001 -0.339080006 0.128969997 + -0.176350996 -0.292459995 0.0717618987 + -0.159558997 -0.360296011 0.0677091032 + -0.151418999 -0.260531992 0.0717618987 + -0.0839456022 -0.253363013 0.0977374017 + -0.138392001 -0.380382001 0.128969997 + -0.134467006 -0.380382001 0.0677091032 + -0.0643753037 -0.50167501 0.076277703 + -0.0832251012 -0.386447996 0.0677091032 + -0.0832251012 -0.386447996 0.128969997 + -0.0963326991 -0.156663001 0.0697354972 + -0.123770997 -0.147921994 0.0717618987 + -0.130450994 -0.162938997 0.0717618987 + -0.110827997 -0.141332 0.0717618987 + -0.0899185985 -0.323422998 0.110630997 + -0.0112902001 -0.260264993 0.0534230992 + -0.132498994 -0.284375012 0.0534230992 + -0.0112902001 -0.303725004 0.110630997 + -0.0899185985 -0.323422998 0.0493703 + -0.0112902001 -0.303725004 0.0493703 + 0.0966494009 -0.815811992 0.128969997 + 0.109918997 -0.851216972 0.0717618987 + 0.0877368972 -0.797665 0.0677091032 + 0.188155994 -0.754669011 0.128969997 + 0.212675005 -0.782558024 0.0717618987 + 0.171688005 -0.741571009 0.0677091032 + 0.249299005 -0.663161993 0.128969997 + 0.281334996 -0.679800987 0.0717618987 + 0.227782995 -0.657618999 0.0677091032 + 0.270770013 -0.555221975 0.128969997 + 0.305444986 -0.558592021 0.0717618987 + 0.247481003 -0.558592021 0.0677091032 + 0.249299005 -0.447281986 0.128969997 + 0.281334996 -0.437382996 0.0717618987 + 0.227782995 -0.459565014 0.0677091032 + 0.188155994 -0.355774999 0.128969997 + 0.212675005 -0.334627002 0.0717618987 + 0.171688005 -0.375613004 0.0677091032 + 0.150323004 -0.339080006 0.128969997 + 0.153770998 -0.292459995 0.0717618987 + 0.136978999 -0.360296011 0.0677091032 + 0.128839001 -0.260531992 0.0717618987 + 0.0613651983 -0.253363013 0.0977374017 + 0.115810998 -0.380382001 0.128969997 + 0.111886002 -0.380382001 0.0677091032 + 0.0417947993 -0.50167501 0.076277703 + 0.0606448017 -0.386447996 0.128969997 + 0.0606448017 -0.386447996 0.0677091032 + 0.0747534037 -0.156428993 0.0697354972 + 0.107075997 -0.162375003 0.0717618987 + 0.100746997 -0.148148 0.0717618987 + 0.0884862989 -0.141904995 0.0717618987 + 0.0673381984 -0.323422998 0.110630997 + 0.109918997 -0.284375012 0.0534230992 + 0.0673381984 -0.323422998 0.0493703 + -0.221697003 -0.832247972 0.102329999 + -0.171093002 -0.781284988 0.147738993 + -0.287425995 -0.756703019 0.108069003 + -0.226218998 -0.717966974 0.152490005 + -0.198474005 -0.801844001 0.0423711985 + -0.139421001 -0.761412978 0.0956171006 + -0.218440995 -0.83870399 0.0850246996 + -0.193553001 -0.700205028 0.100231998 + -0.233302996 -0.822782993 0.0859803036 + -0.280820996 -0.768733978 0.090091899 + -0.269903988 -0.835295975 0.0577083007 + -0.303070009 -0.797048986 0.0607988015 + -0.213335007 -0.801370025 0.0352693982 + -0.255154997 -0.819480002 0.0202504992 + -0.289436013 -0.757085979 0.0912543982 + -0.300377011 -0.822924018 -0.00625785999 + 0.147575006 -0.781284988 0.147738993 + 0.198179007 -0.832247972 0.102329999 + 0.263909012 -0.756703019 0.108069003 + 0.202701002 -0.717966974 0.152490005 + 0.113109 -0.762032986 0.0956171006 + 0.174955994 -0.801844001 0.0423711985 + 0.194922999 -0.83870399 0.0850246996 + 0.167241007 -0.700824022 0.100231998 + 0.257304013 -0.768733978 0.090091899 + 0.209784999 -0.822782993 0.0859803036 + 0.246386006 -0.835295975 0.0577083007 + 0.279552013 -0.797048986 0.0607988015 + 0.189817995 -0.801370025 0.0352693982 + 0.231637001 -0.819480002 0.0202504992 + 0.265917987 -0.757085979 0.0912543982 + 0.276858985 -0.822924018 -0.00625785999 + 0.217069998 -0.50366497 0.0604676008 + 0.252223998 -0.479200989 0.151555002 + 0.239291996 -0.443670988 0.151555002 + 0.196638003 -0.447528005 0.0604676008 + 0.315863013 -0.467707008 0.0575513989 + 0.295430005 -0.411570013 0.0575513989 + -0.330473989 -0.451923996 0.0604676008 + -0.289137006 -0.463129014 0.151555002 + -0.270233005 -0.430384994 0.151555002 + -0.300604999 -0.400187999 0.0604676008 + -0.239426002 -0.504490972 0.0575513989 + -0.209556997 -0.452755004 0.0575513989 + tverts 107 + 0.856060028 0.357012004 0 + 0.787778974 0.238751993 0 + 0.856060028 0.357012004 0 + 0.787778974 0.238751993 0 + 0.111400999 0.112241998 0 + 0.111400999 0.00369513012 0 + 0.111400999 0.112241998 0 + 0.111400999 0.00369513012 0 + 0.000499517017 0.000500887982 0 + 0.000499517017 0.115441002 0 + 0.000499517017 0.000500887982 0 + 0.000499517017 0.115441002 0 + 0.886792004 0.816137016 0 + 0.886792004 0.183859006 0 + 0.000215530003 0.00369539997 0 + 0.00021559 0.112242997 0 + 0.886792004 0.183859006 0 + 0.000215530003 0.00369539997 0 + 0.886792004 0.816137016 0 + 0.00021559 0.112242997 0 + 0.114730999 0.183861002 0 + 0.114730999 0.816138983 0 + 0.113208003 0.115441002 0 + 0.111235 0.00291607995 0 + 0.113208003 0.000500619004 0 + 0.114730999 0.183861002 0 + 0.114730999 0.816138983 0 + 0.113208003 0.115441002 0 + 0.5 0.00102476997 0 + 0.361476004 0.152802005 0 + 0.317770004 0.0393171012 0 + 0.501953006 0.123283997 0 + 0.381908 0.196013004 0 + 0.501973987 0.170782998 0 + 0.244694993 0.219907999 0 + 0.163283005 0.148363993 0 + 0.282094985 0.25336799 0 + 0.155884996 0.351366997 0 + 0.0600574985 0.311565012 0 + 0.206189007 0.365725994 0 + 0.127942994 0.499767005 0 + 0.0238096993 0.504073977 0 + 0.182307005 0.492563993 0 + 0.144339994 0.65099299 0 + 0.0600574985 0.696582019 0 + 0.196321994 0.621816993 0 + 0.230840996 0.782453001 0 + 0.163283005 0.859782994 0 + 0.270253986 0.734175026 0 + 0.280077994 0.819536984 0 + 0.251841009 0.926753998 0 + 0.312337011 0.765870988 0 + 0.295244992 0.994369984 0 + 0.232106 0.909844995 0 + 0.160824001 0.12088 0 + 0.0314586014 0.148717001 0 + 0.0333618 0.188957006 0 + 0.299356997 0.127883002 0 + 0.313172013 0.207663 0 + 0.221802995 0.309322 0 + 0.170546994 0.228028998 0 + 0.416799992 0.0792516991 0 + 0.548588991 0.0481655002 0 + 0.566350996 0.161761999 0 + 0.479355991 0.155194998 0 + 0.860988021 0.172146007 0 + 0.100588001 0.182132006 0 + 0.0676487014 0.27156499 0 + 0.188655004 0.919642985 0 + 0.246649995 0.942642987 0 + 0.249522001 0.703172028 0 + 0.214338005 0.667433977 0 + 0.193624005 0.669165015 0 + 0.233504996 0.676425993 0 + 0.351119012 0.805113018 0 + 0.5 0.977886975 0 + 0.317770004 0.939594984 0 + 0.5 0.836398005 0 + 0.351119012 0.805113018 0 + 0.5 0.836398005 0 + 0.0477868989 0.121711001 0 + 0.654344022 0.184590995 0 + 0.743731022 0.261904001 0 + 0.812012017 0.380165011 0 + 0.0938522965 0.125621006 0 + 0.0836817026 0.0554880016 0 + 0.00957822986 0.127221003 0 + 0.0176379997 0.0570885018 0 + 0.139843002 0.136197001 0 + 0.102233 0.000739029027 0 + 0.139843002 0.136197001 0 + 0.126900002 0.00156085996 0 + 0.0260533001 0.00156089 0 + 0.106909998 0.137018993 0 + 0.0211596992 0.137018993 0 + 0.0914914981 0.188758001 0 + 0.0344674997 0.188758001 0 + 0.0914914981 0.188758001 0 + 0.106909998 0.137018993 0 + 0.00957822986 0.136506006 0 + 0.062979497 0.231454 0 + 0.0253756009 0.248846993 0 + 0.0191035997 0.146047994 0 + 0.107876003 0.146047994 0 + 0.101604 0.248846993 0 + 0.0234021004 0.250032991 0 + 0.0996308029 0.250032991 0 + faces 182 + 0 1 2 1 0 1 2 5 + 3 2 1 1 1 0 3 5 + 4 5 6 1 4 5 6 4 + 7 6 5 1 5 4 7 4 + 8 9 10 1 8 9 10 3 + 11 10 9 1 9 8 11 3 + 12 0 13 1 12 13 14 4 + 13 14 12 1 14 15 12 4 + 2 15 16 1 13 12 15 4 + 16 17 2 1 15 14 13 4 + 0 2 17 1 13 16 14 4 + 17 13 0 1 14 17 13 4 + 15 12 14 1 12 18 15 4 + 14 16 15 1 15 19 12 4 + 14 13 5 1 15 14 5 4 + 5 4 14 1 5 4 15 4 + 13 17 7 1 14 17 5 4 + 7 5 13 1 5 7 14 4 + 1 18 19 1 20 21 22 3 + 19 20 1 1 22 23 20 3 + 21 3 22 1 21 20 24 3 + 22 23 21 1 24 22 21 3 + 3 1 20 1 20 25 23 3 + 20 22 3 1 23 24 20 3 + 18 21 23 1 21 26 22 3 + 23 19 18 1 22 27 21 3 + 20 19 9 1 23 22 9 3 + 9 8 20 1 9 8 23 3 + 22 20 8 1 24 23 8 3 + 8 10 22 1 8 10 24 3 + 24 25 26 1 28 29 30 1 + 24 27 25 1 28 31 29 1 + 27 28 25 1 31 32 29 1 + 27 29 28 1 31 33 32 1 + 26 30 31 1 30 34 35 1 + 26 25 30 1 30 29 34 1 + 25 32 30 1 29 36 34 1 + 25 28 32 1 29 32 36 1 + 31 33 34 1 35 37 38 1 + 31 30 33 1 35 34 37 1 + 30 35 33 1 34 39 37 1 + 30 32 35 1 34 36 39 1 + 34 36 37 1 38 40 41 1 + 34 33 36 1 38 37 40 1 + 33 38 36 1 37 42 40 1 + 33 35 38 1 37 39 42 1 + 37 39 40 1 41 43 44 1 + 37 36 39 1 41 40 43 1 + 36 41 39 1 40 45 43 1 + 36 38 41 1 40 42 45 1 + 40 42 43 1 44 46 47 1 + 40 39 42 1 44 43 46 1 + 39 44 42 1 43 48 46 1 + 39 41 44 1 43 45 48 1 + 43 45 46 1 47 49 50 1 + 43 42 45 1 47 46 49 1 + 42 47 45 1 46 51 49 1 + 42 44 47 1 46 48 51 1 + 45 48 46 1 49 52 53 1 + 49 45 50 1 54 55 56 1 + 51 50 45 1 57 58 59 1 + 45 47 51 1 59 60 57 1 + 50 51 52 1 58 57 61 1 + 53 54 52 1 62 63 64 1 + 54 53 55 1 63 62 65 1 + 54 50 52 1 66 56 67 1 + 54 49 50 1 66 54 56 1 + 48 49 55 1 68 69 70 1 + 56 57 48 1 71 72 68 1 + 58 56 48 1 73 71 68 1 + 55 58 48 1 70 73 68 1 + 59 60 61 1 74 75 76 1 + 62 60 59 1 77 75 74 1 + 63 62 59 1 74 77 78 1 + 64 62 63 1 77 79 74 1 + 48 45 49 1 80 55 54 1 + 55 49 54 1 65 81 63 1 + 0 12 18 1 1 82 83 1 + 18 1 0 1 83 0 1 1 + 2 15 17 1 20 21 24 3 + 16 17 15 1 22 24 21 3 + 65 24 66 1 29 28 30 1 + 27 24 65 1 31 28 29 1 + 67 27 65 1 32 31 29 1 + 29 27 67 1 33 31 32 1 + 68 66 69 1 34 30 35 1 + 65 66 68 1 29 30 34 1 + 70 65 68 1 36 29 34 1 + 67 65 70 1 32 29 36 1 + 71 69 72 1 37 35 38 1 + 68 69 71 1 34 35 37 1 + 73 68 71 1 39 34 37 1 + 70 68 73 1 36 34 39 1 + 74 72 75 1 40 38 41 1 + 71 72 74 1 37 38 40 1 + 76 71 74 1 42 37 40 1 + 73 71 76 1 39 37 42 1 + 77 75 78 1 43 41 44 1 + 74 75 77 1 40 41 43 1 + 79 74 77 1 45 40 43 1 + 76 74 79 1 42 40 45 1 + 80 78 81 1 46 44 47 1 + 77 78 80 1 43 44 46 1 + 82 77 80 1 48 43 46 1 + 79 77 82 1 45 43 48 1 + 83 81 84 1 49 47 50 1 + 80 81 83 1 46 47 49 1 + 85 80 83 1 51 46 49 1 + 82 80 85 1 48 46 51 1 + 86 83 84 1 52 49 53 1 + 83 87 88 1 55 54 56 1 + 88 89 83 1 58 57 59 1 + 85 83 89 1 60 59 57 1 + 89 88 90 1 57 58 61 1 + 91 92 90 1 63 62 64 1 + 92 91 93 1 62 63 65 1 + 88 91 90 1 56 66 67 1 + 87 91 88 1 54 66 56 1 + 87 86 93 1 69 68 70 1 + 94 95 86 1 72 71 68 1 + 95 96 86 1 71 73 68 1 + 96 93 86 1 73 70 68 1 + 60 97 98 1 75 74 76 1 + 60 62 97 1 75 77 74 1 + 62 99 97 1 77 74 78 1 + 62 64 99 1 77 79 74 1 + 83 86 87 1 55 80 54 1 + 87 93 91 1 81 65 63 1 + 100 101 102 1 84 85 86 1 + 103 102 101 1 87 86 85 1 + 104 105 106 1 88 89 90 5 + 101 106 105 1 85 88 89 5 + 105 107 101 1 91 92 85 3 + 103 101 107 1 87 85 92 3 + 108 109 110 1 93 94 95 4 + 111 110 109 1 96 95 94 4 + 112 110 113 1 93 95 97 4 + 110 112 108 1 95 93 98 4 + 106 101 100 1 88 85 84 1 + 109 108 102 1 94 93 86 1 + 100 102 108 1 84 86 93 1 + 102 103 114 1 86 87 99 1 + 108 112 106 1 93 98 88 5 + 104 106 112 1 88 90 93 5 + 106 100 108 1 88 84 93 1 + 109 102 114 1 94 86 99 1 + 114 103 109 1 99 87 94 1 + 110 111 115 1 95 96 100 4 + 113 110 115 1 95 97 100 4 + 116 117 118 1 85 84 86 1 + 118 119 116 1 86 87 85 1 + 120 121 122 1 89 88 90 5 + 122 116 120 1 88 85 89 5 + 123 120 116 1 92 91 85 3 + 116 119 123 1 85 87 92 3 + 124 125 126 1 94 93 95 4 + 126 127 124 1 95 96 94 4 + 126 128 129 1 95 93 97 4 + 128 126 125 1 93 95 98 4 + 116 122 117 1 85 88 84 1 + 125 124 118 1 93 94 86 1 + 118 117 125 1 86 84 93 1 + 119 118 130 1 87 86 99 1 + 128 125 122 1 93 98 88 5 + 122 121 128 1 88 90 93 5 + 117 122 125 1 84 88 93 1 + 118 124 130 1 86 94 99 1 + 119 130 124 1 87 99 94 1 + 127 126 131 1 96 95 100 4 + 126 129 131 1 95 97 100 4 + 132 133 134 1 101 102 103 1 + 134 135 132 1 103 104 101 1 + 133 132 136 1 102 101 105 5 + 136 137 134 1 105 106 103 4 + 134 133 136 1 103 102 105 4 + 135 134 137 1 104 103 106 6 + 138 139 140 1 101 102 103 1 + 140 141 138 1 103 104 101 1 + 139 138 142 1 102 101 105 5 + 142 143 140 1 105 106 103 4 + 140 139 142 1 103 102 105 4 + 141 140 143 1 104 103 106 6 + position 0.0111129005 0.526444972 -0.0690653026 + orientation 0 0 0 0 +endnode +node trimesh cmp_pointer + parent ctl_compass + #part-number 2 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap gui_compass3 + verts 20 + 0.0244424008 -0.00141622999 -0.0757121965 + -0.000176703004 0.0232909992 0.000693941023 + 0.0245305002 -0.00141622999 0.000693950977 + -0.000176703004 0.0232909992 -0.0757121965 + -0.0248838998 -0.00141622999 0.000693950977 + -0.0248838998 -0.00141622999 -0.0757121965 + -0.000176682006 -0.0261234995 0.000693950977 + -0.000176682006 -0.0261234995 -0.0757121965 + -0.000176693007 -0.00141622999 0.0279906001 + 5.49442973e-007 0 -0.0484484993 + 0.220018998 -0.159852996 -0.0245877001 + 0.271957994 0 -0.0245877001 + 0.0840402022 -0.258646995 -0.0245877001 + -0.0840390027 -0.258646995 -0.0245877001 + -0.220017999 -0.159852996 -0.0245877001 + -0.27195701 0 -0.0245877001 + -0.220017999 0.159852996 -0.0245877001 + -0.0840390995 0.258646995 -0.0245877001 + 0.0840400979 0.258646995 -0.0245877001 + 0.220018998 0.159852996 -0.0245877001 + tverts 20 + 0.146417007 0.502682984 0 + 0.118845001 0.531777024 0 + 0.146515995 0.502682984 0 + 0.118845001 0.531777024 0 + 0.0911748037 0.502682984 0 + 0.0911748037 0.502682984 0 + 0.118845001 0.473589003 0 + 0.118845001 0.473589003 0 + 0.118845001 0.502682984 0 + 0.499940991 0.499527007 0 + 0.748809993 0.309408009 0 + 0.807560027 0.499527007 0 + 0.595000029 0.191908002 0 + 0.404881001 0.191908002 0 + 0.251071006 0.309408009 0 + 0.192321002 0.499527007 0 + 0.25107199 0.689646006 0 + 0.404881001 0.807146013 0 + 0.595000029 0.807146013 0 + 0.748809993 0.689646006 0 + faces 22 + 0 1 2 1 0 1 2 3 + 0 3 1 1 0 1 3 3 + 3 4 1 1 1 4 3 3 + 3 5 4 1 1 4 5 3 + 5 6 4 1 4 6 5 3 + 5 7 6 1 4 6 7 3 + 7 2 6 1 6 2 7 3 + 7 0 2 1 6 0 2 3 + 8 2 1 2 8 2 1 1 + 8 1 4 2 8 1 4 1 + 8 4 6 2 8 4 6 1 + 8 6 2 2 8 6 2 1 + 9 10 11 1 9 10 11 2 + 9 12 10 1 9 12 10 2 + 9 13 12 1 9 13 12 2 + 9 14 13 1 9 14 13 2 + 9 15 14 1 9 15 14 2 + 9 16 15 1 9 16 15 2 + 9 17 16 1 9 17 16 2 + 9 18 17 1 9 18 17 2 + 9 19 18 1 9 19 18 2 + 9 11 19 1 9 11 19 2 + position -0.000177002003 -0.0321470983 0.0272843 + orientation 0 0 0 0 +endnode +endmodelgeom ctl_compass + +#MAXANIM ASCII +newanim angle ctl_compass + length 12 + transtime 0.25 + animroot ctl_compass +node dummy ctl_compass + parent NULL + #part-number 0 +endnode +node dummy Box01 + parent ctl_compass + #part-number 1 +endnode +node dummy cmp_pointer + parent ctl_compass + #part-number 2 + orientationkey 4 + 0 0 0 0 0 + 4 -0 -0 -1 -2.09439993 + 8 -0 -0 -1 -4.18878984 + 12 0 0 0 0 +endnode +doneanim angle ctl_compass + +#MAXANIM ASCII +newanim default ctl_compass + length 3.33332992 + transtime 0 + animroot ctl_compass +node dummy ctl_compass + parent NULL + #part-number 0 +endnode +node dummy Box01 + parent ctl_compass + #part-number 1 +endnode +node dummy cmp_pointer + parent ctl_compass + #part-number 2 +endnode +doneanim default ctl_compass + +donemodel ctl_compass diff --git a/tests/fixtures/oracle/ascii/plc_crysblu.mdl b/tests/fixtures/oracle/ascii/plc_crysblu.mdl new file mode 100644 index 0000000..06dfd2a --- /dev/null +++ b/tests/fixtures/oracle/ascii/plc_crysblu.mdl @@ -0,0 +1,1073 @@ +# Rewritten by CleanModels 3 Version 3.5.2d Sun Oct 13 18:36:32 2019 +#MAXMODEL ASCII +filedependency Unknown +newmodel plc_crysblu + classification CHARACTER + setsupermodel plc_crysblu NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom plc_crysblu +node dummy plc_crysblu + parent NULL +endnode +node dummy crysblu_hand + parent plc_crysblu + position 0.00398926 -0.505197 0.934402 + orientation 0 0 0 0 + wirecolor 0.777344 0.777344 0.777344 +endnode +node dummy crysblu_head + parent plc_crysblu + position 0 0 1.25 + orientation 0 0 0 0 + wirecolor 0.777344 0.777344 0.777344 +endnode +node dummy crysblu_head_hit + parent plc_crysblu + position 0 0 1.58685 + orientation 0 0 0 0 + wirecolor 0.777344 0.777344 0.777344 +endnode +node dummy crysblu_impact + parent plc_crysblu + position 0.00398926 0.0109997 0.868134 + orientation 0 0 0 0 + wirecolor 0.777344 0.777344 0.777344 +endnode +node dummy crysblu_ground + parent plc_crysblu + position -0.00363281 0.00698791 0 + orientation 0 0 0 0 + wirecolor 0.777344 0.777344 0.777344 +endnode +node trimesh damage33 + parent plc_crysblu + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.554688 0.554688 0.554688 + ambient 0.0705882 0 1 + diffuse 1 0.501961 0.643137 + specular 0 0 0 + shininess 24 + bitmap NULL + render 0 + shadow 0 + beaming 0 + transparencyhint 0 + tilefade 0 + rotatetexture 0 + verts 12 + -0.195415 -0.186216 0 + -0.195415 0.186216 0 + 0.195415 0.186216 0 + 0.195415 -0.186216 0 + -0.195415 -0.186216 0.5 + 0.195415 -0.186216 0.5 + 0.195415 0.186216 0.5 + -0.195415 0.186216 0.5 + 0.103944 -0.0990513 0.25 + -0.103944 -0.0990513 0.25 + 0.103944 0.0990513 0.25 + -0.103944 0.0990513 0.25 + faces 20 + 0 1 2 1 0 0 0 0 + 2 3 0 1 0 0 0 0 + 4 5 6 1 0 0 0 0 + 6 7 4 1 0 0 0 0 + 0 3 8 1 0 0 0 0 + 8 9 0 1 0 0 0 0 + 9 8 5 1 0 0 0 0 + 5 4 9 1 0 0 0 0 + 3 2 10 1 0 0 0 0 + 10 8 3 1 0 0 0 0 + 8 10 6 1 0 0 0 0 + 6 5 8 1 0 0 0 0 + 2 1 11 1 0 0 0 0 + 11 10 2 1 0 0 0 0 + 10 11 7 1 0 0 0 0 + 7 6 10 1 0 0 0 0 + 1 0 9 1 0 0 0 0 + 9 11 1 1 0 0 0 0 + 11 9 4 1 0 0 0 0 + 4 7 11 1 0 0 0 0 + tverts 1 + 0 0 0 +endnode +node trimesh crystal + parent damage33 + position 0 0 0.843563 + orientation 0 0 0 0 + wirecolor 0.113281 0.113281 0.113281 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + selfillumcolor 1 1 1 + bitmap crystalblu + verts 14 + 0 0 -0.327709 + -0.201922 0 0 + -0.100961 -0.17487 0 + 0.100961 -0.17487 0 + 0.201922 0 0 + 0.100961 0.17487 0 + -0.100961 0.17487 0 + -0.330506 0 0.504247 + -0.165253 -0.286227 0.504247 + 0.165253 -0.286227 0.504247 + 0.330506 0 0.504247 + 0.165253 0.286227 0.504247 + -0.165253 0.286227 0.504247 + 0 0 0.765279 + faces 24 + 0 2 1 0 2 59 58 1 + 0 3 2 0 3 57 56 1 + 0 4 3 0 49 51 50 1 + 0 5 4 0 4 53 52 1 + 0 6 5 0 5 55 54 1 + 0 1 6 0 0 1 6 1 + 1 8 7 0 14 17 16 2 + 1 2 8 0 14 15 17 2 + 2 9 8 0 25 28 27 2 + 2 3 9 0 25 26 28 2 + 3 10 9 0 9 43 42 2 + 3 4 10 0 9 41 43 2 + 4 11 10 0 10 46 45 2 + 4 5 11 0 10 44 46 2 + 5 12 11 0 11 48 47 2 + 5 6 12 0 11 12 48 2 + 6 7 12 0 19 20 21 2 + 6 1 7 0 19 18 20 2 + 13 7 8 0 39 8 38 0 + 13 8 9 0 37 35 36 0 + 13 9 10 0 24 22 23 0 + 13 10 11 0 31 29 30 0 + 13 11 12 0 34 32 33 0 + 13 12 7 0 40 13 7 0 + tverts 60 + 1.01918 0.972073 0 + 1.01918 0.028677 0 + 0.0030771 -0.0408632 0 + 1.009 0.951691 0.0866234 + 1.01797 1.00126 0 + 1.02899 0.985507 0.601075 + 0.104765 0.028677 0 + 0.0180186 0.97098 0 + 0.00425074 0.0328766 0 + 0.0197035 0.0202152 0 + 0.981023 0.988375 0 + 0.0130457 0.0159202 0.790019 + 0.98214 0.0159202 1.34048 + 1.02271 0.97098 0 + 0.00628465 0.0134954 5 + 0.986956 0.0134954 5 + 0.00620149 0.997795 -5 + 0.987216 0.997795 5 + 0.00788653 0.997795 0 + 0.982288 0.997795 0 + 0.00757369 0.03451 0 + 0.983252 0.03451 0 + 0.0125446 0.0174503 0 + 1.01723 0.0174503 0 + 1.01836 0.997986 0 + 0.983514 0.991836 -0.364949 + 0.00842464 0.991836 0.246 + 0.983602 0.0397343 0.559475 + 0.0081304 0.0397342 -0.440526 + 0.980769 0.958206 0 + 0.0192308 0.958206 0 + 0.0199275 -0.00333224 0 + 0.000506695 0.0159563 -0.16755 + 1.00264 0.0159563 -0.16755 + 1.00193 0.996348 1.1155 + 1.01398 0.954329 1.5636 + 0.0186269 0.954329 1.5636 + 0.0193235 -0.00720908 -1.3874 + 1.01121 0.0328766 0 + 1.0105 0.957713 0 + 0.0156734 -0.0288796 0 + 0.972068 0.0202152 0 + 0.0173607 0.988375 0 + 0.973124 0.988375 0 + 0.0116062 0.988375 0 + 0.981912 0.0419543 0 + 0.0113622 0.0419544 0 + 0.0116638 0.994693 1.24147 + 0.982537 0.994693 0.340478 + -0.00031418 -0.0298286 0 + 0.0017874 0.975002 0 + 1.05734 0.975002 0 + 0.023116 0.0423211 0 + 1.01587 0.0423211 0 + 0.0289854 -0.031401 -0.245957 + 0.0289854 0.985507 -0.245957 + 1.0112 0.0386474 0.913377 + 0.0981586 0.0386474 0.913377 + -0.00175398 1.00256 0 + 1.03681 1.00256 0 +endnode +node light auroralight01 + parent crystal + position 0 0 0.306437 + orientation 0 0 0 0 + wirecolor 0.601563 0.601563 0.601563 + radius 4 + multiplier 1.5 + color 0 0 1 + ambientonly 1 + nDynamicType 1 + affectdynamic 1 + shadow 0 + lightpriority 3 + lensflares 0 + fadinglight 0 +endnode +node emitter omenemitter01 + parent crystal + p2p_sel 1 + position 0 0 0.13537 + orientation 0 0 0 0 + wirecolor 0.601563 0.601563 0.601563 + colorStart 1 1 1 + colorEnd 0.376471 0.376471 0.996078 + alphaStart 1 + alphaEnd 1 + sizeStart 0.02 + sizeEnd 0.04 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 0 + birthrate 150 + spawntype 0 + lifeExp 1.5 + mass 0 + spread 0 + particleRot 0 + velocity 0 + randvel 0 + fps 0 + random 0 + inherit 0 + inherit_local 1 + inherit_part 0 + inheritvel 0 + xsize 250 + ysize 250 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Motion_Blur + blend Lighten + deadspace 0.174533 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 1 + p2p 1 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0.4 + grav 5 + threshold 0 + texture fxpa_dot01 + xgrid 1 + ygrid 1 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + splat 0 +endnode +node reference omenref01 + parent omenemitter01 + position 0 0 0 + orientation -1 0 0 -1.5708 + wirecolor 0.0351563 0.0351563 0.0351563 + refModel fx_ref + reattachable 0 +endnode +node emitter shell + parent crystal + position 0 0 0.13358 + orientation 0 0 0 0 + wirecolor 0.601563 0.601563 0.601563 + colorStart 0.196078 0.196078 0.976471 + colorEnd 1 1 1 + alphaStart 0.9 + alphaEnd 0 + sizeStart 0.5 + sizeEnd 2 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 0 + birthrate 20 + spawntype 0 + lifeExp 1.1 + mass 0 + spread 6.28319 + particleRot 0 + velocity 1 + randvel 0.1 + fps 0 + random 0 + inherit 0 + inherit_local 1 + inherit_part 0 + inheritvel 0 + xsize 0 + ysize 0 + bounce 0 + bounce_co 0 + loop 0 + update Fountain + render Normal + blend Lighten + deadspace 0 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_flare + xgrid 1 + ygrid 1 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + splat 0 +endnode +node emitter chunkywood118 + parent plc_crysblu + position 0 0 0.712937 + orientation 0 0 0 0 + wirecolor 0.722656 0.722656 0.722656 + colorStart 0.317647 0.317647 0.482353 + colorEnd 0.407843 0.407843 0.584314 + alphaStart 1 + alphaEnd 1 + sizeStart 0.1 + sizeEnd 0.1 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 24 + birthrate 3 + spawntype 0 + lifeExp 0.75 + mass 3 + spread 1.22173 + particleRot 2.9 + velocity 8 + randvel 0.3 + fps 0 + random 0 + inherit 1 + inherit_local 0 + inherit_part 0 + inheritvel 0 + xsize 89 + ysize 40 + bounce 1 + bounce_co 0.5 + loop 0 + update Explosion + render Normal + blend Normal + deadspace 0 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 1 + p2p 0 + p2p_sel 1 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_cloud02 + xgrid 5 + ygrid 5 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + splat 0 + chunkName plc_chunk_s02 +endnode +node emitter chunkywood119 + parent plc_crysblu + position 0 0 0.606715 + orientation 0 0 0 0 + wirecolor 0.722656 0.722656 0.722656 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 1 + alphaEnd 1 + sizeStart 0.1 + sizeEnd 0.1 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 24 + birthrate 3 + spawntype 0 + lifeExp 0.75 + mass 3 + spread 1.22173 + particleRot 5 + velocity 8 + randvel 0.3 + fps 0 + random 0 + inherit 1 + inherit_local 0 + inherit_part 0 + inheritvel 0 + xsize 89 + ysize 40 + bounce 1 + bounce_co 0.5 + loop 0 + update Explosion + render Normal + blend Normal + deadspace 0 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_cloud02 + xgrid 5 + ygrid 5 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + splat 0 + chunkName plc_chunk_s01 +endnode +node emitter fire!70 + parent plc_crysblu + position 0 0 0.532671 + orientation -1 0 0 -1.5708 + wirecolor 0.722656 0.722656 0.722656 + colorStart 0.478431 0.478431 0.627451 + colorEnd 0.721569 0.721569 0.941177 + alphaStart 1 + alphaEnd 0 + sizeStart 4 + sizeEnd 1 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 24 + birthrate 10 + spawntype 0 + lifeExp 2.5 + mass 0.09 + spread 2.96706 + particleRot 0.5 + velocity 2 + randvel 0.5 + fps 10 + random 0 + inherit 1 + inherit_local 0 + inherit_part 0 + inheritvel 0 + xsize 20 + ysize 40 + bounce 0 + bounce_co 0 + loop 0 + update Explosion + render Normal + blend Normal + deadspace 0 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0.2 + blastLength 1 + twosidedtex 1 + p2p 0 + p2p_sel 1 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_smoke01 + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 1 + renderorder 0 + splat 0 +endnode +endmodelgeom plc_crysblu + +#MAXANIM ASCII +newanim damage plc_crysblu + length 0.133333 + transtime 0 + animroot plc_crysblu + node dummy plc_crysblu + parent NULL + endnode + node dummy pwk_crysblu + parent plc_crysblu + #part-number -1 + endnode + node dummy crysblu_hand + parent plc_crysblu + endnode + node dummy crysblu_head + parent plc_crysblu + endnode + node dummy crysblu_head_hit + parent plc_crysblu + endnode + node dummy crysblu_impact + parent plc_crysblu + endnode + node dummy crysblu_ground + parent plc_crysblu + endnode + node trimesh damage33 + parent plc_crysblu + positionkey + 0 0 0 0 + 0.0333333 0 0 0.0244581 + 0.133333 0 0 0 + endlist + orientationkey + 0 0 0 0 0 + 0.0333333 -0.371336 0.928463 -0.00810258 0.0469942 + 0.1 0.599949 -0.799969 -0.0104721 0.0436326 + 0.133333 0 0 0 0 + endlist + endnode + node dummy crystal + parent damage33 + endnode + node light auroralight01 + parent crystal + endnode + node emitter omenemitter01 + parent crystal + endnode + node reference omenref01 + parent omenemitter01 + endnode + node emitter shell + parent crystal + endnode + node emitter chunkywood118 + parent plc_crysblu + endnode + node emitter chunkywood119 + parent plc_crysblu + endnode + node emitter fire!70 + parent plc_crysblu + endnode +doneanim damage plc_crysblu + +#MAXANIM ASCII +newanim dead plc_crysblu + length 0.0333333 + transtime 0 + animroot plc_crysblu + node dummy plc_crysblu + parent NULL + endnode + node dummy pwk_crysblu + parent plc_crysblu + #part-number -1 + endnode + node dummy crysblu_hand + parent plc_crysblu + endnode + node dummy crysblu_head + parent plc_crysblu + endnode + node dummy crysblu_head_hit + parent plc_crysblu + endnode + node dummy crysblu_impact + parent plc_crysblu + endnode + node dummy crysblu_ground + parent plc_crysblu + endnode + node trimesh damage33 + parent plc_crysblu + positionkey + 0 0 0 -7.3333 + 0.0333333 0 0 -7.3333 + endlist + endnode + node dummy crystal + parent damage33 + endnode + node light auroralight01 + parent crystal + endnode + node emitter omenemitter01 + parent crystal + endnode + node reference omenref01 + parent omenemitter01 + endnode + node emitter shell + parent crystal + endnode + node emitter chunkywood118 + parent plc_crysblu + endnode + node emitter chunkywood119 + parent plc_crysblu + endnode + node emitter fire!70 + parent plc_crysblu + endnode +doneanim dead plc_crysblu + +#MAXANIM ASCII +newanim default plc_crysblu + length 0 + transtime 0.25 + animroot plc_crysblu + node dummy plc_crysblu + parent NULL + endnode + node dummy pwk_crysblu + parent plc_crysblu + #part-number -1 + endnode + node dummy crysblu_hand + parent plc_crysblu + endnode + node dummy crysblu_head + parent plc_crysblu + endnode + node dummy crysblu_head_hit + parent plc_crysblu + endnode + node dummy crysblu_impact + parent plc_crysblu + endnode + node dummy crysblu_ground + parent plc_crysblu + endnode + node dummy damage33 + parent plc_crysblu + endnode + node dummy crystal + parent damage33 + endnode + node light auroralight01 + parent crystal + endnode + node emitter omenemitter01 + parent crystal + endnode + node reference omenref01 + parent omenemitter01 + endnode + node emitter shell + parent crystal + endnode + node emitter chunkywood118 + parent plc_crysblu + endnode + node emitter chunkywood119 + parent plc_crysblu + endnode + node emitter fire!70 + parent plc_crysblu + endnode +doneanim default plc_crysblu + +#MAXANIM ASCII +newanim die plc_crysblu + length 0.166667 + transtime 0 + event 0 detonate + animroot plc_crysblu + node dummy plc_crysblu + parent NULL + endnode + node dummy pwk_crysblu + parent plc_crysblu + #part-number -1 + endnode + node dummy crysblu_hand + parent plc_crysblu + endnode + node dummy crysblu_head + parent plc_crysblu + endnode + node dummy crysblu_head_hit + parent plc_crysblu + endnode + node dummy crysblu_impact + parent plc_crysblu + endnode + node dummy crysblu_ground + parent plc_crysblu + endnode + node trimesh damage33 + parent plc_crysblu + positionkey + 0 0 0 0 + 0.166667 0 0 -7.3333 + endlist + orientationkey + 0 0 0 0 0 + endlist + endnode + node dummy crystal + parent damage33 + endnode + node light auroralight01 + parent crystal + endnode + node emitter omenemitter01 + parent crystal + endnode + node reference omenref01 + parent omenemitter01 + endnode + node emitter shell + parent crystal + endnode + node emitter chunkywood118 + parent plc_crysblu + endnode + node emitter chunkywood119 + parent plc_crysblu + endnode + node emitter fire!70 + parent plc_crysblu + endnode +doneanim die plc_crysblu + +#MAXANIM ASCII +newanim off plc_crysblu + length 0.0333333 + transtime 0 + animroot plc_crysblu + node dummy plc_crysblu + parent NULL + endnode + node dummy pwk_crysblu + parent plc_crysblu + #part-number -1 + endnode + node dummy crysblu_hand + parent plc_crysblu + endnode + node dummy crysblu_head + parent plc_crysblu + endnode + node dummy crysblu_head_hit + parent plc_crysblu + endnode + node dummy crysblu_impact + parent plc_crysblu + endnode + node dummy crysblu_ground + parent plc_crysblu + endnode + node dummy damage33 + parent plc_crysblu + endnode + node dummy crystal + parent damage33 + endnode + node light auroralight01 + parent crystal + radiuskey + 0 0 + 0.0333333 0 + endlist + endnode + node emitter omenemitter01 + parent crystal + birthratekey + 0 0 + 0.0333333 0 + endlist + endnode + node reference omenref01 + parent omenemitter01 + endnode + node emitter shell + parent crystal + birthratekey + 0 0 + 0.0333333 0 + endlist + endnode + node emitter chunkywood118 + parent plc_crysblu + endnode + node emitter chunkywood119 + parent plc_crysblu + endnode + node emitter fire!70 + parent plc_crysblu + endnode +doneanim off plc_crysblu + +#MAXANIM ASCII +newanim off2on plc_crysblu + length 0.0333333 + transtime 0 + animroot plc_crysblu + node dummy plc_crysblu + parent NULL + endnode + node dummy pwk_crysblu + parent plc_crysblu + #part-number -1 + endnode + node dummy crysblu_hand + parent plc_crysblu + endnode + node dummy crysblu_head + parent plc_crysblu + endnode + node dummy crysblu_head_hit + parent plc_crysblu + endnode + node dummy crysblu_impact + parent plc_crysblu + endnode + node dummy crysblu_ground + parent plc_crysblu + endnode + node dummy damage33 + parent plc_crysblu + endnode + node dummy crystal + parent damage33 + endnode + node light auroralight01 + parent crystal + radiuskey + 0 0 + 0.0333333 6 + endlist + endnode + node emitter omenemitter01 + parent crystal + birthratekey + 0 0 + 0.0333333 150 + endlist + endnode + node reference omenref01 + parent omenemitter01 + endnode + node emitter shell + parent crystal + birthratekey + 0 0 + 0.0333333 20 + endlist + endnode + node emitter chunkywood118 + parent plc_crysblu + endnode + node emitter chunkywood119 + parent plc_crysblu + endnode + node emitter fire!70 + parent plc_crysblu + endnode +doneanim off2on plc_crysblu + +#MAXANIM ASCII +newanim on plc_crysblu + length 0.966667 + transtime 0 + animroot plc_crysblu + node dummy plc_crysblu + parent NULL + endnode + node dummy pwk_crysblu + parent plc_crysblu + #part-number -1 + endnode + node dummy crysblu_hand + parent plc_crysblu + endnode + node dummy crysblu_head + parent plc_crysblu + endnode + node dummy crysblu_head_hit + parent plc_crysblu + endnode + node dummy crysblu_impact + parent plc_crysblu + endnode + node dummy crysblu_ground + parent plc_crysblu + endnode + node dummy damage33 + parent plc_crysblu + endnode + node dummy crystal + parent damage33 + endnode + node light auroralight01 + parent crystal + radiuskey + 0 4 + 0.966667 4 + endlist + endnode + node emitter omenemitter01 + parent crystal + orientationkey + 0 0 0 0 0 + 0.5 0 -1 0 3.15905 + 0.966667 0 0 0 0 + endlist + birthratekey + 0 150 + 0.966667 150 + endlist + endnode + node reference omenref01 + parent omenemitter01 + endnode + node emitter shell + parent crystal + birthratekey + 0 20 + 0.966667 20 + endlist + endnode + node emitter chunkywood118 + parent plc_crysblu + endnode + node emitter chunkywood119 + parent plc_crysblu + endnode + node emitter fire!70 + parent plc_crysblu + endnode +doneanim on plc_crysblu + +#MAXANIM ASCII +newanim on2off plc_crysblu + length 0.0333333 + transtime 0 + animroot plc_crysblu + node dummy plc_crysblu + parent NULL + endnode + node dummy pwk_crysblu + parent plc_crysblu + #part-number -1 + endnode + node dummy crysblu_hand + parent plc_crysblu + endnode + node dummy crysblu_head + parent plc_crysblu + endnode + node dummy crysblu_head_hit + parent plc_crysblu + endnode + node dummy crysblu_impact + parent plc_crysblu + endnode + node dummy crysblu_ground + parent plc_crysblu + endnode + node trimesh damage33 + parent plc_crysblu + positionkey + 0 0 0 0 + 0.0333333 0 0 0 + endlist + orientationkey + 0 0 0 0 0 + 0.0333333 0 0 0 0 + endlist + endnode + node dummy crystal + parent damage33 + endnode + node light auroralight01 + parent crystal + radiuskey + 0 4 + 0.0333333 0 + endlist + endnode + node emitter omenemitter01 + parent crystal + birthratekey + 0 150 + 0.0333333 0 + endlist + endnode + node reference omenref01 + parent omenemitter01 + endnode + node emitter shell + parent crystal + birthratekey + 0 20 + 0.0333333 0 + endlist + endnode + node emitter chunkywood118 + parent plc_crysblu + endnode + node emitter chunkywood119 + parent plc_crysblu + endnode + node emitter fire!70 + parent plc_crysblu + endnode +doneanim on2off plc_crysblu +donemodel plc_crysblu diff --git a/tests/fixtures/oracle/ascii/plc_dd27.mdl b/tests/fixtures/oracle/ascii/plc_dd27.mdl new file mode 100644 index 0000000..8311fe1 --- /dev/null +++ b/tests/fixtures/oracle/ascii/plc_dd27.mdl @@ -0,0 +1,403 @@ +# Rewritten by CleanModels 3 Version 3.5.2d Sun Oct 13 18:36:35 2019 +#MAXMODEL ASCII +filedependency Unknown +newmodel plc_dd27 + classification CHARACTER + setsupermodel plc_dd27 NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom plc_dd27 +node dummy plc_dd27 + parent NULL +endnode +node light ttr01_u17_01ml2 + parent plc_dd27 + position -0.879467 0.0821777 2.33297 + orientation 0 0 -1 -0.410152 + wirecolor 0.5625 0.5625 0.5625 + radius 5 + multiplier 1 + color 0.00392157 0.00392157 0.00392157 + ambientonly 0 + nDynamicType 0 + affectdynamic 1 + shadow 0 + lightpriority 5 + lensflares 0 + fadinglight 1 +endnode +node trimesh box29 + parent plc_dd27 + position -0.0110278 0.0918274 3.63 + orientation 0 0 -1 -0.410152 + wirecolor 0.695313 0.695313 0.695313 + ambient 0 0 0 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_wood03 + verts 24 + 0.11 0.04 -3.63 + -0.03 0.1 -3.63 + -0.03 0.1 -0.68 + 0.11 0.04 0.02 + -0.09 -0.04 -3.63 + -0.09 -0.04 -0.68 + 0.05 -0.1 -3.63 + 0.05 -0.1 0.02 + -0.03 0.1 -0.48 + -0.09 -0.04 -0.48 + -0.03 0.1 0.02 + -0.09 -0.04 0.02 + 0.57 -0.16 0.17 + -1.09 0.56 0.17 + -1.09 0.56 0.02 + -1.14 0.42 0.02 + -1.14 0.42 0.17 + 0.51 -0.3 0.02 + 0.57 -0.16 0.02 + 0.51 -0.3 0.17 + -0.4 0.26 0.02 + -0.46 0.12 0.02 + -0.64 0.2 0.02 + -0.58 0.34 0.02 + faces 40 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 1 4 5 1 4 5 6 0 + 5 2 1 1 6 7 4 0 + 4 6 7 1 1 0 3 0 + 7 5 4 1 3 2 1 0 + 6 0 3 1 5 4 8 0 + 3 7 6 1 8 9 5 0 + 3 2 8 1 3 2 10 0 + 7 9 5 1 3 10 2 0 + 3 8 10 1 3 10 11 0 + 8 9 11 1 12 13 9 0 + 11 10 8 1 9 8 12 0 + 7 11 9 1 3 11 10 0 + 12 10 13 1 14 15 16 0 + 14 15 16 1 8 9 17 0 + 16 13 14 1 17 18 8 0 + 11 7 16 1 15 19 16 0 + 17 18 12 1 9 8 18 0 + 12 19 17 1 18 17 9 0 + 13 10 20 1 16 15 20 0 + 16 21 11 1 16 20 15 0 + 13 16 19 1 21 22 23 0 + 19 12 13 1 23 24 21 0 + 3 10 12 1 19 15 14 0 + 12 18 3 1 14 25 19 0 + 16 7 17 1 16 19 25 0 + 17 19 16 1 25 14 16 0 + 16 22 21 1 16 26 20 0 + 13 20 23 1 16 20 26 0 + 16 15 22 1 16 27 26 0 + 13 23 14 1 16 26 27 0 + 2 5 22 1 28 29 30 0 + 22 23 2 1 30 31 28 0 + 8 2 23 1 32 33 34 0 + 23 20 8 1 34 35 32 0 + 5 9 21 1 33 32 35 0 + 21 22 5 1 35 34 33 0 + 9 8 20 1 29 28 36 0 + 20 21 9 1 36 37 29 0 + tverts 38 + 0.475 -0.108333 0 + 0.525 -0.108333 0 + 0.525 0.875 0 + 0.475 1.10833 0 + 0.283034 -0.133333 0 + 0.333034 -0.133333 0 + 0.333034 0.85 0 + 0.283034 0.85 0 + 0.283035 1.08333 0 + 0.333035 1.08333 0 + 0.525 0.941667 0 + 0.525 1.10833 0 + 0.283034 0.916667 0 + 0.333034 0.916667 0 + 0.332329 0.2 0 + 0.382329 0.416667 0 + 0.332329 0.8 0 + 0.333035 1.13333 0 + 0.283035 1.13333 0 + 0.382329 0.366667 0 + 0.382329 0.55 0 + 0.475 0.2 0 + 0.525 0.2 0 + 0.525 0.8 0 + 0.475 0.8 0 + 0.382329 0.2 0 + 0.382329 0.616667 0 + 0.382329 0.8 0 + 0.475 0.583333 0 + 0.525 0.583333 0 + 0.525 0.383333 0 + 0.475 0.383333 0 + 0.457332 0.396659 0 + 0.501069 0.346345 0 + 0.498931 0.653655 0 + 0.448617 0.609918 0 + 0.475 0.45 0 + 0.525 0.45 0 +endnode +node trimesh mesh307 + parent plc_dd27 + position -0.888226 0.10297 2.19 + orientation 0 0 -1 -0.410152 + wirecolor 0.601563 0.601563 0.601563 + ambient 0 0 0 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap ttr01_tusk01 + render 1 + shadow 0 + beaming 0 + transparencyhint 0 + tilefade 0 + rotatetexture 0 + verts 14 + 0 -0.01 -0.27 + -0.13 -0.11 -0.18 + -0.15 0.05 -0.18 + 0.02 -0.17 -0.18 + 0.15 -0.07 -0.18 + 0.13 0.09 -0.18 + -0.02 0.15 -0.18 + -0.13 -0.11 0.31 + -0.15 0.05 0.31 + 0.02 -0.17 0.31 + 0.15 -0.07 0.31 + 0.13 0.09 0.31 + -0.02 0.15 0.31 + 0 -0.01 0.55 + faces 24 + 0 1 2 1 0 1 2 0 + 0 3 1 1 0 3 1 0 + 0 4 3 1 0 4 3 0 + 0 5 4 1 0 5 4 0 + 0 6 5 1 0 6 7 0 + 0 2 6 1 0 2 6 0 + 2 7 8 1 2 8 9 0 + 2 1 7 1 2 1 8 0 + 1 9 7 1 1 10 8 0 + 1 3 9 1 1 3 10 0 + 3 10 9 1 3 11 10 0 + 3 4 10 1 3 4 11 0 + 4 11 10 1 4 12 11 0 + 4 5 11 1 4 5 12 0 + 5 12 11 1 7 13 14 0 + 5 6 12 1 7 6 13 0 + 6 8 12 1 6 9 13 0 + 6 2 8 1 6 2 9 0 + 8 7 13 1 9 8 15 0 + 7 9 13 1 8 10 15 0 + 9 10 13 1 10 11 15 0 + 10 11 13 1 11 12 15 0 + 11 12 13 1 14 13 15 0 + 12 8 13 1 13 9 15 0 + tverts 16 + 0.377113 0.742994 0 + 0.366032 0.751603 0 + 0.352214 0.751603 0 + 0.37841 0.751603 0 + 0.391111 0.751603 0 + 0.404929 0.751603 0 + 0.339513 0.751603 0 + 0.327134 0.751603 0 + 0.366032 0.798309 0 + 0.352214 0.798309 0 + 0.37841 0.798309 0 + 0.391111 0.798309 0 + 0.404929 0.798309 0 + 0.339513 0.798309 0 + 0.327134 0.798309 0 + 0.377113 0.82071 0 +endnode +node trimesh line566 + parent plc_dd27 + position -0.888226 0.10297 2.65 + orientation 0 0 -1 -0.410152 + wirecolor 0.105469 0.105469 0.105469 + ambient 0 0 0 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_chain01 + render 1 + shadow 0 + beaming 0 + transparencyhint 1 + tilefade 0 + rotatetexture 0 + verts 4 + 0.04 -0.02 0 + -0.03 0 0 + -0.03 0 1 + 0.04 -0.02 1 + faces 4 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 1 0 2 1 1 0 2 0 + 2 0 3 1 2 0 3 0 + tverts 4 + 0.000499487 -2.99675 0 + 0.999497 -2.99675 0 + 0.999501 3.49675 0 + 0.000502765 3.49675 0 +endnode +node trimesh cylinder12 + parent plc_dd27 + position -0.888226 0.10297 2.19 + orientation 0 0 -1 -0.410152 + wirecolor 0.878906 0.878906 0.878906 + ambient 0 0 0 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_rail02 + render 1 + shadow 0 + beaming 0 + transparencyhint 1 + tilefade 0 + rotatetexture 0 + verts 14 + 0 -0.01 -0.3 + -0.14 -0.11 -0.2 + -0.16 0.06 -0.2 + 0.02 -0.18 -0.2 + 0.16 -0.08 -0.2 + 0.14 0.09 -0.2 + -0.02 0.16 -0.2 + -0.14 -0.11 0.33 + -0.16 0.06 0.33 + 0.02 -0.18 0.33 + 0.16 -0.08 0.33 + 0.14 0.09 0.33 + -0.02 0.16 0.33 + 0 -0.01 0.59 + faces 24 + 0 1 2 1 0 1 2 0 + 0 3 1 1 0 3 1 0 + 0 4 3 1 0 4 3 0 + 0 5 4 1 0 5 4 0 + 0 6 5 1 0 6 7 0 + 0 2 6 1 0 2 6 0 + 2 7 8 1 2 8 9 0 + 2 1 7 1 2 1 8 0 + 1 9 7 1 1 10 8 0 + 1 3 9 1 1 3 10 0 + 3 10 9 1 3 11 10 0 + 3 4 10 1 3 4 11 0 + 4 11 10 1 4 12 11 0 + 4 5 11 1 4 5 12 0 + 5 12 11 1 7 13 14 0 + 5 6 12 1 7 6 13 0 + 6 8 12 1 6 9 13 0 + 6 2 8 1 6 2 9 0 + 8 7 13 1 15 16 17 0 + 7 9 13 1 16 18 17 0 + 9 10 13 1 18 19 20 0 + 10 11 13 1 19 21 20 0 + 11 12 13 1 22 23 24 0 + 12 8 13 1 23 15 17 0 + tverts 25 + 0.657565 -0.023714 0 + 0.515253 0.0126493 0 + 0.337799 0.0126493 0 + 0.674225 0.0126493 0 + 0.837327 0.0126493 0 + 1.01478 0.0126493 0 + 0.174697 0.0126493 0 + 0.0157246 0.0126493 0 + 0.515253 0.209927 0 + 0.337799 0.209927 0 + 0.674225 0.209927 0 + 0.837327 0.209927 0 + 1.01478 0.209927 0 + 0.174697 0.209927 0 + 0.0157246 0.209927 0 + 0.323319 0.206827 0 + 0.174813 0.206827 0 + 0.244603 0.316727 0 + 0.322765 0.206827 0 + 0.173812 0.206827 0 + 0.239537 0.316727 0 + 0.324178 0.206827 0 + 0.321788 0.206827 0 + 0.175932 0.206827 0 + 0.24207 0.316727 0 +endnode +node trimesh line1073 + parent plc_dd27 + position -0.888226 0.10297 3.65 + orientation 0 0 -1 -0.410152 + wirecolor 0.894531 0.894531 0.894531 + ambient 0 0 0 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_chain01 + render 1 + shadow 0 + beaming 0 + transparencyhint 1 + tilefade 0 + rotatetexture 0 + verts 4 + 0.02 0.02 0 + -0.01 -0.04 0 + -0.01 -0.04 -1 + 0.02 0.02 -1 + faces 4 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 1 0 2 1 1 0 2 0 + 2 0 3 1 2 0 3 0 + tverts 4 + 0.000499487 -2.99675 0 + 0.999497 -2.99675 0 + 0.999501 3.49675 0 + 0.000502765 3.49675 0 +endnode +endmodelgeom plc_dd27 + +#MAXANIM ASCII +newanim animloop01 plc_dd27 + length 0.0333333 + transtime 0 + animroot plc_dd27 + node dummy plc_dd27 + parent NULL + endnode + node dummy box01 + parent plc_dd27 + #part-number -1 + endnode + node light ttr01_u17_01ml2 + parent plc_dd27 + endnode + node dummy box29 + parent plc_dd27 + endnode + node trimesh mesh307 + parent plc_dd27 + selfillumcolorkey + 0 1 1 1 + 0.0333333 1 1 1 + endlist + endnode + node dummy line566 + parent plc_dd27 + endnode + node dummy cylinder12 + parent plc_dd27 + endnode + node dummy line1073 + parent plc_dd27 + endnode +doneanim animloop01 plc_dd27 +donemodel plc_dd27 diff --git a/tests/fixtures/oracle/ascii/plc_dummy_only.mdl b/tests/fixtures/oracle/ascii/plc_dummy_only.mdl new file mode 100644 index 0000000..0a28ee3 --- /dev/null +++ b/tests/fixtures/oracle/ascii/plc_dummy_only.mdl @@ -0,0 +1,11 @@ +# Oracle test: dummy-only model (no mesh) +newmodel plc_dummy_only + setsupermodel plc_dummy_only NULL + classification EFFECTS + setanimationscale 1.0 +beginmodelgeom plc_dummy_only + node dummy plc_dummy_only + parent NULL + endnode +endmodelgeom plc_dummy_only +donemodel plc_dummy_only diff --git a/tests/fixtures/oracle/ascii/plc_guillo2.mdl b/tests/fixtures/oracle/ascii/plc_guillo2.mdl new file mode 100644 index 0000000..0c48b58 --- /dev/null +++ b/tests/fixtures/oracle/ascii/plc_guillo2.mdl @@ -0,0 +1,4748 @@ +# Rewritten by CleanModels 3 Version 3.5.2d Sun Oct 13 18:37:00 2019 +#MAXMODEL ASCII +filedependency Unknown +newmodel plc_guillo2 + classification CHARACTER + setsupermodel plc_guillo2 NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom plc_guillo2 +node dummy plc_guillo2 + parent NULL +endnode +node dummy guillo_hand + parent plc_guillo2 + position 0.00398926 -0.505197 0.934402 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 +endnode +node dummy guillo_head + parent plc_guillo2 + position 0 0 2.67591 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 +endnode +node dummy guillo_head_hit + parent plc_guillo2 + position 0 0 3.16709 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 +endnode +node dummy guillo_impact + parent plc_guillo2 + position 0.00398926 0.0109997 0.868134 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 +endnode +node dummy guillo_ground + parent plc_guillo2 + position -0.00363281 0.00698791 0 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 +endnode +node trimesh damage33 + parent plc_guillo2 + bitmap black + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 + ambient 0.0705882 0 1 + diffuse 1 0.501961 0.643137 + specular 0 0 0 + shininess 24 + render 0 + shadow 1 + beaming 0 + transparencyhint 0 + tilefade 0 + rotatetexture 0 + verts 12 + -0.195415 -0.186216 0 + -0.195415 0.186216 0 + 0.195415 0.186216 0 + 0.195415 -0.186216 0 + -0.195415 -0.186216 0.5 + 0.195415 -0.186216 0.5 + 0.195415 0.186216 0.5 + -0.195415 0.186216 0.5 + 0.103944 -0.0990515 0.25 + -0.103944 -0.0990515 0.25 + 0.103944 0.0990511 0.25 + -0.103944 0.0990511 0.25 + faces 20 + 0 1 2 1 0 0 0 0 + 2 3 0 1 0 0 0 0 + 4 5 6 1 0 0 0 0 + 6 7 4 1 0 0 0 0 + 0 3 8 1 0 0 0 0 + 8 9 0 1 0 0 0 0 + 9 8 5 1 0 0 0 0 + 5 4 9 1 0 0 0 0 + 3 2 10 1 0 0 0 0 + 10 8 3 1 0 0 0 0 + 8 10 6 1 0 0 0 0 + 6 5 8 1 0 0 0 0 + 2 1 11 1 0 0 0 0 + 11 10 2 1 0 0 0 0 + 10 11 7 1 0 0 0 0 + 7 6 10 1 0 0 0 0 + 1 0 9 1 0 0 0 0 + 9 11 1 1 0 0 0 0 + 11 9 4 1 0 0 0 0 + 4 7 11 1 0 0 0 0 + tverts 1 + 0 0 0 +endnode +node trimesh box01 + parent damage33 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.527344 0.527344 0.527344 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap plc_woodb256 + verts 20 + 0.55 0.0417492 0 + 0.22006 0.0417493 0 + -0.22006 0.0417493 0 + -0.55 0.0417493 0 + 0.55 -0.0417493 0 + 0.22006 -0.0417493 0 + -0.22006 -0.0417493 0 + -0.55 -0.0417492 0 + 0.55 0.0417491 0.62 + -0.55 0.0417492 0.62 + 0.55 -0.0417494 0.62 + -0.55 -0.0417494 0.62 + 0.22006 0.0417492 0.62 + -0.220059 0.0417492 0.62 + 0.22006 -0.0417494 0.62 + -0.220059 -0.0417494 0.62 + -0.22006 0.0417493 0.31 + 0.22006 0.0417492 0.31 + -0.22006 -0.0417493 0.31 + 0.22006 -0.0417494 0.31 + faces 16 + 14 10 8 1 9 5 3 0 + 8 12 14 1 3 7 9 0 + 11 15 13 1 6 10 8 0 + 13 9 11 1 8 4 6 0 + 2 3 9 1 2 11 13 4 + 5 4 10 1 1 0 12 5 + 1 8 0 1 1 12 0 4 + 12 8 1 1 14 12 1 4 + 17 2 16 1 17 2 16 4 + 1 2 17 1 1 2 17 4 + 9 13 2 1 13 15 2 4 + 6 11 7 1 2 13 11 5 + 15 11 6 1 15 13 2 5 + 18 6 19 1 16 2 17 5 + 5 19 6 1 1 17 2 5 + 10 14 5 1 12 14 1 5 + tverts 18 + 0.662898 0.714599 0 + 0.332958 0.714599 0 + -0.107161 0.714599 0 + 0.141189 -0.0180435 0 + 0.141189 0.41901 0 + 0.0762021 -0.0180435 0 + 0.076202 0.41901 0 + 0.141189 0.308897 0 + 0.141189 0.0920687 0 + 0.0762021 0.308897 0 + 0.076202 0.0920687 0 + -0.437102 0.714599 0 + 0.662898 0.136564 0 + -0.437102 0.136564 0 + 0.332958 0.136564 0 + -0.107161 0.136564 0 + -0.107161 0.425581 0 + 0.332958 0.425581 0 +endnode +node trimesh neckrest + parent box01 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap plc_rugdmtlbrk + verts 18 + 0.22006 0.0417493 0.62 + -0.22006 0.0417493 0.62 + 0.22006 -0.0417493 0.62 + -0.22006 -0.0417493 0.62 + -0.153081 -0.0417493 0.62 + -0.153081 0.0417493 0.62 + 0.153081 0.0417493 0.62 + 0.153081 -0.0417493 0.62 + 0.108245 0.0417493 0.511755 + 0.108245 -0.0417493 0.511755 + 0 -0.0417493 0.466919 + 0 0.0417493 0.466919 + -0.108245 -0.0417493 0.511756 + -0.108245 0.0417493 0.511756 + 0.22006 0.0417493 0.31 + -0.22006 -0.0417493 0.31 + 0.22006 -0.0417493 0.31 + -0.22006 0.0417493 0.31 + faces 26 + 6 7 2 1 6 7 2 0 + 2 0 6 1 2 0 6 0 + 1 3 4 1 1 3 4 0 + 4 5 1 1 4 5 1 0 + 11 14 17 1 19 21 22 4 + 7 6 8 1 7 6 8 0 + 7 8 9 1 7 8 9 0 + 9 8 10 1 9 8 10 0 + 10 8 11 1 10 8 11 0 + 10 11 13 1 10 11 13 0 + 10 13 12 1 10 13 12 0 + 12 13 4 1 12 13 4 0 + 4 13 5 1 4 13 5 0 + 14 11 8 1 21 19 18 4 + 14 8 6 1 21 18 17 4 + 14 6 0 1 21 17 14 4 + 4 3 15 1 16 15 22 5 + 12 4 15 1 20 16 22 5 + 12 15 10 1 20 22 19 5 + 16 2 7 1 21 14 17 5 + 16 7 9 1 21 17 18 5 + 16 10 15 1 21 19 22 5 + 9 10 16 1 18 19 21 5 + 13 11 17 1 20 19 22 4 + 17 1 5 1 22 15 16 4 + 13 17 5 1 20 22 16 4 + tverts 23 + 0.535995 0.189907 0 + 1.21763 0.189907 0 + 0.535995 0.26903 0 + 1.21763 0.26903 0 + 1.13049 0.26903 0 + 1.13049 0.189907 0 + 0.623132 0.189907 0 + 0.623132 0.26903 0 + 0.743147 0.189907 0 + 0.743147 0.26903 0 + 0.876812 0.26903 0 + 0.876812 0.189907 0 + 1.01048 0.26903 0 + 1.01048 0.189907 0 + 0.457188 0.407423 0 + 0.035566 0.407423 0 + 0.0997297 0.407423 0 + 0.393024 0.407423 0 + 0.350072 0.308709 0 + 0.246377 0.26782 0 + 0.142682 0.308709 0 + 0.457188 0.124717 0 + 0.035566 0.124717 0 +endnode +node trimesh neckrest01 + parent neckrest + position 0 0 0.780241 + orientation 0 0 0 0 + wirecolor 0.839844 0.839844 0.839844 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap plc_rugdmtlbrk + verts 18 + 0.22006 0.0417492 -0.155 + -0.22006 0.0417493 -0.155 + 0.22006 -0.0417493 -0.155 + -0.22006 -0.0417493 -0.155 + -0.153081 -0.0417493 -0.155 + -0.153081 0.0417493 -0.155 + 0.153081 0.0417492 -0.155 + 0.153081 -0.0417493 -0.155 + 0.108245 0.0417493 -0.0467555 + 0.108245 -0.0417493 -0.0467555 + 0 -0.0417493 -0.00191926 + 0 0.0417493 -0.00191921 + -0.108245 -0.0417493 -0.0467555 + -0.108245 0.0417493 -0.0467556 + 0.22006 0.0417493 0.115 + -0.22006 -0.0417493 0.115 + 0.22006 -0.0417493 0.115 + -0.22006 0.0417493 0.115 + faces 28 + 14 11 17 1 17 15 18 4 + 6 7 8 1 2 3 4 0 + 8 7 9 1 4 3 5 0 + 8 9 10 1 4 5 6 0 + 8 10 11 1 4 6 7 0 + 11 10 13 1 7 6 9 0 + 13 10 12 1 9 6 8 0 + 13 12 4 1 9 8 0 0 + 13 4 5 1 9 0 1 0 + 11 14 8 1 15 17 14 4 + 8 14 6 1 14 17 13 4 + 6 14 0 1 13 17 10 4 + 3 4 15 1 11 12 18 5 + 4 12 15 1 12 16 18 5 + 15 12 10 1 18 16 15 5 + 2 16 7 1 10 17 13 5 + 7 16 9 1 13 17 14 5 + 10 16 15 1 15 17 18 5 + 10 9 16 1 15 14 17 5 + 11 13 17 1 15 16 18 4 + 1 17 5 1 11 18 12 4 + 17 13 5 1 18 16 12 4 + 14 16 0 1 21 22 19 0 + 0 16 2 1 19 22 20 0 + 17 1 3 1 21 19 20 0 + 17 3 15 1 21 20 22 0 + 17 15 16 1 26 24 25 0 + 17 16 14 1 26 25 23 0 + tverts 27 + 1.13049 0.26903 0 + 1.13049 0.189907 0 + 0.623132 0.189907 0 + 0.623132 0.26903 0 + 0.743147 0.189907 0 + 0.743147 0.26903 0 + 0.876812 0.26903 0 + 0.876812 0.189907 0 + 1.01048 0.26903 0 + 1.01048 0.189907 0 + 0.457188 0.407423 0 + 0.035566 0.407423 0 + 0.0997297 0.407423 0 + 0.393024 0.407423 0 + 0.350072 0.308709 0 + 0.246377 0.26782 0 + 0.142682 0.308709 0 + 0.457188 0.163364 0 + 0.035566 0.163364 0 + 0.888827 0.385141 0 + 0.946922 0.385141 0 + 0.888827 0.0737958 0 + 0.946922 0.0737958 0 + 0.556927 0.365276 0 + 0.935827 0.446319 0 + 0.556927 0.446319 0 + 0.935827 0.365276 0 +endnode +node trimesh box08 + parent neckrest01 + position 0.356 0 -0.0193206 + orientation 0 0 0 0 + wirecolor 0.601563 0.601563 0.601563 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap plc_woodb256 + verts 8 + 0.15 -0.03 -0.13 + -0.15 -0.03 -0.13 + 0.15 -0.03 0.09 + -0.15 -0.03 0.09 + 0.15 0.03 -0.13 + -0.15 0.03 -0.13 + 0.15 0.0299999 0.09 + -0.15 0.03 0.09 + faces 6 + 0 2 3 1 0 2 3 1 + 3 1 0 1 3 1 0 1 + 4 5 7 1 0 1 3 0 + 7 6 4 1 3 2 0 0 + 3 2 6 1 5 4 6 5 + 6 7 3 1 6 7 5 5 + tverts 8 + 0.665601 0.309209 0 + 0.665602 0.644898 0 + 0.438582 0.309209 0 + 0.438582 0.644898 0 + 0.146449 0.682482 0 + 0.146449 0.317518 0 + 0.0806042 0.682482 0 + 0.0806042 0.317518 0 +endnode +node trimesh box09 + parent neckrest01 + position -0.356 0 -0.0193206 + orientation 0 0 0 0 + wirecolor 0.113281 0.113281 0.113281 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap plc_woodb256 + verts 8 + -0.15 -0.03 -0.13 + 0.15 -0.03 -0.13 + -0.15 -0.03 0.09 + 0.15 -0.03 0.09 + -0.15 0.03 -0.13 + 0.15 0.03 -0.13 + -0.15 0.03 0.09 + 0.15 0.03 0.09 + faces 6 + 2 0 3 1 2 0 3 1 + 1 3 0 1 1 3 0 1 + 5 4 7 1 1 0 3 0 + 6 7 4 1 2 3 0 0 + 2 3 6 1 4 5 6 5 + 7 6 3 1 7 6 5 5 + tverts 8 + 0.665601 0.309209 0 + 0.665602 0.644898 0 + 0.436166 0.309209 0 + 0.436166 0.644898 0 + 0.146449 0.682482 0 + 0.146449 0.317518 0 + 0.0806042 0.682482 0 + 0.0806042 0.317518 0 +endnode +node trimesh box02 + parent box01 + position 0.58 0 0 + orientation 0 0 0 0 + wirecolor 0.691406 0.691406 0.691406 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap plc_woodb256 + verts 8 + 0.0629371 0.0839161 0 + -0.0629371 0.0839161 0 + 0.0629371 -0.0839161 0 + -0.0629371 -0.0839161 0 + 0.0629371 0.0839161 3.14685 + -0.0629371 0.0839161 3.14685 + 0.0629371 -0.0839161 3.14685 + -0.0629371 -0.0839161 3.14685 + faces 8 + 0 1 5 1 0 1 6 4 + 5 4 0 1 6 5 0 4 + 1 3 7 1 2 3 7 3 + 7 5 1 1 7 4 2 3 + 3 2 6 1 1 0 5 5 + 6 7 3 1 5 6 1 5 + 2 0 4 1 3 2 4 2 + 4 6 2 1 4 7 3 2 + tverts 8 + 0.582049 -0.86 0 + 0.417951 -0.86 0 + 0.807786 -0.885 0 + 0.973388 -0.885 0 + 0.807786 1.885 0 + 0.582049 1.86 0 + 0.417951 1.86 0 + 0.973388 1.885 0 +endnode +node trimesh box03 + parent box02 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.601563 0.601563 0.601563 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap plc_woodb256 + verts 10 + 0.05 0.3 0 + -0.05 0.3 0 + 0.05 -0.3 0 + -0.05 -0.3 0 + 0.05 0.3 0.0312471 + -0.05 0.3 0.0312471 + 0.05 0 0.3 + -0.05 0 0.3 + 0.05 -0.3 0.0312471 + -0.05 -0.3 0.0312471 + faces 14 + 4 5 7 1 5 6 8 0 + 7 6 4 1 8 7 5 0 + 6 7 9 1 7 8 6 0 + 9 8 6 1 6 5 7 0 + 0 1 5 1 3 4 6 4 + 5 4 0 1 6 5 3 4 + 7 5 1 1 9 2 0 3 + 1 3 9 1 0 1 10 3 + 9 7 1 1 10 9 0 3 + 3 2 8 1 4 3 5 5 + 8 9 3 1 5 6 4 5 + 2 0 4 1 1 0 2 2 + 6 8 2 1 9 10 1 2 + 4 6 2 1 2 9 1 2 + tverts 11 + 0.235356 0.169337 0 + 0.764644 0.169337 0 + 0.235356 0.20051 0 + 0.111776 0.169863 0 + 0.00416592 0.169863 0 + 0.111776 0.217466 0 + 0.00416592 0.217466 0 + 0.111776 0.626894 0 + 0.00416592 0.626894 0 + 0.5 0.46862 0 + 0.764644 0.20051 0 +endnode +node trimesh box05 + parent box02 + position -0.58 0 3.15 + orientation 0 0 0 0 + wirecolor 0.113281 0.113281 0.113281 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap plc_woodb256 + verts 8 + 0.65 0.0899999 -0.00999979 + -0.65 0.09 -0.00999979 + 0.65 -0.09 -0.00999979 + -0.65 -0.0899999 -0.00999979 + 0.65 0.0899999 0.0300003 + -0.65 0.09 0.0300003 + 0.65 -0.09 0.0300003 + -0.65 -0.0899999 0.0300003 + faces 12 + 0 2 3 1 9 11 10 1 + 3 1 0 1 10 8 9 1 + 4 5 7 1 8 9 11 0 + 7 6 4 1 11 10 8 0 + 0 1 5 1 4 5 7 4 + 5 4 0 1 7 6 4 4 + 1 3 7 1 0 1 3 3 + 7 5 1 1 3 2 0 3 + 3 2 6 1 4 5 7 5 + 6 7 3 1 7 6 4 5 + 2 0 4 1 0 1 3 2 + 4 6 2 1 3 2 0 2 + tverts 12 + 0.851394 0.594395 0 + 1.03097 0.594395 0 + 0.851394 0.663093 0 + 1.03097 0.663093 0 + 0.947625 0 0 + 0.947625 1 0 + 0.88136 0 0 + 0.88136 1 0 + 0.581167 0 0 + 0.581167 1 0 + 0.406273 0 0 + 0.406273 1 0 +endnode +node trimesh bladebase + parent box05 + position 0 0 -0.15 + orientation 0 0 0 0 + wirecolor 0.890625 0.890625 0.890625 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap plc_rugdmtlbrk + verts 8 + 0.5 -0.02 -0.0500003 + -0.5 -0.0199999 -0.0500003 + 0.5 -0.02 0.0499997 + -0.5 -0.02 0.0499997 + 0.5 0.02 -0.0500003 + -0.5 0.02 -0.0500003 + 0.5 0.0199999 0.0499997 + -0.5 0.02 0.0499997 + faces 8 + 0 2 3 1 5 7 6 1 + 3 1 0 1 6 4 5 1 + 4 5 7 1 4 5 7 0 + 7 6 4 1 7 6 4 0 + 0 1 5 1 0 1 3 4 + 5 4 0 1 3 2 0 4 + 3 2 6 1 0 1 3 5 + 6 7 3 1 3 2 0 5 + tverts 8 + 0.187478 0.37842 0 + 0.812522 0.37842 0 + 0.187478 0.414446 0 + 0.812522 0.414446 0 + 0.18666 0.205094 0 + 0.81334 0.205094 0 + 0.18666 0.287362 0 + 0.81334 0.287362 0 +endnode +node trimesh blade + parent bladebase + position 0 0 -0.34 + orientation 0 0 0 0 + wirecolor 0.105469 0.105469 0.105469 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap plc_bookcover + verts 6 + 0.48 0 0.0800001 + -0.48 0 -0.37 + 0.48 -0.0050001 0.33 + -0.48 -0.00500002 0.33 + 0.48 0.0049999 0.33 + -0.48 0.00499998 0.33 + faces 4 + 0 2 3 1 0 2 3 1 + 3 1 0 1 3 1 0 1 + 0 1 5 1 0 1 3 0 + 5 4 0 1 3 2 0 0 + tverts 4 + 0.865342 0.750183 0 + 0.946993 0.992251 0 + 0.81233 0.750183 0 + 0.81233 0.992251 0 +endnode +node trimesh box04 + parent box01 + position -0.58 0 0 + orientation 0 0 0 0 + wirecolor 0.347656 0.347656 0.347656 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap plc_woodb256 + verts 8 + -0.0629371 0.0839161 0 + 0.0629371 0.0839161 0 + -0.0629371 -0.0839161 0 + 0.0629371 -0.0839161 0 + -0.0629371 0.0839161 3.14685 + 0.0629371 0.0839161 3.14685 + -0.0629371 -0.0839161 3.14685 + 0.0629371 -0.0839161 3.14685 + faces 8 + 1 0 5 1 1 0 9 4 + 4 5 0 1 8 9 0 4 + 3 1 7 1 5 3 11 3 + 5 7 1 1 7 11 3 3 + 2 3 6 1 0 1 8 5 + 7 6 3 1 9 8 1 5 + 0 2 4 1 2 4 6 2 + 6 4 2 1 10 6 4 2 + tverts 12 + 0.582049 -0.86 0 + 0.417951 -0.86 0 + 0.807786 -0.885 0 + 0.574777 -0.885 0 + 0.973388 -0.885 0 + 0.740378 -0.885 0 + 0.807786 1.885 0 + 0.574777 1.885 0 + 0.582049 1.86 0 + 0.417951 1.86 0 + 0.973388 1.885 0 + 0.740378 1.885 0 +endnode +node trimesh box07 + parent box04 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.527344 0.527344 0.527344 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap plc_woodb256 + verts 10 + -0.05 0.3 0 + 0.05 0.3 0 + -0.05 -0.3 0 + 0.05 -0.3 0 + -0.05 0.3 0.0312471 + 0.05 0.3 0.0312471 + -0.05 0 0.3 + 0.05 0 0.3 + -0.05 -0.3 0.0312471 + 0.05 -0.3 0.0312471 + faces 14 + 5 4 7 1 6 5 8 0 + 6 7 4 1 7 8 5 0 + 7 6 9 1 8 7 6 0 + 8 9 6 1 5 6 7 0 + 1 0 5 1 4 3 6 4 + 4 5 0 1 5 6 3 4 + 5 7 1 1 2 9 0 3 + 3 1 9 1 1 0 10 3 + 7 9 1 1 9 10 0 3 + 2 3 8 1 3 4 5 5 + 9 8 3 1 6 5 4 5 + 4 2 6 1 2 1 9 2 + 8 6 2 1 10 9 1 2 + 2 4 0 1 1 2 0 2 + tverts 11 + 0.235356 0.169337 0 + 0.764644 0.169337 0 + 0.235356 0.20051 0 + 0.111776 0.169863 0 + 0.00416592 0.169863 0 + 0.111776 0.217466 0 + 0.00416592 0.217466 0 + 0.111776 0.626894 0 + 0.00416592 0.626894 0 + 0.5 0.46862 0 + 0.764644 0.20051 0 +endnode +node trimesh pelvis_g + parent plc_guillo2 + position 0 -0.417144 0.729264 + orientation 0 0 0 0 + wirecolor 0.347656 0.347656 0.347656 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.26 0.26 0.26 + shininess 14 + bitmap h_f01_pel + verts 68 + -0.0690656 0.0653129 0.00136481 + -0.10856 0.00316486 -0.000200599 + -0.0528147 -0.000304533 0.0496145 + 0 0.0437576 0.0476349 + -0.0207932 0.0427616 -0.238108 + 0 -0.00645616 -0.27454 + -0.129739 0.0152493 -0.240458 + -0.118087 0.0619889 -0.194876 + -0.167471 0.00787315 -0.186845 + -0.0795029 -0.043208 -0.284161 + -0.139473 -0.0382632 -0.251074 + 0 -0.0744941 -0.00676914 + 0 -0.0446107 0.032749 + -0.0647389 -0.0655077 -0.000703259 + -0.101372 -0.136467 -0.125394 + -0.163191 -0.0713411 -0.189378 + -0.112736 -0.145329 -0.191217 + -0.105654 -0.117815 -0.238748 + -0.129415 -0.0904275 -0.249438 + -0.0200669 -0.133048 -0.221756 + 0 -0.113963 -0.227117 + 0 -0.10824 -0.0365202 + -0.0312394 -0.160413 -0.125543 + 0 -0.148309 -0.126328 + -0.0346313 -0.145826 -0.131932 + -0.161847 -0.0340929 -0.143721 + -0.110176 0.0723295 -0.0545049 + -0.102196 0.0603158 -0.0639612 + -0.0823994 -0.0907692 -0.0228949 + -0.118215 -0.0113534 -0.0425573 + -0.0752599 -0.0858874 -0.0365147 + 0 0.097372 -0.127737 + 0 0.0685202 -0.242334 + -0.0474977 0.097372 -0.127737 + -0.0209666 0.0565661 -0.243355 + -0.0473242 0.077785 -0.121052 + 0 0.0809492 -0.0177309 + 0 0.00550495 -0.275489 + 0 0.0653129 0.00136477 + -0.128956 -0.0103581 -0.0286026 + 0.10856 0.00316486 -0.000200599 + 0.0690656 0.0653129 0.00136481 + 0.0528147 -0.000304533 0.0496145 + 0.0207932 0.0427616 -0.238108 + 0.129739 0.0152493 -0.240458 + 0.118087 0.0619889 -0.194876 + 0.167471 0.00787315 -0.186845 + 0.0795029 -0.043208 -0.284161 + 0.139473 -0.0382632 -0.251074 + 0.0647389 -0.0655077 -0.000703259 + 0.163191 -0.0713411 -0.189378 + 0.101372 -0.136467 -0.125394 + 0.112736 -0.145329 -0.191217 + 0.129415 -0.0904275 -0.249438 + 0.105654 -0.117815 -0.238748 + 0.0200669 -0.133048 -0.221756 + 0.0312394 -0.160413 -0.125543 + 0.0346313 -0.145826 -0.131932 + 0.161847 -0.0340929 -0.143721 + 0.110176 0.0723295 -0.0545049 + 0.102196 0.0603158 -0.0639612 + 0.118215 -0.0113534 -0.0425573 + 0.0823994 -0.0907692 -0.0228949 + 0.0752599 -0.0858874 -0.0365147 + 0.0474977 0.097372 -0.127737 + 0.0209666 0.0565661 -0.243355 + 0.0473242 0.077785 -0.121052 + 0.128956 -0.0103581 -0.0286026 + faces 132 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 4 5 6 1 4 5 6 0 + 4 6 7 1 4 6 7 0 + 7 6 8 1 7 6 8 0 + 5 9 6 1 9 10 6 0 + 6 9 10 1 6 10 11 0 + 6 10 8 1 6 11 8 0 + 11 12 13 1 12 13 14 0 + 14 15 16 1 15 16 17 0 + 12 2 13 1 13 2 14 0 + 13 2 1 1 14 2 1 0 + 17 18 9 1 18 19 10 0 + 17 9 19 1 18 10 20 0 + 19 9 5 1 20 10 21 0 + 18 8 10 1 19 8 11 0 + 18 10 9 1 19 11 10 0 + 20 19 5 1 22 20 23 0 + 17 15 18 1 18 16 19 0 + 21 22 23 1 24 25 26 0 + 19 24 14 1 20 27 15 0 + 23 19 20 1 26 20 22 0 + 14 25 15 1 15 28 16 0 + 18 15 8 1 19 16 8 0 + 19 16 17 1 20 17 18 0 + 1 0 26 1 1 0 29 0 + 25 27 8 1 28 30 8 0 + 8 27 7 1 8 30 7 0 + 28 29 30 1 31 32 33 0 + 21 13 28 1 24 14 31 0 + 31 32 33 1 34 35 36 0 + 33 32 34 1 36 35 37 0 + 35 7 27 1 38 7 30 0 + 26 0 33 1 29 0 36 0 + 25 29 27 1 28 32 30 0 + 36 33 0 1 39 36 0 0 + 12 3 2 1 13 3 2 0 + 16 15 17 1 17 16 18 0 + 19 14 16 1 20 15 17 0 + 15 25 8 1 16 28 8 0 + 30 29 25 1 33 32 28 0 + 23 22 19 1 26 25 20 0 + 35 4 7 1 38 4 7 0 + 32 37 34 1 35 40 37 0 + 5 4 34 1 41 4 37 0 + 34 37 5 1 37 40 42 0 + 4 35 33 1 4 38 36 0 + 33 34 4 1 36 37 4 0 + 30 24 22 1 33 27 25 0 + 19 22 24 1 20 25 27 0 + 38 36 0 1 43 39 0 0 + 38 0 3 1 43 0 3 0 + 36 31 33 1 39 34 36 0 + 11 13 21 1 12 14 24 0 + 27 33 35 1 30 36 38 0 + 27 26 33 1 30 29 36 0 + 39 26 27 1 44 29 30 0 + 13 1 39 1 14 1 44 0 + 39 1 26 1 44 1 29 0 + 29 39 27 1 32 44 30 0 + 28 39 29 1 31 44 32 0 + 30 25 14 1 33 28 15 0 + 30 14 24 1 33 15 27 0 + 28 30 22 1 31 33 25 0 + 21 28 22 1 24 31 25 0 + 13 39 28 1 14 44 31 0 + 40 41 42 1 1 0 2 0 + 42 41 3 1 2 0 3 0 + 5 43 44 1 45 4 6 0 + 44 43 45 1 6 4 7 0 + 44 45 46 1 6 7 8 0 + 47 5 44 1 46 47 6 0 + 47 44 48 1 46 6 11 0 + 48 44 46 1 11 6 8 0 + 12 11 49 1 13 12 14 0 + 50 51 52 1 16 15 17 0 + 42 12 49 1 2 13 14 0 + 42 49 40 1 2 14 1 0 + 53 54 47 1 19 18 46 0 + 47 54 55 1 46 18 48 0 + 47 55 5 1 46 48 49 0 + 46 53 48 1 8 19 11 0 + 48 53 47 1 11 19 46 0 + 55 20 5 1 48 22 50 0 + 50 54 53 1 16 18 19 0 + 56 21 23 1 25 24 26 0 + 57 55 51 1 27 48 15 0 + 55 23 20 1 48 26 22 0 + 58 51 50 1 28 15 16 0 + 50 53 46 1 16 19 8 0 + 52 55 54 1 17 48 18 0 + 41 40 59 1 0 1 29 0 + 60 58 46 1 30 28 8 0 + 60 46 45 1 30 8 7 0 + 61 62 63 1 32 31 33 0 + 49 21 62 1 14 24 31 0 + 32 31 64 1 35 34 36 0 + 32 64 65 1 35 36 37 0 + 45 66 60 1 7 38 30 0 + 41 59 64 1 0 29 36 0 + 61 58 60 1 32 28 30 0 + 64 31 36 1 36 34 39 0 + 3 12 42 1 3 13 2 0 + 50 52 54 1 16 17 18 0 + 51 55 52 1 15 48 17 0 + 58 50 46 1 28 16 8 0 + 61 63 58 1 32 33 28 0 + 56 23 55 1 25 26 48 0 + 43 66 45 1 4 38 7 0 + 37 32 65 1 40 35 37 0 + 43 5 65 1 4 51 37 0 + 37 65 5 1 40 37 52 0 + 66 43 64 1 38 4 36 0 + 65 64 43 1 37 36 4 0 + 57 63 56 1 27 33 25 0 + 56 55 57 1 25 48 27 0 + 36 38 41 1 39 43 0 0 + 41 38 3 1 0 43 3 0 + 64 36 41 1 36 39 0 0 + 49 11 21 1 14 12 24 0 + 64 60 66 1 36 30 38 0 + 59 60 64 1 29 30 36 0 + 59 67 60 1 29 44 30 0 + 40 49 67 1 1 14 44 0 + 40 67 59 1 1 44 29 0 + 67 61 60 1 44 32 30 0 + 67 62 61 1 44 31 32 0 + 58 63 51 1 28 33 15 0 + 51 63 57 1 15 33 27 0 + 63 62 56 1 33 31 25 0 + 62 21 56 1 31 24 25 0 + 67 49 62 1 44 14 31 0 + tverts 53 + 0.218708 0.91831 0 + 0.398292 0.923407 0 + 0.391059 0.956513 0 + 0.0362838 0.972875 0 + 0.132832 0.141403 0 + 0.151653 0.0579376 0 + 0.344694 0.136409 0 + 0.273667 0.23282 0 + 0.381612 0.252056 0 + 0.155582 0.0592074 0 + 0.690035 0.0352837 0 + 0.493425 0.124121 0 + 0.960007 0.921919 0 + 0.957398 0.972871 0 + 0.725023 0.901754 0 + 0.73597 0.448917 0 + 0.572137 0.247739 0 + 0.731373 0.257556 0 + 0.712627 0.14 0 + 0.622257 0.100017 0 + 0.88558 0.169542 0 + 0.857549 0.0314945 0 + 0.955428 0.0858103 0 + 0.906413 0.012544 0 + 0.977624 0.75746 0 + 0.839358 0.459546 0 + 0.975355 0.460579 0 + 0.814352 0.449832 0 + 0.49267 0.427239 0 + 0.27271 0.71271 0 + 0.281852 0.686973 0 + 0.720485 0.783975 0 + 0.441447 0.784262 0 + 0.706984 0.764174 0 + 0.0355693 0.512204 0 + 0.0332533 0.141512 0 + 0.154515 0.518146 0 + 0.107928 0.143993 0 + 0.173695 0.513723 0 + 0.0371356 0.861687 0 + 0.0425818 0.0550031 0 + 0.114564 0.0647467 0 + 0.116418 0.062477 0 + 0.036648 0.921281 0 + 0.440988 0.805264 0 + 0.153507 0.0602073 0 + 0.687607 0.0352837 0 + 0.155141 0.0589376 0 + 0.88558 0.166571 0 + 0.856991 0.0321781 0 + 0.908267 0.0102743 0 + 0.116418 0.0647467 0 + 0.149798 0.055668 0 +endnode +node trimesh lthigh_g + parent pelvis_g + position -0.0824522 -0.0331095 -0.19018 + orientation 0 0 0 0 + wirecolor 0.722656 0.722656 0.722656 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap h_f01_leg + verts 16 + -0.000147537 0.0635938 0.0725761 + -0.0170703 -0.0427519 0.0657452 + 0.0390366 -0.0432033 0.0705985 + -0.0802643 0.0421577 0.00153287 + -0.0337111 0.0958363 -0.00406501 + 0.0732864 0.064771 0.0045961 + 0.0688038 -0.0921254 -0.0051798 + -0.0281734 -0.0795803 -0.00321803 + -0.0128215 -0.00408686 -0.462569 + 0.0302797 -0.048707 -0.465782 + -0.0185275 -0.0749779 -0.251998 + 0.0146361 0.093448 -0.225881 + 0.0298801 0.045799 -0.462138 + -0.0415211 0.0796963 -0.216551 + 0.0683566 -0.000762842 -0.465781 + -0.0890576 0.0103633 -0.102129 + faces 28 + 0 1 2 1 0 1 2 0 + 3 1 0 1 3 1 0 0 + 3 0 4 1 3 0 4 0 + 4 0 5 1 4 0 5 0 + 5 0 2 1 5 0 2 0 + 5 2 6 1 5 2 6 0 + 6 2 7 1 7 8 9 0 + 7 2 1 1 9 8 1 0 + 8 9 10 1 10 11 12 0 + 11 12 13 1 13 14 15 0 + 12 8 13 1 14 10 15 0 + 14 12 5 1 16 14 17 0 + 10 6 7 1 12 18 19 0 + 8 10 15 1 10 12 20 0 + 15 7 3 1 20 19 21 0 + 12 14 8 1 22 23 24 0 + 8 14 9 1 24 23 25 0 + 14 5 6 1 16 17 26 0 + 5 11 4 1 17 13 27 0 + 7 1 3 1 9 1 3 0 + 9 6 10 1 28 18 12 0 + 9 14 6 1 29 30 18 0 + 10 7 15 1 12 19 20 0 + 15 3 13 1 20 21 15 0 + 8 15 13 1 10 20 15 0 + 12 11 5 1 14 13 17 0 + 4 13 3 1 27 15 21 0 + 11 13 4 1 13 15 27 0 + tverts 31 + 0.371485 0.990177 0 + 0.642623 0.995177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.982136 0.911492 0 + 0.919241 0.995043 0 + 0.772394 0.916094 0 + 0.589355 0.020881 0 + 0.790383 0.0207974 0 + 0.792307 0.462135 0 + 0.325258 0.465252 0 + 0.318015 0.0209685 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.10686 0.106161 0 + 0.106588 0.0918574 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.790732 0.02007 0 + 0.980235 0.0351188 0 +endnode +node danglymesh lshin_g + parent lthigh_g + position 0.0147878 -0.00482246 -0.461701 + orientation 1 0 0 -1.46608 + wirecolor 0.695313 0.695313 0.695313 + danglymesh 1 + tightness 3 + period 6 + displacement 0.025 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap h_f01_shin + verts 29 + -0.0273194 0.000187714 0.00186665 + 0.00873211 0.00667897 0.0387478 + -0.000455242 0.0141987 0.0315558 + 0.0185282 0.0121762 0.0299509 + 0.0281496 -0.0234044 -0.00331603 + 0.0541305 0.000568529 -0.000616022 + 0.0129155 -0.0429559 -0.000853836 + 0.0128028 0.0527175 0.00288564 + -0.0327025 -0.0567662 -0.363446 + 0.0327873 0.00366933 -0.369842 + 0.0362942 -0.0277106 -0.390978 + -0.00868361 0.0250729 -0.173274 + -0.0230834 -0.0396694 -0.24829 + -0.0517025 -0.0608534 -0.139216 + 0.0584803 0.0368086 -0.15251 + -0.0182805 0.0567377 -0.168077 + 0.0357817 -0.11001 -0.259988 + 0.0581242 -0.0279843 -0.274036 + 0.0395882 0.0205138 -0.160246 + 0.0790501 -0.164006 -0.13466 + -0.0864241 -0.114794 -0.140781 + 0.0500476 -0.132414 -0.372553 + 0.0365426 -0.0583408 -0.432134 + 0.00774828 -0.0623994 -0.395157 + 0.0560569 -0.0650097 -0.389306 + 0.0384417 -0.0947757 -0.394579 + 0.0269923 -0.110139 -0.141253 + -0.0754864 -0.00326967 -0.157149 + 0.0831557 -0.046573 -0.367513 + faces 54 + 0 1 2 1 0 1 2 0 + 2 1 3 1 2 1 3 0 + 3 4 5 1 3 4 5 0 + 3 1 4 1 3 1 4 0 + 4 1 6 1 4 1 6 0 + 6 1 0 1 6 1 0 0 + 7 0 2 1 7 0 2 0 + 7 2 3 1 7 2 3 0 + 7 3 5 1 7 3 5 0 + 8 9 10 1 8 9 10 0 + 11 12 13 1 11 12 13 0 + 14 15 7 1 14 15 16 0 + 16 17 18 1 17 18 19 0 + 19 5 4 1 20 21 22 0 + 20 19 6 1 13 23 24 0 + 21 12 8 1 25 12 8 0 + 22 23 10 1 26 27 28 0 + 22 10 24 1 26 28 29 0 + 22 24 25 1 26 29 30 0 + 22 25 23 1 26 30 27 0 + 16 18 26 1 17 31 32 0 + 19 4 6 1 23 33 24 0 + 12 16 13 1 12 34 13 0 + 20 6 0 1 13 24 35 0 + 16 26 13 1 34 23 13 0 + 21 16 12 1 25 34 12 0 + 7 27 0 1 16 36 35 0 + 28 16 21 1 37 34 25 0 + 17 9 18 1 18 9 19 0 + 15 27 7 1 15 36 16 0 + 14 7 5 1 14 16 21 0 + 19 14 5 1 20 14 21 0 + 18 9 11 1 19 9 38 0 + 9 12 11 1 9 12 38 0 + 27 13 20 1 36 13 13 0 + 27 15 11 1 36 15 11 0 + 18 11 15 1 39 11 15 0 + 15 14 18 1 15 14 39 0 + 13 26 19 1 13 23 23 0 + 19 20 13 1 23 13 13 0 + 26 18 14 1 32 39 14 0 + 14 19 26 1 14 20 32 0 + 13 27 11 1 13 36 11 0 + 27 20 0 1 36 13 35 0 + 8 12 9 1 8 12 9 0 + 28 10 9 1 40 10 9 0 + 25 8 23 1 41 8 42 0 + 23 8 10 1 42 8 10 0 + 24 21 25 1 43 25 41 0 + 25 21 8 1 41 25 8 0 + 24 10 28 1 44 10 40 0 + 21 24 28 1 45 44 40 0 + 28 9 17 1 40 9 18 0 + 16 28 17 1 17 40 18 0 + tverts 46 + 0.275716 0.935079 0 + 0.278601 0.952203 0 + 0.26384 0.949019 0 + 0.272459 0.958433 0 + 0.295073 0.966937 0 + 0.258354 0.964875 0 + 0.291914 0.941405 0 + 0.242978 0.94285 0 + 0.664042 0.0373507 0 + 0.364402 0.012291 0 + 0.35965 -0.0174975 0 + 0.434535 0.495978 0 + 0.669647 0.34247 0 + 0.786946 0.586386 0 + 0.0841635 0.57549 0 + 0.474006 0.515301 0 + 0.291996 0.947284 0 + 0.0450021 0.308353 0 + 0.168342 0.253188 0 + 0.25969 0.498909 0 + 0.0161698 0.574977 0 + 0.0810053 0.934434 0 + 0.01241 0.933473 0 + 0.979842 0.573884 0 + 0.805901 0.945514 0 + 0.955787 0.0405414 0 + 0.591597 0.0114859 0 + 0.572071 0.00999414 0 + 0.591428 0.0272528 0 + 0.60483 0.00903463 0 + 0.592885 -0.00574947 0 + 0.253889 0.500611 0 + 0.0319582 0.555653 0 + 0.993174 0.936311 0 + 0.978997 0.303222 0 + 0.560782 0.95179 0 + 0.611778 0.569618 0 + 0.983883 0.0393723 0 + 0.373583 0.466553 0 + 0.174947 0.553751 0 + 0.0567981 0.0254748 0 + 0.94805 0.0130286 0 + 0.68668 -0.00117136 0 + 0.982359 0.0145094 0 + 0.0331607 0.0102796 0 + 0.0219482 0.0228535 0 + constraints 29 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 50 + 50 + 0 + 0 + 0 + 56 + 40 + 0 + 0 + 0 + 0 + 0 + 0 + 50 + 0 +endnode +node trimesh lfoot_g + parent lshin_g + position 0.0335529 -0.0611976 -0.404146 + orientation 1 0 0 -0.863938 + wirecolor 0.605469 0.605469 0.605469 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap h_f01_feet + verts 12 + -0.0277655 0.000351873 -0.000699457 + -0.0633446 0.00122614 -0.134211 + -0.0161982 -0.0613379 -0.13468 + 0.00521662 -0.033205 0.0075744 + 0.00594802 0.0326621 0.0100276 + 0.0218459 0.00244846 0.00262438 + 0.0246724 -0.0356427 -0.132943 + 0.0237774 0.0148734 -0.112747 + -0.0653456 0.124649 -0.134869 + 0.012125 0.206036 -0.134997 + 0.0385498 0.122752 -0.134877 + 0.00917495 0.108231 -0.0812898 + faces 20 + 0 1 2 1 0 1 2 0 + 0 3 4 1 3 4 5 0 + 4 3 5 1 5 4 6 0 + 5 3 6 1 7 8 9 0 + 5 6 7 1 7 9 10 0 + 6 3 2 1 9 8 11 0 + 7 6 1 1 12 13 14 0 + 1 6 2 1 14 13 15 0 + 2 3 0 1 11 8 16 0 + 8 9 10 1 17 18 19 0 + 4 11 8 1 20 21 22 0 + 0 4 8 1 0 20 22 0 + 0 8 1 1 0 22 1 0 + 10 11 4 1 23 21 20 0 + 7 10 5 1 10 23 7 0 + 5 10 4 1 7 23 20 0 + 7 1 10 1 12 14 19 0 + 1 8 10 1 14 17 19 0 + 10 9 11 1 23 24 21 0 + 11 9 8 1 21 24 22 0 + tverts 25 + 0.71744 0.98196 0 + 0.962132 0.660483 0 + 0.953807 0.963391 0 + 0.797897 0.857116 0 + 0.844677 0.823775 0 + 0.842958 0.859934 0 + 0.87607 0.844 0 + 0.313167 0.972175 0 + 0.188707 0.981277 0 + 0.0869568 0.467914 0 + 0.133948 0.343321 0 + 0.00890986 0.542876 0 + 0.961926 0.106126 0 + 0.966394 0.0210221 0 + 0.790156 0.18789 0 + 0.85137 0.0141687 0 + 0.0177731 0.970683 0 + 0.802064 0.304896 0 + 0.960762 0.357756 0 + 0.972663 0.240236 0 + 0.544761 0.977785 0 + 0.509036 0.433405 0 + 0.738053 0.237842 0 + 0.211245 0.161963 0 + 0.532932 0.0257894 0 +endnode +node trimesh rthigh_g + parent pelvis_g + position 0.08245 -0.0331095 -0.19018 + orientation 0 0 0 0 + wirecolor 0.527344 0.527344 0.527344 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap h_f01_leg + verts 16 + 0.0170703 -0.0427519 0.0657452 + 0.000147562 0.0635938 0.0725761 + -0.0390366 -0.0432033 0.0705985 + 0.0802643 0.0421577 0.00153287 + 0.0337111 0.0958363 -0.00406501 + -0.0732864 0.064771 0.0045961 + -0.0688037 -0.0921254 -0.0051798 + 0.0281734 -0.0795803 -0.00321803 + -0.0302797 -0.048707 -0.465782 + 0.0128215 -0.00408684 -0.462569 + 0.0185275 -0.0749779 -0.251998 + -0.0298801 0.045799 -0.462138 + -0.0146361 0.093448 -0.225881 + 0.0415211 0.0796963 -0.216551 + -0.0683565 -0.000762826 -0.465781 + 0.0890576 0.0103633 -0.102129 + faces 28 + 0 1 2 1 0 1 2 0 + 0 3 1 1 0 3 1 0 + 1 3 4 1 1 3 4 0 + 1 4 5 1 1 4 5 0 + 1 5 2 1 1 5 2 0 + 2 5 6 1 2 5 6 0 + 2 6 7 1 7 8 9 0 + 2 7 0 1 7 9 0 0 + 8 9 10 1 10 11 12 0 + 11 12 13 1 13 14 15 0 + 9 11 13 1 11 13 15 0 + 11 14 5 1 13 16 17 0 + 6 10 7 1 18 12 19 0 + 10 9 15 1 12 11 20 0 + 7 15 3 1 19 20 21 0 + 14 11 9 1 22 23 24 0 + 14 9 8 1 22 24 25 0 + 5 14 6 1 17 16 26 0 + 12 5 4 1 14 17 27 0 + 0 7 3 1 0 9 3 0 + 6 8 10 1 18 28 12 0 + 14 8 6 1 29 30 18 0 + 7 10 15 1 19 12 20 0 + 3 15 13 1 21 20 15 0 + 15 9 13 1 20 11 15 0 + 12 11 5 1 14 13 17 0 + 13 4 3 1 15 27 21 0 + 13 12 4 1 15 14 27 0 + tverts 31 + 0.642623 0.995177 0 + 0.371485 0.990177 0 + 0.0147387 0.98835 0 + 0.562649 0.915606 0 + 0.349497 0.926782 0 + 0.210934 0.923409 0 + 0.00941113 0.917821 0 + 0.919241 0.995043 0 + 0.982136 0.911492 0 + 0.772394 0.916094 0 + 0.790383 0.0207974 0 + 0.589355 0.020881 0 + 0.792307 0.462135 0 + 0.318015 0.0209685 0 + 0.325258 0.465252 0 + 0.453088 0.484826 0 + 0.00774474 0.0212189 0 + 0.211093 0.923064 0 + 0.982536 0.910716 0 + 0.771641 0.916893 0 + 0.590723 0.678763 0 + 0.561977 0.915782 0 + 0.106588 0.0918574 0 + 0.10686 0.106161 0 + 0.0930636 0.106887 0 + 0.0933593 0.0919595 0 + 0.0105689 0.917497 0 + 0.35066 0.925614 0 + 0.790142 0.0198041 0 + 0.980235 0.0351188 0 + 0.790732 0.02007 0 +endnode +node danglymesh rshin_g + parent rthigh_g + position -0.01479 -0.00482245 -0.461701 + orientation 1 0 0 -1.51844 + wirecolor 0.605469 0.605469 0.605469 + danglymesh 1 + tightness 3 + period 6 + displacement 0.025 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap h_f01_shin + verts 29 + -0.00873211 0.00667897 0.0387478 + 0.0273194 0.000187708 0.00186665 + 0.000455237 0.0141987 0.0315558 + -0.0185282 0.0121762 0.0299509 + -0.0281496 -0.0234044 -0.00331603 + -0.0541305 0.000568523 -0.000616025 + -0.0129155 -0.0429559 -0.00085384 + -0.0128028 0.0527175 0.00288564 + -0.0327873 0.00366933 -0.369842 + 0.0327025 -0.0567662 -0.363446 + -0.0362942 -0.0277106 -0.390978 + 0.0230834 -0.0396694 -0.24829 + 0.00868361 0.0250729 -0.173274 + 0.0517025 -0.0608534 -0.139216 + 0.0182805 0.0567377 -0.168077 + -0.0584803 0.0368086 -0.15251 + -0.0581242 -0.0279843 -0.274036 + -0.0357817 -0.11001 -0.259988 + -0.0395882 0.0205138 -0.160246 + -0.0790501 -0.164006 -0.13466 + 0.0864241 -0.114794 -0.140781 + -0.0500476 -0.132414 -0.372553 + -0.00774828 -0.0623994 -0.395157 + -0.0365426 -0.0583408 -0.432134 + -0.0560569 -0.0650097 -0.389306 + -0.0384417 -0.0947757 -0.394579 + -0.0269923 -0.110139 -0.141253 + 0.0754864 -0.00326967 -0.157149 + -0.0831557 -0.046573 -0.367513 + faces 54 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 4 3 5 1 4 3 5 0 + 0 3 4 1 0 3 4 0 + 0 4 6 1 0 4 6 0 + 0 6 1 1 0 6 1 0 + 1 7 2 1 1 7 2 0 + 2 7 3 1 2 7 3 0 + 3 7 5 1 3 7 5 0 + 8 9 10 1 8 9 10 0 + 11 12 13 1 11 12 13 0 + 14 15 7 1 14 15 16 0 + 16 17 18 1 17 18 19 0 + 5 19 4 1 20 21 22 0 + 19 20 6 1 23 13 24 0 + 11 21 9 1 11 25 9 0 + 22 23 10 1 26 27 28 0 + 10 23 24 1 28 27 29 0 + 24 23 25 1 29 27 30 0 + 25 23 22 1 30 27 26 0 + 18 17 26 1 31 18 32 0 + 4 19 6 1 33 23 24 0 + 17 11 13 1 34 11 13 0 + 6 20 1 1 24 13 35 0 + 26 17 13 1 23 34 13 0 + 17 21 11 1 34 25 11 0 + 27 7 1 1 36 16 35 0 + 17 28 21 1 34 37 25 0 + 8 16 18 1 8 17 19 0 + 27 14 7 1 36 14 16 0 + 7 15 5 1 16 15 20 0 + 15 19 5 1 15 21 20 0 + 8 18 12 1 8 19 38 0 + 11 8 12 1 11 8 38 0 + 13 27 20 1 13 36 13 0 + 14 27 12 1 14 36 12 0 + 12 18 14 1 12 39 14 0 + 15 14 18 1 15 14 39 0 + 26 13 19 1 23 13 23 0 + 20 19 13 1 13 23 13 0 + 18 26 15 1 39 32 15 0 + 19 15 26 1 21 15 32 0 + 27 13 12 1 36 13 12 0 + 20 27 1 1 13 36 35 0 + 11 9 8 1 11 9 8 0 + 10 28 8 1 10 40 8 0 + 9 25 22 1 9 41 42 0 + 9 22 10 1 9 42 10 0 + 21 24 25 1 25 43 41 0 + 21 25 9 1 25 41 9 0 + 10 24 28 1 10 44 40 0 + 24 21 28 1 44 45 40 0 + 8 28 16 1 8 40 17 0 + 28 17 16 1 40 18 17 0 + tverts 46 + 0.278601 0.952203 0 + 0.275716 0.935079 0 + 0.26384 0.949019 0 + 0.272459 0.958433 0 + 0.295073 0.966937 0 + 0.258354 0.964875 0 + 0.291914 0.941405 0 + 0.242978 0.94285 0 + 0.364402 0.012291 0 + 0.664042 0.0373507 0 + 0.35965 -0.0174975 0 + 0.669647 0.34247 0 + 0.434535 0.495978 0 + 0.786946 0.586386 0 + 0.474006 0.515301 0 + 0.0841635 0.57549 0 + 0.291996 0.947284 0 + 0.168342 0.253188 0 + 0.0450021 0.308353 0 + 0.25969 0.498909 0 + 0.0810053 0.934434 0 + 0.0161698 0.574977 0 + 0.01241 0.933473 0 + 0.979842 0.573884 0 + 0.805901 0.945514 0 + 0.955787 0.0405414 0 + 0.572071 0.00999414 0 + 0.591597 0.0114859 0 + 0.591428 0.0272528 0 + 0.60483 0.00903463 0 + 0.592885 -0.00574947 0 + 0.253889 0.500611 0 + 0.0319582 0.555653 0 + 0.993174 0.936311 0 + 0.978997 0.303222 0 + 0.560782 0.95179 0 + 0.611778 0.569618 0 + 0.983883 0.0393723 0 + 0.373583 0.466553 0 + 0.174947 0.553751 0 + 0.0567981 0.0254748 0 + 0.94805 0.0130286 0 + 0.68668 -0.00117136 0 + 0.982359 0.0145094 0 + 0.0331607 0.0102796 0 + 0.0219482 0.0228535 0 + constraints 29 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 50 + 50 + 0 + 0 + 0 + 56 + 40 + 0 + 0 + 0 + 0 + 0 + 0 + 50 + 0 +endnode +node trimesh rfoot_g + parent rshin_g + position -0.03355 -0.0611976 -0.404146 + orientation 1 0 0 -0.698132 + wirecolor 0.695313 0.695313 0.695313 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap h_f01_feet + verts 12 + 0.0633446 0.00122615 -0.134211 + 0.0277655 0.000351882 -0.000699511 + 0.0161981 -0.0613379 -0.13468 + -0.00521664 -0.033205 0.00757433 + -0.00594804 0.0326621 0.0100276 + -0.0218459 0.00244846 0.00262431 + -0.0246724 -0.0356427 -0.132943 + -0.0237774 0.0148734 -0.112747 + -0.012125 0.206036 -0.134997 + 0.0653456 0.124649 -0.134869 + -0.0385499 0.122752 -0.134877 + -0.00917497 0.108231 -0.0812898 + faces 20 + 0 1 2 1 0 1 2 0 + 3 1 4 1 3 4 5 0 + 3 4 5 1 3 5 6 0 + 3 5 6 1 7 8 9 0 + 6 5 7 1 9 8 10 0 + 3 6 2 1 7 9 11 0 + 6 7 0 1 12 13 14 0 + 6 0 2 1 12 14 15 0 + 3 2 1 1 7 11 16 0 + 8 9 10 1 17 18 19 0 + 11 4 9 1 20 21 22 0 + 4 1 9 1 21 1 22 0 + 9 1 0 1 22 1 0 0 + 11 10 4 1 20 23 21 0 + 10 7 5 1 23 10 8 0 + 10 5 4 1 23 8 21 0 + 0 7 10 1 14 13 19 0 + 9 0 10 1 18 14 19 0 + 8 10 11 1 24 23 20 0 + 8 11 9 1 24 20 22 0 + tverts 25 + 0.962132 0.660483 0 + 0.71744 0.98196 0 + 0.953807 0.963391 0 + 0.844677 0.823775 0 + 0.797897 0.857116 0 + 0.842958 0.859934 0 + 0.87607 0.844 0 + 0.188707 0.981277 0 + 0.313167 0.972175 0 + 0.0869568 0.467914 0 + 0.133948 0.343321 0 + 0.00890986 0.542876 0 + 0.966394 0.0210221 0 + 0.961926 0.106126 0 + 0.790156 0.18789 0 + 0.85137 0.0141687 0 + 0.0177731 0.970683 0 + 0.960762 0.357756 0 + 0.802064 0.304896 0 + 0.972663 0.240236 0 + 0.509036 0.433405 0 + 0.544761 0.977785 0 + 0.738053 0.237842 0 + 0.211245 0.161963 0 + 0.532932 0.0257894 0 +endnode +node trimesh belt_g + parent pelvis_g + position 0.000943193 0 0 + orientation 0 0 0 0 + wirecolor 0.105469 0.105469 0.105469 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap h_f01_belt + verts 21 + 0.141615 -0.0134155 -0.0341294 + 0.089593 0.0672111 -0.00587989 + 0.108393 0.00483014 0.0131026 + 0 0.0612637 0.0198611 + 0 0.088139 -0.0115966 + 0 -0.0652837 0.0161494 + 0 -0.115464 -0.0317484 + 0.0805531 -0.0890204 -0.0106084 + 0 -0.189927 -0.117682 + 0.125093 -0.14733 -0.102279 + 0.176188 -0.0236637 -0.0987591 + 0.126706 0.10468 -0.110809 + 0.0443821 0.113885 -0.0805063 + -0.089593 0.0672111 -0.00587989 + -0.141615 -0.0134155 -0.0341294 + -0.108393 0.00483014 0.0131026 + -0.0805531 -0.0890204 -0.0106084 + -0.125093 -0.14733 -0.102279 + -0.176188 -0.0236637 -0.0987591 + -0.126706 0.10468 -0.110809 + -0.0443821 0.113885 -0.0805063 + faces 38 + 0 1 2 1 0 1 2 0 + 3 1 4 1 2 1 3 0 + 5 6 7 1 4 5 6 0 + 2 5 7 1 2 4 6 0 + 2 7 0 1 2 6 0 0 + 5 2 3 1 4 2 2 0 + 1 3 2 1 1 2 2 0 + 8 9 6 1 7 8 5 0 + 7 6 9 1 6 5 8 0 + 9 10 7 1 8 9 6 0 + 0 7 10 1 0 6 9 0 + 10 11 0 1 9 10 0 0 + 1 0 11 1 1 0 10 0 + 11 12 1 1 10 11 1 0 + 4 1 12 1 3 1 11 0 + 13 14 15 1 1 0 2 0 + 13 15 3 1 1 2 2 0 + 6 5 16 1 5 4 6 0 + 5 15 16 1 4 2 6 0 + 16 15 14 1 6 2 0 0 + 15 5 3 1 2 4 2 0 + 3 4 13 1 2 3 1 0 + 17 8 6 1 8 7 5 0 + 6 16 17 1 5 6 8 0 + 18 17 16 1 9 8 6 0 + 16 14 18 1 6 0 9 0 + 19 18 14 1 10 9 0 0 + 14 13 19 1 0 1 10 0 + 20 19 13 1 12 13 14 0 + 13 4 20 1 14 15 12 0 + 4 8 17 1 3 7 8 0 + 20 18 19 1 11 9 10 0 + 4 10 9 1 3 9 8 0 + 4 12 10 1 3 11 9 0 + 18 20 4 1 9 11 3 0 + 10 12 11 1 16 17 18 0 + 17 18 4 1 8 9 3 0 + 8 4 9 1 7 3 8 0 + tverts 19 + 0.595969 0.870511 0 + 0.308166 0.899838 0 + 0.40831 0.964663 0 + 0.0126897 0.899359 0 + 0.964927 0.953985 0 + 0.952457 0.856954 0 + 0.695678 0.836895 0 + 0.986787 0.0240872 0 + 0.794974 0.0673616 0 + 0.587239 0.144208 0 + 0.316535 0.199414 0 + 0.0325096 0.362127 0 + 0.0325139 0.361713 0 + 0.316607 0.199503 0 + 0.308347 0.900175 0 + 0.0131091 0.895269 0 + 0.478345 0.971108 0 + 0.666987 0.931921 0 + 0.597696 0.987 0 +endnode +node trimesh torso_g + parent plc_guillo2 + position 0 -0.417144 0.729264 + orientation 1 0 0 -2.01586 + wirecolor 0.722656 0.722656 0.722656 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap h_f01_chest + verts 90 + -0.0535266 0.0928352 0.139214 + 0 0.0919799 0.082128 + -0.0997477 0.0816276 0.0646689 + -0.0681057 0.0662433 0.0553373 + -0.0882808 0.00996657 0.00973318 + -0.114476 0.00358518 0.0516742 + 0 0.0343655 0.346428 + -0.0827 0.0158219 0.340103 + -0.0854648 -0.0531771 0.374771 + 0 0.0534704 0.0138735 + 0 -0.0277196 -0.00369843 + 0 -0.0773408 0.0494118 + 0 -0.105369 0.0815384 + -0.0634924 -0.0727199 0.0486402 + 0 -0.118922 0.353223 + -0.0983203 -0.0528382 0.38789 + -0.0995297 -0.101451 0.347256 + -0.176935 -0.0358732 0.287204 + -0.0807206 -0.112761 0.195536 + -0.121697 0.0715413 0.139719 + -0.116746 0.113312 0.161019 + -0.0987713 0.0713722 0.284613 + -0.0785373 0.0669348 0.273826 + -0.136059 0.0380865 0.269974 + -0.132849 0.103 0.201931 + -0.145449 -0.0509195 0.352465 + -0.063137 0.129707 0.169817 + -0.0373024 0.135735 0.229163 + 0 0.114128 0.211722 + -0.133749 0.000803838 0.0737364 + -0.161977 -0.0129533 0.12336 + -0.0299956 -0.134763 0.260539 + -0.0710149 -0.105334 0.0752347 + -0.0947842 0.14182 0.224091 + -0.141972 0.00253159 0.335571 + 0 0.0759011 0.264101 + -0.0345526 0.118369 0.225193 + 0 0.107176 0.21108 + 0 0.0716365 0.0532561 + -0.0987138 0.013095 0.35564 + 0 -0.0563936 0.406552 + 0.0535266 0.0928352 0.139214 + 0.0997477 0.0816276 0.0646689 + 0.0882808 0.00996657 0.00973318 + 0.0681057 0.0662433 0.0553373 + 0.114476 0.00358518 0.0516742 + 0.0827 0.0158219 0.340103 + 0.0854648 -0.0531771 0.374771 + 0.0634924 -0.0727199 0.0486402 + 0.0983203 -0.0528382 0.38789 + 0.0995297 -0.101451 0.347256 + 0.176935 -0.0358732 0.287204 + 0.0807206 -0.112761 0.195536 + 0.116746 0.113312 0.161019 + 0.121697 0.0715413 0.139719 + 0.0987713 0.0713722 0.284613 + 0.0785373 0.0669348 0.273826 + 0.136059 0.0380865 0.269974 + 0.132849 0.103 0.201931 + 0.145449 -0.0509195 0.352465 + 0.0373024 0.135735 0.229163 + 0.063137 0.129707 0.169817 + 0.133749 0.000803838 0.0737364 + 0.161977 -0.0129533 0.12336 + 0.0299956 -0.134763 0.260539 + 0.0710149 -0.105334 0.0752347 + 0.0947842 0.14182 0.224091 + 0.141972 0.00253159 0.335571 + 0.0345526 0.118369 0.225193 + 0.0987138 0.013095 0.35564 + 0.0816318 0.0928199 0.0407099 + 0.0726946 -0.098184 0.0425092 + 0.127594 0.00159609 0.0332941 + -0.0728527 -0.098184 0.0425092 + -0.0817898 0.0928199 0.0407099 + -0.127752 0.0015961 0.0332941 + 0.0647412 -0.0791839 0.00214477 + 0.113641 -0.00309699 -0.00707031 + -0.0648992 -0.0791839 0.00214477 + -0.113799 -0.00309698 -0.00707031 + -0.0821904 0.0833157 -0.0130128 + 0.0820324 0.0833157 -0.0130129 + 0.0250996 0.0976747 -0.00312419 + -0.032073 0.0976747 -0.00312419 + -0.032073 0.101793 0.0330245 + 0.0250996 0.101793 0.0330245 + 0.0250996 0.0728871 -0.000300009 + -0.032073 0.0728871 -0.000300009 + -0.032073 0.0770057 0.0358487 + 0.0250996 0.0770057 0.0358487 + faces 166 + 0 1 2 1 0 1 2 0 + 3 4 5 1 3 4 5 0 + 6 7 8 1 6 7 8 0 + 9 4 3 1 9 4 3 0 + 9 10 4 1 10 11 12 0 + 11 12 13 1 13 14 15 0 + 14 8 15 1 16 17 18 0 + 14 15 16 1 16 18 19 0 + 16 17 18 1 19 20 21 0 + 11 13 10 1 13 15 22 0 + 13 4 10 1 15 23 22 0 + 19 20 0 1 24 25 0 0 + 21 7 22 1 26 7 27 0 + 19 23 24 1 24 28 29 0 + 16 25 17 1 19 30 20 0 + 26 27 28 1 31 32 33 0 + 3 29 2 1 3 34 2 0 + 17 23 19 1 35 28 24 0 + 19 24 20 1 24 29 25 0 + 30 17 19 1 36 35 24 0 + 14 16 31 1 16 19 37 0 + 32 12 18 1 38 14 21 0 + 32 18 17 1 38 21 20 0 + 20 33 26 1 25 39 31 0 + 0 26 28 1 0 31 33 0 + 20 24 33 1 25 29 39 0 + 0 20 26 1 0 25 31 0 + 17 34 23 1 35 40 28 0 + 24 23 33 1 29 28 39 0 + 35 22 6 1 41 27 6 0 + 15 8 7 1 42 8 7 0 + 26 33 27 1 31 39 32 0 + 35 36 22 1 41 43 27 0 + 13 32 29 1 15 38 44 0 + 31 16 18 1 37 19 21 0 + 17 25 34 1 35 45 40 0 + 7 6 22 1 7 6 27 0 + 29 30 19 1 34 36 24 0 + 32 17 30 1 38 20 46 0 + 28 27 37 1 33 32 47 0 + 27 33 21 1 32 39 26 0 + 21 22 27 1 26 27 32 0 + 9 3 38 1 9 3 48 0 + 3 1 38 1 3 1 48 0 + 3 5 29 1 3 5 34 0 + 13 5 4 1 15 49 23 0 + 3 2 1 1 3 2 1 0 + 2 19 0 1 2 24 0 0 + 28 1 0 1 33 1 0 0 + 2 29 19 1 2 34 24 0 + 13 29 5 1 15 44 49 0 + 29 32 30 1 44 38 46 0 + 13 12 32 1 15 14 38 0 + 12 14 31 1 14 16 37 0 + 12 31 18 1 14 37 21 0 + 39 7 21 1 50 7 26 0 + 25 15 39 1 45 42 50 0 + 14 40 8 1 16 51 17 0 + 6 8 40 1 6 8 52 0 + 34 39 23 1 40 50 28 0 + 25 39 34 1 45 50 40 0 + 23 21 33 1 28 26 39 0 + 23 39 21 1 28 50 26 0 + 39 15 7 1 50 42 7 0 + 16 15 25 1 19 18 30 0 + 37 36 35 1 47 43 41 0 + 37 27 36 1 47 32 43 0 + 36 27 22 1 43 32 27 0 + 1 41 42 1 1 53 54 0 + 43 44 45 1 55 56 57 0 + 46 6 47 1 58 6 59 0 + 43 9 44 1 55 9 56 0 + 10 9 43 1 11 10 60 0 + 12 11 48 1 14 13 61 0 + 47 14 49 1 62 16 63 0 + 49 14 50 1 63 16 64 0 + 51 50 52 1 65 64 66 0 + 48 11 10 1 61 13 22 0 + 43 48 10 1 67 61 22 0 + 53 54 41 1 68 69 53 0 + 46 55 56 1 58 70 71 0 + 57 54 58 1 72 69 73 0 + 59 50 51 1 74 64 65 0 + 60 61 28 1 75 76 33 0 + 62 44 42 1 77 56 54 0 + 57 51 54 1 72 78 69 0 + 58 54 53 1 73 69 68 0 + 51 63 54 1 78 79 69 0 + 50 14 64 1 64 16 80 0 + 12 65 52 1 14 81 66 0 + 52 65 51 1 66 81 65 0 + 66 53 61 1 82 68 76 0 + 61 41 28 1 76 53 33 0 + 58 53 66 1 73 68 82 0 + 53 41 61 1 68 53 76 0 + 67 51 57 1 83 78 72 0 + 57 58 66 1 72 73 82 0 + 56 35 6 1 71 41 6 0 + 47 49 46 1 59 84 58 0 + 66 61 60 1 82 76 75 0 + 68 35 56 1 85 41 71 0 + 65 48 62 1 81 61 86 0 + 50 64 52 1 64 80 66 0 + 59 51 67 1 87 78 83 0 + 6 46 56 1 6 58 71 0 + 63 62 54 1 79 77 69 0 + 51 65 63 1 65 81 88 0 + 60 28 37 1 75 33 47 0 + 66 60 55 1 82 75 70 0 + 56 55 60 1 71 70 75 0 + 44 9 38 1 56 9 48 0 + 1 44 38 1 1 56 48 0 + 45 44 62 1 57 56 77 0 + 45 48 43 1 89 61 67 0 + 42 44 1 1 54 56 1 0 + 54 42 41 1 69 54 53 0 + 1 28 41 1 1 33 53 0 + 62 42 54 1 77 54 69 0 + 62 48 45 1 86 61 89 0 + 65 62 63 1 81 86 88 0 + 12 48 65 1 14 61 81 0 + 14 12 64 1 16 14 80 0 + 64 12 52 1 80 14 66 0 + 46 69 55 1 58 90 70 0 + 49 59 69 1 84 87 90 0 + 40 14 47 1 51 16 62 0 + 47 6 40 1 59 6 52 0 + 69 67 57 1 90 83 72 0 + 69 59 67 1 90 87 83 0 + 55 57 66 1 70 72 82 0 + 69 57 55 1 90 72 70 0 + 49 69 46 1 84 90 58 0 + 49 50 59 1 63 64 74 0 + 68 37 35 1 85 47 41 0 + 60 37 68 1 75 47 85 0 + 60 68 56 1 75 85 71 0 + 70 71 72 1 91 92 93 0 + 70 73 71 1 91 94 92 0 + 74 75 73 1 95 96 94 0 + 74 73 70 1 95 94 91 0 + 72 76 77 1 97 98 99 0 + 72 71 76 1 97 100 98 0 + 71 78 76 1 100 101 98 0 + 71 73 78 1 100 102 101 0 + 73 79 78 1 103 104 105 0 + 73 75 79 1 103 106 104 0 + 75 80 79 1 107 108 109 0 + 75 74 80 1 107 110 108 0 + 74 81 80 1 111 112 113 0 + 74 70 81 1 111 114 112 0 + 70 77 81 1 114 115 112 0 + 70 72 77 1 114 116 115 0 + 78 81 76 1 117 118 119 0 + 80 81 78 1 120 118 117 0 + 80 78 79 1 120 117 121 0 + 76 81 77 1 119 118 122 0 + 82 83 84 1 123 124 125 0 + 84 85 82 1 125 126 123 0 + 86 87 83 1 127 128 124 0 + 83 82 86 1 124 123 127 0 + 87 88 84 1 128 129 125 0 + 84 83 87 1 125 124 128 0 + 88 89 85 1 129 130 126 0 + 85 84 88 1 126 125 129 0 + 89 86 82 1 130 127 123 0 + 82 85 89 1 123 126 130 0 + tverts 131 + 0.679964 0.390141 0 + 0.522617 0.230249 0 + 0.804315 0.197087 0 + 0.711961 0.160224 0 + 0.828687 0.134016 0 + 0.897615 0.164159 0 + 0.529044 0.88018 0 + 0.771671 0.88277 0 + 0.770128 0.959595 0 + 0.525129 0.138268 0 + 0.0551444 0.958063 0 + 0.0551444 0.927615 0 + 0.0303795 0.941748 0 + 0.488548 0.16432 0 + 0.488548 0.230787 0 + 0.309304 0.162456 0 + 0.5 0.870697 0 + 0.29079 0.961986 0 + 0.222434 0.954427 0 + 0.21902 0.856287 0 + 0.0234026 0.708442 0 + 0.272119 0.489845 0 + 0.48877 0.12403 0 + 0.239547 0.145258 0 + 0.870124 0.426427 0 + 0.831842 0.471538 0 + 0.776739 0.714633 0 + 0.747101 0.711374 0 + 0.883186 0.697053 0 + 0.853511 0.564703 0 + 0.0893854 0.868868 0 + 0.707095 0.463009 0 + 0.652216 0.587796 0 + 0.531907 0.521254 0 + 0.954535 0.207465 0 + 0.986907 0.693315 0 + 0.983616 0.303194 0 + 0.397734 0.634543 0 + 0.288068 0.221712 0 + 0.796438 0.592237 0 + 0.899878 0.864541 0 + 0.529044 0.690306 0 + 0.806421 0.975099 0 + 0.626399 0.589499 0 + 0.110965 0.218093 0 + 0.941759 0.949618 0 + 0.0427256 0.31552 0 + 0.533075 0.54261 0 + 0.520327 0.172087 0 + 0.165372 0.169784 0 + 0.807531 0.898311 0 + 0.5 0.990548 0 + 0.531556 0.98644 0 + 0.680154 0.392945 0 + 0.804505 0.19989 0 + 0.828876 0.136819 0 + 0.71215 0.163027 0 + 0.897804 0.166962 0 + 0.771861 0.885573 0 + 0.770318 0.962398 0 + 0.0799093 0.941748 0 + 0.309059 0.162456 0 + 0.290545 0.961986 0 + 0.222188 0.954427 0 + 0.218774 0.856287 0 + 0.0231573 0.708442 0 + 0.271874 0.489845 0 + 0.239301 0.145258 0 + 0.832032 0.474341 0 + 0.870313 0.42923 0 + 0.776929 0.717437 0 + 0.747291 0.714177 0 + 0.883375 0.699857 0 + 0.853701 0.567506 0 + 0.0891401 0.868868 0 + 0.652405 0.590599 0 + 0.707285 0.465812 0 + 0.954724 0.210268 0 + 0.987097 0.696118 0 + 0.983806 0.305998 0 + 0.397488 0.634543 0 + 0.287822 0.221712 0 + 0.796627 0.59504 0 + 0.900067 0.867344 0 + 0.80661 0.977902 0 + 0.626589 0.592302 0 + 0.110719 0.218093 0 + 0.941949 0.952421 0 + 0.0424802 0.31552 0 + 0.165127 0.169784 0 + 0.807721 0.901114 0 + 0.0780441 0.97282 0 + 0.075537 0.901189 0 + 0.0909376 0.938609 0 + 0.0347075 0.901189 0 + 0.0322005 0.97282 0 + 0.0193069 0.938609 0 + 0.40342 0.114665 0 + 0.199743 0.0179317 0 + 0.396689 0.0171753 0 + 0.204609 0.112347 0 + 0.0153086 0.0142037 0 + 0.00845127 0.114769 0 + 0.396265 0.111693 0 + 0.200174 0.0171753 0 + 0.390331 0.0159711 0 + 0.206905 0.114665 0 + 0.978263 0.112429 0 + 0.794198 0.0180323 0 + 0.962417 0.0211104 0 + 0.796377 0.113282 0 + 0.599344 0.113282 0 + 0.794474 0.0194625 0 + 0.598213 0.0233365 0 + 0.797237 0.114712 0 + 0.963278 0.0211104 0 + 0.979123 0.112429 0 + 0.0369386 0.908314 0 + 0.0781564 0.969255 0 + 0.0733058 0.908314 0 + 0.032088 0.969255 0 + 0.0232212 0.936849 0 + 0.0870233 0.936849 0 + 0.572103 0.0165621 0 + 0.4107 0.0165621 0 + 0.4107 0.102634 0 + 0.572103 0.102634 0 + 0.572103 0.0232867 0 + 0.4107 0.0232867 0 + 0.4107 0.109358 0 + 0.572103 0.109358 0 +endnode +node trimesh neck_g + parent torso_g + position -0.000138168 -0.0449849 0.346362 + orientation 0 0 0 0 + wirecolor 0.113281 0.113281 0.113281 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.26 0.26 0.26 + shininess 14 + bitmap h_f01_neck + verts 10 + 0 0.00360469 -0.0534247 + -0.0575762 -0.0028322 -0.00104505 + 0 0.0568539 0.000480384 + 0 -0.0598162 0.00505441 + -0.0393624 0.00934891 0.106302 + 0 0.0480955 0.0779508 + 0 -0.040016 0.0931528 + 0 0.0053988 0.129872 + 0.0575762 -0.00283221 -0.00104505 + 0.0393624 0.00934895 0.106302 + faces 16 + 0 1 2 1 0 1 2 0 + 0 3 1 1 0 3 1 0 + 2 4 5 1 2 4 5 0 + 2 1 4 1 2 1 4 0 + 1 6 4 1 1 6 4 0 + 1 3 6 1 1 3 6 0 + 7 5 4 1 7 5 4 0 + 7 4 6 1 7 4 6 0 + 8 0 2 1 8 0 2 0 + 3 0 8 1 3 0 8 0 + 9 2 5 1 9 2 5 0 + 8 2 9 1 8 2 9 0 + 6 8 9 1 6 8 9 0 + 3 8 6 1 3 8 6 0 + 5 7 9 1 5 7 9 0 + 9 7 6 1 9 7 6 0 + tverts 10 + 0.510302 0.0257169 0 + 0.0103674 0.0870715 0 + 0.509868 0.0960643 0 + 0.509868 0.12303 0 + 0.0339474 0.94166 0 + 0.509868 0.688916 0 + 0.501974 0.809937 0 + 0.5 0.982689 0 + 0.979765 0.0798251 0 + 0.981841 0.940598 0 +endnode +node danglymesh head_g + parent neck_g + position 0.000138168 -0.00637076 0.0751961 + orientation -1 0 0 -1.02102 + wirecolor 0.894531 0.894531 0.894531 + danglymesh 1 + tightness 3 + period 6 + displacement 0.025 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap h_f01_head + verts 100 + -0.0582704 -0.12047 0.26475 + -0.00436179 -0.0519251 0.261043 + -0.0414169 0.011617 0.247588 + -0.02651 -0.0351643 0.0268714 + 0.0276141 -0.0351642 0.0268714 + -0.0387884 -0.0610997 0.0859098 + -0.0643477 -0.0319854 0.107797 + -0.0582663 -0.12778 0.0936649 + 0 0.0308863 -0.0290237 + 0.000552057 -0.0405537 -0.0131757 + -0.0220671 -0.0130154 -0.0194248 + -0.0726666 0.0338224 0.135893 + -0.071537 -0.0567563 0.190334 + 0 0.0673609 0.226658 + 0.00099835 0.103266 0.199115 + -0.0552431 0.065854 0.201172 + -0.0496848 0.103551 0.167707 + -0.0580289 0.0302 0.0281142 + -0.0386097 0.0245335 0.00202803 + 0 0.0674356 -0.0126653 + -0.0670798 0.0982131 0.10336 + -0.0338662 -0.0708914 0.220781 + 0.0661027 -0.0564507 0.19423 + 0.0334456 -0.0614984 0.0856613 + 0.0220671 -0.0130154 -0.0194248 + 0.0631588 -0.031827 0.10636 + 0.0725321 0.0365961 0.134293 + 0.0537126 0.0642936 0.201939 + 0.0488792 0.106096 0.170128 + 0.0371238 0.0135095 0.247627 + 0.058029 0.0302 0.0281142 + 0.0386098 0.0245335 0.00202803 + 0.0803444 -0.000706761 0.174813 + -0.00229256 -0.0698342 0.129216 + 0.101544 -0.0889609 0.178146 + 0.033945 -0.0752103 0.16026 + 0.000424848 0.121101 0.170785 + 0.0670799 0.0982131 0.10336 + -0.0174562 -0.157787 0.170311 + -0.0379915 -0.106354 0.155459 + 0.0700292 0.0370264 0.0457532 + 0.0716262 0.0402478 0.0737987 + 0.0766272 0.0136194 0.0558505 + 0.0844404 -0.0052666 0.0892739 + 0.0843112 -0.000898355 0.11846 + 0.0492946 0.0185118 0.0872914 + 0.0779164 0.0285689 0.116817 + -0.0716281 0.0402478 0.0737987 + -0.070031 0.0370264 0.0457532 + -0.076629 0.0136194 0.0558505 + -0.0844422 -0.0052666 0.0892739 + -0.0843131 -0.000898355 0.11846 + -0.0492964 0.0185118 0.0872914 + -0.0779182 0.0285689 0.116817 + -0.113113 -0.0906078 0.230561 + -0.0262441 0.098757 0.238587 + 0 0.123353 0.203704 + -0.0446645 0.118038 0.203704 + 0 0.134991 0.16225 + 0 0.106942 0.198024 + -0.0346077 0.129268 0.160221 + -0.0815451 0.0875198 0.128909 + -0.0736046 0.0856251 0.164817 + -0.0671951 0.0852048 0.129474 + -0.0794245 0.0338941 0.116872 + -0.0794245 0.0338941 0.116872 + -0.0690911 0.0770553 0.0798758 + 0 0.10138 0.238587 + 0 0.0606647 0.263696 + 0.0262441 0.098757 0.238587 + 0.0446645 0.118038 0.203704 + 0.0407726 0.12568 0.157839 + 0.0815451 0.0875198 0.128909 + 0.0736046 0.0856251 0.164817 + 0.0671951 0.0852048 0.129474 + 0.0794245 0.0338941 0.116872 + 0.0690911 0.0770553 0.0798758 + 0 0.0606647 0.263696 + 0 0.140397 0.108053 + -0.0624999 0.10804 0.0837508 + -0.0473979 0.128894 0.126824 + -0.060923 0.104669 0.0598894 + 0 0.139117 0.0301133 + -0.0149622 0.135939 0.0663688 + 0 0.140325 0.0590528 + -0.0233374 0.131169 -0.00143858 + 0 0.134695 -0.00898824 + -0.0236505 0.134679 0.123958 + 0 0.158725 0.0725151 + -0.00552746 0.155869 0.0712211 + -0.0495284 0.108656 0.0292255 + 0 0.141558 0.123809 + 0.0625001 0.10804 0.0837508 + 0.047398 0.128894 0.126824 + 0.0609231 0.104669 0.0598894 + 0.0149623 0.135939 0.0663688 + 0.0233376 0.131169 -0.00143858 + 0.0236506 0.134679 0.123958 + 0.00552761 0.155869 0.0712211 + 0.0495286 0.108656 0.0292255 + faces 180 + 0 1 2 1 0 1 2 0 + 3 4 5 1 3 4 5 0 + 6 5 7 1 6 5 7 0 + 8 9 10 1 8 9 10 0 + 10 9 3 1 10 9 3 0 + 11 6 12 1 11 6 12 0 + 13 14 15 1 13 14 15 0 + 2 13 15 1 2 13 15 0 + 11 15 16 1 11 15 16 0 + 3 17 18 1 3 17 18 0 + 10 18 19 1 10 18 19 0 + 10 19 8 1 10 19 8 0 + 11 20 17 1 20 21 22 0 + 3 18 10 1 3 18 10 0 + 21 22 1 1 23 24 1 0 + 9 4 3 1 9 4 3 0 + 5 4 23 1 5 4 25 0 + 9 8 24 1 9 8 26 0 + 9 24 4 1 9 26 4 0 + 25 4 26 1 27 4 28 0 + 14 13 27 1 14 13 29 0 + 14 27 28 1 14 29 30 0 + 13 29 27 1 13 31 29 0 + 29 1 22 1 31 1 24 0 + 30 4 31 1 32 4 18 0 + 31 24 19 1 18 26 19 0 + 19 24 8 1 19 26 8 0 + 26 32 22 1 28 33 24 0 + 31 4 24 1 18 4 26 0 + 12 6 33 1 12 6 34 0 + 1 29 2 1 1 31 2 0 + 13 2 29 1 13 2 31 0 + 27 29 34 1 29 31 35 0 + 5 23 7 1 5 25 7 0 + 21 35 22 1 23 36 24 0 + 14 28 36 1 14 30 37 0 + 23 4 25 1 25 4 27 0 + 4 30 26 1 4 32 28 0 + 37 26 30 1 21 38 22 0 + 28 26 37 1 39 38 21 0 + 11 3 6 1 11 3 6 0 + 3 5 6 1 3 5 6 0 + 3 11 17 1 3 11 17 0 + 12 15 11 1 12 15 11 0 + 33 25 35 1 34 27 36 0 + 38 39 35 1 40 41 36 0 + 12 38 21 1 12 40 23 0 + 11 16 20 1 20 39 21 0 + 14 16 15 1 14 16 15 0 + 26 27 32 1 28 29 33 0 + 28 27 26 1 30 29 28 0 + 40 41 42 1 42 43 44 0 + 43 41 44 1 45 43 46 0 + 41 45 46 1 47 48 49 0 + 40 45 41 1 50 48 47 0 + 42 45 40 1 51 48 50 0 + 44 45 43 1 52 48 53 0 + 46 45 44 1 49 48 52 0 + 44 41 46 1 46 43 54 0 + 43 45 42 1 53 48 51 0 + 42 41 43 1 44 43 45 0 + 47 48 49 1 43 42 44 0 + 47 50 51 1 43 45 55 0 + 52 47 53 1 48 47 49 0 + 52 48 47 1 48 55 47 0 + 52 49 48 1 48 51 50 0 + 52 51 50 1 48 52 53 0 + 52 53 51 1 48 49 52 0 + 47 51 53 1 43 46 54 0 + 52 50 49 1 48 53 51 0 + 47 49 50 1 43 44 45 0 + 36 16 14 1 37 16 14 0 + 39 33 35 1 41 34 56 0 + 12 39 38 1 12 41 40 0 + 35 25 22 1 36 27 24 0 + 38 35 21 1 40 36 23 0 + 22 25 26 1 24 27 28 0 + 22 34 29 1 24 35 31 0 + 32 27 34 1 33 29 35 0 + 32 34 22 1 33 35 24 0 + 12 33 39 1 12 34 41 0 + 6 7 33 1 6 7 34 0 + 7 23 33 1 7 25 34 0 + 54 12 2 1 57 12 2 0 + 2 15 54 1 2 15 57 0 + 12 0 2 1 12 0 2 0 + 54 15 12 1 57 15 12 0 + 21 1 0 1 23 1 0 0 + 12 21 0 1 12 23 0 0 + 23 25 33 1 25 27 34 0 + 55 56 57 1 58 59 60 0 + 58 57 56 1 61 60 59 0 + 55 57 59 1 58 60 62 0 + 57 58 60 1 60 61 63 0 + 61 62 57 1 63 64 60 0 + 63 60 58 1 65 63 61 0 + 59 57 62 1 62 60 64 0 + 62 63 59 1 64 65 62 0 + 63 62 64 1 65 64 66 0 + 62 61 65 1 64 63 66 0 + 66 63 64 1 67 65 66 0 + 61 66 65 1 63 67 66 0 + 61 63 66 1 63 65 67 0 + 67 56 55 1 68 59 58 0 + 55 68 67 1 58 69 68 0 + 56 69 70 1 59 58 60 0 + 70 58 56 1 60 61 59 0 + 70 69 59 1 60 58 62 0 + 71 70 72 1 61 60 63 0 + 73 72 70 1 64 63 60 0 + 72 74 71 1 63 65 61 0 + 70 59 73 1 60 62 64 0 + 74 73 59 1 65 64 62 0 + 73 74 75 1 64 65 66 0 + 72 73 75 1 63 64 66 0 + 74 76 75 1 65 67 66 0 + 76 72 75 1 67 63 66 0 + 74 72 76 1 65 63 67 0 + 56 67 69 1 59 68 58 0 + 68 69 67 1 69 58 68 0 + 59 69 77 1 62 58 69 0 + 59 77 55 1 62 69 58 0 + 58 74 59 1 61 65 62 0 + 59 63 58 1 62 65 61 0 + 20 78 79 1 70 71 72 0 + 16 80 20 1 39 73 70 0 + 17 79 81 1 74 72 75 0 + 82 83 84 1 76 77 78 0 + 85 86 19 1 79 80 81 0 + 17 20 79 1 74 70 72 0 + 18 85 19 1 82 79 81 0 + 78 83 79 1 71 77 72 0 + 16 36 87 1 39 83 84 0 + 80 87 20 1 73 84 70 0 + 17 85 18 1 74 79 82 0 + 87 80 16 1 84 73 39 0 + 78 88 89 1 71 85 86 0 + 85 82 86 1 79 76 80 0 + 89 88 84 1 86 85 78 0 + 90 83 85 1 87 77 79 0 + 36 91 87 1 83 88 84 0 + 81 79 83 1 75 72 77 0 + 17 90 85 1 74 87 79 0 + 83 89 84 1 77 86 78 0 + 78 89 83 1 71 86 77 0 + 85 83 82 1 79 77 76 0 + 78 87 91 1 71 84 88 0 + 87 78 20 1 84 71 70 0 + 17 81 90 1 74 75 87 0 + 81 83 90 1 75 77 87 0 + 37 92 78 1 70 72 71 0 + 28 37 93 1 39 70 73 0 + 30 94 92 1 74 75 72 0 + 82 84 95 1 76 78 77 0 + 96 19 86 1 79 81 80 0 + 30 92 37 1 74 72 70 0 + 31 19 96 1 82 81 79 0 + 78 92 95 1 71 72 77 0 + 28 93 97 1 39 73 84 0 + 93 37 97 1 73 70 84 0 + 30 31 96 1 74 82 79 0 + 97 36 28 1 84 83 39 0 + 78 98 88 1 71 86 85 0 + 96 86 82 1 79 80 76 0 + 98 84 88 1 86 78 85 0 + 99 96 95 1 87 79 77 0 + 36 97 91 1 83 84 88 0 + 94 95 92 1 75 77 72 0 + 30 96 99 1 74 79 87 0 + 95 84 98 1 77 78 86 0 + 78 95 98 1 71 77 86 0 + 96 82 95 1 79 76 77 0 + 78 91 97 1 71 88 84 0 + 97 37 78 1 84 70 71 0 + 30 99 94 1 74 87 75 0 + 94 99 95 1 75 87 77 0 + 63 61 60 1 65 63 55 0 + 57 60 61 1 60 55 63 0 + 71 74 58 1 56 65 61 0 + 58 70 71 1 61 60 56 0 + tverts 89 + 0.900447 0.982182 0 + 0.786921 0.943429 0 + 0.618076 0.984218 0 + 0.880833 0.454642 0 + 0.814724 0.480545 0 + 0.894442 0.529265 0 + 0.781553 0.577179 0 + 0.892825 0.5958 0 + 0.593136 0.350553 0 + 0.818046 0.344109 0 + 0.744816 0.359937 0 + 0.577205 0.692385 0 + 0.83354 0.805582 0 + 0.542104 0.977603 0 + 0.466163 0.945585 0 + 0.566135 0.836972 0 + 0.466222 0.787525 0 + 0.616682 0.521736 0 + 0.615818 0.424622 0 + 0.54957 0.391587 0 + 0.460653 0.728177 0 + 0.358521 0.65373 0 + 0.430041 0.239006 0 + 0.818416 0.859858 0 + 0.711832 0.821247 0 + 0.808019 0.571087 0 + 0.699158 0.354698 0 + 0.702899 0.657878 0 + 0.572354 0.68986 0 + 0.513369 0.857412 0 + 0.466125 0.788654 0 + 0.608274 0.893558 0 + 0.606338 0.524268 0 + 0.645078 0.802221 0 + 0.891343 0.623654 0 + 0.821165 0.666274 0 + 0.933122 0.701134 0 + 0.397699 0.899066 0 + 0.46075 0.727629 0 + 0.367446 0.991185 0 + 0.985247 0.793573 0 + 0.877955 0.718109 0 + 0.505863 0.0717885 0 + 0.491441 0.165043 0 + 0.623213 0.0969469 0 + 0.71894 0.194113 0 + 0.710565 0.291132 0 + 0.425906 0.0853773 0 + 0.429767 0.0754415 0 + 0.438216 0.0800387 0 + 0.417881 0.0839047 0 + 0.42077 0.0732051 0 + 0.438686 0.0665689 0 + 0.430334 0.0645721 0 + 0.585043 0.303703 0 + 0.816676 0.327472 0 + 0.828044 0.329949 0 + 0.979711 0.895269 0 + 0.828468 0.126554 0 + 0.752823 0.226302 0 + 0.877156 0.230541 0 + 0.752862 0.313569 0 + 0.752789 0.225993 0 + 0.903226 0.346329 0 + 0.92302 0.269841 0 + 0.921166 0.303193 0 + 0.969413 0.319115 0 + 0.920923 0.423625 0 + 0.752554 0.124838 0 + 0.752929 0.0274458 0 + 0.358511 0.653737 0 + 0.0145312 0.631354 0 + 0.293633 0.521352 0 + 0.277083 0.763332 0 + 0.430037 0.238943 0 + 0.308779 0.39011 0 + 0.0166736 0.22438 0 + 0.111995 0.405836 0 + 0.0183347 0.359444 0 + 0.20057 0.0959882 0 + 0.0209332 0.0785232 0 + 0.0223315 0.0415082 0 + 0.275662 0.0744375 0 + 0.0849584 0.975111 0 + 0.140877 0.73476 0 + 0.0183348 0.392426 0 + 0.0355667 0.397325 0 + 0.291187 0.273801 0 + 0.0357821 0.792774 0 + constraints 100 + 40 + 140 + 98 + 0 + 0 + 200 + 180 + 60 + 0 + 0 + 0 + 190 + 130 + 150 + 0 + 160 + 0 + 0 + 0 + 0 + 0 + 120 + 120 + 130 + 0 + 140 + 0 + 150 + 0 + 130 + 0 + 0 + 118 + 130 + 50 + 130 + 0 + 0 + 40 + 108 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 50 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 +endnode +node dummy head + parent head_g + position 0 0.0408284 0.20894 + orientation 0 0 0 0 + wirecolor 0.0273438 0.0273438 0.0273438 +endnode +node danglymesh lbicep_g + parent torso_g + position -0.13857 -0.0356366 0.3055 + orientation -1 0 0 -1.81514 + wirecolor 0.554688 0.554688 0.554688 + danglymesh 1 + tightness 2 + period 7 + displacement 0.045 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap h_f01_bice + verts 24 + -0.0137302 0.0632463 -0.0370952 + -0.0735241 0.00564925 -0.0205369 + -0.0573794 0.000888011 0.0220552 + 0.026822 -0.00306035 0.0268782 + -0.00878186 -0.0110208 0.0496176 + -0.00527645 -0.0635122 0.0242406 + -0.0649133 0.0259143 -0.0904644 + -0.00417155 -0.0653319 -0.0484312 + -0.0547919 -0.0484211 -0.0286029 + -0.0711288 -0.0365283 -0.106292 + 0.00458219 -0.00552941 -0.332781 + 0.0210752 0.0358816 -0.263236 + 0.030235 -0.0145996 -0.264717 + 0.0371543 -0.00450412 -0.0454495 + 0.00112575 0.0466624 0.0230237 + -0.0110745 -0.0488444 -0.319968 + 0.0201161 -0.084079 -0.248865 + -0.0358365 -0.109219 -0.232628 + -0.091121 -0.0811437 -0.251326 + -0.045871 -0.0496124 -0.310238 + -0.051352 0.0049601 -0.321679 + -0.0280997 0.0582162 -0.261487 + -0.0925114 0.0423017 -0.266781 + -0.113353 -0.011459 -0.254434 + faces 44 + 0 1 2 1 0 1 2 0 + 3 4 5 1 3 4 5 0 + 6 1 0 1 6 1 0 0 + 7 3 5 1 7 8 9 0 + 7 5 8 1 10 11 12 0 + 1 9 8 1 1 13 12 0 + 10 11 12 1 14 15 16 0 + 13 14 3 1 17 18 8 0 + 15 16 17 1 19 20 21 0 + 17 16 7 1 21 20 10 0 + 17 9 18 1 21 22 23 0 + 10 15 19 1 24 25 26 0 + 10 19 20 1 24 26 27 0 + 7 9 17 1 10 13 21 0 + 19 17 18 1 28 21 23 0 + 19 15 17 1 28 19 21 0 + 10 12 15 1 14 16 29 0 + 20 21 10 1 30 31 14 0 + 21 6 0 1 31 6 0 0 + 22 23 6 1 32 33 6 0 + 12 11 0 1 16 15 0 0 + 22 20 23 1 32 30 33 0 + 13 12 0 1 17 16 0 0 + 20 19 23 1 30 28 33 0 + 0 2 14 1 0 2 18 0 + 6 23 9 1 6 33 22 0 + 6 9 1 1 6 13 1 0 + 7 8 9 1 10 12 13 0 + 2 8 5 1 2 12 11 0 + 1 8 2 1 1 12 2 0 + 14 2 4 1 34 35 4 0 + 4 2 5 1 4 35 5 0 + 4 3 14 1 4 3 34 0 + 14 13 0 1 18 17 0 0 + 13 3 7 1 17 8 7 0 + 12 13 7 1 16 17 7 0 + 11 21 0 1 15 31 0 0 + 10 21 11 1 14 31 15 0 + 21 20 22 1 31 30 32 0 + 21 22 6 1 31 32 6 0 + 19 18 23 1 28 23 33 0 + 18 9 23 1 23 22 33 0 + 16 12 7 1 20 36 10 0 + 15 12 16 1 19 36 20 0 + tverts 37 + 0.215236 0.762935 0 + 0.565922 0.781109 0 + 0.583537 0.991268 0 + 0.588901 1.00312 0 + 0.56361 0.908781 0 + 0.966636 0.961149 0 + 0.445743 0.539927 0 + 0.0281886 0.728906 0 + 0.145363 0.982535 0 + 0.0438919 0.935913 0 + 0.982817 0.821158 0 + 0.968344 0.989196 0 + 0.821598 0.816466 0 + 0.763182 0.5233 0 + 0.223844 0.0125387 0 + 0.183169 0.116796 0 + 0.0408182 0.125136 0 + 0.0989004 0.747048 0 + 0.296217 0.989782 0 + 0.873022 0.0125387 0 + 0.948248 0.0394929 0 + 0.867162 0.0680467 0 + 0.763287 0.523232 0 + 0.748808 0.112798 0 + 0.0984689 0.0783953 0 + 0.0986349 0.0428882 0 + 0.0606318 0.0438102 0 + 0.0608419 0.0787916 0 + 0.714099 0.0125387 0 + 0.014869 0.0125387 0 + 0.430213 0.0149542 0 + 0.319557 0.107303 0 + 0.475861 0.107227 0 + 0.617753 0.110108 0 + 0.289568 0.968866 0 + 0.582716 0.956188 0 + 0.989481 0.0151256 0 + constraints 24 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 40 + 100 + 0 + 0 + 0 + 40 + 90 + 40 + 0 + 0 + 100 + 40 + 100 +endnode +node trimesh lforearm_g + parent lbicep_g + position -0.03198 -0.0248627 -0.316307 + orientation 0 0 0 0 + wirecolor 0.601563 0.601563 0.601563 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap h_f01_fore + verts 26 + -0.0405143 0.00395393 -0.0317473 + 0.00439045 -0.0202498 0.0202709 + 0.00791811 0.0171884 0.0282229 + 0.00719604 -0.0277058 -0.0139892 + 0.0445827 0.00869126 0.00313869 + 0.0508335 -0.0138429 -0.0772673 + -0.0189819 0.0354123 -0.0320901 + -0.0444503 0.0283248 -0.110504 + -0.0745188 0.0793175 -0.279183 + 0.00154242 0.0686099 -0.274535 + -0.030614 0.0224069 -0.25795 + 0.0117299 -0.0334251 -0.294273 + 0.0472872 0.0260297 -0.0757267 + -0.00769087 0.0518436 -0.0978339 + -0.0465863 0.000864744 -0.100136 + -0.041168 -0.00243202 -0.242335 + -0.0773325 0.0590236 -0.1911 + -0.0466008 0.0470016 -0.240299 + -0.00254309 -0.00711083 -0.254974 + -0.0176534 0.0768684 -0.196873 + -0.00835377 0.0451423 -0.253969 + -0.070089 -0.0136478 -0.202316 + 0.0397212 0.0426997 -0.220391 + 0.027447 -0.0296472 -0.227981 + -0.0129066 -0.0554333 -0.198519 + -0.0637423 -0.0261714 -0.26095 + faces 48 + 0 1 2 1 0 1 2 0 + 3 4 1 1 3 4 1 0 + 3 5 4 1 5 6 7 0 + 6 7 0 1 8 9 10 0 + 8 9 10 1 11 12 13 0 + 11 10 9 1 14 13 12 0 + 4 6 2 1 4 15 2 0 + 12 13 6 1 16 17 8 0 + 6 0 2 1 15 0 2 0 + 0 14 3 1 10 18 5 0 + 15 16 17 1 19 20 21 0 + 15 11 18 1 22 23 24 0 + 4 12 6 1 25 16 8 0 + 0 3 1 1 0 3 1 0 + 1 4 2 1 1 4 2 0 + 17 19 20 1 21 26 27 0 + 6 13 7 1 8 17 9 0 + 21 7 16 1 28 9 20 0 + 12 5 22 1 16 29 30 0 + 5 12 4 1 29 16 25 0 + 20 23 18 1 27 31 32 0 + 12 22 13 1 16 30 17 0 + 23 5 24 1 33 6 34 0 + 13 16 7 1 17 20 9 0 + 0 7 14 1 10 9 18 0 + 13 19 16 1 17 26 20 0 + 17 8 25 1 21 35 36 0 + 21 3 14 1 28 5 18 0 + 14 7 21 1 18 9 28 0 + 24 5 3 1 34 6 5 0 + 21 24 3 1 28 34 5 0 + 15 18 24 1 22 24 34 0 + 18 11 9 1 32 37 38 0 + 22 5 23 1 30 29 31 0 + 22 19 13 1 30 26 17 0 + 17 9 8 1 21 38 35 0 + 17 20 9 1 21 27 38 0 + 15 17 25 1 19 21 36 0 + 16 19 17 1 20 26 21 0 + 15 24 21 1 19 34 28 0 + 21 16 15 1 28 20 19 0 + 25 11 15 1 36 23 22 0 + 20 18 9 1 27 32 38 0 + 18 23 24 1 24 33 34 0 + 22 20 19 1 30 27 26 0 + 22 23 20 1 30 31 27 0 + 25 10 11 1 39 40 14 0 + 8 10 25 1 11 41 39 0 + tverts 42 + 0.30493 0.918894 0 + 0.455371 0.838624 0 + 0.456068 0.933879 0 + 0.462049 0.773438 0 + 0.28122 0.916295 0 + 0.783871 0.985463 0 + 0.980852 0.69859 0 + 0.977899 0.978301 0 + 0.254497 0.978301 0 + 0.598443 0.638997 0 + 0.534386 0.978301 0 + 0.316439 0.0691642 0 + 0.348181 0.0689549 0 + 0.338721 0.0587799 0 + 0.347998 0.0324154 0 + 0.460349 0.769456 0 + 0.146315 0.710164 0 + 0.419007 0.642337 0 + 0.672127 0.663334 0 + 0.746127 0.0490517 0 + 0.544043 0.241997 0 + 0.512846 0.0542132 0 + 0.777025 0.0413448 0 + 0.965517 0.178899 0 + 0.980852 0.0651487 0 + 0.0146081 0.978301 0 + 0.325571 0.203115 0 + 0.278955 0.0568056 0 + 0.716152 0.251026 0 + 0.0175615 0.698292 0 + 0.177806 0.217049 0 + 0.0175615 0.205519 0 + 0.0175615 0.0646065 0 + 0.980852 0.207656 0 + 0.921277 0.238373 0 + 0.490457 0.178899 0 + 0.738047 0.178899 0 + 0.00222699 0.178899 0 + 0.277153 0.178899 0 + 0.316352 0.0323816 0 + 0.338367 0.0429737 0 + 0.326383 0.0447445 0 +endnode +node trimesh lhand_g + parent lforearm_g + position -0.0254361 0.0213915 -0.252357 + orientation 0 0 0 0 + wirecolor 0.570313 0.570313 0.570313 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap h_f01_hands + verts 10 + 0.0272667 0.0533614 -0.0785132 + 0.0122529 0.0223892 -0.00288722 + 0.0101907 -0.0373019 -0.101506 + 0.0144681 -0.0249915 -0.00282706 + -0.0439669 0.0435062 -0.0754291 + -0.0429612 -0.0343327 -0.0833708 + -0.0112107 -0.0210369 -0.00163268 + -0.0167414 0.0266188 -0.00802531 + 0.00314253 0.0247717 -0.119053 + 0.00163824 -0.0046383 0.0085426 + faces 16 + 0 1 2 1 0 1 2 0 + 3 2 1 1 3 2 1 0 + 4 5 6 1 4 5 6 0 + 6 7 4 1 6 7 4 0 + 8 2 5 1 8 9 10 0 + 5 4 8 1 10 11 8 0 + 2 3 6 1 12 13 6 0 + 6 5 2 1 6 5 12 0 + 3 1 9 1 14 15 16 0 + 7 6 9 1 17 18 16 0 + 2 8 0 1 9 8 19 0 + 4 7 0 1 4 7 0 0 + 9 1 7 1 16 15 17 0 + 9 6 3 1 16 18 14 0 + 0 8 4 1 19 8 11 0 + 0 7 1 1 0 7 1 0 + tverts 20 + 0.99538 0.275998 0 + 0.496523 0.259983 0 + 0.988899 0.0111091 0 + 0.489607 0.0328482 0 + 0.996448 0.550226 0 + 0.987486 0.813328 0 + 0.489603 0.784443 0 + 0.486851 0.597539 0 + 0.224371 0.461529 0 + 0.00370373 0.0635437 0 + 0.0205904 0.968364 0 + 0.472911 0.960885 0 + 0.979885 0.992847 0 + 0.492259 0.988385 0 + 0.525635 0.205371 0 + 0.536569 0.216986 0 + 0.52587 0.216959 0 + 0.527393 0.228516 0 + 0.517198 0.216003 0 + 0.449847 0.0929894 0 +endnode +node dummy lhand + parent lhand_g + position -0.00100998 0.010269 -0.0820993 + orientation 0 0 0 0 + wirecolor 0.695313 0.695313 0.695313 +endnode +node dummy lforearm + parent lforearm_g + position -0.0301826 0 -0.187034 + orientation 0 -1 0 -0.0698109 + wirecolor 0.882813 0.882813 0.882813 +endnode +node danglymesh rbicep_g + parent torso_g + position 0.13857 -0.0356366 0.3055 + orientation -1 0 0 -1.77151 + wirecolor 0.34375 0.34375 0.34375 + danglymesh 1 + tightness 2 + period 7 + displacement 0.045 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap h_f01_bice + verts 24 + 0.0735241 0.00564924 -0.0205369 + 0.0137302 0.0632463 -0.0370952 + 0.0573794 0.00088799 0.0220552 + 0.00878186 -0.0110208 0.0496176 + -0.026822 -0.00306036 0.0268782 + 0.00527644 -0.0635122 0.0242406 + 0.0649132 0.0259143 -0.0904644 + 0.00417154 -0.0653319 -0.0484312 + 0.0547919 -0.0484211 -0.0286029 + 0.0711288 -0.0365283 -0.106292 + -0.0210752 0.0358816 -0.263236 + -0.0045822 -0.00552945 -0.332781 + -0.030235 -0.0145996 -0.264717 + -0.00112576 0.0466624 0.0230237 + -0.0371543 -0.00450414 -0.0454495 + -0.0201161 -0.084079 -0.248865 + 0.0110745 -0.0488444 -0.319968 + 0.0358365 -0.109219 -0.232628 + 0.091121 -0.0811437 -0.251326 + 0.045871 -0.0496124 -0.310238 + 0.051352 0.00496006 -0.321679 + 0.0280996 0.0582162 -0.261487 + 0.113353 -0.011459 -0.254434 + 0.0925114 0.0423017 -0.266781 + faces 44 + 0 1 2 1 0 1 2 0 + 3 4 5 1 3 4 5 0 + 0 6 1 1 0 6 1 0 + 4 7 5 1 7 8 9 0 + 5 7 8 1 10 11 12 0 + 9 0 8 1 13 0 12 0 + 10 11 12 1 14 15 16 0 + 13 14 4 1 17 18 7 0 + 15 16 17 1 19 20 21 0 + 15 17 7 1 19 21 11 0 + 9 17 18 1 22 21 23 0 + 16 11 19 1 24 25 26 0 + 19 11 20 1 26 25 27 0 + 9 7 17 1 13 11 21 0 + 17 19 18 1 21 28 23 0 + 16 19 17 1 20 28 21 0 + 12 11 16 1 16 15 29 0 + 21 20 11 1 30 31 15 0 + 6 21 1 1 6 30 1 0 + 22 23 6 1 32 33 6 0 + 10 12 1 1 14 16 1 0 + 20 23 22 1 31 33 32 0 + 12 14 1 1 16 18 1 0 + 19 20 22 1 28 31 32 0 + 2 1 13 1 2 1 17 0 + 22 6 9 1 32 6 22 0 + 9 6 0 1 13 6 0 0 + 8 7 9 1 12 11 13 0 + 8 2 5 1 12 2 10 0 + 8 0 2 1 12 0 2 0 + 2 13 3 1 34 35 3 0 + 2 3 5 1 34 3 5 0 + 4 3 13 1 4 3 35 0 + 14 13 1 1 18 17 1 0 + 4 14 7 1 7 18 8 0 + 14 12 7 1 18 16 8 0 + 21 10 1 1 30 14 1 0 + 21 11 10 1 30 15 14 0 + 20 21 23 1 31 30 33 0 + 23 21 6 1 33 30 6 0 + 18 19 22 1 23 28 32 0 + 9 18 22 1 22 23 32 0 + 12 15 7 1 36 19 11 0 + 12 16 15 1 36 20 19 0 + tverts 37 + 0.565922 0.781109 0 + 0.215236 0.762935 0 + 0.583537 0.991268 0 + 0.56361 0.908781 0 + 0.588901 1.00312 0 + 0.966636 0.961149 0 + 0.445743 0.539927 0 + 0.145363 0.982535 0 + 0.0281886 0.728906 0 + 0.0438919 0.935913 0 + 0.968344 0.989196 0 + 0.982817 0.821158 0 + 0.821598 0.816466 0 + 0.763182 0.5233 0 + 0.183169 0.116796 0 + 0.223844 0.0125387 0 + 0.0408182 0.125136 0 + 0.296217 0.989782 0 + 0.0989004 0.747048 0 + 0.948248 0.0394929 0 + 0.873022 0.0125387 0 + 0.867162 0.0680467 0 + 0.763287 0.523232 0 + 0.748808 0.112798 0 + 0.0986349 0.0428882 0 + 0.0984689 0.0783953 0 + 0.0606318 0.0438102 0 + 0.0608419 0.0787916 0 + 0.714099 0.0125387 0 + 0.014869 0.0125387 0 + 0.319557 0.107303 0 + 0.430213 0.0149542 0 + 0.617753 0.110108 0 + 0.475861 0.107227 0 + 0.582716 0.956188 0 + 0.289568 0.968866 0 + 0.989481 0.0151256 0 + constraints 24 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 40 + 0 + 100 + 0 + 0 + 40 + 0 + 90 + 40 + 0 + 0 + 100 + 100 + 40 +endnode +node trimesh rforearm_g + parent rbicep_g + position 0.03198 -0.0248627 -0.316307 + orientation 0 0 0 0 + wirecolor 0.226563 0.226563 0.226563 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap h_f01_fore + verts 26 + -0.00439042 -0.0202498 0.0202709 + 0.0405144 0.0039539 -0.0317473 + -0.00791809 0.0171884 0.0282229 + -0.0445827 0.00869121 0.00313868 + -0.00719602 -0.0277058 -0.0139892 + -0.0508335 -0.0138429 -0.0772673 + 0.0444503 0.0283248 -0.110504 + 0.0189819 0.0354123 -0.0320901 + -0.0015424 0.0686099 -0.274535 + 0.0745188 0.0793175 -0.279183 + 0.030614 0.0224069 -0.25795 + -0.0117298 -0.0334251 -0.294273 + 0.00769089 0.0518436 -0.0978339 + -0.0472872 0.0260297 -0.0757267 + 0.0465863 0.000864705 -0.100136 + 0.0773325 0.0590236 -0.1911 + 0.041168 -0.00243205 -0.242335 + 0.0466008 0.0470016 -0.240299 + 0.00254312 -0.00711086 -0.254974 + 0.0176534 0.0768684 -0.196873 + 0.0083538 0.0451423 -0.253969 + 0.070089 -0.0136478 -0.202316 + -0.0397212 0.0426997 -0.220391 + -0.027447 -0.0296472 -0.227981 + 0.0129066 -0.0554333 -0.198519 + 0.0637423 -0.0261714 -0.26095 + faces 48 + 0 1 2 1 0 1 2 0 + 3 4 0 1 3 4 0 0 + 5 4 3 1 5 6 7 0 + 6 7 1 1 8 9 10 0 + 8 9 10 1 11 12 13 0 + 10 11 8 1 13 14 11 0 + 7 3 2 1 15 3 2 0 + 12 13 7 1 16 17 9 0 + 1 7 2 1 1 15 2 0 + 14 1 4 1 18 10 6 0 + 15 16 17 1 19 20 21 0 + 11 16 18 1 22 23 24 0 + 13 3 7 1 17 25 9 0 + 4 1 0 1 4 1 0 0 + 3 0 2 1 3 0 2 0 + 19 17 20 1 26 21 27 0 + 12 7 6 1 16 9 8 0 + 6 21 15 1 8 28 19 0 + 5 13 22 1 29 17 30 0 + 13 5 3 1 17 29 25 0 + 23 20 18 1 31 27 32 0 + 22 13 12 1 30 17 16 0 + 5 23 24 1 5 33 34 0 + 15 12 6 1 19 16 8 0 + 6 1 14 1 8 10 18 0 + 19 12 15 1 26 16 19 0 + 9 17 25 1 35 21 36 0 + 4 21 14 1 6 28 18 0 + 6 14 21 1 8 18 28 0 + 5 24 4 1 5 34 6 0 + 24 21 4 1 34 28 6 0 + 18 16 24 1 24 23 34 0 + 11 18 8 1 37 32 38 0 + 5 22 23 1 29 30 31 0 + 19 22 12 1 26 30 16 0 + 8 17 9 1 38 21 35 0 + 20 17 8 1 27 21 38 0 + 17 16 25 1 21 20 36 0 + 19 15 17 1 26 19 21 0 + 24 16 21 1 34 20 28 0 + 15 21 16 1 19 28 20 0 + 11 25 16 1 22 36 23 0 + 18 20 8 1 32 27 38 0 + 23 18 24 1 33 24 34 0 + 20 22 19 1 27 30 26 0 + 23 22 20 1 31 30 27 0 + 10 25 11 1 39 40 14 0 + 10 9 25 1 41 12 40 0 + tverts 42 + 0.455371 0.838624 0 + 0.30493 0.918894 0 + 0.456068 0.933879 0 + 0.28122 0.916295 0 + 0.462049 0.773438 0 + 0.980852 0.69859 0 + 0.783871 0.985463 0 + 0.977899 0.978301 0 + 0.598443 0.638997 0 + 0.254497 0.978301 0 + 0.534386 0.978301 0 + 0.348181 0.0689549 0 + 0.316439 0.0691642 0 + 0.338721 0.0587799 0 + 0.347998 0.0324154 0 + 0.460349 0.769456 0 + 0.419007 0.642337 0 + 0.146315 0.710164 0 + 0.672127 0.663334 0 + 0.544043 0.241997 0 + 0.746127 0.0490517 0 + 0.512846 0.0542132 0 + 0.965517 0.178899 0 + 0.777025 0.0413448 0 + 0.980852 0.0651487 0 + 0.0146081 0.978301 0 + 0.325571 0.203115 0 + 0.278955 0.0568056 0 + 0.716152 0.251026 0 + 0.0175615 0.698292 0 + 0.177806 0.217049 0 + 0.0175615 0.205519 0 + 0.0175615 0.0646065 0 + 0.980852 0.207656 0 + 0.921277 0.238373 0 + 0.490457 0.178899 0 + 0.738047 0.178899 0 + 0.00222699 0.178899 0 + 0.277153 0.178899 0 + 0.338367 0.0429737 0 + 0.316352 0.0323816 0 + 0.326383 0.0447445 0 +endnode +node trimesh rhand_g + parent rforearm_g + position 0.02544 0.0213915 -0.252357 + orientation 0 0 0 0 + wirecolor 0.878906 0.878906 0.878906 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap h_f01_hands + verts 10 + -0.0122529 0.0223892 -0.00288722 + -0.0272667 0.0533614 -0.0785132 + -0.0101907 -0.0373019 -0.101506 + -0.0144681 -0.0249915 -0.00282706 + 0.0429612 -0.0343327 -0.0833708 + 0.0439669 0.0435062 -0.0754291 + 0.0112107 -0.0210369 -0.00163268 + 0.0167414 0.0266188 -0.00802531 + -0.00314255 0.0247717 -0.119053 + -0.00163827 -0.00463826 0.0085426 + faces 16 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 6 1 4 5 6 0 + 7 6 5 1 7 6 5 0 + 2 8 4 1 8 9 10 0 + 5 4 8 1 11 10 9 0 + 3 2 6 1 12 13 6 0 + 4 6 2 1 4 6 13 0 + 0 3 9 1 14 15 16 0 + 6 7 9 1 17 18 16 0 + 8 2 1 1 9 8 19 0 + 7 5 1 1 7 5 1 0 + 0 9 7 1 14 16 18 0 + 6 9 3 1 17 16 15 0 + 8 1 5 1 9 19 11 0 + 7 1 0 1 7 1 0 0 + tverts 20 + 0.496523 0.259983 0 + 0.99538 0.275998 0 + 0.988899 0.0111091 0 + 0.489607 0.0328482 0 + 0.987486 0.813328 0 + 0.996448 0.550226 0 + 0.489603 0.784443 0 + 0.486851 0.597539 0 + 0.00370373 0.0635437 0 + 0.224371 0.461529 0 + 0.0205904 0.968364 0 + 0.472911 0.960885 0 + 0.492259 0.988385 0 + 0.979885 0.992847 0 + 0.536569 0.216986 0 + 0.525635 0.205371 0 + 0.52587 0.216959 0 + 0.517198 0.216003 0 + 0.527393 0.228516 0 + 0.449847 0.0929894 0 +endnode +node dummy rhand + parent rhand_g + position 0.00101386 0.0104238 -0.0818726 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 +endnode +node dummy impact + parent torso_g + position 0.00188641 0.0870239 0.107788 + orientation 0 0 0 0 + wirecolor 0.347656 0.347656 0.347656 +endnode +node emitter chunkywood118 + parent plc_guillo2 + position 0 0 0.712937 + orientation 0 0 0 0 + wirecolor 0.882813 0.882813 0.882813 + colorStart 0.482353 0.435294 0.317647 + colorEnd 0.584314 0.533333 0.407843 + alphaStart 1 + alphaEnd 1 + sizeStart 0.1 + sizeEnd 0.1 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 24 + birthrate 3 + spawntype 0 + lifeExp 0.75 + mass 3 + spread 1.22173 + particleRot 2.9 + velocity 8 + randvel 0.3 + fps 0 + random 0 + inherit 1 + inherit_local 0 + inherit_part 0 + inheritvel 0 + xsize 89 + ysize 40 + bounce 1 + bounce_co 0.5 + loop 0 + update Explosion + render Normal + blend Normal + deadspace 0 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 1 + p2p 0 + p2p_sel 1 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_cloud02 + xgrid 5 + ygrid 5 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + splat 0 + chunkName plc_chunk_w02 +endnode +node emitter chunkywood119 + parent plc_guillo2 + position 0 0 0.606715 + orientation 0 0 0 0 + wirecolor 0.882813 0.882813 0.882813 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 1 + alphaEnd 1 + sizeStart 0.1 + sizeEnd 0.1 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 24 + birthrate 3 + spawntype 0 + lifeExp 0.75 + mass 3 + spread 1.22173 + particleRot 5 + velocity 8 + randvel 0.3 + fps 0 + random 0 + inherit 1 + inherit_local 0 + inherit_part 0 + inheritvel 0 + xsize 89 + ysize 40 + bounce 1 + bounce_co 0.5 + loop 0 + update Explosion + render Normal + blend Normal + deadspace 0 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_cloud02 + xgrid 5 + ygrid 5 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + splat 0 + chunkName plc_chunk_w01 +endnode +node emitter fire!70 + parent plc_guillo2 + position 0 0 0.532671 + orientation -1 0 0 -1.5708 + wirecolor 0.882813 0.882813 0.882813 + colorStart 0.47451 0.454902 0.407843 + colorEnd 0.819608 0.803922 0.745098 + alphaStart 1 + alphaEnd 0 + sizeStart 4 + sizeEnd 1 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 24 + birthrate 10 + spawntype 0 + lifeExp 2.5 + mass 0.09 + spread 2.96706 + particleRot 0.5 + velocity 2 + randvel 0.5 + fps 10 + random 0 + inherit 1 + inherit_local 0 + inherit_part 0 + inheritvel 0 + xsize 100 + ysize 99 + bounce 0 + bounce_co 0 + loop 0 + update Explosion + render Normal + blend Normal + deadspace 0 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0.2 + blastLength 1 + twosidedtex 1 + p2p 0 + p2p_sel 1 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_smoke01 + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 1 + renderorder 0 + splat 0 +endnode +endmodelgeom plc_guillo2 + +#MAXANIM ASCII +newanim damage plc_guillo2 + length 0.133333 + transtime 0 + animroot plc_guillo2 + node dummy plc_guillo2 + parent NULL + endnode + node dummy guillo_hand + parent plc_guillo2 + endnode + node dummy guillo_head + parent plc_guillo2 + endnode + node dummy guillo_head_hit + parent plc_guillo2 + endnode + node dummy guillo_impact + parent plc_guillo2 + endnode + node dummy guillo_ground + parent plc_guillo2 + endnode + node trimesh damage33 + parent plc_guillo2 + positionkey + 0 0 0 0 + 0.0333333 0 0 0.0244581 + 0.133333 0 0 0 + endlist + orientationkey + 0 0 0 0 0 + 0.0333333 -0.37133 0.928466 -0.00810368 0.0469942 + 0.1 0.599953 -0.799967 -0.0104709 0.0436332 + 0.133333 0 0 0 0 + endlist + endnode + node dummy box01 + parent damage33 + endnode + node dummy neckrest + parent box01 + endnode + node dummy neckrest01 + parent neckrest + endnode + node dummy box08 + parent neckrest01 + endnode + node dummy box09 + parent neckrest01 + endnode + node dummy box02 + parent box01 + endnode + node dummy box03 + parent box02 + endnode + node dummy box05 + parent box02 + endnode + node dummy bladebase + parent box05 + endnode + node dummy blade + parent bladebase + endnode + node dummy box04 + parent box01 + endnode + node dummy box07 + parent box04 + endnode + node dummy pelvis_g + parent plc_guillo2 + endnode + node dummy lthigh_g + parent pelvis_g + endnode + node dummy lshin_g + parent lthigh_g + endnode + node dummy lfoot_g + parent lshin_g + endnode + node dummy rthigh_g + parent pelvis_g + endnode + node dummy rshin_g + parent rthigh_g + endnode + node dummy rfoot_g + parent rshin_g + endnode + node dummy belt_g + parent pelvis_g + endnode + node dummy torso_g + parent plc_guillo2 + endnode + node dummy neck_g + parent torso_g + endnode + node dummy head_g + parent neck_g + endnode + node dummy head + parent head_g + endnode + node dummy lbicep_g + parent torso_g + endnode + node dummy lforearm_g + parent lbicep_g + endnode + node dummy lhand_g + parent lforearm_g + endnode + node dummy lhand + parent lhand_g + endnode + node dummy lforearm + parent lforearm_g + endnode + node dummy rbicep_g + parent torso_g + endnode + node dummy rforearm_g + parent rbicep_g + endnode + node dummy rhand_g + parent rforearm_g + endnode + node dummy rhand + parent rhand_g + endnode + node dummy impact + parent torso_g + endnode + node emitter chunkywood118 + parent plc_guillo2 + endnode + node emitter chunkywood119 + parent plc_guillo2 + endnode + node emitter fire!70 + parent plc_guillo2 + endnode +doneanim damage plc_guillo2 + +#MAXANIM ASCII +newanim dead plc_guillo2 + length 0.0333333 + transtime 0 + animroot plc_guillo2 + node dummy plc_guillo2 + parent NULL + endnode + node dummy guillo_hand + parent plc_guillo2 + endnode + node dummy guillo_head + parent plc_guillo2 + endnode + node dummy guillo_head_hit + parent plc_guillo2 + endnode + node dummy guillo_impact + parent plc_guillo2 + endnode + node dummy guillo_ground + parent plc_guillo2 + endnode + node trimesh damage33 + parent plc_guillo2 + positionkey + 0 0 0 -7.3333 + 0.0333333 0 0 -7.3333 + endlist + endnode + node dummy box01 + parent damage33 + endnode + node dummy neckrest + parent box01 + endnode + node dummy neckrest01 + parent neckrest + endnode + node dummy box08 + parent neckrest01 + endnode + node dummy box09 + parent neckrest01 + endnode + node dummy box02 + parent box01 + endnode + node dummy box03 + parent box02 + endnode + node dummy box05 + parent box02 + endnode + node dummy bladebase + parent box05 + endnode + node dummy blade + parent bladebase + endnode + node dummy box04 + parent box01 + endnode + node dummy box07 + parent box04 + endnode + node dummy pelvis_g + parent plc_guillo2 + endnode + node dummy lthigh_g + parent pelvis_g + endnode + node dummy lshin_g + parent lthigh_g + endnode + node dummy lfoot_g + parent lshin_g + endnode + node dummy rthigh_g + parent pelvis_g + endnode + node dummy rshin_g + parent rthigh_g + endnode + node dummy rfoot_g + parent rshin_g + endnode + node dummy belt_g + parent pelvis_g + endnode + node dummy torso_g + parent plc_guillo2 + endnode + node dummy neck_g + parent torso_g + endnode + node dummy head_g + parent neck_g + endnode + node dummy head + parent head_g + endnode + node dummy lbicep_g + parent torso_g + endnode + node dummy lforearm_g + parent lbicep_g + endnode + node dummy lhand_g + parent lforearm_g + endnode + node dummy lhand + parent lhand_g + endnode + node dummy lforearm + parent lforearm_g + endnode + node dummy rbicep_g + parent torso_g + endnode + node dummy rforearm_g + parent rbicep_g + endnode + node dummy rhand_g + parent rforearm_g + endnode + node dummy rhand + parent rhand_g + endnode + node dummy impact + parent torso_g + endnode + node emitter chunkywood118 + parent plc_guillo2 + endnode + node emitter chunkywood119 + parent plc_guillo2 + endnode + node emitter fire!70 + parent plc_guillo2 + endnode +doneanim dead plc_guillo2 + +#MAXANIM ASCII +newanim default plc_guillo2 + length 0.0333333 + transtime 0.25 + animroot plc_guillo2 + node dummy plc_guillo2 + parent NULL + endnode + node dummy guillo_hand + parent plc_guillo2 + endnode + node dummy guillo_head + parent plc_guillo2 + endnode + node dummy guillo_head_hit + parent plc_guillo2 + endnode + node dummy guillo_impact + parent plc_guillo2 + endnode + node dummy guillo_ground + parent plc_guillo2 + endnode + node dummy damage33 + parent plc_guillo2 + endnode + node dummy box01 + parent damage33 + endnode + node dummy neckrest + parent box01 + endnode + node dummy neckrest01 + parent neckrest + endnode + node dummy box08 + parent neckrest01 + endnode + node dummy box09 + parent neckrest01 + endnode + node dummy box02 + parent box01 + endnode + node dummy box03 + parent box02 + endnode + node dummy box05 + parent box02 + endnode + node dummy bladebase + parent box05 + endnode + node dummy blade + parent bladebase + endnode + node dummy box04 + parent box01 + endnode + node dummy box07 + parent box04 + endnode + node dummy pelvis_g + parent plc_guillo2 + endnode + node dummy lthigh_g + parent pelvis_g + endnode + node dummy lshin_g + parent lthigh_g + endnode + node dummy lfoot_g + parent lshin_g + endnode + node dummy rthigh_g + parent pelvis_g + endnode + node dummy rshin_g + parent rthigh_g + endnode + node dummy rfoot_g + parent rshin_g + endnode + node dummy belt_g + parent pelvis_g + endnode + node dummy torso_g + parent plc_guillo2 + endnode + node dummy neck_g + parent torso_g + endnode + node dummy head_g + parent neck_g + endnode + node dummy head + parent head_g + endnode + node dummy lbicep_g + parent torso_g + endnode + node dummy lforearm_g + parent lbicep_g + endnode + node dummy lhand_g + parent lforearm_g + endnode + node dummy lhand + parent lhand_g + endnode + node dummy lforearm + parent lforearm_g + endnode + node dummy rbicep_g + parent torso_g + endnode + node dummy rforearm_g + parent rbicep_g + endnode + node dummy rhand_g + parent rforearm_g + endnode + node dummy rhand + parent rhand_g + endnode + node dummy impact + parent torso_g + endnode + node emitter chunkywood118 + parent plc_guillo2 + endnode + node emitter chunkywood119 + parent plc_guillo2 + endnode + node emitter fire!70 + parent plc_guillo2 + endnode +doneanim default plc_guillo2 + +#MAXANIM ASCII +newanim die plc_guillo2 + length 0.166667 + transtime 0 + event 0 detonate + animroot plc_guillo2 + node dummy plc_guillo2 + parent NULL + endnode + node dummy guillo_hand + parent plc_guillo2 + endnode + node dummy guillo_head + parent plc_guillo2 + endnode + node dummy guillo_head_hit + parent plc_guillo2 + endnode + node dummy guillo_impact + parent plc_guillo2 + endnode + node dummy guillo_ground + parent plc_guillo2 + endnode + node trimesh damage33 + parent plc_guillo2 + positionkey + 0 0 0 0 + 0.166667 0 0 -7.3333 + endlist + orientationkey + 0 0 0 0 0 + endlist + endnode + node dummy box01 + parent damage33 + endnode + node dummy neckrest + parent box01 + endnode + node dummy neckrest01 + parent neckrest + endnode + node dummy box08 + parent neckrest01 + endnode + node dummy box09 + parent neckrest01 + endnode + node dummy box02 + parent box01 + endnode + node dummy box03 + parent box02 + endnode + node dummy box05 + parent box02 + endnode + node dummy bladebase + parent box05 + endnode + node dummy blade + parent bladebase + endnode + node dummy box04 + parent box01 + endnode + node dummy box07 + parent box04 + endnode + node dummy pelvis_g + parent plc_guillo2 + endnode + node dummy lthigh_g + parent pelvis_g + endnode + node dummy lshin_g + parent lthigh_g + endnode + node dummy lfoot_g + parent lshin_g + endnode + node dummy rthigh_g + parent pelvis_g + endnode + node dummy rshin_g + parent rthigh_g + endnode + node dummy rfoot_g + parent rshin_g + endnode + node dummy belt_g + parent pelvis_g + endnode + node dummy torso_g + parent plc_guillo2 + endnode + node dummy neck_g + parent torso_g + endnode + node dummy head_g + parent neck_g + endnode + node dummy head + parent head_g + endnode + node dummy lbicep_g + parent torso_g + endnode + node dummy lforearm_g + parent lbicep_g + endnode + node dummy lhand_g + parent lforearm_g + endnode + node dummy lhand + parent lhand_g + endnode + node dummy lforearm + parent lforearm_g + endnode + node dummy rbicep_g + parent torso_g + endnode + node dummy rforearm_g + parent rbicep_g + endnode + node dummy rhand_g + parent rforearm_g + endnode + node dummy rhand + parent rhand_g + endnode + node dummy impact + parent torso_g + endnode + node emitter chunkywood118 + parent plc_guillo2 + endnode + node emitter chunkywood119 + parent plc_guillo2 + endnode + node emitter fire!70 + parent plc_guillo2 + endnode +doneanim die plc_guillo2 + +#MAXANIM ASCII +newanim off plc_guillo2 + length 0.0333333 + transtime 0 + animroot plc_guillo2 + node dummy plc_guillo2 + parent NULL + endnode + node dummy guillo_hand + parent plc_guillo2 + endnode + node dummy guillo_head + parent plc_guillo2 + endnode + node dummy guillo_head_hit + parent plc_guillo2 + endnode + node dummy guillo_impact + parent plc_guillo2 + endnode + node dummy guillo_ground + parent plc_guillo2 + endnode + node dummy damage33 + parent plc_guillo2 + endnode + node dummy box01 + parent damage33 + endnode + node dummy neckrest + parent box01 + endnode + node dummy neckrest01 + parent neckrest + endnode + node dummy box08 + parent neckrest01 + endnode + node dummy box09 + parent neckrest01 + endnode + node dummy box02 + parent box01 + endnode + node dummy box03 + parent box02 + endnode + node dummy box05 + parent box02 + endnode + node trimesh bladebase + parent box05 + positionkey + 0 0 0 -2.20422 + 0.0333333 0 0 -2.20422 + endlist + endnode + node dummy blade + parent bladebase + endnode + node dummy box04 + parent box01 + endnode + node dummy box07 + parent box04 + endnode + node dummy pelvis_g + parent plc_guillo2 + endnode + node dummy lthigh_g + parent pelvis_g + endnode + node dummy lshin_g + parent lthigh_g + endnode + node dummy lfoot_g + parent lshin_g + endnode + node dummy rthigh_g + parent pelvis_g + endnode + node dummy rshin_g + parent rthigh_g + endnode + node dummy rfoot_g + parent rshin_g + endnode + node dummy belt_g + parent pelvis_g + endnode + node dummy torso_g + parent plc_guillo2 + endnode + node dummy neck_g + parent torso_g + endnode + node danglymesh head_g + parent neck_g + positionkey + 0 0.000138211 0.329301 0.598702 + 0.0333333 0.000138211 0.329301 0.598702 + endlist + orientationkey + 0 1 0 0 1.12574 + 0.0333333 1 0 0 1.07338 + endlist + endnode + node dummy head + parent head_g + endnode + node dummy lbicep_g + parent torso_g + endnode + node dummy lforearm_g + parent lbicep_g + endnode + node dummy lhand_g + parent lforearm_g + endnode + node dummy lhand + parent lhand_g + endnode + node dummy lforearm + parent lforearm_g + endnode + node dummy rbicep_g + parent torso_g + endnode + node dummy rforearm_g + parent rbicep_g + endnode + node dummy rhand_g + parent rforearm_g + endnode + node dummy rhand + parent rhand_g + endnode + node dummy impact + parent torso_g + endnode + node emitter chunkywood118 + parent plc_guillo2 + endnode + node emitter chunkywood119 + parent plc_guillo2 + endnode + node emitter fire!70 + parent plc_guillo2 + endnode +doneanim off plc_guillo2 + +#MAXANIM ASCII +newanim off2on plc_guillo2 + length 0.666667 + transtime 0 + animroot plc_guillo2 + node dummy plc_guillo2 + parent NULL + endnode + node dummy guillo_hand + parent plc_guillo2 + endnode + node dummy guillo_head + parent plc_guillo2 + endnode + node dummy guillo_head_hit + parent plc_guillo2 + endnode + node dummy guillo_impact + parent plc_guillo2 + endnode + node dummy guillo_ground + parent plc_guillo2 + endnode + node trimesh damage33 + parent plc_guillo2 + positionkey + 0.133333 0 0 0 + 0.166667 0 0 0 + 0.2 0 0 0 + endlist + orientationkey + 0.133333 0 0 0 0 + 0.166667 0 0 0 0 + 0.2 0 0 0 0 + endlist + endnode + node dummy box01 + parent damage33 + endnode + node dummy neckrest + parent box01 + endnode + node dummy neckrest01 + parent neckrest + endnode + node dummy box08 + parent neckrest01 + endnode + node dummy box09 + parent neckrest01 + endnode + node dummy box02 + parent box01 + endnode + node dummy box03 + parent box02 + endnode + node dummy box05 + parent box02 + endnode + node trimesh bladebase + parent box05 + positionkey + 0 0 0 -2.20422 + 0.5 0 0 -0.546218 + 0.6 0 0 -0.16739 + endlist + endnode + node dummy blade + parent bladebase + endnode + node dummy box04 + parent box01 + endnode + node dummy box07 + parent box04 + endnode + node dummy pelvis_g + parent plc_guillo2 + endnode + node dummy lthigh_g + parent pelvis_g + endnode + node dummy lshin_g + parent lthigh_g + endnode + node dummy lfoot_g + parent lshin_g + endnode + node dummy rthigh_g + parent pelvis_g + endnode + node dummy rshin_g + parent rthigh_g + endnode + node dummy rfoot_g + parent rshin_g + endnode + node dummy belt_g + parent pelvis_g + endnode + node dummy torso_g + parent plc_guillo2 + endnode + node dummy neck_g + parent torso_g + endnode + node dummy head_g + parent neck_g + endnode + node dummy head + parent head_g + endnode + node dummy lbicep_g + parent torso_g + endnode + node dummy lforearm_g + parent lbicep_g + endnode + node dummy lhand_g + parent lforearm_g + endnode + node dummy lhand + parent lhand_g + endnode + node dummy lforearm + parent lforearm_g + endnode + node dummy rbicep_g + parent torso_g + endnode + node dummy rforearm_g + parent rbicep_g + endnode + node dummy rhand_g + parent rforearm_g + endnode + node dummy rhand + parent rhand_g + endnode + node dummy impact + parent torso_g + endnode + node emitter chunkywood118 + parent plc_guillo2 + endnode + node emitter chunkywood119 + parent plc_guillo2 + endnode + node emitter fire!70 + parent plc_guillo2 + endnode +doneanim off2on plc_guillo2 + +#MAXANIM ASCII +newanim on plc_guillo2 + length 0.0333333 + transtime 0 + animroot plc_guillo2 + node dummy plc_guillo2 + parent NULL + endnode + node dummy guillo_hand + parent plc_guillo2 + endnode + node dummy guillo_head + parent plc_guillo2 + endnode + node dummy guillo_head_hit + parent plc_guillo2 + endnode + node dummy guillo_impact + parent plc_guillo2 + endnode + node dummy guillo_ground + parent plc_guillo2 + endnode + node dummy damage33 + parent plc_guillo2 + endnode + node dummy box01 + parent damage33 + endnode + node dummy neckrest + parent box01 + endnode + node dummy neckrest01 + parent neckrest + endnode + node dummy box08 + parent neckrest01 + endnode + node dummy box09 + parent neckrest01 + endnode + node dummy box02 + parent box01 + endnode + node dummy box03 + parent box02 + endnode + node dummy box05 + parent box02 + endnode + node trimesh bladebase + parent box05 + positionkey + 0 0 0 -0.15 + 0.0333333 0 0 -0.15 + endlist + endnode + node dummy blade + parent bladebase + endnode + node dummy box04 + parent box01 + endnode + node dummy box07 + parent box04 + endnode + node dummy pelvis_g + parent plc_guillo2 + endnode + node dummy lthigh_g + parent pelvis_g + endnode + node dummy lshin_g + parent lthigh_g + endnode + node dummy lfoot_g + parent lshin_g + endnode + node dummy rthigh_g + parent pelvis_g + endnode + node dummy rshin_g + parent rthigh_g + endnode + node dummy rfoot_g + parent rshin_g + endnode + node dummy belt_g + parent pelvis_g + endnode + node dummy torso_g + parent plc_guillo2 + endnode + node dummy neck_g + parent torso_g + endnode + node danglymesh head_g + parent neck_g + positionkey + 0 0.000138168 -0.00637067 0.0751961 + 0.0333333 0.000138168 -0.00637067 0.0751961 + endlist + orientationkey + 0 1 0 0 1.02102 + 0.0333333 1 0 0 1.02102 + endlist + endnode + node dummy head + parent head_g + endnode + node dummy lbicep_g + parent torso_g + endnode + node dummy lforearm_g + parent lbicep_g + endnode + node dummy lhand_g + parent lforearm_g + endnode + node dummy lhand + parent lhand_g + endnode + node dummy lforearm + parent lforearm_g + endnode + node dummy rbicep_g + parent torso_g + endnode + node dummy rforearm_g + parent rbicep_g + endnode + node dummy rhand_g + parent rforearm_g + endnode + node dummy rhand + parent rhand_g + endnode + node dummy impact + parent torso_g + endnode + node emitter chunkywood118 + parent plc_guillo2 + endnode + node emitter chunkywood119 + parent plc_guillo2 + endnode + node emitter fire!70 + parent plc_guillo2 + endnode +doneanim on plc_guillo2 + +#MAXANIM ASCII +newanim on2off plc_guillo2 + length 0.333333 + transtime 0 + animroot plc_guillo2 + node dummy plc_guillo2 + parent NULL + endnode + node dummy guillo_hand + parent plc_guillo2 + endnode + node dummy guillo_head + parent plc_guillo2 + endnode + node dummy guillo_head_hit + parent plc_guillo2 + endnode + node dummy guillo_impact + parent plc_guillo2 + endnode + node dummy guillo_ground + parent plc_guillo2 + endnode + node dummy damage33 + parent plc_guillo2 + endnode + node dummy box01 + parent damage33 + endnode + node dummy neckrest + parent box01 + endnode + node dummy neckrest01 + parent neckrest + endnode + node dummy box08 + parent neckrest01 + endnode + node dummy box09 + parent neckrest01 + endnode + node dummy box02 + parent box01 + endnode + node dummy box03 + parent box02 + endnode + node dummy box05 + parent box02 + endnode + node trimesh bladebase + parent box05 + positionkey + 0 0 0 -0.15 + 0.1 0 0 -0.739051 + 0.233333 0 0 -2.20422 + 0.3 0 0 -2.19216 + 0.333333 0 0 -2.19216 + endlist + endnode + node dummy blade + parent bladebase + endnode + node dummy box04 + parent box01 + endnode + node dummy box07 + parent box04 + endnode + node dummy pelvis_g + parent plc_guillo2 + endnode + node dummy lthigh_g + parent pelvis_g + endnode + node dummy lshin_g + parent lthigh_g + endnode + node dummy lfoot_g + parent lshin_g + endnode + node dummy rthigh_g + parent pelvis_g + endnode + node dummy rshin_g + parent rthigh_g + endnode + node dummy rfoot_g + parent rshin_g + endnode + node dummy belt_g + parent pelvis_g + endnode + node dummy torso_g + parent plc_guillo2 + endnode + node dummy neck_g + parent torso_g + endnode + node danglymesh head_g + parent neck_g + positionkey + 0 0.000138168 -0.00637065 0.0751961 + 0.233333 0.000138167 -0.0148813 0.408632 + 0.333333 0.000138203 0.25927 0.539395 + endlist + orientationkey + 0 1 0 0 1.02102 + 0.233333 1 0 0 0.453786 + endlist + endnode + node dummy head + parent head_g + endnode + node dummy lbicep_g + parent torso_g + endnode + node dummy lforearm_g + parent lbicep_g + endnode + node dummy lhand_g + parent lforearm_g + endnode + node dummy lhand + parent lhand_g + endnode + node dummy lforearm + parent lforearm_g + endnode + node dummy rbicep_g + parent torso_g + endnode + node dummy rforearm_g + parent rbicep_g + endnode + node dummy rhand_g + parent rforearm_g + endnode + node dummy rhand + parent rhand_g + endnode + node dummy impact + parent torso_g + endnode + node emitter chunkywood118 + parent plc_guillo2 + endnode + node emitter chunkywood119 + parent plc_guillo2 + endnode + node emitter fire!70 + parent plc_guillo2 + endnode +doneanim on2off plc_guillo2 +donemodel plc_guillo2 diff --git a/tests/fixtures/oracle/ascii/plc_nc03.mdl b/tests/fixtures/oracle/ascii/plc_nc03.mdl new file mode 100644 index 0000000..83f8298 --- /dev/null +++ b/tests/fixtures/oracle/ascii/plc_nc03.mdl @@ -0,0 +1,4219 @@ +# Rewritten by CleanModels 3 Version 3.5.2d Sun Oct 13 18:39:31 2019 +#MAXMODEL ASCII +filedependency Unknown +newmodel plc_nc03 + classification TILE + setsupermodel plc_nc03 NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom plc_nc03 +node dummy plc_nc03 + parent NULL +endnode +node dummy plc_nc03_D01 + parent plc_nc03 + orientation 0 0 0 0 + position -0.0860093 0.391408 0 + scale 1 +endnode +node trimesh groups02470 + parent plc_nc03 + orientation 0 0 0 0 + position -1.75601 6.09141 3.66 + scale 1 + shininess 1 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_roof11 + verts 12 + 0.67 -6 1.34 + -1.33 -6 -0.66 + -1.33 -6.2 -0.66 + 0.67 0 1.34 + -1.33 0 -0.66 + -1.33 -0.8 -0.680734 + 0.67 -3 1.2 + -1.33 -4.7 -0.680734 + -1.33 -0.5 -0.66 + -1.33 -2.5 -0.680734 + -1.33 -5 -0.66 + -1.33 0.2 -0.66 + faces 10 + 0 1 2 1 0 1 2 3 + 3 4 5 1 3 4 5 3 + 6 7 0 1 6 7 0 3 + 5 4 8 1 5 4 8 3 + 6 5 9 1 6 5 9 3 + 1 7 10 1 1 7 10 3 + 0 7 1 1 0 7 1 3 + 6 9 7 1 6 9 7 3 + 6 3 5 1 6 3 5 3 + 3 11 4 1 3 11 4 3 + tverts 12 + 1.55 0.833332 0 + 1.48422 0.166668 0 + 1.55 0.166668 0 + -0.55 0.833332 0 + -0.487663 0.166668 0 + -0.234875 0.166668 0 + 0.500001 0.833332 0 + 0.893653 0.166668 0 + -0.333335 0.109083 0 + 0.328632 0.166668 0 + 0.999999 0.105484 0 + -0.55 0.166668 0 +endnode +node trimesh groups02471 + parent plc_nc03 + orientation 0 0 0 0 + position -2.03601 0.0914081 3.94 + scale 1 + shininess 1 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_hrdwd01 + verts 6 + -1.05 0 -0.94 + -0.85 0 -0.94 + -0.85 -0.2 -0.94 + -1.05 -0.2 -0.94 + 0.95 0 0.86 + 0.95 0 1.06 + faces 5 + 0 1 2 1 0 1 2 3 + 0 2 3 1 0 2 3 3 + 1 4 2 2 1 4 2 3 + 4 5 3 4 5 6 7 1 + 2 4 3 4 8 5 7 1 + tverts 9 + 0.45005 -0.293514 0 + 0.45005 -0.218526 0 + 0.54995 -0.218526 0 + 0.54995 -0.293514 0 + 0.45005 1.19293 0 + 0.521089 1.09019 0 + 0.449835 1.16021 0 + 0.462161 -0.25253 0 + 0.532184 -0.18128 0 +endnode +node trimesh groups02472 + parent plc_nc03 + orientation 0 0 0 0 + position -2.03601 6.09141 3.94 + scale 1 + shininess 1 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_hrdwd01 + verts 6 + -0.85 0 -0.94 + -1.05 0 -0.94 + -0.85 0.2 -0.94 + -1.05 0.2 -0.94 + 0.95 0 0.86 + 0.95 0 1.06 + faces 5 + 0 1 2 1 0 1 2 3 + 2 1 3 1 2 1 3 3 + 4 0 2 2 4 0 2 3 + 5 4 3 4 5 6 7 1 + 4 2 3 4 6 8 7 1 + tverts 9 + 0.45005 -0.218526 0 + 0.45005 -0.293514 0 + 0.54995 -0.218526 0 + 0.54995 -0.293514 0 + 0.45005 1.19293 0 + 0.449835 1.16021 0 + 0.521089 1.09019 0 + 0.462161 -0.25253 0 + 0.532184 -0.18128 0 +endnode +node trimesh groups02474 + parent plc_nc03 + orientation 0 0 0 0 + position -0.736009 3.09141 5.48 + scale 1 + shininess 26 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_brick03 + verts 16 + 0.35 0.7 1.57 + -0.35 0.7 0.7 + 0.3 0.65 2.7 + -0.3 0.65 2.7 + -0.35 -0.7 0.7 + -0.3 -0.65 2.7 + 0.35 -0.7 1.57 + 0.3 -0.65 2.7 + 0.2 0.55 2.7 + -0.2 0.55 2.7 + -0.2 -0.55 2.7 + 0.2 -0.55 2.7 + 0.13 0.3 1.7 + -0.13 0.3 1.7 + -0.13 -0.27 1.7 + 0.13 -0.27 1.7 + faces 26 + 0 1 2 1 0 1 2 3 + 1 3 2 1 1 3 2 3 + 1 4 3 2 1 4 3 3 + 4 5 3 2 4 5 3 3 + 4 6 5 1 4 6 5 3 + 6 7 5 1 6 7 5 3 + 6 0 7 2 6 8 7 3 + 0 2 7 2 8 9 7 3 + 2 3 8 4 10 11 12 3 + 3 9 8 4 11 13 12 3 + 3 5 9 4 11 14 13 3 + 5 10 9 4 14 15 13 3 + 5 7 10 4 14 16 15 3 + 7 11 10 4 16 17 15 3 + 7 2 11 4 16 10 17 3 + 2 8 11 4 10 12 17 3 + 8 9 12 1 18 19 20 3 + 9 13 12 1 19 21 20 3 + 9 10 13 2 19 22 21 3 + 10 14 13 2 22 23 21 3 + 10 11 14 1 22 24 23 3 + 11 15 14 1 24 25 23 3 + 11 8 15 2 24 26 25 3 + 8 12 15 2 26 27 25 3 + 14 15 12 4 28 29 30 1 + 13 14 12 4 31 28 30 1 + tverts 32 + -0.0737919 0.443237 0 + 0.0737918 0.25 0 + -0.0688199 0.75 0 + 0.0688198 0.75 0 + 0.426208 0.25 0 + 0.43118 0.75 0 + 0.573792 0.443237 0 + 0.56882 0.75 0 + 0.926208 0.443237 0 + 0.93118 0.75 0 + 0.326932 0.579877 0 + 0.326932 0.420123 0 + 0.353558 0.553252 0 + 0.353558 0.446748 0 + 0.673068 0.420122 0 + 0.646442 0.446748 0 + 0.673068 0.579877 0 + 0.646442 0.553252 0 + -0.0555087 0.75 0 + 0.0555086 0.75 0 + -0.0411847 0.5 0 + 0.0411847 0.5 0 + 0.444491 0.75 0 + 0.458815 0.5 0 + 0.555509 0.75 0 + 0.541185 0.5 0 + 0.944491 0.75 0 + 0.958815 0.5 0 + 0.691898 0.454443 0 + 0.691898 0.569712 0 + 0.308102 0.569712 0 + 0.308102 0.454443 0 +endnode +node trimesh groups02480 + parent plc_nc03 + orientation 0 0 0 0 + position -0.0860093 0.241408 0 + scale 1 + shininess 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_hrdwd01 + verts 4 + -1 -0.15 0 + 1 -0.15 0 + 1 0.15 0 + -1 0.15 0 + faces 2 + 0 1 2 1 0 1 2 1 + 0 2 3 1 0 2 3 1 + tverts 4 + 0.45 0.833333 0 + 0.45 0.166667 0 + 0.55 0.166667 0 + 0.55 0.833333 0 +endnode +node trimesh groups02481 + parent plc_nc03 + orientation 0 0 0 0 + position 0.413991 3.09141 3 + scale 1 + shininess 26 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_plstr06 + verts 23 + 1.5 3 3 + -1.5 3 2 + -1.5 3 3 + 1.5 3 0 + -1.5 -3 2 + 1.5 -3 0 + 1.5 -3 3 + 0.5 -3 0 + -1.5 -3 1.8 + 1.5 -1.5 0 + 1.5 -1.5 3 + 1.5 1.5 0 + 1.5 1.5 3 + -1.5 -3 3 + -1.5 3 1.8 + -1.5 0 1.86 + -1.5 0 3 + -1.5 3 0 + -1.5 -3 0 + 3.5 1.5 0 + 3.5 1.5 3 + 3.5 -1.5 0 + 3.5 -1.5 3 + faces 23 + 0 1 2 1 0 1 2 3 + 3 1 0 1 3 1 0 3 + 4 5 6 1 1 3 0 3 + 7 5 8 1 4 3 5 3 + 5 9 10 2 6 7 8 3 + 5 10 6 2 6 8 9 3 + 11 3 0 2 10 11 12 3 + 11 0 12 2 10 12 13 3 + 4 6 13 1 1 0 2 3 + 3 14 1 1 3 14 1 3 + 1 15 16 2 15 16 17 3 + 1 16 2 2 15 17 18 3 + 15 4 13 2 16 19 20 3 + 15 13 16 2 16 20 17 3 + 8 5 4 1 5 3 1 3 + 3 17 14 1 3 21 14 3 + 18 7 8 1 21 4 5 3 + 19 11 12 1 22 23 24 3 + 19 12 20 1 22 24 25 3 + 9 21 22 1 23 22 25 3 + 9 22 10 1 23 25 24 3 + 21 19 20 2 3 21 2 3 + 21 20 22 2 3 2 0 3 + tverts 26 + 0.9995 0.9995 0 + 0.000500023 0.666498 0 + 0.000500023 0.9995 0 + 0.9995 0.000499547 0 + 0.658918 0.000499606 0 + 0.000499547 0.594396 0 + 0.46795 0.000499755 0 + -0.03205 0.000499696 0 + -0.032051 0.9995 0 + 0.46795 0.9995 0 + 1.08242 0.000499576 0 + 0.582416 0.000499517 0 + 0.582416 0.9995 0 + 1.08242 0.9995 0 + 0.000500023 0.598599 0 + -0.5 0.666666 0 + 0.5 0.666666 0 + 0.5 1 0 + -0.5 1 0 + 1.5 0.666666 0 + 1.5 1 0 + 0.000500023 0.000499547 0 + 0.333333 0.000499427 0 + 1 0.000499368 0 + 1 0.9995 0 + 0.333333 0.9995 0 +endnode +node trimesh groups02482 + parent plc_nc03 + orientation 0 0 0 0 + position 0.413991 6.09141 7.89 + scale 1 + shininess 1 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_hrdwd01 + verts 11 + -1.5 0 -1.89 + -1.65 0 -1.89 + -1.5 0.2 -1.89 + -1.65 0.2 -1.89 + 0 0 -0.09 + 0 0.2 -0.09 + 1.5 0 -1.89 + 1.5 0.2 -1.89 + 1.65 0 -1.89 + 1.65 0.2 -1.89 + 0 0.2 0.11 + faces 12 + 0 1 2 1 0 1 2 3 + 2 1 3 1 2 1 3 3 + 4 0 5 2 4 0 5 3 + 5 0 2 2 5 0 2 3 + 6 4 7 1 6 4 7 3 + 7 4 5 1 7 4 5 3 + 8 6 9 2 8 6 9 3 + 9 6 7 2 9 6 7 3 + 9 7 10 4 10 11 12 1 + 7 5 10 4 11 13 12 1 + 10 5 3 4 14 15 16 1 + 5 2 3 4 15 17 16 1 + tverts 18 + 0.533333 1.00011 0 + 0.533333 1.07649 0 + 0.466667 1.00011 0 + 0.466667 1.07649 0 + 0.533333 0.214525 0 + 0.466667 0.214525 0 + 0.533333 1.00007 0 + 0.466667 1.00007 0 + 0.533333 1.0764 0 + 0.466667 1.0764 0 + 0.520309 0.180511 0 + 0.481728 0.212315 0 + 0.519966 1.04477 0 + 0.477561 0.993327 0 + 0.303645 0.722905 0 + 0.34605 0.671463 0 + 0.303301 -0.141351 0 + 0.341883 -0.109549 0 +endnode +node trimesh groups02483 + parent plc_nc03 + orientation 0 0 0 0 + position 0.413991 0.0914081 7.89 + scale 1 + shininess 1 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_hrdwd01 + verts 11 + -1.65 0 -1.89 + -1.5 0 -1.89 + -1.5 -0.2 -1.89 + -1.65 -0.2 -1.89 + 0 0 -0.09 + 0 -0.2 -0.09 + 1.5 0 -1.89 + 1.5 -0.2 -1.89 + 1.65 0 -1.89 + 1.65 -0.2 -1.89 + 0 -0.2 0.11 + faces 12 + 0 1 2 1 0 1 2 3 + 0 2 3 1 0 2 3 3 + 1 4 5 2 1 4 5 3 + 1 5 2 2 1 5 2 3 + 4 6 7 1 4 6 7 3 + 4 7 5 1 4 7 5 3 + 6 8 9 2 6 8 9 3 + 6 9 7 2 6 9 7 3 + 7 9 10 4 10 11 12 1 + 5 7 10 4 13 10 12 1 + 5 10 3 4 14 15 16 1 + 2 5 3 4 17 14 16 1 + tverts 18 + 0.533333 1.07649 0 + 0.533333 1.00011 0 + 0.466667 1.00011 0 + 0.466667 1.07649 0 + 0.533333 0.214525 0 + 0.466667 0.214525 0 + 0.533333 1.00007 0 + 0.466667 1.00007 0 + 0.533333 1.0764 0 + 0.466667 1.0764 0 + 0.481728 0.212315 0 + 0.520309 0.180511 0 + 0.519966 1.04477 0 + 0.477561 0.993327 0 + 0.34605 0.671463 0 + 0.303645 0.722905 0 + 0.303301 -0.141351 0 + 0.341883 -0.109549 0 +endnode +node trimesh groups02484 + parent plc_nc03 + orientation 0 0 0 0 + position -1.08601 3.09141 0 + scale 1 + shininess 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_doorway + verts 8 + 0 -2.7 0 + 0 -0.85 0 + 0 -0.85 3 + 0 -2.7 3 + 2 -0.85 0 + 2 -0.85 3 + 2 -2.7 0 + 2 -2.7 3 + faces 8 + 0 1 2 1 0 1 1 3 + 0 2 3 1 0 1 0 3 + 1 4 5 2 1 2 2 3 + 1 5 2 2 1 2 1 3 + 4 6 7 1 2 3 3 3 + 4 7 5 1 2 3 2 3 + 1 0 6 4 4 5 6 1 + 1 6 4 4 4 6 7 1 + tverts 8 + 0.103729 0.541976 0 + 0.103729 0.567219 0 + 0.154214 0.567219 0 + 0.154215 0.541976 0 + 0.000502467 0.5 0 + 0.000499636 0.000499755 0 + 0.9995 0.000499517 0 + 0.999498 0.5 0 +endnode +node trimesh groups02485 + parent plc_nc03 + orientation 0 0 0 0 + position -0.586009 3.09141 0 + scale 1 + shininess 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_hrdwd01 + verts 8 + -0.5 -3 0 + -0.5 -2.7 0 + -0.5 -2.7 3 + -0.5 -3 3 + 1.5 -2.7 0 + 1.5 -3 0 + 1.5 -3 3 + 1.5 -2.7 3 + faces 6 + 0 1 2 1 0 1 2 3 + 0 2 3 1 0 2 3 3 + 4 5 6 1 1 0 3 3 + 4 6 7 1 1 3 2 3 + 3 2 7 2 4 2 2 1 + 3 7 6 2 4 2 3 1 + tverts 5 + 0.549995 1.46031e-06 0 + 0.449996 1.46031e-06 0 + 0.449995 1 0 + 0.549995 1 0 + 0.374997 0.999501 0 +endnode +node trimesh groups02486 + parent plc_nc03 + orientation 0 0 0 0 + position 0.403991 0.0414081 4.65 + scale 1 + shininess 1 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_glas02 + verts 5 + -0.29 0 -0.85 + 0.31 0 -0.85 + -0.29 0 0.5 + 0.31 0 0.5 + 0.01 0 0.7 + faces 3 + 0 1 2 1 0 1 2 1 + 1 3 2 1 1 3 2 1 + 3 4 2 1 3 4 2 1 + tverts 5 + 0.9 0.000499576 0 + 0.6 0.000499666 0 + 0.9 0.870597 0 + 0.6 0.870597 0 + 0.75 0.9995 0 +endnode +node trimesh groups02487 + parent plc_nc03 + orientation 0 0 0 0 + position 0.403991 -0.00859192 4.19 + scale 1 + shininess 1 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_hrdwd01 + verts 27 + -0.59 0.1 -0.39 + -0.39 0 -0.39 + -0.39 0.1 -0.39 + -0.39 0 1.01 + -0.39 0.1 1.01 + 0.01 0 1.31 + 0.01 0.1 1.31 + 0.41 0 1.01 + 0.41 0.1 1.01 + 0.41 0 -0.39 + 0.41 0.1 -0.39 + 0.61 0.1 -0.39 + 0.31 0 -0.39 + 0.31 0 0.96 + 0.31 0.1 0.96 + 0.31 0.1 -0.39 + -0.29 0 0.96 + -0.29 0 -0.39 + -0.29 0.1 -0.39 + -0.29 0.1 0.96 + 0.51 -0.1 -0.39 + -0.49 -0.1 -0.49 + 0.51 -0.1 -0.49 + -0.49 -0.1 -0.39 + 0.01 0 1.16 + 0.61 0.1 -0.49 + -0.59 0.1 -0.49 + faces 36 + 0 1 2 1 0 1 2 3 + 1 3 4 2 3 4 5 3 + 1 4 2 2 3 5 6 3 + 3 5 6 1 4 7 8 3 + 3 6 4 1 4 8 5 3 + 5 7 8 2 7 4 5 3 + 5 8 6 2 7 5 8 3 + 7 9 10 4 4 3 6 3 + 7 10 8 4 4 6 5 3 + 9 11 10 1 9 10 11 3 + 12 13 14 2 3 12 13 3 + 12 14 15 2 3 13 6 3 + 16 17 18 2 12 3 6 3 + 16 18 19 2 12 6 13 3 + 17 12 15 1 14 15 16 3 + 17 15 18 1 14 16 17 3 + 20 21 22 2 18 19 20 2 + 23 21 20 2 21 19 18 2 + 17 3 1 8 22 23 24 2 + 16 3 17 8 25 23 22 2 + 16 5 3 8 25 26 23 2 + 24 5 16 8 27 26 25 2 + 24 7 5 8 28 29 30 2 + 13 7 24 8 31 29 28 2 + 13 9 7 8 31 32 29 2 + 12 9 13 8 33 32 31 2 + 25 11 20 4 34 35 18 2 + 20 22 25 4 18 20 34 2 + 0 26 21 4 36 37 19 2 + 21 23 0 4 19 21 36 2 + 1 0 23 1 1 0 38 2 + 11 9 20 1 10 9 39 2 + 12 17 23 1 15 14 38 2 + 23 20 12 1 38 39 15 2 + 17 1 23 1 40 41 42 2 + 9 12 20 1 9 15 39 2 + tverts 43 + 0.550206 0.799971 0 + 0.500206 0.699983 0 + 0.550206 0.699983 0 + 0.52938 0.925003 0 + 0.52938 0.225002 0 + 0.470626 0.225002 0 + 0.470626 0.925003 0 + 0.52938 0.0750025 0 + 0.470626 0.0750025 0 + 0.500206 0.300029 0 + 0.550205 0.20004 0 + 0.550205 0.300029 0 + 0.52938 0.250003 0 + 0.470626 0.250003 0 + 0.500206 0.649988 0 + 0.500206 0.350023 0 + 0.550206 0.350023 0 + 0.550206 0.649988 0 + 0.524617 0.750206 0 + 0.474617 0.250206 0 + 0.474617 0.750206 0 + 0.524617 0.250206 0 + 0.74975 0.0559997 0 + 0.833 0.833 0 + 0.833 0.0559997 0 + 0.74975 0.80525 0 + 0.833531 1.20481 0 + 0.748668 1.11432 0 + 0.380929 1.05278 0 + 0.29857 0.740983 0 + 0.296066 1.16019 0 + 0.38182 0.75234 0 + 0.29857 0.0030897 0 + 0.38182 0.00308973 0 + 0.475383 0.891787 0 + 0.525383 0.891787 0 + 0.525383 0.137198 0 + 0.475383 0.137198 0 + 0.449795 0.74976 0 + 0.449794 0.249818 0 + 0.500003 0.65 0 + 0.500003 0.7 0 + 0.550003 0.7 0 +endnode +node trimesh groups02488 + parent plc_nc03 + orientation 0 0 0 0 + position -0.586009 3.09141 0 + scale 1 + shininess 26 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_plstr10 + verts 30 + -2.5 3.00214 0 + -2.5 -3 0 + -2.5 -3 3 + -2.5 3.00699 3 + -0.5 -3 0 + -0.5 -3 3 + -2.3 -3 3 + 1.5 -3 0 + 2.5 -3 0 + 2.5 -3 3 + 1.5 -3 3 + 2.5 -1.5 0 + 2.5 -1.5 3 + 2.5 1.5 0 + 2.5 3 0 + 2.5 3 3 + 2.5 1.5 3 + 1.5 3 0 + -0.5 3 0 + -0.5 3 3 + -2.5 3 2.5 + -2.5 3 3 + -2.3 3 3 + -2.5 2.5 3 + -2.5 3 0 + 4.5 1.5 0 + 4.5 1.5 3 + 4.5 -1.5 0 + 4.5 -1.5 3 + 4.5 0 0 + faces 26 + 0 1 2 1 0 1 2 3 + 0 2 3 1 0 2 3 3 + 1 4 5 2 4 5 6 3 + 1 6 2 2 4 7 8 3 + 7 8 9 1 0 9 10 3 + 7 9 10 1 0 10 3 3 + 8 11 12 2 1 0 3 3 + 8 12 9 2 1 3 2 3 + 13 14 15 1 11 12 13 3 + 13 15 16 1 11 13 14 3 + 17 18 19 2 0 15 16 3 + 14 17 15 2 9 0 10 3 + 18 20 21 2 15 17 8 3 + 18 22 19 2 15 18 16 3 + 15 17 19 2 10 0 16 3 + 21 20 23 1 13 19 8 1 + 18 24 20 2 15 4 17 3 + 25 13 16 2 20 21 22 3 + 25 16 26 2 20 22 23 3 + 11 27 28 1 21 20 23 3 + 11 28 12 1 21 23 22 3 + 29 25 26 4 24 25 26 3 + 27 26 28 4 27 26 28 3 + 27 29 26 4 27 24 26 3 + 1 5 6 2 4 6 7 3 + 18 21 22 2 15 8 18 3 + tverts 29 + 0.875 0.000499815 0 + 1.25 0.000499785 0 + 1.25 0.9995 0 + 0.875 0.9995 0 + -0.125 0.000499576 0 + 0.374997 0.000499576 0 + 0.374997 0.999501 0 + -0.0767833 0.999501 0 + -0.125 0.999501 0 + 1.125 0.000499576 0 + 1.125 0.999501 0 + 0.125 0.000499576 0 + -0.25 0.000499606 0 + -0.25 0.9995 0 + 0.125 0.9995 0 + 0.375 0.000499517 0 + 0.375 0.9995 0 + -0.125 0.831383 0 + -0.0747069 0.9995 0 + -0.25 0.833 0 + 0.833333 0.000499547 0 + 0.166667 0.000499547 0 + 0.166667 0.9995 0 + 0.833333 0.9995 0 + 0.499999 0.000498116 0 + 0.000498027 0.000498146 0 + 0.000498027 0.999499 0 + 0.999499 0.000498086 0 + 0.999499 0.999499 0 +endnode +node trimesh groups02490 + parent plc_nc03 + orientation 0 0 0 0 + position -0.486009 3.09141 5.39 + scale 1 + shininess 1 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_crtes01 + verts 12 + 0.9 3 2.41 + 2.4 3 0.61 + -0.6 3 0.61 + 0.9 -3 2.41 + -0.6 -3 0.61 + 2.4 -3 0.61 + -0.6 3 -0.59 + -0.6 3 -2.39 + -2.4 3 -2.39 + -0.6 -3 -0.59 + -2.4 -3 -2.39 + -0.6 -3 -2.39 + faces 4 + 0 1 2 1 0 1 2 2 + 3 4 5 1 0 2 1 1 + 6 7 8 1 3 4 5 2 + 9 10 11 1 3 5 4 1 + tverts 6 + 0.75 0.99975 0 + 0.99975 0.50025 0 + 0.50025 0.50025 0 + 0.97 0.859999 0 + 0.97 0.5 0 + 0.61 0.499999 0 +endnode +node trimesh groups02494 + parent plc_nc03 + orientation 0 0 0 0 + position 0.413991 3.10141 6.66 + scale 1 + shininess 1 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_roof11 + verts 24 + 1.65 3.19 -0.66 + 0 3.19 1.34 + 1.65 1.64 -0.66 + 0 1.49 1.24 + -1.65 3.19 -0.66 + -1.65 1.49 -0.66 + 0 -0.01 1.24 + 0 -1.51 1.14 + 1.65 -1.66 -0.66 + -1.65 -0.01 -0.66 + -1.65 -1.51 -0.66 + -1.5 -0.71 -0.48 + -0.8 -0.71 0.39 + -1.5 0.69 -0.48 + -0.8 0.69 0.39 + 0 -3.21 1.34 + 1.65 -3.21 -0.66 + -1.65 -3.21 -0.66 + 2.8 0.81 0.13 + 1.18 -0.01 1.08 + 2 -0.01 1.15 + 2.8 -0.9 0.13 + 3.65 -1.66 -0.66 + 3.65 1.64 -0.66 + faces 31 + 0 1 2 1 0 1 2 3 + 3 2 1 1 3 2 1 3 + 1 4 3 2 1 0 3 3 + 5 3 4 2 4 3 0 3 + 6 7 8 4 5 6 7 3 + 9 10 11 2 8 9 10 3 + 7 6 12 2 6 5 11 3 + 3 6 2 1 3 5 2 3 + 5 9 13 2 4 8 12 3 + 6 3 14 2 5 3 13 3 + 7 15 8 4 6 14 7 3 + 16 8 15 4 15 7 14 3 + 10 17 7 2 9 15 6 3 + 15 7 17 2 14 6 15 3 + 11 10 12 2 10 9 11 3 + 12 10 7 2 11 9 6 3 + 14 12 6 2 13 11 5 3 + 13 9 11 2 12 8 10 3 + 5 13 3 2 4 12 3 3 + 14 3 13 2 13 3 12 3 + 18 19 20 8 16 17 18 3 + 2 19 18 8 19 17 16 3 + 21 8 22 16 20 19 21 3 + 19 8 21 16 17 19 20 3 + 21 22 23 1 22 23 24 1 + 2 6 19 8 19 25 17 3 + 6 8 19 16 25 19 17 3 + 20 21 18 1 26 22 27 1 + 19 21 20 16 17 20 18 3 + 18 21 23 1 27 22 24 1 + 2 18 23 8 19 16 21 3 + tverts 28 + 1.56667 0.182914 0 + 1.56667 0.916247 0 + 1.05 0.182913 0 + 1 0.916247 0 + 1 0.182915 0 + 0.500006 0.916247 0 + 0 0.916247 0 + -0.0500002 0.182914 0 + 0.500006 0.182916 0 + 1.49012e-07 0.182916 0 + 0.269916 0.251081 0 + 0.269986 0.558832 0 + 0.734874 0.250505 0 + 0.731631 0.56358 0 + -0.566666 0.916247 0 + -0.566666 0.182914 0 + 0.833109 0.500266 0 + 0.320197 0.826384 0 + 0.558333 0.82638 0 + 0.441667 0.166662 0 + 0.854046 0.474888 0 + 1.10833 0.166662 0 + 0.20429 0.474894 0 + -0.05 0.166668 0 + 1.05 0.166668 0 + -0.108333 0.826392 0 + 0.500007 0.826386 0 + 0.774779 0.500272 0 +endnode +node trimesh groups02495 + parent plc_nc03 + orientation 0 0 0 0 + position 2.11399 0.291408 0 + scale 1 + shininess 1 + diffuse 0.776471 0.776471 0.776471 + ambient 0.776471 0.776471 0.776471 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_stone20 + verts 8 + -0.2 -0.1 0 + -0.2 0.2 0 + 0.1 0.2 0 + 0.1 -0.1 0 + -0.2 -0.1 3 + 0.1 -0.1 2.6 + 0.1 0.2 2.6 + -0.2 0.2 3 + faces 12 + 0 1 2 1 0 0 1 2 + 2 3 0 1 1 1 0 2 + 4 5 6 1 2 3 4 1 + 6 7 4 1 4 5 2 1 + 0 3 5 2 0 1 6 5 + 5 4 0 2 6 7 0 5 + 3 2 6 4 8 9 4 4 + 6 5 3 4 4 3 8 4 + 2 1 7 2 1 0 7 6 + 7 6 2 2 7 6 1 6 + 1 0 4 4 0 0 7 3 + 4 7 1 4 7 7 0 3 + tverts 10 + 0.999565 0.432125 0 + 0.999565 0.332225 0 + -0.000435203 0.331134 0 + 0.1329 0.331134 0 + 0.1329 0.431134 0 + -0.000435203 0.431134 0 + 0.1329 0.332225 0 + -0.000435203 0.432125 0 + 0.999565 0.331134 0 + 0.999565 0.431134 0 +endnode +node trimesh groups02496 + parent plc_nc03 + orientation 0 0 0 0 + position 3.59399 1.39141 0 + scale 1 + shininess 1 + diffuse 0.776471 0.776471 0.776471 + ambient 0.776471 0.776471 0.776471 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_stone20 + verts 8 + -0.09 0.2 0 + 0.21 0.2 0 + 0.21 -0.1 0 + -0.09 -0.1 0 + -0.09 0.2 3 + -0.09 -0.1 2.6 + 0.21 -0.1 2.6 + 0.21 0.2 3 + faces 12 + 0 1 2 1 0 0 1 2 + 2 3 0 1 1 1 0 2 + 4 5 6 1 2 3 4 1 + 6 7 4 1 4 5 2 1 + 0 3 5 2 0 1 6 5 + 5 4 0 2 6 7 0 5 + 3 2 6 4 8 9 4 4 + 6 5 3 4 4 3 8 4 + 2 1 7 2 1 0 7 6 + 7 6 2 2 7 6 1 6 + 1 0 4 4 0 0 7 3 + 4 7 1 4 7 7 0 3 + tverts 10 + 0.999565 0.432125 0 + 0.999565 0.332225 0 + -0.000435203 0.331134 0 + 0.1329 0.331134 0 + 0.1329 0.431134 0 + -0.000435203 0.431134 0 + 0.1329 0.332225 0 + -0.000435203 0.432125 0 + 0.999565 0.331134 0 + 0.999565 0.431134 0 +endnode +node trimesh groups02500 + parent plc_nc03 + orientation 0 0 0 0 + position 3.95399 3.09141 4.65 + scale 1 + shininess 1 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_glas02 + verts 5 + 0.01 -0.3 -0.85 + 0.01 0.3 -0.85 + 0.01 -0.3 0.5 + 0.01 0.3 0.5 + 0.01 0 0.7 + faces 3 + 0 1 2 1 0 1 2 1 + 1 3 2 1 1 3 2 1 + 3 4 2 1 3 4 2 1 + tverts 5 + 0.9 0.000499576 0 + 0.6 0.000499666 0 + 0.9 0.870597 0 + 0.6 0.870597 0 + 0.75 0.9995 0 +endnode +node trimesh groups02501 + parent plc_nc03 + orientation 0 0 0 0 + position 4.00399 3.09141 4.19 + scale 1 + shininess 1 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_hrdwd01 + verts 27 + -0.09 -0.6 -0.39 + 0.01 -0.4 -0.39 + -0.09 -0.4 -0.39 + 0.01 -0.4 1.01 + -0.09 -0.4 1.01 + 0.01 0 1.31 + -0.09 0 1.31 + 0.01 0.4 1.01 + -0.09 0.4 1.01 + 0.01 0.4 -0.39 + -0.09 0.4 -0.39 + -0.09 0.6 -0.39 + 0.01 0.3 -0.39 + 0.01 0.3 0.96 + -0.09 0.3 0.96 + -0.09 0.3 -0.39 + 0.01 -0.3 0.96 + 0.01 -0.3 -0.39 + -0.09 -0.3 -0.39 + -0.09 -0.3 0.96 + 0.11 0.5 -0.39 + 0.11 -0.5 -0.49 + 0.11 0.5 -0.49 + 0.11 -0.5 -0.39 + 0.01 0 1.16 + -0.09 0.6 -0.49 + -0.09 -0.6 -0.49 + faces 36 + 0 1 2 1 0 1 2 3 + 1 3 4 2 3 4 5 3 + 1 4 2 2 3 5 6 3 + 3 5 6 1 4 7 8 3 + 3 6 4 1 4 8 5 3 + 5 7 8 2 7 4 5 3 + 5 8 6 2 7 5 8 3 + 7 9 10 4 4 3 6 3 + 7 10 8 4 4 6 5 3 + 9 11 10 1 9 10 11 3 + 12 13 14 2 3 12 13 3 + 12 14 15 2 3 13 6 3 + 16 17 18 2 12 3 6 3 + 16 18 19 2 12 6 13 3 + 17 12 15 1 14 15 16 3 + 17 15 18 1 14 16 17 3 + 20 21 22 2 18 19 20 2 + 23 21 20 2 21 19 18 2 + 17 3 1 8 22 23 24 2 + 16 3 17 8 25 23 22 2 + 16 5 3 8 25 26 23 2 + 24 5 16 8 27 26 25 2 + 24 7 5 8 28 29 30 2 + 13 7 24 8 31 29 28 2 + 13 9 7 8 31 32 29 2 + 12 9 13 8 33 32 31 2 + 25 11 20 4 34 35 18 2 + 20 22 25 4 18 20 34 2 + 0 26 21 4 36 37 19 2 + 21 23 0 4 19 21 36 2 + 1 0 23 1 1 0 38 2 + 11 9 20 1 10 9 39 2 + 12 17 23 1 15 14 38 2 + 23 20 12 1 38 39 15 2 + 17 1 23 1 40 41 42 2 + 9 12 20 1 9 15 39 2 + tverts 43 + 0.550206 0.799971 0 + 0.500206 0.699983 0 + 0.550206 0.699983 0 + 0.52938 0.925003 0 + 0.52938 0.225002 0 + 0.470626 0.225002 0 + 0.470626 0.925003 0 + 0.52938 0.0750025 0 + 0.470626 0.0750025 0 + 0.500206 0.300029 0 + 0.550205 0.20004 0 + 0.550205 0.300029 0 + 0.52938 0.250003 0 + 0.470626 0.250003 0 + 0.500206 0.649988 0 + 0.500206 0.350023 0 + 0.550206 0.350023 0 + 0.550206 0.649988 0 + 0.524617 0.750206 0 + 0.474617 0.250206 0 + 0.474617 0.750206 0 + 0.524617 0.250206 0 + 0.74975 0.0559997 0 + 0.833 0.833 0 + 0.833 0.0559997 0 + 0.74975 0.80525 0 + 0.833531 1.20481 0 + 0.748668 1.11432 0 + 0.380929 1.05278 0 + 0.29857 0.740983 0 + 0.296066 1.16019 0 + 0.38182 0.75234 0 + 0.29857 0.0030897 0 + 0.38182 0.00308973 0 + 0.475383 0.891787 0 + 0.525383 0.891787 0 + 0.525383 0.137198 0 + 0.475383 0.137198 0 + 0.449795 0.74976 0 + 0.449794 0.249818 0 + 0.500003 0.65 0 + 0.500003 0.7 0 + 0.550003 0.7 0 +endnode +node trimesh groups02503 + parent plc_nc03 + orientation 0 0 0 0 + position 4.00399 3.09141 1.5 + scale 1 + shininess 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_hrdwd01 + verts 27 + -0.09 -0.6 -0.38 + 0.01 -0.4 -0.38 + -0.09 -0.4 -0.38 + 0.01 -0.4 1.02 + -0.09 -0.4 1.02 + 0.01 0 1.32 + -0.09 0 1.32 + 0.01 0.4 1.02 + -0.09 0.4 1.02 + 0.01 0.4 -0.38 + -0.09 0.4 -0.38 + -0.09 0.6 -0.38 + 0.01 0.3 -0.38 + 0.01 0.3 0.97 + -0.09 0.3 0.97 + -0.09 0.3 -0.38 + 0.01 -0.3 0.97 + 0.01 -0.3 -0.38 + -0.09 -0.3 -0.38 + -0.09 -0.3 0.97 + 0.11 0.5 -0.38 + 0.11 -0.5 -0.48 + 0.11 0.5 -0.48 + 0.11 -0.5 -0.38 + 0.01 0 1.17 + -0.09 0.6 -0.48 + -0.09 -0.6 -0.48 + faces 36 + 0 1 2 1 0 1 2 3 + 1 3 4 2 3 4 5 3 + 1 4 2 2 3 5 6 3 + 3 5 6 1 4 7 8 3 + 3 6 4 1 4 8 5 3 + 5 7 8 2 7 4 5 3 + 5 8 6 2 7 5 8 3 + 7 9 10 4 4 3 6 3 + 7 10 8 4 4 6 5 3 + 9 11 10 1 9 10 11 3 + 12 13 14 2 3 12 13 3 + 12 14 15 2 3 13 6 3 + 16 17 18 2 12 3 6 3 + 16 18 19 2 12 6 13 3 + 17 12 15 1 14 15 16 3 + 17 15 18 1 14 16 17 3 + 20 21 22 2 18 19 20 2 + 23 21 20 2 21 19 18 2 + 17 3 1 8 22 23 24 2 + 16 3 17 8 25 23 22 2 + 16 5 3 8 25 26 23 2 + 24 5 16 8 27 26 25 2 + 24 7 5 8 28 29 30 2 + 13 7 24 8 31 29 28 2 + 13 9 7 8 31 32 29 2 + 12 9 13 8 33 32 31 2 + 25 11 20 4 34 35 18 2 + 20 22 25 4 18 20 34 2 + 0 26 21 4 36 37 19 2 + 21 23 0 4 19 21 36 2 + 1 0 23 1 1 0 38 2 + 11 9 20 1 10 9 39 2 + 12 17 23 1 15 14 38 2 + 23 20 12 1 38 39 15 2 + 17 1 23 1 40 41 42 2 + 9 12 20 1 9 15 39 2 + tverts 43 + 0.550206 0.799971 0 + 0.500206 0.699983 0 + 0.550206 0.699983 0 + 0.52938 0.925003 0 + 0.52938 0.225002 0 + 0.470626 0.225002 0 + 0.470626 0.925003 0 + 0.52938 0.0750025 0 + 0.470626 0.0750025 0 + 0.500206 0.300029 0 + 0.550205 0.20004 0 + 0.550205 0.300029 0 + 0.52938 0.250003 0 + 0.470626 0.250003 0 + 0.500206 0.649988 0 + 0.500206 0.350023 0 + 0.550206 0.350023 0 + 0.550206 0.649988 0 + 0.524617 0.750206 0 + 0.474617 0.250206 0 + 0.474617 0.750206 0 + 0.524617 0.250206 0 + 0.74975 0.0559997 0 + 0.833 0.833 0 + 0.833 0.0559997 0 + 0.74975 0.80525 0 + 0.833531 1.20481 0 + 0.748668 1.11432 0 + 0.380929 1.05278 0 + 0.29857 0.740983 0 + 0.296066 1.16019 0 + 0.38182 0.75234 0 + 0.29857 0.0030897 0 + 0.38182 0.00308973 0 + 0.475383 0.891787 0 + 0.525383 0.891787 0 + 0.525383 0.137198 0 + 0.475383 0.137198 0 + 0.449795 0.74976 0 + 0.449794 0.249818 0 + 0.500003 0.65 0 + 0.500003 0.7 0 + 0.550003 0.7 0 +endnode +node trimesh line239 + parent plc_nc03 + orientation 0 0 0 0 + position -0.0260093 2.47141 3 + scale 1 + shininess 1 + shadow 0 + tilefade 2 + diffuse 0 0 0 + ambient 0 0 0 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_black + verts 26 + 0.94 -2.38 0 + 0.94 -2.48 0 + 1.14 -2.38 0 + -1.26 -2.38 0 + -1.06 -2.48 0 + -1.06 -2.38 0 + 0.94 -2.08 0 + -3.06 3.12 0 + -2.97773 3.11055 0 + -3.03993 -1.3889 0 + -3.06 -1.38 0 + -1.06 3.62 0 + -3.06 3.62 0 + 1.94 2.12 0 + 1.94 3.62 0 + 3.94 -0.88 0 + 3.94 2.12 0 + 3.83 -0.88 0 + 3.53 -0.88 0 + 1.94 -0.88 0 + 1.94 -2.38 0 + 1.94 -1.98 0 + -3.06 -2.38 0 + -1.06 -2.08 0 + -1.06 -0.23 0 + 0.94 -0.23 0 + faces 24 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 6 0 2 1 6 0 2 1 + 7 8 9 1 7 8 9 1 + 7 9 10 1 7 9 10 1 + 11 12 7 1 11 12 7 1 + 13 14 11 1 13 14 11 1 + 15 16 13 1 15 16 13 1 + 17 15 13 1 17 15 13 1 + 18 17 13 1 18 17 13 1 + 19 18 13 1 19 18 13 1 + 2 20 21 1 2 20 21 1 + 10 22 3 1 10 22 3 1 + 3 5 23 1 3 5 23 1 + 10 3 23 1 10 3 23 1 + 10 23 24 1 10 23 24 1 + 7 10 24 1 7 10 24 1 + 11 7 24 1 11 7 24 1 + 13 11 24 1 13 11 24 1 + 13 24 25 1 13 24 25 1 + 19 13 25 1 19 13 25 1 + 19 25 6 1 19 25 6 1 + 21 19 6 1 21 19 6 1 + 2 21 6 1 2 21 6 1 + tverts 26 + 0.624875 0.0168766 0 + 0.624875 0.000499606 0 + 0.64985 0.0168767 0 + 0.35015 0.0168751 0 + 0.375125 0.000499696 0 + 0.375125 0.016876 0 + 0.624875 0.0660079 0 + 0.125375 0.917615 0 + 0.000499696 0.917615 0 + 0.000499576 0.262533 0 + 0.125375 0.262533 0 + 0.375125 0.9995 0 + 0.125375 0.9995 0 + 0.74975 0.753844 0 + 0.74975 0.9995 0 + 0.9995 0.262532 0 + 0.9995 0.753844 0 + 0.985218 0.262532 0 + 0.947755 0.262532 0 + 0.74975 0.262533 0 + 0.74975 0.0168766 0 + 0.74975 0.0823849 0 + 0.125375 0.0168768 0 + 0.375125 0.0660086 0 + 0.375125 0.368753 0 + 0.624875 0.368753 0 +endnode +node trimesh groups02491 + parent plc_nc03 + orientation 0 0 0 0 + position -1.35145 0.0476779 3.0324 + scale 1 + shininess 26 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_hrdwd02 + verts 12 + 0.109019 0.0337814 -3.03 + 0.611565 -0.0650142 -3.03 + 0.673979 -0.0601098 -0.03 + 0.161548 -0.00450897 -0.03 + 0.107247 0.0513393 -3.03 + 0.647979 0.0403952 -0.03 + 1.84102 -0.0817343 -3.03 + 2.35156 0.0113397 -3.03 + 1.8472 -0.0388073 -0.03 + 2.34345 -0.0215273 -0.03 + 1.85068 -0.0616852 -3.03 + 2.35337 -0.0381592 -0.03 + faces 8 + 0 1 2 1 0 1 2 4 + 2 3 0 1 2 3 0 4 + 1 4 5 2 1 4 5 6 + 5 2 1 2 5 2 1 6 + 6 7 8 1 1 0 2 4 + 9 8 7 1 3 2 0 4 + 10 6 11 2 4 1 5 6 + 8 11 6 2 2 5 1 6 + tverts 6 + 0.108999 0.000499457 0 + 0.184764 0.000499457 0 + 0.184764 0.999501 0 + 0.108999 0.999501 0 + 0.140576 0.000499457 0 + 0.140576 0.999501 0 +endnode +node trimesh object426 + parent plc_nc03 + orientation 0 0 0 0 + position -1.23601 -0.00859192 3.03 + scale 1 + shininess 26 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_hrdwd02 + verts 8 + 2.35 -0.1 -0.03 + -0.05 -0.1 -0.03 + -0.05 0.1 -0.03 + 2.35 0.1 -0.03 + 2.35 -0.1 0.07 + 2.35 0.1 0.07 + -0.05 0.1 0.07 + -0.05 -0.1 0.07 + faces 12 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 4 5 6 1 0 3 2 1 + 6 7 4 1 2 1 0 1 + 0 3 5 2 4 5 6 5 + 5 4 0 2 6 7 4 5 + 3 2 6 4 3 2 2 4 + 6 5 3 4 2 3 3 4 + 2 1 7 2 8 9 10 6 + 7 6 2 2 10 11 8 6 + 1 0 4 4 9 4 7 3 + 4 7 1 4 7 10 9 3 + tverts 12 + 1.03111 1.13437 0 + 1.03111 -0.134366 0 + 0.967608 -0.134366 0 + 0.967609 1.13437 0 + 0.0271086 1.19602 0 + 0.0271086 1.35381 0 + 0.00317695 1.35381 0 + 0.00317695 1.19602 0 + 0.0271085 -0.442853 0 + 0.0271085 -0.197788 0 + 0.00317692 -0.197788 0 + 0.00317692 -0.442853 0 +endnode +node light plc_nc03ml1 + parent plc_nc03 + nDynamicType 0 + orientation 0 0 0 0 + position 0.913991 3.09141 5 + scale 1 + ambientonly 0 + shadow 0 + affectdynamic 1 + lightpriority 5 + fadinglight 1 + flareradius 0 + radius 14 + multiplier 1 + color 0 0 0 +endnode +node light plc_nc03ml2 + parent plc_nc03 + nDynamicType 0 + orientation 0 0 0 0 + position -0.146579 -1.13745 4 + scale 1 + ambientonly 0 + shadow 0 + affectdynamic 1 + lightpriority 5 + fadinglight 1 + flareradius 0 + radius 14 + multiplier 1 + color 0 0 0 +endnode +node dummy plc_nc03a + parent plc_nc03 + wirecolor 1 0 0 + orientation 0 0 0 0 + position 0 0 0 +endnode +node trimesh damage110 + parent plc_nc03a + orientation 0 0 0 0 + position 0.0379858 0.0130298 0 + scale 1 + transparencyhint 0 + tilefade 0 + render 0 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + center 0.000244141 0 0 + shininess 24 + diffuse 1 0.501961 0.643137 + ambient 0.0705882 0 1 + specular 0 0.9 0.105882 + selfillumcolor 0 0 0 + verts 12 + -0.195415 -0.186216 0 + 0.195415 -0.186216 0 + -0.195415 0.186216 0 + 0.195415 0.186216 0 + -0.195415 -0.186216 0.5 + 0.195415 -0.186216 0.5 + -0.195415 0.186216 0.5 + 0.195415 0.186216 0.5 + -0.103944 -0.0990513 0.25 + 0.103944 -0.0990513 0.25 + 0.103944 0.0990513 0.25 + -0.103944 0.0990513 0.25 + faces 20 + 0 2 3 2 0 0 0 2 + 3 1 0 2 0 0 0 2 + 4 5 7 4 0 0 0 1 + 7 6 4 4 0 0 0 1 + 0 1 9 8 0 0 0 5 + 9 8 0 8 0 0 0 5 + 8 9 5 8 0 0 0 5 + 5 4 8 8 0 0 0 5 + 1 3 10 16 0 0 0 4 + 10 9 1 16 0 0 0 4 + 9 10 7 16 0 0 0 4 + 7 5 9 16 0 0 0 4 + 3 2 11 32 0 0 0 6 + 11 10 3 32 0 0 0 6 + 10 11 6 32 0 0 0 6 + 6 7 10 32 0 0 0 6 + 2 0 8 64 0 0 0 3 + 8 11 2 64 0 0 0 3 + 11 8 4 64 0 0 0 3 + 4 6 11 64 0 0 0 3 +endnode +node trimesh box155793 + parent damage110 + shadow 0 + position -0.0175762 0.0924812 0.750255 + orientation 0.57735 -0.57735 0.57735 -4.18879 + scale 1 + shininess 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap plc_woodb256 + verts 16 + -0.75 -0.8 -0.226861 + 2.25 -0.8 -0.226861 + -0.75 0.8 -0.226861 + 2.25 0.8 -0.226861 + -0.75 -0.8 0.0381339 + 2.25 -0.8 0.0381339 + -0.75 0.8 0.0381339 + 2.25 0.8 0.0381339 + -0.652174 -0.695652 0.0391339 + 2.15217 -0.695652 0.0391339 + -0.652174 0.695652 0.0391339 + 2.15217 0.695652 0.0391339 + -0.652174 -0.695652 0.01 + 2.15217 -0.695652 0.01 + -0.652174 0.695652 0.01 + 2.15217 0.695652 0.01 + faces 26 + 0 1 5 8 5 6 7 5 + 5 4 0 8 7 8 5 5 + 1 3 7 16 1 2 3 4 + 7 5 1 16 3 4 1 4 + 3 2 6 32 6 5 8 6 + 6 7 3 32 8 7 6 6 + 2 0 4 64 2 1 4 3 + 4 6 2 64 4 3 2 3 + 4 5 9 0 0 0 0 1 + 9 8 4 0 0 0 0 1 + 5 7 11 0 0 0 0 1 + 11 9 5 0 0 0 0 1 + 7 6 10 0 0 0 0 1 + 10 11 7 0 0 0 0 1 + 6 4 8 0 0 0 0 1 + 8 10 6 0 0 0 0 1 + 8 9 13 0 0 0 0 1 + 13 12 8 0 0 0 0 1 + 9 11 15 0 0 0 0 1 + 15 13 9 0 0 0 0 1 + 11 10 14 0 0 0 0 1 + 14 15 11 0 0 0 0 1 + 10 8 12 0 0 0 0 1 + 12 14 10 0 0 0 0 1 + 0 2 3 0 0 0 0 1 + 0 3 1 0 0 0 0 1 + tverts 9 + 0 0 0 + 0.543542 0.511019 0 + 0.543541 -0.487981 0 + 0.450333 -0.487981 0 + 0.450334 0.511019 0 + 0.461622 -0.426982 0 + 0.461622 0.509581 0 + 0.55483 0.509581 0 + 0.554829 -0.426982 0 +endnode +node trimesh box155794 + parent damage110 + shadow 0 + position -0.821771 0.0543466 0.750255 + orientation 0.289402 -0.91241 0.289402 -4.62085 + scale 1 + shininess 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap plc_woodb256 + verts 8 + -0.7 -1.55419 0 + 2.2 -1.55419 0 + -0.7 -0.00419411 0 + 2.2 -0.00419388 0 + -0.7 -1.55419 0.038 + 2.2 -1.55419 0.038 + -0.7 -0.00419411 0.038 + 2.2 -0.00419388 0.038 + faces 12 + 0 2 3 2 0 2 3 2 + 3 1 0 2 3 1 0 2 + 4 5 7 4 0 1 3 1 + 7 6 4 4 3 2 0 1 + 0 1 5 8 8 9 1 5 + 5 4 0 8 1 0 8 5 + 1 3 7 16 5 7 3 4 + 7 5 1 16 3 1 5 4 + 3 2 6 32 11 10 2 6 + 6 7 3 32 2 3 11 6 + 2 0 4 64 6 4 0 3 + 4 6 2 64 0 2 6 3 + tverts 12 + 0.749107 -0.00756121 0 + 0.749107 1.43738 0 + -0.249894 -0.00756089 0 + -0.249894 1.43738 0 + 0.749107 0.0231078 0 + 0.749107 1.46805 0 + -0.249894 0.0231081 0 + -0.249894 1.46805 0 + 0.782923 -0.00756121 0 + 0.782924 1.43738 0 + -0.216078 -0.0075609 0 + -0.216077 1.43738 0 +endnode +node trimesh box155795 + parent box155794 + shadow 0 + orientation 0 0 0 0 + position 1.48614 -0.00419359 -0.0381339 + scale 1 + shininess 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap plc_creats + verts 8 + -0.1235 -0.03715 0 + 0.1235 -0.03715 0 + -0.1235 0.03715 0 + 0.1235 0.03715 0 + -0.1235 -0.03715 0.0921221 + 0.1235 -0.03715 0.0921221 + -0.1235 0.03715 0.0921221 + 0.1235 0.03715 0.0921221 + faces 12 + 0 2 3 2 1 3 2 2 + 3 1 0 2 2 0 1 2 + 4 5 7 4 0 1 3 1 + 7 6 4 4 3 2 0 1 + 0 1 5 8 0 1 3 5 + 5 4 0 8 3 2 0 5 + 1 3 7 16 0 1 3 4 + 7 5 1 16 3 2 0 4 + 3 2 6 32 0 1 3 6 + 6 7 3 32 3 2 0 6 + 2 0 4 64 0 1 3 3 + 4 6 2 64 3 2 0 3 + tverts 4 + 0.368581 0.941449 0 + 0.643438 0.941449 0 + 0.368581 1 0 + 0.643438 1 0 +endnode +node trimesh box155796 + parent box155794 + shadow 0 + orientation 0 0 0 0 + position -0.104416 -0.00419366 -0.0381339 + scale 1 + shininess 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap plc_creats + verts 8 + -0.1235 -0.03715 0 + 0.1235 -0.03715 0 + -0.1235 0.03715 0 + 0.1235 0.03715 0 + -0.1235 -0.03715 0.0928834 + 0.1235 -0.03715 0.0928834 + -0.1235 0.03715 0.0928834 + 0.1235 0.03715 0.0928834 + faces 12 + 0 2 3 2 1 3 2 2 + 3 1 0 2 2 0 1 2 + 4 5 7 4 0 1 3 1 + 7 6 4 4 3 2 0 1 + 0 1 5 8 0 1 3 5 + 5 4 0 8 3 2 0 5 + 1 3 7 16 0 1 3 4 + 7 5 1 16 3 2 0 4 + 3 2 6 32 0 1 3 6 + 6 7 3 32 3 2 0 6 + 2 0 4 64 0 1 3 3 + 4 6 2 64 3 2 0 3 + tverts 4 + 0.368581 0.941449 0 + 0.643438 0.941449 0 + 0.368581 1 0 + 0.643438 1 0 +endnode +node trimesh box155797 + parent box155794 + shadow 0 + position 0.697074 -1.40471 0.0337653 + orientation 0 0 1 -1.5708 + scale 1 + shininess 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap plc_creats + verts 16 + -0.145159 -0.1 0 + 0.145159 -0.1 0 + -0.145159 0.1 0 + 0.145159 0.1 0 + -0.145159 -0.1 0.0287584 + 0.145159 -0.1 0.0287584 + -0.145159 0.1 0.0287584 + 0.145159 0.1 0.0287584 + -0.0455617 -0.0458695 0.0297584 + 0.0455617 -0.0458695 0.0297584 + -0.0455617 0.0458695 0.0297584 + 0.0455617 0.0458695 0.0297584 + -0.0455617 -0.0458695 0.0837584 + 0.0455617 -0.0458695 0.0837584 + -0.0455617 0.0458695 0.0837584 + 0.0455617 0.0458695 0.0837584 + faces 28 + 0 2 3 2 0 2 3 2 + 3 1 0 2 15 1 14 2 + 12 13 15 4 8 9 11 1 + 15 14 12 4 11 10 8 1 + 0 1 5 8 25 16 1 5 + 5 4 0 8 1 17 25 5 + 1 3 7 16 30 15 31 4 + 7 5 1 16 15 1 30 4 + 3 2 6 32 26 27 28 6 + 6 7 3 32 28 29 26 6 + 2 0 4 64 38 39 0 3 + 4 6 2 64 0 2 38 3 + 4 5 9 0 14 1 5 1 + 9 8 4 0 5 4 14 1 + 5 7 11 0 1 15 7 1 + 11 9 5 0 7 5 1 1 + 7 6 10 0 3 2 6 1 + 10 11 7 0 6 13 3 1 + 6 4 8 0 2 0 12 1 + 8 10 6 0 12 6 2 1 + 8 9 13 0 18 20 24 1 + 13 12 8 0 24 23 19 1 + 9 11 15 0 33 37 11 1 + 15 13 9 0 11 9 34 1 + 11 10 14 0 22 21 10 1 + 14 15 11 0 10 11 22 1 + 10 8 12 0 35 32 8 1 + 12 14 10 0 8 10 36 1 + tverts 40 + 0.508138 0.300301 0 + 0.507967 0.49479 0 + 0.508138 0.495038 0 + 0.702875 0.495038 0 + 0.635897 0.442084 0 + 0.574774 0.442084 0 + 0.574945 0.442331 0 + 0.574774 0.35276 0 + 0.401588 0.909975 0 + 0.462711 0.909975 0 + 0.401588 0.9993 0 + 0.462711 0.9993 0 + 0.574945 0.353007 0 + 0.636068 0.442331 0 + 0.702704 0.49479 0 + 0.507967 0.300054 0 + 0.507967 0.44839 0 + 0.702704 0.493218 0 + 0.497068 0.424637 0 + 0.497068 0.425251 0 + 0.558191 0.424637 0 + 0.401588 0.967693 0 + 0.462711 0.967693 0 + 0.497068 0.471038 0 + 0.558191 0.471038 0 + 0.702704 0.446817 0 + 0.547596 0.458196 0 + 0.73584 0.458196 0 + 0.73584 0.49148 0 + 0.547596 0.49148 0 + 0.584936 0.49479 0 + 0.584936 0.300054 0 + 0.445006 0.909975 0 + 0.506129 0.909975 0 + 0.504155 0.909975 0 + 0.445006 0.9993 0 + 0.443033 0.9993 0 + 0.506129 0.9993 0 + 0.55053 0.495038 0 + 0.55053 0.300301 0 +endnode +node trimesh torus04 + parent box155797 + shadow 0 + orientation 0 0 0 0 + position 0.00465457 -0.07899 0.0498843 + scale 1 + shininess 1 + diffuse 0.72549 0.560784 0.211765 + ambient 0.72549 0.560784 0.211765 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap plc_rugdmtlbrk + verts 27 + 0 0.108465 0 + 0 0.0920797 0.00945996 + 0 0.0920797 -0.00945997 + 0.0697199 0.0830889 0 + 0.0591877 0.0705372 0.00945996 + 0.0591877 0.0705372 -0.00945997 + 0.106817 0.0188347 0 + 0.0906808 0.0159895 0.00945996 + 0.0906808 0.0159895 -0.00945997 + 0.0939333 -0.0542324 0 + 0.0797434 -0.0460399 0.00945996 + 0.0797434 -0.0460399 -0.00945997 + 0.0370972 -0.101924 0 + 0.0314931 -0.0865267 0.00945996 + 0.0314931 -0.0865267 -0.00945997 + -0.0370972 -0.101924 0 + -0.0314931 -0.0865266 0.00945996 + -0.0314931 -0.0865266 -0.00945997 + -0.0939334 -0.0542324 0 + -0.0797434 -0.0460399 0.00945996 + -0.0797434 -0.0460399 -0.00945997 + -0.106817 0.0188348 0 + -0.0906808 0.0159895 0.00945996 + -0.0906808 0.0159895 -0.00945997 + -0.0697199 0.0830889 0 + -0.0591877 0.0705372 0.00945996 + -0.0591877 0.0705372 -0.00945997 + faces 54 + 0 4 3 1 0 5 4 1 + 0 1 4 1 0 1 5 1 + 1 5 4 1 1 6 5 1 + 1 2 5 1 1 2 6 1 + 2 3 5 1 2 7 6 1 + 2 0 3 1 2 3 7 1 + 3 7 6 1 4 9 8 1 + 3 4 7 1 4 5 9 1 + 4 8 7 1 5 10 9 1 + 4 5 8 1 5 6 10 1 + 5 6 8 1 6 11 10 1 + 5 3 6 1 6 7 11 1 + 6 10 9 1 8 13 12 1 + 6 7 10 1 8 9 13 1 + 7 11 10 1 9 14 13 1 + 7 8 11 1 9 10 14 1 + 8 9 11 1 10 15 14 1 + 8 6 9 1 10 11 15 1 + 9 13 12 1 12 17 16 1 + 9 10 13 1 12 13 17 1 + 10 14 13 1 13 18 17 1 + 10 11 14 1 13 14 18 1 + 11 12 14 1 14 19 18 1 + 11 9 12 1 14 15 19 1 + 12 16 15 1 16 21 20 1 + 12 13 16 1 16 17 21 1 + 13 17 16 1 17 22 21 1 + 13 14 17 1 17 18 22 1 + 14 15 17 1 18 23 22 1 + 14 12 15 1 18 19 23 1 + 15 19 18 1 20 25 24 1 + 15 16 19 1 20 21 25 1 + 16 20 19 1 21 26 25 1 + 16 17 20 1 21 22 26 1 + 17 18 20 1 22 27 26 1 + 17 15 18 1 22 23 27 1 + 18 22 21 1 24 29 28 1 + 18 19 22 1 24 25 29 1 + 19 23 22 1 25 30 29 1 + 19 20 23 1 25 26 30 1 + 20 21 23 1 26 31 30 1 + 20 18 21 1 26 27 31 1 + 21 25 24 1 28 33 32 1 + 21 22 25 1 28 29 33 1 + 22 26 25 1 29 34 33 1 + 22 23 26 1 29 30 34 1 + 23 24 26 1 30 35 34 1 + 23 21 24 1 30 31 35 1 + 24 1 0 1 32 37 36 1 + 24 25 1 1 32 33 37 1 + 25 2 1 1 33 38 37 1 + 25 26 2 1 33 34 38 1 + 26 0 2 1 34 39 38 1 + 26 24 0 1 34 35 39 1 + tverts 40 + -0.00436155 0.0997826 0 + -0.00436155 0.167303 0 + -0.00436155 0.234823 0 + -0.00436154 0.302343 0 + 0.10675 0.0997826 0 + 0.10675 0.167303 0 + 0.10675 0.234823 0 + 0.10675 0.302343 0 + 0.217861 0.0997826 0 + 0.217861 0.167303 0 + 0.217861 0.234823 0 + 0.217861 0.302343 0 + 0.328972 0.0997826 0 + 0.328972 0.167303 0 + 0.328972 0.234823 0 + 0.328972 0.302343 0 + 0.440083 0.0997826 0 + 0.440083 0.167303 0 + 0.440083 0.234823 0 + 0.440083 0.302343 0 + 0.551194 0.0997826 0 + 0.551194 0.167303 0 + 0.551194 0.234823 0 + 0.551194 0.302343 0 + 0.662305 0.0997826 0 + 0.662305 0.167303 0 + 0.662305 0.234823 0 + 0.662305 0.302343 0 + 0.773416 0.0997826 0 + 0.773416 0.167303 0 + 0.773416 0.234823 0 + 0.773416 0.302343 0 + 0.884527 0.0997826 0 + 0.884527 0.167303 0 + 0.884527 0.234823 0 + 0.884527 0.302343 0 + 0.995638 0.0997826 0 + 0.995638 0.167303 0 + 0.995638 0.234823 0 + 0.995638 0.302343 0 +endnode +node trimesh mesh1891 + parent damage110 + shadow 0 + position -0.0173687 0.100703 0.749976 + orientation 0.56523 -0.580765 0.585856 -4.22369 + scale 1 + shininess 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap plc_black00 + verts 4 + -0.652482 -0.695347 -0.012751 + 2.15016 -0.697909 0.0850858 + -0.652482 0.69548 0.023669 + 2.15016 0.692918 0.121506 + faces 2 + 0 1 3 4 0 0 0 1 + 3 2 0 4 0 0 0 1 +endnode +node dummy cm3_repair_1 + parent plc_nc03a + orientation 0 0 0 0 + scale 1 + position 0.913991 3.09141 0 +endnode +node trimesh groups4116 + parent cm3_repair_1 + orientation 0 0 0 0 + position 3.05 0 1.96 + scale 1 + shininess 1 + shadow 0 + transparencyhint 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_glas02 + verts 5 + 0.01 -0.3 -0.84 + 0.01 0.3 -0.84 + 0.01 -0.3 0.51 + 0.01 0.3 0.51 + 0.01 0 0.71 + faces 3 + 0 1 2 1 0 1 2 1 + 1 3 2 1 1 3 2 1 + 3 4 2 1 3 4 2 1 + tverts 5 + 0.9 0.000499576 0 + 0.6 0.000499666 0 + 0.9 0.870597 0 + 0.6 0.870597 0 + 0.75 0.9995 0 +endnode +node trimesh groups02502 + parent cm3_repair_1 + orientation 0 0 0 0 + position 3.04 0 1.96 + scale 1 + shininess 1 + shadow 0 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_glas02 + verts 5 + 0.01 -0.3 -0.84 + 0.01 0.3 -0.84 + 0.01 -0.3 0.51 + 0.01 0.3 0.51 + 0.01 0 0.71 + faces 3 + 0 1 2 1 0 1 2 1 + 1 3 2 1 1 3 2 1 + 3 4 2 1 3 4 2 1 + tverts 5 + 0.4 0.000499576 0 + 0.0999999 0.000499666 0 + 0.4 0.870597 0 + 0.1 0.870597 0 + 0.25 0.9995 0 +endnode +node trimesh groups4114 + parent cm3_repair_1 + orientation 0 0 0 0 + position 3.05 0 1.96 + scale 1 + shininess 1 + shadow 0 + transparencyhint 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_glas02 + verts 5 + 0.01 -0.3 -0.84 + 0.01 0.3 -0.84 + 0.01 -0.3 0.51 + 0.01 0.3 0.51 + 0.01 0 0.71 + faces 3 + 0 1 2 1 0 1 2 1 + 1 3 2 1 1 3 2 1 + 3 4 2 1 3 4 2 1 + tverts 5 + 0.9 0.000499576 0 + 0.6 0.000499666 0 + 0.9 0.870597 0 + 0.6 0.870597 0 + 0.75 0.9995 0 +endnode +node emitter omenemitter55 + parent cm3_repair_1 + orientation 0 0 0 0 + position -1.65152 0.0538379 8.00044 + scale 1 + p2p 0 + p2p_sel 1 + affectedByWind 0 + m_isTinted 0 + bounce 0 + random 0 + inherit 0 + inheritvel 0 + inherit_local 0 + splat 0 + inherit_part 0 + renderorder 0 + spawntype 0 + update Fountain + render Normal + blend Normal + texture fxpa_smoke01 + xgrid 4 + ygrid 4 + loop 0 + deadspace 0 + twosidedtex 0 + blastRadius 0 + blastLength 0 + colorStart 0 0 0 + colorEnd 1 1 1 + alphaStart 0.3 + alphaEnd 0 + sizeStart 0.75 + sizeEnd 3 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 24 + birthrate 0 + lifeExp 2 + mass 0.05 + spread 1.0472 + particleRot 1.5 + velocity 1.5 + randvel 0.2 + fps 10 + xsize 20 + ysize 83 + bounce_co 0 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 +endnode +node light l_dayn21 + parent cm3_repair_1 + nDynamicType 0 + orientation 0 0 0 0 + position 1.74396 -0.0215717 1.53335 + scale 1 + ambientonly 0 + shadow 0 + affectdynamic 1 + lightpriority 5 + fadinglight 1 + flareradius 0 + radius 14 + multiplier 1 + color 0 0 0 +endnode +node emitter fire!163 + parent plc_nc03a + position -0.0117719 0.0335889 0.106916 + orientation -1 0 0 -1.5708 + scale 1 + colorStart 0.47451 0.439216 0.364706 + colorEnd 0.819608 0.796079 0.709804 + alphaStart 1 + alphaEnd 0 + sizeStart 4 + sizeEnd 1 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 24 + birthrate 10 + spawntype 0 + lifeExp 2.5 + mass 0.09 + spread 2.96706 + particleRot 0.5 + velocity 2 + randvel 0.5 + fps 10 + random 0 + inherit 1 + inherit_local 0 + inherit_part 0 + inheritvel 0 + xsize 100 + ysize 99 + bounce 0 + bounce_co 0 + loop 0 + update Explosion + render Normal + blend Normal + deadspace 0 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0.2 + blastLength 1 + twosidedtex 1 + p2p 0 + p2p_sel 1 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_smoke01 + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 1 + renderorder 0 + splat 0 +endnode +node emitter chunkywood260 + parent plc_nc03a + orientation 0 0 0 0 + position -0.0117719 0.0335889 0.18096 + scale 1 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 1 + alphaEnd 1 + sizeStart 0.1 + sizeEnd 0.1 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 24 + birthrate 3 + spawntype 0 + lifeExp 0.75 + mass 3 + spread 1.22173 + particleRot 5 + velocity 8 + randvel 0.3 + fps 0 + random 0 + inherit 1 + inherit_local 0 + inherit_part 0 + inheritvel 0 + xsize 89 + ysize 40 + bounce 1 + bounce_co 0.5 + loop 0 + update Explosion + render Normal + blend Normal + deadspace 0 + chunkName plc_chunk_w01 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_cloud02 + xgrid 5 + ygrid 5 + affectedByWind 0 + m_isTinted 0 + renderorder 0 + splat 0 +endnode +node trimesh groups02469 + parent plc_nc03a + orientation 0 0 0 0 + position -1.98601 0.0814081 2.17 + scale 1 + shininess 1 + shadow 0 + transparencyhint 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_splotch02 + verts 4 + -0.51 0 0.79 + -0.51 0 -0.79 + 0.53 0 0.79 + 0.53 0 -0.79 + faces 2 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + tverts 4 + 0.24 0.96 0 + 0.24 0.49 0 + 0.5229 0.96 0 + 0.5229 0.49 0 +endnode +node trimesh groups02492 + parent plc_nc03a + orientation 0 0 0 0 + position 0.413991 6.10141 5.45 + scale 1 + shininess 1 + shadow 0 + transparencyhint 1 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_splotch02 + verts 4 + 1.5 0 0.55 + 1.5 0 -0.23 + -1.5 0 0.55 + -1.5 0 -0.23 + faces 2 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + tverts 4 + 0.999501 0.9995 0 + 0.864917 0.9995 0 + 0.9995 0.497513 0 + 0.864916 0.497513 0 +endnode +node trimesh groups02493 + parent plc_nc03a + orientation 0 0 0 0 + position -0.556009 6.10141 1.94 + scale 1 + shininess 1 + shadow 0 + transparencyhint 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_splotch02 + verts 4 + 0.5 0 1 + 0.5 0 -1 + -0.5 0 1 + -0.5 0 -1 + faces 2 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + tverts 4 + 0.24 1 0 + 0.24 0.5 0 + 0.51 1 0 + 0.51 0.5 0 +endnode +node trimesh groups02497 + parent plc_nc03a + orientation 0 0 0 0 + position 2.81399 1.58141 5.04 + scale 1 + shininess 1 + shadow 0 + transparencyhint 1 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_splotch02 + verts 4 + -0.89 0 0.95 + -0.89 0 -0.95 + 0.91 0 0.95 + 0.91 0 -0.95 + faces 2 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + tverts 4 + 0 0.76 0 + 0 0.54 0 + 0.25 0.76 0 + 0.25 0.54 0 +endnode +node trimesh groups02504 + parent plc_nc03a + orientation 0 0 0 0 + position 2.76399 4.60141 4.17 + scale 1 + shininess 1 + shadow 0 + transparencyhint 1 + tilefade 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + selfillumcolor 0 0 0 + alpha 1 + bitmap tcn01_splotch02 + verts 4 + 0.51 0 0.51 + 0.51 0 -0.49 + -0.49 0 0.51 + -0.49 0 -0.49 + faces 2 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + tverts 4 + 0.5 1 0 + 0.5 0.75 0 + 0.75 1 0 + 0.75 0.75 0 +endnode +endmodelgeom plc_nc03 + +#MAXANIM ASCII +newanim animloop01 plc_nc03 + length 0 + transtime 0.25 + animroot plc_nc03 + node dummy plc_nc03 + parent NULL + endnode + node dummy plc_nc03_pwk + parent plc_nc03 + #part-number -1 + endnode + node dummy plc_nc03_wg + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy nc03_pwk_use01 + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy plc_nc03_D01 + parent plc_nc03 + endnode + node dummy groups02470 + parent plc_nc03 + endnode + node dummy groups02471 + parent plc_nc03 + endnode + node dummy groups02472 + parent plc_nc03 + endnode + node dummy groups02474 + parent plc_nc03 + endnode + node dummy groups02480 + parent plc_nc03 + endnode + node dummy groups02481 + parent plc_nc03 + endnode + node dummy groups02482 + parent plc_nc03 + endnode + node dummy groups02483 + parent plc_nc03 + endnode + node dummy groups02484 + parent plc_nc03 + endnode + node dummy groups02485 + parent plc_nc03 + endnode + node dummy groups02486 + parent plc_nc03 + endnode + node dummy groups02487 + parent plc_nc03 + endnode + node dummy groups02488 + parent plc_nc03 + endnode + node dummy groups02490 + parent plc_nc03 + endnode + node dummy groups02494 + parent plc_nc03 + endnode + node dummy groups02495 + parent plc_nc03 + endnode + node dummy groups02496 + parent plc_nc03 + endnode + node dummy groups02500 + parent plc_nc03 + endnode + node dummy groups02501 + parent plc_nc03 + endnode + node dummy groups02503 + parent plc_nc03 + endnode + node dummy line239 + parent plc_nc03 + endnode + node dummy groups02491 + parent plc_nc03 + endnode + node dummy object426 + parent plc_nc03 + endnode + node light plc_nc03ml1 + parent plc_nc03 + endnode + node light plc_nc03ml2 + parent plc_nc03 + endnode + node dummy plc_nc03a + parent plc_nc03 + endnode + node dummy damage110 + parent plc_nc03a + endnode + node dummy box155793 + parent damage110 + endnode + node dummy box155794 + parent damage110 + endnode + node dummy box155795 + parent box155794 + endnode + node dummy box155796 + parent box155794 + endnode + node dummy box155797 + parent box155794 + endnode + node dummy torus04 + parent box155797 + endnode + node dummy mesh1891 + parent damage110 + endnode + node dummy cm3_repair_1 + parent plc_nc03a + endnode + node dummy groups4116 + parent cm3_repair_1 + endnode + node dummy groups02502 + parent cm3_repair_1 + endnode + node dummy groups4114 + parent cm3_repair_1 + endnode + node emitter omenemitter55 + parent cm3_repair_1 + endnode + node light l_dayn21 + parent cm3_repair_1 + endnode + node emitter fire!163 + parent plc_nc03a + birthratekey + 0 10 + endlist + endnode + node emitter chunkywood260 + parent plc_nc03a + birthratekey + 0 3 + endlist + endnode + node dummy groups02469 + parent plc_nc03a + endnode + node dummy groups02492 + parent plc_nc03a + endnode + node dummy groups02493 + parent plc_nc03a + endnode + node dummy groups02497 + parent plc_nc03a + endnode + node dummy groups02504 + parent plc_nc03a + endnode +doneanim animloop01 plc_nc03 + +#MAXANIM ASCII +newanim close plc_nc03 + length 0.0333333 + transtime 0.25 + animroot plc_nc03 + node dummy plc_nc03 + parent NULL + endnode + node dummy plc_nc03_pwk + parent plc_nc03 + #part-number -1 + endnode + node dummy plc_nc03_wg + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy nc03_pwk_use01 + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy plc_nc03_D01 + parent plc_nc03 + endnode + node dummy groups02470 + parent plc_nc03 + endnode + node dummy groups02471 + parent plc_nc03 + endnode + node dummy groups02472 + parent plc_nc03 + endnode + node dummy groups02474 + parent plc_nc03 + endnode + node dummy groups02480 + parent plc_nc03 + endnode + node dummy groups02481 + parent plc_nc03 + endnode + node dummy groups02482 + parent plc_nc03 + endnode + node dummy groups02483 + parent plc_nc03 + endnode + node dummy groups02484 + parent plc_nc03 + endnode + node dummy groups02485 + parent plc_nc03 + endnode + node dummy groups02486 + parent plc_nc03 + endnode + node dummy groups02487 + parent plc_nc03 + endnode + node dummy groups02488 + parent plc_nc03 + endnode + node dummy groups02490 + parent plc_nc03 + endnode + node dummy groups02494 + parent plc_nc03 + endnode + node dummy groups02495 + parent plc_nc03 + endnode + node dummy groups02496 + parent plc_nc03 + endnode + node dummy groups02500 + parent plc_nc03 + endnode + node dummy groups02501 + parent plc_nc03 + endnode + node dummy groups02503 + parent plc_nc03 + endnode + node dummy line239 + parent plc_nc03 + endnode + node dummy groups02491 + parent plc_nc03 + endnode + node dummy object426 + parent plc_nc03 + endnode + node light plc_nc03ml1 + parent plc_nc03 + endnode + node light plc_nc03ml2 + parent plc_nc03 + endnode + node dummy plc_nc03a + parent plc_nc03 + endnode + node trimesh damage110 + parent plc_nc03a + positionkey + 0 0.0379858 0.0130298 0 + 0.0333333 0.0379858 0.0130298 0 + endlist + orientationkey + 0 0 0 0 0 + 0.0333333 0 0 0 0 + endlist + endnode + node dummy box155793 + parent damage110 + endnode + node trimesh box155794 + parent damage110 + orientationkey + 0 -0.57735 0.57735 -0.57735 4.18879 + 0.0333333 -0.57735 0.57735 -0.57735 4.18879 + endlist + endnode + node dummy box155795 + parent box155794 + endnode + node dummy box155796 + parent box155794 + endnode + node dummy box155797 + parent box155794 + endnode + node dummy torus04 + parent box155797 + endnode + node dummy mesh1891 + parent damage110 + endnode + node dummy cm3_repair_1 + parent plc_nc03a + endnode + node dummy groups4116 + parent cm3_repair_1 + endnode + node dummy groups02502 + parent cm3_repair_1 + endnode + node dummy groups4114 + parent cm3_repair_1 + endnode + node emitter omenemitter55 + parent cm3_repair_1 + endnode + node light l_dayn21 + parent cm3_repair_1 + endnode + node emitter fire!163 + parent plc_nc03a + endnode + node emitter chunkywood260 + parent plc_nc03a + endnode + node dummy groups02469 + parent plc_nc03a + endnode + node dummy groups02492 + parent plc_nc03a + endnode + node dummy groups02493 + parent plc_nc03a + endnode + node dummy groups02497 + parent plc_nc03a + endnode + node dummy groups02504 + parent plc_nc03a + endnode +doneanim close plc_nc03 + +#MAXANIM ASCII +newanim close2open plc_nc03 + length 0.633333 + transtime 0.25 + animroot plc_nc03 + node dummy plc_nc03 + parent NULL + endnode + node dummy plc_nc03_pwk + parent plc_nc03 + #part-number -1 + endnode + node dummy plc_nc03_wg + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy nc03_pwk_use01 + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy plc_nc03_D01 + parent plc_nc03 + endnode + node dummy groups02470 + parent plc_nc03 + endnode + node dummy groups02471 + parent plc_nc03 + endnode + node dummy groups02472 + parent plc_nc03 + endnode + node dummy groups02474 + parent plc_nc03 + endnode + node dummy groups02480 + parent plc_nc03 + endnode + node dummy groups02481 + parent plc_nc03 + endnode + node dummy groups02482 + parent plc_nc03 + endnode + node dummy groups02483 + parent plc_nc03 + endnode + node dummy groups02484 + parent plc_nc03 + endnode + node dummy groups02485 + parent plc_nc03 + endnode + node dummy groups02486 + parent plc_nc03 + endnode + node dummy groups02487 + parent plc_nc03 + endnode + node dummy groups02488 + parent plc_nc03 + endnode + node dummy groups02490 + parent plc_nc03 + endnode + node dummy groups02494 + parent plc_nc03 + endnode + node dummy groups02495 + parent plc_nc03 + endnode + node dummy groups02496 + parent plc_nc03 + endnode + node dummy groups02500 + parent plc_nc03 + endnode + node dummy groups02501 + parent plc_nc03 + endnode + node dummy groups02503 + parent plc_nc03 + endnode + node dummy line239 + parent plc_nc03 + endnode + node dummy groups02491 + parent plc_nc03 + endnode + node dummy object426 + parent plc_nc03 + endnode + node light plc_nc03ml1 + parent plc_nc03 + endnode + node light plc_nc03ml2 + parent plc_nc03 + endnode + node dummy plc_nc03a + parent plc_nc03 + endnode + node dummy damage110 + parent plc_nc03a + endnode + node dummy box155793 + parent damage110 + endnode + node trimesh box155794 + parent damage110 + orientationkey + 0 -0.57735 0.57735 -0.57735 4.18879 + 0.466667 -0.173141 0.969559 -0.173141 4.68148 + 0.633333 0.231244 0.945015 0.231244 4.65586 + endlist + endnode + node dummy box155795 + parent box155794 + endnode + node dummy box155796 + parent box155794 + endnode + node dummy box155797 + parent box155794 + endnode + node dummy torus04 + parent box155797 + endnode + node dummy mesh1891 + parent damage110 + endnode + node dummy cm3_repair_1 + parent plc_nc03a + endnode + node dummy groups4116 + parent cm3_repair_1 + endnode + node dummy groups02502 + parent cm3_repair_1 + endnode + node dummy groups4114 + parent cm3_repair_1 + endnode + node emitter omenemitter55 + parent cm3_repair_1 + endnode + node light l_dayn21 + parent cm3_repair_1 + endnode + node emitter fire!163 + parent plc_nc03a + endnode + node emitter chunkywood260 + parent plc_nc03a + endnode + node dummy groups02469 + parent plc_nc03a + endnode + node dummy groups02492 + parent plc_nc03a + endnode + node dummy groups02493 + parent plc_nc03a + endnode + node dummy groups02497 + parent plc_nc03a + endnode + node dummy groups02504 + parent plc_nc03a + endnode +doneanim close2open plc_nc03 + +#MAXANIM ASCII +newanim damage plc_nc03 + length 0.133333 + transtime 0.25 + animroot plc_nc03 + node dummy plc_nc03 + parent NULL + endnode + node dummy plc_nc03_pwk + parent plc_nc03 + #part-number -1 + endnode + node dummy plc_nc03_wg + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy nc03_pwk_use01 + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy plc_nc03_D01 + parent plc_nc03 + endnode + node dummy groups02470 + parent plc_nc03 + endnode + node dummy groups02471 + parent plc_nc03 + endnode + node dummy groups02472 + parent plc_nc03 + endnode + node dummy groups02474 + parent plc_nc03 + endnode + node dummy groups02480 + parent plc_nc03 + endnode + node dummy groups02481 + parent plc_nc03 + endnode + node dummy groups02482 + parent plc_nc03 + endnode + node dummy groups02483 + parent plc_nc03 + endnode + node dummy groups02484 + parent plc_nc03 + endnode + node dummy groups02485 + parent plc_nc03 + endnode + node dummy groups02486 + parent plc_nc03 + endnode + node dummy groups02487 + parent plc_nc03 + endnode + node dummy groups02488 + parent plc_nc03 + endnode + node dummy groups02490 + parent plc_nc03 + endnode + node dummy groups02494 + parent plc_nc03 + endnode + node dummy groups02495 + parent plc_nc03 + endnode + node dummy groups02496 + parent plc_nc03 + endnode + node dummy groups02500 + parent plc_nc03 + endnode + node dummy groups02501 + parent plc_nc03 + endnode + node dummy groups02503 + parent plc_nc03 + endnode + node dummy line239 + parent plc_nc03 + endnode + node dummy groups02491 + parent plc_nc03 + endnode + node dummy object426 + parent plc_nc03 + endnode + node light plc_nc03ml1 + parent plc_nc03 + endnode + node light plc_nc03ml2 + parent plc_nc03 + endnode + node dummy plc_nc03a + parent plc_nc03 + endnode + node trimesh damage110 + parent plc_nc03a + positionkey + 0 0.0379858 0.0130298 0 + 0.0333333 0.0379858 0.0130298 0.0244581 + 0.133333 0.0379858 0.0130298 0 + endlist + orientationkey + 0 0 0 0 0 + 0.0333333 -0.371336 0.928463 -0.00810258 0.0469939 + 0.1 0.59995 -0.799969 -0.0104722 0.0436324 + 0.133333 0 0 0 0 + endlist + endnode + node dummy box155793 + parent damage110 + endnode + node dummy box155794 + parent damage110 + endnode + node dummy box155795 + parent box155794 + endnode + node dummy box155796 + parent box155794 + endnode + node dummy box155797 + parent box155794 + endnode + node dummy torus04 + parent box155797 + endnode + node dummy mesh1891 + parent damage110 + endnode + node dummy cm3_repair_1 + parent plc_nc03a + endnode + node dummy groups4116 + parent cm3_repair_1 + endnode + node dummy groups02502 + parent cm3_repair_1 + endnode + node dummy groups4114 + parent cm3_repair_1 + endnode + node emitter omenemitter55 + parent cm3_repair_1 + endnode + node light l_dayn21 + parent cm3_repair_1 + endnode + node emitter fire!163 + parent plc_nc03a + endnode + node emitter chunkywood260 + parent plc_nc03a + endnode + node dummy groups02469 + parent plc_nc03a + endnode + node dummy groups02492 + parent plc_nc03a + endnode + node dummy groups02493 + parent plc_nc03a + endnode + node dummy groups02497 + parent plc_nc03a + endnode + node dummy groups02504 + parent plc_nc03a + endnode +doneanim damage plc_nc03 + +#MAXANIM ASCII +newanim dead plc_nc03 + length 0.0333333 + transtime 0.25 + event 0 detonate + animroot plc_nc03 + node dummy plc_nc03 + parent NULL + endnode + node dummy plc_nc03_pwk + parent plc_nc03 + #part-number -1 + endnode + node dummy plc_nc03_wg + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy nc03_pwk_use01 + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy plc_nc03_D01 + parent plc_nc03 + endnode + node dummy groups02470 + parent plc_nc03 + endnode + node dummy groups02471 + parent plc_nc03 + endnode + node dummy groups02472 + parent plc_nc03 + endnode + node dummy groups02474 + parent plc_nc03 + endnode + node dummy groups02480 + parent plc_nc03 + endnode + node dummy groups02481 + parent plc_nc03 + endnode + node dummy groups02482 + parent plc_nc03 + endnode + node dummy groups02483 + parent plc_nc03 + endnode + node dummy groups02484 + parent plc_nc03 + endnode + node dummy groups02485 + parent plc_nc03 + endnode + node dummy groups02486 + parent plc_nc03 + endnode + node dummy groups02487 + parent plc_nc03 + endnode + node dummy groups02488 + parent plc_nc03 + endnode + node dummy groups02490 + parent plc_nc03 + endnode + node dummy groups02494 + parent plc_nc03 + endnode + node dummy groups02495 + parent plc_nc03 + endnode + node dummy groups02496 + parent plc_nc03 + endnode + node dummy groups02500 + parent plc_nc03 + endnode + node dummy groups02501 + parent plc_nc03 + endnode + node dummy groups02503 + parent plc_nc03 + endnode + node dummy line239 + parent plc_nc03 + endnode + node dummy groups02491 + parent plc_nc03 + endnode + node dummy object426 + parent plc_nc03 + endnode + node light plc_nc03ml1 + parent plc_nc03 + endnode + node light plc_nc03ml2 + parent plc_nc03 + endnode + node dummy plc_nc03a + parent plc_nc03 + endnode + node trimesh damage110 + parent plc_nc03a + positionkey + 0 0.0379858 0.0130298 -6.95145 + 0.0333333 0.0379858 0.0130298 -6.95145 + endlist + endnode + node dummy box155793 + parent damage110 + endnode + node dummy box155794 + parent damage110 + endnode + node dummy box155795 + parent box155794 + endnode + node dummy box155796 + parent box155794 + endnode + node dummy box155797 + parent box155794 + endnode + node dummy torus04 + parent box155797 + endnode + node dummy mesh1891 + parent damage110 + endnode + node dummy cm3_repair_1 + parent plc_nc03a + endnode + node dummy groups4116 + parent cm3_repair_1 + endnode + node dummy groups02502 + parent cm3_repair_1 + endnode + node dummy groups4114 + parent cm3_repair_1 + endnode + node emitter omenemitter55 + parent cm3_repair_1 + endnode + node light l_dayn21 + parent cm3_repair_1 + endnode + node emitter fire!163 + parent plc_nc03a + endnode + node emitter chunkywood260 + parent plc_nc03a + endnode + node dummy groups02469 + parent plc_nc03a + endnode + node dummy groups02492 + parent plc_nc03a + endnode + node dummy groups02493 + parent plc_nc03a + endnode + node dummy groups02497 + parent plc_nc03a + endnode + node dummy groups02504 + parent plc_nc03a + endnode +doneanim dead plc_nc03 + +#MAXANIM ASCII +newanim die plc_nc03 + length 0.0333333 + transtime 0.25 + event 0.0333333 detonate + animroot plc_nc03 + node dummy plc_nc03 + parent NULL + endnode + node dummy plc_nc03_pwk + parent plc_nc03 + #part-number -1 + endnode + node dummy plc_nc03_wg + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy nc03_pwk_use01 + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy plc_nc03_D01 + parent plc_nc03 + endnode + node dummy groups02470 + parent plc_nc03 + endnode + node dummy groups02471 + parent plc_nc03 + endnode + node dummy groups02472 + parent plc_nc03 + endnode + node dummy groups02474 + parent plc_nc03 + endnode + node dummy groups02480 + parent plc_nc03 + endnode + node dummy groups02481 + parent plc_nc03 + endnode + node dummy groups02482 + parent plc_nc03 + endnode + node dummy groups02483 + parent plc_nc03 + endnode + node dummy groups02484 + parent plc_nc03 + endnode + node dummy groups02485 + parent plc_nc03 + endnode + node dummy groups02486 + parent plc_nc03 + endnode + node dummy groups02487 + parent plc_nc03 + endnode + node dummy groups02488 + parent plc_nc03 + endnode + node dummy groups02490 + parent plc_nc03 + endnode + node dummy groups02494 + parent plc_nc03 + endnode + node dummy groups02495 + parent plc_nc03 + endnode + node dummy groups02496 + parent plc_nc03 + endnode + node dummy groups02500 + parent plc_nc03 + endnode + node dummy groups02501 + parent plc_nc03 + endnode + node dummy groups02503 + parent plc_nc03 + endnode + node dummy line239 + parent plc_nc03 + endnode + node dummy groups02491 + parent plc_nc03 + endnode + node dummy object426 + parent plc_nc03 + endnode + node light plc_nc03ml1 + parent plc_nc03 + endnode + node light plc_nc03ml2 + parent plc_nc03 + endnode + node dummy plc_nc03a + parent plc_nc03 + endnode + node trimesh damage110 + parent plc_nc03a + positionkey + 0 0.0379858 0.0130298 0 + 0.0333333 0.0379858 0.0130298 -6.95145 + endlist + orientationkey + 0 0 0 0 0 + 0.0333333 0 0 0 0 + endlist + endnode + node dummy box155793 + parent damage110 + endnode + node dummy box155794 + parent damage110 + endnode + node dummy box155795 + parent box155794 + endnode + node dummy box155796 + parent box155794 + endnode + node dummy box155797 + parent box155794 + endnode + node dummy torus04 + parent box155797 + endnode + node dummy mesh1891 + parent damage110 + endnode + node dummy cm3_repair_1 + parent plc_nc03a + endnode + node dummy groups4116 + parent cm3_repair_1 + endnode + node dummy groups02502 + parent cm3_repair_1 + endnode + node dummy groups4114 + parent cm3_repair_1 + endnode + node emitter omenemitter55 + parent cm3_repair_1 + endnode + node light l_dayn21 + parent cm3_repair_1 + endnode + node emitter fire!163 + parent plc_nc03a + endnode + node emitter chunkywood260 + parent plc_nc03a + endnode + node dummy groups02469 + parent plc_nc03a + endnode + node dummy groups02492 + parent plc_nc03a + endnode + node dummy groups02493 + parent plc_nc03a + endnode + node dummy groups02497 + parent plc_nc03a + endnode + node dummy groups02504 + parent plc_nc03a + endnode +doneanim die plc_nc03 + +#MAXANIM ASCII +newanim open plc_nc03 + length 0.0333333 + transtime 0.25 + animroot plc_nc03 + node dummy plc_nc03 + parent NULL + endnode + node dummy plc_nc03_pwk + parent plc_nc03 + #part-number -1 + endnode + node dummy plc_nc03_wg + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy nc03_pwk_use01 + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy plc_nc03_D01 + parent plc_nc03 + endnode + node dummy groups02470 + parent plc_nc03 + endnode + node dummy groups02471 + parent plc_nc03 + endnode + node dummy groups02472 + parent plc_nc03 + endnode + node dummy groups02474 + parent plc_nc03 + endnode + node dummy groups02480 + parent plc_nc03 + endnode + node dummy groups02481 + parent plc_nc03 + endnode + node dummy groups02482 + parent plc_nc03 + endnode + node dummy groups02483 + parent plc_nc03 + endnode + node dummy groups02484 + parent plc_nc03 + endnode + node dummy groups02485 + parent plc_nc03 + endnode + node dummy groups02486 + parent plc_nc03 + endnode + node dummy groups02487 + parent plc_nc03 + endnode + node dummy groups02488 + parent plc_nc03 + endnode + node dummy groups02490 + parent plc_nc03 + endnode + node dummy groups02494 + parent plc_nc03 + endnode + node dummy groups02495 + parent plc_nc03 + endnode + node dummy groups02496 + parent plc_nc03 + endnode + node dummy groups02500 + parent plc_nc03 + endnode + node dummy groups02501 + parent plc_nc03 + endnode + node dummy groups02503 + parent plc_nc03 + endnode + node dummy line239 + parent plc_nc03 + endnode + node dummy groups02491 + parent plc_nc03 + endnode + node dummy object426 + parent plc_nc03 + endnode + node light plc_nc03ml1 + parent plc_nc03 + endnode + node light plc_nc03ml2 + parent plc_nc03 + endnode + node dummy plc_nc03a + parent plc_nc03 + endnode + node dummy damage110 + parent plc_nc03a + endnode + node dummy box155793 + parent damage110 + endnode + node trimesh box155794 + parent damage110 + orientationkey + 0 0.231244 0.945015 0.231244 4.65586 + 0.0333333 0.231244 0.945015 0.231244 4.65586 + endlist + endnode + node dummy box155795 + parent box155794 + endnode + node dummy box155796 + parent box155794 + endnode + node dummy box155797 + parent box155794 + endnode + node dummy torus04 + parent box155797 + endnode + node dummy mesh1891 + parent damage110 + endnode + node dummy cm3_repair_1 + parent plc_nc03a + endnode + node dummy groups4116 + parent cm3_repair_1 + endnode + node dummy groups02502 + parent cm3_repair_1 + endnode + node dummy groups4114 + parent cm3_repair_1 + endnode + node emitter omenemitter55 + parent cm3_repair_1 + endnode + node light l_dayn21 + parent cm3_repair_1 + endnode + node emitter fire!163 + parent plc_nc03a + endnode + node emitter chunkywood260 + parent plc_nc03a + endnode + node dummy groups02469 + parent plc_nc03a + endnode + node dummy groups02492 + parent plc_nc03a + endnode + node dummy groups02493 + parent plc_nc03a + endnode + node dummy groups02497 + parent plc_nc03a + endnode + node dummy groups02504 + parent plc_nc03a + endnode +doneanim open plc_nc03 + +#MAXANIM ASCII +newanim open2close plc_nc03 + length 0.633333 + transtime 0.25 + animroot plc_nc03 + node dummy plc_nc03 + parent NULL + endnode + node dummy plc_nc03_pwk + parent plc_nc03 + #part-number -1 + endnode + node dummy plc_nc03_wg + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy nc03_pwk_use01 + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy plc_nc03_D01 + parent plc_nc03 + endnode + node dummy groups02470 + parent plc_nc03 + endnode + node dummy groups02471 + parent plc_nc03 + endnode + node dummy groups02472 + parent plc_nc03 + endnode + node dummy groups02474 + parent plc_nc03 + endnode + node dummy groups02480 + parent plc_nc03 + endnode + node dummy groups02481 + parent plc_nc03 + endnode + node dummy groups02482 + parent plc_nc03 + endnode + node dummy groups02483 + parent plc_nc03 + endnode + node dummy groups02484 + parent plc_nc03 + endnode + node dummy groups02485 + parent plc_nc03 + endnode + node dummy groups02486 + parent plc_nc03 + endnode + node dummy groups02487 + parent plc_nc03 + endnode + node dummy groups02488 + parent plc_nc03 + endnode + node dummy groups02490 + parent plc_nc03 + endnode + node dummy groups02494 + parent plc_nc03 + endnode + node dummy groups02495 + parent plc_nc03 + endnode + node dummy groups02496 + parent plc_nc03 + endnode + node dummy groups02500 + parent plc_nc03 + endnode + node dummy groups02501 + parent plc_nc03 + endnode + node dummy groups02503 + parent plc_nc03 + endnode + node dummy line239 + parent plc_nc03 + endnode + node dummy groups02491 + parent plc_nc03 + endnode + node dummy object426 + parent plc_nc03 + endnode + node light plc_nc03ml1 + parent plc_nc03 + endnode + node light plc_nc03ml2 + parent plc_nc03 + endnode + node dummy plc_nc03a + parent plc_nc03 + endnode + node dummy damage110 + parent plc_nc03a + endnode + node dummy box155793 + parent damage110 + endnode + node trimesh box155794 + parent damage110 + orientationkey + 0 0.231244 0.945015 0.231244 4.65586 + 0.5 -0.57735 0.57735 -0.57735 4.18879 + 0.566667 -0.570514 0.590785 -0.570514 4.20883 + 0.633333 -0.57735 0.57735 -0.57735 4.18879 + endlist + endnode + node dummy box155795 + parent box155794 + endnode + node dummy box155796 + parent box155794 + endnode + node dummy box155797 + parent box155794 + endnode + node dummy torus04 + parent box155797 + endnode + node dummy mesh1891 + parent damage110 + endnode + node dummy cm3_repair_1 + parent plc_nc03a + endnode + node dummy groups4116 + parent cm3_repair_1 + endnode + node dummy groups02502 + parent cm3_repair_1 + endnode + node dummy groups4114 + parent cm3_repair_1 + endnode + node emitter omenemitter55 + parent cm3_repair_1 + endnode + node light l_dayn21 + parent cm3_repair_1 + endnode + node emitter fire!163 + parent plc_nc03a + endnode + node emitter chunkywood260 + parent plc_nc03a + endnode + node dummy groups02469 + parent plc_nc03a + endnode + node dummy groups02492 + parent plc_nc03a + endnode + node dummy groups02493 + parent plc_nc03a + endnode + node dummy groups02497 + parent plc_nc03a + endnode + node dummy groups02504 + parent plc_nc03a + endnode +doneanim open2close plc_nc03 + +#MAXANIM ASCII +newanim tiledefault plc_nc03 + length 0 + transtime 0.25 + animroot plc_nc03 + node dummy plc_nc03 + parent NULL + endnode + node dummy plc_nc03_pwk + parent plc_nc03 + #part-number -1 + endnode + node dummy plc_nc03_wg + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy nc03_pwk_use01 + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy plc_nc03_D01 + parent plc_nc03 + endnode + node dummy groups02470 + parent plc_nc03 + endnode + node dummy groups02471 + parent plc_nc03 + endnode + node dummy groups02472 + parent plc_nc03 + endnode + node dummy groups02474 + parent plc_nc03 + endnode + node dummy groups02480 + parent plc_nc03 + endnode + node dummy groups02481 + parent plc_nc03 + endnode + node dummy groups02482 + parent plc_nc03 + endnode + node dummy groups02483 + parent plc_nc03 + endnode + node dummy groups02484 + parent plc_nc03 + endnode + node dummy groups02485 + parent plc_nc03 + endnode + node dummy groups02486 + parent plc_nc03 + endnode + node dummy groups02487 + parent plc_nc03 + endnode + node dummy groups02488 + parent plc_nc03 + endnode + node dummy groups02490 + parent plc_nc03 + endnode + node dummy groups02494 + parent plc_nc03 + endnode + node dummy groups02495 + parent plc_nc03 + endnode + node dummy groups02496 + parent plc_nc03 + endnode + node dummy groups02500 + parent plc_nc03 + endnode + node dummy groups02501 + parent plc_nc03 + endnode + node dummy groups02503 + parent plc_nc03 + endnode + node dummy line239 + parent plc_nc03 + endnode + node dummy groups02491 + parent plc_nc03 + endnode + node dummy object426 + parent plc_nc03 + endnode + node light plc_nc03ml1 + parent plc_nc03 + endnode + node light plc_nc03ml2 + parent plc_nc03 + endnode + node dummy plc_nc03a + parent plc_nc03 + endnode + node trimesh damage110 + parent plc_nc03a + positionkey + 0 0.0379858 0.0130298 0 + endlist + orientationkey + 0 0 0 0 0 + endlist + endnode + node dummy box155793 + parent damage110 + endnode + node trimesh box155794 + parent damage110 + orientationkey + 0 0.289402 -0.91241 0.289402 -4.62085 + endlist + endnode + node dummy box155795 + parent box155794 + endnode + node dummy box155796 + parent box155794 + endnode + node dummy box155797 + parent box155794 + endnode + node dummy torus04 + parent box155797 + endnode + node dummy mesh1891 + parent damage110 + endnode + node dummy cm3_repair_1 + parent plc_nc03a + endnode + node dummy groups4116 + parent cm3_repair_1 + endnode + node dummy groups02502 + parent cm3_repair_1 + endnode + node dummy groups4114 + parent cm3_repair_1 + endnode + node emitter omenemitter55 + parent cm3_repair_1 + birthratekey + 0 0 + endlist + endnode + node light l_dayn21 + parent cm3_repair_1 + endnode + node emitter fire!163 + parent plc_nc03a + birthratekey + 0 0 + endlist + endnode + node emitter chunkywood260 + parent plc_nc03a + birthratekey + 0 0 + endlist + endnode + node dummy groups02469 + parent plc_nc03a + endnode + node dummy groups02492 + parent plc_nc03a + endnode + node dummy groups02493 + parent plc_nc03a + endnode + node dummy groups02497 + parent plc_nc03a + endnode + node dummy groups02504 + parent plc_nc03a + endnode +doneanim tiledefault plc_nc03 + +#MAXANIM ASCII +newanim use plc_nc03 + length 0.0333333 + transtime 0.25 + animroot plc_nc03 + node dummy plc_nc03 + parent NULL + endnode + node dummy plc_nc03_pwk + parent plc_nc03 + #part-number -1 + endnode + node dummy plc_nc03_wg + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy nc03_pwk_use01 + parent plc_nc03_pwk + #part-number -1 + endnode + node dummy plc_nc03_D01 + parent plc_nc03 + endnode + node dummy groups02470 + parent plc_nc03 + endnode + node dummy groups02471 + parent plc_nc03 + endnode + node dummy groups02472 + parent plc_nc03 + endnode + node dummy groups02474 + parent plc_nc03 + endnode + node dummy groups02480 + parent plc_nc03 + endnode + node dummy groups02481 + parent plc_nc03 + endnode + node dummy groups02482 + parent plc_nc03 + endnode + node dummy groups02483 + parent plc_nc03 + endnode + node dummy groups02484 + parent plc_nc03 + endnode + node dummy groups02485 + parent plc_nc03 + endnode + node dummy groups02486 + parent plc_nc03 + endnode + node dummy groups02487 + parent plc_nc03 + endnode + node dummy groups02488 + parent plc_nc03 + endnode + node dummy groups02490 + parent plc_nc03 + endnode + node dummy groups02494 + parent plc_nc03 + endnode + node dummy groups02495 + parent plc_nc03 + endnode + node dummy groups02496 + parent plc_nc03 + endnode + node dummy groups02500 + parent plc_nc03 + endnode + node dummy groups02501 + parent plc_nc03 + endnode + node dummy groups02503 + parent plc_nc03 + endnode + node dummy line239 + parent plc_nc03 + endnode + node dummy groups02491 + parent plc_nc03 + endnode + node dummy object426 + parent plc_nc03 + endnode + node light plc_nc03ml1 + parent plc_nc03 + endnode + node light plc_nc03ml2 + parent plc_nc03 + endnode + node dummy plc_nc03a + parent plc_nc03 + endnode + node dummy damage110 + parent plc_nc03a + endnode + node dummy box155793 + parent damage110 + endnode + node trimesh box155794 + parent damage110 + orientationkey + 0 0.231244 0.945015 0.231244 4.65586 + 0.0333333 0.231244 0.945015 0.231244 4.65586 + endlist + endnode + node dummy box155795 + parent box155794 + endnode + node dummy box155796 + parent box155794 + endnode + node dummy box155797 + parent box155794 + endnode + node dummy torus04 + parent box155797 + endnode + node dummy mesh1891 + parent damage110 + endnode + node dummy cm3_repair_1 + parent plc_nc03a + endnode + node dummy groups4116 + parent cm3_repair_1 + endnode + node dummy groups02502 + parent cm3_repair_1 + endnode + node dummy groups4114 + parent cm3_repair_1 + endnode + node emitter omenemitter55 + parent cm3_repair_1 + endnode + node light l_dayn21 + parent cm3_repair_1 + endnode + node emitter fire!163 + parent plc_nc03a + endnode + node emitter chunkywood260 + parent plc_nc03a + endnode + node dummy groups02469 + parent plc_nc03a + endnode + node dummy groups02492 + parent plc_nc03a + endnode + node dummy groups02493 + parent plc_nc03a + endnode + node dummy groups02497 + parent plc_nc03a + endnode + node dummy groups02504 + parent plc_nc03a + endnode +doneanim use plc_nc03 +donemodel plc_nc03 diff --git a/tests/fixtures/oracle/ascii/plc_statdwl.mdl b/tests/fixtures/oracle/ascii/plc_statdwl.mdl new file mode 100644 index 0000000..c20fa7f --- /dev/null +++ b/tests/fixtures/oracle/ascii/plc_statdwl.mdl @@ -0,0 +1,5432 @@ +# Rewritten by CleanModels 3 Version 3.5.2d Sun Oct 13 18:40:37 2019 +#MAXMODEL ASCII +filedependency Unknown +newmodel plc_statdwl + classification CHARACTER + setsupermodel plc_statdwl a_da + setanimationscale 0.7 +#MAXGEOM ASCII +beginmodelgeom plc_statdwl +node dummy plc_statdwl + parent NULL +endnode +node trimesh box01 + parent plc_statdwl + position 1.63615 1.17451 2.03605 + orientation -0.662852 0.613673 -0.428991 -0.621734 + wirecolor 0.554688 0.554688 0.554688 + ambient 0.968628 0.968628 0.968628 + diffuse 0.968628 0.968628 0.968628 + specular 0 0 0 + shininess 10 + bitmap v_stone06 + verts 8 + 0.0499999 0.05 0 + -0.0500001 0.05 0 + 0.0499999 -0.05 0 + -0.0500001 -0.05 0 + 0.05 0.0500001 2.5 + -0.05 0.0500001 2.5 + 0.05 -0.0499999 2.5 + -0.05 -0.0499999 2.5 + faces 10 + 0 2 3 1 0 2 3 1 + 3 1 0 1 3 1 0 1 + 0 1 5 1 1 0 2 4 + 5 4 0 1 2 3 1 4 + 1 3 7 1 1 0 2 3 + 7 5 1 1 2 3 1 3 + 3 2 6 1 1 0 2 5 + 6 7 3 1 2 3 1 5 + 2 0 4 1 1 0 2 2 + 4 6 2 1 2 3 1 2 + tverts 4 + 0.9995 -1.997 0 + 0.000499517 -1.997 0 + 0.9995 3.997 0 + 0.000499517 3.997 0 +endnode +node trimesh cylinder01 + parent plc_statdwl + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.339844 0.339844 0.339844 + ambient 0.980392 0.980392 0.980392 + diffuse 0.980392 0.980392 0.980392 + specular 0 0 0 + shininess 10 + bitmap v_stone_03 + render 1 + shadow 1 + beaming 0 + transparencyhint 0 + tilefade 0 + rotatetexture 0 + verts 24 + -1.25 0 0 + -1.08253 -0.625 0 + -0.625 -1.08253 0 + 0 -1.25 0 + 0.625 -1.08253 0 + 1.08253 -0.625 0 + 1.25 0 0 + 1.08253 0.625 0 + 0.625 1.08253 0 + 0 1.25 0 + -0.625 1.08253 0 + -1.08253 0.625 0 + -1.25 0 0.25 + -1.08253 -0.625 0.25 + -0.625 -1.08253 0.25 + 0 -1.25 0.25 + 0.625 -1.08253 0.25 + 1.08253 -0.625 0.25 + 1.25 0 0.25 + 1.08253 0.625 0.25 + 0.625 1.08253 0.25 + 0 1.25 0.25 + -0.625 1.08253 0.25 + -1.08253 0.625 0.25 + faces 24 + 0 13 12 1 0 13 12 2 + 0 1 13 1 0 1 13 2 + 1 14 13 1 1 14 13 2 + 1 2 14 1 1 2 14 2 + 2 15 14 1 2 15 14 2 + 2 3 15 1 2 3 15 2 + 3 16 15 1 24 16 25 2 + 3 4 16 1 24 4 16 2 + 4 17 16 1 4 17 16 2 + 4 5 17 1 4 5 17 2 + 5 18 17 1 5 18 17 2 + 5 6 18 1 5 6 18 2 + 6 19 18 1 6 19 18 2 + 6 7 19 1 6 7 19 2 + 7 20 19 1 7 20 19 2 + 7 8 20 1 7 8 20 2 + 8 21 20 1 8 21 20 2 + 8 9 21 1 8 9 21 2 + 9 22 21 1 9 22 21 2 + 9 10 22 1 9 10 22 2 + 10 23 22 1 10 23 22 2 + 10 11 23 1 10 11 23 2 + 11 12 23 1 11 12 23 2 + 11 0 12 1 11 0 12 2 + tverts 26 + 0.75 0.428643 0 + 0.833333 0.428643 0 + 0.916667 0.428643 0 + 1 0.428643 0 + 0.0833333 0.428643 0 + 0.166667 0.428643 0 + 0.25 0.428643 0 + 0.333333 0.428643 0 + 0.416667 0.428643 0 + 0.5 0.428643 0 + 0.583333 0.428643 0 + 0.666667 0.428643 0 + 0.75 0.571357 0 + 0.833333 0.571357 0 + 0.916667 0.571357 0 + 1 0.571357 0 + 0.0833333 0.571357 0 + 0.166667 0.571357 0 + 0.25 0.571357 0 + 0.333333 0.571357 0 + 0.416667 0.571357 0 + 0.5 0.571357 0 + 0.583333 0.571357 0 + 0.666667 0.571357 0 + 0 0.428643 0 + 0 0.571357 0 +endnode +node trimesh hammerhead + parent plc_statdwl + position 0.578415 -0.0690813 4.27385 + orientation 0.512424 -0.61824 0.595988 -1.48471 + wirecolor 0.898438 0.898438 0.898438 + ambient 0.968628 0.968628 0.968628 + diffuse 0.968628 0.968628 0.968628 + specular 0 0 0 + shininess 10 + bitmap v_stone06 + verts 50 + 0.5 0.175 0 + -0.5 0.175 0 + 0.5 0.125 0 + -0.5 0.125 0 + 0.5 0 0 + -0.5 0 0 + 0.5 -0.125 0 + -0.5 -0.125 0 + 0.5 -0.175 0 + -0.5 -0.175 0 + 0.5 0.175 0.5 + -0.5 0.175 0.5 + 0.5 0.125 0.5 + -0.5 0.125 0.5 + 0.5 0 0.5 + -0.5 0 0.5 + 0.5 -0.125 0.5 + -0.5 -0.125 0.5 + 0.5 -0.175 0.5 + -0.5 -0.175 0.5 + 0.5 0.25 0.125 + -0.5 0.25 0.125 + -0.625 0.125 0.125 + -0.625 0 0.125 + -0.625 -0.125 0.125 + -0.5 -0.25 0.125 + 0.5 -0.25 0.125 + 0.625 -0.125 0.125 + 0.625 0 0.125 + 0.625 0.125 0.125 + 0.5 0.25 0.25 + -0.5 0.25 0.25 + -0.625 0.125 0.25 + -0.625 0 0.25 + -0.625 -0.125 0.25 + -0.5 -0.25 0.25 + 0.5 -0.25 0.25 + 0.625 -0.125 0.25 + 0.625 0 0.25 + 0.625 0.125 0.25 + 0.5 0.25 0.375 + -0.5 0.25 0.375 + -0.625 0.125 0.375 + -0.625 0 0.375 + -0.625 -0.125 0.375 + -0.5 -0.25 0.375 + 0.5 -0.25 0.375 + 0.625 -0.125 0.375 + 0.625 0 0.375 + 0.625 0.125 0.375 + faces 96 + 0 2 3 1 22 2 3 1 + 3 1 0 1 3 9 22 1 + 2 4 5 1 2 4 5 1 + 5 3 2 1 5 3 2 1 + 4 6 7 1 4 6 7 1 + 7 5 4 1 7 5 4 1 + 6 8 9 1 6 23 24 1 + 9 7 6 1 24 7 6 1 + 10 11 13 1 9 22 2 0 + 13 12 10 1 2 3 9 0 + 12 13 15 1 3 2 4 0 + 15 14 12 1 4 5 3 0 + 14 15 17 1 5 4 6 0 + 17 16 14 1 6 7 5 0 + 16 17 19 1 7 6 23 0 + 19 18 16 1 23 24 7 0 + 0 1 21 1 8 1 2 4 + 21 20 0 1 2 3 8 4 + 20 21 31 1 3 2 4 4 + 31 30 20 1 4 5 3 4 + 30 31 41 1 5 4 6 4 + 41 40 30 1 6 7 5 4 + 40 41 11 1 7 6 25 4 + 11 10 40 1 25 11 7 4 + 1 3 22 1 9 3 14 3 + 22 21 1 1 19 2 1 3 + 3 5 23 1 3 5 17 3 + 23 22 3 1 17 14 3 3 + 5 7 24 1 5 7 18 3 + 24 23 5 1 18 17 5 3 + 7 9 25 1 26 0 19 3 + 25 24 7 1 11 18 7 3 + 21 22 32 1 2 19 20 3 + 32 31 21 1 20 4 2 3 + 22 23 33 1 12 13 16 3 + 33 32 22 1 16 15 12 3 + 23 24 34 1 13 27 28 3 + 34 33 23 1 28 16 13 3 + 24 25 35 1 14 3 5 3 + 35 34 24 1 5 17 14 3 + 31 32 42 1 4 20 21 3 + 42 41 31 1 21 6 4 3 + 32 33 43 1 15 16 29 3 + 43 42 32 1 29 30 15 3 + 33 34 44 1 16 28 31 3 + 44 43 33 1 31 29 16 3 + 34 35 45 1 17 5 7 3 + 45 44 34 1 7 18 17 3 + 41 42 13 1 1 19 2 3 + 13 11 41 1 32 10 18 3 + 42 43 15 1 19 20 4 3 + 15 13 42 1 4 2 19 3 + 43 44 17 1 20 21 6 3 + 17 15 43 1 6 4 20 3 + 44 45 19 1 18 7 11 3 + 19 17 44 1 23 6 21 3 + 9 8 26 1 8 1 2 5 + 26 25 9 1 2 3 8 5 + 25 26 36 1 3 2 4 5 + 36 35 25 1 4 5 3 5 + 35 36 46 1 5 4 6 5 + 46 45 35 1 6 7 5 5 + 45 46 18 1 7 6 25 5 + 18 19 45 1 25 11 7 5 + 8 6 27 1 23 6 21 2 + 27 26 8 1 19 2 1 2 + 6 4 28 1 6 4 20 2 + 28 27 6 1 20 21 6 2 + 4 2 29 1 4 2 19 2 + 29 28 4 1 19 20 4 2 + 2 0 20 1 26 0 19 2 + 20 29 2 1 1 19 2 2 + 26 27 37 1 2 19 20 2 + 37 36 26 1 20 4 2 2 + 27 28 38 1 12 13 16 2 + 38 37 27 1 16 15 12 2 + 28 29 39 1 13 27 28 2 + 39 38 28 1 28 16 13 2 + 29 20 30 1 14 3 5 2 + 30 39 29 1 5 17 14 2 + 36 37 47 1 4 20 21 2 + 47 46 36 1 21 6 4 2 + 37 38 48 1 15 16 29 2 + 48 47 37 1 29 30 15 2 + 38 39 49 1 16 28 31 2 + 49 48 38 1 31 29 16 2 + 39 30 40 1 17 5 7 2 + 40 49 39 1 7 18 17 2 + 46 47 16 1 11 18 7 2 + 16 18 46 1 32 10 18 2 + 47 48 14 1 18 17 5 2 + 14 16 47 1 5 7 18 2 + 48 49 12 1 17 14 3 2 + 12 14 48 1 3 5 17 2 + 49 40 10 1 18 7 11 2 + 10 12 49 1 9 3 14 2 + tverts 33 + 0.84965 0.000499576 0 + 0.8996 0.000499576 0 + 0.8996 0.25025 0 + 0.1004 0.25025 0 + 0.8996 0.5 0 + 0.1004 0.5 0 + 0.8996 0.74975 0 + 0.1004 0.74975 0 + 0.1004 0.000499576 0 + 0.1004 0.15035 0 + 0.15035 0.999501 0 + 0.1004 0.999501 0 + 0.25025 0.25025 0 + 0.5 0.25025 0 + 0.000499517 0.25025 0 + 0.25025 0.5 0 + 0.5 0.5 0 + 0.000499517 0.5 0 + 0.000499487 0.74975 0 + 0.9995 0.25025 0 + 0.999501 0.5 0 + 0.999501 0.74975 0 + 0.8996 0.15035 0 + 0.8996 0.84965 0 + 0.1004 0.84965 0 + 0.8996 0.999501 0 + 0.74975 0.000499576 0 + 0.74975 0.25025 0 + 0.74975 0.5 0 + 0.5 0.74975 0 + 0.25025 0.74975 0 + 0.74975 0.74975 0 + 0.25025 0.999501 0 +endnode +node trimesh object01 + parent plc_statdwl + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.105469 0.105469 0.105469 + ambient 0.980392 0.980392 0.980392 + diffuse 0.980392 0.980392 0.980392 + specular 0 0 0 + shininess 10 + bitmap v_stone_03 + render 1 + shadow 1 + beaming 0 + transparencyhint 0 + tilefade 0 + rotatetexture 0 + verts 13 + -1.25 0 0.25 + -1.08253 -0.625 0.25 + -0.625 -1.08253 0.25 + 0 -1.25 0.25 + 0.625 -1.08253 0.25 + 1.08253 -0.625 0.25 + 1.25 0 0.25 + 1.08253 0.625 0.25 + 0.625 1.08253 0.25 + 0 1.25 0.25 + -0.625 1.08253 0.25 + -1.08253 0.625 0.25 + 0 0 0.25 + faces 12 + 12 0 1 1 12 0 1 0 + 12 1 2 1 12 1 2 0 + 12 2 3 1 12 2 3 0 + 12 3 4 1 12 3 4 0 + 12 4 5 1 12 4 5 0 + 12 5 6 1 12 5 6 0 + 12 6 7 1 12 6 7 0 + 12 7 8 1 12 7 8 0 + 12 8 9 1 12 8 9 0 + 12 9 10 1 12 9 10 0 + 12 10 11 1 12 10 11 0 + 12 11 0 1 12 11 0 0 + tverts 13 + 0.999501 0.5 0 + 0.93258 0.74975 0 + 0.74975 0.93258 0 + 0.5 0.999501 0 + 0.25025 0.93258 0 + 0.0674199 0.74975 0 + 0.000499517 0.5 0 + 0.0674199 0.25025 0 + 0.25025 0.0674199 0 + 0.5 0.000499517 0 + 0.74975 0.0674199 0 + 0.93258 0.25025 0 + 0.5 0.5 0 +endnode +node trimesh dwstat + parent plc_statdwl + position 0.0322028 0.0307158 2.02064 + orientation 0.459822 -0.210241 0.862764 -0.499219 + wirecolor 0.0273438 0.0273438 0.0273438 + ambient 0.968628 0.968628 0.968628 + diffuse 0.968628 0.968628 0.968628 + specular 0 0 0 + shininess 10 + bitmap v_stone06 + render 1 + shadow 1 + beaming 0 + transparencyhint 0 + tilefade 0 + rotatetexture 0 + verts 577 + 0.253515 0.101428 -0.45501 + 0 0.231393 -0.467695 + 0 0.310577 -0.33645 + 0.404188 -0.119052 -0.455678 + 0.40446 0.05505 -0.33645 + 0.40446 -0.295087 -0.33645 + 0.422228 0.0154169 -0.087083 + 0.366592 -0.0468695 -0.00146718 + 0.228512 0.213902 -0.000894633 + 0.206971 -0.00287613 0.086886 + -0.25365 0.101428 -0.45501 + 0.230885 -0.120018 -0.539712 + 0 0.0853525 -0.542365 + 0 -0.188935 0.0645908 + 0.228512 -0.208346 -0.00592045 + 0.42037 -0.113891 -0.0706377 + 0.262908 -0.409465 -0.357318 + 0.261378 -0.341465 -0.46029 + 0 -0.341465 -0.46029 + -0.42238 0.0154173 -0.0870828 + -0.420523 -0.113891 -0.0706373 + -0.366752 -0.0468693 -0.00146711 + -0.228673 0.213903 -0.000894597 + -0.207132 -0.00287592 0.0868863 + -0.404595 0.0550507 -0.33645 + -0.231018 -0.120018 -0.539712 + -0.404322 -0.119052 -0.455678 + 0 -0.373285 -0.374673 + -0.228673 -0.208346 -0.0059204 + -0.404595 -0.295088 -0.33645 + -0.263065 -0.410517 -0.355725 + -0.261512 -0.341465 -0.46029 + 0 -0.387492 -0.593352 + -0.0200638 -0.275207 0 + -0.21072 0.000848146 -0.137642 + 0.0208688 0.267912 -0.0105717 + -0.0651685 -0.353147 0.311435 + -0.121969 -0.451297 0.70361 + -0.30863 -0.292882 0.30603 + -0.588557 -0.309505 0.8686 + -0.52095 -0.366985 0.502377 + -0.741298 -0.0819655 0.70952 + -0.595155 -0.0106154 0.927822 + -0.2797 -0.204367 1.09639 + -0.155026 -0.35403 1.02075 + -0.145441 -0.0653792 1.11125 + -0.264335 -0.199259 -0.0236193 + -0.404258 -0.0211078 -0.0545838 + -0.53871 0.209249 0.801915 + -0.096554 0.242736 0.902503 + -0.49571 -0.0663558 0.279457 + -0.440798 0.282242 0.24319 + -0.539608 -0.0288068 0.111241 + -0.400925 0.232237 0.269052 + -0.670682 -0.0868343 0.334695 + -0.249563 0.232964 -0.0401617 + -0.00484334 0.293092 0.20704 + -0.53491 0.29979 0.456277 + -0.311595 -0.354757 0.28847 + -0.281193 -0.253427 0.101706 + -0.071462 -0.42434 0.320152 + -0.0163006 0.394207 0.355772 + -0.463605 -0.0504708 0.162187 + 0.236157 -0.031729 -0.0810713 + 0.178063 -0.328362 0.36764 + 0.322258 -0.428452 0.60912 + 0.30446 -0.374605 0.981647 + 0.522735 -0.174113 0.869535 + 0.33877 -0.0786982 1.04605 + -0.0329483 -0.222355 1.12762 + 0.2307 -0.235347 0.0390475 + 0.397882 -0.0795835 0.04696 + 0.34728 0.144661 0.914075 + 0.396248 -0.131379 0.39237 + 0.48537 -0.103527 0.240994 + 0.402382 0.220775 0.34993 + 0.350628 0.177449 0.364192 + 0.547292 -0.175624 0.48888 + 0.282348 0.194187 0.0271733 + 0.442245 0.228555 0.579977 + 0.208053 -0.289095 0.16364 + 0.176423 -0.390332 0.350248 + 0.396823 -0.113195 0.27111 + 0.0869948 -0.0396912 1.04975 + -0.114771 -0.135038 0.869155 + -0.143851 0.122277 0.993038 + -0.126394 -0.252647 1.04756 + 0.0164554 0.0189511 1.19447 + -0.147988 -0.174399 1.20552 + -0.171709 0.0597597 1.29238 + -0.359907 -0.0673898 1.00238 + -0.32885 -0.00245057 1.15787 + -0.211972 -0.101975 -0.221696 + -0.305 -0.188313 -0.346688 + -0.0777707 -0.120179 -0.390817 + -0.418723 -0.0547085 -0.217498 + -0.227011 0.057623 -0.131004 + -0.000674515 0.112309 -0.229332 + -0.00795397 -0.026273 -0.594035 + -0.418938 -0.181052 -0.551718 + -0.630903 0.612067 -0.518085 + -0.633515 0.508487 -0.77752 + -0.728123 0.264712 -0.545208 + -0.419445 0.46834 -0.299885 + -0.71399 0.352505 -0.378165 + -0.356328 0.705452 -0.577942 + -0.367942 0.60117 -0.82428 + 0.761232 0.577367 1.22617 + 0.789798 0.475908 1.3787 + 0.831032 0.59555 1.33533 + 0.989615 0.587072 1.30819 + 0.935355 0.672247 1.17569 + 0.943645 0.287705 1.2226 + 1.14597 0.44598 0.981342 + 0.80875 0.228913 1.0807 + 1.10274 0.36662 1.11019 + 0.795625 0.383705 0.93996 + 1.02194 0.451912 0.83514 + 1.00732 0.108017 1.16772 + 1.0481 0.147623 1.23743 + 1.2658 0.250855 1.13335 + 1.34918 0.312583 0.962885 + 0.869405 0.0889513 0.93932 + 0.884678 0.409477 0.980292 + 0.861773 0.17377 0.737442 + 0.844068 0.303395 1.09911 + 1.04838 -0.00727275 1.03769 + 0.939457 0.274727 1.15568 + 1.15948 0.0731363 1.10433 + 1.29602 0.147779 1.06124 + 1.10844 0.372708 1.06394 + 0.918097 0.433195 0.938897 + 1.20458 0.310685 0.660797 + 1.11053 0.434148 0.998635 + 1.28927 0.280915 0.789597 + 1.07844 0.30621 0.98115 + 1.3024 0.117564 1.02736 + 1.22764 0.117946 0.697232 + 1.14759 0.0420428 0.849832 + 1.09671 0.0180008 0.713117 + 1.04015 0.153285 0.672372 + 1.21336 0.172751 0.7684 + 1.08245 0.366988 0.783555 + 1.01913 0.141132 1.1201 + 0.997958 0.0433495 0.803562 + 0.879043 0.154349 0.993052 + 0.910098 0.2833 0.813322 + 1.17969 0.218621 1.07612 + 1.22204 0.351502 0.91924 + 1.32686 0.210508 1.19672 + 1.2997 0.13474 1.23327 + 1.4485 0.156969 1.24829 + 1.38712 0.019886 1.01111 + 1.30189 0.0126606 1.0849 + 1.15401 -0.070477 1.06558 + 1.36387 -0.128491 1.10524 + 0.52432 -0.17569 1.11575 + 0.416285 0.0781985 0.959778 + 0.343517 -0.18599 1.05485 + 0.215139 -0.135078 0.89776 + 0.209965 -0.0917532 0.801645 + 0.33067 -0.307067 0.788877 + 0.633265 0.0100265 1.08776 + 0.544835 -0.346257 0.921843 + 0.674293 -0.290085 0.896875 + 0.773982 0.164505 0.909887 + 1.09554 0.168515 0.68516 + 0.910397 0.12007 0.646875 + 0.27793 0.0757807 0.95254 + 0.4113 -0.0557475 0.76708 + 1.07395 0.00297975 0.627702 + 0.758327 -0.272715 0.76148 + 1.1395 -0.0742212 0.744515 + 0.97596 0.0138116 0.903848 + 1.16167 0.126476 0.82851 + 0.773003 -0.231172 0.907427 + 0.246518 -0.161363 -0.246968 + 0.249811 0.0121949 -0.206994 + 0.069837 -0.016312 -0.324215 + 0.443655 -0.0693915 -0.234673 + 0.361805 0.154478 -0.240695 + 0.16087 0.26133 -0.350675 + -0.0214772 -0.0271088 -0.539935 + 0.271438 -0.329742 -0.408523 + 0.659645 -0.129427 -1.02631 + 0.793602 0.0775298 -0.89491 + 0.71904 -0.212292 -0.69172 + 0.634673 0.219681 -0.635068 + 0.803773 -0.05871 -0.620705 + 0.582422 0.256347 -1.00037 + 0.460355 0.051017 -1.12133 + -0.720382 0.0197736 1.04753 + -0.606043 0.266027 0.886172 + -0.995655 0.103365 0.841115 + -0.773347 0.26953 0.752895 + -0.391372 0.170849 0.96255 + -0.503417 -0.00356642 1.07163 + -0.513858 0.29496 0.768305 + -0.85145 0.264757 0.620412 + -0.947357 0.129566 0.703083 + -0.992732 -0.14521 0.755585 + -0.90294 -0.202473 0.89025 + -0.86669 -0.177166 0.485155 + -0.991943 0.0607857 0.533422 + -0.52387 -0.25813 0.986595 + -0.44795 -0.303077 0.751787 + -0.80739 -0.302823 0.77051 + -0.548292 -0.244181 0.517635 + -0.826858 -0.133554 1.10544 + -0.654522 -0.107928 0.99951 + -0.793257 -0.0312245 0.976232 + -0.79933 -0.141464 0.939685 + -1.1612 -0.0417375 0.884032 + -0.94779 -0.0488685 0.870088 + -0.98687 0.0425292 0.78593 + -0.99294 -0.0677098 0.749382 + -0.985237 0.29532 0.767565 + -0.88205 0.144418 0.800417 + -0.810108 0.226796 0.692312 + -0.939012 0.179387 0.700328 + -0.590702 0.343462 0.964558 + -0.603365 0.156273 0.953572 + -0.514735 0.237971 0.8421 + -0.679533 0.230906 0.870652 + -0.958762 -0.263862 0.556392 + -0.876182 -0.218268 0.681543 + -0.949145 -0.104937 0.644555 + -0.812357 -0.13578 0.577847 + -0.61749 -0.419277 0.709382 + -0.604023 -0.295792 0.807715 + -0.72825 -0.26129 0.719375 + -0.563697 -0.274152 0.685205 + -1.00218 1.19361 -0.155063 + -0.99569 0.852032 -0.149028 + -0.944982 0.949025 -0.64214 + -0.942948 0.727402 -0.370525 + -1.40647 1.07534 -0.184226 + -1.26563 0.857555 -0.603285 + -1.17068 0.67945 -0.356913 + -1.21932 0.8061 -0.133667 + -1.15231 1.16937 -0.313655 + -1.11992 0.715235 -0.236823 + 0.23689 0.239665 -0.015298 + -0.00140224 -0.00319411 0.10288 + 0.000316226 0.2837 -0.0233069 + -0.00104058 -0.207852 0.0764193 + 0.000514874 -0.289277 -0.0376713 + 0.235874 -0.229173 -0.0198799 + 0.00326797 -0.619742 -0.23954 + 0.00314555 -0.499012 -0.230603 + 0.345132 -0.397405 -0.2256 + 0.4048 -0.501525 -0.210674 + 0.423938 -0.509585 -0.38506 + 0.74926 -0.135935 -0.393735 + 0.656003 -0.106456 -0.164429 + 0.561778 -0.119885 -0.194768 + 0.394668 0.3089 -0.16866 + 0.422913 0.392627 -0.187813 + 0.293915 0.396672 -0.377053 + 0.209559 0.338915 -0.131228 + -0.236387 0.239663 -0.0217487 + -0.235242 -0.229175 -0.0263008 + -0.395103 -0.503585 -0.222442 + -0.653673 -0.107724 -0.185011 + -0.410368 0.38934 -0.191803 + -0.206841 0.339285 -0.137643 + -0.3893 0.308615 -0.178711 + -0.283533 0.39667 -0.384923 + 0.51523 0.38029 -0.464123 + -0.738247 -0.135942 -0.41401 + -0.502392 0.380285 -0.477993 + -0.41328 -0.509587 -0.39647 + 0.00562982 -0.675805 -0.412805 + -0.556207 -0.119862 -0.209945 + -0.336615 -0.393777 -0.230419 + 0.31998 0.150208 1.05964 + 0.207686 -0.135323 1.13454 + 0.541645 -0.157878 1.24999 + 0.52121 0.0946795 1.10643 + 0.123714 0.14881 0.909797 + 0.065401 -0.0661677 0.982315 + 0.371245 0.226656 0.938167 + 0.671645 0.0696345 1.08601 + 0.632937 -0.10068 1.14769 + 0.567288 -0.372205 1.09993 + 0.397978 -0.3982 1.08828 + 0.714618 -0.321695 0.843445 + 0.784503 -0.165524 1.05644 + 0.102374 -0.295887 0.846982 + 0.245637 -0.28179 0.64157 + 0.426642 -0.436465 0.911497 + 0.502543 -0.249414 0.605282 + 0.191916 -0.324118 1.18259 + 0.297132 -0.205519 1.12639 + 0.18905 -0.217627 1.00873 + 0.311392 -0.30384 1.06593 + 0.571847 -0.36302 1.33547 + 0.57159 -0.203656 1.1881 + 0.465495 -0.277197 1.17081 + 0.585853 -0.301977 1.12764 + 0.629357 0.026226 1.27788 + 0.58358 0.0462943 1.08159 + 0.520045 -0.0686935 1.16152 + 0.639232 -0.052038 1.16009 + 0.260705 0.219008 1.12389 + 0.301402 0.168032 0.95764 + 0.244339 0.046227 1.05178 + 0.366783 0.0887655 1.0898 + 0.691555 -0.445662 0.91534 + 0.641442 -0.306905 1.02191 + 0.551725 -0.381285 0.944752 + 0.6161 -0.270072 0.87321 + 0.35295 -0.454562 0.693315 + 0.432503 -0.360545 0.84218 + 0.286288 -0.347012 0.78865 + 0.368423 -0.298782 0.699037 + -0.424427 0.176045 1.16107 + -0.495573 0.0916787 1.1015 + -0.475273 0.0514395 1.18209 + -0.0821167 -0.274197 1.15228 + -0.37964 -0.199968 1.25124 + -0.310075 -0.202791 1.04341 + -0.477945 0.138847 1.2133 + -0.43613 0.054778 1.21181 + -0.424342 0.127987 1.34744 + -0.415078 -0.034553 1.00948 + -0.48272 -0.0747775 1.21571 + -0.406587 0.154052 1.19532 + -0.47456 -0.076345 1.29495 + -0.397542 0.0317915 1.31768 + -0.479775 0.110108 1.39024 + -0.55042 -0.0553245 1.33092 + -0.224687 0.0506327 1.07531 + -0.380498 -0.184229 1.37928 + -0.420235 0.099545 1.44611 + -0.449875 0.087133 1.01401 + -0.446985 0.090162 1.12299 + -0.409455 0.197203 1.03599 + -0.238961 -0.310722 1.37444 + -0.539375 0.0238406 0.835515 + -0.563715 0.511942 0.33542 + -0.300523 -0.24419 0.996822 + -0.450565 0.0873035 1.05621 + -0.421037 0.184742 1.11759 + -0.35605 0.280612 1.15016 + -0.331632 0.24595 1.23219 + -0.0866455 0.196791 1.35341 + 0.100912 -0.0263495 1.21611 + -0.0125232 0.200139 1.14718 + -0.329052 0.199778 1.24915 + -0.419965 0.217361 1.23352 + -0.226308 0.272442 1.30513 + -0.192633 0.266672 1.08706 + -0.3205 0.13612 1.34455 + -0.240934 0.240019 1.37642 + -0.435977 0.169417 1.40551 + -0.293212 0.292975 1.42062 + -0.131565 0.152864 1.46609 + -0.344025 0.229585 1.15889 + -0.316465 0.26779 1.06054 + 0.031249 0.055183 1.46868 + -0.231783 0.484655 0.68797 + 0.0104938 0.367102 0.8465 + 0.0394988 0.21625 1.1154 + -0.326803 0.254897 1.09937 + 0.567405 0.505375 1.565 + 0.789078 0.960642 1.3554 + 0.714645 0.470508 1.25864 + 0.799322 0.684857 1.13923 + 0.966075 0.392815 1.6467 + 1.00567 0.59483 1.19974 + 1.08406 0.813122 1.418 + 0.916105 0.380325 1.31894 + 0.754613 0.604732 1.62294 + 0.908265 0.501075 1.20005 + -0.635888 0.172419 0.779175 + -0.9013 -0.000670747 0.786562 + -0.75719 -0.064421 0.894597 + -0.459358 -0.073289 0.849335 + -0.549348 -0.0864035 0.902925 + -0.59196 -0.254065 0.745263 + -0.877773 0.188447 0.682522 + -0.82602 -0.210032 0.65384 + -0.860927 -0.137473 0.535287 + -0.781607 0.321615 0.071037 + -0.770397 0.313475 0.46311 + -0.66516 0.227392 0.19614 + -0.53453 -0.00748565 0.667547 + -0.55328 0.139616 0.885475 + -0.783292 0.145909 0.0539005 + -0.800685 -0.141156 0.386787 + -0.934523 0.119148 0.071654 + -0.931623 0.211989 0.298045 + -0.94098 0.335302 0.104236 + -0.904222 -0.0588933 0.462645 + -0.94625 0.209233 0.130342 + -0.846975 0.0856487 0.028725 + -0.806848 0.172839 0.163526 + -0.89361 0.149085 -0.0168056 + -0.726485 0.234166 0.0497655 + -0.849145 0.315285 -0.150926 + -0.830905 0.30673 0.171863 + -1.09949 0.480697 0.0835258 + -0.797875 0.447655 -0.0188527 + -0.918538 0.53169 0.107974 + -1.13344 0.348805 -0.0396402 + -1.0043 0.26898 -0.184597 + -1.0048 0.863087 -0.252445 + -1.13099 0.86825 -0.28663 + -1.16216 0.891737 -0.158678 + -1.18911 0.72339 -0.326575 + -1.03789 0.72155 -0.39646 + -1.13039 0.634902 -0.0302945 + -1.00696 0.388515 -0.249966 + -0.948425 0.654425 0.0607995 + -1.10502 0.469002 -0.156821 + -0.802237 0.63387 -0.088025 + -0.8187 0.414562 -0.224015 + -1.13831 0.506045 0.120326 + -1.21347 0.520005 0.0729068 + -1.22179 0.317562 -0.0939223 + -1.11074 0.178143 -0.183638 + -0.876013 0.493812 0.171331 + -0.689215 0.418035 0.0854758 + -0.878473 0.589707 -0.137614 + -0.972648 0.655597 -0.0201052 + -1.06258 0.373897 0.213532 + -1.07279 0.599977 -0.0190481 + -1.16557 0.340372 0.106194 + -1.06767 0.441987 -0.165967 + -1.18849 0.227628 -0.00709539 + -0.857072 0.547547 -0.17164 + -0.780025 0.137668 -0.149653 + -1.00528 0.423005 -0.227539 + -0.936525 0.127967 -0.141801 + -0.990177 0.405197 -0.0965488 + -1.16659 0.196649 0.018641 + -1.31184 0.290107 -0.0712923 + -1.33879 0.31056 0.0103737 + -1.4241 0.203876 -0.0544695 + -1.20783 0.0930747 0.0861288 + -1.2286 0.198514 0.120943 + -1.14775 0.2857 0.243487 + -1.29504 0.1206 0.237969 + -0.401983 -0.220798 1.0735 + -0.207813 0.0378835 1.07643 + -0.143642 -0.41277 1.07814 + 0.0966758 -0.188963 1.08416 + 0.0588 -0.242871 1.40208 + -0.19858 -0.36118 1.49799 + -0.0317937 -0.228546 1.60624 + -0.41855 -0.211681 1.54824 + -0.301957 -0.0478608 1.67932 + -0.520795 -0.119142 1.48209 + -0.446555 0.0830097 1.58578 + -0.544208 -0.0635635 1.33342 + -0.479667 0.161609 1.37553 + -0.440062 -0.255147 1.32244 + 0.225508 0.0871152 1.20688 + -0.0328337 0.279085 1.20225 + 0.0613855 -0.00914845 1.58865 + -0.158585 0.140351 1.6389 + -0.26083 0.23289 1.57275 + -0.284242 0.288467 1.42409 + -0.0724168 0.242702 1.45065 + -0.401675 -0.407192 1.24592 + -0.288882 -0.261605 1.17641 + -0.307627 -0.431682 1.33528 + -0.188053 -0.31607 1.29776 + -0.362747 -0.34412 1.41729 + -0.27581 -0.228875 1.40982 + -0.456795 -0.319633 1.32793 + -0.37664 -0.174408 1.28846 + -0.4698 -0.484267 1.45335 + -0.373082 -0.47002 1.46093 + -0.390922 -0.378085 1.47122 + -0.483368 -0.387177 1.45549 + -0.373 -0.419715 1.64492 + -0.382525 -0.355397 1.64651 + -0.446735 -0.364327 1.64128 + -0.424865 -0.403753 1.76852 + 0.12914 0.159769 1.48761 + 0.0168358 0.152385 1.28303 + 0.097388 0.268612 1.41997 + 0.070703 0.0343237 1.38801 + 0.0117271 0.162975 1.54789 + -0.0640175 0.0579245 1.48368 + -0.0200255 0.271817 1.48025 + -0.117885 0.175986 1.3787 + 0.113463 0.188834 1.63061 + 0.097041 0.283322 1.65103 + 0.0210178 0.179743 1.61488 + 0.00317752 0.271677 1.62517 + 0.0239675 0.117836 1.78336 + -0.038431 0.110558 1.76651 + -0.04977 0.173226 1.77972 + -0.036599 0.122019 1.90392 + 0.697047 0.0329538 -0.890005 + 0.886765 -0.0801387 -0.870378 + 0.854943 0.090753 -0.922137 + 0.581502 0.325882 -1.04237 + 0.447742 0.0692087 -1.00868 + 0.592222 0.231298 -1.22792 + 0.657835 -0.141658 -0.887763 + 0.93612 0.165479 -0.868683 + 0.69271 0.38016 -0.982148 + 0.717237 -0.36274 -1.24967 + 0.70362 -0.420912 -1.53816 + 0.659328 -0.176837 -1.66517 + 0.831648 -0.0080143 -1.0596 + 0.800573 -0.189484 -1.01505 + 0.836845 0.149269 -1.21973 + 0.979823 -0.107017 -1.05428 + 0.380572 -0.0218169 -1.10056 + 0.309833 -0.13441 -1.23401 + 0.68793 -0.248913 -0.955293 + 0.511632 -0.456282 -1.59201 + 0.55815 -0.293895 -1.67592 + 0.467663 -0.216803 -1.63269 + 0.609793 0.176668 -1.15787 + 0.727475 -0.431917 -1.08599 + 0.721995 -0.227027 -0.92328 + 0.880572 -0.174464 -0.928183 + 1.07278 -0.224042 -0.714588 + 0.778713 -0.435455 -0.975805 + 0.862053 -0.27042 -0.753808 + 0.926285 -0.323235 -1.01243 + -0.847265 0.479925 -1.41627 + -0.813773 0.430682 -1.63835 + -0.721605 0.382182 -1.63432 + -0.75984 0.405872 -1.41079 + -0.649978 0.596557 -1.34507 + -0.550135 0.57877 -1.37487 + -0.491632 0.478202 -1.60243 + -0.998163 0.827087 -1.62709 + -0.748598 1.13966 -1.58079 + -0.597593 0.958767 -1.58007 + 0.687575 -0.434892 -1.89703 + 0.711195 -0.433825 -1.66827 + 0.585153 -0.440532 -1.90615 + 0.6037 -0.465845 -1.6803 + 0.575953 -0.257047 -1.58871 + 0.48254 -0.226731 -1.62615 + 0.414918 -0.261502 -1.87016 + 0.917583 0.217789 -1.72336 + 1.01679 -0.160774 -1.80927 + 0.707305 0.119667 -1.76115 + -0.80558 0.531965 -0.556087 + -0.58508 0.542555 -0.576953 + -0.692312 0.673547 -0.551533 + -0.339458 0.783347 -0.64069 + -0.353923 0.50566 -0.727803 + -0.39984 0.789332 -0.840205 + -0.63988 0.385775 -0.643655 + -0.723413 0.747862 -0.459115 + -0.406693 0.852475 -0.5425 + -0.832272 0.45175 -1.32316 + -0.80939 0.386145 -1.03691 + -0.672198 0.676247 -1.3649 + -0.7247 0.641027 -0.716115 + -0.789277 0.46527 -0.744767 + -0.652068 0.83306 -0.806965 + -0.902505 0.628415 -0.712627 + -0.34381 0.440567 -0.8578 + -0.721387 0.342402 -0.735555 + -0.342275 0.373792 -1.03395 + -0.685547 0.358072 -1.4269 + -0.644628 0.541902 -1.43732 + -0.526815 0.543755 -1.39131 + -0.441515 0.725597 -0.7912 + -0.850545 0.26932 -0.90909 + -0.849095 0.478235 -0.64267 + -0.73908 0.362192 -0.69129 + -1.03622 0.43972 -0.422385 + -0.894612 0.244944 -0.798438 + -0.878885 0.322737 -0.52065 + -0.965412 0.41604 -0.76067 + faces 955 + 2 0 1 1 2 0 1 0 + 3 4 5 1 577 4 578 0 + 6 4 2 1 579 580 2 0 + 7 8 9 1 581 8 9 0 + 1 10 2 1 1 10 2 0 + 0 2 4 1 0 2 580 0 + 11 12 0 1 11 12 582 0 + 11 0 3 1 11 582 3 0 + 3 0 4 1 583 0 580 0 + 14 13 16 1 14 13 584 0 + 9 13 14 1 9 585 586 0 + 9 14 7 1 9 586 581 0 + 15 14 16 1 587 14 584 0 + 7 15 6 1 588 15 6 0 + 3 5 17 1 577 578 589 0 + 3 17 11 1 3 590 11 0 + 11 17 18 1 11 590 591 0 + 2 22 8 1 2 592 593 0 + 19 20 21 1 19 594 595 0 + 2 19 22 1 2 596 592 0 + 22 21 23 1 597 598 23 0 + 22 23 8 1 597 23 8 0 + 2 10 24 1 2 10 599 0 + 12 25 10 1 12 25 600 0 + 10 25 26 1 600 25 26 0 + 10 26 24 1 10 601 599 0 + 27 17 16 1 602 17 584 0 + 13 28 30 1 13 28 603 0 + 13 23 28 1 585 23 604 0 + 28 23 21 1 604 23 598 0 + 30 20 29 1 603 20 605 0 + 29 24 26 1 29 24 606 0 + 30 29 31 1 603 605 607 0 + 29 26 31 1 29 606 608 0 + 31 26 25 1 31 26 25 0 + 6 2 8 1 579 2 593 0 + 7 6 8 1 588 6 609 0 + 15 16 5 1 587 584 5 0 + 7 14 15 1 7 14 587 0 + 6 15 4 1 6 15 4 0 + 15 5 4 1 15 578 4 0 + 2 24 19 1 2 599 596 0 + 19 29 20 1 19 29 594 0 + 24 29 19 1 24 29 19 0 + 19 21 22 1 19 595 22 0 + 30 28 20 1 603 28 20 0 + 28 21 20 1 28 21 20 0 + 16 30 32 1 584 603 610 0 + 0 12 1 1 0 611 1 0 + 12 10 1 1 611 10 1 0 + 13 9 23 1 585 9 23 0 + 8 23 9 1 8 23 9 0 + 31 25 11 1 31 25 11 0 + 12 11 25 1 12 11 25 0 + 31 18 30 1 607 18 603 0 + 11 18 31 1 11 591 31 0 + 30 16 13 1 603 584 13 0 + 30 18 27 1 603 18 602 0 + 5 16 17 1 5 584 17 0 + 18 17 27 1 18 17 602 0 + 27 16 32 1 27 16 32 0 + 27 32 30 1 27 32 30 0 + 36 37 38 1 612 37 613 0 + 39 40 37 1 39 40 37 0 + 41 39 42 1 41 614 615 0 + 43 39 44 1 43 39 44 0 + 42 43 45 1 616 617 45 0 + 34 46 47 1 34 618 619 0 + 48 49 57 1 48 49 57 0 + 42 45 49 1 42 620 49 0 + 42 48 41 1 615 621 41 0 + 41 48 57 1 41 621 622 0 + 41 50 40 1 41 623 624 0 + 51 52 53 1 625 626 627 0 + 38 50 54 1 38 50 628 0 + 47 55 34 1 619 629 34 0 + 34 55 35 1 34 629 630 0 + 49 61 57 1 49 61 57 0 + 55 56 35 1 55 56 35 0 + 42 39 43 1 616 631 617 0 + 39 41 40 1 39 632 40 0 + 39 37 44 1 39 37 44 0 + 40 38 37 1 40 613 37 0 + 58 59 60 1 633 59 634 0 + 50 41 57 1 623 41 622 0 + 42 49 48 1 42 49 48 0 + 40 50 38 1 40 635 613 0 + 54 50 57 1 628 50 636 0 + 34 33 46 1 637 33 46 0 + 54 58 38 1 628 58 38 0 + 47 52 51 1 47 638 51 0 + 53 62 57 1 627 639 622 0 + 46 52 47 1 46 640 641 0 + 52 46 59 1 640 46 59 0 + 46 33 59 1 46 33 59 0 + 60 36 38 1 60 36 38 0 + 61 53 57 1 61 642 57 0 + 57 62 54 1 57 643 644 0 + 58 54 62 1 633 54 645 0 + 62 59 58 1 645 59 633 0 + 59 33 60 1 59 33 634 0 + 58 60 38 1 58 60 38 0 + 51 53 61 1 646 53 647 0 + 59 62 52 1 59 645 640 0 + 52 62 53 1 52 62 53 0 + 55 51 56 1 55 51 56 0 + 56 51 61 1 56 51 61 0 + 47 51 55 1 47 51 55 0 + 63 33 34 1 648 649 34 0 + 34 35 63 1 34 630 648 0 + 37 36 64 1 37 612 650 0 + 65 66 37 1 65 66 37 0 + 66 67 68 1 651 67 652 0 + 66 69 44 1 66 69 44 0 + 69 68 45 1 653 654 45 0 + 70 63 71 1 70 63 655 0 + 49 72 79 1 49 72 656 0 + 45 68 49 1 620 68 49 0 + 72 68 67 1 657 652 67 0 + 72 67 79 1 657 67 79 0 + 73 67 65 1 658 67 659 0 + 74 75 76 1 74 660 76 0 + 73 64 77 1 661 64 662 0 + 78 71 63 1 78 71 663 0 + 78 63 35 1 664 648 630 0 + 61 49 79 1 61 49 656 0 + 56 78 35 1 56 665 35 0 + 66 68 69 1 666 654 653 0 + 67 66 65 1 667 66 65 0 + 37 66 44 1 37 66 44 0 + 64 65 37 1 650 65 37 0 + 80 81 60 1 80 668 634 0 + 67 73 79 1 67 658 79 0 + 49 68 72 1 49 68 72 0 + 73 65 64 1 669 65 650 0 + 73 77 79 1 73 670 671 0 + 33 63 70 1 33 63 70 0 + 81 77 64 1 81 662 64 0 + 43 69 45 1 617 653 45 0 + 43 44 69 1 43 44 69 0 + 74 71 75 1 672 71 75 0 + 82 76 79 1 673 674 79 0 + 74 70 71 1 675 70 655 0 + 70 74 80 1 70 675 80 0 + 33 70 80 1 33 70 80 0 + 36 60 64 1 36 60 64 0 + 76 61 79 1 676 61 656 0 + 82 79 77 1 673 79 677 0 + 77 81 82 1 77 668 678 0 + 80 82 81 1 80 678 668 0 + 33 80 60 1 33 80 634 0 + 60 81 64 1 60 81 64 0 + 76 75 61 1 76 660 647 0 + 82 80 74 1 678 80 675 0 + 82 74 76 1 82 74 76 0 + 75 78 56 1 679 665 56 0 + 75 56 61 1 679 56 61 0 + 75 71 78 1 75 71 78 0 + 83 84 85 1 680 681 85 0 + 86 84 83 1 86 84 83 0 + 83 85 87 1 680 85 682 0 + 88 83 87 1 683 83 684 0 + 86 83 88 1 86 83 683 0 + 85 89 87 1 85 685 682 0 + 87 89 88 1 87 89 88 0 + 84 90 85 1 686 687 688 0 + 84 86 90 1 84 86 90 0 + 85 90 91 1 85 689 690 0 + 90 88 91 1 90 683 691 0 + 90 86 88 1 90 86 683 0 + 89 85 91 1 685 85 690 0 + 89 91 88 1 89 91 88 0 + 92 93 94 1 92 93 94 0 + 95 93 92 1 692 93 92 0 + 95 92 96 1 692 92 693 0 + 96 92 97 1 693 92 694 0 + 97 92 94 1 694 92 94 0 + 97 94 98 1 695 696 697 0 + 98 94 99 1 698 94 699 0 + 99 94 93 1 699 94 93 0 + 100 101 102 1 100 700 102 0 + 103 100 104 1 701 702 703 0 + 105 100 103 1 105 702 701 0 + 106 105 97 1 704 705 695 0 + 101 99 102 1 706 699 707 0 + 102 99 95 1 707 699 692 0 + 105 106 100 1 105 708 702 0 + 100 106 101 1 702 708 709 0 + 106 97 98 1 704 695 697 0 + 97 103 96 1 97 701 710 0 + 99 93 95 1 699 93 692 0 + 106 98 99 1 106 98 99 0 + 101 106 99 1 101 106 99 0 + 102 95 104 1 102 711 712 0 + 100 102 104 1 100 102 712 0 + 105 103 97 1 105 701 97 0 + 103 104 95 1 103 104 95 0 + 103 95 96 1 103 95 96 0 + 107 108 109 1 107 713 714 0 + 109 108 110 1 715 716 717 0 + 109 110 111 1 109 718 111 0 + 109 111 107 1 109 111 719 0 + 108 112 110 1 716 112 717 0 + 111 110 113 1 111 718 113 0 + 107 114 108 1 107 720 713 0 + 112 115 110 1 721 722 110 0 + 111 116 107 1 111 723 719 0 + 111 117 116 1 111 117 723 0 + 107 116 114 1 107 724 720 0 + 117 111 113 1 117 111 113 0 + 108 114 112 1 108 114 725 0 + 114 118 112 1 114 118 725 0 + 119 112 118 1 726 727 728 0 + 112 149 115 1 729 149 115 0 + 113 110 115 1 730 110 722 0 + 113 115 149 1 113 115 149 0 + 118 114 120 1 118 114 120 0 + 117 121 114 1 731 121 114 0 + 114 116 117 1 114 116 731 0 + 122 123 124 1 732 123 733 0 + 123 122 125 1 123 732 734 0 + 126 125 122 1 735 125 736 0 + 125 126 127 1 125 735 737 0 + 128 127 126 1 738 737 735 0 + 127 129 130 1 127 739 740 0 + 123 131 124 1 123 741 733 0 + 132 124 131 1 742 743 131 0 + 134 130 129 1 744 745 746 0 + 130 134 133 1 130 747 748 0 + 131 133 132 1 131 133 742 0 + 134 132 133 1 744 742 133 0 + 135 124 132 1 135 124 132 0 + 135 122 124 1 135 736 124 0 + 136 135 134 1 749 135 134 0 + 126 135 136 1 750 751 136 0 + 126 122 135 1 750 122 751 0 + 135 132 134 1 135 132 134 0 + 137 138 139 1 752 138 753 0 + 140 141 137 1 140 141 754 0 + 142 141 140 1 755 756 757 0 + 143 144 138 1 143 144 138 0 + 144 140 139 1 144 758 753 0 + 145 146 144 1 759 760 761 0 + 138 144 139 1 138 144 753 0 + 147 138 141 1 762 763 764 0 + 146 140 144 1 760 765 761 0 + 141 138 137 1 764 763 766 0 + 140 137 139 1 757 137 139 0 + 145 144 143 1 145 144 143 0 + 141 148 147 1 764 767 762 0 + 146 142 140 1 146 142 140 0 + 143 138 147 1 143 138 147 0 + 142 148 141 1 142 148 141 0 + 112 119 149 1 112 119 768 0 + 150 151 149 1 769 770 149 0 + 151 150 120 1 151 150 120 0 + 121 117 113 1 771 117 113 0 + 149 121 113 1 149 771 113 0 + 134 129 152 1 747 129 152 0 + 127 128 129 1 127 128 739 0 + 128 153 129 1 128 153 739 0 + 153 128 154 1 153 128 154 0 + 154 152 155 1 772 773 774 0 + 152 136 134 1 773 749 134 0 + 120 114 121 1 120 114 121 0 + 154 136 152 1 775 136 776 0 + 152 129 153 1 152 129 777 0 + 126 136 154 1 750 136 775 0 + 154 128 126 1 154 128 126 0 + 152 153 155 1 152 777 778 0 + 154 155 153 1 154 155 153 0 + 150 119 118 1 150 779 118 0 + 119 150 149 1 119 780 768 0 + 121 149 151 1 771 149 770 0 + 150 118 120 1 150 118 120 0 + 151 120 121 1 151 120 121 0 + 156 157 158 1 781 782 783 0 + 159 160 161 1 159 784 785 0 + 156 162 157 1 781 786 782 0 + 164 156 163 1 164 156 163 0 + 165 166 167 1 787 166 788 0 + 168 169 160 1 168 789 790 0 + 167 170 171 1 167 170 791 0 + 167 171 161 1 167 791 161 0 + 171 172 173 1 171 172 792 0 + 170 166 172 1 793 794 795 0 + 172 166 174 1 795 794 796 0 + 164 161 171 1 164 797 171 0 + 171 173 175 1 171 792 175 0 + 171 175 164 1 171 175 164 0 + 170 172 171 1 798 172 171 0 + 167 166 170 1 167 799 170 0 + 165 174 166 1 787 800 166 0 + 162 165 157 1 801 787 157 0 + 173 165 162 1 802 787 801 0 + 165 167 157 1 787 788 157 0 + 174 165 173 1 803 165 173 0 + 167 169 157 1 788 789 157 0 + 172 174 173 1 172 174 792 0 + 158 157 168 1 783 782 804 0 + 173 162 175 1 173 786 805 0 + 175 162 164 1 175 806 164 0 + 164 162 156 1 807 162 808 0 + 163 161 164 1 163 797 164 0 + 163 158 161 1 163 158 797 0 + 163 156 158 1 163 156 158 0 + 158 168 159 1 809 810 159 0 + 158 159 161 1 158 811 797 0 + 160 159 168 1 784 159 810 0 + 169 168 157 1 789 168 157 0 + 160 169 161 1 160 169 161 0 + 169 167 161 1 169 167 161 0 + 176 177 178 1 812 177 813 0 + 176 179 177 1 812 814 177 0 + 177 179 180 1 177 814 815 0 + 177 180 181 1 177 815 816 0 + 177 181 178 1 177 816 813 0 + 178 181 182 1 817 818 819 0 + 178 182 183 1 178 182 183 0 + 178 183 176 1 178 183 176 0 + 184 185 186 1 820 185 186 0 + 185 187 188 1 185 187 821 0 + 185 189 187 1 822 189 823 0 + 189 190 181 1 189 824 181 0 + 183 184 186 1 183 184 825 0 + 183 186 179 1 183 825 826 0 + 190 189 185 1 827 828 829 0 + 190 185 184 1 827 829 830 0 + 181 190 182 1 181 824 831 0 + 187 181 180 1 823 181 832 0 + 176 183 179 1 176 183 826 0 + 182 190 183 1 182 190 183 0 + 190 184 183 1 190 184 183 0 + 179 186 188 1 826 825 833 0 + 186 185 188 1 186 185 821 0 + 187 189 181 1 823 189 181 0 + 188 187 179 1 188 823 834 0 + 179 187 180 1 179 187 180 0 + 193 192 194 1 835 192 194 0 + 191 192 193 1 836 192 835 0 + 191 195 192 1 836 837 192 0 + 196 195 191 1 838 837 836 0 + 195 197 192 1 837 839 192 0 + 197 194 192 1 839 194 192 0 + 198 194 197 1 840 194 839 0 + 198 199 194 1 840 199 194 0 + 199 193 194 1 199 835 194 0 + 201 204 191 1 841 842 191 0 + 202 200 203 1 843 844 845 0 + 193 200 201 1 193 844 846 0 + 191 193 201 1 847 193 846 0 + 196 191 204 1 848 191 842 0 + 193 199 200 1 193 849 844 0 + 199 203 200 1 849 845 844 0 + 199 198 203 1 199 840 850 0 + 204 206 205 1 851 206 852 0 + 204 201 206 1 851 201 206 0 + 202 207 205 1 853 854 852 0 + 206 202 205 1 206 853 852 0 + 201 200 206 1 201 200 206 0 + 200 202 206 1 200 853 206 0 + 197 205 207 1 855 205 856 0 + 197 195 205 1 855 195 205 0 + 195 196 205 1 195 196 205 0 + 204 205 196 1 204 205 196 0 + 197 207 198 1 197 207 198 0 + 202 198 207 1 202 198 207 0 + 198 202 203 1 198 202 203 0 + 208 209 210 1 857 858 859 0 + 208 210 211 1 860 210 861 0 + 208 211 209 1 208 211 209 0 + 212 213 214 1 862 863 864 0 + 212 214 215 1 865 214 866 0 + 212 215 213 1 212 215 213 0 + 216 217 218 1 867 868 869 0 + 216 218 219 1 870 218 871 0 + 216 219 217 1 216 219 217 0 + 220 221 222 1 872 873 874 0 + 220 222 223 1 875 222 876 0 + 220 223 221 1 220 223 221 0 + 224 225 226 1 877 878 879 0 + 224 226 227 1 880 226 881 0 + 224 227 225 1 224 227 225 0 + 228 229 230 1 882 883 884 0 + 228 230 231 1 885 230 886 0 + 228 231 229 1 228 231 229 0 + 232 233 234 1 887 888 889 0 + 235 234 233 1 890 889 888 0 + 236 237 238 1 891 892 893 0 + 238 239 236 1 238 894 895 0 + 240 234 237 1 240 234 896 0 + 237 236 240 1 896 236 240 0 + 234 235 238 1 897 235 238 0 + 238 237 234 1 238 237 897 0 + 235 233 241 1 235 898 241 0 + 239 238 241 1 894 238 241 0 + 234 240 232 1 234 240 899 0 + 236 239 232 1 900 239 232 0 + 241 233 239 1 241 898 894 0 + 241 238 235 1 241 238 235 0 + 232 240 236 1 899 240 236 0 + 232 239 233 1 232 239 233 0 + 254 242 243 1 901 242 243 0 + 243 242 244 1 243 242 902 0 + 245 246 247 1 903 246 247 0 + 243 245 247 1 243 245 904 0 + 243 247 254 1 243 904 901 0 + 248 249 250 1 248 249 905 0 + 251 246 248 1 906 246 907 0 + 252 253 250 1 252 253 250 0 + 254 247 251 1 901 904 908 0 + 255 253 256 1 909 910 256 0 + 256 258 259 1 911 258 912 0 + 244 242 259 1 913 914 912 0 + 260 263 243 1 915 916 243 0 + 260 243 244 1 915 243 902 0 + 246 245 261 1 246 903 917 0 + 245 243 261 1 245 243 261 0 + 261 243 263 1 261 243 916 0 + 262 248 246 1 918 907 246 0 + 246 261 262 1 246 917 918 0 + 263 262 261 1 916 919 261 0 + 263 260 264 1 916 915 920 0 + 265 264 260 1 921 922 260 0 + 266 265 267 1 923 921 267 0 + 259 242 257 1 912 914 924 0 + 260 244 265 1 260 913 921 0 + 258 268 253 1 925 926 927 0 + 269 270 267 1 928 929 930 0 + 244 253 252 1 244 927 931 0 + 271 244 272 1 932 244 933 0 + 267 265 269 1 934 935 269 0 + 269 265 244 1 928 265 244 0 + 244 252 272 1 244 931 933 0 + 253 259 258 1 253 936 937 0 + 244 271 269 1 244 932 928 0 + 253 244 259 1 927 244 259 0 + 267 270 266 1 267 938 923 0 + 269 266 270 1 939 940 270 0 + 266 269 273 1 940 939 941 0 + 274 273 269 1 942 943 269 0 + 269 271 274 1 269 271 942 0 + 249 274 271 1 944 942 271 0 + 271 272 249 1 271 272 944 0 + 272 252 249 1 272 252 944 0 + 251 255 254 1 251 945 254 0 + 247 246 251 1 247 246 906 0 + 254 256 257 1 254 946 947 0 + 257 256 259 1 947 946 259 0 + 242 254 257 1 242 901 257 0 + 254 255 256 1 254 945 946 0 + 268 258 256 1 948 258 911 0 + 251 250 255 1 251 905 945 0 + 253 268 256 1 910 268 256 0 + 250 253 255 1 250 253 255 0 + 248 250 251 1 248 905 251 0 + 249 252 250 1 944 252 250 0 + 274 249 248 1 274 249 248 0 + 248 262 274 1 248 262 274 0 + 273 274 262 1 273 274 262 0 + 262 263 273 1 262 263 273 0 + 266 273 263 1 266 273 263 0 + 263 264 266 1 263 264 266 0 + 265 266 264 1 265 266 264 0 + 277 278 275 1 949 278 275 0 + 276 277 275 1 950 951 952 0 + 276 275 279 1 953 275 954 0 + 280 276 279 1 955 953 954 0 + 279 275 281 1 954 275 281 0 + 281 275 278 1 281 275 278 0 + 282 281 278 1 956 281 278 0 + 282 278 283 1 957 958 283 0 + 283 278 277 1 959 278 949 0 + 285 276 288 1 285 960 961 0 + 286 287 284 1 962 963 284 0 + 277 285 284 1 964 285 284 0 + 276 285 277 1 950 965 951 0 + 280 288 276 1 280 288 276 0 + 277 284 283 1 277 966 967 0 + 283 284 287 1 283 968 969 0 + 283 287 282 1 283 969 957 0 + 288 289 290 1 961 970 290 0 + 288 290 285 1 961 290 285 0 + 286 289 291 1 962 970 971 0 + 290 289 286 1 290 970 962 0 + 285 290 284 1 285 290 284 0 + 284 290 286 1 284 290 962 0 + 281 291 289 1 281 972 973 0 + 281 289 279 1 281 973 954 0 + 279 289 280 1 279 289 280 0 + 288 280 289 1 288 280 289 0 + 281 282 291 1 281 956 972 0 + 286 291 282 1 286 291 282 0 + 282 287 286 1 282 287 286 0 + 292 293 294 1 974 975 976 0 + 292 295 293 1 977 978 293 0 + 292 294 295 1 292 294 295 0 + 296 297 298 1 979 980 981 0 + 296 299 297 1 982 983 297 0 + 296 298 299 1 296 298 299 0 + 300 301 302 1 984 985 986 0 + 300 303 301 1 987 988 301 0 + 300 302 303 1 300 302 303 0 + 304 305 306 1 989 990 991 0 + 304 307 305 1 992 993 305 0 + 304 306 307 1 304 306 307 0 + 308 309 310 1 994 995 996 0 + 308 311 309 1 997 998 309 0 + 308 310 311 1 308 310 311 0 + 312 313 314 1 999 1000 1001 0 + 312 315 313 1 1002 1003 313 0 + 312 314 315 1 312 314 315 0 + 316 317 318 1 316 1004 1005 0 + 319 320 321 1 1006 1007 1008 0 + 322 323 324 1 322 1009 324 0 + 325 326 323 1 325 1010 1009 0 + 325 318 317 1 325 1005 1004 0 + 327 323 322 1 1011 1012 1013 0 + 328 329 326 1 1014 1015 1016 0 + 329 323 326 1 1017 1009 1010 0 + 329 330 324 1 1017 330 324 0 + 324 323 329 1 324 1009 1017 0 + 329 331 330 1 1015 1018 1019 0 + 321 332 319 1 321 1020 319 0 + 333 330 331 1 1021 1022 1023 0 + 324 330 334 1 1024 1019 334 0 + 330 333 334 1 330 1025 1026 0 + 328 331 329 1 1027 1028 329 0 + 331 328 333 1 331 328 333 0 + 326 320 328 1 326 1007 328 0 + 326 325 320 1 326 1029 1007 0 + 320 333 328 1 1007 333 328 0 + 335 336 337 1 335 1030 1031 0 + 336 335 325 1 1030 335 325 0 + 336 316 337 1 1030 316 1031 0 + 316 336 317 1 1032 1033 1034 0 + 318 327 316 1 1005 327 316 0 + 327 318 323 1 327 1005 1009 0 + 325 323 318 1 1029 323 318 0 + 325 317 336 1 1035 317 336 0 + 319 338 320 1 1006 338 1007 0 + 332 339 340 1 332 1036 1037 0 + 339 332 341 1 1038 1039 1040 0 + 332 320 341 1 1039 1041 1040 0 + 342 339 325 1 342 339 325 0 + 339 343 340 1 339 1042 1043 0 + 343 339 342 1 1042 339 342 0 + 339 341 325 1 339 341 325 0 + 325 341 320 1 325 341 320 0 + 344 316 345 1 1044 1045 1046 0 + 346 347 348 1 1047 1048 1049 0 + 349 350 324 1 1050 1051 1024 0 + 351 352 349 1 351 352 1050 0 + 345 352 344 1 1046 352 1044 0 + 349 327 350 1 1050 1052 1051 0 + 353 354 351 1 353 354 351 0 + 349 353 351 1 1050 353 351 0 + 355 353 324 1 355 353 1024 0 + 349 324 353 1 1050 1024 353 0 + 356 353 355 1 356 353 355 0 + 350 327 322 1 1051 1052 1053 0 + 322 324 350 1 322 324 350 0 + 347 319 332 1 1054 319 1020 0 + 332 348 347 1 1020 348 1054 0 + 355 357 356 1 1055 1056 1057 0 + 355 324 334 1 1058 324 1026 0 + 357 355 334 1 357 355 334 0 + 356 354 353 1 356 354 353 0 + 354 356 357 1 354 356 357 0 + 346 351 354 1 346 351 354 0 + 352 351 346 1 352 351 346 0 + 357 346 354 1 357 346 354 0 + 358 359 337 1 1059 359 337 0 + 359 358 352 1 359 1059 352 0 + 316 358 337 1 1045 1059 337 0 + 358 316 344 1 358 1032 344 0 + 327 345 316 1 327 1060 316 0 + 345 327 349 1 1060 327 1061 0 + 349 352 345 1 349 1062 345 0 + 344 352 358 1 344 1063 358 0 + 360 347 346 1 360 347 346 0 + 361 332 340 1 1064 332 1037 0 + 332 361 362 1 332 1064 1065 0 + 363 332 362 1 1066 332 1065 0 + 346 332 363 1 1067 332 1066 0 + 361 364 352 1 361 364 352 0 + 343 361 340 1 343 361 340 0 + 361 343 364 1 361 343 364 0 + 362 361 352 1 362 361 352 0 + 352 363 362 1 352 363 362 0 + 363 352 346 1 363 352 346 0 + 365 366 367 1 1068 1069 1070 0 + 368 367 366 1 1071 1070 1069 0 + 369 370 371 1 1072 1073 1074 0 + 370 369 372 1 1073 1072 1075 0 + 373 371 366 1 1076 371 366 0 + 371 373 369 1 1077 373 369 0 + 366 370 368 1 366 1078 1079 0 + 370 366 371 1 1078 366 371 0 + 368 374 367 1 368 374 1080 0 + 372 374 370 1 372 1081 1082 0 + 366 365 373 1 366 1083 1076 0 + 369 365 372 1 1084 365 372 0 + 374 372 367 1 1081 372 367 0 + 374 368 370 1 374 368 370 0 + 365 369 373 1 1085 369 373 0 + 365 367 372 1 365 367 372 0 + 375 376 377 1 375 1086 1087 0 + 378 379 380 1 1088 1089 1090 0 + 381 376 375 1 1091 1086 375 0 + 376 383 382 1 1092 1093 1094 0 + 384 385 386 1 384 385 1095 0 + 387 388 378 1 387 1096 378 0 + 389 386 390 1 389 386 1097 0 + 390 386 380 1 390 1098 1090 0 + 391 390 392 1 391 1099 392 0 + 384 389 391 1 1100 1101 1102 0 + 384 391 393 1 1100 1102 1103 0 + 380 383 390 1 1090 383 390 0 + 392 390 394 1 392 1099 394 0 + 394 390 383 1 1104 390 383 0 + 391 389 390 1 1105 1106 390 0 + 384 386 389 1 1107 386 389 0 + 393 385 384 1 1108 385 384 0 + 385 381 375 1 385 1091 375 0 + 385 392 381 1 385 1109 1091 0 + 386 385 375 1 1095 385 375 0 + 385 393 392 1 385 1108 1109 0 + 387 386 375 1 387 386 1110 0 + 393 391 392 1 393 391 392 0 + 375 377 388 1 375 1087 388 0 + 381 392 394 1 381 392 394 0 + 381 394 383 1 381 394 1093 0 + 381 383 376 1 381 1093 1092 0 + 380 382 383 1 1090 382 383 0 + 377 382 380 1 377 382 1090 0 + 376 382 377 1 376 382 377 0 + 388 377 379 1 1111 1112 379 0 + 379 377 380 1 1089 377 1090 0 + 379 378 388 1 379 1113 1111 0 + 388 387 375 1 388 1114 375 0 + 387 378 380 1 387 378 380 0 + 386 387 380 1 386 387 380 0 + 395 396 397 1 1115 396 397 0 + 398 399 396 1 1116 1117 1118 0 + 398 400 399 1 398 400 1119 0 + 401 402 395 1 401 1120 1121 0 + 399 401 397 1 399 1122 1123 0 + 403 404 401 1 403 1124 1122 0 + 401 395 397 1 401 1121 1125 0 + 395 405 398 1 1115 1126 398 0 + 399 403 401 1 399 403 1122 0 + 395 398 396 1 1115 398 396 0 + 396 399 397 1 396 1119 397 0 + 401 404 402 1 401 404 1120 0 + 406 398 405 1 406 398 1126 0 + 400 403 399 1 1127 403 399 0 + 395 402 405 1 395 402 405 0 + 406 400 398 1 406 400 398 0 + 407 408 409 1 407 408 1128 0 + 408 410 409 1 1129 1130 1131 0 + 408 411 410 1 1132 411 1133 0 + 408 407 411 1 408 407 1134 0 + 409 410 412 1 1131 1130 412 0 + 411 413 410 1 411 413 1133 0 + 407 409 414 1 407 1128 1135 0 + 412 410 415 1 412 1130 1136 0 + 411 407 416 1 1137 1138 1139 0 + 411 416 417 1 1137 1139 1140 0 + 407 414 416 1 407 1135 1141 0 + 417 413 411 1 417 413 411 0 + 409 412 414 1 409 1142 1143 0 + 414 412 418 1 1135 1144 1145 0 + 419 418 412 1 419 1145 1144 0 + 412 415 437 1 1144 1146 1147 0 + 413 415 410 1 1148 1149 410 0 + 413 437 415 1 413 437 415 0 + 418 420 414 1 418 1150 414 0 + 417 414 421 1 1151 414 1152 0 + 414 417 416 1 414 1151 416 0 + 422 423 424 1 1153 1154 424 0 + 424 425 422 1 424 425 1153 0 + 426 422 425 1 426 1153 425 0 + 425 427 426 1 425 1155 426 0 + 428 426 427 1 428 426 1155 0 + 427 429 430 1 427 429 430 0 + 424 423 431 1 424 1154 1156 0 + 432 431 423 1 1157 1158 1159 0 + 434 430 429 1 1160 1161 1162 0 + 429 433 434 1 429 1163 1164 0 + 431 432 433 1 431 1165 433 0 + 434 433 432 1 1160 433 1165 0 + 435 432 423 1 1166 1167 423 0 + 435 423 422 1 1166 423 422 0 + 436 434 435 1 1168 1169 435 0 + 426 436 435 1 1170 436 1166 0 + 426 435 422 1 1170 1166 422 0 + 435 434 432 1 435 1169 432 0 + 412 437 419 1 412 1171 1172 0 + 438 437 439 1 1173 1147 1174 0 + 439 420 438 1 1175 1150 438 0 + 421 413 417 1 1176 413 417 0 + 437 413 421 1 437 413 1176 0 + 434 440 430 1 1177 1178 1179 0 + 427 430 428 1 427 430 1180 0 + 428 430 441 1 1180 430 1181 0 + 441 442 428 1 1181 1182 1180 0 + 442 443 440 1 1183 1184 1178 0 + 440 434 436 1 1185 434 1186 0 + 420 421 414 1 1150 1152 414 0 + 442 440 436 1 1187 1185 1186 0 + 440 441 430 1 440 1181 430 0 + 426 442 436 1 1170 1183 436 0 + 442 426 428 1 442 426 428 0 + 440 443 441 1 440 1188 1181 0 + 442 441 443 1 442 441 443 0 + 438 418 419 1 1189 1190 1191 0 + 419 437 438 1 419 1147 1173 0 + 421 439 437 1 1176 1192 437 0 + 438 420 418 1 438 1150 418 0 + 439 421 420 1 439 421 420 0 + 444 445 446 1 1193 1194 1195 0 + 446 445 447 1 1195 1194 1196 0 + 446 447 448 1 446 1197 1198 0 + 446 448 449 1 446 1198 449 0 + 449 448 450 1 449 1198 1199 0 + 449 450 451 1 449 1199 451 0 + 451 450 452 1 451 1199 1200 0 + 451 452 453 1 1201 1202 453 0 + 453 452 454 1 453 1202 1203 0 + 453 454 455 1 453 1203 1204 0 + 455 454 456 1 1204 1203 1205 0 + 446 457 444 1 446 1206 1207 0 + 449 457 446 1 449 1206 446 0 + 451 457 449 1 451 1206 449 0 + 453 457 451 1 1208 1206 451 0 + 455 457 453 1 1204 1209 453 0 + 444 457 445 1 444 1210 445 0 + 458 445 459 1 1211 1194 1212 0 + 447 445 458 1 1196 1194 1211 0 + 448 447 458 1 448 447 1213 0 + 460 448 458 1 1214 448 1213 0 + 450 448 460 1 1215 448 1214 0 + 461 450 460 1 1216 450 1217 0 + 452 450 461 1 452 450 1216 0 + 462 452 461 1 1218 452 1216 0 + 454 452 462 1 1219 452 1218 0 + 463 454 462 1 1220 454 462 0 + 456 454 463 1 1221 454 1220 0 + 459 464 458 1 459 1222 458 0 + 458 464 460 1 458 1222 460 0 + 460 464 461 1 460 1222 461 0 + 461 464 462 1 461 1222 462 0 + 462 464 463 1 462 1222 1220 0 + 445 464 459 1 445 1222 459 0 + 457 464 445 1 1210 1222 445 0 + 463 464 456 1 463 464 456 0 + 456 464 455 1 456 464 455 0 + 455 464 457 1 455 464 457 0 + 465 466 467 1 1223 1224 1225 0 + 467 466 468 1 1225 1224 468 0 + 467 468 469 1 467 1226 1227 0 + 469 468 470 1 1228 468 1229 0 + 469 470 471 1 469 470 1230 0 + 471 470 472 1 1230 470 1231 0 + 471 472 465 1 471 472 465 0 + 465 472 466 1 465 472 466 0 + 473 465 474 1 1232 1223 1233 0 + 474 465 467 1 1233 1223 1225 0 + 474 467 475 1 474 467 1234 0 + 475 467 469 1 1234 467 1227 0 + 475 469 476 1 475 469 1235 0 + 476 469 471 1 1235 469 1230 0 + 476 471 473 1 476 471 473 0 + 473 471 465 1 473 471 465 0 + 477 473 474 1 1236 1232 1233 0 + 477 474 478 1 477 474 1237 0 + 478 474 475 1 1237 474 1234 0 + 478 475 479 1 478 475 1238 0 + 479 475 476 1 1238 475 1235 0 + 479 476 473 1 479 476 473 0 + 480 473 477 1 1239 1232 1236 0 + 480 477 478 1 1240 477 1237 0 + 480 478 479 1 1241 478 1238 0 + 480 479 473 1 480 479 473 0 + 481 482 483 1 1242 1243 1244 0 + 484 482 481 1 1245 1243 1242 0 + 485 484 481 1 1246 484 481 0 + 486 484 485 1 1247 484 1246 0 + 487 486 485 1 1248 486 485 0 + 488 486 487 1 1249 486 1248 0 + 483 488 487 1 483 488 487 0 + 482 488 483 1 482 488 483 0 + 489 483 490 1 1250 1244 1251 0 + 481 483 489 1 1242 1244 1250 0 + 491 481 489 1 1252 481 489 0 + 485 481 491 1 1246 481 1252 0 + 492 485 491 1 1253 485 491 0 + 487 485 492 1 1248 485 1253 0 + 490 487 492 1 490 487 492 0 + 483 487 490 1 483 487 490 0 + 489 490 493 1 1250 1251 1254 0 + 494 489 493 1 1255 489 493 0 + 491 489 494 1 1252 489 1255 0 + 495 491 494 1 1256 491 494 0 + 492 491 495 1 1253 491 1256 0 + 490 492 495 1 490 492 495 0 + 493 490 496 1 1254 1251 1257 0 + 494 493 496 1 1255 493 1258 0 + 495 494 496 1 1256 494 1259 0 + 490 495 496 1 490 495 496 0 + 497 498 499 1 497 1260 499 0 + 497 499 500 1 1261 1262 500 0 + 501 500 502 1 501 1263 1264 0 + 497 500 501 1 497 1265 1266 0 + 497 501 503 1 497 1266 1267 0 + 497 503 498 1 497 1267 1260 0 + 498 504 499 1 1268 1269 1270 0 + 499 504 500 1 499 1271 1265 0 + 500 504 505 1 1265 1271 1272 0 + 506 507 508 1 506 1273 1274 0 + 506 509 510 1 506 1275 510 0 + 509 511 512 1 509 1276 1277 0 + 502 513 501 1 1278 1279 1280 0 + 514 515 513 1 514 515 513 0 + 506 516 507 1 1281 1282 507 0 + 507 517 508 1 1283 1284 1285 0 + 508 517 518 1 1285 1284 1286 0 + 518 517 516 1 1286 1284 1287 0 + 516 517 507 1 1282 517 507 0 + 519 514 513 1 1288 1289 1279 0 + 501 513 503 1 501 1290 1291 0 + 514 506 520 1 514 1281 520 0 + 521 522 523 1 521 1292 523 0 + 514 516 506 1 514 1282 1281 0 + 512 504 498 1 512 1293 498 0 + 514 518 516 1 1294 1295 516 0 + 508 518 514 1 508 518 1289 0 + 510 509 512 1 1296 1297 1298 0 + 511 502 505 1 511 1278 505 0 + 502 500 505 1 1278 500 505 0 + 506 508 509 1 506 1274 1275 0 + 508 514 519 1 508 1289 1288 0 + 509 508 519 1 1299 508 1288 0 + 520 506 510 1 1300 506 510 0 + 520 510 515 1 520 1301 515 0 + 524 522 521 1 524 522 1302 0 + 514 520 515 1 514 520 515 0 + 513 515 503 1 513 515 503 0 + 510 512 498 1 1301 1277 1303 0 + 511 504 512 1 1304 1293 512 0 + 519 513 502 1 519 513 502 0 + 511 519 502 1 1276 519 502 0 + 509 519 511 1 509 519 1276 0 + 511 505 504 1 511 505 504 0 + 498 503 523 1 1305 1306 1307 0 + 525 523 503 1 1308 1307 1306 0 + 503 521 525 1 503 521 525 0 + 524 521 515 1 524 1302 1309 0 + 515 510 524 1 1310 1296 1311 0 + 526 524 510 1 1312 1311 1296 0 + 510 522 526 1 1313 1314 1315 0 + 523 522 498 1 1316 1317 498 0 + 522 510 498 1 1317 510 498 0 + 524 526 522 1 524 526 522 0 + 521 503 515 1 521 503 515 0 + 525 521 523 1 525 521 523 0 + 527 528 529 1 1318 1319 529 0 + 527 530 531 1 1320 1321 1322 0 + 531 530 532 1 1322 1321 1323 0 + 532 530 533 1 1324 530 1325 0 + 532 533 536 1 1326 1327 1328 0 + 533 530 529 1 1325 530 529 0 + 536 533 528 1 536 533 528 0 + 528 533 529 1 528 533 1329 0 + 529 530 527 1 529 530 1318 0 + 534 535 536 1 534 1330 536 0 + 531 535 534 1 1322 1331 1332 0 + 527 531 534 1 1320 1322 1332 0 + 527 534 528 1 527 1333 1334 0 + 536 535 531 1 1335 535 531 0 + 532 536 531 1 532 1335 531 0 + 528 534 536 1 528 534 536 0 + 537 538 539 1 1336 538 539 0 + 540 538 541 1 1337 1338 1339 0 + 540 541 542 1 540 1340 1341 0 + 540 542 543 1 1342 1343 1344 0 + 543 542 546 1 1345 542 1346 0 + 540 543 539 1 540 1347 539 0 + 543 546 537 1 543 546 537 0 + 543 537 539 1 543 537 1348 0 + 540 539 538 1 540 539 538 0 + 544 545 546 1 1349 545 546 0 + 544 541 545 1 1350 1339 1351 0 + 541 538 545 1 1339 1338 1351 0 + 545 538 537 1 1352 538 1336 0 + 544 546 541 1 544 1346 541 0 + 546 542 541 1 1346 542 541 0 + 545 537 546 1 545 537 546 0 + 547 548 549 1 1353 548 1354 0 + 549 548 550 1 1354 548 1355 0 + 550 551 552 1 1356 1357 1358 0 + 550 548 551 1 1355 548 1359 0 + 551 548 553 1 551 1360 553 0 + 553 548 547 1 1361 548 1353 0 + 554 547 549 1 1362 1363 549 0 + 554 549 550 1 1362 549 1364 0 + 554 550 555 1 1362 1364 1365 0 + 556 557 558 1 1366 1367 558 0 + 559 557 560 1 1368 557 1369 0 + 561 559 562 1 1370 559 1371 0 + 563 552 551 1 1372 1358 1357 0 + 564 565 563 1 564 565 1373 0 + 566 557 556 1 566 1374 1375 0 + 567 556 558 1 1376 1377 1378 0 + 567 558 568 1 1379 558 568 0 + 567 568 566 1 567 1380 1381 0 + 567 566 556 1 567 1381 556 0 + 565 569 563 1 1382 1383 1372 0 + 563 551 553 1 1373 551 553 0 + 557 565 570 1 1374 565 570 0 + 571 572 573 1 1384 572 573 0 + 566 565 557 1 566 565 1374 0 + 554 562 547 1 1385 1386 1387 0 + 568 565 566 1 1388 565 566 0 + 568 558 565 1 568 558 1389 0 + 559 560 562 1 559 1390 1371 0 + 552 561 555 1 1391 561 555 0 + 550 552 555 1 550 1391 555 0 + 558 557 559 1 1378 557 1368 0 + 565 558 569 1 1382 1392 1383 0 + 558 559 569 1 558 1393 1394 0 + 557 570 560 1 557 1395 1369 0 + 560 570 564 1 1369 1395 1396 0 + 571 574 572 1 571 574 1397 0 + 570 565 564 1 570 565 564 0 + 564 563 553 1 564 1373 553 0 + 562 560 547 1 1398 1399 1363 0 + 554 561 562 1 554 561 562 0 + 563 569 552 1 563 1400 1401 0 + 569 561 552 1 1402 1403 552 0 + 569 559 561 1 569 559 1370 0 + 555 561 554 1 555 561 554 0 + 553 547 573 1 1361 1353 1404 0 + 573 575 553 1 1404 1405 1361 0 + 572 553 575 1 1397 553 1406 0 + 572 574 564 1 1397 574 564 0 + 560 564 574 1 1390 1407 1408 0 + 574 576 560 1 1408 1409 1390 0 + 571 560 576 1 1410 560 1411 0 + 571 573 547 1 1410 1412 547 0 + 560 571 547 1 560 1410 547 0 + 576 574 571 1 576 574 571 0 + 553 572 564 1 553 1397 564 0 + 572 575 573 1 572 575 573 0 + tverts 1413 + 0.416079 0.380988 0 + 0.504261 0.377662 0 + 0.504257 0.412074 0 + 0.63632 0.701977 0 + 0.391062 0.412074 0 + 0.636415 0.412074 0 + 0.369882 0.477459 0 + 0.623245 0.499907 0 + 0.424775 0.524049 0 + 0.432266 0.639893 0 + 0.592456 0.380988 0 + 0.57605 0.702493 0 + 0.495732 0.592745 0 + 0.495728 0.517227 0 + 0.575225 0.498739 0 + 0.300781 0.481771 0 + 0.412813 0.406603 0 + 0.586655 0.379604 0 + 0.495732 0.379604 0 + 0.630118 0.477459 0 + 0.349511 0.481771 0 + 0.36821 0.499907 0 + 0.524049 0.500057 0 + 0.576278 0.639893 0 + 0.608938 0.412074 0 + 0.415415 0.702493 0 + 0.355145 0.701977 0 + 0.504268 0.402052 0 + 0.41623 0.498739 0 + 0.796049 0.412074 0 + 0.59573 0.40702 0 + 0.40481 0.820832 0 + 0.504268 0.344715 0 + 0.488778 0.500295 0 + 0.422474 0.637903 0 + 0.496987 0.49752 0 + 0.526908 0.827075 0 + 0.453338 0.684778 0 + 0.611577 0.79487 0 + 0.291074 0.728038 0 + 0.314586 0.632015 0 + 0.682158 0.686328 0 + 0.711221 0.743566 0 + 0.398485 0.787764 0 + 0.441842 0.767932 0 + 0.554824 0.673295 0 + 0.403828 0.494099 0 + 0.644833 0.48598 0 + 0.691591 0.710554 0 + 0.537823 0.736928 0 + 0.676637 0.673816 0 + 0.65754 0.564056 0 + 0.691903 0.65375 0 + 0.643674 0.514251 0 + 0.262513 0.588049 0 + 0.591035 0.489761 0 + 0.505929 0.554578 0 + 0.690269 0.619928 0 + 0.612607 0.827936 0 + 0.397966 0.526959 0 + 0.529097 0.86512 0 + 0.509913 0.593575 0 + 0.665472 0.665327 0 + 0.577884 0.479035 0 + 0.44232 0.81383 0 + 0.607827 0.660003 0 + 0.601638 0.757679 0 + 0.268599 0.728284 0 + 0.386431 0.774565 0 + 0.484297 0.795955 0 + 0.575986 0.51053 0 + 0.319115 0.512605 0 + 0.383471 0.739962 0 + 0.708564 0.603171 0 + 0.335447 0.69368 0 + 0.479624 0.592043 0 + 0.382306 0.543529 0 + 0.686087 0.628476 0 + 0.465416 0.507417 0 + 0.483782 0.652361 0 + 0.56811 0.543198 0 + 0.44289 0.846947 0 + 0.366241 0.698847 0 + 0.52601 0.775537 0 + 0.455842 0.728184 0 + 0.554271 0.760666 0 + 0.4518 0.774963 0 + 0.498522 0.628229 0 + 0.55571 0.731554 0 + 0.563959 0.606421 0 + 0.370591 0.763116 0 + 0.618608 0.639666 0 + 0.422039 0.442163 0 + 0.389686 0.409391 0 + 0.468709 0.397819 0 + 0.649863 0.667592 0 + 0.583192 0.607563 0 + 0.504479 0.440161 0 + 0.49299 0.652397 0 + 0.350062 0.735109 0 + 0.311273 0.36445 0 + 0.275439 0.366625 0 + 0.496896 0.357338 0 + 0.650114 0.38808 0 + 0.752548 0.449981 0 + 0.628164 0.348755 0 + 0.367797 0.317096 0 + 0.329816 0.821793 0 + 0.770423 0.861787 0 + 0.215237 0.850417 0 + 0.67537 0.843299 0 + 0.178957 0.808558 0 + 0.176073 0.48461 0 + 0.105709 0.757599 0 + 0.777015 0.783652 0 + 0.120745 0.791384 0 + 0.77245 0.746749 0 + 0.148843 0.719265 0 + 0.846069 0.806468 0 + 0.139747 0.559468 0 + 0.935962 0.797455 0 + 0.964958 0.75276 0 + 0.798108 0.590822 0 + 0.419536 0.757324 0 + 0.795454 0.693649 0 + 0.789297 0.788477 0 + 0.13965 0.642243 0 + 0.177529 0.491545 0 + 0.101011 0.599273 0 + 0.440615 0.77855 0 + 0.560815 0.779257 0 + 0.184958 0.74647 0 + 0.914672 0.673553 0 + 0.118036 0.762133 0 + 0.944125 0.707324 0 + 0.870803 0.757549 0 + 0.94869 0.575532 0 + 0.92269 0.575327 0 + 0.894854 0.723117 0 + 0.877157 0.628737 0 + 0.142512 0.676588 0 + 0.0822744 0.701766 0 + 0.127802 0.705739 0 + 0.850178 0.793981 0 + 0.842815 0.710986 0 + 0.801459 0.76067 0 + 0.18774 0.713545 0 + 0.906016 0.782448 0 + 0.079255 0.741316 0 + 0.0428008 0.814071 0 + 0.947752 0.823654 0 + 0.999501 0.827592 0 + 0.37227 0.765403 0 + 0.0514855 0.631591 0 + 0.102917 0.676019 0 + 0.0299318 0.707021 0 + 0.678098 0.792841 0 + 0.359473 0.751945 0 + 0.615221 0.776873 0 + 0.710541 0.735684 0 + 0.568775 0.687389 0 + 0.610753 0.802451 0 + 0.367002 0.785501 0 + 0.685232 0.741999 0 + 0.730254 0.735452 0 + 0.235076 0.550447 0 + 0.123251 0.67994 0 + 0.812364 0.574192 0 + 0.407588 0.750047 0 + 0.638793 0.668147 0 + 0.869242 0.636764 0 + 0.759479 0.699952 0 + 0.892038 0.695503 0 + 0.164835 0.630976 0 + 0.899747 0.717526 0 + 0.764583 0.738219 0 + 0.581487 0.435537 0 + 0.417368 0.63184 0 + 0.520043 0.415283 0 + 0.324561 0.438761 0 + 0.444195 0.437182 0 + 0.448299 0.408345 0 + 0.488287 0.358721 0 + 0.590153 0.393177 0 + 0.72516 0.231193 0 + 0.403075 0.265646 0 + 0.248196 0.318923 0 + 0.479039 0.333777 0 + 0.224717 0.337543 0 + 0.301696 0.237994 0 + 0.655853 0.206279 0 + 0.754771 0.627789 0 + 0.715007 0.732646 0 + 0.583119 0.720832 0 + 0.77319 0.697701 0 + 0.452944 0.752672 0 + 0.359738 0.781274 0 + 0.317052 0.480733 0 + 0.199648 0.496872 0 + 0.833706 0.68464 0 + 0.150514 0.698406 0 + 0.181741 0.733715 0 + 0.194348 0.733032 0 + 0.150788 0.605873 0 + 0.223701 0.758977 0 + 0.199682 0.69741 0 + 0.21497 0.702319 0 + 0.305076 0.768844 0 + 0.2082 0.790137 0 + 0.268132 0.762363 0 + 0.655043 0.75626 0 + 0.217773 0.746677 0 + 0.0919271 0.732085 0 + 0.166143 0.728429 0 + 0.152553 0.615629 0 + 0.150441 0.69678 0 + 0.480539 0.701547 0 + 0.56118 0.710161 0 + 0.214025 0.517159 0 + 0.542493 0.683918 0 + 0.454813 0.753199 0 + 0.554845 0.750318 0 + 0.683253 0.72109 0 + 0.514962 0.728577 0 + 0.162327 0.646177 0 + 0.191046 0.678992 0 + 0.834328 0.669294 0 + 0.213243 0.651803 0 + 0.137585 0.686291 0 + 0.203575 0.712074 0 + 0.242492 0.777987 0 + 0.215139 0.679952 0 + 0.852774 0.000499517 0 + 0.850515 0.183037 0 + 0.83288 0.331922 0 + 0.167828 0.40314 0 + 0.99337 0.451988 0 + 0.0556078 0.342111 0 + 0.0886286 0.406709 0 + 0.928286 0.207583 0 + 0.904981 0.418051 0 + 0.106281 0.438197 0 + 0.421861 0.510282 0 + 0.504732 0.640063 0 + 0.495866 0.48675 0 + 0.504606 0.749431 0 + 0.495935 0.490414 0 + 0.577785 0.495079 0 + 0.496892 0.969542 0 + 0.49685 0.905025 0 + 0.615782 0.44114 0 + 0.636532 0.906367 0 + 0.643188 0.399329 0 + 0.756325 0.397054 0 + 0.723893 0.695246 0 + 0.691125 0.449224 0 + 0.526717 0.456069 0 + 0.357168 0.42854 0 + 0.40203 0.401428 0 + 0.568634 0.457243 0 + 0.586453 0.494589 0 + 0.586054 0.760825 0 + 0.358351 0.907468 0 + 0.268429 0.695923 0 + 0.353043 0.430296 0 + 0.423823 0.457046 0 + 0.360369 0.473435 0 + 0.602848 0.399365 0 + 0.564867 0.378599 0 + 0.239016 0.391739 0 + 0.435135 0.374962 0 + 0.35203 0.396337 0 + 0.497714 0.392054 0 + 0.302324 0.70241 0 + 0.378692 0.848787 0 + 0.392965 0.778129 0 + 0.710672 0.797767 0 + 0.277275 0.82804 0 + 0.322983 0.790397 0 + 0.558834 0.73884 0 + 0.673716 0.757855 0 + 0.375136 0.746279 0 + 0.398856 0.785043 0 + 0.284128 0.692159 0 + 0.693041 0.788692 0 + 0.634161 0.785638 0 + 0.189732 0.721443 0 + 0.273189 0.777289 0 + 0.796477 0.722371 0 + 0.788942 0.668511 0 + 0.644129 0.739286 0 + 0.228359 0.658997 0 + 0.562498 0.810365 0 + 0.251816 0.79563 0 + 0.561501 0.764779 0 + 0.604049 0.779778 0 + 0.694627 0.850451 0 + 0.252811 0.81181 0 + 0.657641 0.807278 0 + 0.699497 0.795959 0 + 0.714627 0.835351 0 + 0.386383 0.783884 0 + 0.676611 0.804842 0 + 0.718061 0.804466 0 + 0.413579 0.521321 0 + 0.399425 0.751385 0 + 0.419271 0.613653 0 + 0.376688 0.590921 0 + 0.736257 0.876515 0 + 0.197637 0.768237 0 + 0.687629 0.842112 0 + 0.710016 0.782681 0 + 0.881271 0.682079 0 + 0.168971 0.721111 0 + 0.823797 0.707076 0 + 0.798024 0.683579 0 + 0.544279 0.804726 0 + 0.676589 0.789105 0 + 0.33047 0.810236 0 + 0.467198 0.784885 0 + 0.745217 0.828365 0 + 0.387921 0.746726 0 + 0.564158 0.81842 0 + 0.344083 0.818027 0 + 0.569961 0.853592 0 + 0.656821 0.764978 0 + 0.32788 0.81905 0 + 0.556032 0.813705 0 + 0.330718 0.839826 0 + 0.357502 0.621367 0 + 0.579516 0.864811 0 + 0.304336 0.84926 0 + 0.417616 0.782237 0 + 0.36343 0.861938 0 + 0.650389 0.879461 0 + 0.591793 0.766166 0 + 0.659692 0.794739 0 + 0.64664 0.771929 0 + 0.412652 0.86067 0 + 0.625616 0.719364 0 + 0.700287 0.588239 0 + 0.768849 0.761659 0 + 0.591702 0.777229 0 + 0.650668 0.793323 0 + 0.371932 0.488399 0 + 0.493077 0.82337 0 + 0.534377 0.855157 0 + 0.46915 0.819155 0 + 0.491401 0.531404 0 + 0.468403 0.827819 0 + 0.5222 0.823721 0 + 0.582947 0.842497 0 + 0.571236 0.785319 0 + 0.615704 0.852831 0 + 0.588034 0.861189 0 + 0.655864 0.868816 0 + 0.606214 0.872779 0 + 0.549999 0.884701 0 + 0.376114 0.515668 0 + 0.614301 0.778365 0 + 0.493377 0.885378 0 + 0.584851 0.680677 0 + 0.500595 0.722244 0 + 0.490508 0.79275 0 + 0.617896 0.788546 0 + 0.693082 0.910635 0 + 0.229827 0.855678 0 + 0.744287 0.830306 0 + 0.773736 0.272374 0 + 0.168273 0.42844 0 + 0.845499 0.320485 0 + 0.127243 0.872092 0 + 0.814349 0.846119 0 + 0.241813 0.315192 0 + 0.811622 0.370587 0 + 0.725387 0.704591 0 + 0.182311 0.706528 0 + 0.232429 0.734855 0 + 0.322479 0.722987 0 + 0.69529 0.68453 0 + 0.225874 0.695699 0 + 0.537652 0.679249 0 + 0.208491 0.671728 0 + 0.196352 0.640644 0 + 0.776063 0.518918 0 + 0.772165 0.621719 0 + 0.48316 0.55172 0 + 0.357643 0.675323 0 + 0.696658 0.732463 0 + 0.439616 0.514424 0 + 0.217302 0.601707 0 + 0.574684 0.519079 0 + 0.525071 0.578439 0 + 0.459174 0.527622 0 + 0.669828 0.621597 0 + 0.526544 0.534467 0 + 0.201204 0.507823 0 + 0.215159 0.543168 0 + 0.184985 0.495885 0 + 0.48678 0.51334 0 + 0.200449 0.460719 0 + 0.793207 0.474443 0 + 0.381475 0.522192 0 + 0.600867 0.495349 0 + 0.823684 0.354226 0 + 0.451958 0.489898 0 + 0.146491 0.45189 0 + 0.853682 0.434101 0 + 0.897569 0.425138 0 + 0.908408 0.16182 0 + 0.0822207 0.414664 0 + 0.134811 0.252766 0 + 0.29907 0.492349 0 + 0.145565 0.430737 0 + 0.165922 0.516233 0 + 0.111464 0.387726 0 + 0.216762 0.477212 0 + 0.211037 0.416817 0 + 0.0998864 0.531841 0 + 0.92625 0.519408 0 + 0.929147 0.468654 0 + 0.890526 0.543158 0 + 0.191105 0.545215 0 + 0.256068 0.522703 0 + 0.80975 0.464209 0 + 0.842501 0.49502 0 + 0.873777 0.55628 0 + 0.317734 0.495297 0 + 0.909592 0.528136 0 + 0.402162 0.456775 0 + 0.516714 0.498431 0 + 0.197692 0.345751 0 + 0.775513 0.564788 0 + 0.146151 0.412306 0 + 0.430028 0.463112 0 + 0.848598 0.421822 0 + 0.090052 0.505179 0 + 0.0395398 0.483325 0 + 0.030164 0.503012 0 + 0.999501 0.529407 0 + 0.588618 0.522875 0 + 0.931515 0.532003 0 + 0.903396 0.564134 0 + 0.954618 0.562687 0 + 0.644042 0.781765 0 + 0.576515 0.78253 0 + 0.445802 0.78298 0 + 0.260663 0.784558 0 + 0.231855 0.867918 0 + 0.426696 0.893063 0 + 0.515301 0.76049 0 + 0.350197 0.906239 0 + 0.609256 0.663933 0 + 0.702025 0.888896 0 + 0.659542 0.916082 0 + 0.306497 0.672324 0 + 0.328943 0.551994 0 + 0.342715 0.774704 0 + 0.425819 0.816736 0 + 0.515663 0.815521 0 + 0.482896 0.916835 0 + 0.559395 0.930011 0 + 0.594953 0.912668 0 + 0.396905 0.484201 0 + 0.470571 0.508659 0 + 0.855957 0.826973 0 + 0.778155 0.808746 0 + 0.130957 0.850403 0 + 0.430357 0.840565 0 + 0.630397 0.871905 0 + 0.600163 0.869945 0 + 0.809165 0.848474 0 + 0.731559 0.838126 0 + 0.897144 0.881361 0 + 0.110469 0.883347 0 + 0.640195 0.886045 0 + 0.84526 0.881921 0 + 0.137351 0.931589 0 + 0.637274 0.932007 0 + 0.833049 0.930635 0 + 0.854119 0.963997 0 + 0.540667 0.890342 0 + 0.498389 0.836702 0 + 0.470376 0.872608 0 + 0.520344 0.864226 0 + 0.551264 0.906147 0 + 0.607402 0.889312 0 + 0.511208 0.888413 0 + 0.545241 0.861787 0 + 0.535215 0.927837 0 + 0.470496 0.933193 0 + 0.542304 0.923713 0 + 0.503139 0.926411 0 + 0.504091 0.967888 0 + 0.579275 0.963471 0 + 0.521553 0.966934 0 + 0.516972 0.999501 0 + 0.261832 0.620746 0 + 0.318818 0.272079 0 + 0.206921 0.589859 0 + 0.302015 0.226981 0 + 0.601372 0.235816 0 + 0.701713 0.178332 0 + 0.724531 0.26752 0 + 0.17869 0.272523 0 + 0.263341 0.242773 0 + 0.167799 0.17263 0 + 0.740454 0.096987 0 + 0.274951 0.0636836 0 + 0.784977 0.222465 0 + 0.260385 0.234147 0 + 0.213215 0.18048 0 + 0.304455 0.22386 0 + 0.628107 0.211726 0 + 0.603506 0.176736 0 + 0.734997 0.249814 0 + 0.88219 0.0828685 0 + 0.689864 0.0608659 0 + 0.341605 0.0722008 0 + 0.707823 0.196699 0 + 0.74875 0.215544 0 + 0.746843 0.258208 0 + 0.198008 0.731588 0 + 0.868836 0.312927 0 + 0.233432 0.87106 0 + 0.795552 0.302644 0 + 0.18211 0.811091 0 + 0.381889 0.128947 0 + 0.212751 0.408203 0 + 0.244803 0.0717731 0 + 0.231506 0.130382 0 + 0.730287 0.147614 0 + 0.695564 0.139801 0 + 0.324781 0.382809 0 + 0.148625 0.196368 0 + 0.764583 0.0858095 0 + 0.287932 0.125999 0 + 0.734874 0.870759 0 + 0.743088 0.0628711 0 + 0.699254 0.000499517 0 + 0.705704 0.0597169 0 + 0.303945 0.0837318 0 + 0.336432 0.0739141 0 + 0.640051 0.778101 0 + 0.185137 0.0484276 0 + 0.849365 0.724273 0 + 0.741735 0.574407 0 + 0.7844 0.354486 0 + 0.707717 0.34842 0 + 0.25499 0.35568 0 + 0.622297 0.332303 0 + 0.372673 0.309462 0 + 0.356704 0.27999 0 + 0.273225 0.331525 0 + 0.755825 0.379912 0 + 0.645679 0.358048 0 + 0.206317 0.396945 0 + 0.432004 0.228416 0 + 0.738014 0.142416 0 + 0.243727 0.295796 0 + 0.778731 0.305014 0 + 0.731013 0.288706 0 + 0.818108 0.313441 0 + 0.402921 0.275377 0 + 0.24488 0.307429 0 + 0.376723 0.22919 0 + 0.257343 0.12616 0 + 0.271574 0.348769 0 + 0.687455 0.13549 0 + 0.34221 0.250604 0 + 0.199962 0.261929 0 + 0.200466 0.331784 0 + 0.444804 0.319036 0 + 0.403374 0.389542 0 + 0.184637 0.290941 0 + 0.465889 0.363777 0 + 0.160015 0.300844 0 + 0.298023 0.380813 0 + 0.203951 0.412074 0 + 0.357406 0.477459 0 + 0.363585 0.412074 0 + 0.376755 0.663403 0 + 0.583921 0.584154 0 + 0.36368 0.380813 0 + 0.587187 0.406603 0 + 0.504272 0.739322 0 + 0.424775 0.749695 0 + 0.641948 0.481771 0 + 0.336597 0.499907 0 + 0.179167 0.379604 0 + 0.586655 0.820833 0 + 0.495732 0.820832 0 + 0.58377 0.500057 0 + 0.424775 0.500057 0 + 0.699219 0.481771 0 + 0.663403 0.499907 0 + 0.651135 0.477459 0 + 0.58377 0.524049 0 + 0.63179 0.663403 0 + 0.64495 0.412074 0 + 0.407544 0.584154 0 + 0.644855 0.380813 0 + 0.495732 0.402052 0 + 0.40427 0.40702 0 + 0.58377 0.749695 0 + 0.35505 0.412074 0 + 0.701977 0.380813 0 + 0.40481 0.379604 0 + 0.820832 0.379604 0 + 0.475951 0.500057 0 + 0.495732 0.344715 0 + 0.504268 0.358083 0 + 0.473092 0.58195 0 + 0.388423 0.580533 0 + 0.803753 0.728038 0 + 0.644029 0.743566 0 + 0.711221 0.644029 0 + 0.601515 0.747568 0 + 0.403828 0.744839 0 + 0.355167 0.649636 0 + 0.554824 0.791661 0 + 0.526535 0.710554 0 + 0.478151 0.619928 0 + 0.673816 0.573565 0 + 0.83447 0.632015 0 + 0.487528 0.564056 0 + 0.65375 0.529459 0 + 0.514251 0.570837 0 + 0.737487 0.68476 0 + 0.408965 0.513863 0 + 0.503013 0.495186 0 + 0.708926 0.803753 0 + 0.237955 0.686328 0 + 0.387393 0.575928 0 + 0.470903 0.584235 0 + 0.323363 0.573565 0 + 0.690269 0.478151 0 + 0.422474 0.464202 0 + 0.691903 0.529459 0 + 0.665327 0.542817 0 + 0.308097 0.529459 0 + 0.355167 0.48598 0 + 0.643674 0.570837 0 + 0.665472 0.542817 0 + 0.737487 0.588049 0 + 0.334528 0.542817 0 + 0.65754 0.487528 0 + 0.509913 0.427696 0 + 0.577884 0.655312 0 + 0.488778 0.785425 0 + 0.55768 0.596687 0 + 0.161458 0.757679 0 + 0.319588 0.774565 0 + 0.515703 0.757181 0 + 0.386431 0.680412 0 + 0.634127 0.512605 0 + 0.350445 0.652361 0 + 0.438949 0.739962 0 + 0.291436 0.603171 0 + 0.132682 0.660003 0 + 0.364307 0.520376 0 + 0.366441 0.708564 0 + 0.313913 0.732208 0 + 0.344688 0.479035 0 + 0.593947 0.534584 0 + 0.406053 0.507417 0 + 0.398362 0.838542 0 + 0.677547 0.728284 0 + 0.55711 0.592126 0 + 0.633559 0.603171 0 + 0.732208 0.628476 0 + 0.516218 0.652361 0 + 0.30632 0.56348 0 + 0.301153 0.571377 0 + 0.456471 0.595783 0 + 0.664553 0.56348 0 + 0.382306 0.595783 0 + 0.267792 0.628476 0 + 0.633759 0.571377 0 + 0.364307 0.592043 0 + 0.47399 0.775537 0 + 0.544158 0.728184 0 + 0.498522 0.813482 0 + 0.44429 0.816379 0 + 0.501478 0.813482 0 + 0.563959 0.839154 0 + 0.455842 0.710519 0 + 0.370591 0.674369 0 + 0.445729 0.573013 0 + 0.629409 0.763116 0 + 0.618608 0.803885 0 + 0.381392 0.803885 0 + 0.350137 0.443264 0 + 0.416808 0.465942 0 + 0.495521 0.440161 0 + 0.421661 0.440161 0 + 0.297421 0.397819 0 + 0.347603 0.344536 0 + 0.49299 0.344536 0 + 0.350062 0.355631 0 + 0.366625 0.296426 0 + 0.650114 0.421662 0 + 0.723653 0.36445 0 + 0.752548 0.401137 0 + 0.682904 0.284166 0 + 0.738631 0.348755 0 + 0.275439 0.296426 0 + 0.242537 0.357338 0 + 0.632203 0.284166 0 + 0.724561 0.296426 0 + 0.583192 0.465942 0 + 0.667592 0.443264 0 + 0.449981 0.401137 0 + 0.384036 0.861787 0 + 0.3201 0.850417 0 + 0.215237 0.3201 0 + 0.229577 0.384036 0 + 0.160086 0.32463 0 + 0.160086 0.843299 0 + 0.239511 0.821793 0 + 0.516027 0.783652 0 + 0.51539 0.820858 0 + 0.557562 0.791384 0 + 0.22755 0.746749 0 + 0.433307 0.746749 0 + 0.823927 0.820858 0 + 0.559468 0.824746 0 + 0.48461 0.820858 0 + 0.580633 0.806468 0 + 0.176073 0.820858 0 + 0.599971 0.757599 0 + 0.851157 0.719265 0 + 0.590822 0.746581 0 + 0.545495 0.693649 0 + 0.476225 0.788477 0 + 0.86035 0.772375 0 + 0.798108 0.746581 0 + 0.822471 0.803312 0 + 0.898989 0.789847 0 + 0.0535268 0.559385 0 + 0.118763 0.439185 0 + 0.406861 0.74647 0 + 0.0853276 0.673553 0 + 0.204546 0.693649 0 + 0.0558746 0.707324 0 + 0.118763 0.779257 0 + 0.0535268 0.77855 0 + 0.511762 0.707324 0 + 0.593647 0.762133 0 + 0.94869 0.769666 0 + 0.86035 0.642243 0 + 0.870803 0.474721 0 + 0.92269 0.683106 0 + 0.877157 0.687271 0 + 0.0773097 0.683106 0 + 0.872198 0.442241 0 + 0.917726 0.54604 0 + 0.857488 0.556442 0 + 0.857488 0.676588 0 + 0.555874 0.76067 0 + 0.486963 0.713545 0 + 0.615191 0.710986 0 + 0.478473 0.782448 0 + 0.384111 0.723117 0 + 0.45396 0.701766 0 + 0.556442 0.676588 0 + 0.424673 0.683106 0 + 0.549484 0.741316 0 + 0.0428008 0.525863 0 + 0.0522484 0.823654 0 + 0.000499487 0.827592 0 + 0.0350417 0.75276 0 + 0.897083 0.779687 0 + 0.978154 0.765403 0 + 0.970068 0.790086 0 + 0.897083 0.676019 0 + 0.978154 0.62773 0 + 0.368409 0.784751 0 + 0.292979 0.790086 0 + 0.860253 0.824746 0 + 0.0522484 0.566353 0 + 0.321902 0.732244 0 + 0.359473 0.596568 0 + 0.384779 0.737748 0 + 0.687389 0.710483 0 + 0.802451 0.707135 0 + 0.284014 0.632998 0 + 0.235076 0.738864 0 + 0.187636 0.669902 0 + 0.361207 0.70142 0 + 0.431225 0.710483 0 + 0.759479 0.784094 0 + 0.835165 0.73728 0 + 0.363236 0.664875 0 + 0.451697 0.67994 0 + 0.32198 0.695503 0 + 0.429231 0.717526 0 + 0.610753 0.707135 0 + 0.869242 0.664875 0 + 0.876749 0.548303 0 + 0.100253 0.717526 0 + 0.284014 0.785501 0 + 0.164835 0.73728 0 + 0.100253 0.570769 0 + 0.407588 0.59786 0 + 0.235417 0.761893 0 + 0.715986 0.785501 0 + 0.206625 0.735452 0 + 0.267756 0.792841 0 + 0.737748 0.776873 0 + 0.59786 0.750047 0 + 0.570575 0.735684 0 + 0.418513 0.724588 0 + 0.479957 0.647073 0 + 0.349954 0.675439 0 + 0.37842 0.555805 0 + 0.448299 0.498704 0 + 0.647073 0.415283 0 + 0.498704 0.408345 0 + 0.652843 0.358721 0 + 0.292479 0.231193 0 + 0.330269 0.337543 0 + 0.228254 0.265646 0 + 0.283525 0.333777 0 + 0.344147 0.206279 0 + 0.745816 0.318923 0 + 0.650046 0.438761 0 + 0.655853 0.611093 0 + 0.698304 0.501367 0 + 0.771746 0.596925 0 + 0.72516 0.707521 0 + 0.511713 0.358721 0 + 0.37842 0.437182 0 + 0.775283 0.337543 0 + 0.349954 0.438761 0 + 0.850502 0.720832 0 + 0.754771 0.774952 0 + 0.640352 0.752672 0 + 0.679318 0.781274 0 + 0.682948 0.701741 0 + 0.800352 0.662963 0 + 0.818259 0.746556 0 + 0.68643 0.776299 0 + 0.733032 0.627499 0 + 0.715955 0.698406 0 + 0.605873 0.640155 0 + 0.746556 0.733715 0 + 0.627789 0.774952 0 + 0.679318 0.640262 0 + 0.569117 0.68464 0 + 0.849212 0.640155 0 + 0.31357 0.758977 0 + 0.339972 0.69741 0 + 0.194348 0.627499 0 + 0.305076 0.636015 0 + 0.519267 0.701741 0 + 0.231155 0.636015 0 + 0.7918 0.790137 0 + 0.731868 0.762363 0 + 0.780115 0.75626 0 + 0.709727 0.790137 0 + 0.713953 0.746677 0 + 0.908073 0.732085 0 + 0.833857 0.728429 0 + 0.847447 0.706363 0 + 0.0919271 0.66066 0 + 0.150441 0.67454 0 + 0.846879 0.701547 0 + 0.810994 0.710161 0 + 0.785975 0.681816 0 + 0.153121 0.480539 0 + 0.169196 0.542493 0 + 0.545187 0.753199 0 + 0.445155 0.750318 0 + 0.488813 0.72109 0 + 0.709672 0.753199 0 + 0.740565 0.728577 0 + 0.779363 0.646177 0 + 0.754997 0.678992 0 + 0.694434 0.669294 0 + 0.837672 0.646177 0 + 0.786757 0.651803 0 + 0.281012 0.686291 0 + 0.285695 0.712074 0 + 0.242492 0.688911 0 + 0.281012 0.862415 0 + 0.299719 0.784861 0 + 0.999501 0.459634 0 + 0.816963 0.461217 0 + 0.868794 0.331922 0 + 0.750361 0.40314 0 + 0.0637008 0.451988 0 + 0.180086 0.342111 0 + 0.275264 0.406709 0 + 0.0717136 0.465244 0 + 0.00663 0.451988 0 + 0.944392 0.342111 0 + 0.16712 0.331922 0 + 0.149485 0.461217 0 + 0.852774 0.459634 0 + 0.99337 0.0637008 0 + 0.276107 0.695246 0 + 0.504134 0.48675 0 + 0.495394 0.520329 0 + 0.422215 0.760824 0 + 0.615782 0.850726 0 + 0.636532 0.445053 0 + 0.496892 0.437484 0 + 0.363468 0.906367 0 + 0.297578 0.449224 0 + 0.289001 0.397054 0 + 0.366991 0.456069 0 + 0.431366 0.465884 0 + 0.504134 0.494181 0 + 0.421861 0.496281 0 + 0.586453 0.510283 0 + 0.731571 0.695923 0 + 0.413946 0.493396 0 + 0.358351 0.441967 0 + 0.641649 0.907468 0 + 0.646957 0.430296 0 + 0.576177 0.464202 0 + 0.646957 0.450001 0 + 0.639631 0.453434 0 + 0.357168 0.451047 0 + 0.59797 0.426379 0 + 0.674937 0.435133 0 + 0.756325 0.710999 0 + 0.239016 0.711002 0 + 0.321039 0.435135 0 + 0.397152 0.42638 0 + 0.643188 0.910674 0 + 0.35203 0.910676 0 + 0.497714 0.9995 0 + 0.397152 0.399365 0 + 0.423823 0.464202 0 + 0.568634 0.465884 0 + 0.59797 0.401428 0 + 0.678961 0.374962 0 + 0.711002 0.391739 0 + 0.473435 0.453434 0 + 0.70241 0.445244 0 + 0.378692 0.439876 0 + 0.302324 0.445244 0 + 0.49685 0.439828 0 + 0.691125 0.702422 0 + 0.633009 0.473283 0 + 0.642832 0.42854 0 + 0.325063 0.378599 0 + 0.315877 0.82804 0 + 0.432017 0.710672 0 + 0.315877 0.722725 0 + 0.392965 0.558086 0 + 0.432017 0.797767 0 + 0.46122 0.73884 0 + 0.4815 0.757855 0 + 0.270666 0.785043 0 + 0.270666 0.601144 0 + 0.322983 0.587761 0 + 0.284128 0.801216 0 + 0.567983 0.797767 0 + 0.531358 0.722371 0 + 0.744278 0.721443 0 + 0.768582 0.777289 0 + 0.684123 0.82804 0 + 0.365839 0.851152 0 + 0.16274 0.788692 0 + 0.307841 0.801216 0 + 0.306959 0.83726 0 + 0.231418 0.726811 0 + 0.581181 0.668511 0 + 0.670525 0.658997 0 + 0.329475 0.658997 0 + 0.418819 0.668511 0 + 0.437502 0.810365 0 + 0.400911 0.79563 0 + 0.438499 0.764779 0 + 0.188438 0.810365 0 + 0.199275 0.779778 0 + 0.305373 0.850451 0 + 0.305462 0.81181 0 + 0.342359 0.807278 0 + 0.167649 0.850451 0 + 0.20027 0.795959 0 + 0.285373 0.835351 0 + 0.301293 0.783884 0 + 0.323389 0.804842 0 + 0.375658 0.835351 0 + 0.333835 0.804466 0 + 0.521321 0.794976 0 + 0.548562 0.751385 0 + 0.613653 0.77607 0 + 0.413579 0.794976 0 + 0.376688 0.786037 0 + 0.736257 0.740294 0 + 0.71883 0.768237 0 + 0.687629 0.748006 0 + 0.123485 0.740294 0 + 0.217319 0.729247 0 + 0.618501 0.682079 0 + 0.646167 0.721111 0 + 0.595318 0.707076 0 + 0.118729 0.682079 0 + 0.201976 0.683579 0 + 0.589364 0.789105 0 + 0.610868 0.810236 0 + 0.467198 0.802419 0 + 0.363729 0.828365 0 + 0.387921 0.773875 0 + 0.609083 0.818027 0 + 0.678317 0.81905 0 + 0.354357 0.556032 0 + 0.344083 0.609083 0 + 0.329541 0.564158 0 + 0.669282 0.839826 0 + 0.642498 0.845786 0 + 0.67212 0.81905 0 + 0.621367 0.845786 0 + 0.695664 0.84926 0 + 0.671095 0.864811 0 + 0.417616 0.611299 0 + 0.63657 0.736807 0 + 0.671095 0.579516 0 + 0.695664 0.667921 0 + 0.651818 0.853592 0 + 0.736807 0.861938 0 + 0.58516 0.879461 0 + 0.330718 0.679154 0 + 0.304336 0.667921 0 + 0.351404 0.764978 0 + 0.590175 0.794739 0 + 0.532973 0.771929 0 + 0.348153 0.544279 0 + 0.340308 0.590175 0 + 0.323411 0.589364 0 + 0.648596 0.764978 0 + 0.308177 0.719364 0 + 0.299713 0.588239 0 + 0.374384 0.719364 0 + 0.388701 0.782237 0 + 0.231151 0.761659 0 + 0.254783 0.828365 0 + 0.539632 0.793323 0 + 0.364779 0.588239 0 + 0.628068 0.801863 0 + 0.651847 0.804726 0 + 0.619576 0.82337 0 + 0.466807 0.855157 0 + 0.347563 0.819155 0 + 0.468596 0.801083 0 + 0.618679 0.827819 0 + 0.650295 0.823721 0 + 0.645643 0.813705 0 + 0.670459 0.81842 0 + 0.53085 0.652437 0 + 0.655864 0.547822 0 + 0.549999 0.556667 0 + 0.606214 0.481793 0 + 0.547822 0.868816 0 + 0.623886 0.804154 0 + 0.506923 0.82337 0 + 0.531597 0.827819 0 + 0.504151 0.785319 0 + 0.428764 0.495849 0 + 0.415149 0.680677 0 + 0.499405 0.722244 0 + 0.509492 0.79275 0 + 0.465623 0.855157 0 + 0.368288 0.910635 0 + 0.124997 0.855678 0 + 0.386922 0.830306 0 + 0.272374 0.798996 0 + 0.57156 0.932055 0 + 0.679515 0.814863 0 + 0.796169 0.872092 0 + 0.564886 0.846119 0 + 0.241813 0.925827 0 + 0.127243 0.203831 0 + 0.154501 0.814863 0 + 0.226264 0.798996 0 + 0.744287 0.386922 0 + 0.811622 0.814945 0 + 0.845499 0.814863 0 + 0.306918 0.910635 0 + 0.831727 0.932055 0 + 0.306918 0.368288 0 + 0.817689 0.706528 0 + 0.767571 0.734855 0 + 0.336005 0.722987 0 + 0.30471 0.737038 0 + 0.289891 0.695699 0 + 0.809507 0.679249 0 + 0.638715 0.706528 0 + 0.711821 0.640644 0 + 0.750596 0.671728 0 + 0.735566 0.55172 0 + 0.436253 0.732463 0 + 0.286211 0.601707 0 + 0.264433 0.55172 0 + 0.713789 0.601707 0 + 0.223937 0.466488 0 + 0.223351 0.560384 0 + 0.170757 0.574684 0 + 0.168511 0.459174 0 + 0.181295 0.621597 0 + 0.170757 0.519079 0 + 0.223351 0.514424 0 + 0.533512 0.518918 0 + 0.831489 0.527622 0 + 0.828234 0.578439 0 + 0.453783 0.704591 0 + 0.696658 0.563747 0 + 0.767571 0.672782 0 + 0.663995 0.677521 0 + 0.690137 0.675323 0 + 0.166679 0.534467 0 + 0.184985 0.558687 0 + 0.243107 0.51322 0 + 0.201204 0.592586 0 + 0.243107 0.51334 0 + 0.886612 0.381475 0 + 0.833321 0.526544 0 + 0.525558 0.545354 0 + 0.454008 0.543168 0 + 0.645774 0.528602 0 + 0.784841 0.545992 0 + 0.101581 0.489898 0 + 0.530129 0.460719 0 + 0.908408 0.458686 0 + 0.174372 0.425138 0 + 0.251783 0.414664 0 + 0.16182 0.458686 0 + 0.102431 0.174372 0 + 0.0822207 0.251783 0 + 0.865189 0.39634 0 + 0.834078 0.516233 0 + 0.387726 0.459173 0 + 0.747234 0.39634 0 + 0.82287 0.434101 0 + 0.700379 0.477212 0 + 0.583183 0.441555 0 + 0.783238 0.477212 0 + 0.897358 0.29907 0 + 0.834078 0.288637 0 + 0.897358 0.492349 0 + 0.900114 0.531841 0 + 0.888536 0.459173 0 + 0.96046 0.481599 0 + 0.145565 0.434751 0 + 0.111464 0.459173 0 + 0.0708535 0.475665 0 + 0.211037 0.441555 0 + 0.109474 0.452142 0 + 0.808895 0.545215 0 + 0.743932 0.522703 0 + 0.877327 0.495297 0 + 0.802308 0.455288 0 + 0.435212 0.461053 0 + 0.654249 0.455288 0 + 0.585038 0.522703 0 + 0.170061 0.569972 0 + 0.082436 0.516714 0 + 0.124454 0.402162 0 + 0.412306 0.440631 0 + 0.569972 0.463112 0 + 0.224487 0.564788 0 + 0.151402 0.474977 0 + 0.224487 0.461053 0 + 0.909948 0.533269 0 + 0.829939 0.569972 0 + 0.126223 0.55628 0 + 0.483325 0.481599 0 + 0.36047 0.519408 0 + 0.969836 0.503012 0 + 0.999501 0.48601 0 + 0.000499517 0.48601 0 + 0.109474 0.543158 0 + 0.170061 0.463112 0 + 0.075709 0.522875 0 + 0.082436 0.498431 0 + 0.456464 0.528136 0 + 0.532272 0.532003 0 + 0.485681 0.564134 0 + 0.0966044 0.564134 0 + 0.0453822 0.562687 0 + 0.411382 0.522875 0 + 0.466731 0.505179 0 + 0.514319 0.564134 0 + 0.573909 0.562687 0 + 0.969836 0.472396 0 + 0.900114 0.36793 0 + 0.92625 0.36047 0 + 0.000499517 0.529407 0 + 0.355958 0.756349 0 + 0.423485 0.618112 0 + 0.445802 0.858937 0 + 0.529377 0.739337 0 + 0.529377 0.784558 0 + 0.516205 0.867918 0 + 0.484699 0.921446 0 + 0.390744 0.940609 0 + 0.751477 0.906239 0 + 0.663933 0.940609 0 + 0.593997 0.916082 0 + 0.672324 0.849915 0 + 0.551994 0.860954 0 + 0.342715 0.847035 0 + 0.355958 0.781765 0 + 0.314639 0.888896 0 + 0.774704 0.847035 0 + 0.657285 0.847035 0 + 0.574181 0.591803 0 + 0.484337 0.489215 0 + 0.408197 0.816736 0 + 0.356755 0.916835 0 + 0.23951 0.921446 0 + 0.559395 0.563354 0 + 0.482896 0.643245 0 + 0.594953 0.513902 0 + 0.659542 0.593997 0 + 0.603095 0.873686 0 + 0.671057 0.860954 0 + 0.529429 0.880653 0 + 0.356066 0.826973 0 + 0.395291 0.808746 0 + 0.388772 0.850403 0 + 0.192738 0.840565 0 + 0.177749 0.871905 0 + 0.369603 0.871905 0 + 0.399837 0.869945 0 + 0.663103 0.848474 0 + 0.635228 0.838126 0 + 0.332373 0.881361 0 + 0.366009 0.883347 0 + 0.159598 0.886045 0 + 0.672344 0.881921 0 + 0.366038 0.931589 0 + 0.171723 0.932007 0 + 0.659605 0.930635 0 + 0.348 0.963997 0 + 0.145881 0.963997 0 + 0.652 0.963997 0 + 0.447023 0.890342 0 + 0.443077 0.836702 0 + 0.505188 0.872608 0 + 0.379986 0.864226 0 + 0.499834 0.906147 0 + 0.473493 0.889312 0 + 0.493099 0.888413 0 + 0.544311 0.861787 0 + 0.462555 0.927837 0 + 0.513049 0.933193 0 + 0.503065 0.923713 0 + 0.493174 0.926411 0 + 0.424614 0.967888 0 + 0.482391 0.963471 0 + 0.545786 0.966934 0 + 0.42685 0.999501 0 + 0.483028 0.999501 0 + 0.57315 0.999501 0 + 0.195854 0.681182 0 + 0.261832 0.266932 0 + 0.206921 0.258508 0 + 0.464207 0.226981 0 + 0.514753 0.178332 0 + 0.302015 0.464207 0 + 0.348533 0.601372 0 + 0.275469 0.714058 0 + 0.681182 0.272079 0 + 0.549926 0.272523 0 + 0.589859 0.258508 0 + 0.17869 0.549926 0 + 0.263341 0.435203 0 + 0.136712 0.096987 0 + 0.267143 0.0636836 0 + 0.357361 0.222465 0 + 0.786785 0.18048 0 + 0.836508 0.22386 0 + 0.298287 0.178332 0 + 0.371893 0.211726 0 + 0.348533 0.235816 0 + 0.745189 0.17263 0 + 0.673686 0.0828685 0 + 0.740454 0.863288 0 + 0.689864 0.795411 0 + 0.725049 0.732857 0 + 0.658395 0.754214 0 + 0.673686 0.88219 0 + 0.292177 0.196699 0 + 0.396494 0.176736 0 + 0.650015 0.211726 0 + 0.714058 0.26752 0 + 0.801992 0.256923 0 + 0.450074 0.272523 0 + 0.710184 0.176736 0 + 0.754214 0.0722008 0 + 0.774171 0.739615 0 + 0.784977 0.642639 0 + 0.836508 0.695545 0 + 0.215023 0.222465 0 + 0.13083 0.215544 0 + 0.774171 0.234147 0 + 0.253157 0.759678 0 + 0.804146 0.272079 0 + 0.441412 0.18048 0 + 0.195854 0.272079 0 + 0.275469 0.26752 0 + 0.131164 0.312927 0 + 0.204448 0.302644 0 + 0.265003 0.771374 0 + 0.734997 0.771374 0 + 0.766568 0.87106 0 + 0.81789 0.811091 0 + 0.225829 0.234147 0 + 0.198008 0.256923 0 + 0.18211 0.234832 0 + 0.241917 0.312927 0 + 0.268412 0.256923 0 + 0.201103 0.128947 0 + 0.212751 0.0707183 0 + 0.798897 0.381889 0 + 0.768494 0.421462 0 + 0.730287 0.319562 0 + 0.695564 0.329066 0 + 0.304436 0.139801 0 + 0.324781 0.080134 0 + 0.670934 0.139801 0 + 0.617191 0.080134 0 + 0.874001 0.0859991 0 + 0.244803 0.434121 0 + 0.235417 0.0293322 0 + 0.764583 0.0293322 0 + 0.851375 0.196368 0 + 0.196368 0.0736696 0 + 0.408203 0.0707183 0 + 0.712068 0.0859991 0 + 0.734874 0.00289124 0 + 0.294296 0.8873 0 + 0.256912 0.870189 0 + 0.303945 0.775721 0 + 0.696055 0.0837318 0 + 0.663568 0.0739141 0 + 0.8873 0.0597169 0 + 0.759519 0.0739141 0 + 0.778101 0.00993499 0 + 0.359949 0.00993499 0 + 0.258265 0.0385194 0 + 0.640051 0.00993499 0 + 0.699254 0.873773 0 + 0.814863 0.521972 0 + 0.185137 0.521972 0 + 0.150635 0.724273 0 + 0.849365 0.0259016 0 + 0.7844 0.354079 0 + 0.74501 0.278419 0 + 0.622297 0.219742 0 + 0.780258 0.332303 0 + 0.631864 0.309462 0 + 0.783455 0.27999 0 + 0.627327 0.368136 0 + 0.292283 0.349015 0 + 0.726775 0.432202 0 + 0.244175 0.379912 0 + 0.2156 0.354486 0 + 0.377703 0.332303 0 + 0.354321 0.358048 0 + 0.793683 0.15336 0 + 0.785725 0.228416 0 + 0.295796 0.312527 0 + 0.38972 0.305014 0 + 0.268987 0.193177 0 + 0.181892 0.302536 0 + 0.597079 0.275377 0 + 0.376189 0.275377 0 + 0.214275 0.228416 0 + 0.206317 0.15336 0 + 0.348769 0.123426 0 + 0.396945 0.15336 0 + 0.276976 0.142416 0 + 0.728426 0.123426 0 + 0.312545 0.347778 0 + 0.257343 0.447005 0 + 0.561395 0.22919 0 + 0.749396 0.292839 0 + 0.382791 0.331784 0 + 0.238706 0.379912 0 + 0.302536 0.313441 0 + 0.354079 0.354486 0 + 0.312545 0.13549 0 + 0.623277 0.22919 0 + 0.221269 0.38972 0 + 0.643296 0.27999 0 + 0.723024 0.142416 0 + 0.756273 0.312527 0 + 0.65779 0.292839 0 + 0.494433 0.261929 0 + 0.45538 0.307429 0 + 0.238727 0.319036 0 + 0.181892 0.313441 0 + 0.221269 0.305014 0 + 0.250604 0.292839 0 + 0.216544 0.27999 0 + 0.34221 0.292839 0 + 0.268987 0.288706 0 + 0.864609 0.403374 0 + 0.809894 0.465889 0 + 0.190106 0.363777 0 + 0.24488 0.45538 0 + 0.184637 0.507461 0 + 0.160015 0.416028 0 + 0.799534 0.331784 0 + 0.839985 0.300844 0 + 0.864609 0.389542 0 +endnode +endmodelgeom plc_statdwl + +#MAXANIM ASCII +newanim 1hcloseh plc_statdwl + length 1 + transtime 0.3 + event 0.5 hit + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 1hcloseh plc_statdwl + +#MAXANIM ASCII +newanim 1hclosel plc_statdwl + length 1 + transtime 0.31 + event 0.4 blur_start + event 0.5 hit + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 1hclosel plc_statdwl + +#MAXANIM ASCII +newanim 1hparryl plc_statdwl + length 1 + transtime 0.3 + event 0.2 snd_footstep + event 0.3 blur_start + event 0.4 blur_end + event 0.866667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 1hparryl plc_statdwl + +#MAXANIM ASCII +newanim 1hparryr plc_statdwl + length 1 + transtime 0.3 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 1hparryr plc_statdwl + +#MAXANIM ASCII +newanim 1hreach plc_statdwl + length 1 + transtime 0.3 + event 0.366667 blur_start + event 0.4 snd_footstep + event 0.5 hit + event 0.666667 snd_footstep + event 0.866667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 1hreach plc_statdwl + +#MAXANIM ASCII +newanim 1hreadyl plc_statdwl + length 1 + transtime 0.5 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 1hreadyl plc_statdwl + +#MAXANIM ASCII +newanim 1hreadyr plc_statdwl + length 1 + transtime 0.5 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 1hreadyr plc_statdwl + +#MAXANIM ASCII +newanim 1hslashl plc_statdwl + length 1 + transtime 0.25 + event 0.3 snd_footstep + event 0.4 blur_start + event 0.5 hit + event 0.566667 blur_end + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 1hslashl plc_statdwl + +#MAXANIM ASCII +newanim 1hslasho plc_statdwl + length 1 + transtime 0.4 + event 0.4 blur_start + event 0.5 hit + event 0.566667 blur_end + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 1hslasho plc_statdwl + +#MAXANIM ASCII +newanim 1hslashr plc_statdwl + length 1 + transtime 0.25 + event 0.4 blur_start + event 0.5 hit + event 0.6 blur_end + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 1hslashr plc_statdwl + +#MAXANIM ASCII +newanim 1hstab plc_statdwl + length 1 + transtime 0.3 + event 0.5 hit + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 1hstab plc_statdwl + +#MAXANIM ASCII +newanim 2hslasho plc_statdwl + length 1 + transtime 0.4 + event 0.4 blur_start + event 0.5 hit + event 0.566667 blur_end + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 2hslasho plc_statdwl + +#MAXANIM ASCII +newanim 2wcloseh plc_statdwl + length 1 + transtime 0.3 + event 0.466667 blur_start + event 0.5 hit + event 0.566667 blur_end + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 2wcloseh plc_statdwl + +#MAXANIM ASCII +newanim 2wclosel plc_statdwl + length 1 + transtime 0.3 + event 0.5 hit + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 2wclosel plc_statdwl + +#MAXANIM ASCII +newanim 2wparryl plc_statdwl + length 1 + transtime 0.29 + event 0.2 snd_footstep + event 0.3 blur_start + event 0.4 blur_end + event 0.866667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node trimesh dwstat + parent plc_statdwl + orientationkey + 0.133333 -0.459822 0.210241 -0.862764 0.499219 + 0.266667 -0.50508 0.0391208 -0.862185 0.4873 + endlist + endnode +doneanim 2wparryl plc_statdwl + +#MAXANIM ASCII +newanim 2wparryr plc_statdwl + length 1 + transtime 0.3 + event 0.366667 blur_start + event 0.4 blur_end + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 2wparryr plc_statdwl + +#MAXANIM ASCII +newanim 2wreach plc_statdwl + length 1 + transtime 0.3 + event 0.4 blur_start + event 0.5 blur_end + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 2wreach plc_statdwl + +#MAXANIM ASCII +newanim 2wreadyl plc_statdwl + length 1 + transtime 0.5 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 2wreadyl plc_statdwl + +#MAXANIM ASCII +newanim 2wreadyr plc_statdwl + length 1 + transtime 0.5 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 2wreadyr plc_statdwl + +#MAXANIM ASCII +newanim 2wslashl plc_statdwl + length 1 + transtime 0.25 + event 0.4 snd_footstep + event 0.5 hit + event 0.6 blur_end + event 0.866667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 2wslashl plc_statdwl + +#MAXANIM ASCII +newanim 2wslasho plc_statdwl + length 1 + transtime 0.4 + event 0.4 blur_start + event 0.5 hit + event 0.566667 blur_end + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 2wslasho plc_statdwl + +#MAXANIM ASCII +newanim 2wslashr plc_statdwl + length 1 + transtime 0.25 + event 0.4 blur_start + event 0.5 hit + event 0.566667 blur_end + event 0.866667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 2wslashr plc_statdwl + +#MAXANIM ASCII +newanim 2wstab plc_statdwl + length 1 + transtime 0.3 + event 0.4 snd_footstep + event 0.5 hit + event 0.666667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim 2wstab plc_statdwl + +#MAXANIM ASCII +newanim bowrdy plc_statdwl + length 1 + transtime 0.5 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim bowrdy plc_statdwl + +#MAXANIM ASCII +newanim bowshot plc_statdwl + length 1 + transtime 0.3 + event 0.1 draw_arrow + event 0.5 hit + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim bowshot plc_statdwl + +#MAXANIM ASCII +newanim cturnr plc_statdwl + length 0.5 + transtime 0.3 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim cturnr plc_statdwl + +#MAXANIM ASCII +newanim cwalkb plc_statdwl + length 0.5 + transtime 0.3 + event 0.2 snd_footstep + event 0.4 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim cwalkb plc_statdwl + +#MAXANIM ASCII +newanim cwalkf plc_statdwl + length 0.5 + transtime 0.3 + event 0.166667 snd_footstep + event 0.4 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim cwalkf plc_statdwl + +#MAXANIM ASCII +newanim cwalkl plc_statdwl + length 0.5 + transtime 0.3 + event 0.166667 snd_footstep + event 0.4 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim cwalkl plc_statdwl + +#MAXANIM ASCII +newanim cwalkr plc_statdwl + length 0.5 + transtime 0.3 + event 0.1 snd_footstep + event 0.4 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim cwalkr plc_statdwl + +#MAXANIM ASCII +newanim damageb plc_statdwl + length 0.266667 + transtime 0.15 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node trimesh dwstat + parent plc_statdwl + orientationkey + 0.266667 -0.619438 0.238548 -0.747925 0.565306 + endlist + endnode +doneanim damageb plc_statdwl + +#MAXANIM ASCII +newanim damagel plc_statdwl + length 0.266667 + transtime 0.15 + event 0.266667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim damagel plc_statdwl + +#MAXANIM ASCII +newanim damager plc_statdwl + length 0.266667 + transtime 0.15 + event 0.266667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim damager plc_statdwl + +#MAXANIM ASCII +newanim damages plc_statdwl + length 0.266667 + transtime 0.15 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim damages plc_statdwl + +#MAXANIM ASCII +newanim deadbck plc_statdwl + length 0.0333333 + transtime 0.5 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim deadbck plc_statdwl + +#MAXANIM ASCII +newanim deadfnt plc_statdwl + length 0.0333333 + transtime 0.5 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim deadfnt plc_statdwl + +#MAXANIM ASCII +newanim dodgelr plc_statdwl + length 1 + transtime 0.3 + event 0.866667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim dodgelr plc_statdwl + +#MAXANIM ASCII +newanim dodges plc_statdwl + length 1 + transtime 0.3 + event 0.466667 snd_footstep + event 0.866667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim dodges plc_statdwl + +#MAXANIM ASCII +newanim gustandb plc_statdwl + length 1 + transtime 0.25 + event 0.866667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim gustandb plc_statdwl + +#MAXANIM ASCII +newanim gustandf plc_statdwl + length 1 + transtime 0.25 + event 0.466667 snd_footstep + event 0.8 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim gustandf plc_statdwl + +#MAXANIM ASCII +newanim gutokdb plc_statdwl + length 1 + transtime 0.25 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim gutokdb plc_statdwl + +#MAXANIM ASCII +newanim gutokdf plc_statdwl + length 1 + transtime 0.25 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim gutokdf plc_statdwl + +#MAXANIM ASCII +newanim kdbck plc_statdwl + length 1 + transtime 0.15 + event 0.366667 snd_hitground + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim kdbck plc_statdwl + +#MAXANIM ASCII +newanim kdbckdie plc_statdwl + length 1 + transtime 0.25 + event 0.6 snd_hitground + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim kdbckdie plc_statdwl + +#MAXANIM ASCII +newanim kdbckdmg plc_statdwl + length 0.333333 + transtime 0.15 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim kdbckdmg plc_statdwl + +#MAXANIM ASCII +newanim kdbckps plc_statdwl + length 1 + transtime 0.5 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim kdbckps plc_statdwl + +#MAXANIM ASCII +newanim kdfnt plc_statdwl + length 1 + transtime 0.15 + event 0.166667 snd_hitground + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim kdfnt plc_statdwl + +#MAXANIM ASCII +newanim kdfntdie plc_statdwl + length 1 + transtime 0.25 + event 0.466667 snd_hitground + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim kdfntdie plc_statdwl + +#MAXANIM ASCII +newanim kdfntdmg plc_statdwl + length 0.333333 + transtime 0.15 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim kdfntdmg plc_statdwl + +#MAXANIM ASCII +newanim kdfntps plc_statdwl + length 1 + transtime 0.5 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim kdfntps plc_statdwl + +#MAXANIM ASCII +newanim nwcloseh plc_statdwl + length 1 + transtime 0.3 + event 0.4 blur_start + event 0.5 hit + event 0.6 blur_end + event 0.666667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim nwcloseh plc_statdwl + +#MAXANIM ASCII +newanim nwclosel plc_statdwl + length 1 + transtime 0.3 + event 0.4 blur_start + event 0.5 blur_end + event 0.8 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim nwclosel plc_statdwl + +#MAXANIM ASCII +newanim nwkickl plc_statdwl + length 1 + transtime 0.25 + event 0.166667 snd_footstep + event 0.4 blur_start + event 0.5 blur_end + event 0.8 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim nwkickl plc_statdwl + +#MAXANIM ASCII +newanim nwkickr plc_statdwl + length 1 + transtime 0.25 + event 0.3 snd_footstep + event 0.4 blur_start + event 0.5 hit + event 0.566667 blur_end + event 0.8 snd_footstep + event 0.866667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim nwkickr plc_statdwl + +#MAXANIM ASCII +newanim nwkicks plc_statdwl + length 1 + transtime 0.3 + event 0.4 blur_start + event 0.5 blur_end + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim nwkicks plc_statdwl + +#MAXANIM ASCII +newanim nwreach plc_statdwl + length 1 + transtime 0.3 + event 0.3 snd_footstep + event 0.4 blur_start + event 0.5 hit + event 0.666667 snd_footstep + event 0.866667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim nwreach plc_statdwl + +#MAXANIM ASCII +newanim nwreadyl plc_statdwl + length 1 + transtime 0.5 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim nwreadyl plc_statdwl + +#MAXANIM ASCII +newanim nwreadyr plc_statdwl + length 1 + transtime 0.5 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim nwreadyr plc_statdwl + +#MAXANIM ASCII +newanim nwslashl plc_statdwl + length 1 + transtime 0.25 + event 0.366667 snd_footstep + event 0.4 blur_start + event 0.5 hit + event 0.566667 blur_end + event 0.8 snd_footstep + event 0.866667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim nwslashl plc_statdwl + +#MAXANIM ASCII +newanim nwslasho plc_statdwl + length 1 + transtime 0.4 + event 0.4 blur_start + event 0.5 hit + event 0.566667 blur_end + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim nwslasho plc_statdwl + +#MAXANIM ASCII +newanim nwslashr plc_statdwl + length 1 + transtime 0.25 + event 0.266667 snd_footstep + event 0.4 blur_start + event 0.5 hit + event 0.566667 blur_end + event 0.8 snd_footstep + event 0.866667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim nwslashr plc_statdwl + +#MAXANIM ASCII +newanim nwstab plc_statdwl + length 1 + transtime 0.3 + event 0.3 snd_footstep + event 0.4 blur_start + event 0.5 hit + event 0.566667 blur_end + event 0.8 snd_footstep + event 0.866667 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim nwstab plc_statdwl + +#MAXANIM ASCII +newanim shieldl plc_statdwl + length 1 + transtime 0.3 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim shieldl plc_statdwl + +#MAXANIM ASCII +newanim spasm plc_statdwl + length 0.666667 + transtime 0.2 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim spasm plc_statdwl + +#MAXANIM ASCII +newanim throwr plc_statdwl + length 1 + transtime 0.3 + event 0.5 hit + event 0.8 snd_footstep + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim throwr plc_statdwl + +#MAXANIM ASCII +newanim xbowrdy plc_statdwl + length 1 + transtime 0.5 + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim xbowrdy plc_statdwl + +#MAXANIM ASCII +newanim xbowshot plc_statdwl + length 1 + transtime 0.3 + event 0.5 hit + animroot plc_statdwl + node dummy plc_statdwl + parent NULL + endnode + node dummy pwk + parent plc_statdwl + #part-number -1 + endnode + node dummy box01 + parent plc_statdwl + endnode + node dummy cylinder01 + parent plc_statdwl + endnode + node dummy hammerhead + parent plc_statdwl + endnode + node dummy object01 + parent plc_statdwl + endnode + node dummy dwstat + parent plc_statdwl + endnode +doneanim xbowshot plc_statdwl +donemodel plc_statdwl diff --git a/tests/fixtures/oracle/ascii/pmh0_head001.mdl b/tests/fixtures/oracle/ascii/pmh0_head001.mdl new file mode 100644 index 0000000..fe14b7c --- /dev/null +++ b/tests/fixtures/oracle/ascii/pmh0_head001.mdl @@ -0,0 +1,374 @@ +#MAXMODEL ASCII +# model: pmh0_head001 +filedependancy pmh0_head001.max +newmodel pmh0_head001 +setsupermodel pmh0_head001 NULL +classification character +setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom pmh0_head001 +node dummy pmh0_head001 + parent NULL + #part-number 0 +endnode +node trimesh pmh0_head001g + parent pmh0_head001 + #part-number 1 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap pmh0_head001 + verts 84 + 0.0460577011 0.0975349024 -0.0492690988 + 0.0727630034 0.0232915003 -0.0292885993 + -0.000211309001 0.0232915003 -0.060793899 + 0.0601616018 0.0866988003 -0.00973598007 + -0.000201525996 0.110753 0.0663710982 + -0.0141311996 0.111928001 0.0832879022 + -0.000201525996 0.109714001 0.0832879022 + 0.0158025008 0.111101002 -0.00756721012 + -0.000195657005 0.115203001 0.00820066035 + 0.0255833007 0.101966999 0.0229049996 + -0.000195657005 0.064725101 -0.0523649007 + 0.0252979007 0.116351001 -0.0602563992 + 0.0598081984 0.0758546963 0.130566001 + 0.0588628985 0.0956697017 0.0866302028 + -0.000215633001 0.105549999 0.128528997 + 0.0788870007 0.0102770003 0.0444486998 + 0.0459614992 -0.0574125014 -0.0263900999 + -0.000195657005 0.119558997 -0.0602563992 + -0.000195657005 0.112522997 -0.0075672199 + 0.0109355003 0.129793003 0.0264113992 + -0.0254600998 0.116351001 -0.0602563992 + 0.0371058993 0.101097003 -0.0107220998 + -0.0159376003 0.111101002 -0.00756721012 + 0.0659838989 0.0871563032 0.0352648012 + 0.0636012033 0.0798045024 0.0596276 + -0.000195657005 0.130651996 0.0189846996 + 0.0126406001 0.101120003 0.0620258003 + 0.0549424998 0.0933569968 0.0614831001 + 0.0139920004 0.111928001 0.0832879022 + -0.000195657005 -0.0626346022 -0.0263900999 + -0.0633132011 0.0870689005 0.0340400003 + -0.0589113012 0.0866551027 -0.0103484998 + -0.0729087964 0.0232915003 -0.0292885993 + -0.0257521998 0.101966999 0.0229049996 + -0.0589906015 0.0956697017 0.0866302028 + -0.0599242002 0.0742978007 0.130064994 + -0.0460966006 -0.0574125014 -0.0263900999 + -0.0790221021 0.0102770003 0.0444486998 + -0.000195657005 0.133853003 0.0277929008 + -0.0112461001 0.129793003 0.0264113992 + -0.0365664996 0.101075001 -0.0110283997 + -0.0461663008 0.0975349024 -0.0492690988 + -0.0637350976 0.0798045024 0.0596276 + -0.0551203005 0.0933569968 0.0614832006 + -0.0127291996 0.101120003 0.0620258003 + -0.0598701015 0.0491558015 0.159247994 + -0.000215633001 0.00792072993 0.180360004 + -0.000215633001 0.0810398981 0.167468995 + 0.0327676013 -0.0741289034 0.0313219018 + -0.000215633001 -0.0977870971 0.105434999 + -0.000195657005 -0.0796952993 0.0313219018 + -0.0740517974 -0.0585019998 0.104305997 + -0.0361662991 -0.0918764025 0.105434999 + -0.0697928965 -0.0397428013 0.149426997 + 0.0360173993 -0.0918764025 0.105434999 + -0.000215633001 -0.0590705015 0.170174003 + -0.0857513025 0.00250082999 0.116084002 + 0.0636838004 -0.0397428013 0.149426997 + -0.0328801982 -0.0741289034 0.0313219018 + -0.0611325987 -0.0595000014 0.0307570994 + 0.0599169992 0.0492365994 0.159887999 + 0.0685470998 -0.0585018992 0.103445999 + 0.0838174 0.00250088004 0.112575002 + 0.0583213009 -0.0595000014 0.0303269997 + 0.0770471022 0.0300118998 0.0424735993 + 0.0585389994 0.00570046017 0.0506018996 + 0.0836969987 0.00452128006 0.0795082971 + 0.0867179036 -0.0179396998 0.0733774975 + 0.0533477999 0.00666947989 0.0190034993 + 0.0881368965 -0.0218097996 0.0447393991 + 0.075589098 0.0282828007 0.0206515994 + 0.0647872984 0.0230075009 0.00535799982 + 0.0758579969 0.0133560002 0.000261501991 + 0.081081599 0.000218914996 0.00329216011 + -0.0598168001 0.00501684006 0.0506018996 + -0.0761355981 0.0308488999 0.0424735993 + -0.0847558007 0.00723169977 0.0795082971 + -0.0897526965 -0.0156370997 0.0733774975 + -0.0916996971 -0.0198091008 0.0447393991 + -0.0545607992 0.00552971987 0.0190034993 + -0.0748338029 0.0289992001 0.0206515994 + -0.0645328984 0.0228026006 0.00535799982 + -0.076355502 0.0145493997 0.000261492998 + -0.0826394036 0.00194486999 0.00329216011 + tverts 110 + 0.436910003 0.0645617992 0 + 0.440070003 0.0516411997 0 + 0.419003993 0.0516411997 0 + 0.357026011 0.0617141984 0 + 0.334728003 0.293801993 0 + 0.485612005 0.258062989 0 + 0.0172537994 0.636789978 0 + 0.0795461014 0.803516984 0 + 0.0251480006 0.774338007 0 + 0.114 0.295951992 0 + 0.0231743995 0.395155996 0 + 0.175347999 0.408158004 0 + 0.419003993 0.0651668012 0 + 0.425633013 0.0746650994 0 + 0.352988988 0.995926976 0 + 0.260542005 0.815524995 0 + 0.0267555006 0.998031974 0 + 0.644804001 0.389862001 0 + 0.91327101 0.157102004 0 + 0.638832986 0.220314994 0 + 0.0243868995 0.00812609028 0 + 0.0329543017 0.298824012 0 + 0.170706004 0.00911645964 0 + 0.0351210013 0.514405012 0 + 0.169559002 0.00987321977 0 + 0.229058996 0.275922 0 + 0.115259998 0.296126008 0 + 0.503196001 0.480587006 0 + 0.33732599 0.489071012 0 + 0.376787007 0.635626972 0 + 0.0152802998 0.47855401 0 + 0.0756821036 0.626878977 0 + 0.298269004 0.631253004 0 + 0.0782857016 0.803516984 0 + 0.419003993 0.0754619986 0 + 0.419003993 0.0334087983 0 + 0.333784997 0.487810999 0 + 0.333588004 0.293170989 0 + 0.486871988 0.258062989 0 + 0.176608995 0.408158004 0 + 0.261803001 0.813109994 0 + 0.354249001 0.993481994 0 + 0.00935961027 0.528864026 0 + 0.0357511006 0.514405012 0 + 0.229119003 0.278021991 0 + 0.358285993 0.0617141984 0 + 0.504455984 0.480587006 0 + 0.378028005 0.635846019 0 + 0.404702008 0.0345511995 0 + 0.398016989 0.0516411997 0 + 0.299510002 0.631471992 0 + 0.076923497 0.627097011 0 + 0.638984978 0.839469016 0 + 0.70243597 0.979921997 0 + 0.480010003 0.967532992 0 + 0.909964025 0.409774989 0 + 0.976885974 0.672582984 0 + 0.983126998 0.412286013 0 + 0.829285026 0.662202001 0 + 0.906657994 0.662447989 0 + 0.807552993 0.834091008 0 + 0.944615006 0.964199007 0 + 0.685275018 0.679328978 0 + 0.570650995 0.704075992 0 + 0.909964979 0.409774989 0 + 0.451568007 0.808964014 0 + 0.871277988 0.409651995 0 + 0.638643026 0.841938972 0 + 0.829505026 0.658838987 0 + 0.686176002 0.680745006 0 + 0.567722023 0.705133975 0 + 0.871388018 0.407970011 0 + 0.795144975 0.0655009001 0 + 0.799618006 0.0453701988 0 + 0.815522015 0.0443938002 0 + 0.812148988 0.0257954001 0 + 0.782231987 0.0461726002 0 + 0.796392024 0.0225907005 0 + 0.727187991 0.00835174043 0 + 0.547352016 0.193740994 0 + 0.621782005 0.200775996 0 + 0.785655022 0.0654352009 0 + 0.782850981 0.057443399 0 + 0.773586988 0.0408313014 0 + 0.477806985 0.133009002 0 + 0.475775003 0.0795587972 0 + 0.495189995 0.172278002 0 + 0.748099029 0.112202004 0 + 0.623326004 0.00853224006 0 + 0.799618006 0.0448042005 0 + 0.795144975 0.0661939979 0 + 0.815522015 0.0466381013 0 + 0.812148988 0.027702 0 + 0.796392024 0.0242474005 0 + 0.782231987 0.0452288017 0 + 0.547352016 0.196656004 0 + 0.727187991 0.0123725003 0 + 0.621782005 0.204181999 0 + 0.785655022 0.0652656034 0 + 0.782850981 0.0584315993 0 + 0.773586988 0.0422605015 0 + 0.477806985 0.137865007 0 + 0.475775003 0.0865812972 0 + 0.495189995 0.171443999 0 + 0.748099029 0.123230003 0 + 0.623326004 0.0147940004 0 + 0.433385015 0.0345511995 0 + 0.401176989 0.0645617992 0 + 0.412454009 0.0746650994 0 + 0.989367008 0.151989996 0 + faces 150 + 0 1 2 1 0 1 2 1 + 0 3 1 1 3 4 5 1 + 4 5 6 1 6 7 8 1 + 7 8 9 1 9 10 11 1 + 10 11 0 1 12 13 0 1 + 12 13 14 1 14 15 16 1 + 15 16 1 1 17 18 19 1 + 17 18 11 1 20 21 22 1 + 9 19 4 1 11 23 6 1 + 17 20 18 1 20 24 21 1 + 11 7 21 1 22 9 25 1 + 22 8 18 1 26 10 21 1 + 15 23 24 1 27 28 29 1 + 19 9 25 1 23 11 30 1 + 9 3 21 1 11 4 25 1 + 9 8 25 1 11 10 30 1 + 9 26 27 1 11 31 32 1 + 9 4 26 1 11 6 31 1 + 21 3 0 1 25 4 3 1 + 28 26 4 1 33 31 6 1 + 13 24 27 1 15 29 32 1 + 24 23 27 1 29 28 32 1 + 13 12 24 1 15 14 29 1 + 24 12 15 1 29 14 27 1 + 28 14 13 1 33 16 15 1 + 13 27 28 1 15 32 33 1 + 23 15 1 1 28 27 5 1 + 11 10 17 1 13 12 34 1 + 2 1 29 1 2 1 35 1 + 30 31 32 1 36 37 38 1 + 14 6 5 1 16 8 7 1 + 8 22 33 1 10 26 39 1 + 34 35 14 1 40 41 16 1 + 36 37 32 1 18 17 19 1 + 0 2 10 1 0 2 12 1 + 38 39 4 1 42 43 6 1 + 40 20 41 1 44 24 45 1 + 31 30 33 1 37 36 39 1 + 30 32 37 1 36 38 46 1 + 30 37 42 1 36 46 47 1 + 29 36 32 1 35 48 49 1 + 39 38 25 1 43 42 30 1 + 41 31 40 1 45 37 44 1 + 8 33 25 1 10 39 30 1 + 42 43 30 1 47 50 36 1 + 43 33 30 1 50 39 36 1 + 44 5 4 1 51 7 6 1 + 42 34 43 1 47 40 50 1 + 4 33 44 1 6 39 51 1 + 37 35 42 1 46 41 47 1 + 35 34 42 1 41 40 47 1 + 14 5 34 1 16 7 40 1 + 44 43 5 1 51 50 7 1 + 45 46 47 1 52 53 54 2 + 48 49 50 1 55 56 57 2 + 51 52 53 1 58 59 60 2 + 54 55 49 1 59 61 56 2 + 53 45 56 1 60 52 62 2 + 56 45 35 1 62 52 63 2 + 35 45 47 1 63 52 54 2 + 45 53 46 1 52 60 53 2 + 57 46 55 1 60 53 61 2 + 52 51 58 1 59 58 64 2 + 55 54 57 1 61 59 60 2 + 58 50 49 1 64 57 56 2 + 35 47 14 1 63 54 65 2 + 37 36 59 1 17 18 66 2 + 51 56 37 1 58 62 17 2 + 56 51 53 1 62 58 60 2 + 35 37 56 1 63 17 62 2 + 60 47 46 1 67 54 53 2 + 54 61 57 1 59 68 60 2 + 60 57 62 1 67 60 69 2 + 47 60 12 1 54 67 70 2 + 57 60 46 1 60 67 53 2 + 63 48 16 1 71 55 18 2 + 14 47 12 1 65 54 70 2 + 16 15 63 1 18 17 71 2 + 62 61 15 1 69 68 17 2 + 61 62 57 1 68 69 60 2 + 12 62 15 1 70 69 17 2 + 62 12 60 1 69 70 67 2 + 64 65 66 1 72 73 74 2 + 65 67 66 1 73 75 74 2 + 68 69 65 1 76 77 73 2 + 67 70 64 1 78 79 80 1 + 68 71 72 1 76 81 82 4 + 72 73 68 1 82 83 76 6 + 72 70 73 1 84 79 85 1 + 69 68 73 1 77 76 83 4 + 70 72 71 1 79 84 86 6 + 66 67 64 1 87 78 80 1 + 70 69 73 1 79 88 85 1 + 65 69 67 1 73 77 75 2 + 67 69 70 1 78 88 79 1 + 74 75 76 1 89 90 91 2 + 77 74 76 1 92 89 91 2 + 78 79 74 1 93 94 89 2 + 80 77 75 1 95 96 97 1 + 81 79 82 1 98 94 99 4 + 83 82 79 1 100 99 94 6 + 80 82 83 1 95 101 102 1 + 79 78 83 1 94 93 100 4 + 82 80 81 1 101 95 103 6 + 77 76 75 1 96 104 97 1 + 78 80 83 1 105 95 102 1 + 78 74 77 1 93 89 92 2 + 78 77 80 1 105 96 95 1 + 55 46 53 1 61 53 60 2 + 55 53 52 1 61 60 59 2 + 52 49 55 1 59 56 61 2 + 49 52 58 1 56 59 64 2 + 16 29 1 1 106 35 1 1 + 50 16 48 1 57 18 55 2 + 32 2 29 1 49 2 35 1 + 41 2 32 1 107 2 49 1 + 10 2 41 1 12 2 107 1 + 41 20 10 1 107 108 12 1 + 17 10 20 1 34 12 108 1 + 20 22 18 1 24 26 21 1 + 18 8 7 1 21 10 9 1 + 18 7 11 1 21 9 22 1 + 14 28 6 1 16 33 8 1 + 4 6 28 1 6 8 33 1 + 33 39 25 1 39 43 30 1 + 39 33 4 1 43 39 6 1 + 38 19 25 1 42 23 30 1 + 19 38 4 1 23 42 6 1 + 9 23 3 1 11 28 4 1 + 3 23 1 1 4 28 5 1 + 40 31 33 1 44 37 39 1 + 31 41 32 1 37 45 38 1 + 36 29 50 1 18 109 57 2 + 29 16 50 1 109 18 57 2 + 61 54 48 1 68 59 55 2 + 54 49 48 1 59 56 55 2 + 58 59 36 1 64 66 18 2 + 50 58 36 1 57 64 18 2 + 58 51 59 1 64 58 66 2 + 37 59 51 1 17 66 58 2 + 63 15 61 1 71 17 68 2 + 61 48 63 1 68 55 71 2 + 27 23 9 1 32 28 11 1 + 28 27 26 1 33 32 31 1 + 43 34 5 1 50 40 7 1 + 43 44 33 1 50 51 39 1 + 22 40 33 1 26 44 39 1 + 20 40 22 1 24 44 26 1 + 11 21 0 1 22 25 3 1 + 9 21 7 1 11 25 9 1 + position 0 0 0 + orientation 0 0 0 0 +endnode +endmodelgeom pmh0_head001 + +donemodel pmh0_head001 diff --git a/tests/fixtures/oracle/ascii/pmh0_neck001.mdl b/tests/fixtures/oracle/ascii/pmh0_neck001.mdl new file mode 100644 index 0000000..6fffb9d --- /dev/null +++ b/tests/fixtures/oracle/ascii/pmh0_neck001.mdl @@ -0,0 +1,72 @@ +#MAXMODEL ASCII +# model: pmh0_neck001 +filedependancy pmh0_neck001.max +newmodel pmh0_neck001 +setsupermodel pmh0_neck001 NULL +classification character +setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom pmh0_neck001 +node dummy pmh0_neck001 + parent NULL + #part-number 0 +endnode +node trimesh pmh0_neck001g + parent pmh0_neck001 + #part-number 1 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap pmh0_neck001 + verts 10 + 0.0816482008 0.0055072601 0.000310208008 + -0.000216947999 -0.0152033996 -0.0707598031 + -0.000216939996 0.0705868974 -0.00190352998 + -0.000216939006 -0.0673198029 -0.0038435501 + 0.0630374998 0.0195007995 0.0672267973 + -0.000216942004 0.0670031011 0.0420965999 + -0.000216941 -0.0478351004 0.0674474984 + -0.000216942994 0.0316555016 0.119277 + -0.0820821002 0.0055072601 0.000310203992 + -0.0634713992 0.0195007995 0.0672267973 + tverts 16 + 0.976089001 0.133484006 0 + 0.497482985 0.0618818998 0 + 0.488790989 0.140930995 0 + 0.424035013 0.146281004 0 + 0.425891995 0.0718661994 0 + 0.0425430015 0.146521002 0 + 0.898795009 0.85610199 0 + 0.471702009 0.869859993 0 + 0.454795986 0.829285979 0 + 0.0803683996 0.80300802 0 + 0.495626986 0.950869977 0 + 0.437707007 0.976891994 0 + 0.974343002 0.133484006 0 + 0.0422290005 0.146521002 0 + 0.898621976 0.85610199 0 + 0.0801754966 0.80300802 0 + faces 16 + 0 1 2 1 0 1 2 1 + 3 1 0 1 3 4 5 1 + 4 2 5 1 6 2 7 1 + 0 2 4 1 0 2 6 1 + 6 0 4 1 8 5 9 1 + 3 0 6 1 3 5 8 1 + 5 7 4 1 7 10 6 1 + 4 7 6 1 9 11 8 1 + 1 8 2 1 1 12 2 1 + 1 3 8 1 4 3 13 1 + 2 9 5 1 2 14 7 1 + 2 8 9 1 2 12 14 1 + 8 6 9 1 13 8 15 1 + 8 3 6 1 13 3 8 1 + 7 5 9 1 10 7 14 1 + 7 9 6 1 11 15 8 1 + position 0 0 0 + orientation 0 0 0 0 +endnode +endmodelgeom pmh0_neck001 + +donemodel pmh0_neck001 diff --git a/tests/fixtures/oracle/ascii/squid.mdl b/tests/fixtures/oracle/ascii/squid.mdl new file mode 100644 index 0000000..bb073a7 --- /dev/null +++ b/tests/fixtures/oracle/ascii/squid.mdl @@ -0,0 +1,11799 @@ +# Rewritten by CleanModels 3 Version 3.5.2d Sun Oct 13 18:41:33 2019 +#MAXMODEL ASCII +filedependency Unknown +newmodel squid + classification TILE + setsupermodel squid c_boat + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom squid +node dummy squid + parent NULL +endnode +node trimesh rootdummy + parent squid + diffuse 0 0 0 + ambient 0 0 0 + bitmap black + orientation 0 0 0 0 + position 0 0 0 + wirecolor 0.890625 0.890625 0.890625 + specular 0.346667 0.346667 0.346667 + shininess 30 + verts 8 + 0 0 0 + 0 0 0 + 0 0 0 + 0 0 0 + 0 0 0 + 0 0 0 + 0 0 0 + 0 0 0 + faces 12 + 0 1 2 1 0 0 0 0 + 2 3 0 1 0 0 0 0 + 4 5 6 1 0 0 0 0 + 6 7 4 1 0 0 0 0 + 0 3 5 1 0 0 0 0 + 5 4 0 1 0 0 0 0 + 3 2 6 1 0 0 0 0 + 6 5 3 1 0 0 0 0 + 2 1 7 1 0 0 0 0 + 7 6 2 1 0 0 0 0 + 1 0 4 1 0 0 0 0 + 4 7 1 1 0 0 0 0 + tverts 1 + 0 0 0 +endnode +node trimesh box28 + parent squid + position 0.0345499 -1.44448 1.25506 + orientation 0 0.00436336 -0.99999 -3.14159 + wirecolor 0.113281 0.113281 0.113281 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_wood01 + verts 8 + 0.0242129 0.0391447 0.251414 + -0.0697086 0.0388081 0.251781 + -0.0697086 0.013377 0.251781 + 0.0242128 0.0137431 0.251414 + 0.0476935 0.0391394 -0.00260077 + -0.0931892 0.0386346 -0.0024939 + -0.0931892 0.0131883 -0.0024939 + 0.0476935 0.0137374 -0.00260077 + faces 10 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 1 1 4 5 6 0 + 1 0 4 1 6 7 4 0 + 5 6 2 1 5 8 9 0 + 2 1 5 1 9 6 5 0 + 6 7 3 1 10 11 12 0 + 3 2 6 1 12 13 10 0 + 7 4 0 1 11 4 7 0 + 0 3 7 1 7 12 11 0 + tverts 14 + 0.4 0.2 0 + 0.4 0.5 0 + 0.3335 0.5 0 + 0.3335 0.2 0 + 0.2 0.000499517 0 + 0.35 0.000499517 0 + 0.35 0.9995 0 + 0.2 0.9995 0 + 0.4 0.000499517 0 + 0.4 0.9995 0 + 0 0.000499517 0 + 0.15 0.000499517 0 + 0.15 0.9995 0 + 0 0.9995 0 +endnode +node trimesh box48 + parent squid + position -0.632787 -0.854458 0.904858 + orientation -0.00114947 -0.12617 0.992008 -1.16237 + wirecolor 0.0273438 0.0273438 0.0273438 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_woodb256 + verts 6 + -0.140502 -0.0117918 0 + 0.0798259 -0.00526417 0.0124366 + 0.0798259 0 0.0230574 + -0.140502 0 0.0237906 + 0.0798259 0.00526449 0.0124366 + -0.140502 0.0117925 0 + faces 6 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 1 4 2 1 1 4 5 0 + 4 5 3 1 4 6 7 0 + 3 2 4 1 7 5 4 0 + 5 0 3 1 6 0 7 0 + tverts 8 + 0.898344 0.999501 0 + 0.898345 0.0389053 0 + 0.985346 0.0389053 0 + 0.985347 0.999501 0 + 0.985492 0.0389053 0 + 0.89849 0.0389053 0 + 0.985492 0.999501 0 + 0.898491 0.999501 0 +endnode +node trimesh box52 + parent squid + position -0.436713 -0.802726 0.865378 + orientation -0.113064 -0.49967 0.858805 -0.515247 + wirecolor 0.0273438 0.0273438 0.0273438 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_rugdmtlbrk + verts 8 + -0.0119831 -0.0304236 0.0237906 + 0.011983 -0.0304236 0.0237906 + 0.011983 0.0304241 0.0237906 + -0.0119831 0.0304241 0.0237906 + -0.0119831 -0.0304236 0 + 0.011983 -0.0304236 0 + 0.011983 0.0304241 0 + -0.0119831 0.0304241 0 + faces 10 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 1 1 4 5 6 0 + 1 0 4 1 6 7 4 0 + 5 6 2 1 8 9 10 0 + 2 1 5 1 10 11 8 0 + 6 7 3 1 5 4 7 0 + 3 2 6 1 7 6 5 0 + 7 4 0 1 9 8 11 0 + 0 3 7 1 11 10 9 0 + tverts 12 + 0.385493 0.0289503 0 + 0.553958 0.0289502 0 + 0.553958 0.3896 0 + 0.385493 0.3896 0 + 0.463384 0.248654 0 + 0.616215 0.248654 0 + 0.616215 0.418592 0 + 0.463384 0.418592 0 + 0.663035 0.324326 0 + 0.238636 0.324326 0 + 0.238636 0.455778 0 + 0.663035 0.455778 0 +endnode +node trimesh box134 + parent squid + position -0.0354262 1.87627 0.843337 + orientation 0 0 0 0 + wirecolor 0.0273438 0.0273438 0.0273438 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_creats + verts 8 + -0.0312599 -0.00940323 0 + -0.0312599 0.0094034 0 + 0.03126 0.0094034 0 + 0.03126 -0.00940323 0 + -0.0312599 -0.00940323 0.0235105 + 0.03126 -0.00940323 0.0235105 + 0.03126 0.0094034 0.0235105 + -0.0312599 0.0094034 0.0235105 + faces 12 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 6 1 3 0 1 0 + 6 7 4 1 1 2 3 0 + 0 3 5 1 3 0 1 0 + 5 4 0 1 1 2 3 0 + 3 2 6 1 3 0 1 0 + 6 5 3 1 1 2 3 0 + 2 1 7 1 3 0 1 0 + 7 6 2 1 1 2 3 0 + 1 0 4 1 3 0 1 0 + 4 7 1 1 1 2 3 0 + tverts 4 + 0.643438 0.941449 0 + 0.643438 1 0 + 0.368581 1 0 + 0.368581 0.941449 0 +endnode +node trimesh box627 + parent squid + position 0.0311977 -1.47245 1.61275 + orientation 0 0.00436336 -0.99999 -3.14159 + wirecolor 0.0273438 0.0273438 0.0273438 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_bridge02 + verts 50 + -0.0699591 0.00836656 0.175289 + -0.0866929 0.00836656 0.166923 + -0.078326 -0.0111562 0.172501 + -0.0030237 -0.00557829 0.00237397 + -0.0030237 0.00278883 0.00237397 + 0.072278 0.00836656 0.169712 + 0.0555442 0.00836656 0.178079 + 0.0639116 -0.0111562 0.175289 + 0.169892 0.00836656 0.069309 + 0.161525 0.00836656 0.0860428 + 0.167103 -0.0111562 0.0776759 + 0.164314 0.00836656 -0.0729279 + 0.172681 0.00836656 -0.0561942 + 0.169892 -0.0111562 -0.0645615 + -0.170362 0.00836656 0.0776759 + -0.178729 0.00836656 0.0609421 + -0.175939 -0.0111562 0.069309 + -0.0030237 -0.0167341 0.141822 + -0.100638 0.0111555 0.0999876 + -0.100638 -0.0167341 0.0999876 + -0.0030237 0.0111555 0.141822 + -0.0839039 -0.00278927 0.0832538 + -0.0030237 -0.00278927 0.116721 + -0.142472 0.0111555 0.00237397 + -0.142472 -0.0167341 0.00237397 + -0.117371 -0.00278927 0.00237397 + -0.100638 0.0111555 -0.0952396 + -0.100638 -0.0167341 -0.0952396 + -0.0839039 -0.00278927 -0.0785058 + -0.0030237 0.0111555 -0.137074 + -0.0030237 -0.0167341 -0.137074 + -0.0030237 -0.00278927 -0.111974 + 0.0945902 0.0111555 -0.0952396 + 0.0945902 -0.0167341 -0.0952396 + 0.0778564 -0.00278927 -0.0785058 + 0.136425 0.0111555 0.00237397 + 0.136425 -0.0167341 0.00237397 + 0.111323 -0.00278927 0.00237397 + 0.0945902 0.0111555 0.0999876 + 0.0945902 -0.0167341 0.0999876 + 0.0778564 -0.00278927 0.0832538 + -0.17594 0.00836656 -0.0645615 + -0.167573 0.00836656 -0.0812948 + -0.17315 -0.0111562 -0.0729279 + -0.078326 0.00836656 -0.164964 + -0.0615922 0.00836656 -0.17333 + -0.0699591 -0.0111562 -0.170542 + 0.0639116 0.00836656 -0.170542 + 0.0806454 0.00836656 -0.162175 + 0.072278 -0.0111562 -0.167753 + faces 96 + 0 1 2 1 0 1 2 0 + 3 4 0 1 3 4 5 0 + 0 2 3 1 5 6 3 0 + 1 0 4 1 1 0 7 0 + 4 3 2 1 8 9 2 0 + 2 1 4 1 2 1 8 0 + 5 6 7 1 0 1 2 0 + 3 4 5 1 3 4 5 0 + 5 7 3 1 5 6 3 0 + 6 5 4 1 1 0 7 0 + 4 3 7 1 8 9 2 0 + 7 6 4 1 2 1 8 0 + 8 9 10 1 0 1 2 0 + 3 4 8 1 3 4 5 0 + 8 10 3 1 5 6 3 0 + 9 8 4 1 1 0 7 0 + 4 3 10 1 8 9 2 0 + 10 9 4 1 2 1 8 0 + 11 12 13 1 0 1 2 0 + 3 4 11 1 3 4 5 0 + 11 13 3 1 5 6 3 0 + 12 11 4 1 1 0 7 0 + 4 3 13 1 8 9 2 0 + 13 12 4 1 2 1 8 0 + 14 15 16 1 0 1 2 0 + 3 4 14 1 3 4 5 0 + 14 16 3 1 5 6 3 0 + 15 14 4 1 1 0 7 0 + 4 3 16 1 8 9 2 0 + 16 15 4 1 2 1 8 0 + 17 18 19 1 10 11 12 0 + 17 20 18 1 10 13 11 0 + 20 21 18 1 13 14 11 0 + 20 22 21 1 13 15 14 0 + 22 19 21 1 16 17 18 0 + 22 17 19 1 16 19 17 0 + 19 23 24 1 12 20 21 0 + 19 18 23 1 12 11 20 0 + 18 25 23 1 11 22 20 0 + 18 21 25 1 11 14 22 0 + 21 24 25 1 18 23 24 0 + 21 19 24 1 18 17 23 0 + 24 26 27 1 21 25 26 0 + 24 23 26 1 21 20 25 0 + 23 28 26 1 20 27 25 0 + 23 25 28 1 20 22 27 0 + 25 27 28 1 24 28 29 0 + 25 24 27 1 24 23 28 0 + 27 29 30 1 26 30 31 0 + 27 26 29 1 26 25 30 0 + 26 31 29 1 25 32 30 0 + 26 28 31 1 25 27 32 0 + 28 30 31 1 29 33 34 0 + 28 27 30 1 29 28 33 0 + 30 32 33 1 31 35 36 0 + 30 29 32 1 31 30 35 0 + 29 34 32 1 30 37 35 0 + 29 31 34 1 30 32 37 0 + 31 33 34 1 34 38 39 0 + 31 30 33 1 34 33 38 0 + 33 35 36 1 36 40 41 0 + 33 32 35 1 36 35 40 0 + 32 37 35 1 35 42 40 0 + 32 34 37 1 35 37 42 0 + 34 36 37 1 39 43 44 0 + 34 33 36 1 39 38 43 0 + 36 38 39 1 41 45 46 0 + 36 35 38 1 41 40 45 0 + 35 40 38 1 40 47 45 0 + 35 37 40 1 40 42 47 0 + 37 39 40 1 44 48 49 0 + 37 36 39 1 44 43 48 0 + 39 20 17 1 46 50 51 0 + 39 38 20 1 46 45 50 0 + 38 22 20 1 45 52 50 0 + 38 40 22 1 45 47 52 0 + 40 17 22 1 49 53 54 0 + 40 39 17 1 49 48 53 0 + 41 42 43 1 0 1 2 0 + 3 4 41 1 3 4 5 0 + 41 43 3 1 5 6 3 0 + 42 41 4 1 1 0 7 0 + 4 3 43 1 8 9 2 0 + 43 42 4 1 2 1 8 0 + 44 45 46 1 0 1 2 0 + 3 4 44 1 3 4 5 0 + 44 46 3 1 5 6 3 0 + 45 44 4 1 1 0 7 0 + 4 3 46 1 8 9 2 0 + 46 45 4 1 2 1 8 0 + 47 48 49 1 0 1 2 0 + 3 4 47 1 3 4 5 0 + 47 49 3 1 5 6 3 0 + 48 47 4 1 1 0 7 0 + 4 3 49 1 8 9 2 0 + 49 48 4 1 2 1 8 0 + tverts 55 + 0.228316 0.836453 0 + 0.266327 0.836453 0 + 0.304337 0.836453 0 + 0.342347 0.547074 0 + 0.380357 0.547074 0 + 0.380357 0.836453 0 + 0.342347 0.836453 0 + 0.228316 0.547074 0 + 0.266327 0.547074 0 + 0.304337 0.547074 0 + 0.973101 0.382591 0 + 0.870121 0.441295 0 + 0.870121 0.382591 0 + 0.973101 0.441295 0 + 0.870121 0.5 0 + 0.973101 0.5 0 + 0.973101 0.558705 0 + 0.870121 0.617409 0 + 0.870121 0.558705 0 + 0.973101 0.617409 0 + 0.767141 0.441295 0 + 0.767141 0.382591 0 + 0.767141 0.5 0 + 0.767141 0.617409 0 + 0.767141 0.558705 0 + 0.66416 0.441295 0 + 0.66416 0.382591 0 + 0.66416 0.5 0 + 0.66416 0.617409 0 + 0.66416 0.558705 0 + 0.56118 0.441295 0 + 0.56118 0.382591 0 + 0.56118 0.5 0 + 0.56118 0.617409 0 + 0.56118 0.558705 0 + 0.4582 0.441295 0 + 0.4582 0.382591 0 + 0.4582 0.5 0 + 0.4582 0.617409 0 + 0.4582 0.558705 0 + 0.355219 0.441295 0 + 0.355219 0.382591 0 + 0.355219 0.5 0 + 0.355219 0.617409 0 + 0.355219 0.558705 0 + 0.252239 0.441295 0 + 0.252239 0.382591 0 + 0.252239 0.5 0 + 0.252239 0.617409 0 + 0.252239 0.558705 0 + 0.149259 0.441295 0 + 0.149259 0.382591 0 + 0.149259 0.5 0 + 0.149259 0.617409 0 + 0.149259 0.558705 0 +endnode +node trimesh box1224 + parent squid + position -0.647832 -0.550398 0.584783 + orientation -0.39681 0.0897889 -0.913499 -1.27315 + wirecolor 0.445313 0.445313 0.445313 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_wood256 + verts 6 + -0.0530361 0.0164519 0.0145545 + 0.0105238 -0.0469829 0.0130243 + -0.010315 -0.0495371 0.337501 + 0.0105238 0.00853962 -0.00718422 + -0.010315 -0.00897523 0.331397 + -0.0620933 -0.00549117 0.34097 + faces 6 + 0 1 2 1 0 1 2 0 + 1 3 4 1 1 3 4 0 + 4 2 1 1 4 2 1 0 + 3 0 5 1 5 0 6 0 + 5 4 3 1 6 7 5 0 + 2 5 0 1 2 6 0 0 + tverts 8 + 0.101422 -0.406086 0 + 0.486496 -0.407186 0 + 0.49375 1.44245 0 + 0.678209 -0.442454 0 + 0.69125 1.44245 0 + -0.111791 -0.442454 0 + 0.09875 1.44245 0 + -0.09875 1.44245 0 +endnode +node trimesh box1225 + parent squid + position -0.582278 -0.733996 0.856457 + orientation 0 0 1 -0.445059 + wirecolor 0.898438 0.898438 0.898438 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_woodb256 + verts 8 + -0.0356862 -0.0463918 0.0370574 + 0.0356857 -0.0463918 0.0150129 + 0.0356858 0.0463917 0.0150129 + -0.0356862 0.0463917 0.0370574 + -0.0356862 -0.0463918 0 + 0.0356857 -0.0463918 0 + 0.0356858 0.0463917 0 + -0.0356862 0.0463917 0 + faces 10 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 1 1 4 5 6 0 + 1 0 4 1 6 7 4 0 + 5 6 2 1 8 9 10 0 + 2 1 5 1 10 11 8 0 + 6 7 3 1 9 12 13 0 + 3 2 6 1 13 10 9 0 + 7 4 0 1 12 4 7 0 + 0 3 7 1 7 13 12 0 + tverts 14 + 0.376667 0.352655 0 + 0.623333 0.352655 0 + 0.623333 0.647345 0 + 0.376667 0.647345 0 + 1.171 0.354796 0 + 1.65903 0.354796 0 + 1.65903 0.472448 0 + 1.171 0.645204 0 + -0.460969 0.354796 0 + 0.110999 0.354796 0 + 0.110999 0.472448 0 + -0.460969 0.472448 0 + 0.599031 0.354796 0 + 0.599031 0.645204 0 +endnode +node trimesh box1226 + parent squid + position -0.582278 -0.734 0.879684 + orientation -0.113064 -0.49967 0.858805 -0.515247 + wirecolor 0.898438 0.898438 0.898438 + ambient 0.52549 0.435294 0.439216 + diffuse 0.52549 0.435294 0.439216 + specular 0 0 0 + shininess 1 + bitmap plc_woodb256 + verts 36 + -0.0573961 0.162176 -0.0182331 + -0.182232 0.125672 -0.0182332 + -0.0573961 0.162176 0.0831078 + -0.182232 0.125672 0.0831078 + -0.182232 -0.125764 -0.0182331 + -0.182232 -0.125764 0.0831078 + -0.0573961 -0.162176 0.0831078 + -0.0573961 -0.162176 -0.0182331 + -0.0562776 0.0450352 0 + -0.0562776 0.0349758 0 + -0.0562776 -0.0459606 0 + -0.0562776 -0.0349757 0 + -0.0562776 -0.0349757 0.0383696 + -0.0573966 0.148504 0.0690388 + -0.0571522 0.0349758 0.0727819 + -0.0573966 0.0450352 0.0690383 + -0.0562776 -0.15043 0 + -0.0571369 -0.0349757 0.0727274 + -0.122169 -0.0459606 -0.00106776 + -0.123288 -0.0459606 0.0679707 + -0.123288 -0.117451 0.0679707 + -0.0562776 0.0349758 0.0383696 + -0.0573961 -0.0459608 0.0690388 + -0.181113 0.0349758 0 + -0.181113 0.0349758 0.0383694 + -0.181113 -0.0349757 0 + -0.181113 -0.0349757 0.0383694 + -0.181973 -0.0349757 0.0727274 + -0.181988 0.0349758 0.0727813 + -0.0573966 -0.151453 0.0690388 + -0.122169 -0.116658 -0.0010678 + -0.122169 0.0450352 -0.00106783 + -0.123288 0.115073 0.0679707 + -0.123288 0.0450349 0.0679707 + -0.0562781 0.151752 0 + -0.122169 0.117591 -0.00106788 + faces 62 + 0 1 2 1 0 1 2 0 + 3 2 1 1 3 2 1 0 + 1 0 4 1 1 0 4 0 + 5 6 3 1 5 6 7 0 + 4 7 5 1 8 9 4 0 + 6 5 7 1 6 4 9 0 + 8 9 0 1 10 11 12 0 + 10 11 12 1 13 14 15 0 + 13 0 2 1 16 12 17 0 + 2 14 15 1 17 18 19 0 + 7 11 10 1 20 21 22 0 + 6 7 16 1 23 20 24 0 + 11 7 9 1 21 20 11 0 + 2 3 6 1 0 7 6 0 + 2 6 17 1 17 23 25 0 + 18 19 20 1 26 27 28 0 + 7 4 0 1 6 4 0 0 + 7 0 9 1 20 12 11 0 + 21 15 14 1 29 30 31 0 + 17 6 22 1 25 23 32 0 + 14 2 17 1 18 17 25 0 + 23 24 1 1 33 34 35 0 + 25 4 26 1 36 37 38 0 + 24 3 1 1 34 39 35 0 + 26 4 5 1 38 37 40 0 + 4 25 23 1 37 36 33 0 + 5 3 27 1 40 39 41 0 + 1 4 23 1 35 37 33 0 + 3 24 28 1 39 34 42 0 + 5 27 26 1 40 41 38 0 + 3 28 27 1 39 42 41 0 + 26 27 17 1 43 44 45 0 + 17 12 26 1 45 46 43 0 + 27 28 14 1 44 47 48 0 + 14 17 27 1 48 45 44 0 + 28 24 21 1 47 49 50 0 + 21 14 28 1 50 48 47 0 + 22 12 17 1 51 15 52 0 + 8 21 9 1 53 29 54 0 + 13 2 15 1 16 17 19 0 + 6 16 29 1 23 24 55 0 + 10 16 7 1 22 24 20 0 + 18 20 30 1 26 28 56 0 + 22 6 29 1 32 23 55 0 + 10 12 22 1 13 15 51 0 + 15 21 8 1 30 29 53 0 + 31 32 33 1 57 58 59 0 + 0 34 8 1 12 60 10 0 + 34 0 13 1 60 12 16 0 + 31 35 32 1 57 61 58 0 + 10 22 19 1 62 63 64 0 + 19 18 10 1 64 65 62 0 + 29 16 30 1 63 62 65 0 + 30 20 29 1 65 64 63 0 + 16 10 18 1 66 67 68 0 + 18 30 16 1 68 69 66 0 + 15 8 31 1 63 62 65 0 + 31 33 15 1 65 64 63 0 + 8 34 35 1 70 71 72 0 + 35 31 8 1 72 73 70 0 + 34 13 32 1 62 63 64 0 + 32 35 34 1 64 65 62 0 + tverts 74 + 0.793788 1.19375 0 + 0.200898 1.19375 0 + 0.793788 0.876553 0 + 0.200899 0.876553 0 + 0.200898 -0.19375 0 + 0.200898 -0.0295805 0 + 0.793788 -0.193751 0 + 0.200899 1.02958 0 + 0.200898 -0.510949 0 + 0.793788 -0.510949 0 + 0.347822 0.275552 0 + 0.347822 0.323101 0 + 0.264458 -0.287324 0 + 0.358929 0.353723 0 + 0.410655 0.349197 0 + 0.410544 0.528249 0 + 0.670141 -0.186951 0 + 0.735542 -0.245814 0 + 0.687237 0.351575 0 + 0.670141 0.302121 0 + 0.264458 1.24581 0 + 0.347822 0.653747 0 + 0.347822 0.70567 0 + 0.735542 1.28732 0 + 0.347822 1.19947 0 + 0.686966 0.682223 0 + 0.324864 -0.255489 0 + 0.675136 -0.232109 0 + 0.675137 0.35404 0 + 0.702434 0.499431 0 + 0.751537 0.639644 0 + 0.703761 0.660985 0 + 0.670141 0.732239 0 + 0.636811 0.329272 0 + 0.476008 0.341572 0 + 0.710758 -0.265867 0 + 0.6375 0.652609 0 + 0.713953 1.23338 0 + 0.476697 0.664909 0 + 0.286047 -0.233381 0 + 0.289243 1.26587 0 + 0.331774 0.674894 0 + 0.330841 0.351556 0 + 0.206211 0.0331836 0 + 0.202131 0.350382 0 + 0.795021 0.350382 0 + 0.799102 0.0331836 0 + 0.202056 0.649619 0 + 0.794946 0.649619 0 + 0.206211 0.33242 0 + 0.799102 0.33242 0 + 0.360554 0.677131 0 + 0.411846 0.689533 0 + 0.749913 0.316235 0 + 0.702545 0.320379 0 + 0.670141 1.23088 0 + 0.324865 0.32497 0 + 0.324864 1.23891 0 + 0.675136 0.687389 0 + 0.675136 1.26229 0 + 0.347822 -0.228873 0 + 0.324863 0.645961 0 + 0.627183 0.363669 0 + 0.621938 0.610917 0 + 0.313034 0.607093 0 + 0.318279 0.359845 0 + 0.799101 -0.143504 0 + 0.799102 0.30339 0 + 0.486159 0.303391 0 + 0.486158 -0.143503 0 + 0.799101 0.69265 0 + 0.799101 1.14916 0 + 0.486158 1.14916 0 + 0.486158 0.69265 0 +endnode +node trimesh box1227 + parent squid + position -0.515334 -0.608207 0.904859 + orientation -0.202233 -0.371147 -0.906285 -0.35114 + wirecolor 0.605469 0.605469 0.605469 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_woodb256 + verts 6 + -0.140501 -0.0117923 0 + 0.0798263 -0.00555469 0.0138262 + 0.0798263 0 0.0250322 + -0.140501 0 0.0237906 + 0.0798263 0.00555425 0.0138262 + -0.140501 0.0117919 0 + faces 6 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 1 4 2 1 1 4 2 0 + 4 5 3 1 4 5 3 0 + 3 2 4 1 3 2 4 0 + 5 0 3 1 5 0 3 0 + tverts 6 + 1 0.929556 0 + 1 0.0728979 0 + 0.904 0.0707369 0 + 0.904 0.927395 0 + 1 0.0736423 0 + 1 0.930301 0 +endnode +node trimesh box1228 + parent squid + position -0.398677 -0.668445 0.584782 + orientation -0.424141 0.672223 0.606812 -0.618336 + wirecolor 0.605469 0.605469 0.605469 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_wood256 + verts 6 + -0.0118116 0.0113199 0.000454914 + 0.0105236 -0.0118138 0.000223801 + -0.0103151 -0.0327661 0.331396 + 0.0105236 0.00853946 -0.00718414 + -0.0103151 -0.00897539 0.331396 + -0.0341058 -0.00897539 0.331396 + faces 6 + 0 1 2 1 0 1 2 0 + 1 3 4 1 1 3 4 0 + 4 2 1 1 4 2 1 0 + 3 0 5 1 5 0 6 0 + 5 4 3 1 6 7 5 0 + 2 5 0 1 2 6 0 0 + tverts 8 + 0.101422 -0.406086 0 + 0.486496 -0.407186 0 + 0.49375 1.44245 0 + 0.678209 -0.442454 0 + 0.69125 1.44245 0 + -0.111791 -0.442454 0 + 0.09875 1.44245 0 + -0.09875 1.44245 0 +endnode +node trimesh box1229 + parent squid + position -0.516723 -0.917598 0.584781 + orientation 0.0635626 0.280906 0.957628 -1.99352 + wirecolor 0.605469 0.605469 0.605469 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_wood256 + verts 6 + -0.0118116 0.01132 0.00045494 + 0.0105236 -0.0118136 0.000223826 + -0.0103151 -0.0327659 0.331397 + 0.0105236 0.00853961 -0.00718413 + -0.0103151 -0.00897524 0.331397 + -0.0341057 -0.00897524 0.331397 + faces 6 + 0 1 2 1 0 1 2 0 + 1 3 4 1 1 3 4 0 + 4 2 1 1 4 2 1 0 + 3 0 5 1 5 0 6 0 + 5 4 3 1 6 7 5 0 + 2 5 0 1 2 6 0 0 + tverts 8 + 0.101422 -0.406086 0 + 0.486496 -0.407186 0 + 0.49375 1.44245 0 + 0.678209 -0.442454 0 + 0.69125 1.44245 0 + -0.111791 -0.442454 0 + 0.09875 1.44245 0 + -0.09875 1.44245 0 +endnode +node trimesh box155574 + parent squid + position 0.0344991 2.20453 0.927303 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_rugdmtlbrk + verts 8 + -0.123386 -0.00777413 0.016455 + 0.0987216 -0.00777413 0.016455 + -0.123386 0.00777343 0.016455 + 0.0987216 0.00777343 0.016455 + -0.123386 -0.00777413 0 + 0.0987216 -0.00777413 0 + 0.0987216 0.00777343 0 + -0.123386 0.00777343 0 + faces 6 + 0 1 2 1 0 1 2 0 + 3 2 1 1 3 2 1 0 + 4 5 0 1 4 5 0 0 + 1 0 5 1 1 0 5 0 + 6 7 3 1 6 7 8 0 + 2 3 7 1 9 8 7 0 + tverts 10 + 0.429814 0.195619 0 + -0.106075 0.19562 0 + 0.429814 0.126021 0 + -0.106075 0.126021 0 + 0.429814 0.121963 0 + -0.106075 0.121963 0 + -0.106075 0.191562 0 + 0.429814 0.191562 0 + -0.106075 0.126987 0 + 0.429814 0.126987 0 +endnode +node trimesh box155575 + parent squid + position 0.175734 2.30998 1.03312 + orientation 0 0 0 0 + wirecolor 0.34375 0.34375 0.34375 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_woodb256 + verts 8 + 0.0261045 0.0877097 -0.0782156 + -0.0261049 0.0876389 -0.0782156 + -0.0261049 -0.0465093 0.105019 + 0.0261045 -0.0465093 0.105055 + -0.0261049 0.0321912 -0.0782156 + -0.0261049 -0.0465093 0.0215144 + 0.0261045 0.0321912 -0.0782156 + 0.0261045 -0.0465093 0.0215144 + faces 8 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 1 4 5 1 4 5 6 0 + 5 2 1 1 6 7 4 0 + 6 0 3 1 5 8 9 0 + 3 7 6 1 9 6 5 0 + 4 6 7 1 10 11 3 0 + 7 5 4 1 3 2 10 0 + tverts 12 + 0.999501 0.9995 0 + 0.896232 0.998972 0 + 0.896232 0.000499636 0 + 0.9995 0.000499547 0 + 0.559436 -0.16494 0 + 0.668086 -0.136102 0 + 0.664532 0.341474 0 + 0.557103 0.707079 0 + 0.559297 -0.164977 0 + 0.557 0.70739 0 + 0.896232 0.586273 0 + 0.9995 0.586272 0 +endnode +node trimesh box155576 + parent squid + position 0.0290938 1.95122 1.09919 + orientation 0 0 0 0 + wirecolor 0.34375 0.34375 0.34375 + ambient 0.85098 0.631373 0.521569 + diffuse 0.85098 0.631373 0.521569 + specular 0 0 0 + shininess 1 + bitmap plc_rugdmtlbrk + verts 24 + -0.0107333 0.0111353 -0.00106672 + -0.0107333 0.245235 -0.166518 + 0.0106933 0.245235 -0.166518 + 0.0106933 0.016087 -0.00459875 + -0.0107333 0.0370317 -0.000665792 + 0.0106933 0.0370317 -0.000665792 + 0.0106933 0.254158 -0.154009 + -0.0107333 0.254158 -0.154009 + 0.0242556 -0.00757561 -0.000278067 + -0.0242551 -0.00757561 -0.000278067 + -0.0242551 0.0043158 0.0163929 + 0.0242556 0.0043158 0.0163929 + 0.00220957 -0.0415775 0.0108666 + 0.0334726 -0.0212868 0.0141186 + 0.0334726 -0.0137605 0.0246699 + 0.000690115 -0.0351085 0.0189491 + -0.033472 -0.0137605 0.0246699 + -0.033472 -0.0212868 0.0141186 + 0.0261506 -0.0489882 0.0320505 + -0.02615 -0.0489882 0.0320505 + 0.0261506 -0.041462 0.0426019 + -0.02615 -0.041462 0.0426019 + 0 -0.0592095 0.0525672 + 0 -0.0478199 0.058751 + faces 42 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 6 1 4 5 2 0 + 6 7 4 1 2 1 4 0 + 3 2 6 1 6 7 8 0 + 6 5 3 1 8 9 6 0 + 1 0 4 1 7 10 9 0 + 4 7 1 1 9 8 7 0 + 0 3 8 1 0 3 11 0 + 8 9 0 1 11 12 0 0 + 5 4 10 1 5 4 12 0 + 10 11 5 1 12 11 5 0 + 3 5 11 1 6 9 13 0 + 11 8 3 1 13 14 6 0 + 4 0 9 1 4 0 12 0 + 9 10 4 1 14 13 9 0 + 12 8 13 1 15 11 16 0 + 8 12 9 1 11 15 12 0 + 8 11 14 1 14 13 17 0 + 14 13 8 1 17 18 14 0 + 15 10 16 1 19 12 20 0 + 10 15 11 1 12 19 11 0 + 10 9 17 1 13 14 18 0 + 17 16 10 1 18 17 13 0 + 12 13 18 1 15 16 21 0 + 18 19 12 1 21 22 15 0 + 13 14 20 1 18 17 23 0 + 20 18 13 1 23 24 18 0 + 14 11 15 1 16 11 19 0 + 15 20 14 1 19 21 16 0 + 16 17 19 1 17 18 24 0 + 19 21 16 1 24 23 17 0 + 19 18 22 1 22 21 25 0 + 22 20 23 1 26 27 28 0 + 20 22 18 1 27 26 29 0 + 20 21 23 1 21 22 30 0 + 21 19 22 1 27 29 26 0 + 22 23 21 1 26 28 27 0 + 15 16 21 1 19 20 22 0 + 20 15 21 1 21 19 22 0 + 12 19 17 1 15 22 20 0 + 9 12 17 1 12 15 20 0 + tverts 31 + 0.472242 0.305277 0 + 1.23524 0.305277 0 + 1.23524 0.227291 0 + 0.487255 0.227291 0 + 0.523707 0.305277 0 + 0.523707 0.227291 0 + 0.38394 0.167362 0 + 1.0212 0.167362 0 + 1.0212 0.205287 0 + 0.415 0.205287 0 + 0.37115 0.167362 0 + 0.433512 0.177928 0 + 0.433512 0.354493 0 + 0.33816 0.192673 0 + 0.33816 0.142127 0 + 0.34921 0.258169 0 + 0.385323 0.144381 0 + 0.2971 0.183395 0 + 0.2971 0.151404 0 + 0.350624 0.2637 0 + 0.385323 0.38804 0 + 0.286192 0.144381 0 + 0.286192 0.38804 0 + 0.21265 0.183395 0 + 0.21265 0.151404 0 + 0.236243 0.192375 0 + 0.17009 0.177981 0 + 0.27002 0.15395 0 + 0.18204 0.206734 0 + 0.27002 0.121959 0 + 0.250267 0.280264 0 +endnode +node trimesh box155577 + parent squid + position 0.0344998 1.99702 0.933933 + orientation 0 0 0 0 + wirecolor 0.582031 0.582031 0.582031 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_rugdmtlbrk + verts 6 + -0.123385 -0.00777405 0.00982519 + 0.123386 -0.00777405 0.00982519 + -0.123385 0.0077736 0.00982519 + 0.123386 0.0077736 0.00982519 + -0.123385 0 -0.00662967 + 0.123386 0 -0.00662967 + faces 7 + 0 1 2 1 0 1 2 0 + 3 2 1 1 3 2 1 0 + 4 5 0 1 4 5 0 0 + 1 0 5 1 1 0 5 0 + 0 2 4 1 6 7 8 0 + 5 4 3 1 9 10 11 0 + 2 3 4 1 12 11 10 0 + tverts 13 + 0.840238 0.195613 0 + 0.14564 0.19562 0 + 0.839023 0.126025 0 + 0.14564 0.126021 0 + 0.838952 0.121968 0 + 0.14564 0.121963 0 + 0.429814 0.196586 0 + 0.429814 0.126987 0 + 0.429814 0.191562 0 + 0.14564 0.191562 0 + 0.840167 0.191556 0 + 0.14564 0.126987 0 + 0.83904 0.126991 0 +endnode +node trimesh box155719 + parent squid + position 0.123365 1.87765 0.85814 + orientation 0 0 0 0 + wirecolor 0.582031 0.582031 0.582031 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_creats + verts 8 + -0.0312598 -0.00940307 0 + -0.0312598 0.00940356 0 + 0.0312601 0.00940356 0 + 0.0312601 -0.00940307 0 + -0.0312598 -0.00940307 0.0233178 + 0.0312601 -0.00940307 0.0233178 + 0.0312601 0.00940356 0.0233178 + -0.0312598 0.00940356 0.0233178 + faces 12 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 6 1 3 0 1 0 + 6 7 4 1 1 2 3 0 + 0 3 5 1 3 0 1 0 + 5 4 0 1 1 2 3 0 + 3 2 6 1 3 0 1 0 + 6 5 3 1 1 2 3 0 + 2 1 7 1 3 0 1 0 + 7 6 2 1 1 2 3 0 + 1 0 4 1 3 0 1 0 + 4 7 1 1 1 2 3 0 + tverts 4 + 0.643438 0.941449 0 + 0.643438 1 0 + 0.368581 1 0 + 0.368581 0.941449 0 +endnode +node trimesh box155722 + parent squid + position -0.242699 -0.114283 0.698523 + orientation 0 0 -1 -3.08923 + wirecolor 0.582031 0.582031 0.582031 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_creats + verts 8 + -0.0565188 0.116606 0.00158191 + -0.0552689 0.163156 0 + 0.0552686 0.163156 0 + 0.0531665 0.116606 0.00158191 + -0.0565188 0.116606 0.0424906 + 0.0531665 0.116606 0.0424906 + 0.0552686 0.163156 0.0412264 + -0.0552689 0.163156 0.0412264 + faces 12 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 6 1 3 0 1 0 + 6 7 4 1 1 2 3 0 + 0 3 5 1 3 0 1 0 + 5 4 0 1 1 2 3 0 + 3 2 6 1 3 0 1 0 + 6 5 3 1 1 2 3 0 + 2 1 7 1 3 0 1 0 + 7 6 2 1 1 2 3 0 + 1 0 4 1 3 0 1 0 + 4 7 1 1 1 2 3 0 + tverts 4 + 0.643438 0.941449 0 + 0.643438 1 0 + 0.368581 1 0 + 0.368581 0.941449 0 +endnode +node trimesh box155723 + parent squid + position 0.199985 -0.137483 0.698524 + orientation 0 0 -1 -3.08923 + wirecolor 0.691406 0.691406 0.691406 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_creats + verts 8 + -0.0531044 0.116606 0.00158186 + -0.0552686 0.163156 0 + 0.0552684 0.163156 0 + 0.0565809 0.116606 0.00158186 + -0.0531044 0.116606 0.0428286 + 0.0565809 0.116606 0.0428286 + 0.0552684 0.163156 0.041567 + -0.0552686 0.163156 0.041567 + faces 12 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 6 1 3 0 1 0 + 6 7 4 1 1 2 3 0 + 0 3 5 1 3 0 1 0 + 5 4 0 1 1 2 3 0 + 3 2 6 1 3 0 1 0 + 6 5 3 1 1 2 3 0 + 2 1 7 1 3 0 1 0 + 7 6 2 1 1 2 3 0 + 1 0 4 1 3 0 1 0 + 4 7 1 1 1 2 3 0 + tverts 4 + 0.643438 0.941449 0 + 0.643438 1 0 + 0.368581 1 0 + 0.368581 0.941449 0 +endnode +node trimesh torus01 + parent squid + position 0.0146315 1.47225 0.875639 + orientation 0 0 0 0 + wirecolor 0.839844 0.839844 0.839844 + ambient 0.72549 0.560784 0.211765 + diffuse 0.72549 0.560784 0.211765 + specular 0 0 0 + shininess 1 + bitmap plc_rugdmtlbrk + verts 27 + 0 0.0274546 0 + 0.0149815 0.0178544 0.00239449 + 0.0176474 0.0210314 0 + 0 0.0233072 0.00239449 + 0.0149815 0.0178544 -0.00239447 + 0 0.0233072 -0.00239447 + 0.022953 0.00404741 0.00239449 + 0.0270373 0.0047676 0 + 0.022953 0.00404741 -0.00239447 + 0.0201846 -0.0116533 0.00239449 + 0.0237762 -0.013727 0 + 0.0201846 -0.0116533 -0.00239447 + 0.00797156 -0.0219012 0.00239449 + 0.00939007 -0.0257985 0 + 0.00797156 -0.0219012 -0.00239447 + -0.00797133 -0.0219012 0.00239449 + -0.00938979 -0.0257985 0 + -0.00797133 -0.0219012 -0.00239447 + -0.0201843 -0.0116533 0.00239449 + -0.023776 -0.013727 0 + -0.0201843 -0.0116533 -0.00239447 + -0.0229527 0.00404741 0.00239449 + -0.0270371 0.0047676 0 + -0.0229527 0.00404741 -0.00239447 + -0.0149813 0.0178544 0.00239449 + -0.0176472 0.0210314 0 + -0.0149813 0.0178544 -0.00239447 + faces 54 + 0 1 2 1 0 1 2 0 + 0 3 1 1 0 3 1 0 + 3 4 1 1 3 4 1 0 + 3 5 4 1 3 5 4 0 + 5 2 4 1 5 6 4 0 + 5 0 2 1 5 7 6 0 + 2 6 7 1 2 8 9 0 + 2 1 6 1 2 1 8 0 + 1 8 6 1 1 10 8 0 + 1 4 8 1 1 4 10 0 + 4 7 8 1 4 11 10 0 + 4 2 7 1 4 6 11 0 + 7 9 10 1 9 12 13 0 + 7 6 9 1 9 8 12 0 + 6 11 9 1 8 14 12 0 + 6 8 11 1 8 10 14 0 + 8 10 11 1 10 15 14 0 + 8 7 10 1 10 11 15 0 + 10 12 13 1 13 16 17 0 + 10 9 12 1 13 12 16 0 + 9 14 12 1 12 18 16 0 + 9 11 14 1 12 14 18 0 + 11 13 14 1 14 19 18 0 + 11 10 13 1 14 15 19 0 + 13 15 16 1 17 20 21 0 + 13 12 15 1 17 16 20 0 + 12 17 15 1 16 22 20 0 + 12 14 17 1 16 18 22 0 + 14 16 17 1 18 23 22 0 + 14 13 16 1 18 19 23 0 + 16 18 19 1 21 24 25 0 + 16 15 18 1 21 20 24 0 + 15 20 18 1 20 26 24 0 + 15 17 20 1 20 22 26 0 + 17 19 20 1 22 27 26 0 + 17 16 19 1 22 23 27 0 + 19 21 22 1 25 28 29 0 + 19 18 21 1 25 24 28 0 + 18 23 21 1 24 30 28 0 + 18 20 23 1 24 26 30 0 + 20 22 23 1 26 31 30 0 + 20 19 22 1 26 27 31 0 + 22 24 25 1 29 32 33 0 + 22 21 24 1 29 28 32 0 + 21 26 24 1 28 34 32 0 + 21 23 26 1 28 30 34 0 + 23 25 26 1 30 35 34 0 + 23 22 25 1 30 31 35 0 + 25 3 0 1 33 36 37 0 + 25 24 3 1 33 32 36 0 + 24 5 3 1 32 38 36 0 + 24 26 5 1 32 34 38 0 + 26 0 5 1 34 39 38 0 + 26 25 0 1 34 35 39 0 + tverts 40 + -0.00436155 0.0997826 0 + 0.10675 0.167303 0 + 0.10675 0.0997826 0 + -0.00436155 0.167303 0 + 0.10675 0.234823 0 + -0.00436155 0.234823 0 + 0.10675 0.302343 0 + -0.00436154 0.302343 0 + 0.217861 0.167303 0 + 0.217861 0.0997826 0 + 0.217861 0.234823 0 + 0.217861 0.302343 0 + 0.328972 0.167303 0 + 0.328972 0.0997826 0 + 0.328972 0.234823 0 + 0.328972 0.302343 0 + 0.440083 0.167303 0 + 0.440083 0.0997826 0 + 0.440083 0.234823 0 + 0.440083 0.302343 0 + 0.551194 0.167303 0 + 0.551194 0.0997826 0 + 0.551194 0.234823 0 + 0.551194 0.302343 0 + 0.662305 0.167303 0 + 0.662305 0.0997826 0 + 0.662305 0.234823 0 + 0.662305 0.302343 0 + 0.773416 0.167303 0 + 0.773416 0.0997826 0 + 0.773416 0.234823 0 + 0.773416 0.302343 0 + 0.884527 0.167303 0 + 0.884527 0.0997826 0 + 0.884527 0.234823 0 + 0.884527 0.302343 0 + 0.995638 0.167303 0 + 0.995638 0.0997826 0 + 0.995638 0.234823 0 + 0.995638 0.302343 0 +endnode +node trimesh cone01 + parent squid + position 0.0423651 2.15005 0.592484 + orientation 1 0 0 -1.5708 + wirecolor 0.347656 0.347656 0.347656 + ambient 0.523438 0.230469 0.03125 + diffuse 0.523438 0.230469 0.03125 + specular 0 0 0 + shininess 1 + bitmap squid + verts 146 + -0.000460012 0.0159271 -0.0820854 + -0.241709 0.0159272 -0.0820854 + -0.232578 -0.0104702 -0.0758273 + -0.207466 -0.0345173 -0.0674136 + -0.168505 -0.0543475 -0.0585305 + -0.118655 -0.0688371 -0.0509273 + -0.0613411 -0.0775507 -0.0459033 + -0.000247594 -0.080444 -0.0441595 + 0.0608268 -0.0775502 -0.0459033 + 0.118083 -0.0688371 -0.0509273 + 0.167849 -0.0543475 -0.0585305 + 0.206711 -0.0345173 -0.0674136 + 0.231729 -0.0104702 -0.0758273 + 0.240789 0.0159271 -0.0820854 + 0.23299 0.0423245 -0.0852282 + 0.208862 0.0663714 -0.0853779 + 0.170271 0.0862017 -0.0835563 + 0.120099 0.100691 -0.0811135 + 0.0618873 0.109404 -0.0791926 + -0.000439838 0.112299 -0.0784793 + -0.0627753 0.109404 -0.0791926 + -0.121009 0.100691 -0.0811135 + -0.171208 0.0862017 -0.0835563 + -0.209819 0.0663714 -0.0853779 + -0.233946 0.0423245 -0.0852282 + -0.199391 0.0159272 0.608205 + -0.192029 -0.00545588 0.609157 + -0.171534 -0.0250727 0.60769 + -0.139543 -0.0414585 0.60458 + -0.0984111 -0.0536241 0.60098 + -0.0509632 -0.0610501 0.59816 + -0.000301657 -0.0635402 0.597101 + 0.0503454 -0.0610501 0.59816 + 0.0977508 -0.0536241 0.60098 + 0.138819 -0.0414585 0.60458 + 0.170738 -0.0250727 0.60769 + 0.191163 -0.00545588 0.609157 + 0.198472 0.0159272 0.608205 + 0.191999 0.0373102 0.604682 + 0.172166 0.0569267 0.599081 + 0.140431 0.0733128 0.592437 + 0.0990908 0.0854787 0.586165 + 0.051039 0.0929047 0.581674 + -0.00046018 0.0953943 0.580045 + -0.0519636 0.0929047 0.581674 + -0.100028 0.0854787 0.586165 + -0.141382 0.0733128 0.592437 + -0.173125 0.0569267 0.599081 + -0.19295 0.0373102 0.604682 + -0.157073 0.0159272 1.2771 + -0.151393 -0.000663019 1.27542 + -0.135399 -0.0159719 1.26988 + -0.110304 -0.0288936 1.26209 + -0.0779058 -0.0386101 1.25421 + -0.0404265 -0.0446101 1.24842 + -0.000348561 -0.0466349 1.2463 + 0.0397193 -0.04461 1.24842 + 0.0771696 -0.0386101 1.25421 + 0.109523 -0.0288936 1.26209 + 0.134568 -0.0159719 1.26988 + 0.150513 -0.00066305 1.27542 + 0.156153 0.0159272 1.2771 + 0.151016 0.0325174 1.27432 + 0.135429 0.0478262 1.26773 + 0.110495 0.0607477 1.25898 + 0.0779735 0.0704642 1.25032 + 0.0401229 0.0764637 1.24402 + -0.000473363 0.078489 1.24172 + -0.0410719 0.0764642 1.24402 + -0.0789276 0.0704642 1.25032 + -0.111454 0.0607477 1.25898 + -0.136387 0.0478262 1.26773 + -0.151962 0.0325174 1.27432 + -0.114755 0.0159272 1.93223 + -0.110685 0.0039555 1.92985 + -0.0990984 -0.00714173 1.92418 + -0.0808378 -0.016584 1.91666 + -0.0571851 -0.023752 1.90926 + -0.0297565 -0.0282159 1.90387 + -0.000388312 -0.0297304 1.90191 + 0.0289735 -0.0282159 1.90387 + 0.0563843 -0.023752 1.90926 + 0.080009 -0.016584 1.91666 + 0.098238 -0.00714178 1.92418 + 0.109792 0.0039555 1.92985 + 0.113835 0.0159272 1.93223 + 0.110051 0.0278989 1.93075 + 0.0986799 0.0389962 1.92586 + 0.0805059 0.0484385 1.91898 + 0.0567895 0.0556061 1.91203 + 0.0291645 0.06007 1.90691 + -0.000479391 0.0615847 1.90503 + -0.0301236 0.06007 1.90691 + -0.0577487 0.0556061 1.91203 + -0.0814645 0.0484385 1.91898 + -0.0996325 0.0389962 1.92586 + -0.110991 0.0278989 1.93075 + -0.0724378 0.0159272 2.58125 + -0.0699162 0.00844681 2.57939 + -0.0626632 0.00149083 2.57576 + -0.0511907 -0.00446064 2.57118 + -0.03629 -0.00900811 2.56675 + -0.0189771 -0.0118562 2.56356 + -0.000420905 -0.0128256 2.56241 + 0.018132 -0.0118562 2.56356 + 0.0354355 -0.00900811 2.56675 + 0.050322 -0.00446064 2.57118 + 0.0617774 0.00149082 2.57576 + 0.0690125 0.00844681 2.57939 + 0.0715173 0.0159272 2.58125 + 0.0691087 0.0234076 2.58098 + 0.0619413 0.0303635 2.57882 + 0.0505031 0.0363151 2.57549 + 0.0355777 0.0408625 2.57201 + 0.0181872 0.0437106 2.56941 + -0.000478261 0.0446801 2.56845 + -0.0191431 0.0437106 2.56941 + -0.0365315 0.0408625 2.57201 + -0.0514534 0.0363151 2.57549 + -0.0628847 0.0303635 2.57882 + -0.0700419 0.0234076 2.58098 + -0.0301194 0.0159272 3.23179 + -0.0290958 0.012858 3.23101 + -0.026122 0.00999897 3.2299 + -0.0214024 0.00754536 3.22862 + -0.0152598 0.00566401 3.22741 + -0.00811257 0.00448211 3.22658 + -0.000446337 0.00407914 3.22627 + 0.00721886 0.00448211 3.22658 + 0.014363 0.00566401 3.22741 + 0.020501 0.00754536 3.22862 + 0.0252149 0.00999897 3.2299 + 0.0281825 0.012858 3.23101 + 0.0291996 0.0159272 3.23179 + 0.028195 0.0189964 3.2321 + 0.0252356 0.0218555 3.23199 + 0.0205219 0.0243091 3.23154 + 0.0143752 0.0261904 3.23101 + 0.00721484 0.0273723 3.23059 + -0.000469971 0.0277753 3.23043 + -0.00815417 0.0273723 3.23059 + -0.0153128 0.0261904 3.23101 + -0.0214567 0.0243091 3.23154 + -0.0261664 0.0218555 3.23199 + -0.0291209 0.0189964 3.2321 + -0.00045991 0.0159272 3.22867 + faces 288 + 0 2 1 1 0 2 1 1 + 0 3 2 1 0 3 2 1 + 0 4 3 1 0 4 3 1 + 0 5 4 1 0 5 4 1 + 0 6 5 1 0 6 5 1 + 0 7 6 1 0 7 146 1 + 0 8 7 1 0 8 7 1 + 0 9 8 1 0 9 8 1 + 0 10 9 1 0 10 9 1 + 0 11 10 1 0 11 10 1 + 0 12 11 1 0 12 11 1 + 0 13 12 1 0 13 12 1 + 0 14 13 1 0 14 13 1 + 0 15 14 1 0 15 14 1 + 0 16 15 1 0 16 15 1 + 0 17 16 1 0 17 16 1 + 0 18 17 1 0 18 17 1 + 0 19 18 1 0 19 18 1 + 0 20 19 1 0 20 19 1 + 0 21 20 1 0 21 20 1 + 0 22 21 1 0 22 21 1 + 0 23 22 1 0 23 22 1 + 0 24 23 1 0 24 23 1 + 0 1 24 1 0 1 24 1 + 1 26 25 1 1 26 25 2 + 1 2 26 1 1 2 26 2 + 2 27 26 1 2 27 26 2 + 2 3 27 1 2 3 27 2 + 3 28 27 1 3 28 27 2 + 3 4 28 1 3 4 28 2 + 4 29 28 1 4 29 28 2 + 4 5 29 1 4 5 29 2 + 5 30 29 1 5 30 29 2 + 5 6 30 1 5 6 30 2 + 6 31 30 1 146 31 147 2 + 6 7 31 1 146 7 31 2 + 7 32 31 1 7 32 31 2 + 7 8 32 1 7 8 32 2 + 8 33 32 1 8 33 32 2 + 8 9 33 1 8 9 33 2 + 9 34 33 1 9 34 33 2 + 9 10 34 1 9 10 34 2 + 10 35 34 1 10 35 34 2 + 10 11 35 1 10 11 35 2 + 11 36 35 1 11 36 35 2 + 11 12 36 1 11 12 36 2 + 12 37 36 1 12 37 36 2 + 12 13 37 1 12 13 37 2 + 13 38 37 1 13 38 37 2 + 13 14 38 1 13 14 38 2 + 14 39 38 1 14 39 38 2 + 14 15 39 1 14 15 39 2 + 15 40 39 1 15 40 39 2 + 15 16 40 1 15 16 40 2 + 16 41 40 1 16 41 40 2 + 16 17 41 1 16 17 41 2 + 17 42 41 1 17 42 41 2 + 17 18 42 1 17 18 42 2 + 18 43 42 1 18 43 42 2 + 18 19 43 1 18 19 43 2 + 19 44 43 1 19 44 43 2 + 19 20 44 1 19 20 44 2 + 20 45 44 1 20 45 44 2 + 20 21 45 1 20 21 45 2 + 21 46 45 1 21 46 45 2 + 21 22 46 1 21 22 46 2 + 22 47 46 1 22 47 46 2 + 22 23 47 1 22 23 47 2 + 23 48 47 1 23 48 47 2 + 23 24 48 1 23 24 48 2 + 24 25 48 1 24 25 48 2 + 24 1 25 1 24 1 25 2 + 25 50 49 1 25 50 49 2 + 25 26 50 1 25 26 50 2 + 26 51 50 1 26 51 50 2 + 26 27 51 1 26 27 51 2 + 27 52 51 1 27 52 51 2 + 27 28 52 1 27 28 52 2 + 28 53 52 1 28 53 52 2 + 28 29 53 1 28 29 53 2 + 29 54 53 1 29 54 53 2 + 29 30 54 1 29 30 54 2 + 30 55 54 1 147 55 148 2 + 30 31 55 1 147 31 55 2 + 31 56 55 1 31 56 55 2 + 31 32 56 1 31 32 56 2 + 32 57 56 1 32 57 56 2 + 32 33 57 1 32 33 57 2 + 33 58 57 1 33 58 57 2 + 33 34 58 1 33 34 58 2 + 34 59 58 1 34 59 58 2 + 34 35 59 1 34 35 59 2 + 35 60 59 1 35 60 59 2 + 35 36 60 1 35 36 60 2 + 36 61 60 1 36 61 60 2 + 36 37 61 1 36 37 61 2 + 37 62 61 1 37 62 61 2 + 37 38 62 1 37 38 62 2 + 38 63 62 1 38 63 62 2 + 38 39 63 1 38 39 63 2 + 39 64 63 1 39 64 63 2 + 39 40 64 1 39 40 64 2 + 40 65 64 1 40 65 64 2 + 40 41 65 1 40 41 65 2 + 41 66 65 1 41 66 65 2 + 41 42 66 1 41 42 66 2 + 42 67 66 1 42 67 66 2 + 42 43 67 1 42 43 67 2 + 43 68 67 1 43 68 67 2 + 43 44 68 1 43 44 68 2 + 44 69 68 1 44 69 68 2 + 44 45 69 1 44 45 69 2 + 45 70 69 1 45 70 69 2 + 45 46 70 1 45 46 70 2 + 46 71 70 1 46 71 70 2 + 46 47 71 1 46 47 71 2 + 47 72 71 1 47 72 71 2 + 47 48 72 1 47 48 72 2 + 48 49 72 1 48 49 72 2 + 48 25 49 1 48 25 49 2 + 49 74 73 1 49 74 73 2 + 49 50 74 1 49 50 74 2 + 50 75 74 1 50 75 74 2 + 50 51 75 1 50 51 75 2 + 51 76 75 1 51 76 75 2 + 51 52 76 1 51 52 76 2 + 52 77 76 1 52 77 76 2 + 52 53 77 1 52 53 77 2 + 53 78 77 1 53 78 77 2 + 53 54 78 1 53 54 78 2 + 54 79 78 1 148 79 149 2 + 54 55 79 1 148 55 79 2 + 55 80 79 1 55 80 79 2 + 55 56 80 1 55 56 80 2 + 56 81 80 1 56 81 80 2 + 56 57 81 1 56 57 81 2 + 57 82 81 1 57 82 81 2 + 57 58 82 1 57 58 82 2 + 58 83 82 1 58 83 82 2 + 58 59 83 1 58 59 83 2 + 59 84 83 1 59 84 83 2 + 59 60 84 1 59 60 84 2 + 60 85 84 1 60 85 84 2 + 60 61 85 1 60 61 85 2 + 61 86 85 1 61 86 85 2 + 61 62 86 1 61 62 86 2 + 62 87 86 1 62 87 86 2 + 62 63 87 1 62 63 87 2 + 63 88 87 1 63 88 87 2 + 63 64 88 1 63 64 88 2 + 64 89 88 1 64 89 88 2 + 64 65 89 1 64 65 89 2 + 65 90 89 1 65 90 89 2 + 65 66 90 1 65 66 90 2 + 66 91 90 1 66 91 90 2 + 66 67 91 1 66 67 91 2 + 67 92 91 1 67 92 91 2 + 67 68 92 1 67 68 92 2 + 68 93 92 1 68 93 92 2 + 68 69 93 1 68 69 93 2 + 69 94 93 1 69 94 93 2 + 69 70 94 1 69 70 94 2 + 70 95 94 1 70 95 94 2 + 70 71 95 1 70 71 95 2 + 71 96 95 1 71 96 95 2 + 71 72 96 1 71 72 96 2 + 72 73 96 1 72 73 96 2 + 72 49 73 1 72 49 73 2 + 73 98 97 1 73 98 97 2 + 73 74 98 1 73 74 98 2 + 74 99 98 1 74 99 98 2 + 74 75 99 1 74 75 99 2 + 75 100 99 1 75 100 99 2 + 75 76 100 1 75 76 100 2 + 76 101 100 1 76 101 100 2 + 76 77 101 1 76 77 101 2 + 77 102 101 1 77 102 101 2 + 77 78 102 1 77 78 102 2 + 78 103 102 1 149 103 150 2 + 78 79 103 1 149 79 103 2 + 79 104 103 1 79 104 103 2 + 79 80 104 1 79 80 104 2 + 80 105 104 1 80 105 104 2 + 80 81 105 1 80 81 105 2 + 81 106 105 1 81 106 105 2 + 81 82 106 1 81 82 106 2 + 82 107 106 1 82 107 106 2 + 82 83 107 1 82 83 107 2 + 83 108 107 1 83 108 107 2 + 83 84 108 1 83 84 108 2 + 84 109 108 1 84 109 108 2 + 84 85 109 1 84 85 109 2 + 85 110 109 1 85 110 109 2 + 85 86 110 1 85 86 110 2 + 86 111 110 1 86 111 110 2 + 86 87 111 1 86 87 111 2 + 87 112 111 1 87 112 111 2 + 87 88 112 1 87 88 112 2 + 88 113 112 1 88 113 112 2 + 88 89 113 1 88 89 113 2 + 89 114 113 1 89 114 113 2 + 89 90 114 1 89 90 114 2 + 90 115 114 1 90 115 114 2 + 90 91 115 1 90 91 115 2 + 91 116 115 1 91 116 115 2 + 91 92 116 1 91 92 116 2 + 92 117 116 1 92 117 116 2 + 92 93 117 1 92 93 117 2 + 93 118 117 1 93 118 117 2 + 93 94 118 1 93 94 118 2 + 94 119 118 1 94 119 118 2 + 94 95 119 1 94 95 119 2 + 95 120 119 1 95 120 119 2 + 95 96 120 1 95 96 120 2 + 96 97 120 1 96 97 120 2 + 96 73 97 1 96 73 97 2 + 97 122 121 1 97 122 121 2 + 97 98 122 1 97 98 122 2 + 98 123 122 1 98 123 122 2 + 98 99 123 1 98 99 123 2 + 99 124 123 1 99 124 123 2 + 99 100 124 1 99 100 124 2 + 100 125 124 1 100 125 124 2 + 100 101 125 1 100 101 125 2 + 101 126 125 1 101 126 125 2 + 101 102 126 1 101 102 126 2 + 102 127 126 1 150 127 151 2 + 102 103 127 1 150 103 127 2 + 103 128 127 1 103 128 127 2 + 103 104 128 1 103 104 128 2 + 104 129 128 1 104 129 128 2 + 104 105 129 1 104 105 129 2 + 105 130 129 1 105 130 129 2 + 105 106 130 1 105 106 130 2 + 106 131 130 1 106 131 130 2 + 106 107 131 1 106 107 131 2 + 107 132 131 1 107 132 131 2 + 107 108 132 1 107 108 132 2 + 108 133 132 1 108 133 132 2 + 108 109 133 1 108 109 133 2 + 109 134 133 1 109 134 133 2 + 109 110 134 1 109 110 134 2 + 110 135 134 1 110 135 134 2 + 110 111 135 1 110 111 135 2 + 111 136 135 1 111 136 135 2 + 111 112 136 1 111 112 136 2 + 112 137 136 1 112 137 136 2 + 112 113 137 1 112 113 137 2 + 113 138 137 1 113 138 137 2 + 113 114 138 1 113 114 138 2 + 114 139 138 1 114 139 138 2 + 114 115 139 1 114 115 139 2 + 115 140 139 1 115 140 139 2 + 115 116 140 1 115 116 140 2 + 116 141 140 1 116 141 140 2 + 116 117 141 1 116 117 141 2 + 117 142 141 1 117 142 141 2 + 117 118 142 1 117 118 142 2 + 118 143 142 1 118 143 142 2 + 118 119 143 1 118 119 143 2 + 119 144 143 1 119 144 143 2 + 119 120 144 1 119 120 144 2 + 120 121 144 1 120 121 144 2 + 120 97 121 1 120 97 121 2 + 145 121 122 1 145 121 122 0 + 145 122 123 1 145 122 123 0 + 145 123 124 1 145 123 124 0 + 145 124 125 1 145 124 125 0 + 145 125 126 1 145 125 126 0 + 145 126 127 1 145 151 127 0 + 145 127 128 1 145 127 128 0 + 145 128 129 1 145 128 129 0 + 145 129 130 1 145 129 130 0 + 145 130 131 1 145 130 131 0 + 145 131 132 1 145 131 132 0 + 145 132 133 1 145 132 133 0 + 145 133 134 1 145 133 134 0 + 145 134 135 1 145 134 135 0 + 145 135 136 1 145 135 136 0 + 145 136 137 1 145 136 137 0 + 145 137 138 1 145 137 138 0 + 145 138 139 1 145 138 139 0 + 145 139 140 1 145 139 140 0 + 145 140 141 1 145 140 141 0 + 145 141 142 1 145 141 142 0 + 145 142 143 1 145 142 143 0 + 145 143 144 1 145 143 144 0 + 145 144 121 1 145 144 121 0 + tverts 152 + 0.5 0.00149101 0 + 0.75 0.00149101 0 + 0.757225 0.00337553 0 + 0.765444 0.0059092 0 + 0.776344 0.00858426 0 + 0.794406 0.0108738 0 + 0.837563 0.0123867 0 + 0.000878208 0.0129119 0 + 0.162907 0.0123867 0 + 0.205718 0.0108738 0 + 0.223696 0.00858426 0 + 0.234568 0.0059092 0 + 0.242777 0.00337553 0 + 0.25 0.00149101 0 + 0.257184 0.000544757 0 + 0.265274 0.000499487 0 + 0.275937 0.00104806 0 + 0.293578 0.0017837 0 + 0.335884 0.00236219 0 + 0.499916 0.00257701 0 + 0.664079 0.00236219 0 + 0.706418 0.0017837 0 + 0.724066 0.00104806 0 + 0.734728 0.000499487 0 + 0.742817 0.000544757 0 + 0.75 0.209359 0 + 0.757092 0.209646 0 + 0.765191 0.209206 0 + 0.775998 0.208268 0 + 0.793989 0.207185 0 + 0.837045 0.206336 0 + 0.000793974 0.206016 0 + 0.163376 0.206336 0 + 0.206122 0.207185 0 + 0.224038 0.208268 0 + 0.23482 0.209206 0 + 0.24291 0.209646 0 + 0.25 0.209359 0 + 0.257059 0.2083 0 + 0.265055 0.206612 0 + 0.27567 0.204612 0 + 0.293316 0.202722 0 + 0.335671 0.201371 0 + 0.500001 0.20088 0 + 0.664336 0.201371 0 + 0.706691 0.202722 0 + 0.724335 0.204612 0 + 0.734948 0.206612 0 + 0.742942 0.2083 0 + 0.75 0.410785 0 + 0.756984 0.410281 0 + 0.764985 0.408613 0 + 0.775716 0.406264 0 + 0.793643 0.403892 0 + 0.836603 0.402149 0 + 0.000709818 0.401511 0 + 0.163771 0.402149 0 + 0.206455 0.403892 0 + 0.224316 0.406265 0 + 0.235025 0.408613 0 + 0.243018 0.410281 0 + 0.25 0.410785 0 + 0.256959 0.40995 0 + 0.264881 0.407965 0 + 0.275463 0.405329 0 + 0.29312 0.402723 0 + 0.335528 0.400826 0 + 0.500085 0.400133 0 + 0.664522 0.400826 0 + 0.706898 0.402723 0 + 0.724546 0.405329 0 + 0.735123 0.407965 0 + 0.743042 0.40995 0 + 0.75 0.608068 0 + 0.756901 0.607352 0 + 0.764826 0.605643 0 + 0.775495 0.60338 0 + 0.793366 0.601148 0 + 0.836234 0.599527 0 + 0.000625767 0.598936 0 + 0.164094 0.599527 0 + 0.20672 0.601148 0 + 0.224533 0.60338 0 + 0.235183 0.605643 0 + 0.243101 0.607352 0 + 0.25 0.608068 0 + 0.256883 0.607619 0 + 0.264751 0.60615 0 + 0.275313 0.604079 0 + 0.292988 0.601984 0 + 0.335453 0.600442 0 + 0.500169 0.599877 0 + 0.664639 0.600442 0 + 0.70704 0.601984 0 + 0.724698 0.604079 0 + 0.735253 0.60615 0 + 0.743118 0.607619 0 + 0.75 0.803509 0 + 0.756843 0.802949 0 + 0.764713 0.801854 0 + 0.775335 0.800474 0 + 0.793156 0.799142 0 + 0.835937 0.798182 0 + 0.000542084 0.797834 0 + 0.164346 0.798182 0 + 0.206919 0.799142 0 + 0.224691 0.800474 0 + 0.235295 0.801854 0 + 0.243159 0.802949 0 + 0.25 0.803509 0 + 0.256832 0.803429 0 + 0.264667 0.802777 0 + 0.275221 0.801773 0 + 0.292919 0.800724 0 + 0.335446 0.799941 0 + 0.500253 0.799652 0 + 0.664688 0.799941 0 + 0.707119 0.800724 0 + 0.724794 0.801773 0 + 0.735339 0.802777 0 + 0.743169 0.803429 0 + 0.75 0.999408 0 + 0.75681 0.999173 0 + 0.764646 0.998837 0 + 0.775232 0.998451 0 + 0.79301 0.99809 0 + 0.835711 0.997838 0 + 0.000460346 0.997745 0 + 0.16453 0.997838 0 + 0.207054 0.99809 0 + 0.22479 0.998451 0 + 0.235362 0.998837 0 + 0.243191 0.999173 0 + 0.25 0.999408 0 + 0.256806 0.999501 0 + 0.264627 0.999467 0 + 0.275185 0.999333 0 + 0.292913 0.999173 0 + 0.335507 0.999047 0 + 0.500334 0.998997 0 + 0.664669 0.999047 0 + 0.707136 0.999173 0 + 0.724832 0.999333 0 + 0.735379 0.999467 0 + 0.743196 0.999501 0 + 0.5 0.998468 0 + -0.162437 0.0123867 0 + -0.162955 0.206336 0 + -0.163397 0.402149 0 + -0.163766 0.599527 0 + -0.164063 0.798182 0 + -0.164289 0.997838 0 +endnode +node dummy rhand + parent squid + position -0.0274387 2.26545 0.862114 + orientation 0.575672 -0.580701 -0.575663 -2.08937 + wirecolor 0.839844 0.839844 0.839844 +endnode +node danglymesh line01 + parent squid + shadow 0 + position -0.200563 -1.8855 2.56738 + orientation 0.995435 -0.0874651 0.0382077 -2.11918 + wirecolor 0.890625 0.890625 0.890625 + danglymesh 1 + tightness 0.5 + period 1 + displacement 0.1 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_material01 + verts 24 + 0.25775 0.381922 0.0075261 + 0.235173 0.449653 0.294077 + 0.235173 0.252105 0.0714925 + 0.269038 -0.419547 -0.363109 + 0.329244 -0.252105 -0.265275 + 0.235173 -0.666008 -0.346177 + 0.321718 -0.0808994 -0.440243 + 0.312309 0.146748 -0.528669 + 0.304784 0.235173 -0.302903 + 0.348056 0.0206953 -0.336769 + 0.269038 -0.38004 -0.182494 + 0.269038 0.00376291 0.0526787 + 0.235173 0.449653 0.294077 + 0.25775 0.381922 0.0075261 + 0.235173 0.252105 0.0714925 + 0.329244 -0.252105 -0.265275 + 0.269038 -0.419547 -0.363109 + 0.235173 -0.666008 -0.346177 + 0.321718 -0.0808994 -0.440243 + 0.304784 0.235173 -0.302903 + 0.312309 0.146748 -0.528669 + 0.348056 0.0206953 -0.336769 + 0.269038 -0.38004 -0.182494 + 0.269038 0.00376291 0.0526787 + faces 26 + 0 1 2 1 0 1 2 0 + 3 4 5 1 3 4 5 0 + 6 4 3 1 6 4 3 0 + 7 8 9 1 7 8 9 0 + 9 0 2 1 9 0 2 0 + 6 9 4 1 6 9 4 0 + 7 9 6 1 7 9 6 0 + 9 8 0 1 9 8 0 0 + 4 10 5 1 4 10 5 0 + 4 2 11 1 4 2 11 0 + 9 2 4 1 9 2 4 0 + 2 1 11 1 2 1 11 0 + 4 11 10 1 4 11 10 0 + 12 13 14 1 1 0 2 0 + 15 16 17 1 4 3 5 0 + 15 18 16 1 4 6 3 0 + 19 20 21 1 8 7 9 0 + 13 21 14 1 0 9 2 0 + 21 18 15 1 9 6 4 0 + 21 20 18 1 9 7 6 0 + 19 21 13 1 8 9 0 0 + 22 15 17 1 10 4 5 0 + 14 15 23 1 2 4 11 0 + 14 21 15 1 2 9 4 0 + 12 14 23 1 1 2 11 0 + 23 15 22 1 11 4 10 0 + tverts 12 + 0.727692 0.546607 0 + 0.727331 1 0 + 0.619944 0.568264 0 + 0.288166 0 0 + 0.372428 0.144865 0 + 0.108507 0 0 + 0.546395 0 0 + 0.729084 0 0 + 0.727873 0.258639 0 + 0.583283 0.159604 0 + 0.261924 0.185944 0 + 0.448563 0.47427 0 + constraints 24 + 170 + 106 + 196 + 100 + 160 + 1 + 130 + 90 + 160 + 160 + 142 + 218 + 106 + 170 + 196 + 160 + 100 + 1 + 130 + 160 + 90 + 160 + 142 + 218 +endnode +node trimesh box02 + parent squid + position 0.0361532 0.90111 0.79542 + orientation 0 0 -1 -3.15934 + wirecolor 0.0273438 0.0273438 0.0273438 + ambient 0.52549 0.435294 0.439216 + diffuse 0.52549 0.435294 0.439216 + specular 0 0 0 + shininess 1 + bitmap plc_woodb256 + verts 8 + -0.290175 -0.563836 0.00092318 + -0.290559 0.0933997 0.000691433 + 0.290559 0.0933997 0.000691433 + 0.290175 -0.563836 0.0009232 + -0.290175 -0.563836 0.0166774 + 0.290175 -0.563836 0.0166774 + 0.290559 0.0933997 0.0164665 + -0.290559 0.0933997 0.0164665 + faces 12 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 6 1 0 3 2 0 + 6 7 4 1 2 1 0 0 + 0 3 5 1 4 5 3 0 + 5 4 0 1 3 0 4 0 + 3 2 6 1 6 7 2 0 + 6 5 3 1 2 3 6 0 + 2 1 7 1 8 9 1 0 + 7 6 2 1 1 2 8 0 + 1 0 4 1 10 11 0 0 + 4 7 1 1 0 1 10 0 + tverts 12 + 0.000499487 0.000499755 0 + 0.000499725 0.9995 0 + 0.999501 0.9995 0 + 0.9995 0.000499547 0 + 0.000499487 -0.0333167 0 + 0.9995 -0.0333169 0 + 1.03017 0.000499547 0 + 1.03017 0.9995 0 + 0.999501 0.965684 0 + 0.000499725 0.965684 0 + 0.0311688 0.9995 0 + 0.0311685 0.000499755 0 +endnode +node trimesh plane439 + parent squid + position -0.444925 -0.701186 0.895438 + orientation -0.167823 -0.0316265 -0.98531 -1.75481 + wirecolor 0.835938 0.835938 0.835938 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_crpsbksrp + verts 4 + -0.108871 0.00763445 0 + -0.108871 -0.00763507 0 + 0.108871 0.00763445 0 + 0.108871 -0.00763507 0 + faces 2 + 0 1 2 1 0 1 2 0 + 3 2 1 1 3 2 1 0 + tverts 4 + 0.0513124 0.743961 0 + 0 0.729469 0 + 1.05131 0.743961 0 + 1 0.729469 0 +endnode +node trimesh object382 + parent squid + position 0.0648362 -1.82446 1.22664 + orientation 0 0.00436336 -0.99999 -3.14159 + wirecolor 0.652344 0.652344 0.652344 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_barl02 + verts 12 + -0.0454936 0.0257138 0.414315 + 0 0.0534057 0.414315 + 0 0.0553836 0.0187201 + -0.0474719 0.0276919 0.0187201 + 0.0454938 -0.0257139 0.414315 + 0 -0.0534057 0.414315 + 0 -0.0553836 0.0187201 + 0.0474722 -0.0276919 0.0187201 + -0.0454936 -0.0257139 0.414315 + -0.0474719 -0.0276919 0.0187201 + 0.0454939 0.0257138 0.414315 + 0.0474722 0.0276918 0.0187201 + faces 12 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 6 1 4 5 6 0 + 6 7 4 1 6 7 4 0 + 8 0 3 1 8 0 3 0 + 3 9 8 1 3 9 8 0 + 10 4 7 1 10 4 7 0 + 7 11 10 1 7 11 10 0 + 5 8 9 1 5 12 13 0 + 9 6 5 1 13 6 5 0 + 1 10 11 1 1 10 11 0 + 11 2 1 1 11 2 1 0 + tverts 14 + 0.369518 0.275396 0 + 0.304064 0.275396 0 + 0.304064 -0.098069 0 + 0.369518 -0.098069 0 + 0.160311 0.275396 0 + 0.0948659 0.275396 0 + 0.0948659 -0.098069 0 + 0.160311 -0.098069 0 + 0.447822 0.275396 0 + 0.447822 -0.098069 0 + 0.238616 0.275396 0 + 0.238616 -0.098069 0 + 0.0294123 0.275396 0 + 0.0294122 -0.098069 0 +endnode +node trimesh object381 + parent squid + position 0.064837 -1.82842 1.68112 + orientation 0 0.00436336 -0.99999 -3.14159 + wirecolor 0.652344 0.652344 0.652344 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_barl02 + verts 19 + -0.0276916 0.0158237 1.14662 + 0 0.0316478 1.14662 + 0 0.0534056 -0.0401778 + -0.0454934 0.0257138 -0.0401778 + 0.0276922 -0.015824 1.14661 + 0 -0.033626 1.14661 + 0 -0.0534057 -0.0401778 + 0.045494 -0.0257139 -0.0401778 + -0.0276916 -0.015824 1.14661 + -0.0454934 -0.0257139 -0.0401778 + 0.0276922 0.0158237 1.14662 + 0.045494 0.0257139 -0.0401778 + -0.0217576 0.0118678 1.66683 + 0 0.0257139 1.66683 + 0.0217582 -0.0118681 1.66683 + 0 -0.0257139 1.66683 + -0.0217576 -0.0118681 1.66683 + 0.0217582 0.0118678 1.66683 + 0 0 1.70639 + faces 30 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 6 1 4 5 6 0 + 6 7 4 1 6 7 4 0 + 8 0 3 1 8 0 3 0 + 3 9 8 1 3 9 8 0 + 10 4 7 1 10 4 7 0 + 7 11 10 1 7 11 10 0 + 5 8 9 1 5 12 13 0 + 9 6 5 1 13 6 5 0 + 1 10 11 1 1 10 11 0 + 11 2 1 1 11 2 1 0 + 12 13 1 1 14 15 1 0 + 1 0 12 1 1 0 14 0 + 14 15 5 1 16 17 5 0 + 5 4 14 1 5 4 16 0 + 16 12 0 1 18 14 0 0 + 0 8 16 1 0 8 18 0 + 17 14 4 1 19 16 4 0 + 4 10 17 1 4 10 19 0 + 15 16 8 1 17 20 12 0 + 8 5 15 1 12 5 17 0 + 13 17 10 1 15 19 10 0 + 10 1 13 1 10 1 15 0 + 18 15 14 1 21 22 23 0 + 18 14 17 1 21 23 24 0 + 18 17 13 1 21 24 25 0 + 16 18 12 1 26 21 27 0 + 12 18 13 1 27 21 25 0 + 16 15 18 1 26 22 21 0 + tverts 28 + 0.369518 0.39579 0 + 0.304064 0.39579 0 + 0.304064 -0.724604 0 + 0.369518 -0.724604 0 + 0.160312 0.39579 0 + 0.0948663 0.39579 0 + 0.0948659 -0.724604 0 + 0.160311 -0.724604 0 + 0.447822 0.39579 0 + 0.447822 -0.724604 0 + 0.238616 0.39579 0 + 0.238616 -0.724604 0 + 0.0294124 0.39579 0 + 0.0294123 -0.724604 0 + 0.369517 0.8871 0 + 0.304063 0.8871 0 + 0.160313 0.8871 0 + 0.0948666 0.8871 0 + 0.447821 0.8871 0 + 0.238617 0.8871 0 + 0.0294113 0.8871 0 + 0.163874 0.499943 0 + 0.163856 0.626636 0 + 0.0541903 0.563319 0 + 0.0541843 0.43668 0 + 0.163858 0.373364 0 + 0.273539 0.563319 0 + 0.273544 0.436681 0 +endnode +node trimesh object380 + parent squid + position 0.0528148 -2.21158 2.33873 + orientation 0.751036 0.0156708 -0.660076 -1.37191 + wirecolor 0.652344 0.652344 0.652344 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_barl02 + verts 12 + 0.400222 0.397402 -0.0169106 + 0.411492 0.386126 -0.00845493 + -0.386126 -0.411491 -0.00845493 + -0.397402 -0.400222 -0.0169106 + 0.411492 0.386126 0.00986504 + -0.386126 -0.411491 0.00986504 + 0.400222 0.397402 0.0183201 + -0.397402 -0.400222 0.01832 + 0.388946 0.408675 0.00986504 + -0.408675 -0.388945 0.00986504 + 0.388946 0.408675 -0.00845493 + -0.408675 -0.388945 -0.00845493 + faces 20 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 1 4 5 1 4 5 6 0 + 1 5 2 1 4 6 7 0 + 4 6 7 1 5 8 9 0 + 4 7 5 1 5 9 6 0 + 6 8 9 1 8 10 11 0 + 6 9 7 1 8 11 9 0 + 8 10 11 1 10 12 13 0 + 8 11 9 1 10 13 11 0 + 10 0 3 1 12 0 3 0 + 10 3 11 1 12 3 13 0 + 6 10 8 1 14 15 16 0 + 4 10 6 1 17 15 14 0 + 1 10 4 1 18 15 17 0 + 0 10 1 1 19 15 18 0 + 7 9 11 1 20 21 22 0 + 5 7 11 1 23 20 22 0 + 2 5 11 1 24 23 22 0 + 3 2 11 1 25 24 22 0 + tverts 26 + 0.23746 -0.516472 0 + 0.26934 -0.516632 0 + 0.27731 0.7951 0 + 0.25229 0.79526 0 + 0.09313 -0.516632 0 + 0.13231 -0.516632 0 + 0.12434 0.7951 0 + 0.1011 0.7951 0 + 0.16419 -0.516472 0 + 0.14936 0.79526 0 + 0.1892 -0.516313 0 + 0.18123 0.79542 0 + 0.21245 -0.516313 0 + 0.22042 0.79542 0 + 0.499999 0.564466 0 + 0.555827 0.467768 0 + 0.555827 0.532233 0 + 0.444171 0.532233 0 + 0.444171 0.467768 0 + 0.499999 0.435536 0 + 0.5 0.355479 0 + 0.555829 0.323246 0 + 0.555829 0.258782 0 + 0.444173 0.323246 0 + 0.444173 0.258782 0 + 0.5 0.226549 0 +endnode +node trimesh object343 + parent squid + position 0.614652 -1.29599 0.701097 + orientation 0 0.00436336 -0.99999 -3.14159 + wirecolor 0.527344 0.527344 0.527344 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_bridge02 + verts 33 + -0.188491 -0.0408378 0.121568 + 0.142998 0.00157123 0.13815 + 0.142998 0.057473 0.13815 + -0.188491 0.0167483 0.121568 + -0.188491 -0.0435798 0.0941459 + 0.142998 -0.00109086 0.11153 + -0.188491 -0.0216423 0.231254 + 0.142998 0.0202051 0.24463 + 0.142998 0.0761063 0.24463 + -0.188491 0.0359424 0.231254 + -0.188491 -0.0243846 0.203833 + 0.142998 0.0175431 0.21801 + -0.188491 -0.00244763 0.340942 + 0.142998 0.0388384 0.351111 + 0.142998 0.0947411 0.351111 + -0.188491 0.0551382 0.340942 + -0.188491 -0.00518983 0.313519 + 0.142998 0.0361764 0.324491 + -0.188491 0.0167482 0.45063 + 0.142998 0.057473 0.457586 + 0.142998 0.113375 0.457586 + -0.188491 0.0743341 0.45063 + -0.188491 0.0140052 0.423207 + 0.142998 0.0548103 0.430969 + 0.142998 0.0388386 0.0316697 + 0.142998 0.132009 0.564069 + -0.188492 -0.00244767 0.0118799 + -0.188492 0.0935289 0.560317 + 0.142998 -0.041021 0.0316697 + 0.142998 0.0521481 0.564069 + -0.188491 -0.0847125 0.0118799 + -0.188492 -0.0353536 0.286099 + -0.188492 0.0112631 0.560317 + faces 25 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 4 5 1 1 4 5 1 0 + 1 0 4 1 1 0 4 0 + 6 7 8 1 6 7 8 0 + 6 8 9 1 6 8 9 0 + 10 11 7 1 10 11 7 0 + 7 6 10 1 7 6 10 0 + 12 13 14 1 12 13 14 0 + 12 14 15 1 12 14 15 0 + 16 17 13 1 16 17 13 0 + 13 12 16 1 13 12 16 0 + 18 19 20 1 18 19 20 0 + 18 20 21 1 18 20 21 0 + 22 23 19 1 22 23 19 0 + 19 18 22 1 19 18 22 0 + 24 25 26 1 24 25 26 0 + 26 25 27 1 26 25 27 0 + 28 29 25 1 28 29 30 0 + 25 24 28 1 30 31 28 0 + 30 28 24 1 32 33 34 0 + 24 26 30 1 34 35 32 0 + 31 30 26 1 36 28 31 0 + 26 27 32 1 31 30 29 0 + 32 31 26 1 29 36 31 0 + tverts 37 + 0.707894 0.821054 0 + 0.307894 0.821054 0 + 0.307894 0.75876 0 + 0.707894 0.75876 0 + 0.707894 0.838387 0 + 0.307894 0.838387 0 + 0.707894 0.320526 0 + 0.307894 0.320526 0 + 0.307894 0.258232 0 + 0.707894 0.258232 0 + 0.707894 0.337858 0 + 0.307894 0.337858 0 + 0.7 0.55196 0 + 0.3 0.55196 0 + 0.3 0.507596 0 + 0.7 0.507596 0 + 0.7 0.580366 0 + 0.3 0.580366 0 + 0.2 0.433379 0 + 0.8 0.433379 0 + 0.8 0.508595 0 + 0.2 0.508595 0 + 0.2 0.3943 0 + 0.8 0.394299 0 + 0.700001 0.161601 0 + 0.700002 0.838399 0 + 0.3 0.161601 0 + 0.299998 0.838399 0 + 0.1 0.169082 0 + 0.1 0.833333 0 + 0.02 0.833333 0 + 0.02 0.169082 0 + 0.7 0.606481 0 + 0.3 0.606481 0 + 0.3 0.507978 0 + 0.7 0.507978 0 + 0.1 0.5 0 +endnode +node trimesh dragon_tailpiecee01 + parent squid + position 1.09696 2.81151 0.543923 + orientation 0.71802 0.0313133 -0.695318 -3.17414 + wirecolor 0.347656 0.347656 0.347656 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 10 + -0.0513244 -0.418638 -0.0695017 + 0.00714912 -0.486385 -0.106619 + 0.00559528 -0.457843 0.0231408 + 0.00736392 -0.395899 -0.182633 + 0.00246965 -0.0521971 0.0697161 + -0.0683031 -0.0196884 -0.045455 + 0.00461108 0.0233413 -0.179497 + 0.00231066 0.124166 -0.0236808 + 0.0638259 -0.419524 -0.0750557 + 0.0750759 -0.0200222 -0.0499029 + faces 16 + 0 1 2 1 0 1 2 0 + 1 0 3 1 1 0 3 0 + 4 5 0 1 4 5 0 0 + 0 2 4 1 0 2 4 0 + 3 0 5 1 3 0 5 0 + 5 6 3 1 5 6 3 0 + 5 7 6 1 5 7 6 0 + 5 4 7 1 5 4 7 0 + 8 2 1 1 8 2 1 0 + 1 3 8 1 1 3 8 0 + 4 8 9 1 4 8 9 0 + 8 4 2 1 8 4 2 0 + 3 9 8 1 3 9 8 0 + 9 3 6 1 9 3 6 0 + 9 6 7 1 9 6 7 0 + 9 7 4 1 9 7 4 0 + tverts 10 + 0.957358 0.135002 0 + 1.00215 0.134899 0 + 0.941124 0.407441 0 + 0.990577 0.0303659 0 + 0.729333 0.342357 0 + 0.753837 0.160373 0 + 0.720723 0.0494735 0 + 0.72223 0.161411 0 + 0.957165 0.131613 0 + 0.753597 0.159715 0 +endnode +node trimesh dragon_tailpiecef + parent squid + position -0.897452 3.20948 0.525197 + orientation -0.698875 0.00678121 -0.715212 -3.09712 + wirecolor 0.582031 0.582031 0.582031 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 10 + -0.0312925 -0.419979 -0.0709473 + 0.00805578 -0.479285 -0.0852317 + 0.00719201 -0.4452 -0.00204457 + 0.00809193 -0.400833 -0.16126 + 0.00416515 -0.0572475 0.045208 + -0.053926 -0.0131849 -0.0490004 + 0.00522579 0.0182982 -0.163358 + 0.00387513 0.0812811 -0.0423426 + 0.0463277 -0.421898 -0.0750742 + 0.0629685 -0.0142564 -0.0530802 + faces 16 + 0 1 2 1 0 1 2 0 + 1 0 3 1 1 0 3 0 + 4 5 0 1 4 5 0 0 + 0 2 4 1 0 2 4 0 + 3 0 5 1 3 0 5 0 + 5 6 3 1 5 6 3 0 + 5 7 6 1 5 7 6 0 + 5 4 7 1 5 4 7 0 + 8 2 1 1 8 2 1 0 + 1 3 8 1 1 3 8 0 + 4 8 9 1 4 8 9 0 + 8 4 2 1 8 4 2 0 + 3 9 8 1 3 9 8 0 + 9 3 6 1 9 3 6 0 + 9 6 7 1 9 6 7 0 + 9 7 4 1 9 7 4 0 + tverts 10 + 0.961305 0.201243 0 + 0.996707 0.202061 0 + 0.985532 0.392089 0 + 0.975398 0.0775322 0 + 0.846428 0.327721 0 + 0.839981 0.171324 0 + 0.863047 0.0275939 0 + 0.803716 0.172575 0 + 0.961111 0.200317 0 + 0.839786 0.170526 0 +endnode +node trimesh dragon_tailpiecef01 + parent squid + position 1.09042 3.2236 0.552926 + orientation 0.718094 0.0222065 -0.695592 -3.14159 + wirecolor 0.691406 0.691406 0.691406 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 10 + -0.0295382 -0.420467 -0.0701961 + 0.00988754 -0.479938 -0.0849896 + 0.0087971 -0.44588 -0.00186902 + 0.0101448 -0.401486 -0.160969 + 0.00568724 -0.0579772 0.0452966 + -0.0522026 -0.013847 -0.0480836 + 0.00733903 0.0175738 -0.163158 + 0.00565883 0.0805467 -0.0422319 + 0.0481578 -0.422684 -0.075381 + 0.0647774 -0.0149143 -0.0537296 + faces 16 + 0 1 2 1 0 1 2 0 + 1 0 3 1 1 0 3 0 + 4 5 0 1 4 5 0 0 + 0 2 4 1 0 2 4 0 + 3 0 5 1 3 0 5 0 + 5 6 3 1 5 6 3 0 + 5 7 6 1 5 7 6 0 + 5 4 7 1 5 4 7 0 + 8 2 1 1 8 2 1 0 + 1 3 8 1 1 3 8 0 + 4 8 9 1 4 8 9 0 + 8 4 2 1 8 4 2 0 + 3 9 8 1 3 9 8 0 + 9 3 6 1 9 3 6 0 + 9 6 7 1 9 6 7 0 + 9 7 4 1 9 7 4 0 + tverts 10 + 0.961305 0.201243 0 + 0.996707 0.202061 0 + 0.985532 0.392089 0 + 0.975398 0.0775322 0 + 0.846428 0.327721 0 + 0.839981 0.171324 0 + 0.863047 0.0275939 0 + 0.803716 0.172575 0 + 0.961111 0.200317 0 + 0.839786 0.170526 0 +endnode +node trimesh dragon_tailpieceg + parent squid + position -0.905207 3.60457 0.516192 + orientation -0.699009 -0.0275361 -0.714582 -3.16422 + wirecolor 0.0351563 0.0351563 0.0351563 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 10 + -0.0205571 -0.421655 -0.0565831 + 0.0110174 -0.462844 -0.0740428 + 0.0104095 -0.446059 -0.00387995 + 0.0109689 -0.401681 -0.134306 + 0.00732454 -0.0628987 0.0235588 + -0.0343946 -0.0330783 -0.0446339 + 0.00806709 -0.0156281 -0.136504 + 0.00689662 0.0530855 -0.0418667 + 0.0417137 -0.425392 -0.0608719 + 0.049473 -0.0355861 -0.048892 + faces 16 + 0 1 2 1 0 1 2 0 + 1 0 3 1 1 0 3 0 + 4 5 0 1 4 5 0 0 + 0 2 4 1 0 2 4 0 + 3 0 5 1 3 0 5 0 + 5 6 3 1 5 6 3 0 + 5 7 6 1 5 7 6 0 + 5 4 7 1 5 4 7 0 + 8 2 1 1 8 2 1 0 + 1 3 8 1 1 3 8 0 + 4 8 9 1 4 8 9 0 + 8 4 2 1 8 4 2 0 + 3 9 8 1 3 9 8 0 + 9 3 6 1 9 3 6 0 + 9 6 7 1 9 6 7 0 + 9 7 4 1 9 7 4 0 + tverts 10 + 0.909325 0.384966 0 + 0.908239 0.349307 0 + 0.784217 0.388895 0 + 0.989267 0.391093 0 + 0.792908 0.214012 0 + 0.90148 0.217411 0 + 0.982828 0.211555 0 + 0.902722 0.197569 0 + 0.908142 0.384767 0 + 0.901827 0.217199 0 +endnode +node trimesh dragon_tailpieceg01 + parent squid + position 1.09809 3.6187 0.56199 + orientation 0.717853 -0.0111962 -0.696105 -3.08642 + wirecolor 0.601563 0.601563 0.601563 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 10 + -0.0187122 -0.421859 -0.0557654 + 0.0129579 -0.463335 -0.0736299 + 0.012154 -0.446594 -0.00353364 + 0.0130676 -0.402163 -0.13385 + 0.00894072 -0.0635541 0.0238027 + -0.0326433 -0.0334691 -0.0437969 + 0.0101212 -0.0162491 -0.136154 + 0.00867853 0.0524235 -0.041605 + 0.0436377 -0.426179 -0.0609147 + 0.0513061 -0.0364104 -0.0491643 + faces 16 + 0 1 2 1 0 1 2 0 + 1 0 3 1 1 0 3 0 + 4 5 0 1 4 5 0 0 + 0 2 4 1 0 2 4 0 + 3 0 5 1 3 0 5 0 + 5 6 3 1 5 6 3 0 + 5 7 6 1 5 7 6 0 + 5 4 7 1 5 4 7 0 + 8 2 1 1 8 2 1 0 + 1 3 8 1 1 3 8 0 + 4 8 9 1 4 8 9 0 + 8 4 2 1 8 4 2 0 + 3 9 8 1 3 9 8 0 + 9 3 6 1 9 3 6 0 + 9 6 7 1 9 6 7 0 + 9 7 4 1 9 7 4 0 + tverts 10 + 0.909325 0.384966 0 + 0.908239 0.349307 0 + 0.784217 0.388895 0 + 0.989267 0.391093 0 + 0.792908 0.214012 0 + 0.90148 0.217411 0 + 0.982828 0.211555 0 + 0.902722 0.197569 0 + 0.908142 0.384767 0 + 0.901827 0.217199 0 +endnode +node trimesh object340 + parent squid + position 0.0345505 -2.24607 0.768774 + orientation 0 0.00436336 -0.99999 -3.14159 + wirecolor 0.527344 0.527344 0.527344 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_wood01 + verts 6 + 0.511824 -0.145214 0.010111 + -0.597993 -0.140231 0.00402505 + -0.597993 -0.0867626 0.319489 + -0.25755 -0.0924724 0.374692 + 0.212058 -0.0946861 0.374926 + 0.511824 -0.0925366 0.320908 + faces 4 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 0 1 4 5 0 0 + 3 4 0 1 3 4 0 0 + tverts 6 + 0.000499576 0.999476 0 + 0.9995 0.999498 0 + 0.9995 0.166289 0 + 0.686155 0.000510633 0 + 0.313846 0.000501603 0 + 0.000499547 0.166267 0 +endnode +node trimesh dragon_tailpieceh01 + parent squid + position 1.13096 3.97467 0.570972 + orientation 0.719289 -0.0688129 -0.691294 -2.99176 + wirecolor 0.882813 0.882813 0.882813 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 11 + -0.0815172 -0.57166 -0.0188329 + 0.0164311 -1.32757 0.0323071 + 0.0132574 -0.667802 0.0718702 + 0.0167266 -0.984872 -0.105833 + 0.0158251 -0.531984 -0.182767 + 0.0113207 -0.12277 0.0481946 + -0.0333102 -0.0764112 -0.0355941 + 0.0134385 -0.0535238 -0.147185 + 0.0116474 0.0388412 -0.032121 + 0.108889 -0.595635 -0.0353869 + 0.0575687 -0.0831143 -0.0426125 + faces 18 + 0 1 2 1 0 1 2 0 + 3 0 4 1 3 0 4 0 + 0 3 1 1 0 3 1 0 + 5 6 0 1 5 6 0 0 + 0 2 5 1 0 2 5 0 + 4 0 6 1 4 0 6 0 + 6 7 4 1 6 7 4 0 + 6 8 7 1 6 8 7 0 + 6 5 8 1 6 5 8 0 + 9 2 1 1 9 2 1 0 + 3 4 9 1 3 4 9 0 + 9 1 3 1 9 1 3 0 + 5 9 10 1 5 9 10 0 + 9 5 2 1 9 5 2 0 + 4 10 9 1 4 10 9 0 + 10 4 7 1 10 4 7 0 + 10 7 8 1 10 7 8 0 + 10 8 5 1 10 8 5 0 + tverts 11 + 0.167607 0.288886 0 + 0.237953 0.366207 0 + 0.0607832 0.378769 0 + 0.328798 0.191702 0 + 0.124671 0.187081 0 + 0.0685509 0.3172 0 + 0.0806873 0.258095 0 + 0.0781116 0.197445 0 + 0.0494625 0.227899 0 + 0.167617 0.287732 0 + 0.0802161 0.259417 0 +endnode +node trimesh front + parent squid + position 0.0247132 2.07482 0.844902 + orientation 0.2425 -0.00423288 0.970142 -0.0359831 + wirecolor 0.113281 0.113281 0.113281 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap squid + verts 24 + -0.418104 -0.605558 0.021821 + -0.418104 -0.738881 0.000746674 + -0.418104 -0.689221 0.0218209 + 0.0214289 -0.773735 -0.278016 + -0.211427 -0.0742552 -0.275928 + 0.0753557 -0.680714 -0.277205 + 0.369702 -0.109866 -0.276239 + 0.723419 0 0.281663 + 0.429071 -0.484831 0.0228745 + -0.116602 0.215797 -0.275928 + -0.65096 0.0080089 0.28173 + -0.556132 0.298062 0.28173 + 0.274879 0.180186 -0.276239 + 0.62859 0.290153 0.281663 + -0.110927 0.483678 -0.274953 + -0.110927 0.581288 0.28284 + 0.0313101 0.584078 -0.274953 + 0.0313101 0.681692 0.28284 + 0.170018 0.469125 -0.27508 + 0.170018 0.566737 0.282712 + 0.0277813 0.569527 -0.27508 + 0.0277814 0.667141 0.282712 + 0.429071 -0.618164 0.0018002 + 0.429071 -0.568499 0.0228745 + faces 20 + 0 1 2 1 0 1 2 0 + 3 0 4 1 3 0 4 0 + 5 6 7 1 5 6 7 0 + 7 8 5 1 7 8 5 0 + 9 4 10 1 9 4 10 0 + 10 11 9 1 10 11 9 0 + 6 12 13 1 6 12 13 0 + 13 7 6 1 13 7 6 0 + 14 9 11 1 14 9 11 0 + 11 15 14 1 11 15 14 0 + 16 14 15 1 16 14 15 0 + 15 17 16 1 15 17 16 0 + 12 18 19 1 12 18 19 0 + 19 13 12 1 19 13 12 0 + 18 20 21 1 18 20 21 0 + 21 19 18 1 21 19 18 0 + 0 10 4 1 0 10 4 0 + 8 22 5 1 8 22 5 0 + 8 23 22 1 8 23 22 0 + 0 3 1 1 0 3 1 0 + tverts 24 + 0.891455 0.517155 0 + 0.907627 0.498528 0 + 0.902122 0.517155 0 + 0.996764 0.25213 0 + 0.768066 0.253976 0 + 0.009799 0.252847 0 + 0.219894 0.253701 0 + 0.260666 0.74683 0 + 0.116212 0.518087 0 + 0.584093 0.253976 0 + 0.737512 0.746889 0 + 0.666248 0.746889 0 + 0.370741 0.253701 0 + 0.332154 0.74683 0 + 0.543127 0.254838 0 + 0.536672 0.74787 0 + 0.501242 0.254838 0 + 0.501076 0.74787 0 + 0.459559 0.254725 0 + 0.465787 0.747757 0 + 0.502184 0.254725 0 + 0.501885 0.747757 0 + 0.0957617 0.499459 0 + 0.102608 0.518087 0 +endnode +node dummy handconjure + parent squid + position -0.702058 -0.660779 0.929113 + orientation 0 0 -1 -1.5708 + wirecolor 0.105469 0.105469 0.105469 +endnode +node dummy head_g + parent squid + position 0.0590325 1.59786 0.899795 + orientation 0.57735 0.577349 -0.577352 -2.09439 + wirecolor 0.890625 0.890625 0.890625 +endnode +node dummy headconjure + parent squid + position -0.697803 -0.673353 0.988405 + orientation 0 0 -1 -3.14159 + wirecolor 0.890625 0.890625 0.890625 +endnode +node dummy lforearm + parent squid + position -0.0171579 2.18622 1.01922 + orientation -0.123976 -0.992276 -0.00432682 -0.070362 + wirecolor 0.890625 0.890625 0.890625 +endnode +node dummy lhand + parent squid + orientation 0 0 0 0 + position -0.0222444 2.13899 0.935559 + wirecolor 0.890625 0.890625 0.890625 +endnode +node trimesh line511 + parent squid + position 0.0345504 -1.53324 0.980804 + orientation 0 0.00436336 -0.99999 -3.14159 + wirecolor 0.890625 0.890625 0.890625 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_bridge02 + verts 16 + 0.336365 0.774606 0.282029 + 0.419237 0.771979 0.281326 + 0.347415 0.74272 0.108344 + -0.38186 0.779331 0.282666 + -0.39291 0.747297 0.107426 + -0.464732 0.777732 0.282098 + -0.464732 0.684375 -0.251355 + -0.39291 0.691563 -0.205759 + 0.419237 0.679619 -0.24645 + 0.347415 0.687485 -0.202031 + -0.39291 0.614595 -0.189835 + 0.347415 0.611209 -0.186249 + -0.39291 0.667675 0.123352 + 0.347415 0.663811 0.124125 + -0.160868 0.760198 0.162763 + 0.115373 0.758421 0.162922 + faces 18 + 0 1 2 1 0 1 2 0 + 3 4 5 1 3 4 5 0 + 6 5 4 1 6 5 4 0 + 4 7 6 1 4 7 6 0 + 8 6 7 1 8 6 7 0 + 7 9 8 1 7 9 8 0 + 1 8 9 1 1 8 9 0 + 9 2 1 1 9 2 1 0 + 9 7 10 1 10 11 12 0 + 10 11 9 1 12 13 10 0 + 7 4 12 1 14 15 16 0 + 12 10 7 1 16 17 14 0 + 2 9 11 1 15 14 17 0 + 11 13 2 1 17 16 15 0 + 4 3 14 1 4 3 18 0 + 15 0 2 1 19 0 2 0 + 15 3 0 1 19 3 0 0 + 14 3 15 1 18 3 19 0 + tverts 20 + 0.12849 0.999489 0 + 0 0.999496 0 + 0.128711 0.669154 0 + 1 0.999432 0 + 1 0.669095 0 + 1.08585 0.999425 0 + 1.08358 0.000496358 0 + 1 0.134742 0 + 0 0.000566751 0 + 0.118 0.134801 0 + 0.131732 0.498356 0 + 0.94721 0.498358 0 + 0.94721 0.596258 0 + 0.131732 0.596256 0 + 1 0.120295 0 + 0.2 0.120295 0 + 0.2 0 0 + 1 0 0 + 0.728619 0.709189 0 + 0.389259 0.709211 0 +endnode +node trimesh mesh66 + parent squid + position 0.174289 2.23165 0.949819 + orientation 0 0 0 0 + wirecolor 0.890625 0.890625 0.890625 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_woodb256 + verts 23 + -0.0246614 -0.258746 0.00508436 + 0.027548 -0.258746 0.00508436 + -0.0246614 -0.0144308 0.00508436 + 0.027548 -0.0144308 0.00508436 + -0.0246614 0.165965 -0.0506947 + -0.0246614 -0.301696 -0.0506947 + -0.0246614 0.0318173 0.00508436 + -0.0246614 0.110517 0.00508436 + -0.0246614 0.165965 0.00508436 + 0.027548 0.166036 0.00508436 + 0.027548 0.110517 0.00508436 + 0.027548 0.166036 -0.0506947 + 0.027548 0.0318173 0.00508436 + 0.027548 -0.301696 -0.0506947 + 0.027548 -0.0144308 0.245648 + 0.027548 0.0318173 0.245648 + -0.0246614 -0.0144308 0.245648 + -0.0246614 0.0318173 0.245648 + -0.0246614 -0.0144308 0.188319 + -0.0246614 0.031817 0.188319 + -0.0246614 0.031817 0.104815 + 0.027548 0.031817 0.104815 + 0.027548 0.031817 0.188355 + faces 32 + 0 1 2 1 0 1 2 0 + 3 2 1 1 3 2 1 0 + 4 5 6 1 4 5 6 0 + 4 7 8 1 4 7 8 0 + 4 6 7 1 4 6 7 0 + 0 2 5 1 9 10 5 0 + 5 2 6 1 5 10 6 0 + 9 10 11 1 11 7 12 0 + 11 10 12 1 12 7 6 0 + 11 12 3 1 12 6 10 0 + 13 11 1 1 13 12 14 0 + 11 3 1 1 12 10 14 0 + 12 10 6 1 15 16 17 0 + 7 6 10 1 18 17 16 0 + 14 15 16 1 3 15 2 0 + 17 16 15 1 17 2 15 0 + 2 3 14 1 19 20 21 0 + 14 18 2 1 21 22 19 0 + 6 2 18 1 23 24 25 0 + 18 19 20 1 25 26 27 0 + 18 20 6 1 25 27 23 0 + 3 12 21 1 24 23 27 0 + 22 14 3 1 26 28 24 0 + 3 21 22 1 24 27 26 0 + 12 6 21 1 20 19 29 0 + 20 21 6 1 30 29 19 0 + 14 22 15 1 25 26 31 0 + 14 16 18 1 32 33 34 0 + 22 19 17 1 35 22 36 0 + 17 15 22 1 36 37 35 0 + 13 1 0 1 38 39 40 0 + 0 5 13 1 40 41 38 0 + tverts 42 + 0.894495 0.000499547 0 + 0.9995 0.000943422 0 + 0.894495 0.57292 0 + 0.9995 0.57292 0 + 0.546644 1.51186 0 + 0.546644 0.24742 0 + 0.448445 1.1738 0 + 0.448445 1.37213 0 + 0.448445 1.51186 0 + 0.448445 0.375885 0 + 0.448445 1.05725 0 + 0.448445 1.51203 0 + 0.546644 1.51203 0 + 0.546644 0.247748 0 + 0.448445 0.376213 0 + 0.9995 0.730813 0 + 0.999501 0.9995 0 + 0.894495 0.730813 0 + 0.894495 0.9995 0 + 0.992412 0.0697412 0 + 0.889883 0.0697412 0 + 0.889883 0.973243 0 + 0.992412 0.777374 0 + 0.00403593 0.245978 0 + 0.0985906 0.245978 0 + 0.0985907 0.656193 0 + 0.00403601 0.656193 0 + 0.00403598 0.469247 0 + 0.0985907 0.759671 0 + 0.889883 0.454888 0 + 0.992412 0.454888 0 + 0.00403601 0.784537 0 + 0.891022 0.213992 0 + 0.999501 0.213992 0 + 0.999501 0.0352823 0 + 0.889883 0.777374 0 + 0.992412 0.998771 0 + 0.889883 0.998771 0 + 0.4452 0.636656 0 + 0.444283 0.808628 0 + 0.549276 0.808628 0 + 0.550194 0.636656 0 +endnode +node trimesh mesh67 + parent squid + position -0.109622 2.4141 0.927013 + orientation 0 0 0 0 + wirecolor 0.898438 0.898438 0.898438 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_woodb256 + verts 22 + -0.0232146 0.0325988 0.0278894 + -0.0232146 -0.0164157 0.0278894 + 0.0289947 -0.0164866 0.0278894 + 0.259251 -0.0164866 0.0278894 + 0.311461 -0.0164157 0.0278894 + 0.311461 0.0325988 0.0278894 + 0.311461 0.0325988 -0.0278899 + -0.0232146 0.0325988 -0.0278899 + -0.0232146 -0.0164157 -0.0278899 + 0.0289947 -0.0719342 0.0278894 + 0.0289947 -0.0164866 -0.0278899 + 0.0289947 -0.150635 0.0278894 + 0.0289947 -0.196883 0.0278894 + 0.0289947 -0.484146 -0.0278899 + 0.0289947 -0.441198 0.0278894 + 0.259251 -0.0164866 -0.0278899 + 0.311461 -0.0164157 -0.0278899 + -0.0232146 -0.484015 -0.0278899 + -0.0232146 -0.150635 0.0278894 + -0.0232146 -0.0719342 0.0278894 + -0.0232146 -0.441069 0.0278894 + -0.0232146 -0.196883 0.0278894 + faces 28 + 0 1 2 1 0 1 2 0 + 3 4 5 1 3 4 5 0 + 5 0 3 1 5 0 3 0 + 3 0 2 1 3 0 2 0 + 6 7 0 1 6 7 8 0 + 0 5 6 1 8 9 6 0 + 7 8 0 1 10 11 12 0 + 1 0 8 1 13 12 11 0 + 2 9 10 1 14 15 16 0 + 10 9 11 1 16 15 17 0 + 10 11 12 1 16 17 18 0 + 13 10 12 1 19 16 18 0 + 13 12 14 1 19 18 20 0 + 10 15 2 1 21 22 23 0 + 2 15 3 1 23 22 24 0 + 16 6 4 1 11 10 13 0 + 5 4 6 1 12 13 10 0 + 8 17 18 1 25 26 17 0 + 8 19 1 1 25 15 27 0 + 8 18 19 1 25 17 15 0 + 20 21 17 1 28 18 26 0 + 17 21 18 1 26 18 17 0 + 19 18 9 1 29 30 31 0 + 11 9 18 1 32 31 30 0 + 21 20 12 1 33 34 35 0 + 14 12 20 1 36 35 34 0 + 13 14 20 1 37 38 39 0 + 20 17 13 1 39 40 37 0 + tverts 41 + 0.998012 0.859939 0 + 0.887701 0.859939 0 + 0.887489 0.743056 0 + 0.887489 0.227572 0 + 0.887701 0.110689 0 + 0.998011 0.110689 0 + 0.545332 1.43389 0 + 0.545332 0.517378 0 + 0.446365 0.517378 0 + 0.446365 1.43389 0 + 0.318761 0.276726 0 + 0.21855 0.276726 0 + 0.318761 0.401601 0 + 0.21855 0.401601 0 + 0.448446 1.51186 0 + 0.448445 1.37213 0 + 0.546644 1.51186 0 + 0.448445 1.1738 0 + 0.448445 1.05725 0 + 0.546644 0.24742 0 + 0.448445 0.375885 0 + 0.545332 0.660354 0 + 0.545332 1.29092 0 + 0.446365 0.660354 0 + 0.446365 1.29092 0 + 0.546644 1.51203 0 + 0.546644 0.247748 0 + 0.448446 1.51203 0 + 0.448445 0.376213 0 + 0.000499725 0.82095 0 + 0.000499666 0.552263 0 + 0.112136 0.82095 0 + 0.112136 0.552263 0 + 0.000499636 0.39437 0 + 0.000499517 -0.177607 0 + 0.112136 0.39437 0 + 0.112136 -0.178051 0 + 0.445528 0.636656 0 + 0.444611 0.808628 0 + 0.545708 0.808628 0 + 0.546626 0.636656 0 +endnode +node trimesh mesh70 + parent squid + position -0.0911295 2.23166 1.14915 + orientation 0 0 0 0 + wirecolor 0.898438 0.898438 0.898438 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_woodb256 + verts 29 + -0.0290051 0.0318175 0.0463151 + -0.0290051 -0.0144307 0.0463151 + 0.0232041 0.0318175 0.0463151 + 0.0232041 -0.0144307 0.0463151 + 0.0232043 0.165965 -0.194249 + -0.0290051 0.166036 -0.194249 + -0.0290051 0.0318172 -0.0109782 + 0.0232042 0.0318175 -0.0110137 + 0.0232043 0.110517 -0.194249 + 0.0232043 0.0318172 -0.0945187 + -0.0290051 0.110517 -0.194249 + -0.0290051 0.0318172 -0.0945187 + 0.0232043 -0.0144307 -0.194249 + 0.0232043 0.0318175 -0.194249 + 0.0232041 -0.0144307 -0.0110137 + -0.0290051 0.0318175 -0.194249 + -0.0290051 -0.0144307 -0.194249 + 0.150425 -0.00256553 0.0463151 + 0.253461 0.0318175 0.0463151 + 0.163412 -0.0144307 0.0463151 + 0.253461 -0.0144307 0.0463151 + 0.107178 -0.0144307 0.0463151 + 0.118783 -0.00256553 0.0463151 + 0.253461 -0.0144307 -0.0110137 + 0.163412 -0.0144307 -0.0110137 + 0.253461 0.0318172 -0.0110137 + 0.107178 -0.0144307 -0.0110137 + 0.150425 -0.00256553 -0.0110137 + 0.118783 -0.00256553 -0.0110137 + faces 42 + 0 1 2 1 0 1 2 0 + 3 2 1 1 3 2 1 0 + 4 5 6 1 4 5 6 0 + 6 7 4 1 6 7 4 0 + 8 4 7 1 8 9 10 0 + 7 9 8 1 10 11 8 0 + 10 8 9 1 12 13 7 0 + 9 11 10 1 7 6 12 0 + 5 10 11 1 14 8 11 0 + 11 6 5 1 11 15 14 0 + 12 13 9 1 16 17 18 0 + 7 14 12 1 19 20 16 0 + 12 9 7 1 16 18 19 0 + 15 16 1 1 17 16 21 0 + 1 6 11 1 21 19 18 0 + 1 11 15 1 21 18 17 0 + 13 15 9 1 22 23 24 0 + 11 9 15 1 25 24 23 0 + 16 12 14 1 23 22 26 0 + 14 1 16 1 26 27 23 0 + 1 0 6 1 28 29 19 0 + 7 6 0 1 26 30 31 0 + 0 2 7 1 31 32 26 0 + 1 14 3 1 33 34 35 0 + 17 18 2 1 36 37 38 0 + 18 19 20 1 37 39 40 0 + 2 3 21 1 38 41 42 0 + 2 21 22 1 38 42 43 0 + 2 22 17 1 38 43 36 0 + 18 17 19 1 37 36 39 0 + 23 20 24 1 44 45 46 0 + 19 24 20 1 47 46 45 0 + 18 25 7 1 45 44 48 0 + 7 2 18 1 48 49 45 0 + 21 3 26 1 50 49 51 0 + 14 26 3 1 48 51 49 0 + 19 17 24 1 47 52 46 0 + 27 24 17 1 53 46 52 0 + 22 21 28 1 54 50 55 0 + 26 28 21 1 51 55 50 0 + 17 22 27 1 52 54 53 0 + 28 27 22 1 55 53 54 0 + tverts 56 + 0.000499666 0.552263 0 + 0.000499636 0.39437 0 + 0.112136 0.552263 0 + 0.112136 0.39437 0 + 0.217682 0.988248 0 + 0.111492 0.988776 0 + 0.111492 -0.0209492 0 + 0.217682 -0.0209493 0 + 0.668086 -0.136102 0 + 0.559436 -0.16494 0 + 0.557103 0.707079 0 + 0.664532 0.341474 0 + 0.111492 0.575548 0 + 0.217682 0.575548 0 + 0.559297 -0.164977 0 + 0.557 0.70739 0 + 0.0985906 0.245978 0 + 0.00403593 0.245978 0 + 0.00403598 0.469247 0 + 0.00403601 0.656193 0 + 0.0985907 0.656193 0 + 0.0985907 0.784212 0 + 0.332412 0.0573377 0 + 0.434941 0.0573377 0 + 0.332412 0.442484 0 + 0.434941 0.442484 0 + 0.332412 0.76497 0 + 0.434941 0.989608 0 + 0.0985907 0.784537 0 + 0.00403605 0.784537 0 + 0.434941 0.76497 0 + 0.434941 0.986368 0 + 0.332412 0.986368 0 + 0.222655 0.270066 0 + 0.111808 0.270066 0 + 0.111808 0.448775 0 + 0.361907 0.472929 0 + 0.44545 0.242258 0 + 0.44545 0.757743 0 + 0.333077 0.443853 0 + 0.333077 0.242258 0 + 0.333077 0.757743 0 + 0.333077 0.569748 0 + 0.361907 0.543766 0 + 0.330867 0.943546 0 + 0.229151 0.943546 0 + 0.330867 0.674751 0 + 0.229151 0.674751 0 + 0.330867 0.256232 0 + 0.229151 0.256232 0 + 0.229151 0.506892 0 + 0.330867 0.506892 0 + 0.229151 0.635985 0 + 0.330867 0.635984 0 + 0.229151 0.541534 0 + 0.330867 0.541534 0 +endnode +node trimesh mesh184 + parent squid + position 0.145554 2.20453 0.93553 + orientation 0 0 0 0 + wirecolor 0.898438 0.898438 0.898438 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_crpsbksrp + verts 12 + 0.0123318 0.01306 -0.0138224 + -0.012332 0.01306 -0.0138224 + 0.0123318 0.01306 0.0138218 + -0.012332 0.01306 0.0138218 + -0.012332 -0.0130601 0.0138218 + 0.0123318 -0.0130601 0.0138218 + -0.012332 -0.0130601 -0.0138224 + 0.0123318 -0.0130601 -0.0138224 + -0.012332 0.00737844 -0.00739107 + -0.012332 0.00737844 0.0082271 + -0.012332 -0.0073786 0.0082271 + -0.012332 -0.0073786 -0.00739107 + faces 12 + 0 1 2 1 0 1 2 0 + 3 2 1 1 3 2 1 0 + 4 5 3 1 4 5 6 0 + 2 3 5 1 7 6 5 0 + 6 7 4 1 8 9 4 0 + 5 4 7 1 10 4 9 0 + 8 9 3 1 1 3 3 0 + 3 1 8 1 3 1 1 0 + 9 10 4 1 6 4 4 0 + 4 3 9 1 4 6 6 0 + 10 11 6 1 4 8 8 0 + 6 4 10 1 8 4 4 0 + tverts 11 + 0.37588 0.717331 0 + 0.40485 0.747395 0 + 0.442579 0.717894 0 + 0.471549 0.747957 0 + 0.404947 0.747397 0 + 0.429263 0.717334 0 + 0.472515 0.747983 0 + 0.496831 0.71792 0 + 0.472417 0.747981 0 + 0.443447 0.717917 0 + 0.375977 0.717334 0 +endnode +node trimesh mesh1562 + parent squid + position 0.0329126 -0.365183 0.715981 + orientation 0 0.00436336 -0.99999 -3.14159 + wirecolor 0.898438 0.898438 0.898438 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_wood01 + verts 47 + -0.198957 -2.85227 0.18705 + 0.00058167 -2.98053 0.209194 + 0.200924 -2.85227 0.18705 + -0.459907 -2.35418 0.137467 + 0.448817 -2.35397 0.113547 + -0.0922774 -1.94507 0.0790231 + 0.0922834 -1.94507 0.0790231 + 0.562909 -2.08041 0.0790231 + 0.0922834 -1.60671 0.0328831 + 0.710559 -1.68668 0.0328831 + 0 -1.36062 -0.00095343 + 0.812067 -1.05303 -0.000953431 + -0.246078 -0.929989 -0.000953431 + -0.808988 -1.05303 -0.000953431 + -0.710554 -1.68668 0.0328831 + 0.861284 -0.253265 -0.000953396 + 0.246084 -0.0994648 -0.000953396 + 0.246084 -0.929989 -0.000953431 + -0.861279 -0.253265 -0.000953401 + -0.246078 -0.0994643 -0.000953396 + -0.562909 -2.08041 0.0790231 + -0.0922774 -1.60671 0.0328831 + -0.830518 1.28121 -0.000953713 + -0.861285 -0.256796 -0.000953727 + -0.461403 1.28121 -0.000953713 + 0.246079 0.204605 -0.000953717 + 0.153799 1.28121 -0.000953713 + 0.861284 -0.256796 -0.000953722 + 0.615201 1.28121 -0.000953713 + 0.246079 -0.102996 -0.000953717 + -0.246082 0.204605 -0.000953717 + 0.830518 1.2812 -0.000953713 + -0.246082 -0.102996 -0.000953717 + -0.246081 0.204604 0.0605669 + -0.0738243 0.0846402 0.0605669 + 0 0.127704 0.0605669 + -0.246081 -0.102997 0.0605669 + -0.0738243 -0.00148817 0.0605669 + 0.246081 -0.102997 -0.000953757 + 0.246081 0.204604 -0.000953758 + 0.246081 0.204604 0.0605669 + 0.246081 -0.102997 0.0605669 + -0.246081 0.204604 -0.000953758 + -0.246081 -0.102997 -0.000953757 + 0 -0.0445522 0.0605669 + 0.0738242 0.0846402 0.0605669 + 0.0738242 -0.00148818 0.0605669 + faces 49 + 0 1 2 1 0 1 2 0 + 3 0 2 1 3 0 2 0 + 3 2 4 1 3 2 4 0 + 5 3 4 1 5 3 4 0 + 6 4 7 1 6 4 7 0 + 8 6 7 1 8 6 7 0 + 8 7 9 1 8 7 9 0 + 10 8 9 1 10 8 9 0 + 10 9 11 1 10 9 11 0 + 12 13 10 1 12 13 10 0 + 13 14 10 1 13 14 10 0 + 15 16 11 1 15 16 11 0 + 12 10 17 1 12 10 17 0 + 17 10 11 1 17 10 11 0 + 18 13 19 1 18 13 19 0 + 19 13 12 1 19 13 12 0 + 16 17 11 1 16 17 11 0 + 14 20 5 1 14 20 5 0 + 20 3 5 1 20 3 5 0 + 5 4 6 1 5 4 6 0 + 10 14 21 1 10 14 21 0 + 14 5 21 1 14 5 21 0 + 22 23 24 1 22 18 23 0 + 24 25 26 1 23 24 25 0 + 26 27 28 1 25 15 26 0 + 25 29 27 1 24 16 15 0 + 24 30 25 1 23 27 24 0 + 28 27 31 1 26 15 28 0 + 26 25 27 1 25 24 15 0 + 24 23 30 1 23 18 27 0 + 30 23 32 1 27 18 19 0 + 33 34 35 1 29 30 31 0 + 33 36 37 1 29 32 33 0 + 38 39 40 1 34 35 36 0 + 40 41 38 1 36 37 34 0 + 39 42 33 1 38 39 40 0 + 33 40 39 1 40 41 38 0 + 43 38 41 1 42 43 44 0 + 41 36 43 1 44 45 42 0 + 42 43 36 1 46 47 48 0 + 36 33 42 1 48 49 46 0 + 44 36 41 1 50 32 51 0 + 45 41 40 1 52 51 53 0 + 46 44 41 1 54 50 51 0 + 33 37 34 1 29 33 30 0 + 33 35 40 1 29 31 53 0 + 46 41 45 1 54 51 52 0 + 44 37 36 1 50 33 32 0 + 35 45 40 1 31 52 53 0 + tverts 55 + 0.663169 2.50766 0 + 0.5 2.5923 0 + 0.336831 2.50766 0 + 0.816771 2.35686 0 + 0.183229 2.35686 0 + 0.574998 2.02318 0 + 0.424998 2.02318 0 + 0.0412844 2.13359 0 + 0.424998 1.74818 0 + -0.0783653 1.81345 0 + 0.499998 1.54818 0 + -0.160354 1.29818 0 + 0.699994 1.19818 0 + 1.15705 1.29818 0 + 1.07837 1.81345 0 + -0.199998 0.648181 0 + 0.299998 0.523181 0 + 0.299994 1.19818 0 + 1.19999 0.648181 0 + 0.699998 0.523181 0 + 0.958716 2.13359 0 + 0.574998 1.74818 0 + 1.175 -0.601817 0 + 0.874998 -0.601817 0 + 0.299998 0.273181 0 + 0.374998 -0.601818 0 + 0 -0.601819 0 + 0.699998 0.273181 0 + -0.175004 -0.601819 0 + 0.249999 0.100001 0 + 0.445325 0.378455 0 + 0.375156 0.500011 0 + 0.749999 0.1 0 + 0.585668 0.37846 0 + 0.439342 0.276538 0 + 0.439548 0.776538 0 + 0.539548 0.776489 0 + 0.539342 0.276489 0 + 0.444531 0.889033 0 + 0.444531 0.0890332 0 + 0.544531 0.0890279 0 + 0.544531 0.889028 0 + 0.444488 0.0890332 0 + 0.444573 0.889033 0 + 0.544573 0.889028 0 + 0.544488 0.089028 0 + 0.43959 0.776538 0 + 0.4393 0.276538 0 + 0.5393 0.276489 0 + 0.53959 0.776489 0 + 0.655837 0.500014 0 + 0.749999 0.9 0 + 0.445324 0.621553 0 + 0.249999 0.9 0 + 0.585668 0.621547 0 +endnode +node trimesh object379 + parent squid + position 0.0342087 -0.40844 0.731244 + orientation 0 0.00436338 -0.99999 -3.14159 + wirecolor 0.894531 0.894531 0.894531 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_barl02 + verts 12 + -0.0641465 0.0362565 0.584185 + 0 0.0753019 0.584185 + 0 0.0780909 0.0263952 + -0.0669359 0.0390455 0.0263952 + 0.0641458 -0.0362565 0.584185 + 0 -0.0753019 0.584185 + 0 -0.0780909 0.0263952 + 0.0669353 -0.0390455 0.0263952 + -0.0641465 -0.0362565 0.584185 + -0.0669359 -0.0390455 0.0263952 + 0.0641458 0.0362565 0.584185 + 0.0669353 0.0390455 0.0263952 + faces 12 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 6 1 4 5 6 0 + 6 7 4 1 6 7 4 0 + 8 0 3 1 8 0 3 0 + 3 9 8 1 3 9 8 0 + 10 4 7 1 10 4 7 0 + 7 11 10 1 7 11 10 0 + 5 8 9 1 5 12 13 0 + 9 6 5 1 13 6 5 0 + 1 10 11 1 1 10 11 0 + 11 2 1 1 11 2 1 0 + tverts 14 + 0.369518 0.275396 0 + 0.304064 0.275396 0 + 0.304064 -0.098069 0 + 0.369518 -0.098069 0 + 0.160311 0.275396 0 + 0.0948659 0.275396 0 + 0.0948659 -0.098069 0 + 0.160311 -0.098069 0 + 0.447822 0.275396 0 + 0.447822 -0.098069 0 + 0.238616 0.275396 0 + 0.238616 -0.098069 0 + 0.0294123 0.275396 0 + 0.0294122 -0.098069 0 +endnode +node dummy impact + parent squid + position 0.0272412 -0.0273511 0.781242 + orientation 0.579026 0.573991 0.579019 -4.18374 + wirecolor 0.839844 0.839844 0.839844 +endnode +node trimesh object328 + parent squid + position 0.0342085 -0.408752 1.37196 + orientation 0 0.00436338 -0.99999 -3.14159 + wirecolor 0.839844 0.839844 0.839844 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_barl02 + verts 19 + -0.0390451 0.0223117 1.61673 + 0 0.0446235 1.61673 + 0 0.075302 -0.0566508 + -0.0641457 0.0362566 -0.0566508 + 0.039046 -0.0223117 1.61673 + 0 -0.0474126 1.61673 + 0 -0.075302 -0.0566508 + 0.0641466 -0.0362566 -0.0566508 + -0.0390451 -0.0223117 1.61673 + -0.0641457 -0.0362565 -0.0566508 + 0.039046 0.0223117 1.61673 + 0.0641466 0.0362566 -0.0566508 + -0.0306782 0.0167338 2.35022 + 0 0.0362566 2.35022 + 0.0306791 -0.0167338 2.35022 + 0 -0.0362565 2.35022 + -0.0306782 -0.0167338 2.35022 + 0.0306791 0.0167338 2.35022 + 0 0 2.406 + faces 30 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 6 1 4 5 6 0 + 6 7 4 1 6 7 4 0 + 8 0 3 1 8 0 3 0 + 3 9 8 1 3 9 8 0 + 10 4 7 1 10 4 7 0 + 7 11 10 1 7 11 10 0 + 5 8 9 1 5 12 13 0 + 9 6 5 1 13 6 5 0 + 1 10 11 1 1 10 11 0 + 11 2 1 1 11 2 1 0 + 12 13 1 1 14 15 1 0 + 1 0 12 1 1 0 14 0 + 14 15 5 1 16 17 5 0 + 5 4 14 1 5 4 16 0 + 16 12 0 1 18 14 0 0 + 0 8 16 1 0 8 18 0 + 17 14 4 1 19 16 4 0 + 4 10 17 1 4 10 19 0 + 15 16 8 1 17 20 12 0 + 8 5 15 1 12 5 17 0 + 13 17 10 1 15 19 10 0 + 10 1 13 1 10 1 15 0 + 18 15 14 1 21 22 23 0 + 18 14 17 1 21 23 24 0 + 18 17 13 1 21 24 25 0 + 16 18 12 1 26 21 27 0 + 12 18 13 1 27 21 25 0 + 16 15 18 1 26 22 21 0 + tverts 28 + 0.369518 0.39579 0 + 0.304064 0.39579 0 + 0.304064 -0.724604 0 + 0.369518 -0.724604 0 + 0.160312 0.39579 0 + 0.0948663 0.39579 0 + 0.0948659 -0.724604 0 + 0.160311 -0.724604 0 + 0.447822 0.39579 0 + 0.447822 -0.724604 0 + 0.238616 0.39579 0 + 0.238616 -0.724604 0 + 0.0294124 0.39579 0 + 0.0294123 -0.724604 0 + 0.369517 0.8871 0 + 0.304063 0.8871 0 + 0.160313 0.8871 0 + 0.0948666 0.8871 0 + 0.447821 0.8871 0 + 0.238617 0.8871 0 + 0.0294113 0.8871 0 + 0.163874 0.499943 0 + 0.163856 0.626636 0 + 0.0541903 0.563319 0 + 0.0541843 0.43668 0 + 0.163858 0.373364 0 + 0.273539 0.563319 0 + 0.273544 0.436681 0 +endnode +node trimesh object347 + parent squid + position 0.0361654 -0.977642 2.11665 + orientation 0.745613 0.0220683 -0.666014 -1.38347 + wirecolor 0.839844 0.839844 0.839844 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_barl02 + verts 12 + 0.564314 0.560337 -0.0238445 + 0.580204 0.544438 -0.011922 + -0.544437 -0.580204 -0.0119218 + -0.560337 -0.564314 -0.0238444 + 0.580204 0.544438 0.0139092 + -0.544437 -0.580204 0.0139093 + 0.564314 0.560337 0.0258308 + -0.560337 -0.564314 0.0258308 + 0.548414 0.576232 0.0139092 + -0.576232 -0.548414 0.0139093 + 0.548414 0.576232 -0.011922 + -0.576232 -0.548414 -0.0119218 + faces 20 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 1 4 5 1 4 5 6 0 + 1 5 2 1 4 6 7 0 + 4 6 7 1 5 8 9 0 + 4 7 5 1 5 9 6 0 + 6 8 9 1 8 10 11 0 + 6 9 7 1 8 11 9 0 + 8 10 11 1 10 12 13 0 + 8 11 9 1 10 13 11 0 + 10 0 3 1 12 0 3 0 + 10 3 11 1 12 3 13 0 + 6 10 8 1 14 15 16 0 + 4 10 6 1 17 15 14 0 + 1 10 4 1 18 15 17 0 + 0 10 1 1 19 15 18 0 + 7 9 11 1 20 21 22 0 + 5 7 11 1 23 20 22 0 + 2 5 11 1 24 23 22 0 + 3 2 11 1 25 24 22 0 + tverts 26 + 0.23746 -0.516472 0 + 0.26934 -0.516632 0 + 0.27731 0.7951 0 + 0.25229 0.79526 0 + 0.09313 -0.516632 0 + 0.13231 -0.516632 0 + 0.12434 0.7951 0 + 0.1011 0.7951 0 + 0.16419 -0.516472 0 + 0.14936 0.79526 0 + 0.1892 -0.516313 0 + 0.18123 0.79542 0 + 0.21245 -0.516313 0 + 0.22042 0.79542 0 + 0.499999 0.564466 0 + 0.555827 0.467768 0 + 0.555827 0.532233 0 + 0.444171 0.532233 0 + 0.444171 0.467768 0 + 0.499999 0.435536 0 + 0.5 0.355479 0 + 0.555829 0.323246 0 + 0.555829 0.258782 0 + 0.444173 0.323246 0 + 0.444173 0.258782 0 + 0.5 0.226549 0 +endnode +node danglymesh line1535 + parent squid + shadow 0 + position -0.327801 -0.456613 2.37041 + orientation 0.995435 -0.087465 0.0382077 -2.11918 + wirecolor 0.890625 0.890625 0.890625 + danglymesh 1 + tightness 0.5 + period 1 + displacement 0.1 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_material01 + verts 24 + 0.382089 0.566162 0.0111568 + 0.348621 0.666565 0.43594 + 0.348621 0.373721 0.105981 + 0.398822 -0.621936 -0.538273 + 0.488071 -0.373721 -0.393244 + 0.348621 -0.987291 -0.513173 + 0.476915 -0.119925 -0.652616 + 0.462966 0.217539 -0.783699 + 0.451811 0.348621 -0.449023 + 0.515958 0.0306788 -0.499226 + 0.398822 -0.563372 -0.270529 + 0.398822 0.00557819 0.078091 + 0.348621 0.666565 0.43594 + 0.382089 0.566162 0.0111568 + 0.348621 0.373721 0.105981 + 0.488071 -0.373721 -0.393244 + 0.398822 -0.621936 -0.538273 + 0.348621 -0.987291 -0.513173 + 0.476915 -0.119925 -0.652616 + 0.451811 0.348621 -0.449023 + 0.462966 0.217539 -0.783699 + 0.515958 0.0306788 -0.499226 + 0.398822 -0.563372 -0.270529 + 0.398822 0.00557819 0.078091 + faces 26 + 0 1 2 1 0 1 2 0 + 3 4 5 1 3 4 5 0 + 6 4 3 1 6 4 3 0 + 7 8 9 1 7 8 9 0 + 9 0 2 1 9 0 2 0 + 6 9 4 1 6 9 4 0 + 7 9 6 1 7 9 6 0 + 9 8 0 1 9 8 0 0 + 4 10 5 1 4 10 5 0 + 4 2 11 1 4 2 11 0 + 9 2 4 1 9 2 4 0 + 2 1 11 1 2 1 11 0 + 4 11 10 1 4 11 10 0 + 12 13 14 1 1 0 2 0 + 15 16 17 1 4 3 5 0 + 15 18 16 1 4 6 3 0 + 19 20 21 1 8 7 9 0 + 13 21 14 1 0 9 2 0 + 21 18 15 1 9 6 4 0 + 21 20 18 1 9 7 6 0 + 19 21 13 1 8 9 0 0 + 22 15 17 1 10 4 5 0 + 14 15 23 1 2 4 11 0 + 14 21 15 1 2 9 4 0 + 12 14 23 1 1 2 11 0 + 23 15 22 1 11 4 10 0 + tverts 12 + 0.727692 0.546607 0 + 0.727331 1 0 + 0.619944 0.568264 0 + 0.288166 0 0 + 0.372428 0.144865 0 + 0.108507 0 0 + 0.546395 0 0 + 0.729084 0 0 + 0.727873 0.258639 0 + 0.583283 0.159604 0 + 0.261924 0.185944 0 + 0.448563 0.47427 0 + constraints 24 + 190 + 0 + 190 + 230 + 150 + 0 + 230 + 0 + 150 + 150 + 150 + 190 + 0 + 190 + 190 + 150 + 230 + 0 + 230 + 150 + 0 + 150 + 150 + 190 +endnode +node trimesh box155721 + parent squid + position 0.0284333 -0.135262 0.715589 + orientation 0 0 -1 -3.14159 + wirecolor 0.695313 0.695313 0.695313 + ambient 0.52549 0.435294 0.439216 + diffuse 0.52549 0.435294 0.439216 + specular 0 0 0 + shininess 1 + bitmap plc_woodb256 + verts 8 + -0.311614 -0.833109 0.000991314 + -0.312027 0.138004 0.000742476 + 0.312026 0.138004 0.000742476 + 0.311614 -0.833109 0.000991334 + -0.311614 -0.833109 0.0179075 + 0.311614 -0.833109 0.0179075 + 0.312026 0.138004 0.0176811 + -0.312027 0.138004 0.0176811 + faces 12 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 6 1 0 3 2 0 + 6 7 4 1 2 1 0 0 + 0 3 5 1 4 5 3 0 + 5 4 0 1 3 0 4 0 + 3 2 6 1 6 7 2 0 + 6 5 3 1 2 3 6 0 + 2 1 7 1 8 9 1 0 + 7 6 2 1 1 2 8 0 + 1 0 4 1 10 11 0 0 + 4 7 1 1 0 1 10 0 + tverts 12 + 0.000499487 0.000499755 0 + 0.000499725 0.9995 0 + 0.999501 0.9995 0 + 0.9995 0.000499547 0 + 0.000499487 -0.0333167 0 + 0.9995 -0.0333169 0 + 1.03017 0.000499547 0 + 1.03017 0.9995 0 + 0.999501 0.965684 0 + 0.000499725 0.965684 0 + 0.0311688 0.9995 0 + 0.0311685 0.000499755 0 +endnode +node trimesh box01 + parent squid + position 0.0070499 0.477474 0.730694 + orientation 0 0 -1 -3.14159 + wirecolor 0.105469 0.105469 0.105469 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_creats + verts 16 + -0.0643743 -0.167115 0.00232993 + -0.0637002 -0.0418092 0.00501155 + 0.0624633 -0.0418092 0.00501155 + 0.0637998 -0.167115 0.00232995 + -0.0204073 -0.1332 0.0399489 + 0.0196313 -0.1332 0.0399489 + 0.0193346 -0.0757235 0.0409127 + -0.0204144 -0.0757235 0.0409127 + 0.0637998 -0.167115 0.0150267 + -0.0643743 -0.167115 0.0150267 + 0.0624633 -0.0418092 0.0175091 + -0.0637002 -0.0418092 0.0175091 + 0.0196313 -0.1332 0.0162219 + -0.0204073 -0.1332 0.0162219 + 0.0193346 -0.0757235 0.0173574 + -0.0204144 -0.0757235 0.0173574 + faces 28 + 0 1 2 1 0 1 2 0 + 2 3 0 1 3 4 5 0 + 4 5 6 1 6 7 8 0 + 6 7 4 1 8 9 6 0 + 0 3 8 1 10 11 4 0 + 8 9 0 1 4 12 10 0 + 3 2 10 1 13 3 14 0 + 10 8 3 1 3 4 13 0 + 2 1 11 1 15 16 17 0 + 11 10 2 1 17 18 15 0 + 1 0 9 1 19 20 0 0 + 9 11 1 1 0 1 19 0 + 9 8 12 1 5 4 21 0 + 12 13 9 1 21 22 5 0 + 8 10 14 1 4 3 23 0 + 14 12 8 1 23 21 4 0 + 10 11 15 1 2 1 24 0 + 15 14 10 1 24 25 2 0 + 11 9 13 1 1 0 26 0 + 13 15 11 1 26 24 1 0 + 13 12 5 1 27 28 29 0 + 5 4 13 1 29 30 31 0 + 12 14 6 1 32 33 8 0 + 6 5 12 1 8 7 34 0 + 14 15 7 1 35 36 9 0 + 7 6 14 1 9 8 35 0 + 15 13 4 1 37 38 6 0 + 4 7 15 1 6 9 39 0 + tverts 40 + 0.508138 0.300301 0 + 0.508138 0.495038 0 + 0.702875 0.495038 0 + 0.507967 0.300054 0 + 0.507967 0.49479 0 + 0.702704 0.49479 0 + 0.401588 0.909975 0 + 0.462711 0.909975 0 + 0.462711 0.9993 0 + 0.401588 0.9993 0 + 0.702704 0.446817 0 + 0.507967 0.44839 0 + 0.702704 0.493218 0 + 0.584936 0.49479 0 + 0.584936 0.300054 0 + 0.547596 0.458196 0 + 0.73584 0.458196 0 + 0.73584 0.49148 0 + 0.547596 0.49148 0 + 0.55053 0.495038 0 + 0.55053 0.300301 0 + 0.574774 0.442084 0 + 0.635897 0.442084 0 + 0.574774 0.35276 0 + 0.574945 0.442331 0 + 0.636068 0.442331 0 + 0.574945 0.353007 0 + 0.497068 0.424637 0 + 0.558191 0.424637 0 + 0.558191 0.471038 0 + 0.497068 0.471038 0 + 0.497068 0.425251 0 + 0.506129 0.909975 0 + 0.506129 0.9993 0 + 0.504155 0.909975 0 + 0.462711 0.967693 0 + 0.401588 0.967693 0 + 0.445006 0.9993 0 + 0.445006 0.909975 0 + 0.443033 0.9993 0 +endnode +node trimesh box132 + parent squid + position 0.0283448 1.13004 0.798298 + orientation 0 0.00436274 -0.99999 -0.0174548 + wirecolor 0.695313 0.695313 0.695313 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_woodb256 + verts 16 + -0.337911 -0.360439 0 + 0.337912 -0.360439 0 + 0.337912 -0.360439 0.0171812 + -0.337911 -0.360439 0.0171812 + 0.337912 0.360439 0 + 0.337912 0.360439 0.0171812 + -0.337911 0.360439 0 + -0.337911 0.360439 0.0171812 + 0.293836 -0.313425 0.0176318 + -0.293836 -0.313425 0.0176318 + 0.293836 0.313425 0.0176318 + -0.293836 0.313425 0.0176318 + 0.293836 -0.313425 0.00450557 + -0.293836 -0.313425 0.00450557 + 0.293836 0.313425 0.00450557 + -0.293836 0.313425 0.00450557 + faces 24 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 1 4 5 1 4 5 6 0 + 5 2 1 1 6 7 4 0 + 4 6 7 1 1 0 3 0 + 7 5 4 1 3 2 1 0 + 6 0 3 1 5 4 7 0 + 3 7 6 1 7 6 5 0 + 3 2 8 1 8 9 10 0 + 8 9 3 1 10 11 8 0 + 2 5 10 1 12 13 14 0 + 10 8 2 1 14 15 12 0 + 5 7 11 1 16 17 18 0 + 11 10 5 1 18 19 16 0 + 7 3 9 1 20 21 22 0 + 9 11 7 1 22 23 20 0 + 9 8 12 1 24 25 26 0 + 12 13 9 1 26 27 24 0 + 8 10 14 1 28 29 30 0 + 14 12 8 1 30 31 28 0 + 10 11 15 1 25 24 27 0 + 15 14 10 1 27 26 25 0 + 11 9 13 1 29 28 31 0 + 13 15 11 1 31 30 29 0 + tverts 32 + 0.491421 -0.426982 0 + 0.491421 0.509581 0 + 0.516818 0.509581 0 + 0.516818 -0.426982 0 + 0.513743 0.511019 0 + 0.513743 -0.487981 0 + 0.488345 -0.487981 0 + 0.488346 0.511019 0 + 0.40325 0.0205479 0 + 0.40325 1.01955 0 + 0.338098 0.954396 0 + 0.338098 0.0857001 0 + 0.976568 0.000499487 0 + 0.976568 0.9995 0 + 0.911416 0.934348 0 + 0.911415 0.0656517 0 + 0.138096 0.991481 0 + 0.138096 -0.00751952 0 + 0.203248 0.0576327 0 + 0.203248 0.926329 0 + 0.898151 0.999501 0 + 0.898151 0.000499696 0 + 0.963303 0.0656519 0 + 0.963303 0.934348 0 + 0.517484 -0.365902 0 + 0.517484 0.448501 0 + 0.498081 0.448501 0 + 0.498081 -0.365902 0 + 0.48768 0.445867 0 + 0.487679 -0.422829 0 + 0.507083 -0.422829 0 + 0.507083 0.445867 0 +endnode +node trimesh box133 + parent squid + position 0.0490816 1.87924 0.851936 + orientation -0.999657 -0.0261746 0 -0.1309 + wirecolor 0.695313 0.695313 0.695313 + ambient 0.52549 0.435294 0.439216 + diffuse 0.52549 0.435294 0.439216 + specular 0 0 0 + shininess 1 + bitmap plc_woodb256 + verts 8 + -0.177182 -0.393392 0 + -0.177182 -0.00106143 0 + 0.177182 -0.00106143 0 + 0.177182 -0.393392 0 + -0.177182 -0.393392 0.00961858 + 0.177182 -0.393392 0.00961858 + 0.177182 -0.00106143 0.00961858 + -0.177182 -0.00106143 0.00961858 + faces 12 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 5 6 1 0 3 2 0 + 6 7 4 1 2 1 0 0 + 0 3 5 1 4 5 3 0 + 5 4 0 1 3 0 4 0 + 3 2 6 1 6 7 2 0 + 6 5 3 1 2 3 6 0 + 2 1 7 1 8 9 1 0 + 7 6 2 1 1 2 8 0 + 1 0 4 1 10 11 0 0 + 4 7 1 1 0 1 10 0 + tverts 12 + 0.000499487 0.000499755 0 + 0.000499725 0.9995 0 + 0.999501 0.9995 0 + 0.9995 0.000499547 0 + 0.000499487 -0.0333167 0 + 0.9995 -0.0333169 0 + 1.03017 0.000499547 0 + 1.03017 0.9995 0 + 0.999501 0.965684 0 + 0.000499725 0.965684 0 + 0.0311688 0.9995 0 + 0.0311685 0.000499755 0 +endnode +node trimesh box135 + parent squid + position 0.0611264 1.53453 0.815145 + orientation -0.999657 -0.0261745 0 -0.1309 + wirecolor 0.582031 0.582031 0.582031 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_creats + verts 16 + -0.0367422 -0.0253118 0 + -0.0367422 0.0253117 0 + 0.0367423 0.0253117 0 + 0.0367423 -0.0253119 0 + -0.0115324 -0.0116104 0.0212008 + 0.0115325 -0.0116104 0.0212008 + 0.0115325 0.0116103 0.0212008 + -0.0115324 0.0116103 0.0212008 + 0.0367423 -0.0253119 0.0072793 + -0.0367422 -0.0253118 0.0072793 + 0.0367423 0.0253117 0.0072793 + -0.0367422 0.0253117 0.0072793 + 0.0115325 -0.0116104 0.00753244 + -0.0115324 -0.0116104 0.00753244 + 0.0115325 0.0116103 0.00753244 + -0.0115324 0.0116103 0.00753244 + faces 28 + 0 1 2 1 0 1 2 0 + 2 3 0 1 3 4 5 0 + 4 5 6 1 6 7 8 0 + 6 7 4 1 8 9 6 0 + 0 3 8 1 10 11 4 0 + 8 9 0 1 4 12 10 0 + 3 2 10 1 13 3 14 0 + 10 8 3 1 3 4 13 0 + 2 1 11 1 15 16 17 0 + 11 10 2 1 17 18 15 0 + 1 0 9 1 19 20 0 0 + 9 11 1 1 0 1 19 0 + 9 8 12 1 5 4 21 0 + 12 13 9 1 21 22 5 0 + 8 10 14 1 4 3 23 0 + 14 12 8 1 23 21 4 0 + 10 11 15 1 2 1 24 0 + 15 14 10 1 24 25 2 0 + 11 9 13 1 1 0 26 0 + 13 15 11 1 26 24 1 0 + 13 12 5 1 27 28 29 0 + 5 4 13 1 29 30 31 0 + 12 14 6 1 32 33 8 0 + 6 5 12 1 8 7 34 0 + 14 15 7 1 35 36 9 0 + 7 6 14 1 9 8 35 0 + 15 13 4 1 37 38 6 0 + 4 7 15 1 6 9 39 0 + tverts 40 + 0.508138 0.300301 0 + 0.508138 0.495038 0 + 0.702875 0.495038 0 + 0.507967 0.300054 0 + 0.507967 0.49479 0 + 0.702704 0.49479 0 + 0.401588 0.909975 0 + 0.462711 0.909975 0 + 0.462711 0.9993 0 + 0.401588 0.9993 0 + 0.702704 0.446817 0 + 0.507967 0.44839 0 + 0.702704 0.493218 0 + 0.584936 0.49479 0 + 0.584936 0.300054 0 + 0.547596 0.458196 0 + 0.73584 0.458196 0 + 0.73584 0.49148 0 + 0.547596 0.49148 0 + 0.55053 0.495038 0 + 0.55053 0.300301 0 + 0.574774 0.442084 0 + 0.635897 0.442084 0 + 0.574774 0.35276 0 + 0.574945 0.442331 0 + 0.636068 0.442331 0 + 0.574945 0.353007 0 + 0.497068 0.424637 0 + 0.558191 0.424637 0 + 0.558191 0.471038 0 + 0.497068 0.471038 0 + 0.497068 0.425251 0 + 0.506129 0.909975 0 + 0.506129 0.9993 0 + 0.504155 0.909975 0 + 0.462711 0.967693 0 + 0.401588 0.967693 0 + 0.445006 0.9993 0 + 0.445006 0.909975 0 + 0.443033 0.9993 0 +endnode +node trimesh mesh1757 + parent squid + position 0.0344998 1.99703 0.927299 + orientation 0 0 0 0 + wirecolor 0.0351563 0.0351563 0.0351563 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_crpsbksrp + verts 16 + -0.00348794 -0.0118944 0.0196406 + 0.00659362 -0.0118944 0.0196406 + -0.00348794 0.0118935 0.0196406 + 0.00659362 0.0118935 0.0196406 + -0.00348794 0 -0.00553534 + 0.00659362 0 -0.00553534 + -0.00560505 0.00777338 0.0164547 + -0.00560505 -0.00777433 0.0164547 + -0.00560505 0 0 + 0.00871074 0.00777338 0.0164547 + 0.00871074 0 0 + 0.00871074 -0.00777433 0.0164547 + -0.00348794 -0.0203824 0.161178 + 0.00659362 -0.0203824 0.161178 + 0.00155282 -0.0246368 0.161178 + 0.00155282 0.00763907 0.0196406 + faces 24 + 0 1 2 1 0 1 2 0 + 3 2 1 1 3 2 1 0 + 4 5 0 1 4 5 0 0 + 1 0 5 1 1 0 5 0 + 5 4 3 1 6 7 8 0 + 2 3 4 1 9 8 7 0 + 6 7 0 1 10 11 0 0 + 0 2 6 1 0 2 10 0 + 7 8 4 1 11 12 4 0 + 4 0 7 1 4 0 11 0 + 9 10 5 1 13 14 6 0 + 5 3 9 1 6 8 13 0 + 11 9 3 1 15 16 3 0 + 3 1 11 1 3 1 15 0 + 10 11 1 1 17 15 1 0 + 1 5 10 1 1 5 17 0 + 8 6 2 1 18 19 9 0 + 2 4 8 1 9 7 18 0 + 12 13 3 1 20 21 22 0 + 3 2 12 1 22 23 20 0 + 13 14 3 1 24 25 8 0 + 15 3 14 1 26 8 25 0 + 14 12 15 1 25 27 26 0 + 2 15 12 1 9 26 27 0 + tverts 28 + 0.250959 0.746446 0 + 0.250959 0.729347 0 + 0.371696 0.746446 0 + 0.371696 0.729347 0 + 0.375754 0.746446 0 + 0.375754 0.729347 0 + 0.255017 0.729347 0 + 0.255017 0.746446 0 + 0.123562 0.729347 0 + 0.123562 0.746446 0 + 0.353043 0.733823 0 + 0.270909 0.733823 0 + 0.355804 0.733823 0 + 0.152029 0.740486 0 + 0.22655 0.740486 0 + 0.269405 0.740486 0 + 0.35325 0.740486 0 + 0.345616 0.740486 0 + 0.234834 0.733823 0 + 0.146536 0.733823 0 + 0.157113 0.746446 0 + 0.157113 0.729347 0 + 0.614977 0.729347 0 + 0.614977 0.746446 0 + 0.555771 0.729347 0 + 0.555771 0.737897 0 + 0.123562 0.737897 0 + 0.555771 0.746446 0 +endnode +node trimesh plane446 + parent squid + position -0.517426 -0.854254 0.895441 + orientation -0.0511207 -0.127633 -0.990503 -3.74195 + wirecolor 0.835938 0.835938 0.835938 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap plc_crpsbksrp + verts 4 + -0.108872 0.00763505 0 + -0.108872 -0.00763458 0 + 0.108871 0.00763505 0 + 0.108871 -0.00763458 0 + faces 2 + 0 1 2 1 0 1 2 0 + 3 2 1 1 3 2 1 0 + tverts 4 + 0.0513124 0.743961 0 + 0 0.729469 0 + 1.05131 0.743961 0 + 1 0.729469 0 +endnode +node trimesh object334 + parent squid + position -0.212202 -1.97967 0.758518 + orientation 0 0.00436336 -0.99999 -3.14159 + wirecolor 0.769531 0.769531 0.769531 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_wood01 + verts 12 + -0.133247 -0.63164 0.503137 + -0.133247 -0.720863 -0.00672335 + -0.0534136 -0.715258 0.04015 + -0.0534136 -0.641038 0.454752 + 0.571167 -0.6685 0.508282 + 0.491333 -0.670043 0.455599 + 0.571167 -0.765187 -0.0441984 + 0.491333 -0.749043 0.0143003 + 0.00763539 -0.671076 0.0694032 + 0.00763549 -0.614549 0.39314 + 0.430283 -0.694985 0.0508814 + 0.430283 -0.635642 0.390728 + faces 18 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 0 3 1 4 5 6 0 + 3 5 4 1 6 7 4 0 + 6 4 5 1 8 9 10 0 + 5 7 6 1 10 11 8 0 + 1 6 7 1 12 13 14 0 + 7 2 1 1 14 15 12 0 + 3 2 8 1 16 17 18 0 + 8 9 3 1 18 19 16 0 + 2 7 10 1 20 21 22 0 + 10 8 2 1 22 23 20 0 + 7 5 11 1 17 16 19 0 + 11 10 7 1 19 18 17 0 + 9 8 10 1 24 25 26 0 + 10 11 9 1 26 27 24 0 + 5 3 9 1 28 29 30 0 + 9 11 5 1 30 31 28 0 + tverts 32 + 0.319416 0.838385 0 + 0.319469 0.161587 0 + 0.377529 0.227103 0 + 0.377485 0.773021 0 + 0.838362 0.249951 0 + 0.838432 0.749951 0 + 0.773055 0.691895 0 + 0.773001 0.308024 0 + 0.819469 0.161626 0 + 0.819416 0.838424 0 + 0.761356 0.773051 0 + 0.7614 0.227134 0 + 0.161634 0.750047 0 + 0.161564 0.250047 0 + 0.227085 0.308103 0 + 0.227139 0.691973 0 + 0.557168 0.773514 0 + 0.542824 0.227784 0 + 0.442832 0.226486 0 + 0.457176 0.772216 0 + 0.691263 0.308064 0 + 0.691263 0.691935 0 + 0.591263 0.691935 0 + 0.591263 0.308064 0 + 0.000195067 0.607377 0 + 0.00430784 0.000304742 0 + 0.389805 0.00262311 0 + 0.385692 0.609695 0 + 0.51857 0.691936 0 + 0.518571 0.308064 0 + 0.481432 0.350054 0 + 0.481429 0.649949 0 +endnode +node trimesh object337 + parent squid + position 0.0345503 -1.99178 0.976802 + orientation 0 0.00436336 -0.99999 -3.14159 + wirecolor 0.113281 0.113281 0.113281 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_barl02 + verts 16 + 0.723104 -0.674162 0.277363 + 0.723104 -0.719977 0.00786671 + 0.805973 -0.733444 0.00429722 + -0.768594 -0.682099 0.278551 + -0.851464 -0.696242 0.277113 + -0.851464 -0.743295 0.000352121 + -0.437109 -0.734385 -0.250095 + 0.115372 -0.623418 0.283237 + -0.354237 -0.634669 0.282822 + 0.115373 -0.714968 -0.23987 + -0.437109 -0.641216 0.282304 + 0.529735 -0.649617 0.280151 + 0.529735 -0.742562 -0.250982 + 0.805973 -0.687282 0.275839 + 0.723104 -0.768481 -0.261628 + -0.768594 -0.728719 0.00433292 + faces 10 + 0 1 2 1 0 1 2 0 + 3 4 5 1 3 4 5 0 + 6 7 8 1 6 7 8 0 + 9 7 6 1 9 7 6 0 + 6 8 10 1 6 8 10 0 + 0 11 12 1 0 11 12 0 + 0 12 1 1 0 12 1 0 + 0 2 13 1 0 2 13 0 + 1 12 14 1 1 12 14 0 + 15 3 5 1 15 3 5 0 + tverts 16 + 0.48475 0.0053077 0 + 0.244946 0.0053052 0 + 0.244946 -0.0946921 0 + 0.48475 0.4 0 + 0.48475 0.5 0 + 0.244946 0.5 0 + 0.00512474 1 0 + 0.48475 0.333334 0 + 0.48475 0.9 0 + 0.00512466 0.333334 0 + 0.48475 1 0 + 0.48475 0.238641 0 + 0.0051247 0.238641 0 + 0.48475 -0.0946923 0 + 0.0051247 0.00530532 0 + 0.244946 0.4 0 +endnode +node trimesh object338 + parent squid + position 0.03455 -1.74592 0.976183 + orientation 0 0.00436336 -0.99999 -3.14159 + wirecolor 0.113281 0.113281 0.113281 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_barl02 + verts 24 + -0.851464 -0.367359 0.279875 + -0.851464 -0.497437 0.00311518 + -0.851464 -0.450388 0.279875 + -0.851464 -0.547253 -0.273646 + -0.815555 -0.0857317 -0.270742 + 0.805973 -0.536465 -0.264482 + 0.770065 -0.0837243 -0.261972 + 0.770065 0.010996 0.279289 + 0.805973 -0.359965 0.278602 + -0.721638 0.209553 -0.263704 + -0.81556 0.0107402 0.280527 + -0.721638 0.305056 0.282031 + 0.676137 0.206549 -0.255964 + 0.676137 0.300499 0.280897 + -0.605614 0.369377 -0.256126 + -0.605614 0.463818 0.283522 + -0.464733 0.471671 -0.248594 + -0.464733 0.565027 0.284861 + 0.560124 0.364624 -0.249664 + 0.560119 0.457762 0.28254 + 0.419237 0.466917 -0.243688 + 0.419237 0.559274 0.284089 + 0.805973 -0.487588 0.00706015 + 0.805973 -0.441426 0.278602 + faces 20 + 0 1 2 1 0 1 2 0 + 3 0 4 1 3 0 4 0 + 5 6 7 1 5 6 7 0 + 7 8 5 1 7 8 5 0 + 9 4 10 1 9 4 10 0 + 10 11 9 1 10 11 9 0 + 6 12 13 1 6 12 13 0 + 13 7 6 1 13 7 6 0 + 14 9 11 1 14 9 11 0 + 11 15 14 1 11 15 14 0 + 16 14 15 1 16 14 15 0 + 15 17 16 1 15 17 16 0 + 12 18 19 1 12 18 19 0 + 19 13 12 1 19 13 12 0 + 18 20 21 1 18 20 21 0 + 21 19 18 1 21 19 18 0 + 0 10 4 1 0 10 4 0 + 8 22 5 1 8 22 5 0 + 8 23 22 1 8 23 22 0 + 0 3 1 1 0 3 1 0 + tverts 24 + 0.00719778 1.41934 0 + 0.247436 1.50875 0 + 0.0197142 1.50875 0 + 0.475146 1.50875 0 + 0.463779 1.08304 0 + 0.47218 0.40157 0 + 0.470783 0.81049 0 + 0.014847 0.79532 0 + 0.0158487 0.47037 0 + 0.464607 0.77902 0 + 0.00819959 1.08017 0 + 0.00896783 0.775738 0 + 0.469955 1.08112 0 + 0.0140787 1.06566 0 + 0.465204 0.575475 0 + 0.0095326 0.567643 0 + 0.465777 0.394332 0 + 0.0100736 0.394332 0 + 0.469358 1.33521 0 + 0.0135139 1.32352 0 + 0.468785 1.50706 0 + 0.012967 1.50706 0 + 0.244132 0.40157 0 + 0.0160959 0.40157 0 +endnode +node trimesh object339 + parent squid + position -0.741687 -1.35287 1.52107 + orientation 0 0.00436336 -0.99999 -3.14159 + wirecolor 0.527344 0.527344 0.527344 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap ttr01_wood01 + verts 131 + -1.21334 0.00242525 -0.016785 + 0.0297392 -0.0436413 -0.0184422 + 0.0297392 -0.0436415 0.00871196 + -1.21334 0.00242532 0.00983508 + 0.0297393 0.037821 -0.0184422 + 0.0297393 0.0378212 0.00871191 + -0.006171 0.408783 -0.0185759 + -0.006171 0.408783 0.00848714 + -0.100097 0.698284 -0.0189468 + -0.100097 0.698284 0.0078963 + -0.216118 0.855546 -0.0193976 + -0.216118 0.855546 0.00721271 + -0.357001 0.957059 -0.0198436 + -0.357001 0.957059 0.0065454 + -1.24097 0.962812 -0.016517 + -1.24097 0.962812 0.0101557 + -1.38185 0.861604 -0.0150657 + -1.38185 0.861604 0.0119166 + -1.49787 0.70284 -0.0138208 + -1.49787 0.70284 0.0134658 + -1.59179 0.408525 -0.0128342 + -1.59179 0.408528 0.0147293 + -1.6277 0.0304261 -0.0124721 + -1.6277 0.0304258 0.015204 + -1.6277 -0.0526018 -0.0124721 + -1.6277 -0.0526018 0.015204 + -1.54483 -0.0384597 -0.013322 + -1.54483 -0.0384597 0.0140997 + -1.54483 0.0438056 -0.0133221 + -1.54483 0.0438056 0.0140997 + -1.50892 0.417907 -0.013703 + -1.50892 0.417907 0.0136149 + -1.42881 0.680526 -0.0145628 + -1.42881 0.680526 0.0125375 + -1.33213 0.804568 -0.0155907 + -1.33213 0.804568 0.0112746 + -1.22716 0.883181 -0.0166518 + -1.22716 0.883181 0.00999418 + -0.373573 0.878527 -0.0198844 + -0.373573 0.878527 0.00648299 + -0.265841 0.802368 -0.0195724 + -0.265841 0.802368 0.00695183 + -0.169152 0.676707 -0.01922 + -0.169152 0.676707 0.00747908 + -0.0890429 0.417983 -0.0189024 + -0.0890429 0.417983 0.00796514 + -0.0531326 0.050328 -0.018759 + -0.0531326 0.050328 0.00819052 + -1.21334 0.082285 -0.016785 + -1.21334 0.082285 0.00983508 + -1.24097 0.962807 -0.256571 + -1.24097 0.882794 -0.256571 + -1.22439 0.899239 -0.203164 + -1.22439 0.947187 -0.203164 + -1.1581 0.884841 -0.256002 + -1.1581 0.964411 -0.256002 + -1.17467 0.948201 -0.203002 + -1.17467 0.900415 -0.203002 + -1.22439 0.947187 -0.0166785 + -1.17467 0.948201 -0.0171478 + -1.17467 0.900415 -0.0171479 + -1.22439 0.899239 -0.0166785 + -0.357001 0.877901 -0.257343 + -0.357001 0.957064 -0.257343 + -0.373578 0.941811 -0.204456 + -0.373578 0.894351 -0.204456 + -0.439872 0.959686 -0.256639 + -0.4233 0.94342 -0.204151 + -0.439872 0.880813 -0.256639 + -0.4233 0.896067 -0.204151 + -0.4233 0.94342 -0.0199888 + -0.373578 0.941811 -0.0198843 + -0.373578 0.894351 -0.0198843 + -0.4233 0.896067 -0.0199888 + -0.0531326 -0.0305209 -0.261306 + 0.0297393 -0.0436413 -0.26283 + 0.013162 -0.0246206 -0.208285 + -0.0365602 -0.016823 -0.207616 + 0.0297394 0.0378213 -0.26283 + 0.0131621 0.0241802 -0.208284 + -0.0531326 0.050328 -0.261306 + -0.0365601 0.0317568 -0.207616 + 0.013162 -0.0246206 -0.0185031 + -0.0365602 -0.016823 -0.0186937 + 0.0131621 0.0241802 -0.0185032 + -0.03656 0.031757 -0.0186937 + -1.21334 0.082283 -0.256364 + -1.21334 0.00242243 -0.256364 + -1.19677 0.0197979 -0.20307 + -1.19677 0.06766 -0.20307 + -1.13047 0.0884001 -0.255846 + -1.14705 0.0713807 -0.202929 + -1.13047 0.00896531 -0.255846 + -1.14704 0.0236721 -0.202929 + -1.19677 0.06766 -0.0169423 + -1.14705 0.0713807 -0.0173975 + -1.19677 0.0197979 -0.0169422 + -1.14704 0.0236721 -0.0173976 + -1.6277 -0.0526058 -0.261556 + -1.54483 -0.0384638 -0.260118 + -1.56141 -0.0246782 -0.205445 + -1.61113 -0.0330712 -0.206003 + -1.54483 0.0438015 -0.260118 + -1.56141 0.0247698 -0.205445 + -1.6277 0.0304219 -0.261556 + -1.61113 0.0166514 -0.206003 + -1.56141 -0.0246782 -0.0131481 + -1.61113 -0.0330711 -0.0126376 + -1.56141 0.0247698 -0.0131481 + -1.61113 0.0166515 -0.0126376 + -1.49787 0.70284 -0.259401 + -1.59179 0.408523 -0.260905 + -0.798984 0.45309 -0.255134 + -0.00617095 0.40878 -0.262143 + -0.100097 0.698284 -0.260535 + -0.439872 0.880808 -0.25664 + -0.216118 0.855541 -0.25889 + -0.357001 0.877896 -0.257343 + -0.357001 0.957059 -0.257343 + -0.66086 0.0202161 -0.255432 + -0.0531326 0.0503262 -0.261306 + -1.54483 0.0438036 -0.260118 + -1.21334 0.0822835 -0.256364 + -1.13047 0.00896592 -0.255846 + -1.6277 0.0304239 -0.261556 + -0.246503 -0.00597559 -0.258516 + 0.0297394 0.0378191 -0.26283 + -1.13047 0.0884011 -0.255846 + -0.0531326 -0.0305231 -0.261306 + -1.38185 0.861599 -0.257908 + -0.439872 0.959686 -0.25664 + faces 177 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 1 4 5 1 4 5 6 0 + 1 5 2 1 4 6 7 0 + 4 6 7 1 5 8 9 0 + 4 7 5 1 5 9 6 0 + 6 8 9 1 8 10 11 0 + 6 9 7 1 8 11 9 0 + 8 10 11 1 10 12 13 0 + 8 11 9 1 10 13 11 0 + 10 12 13 1 12 14 15 0 + 10 13 11 1 12 15 13 0 + 12 14 15 1 16 17 18 0 + 12 15 13 1 16 18 19 0 + 14 16 17 1 20 21 22 0 + 14 17 15 1 20 22 23 0 + 16 18 19 1 21 24 25 0 + 16 19 17 1 21 25 22 0 + 18 20 21 1 24 26 27 0 + 18 21 19 1 24 27 25 0 + 20 22 23 1 26 28 29 0 + 20 23 21 1 26 29 27 0 + 22 24 25 1 28 30 31 0 + 22 25 23 1 28 31 29 0 + 24 26 27 1 32 33 34 0 + 24 27 25 1 32 34 35 0 + 26 28 29 1 36 37 38 0 + 26 29 27 1 36 38 39 0 + 28 30 31 1 37 40 41 0 + 28 31 29 1 37 41 38 0 + 30 32 33 1 40 42 43 0 + 30 33 31 1 40 43 41 0 + 32 34 35 1 42 44 45 0 + 32 35 33 1 42 45 43 0 + 34 36 37 1 44 46 47 0 + 34 37 35 1 44 47 45 0 + 36 38 39 1 48 49 50 0 + 36 39 37 1 48 50 51 0 + 38 40 41 1 52 53 54 0 + 38 41 39 1 52 54 55 0 + 40 42 43 1 53 56 57 0 + 40 43 41 1 53 57 54 0 + 42 44 45 1 56 58 59 0 + 42 45 43 1 56 59 57 0 + 44 46 47 1 58 60 61 0 + 44 47 45 1 58 61 59 0 + 46 48 49 1 62 63 64 0 + 46 49 47 1 62 64 65 0 + 48 0 3 1 66 67 68 0 + 48 3 49 1 66 68 69 0 + 49 3 2 1 70 71 72 0 + 47 49 2 1 73 70 72 0 + 47 2 5 1 74 75 76 0 + 47 5 7 1 74 76 77 0 + 45 47 7 1 78 74 77 0 + 45 7 9 1 78 77 79 0 + 43 45 9 1 80 78 79 0 + 43 9 11 1 80 79 81 0 + 41 43 11 1 82 80 81 0 + 41 11 13 1 82 81 83 0 + 39 41 13 1 84 82 83 0 + 37 39 13 1 85 86 87 0 + 37 13 15 1 85 87 88 0 + 37 15 17 1 89 90 91 0 + 35 37 17 1 92 89 91 0 + 35 17 19 1 92 91 93 0 + 33 35 19 1 94 92 93 0 + 33 19 21 1 94 93 95 0 + 31 33 21 1 96 94 95 0 + 29 31 21 1 97 96 95 0 + 29 21 23 1 97 95 98 0 + 27 29 23 1 99 97 98 0 + 25 27 23 1 100 99 98 0 + 50 51 52 1 101 102 103 0 + 52 53 50 1 103 104 101 0 + 54 55 56 1 105 106 107 0 + 56 57 54 1 107 108 105 0 + 55 50 53 1 106 101 104 0 + 53 56 55 1 104 107 106 0 + 51 54 57 1 102 109 110 0 + 57 52 51 1 110 103 102 0 + 56 53 58 1 107 104 111 0 + 58 59 56 1 111 112 107 0 + 57 56 59 1 108 107 112 0 + 59 60 57 1 112 113 108 0 + 53 52 61 1 104 103 114 0 + 61 58 53 1 114 111 104 0 + 52 57 60 1 103 110 115 0 + 60 61 52 1 115 114 103 0 + 62 63 64 1 116 117 118 0 + 64 65 62 1 118 119 116 0 + 63 66 67 1 120 121 122 0 + 67 64 63 1 122 123 120 0 + 66 68 69 1 121 124 125 0 + 69 67 66 1 125 122 121 0 + 68 62 65 1 124 116 119 0 + 65 69 68 1 119 125 124 0 + 64 67 70 1 123 122 126 0 + 70 71 64 1 126 127 123 0 + 65 64 71 1 119 118 128 0 + 71 72 65 1 128 129 119 0 + 67 69 73 1 122 125 130 0 + 73 70 67 1 130 126 122 0 + 69 65 72 1 125 119 129 0 + 72 73 69 1 129 130 125 0 + 74 75 76 1 131 132 133 0 + 76 77 74 1 133 134 131 0 + 75 78 79 1 132 135 136 0 + 79 76 75 1 136 133 132 0 + 80 74 77 1 137 131 134 0 + 77 81 80 1 134 138 137 0 + 78 80 81 1 135 139 140 0 + 81 79 78 1 140 136 135 0 + 77 76 82 1 134 133 141 0 + 82 83 77 1 141 142 134 0 + 76 79 84 1 133 136 143 0 + 84 82 76 1 143 141 133 0 + 79 81 85 1 136 140 144 0 + 85 84 79 1 144 143 136 0 + 81 77 83 1 138 134 142 0 + 83 85 81 1 142 145 138 0 + 86 87 88 1 146 147 148 0 + 88 89 86 1 148 149 146 0 + 90 86 89 1 150 146 149 0 + 89 91 90 1 149 151 150 0 + 92 90 91 1 152 153 154 0 + 91 93 92 1 154 155 152 0 + 87 92 93 1 147 152 155 0 + 93 88 87 1 155 148 147 0 + 91 89 94 1 151 149 156 0 + 94 95 91 1 156 157 151 0 + 89 88 96 1 149 148 158 0 + 96 94 89 1 158 156 149 0 + 93 91 95 1 155 154 159 0 + 95 97 93 1 159 160 155 0 + 88 93 97 1 148 155 160 0 + 97 96 88 1 160 158 148 0 + 98 99 100 1 161 162 163 0 + 100 101 98 1 163 164 161 0 + 99 102 103 1 165 166 167 0 + 103 100 99 1 167 168 165 0 + 104 98 101 1 169 161 164 0 + 101 105 104 1 164 170 169 0 + 102 104 105 1 166 169 170 0 + 105 103 102 1 170 167 166 0 + 101 100 106 1 164 163 171 0 + 106 107 101 1 171 172 164 0 + 100 103 108 1 168 167 173 0 + 108 106 100 1 173 174 168 0 + 105 101 107 1 170 164 172 0 + 107 109 105 1 172 175 170 0 + 103 105 109 1 167 170 175 0 + 109 108 103 1 175 173 167 0 + 110 111 112 1 176 177 178 0 + 110 113 114 1 176 179 180 0 + 115 110 114 1 181 176 180 0 + 116 117 114 1 182 183 180 0 + 116 118 117 1 182 184 183 0 + 113 119 120 1 179 185 186 0 + 113 112 119 1 179 178 185 0 + 111 121 122 1 177 187 188 0 + 119 112 123 1 185 178 189 0 + 111 122 112 1 177 188 178 0 + 110 112 113 1 176 178 179 0 + 111 124 121 1 177 190 187 0 + 120 119 125 1 186 185 191 0 + 113 120 126 1 179 186 192 0 + 123 112 127 1 189 178 193 0 + 112 122 127 1 178 188 193 0 + 120 125 128 1 186 191 194 0 + 51 50 129 1 195 196 197 0 + 51 129 110 1 195 197 176 0 + 117 115 114 1 183 181 180 0 + 115 55 54 1 181 198 199 0 + 115 54 110 1 181 199 176 0 + 130 55 115 1 200 198 181 0 + 54 51 110 1 199 195 176 0 + tverts 201 + 0.479618 1.00831 0 + 0.479618 -0.491693 0 + 0.446311 -0.491693 0 + 0.446311 1.00831 0 + 0.525852 -0.555433 0 + 0.525852 -0.455439 0 + 0.492543 -0.455439 0 + 0.492543 -0.555433 0 + 0.527552 -0.005264 0 + 0.494243 -0.005264 0 + 0.531749 0.34153 0 + 0.49844 0.34153 0 + 0.53709 0.52937 0 + 0.503781 0.52937 0 + 0.543649 0.64854 0 + 0.51034 0.64854 0 + 0.5276 -0.0238672 0 + 0.527601 1.04268 0 + 0.494294 1.04268 0 + 0.494294 -0.0238672 0 + 0.584221 0.64854 0 + 0.590695 0.52936 0 + 0.557386 0.52936 0 + 0.550911 0.64854 0 + 0.596036 0.34152 0 + 0.562727 0.34152 0 + 0.600233 -0.00527 0 + 0.566924 -0.00527 0 + 0.601933 -0.455439 0 + 0.568624 -0.455439 0 + 0.601933 -0.555439 0 + 0.568624 -0.555439 0 + 0.479618 0.50831 0 + 0.479618 0.40831 0 + 0.446311 0.40831 0 + 0.446311 0.50831 0 + 0.598129 0.444561 0 + 0.598129 0.544561 0 + 0.56482 0.544561 0 + 0.56482 0.444561 0 + 0.596429 0.99473 0 + 0.56312 0.99473 0 + 0.592851 1.30648 0 + 0.559542 1.30648 0 + 0.588323 1.45571 0 + 0.555013 1.45571 0 + 0.583587 1.54854 0 + 0.550277 1.54854 0 + 0.523615 1.02602 0 + 0.523615 -0.00386715 0 + 0.490308 -0.00386715 0 + 0.490309 1.02602 0 + 0.54441 0.54854 0 + 0.539438 0.45953 0 + 0.506129 0.45953 0 + 0.5111 0.54854 0 + 0.534935 0.30648 0 + 0.501626 0.30648 0 + 0.531356 -0.005264 0 + 0.498047 -0.005264 0 + 0.529656 -0.455433 0 + 0.496347 -0.455433 0 + 0.483603 -0.391693 0 + 0.483603 1.00831 0 + 0.450297 1.00831 0 + 0.450296 -0.391693 0 + 0.582913 0.544561 0 + 0.582913 0.444561 0 + 0.549603 0.444561 0 + 0.549604 0.544561 0 + 0.450006 -0.250003 0 + 0.550006 -0.250003 0 + 0.55 1.25 0 + 0.45 1.15 0 + 0.667074 1.00198 0 + 0.567074 1.10198 0 + 0.567074 1.00199 0 + 0.568361 0.551814 0 + 0.668361 0.551814 0 + 0.568211 0.240016 0 + 0.66773 0.240069 0 + 0.568957 0.0405134 0 + 0.667752 0.040081 0 + 0.569325 -0.101988 0 + 0.66804 -0.100575 0 + 0.550003 -0.0332772 0 + 0.550003 1.03327 0 + 0.450003 1.03327 0 + 0.450003 -0.0332771 0 + 0.500143 -0.101135 0 + 0.600212 -0.101989 0 + 0.601257 0.0346874 0 + 0.501414 0.0330649 0 + 0.599278 0.237106 0 + 0.501245 0.240074 0 + 0.599128 0.55182 0 + 0.499128 0.55182 0 + 0.496469 1.00199 0 + 0.596469 1.00199 0 + 0.496469 1.10199 0 + 0.596469 1.10199 0 + 0.164459 0.000299746 0 + 0.265779 0.000299746 0 + 0.26592 0.1002 0 + 0.164321 0.1002 0 + -0.0355435 0.000299746 0 + 0.064434 0.000299746 0 + 0.0642985 0.1002 0 + -0.0354057 0.1002 0 + 0.364457 0.000299746 0 + 0.364594 0.1002 0 + 0.164321 0.5997 0 + 0.0642985 0.5997 0 + -0.0354057 0.5997 0 + 0.26592 0.5997 0 + 0.364594 0.5997 0 + 0.288667 0.000299764 0 + 0.390197 0.000299764 0 + 0.390197 0.1002 0 + 0.288666 0.1002 0 + -0.00980344 0.000299764 0 + 0.0886761 0.000299764 0 + 0.0886765 0.1002 0 + -0.00980325 0.1002 0 + 0.190193 0.000299764 0 + 0.190193 0.1002 0 + 0.0886765 0.5997 0 + -0.00980325 0.5997 0 + 0.390197 0.5997 0 + 0.288666 0.5997 0 + 0.190193 0.5997 0 + 0.0888896 0.000299764 0 + 0.188886 0.000299764 0 + 0.188882 0.1002 0 + 0.0888917 0.1002 0 + 0.288887 0.000299764 0 + 0.288885 0.1002 0 + -0.0111058 0.000299764 0 + -0.0111022 0.1002 0 + 0.388894 0.000299764 0 + 0.388898 0.1002 0 + 0.188882 0.5997 0 + 0.0888917 0.5997 0 + 0.288885 0.5997 0 + 0.388898 0.5997 0 + -0.0111022 0.5997 0 + 0.0199003 0.000300121 0 + 0.119025 0.000299889 0 + 0.119142 0.1002 0 + 0.020024 0.1002 0 + -0.0809755 0.000299889 0 + -0.0810929 0.1002 0 + 0.218749 0.000299889 0 + 0.319025 0.000299889 0 + 0.318907 0.1002 0 + 0.21863 0.1002 0 + 0.020024 0.5997 0 + -0.0810937 0.5997 0 + 0.119143 0.5997 0 + 0.318906 0.5997 0 + 0.21863 0.5997 0 + 0.268333 0.000299889 0 + 0.368333 0.000299889 0 + 0.368137 0.1002 0 + 0.268528 0.1002 0 + -0.0316675 0.000299889 0 + 0.0673713 0.000300121 0 + 0.0671695 0.1002 0 + -0.0318627 0.1002 0 + 0.168335 0.000299889 0 + 0.168531 0.1002 0 + 0.368136 0.5997 0 + 0.268528 0.5997 0 + 0.0671696 0.5997 0 + -0.0318638 0.5997 0 + 0.168532 0.5997 0 + 1.13373 0.63796 0 + 1.21648 0.89805 0 + 0.499993 0.89818 0 + -0.216488 0.89805 0 + -0.133738 0.63796 0 + 0.174997 0.48318 0 + -0.0284401 0.49708 0 + 0.100863 0.48318 0 + 0.100863 0.4077 0 + 0.374998 1.31068 0 + -0.175002 1.23568 0 + 1.175 1.2368 0 + 0.874997 1.2368 0 + 0.799997 1.31068 0 + 1.25 1.23568 0 + 0 1.31068 0 + -0.250001 1.23568 0 + 0.799997 1.23547 0 + -0.175002 1.31068 0 + 0.899206 0.48318 0 + 0.900783 0.4077 0 + 1.02843 0.49708 0 + 0.824997 0.4077 0 + 0.824997 0.48318 0 + 0.174997 0.4077 0 +endnode +node trimesh dragon_tailpieceb + parent squid + position -0.660397 1.6401 0.565623 + orientation -0.698319 -0.0618466 -0.71311 -3.23129 + wirecolor 0.0351563 0.0351563 0.0351563 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 10 + -0.11289 -0.398702 -0.111145 + -0.00377891 -0.490495 -0.180517 + -0.00584538 -0.426084 0.070434 + -0.00438883 -0.309332 -0.323581 + -0.00977278 -0.0150224 0.161747 + -0.138209 -0.0010954 -0.0583998 + -0.00780116 0.100365 -0.315066 + -0.0105691 0.254859 -0.0693102 + 0.103144 -0.40834 -0.105511 + 0.121764 -0.0237596 -0.0462954 + faces 16 + 0 1 2 1 0 1 2 0 + 1 0 3 1 1 0 3 0 + 4 5 0 1 4 5 0 0 + 0 2 4 1 0 2 4 0 + 5 6 3 1 5 6 3 0 + 3 0 5 1 3 0 5 0 + 5 7 6 1 5 7 6 0 + 5 4 7 1 5 4 7 0 + 8 2 1 1 8 2 1 0 + 1 3 8 1 1 3 8 0 + 4 8 9 1 4 8 9 0 + 8 4 2 1 8 4 2 0 + 9 3 6 1 9 3 6 0 + 3 9 8 1 3 9 8 0 + 9 6 7 1 9 6 7 0 + 9 7 4 1 9 7 4 0 + tverts 10 + 0.380512 0.163424 0 + 0.447255 0.170516 0 + 0.365149 0.426041 0 + 0.373777 0.00508506 0 + 0.237894 0.416506 0 + 0.2552 0.177176 0 + 0.211018 0.00260492 0 + 0.175092 0.194924 0 + 0.38015 0.160123 0 + 0.254765 0.178099 0 +endnode +node trimesh dragon_tailpiecee + parent squid + position -0.903914 2.79736 0.534253 + orientation -0.698696 0.0161465 -0.715237 -3.07883 + wirecolor 0.527344 0.527344 0.527344 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 10 + -0.0530498 -0.417946 -0.0703872 + 0.00527056 -0.48566 -0.106765 + 0.00407267 -0.457113 0.0230737 + 0.00525574 -0.395171 -0.182815 + 0.00099827 -0.0514593 0.0697236 + -0.070029 -0.0187406 -0.0464383 + 0.0024283 0.0240919 -0.179586 + 0.000543829 0.124899 -0.0236783 + 0.0620164 -0.418883 -0.0744006 + 0.0732792 -0.0196875 -0.0489907 + faces 16 + 0 1 2 1 0 1 2 0 + 1 0 3 1 1 0 3 0 + 4 5 0 1 4 5 0 0 + 0 2 4 1 0 2 4 0 + 3 0 5 1 3 0 5 0 + 5 6 3 1 5 6 3 0 + 5 7 6 1 5 7 6 0 + 5 4 7 1 5 4 7 0 + 8 2 1 1 8 2 1 0 + 1 3 8 1 1 3 8 0 + 4 8 9 1 4 8 9 0 + 8 4 2 1 8 4 2 0 + 3 9 8 1 3 9 8 0 + 9 3 6 1 9 3 6 0 + 9 6 7 1 9 6 7 0 + 9 7 4 1 9 7 4 0 + tverts 10 + 0.957358 0.135002 0 + 1.00215 0.134899 0 + 0.941124 0.407441 0 + 0.990577 0.0303659 0 + 0.729333 0.342357 0 + 0.753837 0.160373 0 + 0.720723 0.0494735 0 + 0.72223 0.161411 0 + 0.957165 0.131613 0 + 0.753597 0.159715 0 +endnode +node trimesh object375 + parent squid + position -0.428745 1.50151 0.486658 + orientation 0 0.00436336 -0.99999 -3.14159 + wirecolor 0.652344 0.652344 0.652344 + ambient 0 0 0 + diffuse 0 0 0 + specular 0 0 0 + shininess 1 + bitmap ttr01_black00 + verts 4 + -0.635881 0.984501 -0.0557792 + -0.635881 0.722345 -0.0557792 + -0.287263 0.984501 -0.0557792 + -0.287263 0.722345 -0.0557792 + faces 2 + 0 1 2 1 0 1 2 0 + 1 3 2 1 1 3 2 0 + tverts 4 + 0.9995 0.000499725 0 + 0.999491 0.9995 0 + 0.000510722 0.000500053 0 + 0.000499636 0.999501 0 +endnode +node trimesh dragon_tailpieced01 + parent squid + position 1.03033 2.42535 0.533201 + orientation 0.717478 -0.0263934 -0.696081 -3.05511 + wirecolor 0.445313 0.445313 0.445313 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 10 + -0.068553 -0.408243 -0.0723863 + 0.00428113 -0.492639 -0.0911775 + 0.00268522 -0.445777 0.0387398 + 0.00452505 -0.383823 -0.212171 + -0.00113717 -0.0544203 0.106297 + -0.0861828 -0.0102158 -0.0433865 + 0.000903518 0.0693437 -0.219848 + -0.00207664 0.198389 -0.0136811 + 0.0752123 -0.409303 -0.0766843 + 0.0858437 -0.0127938 -0.0448059 + faces 16 + 0 1 2 1 0 1 2 0 + 1 0 3 1 1 0 3 0 + 4 5 0 1 4 5 0 0 + 0 2 4 1 0 2 4 0 + 3 0 5 1 3 0 5 0 + 5 6 3 1 5 6 3 0 + 5 7 6 1 5 7 6 0 + 5 4 7 1 5 4 7 0 + 8 2 1 1 8 2 1 0 + 1 3 8 1 1 3 8 0 + 4 8 9 1 4 8 9 0 + 8 4 2 1 8 4 2 0 + 3 9 8 1 3 9 8 0 + 9 3 6 1 9 3 6 0 + 9 6 7 1 9 6 7 0 + 9 7 4 1 9 7 4 0 + tverts 10 + 0.753565 0.167997 0 + 0.677792 0.162244 0 + 0.764564 0.424128 0 + 0.744774 0.0228515 0 + 0.51862 0.343677 0 + 0.510511 0.172721 0 + 0.501949 0.0417073 0 + 0.465017 0.169826 0 + 0.753325 0.164961 0 + 0.510222 0.172418 0 +endnode +node trimesh dragon_tailpieced + parent squid + position -0.837193 2.41121 0.54439 + orientation -0.698798 -0.0431303 -0.714017 -3.19471 + wirecolor 0.105469 0.105469 0.105469 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 10 + -0.0702825 -0.407464 -0.0735168 + 0.00240251 -0.491913 -0.0913574 + 0.00118169 -0.445046 0.0386198 + 0.00233833 -0.383097 -0.212379 + -0.00234477 -0.0537043 0.10626 + -0.0877204 -0.00920144 -0.0444899 + -0.00118207 0.0700408 -0.219923 + -0.00355 0.199071 -0.013688 + 0.0734126 -0.408828 -0.0758323 + 0.0842706 -0.0126892 -0.043772 + faces 16 + 0 1 2 1 0 1 2 0 + 1 0 3 1 1 0 3 0 + 4 5 0 1 4 5 0 0 + 0 2 4 1 0 2 4 0 + 3 0 5 1 3 0 5 0 + 5 6 3 1 5 6 3 0 + 5 7 6 1 5 7 6 0 + 5 4 7 1 5 4 7 0 + 8 2 1 1 8 2 1 0 + 1 3 8 1 1 3 8 0 + 4 8 9 1 4 8 9 0 + 8 4 2 1 8 4 2 0 + 3 9 8 1 3 9 8 0 + 9 3 6 1 9 3 6 0 + 9 6 7 1 9 6 7 0 + 9 7 4 1 9 7 4 0 + tverts 10 + 0.753565 0.167997 0 + 0.677792 0.162244 0 + 0.764564 0.424128 0 + 0.744774 0.0228515 0 + 0.51862 0.343677 0 + 0.510511 0.172721 0 + 0.501949 0.0417073 0 + 0.465017 0.169826 0 + 0.753325 0.164961 0 + 0.510222 0.172418 0 +endnode +node trimesh dragon_tailpiecec01 + parent squid + position 0.988918 2.0279 0.523022 + orientation 0.717998 -0.00208284 -0.696042 -3.10521 + wirecolor 0.113281 0.113281 0.113281 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 10 + -0.0864287 -0.408274 -0.0674189 + 0.000892726 -0.470868 -0.124986 + -0.00131113 -0.440999 0.0751087 + 0.00100666 -0.324295 -0.2473 + -0.00515981 -0.0294847 0.152984 + -0.111682 -0.0078993 -0.0222491 + -0.00213103 0.0858325 -0.240305 + -0.00560952 0.204905 0.0212649 + 0.085996 -0.410783 -0.0689768 + 0.104498 -0.0163946 -0.0201315 + faces 16 + 0 1 2 1 0 1 2 0 + 1 0 3 1 1 0 3 0 + 4 5 0 1 4 5 0 0 + 0 2 4 1 0 2 4 0 + 5 6 3 1 5 6 3 0 + 3 0 5 1 3 0 5 0 + 5 7 6 1 5 7 6 0 + 5 4 7 1 5 4 7 0 + 8 2 1 1 8 2 1 0 + 1 3 8 1 1 3 8 0 + 4 8 9 1 4 8 9 0 + 8 4 2 1 8 4 2 0 + 9 3 6 1 9 3 6 0 + 3 9 8 1 3 9 8 0 + 9 6 7 1 9 6 7 0 + 9 7 4 1 9 7 4 0 + tverts 10 + 0.505045 0.176653 0 + 0.406781 0.180462 0 + 0.524143 0.414237 0 + 0.507286 0.00927347 0 + 0.392739 0.409855 0 + 0.380416 0.164946 0 + 0.367994 0.0169386 0 + 0.232031 0.186793 0 + 0.504756 0.176389 0 + 0.380054 0.168906 0 +endnode +node trimesh dragon_tailpiecec + parent squid + position -0.795701 2.01377 0.55421 + orientation -0.699054 -0.0181788 -0.714837 -3.14159 + wirecolor 0.878906 0.878906 0.878906 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 10 + -0.0879484 -0.407191 -0.0684363 + -0.000869318 -0.470152 -0.125013 + -0.0025088 -0.440285 0.0751259 + -0.00108732 -0.323592 -0.247329 + -0.0061051 -0.0288045 0.153055 + -0.113029 -0.00657023 -0.0233183 + -0.00417239 0.0864455 -0.240229 + -0.00690534 0.205517 0.0213707 + 0.0844416 -0.410747 -0.0679485 + 0.10316 -0.0169081 -0.0188966 + faces 16 + 0 1 2 1 0 1 2 0 + 1 0 3 1 1 0 3 0 + 4 5 0 1 4 5 0 0 + 0 2 4 1 0 2 4 0 + 5 6 3 1 5 6 3 0 + 3 0 5 1 3 0 5 0 + 5 7 6 1 5 7 6 0 + 5 4 7 1 5 4 7 0 + 8 2 1 1 8 2 1 0 + 1 3 8 1 1 3 8 0 + 4 8 9 1 4 8 9 0 + 8 4 2 1 8 4 2 0 + 9 3 6 1 9 3 6 0 + 3 9 8 1 3 9 8 0 + 9 6 7 1 9 6 7 0 + 9 7 4 1 9 7 4 0 + tverts 10 + 0.505045 0.176653 0 + 0.406781 0.180462 0 + 0.524143 0.414237 0 + 0.507286 0.00927347 0 + 0.392739 0.409855 0 + 0.380416 0.164946 0 + 0.367994 0.0169386 0 + 0.232031 0.186793 0 + 0.504756 0.176389 0 + 0.380054 0.168906 0 +endnode +node trimesh point + parent squid + position 0.478141 1.55916 0.580231 + orientation 0.527784 -0.438665 -0.727336 -2.32449 + wirecolor 0.878906 0.878906 0.878906 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 14 + -0.161657 -0.455523 -0.150857 + -0.0400801 -0.641843 -0.157277 + -0.0184828 -0.490364 0.0737443 + -0.0444038 -0.573331 -0.281847 + -0.0421606 -0.369306 -0.393716 + 0.00948162 -0.0913709 0.189725 + -0.15153 -0.0830483 0.0891604 + -0.170285 -0.0434179 -0.179262 + -0.0243276 0.0374158 -0.405273 + -0.00789128 0.226827 -0.297407 + 0.0159128 0.146707 0.106156 + 0.116093 -0.434811 -0.0937837 + 0.171616 -0.0567756 0.0632299 + 0.162536 -0.0215949 -0.162529 + faces 24 + 0 1 2 1 0 1 2 0 + 3 0 4 1 3 0 4 0 + 0 3 1 1 0 3 1 0 + 5 6 0 1 5 6 0 0 + 0 2 5 1 0 2 5 0 + 7 8 4 1 7 8 4 0 + 4 0 7 1 4 0 7 0 + 7 9 8 1 7 9 8 0 + 6 10 9 1 6 10 9 0 + 6 5 10 1 6 5 10 0 + 9 7 6 1 9 7 6 0 + 6 7 0 1 6 7 0 0 + 11 2 1 1 11 2 1 0 + 3 4 11 1 3 4 11 0 + 11 1 3 1 11 1 3 0 + 5 11 12 1 5 11 12 0 + 11 5 2 1 11 5 2 0 + 13 4 8 1 13 4 8 0 + 4 13 11 1 4 13 11 0 + 13 8 9 1 13 8 9 0 + 12 9 10 1 12 9 10 0 + 12 10 5 1 12 10 5 0 + 9 12 13 1 9 12 13 0 + 12 11 13 1 12 11 13 0 + tverts 14 + 0.253407 0.165437 0 + 0.395807 0.160031 0 + 0.328801 0.421567 0 + 0.413845 0.0115459 0 + 0.232347 0.00494729 0 + 0.0874234 0.425068 0 + 0.132235 0.254092 0 + 0.13755 0.0904566 0 + 0.133049 0.00431648 0 + 0.0657329 0.0440783 0 + 0.0746336 0.384688 0 + 0.253098 0.164566 0 + 0.131852 0.255756 0 + 0.137166 0.0905044 0 +endnode +node trimesh dragon_tailpiecea + parent squid + position -0.285443 1.54503 0.492541 + orientation 0.732078 0.432437 0.526364 -2.30919 + wirecolor 0.542969 0.542969 0.542969 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 14 + -0.163321 -0.455604 -0.152416 + -0.0416052 -0.640941 -0.156723 + -0.0196813 -0.489895 0.0732746 + -0.0458063 -0.572419 -0.281069 + -0.0432567 -0.368601 -0.393366 + 0.00939125 -0.0913465 0.189124 + -0.15168 -0.0836761 0.0889382 + -0.17068 -0.0438327 -0.179876 + -0.0246223 0.0377849 -0.405911 + -0.00760887 0.22692 -0.29804 + 0.0164029 0.14647 0.105846 + 0.115636 -0.433901 -0.09225 + 0.171725 -0.0561419 0.0625928 + 0.162622 -0.0209266 -0.162887 + faces 24 + 0 1 2 1 0 1 2 0 + 3 0 4 1 3 0 4 0 + 0 3 1 1 0 3 1 0 + 5 6 0 1 5 6 0 0 + 0 2 5 1 0 2 5 0 + 7 8 4 1 7 8 4 0 + 4 0 7 1 4 0 7 0 + 7 9 8 1 7 9 8 0 + 6 10 9 1 6 10 9 0 + 6 5 10 1 6 5 10 0 + 9 7 6 1 9 7 6 0 + 6 7 0 1 6 7 0 0 + 11 2 1 1 11 2 1 0 + 3 4 11 1 3 4 11 0 + 11 1 3 1 11 1 3 0 + 5 11 12 1 5 11 12 0 + 11 5 2 1 11 5 2 0 + 13 4 8 1 13 4 8 0 + 4 13 11 1 4 13 11 0 + 13 8 9 1 13 8 9 0 + 12 9 10 1 12 9 10 0 + 12 10 5 1 12 10 5 0 + 9 12 13 1 9 12 13 0 + 12 11 13 1 12 11 13 0 + tverts 14 + 0.253407 0.165437 0 + 0.395807 0.160031 0 + 0.328801 0.421567 0 + 0.413845 0.0115459 0 + 0.232347 0.00494729 0 + 0.0874234 0.425068 0 + 0.132235 0.254092 0 + 0.13755 0.0904566 0 + 0.133049 0.00431648 0 + 0.0657329 0.0440783 0 + 0.0746336 0.384688 0 + 0.253098 0.164566 0 + 0.131852 0.255756 0 + 0.137166 0.0905044 0 +endnode +node trimesh capsule01 + parent squid + position -0.898455 1.02773 0.45227 + orientation 0.57735 -0.57735 0.57735 -2.09439 + wirecolor 0.601563 0.601563 0.601563 + ambient 0.34375 0.558594 0.878906 + diffuse 0.34375 0.558594 0.878906 + specular 0 0 0 + shininess 1 + bitmap eye + verts 146 + 0 0 1.96586 + -0.0697723 0 1.95668 + -0.0604249 -0.0348863 1.95668 + -0.0348864 -0.0604249 1.95668 + 0 -0.0697723 1.95668 + 0.0348863 -0.0604249 1.95668 + 0.060425 -0.0348863 1.95668 + 0.0697724 0 1.95668 + 0.060425 0.0348863 1.95668 + 0.0348863 0.0604249 1.95668 + 0 0.0697723 1.95668 + -0.0348864 0.0604249 1.95668 + -0.0604249 0.0348863 1.95668 + -0.13479 0 1.92975 + -0.116732 -0.0673953 1.92975 + -0.0673952 -0.116732 1.92975 + 0 -0.13479 1.92975 + 0.0673953 -0.116732 1.92975 + 0.116732 -0.0673953 1.92975 + 0.13479 0 1.92975 + 0.116732 0.0673953 1.92975 + 0.0673953 0.116732 1.92975 + 0 0.13479 1.92975 + -0.0673952 0.116732 1.92975 + -0.116732 0.0673953 1.92975 + -0.190622 0 1.88691 + -0.165084 -0.0953113 1.88691 + -0.0953113 -0.165084 1.88691 + 0 -0.190622 1.88691 + 0.0953114 -0.165084 1.88691 + 0.165084 -0.0953113 1.88691 + 0.190622 0 1.88691 + 0.165084 0.0953113 1.88691 + 0.0953114 0.165084 1.88691 + 0 0.190622 1.88691 + -0.0953113 0.165084 1.88691 + -0.165084 0.0953113 1.88691 + -0.233464 0 1.83108 + -0.202185 -0.116732 1.83108 + -0.116732 -0.202185 1.83108 + 0 -0.233464 1.83108 + 0.116732 -0.202185 1.83108 + 0.202185 -0.116732 1.83108 + 0.233464 0 1.83108 + 0.202185 0.116732 1.83108 + 0.116732 0.202185 1.83108 + 0 0.233464 1.83108 + -0.116732 0.202185 1.83108 + -0.202185 0.116732 1.83108 + -0.260395 0 1.76606 + -0.225509 -0.130197 1.76606 + -0.130197 -0.225509 1.76606 + 0 -0.260395 1.76606 + 0.130197 -0.225509 1.76606 + 0.225509 -0.130197 1.76606 + 0.260395 0 1.76606 + 0.225509 0.130197 1.76606 + 0.130197 0.225509 1.76606 + 0 0.260395 1.76606 + -0.130197 0.225509 1.76606 + -0.225509 0.130197 1.76606 + -0.269581 0 1.69629 + -0.233464 -0.13479 1.69629 + -0.13479 -0.233464 1.69629 + 0 -0.269581 1.69629 + 0.13479 -0.233464 1.69629 + 0.233464 -0.13479 1.69629 + 0.269581 0 1.69629 + 0.233464 0.13479 1.69629 + 0.13479 0.233464 1.69629 + 0 0.269581 1.69629 + -0.13479 0.233464 1.69629 + -0.233464 0.13479 1.69629 + -0.269581 0 0.269581 + -0.233464 -0.13479 0.269581 + -0.13479 -0.233464 0.269581 + 0 -0.269581 0.269581 + 0.13479 -0.233464 0.269581 + 0.233464 -0.13479 0.269581 + 0.269581 0 0.269581 + 0.233464 0.13479 0.269581 + 0.13479 0.233464 0.269581 + 0 0.269581 0.269581 + -0.13479 0.233464 0.269581 + -0.233464 0.13479 0.269581 + -0.260395 0 0.199808 + -0.225509 -0.130197 0.199808 + -0.130197 -0.225509 0.199808 + 0 -0.260395 0.199808 + 0.130197 -0.225509 0.199808 + 0.225509 -0.130197 0.199808 + 0.260395 0 0.199808 + 0.225509 0.130197 0.199808 + 0.130197 0.225509 0.199808 + 0 0.260395 0.199808 + -0.130197 0.225509 0.199808 + -0.225509 0.130197 0.199808 + -0.233464 0 0.13479 + -0.202185 -0.116732 0.13479 + -0.116732 -0.202185 0.13479 + 0 -0.233464 0.13479 + 0.116732 -0.202185 0.13479 + 0.202185 -0.116732 0.13479 + 0.233464 0 0.13479 + 0.202185 0.116732 0.13479 + 0.116732 0.202185 0.13479 + 0 0.233464 0.13479 + -0.116732 0.202185 0.13479 + -0.202185 0.116732 0.13479 + -0.190622 0 0.0789583 + -0.165084 -0.0953113 0.0789583 + -0.0953113 -0.165084 0.0789583 + 0 -0.190622 0.0789583 + 0.0953114 -0.165084 0.0789583 + 0.165084 -0.0953113 0.0789583 + 0.190622 0 0.0789583 + 0.165084 0.0953113 0.0789583 + 0.0953114 0.165084 0.0789583 + 0 0.190622 0.0789583 + -0.0953113 0.165084 0.0789583 + -0.165084 0.0953113 0.0789583 + -0.13479 0 0.0361168 + -0.116732 -0.0673953 0.0361168 + -0.0673952 -0.116732 0.0361168 + 0 -0.13479 0.0361168 + 0.0673953 -0.116732 0.0361168 + 0.116732 -0.0673953 0.0361168 + 0.13479 0 0.0361168 + 0.116732 0.0673953 0.0361168 + 0.0673953 0.116732 0.0361168 + 0 0.13479 0.0361168 + -0.0673952 0.116732 0.0361168 + -0.116732 0.0673953 0.0361168 + -0.0697723 0 0.00918578 + -0.0604249 -0.0348863 0.00918578 + -0.0348864 -0.0604249 0.00918578 + 0 -0.0697723 0.00918578 + 0.0348863 -0.0604249 0.00918578 + 0.060425 -0.0348863 0.00918578 + 0.0697724 0 0.00918578 + 0.060425 0.0348863 0.00918578 + 0.0348863 0.0604249 0.00918578 + 0 0.0697723 0.00918578 + -0.0348864 0.0604249 0.00918578 + -0.0604249 0.0348863 0.00918578 + 0 0 0 + faces 288 + 0 1 2 1 0 1 2 0 + 0 2 3 1 0 2 3 0 + 0 3 4 1 0 3 4 0 + 0 4 5 1 0 4 5 0 + 0 5 6 1 0 5 6 0 + 0 6 7 1 0 6 7 0 + 0 7 8 1 0 7 8 0 + 0 8 9 1 0 8 9 0 + 0 9 10 1 0 9 10 0 + 0 10 11 1 0 10 11 0 + 0 11 12 1 0 11 12 0 + 0 12 1 1 0 12 1 0 + 1 13 14 1 1 13 14 0 + 1 14 2 1 1 14 2 0 + 2 14 15 1 2 14 15 0 + 2 15 3 1 2 15 3 0 + 3 15 16 1 3 15 16 0 + 3 16 4 1 3 16 4 0 + 4 16 17 1 4 16 17 0 + 4 17 5 1 4 17 5 0 + 5 17 18 1 5 17 18 0 + 5 18 6 1 5 18 6 0 + 6 18 19 1 6 18 19 0 + 6 19 7 1 6 19 7 0 + 7 19 20 1 7 19 20 0 + 7 20 8 1 7 20 8 0 + 8 20 21 1 8 20 21 0 + 8 21 9 1 8 21 9 0 + 9 21 22 1 9 21 22 0 + 9 22 10 1 9 22 10 0 + 10 22 23 1 10 22 23 0 + 10 23 11 1 10 23 11 0 + 11 23 24 1 11 23 24 0 + 11 24 12 1 11 24 12 0 + 12 24 13 1 12 24 13 0 + 12 13 1 1 12 13 1 0 + 13 25 26 1 13 25 26 0 + 13 26 14 1 13 26 14 0 + 14 26 27 1 14 26 27 0 + 14 27 15 1 14 27 15 0 + 15 27 28 1 15 27 28 0 + 15 28 16 1 15 28 16 0 + 16 28 29 1 16 28 29 0 + 16 29 17 1 16 29 17 0 + 17 29 30 1 17 29 30 0 + 17 30 18 1 17 30 18 0 + 18 30 31 1 18 30 31 0 + 18 31 19 1 18 31 19 0 + 19 31 32 1 19 31 32 0 + 19 32 20 1 19 32 20 0 + 20 32 33 1 20 32 33 0 + 20 33 21 1 20 33 21 0 + 21 33 34 1 21 33 34 0 + 21 34 22 1 21 34 22 0 + 22 34 35 1 22 34 35 0 + 22 35 23 1 22 35 23 0 + 23 35 36 1 23 35 36 0 + 23 36 24 1 23 36 24 0 + 24 36 25 1 24 36 25 0 + 24 25 13 1 24 25 13 0 + 25 37 38 1 25 37 38 0 + 25 38 26 1 25 38 26 0 + 26 38 39 1 26 38 39 0 + 26 39 27 1 26 39 27 0 + 27 39 40 1 27 39 40 0 + 27 40 28 1 27 40 28 0 + 28 40 41 1 28 40 41 0 + 28 41 29 1 28 41 29 0 + 29 41 42 1 29 41 42 0 + 29 42 30 1 29 42 30 0 + 30 42 43 1 30 42 43 0 + 30 43 31 1 30 43 31 0 + 31 43 44 1 31 43 44 0 + 31 44 32 1 31 44 32 0 + 32 44 45 1 32 44 45 0 + 32 45 33 1 32 45 33 0 + 33 45 46 1 33 45 46 0 + 33 46 34 1 33 46 34 0 + 34 46 47 1 34 46 47 0 + 34 47 35 1 34 47 35 0 + 35 47 48 1 35 47 48 0 + 35 48 36 1 35 48 36 0 + 36 48 37 1 36 48 37 0 + 36 37 25 1 36 37 25 0 + 37 49 50 1 37 49 50 0 + 37 50 38 1 37 50 38 0 + 38 50 51 1 38 50 51 0 + 38 51 39 1 38 51 39 0 + 39 51 52 1 39 51 52 0 + 39 52 40 1 39 52 40 0 + 40 52 53 1 40 52 53 0 + 40 53 41 1 40 53 41 0 + 41 53 54 1 41 53 54 0 + 41 54 42 1 41 54 42 0 + 42 54 55 1 42 54 55 0 + 42 55 43 1 42 55 43 0 + 43 55 56 1 43 55 56 0 + 43 56 44 1 43 56 44 0 + 44 56 57 1 44 56 57 0 + 44 57 45 1 44 57 45 0 + 45 57 58 1 45 57 58 0 + 45 58 46 1 45 58 46 0 + 46 58 59 1 46 58 59 0 + 46 59 47 1 46 59 47 0 + 47 59 60 1 47 59 60 0 + 47 60 48 1 47 60 48 0 + 48 60 49 1 48 60 49 0 + 48 49 37 1 48 49 37 0 + 49 61 62 1 49 61 62 0 + 49 62 50 1 49 62 50 0 + 50 62 63 1 50 62 63 0 + 50 63 51 1 50 63 51 0 + 51 63 64 1 51 63 64 0 + 51 64 52 1 51 64 52 0 + 52 64 65 1 52 64 65 0 + 52 65 53 1 52 65 53 0 + 53 65 66 1 53 65 66 0 + 53 66 54 1 53 66 54 0 + 54 66 67 1 54 66 67 0 + 54 67 55 1 54 67 55 0 + 55 67 68 1 55 67 68 0 + 55 68 56 1 55 68 56 0 + 56 68 69 1 56 68 69 0 + 56 69 57 1 56 69 57 0 + 57 69 70 1 57 69 70 0 + 57 70 58 1 57 70 58 0 + 58 70 71 1 58 70 71 0 + 58 71 59 1 58 71 59 0 + 59 71 72 1 59 71 72 0 + 59 72 60 1 59 72 60 0 + 60 72 61 1 60 72 61 0 + 60 61 49 1 60 61 49 0 + 61 73 74 1 61 61 62 0 + 61 74 62 1 61 62 62 0 + 62 74 75 1 62 62 63 0 + 62 75 63 1 62 63 63 0 + 63 75 76 1 63 63 64 0 + 63 76 64 1 63 64 64 0 + 64 76 77 1 64 64 65 0 + 64 77 65 1 64 65 65 0 + 65 77 78 1 65 65 66 0 + 65 78 66 1 65 66 66 0 + 66 78 79 1 66 66 67 0 + 66 79 67 1 66 67 67 0 + 67 79 80 1 67 67 68 0 + 67 80 68 1 67 68 68 0 + 68 80 81 1 68 68 69 0 + 68 81 69 1 68 69 69 0 + 69 81 82 1 69 69 70 0 + 69 82 70 1 69 70 70 0 + 70 82 83 1 70 70 71 0 + 70 83 71 1 70 71 71 0 + 71 83 84 1 71 71 72 0 + 71 84 72 1 71 72 72 0 + 72 84 73 1 72 72 61 0 + 72 73 61 1 72 61 61 0 + 73 85 86 1 61 49 50 0 + 73 86 74 1 61 50 62 0 + 74 86 87 1 62 50 51 0 + 74 87 75 1 62 51 63 0 + 75 87 88 1 63 51 52 0 + 75 88 76 1 63 52 64 0 + 76 88 89 1 64 52 53 0 + 76 89 77 1 64 53 65 0 + 77 89 90 1 65 53 54 0 + 77 90 78 1 65 54 66 0 + 78 90 91 1 66 54 55 0 + 78 91 79 1 66 55 67 0 + 79 91 92 1 67 55 56 0 + 79 92 80 1 67 56 68 0 + 80 92 93 1 68 56 57 0 + 80 93 81 1 68 57 69 0 + 81 93 94 1 69 57 58 0 + 81 94 82 1 69 58 70 0 + 82 94 95 1 70 58 59 0 + 82 95 83 1 70 59 71 0 + 83 95 96 1 71 59 60 0 + 83 96 84 1 71 60 72 0 + 84 96 85 1 72 60 49 0 + 84 85 73 1 72 49 61 0 + 85 97 98 1 49 37 38 0 + 85 98 86 1 49 38 50 0 + 86 98 99 1 50 38 39 0 + 86 99 87 1 50 39 51 0 + 87 99 100 1 51 39 40 0 + 87 100 88 1 51 40 52 0 + 88 100 101 1 52 40 41 0 + 88 101 89 1 52 41 53 0 + 89 101 102 1 53 41 42 0 + 89 102 90 1 53 42 54 0 + 90 102 103 1 54 42 43 0 + 90 103 91 1 54 43 55 0 + 91 103 104 1 55 43 44 0 + 91 104 92 1 55 44 56 0 + 92 104 105 1 56 44 45 0 + 92 105 93 1 56 45 57 0 + 93 105 106 1 57 45 46 0 + 93 106 94 1 57 46 58 0 + 94 106 107 1 58 46 47 0 + 94 107 95 1 58 47 59 0 + 95 107 108 1 59 47 48 0 + 95 108 96 1 59 48 60 0 + 96 108 97 1 60 48 37 0 + 96 97 85 1 60 37 49 0 + 97 109 110 1 37 25 26 0 + 97 110 98 1 37 26 38 0 + 98 110 111 1 38 26 27 0 + 98 111 99 1 38 27 39 0 + 99 111 112 1 39 27 28 0 + 99 112 100 1 39 28 40 0 + 100 112 113 1 40 28 29 0 + 100 113 101 1 40 29 41 0 + 101 113 114 1 41 29 30 0 + 101 114 102 1 41 30 42 0 + 102 114 115 1 42 30 31 0 + 102 115 103 1 42 31 43 0 + 103 115 116 1 43 31 32 0 + 103 116 104 1 43 32 44 0 + 104 116 117 1 44 32 33 0 + 104 117 105 1 44 33 45 0 + 105 117 118 1 45 33 34 0 + 105 118 106 1 45 34 46 0 + 106 118 119 1 46 34 35 0 + 106 119 107 1 46 35 47 0 + 107 119 120 1 47 35 36 0 + 107 120 108 1 47 36 48 0 + 108 120 109 1 48 36 25 0 + 108 109 97 1 48 25 37 0 + 109 121 122 1 25 13 14 0 + 109 122 110 1 25 14 26 0 + 110 122 123 1 26 14 15 0 + 110 123 111 1 26 15 27 0 + 111 123 124 1 27 15 16 0 + 111 124 112 1 27 16 28 0 + 112 124 125 1 28 16 17 0 + 112 125 113 1 28 17 29 0 + 113 125 126 1 29 17 18 0 + 113 126 114 1 29 18 30 0 + 114 126 127 1 30 18 19 0 + 114 127 115 1 30 19 31 0 + 115 127 128 1 31 19 20 0 + 115 128 116 1 31 20 32 0 + 116 128 129 1 32 20 21 0 + 116 129 117 1 32 21 33 0 + 117 129 130 1 33 21 22 0 + 117 130 118 1 33 22 34 0 + 118 130 131 1 34 22 23 0 + 118 131 119 1 34 23 35 0 + 119 131 132 1 35 23 24 0 + 119 132 120 1 35 24 36 0 + 120 132 121 1 36 24 13 0 + 120 121 109 1 36 13 25 0 + 121 133 134 1 13 1 2 0 + 121 134 122 1 13 2 14 0 + 122 134 135 1 14 2 3 0 + 122 135 123 1 14 3 15 0 + 123 135 136 1 15 3 4 0 + 123 136 124 1 15 4 16 0 + 124 136 137 1 16 4 5 0 + 124 137 125 1 16 5 17 0 + 125 137 138 1 17 5 6 0 + 125 138 126 1 17 6 18 0 + 126 138 139 1 18 6 7 0 + 126 139 127 1 18 7 19 0 + 127 139 140 1 19 7 8 0 + 127 140 128 1 19 8 20 0 + 128 140 141 1 20 8 9 0 + 128 141 129 1 20 9 21 0 + 129 141 142 1 21 9 10 0 + 129 142 130 1 21 10 22 0 + 130 142 143 1 22 10 11 0 + 130 143 131 1 22 11 23 0 + 131 143 144 1 23 11 12 0 + 131 144 132 1 23 12 24 0 + 132 144 133 1 24 12 1 0 + 132 133 121 1 24 1 13 0 + 133 145 134 1 1 0 2 0 + 134 145 135 1 2 0 3 0 + 135 145 136 1 3 0 4 0 + 136 145 137 1 4 0 5 0 + 137 145 138 1 5 0 6 0 + 138 145 139 1 6 0 7 0 + 139 145 140 1 7 0 8 0 + 140 145 141 1 8 0 9 0 + 141 145 142 1 9 0 10 0 + 142 145 143 1 10 0 11 0 + 143 145 144 1 11 0 12 0 + 144 145 133 1 12 0 1 0 + tverts 73 + 0.5 0.5 0 + 0.443395 0.5 0 + 0.450978 0.466481 0 + 0.471697 0.441943 0 + 0.5 0.432962 0 + 0.528303 0.441943 0 + 0.549022 0.466481 0 + 0.556605 0.5 0 + 0.549022 0.533519 0 + 0.528303 0.558057 0 + 0.5 0.567038 0 + 0.471697 0.558057 0 + 0.450978 0.533519 0 + 0.390647 0.5 0 + 0.405297 0.435246 0 + 0.445323 0.387843 0 + 0.5 0.370492 0 + 0.554677 0.387843 0 + 0.594703 0.435246 0 + 0.609353 0.5 0 + 0.594703 0.564754 0 + 0.554677 0.612157 0 + 0.5 0.629508 0 + 0.445323 0.612157 0 + 0.405297 0.564754 0 + 0.345351 0.5 0 + 0.36607 0.408424 0 + 0.422675 0.341386 0 + 0.5 0.316849 0 + 0.577324 0.341386 0 + 0.63393 0.408424 0 + 0.654649 0.5 0 + 0.63393 0.591576 0 + 0.577325 0.658614 0 + 0.5 0.683151 0 + 0.422676 0.658614 0 + 0.36607 0.591576 0 + 0.310595 0.5 0 + 0.33597 0.387843 0 + 0.405297 0.305739 0 + 0.5 0.275686 0 + 0.594703 0.305738 0 + 0.66403 0.387843 0 + 0.689405 0.5 0 + 0.66403 0.612157 0 + 0.594703 0.694261 0 + 0.5 0.724314 0 + 0.405297 0.694261 0 + 0.33597 0.612157 0 + 0.288746 0.5 0 + 0.317048 0.374905 0 + 0.394373 0.283329 0 + 0.5 0.24981 0 + 0.605627 0.283329 0 + 0.682952 0.374905 0 + 0.711254 0.5 0 + 0.682952 0.625095 0 + 0.605627 0.716671 0 + 0.5 0.75019 0 + 0.394373 0.716671 0 + 0.317048 0.625095 0 + 0.281293 0.5 0 + 0.310595 0.370492 0 + 0.390647 0.275686 0 + 0.5 0.240985 0 + 0.609353 0.275686 0 + 0.689405 0.370492 0 + 0.718707 0.5 0 + 0.689405 0.629508 0 + 0.609353 0.724314 0 + 0.5 0.759015 0 + 0.390647 0.724314 0 + 0.310595 0.629508 0 +endnode +node trimesh dragon_tailpieceh + parent squid + position -0.938158 3.96053 0.507496 + orientation -0.69413 -0.074724 -0.71596 -3.2796 + wirecolor 0.878906 0.878906 0.878906 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 11 + -0.0834235 -0.573407 -0.020659 + 0.0140413 -1.32777 0.0316452 + 0.0113355 -0.667498 0.0713794 + 0.014154 -0.985021 -0.106594 + 0.0132933 -0.531883 -0.183518 + 0.00963642 -0.122251 0.0477759 + -0.0351309 -0.0764944 -0.0366333 + 0.0112641 -0.0531085 -0.147775 + 0.00983512 0.0393679 -0.032579 + 0.106682 -0.593762 -0.0346175 + 0.0556316 -0.0821548 -0.0425248 + faces 18 + 0 1 2 1 0 1 2 0 + 3 0 4 1 3 0 4 0 + 0 3 1 1 0 3 1 0 + 5 6 0 1 5 6 0 0 + 0 2 5 1 0 2 5 0 + 4 0 6 1 4 0 6 0 + 6 7 4 1 6 7 4 0 + 6 8 7 1 6 8 7 0 + 6 5 8 1 6 5 8 0 + 9 2 1 1 9 2 1 0 + 3 4 9 1 3 4 9 0 + 9 1 3 1 9 1 3 0 + 5 9 10 1 5 9 10 0 + 9 5 2 1 9 5 2 0 + 4 10 9 1 4 10 9 0 + 10 4 7 1 10 4 7 0 + 10 7 8 1 10 7 8 0 + 10 8 5 1 10 8 5 0 + tverts 11 + 0.167607 0.288886 0 + 0.237953 0.366207 0 + 0.0607832 0.378769 0 + 0.328798 0.191702 0 + 0.124671 0.187081 0 + 0.0685509 0.3172 0 + 0.0806873 0.258095 0 + 0.0781116 0.197445 0 + 0.0494625 0.227899 0 + 0.167617 0.287732 0 + 0.0802161 0.259417 0 +endnode +node trimesh mesh1868 + parent squid + position 0.0308889 -0.032507 0.199106 + orientation 0 0.00436336 -0.99999 -3.14159 + wirecolor 0.769531 0.769531 0.769531 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap squid + verts 89 + -0.429253 -1.71815 0.548694 + -0.488396 -1.13787 0.496302 + -0.827876 -0.993909 0.638319 + -0.72733 -1.5512 0.638319 + -0.577954 -1.91603 0.638319 + -0.577954 -2.10625 0.743213 + -0.207384 -2.32968 0.638319 + -0.207384 -2.56564 0.563443 + -0.399851 -2.37906 0.775873 + -0.399851 -2.16594 0.638319 + -0.00342701 -2.42449 0.638319 + -0.00342675 -2.79 0.579643 + 0.20053 -2.32968 0.638319 + 0.20053 -2.63697 0.562817 + 0.392996 -2.16594 0.638319 + 0.392996 -2.37906 0.775873 + 0.571095 -1.91602 0.638319 + 0.571095 -2.10625 0.743213 + 0.422398 -1.71815 0.548694 + 0.821018 -0.993904 0.638319 + 0.481537 -1.13786 0.496302 + 0.720471 -1.5512 0.638319 + -0.207384 -2.12286 0.24764 + -0.00342701 -2.21478 0.24764 + -0.190148 -1.87868 -0.00802418 + -0.00342704 -1.96199 -0.00802418 + 0.20053 -2.12286 0.24764 + 0.183294 -1.87868 -0.00802418 + -0.399851 -1.95624 0.24764 + -0.577954 -1.71207 0.24764 + -0.365379 -1.73218 -0.00802418 + -0.526248 -1.51098 -0.00802418 + -0.893945 -0.247025 0.24764 + -0.827876 -0.861767 0.24764 + -0.893945 -0.247025 0.638319 + -0.72733 -1.35873 0.24764 + -0.81638 -0.247025 -0.00802418 + -0.753183 -0.755483 -0.00802418 + -0.661261 -1.19787 -0.00802418 + 0.392996 -1.95624 0.24764 + 0.571095 -1.71207 0.24764 + 0.571095 -1.91603 0.638319 + 0.358524 -1.73218 -0.00802418 + 0.519394 -1.51098 -0.00802418 + 0.821018 -0.861767 0.24764 + 0.887091 -0.247025 0.24764 + 0.887091 -0.247025 0.638319 + 0.821018 -0.993909 0.638319 + 0.720476 -1.35873 0.24764 + 0.720476 -1.5512 0.638319 + 0.746329 -0.755483 -0.00802418 + 0.809527 -0.247025 -0.00802418 + 0.654403 -1.19787 -0.00802418 + -0.865225 1.05672 0.24764 + -0.893955 -0.250323 0.24764 + -0.893955 -0.250323 0.638319 + -0.865225 1.186 0.638319 + 0.887081 -0.250323 0.24764 + 0.858356 1.05672 0.24764 + 0.858356 1.186 0.638319 + 0.887081 -0.250323 0.638319 + -0.827886 1.47326 0.24764 + -0.869115 1.65998 0.638319 + 0.821007 1.47326 0.24764 + 0.852288 1.65998 0.638319 + -0.730217 1.73467 0.24764 + -0.785955 1.95873 0.638319 + 0.723343 1.73467 0.24764 + 0.723343 1.95873 0.638319 + -0.60956 1.8783 0.24764 + -0.60956 2.21696 0.63917 + -0.463057 1.96735 0.24764 + -0.463057 2.32384 0.6392 + 0.456185 1.96735 0.24764 + 0.456185 2.32384 0.6392 + 0.602691 1.8783 0.24764 + 0.602691 2.1196 0.638319 + -0.787666 0.959055 -0.00802408 + -0.816391 -0.250323 -0.00802408 + 0.809522 -0.250323 -0.00802408 + 0.780792 0.959055 -0.00802408 + -0.779052 1.32962 -0.00802408 + 0.746319 1.32963 -0.00802408 + -0.664143 1.56518 -0.00802408 + 0.657269 1.56518 -0.00802408 + -0.554983 1.69158 -0.00802408 + -0.419968 1.77201 -0.00802408 + 0.413096 1.77201 -0.00802408 + 0.548109 1.69158 -0.00802408 + faces 112 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 92 0 0 + 4 5 0 1 17 5 0 0 + 0 3 4 1 0 92 17 0 + 6 7 8 1 6 7 8 0 + 8 9 6 1 8 93 6 0 + 9 8 5 1 93 8 10 0 + 5 4 9 1 10 22 93 0 + 10 11 7 1 11 12 7 0 + 7 6 10 1 7 6 11 0 + 12 13 10 1 13 14 11 0 + 11 10 13 1 12 11 14 0 + 14 15 12 1 15 16 13 0 + 13 12 15 1 14 13 16 0 + 16 17 14 1 17 5 15 0 + 15 14 17 1 16 15 5 0 + 18 19 20 1 18 19 20 0 + 19 18 21 1 19 18 21 0 + 21 18 16 1 21 18 22 0 + 17 16 18 1 10 22 18 0 + 22 23 6 1 23 24 6 0 + 10 6 23 1 11 6 24 0 + 24 25 23 1 25 26 24 0 + 23 22 24 1 24 23 25 0 + 23 26 12 1 24 27 13 0 + 12 10 23 1 13 11 24 0 + 25 27 26 1 26 28 27 0 + 26 23 25 1 27 24 26 0 + 28 22 9 1 29 23 93 0 + 6 9 22 1 6 93 23 0 + 29 28 4 1 94 95 4 0 + 9 4 28 1 9 4 95 0 + 30 24 22 1 31 25 23 0 + 22 28 30 1 23 29 31 0 + 31 30 29 1 32 31 30 0 + 28 29 30 1 29 30 31 0 + 32 33 2 1 33 34 35 0 + 2 34 32 1 35 36 33 0 + 35 29 3 1 96 94 3 0 + 4 3 29 1 4 3 94 0 + 33 35 3 1 34 96 3 0 + 3 2 33 1 3 35 34 0 + 36 37 33 1 38 39 34 0 + 33 32 36 1 34 33 38 0 + 37 38 35 1 39 97 96 0 + 35 33 37 1 96 34 39 0 + 38 31 35 1 40 32 37 0 + 29 35 31 1 30 37 32 0 + 26 39 14 1 27 41 15 0 + 14 12 26 1 15 13 27 0 + 39 40 41 1 98 99 44 0 + 41 14 39 1 44 42 98 0 + 27 42 39 1 28 45 41 0 + 39 26 27 1 41 27 28 0 + 42 43 40 1 45 46 43 0 + 40 39 42 1 43 41 45 0 + 44 45 46 1 47 48 49 0 + 46 47 44 1 49 50 47 0 + 40 48 49 1 99 51 52 0 + 49 41 40 1 52 44 99 0 + 48 44 47 1 51 47 50 0 + 47 49 48 1 50 52 51 0 + 50 51 45 1 53 54 48 0 + 45 44 50 1 48 47 53 0 + 43 52 48 1 46 100 101 0 + 48 40 43 1 101 43 46 0 + 52 50 44 1 55 53 47 0 + 44 48 52 1 47 51 55 0 + 53 54 55 1 56 57 58 0 + 55 56 53 1 58 59 56 0 + 57 58 59 1 60 61 62 0 + 59 60 57 1 62 63 60 0 + 61 53 56 1 102 56 59 0 + 56 62 61 1 59 65 102 0 + 58 63 64 1 61 103 67 0 + 64 59 58 1 67 62 61 0 + 65 61 62 1 104 102 65 0 + 62 66 65 1 65 105 104 0 + 63 67 68 1 103 106 71 0 + 68 64 63 1 71 67 103 0 + 69 65 66 1 72 68 69 0 + 66 70 69 1 69 73 72 0 + 71 69 70 1 74 72 73 0 + 70 72 71 1 73 75 74 0 + 73 71 72 1 76 74 75 0 + 72 74 73 1 75 77 76 0 + 67 75 76 1 70 78 79 0 + 76 68 67 1 107 71 106 0 + 75 73 74 1 78 76 77 0 + 74 76 75 1 77 79 78 0 + 77 78 54 1 80 81 57 0 + 54 53 77 1 57 56 80 0 + 79 80 58 1 82 83 61 0 + 58 57 79 1 61 60 82 0 + 81 77 53 1 108 80 56 0 + 53 61 81 1 56 102 108 0 + 80 82 63 1 83 109 103 0 + 63 58 80 1 103 61 83 0 + 83 81 61 1 86 84 64 0 + 61 65 83 1 64 68 86 0 + 82 84 67 1 85 87 70 0 + 67 63 82 1 70 66 85 0 + 85 83 65 1 88 86 68 0 + 65 69 85 1 68 72 88 0 + 86 85 69 1 89 88 72 0 + 69 71 86 1 72 74 89 0 + 87 86 71 1 90 89 74 0 + 71 73 87 1 74 76 90 0 + 84 88 75 1 87 91 78 0 + 75 67 84 1 78 70 87 0 + 88 87 73 1 91 90 76 0 + 73 75 88 1 76 78 91 0 + tverts 110 + 0.261154 0.214101 0 + 0.227979 0.329739 0 + 0.0375622 0.358427 0 + 0.824202 0.24737 0 + 0.824202 0.174667 0 + 0.177744 0.136759 0 + 0.614399 0.0922325 0 + 0.614399 0.0452099 0 + 0.722355 0.0823919 0 + 0.824202 0.124863 0 + 0.822255 0.136759 0 + 0.499997 0.0733413 0 + 0.499997 0.000499487 0 + 0.385596 0.0922325 0 + 0.385596 0.0309963 0 + 0.277641 0.124863 0 + 0.277641 0.0823925 0 + 0.177741 0.174668 0 + 0.738851 0.2141 0 + 0.962439 0.358428 0 + 0.772024 0.32974 0 + 0.906044 0.24737 0 + 0.822258 0.174668 0 + 0.614399 0.13345 0 + 0.499997 0.115131 0 + 0.604731 0.182109 0 + 0.499997 0.165508 0 + 0.385596 0.13345 0 + 0.395264 0.182109 0 + 0.722355 0.166653 0 + 0.822255 0.215312 0 + 0.703019 0.211305 0 + 0.793251 0.255384 0 + 0.326319 0.507268 0 + 0.326319 0.384761 0 + 0.824202 0.358427 0 + 0.824202 0.507268 0 + 0.906041 0.285725 0 + 0.000499696 0.507268 0 + 0.000499666 0.405942 0 + 0.868982 0.317783 0 + 0.27764 0.166653 0 + 0.175798 0.124863 0 + 0.177741 0.215312 0 + 0.175798 0.174667 0 + 0.296976 0.211305 0 + 0.206744 0.255384 0 + 0.673681 0.384761 0 + 0.673681 0.507268 0 + 0.175798 0.507268 0 + 0.175798 0.358427 0 + 0.673681 0.285725 0 + 0.175798 0.24737 0 + 0.9995 0.405942 0 + 0.9995 0.507268 0 + 0.9995 0.317783 0 + 0.326319 0.76708 0 + 0.326319 0.506611 0 + 0.824202 0.506611 0 + 0.824202 0.792841 0 + 0.673681 0.506611 0 + 0.673681 0.767081 0 + 0.175798 0.792841 0 + 0.175798 0.506611 0 + 0.962441 0.850087 0 + 0.824202 0.887297 0 + 0.0375637 0.850087 0 + 0.175798 0.887297 0 + 0.907657 0.902182 0 + 0.907657 0.946833 0 + 0.0923473 0.902182 0 + 0.175798 0.946833 0 + 0.839983 0.930805 0 + 0.839983 0.978891 0 + 0.757808 0.948551 0 + 0.757808 0.9995 0 + 0.242197 0.948551 0 + 0.242197 0.999501 0 + 0.160021 0.930805 0 + 0.160021 0.978892 0 + 0.000499874 0.747617 0 + 0.000499815 0.506611 0 + 0.9995 0.506611 0 + 0.9995 0.747617 0 + 0.935049 0.821464 0 + 0.0794571 0.821465 0 + 0.870598 0.868406 0 + 0.129407 0.868407 0 + 0.809369 0.893595 0 + 0.733638 0.909624 0 + 0.266366 0.909624 0 + 0.190636 0.893595 0 + 0.0939587 0.24737 0 + 0.722355 0.124863 0 + 0.326319 0.215312 0 + 0.326319 0.166653 0 + 0.326319 0.285725 0 + 0.000499636 0.317783 0 + 0.673681 0.166653 0 + 0.673681 0.215312 0 + 0.131014 0.317783 0 + 0.093954 0.285725 0 + 0.32632 0.850087 0 + 0.67368 0.850087 0 + 0.32632 0.902182 0 + 0.824202 0.946833 0 + 0.67368 0.902182 0 + 0.175798 0.978892 0 + 0.000499904 0.821464 0 + 0.9995 0.821465 0 +endnode +node trimesh raptor_tailfeathers + parent squid + position 0.0280099 -1.93006 0.458686 + orientation 0 1 0 -3.1765 + wirecolor 0.839844 0.839844 0.839844 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 9 + -1.19784 -0.732848 0.269383 + -0.597503 -0.8555 -0.176503 + -0.00317187 -3.21441 -0.672278 + -0.436599 -0.0718826 0.167492 + 0 -0.0111113 -0.171986 + 0 -0.0449958 0.18438 + 0.605848 -0.8555 -0.176503 + 1.26708 -0.732848 0.269383 + 0.436599 -0.0718826 0.167492 + faces 14 + 0 1 2 1 0 1 2 0 + 1 3 4 1 1 3 4 0 + 4 2 1 1 4 2 1 0 + 1 0 2 1 5 0 6 0 + 3 2 5 1 3 6 7 0 + 2 3 1 1 6 3 5 0 + 3 5 4 1 3 7 4 0 + 6 7 2 1 8 9 2 0 + 8 6 4 1 10 8 4 0 + 2 4 6 1 2 4 8 0 + 2 6 8 1 6 11 10 0 + 8 5 2 1 10 7 6 0 + 6 2 7 1 11 6 9 0 + 5 8 4 1 7 10 4 0 + tverts 12 + 0.0489462 0.0934306 0 + 0.160732 0.236358 0 + 0.320498 0.000166789 0 + 0.197069 0.372343 0 + 0.314055 0.378693 0 + 0.159931 0.233944 0 + 0.320498 0 0 + 0.314055 0.378249 0 + 0.160923 0.236358 0 + 0.0491369 0.0934305 0 + 0.197259 0.372343 0 + 0.160121 0.233944 0 +endnode +node trimesh dragon_tailpieceb01 + parent squid + position 0.85372 1.65424 0.510433 + orientation 0.716808 -0.0446498 -0.69584 -3.01755 + wirecolor 0.722656 0.722656 0.722656 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.05 0.05 0.05 + shininess 26 + bitmap squid + verts 10 + -0.111515 -0.399909 -0.109893 + -0.00207707 -0.491152 -0.180488 + -0.00486844 -0.42677 0.0704496 + -0.00236602 -0.309946 -0.323587 + -0.00922389 -0.0157167 0.161733 + -0.137155 -0.00238573 -0.0572499 + -0.00597697 0.0998695 -0.315183 + -0.00949423 0.254306 -0.0693981 + 0.104513 -0.407958 -0.106827 + 0.122757 -0.0229565 -0.0476517 + faces 16 + 0 1 2 1 0 1 2 0 + 1 0 3 1 1 0 3 0 + 4 5 0 1 4 5 0 0 + 0 2 4 1 0 2 4 0 + 5 6 3 1 5 6 3 0 + 3 0 5 1 3 0 5 0 + 5 7 6 1 5 7 6 0 + 5 4 7 1 5 4 7 0 + 8 2 1 1 8 2 1 0 + 1 3 8 1 1 3 8 0 + 4 8 9 1 4 8 9 0 + 8 4 2 1 8 4 2 0 + 9 3 6 1 9 3 6 0 + 3 9 8 1 3 9 8 0 + 9 6 7 1 9 6 7 0 + 9 7 4 1 9 7 4 0 + tverts 10 + 0.380512 0.163424 0 + 0.447255 0.170516 0 + 0.365149 0.426041 0 + 0.373777 0.00508506 0 + 0.237894 0.416506 0 + 0.2552 0.177176 0 + 0.211018 0.00260492 0 + 0.175092 0.194924 0 + 0.38015 0.160123 0 + 0.254765 0.178099 0 +endnode +node dummy squida + parent squid + wirecolor 1 0 0 + orientation 0 0 0 0 + position 0 0 0 +endnode +endmodelgeom squid + +#MAXANIM ASCII +newanim 1hreadyl squid + length 0.0666667 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.00872767 -0.00872602 -0.999924 1.57112 + 0.0333333 0.00872743 -0.00872626 -0.999924 1.57112 + 0.0666667 0.00872671 -0.00872697 -0.999924 1.57112 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim 1hreadyl squid + +#MAXANIM ASCII +newanim 1hreadyr squid + length 0.0666667 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.00872767 -0.00872602 -0.999924 1.57112 + 0.0333333 0.00872743 -0.00872626 -0.999924 1.57112 + 0.0666667 0.00872671 -0.00872697 -0.999924 1.57112 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim 1hreadyr squid + +#MAXANIM ASCII +newanim castarea squid + length 1 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.0130854 -0.0130885 -0.999829 1.57121 + 0.333333 0.0130852 -0.0130887 -0.999829 1.57121 + 0.666667 0.0130847 -0.0130892 -0.999829 1.57121 + 1 0.0130873 -0.0130866 -0.999829 1.57121 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim castarea squid + +#MAXANIM ASCII +newanim castarealp squid + length 1 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.0130854 -0.0130885 -0.999829 1.57121 + 0.333333 0.0130852 -0.0130887 -0.999829 1.57121 + 0.666667 0.0130847 -0.0130892 -0.999829 1.57121 + 1 0.0130873 -0.0130866 -0.999829 1.57121 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim castarealp squid + +#MAXANIM ASCII +newanim castout squid + length 1 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.0130854 -0.0130885 -0.999829 1.57121 + 0.333333 0.0130852 -0.0130887 -0.999829 1.57121 + 0.666667 0.0130847 -0.0130892 -0.999829 1.57121 + 1 0.0130873 -0.0130866 -0.999829 1.57121 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim castout squid + +#MAXANIM ASCII +newanim castoutlp squid + length 1 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.00872344 -0.00872621 -0.999924 1.57119 + 0.333333 0.00872296 -0.00872669 -0.999924 1.57119 + 0.666667 0.00872249 -0.00872716 -0.999924 1.57119 + 1 0.00872868 -0.00872439 -0.999924 1.5708 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim castoutlp squid + +#MAXANIM ASCII +newanim castpoint squid + length 1 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.0130854 -0.0130885 -0.999829 1.57121 + 0.333333 0.0130852 -0.0130887 -0.999829 1.57121 + 0.666667 0.0130847 -0.0130892 -0.999829 1.57121 + 1 0.0130873 -0.0130866 -0.999829 1.57121 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim castpoint squid + +#MAXANIM ASCII +newanim castpointlp squid + length 1 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.0130854 -0.0130885 -0.999829 1.57121 + 0.333333 0.0130852 -0.0130887 -0.999829 1.57121 + 0.666667 0.0130847 -0.0130892 -0.999829 1.57121 + 1 0.0130873 -0.0130866 -0.999829 1.57121 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim castpointlp squid + +#MAXANIM ASCII +newanim castup squid + length 1 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.0130854 -0.0130885 -0.999829 1.57121 + 0.333333 0.0130847 -0.0130892 -0.999829 1.57121 + 0.666667 0.013084 -0.0130899 -0.999829 1.57121 + 1 0.0130873 -0.0130866 -0.999829 1.57121 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim castup squid + +#MAXANIM ASCII +newanim castuplp squid + length 1 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.0130854 -0.0130885 -0.999829 1.57121 + 0.333333 0.0130852 -0.0130887 -0.999829 1.57121 + 0.666667 0.0130847 -0.0130892 -0.999829 1.57121 + 1 0.0130873 -0.0130866 -0.999829 1.57121 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim castuplp squid + +#MAXANIM ASCII +newanim conjure1 squid + length 1 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.00872598 -0.0087262 -0.999924 1.57096 + 0.333333 0.00872574 -0.00872644 -0.999924 1.57096 + 0.666667 0.0087255 -0.00872668 -0.999924 1.57096 + 1 0.00872621 -0.00872597 -0.999924 1.57095 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim conjure1 squid + +#MAXANIM ASCII +newanim conjure2 squid + length 1 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.0130854 -0.0130885 -0.999829 1.57121 + 0.333333 0.0130852 -0.0130887 -0.999829 1.57121 + 0.666667 0.0130847 -0.0130892 -0.999829 1.57121 + 1 0.0130873 -0.0130866 -0.999829 1.57121 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim conjure2 squid + +#MAXANIM ASCII +newanim kdbck squid + length 2 + transtime 5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + positionkey + 0 0 0 -0.0583977 + 0.666667 0 0 -0.103399 + 1.33333 0 0 -0.193145 + 2 0 0 -0.269671 + endlist + orientationkey + 0 -0.00436295 0.0130857 -0.999905 1.57106 + 0.666667 -0.00436318 0.0130857 -0.999905 1.57104 + 1.33333 -0.00436408 0.0130857 -0.999905 1.57096 + 2 -0.00436516 0.0130857 -0.999905 1.57089 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim kdbck squid + +#MAXANIM ASCII +newanim kdbckdie squid + length 2 + transtime 5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + positionkey + 0 0 0 -0.413505 + 0.666667 0 0 -0.55405 + 1.33333 0 0 -0.828431 + 2 0 0 -1.21347 + endlist + orientationkey + 0 -0.00439765 0.0130855 -0.999905 1.56996 + 0.666667 -0.00441864 0.0130855 -0.999905 1.56927 + 1.33333 0.0583232 -0.011986 -0.998226 1.57445 + 2 0.0884387 -0.0786331 -0.992973 1.57892 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim kdbckdie squid + +#MAXANIM ASCII +newanim kdbckps squid + length 2 + transtime 5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + positionkey + 0 0 0 -0.269671 + 0.666667 0 0 -0.338129 + 1.33333 0 0 -0.41441 + 2 0 0 -0.269671 + endlist + orientationkey + 0 -0.00436516 0.0130857 -0.999905 1.57089 + 0.666667 -0.00439786 0.0130857 -0.999905 1.56996 + 1.33333 -0.00443623 0.0130856 -0.999905 1.56123 + 2 -0.00443647 0.0130854 -0.999905 1.56123 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim kdbckps squid + +#MAXANIM ASCII +newanim nwreadyl squid + length 0.0666667 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.00872767 -0.00872602 -0.999924 1.57112 + 0.0333333 0.00872695 -0.00872673 -0.999924 1.57112 + 0.0666667 0.00872624 -0.00872745 -0.999924 1.57112 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim nwreadyl squid + +#MAXANIM ASCII +newanim nwreadyr squid + length 0.0666667 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.00872767 -0.00872602 -0.999924 1.57112 + 0.0333333 0.00872695 -0.00872673 -0.999924 1.57112 + 0.0666667 0.00872624 -0.00872745 -0.999924 1.57112 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim nwreadyr squid + +#MAXANIM ASCII +newanim pause2 squid + length 1 + transtime 5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.0130854 -0.0130885 -0.999829 1.57121 + 0.333333 0.0130852 -0.0130887 -0.999829 1.57121 + 0.666667 0.0130847 -0.0130892 -0.999829 1.57121 + 1 0.0130873 -0.0130866 -0.999829 1.57121 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim pause2 squid + +#MAXANIM ASCII +newanim run squid + length 2 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 1 0 0 0.00872678 + 0.466667 1 0 0 0.0261809 + 0.966667 1 0 0 0.00872678 + 1.46667 1 0 0 0.0261809 + 1.96667 1 0 0 0.00872678 + 2 1 0 0 0.00872678 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim run squid + +#MAXANIM ASCII +newanim throwr squid + length 1 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 0.00436334 -0.00436327 -0.999981 1.57082 + 0.333333 0.00436286 -0.00436375 -0.999981 1.57082 + 0.666667 0.00436215 -0.00436446 -0.999981 1.57082 + 1 0.00436359 -0.00436305 -0.999981 1.57082 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim throwr squid + +#MAXANIM ASCII +newanim walk squid + length 2 + transtime 0.5 + animroot squid + node dummy squid + parent NULL + endnode + node trimesh rootdummy + parent squid + orientationkey + 0 1 0 0 0.00872678 + 0.466667 1 0 0 0.0261809 + 0.966667 1 0 0 0.00872678 + 1.46667 1 0 0 0.0261809 + 1.96667 1 0 0 0.00872678 + 2 1 0 0 0.00872678 + endlist + endnode + node dummy box28 + parent squid + endnode + node dummy box48 + parent squid + endnode + node dummy box52 + parent squid + endnode + node dummy box134 + parent squid + endnode + node dummy box627 + parent squid + endnode + node dummy box1224 + parent squid + endnode + node dummy box1225 + parent squid + endnode + node dummy box1226 + parent squid + endnode + node dummy box1227 + parent squid + endnode + node dummy box1228 + parent squid + endnode + node dummy box1229 + parent squid + endnode + node dummy box155574 + parent squid + endnode + node dummy box155575 + parent squid + endnode + node dummy box155576 + parent squid + endnode + node dummy box155577 + parent squid + endnode + node dummy box155719 + parent squid + endnode + node dummy box155722 + parent squid + endnode + node dummy box155723 + parent squid + endnode + node dummy torus01 + parent squid + endnode + node dummy cone01 + parent squid + endnode + node dummy rhand + parent squid + endnode + node dummy line01 + parent squid + endnode + node dummy box02 + parent squid + endnode + node dummy plane439 + parent squid + endnode + node dummy object382 + parent squid + endnode + node dummy object381 + parent squid + endnode + node dummy object380 + parent squid + endnode + node dummy object343 + parent squid + endnode + node dummy dragon_tailpiecee01 + parent squid + endnode + node dummy dragon_tailpiecef + parent squid + endnode + node dummy dragon_tailpiecef01 + parent squid + endnode + node dummy dragon_tailpieceg + parent squid + endnode + node dummy dragon_tailpieceg01 + parent squid + endnode + node dummy object340 + parent squid + endnode + node dummy dragon_tailpieceh01 + parent squid + endnode + node dummy front + parent squid + endnode + node dummy handconjure + parent squid + endnode + node dummy head_g + parent squid + endnode + node dummy headconjure + parent squid + endnode + node dummy lforearm + parent squid + endnode + node dummy lhand + parent squid + endnode + node dummy line511 + parent squid + endnode + node dummy mesh66 + parent squid + endnode + node dummy mesh67 + parent squid + endnode + node dummy mesh70 + parent squid + endnode + node dummy mesh184 + parent squid + endnode + node dummy mesh1562 + parent squid + endnode + node dummy object379 + parent squid + endnode + node dummy impact + parent squid + endnode + node dummy object328 + parent squid + endnode + node dummy object347 + parent squid + endnode + node dummy line1535 + parent squid + endnode + node dummy box155721 + parent squid + endnode + node dummy box01 + parent squid + endnode + node dummy box132 + parent squid + endnode + node dummy box133 + parent squid + endnode + node dummy box135 + parent squid + endnode + node dummy mesh1757 + parent squid + endnode + node dummy plane446 + parent squid + endnode + node dummy object334 + parent squid + endnode + node dummy object337 + parent squid + endnode + node dummy object338 + parent squid + endnode + node dummy object339 + parent squid + endnode + node dummy dragon_tailpieceb + parent squid + endnode + node dummy dragon_tailpiecee + parent squid + endnode + node dummy object375 + parent squid + endnode + node dummy dragon_tailpieced01 + parent squid + endnode + node dummy dragon_tailpieced + parent squid + endnode + node dummy dragon_tailpiecec01 + parent squid + endnode + node dummy dragon_tailpiecec + parent squid + endnode + node dummy point + parent squid + endnode + node dummy dragon_tailpiecea + parent squid + endnode + node dummy capsule01 + parent squid + endnode + node dummy dragon_tailpieceh + parent squid + endnode + node dummy mesh1868 + parent squid + endnode + node dummy raptor_tailfeathers + parent squid + endnode + node dummy dragon_tailpieceb01 + parent squid + endnode + node dummy squida + parent squid + endnode +doneanim walk squid +donemodel squid diff --git a/tests/fixtures/oracle/ascii/tcei0_a01_01.mdl b/tests/fixtures/oracle/ascii/tcei0_a01_01.mdl new file mode 100644 index 0000000..5e4a5fb --- /dev/null +++ b/tests/fixtures/oracle/ascii/tcei0_a01_01.mdl @@ -0,0 +1,4300 @@ +#MAXMODEL ASCII +# model: tcei0_a01_01 +filedependancy tcei0_a01_01.max +newmodel tcei0_a01_01 +setsupermodel tcei0_a01_01 null +classification tile +setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom tcei0_a01_01 +node dummy tcei0_a01_01 + parent NULL + #part-number 0 +endnode +node aabb mesh10 + parent tcei0_a01_01 + #part-number 1 + ambient 0.588 0.588 0.588 + diffuse 0.5 0.5 0.5 + specular 0 0 0 + shininess 10 + shadow 0 + transparencyhint 0 + bitmap NULL + verts 25 + 0 0 0 + 3.20000005 -5 0 + 2.25999999 1.01999998 0 + 1.02999997 2.25999999 0 + -5 3.20000005 0 + -5 0 0 + 3.20000005 0.910000026 0 + 0 -5 0 + -5 -3.20000005 0 + -3.20000005 -3.20000005 0 + -3.20000005 -5 0 + 0.870000005 3.20000005 0 + 2.25999999 1.01999998 3 + 1.02999997 2.25999999 3 + 3.20000005 -5 3 + 3.20000005 0.910000026 3 + -5 -3.20000005 3 + -3.20000005 -3.20000005 3 + -3.20000005 -5 3 + 0.870000005 3.20000005 3 + -5 3.20000005 3 + -5 -5 3 + 5 5 3 + -5 5 3 + 5 -5 3 + faces 34 + 0 1 2 1 0 0 0 4 + 2 3 0 1 0 0 0 4 + 4 5 3 1 0 0 0 4 + 2 1 6 1 0 0 0 4 + 1 0 7 1 0 0 0 4 + 5 8 9 1 0 0 0 4 + 9 0 5 1 0 0 0 4 + 10 7 9 1 0 0 0 4 + 0 9 7 1 0 0 0 4 + 3 5 0 1 0 0 0 4 + 11 4 3 1 0 0 0 4 + 12 13 3 2 0 0 0 7 + 3 2 12 2 0 0 0 7 + 14 15 6 2 0 0 0 7 + 6 1 14 2 0 0 0 7 + 15 12 2 4 0 0 0 7 + 2 6 15 4 0 0 0 7 + 16 17 9 2 0 0 0 7 + 9 8 16 2 0 0 0 7 + 17 18 10 4 0 0 0 7 + 10 9 17 4 0 0 0 7 + 19 20 4 2 0 0 0 7 + 4 11 19 2 0 0 0 7 + 13 19 11 4 0 0 0 7 + 11 3 13 4 0 0 0 7 + 17 16 21 1 0 0 0 7 + 18 17 21 1 0 0 0 7 + 13 12 22 1 0 0 0 7 + 12 15 22 1 0 0 0 7 + 22 23 20 1 0 0 0 7 + 20 19 22 1 0 0 0 7 + 19 13 22 1 0 0 0 7 + 24 22 15 1 0 0 0 7 + 15 14 24 1 0 0 0 7 + aabb -5 -5 0 5 5 3 -1 + -5 -5 0 5 5 3 -1 + -5 -5 0 1.02999997 3.20000005 3 -1 + -5 -5 0 -3.20000005 -3.20000005 3 -1 + -5 -5 0 -3.20000005 -3.20000005 3 -1 + -5 -3.20000005 0 -3.20000005 -3.20000005 3 18 + -3.20000005 -5 0 -3.20000005 -3.20000005 3 20 + -5 -5 0 -3.20000005 -3.20000005 3 -1 + -5 -5 0 -3.20000005 -3.20000005 3 -1 + -5 -3.20000005 0 -3.20000005 -3.20000005 3 17 + -3.20000005 -5 0 -3.20000005 -3.20000005 3 19 + -5 -5 3 -3.20000005 -3.20000005 3 -1 + -5 -5 3 -3.20000005 -3.20000005 3 25 + -5 -5 3 -3.20000005 -3.20000005 3 26 + -5 -3.20000005 0 1.02999997 3.20000005 3 -1 + -5 -3.20000005 0 -3.20000005 0 0 5 + -5 0 0 1.02999997 3.20000005 3 -1 + -5 3.20000005 0 0.870000005 3.20000005 3 21 + -5 0 0 1.02999997 3.20000005 0 2 + -5 -5 0 5 5 3 -1 + -5 -5 0 5 5 3 -1 + -5 -3.20000005 0 0 0 0 6 + -5 -5 0 5 5 3 -1 + -3.20000005 -5 0 0 -3.20000005 0 7 + -5 3.20000005 3 5 5 3 29 + -5 -5 0 1.02999997 3.20000005 3 -1 + -5 -5 0 1.02999997 2.25999999 0 -1 + -3.20000005 -5 0 0 0 0 8 + -5 0 0 1.02999997 2.25999999 0 9 + -5 2.25999999 0 1.02999997 3.20000005 3 -1 + -5 3.20000005 0 0.870000005 3.20000005 3 22 + -5 2.25999999 0 1.02999997 3.20000005 0 10 + -5 -5 0 5 5 3 -1 + -5 -5 0 5 5 3 -1 + -5 -5 0 5 5 3 -1 + -5 3.20000005 3 5 5 3 30 + 0 -5 0 3.20000005 3.20000005 3 -1 + 0 -5 0 3.20000005 0 0 4 + 0 0 0 2.25999999 3.20000005 3 -1 + 0 0 0 2.25999999 2.25999999 0 1 + 0.870000005 2.25999999 0 1.02999997 3.20000005 3 -1 + 0.870000005 2.25999999 0 1.02999997 3.20000005 3 24 + 0.870000005 2.25999999 0 1.02999997 3.20000005 3 23 + 0 -5 0 3.20000005 2.25999999 3 -1 + 0 -5 0 3.20000005 1.01999998 0 0 + 1.02999997 1.01999998 0 2.25999999 2.25999999 3 -1 + 1.02999997 1.01999998 0 2.25999999 2.25999999 3 12 + 1.02999997 1.01999998 0 2.25999999 2.25999999 3 11 + 0.870000005 -5 0 5 5 3 -1 + 2.25999999 -5 0 5 1.01999998 3 -1 + 3.20000005 -5 0 5 0.910000026 3 -1 + 3.20000005 -5 0 3.20000005 0.910000026 3 14 + 3.20000005 -5 3 5 0.910000026 3 33 + 2.25999999 -5 0 3.20000005 1.01999998 3 -1 + 3.20000005 -5 0 3.20000005 0.910000026 3 13 + 2.25999999 -5 0 3.20000005 1.01999998 0 3 + 0.870000005 -5 0 5 5 3 -1 + 2.25999999 -5 0 5 5 3 -1 + 3.20000005 -5 3 5 5 3 32 + 2.25999999 0.910000026 0 3.20000005 1.01999998 3 -1 + 2.25999999 0.910000026 0 3.20000005 1.01999998 3 16 + 2.25999999 0.910000026 0 3.20000005 1.01999998 3 15 + 0.870000005 0.910000026 3 5 5 3 -1 + 0.870000005 1.01999998 3 5 5 3 -1 + 0.870000005 2.25999999 3 5 5 3 31 + 1.02999997 1.01999998 3 5 5 3 27 + 2.25999999 0.910000026 3 5 5 3 28 + orientation 0 0 0 0 + position 0 0 0 +endnode +node light tcei0_a01_01ml1 + parent tcei0_a01_01 + #part-number 2 + ambientonly 0 + shadow 0 + isdynamic 0 + affectdynamic 1 + lightpriority 3 + fadingLight 1 + flareradius 0 + orientation 0 0 0 0 + radius 14 + multiplier 1 + color 0 0 0 + position 0 0 5 +endnode +node light tcei0_a01_01ml2 + parent tcei0_a01_01 + #part-number 3 + ambientonly 0 + shadow 0 + isdynamic 0 + affectdynamic 1 + lightpriority 3 + fadingLight 1 + flareradius 0 + orientation 0 0 0 0 + radius 5 + multiplier 1 + color 0 0 0 + position 1.57000005 1.72000003 2.5 +endnode +node dummy line02 + parent tcei0_a01_01 + #part-number 4 + orientation 0 0 0 0 + position 2.63000011 2.63000011 3.13000011 +endnode +node trimesh line02_pivoted + parent line02 + #part-number 5 + ambient 0 0 0 + diffuse 0 0 0 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + tilefade 2 + bitmap tcei0_black + verts 10 + -1.58000004 0.769999981 0.180000007 + -1.27999997 -0.379999995 0.319999993 + -0.400000006 -0.0199999996 0.319999993 + -0.379999995 1.82000005 0.100000001 + -0.0199999996 -0.409999996 0.319999993 + -0.379999995 -1.27999997 0.319999993 + 0.769999981 -1.58000004 0.180000007 + 1.82000005 -0.389999986 0.100000001 + 1.82000005 1.82000005 0.100000001 + -0.349999994 -0.349999994 0.319999993 + tverts 10 + 0.769999981 12.5 0 + 2.2650001 6.73000002 0 + 6.63999987 8.53999996 0 + 6.73500013 17.75 0 + 8.54500008 6.61000013 0 + 6.73500013 2.25 0 + 12.5 0.74000001 0 + 17.7450008 6.71000004 0 + 17.7450008 17.75 0 + 6.91499996 6.9000001 0 + faces 8 + 0 1 2 1 0 1 2 1 + 3 0 2 1 3 0 2 1 + 4 5 6 1 4 5 6 1 + 4 6 7 1 4 6 7 1 + 7 8 3 1 7 8 3 1 + 7 3 2 1 7 3 2 1 + 4 7 2 1 4 7 2 1 + 4 2 9 1 4 2 9 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 -0.230000004 +endnode +node dummy mesh61 + parent tcei0_a01_01 + #part-number 6 + orientation 0 0 0 0 + position 4.67000008 4.67999983 3 +endnode +node trimesh mesh61_pivoted + parent mesh61 + #part-number 7 + ambient 0 0 0 + diffuse 0 0 0 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_black + verts 12 + 2.61999989 -6.82999992 0.100000001 + 3.17000008 -6.82999992 0.100000001 + 2.61999989 -4.32999992 0.100000001 + 2.61999989 2.61999989 0.100000001 + 3.17000008 3.17000008 0.100000001 + -6.82999992 3.17000008 0.100000001 + -1.83000004 2.61999989 0.100000001 + 0.419999987 2.61999989 0.100000001 + -6.82999992 2.61999989 0.100000001 + -4.32999992 2.61999989 0.100000001 + 2.61999989 0.409999996 0.100000001 + 2.61999989 -1.83000004 0.100000001 + tverts 12 + 47.7449989 0.5 0 + 50.5 0.5 0 + 47.7449989 13 0 + 47.7449989 47.75 0 + 50.5 50.5 0 + 0.5 50.5 0 + 25.5 47.75 0 + 36.7350006 47.75 0 + 0.5 47.75 0 + 13 47.75 0 + 47.7449989 36.7099991 0 + 47.7449989 25.5 0 + faces 10 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 5 6 7 1 5 6 7 1 + 8 9 5 1 8 9 5 1 + 9 6 5 1 9 6 5 1 + 1 4 3 1 1 4 3 1 + 3 10 1 1 3 10 1 1 + 11 2 1 1 11 2 1 1 + 10 11 1 1 10 11 1 1 + 5 7 3 1 5 7 3 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position -2.83999991 -2.8499999 -0.100000001 +endnode +node trimesh object02 + parent tcei0_a01_01 + #part-number 8 + ambient 0 0 0 + diffuse 0 0 0 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_black + verts 4 + -4.44999981 -4.44999981 3 + -5 -5 3 + -4.44999981 -5 3 + -5 -4.44999981 3 + tverts 4 + 3.25 3.25 0 + 0.5 0.5 0 + 3.25 0.5 0 + 0.5 3.25 0 + faces 2 + 0 1 2 1 0 1 2 1 + 3 1 0 1 3 1 0 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 0 +endnode +node trimesh object06 + parent tcei0_a01_01 + #part-number 9 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_stonespdr + verts 4 + -0.949999988 -0.949999988 2.8900001 + -0.620000005 -1.00999999 2.8900001 + -0.949999988 -0.949999988 3.06999993 + -1 -0.620000005 2.8900001 + tverts 4 + 0.494141012 0.554687977 0 + 0.416016012 0.552734017 0 + 0.494141012 0.605468988 0 + 0.570312023 0.552734017 0 + faces 2 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 3.23000002 3.23000002 0.330000013 +endnode +node trimesh mesh79 + parent tcei0_a01_01 + #part-number 10 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + tilefade 1 + bitmap tcei0_stonegld + verts 4 + 0.119999997 -1.16999996 -0.219999999 + -0.140000001 -0.529999971 -0.569999993 + 0.74000001 -0.170000002 -0.569999993 + 0.790000021 -0.5 -0.389999986 + tverts 4 + 1.22460997 0.933593988 0 + 1.22265995 1.15234005 0 + 0.857421994 1.1875 0 + 0.857421994 0.933593988 0 + faces 2 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 1.49000001 2.77999997 3.78999996 +endnode +node trimesh mesh78 + parent tcei0_a01_01 + #part-number 11 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + tilefade 1 + bitmap tcei0_stonegld + verts 4 + -0.519999981 -0.150000006 -0.569999993 + -1.15999997 0.109999999 -0.219999999 + -0.49000001 0.779999971 -0.389999986 + -0.159999996 0.720000029 -0.569999993 + tverts 4 + 1.22265995 1.15234005 0 + 1.22460997 0.933593988 0 + 0.857421994 0.933593988 0 + 0.857421994 1.1875 0 + faces 2 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.76999998 1.5 3.78999996 +endnode +node trimesh mesh08 + parent tcei0_a01_01 + #part-number 12 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_stonegld + verts 15 + 1.23000002 -0.0299999993 -1.09000003 + 1.23000002 1.22000003 -1.09000003 + 0.879999995 -0.0299999993 -0.49000001 + 0.879999995 0.870000005 -0.49000001 + 0.980000019 0.970000029 0.159999996 + 1.58000004 1.57000005 0.810000002 + 1.58000004 -0.0299999993 0.810000002 + 0.980000019 -0.0299999993 0.159999996 + 1.98000002 1.97000003 1.08000004 + 1.98000002 -0.0299999993 1.08000004 + -0.0199999996 1.22000003 -1.09000003 + -0.0199999996 0.870000005 -0.49000001 + -0.0199999996 0.970000029 0.159999996 + -0.0199999996 1.57000005 0.810000002 + -0.0199999996 1.97000003 1.08000004 + tverts 18 + 0.753906012 0.212890998 0 + 0.753906012 0.570312023 0 + 0.925781012 0.212890998 0 + 0.925781012 0.470703006 0 + 1.11133003 0.5 0 + 0.832031012 0.669921994 0 + 0.832031012 0.212890998 0 + 1.11133003 0.212890998 0 + 0.753906012 0.785156012 0 + 1.24414003 0.46875 0 + 1.24414003 0.886718988 0 + 0.96875 0.585937023 0 + 0.96875 0.886718988 0 + 0.792968988 0.886718988 0 + 1.12890995 0.886718988 0 + 1.12890995 0.351563007 0 + 0.792968988 0.552734017 0 + 1.24414003 0.216796994 0 + faces 16 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 5 6 1 4 5 6 1 + 6 7 4 1 6 7 4 1 + 5 8 9 1 5 8 0 1 + 9 6 5 1 0 6 5 1 + 1 10 3 1 9 10 11 1 + 11 3 10 1 12 11 10 1 + 12 13 5 1 13 14 15 1 + 5 4 12 1 15 16 13 1 + 13 14 8 1 14 10 17 1 + 8 5 13 1 17 15 14 1 + 3 4 2 1 3 4 2 1 + 7 2 4 1 7 2 4 1 + 11 12 3 1 12 13 11 1 + 4 3 12 1 16 11 13 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position -4.98000002 -4.96999979 1.09000003 +endnode +node dummy mesh18 + parent tcei0_a01_01 + #part-number 13 + orientation 0 0 0 0 + position 0 0 0 +endnode +node trimesh mesh18_pivoted + parent mesh18 + #part-number 14 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_trim + verts 6 + -0.0799999982 -0.0799999982 0.100000001 + 1.40999997 1.40999997 0.100000001 + -1.33000004 1.40999997 0.100000001 + -1.33000004 -0.0799999982 0.100000001 + -0.0799999982 -1.33000004 0.100000001 + 1.40999997 -1.33000004 0.100000001 + tverts 6 + -0.132813007 0.46875 0 + 0.28125 0 0 + -0.388671994 0 0 + -0.388671994 0.46875 0 + -0.386718988 0.46875 0 + -0.386718988 0 0 + faces 4 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 5 0 1 4 5 0 1 + 1 0 5 1 1 0 5 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position -3.67000008 -3.67000008 -0.100000001 +endnode +node trimesh mesh13 + parent tcei0_a01_01 + #part-number 15 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_rock3 + verts 9 + 1.98000002 1.97000003 -0.270000011 + 1.58000004 1.57000005 0.00999999978 + 1.98000002 -0.0299999993 -0.270000011 + 1.58000004 -0.0299999993 0.00999999978 + 0.529999971 0.519999981 0.25999999 + 0.529999971 -0.0299999993 0.25999999 + -0.0199999996 1.97000003 -0.270000011 + -0.0199999996 1.57000005 0.00999999978 + -0.0199999996 0.519999981 0.25999999 + tverts 9 + 0.642857015 0.642857015 0 + 0.52857101 0.528572023 0 + 0.642857015 0.0714289993 0 + 0.52857101 0.0714289993 0 + 0.228570998 0.228571996 0 + 0.228570998 0.0714289993 0 + 0.0714280009 0.642857015 0 + 0.0714280009 0.528572023 0 + 0.0714289993 0.228571996 0 + faces 8 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 1 4 3 1 1 4 3 1 + 5 3 4 1 5 3 4 1 + 6 7 0 1 6 7 0 1 + 1 0 7 1 1 0 7 1 + 7 8 1 1 7 8 1 1 + 4 1 8 1 4 1 8 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position -4.98000002 -4.96999979 2.74000001 +endnode +node trimesh mesh12 + parent tcei0_a01_01 + #part-number 16 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_trim + verts 6 + 1.98000002 1.97000003 -0.150000006 + 1.98000002 1.97000003 0.150000006 + 1.98000002 -0.0299999993 -0.150000006 + 1.98000002 -0.0299999993 0.150000006 + -0.0199999996 1.97000003 -0.150000006 + -0.0199999996 1.97000003 0.150000006 + tverts 8 + 0.742187023 0 0 + 0.742187023 0.101562999 0 + 0.171875 0 0 + 0.171875 0.101562999 0 + -0.644531012 0 0 + -0.644531012 0.101562999 0 + -0.0722656026 0 0 + -0.0722656026 0.101562999 0 + faces 4 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 5 0 1 4 5 6 1 + 1 0 5 1 7 6 5 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position -4.98000002 -4.96999979 2.31999993 +endnode +node dummy mesh07 + parent tcei0_a01_01 + #part-number 17 + orientation 0 0 0 0 + position 0 0 0 +endnode +node trimesh mesh07_pivoted + parent mesh07 + #part-number 18 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_floor + verts 17 + -1.52999997 -1.52999997 0.100000001 + 0.730000019 -1.52999997 0.100000001 + 0.730000019 0.730000019 0.100000001 + 1.75999999 2.99000001 0.100000001 + 0.730000019 2.99000001 0.100000001 + -4.26999998 2.99000001 0.100000001 + -4.26999998 0.730000019 0.100000001 + -1.52999997 2.99000001 0.100000001 + -1.52999997 0.730000019 0.100000001 + 2.99000001 0.730000019 0.100000001 + 2.99000001 -1.52999997 0.100000001 + 2.99000001 -4.26999998 0.100000001 + 0.730000019 -4.26999998 0.100000001 + -4.26999998 -1.52999997 0.100000001 + -1.52999997 -4.26999998 0.100000001 + 2.99000001 1.75 0.100000001 + 2.36999989 2.36999989 0.100000001 + tverts 20 + 1.00195003 1.03710997 0 + 0.5 1.03710997 0 + 0.5 0.535156012 0 + -0.00390625 0.695312023 0 + -0.00390625 0.466796994 0 + 0.5 0.466796994 0 + -0.00390625 -0.644531012 0 + 0.5 -0.644531012 0 + -0.00390625 -0.0351562016 0 + 0.5 -0.0351562016 0 + -0.00390625 0.535156012 0 + -0.00390625 1.03710997 0 + -0.00390625 1.64647996 0 + 0.5 1.64647996 0 + 1.00195003 -0.644531012 0 + 1.00195003 -0.0351562016 0 + 1.00195003 1.64647996 0 + -0.00390625 0.308593988 0 + 0.134765998 0.832031012 0 + 0.134765998 0.169921994 0 + faces 18 + 0 1 2 1 0 1 2 1 + 3 4 2 1 3 4 5 1 + 5 6 7 1 6 7 8 1 + 8 4 7 1 9 4 8 1 + 4 8 2 1 4 9 5 1 + 9 2 10 1 10 2 11 1 + 1 11 10 1 1 12 11 1 + 11 1 12 1 12 1 13 1 + 6 13 0 1 7 14 15 1 + 0 8 6 1 15 9 7 1 + 0 2 8 1 15 5 9 1 + 14 12 0 1 16 13 0 1 + 1 0 12 1 1 0 13 1 + 7 6 8 1 8 7 9 1 + 10 2 1 1 11 2 1 1 + 2 9 15 1 2 10 17 1 + 16 3 2 1 18 3 5 1 + 2 15 16 1 2 17 19 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position -0.730000019 -0.730000019 -0.100000001 +endnode +node trimesh box71 + parent tcei0_a01_01 + #part-number 19 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_bridge + verts 6 + 0 -3.30999994 -12.9700003 + 0 -4.0999999 -12.9700003 + 0 -3.30999994 -15 + 0 -4.0999999 -15 + 0 -5 -12.9700003 + 0 -5 -15 + tverts 6 + 0.494141012 0.998046994 0 + 0.919921994 0.998046994 0 + 0.494141012 0 0 + 0.919921994 0 0 + 0.5 0.998046994 0 + 0.5 0 0 + faces 8 + 0 1 2 1 0 1 2 5 + 3 2 1 1 3 2 1 5 + 1 4 3 1 1 4 3 5 + 5 3 4 1 5 3 4 5 + 1 0 2 1 1 0 2 5 + 2 3 1 1 2 3 1 5 + 4 1 3 1 4 1 3 5 + 3 5 4 1 3 5 4 5 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position -3.30999994 0 15 +endnode +node trimesh box72 + parent tcei0_a01_01 + #part-number 20 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_bridge + verts 6 + -5 0 -12.9700003 + -4.11000013 0 -12.9700003 + -5 0 -15 + -4.11000013 0 -15 + -3.30999994 0 -12.9700003 + -3.30999994 0 -15 + tverts 6 + 0.503906012 0.998046994 0 + 0.929687977 0.998046994 0 + 0.503906012 0 0 + 0.929687977 0 0 + 0.509765983 0.998046994 0 + 0.509765983 0 0 + faces 8 + 0 1 2 1 0 1 2 5 + 3 2 1 1 3 2 1 5 + 1 4 3 1 1 4 3 5 + 5 3 4 1 5 3 4 5 + 1 0 2 1 1 0 2 5 + 2 3 1 1 2 3 1 5 + 4 1 3 1 4 1 3 5 + 3 5 4 1 3 5 4 5 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 -3.30999994 15 +endnode +node trimesh box18 + parent tcei0_a01_01 + #part-number 21 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_bridge + verts 8 + 0 -4.15999985 -12.9700003 + 0 -3.25999999 -12.9700003 + 0 -4.15999985 -15 + 0 -3.25999999 -15 + 0 -2.3599999 -12.9700003 + 0 -2.3599999 -15 + 0 -5 -12.9700003 + 0 -5 -15 + tverts 6 + 0.929687977 0.998046994 0 + 0.503906012 0.998046994 0 + 0.929687977 0 0 + 0.503906012 0 0 + 0.923828006 0.998046994 0 + 0.923828006 0 0 + faces 12 + 0 1 2 1 0 1 2 5 + 3 2 1 1 3 2 1 5 + 1 4 3 1 1 4 3 5 + 5 3 4 1 5 3 4 5 + 6 0 7 1 1 4 3 5 + 2 7 0 1 5 3 4 5 + 1 0 2 1 1 0 2 5 + 2 3 1 1 2 3 1 5 + 4 1 3 1 4 1 3 5 + 3 5 4 1 3 5 4 5 + 0 6 7 1 4 1 3 5 + 7 2 0 1 3 5 4 5 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 3.31999993 0 15 +endnode +node trimesh box17 + parent tcei0_a01_01 + #part-number 22 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_bridge + verts 8 + -4.11000013 0 -12.9700003 + -5 0 -12.9700003 + -4.11000013 0 -15 + -5 0 -15 + -2.3599999 0 -12.9700003 + -3.26999998 0 -12.9700003 + -2.3599999 0 -15 + -3.26999998 0 -15 + tverts 6 + 0.929687977 0.998046994 0 + 0.503906012 0.998046994 0 + 0.929687977 0 0 + 0.503906012 0 0 + 0.923828006 0.998046994 0 + 0.923828006 0 0 + faces 12 + 0 1 2 1 0 1 2 5 + 3 2 1 1 3 2 1 5 + 4 5 6 1 0 1 2 5 + 7 6 5 1 3 2 1 5 + 5 0 7 1 1 4 3 5 + 2 7 0 1 5 3 4 5 + 1 0 2 1 1 0 2 5 + 2 3 1 1 2 3 1 5 + 5 4 6 1 1 0 2 5 + 6 7 5 1 2 3 1 5 + 0 5 7 1 4 1 3 5 + 7 2 0 1 3 5 4 5 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 3.30999994 15 +endnode +node trimesh box16 + parent tcei0_a01_01 + #part-number 23 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_bridge + verts 10 + 0.540000021 -0.0900000036 0 + -0.360000014 -0.0900000036 0 + 0.540000021 -0.0900000036 -2.02999997 + -0.360000014 -0.0900000036 -2.02999997 + -1.20000005 -0.0900000036 0 + -1.20000005 -0.0900000036 -2.02999997 + 2.27999997 -0.0900000036 0 + 1.38 -0.0900000036 0 + 2.27999997 -0.0900000036 -2.02999997 + 1.38 -0.0900000036 -2.02999997 + tverts 6 + 0.929687977 0.998046994 0 + 0.503906012 0.998046994 0 + 0.929687977 0 0 + 0.503906012 0 0 + 0.923828006 0.998046994 0 + 0.923828006 0 0 + faces 8 + 0 1 2 1 0 1 2 5 + 3 2 1 1 3 2 1 5 + 1 4 3 1 1 4 3 5 + 5 3 4 1 5 3 4 5 + 6 7 8 1 0 1 2 5 + 9 8 7 1 3 2 1 5 + 7 0 9 1 1 4 3 5 + 2 9 0 1 5 3 4 5 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position -1.15999997 3.4000001 2.02999997 +endnode +node trimesh mesh01 + parent tcei0_a01_01 + #part-number 24 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_stonespdr + verts 11 + -0.949999988 -0.949999988 2.8900001 + -1 -0.620000005 2.8900001 + -0.959999979 -0.959999979 1.10000002 + -1.13999999 -0.270000011 2.32999992 + -1.13999999 -0.280000001 1.10000002 + -0.970000029 -0.970000029 0 + -0.270000011 -1.14999998 0 + -0.270000011 -1.14999998 1.10000002 + -1.13999999 -0.280000001 0 + -0.270000011 -1.14999998 2.32999992 + -0.620000005 -1.00999999 2.8900001 + tverts 11 + 0.494141012 0.554687977 0 + 0.570312023 0.552734017 0 + 0.494141012 0.0410155989 0 + 0.669921994 0.394531012 0 + 0.667968988 0.0410155989 0 + 0.494141012 0.353516012 0 + 0.318358988 0.353516012 0 + 0.318358988 0.0410155989 0 + 0.667968988 0.353516012 0 + 0.318358988 0.394531012 0 + 0.416016012 0.552734017 0 + faces 10 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 5 6 2 1 5 6 2 6 + 7 2 6 1 7 2 6 6 + 4 8 2 1 4 8 2 6 + 5 2 8 1 5 2 8 6 + 7 9 2 1 7 9 2 6 + 0 2 9 1 0 2 9 6 + 10 0 9 1 10 0 9 6 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 3.23000002 3.23000002 0.330000013 +endnode +node trimesh box01 + parent tcei0_a01_01 + #part-number 25 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_rock3 + verts 24 + -1.38999999 -9.39999962 -0.270000011 + -0.99000001 -9.39999962 0.00999999978 + -1.38999999 -6.9000001 -0.270000011 + -0.99000001 -6.9000001 0.00999999978 + 0.0599999987 -9.39999962 0.25999999 + 0.0599999987 -6.9000001 0.25999999 + -3.33999991 -1 0.00999999978 + -2.1400001 0.0500000007 0.25999999 + -4.38999987 0.0500000007 0.25999999 + -6.88999987 -1 0.00999999978 + -9.39000034 -1 0.00999999978 + -6.88999987 -1.39999998 -0.270000011 + -9.39000034 -1.39999998 -0.270000011 + -6.88999987 0.0500000007 0.25999999 + -9.39000034 0.0500000007 0.25999999 + -4.38999987 -1 0.00999999978 + -4.38999987 -1.39999998 -0.270000011 + -1.38999999 -3.26999998 -0.270000011 + -1.38999999 -4.4000001 -0.270000011 + -0.99000001 -4.4000001 0.00999999978 + -0.99000001 -3.3499999 0.00999999978 + 0.0599999987 -4.4000001 0.25999999 + 0.0599999987 -2.16000009 0.25999999 + -3.25999999 -1.39999998 -0.270000011 + tverts 24 + 1.35546994 -0.929687977 0 + 1.47070003 -0.929687977 0 + 1.35546994 -0.214844003 0 + 1.47070003 -0.214844003 0 + 1.76953006 -0.929687977 0 + 1.76953006 -0.214844003 0 + 0.466796994 -0.193359002 0 + 0.767578006 -0.537109017 0 + 0.767578006 0.105469003 0 + 0.466796994 0.820312023 0 + 0.466796994 1.53515995 0 + 0.353516012 0.820312023 0 + 0.353516012 1.53515995 0 + 0.767578006 0.820312023 0 + 0.767578006 1.53515995 0 + 0.466796994 0.105469003 0 + 0.353516012 0.105469003 0 + 1.35546994 0.820312023 0 + 1.35546994 0.5 0 + 1.47070003 0.5 0 + 1.47070003 0.798828006 0 + 1.76953006 0.5 0 + 1.76953006 1.14063001 0 + 0.353516012 -0.216796994 0 + faces 24 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 1 4 3 1 1 4 3 1 + 5 3 4 1 5 3 4 1 + 6 7 8 1 6 7 8 1 + 9 10 11 1 9 10 11 1 + 12 11 10 1 12 11 10 1 + 13 14 9 1 13 14 9 1 + 10 9 14 1 10 9 14 1 + 15 9 16 1 15 9 16 1 + 11 16 9 1 11 16 9 1 + 8 13 15 1 8 13 15 1 + 9 15 13 1 9 15 13 1 + 17 18 19 1 17 18 19 1 + 20 19 21 1 20 19 21 1 + 3 19 2 1 3 19 2 1 + 18 2 19 1 18 2 19 1 + 5 21 3 1 5 21 3 1 + 19 3 21 1 19 3 21 1 + 20 17 19 1 20 17 19 1 + 22 20 21 1 22 20 21 1 + 8 15 6 1 8 15 6 1 + 23 6 15 1 23 6 15 1 + 15 16 23 1 15 16 23 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 4.38999987 4.4000001 2.74000001 +endnode +node trimesh mesh05 + parent tcei0_a01_01 + #part-number 26 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_stonegld + verts 42 + -1.00999999 -3.91000009 -1.09000003 + -1.00999999 -4.75 -1.09000003 + -0.660000026 -4.75 -0.49000001 + -9.76000023 -1 -1.09000003 + -7.26000023 -1 -1.09000003 + -9.76000023 -0.649999976 -0.49000001 + -7.26000023 -0.649999976 -0.49000001 + -0.75999999 -9.75 0.159999996 + -1.36000001 -9.75 0.810000002 + -0.75999999 -7.25 0.159999996 + -1.36000001 -7.25 0.810000002 + -3.71000004 -1.35000002 0.810000002 + -4.76000023 -0.75 0.159999996 + -3.01999998 -0.75 0.159999996 + -4.76000023 -1 -1.09000003 + -4.76000023 -0.649999976 -0.49000001 + -7.26000023 -1.35000002 0.810000002 + -9.76000023 -1.35000002 0.810000002 + -7.26000023 -0.75 0.159999996 + -9.76000023 -0.75 0.159999996 + -4.76000023 -1.35000002 0.810000002 + -1.00999999 -7.25 -1.09000003 + -0.660000026 -7.25 -0.49000001 + -1.36000001 -4.75 0.810000002 + -1.36000001 -3.70000005 0.810000002 + -0.75999999 -4.75 0.159999996 + -1.00999999 -9.75 -1.09000003 + -0.660000026 -9.75 -0.49000001 + -0.660000026 -2.91000009 -0.49000001 + -0.75999999 -3.01999998 0.159999996 + -1.75999999 -9.75 1.08000004 + -1.75999999 -7.25 1.08000004 + -4.76000023 -1.75 1.08000004 + -3.63000011 -1.75 1.08000004 + -7.26000023 -1.75 1.08000004 + -9.76000023 -1.75 1.08000004 + -1.75999999 -3.61999989 1.08000004 + -1.75999999 -4.75 1.08000004 + -2.91000009 -0.649999976 -0.49000001 + -3.07999992 -0.810000002 -0.75999999 + -0.819999993 -3.07999992 -0.75999999 + -3.92000008 -1 -1.09000003 + tverts 39 + 1.24609005 0.867187977 0 + 1.24609005 0.626953006 0 + 1.07421994 0.626953006 0 + 1.24414003 -0.800781012 0 + 1.24414003 -0.0859375 0 + 1.07227004 -0.800781012 0 + 1.07227004 -0.0859375 0 + 0.875 -0.800781012 0 + 1.13085997 -0.800781012 0 + 0.875 -0.0859375 0 + 1.13085997 -0.0859375 0 + 1.10741997 0.929687977 0 + 0.878906012 0.626953006 0 + 0.878906012 1.12695003 0 + 1.24414003 0.626953006 0 + 1.07227004 0.626953006 0 + 1.10741997 -0.0859375 0 + 1.10741997 -0.800781012 0 + 0.878906012 -0.0859375 0 + 0.878906012 -0.800781012 0 + 1.10741997 0.626953006 0 + 1.24609005 -0.0859375 0 + 1.07421994 -0.0859375 0 + 1.13085997 0.626953006 0 + 1.13085997 0.927734017 0 + 0.875 0.626953006 0 + 1.24609005 -0.800781012 0 + 1.07421994 -0.800781012 0 + 1.07421994 1.16015995 0 + 0.875 1.12304997 0 + 1.24804997 -0.800781012 0 + 1.24804997 -0.0859375 0 + 1.24414003 0.951171994 0 + 1.24804997 0.949218988 0 + 1.24804997 0.626953006 0 + 1.07227004 1.16015995 0 + 1.14844 1.10741997 0 + 1.15039003 1.10352004 0 + 1.24414003 0.869140983 0 + faces 50 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 6 5 4 1 6 5 4 1 + 7 8 9 1 7 8 9 1 + 10 9 8 1 10 9 8 1 + 11 12 13 1 11 12 13 1 + 4 14 6 1 4 14 6 1 + 15 6 14 1 15 6 14 1 + 16 17 18 1 16 17 18 1 + 19 18 17 1 19 18 17 1 + 20 16 12 1 20 16 12 1 + 18 12 16 1 18 12 16 1 + 1 21 2 1 1 21 2 1 + 22 2 21 1 22 2 21 1 + 23 24 25 1 23 24 25 1 + 10 23 9 1 10 23 9 1 + 25 9 23 1 25 9 23 1 + 21 26 22 1 21 26 22 1 + 27 22 26 1 27 22 26 1 + 28 25 29 1 28 25 29 1 + 22 9 2 1 22 9 2 1 + 25 2 9 1 25 2 9 1 + 27 7 22 1 27 7 22 1 + 9 22 7 1 9 22 7 1 + 6 18 5 1 6 18 5 1 + 19 5 18 1 19 5 18 1 + 15 12 6 1 15 12 6 1 + 18 6 12 1 18 6 12 1 + 12 15 13 1 12 15 13 1 + 8 30 10 1 8 30 10 1 + 31 10 30 1 31 10 30 1 + 32 20 33 1 14 20 32 1 + 34 35 16 1 4 3 16 1 + 17 16 35 1 17 16 3 1 + 32 34 20 1 14 4 20 1 + 16 20 34 1 16 20 4 1 + 24 23 36 1 24 23 33 1 + 31 37 10 1 31 34 10 1 + 23 10 37 1 23 10 34 1 + 38 15 39 1 35 15 36 1 + 14 39 15 1 14 36 15 1 + 40 0 2 1 37 0 2 1 + 2 28 40 1 2 28 37 1 + 2 25 28 1 2 25 28 1 + 29 25 24 1 29 25 24 1 + 37 36 23 1 34 33 23 1 + 13 15 38 1 13 15 35 1 + 20 12 11 1 20 12 11 1 + 33 20 11 1 32 20 11 1 + 14 41 39 1 14 38 36 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 4.76000023 4.75 1.09000003 +endnode +node trimesh mesh06 + parent tcei0_a01_01 + #part-number 27 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_trim + verts 16 + -0.670000017 -8.68000031 -0.150000006 + -0.670000017 -8.68000031 0.150000006 + -0.670000017 -6.17999983 -0.150000006 + -0.670000017 -6.17999983 0.150000006 + -8.67000008 -0.680000007 -0.150000006 + -6.17000008 -0.680000007 -0.150000006 + -8.67000008 -0.680000007 0.150000006 + -6.17000008 -0.680000007 0.150000006 + -3.67000008 -0.680000007 -0.150000006 + -3.67000008 -0.680000007 0.150000006 + -2.53999996 -0.680000007 0.150000006 + -2.53999996 -0.680000007 -0.150000006 + -0.670000017 -2.54999995 -0.150000006 + -0.670000017 -3.68000007 -0.150000006 + -0.670000017 -2.54999995 0.150000006 + -0.670000017 -3.68000007 0.150000006 + tverts 16 + 1.64258003 0 0 + 1.64258003 0.101562999 0 + 0.927734017 0 0 + 0.927734017 0.101562999 0 + -0.644531012 0 0 + 0.142578006 0 0 + -0.644531012 0.101562999 0 + 0.142578006 0.101562999 0 + 0.785156012 0 0 + 0.785156012 0.101562999 0 + 1.11133003 0.101562999 0 + 1.10741997 0 0 + -0.107422002 0 0 + 0.212890998 0 0 + -0.107422002 0.101562999 0 + 0.212890998 0.101562999 0 + faces 12 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 5 6 1 4 5 6 1 + 7 6 5 1 7 6 5 1 + 5 8 7 1 5 8 7 1 + 9 7 8 1 9 7 8 1 + 10 9 11 1 10 9 11 1 + 12 13 14 1 12 13 14 1 + 3 15 2 1 3 15 2 1 + 13 2 15 1 13 2 15 1 + 15 14 13 1 15 14 13 1 + 8 11 9 1 8 11 9 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 3.67000008 3.68000007 2.31999993 +endnode +node dummy mesh09 + parent tcei0_a01_01 + #part-number 28 + orientation 0 0 0 0 + position 0 0 0 +endnode +node trimesh mesh09_pivoted + parent mesh09 + #part-number 29 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_trim + verts 16 + 3.04999995 -3.20000005 0.100000001 + 3.04999995 -0.699999988 0.100000001 + 1.55999994 -2.96000004 0.100000001 + 1.55999994 -0.699999988 0.100000001 + -5.69999981 3.04999995 0.100000001 + -5.69999981 1.55999994 0.100000001 + -3.20000005 3.04999995 0.100000001 + -2.96000004 1.55999994 0.100000001 + -0.699999988 3.04999995 0.100000001 + 0.140000001 3.04999995 0.100000001 + 0.330000013 1.55999994 0.100000001 + 1.55999994 0.319999993 0.100000001 + -0.699999988 1.55999994 0.100000001 + 1.55999994 -5.69999981 0.100000001 + 3.04999995 -5.69999981 0.100000001 + 3.04999995 0.140000001 0.100000001 + tverts 16 + 1.05859005 0.46875 0 + 0.503906012 0.46875 0 + 1.00585997 0 0 + 0.503906012 0 0 + 0.996093988 0.46875 0 + 0.996093988 0 0 + 0.439453006 0.46875 0 + 0.386718988 0 0 + -0.115234002 0.46875 0 + -0.302733988 0.46875 0 + -0.34375 0 0 + 0.277343988 0 0 + -0.115234002 0 0 + 1.61522996 0 0 + 1.61522996 0.46875 0 + 0.316406012 0.46875 0 + faces 12 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 5 6 1 4 5 6 1 + 7 8 6 1 7 8 6 1 + 9 8 10 1 9 8 10 1 + 3 1 11 1 3 1 11 1 + 12 8 7 1 12 8 7 1 + 6 5 7 1 6 5 7 1 + 2 13 0 1 2 13 0 1 + 14 0 13 1 14 0 13 1 + 11 1 15 1 11 1 15 1 + 12 10 8 1 12 10 8 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0.699999988 0.699999988 -0.100000001 +endnode +node trimesh mesh03 + parent tcei0_a01_01 + #part-number 30 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_stonegld + verts 7 + -0.170000002 -0.289999992 -3.46000004 + -0.170000002 -0.289999992 -1.13 + 0.189999998 0.579999983 -1.13 + 0.189999998 0.579999983 -2.3599999 + 0.189999998 0.579999983 -3.46000004 + -0.519999981 -0.150000006 -0.569999993 + -0.159999996 0.720000029 -0.569999993 + tverts 7 + 1.22265995 0.765625 0 + 1.22265995 1.43359005 0 + 0.857421994 1.43359005 0 + 0.855468988 1.08203006 0 + 0.855468988 0.767578006 0 + 1.22265995 1.15234005 0 + 0.857421994 1.1875 0 + faces 5 + 0 1 2 1 0 1 2 6 + 3 4 0 1 3 4 0 6 + 1 5 6 1 1 5 6 6 + 6 2 1 1 6 2 1 6 + 2 3 0 1 2 3 0 6 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.76999998 1.5 3.78999996 +endnode +node trimesh mesh02 + parent tcei0_a01_01 + #part-number 31 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_stonegld + verts 13 + 1.22000003 0.219999999 -3.20000005 + 0.680000007 -0.400000006 -1.63 + 0.680000007 -0.400000006 -3.20000005 + 1.27999997 0.280000001 -2.27999997 + 0.680000007 -0.400000006 -0.449999988 + -0.119999997 -0.239999995 -0.870000005 + 0.680000007 -0.400000006 -0.779999971 + -0.469999999 -0.100000001 -0.310000002 + -0.119999997 -0.239999995 -3.20000005 + 0.280000001 -0.319999993 -1.05999994 + 1.38 0.389999986 -2.93000007 + 0.280000001 -0.319999993 -1.36000001 + 1.73000002 0.790000021 -0.529999971 + tverts 17 + 0.519531012 0.185546994 0 + 0.742187023 0.679687023 0 + 0.734375 0.197265998 0 + 0.492188007 0.472656012 0 + 0.416016012 0.892578006 0 + 0.0917968974 0.876953006 0 + 0.416016012 0.806640983 0 + 0.0898436978 1.30664003 0 + 0.0917968974 0.171875 0 + 0.416016012 0.171875 0 + 0.255858988 0.779296994 0 + 0.451171994 0.267578006 0 + 0.255858988 0.701171994 0 + 0.416016012 0.583984017 0 + 0.318358988 1.01561999 0 + 0.748046994 1.04102004 0 + 0.746093988 0.941406012 0 + faces 11 + 0 1 2 1 0 1 2 3 + 1 0 3 1 1 0 3 3 + 4 5 6 1 4 5 6 6 + 5 4 7 1 5 4 7 6 + 5 8 2 1 5 8 9 6 + 6 5 9 1 6 5 10 6 + 3 0 10 1 3 0 11 3 + 11 5 2 1 12 5 9 6 + 1 11 2 1 13 12 9 6 + 9 5 11 1 10 5 12 6 + 12 4 6 1 14 15 16 3 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.72000003 1.45000005 3.52999997 +endnode +node trimesh box03 + parent tcei0_a01_01 + #part-number 32 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_trim + verts 13 + 1.00999999 -1.34000003 0.159999996 + 0.209999993 -1.17999995 0.159999996 + 1.36000001 -1.54999995 -0.170000002 + -0.129999995 -1.37 -0.170000002 + 1.54999995 -0.720000029 0.159999996 + -1.17999995 0.209999993 0.159999996 + -1.34000003 1.00999999 0.159999996 + -1.54999995 1.36000001 -0.170000002 + -1.36000001 -0.129999995 -0.170000002 + -0.75 -0.75 -0.170000002 + 0.569999993 -0.310000002 0.159999996 + -0.300000012 0.560000002 0.159999996 + -0.709999979 1.54999995 0.159999996 + tverts 15 + 1.13281 0.470703006 0 + 0.798828006 0.470703006 0 + 1.11328006 0.302733988 0 + 0.769531012 0.298828006 0 + 1.35938001 0.472656012 0 + 0.240234002 0.472656012 0 + -0.078125 0.470703006 0 + -0.0585937984 0.298828006 0 + 0.269531012 0.300781012 0 + 0.519531012 0.300781012 0 + 0.835937977 0.0898436978 0 + 0.759765983 0.273438007 0 + 0.423828006 0.0898436978 0 + 0.501953006 0.273438007 0 + -0.304688007 0.470703006 0 + faces 11 + 0 1 2 1 0 1 2 5 + 3 2 1 1 3 2 1 5 + 4 0 2 1 4 0 2 4 + 5 6 7 1 5 6 7 3 + 7 8 5 1 7 8 5 3 + 1 5 3 1 1 5 3 5 + 9 3 5 1 9 3 5 5 + 1 10 5 1 10 11 12 1 + 11 5 10 1 13 12 11 1 + 8 9 5 1 8 9 5 5 + 6 12 7 1 6 14 7 6 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.3900001 2.3900001 0.170000002 +endnode +node trimesh box02 + parent tcei0_a01_01 + #part-number 33 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 7 + 0.0177778006 0.0344443992 -0.0350000001 + 0.00777777983 -0.00555555988 -0.0949999988 + -0.0122221997 0.0144443996 0.075000003 + -0.00222221995 -0.0655556023 -0.104999997 + -0.0122221997 -0.0555556007 -0.0450000018 + -0.00222221995 0.0144443996 0.0850000009 + 0.0277778003 0.0344443992 -0.0350000001 + tverts 7 + 0.396483988 0.335936993 0 + 0.359375 0.302733988 0 + 0.353516012 0.404296994 0 + 0.294921994 0.294921994 0 + 0.292968988 0.330078006 0 + 0.359375 0.404296994 0 + 0.402343988 0.337891012 0 + faces 6 + 0 1 2 1 0 1 2 1 + 1 3 2 1 1 3 2 1 + 3 4 2 1 3 4 2 1 + 5 6 0 1 5 6 0 1 + 0 2 5 1 0 2 5 1 + 4 5 2 1 4 5 2 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.13222003 2.38556004 3.08500004 +endnode +node trimesh box14 + parent tcei0_a01_01 + #part-number 34 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_bridge + verts 10 + -0.0900000036 -0.540000021 0 + -0.0900000036 0.360000014 0 + -0.0900000036 -0.540000021 -2.02999997 + -0.0900000036 0.360000014 -2.02999997 + -0.100000001 1.20000005 0 + -0.100000001 1.20000005 -2.02999997 + -0.100000001 -2.26999998 0 + -0.100000001 -1.38 0 + -0.100000001 -2.26999998 -2.02999997 + -0.100000001 -1.38 -2.02999997 + tverts 6 + 0.929687977 0.998046994 0 + 0.503906012 0.998046994 0 + 0.929687977 0 0 + 0.503906012 0 0 + 0.923828006 0.998046994 0 + 0.923828006 0 0 + faces 8 + 0 1 2 1 0 1 2 5 + 3 2 1 1 3 2 1 5 + 1 4 3 1 1 4 3 5 + 5 3 4 1 5 3 4 5 + 6 7 8 1 0 1 2 5 + 9 8 7 1 3 2 1 5 + 7 0 9 1 1 4 3 5 + 2 9 0 1 5 3 4 5 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 3.41000009 -0.0900000036 2.02999997 +endnode +node trimesh mesh74 + parent tcei0_a01_01 + #part-number 35 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_stonegld + verts 13 + 0.25 1.21000004 -3.20000005 + 0.310000002 1.26999998 -2.27999997 + 0.419999987 1.37 -2.93000007 + -0.379999995 0.670000017 -0.449999988 + -0.379999995 0.670000017 -0.779999971 + -0.300000012 0.270000011 -1.05999994 + -0.379999995 0.670000017 -3.20000005 + -0.379999995 0.670000017 -1.63 + -0.219999999 -0.129999995 -3.20000005 + -0.219999999 -0.129999995 -0.870000005 + -0.0799999982 -0.479999989 -0.310000002 + -0.300000012 0.270000011 -1.36000001 + 0.819999993 1.72000003 -0.529999971 + tverts 19 + 0.421875 -0.0703125 0 + 0.396483988 0.21875 0 + 0.365233988 0.0175781008 0 + 0.609375 0.335936993 0 + 0.609375 0.25 0 + 0.443358988 0.208984002 0 + 0.585937023 -0.0703125 0 + 0.585937023 0.378906012 0 + 0.416016012 0.583984017 0 + 0.416016012 0.171875 0 + 0.0878906026 0.171875 0 + 0.0878906026 0.876953006 0 + 0.416016012 0.892578006 0 + 0.25 0.763671994 0 + 0.0878906026 1.31054997 0 + 0.251953006 0.673828006 0 + 0.371093988 0.849609017 0 + 0.248046994 0.865234017 0 + 0.234375 0.152344003 0 + faces 12 + 0 1 2 1 0 1 2 4 + 3 4 5 1 3 4 5 4 + 0 6 7 1 0 6 7 4 + 7 6 8 1 8 9 10 6 + 9 3 5 1 11 12 13 6 + 3 9 10 1 12 11 14 6 + 9 5 8 1 11 13 10 6 + 11 5 7 1 15 13 8 6 + 5 11 8 1 13 15 10 6 + 11 7 8 1 15 8 10 6 + 4 3 12 1 16 17 18 1 + 1 0 7 1 1 0 7 4 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 1.42999995 2.73000002 3.52999997 +endnode +node trimesh mesh75 + parent tcei0_a01_01 + #part-number 36 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_stonegld + verts 7 + -0.140000001 -0.529999971 -0.569999993 + -0.280000001 -0.180000007 -1.13 + 0.600000024 0.170000002 -1.13 + 0.74000001 -0.170000002 -0.569999993 + -0.280000001 -0.180000007 -3.46000004 + 0.600000024 0.170000002 -3.46000004 + 0.600000024 0.170000002 -2.3599999 + tverts 7 + 1.22265995 1.15234005 0 + 1.22265995 1.43359005 0 + 0.855468988 1.43359005 0 + 0.857421994 1.1875 0 + 1.22070003 0.765625 0 + 0.855468988 0.767578006 0 + 0.855468988 1.08203006 0 + faces 5 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + 1 4 5 1 1 4 5 6 + 6 2 1 1 6 2 1 6 + 5 6 1 1 5 6 1 6 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 1.49000001 2.77999997 3.78999996 +endnode +node trimesh mesh80 + parent tcei0_a01_01 + #part-number 37 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + tilefade 1 + bitmap tcei0_stonegld + verts 9 + 0.270000011 -1.03999996 0.779999971 + 1.90999997 0.610000014 -0.180000007 + -0.140000001 0.0900000036 0.300000012 + 0.340000004 0.899999976 -0.219999999 + -0.379999995 0.670000017 -0.449999988 + 0.819999993 1.72000003 -0.529999971 + 3.01999998 1.72000003 -0.529999971 + -0.0799999982 -0.479999989 -0.310000002 + 0.180000007 -1.12 0.0399999991 + tverts 14 + 0.744140983 0.998046994 0 + 0.744140983 0.398438007 0 + 0.421875 0.933593988 0 + 0.349608988 0.699218988 0 + 0.248046994 0.865234017 0 + 0.279296994 0.435546994 0 + 0.744140983 0 0 + 0.416016012 0.892578006 0 + 0.0878906026 1.31054997 0 + 0.416016012 1.30078006 0 + 0.0917968974 1.64844 0 + 0.414063007 1.65039003 0 + 0.447266012 0.462891012 0 + 0.517578006 0.724609017 0 + faces 9 + 0 1 2 1 0 1 2 1 + 3 4 2 1 3 4 2 4 + 5 1 6 1 5 1 6 5 + 3 2 1 1 3 2 1 1 + 5 3 1 1 5 3 1 1 + 4 7 2 1 7 8 9 6 + 8 2 7 1 10 9 8 6 + 2 8 0 1 9 10 11 6 + 5 4 3 1 12 7 13 6 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 1.42999995 2.73000002 3.52999997 +endnode +node trimesh mesh81 + parent tcei0_a01_01 + #part-number 38 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + tilefade 1 + bitmap tcei0_stonegld + verts 9 + 0.620000005 1.88999999 -0.180000007 + -1.01999998 0.239999995 0.779999971 + 0.100000001 -0.170000002 0.300000012 + 0.910000026 0.310000002 -0.219999999 + 0.680000007 -0.400000006 -0.449999988 + 1.73000002 0.790000021 -0.529999971 + 1.73000002 3 -0.529999971 + -1.11000001 0.159999996 0.0399999991 + -0.469999999 -0.100000001 -0.310000002 + tverts 12 + 0.744140983 0.398438007 0 + 0.744140983 0.998046994 0 + 0.417968988 0.933593988 0 + 0.347656012 0.699218988 0 + 0.244140998 0.865234017 0 + 0.277343988 0.435546994 0 + 0.744140983 0 0 + 0.416016012 1.29688001 0 + 0.414063007 1.65039003 0 + 0.0917968974 1.64844 0 + 0.0898436978 1.30664003 0 + 0.416016012 0.892578006 0 + faces 9 + 0 1 2 1 0 1 2 1 + 3 0 2 1 3 0 2 1 + 3 2 4 1 3 2 4 3 + 0 5 6 1 0 5 6 5 + 5 3 4 1 5 3 4 3 + 5 0 3 1 5 0 3 1 + 2 1 7 1 7 8 9 6 + 7 8 2 1 9 10 7 6 + 4 2 8 1 11 7 10 6 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.72000003 1.45000005 3.52999997 +endnode +node trimesh box02_1 + parent tcei0_a01_01 + #part-number 39 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + 0.0733333007 0.0483332984 0.174999997 + -0.0466667004 -0.061666701 0.174999997 + 0.0333333015 0.0483332984 -0.174999997 + -0.0466667004 -0.0216667 -0.174999997 + tverts 4 + 0.615234017 0.992187023 0 + 0.615234017 0.951171994 0 + 0.402343988 0.992187023 0 + 0.402343988 0.951171994 0 + faces 2 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.13667011 2.53167009 1.97500002 +endnode +node trimesh box02_1_1 + parent tcei0_a01_01 + #part-number 40 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 7 + -0.660000026 -0.50999999 -1.41999996 + -0.589999974 -0.600000024 -1.11000001 + -0.680000007 -0.540000021 -1.25999999 + -0.5 -0.610000014 -1.11000001 + -0.560000002 -0.639999986 -1.5 + -0.610000014 -0.589999974 -1.83000004 + -0.620000005 -0.560000002 -2 + tverts 7 + 0.0214843992 0.341796994 0 + 0.0859375 0.507812023 0 + 0.0195311997 0.427733988 0 + 0.130859002 0.505859017 0 + 0.105469003 0.298828006 0 + 0.0683593974 0.134765998 0 + 0.0546875 0.0546875 0 + faces 5 + 0 1 2 1 0 1 2 3 + 3 0 4 1 3 0 4 3 + 4 0 5 1 4 0 5 2 + 6 5 0 1 6 5 0 2 + 3 1 0 1 3 1 0 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.8599999 2.74000001 3.19000006 +endnode +node trimesh box02_1_2 + parent tcei0_a01_01 + #part-number 41 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + 2.46000004 2.11999989 2.38000011 + 2.54999995 2.21000004 2.38000011 + 2.55999994 2.23000002 2.30999994 + 2.44000006 2.11999989 2.30999994 + tverts 4 + 0.658203006 0.951171994 0 + 0.658203006 0.992187023 0 + 0.615234017 0.992187023 0 + 0.615234017 0.951171994 0 + faces 2 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 -0.159999996 +endnode +node trimesh box02_1_2_1 + parent tcei0_a01_01 + #part-number 42 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + 2.5 2.13000011 1.60000002 + 2.63000011 2.25999999 1.60000002 + 2.3599999 2.13000011 1.75 + 2.55999994 2.31999993 1.75 + tverts 4 + 0.179688007 0.421875 0 + 0.251953006 0.417968988 0 + 0.130859002 0.505859017 0 + 0.244140998 0.496093988 0 + faces 2 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 0.330000013 +endnode +node trimesh box02_1_2_2 + parent tcei0_a01_01 + #part-number 43 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + 2.3599999 2.13000011 0.119999997 + 2.55999994 2.31999993 0.119999997 + 2.4000001 2.13000011 0.300000012 + 2.57999992 2.29999995 0.300000012 + 2.43000007 2.0999999 0.430000007 + 2.5999999 2.27999997 0.430000007 + tverts 6 + 0.130859002 0.505859017 0 + 0.244140998 0.496093988 0 + 0.154296994 0.591796994 0 + 0.228515998 0.591796994 0 + 0.216796994 0.666015983 0 + 0.259766012 0.628906012 0 + faces 4 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 2 3 4 1 2 3 4 1 + 5 4 3 1 5 4 3 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 1.96000004 +endnode +node trimesh box02_1_2_3 + parent tcei0_a01_01 + #part-number 44 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + 2.43000007 2.0999999 -5.61999989 + 2.5999999 2.27999997 -5.61999989 + 2.54999995 2.21000004 -5.78999996 + 2.46000004 2.11999989 -5.78999996 + tverts 4 + 0.759765983 0.951171994 0 + 0.759765983 0.992187023 0 + 0.658203006 0.992187023 0 + 0.658203006 0.951171994 0 + faces 2 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 8.01000023 +endnode +node trimesh box02_1_3 + parent tcei0_a01_01 + #part-number 45 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 9 + 0.779999971 -0.519999981 -2 + 0.689999998 -0.460000008 -2 + 0.689999998 -0.460000008 -2.1500001 + 0.670000017 -0.469999999 -1.73000002 + 0.779999971 -0.550000012 -1.76999998 + 0.720000029 -0.50999999 -1.71000004 + 0.680000007 -0.49000001 -1.62 + 0.649999976 -0.589999974 -1.62 + 0.649999976 -0.469999999 -1.62 + tverts 9 + 0.0859375 0.507812023 0 + 0.0195311997 0.507812023 0 + 0.0195311997 0.427733988 0 + 0.0195311997 0.654296994 0 + 0.109375 0.628906012 0 + 0.0644531026 0.662109017 0 + 0.03125 0.712890983 0 + 0.0644531026 0.714843988 0 + 0.03125 0.712890983 0 + faces 7 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 3 5 6 1 3 5 6 1 + 1 0 4 1 1 0 4 1 + 4 3 1 1 4 3 1 1 + 6 5 7 1 6 5 7 1 + 8 3 6 1 6 3 8 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 1.49000001 2.66000009 4.07999992 +endnode +node trimesh box02_1_4 + parent tcei0_a01_01 + #part-number 46 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + 2.26999998 -0.970000029 -0.409999996 + 2.38000011 -0.99000001 -0.360000014 + 2.21000004 -0.930000007 -0.349999994 + 2.23000002 -1.07000005 -0.330000013 + tverts 4 + 0.109375 0.628906012 0 + 0.167969003 0.652343988 0 + 0.0644531026 0.662109017 0 + 0.125 0.675781012 0 + faces 2 + 0 1 2 1 0 1 2 1 + 2 1 3 1 2 1 3 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 3.07999992 2.72000003 +endnode +node trimesh box02_1_5 + parent tcei0_a01_01 + #part-number 47 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + 2.38000011 -1.37 -19.8600006 + 2.26999998 -1.35000002 -19.9099998 + 2.4000001 -1.33000004 -19.9599991 + 2.26999998 -1.32000005 -20.1399994 + 2.3599999 -1.33000004 -20.1399994 + tverts 5 + 0.167969003 0.652343988 0 + 0.109375 0.628906012 0 + 0.154296994 0.591796994 0 + 0.0859375 0.507812023 0 + 0.130859002 0.505859017 0 + faces 3 + 0 1 2 1 0 1 2 1 + 3 4 2 1 3 4 2 1 + 2 1 3 1 2 1 3 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 3.46000004 22.2199993 +endnode +node trimesh box02_1_6 + parent tcei0_a01_01 + #part-number 48 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 16 + 2.74000001 2.25999999 -0.0900000036 + 2.53999996 2.05999994 -0.0900000036 + 2.69000006 2.30999994 -0.409999996 + 2.49000001 2.1099999 -0.409999996 + 2.67000008 2.31999993 -0.589999974 + 2.46000004 2.0999999 -0.589999974 + 2.67000008 2.31999993 -0.670000017 + 2.45000005 2.08999991 -0.629999995 + 2.68000007 2.30999994 -0.75 + 2.46000004 2.08999991 -0.75 + 2.58999991 2.3499999 -1.23000002 + 2.46000004 2.20000005 -1.23000002 + 2.58999991 2.3499999 -1.36000001 + 2.41000009 2.1500001 -1.33000004 + 2.58999991 2.3499999 -1.45000005 + 2.3900001 2.11999989 -1.45000005 + tverts 18 + 0.257813007 0.287108988 0 + 0.179688007 0.296875 0 + 0.222655997 0.121094003 0 + 0.132813007 0.132813007 0 + 0.21875 0.0410155989 0 + 0.123047002 0.0527344011 0 + 0.216796994 0 0 + 0.123047002 0.0332030989 0 + 0.644531012 0.523437023 0 + 0.677734017 0.617187023 0 + 0.609375 0.525390983 0 + 0.621093988 0.613281012 0 + 0.386718988 0.556640983 0 + 0.394531012 0.644531012 0 + 0.316406012 0.568359017 0 + 0.339843988 0.650390983 0 + 0.263671994 0.566406012 0 + 0.277343988 0.660156012 0 + faces 14 + 0 1 2 1 0 1 2 2 + 3 2 1 1 3 2 1 2 + 2 3 4 1 2 3 4 2 + 5 4 3 1 5 4 3 2 + 4 5 6 1 4 5 6 2 + 7 6 5 1 7 6 5 2 + 6 7 8 1 8 9 10 2 + 9 8 7 1 11 10 9 2 + 8 9 10 1 10 11 12 2 + 11 10 9 1 13 12 11 2 + 10 11 12 1 12 13 14 2 + 13 12 11 1 15 14 13 2 + 12 13 14 1 14 15 16 2 + 15 14 13 1 17 16 15 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position -0.109999999 0 1.77999997 +endnode +node trimesh box02_1_7 + parent tcei0_a01_01 + #part-number 49 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + -0.180000007 -0.370000005 0 + -0.159999996 -0.340000004 0.119999997 + -0.310000002 -0.439999998 0 + -0.280000001 -0.419999987 0.0599999987 + tverts 4 + 0.277343988 0.660156012 0 + 0.339843988 0.650390983 0 + 0.283203006 0.75 0 + 0.316406012 0.75 0 + faces 2 + 0 1 2 1 0 1 2 2 + 3 2 1 1 3 2 1 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.46000004 2.49000001 0.330000013 +endnode +node trimesh box02_1_8 + parent tcei0_a01_01 + #part-number 50 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 11 + -0.980000019 -1.70000005 -0.0399999991 + -0.870000005 -1.59000003 -0.0399999991 + -1.10000002 -1.55999994 0 + -1 -1.46000004 0 + -1.16999996 -1.58000004 0.0900000036 + -1 -1.44000006 0.0299999993 + -1.23000002 -1.53999996 0.0299999993 + -1.23000002 -1.53999996 0 + -1.00999999 -1.48000002 0.0299999993 + -1.29999995 -1.60000002 0.0199999996 + -1.20000005 -1.63999999 0.109999999 + tverts 15 + 0.207030997 0.839843988 0 + 0.207030997 0.886718988 0 + 0.078125 0.912109017 0 + 0.117187999 0.955078006 0 + 0.0566405989 0.996093988 0 + 0.117187999 0.998046994 0 + 0.0214843992 0.96875 0 + 0.0214843992 0.939453006 0 + 0.498046994 0.298828006 0 + 0.412108988 0.269531012 0 + 0.427733988 0.271483988 0 + 0.291016012 0.0175781008 0 + 0.369141012 0.0566405989 0 + 0.291016012 0.0429687984 0 + 0.392578006 0.0917968974 0 + faces 8 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 2 3 4 1 2 3 4 1 + 5 4 3 1 5 4 3 1 + 4 6 7 1 4 6 7 1 + 4 5 8 1 8 9 10 1 + 6 4 9 1 11 12 13 1 + 10 9 4 1 14 13 12 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 3.46000004 3.78999996 2.76999998 +endnode +node trimesh box02_1_8_1 + parent tcei0_a01_01 + #part-number 51 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + -0.0149999997 -0.0466667004 -0.0199999996 + -0.0549999997 -0.0466667004 0.0399999991 + -0.0250000004 0.0133333001 0.0199999996 + 0.135000005 0.113333002 -0.0399999991 + tverts 4 + 0.546875 0.277343988 0 + 0.535156012 0.310546994 0 + 0.498046994 0.298828006 0 + 0.427733988 0.271483988 0 + faces 2 + 0 1 2 1 0 1 2 1 + 3 0 2 1 3 0 2 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.31500006 2.19667006 2.83999991 +endnode +node trimesh box02_1_9 + parent tcei0_a01_01 + #part-number 52 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + 2.20000005 -1.17999995 1.22000003 + 2.48000002 -1.32000005 1.24000001 + 2.3599999 -1.17999995 1.27999997 + 2.23000002 -1.15999997 1.27999997 + 2.28999996 -1.20000005 1.37 + tverts 5 + 0.0214843992 0.853515983 0 + 0.207030997 0.839843988 0 + 0.078125 0.912109017 0 + 0.0214843992 0.939453006 0 + 0.0566405989 0.996093988 0 + faces 3 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 3 2 4 1 3 2 4 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 3.41000009 1.49000001 +endnode +node trimesh box02_1_10 + parent tcei0_a01_01 + #part-number 53 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 10 + 0.100000001 -0.879999995 -10.1300001 + 0.0799999982 -0.860000014 -10.1700001 + 0.0599999987 -0.829999983 -10.3699999 + -0.0399999991 -0.800000012 -10.1899996 + 0.0700000003 -0.850000024 -10.0600004 + -0.0299999993 -0.819999993 -10.3100004 + -0.0399999991 -0.790000021 -10.46 + -0.0399999991 -0.800000012 -10.0600004 + 0.109999999 -0.930000007 -10.21 + 0.100000001 -0.829999983 -10.4300003 + tverts 15 + 0.548828006 0.421875 0 + 0.537109017 0.402343988 0 + 0.535156012 0.310546994 0 + 0.291016012 0.189453006 0 + 0.40625 0.201171994 0 + 0.390625 0.265625 0 + 0.392578006 0.0917968974 0 + 0.3125 0.119140998 0 + 0.291016012 0.0429687984 0 + 0.291016012 0.265625 0 + 0.494141012 0.28125 0 + 0.501953006 0.300781012 0 + 0.441406012 0.304688007 0 + 0.535156012 0.455078006 0 + 0.546875 0.277343988 0 + faces 8 + 0 1 2 1 0 1 2 1 + 3 1 4 1 3 4 5 1 + 2 5 6 1 6 7 8 1 + 4 7 3 1 5 9 3 1 + 5 2 1 1 7 6 4 1 + 7 4 8 1 10 11 12 1 + 1 0 4 1 1 0 13 1 + 9 0 2 1 14 0 2 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.20000005 2.98000002 13.25 +endnode +node trimesh box02_1_11 + parent tcei0_a01_01 + #part-number 54 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 7 + -1.44000006 -1.41999996 2.0999999 + -1.38 -1.37 1.69000006 + -1.39999998 -1.47000003 1.51999998 + -1.39999998 -1.38 1.44000006 + -1.40999997 -1.48000002 1.48000002 + -1.48000002 -1.38 1.51999998 + -1.49000001 -1.38999999 1.48000002 + tverts 6 + 0.0214843992 0.341796994 0 + 0.0234375 0.130859002 0 + 0.0546875 0.0546875 0 + 0.0234375 0.0117188003 0 + 0.0546875 0.0332030989 0 + 0.0546875 0.0527344011 0 + faces 6 + 0 1 2 1 0 1 2 2 + 3 2 1 1 3 2 1 2 + 3 4 2 1 3 4 2 2 + 1 0 5 1 1 0 5 2 + 5 3 1 1 5 3 1 2 + 6 3 5 1 4 3 5 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 3.6400001 3.6500001 -0.330000013 +endnode +node trimesh box02_1_12 + parent tcei0_a01_01 + #part-number 55 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 11 + -1.40999997 -1.41999996 2.83999991 + -1.38999999 -1.5 2.75999999 + -1.41999996 -1.51999998 2.88000011 + -1.42999995 -1.44000006 2.18000007 + -1.40999997 -1.51999998 2.18000007 + -1.47000003 -1.62 2.11999989 + -1.55999994 -1.58000004 2.11999989 + -1.48000002 -1.40999997 2.75999999 + -1.5 -1.42999995 2.88000011 + -1.5 -1.42999995 2.18000007 + -1.60000002 -1.49000001 2.11999989 + tverts 7 + 0.65625 0.71875 0 + 0.621093988 0.685546994 0 + 0.677734017 0.685546994 0 + 0.339843988 0.71875 0 + 0.341796994 0.685546994 0 + 0.316406012 0.75 0 + 0.316406012 0.816406012 0 + faces 10 + 0 1 2 1 0 1 2 2 + 1 0 3 1 1 0 3 2 + 3 4 1 1 3 4 1 2 + 4 3 5 1 4 3 5 2 + 6 5 3 1 6 5 3 2 + 7 0 8 1 1 0 2 2 + 0 7 3 1 0 1 3 2 + 9 3 7 1 4 3 1 2 + 3 9 10 1 3 4 5 2 + 10 6 3 1 5 6 3 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 3.6500001 3.69000006 -1.73000002 +endnode +node trimesh box02_1_13 + parent tcei0_a01_01 + #part-number 56 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + 1.88999999 -0.839999974 1.25999999 + 1.79999995 -0.800000012 1.25999999 + 1.79999995 -0.800000012 1.20000005 + 1.86000001 -0.860000014 1.20000005 + tverts 4 + 0.316406012 0.75 0 + 0.316406012 0.816406012 0 + 0.283203006 0.816406012 0 + 0.283203006 0.75 0 + faces 2 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0.289999992 2.91000009 -0.870000005 +endnode +node trimesh box02_1_14 + parent tcei0_a01_01 + #part-number 57 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + 2.24000001 -0.430000007 3.51999998 + 2.18000007 -0.529999971 3.46000004 + 2.29999995 -0.449999988 3.51999998 + 2.3499999 -0.400000006 3.61999989 + 2.3499999 -0.50999999 4.0999999 + tverts 5 + 0.341796994 0.685546994 0 + 0.316406012 0.75 0 + 0.339843988 0.650390983 0 + 0.394531012 0.644531012 0 + 0.621093988 0.613281012 0 + faces 3 + 0 1 2 1 0 1 2 2 + 0 3 4 1 0 3 4 2 + 0 2 3 1 0 2 3 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 2.5999999 -3.06999993 +endnode +node trimesh box02_1_15 + parent tcei0_a01_01 + #part-number 58 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + 2.43000007 -1.09000003 0.409999996 + 2.29999995 -1.04999995 0.409999996 + 2.38000011 -1.03999996 0.0900000036 + 2.25 -1 0.0799999982 + 2.3499999 -1.04999995 -0.0900000036 + tverts 5 + 0.179688007 0.296875 0 + 0.105469003 0.298828006 0 + 0.132813007 0.132813007 0 + 0.0683593974 0.134765998 0 + 0.123047002 0.0527344011 0 + faces 3 + 0 1 2 1 0 1 2 2 + 3 2 1 1 3 2 1 2 + 2 3 4 1 2 3 4 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 3.1500001 1.27999997 +endnode +node trimesh box02_1_16 + parent tcei0_a01_01 + #part-number 59 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + 0.560000002 -0.409999996 0 + 0.670000017 -0.49000001 0 + 0.569999993 -0.439999998 0.170000002 + 0.550000012 -0.419999987 -0.0399999991 + 0.660000026 -0.5 -0.0399999991 + tverts 5 + 0.0546875 0.0546875 0 + 0.123047002 0.0527344011 0 + 0.0683593974 0.134765998 0 + 0.0546875 0.0332030989 0 + 0.123047002 0.0332030989 0 + faces 3 + 0 1 2 1 0 1 2 2 + 1 0 3 1 1 0 3 2 + 3 4 1 1 3 4 1 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 1.67999995 2.58999991 1.19000006 +endnode +node trimesh box02_1_17 + parent tcei0_a01_01 + #part-number 60 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + -0.0299999993 -0.0700000003 -0.430000007 + -0.140000001 0.00999999978 -0.430000007 + -0.109999999 0.0299999993 -0.550000012 + -0.0199999996 -0.0700000003 -0.550000012 + -0.129999995 0.00999999978 -1.13 + tverts 5 + 0.677734017 0.617187023 0 + 0.677734017 0.685546994 0 + 0.621093988 0.685546994 0 + 0.621093988 0.613281012 0 + 0.341796994 0.685546994 0 + faces 3 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 3 2 4 1 3 2 4 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.36999989 2.16000009 1.58000004 +endnode +node trimesh box02_1_18 + parent tcei0_a01_01 + #part-number 61 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 10 + 0.479999989 -1.52999997 2.9000001 + 0.540000021 -1.48000002 2.70000005 + 0.589999974 -1.50999999 2.99000001 + 0.589999974 -1.47000003 2.73000002 + 0.680000007 -1.52999997 2.99000001 + 0.620000005 -1.45000005 2.55999994 + 0.699999988 -1.50999999 2.55999994 + 0.600000024 -1.45000005 2.49000001 + 0.699999988 -1.52999997 2.49000001 + 0.419999987 -1.59000003 2.8499999 + tverts 12 + 0.164063007 0.769531012 0 + 0.167969003 0.652343988 0 + 0.207030997 0.806640983 0 + 0.216796994 0.666015983 0 + 0.919921994 0.902343988 0 + 0.759765983 0.951171994 0 + 0.658203006 0.951171994 0 + 0.658203006 0.902343988 0 + 0.615234017 0.951171994 0 + 0.617187023 0.902343988 0 + 0.140625 0.742187023 0 + 0.919921994 0.951171994 0 + faces 8 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 3 5 1 4 5 6 1 + 5 6 4 1 6 7 4 1 + 6 5 7 1 7 6 8 1 + 7 8 6 1 8 9 7 1 + 0 9 1 1 0 10 1 1 + 3 4 2 1 5 4 11 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 1.84000003 3.56999993 -0.340000004 +endnode +node trimesh box02_1_19 + parent tcei0_a01_01 + #part-number 62 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 8 + 2.1400001 2.06999993 23.8799992 + 2.1500001 2.05999994 23.9500008 + 2.17000008 2.17000008 23.8799992 + 2.18000007 2.18000007 23.9899998 + 2.1500001 2.21000004 23.9899998 + 2.1400001 2.19000006 23.8799992 + 2.03999996 2.18000007 23.9500008 + 2.04999995 2.16000009 23.8799992 + tverts 6 + 0.0644531026 0.714843988 0 + 0.0761718974 0.75 0 + 0.03125 0.712890983 0 + 0.0332030989 0.769531012 0 + 0.0332030989 0.769531012 0 + 0.03125 0.712890983 0 + faces 6 + 0 1 2 1 0 1 2 1 + 2 3 4 1 2 3 4 1 + 3 2 1 1 3 2 1 1 + 4 5 2 1 3 2 5 1 + 6 7 5 1 1 0 2 1 + 5 4 6 1 2 3 1 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 -21.4200001 +endnode +node trimesh box02_1_20 + parent tcei0_a01_01 + #part-number 63 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 7 + 2.27999997 2.1099999 8.89999962 + 2.18000007 2.18000007 8.82999992 + 2.1500001 2.05999994 8.78999996 + 2.20000005 2.23000002 8.97000027 + 2.1500001 2.21000004 8.82999992 + 2.07999992 2.30999994 8.89999962 + 2.03999996 2.18000007 8.78999996 + tverts 5 + 0.111327998 0.804687977 0 + 0.0332030989 0.769531012 0 + 0.0761718974 0.75 0 + 0.0214843992 0.853515983 0 + 0.0332030989 0.769531012 0 + faces 5 + 0 1 2 1 0 1 2 1 + 3 1 0 1 3 1 0 1 + 3 4 1 1 3 1 4 1 + 4 5 6 1 1 0 2 1 + 4 3 5 1 1 3 0 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 -6.26000023 +endnode +node trimesh box02_1_21 + parent tcei0_a01_01 + #part-number 64 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 7 + 2.27999997 2.1099999 5.05000019 + 2.1500001 2.05999994 4.94000006 + 2.31999993 2.03999996 4.96999979 + 2.43000007 2.05999994 5.05999994 + 2.48000002 2.08999991 5.13999987 + 2.25999999 1.98000002 4.92000008 + 2.51999998 2.03999996 5.05999994 + tverts 9 + 0.111327998 0.804687977 0 + 0.0761718974 0.75 0 + 0.164063007 0.769531012 0 + 0.207030997 0.806640983 0 + 0.207030997 0.839843988 0 + 0.140625 0.742187023 0 + 0.919921994 0.951171994 0 + 0.919921994 0.902343988 0 + 0.970703006 0.951171994 0 + faces 5 + 0 1 2 1 0 1 2 1 + 2 3 4 1 2 3 4 1 + 0 2 4 1 0 2 4 1 + 2 1 5 1 2 1 5 1 + 3 6 4 1 6 7 8 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 -2.41000009 +endnode +node trimesh box02_1_22 + parent tcei0_a01_01 + #part-number 65 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + 2.51999998 2.00999999 10.4300003 + 2.53999996 2.02999997 10 + 2.66000009 2.1400001 10.4300003 + 2.61999989 2.1099999 10 + 2.53999996 2.00999999 9.93000031 + 2.6400001 2.1099999 9.93000031 + tverts 6 + 0.919921994 0.902343988 0 + 0.658203006 0.902343988 0 + 0.919921994 0.847656012 0 + 0.658203006 0.847656012 0 + 0.617187023 0.902343988 0 + 0.617187023 0.847656012 0 + faces 4 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 3 1 4 1 3 1 4 1 + 4 5 3 1 4 5 3 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0.0299999993 -7.78000021 +endnode +node trimesh box02_1_23 + parent tcei0_a01_01 + #part-number 66 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + 0.600000024 -0.529999971 0.439999998 + 0.5 -0.449999988 0.439999998 + 0.540000021 -0.449999988 0.0900000036 + 0.589999974 -0.49000001 0.0900000036 + 0.519999981 -0.479999989 0.0399999991 + 0.579999983 -0.519999981 0.0399999991 + tverts 6 + 0.617187023 0.902343988 0 + 0.615234017 0.951171994 0 + 0.402343988 0.951171994 0 + 0.402343988 0.902343988 0 + 0.367188007 0.951171994 0 + 0.369141012 0.902343988 0 + faces 4 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 3 2 4 1 3 2 4 1 + 4 5 3 1 4 5 3 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 1.94000006 2.56999993 1.71000004 +endnode +node trimesh box02_1_24 + parent tcei0_a01_01 + #part-number 67 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + 2.6400001 2.1400001 1.36000001 + 2.53999996 2.03999996 1.36000001 + 2.52999997 2.07999992 1.00999999 + 2.5999999 2.1500001 1.00999999 + 2.51999998 2.04999995 0.959999979 + 2.63000011 2.16000009 0.959999979 + tverts 6 + 0.617187023 0.847656012 0 + 0.617187023 0.902343988 0 + 0.402343988 0.902343988 0 + 0.402343988 0.847656012 0 + 0.369141012 0.902343988 0 + 0.369141012 0.847656012 0 + faces 4 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 3 2 4 1 3 2 4 1 + 4 5 3 1 4 5 3 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 0.790000021 +endnode +node trimesh box02_1_25 + parent tcei0_a01_01 + #part-number 68 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + -0.00999999978 -1.03999996 0.680000007 + -0.00999999978 -1.01999998 0.769999981 + -0.0500000007 -1.03999996 0.680000007 + 0.100000001 -1.08000004 0.819999993 + -0.0199999996 -1.01999998 0.800000012 + -0.0199999996 -1.00999999 0.769999981 + tverts 6 + 0.3125 0.119140998 0 + 0.300781012 0.171875 0 + 0.291016012 0.130859002 0 + 0.40625 0.201171994 0 + 0.291016012 0.189453006 0 + 0.291016012 0.175780997 0 + faces 5 + 0 1 2 1 0 1 2 1 + 3 1 0 1 3 1 0 1 + 3 4 1 1 3 4 1 1 + 1 4 5 1 1 4 5 1 + 1 5 2 1 1 5 2 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.18000007 3.20000005 2.25999999 +endnode +node trimesh box02_1_26 + parent tcei0_a01_01 + #part-number 69 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + 2.13000011 2.16000009 -32.4799995 + 2.1400001 2.20000005 -32.4799995 + 2.1500001 2.18000007 -32.4799995 + 2.17000008 2.16000009 -32.4799995 + 2.16000009 2.19000006 -32.6300011 + tverts 4 + 0.291016012 0.130859002 0 + 0.3125 0.119140998 0 + 0.291016012 0.119140998 0 + 0.291016012 0.0429687984 0 + faces 4 + 0 1 2 1 0 1 2 1 + 3 0 2 1 1 0 2 1 + 3 2 4 1 1 2 3 1 + 2 1 4 1 2 1 3 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 35.4199982 +endnode +node trimesh box02_1_27 + parent tcei0_a01_01 + #part-number 70 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + 2.1400001 2.18000007 -1.37 + 2.16000009 2.18000007 -1.37 + 2.17000008 2.06999993 -1.39999998 + 2.30999994 2.04999995 -1.51999998 + tverts 4 + 0.480468988 0.408203006 0 + 0.445313007 0.402343988 0 + 0.457031012 0.357421994 0 + 0.441406012 0.304688007 0 + faces 2 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 4.55999994 +endnode +node trimesh box02_1_28 + parent tcei0_a01_01 + #part-number 71 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 18 + -1.40999997 -1.03999996 -1.07000005 + -1.47000003 -0.959999979 -1.08000004 + -1.44000006 -1.07000005 -1.11000001 + -1.41999996 -0.930000007 -1.03999996 + -1.51999998 -0.829999983 -1.19000006 + -1.45000005 -0.959999979 -1.21000004 + -1.45000005 -0.959999979 -1.08000004 + -1.38999999 -0.639999986 -1.17999995 + -1.51999998 -0.829999983 -1.14999998 + -1.5 -0.800000012 -1.11000001 + -1.5 -0.870000005 -1.11000001 + -1.45000005 -0.939999998 -1.24000001 + -1.47000003 -0.939999998 -1.33000004 + -1.48000002 -0.980000019 -1.33000004 + -1.45000005 -0.949999988 -1.24000001 + -1.5 -0.810000002 -1.47000003 + -1.51999998 -0.920000017 -1.03999996 + -1.37 -0.660000026 -1.47000003 + tverts 26 + 0.480468988 0.355468988 0 + 0.480468988 0.408203006 0 + 0.457031012 0.357421994 0 + 0.501953006 0.404296994 0 + 0.40625 0.201171994 0 + 0.291016012 0.189453006 0 + 0.291016012 0.265625 0 + 0.417968988 0.408203006 0 + 0.517578006 0.419921994 0 + 0.503906012 0.441406012 0 + 0.375 0.248046994 0 + 0.300781012 0.171875 0 + 0.3125 0.119140998 0 + 0.291016012 0.130859002 0 + 0.291016012 0.175780997 0 + 0.503906012 0.265625 0 + 0.527343988 0.400391012 0 + 0.544921994 0.474608988 0 + 0.539062023 0.443358988 0 + 0.421875 0.265625 0 + 0.494141012 0.917968988 0 + 0.490233988 0.919921994 0 + 0.464843988 0.933593988 0 + 0.445313007 0.402343988 0 + 0.480468988 0.445313007 0 + 0.458983988 0.457031012 0 + faces 18 + 0 1 2 1 0 1 2 1 + 1 0 3 1 1 0 3 1 + 4 5 6 1 4 5 6 1 + 7 8 9 1 7 8 9 1 + 6 10 4 1 6 10 4 1 + 11 12 13 1 11 12 13 1 + 11 4 12 1 11 4 12 1 + 5 4 11 1 5 4 11 1 + 5 11 14 1 5 11 14 1 + 8 15 4 1 8 15 16 1 + 14 11 13 1 14 11 13 1 + 16 8 10 1 17 8 18 1 + 17 15 7 1 19 15 7 1 + 6 1 16 1 20 21 22 1 + 6 16 10 1 23 24 25 1 + 16 1 3 1 24 1 3 1 + 10 8 4 1 18 8 16 1 + 8 7 15 1 8 7 15 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 3.6099999 3.1400001 4.26999998 +endnode +node trimesh box02_1_29 + parent tcei0_a01_01 + #part-number 72 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + 3.6400001 2.13000011 3.6099999 + 3.6400001 2.18000007 3.6500001 + 3.6500001 2.06999993 3.57999992 + 3.68000007 2.04999995 3.46000004 + 3.88000011 2.36999989 3.6099999 + 3.68000007 2.13000011 3.57999992 + tverts 8 + 0.501953006 0.300781012 0 + 0.517578006 0.363281012 0 + 0.484375 0.316406012 0 + 0.441406012 0.304688007 0 + 0.392578006 0.455078006 0 + 0.519531012 0.474608988 0 + 0.523437023 0.443358988 0 + 0.535156012 0.455078006 0 + faces 4 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 1 5 1 4 5 6 1 + 0 5 1 1 7 6 5 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position -1.37 0 -0.419999987 +endnode +node trimesh box02_1_30 + parent tcei0_a01_01 + #part-number 73 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + -0.479999989 0.720000029 1.47766995 + -0.579999983 0.870000005 1.78767002 + -0.600000024 0.810000002 1.39767003 + -0.569999993 0.779999971 1.78767002 + tverts 4 + 0.0214843992 0.341796994 0 + 0.130859002 0.505859017 0 + 0.105469003 0.298828006 0 + 0.0859375 0.507812023 0 + faces 2 + 0 1 2 1 0 1 2 3 + 3 1 0 1 3 1 0 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.68000007 1.50999999 0.292333007 +endnode +node trimesh box02_1_31 + parent tcei0_a01_01 + #part-number 74 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 7 + -0.25 0.579999983 -0.886622012 + -0.379999995 0.449999988 -0.886622012 + -0.379999995 0.310000002 -0.736621976 + -0.180000007 0.50999999 -0.736621976 + -0.449999988 0.49000001 -0.59662199 + -0.379999995 0.419999987 -0.59662199 + -0.469999999 0.479999989 -0.166621998 + tverts 7 + 0.251953006 0.417968988 0 + 0.179688007 0.421875 0 + 0.130859002 0.505859017 0 + 0.244140998 0.496093988 0 + 0.658203006 0.902343988 0 + 0.658203006 0.951171994 0 + 0.919921994 0.902343988 0 + faces 3 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 5 6 1 4 5 6 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.48000002 2.06999993 2.81662011 +endnode +node trimesh box02_1_31_1 + parent tcei0_a01_01 + #part-number 75 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 8 + 0.151111007 0.0922221988 -0.218888998 + -0.0488888994 -0.107777998 -0.218888998 + -0.0488888994 -0.0577777997 -0.0388889015 + 0.131110996 0.122221999 -0.0388889015 + -0.0688889027 -0.0377778001 0.0911111012 + 0.111111 0.142222002 0.0911111012 + -0.0888888985 -0.0877778009 0.0611111 + -0.108888999 -0.0277778003 0.351110995 + tverts 8 + 0.244140998 0.496093988 0 + 0.130859002 0.505859017 0 + 0.154296994 0.591796994 0 + 0.228515998 0.591796994 0 + 0.216796994 0.666015983 0 + 0.259766012 0.628906012 0 + 0.167969003 0.652343988 0 + 0.207030997 0.806640983 0 + faces 6 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 3 2 4 1 3 2 4 1 + 4 5 3 1 4 5 3 1 + 6 4 2 1 6 4 2 1 + 4 6 7 1 4 6 7 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.14889002 2.48778009 2.29889011 +endnode +node trimesh box02_1_31_2 + parent tcei0_a01_01 + #part-number 76 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + 0.158333004 0.119167 -0.00833333004 + -0.0216667 -0.0608333014 -0.00833333004 + 0.0883333012 0.0691666976 -0.178332999 + -0.00166666997 -0.0208333004 -0.178332999 + -0.0916666985 0.0391667001 0.251666993 + -0.061666701 -0.0508332998 0.251666993 + tverts 6 + 0.759765983 0.994140983 0 + 0.759765983 0.951171994 0 + 0.658203006 0.992187023 0 + 0.658203006 0.951171994 0 + 0.919921994 0.902343988 0 + 0.919921994 0.951171994 0 + faces 4 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 1 4 3 1 1 4 3 1 + 4 1 5 1 4 1 5 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.10167003 2.51082993 2.39832997 +endnode +node trimesh box02_1_31_3 + parent tcei0_a01_01 + #part-number 77 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + 0.0858333036 0.0549999997 0.0350000001 + -0.00416667014 -0.0350000001 0.0350000001 + 0.105833001 0.0549999997 -0.0350000001 + -0.0141666997 -0.0549999997 -0.0350000001 + -0.0741667002 0.0350000001 0.0350000001 + -0.0941667035 0.0350000001 -0.0350000001 + tverts 6 + 0.658203006 0.992187023 0 + 0.658203006 0.951171994 0 + 0.615234017 0.992187023 0 + 0.615234017 0.951171994 0 + 0.658203006 0.902343988 0 + 0.617187023 0.902343988 0 + faces 4 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 1 4 3 1 1 4 3 1 + 5 3 4 1 5 3 4 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.10417008 2.5250001 2.18499994 +endnode +node trimesh box02_1_32 + parent tcei0_a01_01 + #part-number 78 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + -0.649999976 0.680000007 -3.11999989 + -0.579999983 0.569999993 -3.07999992 + -0.610000014 0.620000005 -3.05999994 + -0.600000024 0.569999993 -2.97000003 + -0.689999998 0.540000021 -2.97000003 + tverts 5 + 0.109375 0.628906012 0 + 0.0195311997 0.654296994 0 + 0.0644531026 0.662109017 0 + 0.03125 0.712890983 0 + 0.0644531026 0.714843988 0 + faces 3 + 0 1 2 1 0 1 2 1 + 2 1 3 1 2 1 3 1 + 2 3 4 1 2 3 4 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.74000001 1.62 5.42999983 +endnode +node trimesh box02_1_33 + parent tcei0_a01_01 + #part-number 79 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + -0.899999976 2.05999994 -0.128749996 + -0.870000005 1.96000004 -0.178749993 + -0.829999983 1.89999998 -0.118749999 + -0.949999988 1.92999995 -0.0987500027 + tverts 4 + 0.167969003 0.652343988 0 + 0.109375 0.628906012 0 + 0.0644531026 0.662109017 0 + 0.125 0.675781012 0 + faces 2 + 0 1 2 1 0 1 2 1 + 0 2 3 1 0 2 3 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.96000004 0.340000004 2.48874998 +endnode +node trimesh box02_1_34 + parent tcei0_a01_01 + #part-number 80 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + -1.37 2.29999995 -16.2299995 + -1.39999998 2.4000001 -16.1800003 + -1.36000001 2.43000007 -16.2800007 + -1.36000001 2.38000011 -16.4599991 + -1.35000002 2.28999996 -16.4599991 + tverts 5 + 0.109375 0.628906012 0 + 0.167969003 0.652343988 0 + 0.154296994 0.591796994 0 + 0.130859002 0.505859017 0 + 0.0859375 0.507812023 0 + faces 3 + 0 1 2 1 0 1 2 1 + 3 4 2 1 3 4 2 1 + 0 2 4 1 0 2 4 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 3.46000004 0 18.5400009 +endnode +node trimesh box02_1_35 + parent tcei0_a01_01 + #part-number 81 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 10 + 2.01999998 2.44000006 -0.189999998 + 2.23000002 2.6500001 -0.189999998 + 2.27999997 2.5999999 -0.519999981 + 2.08999991 2.41000009 -0.519999981 + 2.29999995 2.58999991 -0.689999998 + 2.07999992 2.36999989 -0.689999998 + 2.29999995 2.58999991 -0.769999981 + 2.06999993 2.3599999 -0.730000019 + 2.28999996 2.58999991 -0.850000024 + 2.06999993 2.38000011 -0.850000024 + tverts 12 + 0.179688007 0.296875 0 + 0.257813007 0.287108988 0 + 0.222655997 0.121094003 0 + 0.132813007 0.132813007 0 + 0.21875 0.0410155989 0 + 0.123047002 0.0527344011 0 + 0.216796994 0 0 + 0.123047002 0.03125 0 + 0.675781012 0.617187023 0 + 0.644531012 0.521484017 0 + 0.609375 0.525390983 0 + 0.621093988 0.613281012 0 + faces 8 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 3 2 4 1 3 2 4 2 + 4 5 3 1 4 5 3 2 + 5 4 6 1 5 4 6 2 + 6 7 5 1 6 7 5 2 + 7 6 8 1 8 9 10 2 + 8 9 7 1 10 11 8 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 1.88 +endnode +node trimesh box02_1_36 + parent tcei0_a01_01 + #part-number 82 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + 2.06999993 2.63000011 0.699999988 + 2.28999996 2.83999991 0.699999988 + 2.32999992 2.75 0.219999999 + 2.17000008 2.63000011 0.219999999 + 2.32999992 2.75 0.0900000036 + tverts 5 + 0.621093988 0.613281012 0 + 0.609375 0.525390983 0 + 0.386718988 0.556640983 0 + 0.394531012 0.644531012 0 + 0.316406012 0.568359017 0 + faces 3 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 3 2 4 1 3 2 4 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 -0.25 0.330000013 +endnode +node trimesh box02_1_37 + parent tcei0_a01_01 + #part-number 83 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 7 + 0.171333 0.157333001 0.0193332992 + -0.0386666991 -0.0226667002 0.0493333004 + 0.0113332998 0.0373332985 0.149333 + 0.171333 0.157333001 -0.0706667006 + -0.0586666986 -0.0426666997 -0.0706667006 + -0.138667002 -0.162667006 -0.0706667006 + -0.108667001 -0.142666996 -0.0106667001 + tverts 7 + 0.316406012 0.568359017 0 + 0.339843988 0.650390983 0 + 0.394531012 0.644531012 0 + 0.265625 0.566406012 0 + 0.277343988 0.660156012 0 + 0.283203006 0.75 0 + 0.316406012 0.75 0 + faces 5 + 0 1 2 1 0 1 2 2 + 1 0 3 1 1 0 3 2 + 3 4 1 1 3 4 1 2 + 1 4 5 1 1 4 5 2 + 5 6 1 1 5 6 1 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.15866995 2.34266996 0.400667012 +endnode +node trimesh box02_1_38 + parent tcei0_a01_01 + #part-number 84 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + 2.18000007 2.6099999 2.4000001 + 2.06999993 2.5 2.4000001 + 2.21000004 2.38000011 2.44000006 + 2.30999994 2.48000002 2.44000006 + 2.19000006 2.30999994 2.52999997 + tverts 5 + 0.207030997 0.886718988 0 + 0.207030997 0.839843988 0 + 0.078125 0.912109017 0 + 0.115234002 0.955078006 0 + 0.0566405989 0.996093988 0 + faces 3 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 3 2 4 1 3 2 4 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 0.330000013 +endnode +node trimesh box02_1_39 + parent tcei0_a01_01 + #part-number 85 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 7 + -1.57000005 0.949999988 0.239999995 + -1.44000006 0.680000007 0.219999999 + -1.42999995 0.829999983 0.280000001 + -1.40999997 0.699999988 0.280000001 + -1.45000005 0.75999999 0.370000005 + -1.40999997 0.699999988 0.310000002 + -1.48000002 0.639999986 0.300000012 + tverts 9 + 0.207030997 0.839843988 0 + 0.0214843992 0.853515983 0 + 0.078125 0.912109017 0 + 0.0214843992 0.939453006 0 + 0.0566405989 0.996093988 0 + 0.0214843992 0.96875 0 + 0.369141012 0.0566405989 0 + 0.291016012 0.0175781008 0 + 0.291016012 0.0429687984 0 + faces 5 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 2 3 4 1 2 3 4 1 + 5 4 3 1 5 4 3 1 + 4 5 6 1 6 7 8 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 3.6400001 1.54999995 2.49000001 +endnode +node trimesh box02_1_40 + parent tcei0_a01_01 + #part-number 86 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + 2.16000009 2.19000006 -2.55999994 + 2.13000011 2.27999997 -2.47000003 + 2.19000006 2.30999994 -2.49000001 + 2.1099999 2.32999992 -2.54999995 + tverts 6 + 0.291016012 0.0429687984 0 + 0.392578006 0.0917968974 0 + 0.369141012 0.0566405989 0 + 0.503906012 0.265625 0 + 0.486328006 0.298828006 0 + 0.525390983 0.310546994 0 + faces 2 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 4 5 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 5.3499999 +endnode +node trimesh box02_1_41 + parent tcei0_a01_01 + #part-number 87 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + -0.810000002 1.83000004 1.27999997 + -0.850000024 1.91999996 1.27999997 + -0.810000002 1.83000004 1.22000003 + -0.879999995 1.89999998 1.22000003 + tverts 4 + 0.316406012 0.816406012 0 + 0.316406012 0.75 0 + 0.283203006 0.816406012 0 + 0.283203006 0.75 0 + faces 2 + 0 1 2 1 0 1 2 2 + 3 2 1 1 3 2 1 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.9000001 0.280000001 -0.889999986 +endnode +node trimesh box02_1_42 + parent tcei0_a01_01 + #part-number 88 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + -0.920000017 2.20000005 3.95000005 + -0.819999993 2.25999999 4.01000023 + -0.850000024 2.31999993 4.01000023 + -0.899999976 2.38000011 4.59000015 + -0.800000012 2.38000011 4.11000013 + tverts 5 + 0.316406012 0.75 0 + 0.341796994 0.685546994 0 + 0.339843988 0.650390983 0 + 0.621093988 0.613281012 0 + 0.394531012 0.644531012 0 + faces 3 + 0 1 2 1 0 1 2 2 + 1 3 4 1 1 3 4 2 + 2 1 4 1 2 1 4 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.97000003 0 -3.55999994 +endnode +node trimesh box02_1_43 + parent tcei0_a01_01 + #part-number 89 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + -1.07000005 2.31999993 -1.32000005 + -1.13 2.44000006 -1.32000005 + -1.05999994 2.41000009 -1.64999998 + -1.01999998 2.27999997 -1.64999998 + -1.07000005 2.36999989 -1.82000005 + tverts 5 + 0.105469003 0.298828006 0 + 0.179688007 0.296875 0 + 0.132813007 0.132813007 0 + 0.0703125 0.134765998 0 + 0.123047002 0.0527344011 0 + faces 3 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 3 2 4 1 3 2 4 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 3.1500001 0 3.00999999 +endnode +node trimesh box02_1_44 + parent tcei0_a01_01 + #part-number 90 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + -0.409999996 0.50999999 0 + -0.330000013 0.409999996 0 + -0.360000014 0.419999987 0.170000002 + -0.340000004 0.400000006 -0.0399999991 + -0.419999987 0.5 -0.0399999991 + tverts 5 + 0.123047002 0.0527344011 0 + 0.0546875 0.0527344011 0 + 0.0703125 0.134765998 0 + 0.0546875 0.0332030989 0 + 0.123047002 0.03125 0 + faces 3 + 0 1 2 1 0 1 2 2 + 1 0 3 1 1 0 3 2 + 4 3 0 1 4 3 0 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.49000001 1.86000001 1.19000006 +endnode +node trimesh box02_1_45 + parent tcei0_a01_01 + #part-number 91 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + -0.129999995 0.0299999993 -0.150000006 + -0.209999993 0.129999995 -0.150000006 + -0.109999999 0.0500000007 -0.270000011 + -0.209999993 0.150000006 -0.270000011 + -0.129999995 0.0299999993 -0.850000024 + tverts 5 + 0.677734017 0.685546994 0 + 0.675781012 0.617187023 0 + 0.621093988 0.685546994 0 + 0.621093988 0.613281012 0 + 0.341796994 0.685546994 0 + faces 3 + 0 1 2 1 0 1 2 2 + 3 2 1 1 3 2 1 2 + 3 4 2 1 3 4 2 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.27999997 2.23000002 1.29999995 +endnode +node trimesh box02_1_46 + parent tcei0_a01_01 + #part-number 92 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 8 + -0.939999998 2.33999991 6.34000015 + -0.899999976 2.4000001 6.13999987 + -1 2.28999996 6.28999996 + -0.920000017 2.18000007 6.30999994 + -0.879999995 2.30999994 6.42000008 + -0.920000017 2.46000004 6.42999983 + -0.889999986 2.5 6.51000023 + -0.949999988 2.54999995 6.42999983 + tverts 10 + 0.164063007 0.769531012 0 + 0.167969003 0.652343988 0 + 0.140625 0.742187023 0 + 0.0761718974 0.75 0 + 0.111327998 0.804687977 0 + 0.207030997 0.806640983 0 + 0.207030997 0.839843988 0 + 0.919921994 0.902343988 0 + 0.919921994 0.951171994 0 + 0.970703006 0.951171994 0 + faces 7 + 0 1 2 1 0 1 2 1 + 3 4 0 1 3 4 0 1 + 1 0 5 1 1 0 5 1 + 0 4 6 1 0 4 6 1 + 3 0 2 1 3 0 2 1 + 5 0 6 1 5 0 6 1 + 7 5 6 1 7 8 9 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.96000004 0 -3.77999997 +endnode +node trimesh box02_1_47 + parent tcei0_a01_01 + #part-number 93 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + 2.02999997 2.55999994 16 + 2.00999999 2.54999995 16.4300003 + 2.1500001 2.68000007 16.4300003 + 2.11999989 2.6500001 16 + 2.00999999 2.55999994 15.9300003 + 2.11999989 2.67000008 15.9300003 + tverts 6 + 0.658203006 0.902343988 0 + 0.919921994 0.902343988 0 + 0.919921994 0.847656012 0 + 0.658203006 0.847656012 0 + 0.617187023 0.902343988 0 + 0.617187023 0.847656012 0 + faces 4 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 0 3 4 1 0 3 4 1 + 5 4 3 1 5 4 3 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 -13.7799997 +endnode +node trimesh box02_1_48 + parent tcei0_a01_01 + #part-number 94 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + -0.360000014 0.170000002 1.11000001 + -0.439999998 0.25999999 1.11000001 + -0.360000014 0.209999993 0.75999999 + -0.400000006 0.25 0.75999999 + -0.379999995 0.180000007 0.709999979 + -0.430000007 0.239999995 0.709999979 + tverts 6 + 0.615234017 0.951171994 0 + 0.617187023 0.902343988 0 + 0.402343988 0.951171994 0 + 0.402343988 0.902343988 0 + 0.367188007 0.951171994 0 + 0.369141012 0.902343988 0 + faces 4 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 2 3 4 1 2 3 4 1 + 5 4 3 1 5 4 3 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.45000005 2.29999995 1.03999996 +endnode +node trimesh box02_1_49 + parent tcei0_a01_01 + #part-number 95 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + 2.00999999 2.55999994 1.48000002 + 2.11999989 2.67000008 1.48000002 + 2.04999995 2.54999995 1.13 + 2.11999989 2.61999989 1.13 + 2.01999998 2.53999996 1.08000004 + 2.1400001 2.6500001 1.08000004 + tverts 6 + 0.617187023 0.902343988 0 + 0.617187023 0.847656012 0 + 0.402343988 0.902343988 0 + 0.402343988 0.847656012 0 + 0.369141012 0.902343988 0 + 0.369141012 0.847656012 0 + faces 4 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 2 3 4 1 2 3 4 1 + 5 4 3 1 5 4 3 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 0.670000017 +endnode +node trimesh box02_1_50 + parent tcei0_a01_01 + #part-number 96 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + 2.1400001 2.20000005 -30.5400009 + 2.13000011 2.27999997 -30.6000004 + 2.16000009 2.19000006 -30.6900005 + 2.08999991 2.30999994 -30.3999996 + 2.1099999 2.32999992 -30.6800003 + tverts 7 + 0.3125 0.119140998 0 + 0.392578006 0.0917968974 0 + 0.291016012 0.0429687984 0 + 0.40625 0.201171994 0 + 0.503906012 0.265625 0 + 0.525390983 0.310546994 0 + 0.527343988 0.400391012 0 + faces 3 + 0 1 2 1 0 1 2 1 + 1 0 3 1 1 0 3 1 + 4 1 3 1 4 5 6 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 33.4799995 +endnode +node trimesh box02_1_51 + parent tcei0_a01_01 + #part-number 97 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 5 + 3.1500001 2.30999994 -1.97000003 + 3.25999999 2.45000005 -2.04999995 + 3.26999998 2.48000002 -2.05999994 + 3.20000005 2.48000002 -2.02999997 + 3.06999993 2.32999992 -2.02999997 + tverts 7 + 0.0566405989 0.996093988 0 + 0.117187999 0.998046994 0 + 0.115234002 0.955078006 0 + 0.421875 0.265625 0 + 0.486328006 0.298828006 0 + 0.503906012 0.265625 0 + 0.417968988 0.267578006 0 + faces 3 + 0 1 2 1 0 1 2 1 + 3 0 4 1 3 4 5 1 + 0 3 1 1 4 3 6 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position -0.959999979 0 4.82999992 +endnode +node trimesh box02_1_52 + parent tcei0_a01_01 + #part-number 98 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + -0.0450000018 -0.0825000033 -0.144999996 + 0.155000001 0.1175 -0.144999996 + 0.0250000004 -0.0125000002 0.0949999988 + 0.155000001 0.1175 0.0949999988 + -0.174999997 -0.0425000004 -0.144999996 + -0.115000002 -0.0125000002 0.245000005 + tverts 6 + 0.179688007 0.296875 0 + 0.257813007 0.287108988 0 + 0.179688007 0.421875 0 + 0.251953006 0.417968988 0 + 0.105469003 0.298828006 0 + 0.130859002 0.505859017 0 + faces 4 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 0 5 1 4 0 5 3 + 0 2 5 1 0 2 5 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.4749999 2.14249992 1.83500004 +endnode +node trimesh box02_1_53 + parent tcei0_a01_01 + #part-number 99 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 3 + 0.0266667008 -0.00666667009 0.0533333011 + -0.0233332999 -0.0166666992 0.0233332999 + -0.00333332992 0.0233332999 -0.0766666979 + tverts 3 + 0.216796994 0.666015983 0 + 0.167969003 0.652343988 0 + 0.154296994 0.591796994 0 + faces 1 + 0 1 2 1 0 1 2 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.40333009 2.1066699 2.33666992 +endnode +node trimesh box02_1_54 + parent tcei0_a01_01 + #part-number 100 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 7 + -0.0505556017 0.0116667002 -0.0772221982 + 0.00944443978 0.0816667005 -0.0772221982 + -0.0205556005 -0.0183332991 -0.0672222003 + 0.0394444019 0.0516666993 -0.0672222003 + -0.000555555976 -0.0783333033 0.142777994 + -0.0605555996 -0.0383333005 0.142777994 + 0.109444 0.0316666998 0.142777994 + tverts 10 + 0.429688007 0.615234017 0 + 0.427733988 0.613281012 0 + 0.431641012 0.599609017 0 + 0.427733988 0.597656012 0 + 0.369141012 0.902343988 0 + 0.367188007 0.951171994 0 + 0.238280997 0.951171994 0 + 0.238280997 0.902343988 0 + 0.369141012 0.847656012 0 + 0.238280997 0.847656012 0 + faces 6 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 5 0 1 4 5 6 1 + 0 2 4 1 6 7 4 1 + 6 4 2 1 8 4 7 1 + 2 3 6 1 7 9 8 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.52056003 2.12832999 1.60722005 +endnode +node trimesh box02_1_55 + parent tcei0_a01_01 + #part-number 101 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 3 + -0.119999997 0.0866667032 0.0166666992 + -0.0399999991 -0.0333333015 -0.0533333011 + 0.159999996 -0.0533333011 0.0366666988 + tverts 3 + 0.0214843992 0.853515983 0 + 0.111327998 0.804687977 0 + 0.207030997 0.839843988 0 + faces 1 + 0 1 2 1 0 1 2 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.31999993 2.1433301 2.69333005 +endnode +node trimesh box02_1_56 + parent tcei0_a01_01 + #part-number 102 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 8 + 0.072222203 0.117222004 -0.224444002 + 0.0822222009 0.0672222003 -0.224444002 + -0.0777778029 -0.0427777991 -0.204444006 + -0.0777778029 -0.0927778035 0.0955556035 + 0.102222003 0.0572221987 0.0655556023 + -0.0677777976 -0.0627778023 0.135555997 + 0.132221997 0.177221999 0.165555999 + -0.107777998 -0.0627778023 0.165555999 + tverts 8 + 0.427733988 0.271483988 0 + 0.443358988 0.265625 0 + 0.546875 0.277343988 0 + 0.548828006 0.421875 0 + 0.443358988 0.410156012 0 + 0.523437023 0.443358988 0 + 0.392578006 0.455078006 0 + 0.535156012 0.455078006 0 + faces 6 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 5 4 6 1 5 4 6 1 + 5 7 3 1 5 7 3 1 + 2 4 3 1 2 4 3 1 + 1 4 2 1 1 4 2 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.37777996 2.19278002 3.02444005 +endnode +node trimesh box02_1_57 + parent tcei0_a01_01 + #part-number 103 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 15 + 0.205385 0.108718 0.0161537994 + 0.0153845996 -0.0912820995 0.0361538008 + 0.255385011 0.0987178981 -0.00384614989 + -0.0846154019 -0.201281995 -0.0338461995 + 0.0553845987 -0.221282005 -0.153845996 + 0.0253845993 -0.201281995 -0.0338461995 + -0.0546154007 -0.171281993 0.00615384988 + 0.155385002 0.158718005 0.0161537994 + -0.0646153986 -0.0612820983 0.0361538008 + -0.164615005 -0.0512821004 0.0361538008 + 0.0953845978 0.208718002 0.0161537994 + 0.0953845978 0.258718014 -0.00384614989 + -0.144614995 0.0687178969 -0.0338461995 + -0.0346154012 0.228717998 -0.103845999 + -0.164615005 0.0387178995 -0.0738461986 + tverts 17 + 0.404296994 0.476563007 0 + 0.519531012 0.474608988 0 + 0.392578006 0.455078006 0 + 0.457031012 0.357421994 0 + 0.441406012 0.304688007 0 + 0.484375 0.316406012 0 + 0.480468988 0.355468988 0 + 0.400391012 0.511718988 0 + 0.529296994 0.511718988 0 + 0.517578006 0.363281012 0 + 0.501953006 0.404296994 0 + 0.544921994 0.474608988 0 + 0.394531012 0.474608988 0 + 0.376953006 0.455078006 0 + 0.503906012 0.441406012 0 + 0.417968988 0.408203006 0 + 0.517578006 0.419921994 0 + faces 13 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 5 6 3 1 5 6 3 1 + 0 7 8 1 0 7 8 1 + 8 1 0 1 8 1 0 1 + 1 8 6 1 9 10 6 1 + 6 5 1 1 6 5 9 1 + 9 10 11 1 11 12 13 1 + 7 10 8 1 7 12 8 1 + 9 8 10 1 11 8 12 1 + 9 11 12 1 11 13 14 1 + 13 12 11 1 15 14 13 1 + 14 9 12 1 16 11 14 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.25462008 2.27128005 3.19385004 +endnode +node trimesh box02_1_58 + parent tcei0_a01_01 + #part-number 104 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + -0.0791667029 0.0299999993 0.0149999997 + 0.0108332997 -0.0299999993 -0.0549999997 + 0.0408333018 -0.0599999987 0.0649999976 + -0.0691666976 0.0199999996 0.0850000009 + -0.00916667003 0.109999999 -0.075000003 + 0.160833001 0.0500000007 -0.0850000009 + tverts 6 + 0.0644531026 0.714843988 0 + 0.125 0.675781012 0 + 0.140625 0.742187023 0 + 0.0761718974 0.75 0 + 0.0644531026 0.662109017 0 + 0.167969003 0.652343988 0 + faces 4 + 0 1 2 1 0 1 2 1 + 0 2 3 1 0 2 3 1 + 1 0 4 1 1 0 4 1 + 5 2 1 1 5 2 1 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.21917009 2.03999996 2.44499993 +endnode +node trimesh box02_1_59 + parent tcei0_a01_01 + #part-number 105 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + 0.0250000004 0.0733333007 0.0399999991 + -0.0850000009 -0.0366666988 0.0399999991 + 0.0949999988 0.0433332995 -0.0399999991 + -0.0450000018 -0.0866667032 -0.0399999991 + tverts 4 + 0.970703006 0.847656012 0 + 0.970703006 0.951171994 0 + 0.919921994 0.847656012 0 + 0.919921994 0.902343988 0 + faces 2 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.56500006 2.12666988 2.69000006 +endnode +node trimesh box02_1_60 + parent tcei0_a01_01 + #part-number 106 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + 2.44000006 2.11999989 -1.02999997 + 2.55999994 2.23000002 -1.02999997 + 2.55999994 2.19000006 -1.38 + 2.48000002 2.11999989 -1.38 + tverts 4 + 0.615234017 0.951171994 0 + 0.615234017 0.992187023 0 + 0.402343988 0.992187023 0 + 0.402343988 0.951171994 0 + faces 2 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 3.18000007 +endnode +node trimesh box02_1_61 + parent tcei0_a01_01 + #part-number 107 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + -0.389999986 0.5 0 + -0.300000012 0.439999998 -0.310000002 + -0.319999993 0.409999996 -0.150000006 + -0.319999993 0.409999996 0 + -0.409999996 0.50999999 0.230000004 + -0.340000004 0.400000006 0.270000011 + tverts 6 + 0.0859375 0.507812023 0 + 0.0214843992 0.341796994 0 + 0.0195311997 0.427733988 0 + 0.0195311997 0.507812023 0 + 0.109375 0.628906012 0 + 0.0195311997 0.654296994 0 + faces 4 + 0 1 2 1 0 1 2 3 + 3 0 2 1 3 0 2 1 + 0 3 4 1 0 3 4 1 + 5 4 3 1 5 4 3 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.5 1.78999996 2.07999992 +endnode +node trimesh box02_1_62 + parent tcei0_a01_01 + #part-number 108 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 6 + 0.119167 0.157499999 -0.144999996 + -0.0908332989 -0.0524999984 -0.144999996 + -0.0108332997 0.0274999999 0.0949999988 + 0.119167 0.157499999 0.0949999988 + -0.0308333002 -0.172499999 -0.144999996 + -0.0108332997 -0.112499997 0.245000005 + tverts 6 + 0.257813007 0.287108988 0 + 0.179688007 0.296875 0 + 0.179688007 0.421875 0 + 0.251953006 0.417968988 0 + 0.105469003 0.298828006 0 + 0.130859002 0.505859017 0 + faces 4 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + 1 4 5 1 1 4 5 3 + 2 1 5 1 2 1 5 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.11083007 2.49250007 1.83500004 +endnode +node trimesh box02_1_63 + parent tcei0_a01_01 + #part-number 109 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 7 + 0.0833332986 0.0172221996 -0.0772221982 + 0.0133333001 -0.0527778007 -0.0772221982 + -0.0166666992 -0.0227777995 -0.0672222003 + 0.0533333011 0.0472222008 -0.0672222003 + -0.0366666988 -0.0627778023 0.142777994 + -0.0866667032 -0.00277777994 0.142777994 + 0.0333333015 0.107221998 0.142777994 + tverts 7 + 0.238280997 0.992187023 0 + 0.238280997 0.951171994 0 + 0.238280997 0.902343988 0 + 0.238280997 0.847656012 0 + 0.367188007 0.951171994 0 + 0.369141012 0.902343988 0 + 0.369141012 0.847656012 0 + faces 6 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 5 1 1 4 5 1 1 + 2 1 5 1 2 1 5 1 + 5 6 2 1 5 6 2 1 + 3 2 6 1 3 2 6 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.1066699 2.54277992 1.60722005 +endnode +node trimesh box02_1_64 + parent tcei0_a01_01 + #part-number 110 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 3 + -0.0466667004 0.153332993 0.0366666988 + -0.0366666988 -0.0366666988 -0.0533333011 + 0.0833332986 -0.116667002 0.0166666992 + tverts 3 + 0.207030997 0.839843988 0 + 0.111327998 0.804687977 0 + 0.0214843992 0.853515983 0 + faces 1 + 0 1 2 1 0 1 2 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.11666989 2.34666991 2.69333005 +endnode +node trimesh box02_1_65 + parent tcei0_a01_01 + #part-number 111 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + 0.0500000007 -0.0383333005 0.246666998 + -0.0700000003 0.0516666993 0.166666999 + -0.0199999996 0.0116667002 -0.163332999 + 0.00999999978 0.00166666997 -0.333332986 + tverts 4 + 0.0214843992 0.341796994 0 + 0.105469003 0.298828006 0 + 0.0703125 0.134765998 0 + 0.0546875 0.0527344011 0 + faces 2 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.1500001 2.2683301 1.52332997 +endnode +node trimesh box02_1_66 + parent tcei0_a01_01 + #part-number 112 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 7 + -0.00555555988 0.0133333001 -0.0527778007 + 0.0344443992 -0.0966667011 0.0172221996 + -0.045555599 0.0133333001 0.00722221984 + -0.0555556007 0.0333333015 0.0672222003 + 0.0244443994 -0.0766666979 0.0872222036 + 0.0444444008 0.143333003 -0.0827777982 + 0.114444003 -0.0166666992 -0.0727778003 + tverts 7 + 0.125 0.675781012 0 + 0.0644531026 0.714843988 0 + 0.132813007 0.707031012 0 + 0.140625 0.742187023 0 + 0.0761718974 0.75 0 + 0.167969003 0.652343988 0 + 0.0644531026 0.662109017 0 + faces 6 + 0 1 2 1 0 1 2 1 + 3 2 4 1 3 2 4 1 + 0 2 5 1 0 2 5 1 + 1 0 6 1 1 0 6 1 + 2 1 4 1 2 1 4 1 + 2 3 5 1 2 3 5 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.01555991 2.25667 2.44278002 +endnode +node trimesh box02_1_67 + parent tcei0_a01_01 + #part-number 113 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 4 + 2.06999993 2.5 2.4000001 + 2.18000007 2.6099999 2.4000001 + 2.1500001 2.68000007 2.31999993 + 2.00999999 2.54999995 2.31999993 + tverts 4 + 0.970703006 0.951171994 0 + 0.970703006 0.847656012 0 + 0.919921994 0.847656012 0 + 0.919921994 0.902343988 0 + faces 2 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 0 0 0.330000013 +endnode +node trimesh box02_2 + parent tcei0_a01_01 + #part-number 114 + ambient 1 1 1 + diffuse 1 1 1 + specular 0.0500000007 0.0500000007 0.0500000007 + shininess 26 + bitmap tcei0_statue + verts 7 + -0.0044444399 0.0166666992 -0.0944444016 + 0.0355556011 0.0166666992 -0.0344443992 + 0.0155555997 -0.0133333001 0.0755556002 + -0.0644444004 -0.00333332992 -0.104443997 + -0.0644444004 -0.0133333001 -0.0444444008 + 0.0355556011 0.0266667008 -0.0344443992 + 0.0155555997 -0.00333332992 0.0855555981 + tverts 7 + 0.359375 0.302733988 0 + 0.396483988 0.335936993 0 + 0.353516012 0.404296994 0 + 0.294921994 0.294921994 0 + 0.292968988 0.330078006 0 + 0.402343988 0.337891012 0 + 0.359375 0.404296994 0 + faces 6 + 0 1 2 1 0 1 2 1 + 3 0 2 1 3 0 2 1 + 4 3 2 1 4 3 2 1 + 5 6 2 1 5 6 2 1 + 2 1 5 1 2 1 5 1 + 4 2 6 1 4 2 6 1 + scale 1 + alpha 1 + selfillumcolor 0 0 0 + orientation 0 0 0 0 + position 2.36443996 2.15333009 3.08443999 +endnode +endmodelgeom tcei0_a01_01 + +donemodel tcei0_a01_01 diff --git a/tests/fixtures/oracle/ascii/tdc01_a01_03.mdl b/tests/fixtures/oracle/ascii/tdc01_a01_03.mdl new file mode 100644 index 0000000..2a40acd --- /dev/null +++ b/tests/fixtures/oracle/ascii/tdc01_a01_03.mdl @@ -0,0 +1,2189 @@ +# Rewritten by CleanModels 3 Version 3.7.0 Sun Jan 17 04:29:48 2021 +#MAXMODEL ASCII +filedependency Unknown +newmodel tdc01_a01_03 + classification TILE + setsupermodel tdc01_a01_03 NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom tdc01_a01_03 + node dummy tdc01_a01_03 + parent NULL + endnode + node trimesh line03 + parent tdc01_a01_03 + position 1.19 0 3.82 + orientation 0 0 0 0 + wirecolor 0.894118 0.839216 0.6 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -252 -133 148 + bitmap tdc01_trim00 + tilefade 0 + verts 49 + 1.15 -5 0.29 + 0.63 -5 0.29 + 0.41 -5 0.44 + 0.43 -5 0.65 + 0.64 -5 0.8 + 0.64 -5 2.58 + 0.41 -5 2.67 + 0.9 -3.1 0.29 + 0.39 -3.23 0.29 + 0.19 -3.29 0.44 + 0.2 -3.29 0.65 + 0.41 -3.23 0.8 + 0.41 -3.23 2.58 + 0.18 -3.29 2.67 + 0.16 -1.33 0.29 + -0.29 -1.59 0.29 + -0.47 -1.7 0.44 + -0.46 -1.69 0.65 + -0.27 -1.58 0.8 + -0.28 -1.58 2.58 + -0.48 -1.7 2.67 + -1 0.19 0.29 + -1.37 -0.18 0.29 + -1.52 -0.33 0.44 + -1.51 -0.32 0.65 + -1.36 -0.17 0.8 + -1.36 -0.17 2.58 + -1.53 -0.33 2.67 + -2.52 1.35 0.29 + -2.78 0.9 0.29 + -2.89 0.72 0.44 + -2.88 0.73 0.65 + -2.77 0.92 0.8 + -2.78 0.92 2.58 + -2.89 0.71 2.67 + -4.29 2.09 0.29 + -4.43 1.58 0.29 + -4.48 1.38 0.44 + -4.48 1.39 0.65 + -4.42 1.6 0.8 + -4.42 1.6 2.58 + -4.48 1.37 2.67 + -6.19 2.34 0.29 + -6.19 1.82 0.29 + -6.19 1.6 0.44 + -6.19 1.62 0.65 + -6.19 1.83 0.8 + -6.19 1.83 2.58 + -6.19 1.6 2.67 + faces 72 + 0 1 8 2 0 1 8 3 + 0 8 7 2 0 8 7 3 + 1 2 9 4 1 6 49 3 + 1 9 8 4 1 49 8 3 + 2 3 10 2 2 50 51 3 + 2 10 9 2 2 51 9 3 + 3 4 11 4 3 52 53 3 + 3 11 10 4 3 53 10 3 + 4 5 12 2 4 54 55 3 + 4 12 11 2 4 55 11 3 + 5 6 13 4 5 6 13 3 + 5 13 12 4 5 13 12 3 + 7 8 15 2 7 8 15 3 + 7 15 14 2 7 15 14 3 + 8 9 16 4 8 49 56 3 + 8 16 15 4 8 56 15 3 + 9 10 17 2 9 51 57 3 + 9 17 16 2 9 57 16 3 + 10 11 18 4 10 53 58 3 + 10 18 17 4 10 58 17 3 + 11 12 19 2 11 55 59 3 + 11 19 18 2 11 59 18 3 + 12 13 20 4 12 13 20 3 + 12 20 19 4 12 20 19 3 + 14 15 22 2 14 15 22 3 + 14 22 21 2 14 22 21 3 + 15 16 23 4 15 56 60 3 + 15 23 22 4 15 60 22 3 + 16 17 24 2 16 57 61 3 + 16 24 23 2 16 61 62 3 + 17 18 25 4 17 58 63 3 + 17 25 24 4 17 63 24 3 + 18 19 26 2 18 59 64 3 + 18 26 25 2 18 64 65 3 + 19 20 27 4 19 20 27 3 + 19 27 26 4 19 27 26 3 + 21 22 29 2 21 22 29 3 + 21 29 28 2 21 29 28 3 + 22 23 30 4 22 60 66 3 + 22 30 29 4 22 66 29 3 + 23 24 31 2 23 67 68 3 + 23 31 30 2 23 68 30 3 + 24 25 32 4 24 63 69 3 + 24 32 31 4 24 69 31 3 + 25 26 33 2 25 70 71 3 + 25 33 32 2 25 71 32 3 + 26 27 34 4 26 27 34 3 + 26 34 33 4 26 34 33 3 + 28 29 36 2 28 29 36 3 + 28 36 35 2 28 36 35 3 + 29 30 37 4 29 66 72 3 + 29 37 36 4 29 72 36 3 + 30 31 38 2 30 68 73 3 + 30 38 37 2 30 73 37 3 + 31 32 39 4 31 69 74 3 + 31 39 38 4 31 74 38 3 + 32 33 40 2 32 71 75 3 + 32 40 39 2 32 75 39 3 + 33 34 41 4 33 34 41 3 + 33 41 40 4 33 41 40 3 + 35 36 43 2 35 36 43 3 + 35 43 42 2 35 43 42 3 + 36 37 44 4 36 72 48 3 + 36 44 43 4 36 48 43 3 + 37 38 45 2 37 73 76 3 + 37 45 44 2 37 76 44 3 + 38 39 46 4 38 74 77 3 + 38 46 45 4 38 77 45 3 + 39 40 47 2 39 75 78 3 + 39 47 46 2 39 78 46 3 + 40 41 48 4 40 41 48 3 + 40 48 47 4 40 48 47 3 + tverts 79 + -0.201298 0.9995 0 + -0.045454 0.9995 0 + 0.9985 0.677634 0 + 0.98551 0.9995 0 + 0.9985 0.568321 0 + -0.048451 0.9995 0 + 0.02048 0.9995 0 + -0.126373 0.80969 0 + 0.02647 0.822677 0 + 0.48601 0.677634 0 + 0.91658 0.828671 0 + 0.46803 0.568321 0 + 0.02048 0.822677 0 + 0.08941 0.828671 0 + 0.09541 0.632867 0 + 0.23027 0.658841 0 + 0.00949 0.677634 0 + 0.71878 0.668831 0 + -0.02647 0.568321 0 + 0.22727 0.657842 0 + 0.28721 0.66983 0 + 0.44306 0.481019 0 + 0.55395 0.517982 0 + 1.4011 0.677634 0 + 0.4041 0.531968 0 + 1.44905 0.568321 0 + 0.55095 0.516983 0 + 0.6019 0.532967 0 + 0.8986 0.365135 0 + 0.97652 0.41009 0 + 0.990509 0.677634 0 + -0.006494 0.427073 0 + 1.02647 0.568321 0 + 0.97652 0.408092 0 + 1.00949 0.429071 0 + 1.42907 0.291209 0 + 1.47103 0.342158 0 + 0.513986 0.677634 0 + -0.486014 0.361139 0 + 0.531968 0.568321 0 + 1.46803 0.34016 0 + 1.48601 0.363137 0 + 1.9985 0.266234 0 + 1.9985 0.318182 0 + 0.00149855 0.677634 0 + -0.998501 0.338162 0 + 0.00149855 0.568321 0 + 1.9985 0.317183 0 + 1.9985 0.34016 0 + 0.08641 0.828671 0 + 0.9985 0.613868 0 + 0.48601 0.613868 0 + 1.04845 0.9995 0 + 0.97952 0.822677 0 + 0.9985 0.0278277 0 + 0.46803 0.0278277 0 + 0.28422 0.66983 0 + 0.00649 0.613868 0 + 0.77572 0.657842 0 + -0.02647 0.0278277 0 + 0.5989 0.532967 0 + -0.4041 0.613868 0 + -0.4011 0.677634 0 + 0.44905 0.516983 0 + -0.44905 0.0278277 0 + -0.44905 0.568321 0 + 1.00949 0.428072 0 + 1.4041 0.613868 0 + 0.993506 0.613868 0 + 0.02647 0.408092 0 + 1.44905 0.0278277 0 + 1.02348 0.0278277 0 + 1.48601 0.362138 0 + 0.513986 0.613868 0 + -0.468032 0.34016 0 + 0.531968 0.0278277 0 + 0.00149855 0.613868 0 + -0.998501 0.317183 0 + 0.00149855 0.0278277 0 + endnode + node trimesh line01 + parent tdc01_a01_03 + position 1.19 0 3.82 + orientation 0 0 0 0 + wirecolor 0.894118 0.839216 0.6 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -289 -170 442.5 + bitmap tdc01_flrcrack + tilefade 0 + verts 57 + 0.41 -5 2.67 + 0.41 -5 2.86 + 0.18 -5 3.6 + -0.39 -5 4.44 + -1.36 -5 5.1 + -2.5 -5 5.62 + -3.7 -5 5.9 + -4.9 -5 6.07 + -6.19 -5 6.18 + 0.18 -3.29 2.67 + 0.19 -3.29 2.86 + -0.04 -3.35 3.6 + -0.59 -3.5 4.44 + -1.52 -3.75 5.1 + -2.63 -4.04 5.62 + -3.79 -4.36 5.9 + -4.94 -4.66 6.07 + -0.48 -1.7 2.67 + -0.47 -1.7 2.86 + -0.68 -1.81 3.6 + -1.17 -2.1 4.44 + -2 -2.58 5.1 + -2.99 -3.15 5.62 + -4.04 -3.76 5.9 + -5.07 -4.35 6.07 + -1.53 -0.33 2.67 + -1.52 -0.33 2.86 + -1.69 -0.5 3.6 + -2.09 -0.9 4.44 + -2.77 -1.58 5.1 + -3.58 -2.39 5.62 + -4.43 -3.24 5.9 + -5.28 -4.09 6.07 + -2.89 0.71 2.67 + -2.89 0.72 2.86 + -3.01 0.52 3.6 + -3.29 0.03 4.44 + -3.77 -0.81 5.1 + -4.34 -1.8 5.62 + -4.95 -2.85 5.9 + -5.54 -3.88 6.07 + -4.48 1.37 2.67 + -4.48 1.38 2.86 + -4.54 1.15 3.6 + -4.69 0.6 4.44 + -4.94 -0.33 5.1 + -5.23 -1.43 5.62 + -5.55 -2.6 5.9 + -5.86 -3.75 6.07 + -6.19 1.6 2.67 + -6.19 1.6 2.86 + -6.19 1.37 3.6 + -6.19 0.8 4.44 + -6.19 -0.17 5.1 + -6.19 -1.31 5.62 + -6.19 -2.51 5.9 + -6.19 -3.71 6.07 + faces 90 + 0 1 10 2 0 1 9 3 + 0 10 9 2 0 9 8 3 + 1 2 11 4 1 2 10 3 + 1 11 10 4 1 10 9 3 + 2 3 12 2 2 57 58 3 + 2 12 11 2 2 58 10 3 + 3 4 13 4 3 4 12 3 + 3 13 12 4 3 12 11 3 + 4 5 14 2 4 5 13 3 + 4 14 13 2 4 13 12 3 + 5 6 15 4 5 6 14 3 + 5 15 14 4 5 14 13 3 + 6 7 16 2 6 7 15 3 + 6 16 15 2 6 15 14 3 + 7 8 16 4 7 56 15 3 + 9 10 18 2 8 9 17 3 + 9 18 17 2 8 17 16 3 + 10 11 19 4 9 10 18 3 + 10 19 18 4 9 18 17 3 + 11 12 20 2 10 58 59 3 + 11 20 19 2 10 59 18 3 + 12 13 21 4 11 12 20 3 + 12 21 20 4 11 20 19 3 + 13 14 22 2 12 13 21 3 + 13 22 21 2 12 21 20 3 + 14 15 23 4 13 14 22 3 + 14 23 22 4 13 22 21 3 + 15 16 24 2 14 15 23 3 + 15 24 23 2 14 23 22 3 + 16 8 24 4 15 56 23 3 + 17 18 26 2 16 17 60 3 + 17 26 25 2 16 60 61 3 + 18 19 27 4 17 18 62 3 + 18 27 26 4 17 62 60 3 + 19 20 28 2 18 59 63 3 + 19 28 27 2 18 63 62 3 + 20 21 29 4 19 20 28 3 + 20 29 28 4 19 28 27 3 + 21 22 30 2 20 21 29 3 + 21 30 29 2 20 29 28 3 + 22 23 31 4 21 22 30 3 + 22 31 30 4 21 30 29 3 + 23 24 32 2 22 23 31 3 + 23 32 31 2 22 31 30 3 + 24 8 32 4 23 56 31 3 + 25 26 34 2 24 25 33 3 + 25 34 33 2 24 33 32 3 + 26 27 35 4 25 26 34 3 + 26 35 34 4 25 34 33 3 + 27 28 36 2 26 64 65 3 + 27 36 35 2 26 65 34 3 + 28 29 37 4 27 28 36 3 + 28 37 36 4 27 36 35 3 + 29 30 38 2 28 29 37 3 + 29 38 37 2 28 37 36 3 + 30 31 39 4 29 30 38 3 + 30 39 38 4 29 38 37 3 + 31 32 40 2 30 31 39 3 + 31 40 39 2 30 39 38 3 + 32 8 40 4 31 56 39 3 + 33 34 42 2 32 33 41 3 + 33 42 41 2 32 41 40 3 + 34 35 43 4 33 34 42 3 + 34 43 42 4 33 42 41 3 + 35 36 44 2 34 65 66 3 + 35 44 43 2 34 66 42 3 + 36 37 45 4 35 36 44 3 + 36 45 44 4 35 44 43 3 + 37 38 46 2 36 37 45 3 + 37 46 45 2 36 45 44 3 + 38 39 47 4 37 38 46 3 + 38 47 46 4 37 46 45 3 + 39 40 48 2 38 39 47 3 + 39 48 47 2 38 47 46 3 + 40 8 48 4 39 56 47 3 + 41 42 50 2 40 41 49 3 + 41 50 49 2 40 49 48 3 + 42 43 51 4 41 42 50 3 + 42 51 50 4 41 50 49 3 + 43 44 52 2 42 66 67 3 + 43 52 51 2 42 67 50 3 + 44 45 53 4 43 44 52 3 + 44 53 52 4 43 52 51 3 + 45 46 54 2 44 45 53 3 + 45 54 53 2 44 53 52 3 + 46 47 55 4 45 46 54 3 + 46 55 54 4 45 54 53 3 + 47 48 56 2 46 47 55 3 + 47 56 55 2 46 55 54 3 + 48 8 56 4 47 56 55 3 + tverts 68 + 1.0244 1.11821 0 + 0.981942 1.11821 0 + 0.816789 1.11821 0 + 1.17905 1.11821 0 + 0.962684 1.11821 0 + 0.707105 1.11821 0 + 0.437613 1.11821 0 + 0.170336 1.11821 0 + 1.0244 0.73637 0 + 0.981942 0.73601 0 + 0.816789 0.74967 0 + 1.13485 0.78245 0 + 0.925853 0.83845 0 + 0.678984 0.9046 0 + 0.418673 0.97435 0 + 0.160504 1.04353 0 + 1.0244 0.38056 0 + 0.981942 0.37986 0 + 0.816789 0.40624 0 + 1.00525 0.46958 0 + 0.817872 0.57776 0 + 0.596534 0.70555 0 + 0.363147 0.8403 0 + 0.131678 0.97394 0 + 0.924987 -0.024404 0 + 0.925981 0.01806 0 + 0.888662 0.18321 0 + 0.799092 0.20091 0 + 0.646098 0.3539 0 + 0.465377 0.53462 0 + 0.274816 0.72518 0 + 0.0858231 0.91418 0 + 0.619442 -0.024403 0 + 0.620145 0.01806 0 + 0.593757 0.18321 0 + 0.530421 -0.00525 0 + 0.422238 0.18213 0 + 0.294449 0.40347 0 + 0.159702 0.63685 0 + 0.0260638 0.86832 0 + 0.263628 -0.024403 0 + 0.263991 0.01806 0 + 0.250332 0.18321 0 + 0.217547 -0.134847 0 + 0.161547 0.07415 0 + 0.0953987 0.32102 0 + 0.0256488 0.58133 0 + -0.0435275 0.8395 0 + -0.118209 -0.024403 0 + -0.118209 0.01806 0 + -0.118209 0.18321 0 + -0.118208 -0.17905 0 + -0.118208 0.03732 0 + -0.118208 0.29289 0 + -0.118208 0.56239 0 + -0.118208 0.82966 0 + -0.118208 1.11821 0 + 0.627867 1.11821 0 + 0.627867 0.78245 0 + 0.627867 0.46958 0 + 0.981941 0.07402 0 + 1.0244 0.07501 0 + 0.816789 0.11134 0 + 0.627866 0.20091 0 + 0.799092 0.37213 0 + 0.530421 0.37213 0 + 0.217547 0.37213 0 + -0.118208 0.37213 0 + endnode + node trimesh line02 + parent tdc01_a01_03 + position 1.19 0 3.82 + orientation 0 0 0 0 + wirecolor 0.894118 0.839216 0.6 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -119 0 -16.5 + bitmap tdc01_trim00 + tilefade 0 + verts 21 + 3.81 -5 -0.62 + 1.45 -5 -0.62 + 1.15 -5 0.29 + 3.81 -2.41 -0.62 + 1.19 -3.02 -0.62 + 0.9 -3.1 0.29 + 3.81 0 -0.62 + 0.43 -1.18 -0.62 + 0.16 -1.33 0.29 + 3.81 5 -0.62 + -0.78 0.41 -0.62 + -1 0.19 0.29 + -1.19 5 -0.62 + -2.37 1.62 -0.62 + -2.52 1.35 0.29 + -3.6 5 -0.62 + -4.21 2.39 -0.62 + -4.29 2.09 0.29 + -6.19 5 -0.62 + -6.19 2.65 -0.62 + -6.19 2.34 0.29 + faces 24 + 0 1 4 1 0 21 22 3 + 0 4 3 1 0 22 3 3 + 1 2 5 4 1 2 5 3 + 1 5 4 4 1 5 4 3 + 3 4 7 1 3 22 23 3 + 3 7 6 1 3 23 6 3 + 4 5 8 4 4 5 8 3 + 4 8 7 4 4 8 7 3 + 6 7 10 1 6 23 24 3 + 6 10 9 1 6 24 9 3 + 7 8 11 4 7 8 25 3 + 7 11 10 4 7 25 26 3 + 9 10 13 1 9 24 27 3 + 9 13 12 1 9 27 12 3 + 10 11 14 4 10 11 14 3 + 10 14 13 4 10 14 13 3 + 12 13 16 1 12 27 28 3 + 12 16 15 1 12 28 15 3 + 13 14 17 4 13 14 17 3 + 13 17 16 4 13 17 16 3 + 15 16 19 1 15 28 29 3 + 15 19 18 1 15 29 18 3 + 16 17 20 4 16 17 20 3 + 16 20 19 4 16 20 19 3 + tverts 30 + 2.375 2.375 0 + -0.375 0.9935 0 + -0.375 0.7205 0 + 2.375 1.40375 0 + 0.3675 0.9935 0 + 0.3375 0.7205 0 + 2.375 0.5 0 + 1.0575 0.9935 0 + 1.00125 0.7205 0 + 2.375 -1.375 0 + -0.65375 0.9935 0 + -0.57125 0.7205 0 + 0.5 -1.375 0 + -0.0575 0.9935 0 + -0.00125 0.7205 0 + -0.40375 -1.375 0 + 0.6325 0.9935 0 + 0.6625 0.7205 0 + -1.375 -1.375 0 + 1.375 0.9935 0 + 1.375 0.7205 0 + 1.49 2.375 0 + 1.3925 1.6325 0 + 1.1075 0.9425 0 + 0.65375 0.34625 0 + 1.57125 0.7205 0 + 1.65375 0.9935 0 + 0.0575 -0.1075 0 + -0.6325 -0.39625 0 + -1.375 -0.49375 0 + endnode + node trimesh meshtdc2586 + parent tdc01_a01_03 + position -5 5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 50 -212.5 37.5 + bitmap tdc01_sandstone + verts 7 + 1 -2 0.5 + 1 -2.4 0 + 1 -2 0 + 0 -2.1 0.75 + 1 -2.1 0.75 + 0 -2.4 0 + 1 -1.85 0.75 + faces 5 + 0 1 2 1 0 1 2 5 + 3 1 4 2 3 1 4 5 + 1 3 5 2 1 3 5 5 + 4 1 0 1 4 1 0 5 + 6 4 0 1 6 4 0 5 + tverts 7 + 1.3556 0.707593 0 + 1 0 0 + 1.4227 0 0 + 0.5 0.999796 0 + 1 0.999796 0 + 0.5 0 0 + 1.38388 0.999796 0 + endnode + node trimesh meshtdc2590 + parent tdc01_a01_03 + position 5 -5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -212.5 50 37.5 + bitmap tdc01_sandstone + verts 7 + -2.4 1 0 + -2 1 0.5 + -2 1 0 + -2.1 0 0.75 + -2.1 1 0.75 + -2.4 0 0 + -1.85 1 0.75 + faces 5 + 0 1 2 1 0 1 2 5 + 0 3 4 2 0 3 4 5 + 3 0 5 2 3 0 5 5 + 0 4 1 1 0 4 1 5 + 4 6 1 1 4 6 1 5 + tverts 7 + 1 0 0 + 1.3556 0.707593 0 + 1.4227 0 0 + 0.5 0.999796 0 + 1 0.999796 0 + 0.5 0 0 + 1.38388 0.999796 0 + endnode + node trimesh mesh487 + parent tdc01_a01_03 + position 3.17 -4.52 1.5 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -14.5 2 32.5 + bitmap tdc01_wall_uni + verts 6 + -0.02 0.52 -0.55 + -0.27 0.52 -0.55 + -0.27 0.52 1.2 + -0.02 0.52 1.2 + -0.27 -0.48 -0.55 + -0.27 -0.48 1.2 + faces 4 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + 1 4 5 2 1 4 5 3 + 5 2 1 2 5 2 1 3 + tverts 6 + 0.558401 0.485851 0 + 0.598784 0.485851 0 + 0.598784 0.977969 0 + 0.558401 0.977969 0 + 0.804707 0.485851 0 + 0.804707 0.977969 0 + endnode + node trimesh meshtdc2589 + parent tdc01_a01_03 + position 5 -5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -210 50 275 + bitmap tdc01_sandstone + verts 6 + -2.35 1 3 + -1.85 1 3 + -1.85 1 2.5 + -2.1 1 2.5 + -2.35 0 3 + -2.1 0 2.5 + faces 4 + 0 1 2 1 0 1 2 5 + 3 4 0 2 3 4 0 5 + 4 3 5 2 4 3 5 5 + 3 0 2 1 3 0 2 5 + tverts 6 + 0 0.5 0 + -0.205 0.5 0 + -0.125 0.999501 0 + 0 0.999501 0 + 0.5 0.5 0 + 0.5 0.999501 0 + endnode + node aabb meshtdc5076 + parent tdc01_a01_03 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 1 1 1 + bitmap NULL + render 0 + shadow 0 + verts 31 + 3 -4 0.20361 + 3 1.48 0.20361 + 2.6 -4 0.20361 + -5 2.6 0.20361 + -5 0.399999 0.20361 + -4 2.6 0.20361 + -5 -0.200001 0.00361 + -0.200001 -0.210001 0.00361 + 0.359999 0.359999 0.20361 + -5 -5 0.00361 + -0.200001 -5 0.00361 + 0.399999 -5 0.20361 + 3.15 0.799999 3.20361 + 1.38 1.39 2.35361 + 1.75 0.839999 0.20361 + 2.6 -5 0.20361 + -4 3 0.20361 + 1.48 3 0.20361 + 0.839999 1.75 0.20361 + -4 3.15 3.20361 + -5 2.65 3.20361 + -4 2.65 3.20361 + 0.799999 3.15 3.20361 + 3.15 2 3.20361 + 5 -5 3.20361 + 5 5 3.20361 + 3.15 -4 3.20361 + 2.65 -5 3.20361 + 2.65 -4 3.20361 + -5 5 3.20361 + 2 3.15 3.20361 + faces 48 + 0 1 2 1 0 0 0 4 + 3 4 5 1 0 0 0 4 + 4 6 7 2 0 0 0 4 + 7 8 4 4 0 0 0 4 + 9 7 6 1 0 0 0 4 + 8 7 10 8 0 0 0 4 + 10 11 8 2 0 0 0 4 + 9 10 7 1 0 0 0 4 + 12 13 14 2 0 0 0 2 + 15 2 11 1 0 0 0 4 + 5 4 8 1 0 0 0 4 + 16 5 17 1 0 0 0 4 + 8 2 14 1 0 0 0 4 + 2 1 14 1 0 0 0 4 + 8 18 5 1 0 0 0 4 + 19 5 16 2 0 0 0 2 + 20 5 21 4 0 0 0 2 + 5 20 3 4 0 0 0 2 + 21 5 19 2 0 0 0 2 + 19 17 22 4 0 0 0 2 + 17 18 22 2 0 0 0 2 + 17 19 16 4 0 0 0 2 + 0 12 1 4 0 0 0 2 + 13 12 23 1 0 0 0 2 + 24 25 12 8 0 0 0 2 + 12 26 24 8 0 0 0 2 + 26 27 24 8 0 0 0 2 + 28 27 26 8 0 0 0 2 + 20 19 29 8 0 0 0 2 + 20 21 19 8 0 0 0 2 + 29 19 22 8 0 0 0 2 + 29 22 25 8 0 0 0 2 + 2 26 0 2 0 0 0 2 + 2 27 28 4 0 0 0 2 + 27 2 15 4 0 0 0 2 + 2 28 26 2 0 0 0 2 + 0 26 12 4 0 0 0 2 + 17 5 18 1 0 0 0 4 + 12 14 1 16 0 0 0 2 + 18 8 14 1 0 0 0 4 + 11 2 8 1 0 0 0 4 + 13 22 18 16 0 0 0 2 + 14 13 18 4 0 0 0 2 + 22 30 25 8 0 0 0 2 + 23 12 25 8 0 0 0 2 + 13 23 25 32 0 0 0 2 + 30 13 25 64 0 0 0 2 + 22 13 30 128 0 0 0 2 + aabb -5 -5 0.00361 5 5 3.20361 -1 + -5 -5 0.00361 5 5 3.20361 -1 + -5 -5 0.00361 0.799999 5 3.20361 -1 + -5 -5 0.00361 0.359999 2.6 0.20361 -1 + -5 -5 0.00361 -0.200001 0.399999 0.20361 -1 + -5 -5 0.00361 -0.200001 -0.200001 0.00361 4 + -5 -0.210001 0.00361 -0.200001 0.399999 0.20361 2 + -5 0.359999 0.20361 0.359999 2.6 0.20361 -1 + -5 0.399999 0.20361 -4 2.6 0.20361 1 + -5 0.359999 0.20361 0.359999 2.6 0.20361 10 + -5 2.6 0.20361 0.799999 5 3.20361 -1 + -5 2.6 0.20361 -4 5 3.20361 -1 + -5 2.6 0.20361 -4 2.65 3.20361 -1 + -5 2.6 0.20361 -4 2.65 3.20361 17 + -5 2.6 0.20361 -4 2.65 3.20361 16 + -5 2.65 3.20361 -4 5 3.20361 -1 + -5 2.65 3.20361 -4 3.15 3.20361 29 + -5 2.65 3.20361 -4 5 3.20361 28 + -5 2.6 0.20361 0.799999 5 3.20361 -1 + -4 2.6 0.20361 -4 3.15 3.20361 -1 + -4 2.6 0.20361 -4 3.15 3.20361 15 + -4 2.6 0.20361 -4 3.15 3.20361 18 + -5 3.15 3.20361 0.799999 5 3.20361 30 + -5 -5 0.00361 5 5 3.20361 -1 + -5 -5 0.00361 1.48 3.15 3.20361 -1 + -5 -5 0.00361 0.359999 0.399999 0.20361 -1 + -5 -5 0.00361 -0.200001 -0.210001 0.00361 7 + -5 -0.210001 0.00361 0.359999 0.399999 0.20361 3 + -4 2.6 0.20361 1.48 3.15 3.20361 -1 + -4 2.6 0.20361 1.48 3 0.20361 11 + -4 3 0.20361 1.48 3.15 3.20361 21 + -5 -5 0.00361 5 5 3.20361 -1 + -4 0.359999 0.20361 1.48 3.15 3.20361 -1 + -4 0.359999 0.20361 0.839999 2.6 0.20361 14 + -4 1.75 0.20361 1.48 3.15 3.20361 -1 + -4 3 0.20361 1.48 3.15 3.20361 19 + -4 1.75 0.20361 1.48 3 0.20361 37 + -5 -5 0.00361 5 5 3.20361 -1 + -0.200001 -5 0.00361 0.359999 0.359999 0.20361 5 + -5 -5 0.00361 5 5 3.20361 -1 + -0.200001 -5 0.00361 0.399999 0.359999 0.20361 6 + -5 3.15 3.20361 5 5 3.20361 31 + 0.359999 -5 0.20361 5 5 3.20361 -1 + 0.359999 -5 0.20361 5 1.48 3.20361 -1 + 0.399999 -5 0.20361 5 -4 3.20361 -1 + 0.399999 -5 0.20361 2.65 -4 3.20361 -1 + 0.399999 -5 0.20361 2.6 -4 0.20361 9 + 2.6 -5 0.20361 2.65 -4 3.20361 -1 + 2.6 -5 0.20361 2.65 -4 3.20361 34 + 2.6 -5 0.20361 2.65 -4 3.20361 33 + 2.6 -5 0.20361 5 -4 3.20361 -1 + 2.6 -4 0.20361 3.15 -4 3.20361 -1 + 2.6 -4 0.20361 3.15 -4 3.20361 32 + 2.6 -4 0.20361 3.15 -4 3.20361 35 + 2.65 -5 3.20361 5 -4 3.20361 -1 + 2.65 -5 3.20361 3.15 -4 3.20361 27 + 2.65 -5 3.20361 5 -4 3.20361 26 + 0.359999 -5 0.20361 5 1.48 3.20361 -1 + 0.359999 -5 0.20361 5 0.799999 3.20361 -1 + 0.359999 -5 0.20361 5 0.799999 3.20361 -1 + 0.359999 -5 0.20361 2.6 0.359999 0.20361 40 + 3.15 -5 3.20361 5 0.799999 3.20361 25 + 3 -4 0.20361 3.15 0.799999 3.20361 36 + 0.359999 -4 0.20361 3 1.48 0.20361 -1 + 2.6 -4 0.20361 3 1.48 0.20361 0 + 0.359999 -4 0.20361 2.6 0.839999 0.20361 12 + 0.359999 -5 0.20361 5 5 3.20361 -1 + 0.359999 -5 0.20361 5 5 3.20361 -1 + 1.75 -5 0.20361 5 5 3.20361 -1 + 1.75 -4 0.20361 3.15 1.48 3.20361 -1 + 3 -4 0.20361 3.15 1.48 3.20361 22 + 1.75 -4 0.20361 3 1.48 0.20361 13 + 3.15 -5 3.20361 5 5 3.20361 24 + 0.359999 0.359999 0.20361 3.15 2 3.20361 -1 + 0.359999 0.359999 0.20361 3.15 1.75 3.20361 -1 + 0.359999 0.359999 0.20361 1.75 1.75 0.20361 39 + 0.839999 0.799999 0.20361 3.15 1.75 3.20361 -1 + 0.839999 0.839999 0.20361 1.75 1.75 2.35361 42 + 1.75 0.799999 0.20361 3.15 1.48 3.20361 38 + 1.38 0.799999 0.20361 3.15 2 3.20361 -1 + 1.38 0.799999 0.20361 3.15 1.39 3.20361 8 + 1.38 0.799999 2.35361 3.15 2 3.20361 23 + 0.799999 0.799999 0.20361 5 5 3.20361 -1 + 0.799999 0.799999 0.20361 5 5 3.20361 -1 + 0.799999 1.39 0.20361 1.38 3.15 3.20361 41 + 0.799999 0.799999 0.20361 5 5 3.20361 -1 + 0.799999 0.799999 0.20361 5 5 3.20361 -1 + 0.799999 1.39 2.35361 2 3.15 3.20361 47 + 0.799999 0.799999 0.20361 5 5 3.20361 -1 + 3.15 0.799999 3.20361 5 5 3.20361 44 + 0.799999 1.75 0.20361 1.48 3.15 3.20361 20 + 1.38 1.39 2.35361 5 5 3.20361 45 + 0.799999 1.39 2.35361 5 5 3.20361 -1 + 0.799999 3.15 3.20361 5 5 3.20361 43 + 1.38 1.39 2.35361 5 5 3.20361 46 + endnode + node trimesh meshtdc2579 + parent tdc01_a01_03 + position 3 3 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -42.5 -42.5 109.5 + bitmap tdc01_wall_uni + verts 6 + -1 0.15 1.44 + -1 0.15 0.75 + -0.89 0.04 0.75 + 0.15 -1 0.75 + 0.15 -1 1.38 + 0.01 -0.86 0.75 + faces 2 + 0 1 2 1 0 1 2 3 + 3 4 5 1 3 4 5 3 + tverts 6 + 0.411578 0.182582 0 + 0.411578 0.00698147 0 + 0.453408 0.00698147 0 + 0.903199 0.00698147 0 + 0.903199 0.166626 0 + 0.849419 0.00698147 0 + endnode + node trimesh meshtdc0829 + parent tdc01_a01_03 + position 2.26 2.39 2.63 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -28.5 -41.5 -55.5 + bitmap tdc01_statue00 + verts 51 + -0.81 -0.36 -0.06 + -0.94 -0.09 0.08 + -1.12 -0.13 -0.72 + -1.03 0.21 -0.24 + -0.55 0.76 -0.2 + -0.54 0.76 -0.77 + -0.95 -0.92 -0.09 + -0.94 -0.92 -0.28 + -0.79 -1.08 -0.09 + -1.06 -0.65 -1.68 + -1.18 -0.72 -1.53 + -0.26 0.55 -1.68 + -0.39 0.48 -1.53 + -0.15 0.65 -1.68 + -0.97 -0.51 -0.48 + -0.98 -1.11 -1.53 + -0.72 -0.85 -0.28 + -0.39 -0.79 0.48 + -0.66 -0.52 0.48 + -0.91 -0.14 0.49 + -0.76 0.47 -0.74 + -0.63 -0.47 0 + -0.95 0.24 0.07 + -0.95 0.24 0.57 + -1.46 0.76 0.57 + -1.46 0.76 0.07 + -0.79 -1.07 -0.28 + -0.61 0.76 0.08 + -0.88 -1.01 -1.68 + -0.26 0.76 -0.99 + 0.04 -1.07 0.08 + -0.23 -0.94 -0.06 + 0 -1.14 -0.76 + 0.89 -0.7 -0.2 + 0.34 -1.06 -0.24 + 0.89 -0.66 -0.68 + -0.59 -1.31 -1.53 + -0.52 -1.19 -1.68 + 0.55 -0.48 -1.68 + 0.61 -0.53 -1.53 + 0.75 -0.25 -1.68 + -0.38 -1.1 -0.48 + -0.01 -1.04 0.49 + 0.6 -0.85 -0.76 + -0.34 -0.76 0 + 0.37 -1.08 0.57 + 0.37 -1.08 0.07 + 0.89 -1.59 0.57 + 0.89 -1.59 0.07 + 0.89 -0.76 0.08 + 0.89 -0.39 -1.05 + faces 73 + 0 1 2 1 0 1 2 5 + 3 4 5 2 3 4 5 3 + 6 7 8 1 6 7 8 5 + 9 10 11 2 9 10 11 3 + 11 12 13 2 11 12 13 3 + 7 6 14 1 7 6 14 5 + 10 15 16 1 10 15 16 5 + 10 2 12 1 10 17 12 5 + 9 15 10 1 9 15 10 5 + 8 17 18 1 8 18 19 5 + 1 18 19 1 1 19 20 5 + 20 3 5 2 21 3 5 3 + 14 0 2 1 14 0 2 5 + 1 21 18 1 1 22 19 5 + 22 23 24 4 23 24 25 3 + 24 25 22 4 25 26 23 3 + 8 18 6 1 8 19 6 5 + 6 21 0 1 6 22 0 5 + 6 0 14 1 6 0 14 5 + 7 26 8 1 7 27 8 5 + 6 18 21 1 6 19 22 5 + 19 23 22 1 20 28 29 5 + 1 22 3 1 1 29 3 5 + 2 3 20 1 17 3 21 5 + 10 12 11 1 10 12 11 5 + 2 1 3 1 2 1 3 5 + 3 22 4 2 3 29 4 3 + 22 27 4 2 29 30 4 3 + 9 28 15 1 9 31 15 5 + 10 16 14 1 10 16 14 5 + 14 2 10 1 14 17 10 5 + 2 20 12 1 17 21 12 5 + 12 20 13 2 12 32 33 3 + 20 29 13 2 21 5 33 3 + 1 0 21 1 1 0 22 5 + 1 19 22 1 1 20 29 5 + 30 31 32 1 34 35 36 5 + 33 34 35 2 37 38 39 3 + 36 37 38 2 40 41 42 3 + 39 38 40 2 43 42 44 3 + 8 26 41 1 8 27 45 5 + 15 36 16 1 15 40 16 5 + 32 36 39 1 46 40 43 5 + 15 37 36 1 15 41 40 5 + 17 30 42 1 18 34 47 5 + 34 43 35 2 38 48 39 3 + 31 41 32 1 35 45 36 5 + 44 30 17 1 49 34 18 5 + 45 46 47 4 50 51 52 3 + 48 47 46 4 53 52 51 3 + 44 8 31 1 49 8 35 5 + 31 8 41 1 35 8 45 5 + 17 8 44 1 18 8 49 5 + 45 42 46 1 54 47 55 5 + 46 30 34 1 55 34 38 5 + 34 32 43 1 38 46 48 5 + 39 36 38 1 43 40 42 5 + 30 32 34 1 34 36 38 5 + 46 34 33 2 55 38 37 3 + 49 46 33 2 56 55 37 3 + 28 37 15 1 31 41 15 5 + 16 36 41 1 16 40 45 5 + 32 41 36 1 46 45 40 5 + 43 32 39 1 48 46 43 5 + 43 39 40 2 48 43 57 3 + 35 43 50 2 39 48 58 3 + 31 30 44 1 35 34 49 5 + 42 30 46 1 47 34 55 5 + 50 43 40 2 58 48 57 3 + 20 5 29 2 21 5 32 3 + 7 14 16 2 59 60 61 1 + 16 41 26 4 61 62 63 1 + 16 26 7 8 61 63 59 1 + tverts 64 + 0.394406 0.586675 0 + 0.371402 0.625649 0 + 0.349385 0.394383 0 + 0.326501 0.521143 0 + 0.0569294 0.525538 0 + 0.0852208 0.416753 0 + 0.483009 0.555208 0 + 0.482925 0.510819 0 + 0.516991 0.555208 0 + 0.436446 0.178587 0 + 0.436684 0.21475 0 + 0.190579 0.178587 0 + 0.185063 0.21475 0 + 0.100686 0.178587 0 + 0.412887 0.500511 0 + 0.5 0.21475 0 + 0.5 0.510818 0 + 0.350936 0.39603 0 + 0.527929 0.703798 0 + 0.472071 0.703798 0 + 0.385399 0.725875 0 + 0.20958 0.39603 0 + 0.467959 0.607186 0 + 0.273022 0.594123 0 + 0.273022 0.712847 0 + 0.00334292 0.712846 0 + 0.00334285 0.594122 0 + 0.517075 0.510819 0 + 0.319859 0.744248 0 + 0.319859 0.625524 0 + 0.0795196 0.592561 0 + 0.5 0.178587 0 + 0.0928332 0.337291 0 + 0.104573 0.21475 0 + 0.628598 0.635311 0 + 0.589806 0.58909 0 + 0.648642 0.394383 0 + 0.943071 0.525538 0 + 0.673499 0.535635 0 + 0.914779 0.416753 0 + 0.563316 0.21475 0 + 0.563553 0.178587 0 + 0.809421 0.178587 0 + 0.814937 0.21475 0 + 0.899314 0.178587 0 + 0.587113 0.500511 0 + 0.649064 0.39603 0 + 0.614601 0.72829 0 + 0.79042 0.39603 0 + 0.532041 0.607186 0 + 0.726978 0.712847 0 + 0.726978 0.594123 0 + 0.996657 0.712846 0 + 0.996657 0.594122 0 + 0.680141 0.75391 0 + 0.680141 0.649678 0 + 0.92048 0.592561 0 + 0.895427 0.180933 0 + 0.906295 0.328193 0 + 0.49077 0.485418 0 + 0.452912 0.476712 0 + 0.5 0.478627 0 + 0.547088 0.476712 0 + 0.50923 0.485418 0 + endnode + node trimesh meshtdc2609 + parent tdc01_a01_03 + position 3.17 3.19 -0.06 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -359.5 -361.5 189 + bitmap tdc01_wall_uni + verts 24 + -0.02 -3.19 1.01 + -0.02 -5.19 1.01 + -0.02 -5.19 2.76 + -0.02 -3.19 2.76 + -0.02 -7.19 1.01 + -0.02 -7.19 2.76 + -0.02 -2.39 2.76 + -0.02 -1.46 2.01 + -0.02 -1.19 1.01 + -0.02 -1.19 1.64 + -0.02 -1.5 2.49 + -0.02 -1.56 2.77 + -3.17 -0.04 1.01 + -1.17 -0.04 1.01 + -1.45 -0.04 1.92 + -2.37 -0.04 2.76 + -3.17 -0.04 2.76 + -1.46 -0.04 2.49 + -1.52 -0.04 2.77 + -1.17 -0.04 1.7 + -5.17 -0.04 1.01 + -5.17 -0.04 2.76 + -7.17 -0.04 1.01 + -7.17 -0.04 2.76 + faces 20 + 0 1 2 1 0 1 2 6 + 0 2 3 1 0 2 3 6 + 1 4 5 1 4 5 6 6 + 1 5 2 1 4 6 7 6 + 6 7 0 1 8 9 10 6 + 8 0 7 1 11 10 9 6 + 6 0 3 1 8 10 12 6 + 8 7 9 1 11 9 13 6 + 7 6 10 1 9 8 14 6 + 10 6 11 1 14 8 15 6 + 12 13 14 1 16 17 18 6 + 12 15 16 1 16 19 20 6 + 12 17 15 1 16 21 19 6 + 12 14 17 1 16 18 21 6 + 15 17 18 1 19 21 22 6 + 14 13 19 1 18 17 23 6 + 20 12 16 1 24 25 26 6 + 20 16 21 1 24 26 27 6 + 22 20 21 1 28 29 30 6 + 22 21 23 1 28 30 31 6 + tverts 32 + 0.51123 0.0029153 0 + 0.0387997 0.0029153 0 + 0.0387997 0.475346 0 + 0.51123 0.475346 0 + 0.123853 0.0112363 0 + 0.603796 0.0112363 0 + 0.603796 0.491179 0 + 0.123853 0.491179 0 + 0.08333 0.495284 0 + -0.136571 0.285037 0 + 0.2832 0.000728618 0 + -0.211358 0.000728618 0 + 0.2832 0.495284 0 + -0.211358 0.177588 0 + -0.136525 0.419287 0 + -0.123667 0.495284 0 + 0.0530341 0.00734886 0 + 0.54274 0.00734886 0 + 0.483239 0.261049 0 + 0.248857 0.497055 0 + 0.053034 0.497055 0 + 0.479512 0.420196 0 + 0.462465 0.497055 0 + 0.54274 0.200447 0 + 0.395273 0.486829 0 + 0.904707 0.486829 0 + 0.904707 0.996263 0 + 0.395273 0.996263 0 + 0.708666 0.505072 0 + 1.19128 0.505072 0 + 1.19128 0.987681 0 + 0.708666 0.987681 0 + endnode + node trimesh meshtdc2610 + parent tdc01_a01_03 + position 3.16 3.18 0.27 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -358.5 -360.5 30.5 + bitmap tdc01_trim00 + verts 26 + -0.16 -3.18 0.43 + -0.16 -4.18 -0.07 + -0.16 -5.18 0.43 + -0.16 -2.18 -0.07 + -0.01 -5.18 0.68 + -0.01 -3.18 0.68 + -0.16 -1.5 0.43 + -0.01 -1.18 0.68 + -0.16 -1.7 -0.07 + -0.16 -6.18 -0.07 + -0.16 -7.18 -0.07 + -0.16 -7.18 0.43 + -0.01 -7.18 0.68 + -1.68 -0.18 -0.07 + -1.47 -0.18 0.43 + -2.16 -0.18 -0.07 + -1.16 -0.03 0.68 + -3.16 -0.03 0.68 + -3.16 -0.18 0.43 + -4.16 -0.18 -0.07 + -5.16 -0.18 0.43 + -5.16 -0.03 0.68 + -6.16 -0.18 -0.07 + -7.16 -0.18 0.43 + -7.16 -0.18 -0.07 + -7.16 -0.03 0.68 + faces 26 + 0 1 2 1 0 1 2 5 + 1 0 3 1 1 0 3 5 + 0 2 4 2 4 5 6 5 + 4 5 0 2 6 7 4 5 + 6 3 0 1 8 3 0 5 + 6 0 5 2 9 5 6 5 + 7 6 5 2 7 9 6 5 + 6 8 3 1 8 10 3 5 + 9 10 11 1 11 12 13 5 + 9 2 1 1 11 2 1 5 + 2 11 12 2 4 5 6 5 + 12 4 2 2 6 7 4 5 + 13 14 15 1 14 15 16 5 + 16 17 18 2 6 7 4 5 + 18 14 16 2 4 17 6 5 + 14 18 15 1 15 18 16 5 + 19 15 18 1 19 16 18 5 + 18 20 19 1 18 20 19 5 + 20 18 17 2 4 5 6 5 + 17 21 20 2 6 7 4 5 + 22 19 20 1 21 19 20 5 + 22 23 24 1 21 22 23 5 + 23 20 21 2 4 5 6 5 + 21 25 23 2 6 7 4 5 + 2 9 11 1 2 11 13 5 + 23 22 20 1 22 21 20 5 + tverts 24 + 0.00250548 0.736489 0 + 0.502506 0.127343 0 + 1.00251 0.736488 0 + -0.497495 0.127343 0 + 0.00247307 0.75 0 + 1.00147 0.75 0 + 0.999501 0.999501 0 + 0.000499547 0.999501 0 + -0.83862 0.736489 0 + 0.160198 0.75 0 + -0.739465 0.127343 0 + 1.50251 0.127342 0 + 2.00251 0.127342 0 + 2.00251 0.736488 0 + 1.49535 0.165771 0 + 1.59616 0.661802 0 + 1.25337 0.165771 0 + 0.844237 0.75 0 + 0.753374 0.661803 0 + 0.253374 0.165771 0 + -0.246626 0.661803 0 + -0.746315 0.165772 0 + -1.24663 0.661804 0 + -1.24663 0.165772 0 + endnode + node trimesh mesh488 + parent tdc01_a01_03 + position -4.33 3.19 1.5 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -17 -16.5 32.5 + bitmap tdc01_wall_uni + verts 6 + 0.33 -0.29 -0.55 + 0.33 -0.04 -0.55 + 0.33 -0.29 1.2 + 0.33 -0.04 1.2 + -0.67 -0.29 -0.55 + -0.67 -0.29 1.2 + faces 4 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 0 5 2 4 0 5 3 + 2 5 0 2 2 5 0 3 + tverts 6 + 0.679341 0.0178679 0 + 0.717293 0.0178679 0 + 0.679341 0.480368 0 + 0.717293 0.480368 0 + 0.485812 0.0178679 0 + 0.485812 0.480368 0 + endnode + node trimesh meshtdc2584 + parent tdc01_a01_03 + position -5 5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 50 -210 275 + bitmap tdc01_sandstone + verts 6 + 1 -1.85 3 + 1 -2.35 3 + 1 -1.85 2.5 + 0 -2.35 3 + 1 -2.1 2.5 + 0 -2.1 2.5 + faces 4 + 0 1 2 1 0 1 2 5 + 3 4 1 2 3 4 1 5 + 4 3 5 2 4 3 5 5 + 1 4 2 1 1 4 2 5 + tverts 6 + -0.205 0.5 0 + 0 0.5 0 + -0.125 0.999501 0 + 0.5 0.5 0 + 0 0.999501 0 + 0.5 0.999501 0 + endnode + node trimesh object57 + parent tdc01_a01_03 + position 3 3 0.9 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -100.5 -100.5 -32.5 + bitmap tdc01_statue00 + verts 31 + -1.52 0 -0.7 + -1.39 -0.11 0.05 + -1.31 0 -0.2 + -2.04 -1.37 0.05 + -1.7 -1.7 -0.03 + -1.7 -1.7 0.05 + -1.74 -1.32 -0.7 + -1.41 -1.41 -0.7 + -1.73 -1.33 -0.32 + -2.16 -1.25 -0.7 + -1.94 -1.47 -0.21 + -1.51 -1.51 -0.19 + -1.98 -1.43 -0.7 + -1.8 -1.26 0.05 + -1.62 -1.62 0.05 + -1 -0.06 0.05 + -0.89 0.04 0.05 + -1 0.15 0.05 + -1.37 -2.04 0.05 + -1.32 -1.74 -0.7 + -1.33 -1.73 -0.32 + -1.25 -2.16 -0.7 + 0 -1.52 -0.7 + 0.15 -1 0.05 + -0.11 -1.39 0.05 + 0 -1.32 -0.2 + -1.47 -1.94 -0.21 + -1.43 -1.98 -0.7 + -1.26 -1.8 0.05 + -0.19 -1.09 0.05 + 0.01 -0.86 0.05 + faces 40 + 0 1 2 1 0 1 2 3 + 3 4 5 1 3 4 5 5 + 6 7 8 1 6 7 8 5 + 0 9 3 1 0 9 3 3 + 1 0 3 1 1 0 3 3 + 10 11 4 1 10 11 4 5 + 9 12 3 1 9 12 3 5 + 3 10 4 1 3 10 4 5 + 12 10 3 1 12 10 3 5 + 8 7 11 1 8 7 11 5 + 10 8 11 1 10 8 11 5 + 12 8 10 1 12 8 10 5 + 12 6 8 1 12 6 8 5 + 13 5 14 1 13 5 14 5 + 3 5 13 1 3 5 13 5 + 3 13 15 1 3 13 15 3 + 3 15 1 1 3 15 1 3 + 1 15 16 1 1 15 16 3 + 1 16 17 1 1 16 17 3 + 4 18 5 1 4 18 5 5 + 7 19 20 1 7 19 20 5 + 21 22 18 1 21 22 23 3 + 23 24 25 1 24 25 22 3 + 22 24 18 1 22 25 18 3 + 11 26 4 1 11 26 4 5 + 27 21 18 1 27 21 18 5 + 26 18 4 1 26 18 4 5 + 26 27 18 1 26 27 18 5 + 7 20 11 1 7 20 11 5 + 20 26 11 1 20 26 11 5 + 20 27 26 1 20 27 26 5 + 19 27 20 1 19 27 20 5 + 5 28 14 1 5 28 14 5 + 5 18 28 1 5 18 28 5 + 28 18 29 1 28 18 29 3 + 29 18 24 1 29 18 25 3 + 29 24 30 1 29 25 30 3 + 30 24 23 1 30 25 24 3 + 25 24 22 1 31 25 22 3 + 2 1 17 1 2 1 17 3 + tverts 32 + 0.190842 0.000499517 0 + 0.200452 0.161678 0 + 0.165864 0.108317 0 + 0.433944 0.161678 0 + 0.5 0.139405 0 + 0.5 0.159263 0 + 0.456121 0.000499517 0 + 0.5 0.000499517 0 + 0.458498 0.0704604 0 + 0.411873 0.000499517 0 + 0.445802 0.0977439 0 + 0.5 0.102442 0 + 0.436072 0.000499517 0 + 0.436446 0.178587 0 + 0.5 0.178587 0 + 0.190579 0.178587 0 + 0.100686 0.178587 0 + 0.0975823 0.161678 0 + 0.566056 0.161678 0 + 0.543879 0.000499517 0 + 0.541502 0.0704604 0 + 0.588126 0.000499517 0 + 0.809158 0.000499517 0 + 0.570516 0.157684 0 + 0.902418 0.161678 0 + 0.799548 0.161678 0 + 0.554198 0.0977439 0 + 0.563928 0.000499517 0 + 0.563553 0.178587 0 + 0.809421 0.178587 0 + 0.899314 0.178587 0 + 0.832998 0.109375 0 + endnode + node trimesh meshtdc0827 + parent tdc01_a01_03 + position 0.58 0.59 -0.07 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -158 -159 17 + bitmap tdc01_fltile00 + verts 51 + -5.58 -3.59 0.07 + -5.58 -5.59 0.07 + -3.58 -3.59 0.07 + -3.58 -5.59 0.07 + -1.58 -3.59 0.07 + -1.58 -5.59 0.07 + 0.42 -3.59 0.27 + 2.02 -4.59 0.27 + 2.42 -3.59 0.27 + 2.42 -4.59 0.27 + -5.58 -1.59 0.07 + -3.58 -1.59 0.07 + -1.58 -1.59 0.07 + 0.42 -1.59 0.27 + 2.42 -1.59 0.27 + 0.42 0.41 0.27 + 0.99 0.43 0.27 + 1.17 0.25 0.27 + -5.58 2.01 0.27 + -5.58 0.41 0.27 + -4.58 2.01 0.27 + -3.58 0.41 0.27 + -3.58 2.41 0.27 + -1.58 2.41 0.27 + -1.58 0.41 0.27 + 0.42 2.41 0.27 + 0.26 1.16 0.27 + 0.9 2.41 0.27 + -5.58 -0.19 0.27 + -3.58 -0.23 0.27 + -5.58 -0.79 0.07 + -3.58 -0.79 0.07 + -1.58 -0.23 0.27 + -1.58 -0.79 0.07 + -0.22 -0.23 0.27 + -0.78 -0.8 0.07 + -0.22 -1.59 0.27 + -0.78 -1.59 0.07 + -0.22 -3.59 0.27 + -0.78 -3.59 0.07 + -0.18 -5.59 0.27 + 0.42 -5.59 0.27 + -0.78 -5.59 0.07 + 0.44 0.98 0.27 + 0.68 1.09 0.27 + 1.1 0.67 0.27 + 1.01 1 0.27 + 2.42 0.41 0.27 + 2.42 0.89 0.27 + 2.02 -5.59 0.27 + -4.58 2.41 0.27 + faces 68 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 2 3 4 1 4 5 6 1 + 5 4 3 1 7 6 5 1 + 6 7 8 1 1 8 9 1 + 9 8 7 1 10 9 8 1 + 10 0 11 1 7 5 0 1 + 2 11 0 1 1 0 5 1 + 11 2 12 1 11 4 12 1 + 4 12 2 1 6 12 4 1 + 13 6 14 1 5 4 13 1 + 8 14 6 1 14 13 4 1 + 15 13 16 1 1 5 15 1 + 13 14 17 1 5 13 16 1 + 17 16 13 1 16 15 5 1 + 18 19 20 1 17 5 18 1 + 21 20 19 1 4 18 5 1 + 22 21 23 1 9 1 13 1 + 24 23 21 1 5 13 1 1 + 23 24 25 1 13 5 14 1 + 24 26 25 1 5 19 14 1 + 25 26 27 1 14 20 21 1 + 19 28 29 1 7 22 23 3 + 29 21 19 1 23 6 7 3 + 28 30 31 1 22 24 25 3 + 31 29 28 1 25 23 22 3 + 30 10 11 1 24 26 27 3 + 11 31 30 1 27 25 24 3 + 21 29 32 1 7 22 23 3 + 32 24 21 1 23 6 7 3 + 29 31 33 1 22 24 25 3 + 33 32 29 1 25 23 22 3 + 31 11 12 1 24 26 27 3 + 12 33 31 1 27 25 24 3 + 24 32 34 1 28 29 30 3 + 34 15 24 1 30 2 28 3 + 32 33 35 1 29 31 32 3 + 35 34 32 1 32 30 29 3 + 12 35 33 1 33 32 31 3 + 15 34 36 1 2 30 34 3 + 36 13 15 1 34 0 2 3 + 34 35 37 1 30 32 35 3 + 37 36 34 1 35 34 30 3 + 12 37 35 1 33 35 32 3 + 13 36 38 1 0 34 22 3 + 38 6 13 1 22 7 0 3 + 36 37 39 1 34 35 24 3 + 39 38 36 1 24 22 34 3 + 37 12 4 1 35 33 26 3 + 4 39 37 1 26 24 35 3 + 6 38 40 1 0 34 22 3 + 40 41 6 1 22 7 0 3 + 38 39 42 1 34 35 24 3 + 42 40 38 1 24 22 34 3 + 39 4 5 1 35 33 26 3 + 5 42 39 1 26 24 35 3 + 24 15 26 1 5 4 19 1 + 26 15 43 1 19 4 36 1 + 43 15 44 1 37 4 38 1 + 15 45 44 1 4 39 38 1 + 46 44 45 1 40 38 39 1 + 15 16 45 1 4 41 39 1 + 17 47 48 1 42 11 43 1 + 14 47 17 1 13 9 16 1 + 7 41 49 1 8 5 17 1 + 6 41 7 1 1 5 8 1 + 21 22 20 1 4 14 18 1 + 20 22 50 1 18 14 44 1 + tverts 45 + 0.5 0.25 0 + 0.25 0.25 0 + 0.5 0 0 + 0.25 0 0 + 0.25 0.75 0 + 0.25 0.5 0 + 0.5 0.75 0 + 0.5 0.5 0 + 0.05 0.375 0 + 0 0.25 0 + 0 0.375 0 + 0.25 1 0 + 0.5 1 0 + 0 0.5 0 + 0 0.75 0 + 0.175701 0.25 0 + 0.156115 0.269585 0 + 0.05 0.5 0 + 0.05 0.625 0 + 0.156116 0.730415 0 + 0.117933 0.75 0 + 0 0.810493 0 + 0.58 0.5 0 + 0.58 0.75 0 + 0.65 0.5 0 + 0.65 0.75 0 + 0.75 0.5 0 + 0.75 0.75 0 + 0.75 0 0 + 0.75 0.08 0 + 0.58 0.08 0 + 0.75 0.15 0 + 0.65 0.15 0 + 0.75 0.25 0 + 0.58 0.25 0 + 0.65 0.25 0 + 0.175701 0.75 0 + 0.178146 0.752445 0 + 0.164706 0.782079 0 + 0.217922 0.835294 0 + 0.176538 0.823463 0 + 0.247556 0.821855 0 + 0.25 0.882067 0 + 0.189507 1 0 + 0 0.625 0 + endnode + node trimesh meshtdc0828 + parent tdc01_a01_03 + diffuse 1 1 1 + ambient 1 1 1 + position 2.12 1.95 3.17 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 1 + center -212 -195 3 + bitmap tdc01_black8_00 + verts 19 + -0.12 1.2 0.03 + -1.32 1.2 0.03 + -0.81 0.68 0.03 + 1.03 -1.15 0.03 + 1.03 0.05 0.03 + 0.51 -0.64 0.03 + 1.03 -1.95 0.03 + 1.03 -3.95 0.03 + 2.88 -6.95 0.03 + 1.03 -5.95 0.03 + 2.88 3.05 0.03 + 0.53 -6.95 0.03 + 0.53 -5.95 0.03 + -7.12 3.05 0.03 + -2.12 1.2 0.03 + -4.12 1.2 0.03 + -6.12 1.2 0.03 + -7.12 0.7 0.03 + -6.12 0.7 0.03 + faces 17 + 0 1 2 1 0 1 2 3 + 3 4 5 1 3 4 5 3 + 6 7 8 1 6 7 8 1 + 7 9 8 1 7 9 8 1 + 8 10 6 1 8 10 6 1 + 9 11 8 1 9 11 8 1 + 12 11 9 1 12 11 9 1 + 3 6 10 1 3 6 10 1 + 0 4 10 1 0 4 10 1 + 1 0 10 1 1 0 10 1 + 13 14 10 1 13 14 10 1 + 13 15 14 1 13 15 14 1 + 15 13 16 1 15 13 16 1 + 17 16 13 1 17 16 13 1 + 17 18 16 1 17 18 16 1 + 4 3 10 1 4 3 10 1 + 14 1 10 1 14 1 10 1 + tverts 19 + 2.5 3.429 0 + 1.298 3.429 0 + 1.814 2.912 0 + 3.65 1.076 0 + 3.65 2.279 0 + 3.133 1.593 0 + 3.65 0.279 0 + 3.65 -1.721 0 + 5.5 -4.721 0 + 3.65 -3.721 0 + 5.5 5.279 0 + 3.15 -4.721 0 + 3.15 -3.721 0 + -4.5 5.279 0 + 0.5 3.429 0 + -1.5 3.429 0 + -3.5 3.429 0 + -4.5 2.929 0 + -3.5 2.929 0 + endnode + node trimesh object82 + parent tdc01_a01_03 + position 3.16 3.18 2.81 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -358.5 -360.5 14 + bitmap tdc01_trim00 + verts 16 + -3.16 -0.03 0.39 + -5.16 -0.03 0.39 + -5.16 -0.03 -0.11 + -3.16 -0.03 -0.11 + -2.36 -0.03 0.39 + -2.36 -0.03 -0.11 + -7.16 -0.03 0.39 + -7.16 -0.03 -0.11 + -0.01 -2.38 -0.11 + -0.01 -3.18 -0.11 + -0.01 -3.18 0.39 + -0.01 -2.38 0.39 + -0.01 -5.18 0.39 + -0.01 -5.18 -0.11 + -0.01 -7.18 0.39 + -0.01 -7.18 -0.11 + faces 12 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 4 0 3 1 4 1 2 5 + 5 4 3 1 5 4 2 5 + 1 6 7 1 0 1 2 5 + 7 2 1 1 2 3 0 5 + 8 9 10 1 6 3 0 5 + 11 8 10 1 7 6 0 5 + 12 10 9 1 0 1 2 5 + 9 13 12 1 2 3 0 5 + 14 12 13 1 0 1 2 5 + 13 15 14 1 2 3 0 5 + tverts 8 + 0.000499547 0.76 0 + 0.999501 0.76 0 + 0.999501 1 0 + 0.000499517 1 0 + 0.601157 0.76 0 + 0.600022 1 0 + 0.400601 1 0 + 0.400684 0.76 0 + endnode + node trimesh rectangle40 + parent tdc01_a01_03 + position 1.46 1.31 0.63 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 1 + selfillumcolor 0.368627 0.368627 0.368627 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -14.5 8.5 -12.5 + bitmap tdc01_alpha + verts 4 + 0.16 -0.24 -0.44 + 0.04 -0.22 0.19 + -0.45 0.25 -0.41 + -0.21 0.41 0.14 + faces 2 + 0 1 2 1 0 1 2 1 + 1 3 2 1 1 3 2 1 + tverts 4 + 0.951794 0.371474 0 + 0.604748 0.371474 0 + 0.951794 0.71852 0 + 0.604748 0.71852 0 + endnode + node trimesh rectangle41 + parent tdc01_a01_03 + position 2.7 1.17 1.93 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 1 + selfillumcolor 0.368627 0.368627 0.368627 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -7.5 -3 8.5 + bitmap tdc01_alpha + verts 4 + 0.34 -0.3 -0.69 + 0.43 -0.2 0.83 + -0.58 0.14 -0.65 + -0.49 0.24 0.86 + faces 2 + 0 1 2 1 0 1 2 1 + 1 3 2 1 1 3 2 1 + tverts 4 + 0.53506 0.459306 0 + 0.011022 0.459306 0 + 0.53506 0.983345 0 + 0.011022 0.983345 0 + endnode + node trimesh rectangle68 + parent tdc01_a01_03 + position 0.33 2.13 1.93 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 1 + selfillumcolor 0.368627 0.368627 0.368627 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 71.5 58 -42.5 + bitmap tdc01_alpha + verts 4 + 1.05 -0.01 -1.63 + 1.18 0.41 0.74 + 0.25 1.15 -1.6 + 0.46 1.17 0.78 + faces 2 + 0 1 2 1 0 1 2 1 + 1 3 2 1 1 3 2 1 + tverts 4 + 0.977137 0.302302 0 + 0.543882 0.302302 0 + 0.977137 0.69349 0 + 0.543882 0.69349 0 + endnode + node trimesh mesh374 + parent tdc01_a01_03 + diffuse 1 1 1 + ambient 1 1 1 + position 2.12 1.95 3.17 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 1 + center 11 28 63.5 + bitmap tdc01_black8_00 + tilefade 0 + verts 13 + -0.09 0.08 1.24 + 0.25 0.76 1.24 + -0.16 0.3 1.24 + -0.81 0.68 0.03 + -0.55 0.15 0.43 + -0.12 1.2 0.03 + 0.1 0.91 0.43 + 0.59 0.42 1.24 + 0.13 0.01 1.24 + -0.02 -0.38 0.43 + 0.51 -0.64 0.03 + 1.03 0.05 0.03 + 0.74 0.27 0.43 + faces 15 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 3 + 4 6 5 1 4 6 5 3 + 6 4 2 2 6 4 2 1 + 2 1 6 4 2 1 6 1 + 0 7 1 1 0 7 1 1 + 7 0 8 1 7 0 8 1 + 9 10 11 1 9 10 11 3 + 12 9 11 1 12 9 11 3 + 12 6 7 8 12 6 7 1 + 1 7 6 8 1 7 6 1 + 9 12 8 2 9 12 8 1 + 7 8 12 4 7 8 12 1 + 5 12 11 16 5 12 11 1 + 6 12 5 16 6 12 5 1 + tverts 13 + 0.535 0.313 0 + 0.869 0.989 0 + 0.465 0.524 0 + -0.186 0.912 0 + 0.066 0.378 0 + 0.5 1.429 0 + 0.716 1.142 0 + 1.211 0.648 0 + 0.745 0.244 0 + 0.599 -0.155 0 + 1.133 -0.407 0 + 1.65 0.279 0 + 1.364 0.494 0 + endnode + node trimesh mesh100 + parent tdc01_a01_03 + position 2.26 2.39 2.63 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -29 -42 113 + bitmap tdc01_statue00 + tilefade 0 + verts 12 + -0.66 -0.52 0.48 + -0.6 -0.73 0.9 + -0.69 -0.29 0.97 + -0.91 -0.14 0.49 + -0.95 0.24 0.57 + -0.39 -0.79 0.48 + -0.23 -0.36 1.78 + -0.3 -0.14 1.78 + -0.16 -0.82 0.97 + -0.01 -1.04 0.49 + 0.37 -1.08 0.57 + -0.01 -0.43 1.78 + faces 11 + 0 1 2 1 0 1 2 5 + 3 2 4 1 3 2 4 5 + 5 1 0 1 5 1 0 5 + 0 2 3 1 0 2 3 5 + 2 1 6 2 2 1 6 1 + 6 7 2 4 6 7 2 1 + 1 5 8 1 1 5 8 5 + 8 9 10 1 8 9 10 5 + 8 5 9 1 8 5 9 5 + 1 8 6 8 1 8 6 1 + 11 6 8 16 11 6 8 1 + tverts 12 + 0.472071 0.703798 0 + 0.5 0.791108 0 + 0.402702 0.80845 0 + 0.385399 0.725875 0 + 0.319859 0.744248 0 + 0.527929 0.703798 0 + 0.5 0.999501 0 + 0.4053 0.999501 0 + 0.597298 0.80845 0 + 0.614601 0.72829 0 + 0.680141 0.75391 0 + 0.5947 0.999501 0 + endnode + node light tdc01_a01_03ml1 + parent tdc01_a01_03 + orientation 0 0 0 0 + position 0 0 5 + wirecolor 1 1 1 + radius 14 + multiplier 1 + color 0 0 0 + ambientonly 0 + nDynamicType 0 + affectdynamic 1 + shadow 0 + lightpriority 5 + fadinglight 1 + endnode + node light tdc01_a01_03ml2 + parent tdc01_a01_03 + orientation 0 0 0 0 + position 2.051 -2.85315 4 + wirecolor 1 1 1 + radius 5 + multiplier 1 + color 0.00392157 0.00392157 0.00392157 + ambientonly 0 + nDynamicType 0 + affectdynamic 1 + shadow 0 + lightpriority 5 + fadinglight 1 + endnode +endmodelgeom tdc01_a01_03 +donemodel tdc01_a01_03 diff --git a/tests/fixtures/oracle/ascii/tdc01_g02_03.mdl b/tests/fixtures/oracle/ascii/tdc01_g02_03.mdl new file mode 100644 index 0000000..50f3d75 --- /dev/null +++ b/tests/fixtures/oracle/ascii/tdc01_g02_03.mdl @@ -0,0 +1,4267 @@ +# Rewritten by CleanModels 3 Version 3.7.0 Sun Jan 17 04:30:10 2021 +#MAXMODEL ASCII +filedependency Unknown +newmodel tdc01_g02_03 + classification TILE + setsupermodel tdc01_g02_03 NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom tdc01_g02_03 + node dummy tdc01_g02_03 + parent NULL + endnode + node trimesh mesh12 + parent tdc01_g02_03 + diffuse 0 0 0 + bitmap twc03_black + center 0 0 390 + shininess 11 + specular 0 0 0 + ambient 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 1 1 1 + orientation 0 0 0 0 + position 2.5 3.5 0.2 + verts 4 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + 0.45 0.45 3.9 + faces 2 + 0 1 2 1 0 0 0 1 + 2 3 0 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node trimesh mesh11 + parent tdc01_g02_03 + diffuse 0 0 0 + bitmap twc03_black + center 0 0 390 + shininess 11 + specular 0 0 0 + ambient 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 1 1 1 + orientation 0 0 0 0 + position -2.5 1 0.2 + verts 4 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + 0.45 0.45 3.9 + faces 2 + 0 1 2 1 0 0 0 1 + 2 3 0 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node trimesh mesh10 + parent tdc01_g02_03 + diffuse 0 0 0 + bitmap twc03_black + center 0 0 390 + shininess 11 + specular 0 0 0 + ambient 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 1 1 1 + orientation 0 0 0 0 + position -2.5 3.5 0.2 + verts 4 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + 0.45 0.45 3.9 + faces 2 + 0 1 2 1 0 0 0 1 + 2 3 0 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node trimesh plane13 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 1 1 1 + orientation 0 0 0 0 + position 2.5 -3.5 0.2 + verts 20 + 0.4 0.4 0 + -0.4 0.4 0 + -0.4 0.4 0.2 + 0.4 0.4 0.2 + -0.4 -0.4 0 + -0.4 -0.4 0.2 + 0.4 -0.4 0 + 0.4 -0.4 0.2 + -0.25 0.25 0.6 + 0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + -0.25 0.25 3 + 0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + -0.45 0.45 3.9 + 0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 4 5 2 4 5 6 1 + 5 2 1 2 6 7 4 1 + 4 6 7 1 8 9 10 1 + 7 5 4 1 10 11 8 1 + 6 0 3 2 12 13 14 1 + 3 7 6 2 14 15 12 1 + 3 2 8 4 3 2 16 1 + 8 9 3 4 16 17 3 1 + 2 5 10 8 7 6 18 1 + 10 8 2 8 18 19 7 1 + 5 7 11 4 11 10 20 1 + 11 10 5 4 20 21 11 1 + 7 3 9 8 15 14 22 1 + 9 11 7 8 22 23 15 1 + 9 8 12 1 24 25 26 1 + 12 13 9 1 26 27 24 1 + 8 10 14 2 28 29 30 1 + 14 12 8 2 30 31 28 1 + 10 11 15 1 32 33 34 1 + 15 14 10 1 34 35 32 1 + 11 9 13 2 36 37 38 1 + 13 15 11 2 38 39 36 1 + 13 12 16 4 40 41 42 1 + 16 17 13 4 42 43 40 1 + 12 14 18 8 44 45 46 1 + 18 16 12 8 46 47 44 1 + 14 15 19 4 48 49 50 1 + 19 18 14 4 50 51 48 1 + 15 13 17 8 52 53 54 1 + 17 19 15 8 54 55 52 1 + tverts 56 + 0.216757 0.0271105 0 + 0.536757 0.0271105 0 + 0.536757 0.107111 0 + 0.216757 0.107111 0 + 0.21451 0.0271105 0 + 0.53451 0.0271105 0 + 0.53451 0.107111 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.783243 0.0271105 0 + 0.783243 0.107111 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.476757 0.26711 0 + 0.276757 0.26711 0 + 0.47451 0.26711 0 + 0.27451 0.26711 0 + 0.723243 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.273966 0.288193 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.273966 1.64023 0 + 0.278974 0.288193 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.726033 0.288193 0 + 0.726033 1.64023 0 + 0.526033 1.64023 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.268677 0.744214 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.188677 1.0796 0 + 0.523241 0.744214 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.731323 0.744214 0 + 0.811323 1.0796 0 + 0.451322 1.0796 0 + endnode + node trimesh plane12 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 1 1 1 + orientation 0 0 0 0 + position -2.5 1 0.2 + verts 20 + 0.4 0.4 0 + -0.4 0.4 0 + -0.4 0.4 0.2 + 0.4 0.4 0.2 + -0.4 -0.4 0 + -0.4 -0.4 0.2 + 0.4 -0.4 0 + 0.4 -0.4 0.2 + -0.25 0.25 0.6 + 0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + -0.25 0.25 3 + 0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + -0.45 0.45 3.9 + 0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 4 5 2 4 5 6 1 + 5 2 1 2 6 7 4 1 + 4 6 7 1 8 9 10 1 + 7 5 4 1 10 11 8 1 + 6 0 3 2 12 13 14 1 + 3 7 6 2 14 15 12 1 + 3 2 8 4 3 2 16 1 + 8 9 3 4 16 17 3 1 + 2 5 10 8 7 6 18 1 + 10 8 2 8 18 19 7 1 + 5 7 11 4 11 10 20 1 + 11 10 5 4 20 21 11 1 + 7 3 9 8 15 14 22 1 + 9 11 7 8 22 23 15 1 + 9 8 12 1 24 25 26 1 + 12 13 9 1 26 27 24 1 + 8 10 14 2 28 29 30 1 + 14 12 8 2 30 31 28 1 + 10 11 15 1 32 33 34 1 + 15 14 10 1 34 35 32 1 + 11 9 13 2 36 37 38 1 + 13 15 11 2 38 39 36 1 + 13 12 16 4 40 41 42 1 + 16 17 13 4 42 43 40 1 + 12 14 18 8 44 45 46 1 + 18 16 12 8 46 47 44 1 + 14 15 19 4 48 49 50 1 + 19 18 14 4 50 51 48 1 + 15 13 17 8 52 53 54 1 + 17 19 15 8 54 55 52 1 + tverts 56 + 0.216757 0.0271105 0 + 0.536757 0.0271105 0 + 0.536757 0.107111 0 + 0.216757 0.107111 0 + 0.21451 0.0271105 0 + 0.53451 0.0271105 0 + 0.53451 0.107111 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.783243 0.0271105 0 + 0.783243 0.107111 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.476757 0.26711 0 + 0.276757 0.26711 0 + 0.47451 0.26711 0 + 0.27451 0.26711 0 + 0.723243 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.273966 0.288193 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.273966 1.64023 0 + 0.278974 0.288193 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.726033 0.288193 0 + 0.726033 1.64023 0 + 0.526033 1.64023 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.268677 0.744214 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.188677 1.0796 0 + 0.523241 0.744214 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.731323 0.744214 0 + 0.811323 1.0796 0 + 0.451322 1.0796 0 + endnode + node trimesh plane11 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 1 1 1 + orientation 0 0 0 0 + position -2.5 3.5 0.2 + verts 20 + 0.4 0.4 0 + -0.4 0.4 0 + -0.4 0.4 0.2 + 0.4 0.4 0.2 + -0.4 -0.4 0 + -0.4 -0.4 0.2 + 0.4 -0.4 0 + 0.4 -0.4 0.2 + -0.25 0.25 0.6 + 0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + -0.25 0.25 3 + 0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + -0.45 0.45 3.9 + 0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 4 5 2 4 5 6 1 + 5 2 1 2 6 7 4 1 + 4 6 7 1 8 9 10 1 + 7 5 4 1 10 11 8 1 + 6 0 3 2 12 13 14 1 + 3 7 6 2 14 15 12 1 + 3 2 8 4 3 2 16 1 + 8 9 3 4 16 17 3 1 + 2 5 10 8 7 6 18 1 + 10 8 2 8 18 19 7 1 + 5 7 11 4 11 10 20 1 + 11 10 5 4 20 21 11 1 + 7 3 9 8 15 14 22 1 + 9 11 7 8 22 23 15 1 + 9 8 12 1 24 25 26 1 + 12 13 9 1 26 27 24 1 + 8 10 14 2 28 29 30 1 + 14 12 8 2 30 31 28 1 + 10 11 15 1 32 33 34 1 + 15 14 10 1 34 35 32 1 + 11 9 13 2 36 37 38 1 + 13 15 11 2 38 39 36 1 + 13 12 16 4 40 41 42 1 + 16 17 13 4 42 43 40 1 + 12 14 18 8 44 45 46 1 + 18 16 12 8 46 47 44 1 + 14 15 19 4 48 49 50 1 + 19 18 14 4 50 51 48 1 + 15 13 17 8 52 53 54 1 + 17 19 15 8 54 55 52 1 + tverts 56 + 0.216757 0.0271105 0 + 0.536757 0.0271105 0 + 0.536757 0.107111 0 + 0.216757 0.107111 0 + 0.21451 0.0271105 0 + 0.53451 0.0271105 0 + 0.53451 0.107111 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.783243 0.0271105 0 + 0.783243 0.107111 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.476757 0.26711 0 + 0.276757 0.26711 0 + 0.47451 0.26711 0 + 0.27451 0.26711 0 + 0.723243 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.273966 0.288193 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.273966 1.64023 0 + 0.278974 0.288193 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.726033 0.288193 0 + 0.726033 1.64023 0 + 0.526033 1.64023 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.268677 0.744214 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.188677 1.0796 0 + 0.523241 0.744214 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.731323 0.744214 0 + 0.811323 1.0796 0 + 0.451322 1.0796 0 + endnode + node trimesh plane10 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 1 1 1 + orientation 0 0 0 0 + position 2.5 3.5 0.2 + verts 20 + 0.4 0.4 0 + -0.4 0.4 0 + -0.4 0.4 0.2 + 0.4 0.4 0.2 + -0.4 -0.4 0 + -0.4 -0.4 0.2 + 0.4 -0.4 0 + 0.4 -0.4 0.2 + -0.25 0.25 0.6 + 0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + -0.25 0.25 3 + 0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + -0.45 0.45 3.9 + 0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 4 5 2 4 5 6 1 + 5 2 1 2 6 7 4 1 + 4 6 7 1 8 9 10 1 + 7 5 4 1 10 11 8 1 + 6 0 3 2 12 13 14 1 + 3 7 6 2 14 15 12 1 + 3 2 8 4 3 2 16 1 + 8 9 3 4 16 17 3 1 + 2 5 10 8 7 6 18 1 + 10 8 2 8 18 19 7 1 + 5 7 11 4 11 10 20 1 + 11 10 5 4 20 21 11 1 + 7 3 9 8 15 14 22 1 + 9 11 7 8 22 23 15 1 + 9 8 12 1 24 25 26 1 + 12 13 9 1 26 27 24 1 + 8 10 14 2 28 29 30 1 + 14 12 8 2 30 31 28 1 + 10 11 15 1 32 33 34 1 + 15 14 10 1 34 35 32 1 + 11 9 13 2 36 37 38 1 + 13 15 11 2 38 39 36 1 + 13 12 16 4 40 41 42 1 + 16 17 13 4 42 43 40 1 + 12 14 18 8 44 45 46 1 + 18 16 12 8 46 47 44 1 + 14 15 19 4 48 49 50 1 + 19 18 14 4 50 51 48 1 + 15 13 17 8 52 53 54 1 + 17 19 15 8 54 55 52 1 + tverts 56 + 0.216757 0.0271105 0 + 0.536757 0.0271105 0 + 0.536757 0.107111 0 + 0.216757 0.107111 0 + 0.21451 0.0271105 0 + 0.53451 0.0271105 0 + 0.53451 0.107111 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.783243 0.0271105 0 + 0.783243 0.107111 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.476757 0.26711 0 + 0.276757 0.26711 0 + 0.47451 0.26711 0 + 0.27451 0.26711 0 + 0.723243 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.273966 0.288193 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.273966 1.64023 0 + 0.278974 0.288193 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.726033 0.288193 0 + 0.726033 1.64023 0 + 0.526033 1.64023 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.268677 0.744214 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.188677 1.0796 0 + 0.523241 0.744214 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.731323 0.744214 0 + 0.811323 1.0796 0 + 0.451322 1.0796 0 + endnode + node trimesh meshtdc4351 + parent tdc01_g02_03 + position 1.44 0.01 4.27 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 132 -1 -77 + bitmap tdc01_trim00 + tilefade 0 + verts 12 + 1.28 -0.19 -0.32 + 0.93 -0.13 -0.82 + 1.02 -0.13 -0.93 + 1.55 -0.19 -0.64 + 0.93 0.13 -0.82 + 1.02 0.13 -0.93 + 1.28 0.18 -0.32 + 1.55 0.18 -0.64 + 1.14 -0.13 -1.22 + 1.71 -0.21 -1.07 + 1.14 0.13 -1.22 + 1.71 0.19 -1.07 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 0 1 2 3 0 3 + 1 4 5 2 4 5 6 3 + 5 2 1 2 6 7 4 3 + 4 6 7 1 5 0 3 3 + 7 5 4 1 3 6 5 3 + 3 2 8 1 3 2 8 3 + 8 9 3 1 8 9 3 3 + 2 5 10 2 7 6 10 3 + 10 8 2 2 10 11 7 3 + 5 7 11 1 6 3 9 3 + 11 10 5 1 9 10 6 3 + 6 0 3 2 12 13 14 3 + 3 7 6 2 14 15 12 3 + 7 3 9 2 15 14 16 3 + 9 11 7 2 16 17 15 3 + tverts 18 + 0.24174 0.76 0 + 0.24174 0.272084 0 + 0.59375 0.272084 0 + 0.59375 0.76 0 + 0.24174 0.336632 0 + 0.24174 0.272479 0 + 0.59375 0.272479 0 + 0.59375 0.336632 0 + 0.99772 0.272084 0 + 0.99772 0.76 0 + 0.99772 0.272479 0 + 0.99772 0.336632 0 + 0.752339 0.76 0 + 0.752339 0.999021 0 + 0.400332 0.999021 0 + 0.400332 0.76 0 + -0.0036439 0.999021 0 + -0.0036438 0.76 0 + endnode + node trimesh meshtdc1382 + parent tdc01_g02_03 + position 4 1 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -85 -100 275 + bitmap tdc01_trim00 + verts 12 + -0.85 -0.5 3 + -0.85 1 3 + -0.85 1 2.5 + -0.85 -0.5 2.5 + -0.85 3 3 + -0.85 3 2.5 + -0.85 -3 3 + -0.85 -1.5 3 + -0.85 -1.5 2.5 + -0.85 -3 2.5 + -0.85 -5 3 + -0.85 -5 2.5 + faces 8 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 1 4 5 1 0 1 2 5 + 5 2 1 1 2 3 0 5 + 6 7 8 1 0 1 2 5 + 8 9 6 1 2 3 0 5 + 10 6 9 1 0 1 2 5 + 9 11 10 1 2 3 0 5 + tverts 4 + 0.0004995 0.76 0 + 0.999501 0.76 0 + 0.999501 1 0 + 0.0004995 1 0 + endnode + node trimesh mesh535 + parent tdc01_g02_03 + position -1.42 0.01 4.23 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 15 0 13 + bitmap tdc01_trim00 + tilefade 0 + verts 22 + 1 -0.13 0.18 + 0.84 -0.19 0.77 + 0.69 -0.13 0.08 + 0.35 -0.19 0.58 + 0.84 0.19 0.77 + 1 0.13 0.18 + 0.35 0.18 0.58 + 0.69 0.13 0.08 + 0.55 -0.13 -0.06 + 0.06 -0.19 0.29 + 0.55 0.13 -0.06 + 0.06 0.18 0.29 + 0.31 -0.13 -0.46 + -0.03 -0.19 0.12 + 0.31 0.13 -0.46 + -0.03 0.18 0.12 + -0.5 -0.13 -0.51 + -0.64 -0.19 0.08 + -0.64 0.18 0.08 + -0.5 0.13 -0.51 + -0.7 0.19 0.05 + -0.7 -0.19 0.05 + faces 32 + 0 1 2 1 0 1 2 3 + 3 2 1 1 3 2 1 3 + 4 5 6 1 1 4 3 3 + 7 6 5 1 5 3 4 3 + 2 3 8 1 2 3 6 3 + 9 8 3 1 7 6 3 3 + 7 2 10 2 5 8 9 3 + 8 10 2 2 10 9 8 3 + 6 7 11 1 3 5 7 3 + 10 11 7 1 9 7 5 3 + 8 9 12 1 6 7 11 3 + 13 12 9 1 12 11 7 3 + 10 8 14 2 9 10 13 3 + 12 14 8 2 14 13 10 3 + 11 10 15 1 7 9 12 3 + 14 15 10 1 13 12 9 3 + 12 13 16 1 11 12 15 3 + 17 16 13 1 16 15 12 3 + 15 14 18 1 12 13 16 3 + 19 18 14 1 17 16 13 3 + 18 19 20 1 16 17 18 3 + 1 4 3 2 19 20 21 3 + 6 3 4 2 22 21 20 3 + 3 6 9 2 21 22 23 3 + 11 9 6 2 24 23 22 3 + 9 11 13 2 23 24 25 3 + 15 13 11 2 26 25 24 3 + 13 15 17 4 25 26 27 3 + 18 17 15 4 28 27 26 3 + 20 21 18 4 29 30 28 3 + 17 18 21 4 27 28 30 3 + 21 16 17 1 31 15 16 3 + tverts 32 + -0.549868 0.272084 0 + -0.549868 0.76 0 + -0.250627 0.272084 0 + -0.250627 0.76 0 + -0.549868 0.272479 0 + -0.250627 0.272479 0 + -0.004771 0.272084 0 + -0.004771 0.76 0 + -0.250627 0.336632 0 + -0.004771 0.272479 0 + -0.004771 0.336632 0 + 0.26149 0.272084 0 + 0.26149 0.76 0 + 0.26149 0.272479 0 + 0.26149 0.336632 0 + 0.83984 0.272084 0 + 0.83984 0.76 0 + 0.83984 0.272479 0 + 0.88625 0.76 0 + 1.54395 0.999021 0 + 1.54395 0.76 0 + 1.24471 0.999021 0 + 1.24471 0.76 0 + 0.99885 0.999021 0 + 0.99885 0.76 0 + 0.73259 0.999021 0 + 0.73259 0.76 0 + 0.15424 0.999021 0 + 0.15424 0.76 0 + 0.10783 0.76 0 + 0.11248 0.999021 0 + 0.8816 0.76 0 + endnode + node trimesh meshtdc4353 + parent tdc01_g02_03 + position -2.64 0.01 3.81 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -12 -1 -31 + bitmap tdc01_trim00 + tilefade 0 + verts 12 + 0.27 -0.13 -0.36 + -0.08 -0.19 0.14 + 0.18 -0.13 -0.47 + -0.35 -0.19 -0.18 + 0.27 0.13 -0.36 + 0.18 0.13 -0.47 + -0.08 0.18 0.14 + -0.35 0.18 -0.18 + 0.04 -0.11 -0.76 + -0.51 -0.21 -0.61 + 0.04 0.09 -0.76 + -0.51 0.19 -0.61 + faces 16 + 0 1 2 1 0 1 2 3 + 3 2 1 1 3 2 1 3 + 4 0 5 2 4 5 6 3 + 2 5 0 2 7 6 5 3 + 6 4 7 1 1 4 3 3 + 5 7 4 1 6 3 4 3 + 2 3 8 1 2 3 8 3 + 9 8 3 1 9 8 3 3 + 5 2 10 2 6 7 10 3 + 8 10 2 2 11 10 7 3 + 7 5 11 1 3 6 9 3 + 10 11 5 1 10 9 6 3 + 1 6 3 2 12 13 14 3 + 7 3 6 2 15 14 13 3 + 3 7 9 2 14 15 16 3 + 11 9 7 2 17 16 15 3 + tverts 18 + 0.24174 0.272084 0 + 0.24174 0.76 0 + 0.59375 0.272084 0 + 0.59375 0.76 0 + 0.24174 0.272479 0 + 0.24174 0.336632 0 + 0.59375 0.272479 0 + 0.59375 0.336632 0 + 0.99772 0.272084 0 + 0.99772 0.76 0 + 0.99772 0.272479 0 + 0.99772 0.336632 0 + 0.752339 0.999021 0 + 0.752339 0.76 0 + 0.400332 0.999021 0 + 0.400332 0.76 0 + -0.0036439 0.999021 0 + -0.0036438 0.76 0 + endnode + node trimesh mesh536 + parent tdc01_g02_03 + position 1.44 0.01 4.27 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -17 0 9 + bitmap tdc01_trim00 + tilefade 0 + verts 22 + -0.86 -0.19 0.73 + -1.02 -0.13 0.14 + -0.71 -0.13 0.04 + -0.37 -0.19 0.54 + -1.02 0.13 0.14 + -0.86 0.19 0.73 + -0.37 0.18 0.54 + -0.71 0.13 0.04 + -0.57 -0.13 -0.1 + -0.08 -0.19 0.25 + -0.57 0.13 -0.1 + -0.08 0.18 0.25 + -0.33 -0.13 -0.5 + 0.01 -0.19 0.08 + -0.33 0.13 -0.5 + 0.01 0.18 0.08 + 0.48 -0.13 -0.55 + 0.62 -0.19 0.04 + 0.62 0.18 0.04 + 0.48 0.13 -0.55 + 0.68 0.19 0.01 + 0.68 -0.19 0.01 + faces 32 + 0 1 2 1 0 1 2 3 + 2 3 0 1 2 3 0 3 + 4 5 6 1 4 0 3 3 + 6 7 4 1 3 5 4 3 + 3 2 8 1 3 2 6 3 + 8 9 3 1 6 7 3 3 + 2 7 10 2 8 5 9 3 + 10 8 2 2 9 10 8 3 + 7 6 11 1 5 3 7 3 + 11 10 7 1 7 9 5 3 + 9 8 12 1 7 6 11 3 + 12 13 9 1 11 12 7 3 + 8 10 14 2 10 9 13 3 + 14 12 8 2 13 14 10 3 + 10 11 15 1 9 7 12 3 + 15 14 10 1 12 13 9 3 + 13 12 16 1 12 11 15 3 + 16 17 13 1 15 16 12 3 + 14 15 18 1 13 12 16 3 + 18 19 14 1 16 17 13 3 + 19 18 20 1 17 16 18 3 + 5 0 3 2 19 20 21 3 + 3 6 5 2 21 22 19 3 + 6 3 9 2 22 21 23 3 + 9 11 6 2 23 24 22 3 + 11 9 13 2 24 23 25 3 + 13 15 11 2 25 26 24 3 + 15 13 17 4 26 25 27 3 + 17 18 15 4 27 28 26 3 + 21 20 18 4 29 30 28 3 + 18 17 21 4 28 27 29 3 + 16 21 17 1 15 31 16 3 + tverts 32 + -0.549868 0.76 0 + -0.549868 0.272084 0 + -0.250627 0.272084 0 + -0.250627 0.76 0 + -0.549868 0.272479 0 + -0.250627 0.272479 0 + -0.004771 0.272084 0 + -0.004771 0.76 0 + -0.250627 0.336632 0 + -0.004771 0.272479 0 + -0.004771 0.336632 0 + 0.26149 0.272084 0 + 0.26149 0.76 0 + 0.26149 0.272479 0 + 0.26149 0.336632 0 + 0.83984 0.272084 0 + 0.83984 0.76 0 + 0.83984 0.272479 0 + 0.88625 0.76 0 + 1.54395 0.76 0 + 1.54395 0.999021 0 + 1.24471 0.999021 0 + 1.24471 0.76 0 + 0.99885 0.999021 0 + 0.99885 0.76 0 + 0.73259 0.999021 0 + 0.73259 0.76 0 + 0.15424 0.999021 0 + 0.15424 0.76 0 + 0.11248 0.999021 0 + 0.10783 0.76 0 + 0.8816 0.76 0 + endnode + node aabb object83 + parent tdc01_g02_03 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 1 1 1 + bitmap NULL + render 0 + shadow 0 + verts 12 + 5 -5 3.2 + 2.65 5 3.2 + 2.65 -5 3.2 + 5 5 3.2 + -2.65 5 3.2 + -5 -5 3.2 + -2.65 -5 3.2 + -5 5 3.2 + -2.6 5 0.2 + -2.6 -5 0.2 + 2.6 -5 0.2 + 2.6 5 0.2 + faces 10 + 0 1 2 1 0 0 0 2 + 0 3 1 1 0 0 0 2 + 4 5 6 1 0 0 0 2 + 7 5 4 1 0 0 0 2 + 8 9 10 1 0 0 0 4 + 10 11 8 1 0 0 0 4 + 9 8 6 2 0 0 0 2 + 6 8 4 2 0 0 0 2 + 11 10 2 2 0 0 0 2 + 11 2 1 2 0 0 0 2 + aabb -5 -5 0.2 5 5 3.2 -1 + -5 -5 0.2 2.6 5 3.2 -1 + -5 -5 0.2 2.6 5 3.2 -1 + -5 -5 0.2 -2.6 5 3.2 -1 + -2.65 -5 0.2 -2.6 5 3.2 6 + -5 -5 3.2 -2.65 5 3.2 2 + -2.6 -5 0.2 2.6 5 0.2 4 + -5 -5 0.2 -2.6 5 3.2 -1 + -2.65 -5 0.2 -2.6 5 3.2 7 + -5 -5 3.2 -2.65 5 3.2 3 + -2.6 -5 0.2 5 5 3.2 -1 + 2.6 -5 0.2 5 5 3.2 -1 + 2.6 -5 0.2 2.65 5 3.2 8 + 2.65 -5 3.2 5 5 3.2 0 + -2.6 -5 0.2 5 5 3.2 -1 + -2.6 -5 0.2 2.6 5 0.2 5 + 2.6 -5 0.2 5 5 3.2 -1 + 2.6 -5 0.2 2.65 5 3.2 9 + 2.65 -5 3.2 5 5 3.2 1 + endnode + node trimesh mesh02 + parent tdc01_g02_03 + diffuse 0 0 0 + position -2.52 -3.5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 0 0 0 + specular 0 0 0 + shininess 11 + center 0 0 390 + bitmap twc03_black + verts 4 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + 0.45 0.45 3.9 + faces 2 + 0 1 2 1 0 0 0 1 + 2 3 0 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node trimesh mesh01 + parent tdc01_g02_03 + diffuse 0 0 0 + position 2.5 -3.5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 0 0 0 + specular 0 0 0 + shininess 11 + center 0 0 390 + bitmap twc03_black + verts 4 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + 0.45 0.45 3.9 + faces 2 + 0 1 2 1 0 0 0 1 + 2 3 0 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node light tdc01_g02_03ml1 + parent tdc01_g02_03 + orientation 0 0 0 0 + position 0 0 5 + wirecolor 1 1 1 + radius 14 + multiplier 1 + color 0 0 0 + ambientonly 0 + nDynamicType 0 + affectdynamic 1 + shadow 0 + lightpriority 5 + fadinglight 1 + endnode + node trimesh object115 + parent tdc01_g02_03 + position 3.16 3 1.47 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 1 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -319.5 -300 24.5 + bitmap tdc01_alpha + verts 12 + -0.01 0.9 0.41 + -0.01 -0.9 0.41 + -0.01 -0.9 0.96 + -0.01 0.9 0.96 + -6.38 -0.9 0.41 + -6.38 0.9 0.41 + -6.38 -0.9 0.96 + -6.38 0.9 0.96 + -6.38 -6.9 -0.47 + -6.38 -5.1 -0.47 + -6.38 -6.9 0.08 + -6.38 -5.1 0.08 + faces 6 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + 4 5 6 1 4 5 6 6 + 7 6 5 1 7 6 5 6 + 8 9 10 1 8 9 10 6 + 11 10 9 1 11 10 9 6 + tverts 12 + 0.606381 0.326587 0 + 0.9995 0.326586 0 + 0.9995 0.678244 0 + 0.606381 0.678244 0 + 0.9995 0.717891 0 + 0.606381 0.717891 0 + 0.9995 0.970514 0 + 0.606381 0.970515 0 + 0.740965 0.0415624 0 + 0.0577326 0.041563 0 + 0.740965 0.294186 0 + 0.0577326 0.294186 0 + endnode + node light tdc01_g02_03ml2 + parent tdc01_g02_03 + orientation 0 0 0 0 + position 1.66656 -3.00967 4 + wirecolor 1 1 1 + radius 5 + multiplier 1 + color 0.00392157 0.00392157 0.00392157 + ambientonly 0 + nDynamicType 0 + affectdynamic 1 + shadow 0 + lightpriority 5 + fadinglight 1 + endnode + node trimesh meshtdc1392 + parent tdc01_g02_03 + position 5 5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -212.5 -50 150 + bitmap tdc01_sandstone + verts 13 + -2 -1 0.5 + -2.4 -1 0 + -2 -1 0 + -2.1 0 0.75 + -2.1 -1 0.75 + -2.4 0 0 + -1.85 -1 0.75 + -1.85 -1 3 + -2.35 -1 3 + -1.85 -1 2.5 + -2.35 0 3 + -2.1 -1 2.5 + -2.1 0 2.5 + faces 9 + 0 1 2 1 0 1 2 5 + 3 1 4 2 3 1 4 5 + 1 3 5 2 1 3 5 5 + 4 1 0 1 4 1 0 5 + 6 4 0 1 6 4 0 5 + 7 8 9 1 7 8 9 5 + 10 11 8 2 10 11 8 5 + 11 10 12 2 11 10 12 5 + 8 11 9 1 8 11 9 5 + tverts 13 + 1.3556 0.707593 0 + 1 0 0 + 1.4227 0 0 + 0.5 0.999796 0 + 1 0.999796 0 + 0.5 0 0 + 1.38388 0.999796 0 + -0.205 0.5 0 + 0 0.5 0 + -0.125 0.999501 0 + 0.5 0.5 0 + 0 0.999501 0 + 0.5 0.999501 0 + endnode + node trimesh meshtdc4350 + parent tdc01_g02_03 + position 2.1 0.01 3.49 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 24.5 0 40 + bitmap tdc01_sandstone + tilefade 0 + verts 16 + -0.22 -0.25 0.12 + -0.22 0.25 0.12 + 0.22 0.25 -0.11 + 0.22 -0.25 -0.11 + 0.71 -0.36 0.58 + 0.07 -0.36 0.91 + 0.27 -0.13 -0.04 + 0.71 0.36 0.58 + 0.62 -0.19 0.46 + 0.07 0.36 0.91 + -0.18 -0.13 0.23 + 0.02 -0.19 0.79 + 0.02 0.19 0.79 + -0.18 0.13 0.23 + 0.27 0.13 -0.04 + 0.62 0.18 0.46 + faces 22 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 0 3 4 2 4 5 6 5 + 4 5 0 2 6 7 4 5 + 3 2 6 4 4 5 8 4 + 7 4 8 4 6 7 9 4 + 2 1 9 2 4 5 6 6 + 9 7 2 2 6 7 4 6 + 1 0 10 4 4 5 10 3 + 5 9 11 4 6 7 11 3 + 11 9 12 4 11 7 12 3 + 10 0 5 4 10 5 6 3 + 1 10 13 4 4 10 13 3 + 12 9 1 4 12 7 4 3 + 13 12 1 4 13 12 4 3 + 11 10 5 4 11 10 6 3 + 6 2 14 4 8 5 14 4 + 8 4 3 4 9 7 4 4 + 7 8 15 4 6 9 15 4 + 6 8 3 4 8 9 4 4 + 14 2 7 4 14 5 6 4 + 15 14 7 4 15 14 6 4 + tverts 16 + 0.846869 0.153125 0 + 0.846869 0.846875 0 + 0.153119 0.846875 0 + 0.153119 0.153125 0 + 0.153131 0.500002 0 + 0.846881 0.500002 0 + 0.999506 1.499 0 + 0.0005054 1.499 0 + 0.322096 0.60356 0 + 0.23767 1.33156 0 + 0.675304 0.634319 0 + 0.766609 1.34464 0 + 0.239425 1.34167 0 + 0.32249 0.632936 0 + 0.678759 0.599989 0 + 0.757652 1.33153 0 + endnode + node trimesh meshtdc4357 + parent tdc01_g02_03 + position 4.27 0.02 2.81 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -145.5 -2 -111 + bitmap tdc01_sandstone + verts 22 + -1.37 0.2 -1.86 + -1.27 0.27 -2.11 + -1.67 0.26 -2.61 + -1.37 -0.22 -1.86 + -1.67 -0.28 -2.61 + -1.12 -0.29 -1.86 + -1.27 -0.29 -2.11 + -1.27 -0.36 -2.61 + -1.27 0.34 -2.61 + -1.12 0.27 -1.86 + -1.79 0.27 0.22 + -1.69 0.27 -0.11 + -1.69 -0.29 -0.11 + -1.79 -0.29 0.22 + -1.12 0.48 0.39 + -1.12 0.48 -0.11 + -1.12 -0.52 -0.11 + -1.12 -0.52 0.39 + -1.12 0.18 0.39 + -1.69 -0.14 0.24 + -1.69 0.12 0.24 + -1.12 -0.22 0.39 + faces 20 + 0 1 2 1 0 1 2 4 + 3 0 4 2 3 4 5 4 + 2 4 0 2 6 5 4 4 + 5 3 6 1 7 8 9 4 + 4 6 3 4 10 9 8 4 + 7 6 4 8 11 9 10 4 + 8 2 1 4 12 2 1 4 + 1 0 9 8 1 0 13 4 + 10 11 12 1 14 15 16 1 + 12 13 10 1 16 17 14 1 + 14 15 11 2 18 19 20 5 + 11 10 14 2 20 21 18 5 + 16 17 13 2 22 23 24 6 + 13 12 16 2 24 25 22 6 + 18 14 10 4 26 27 28 3 + 10 13 19 4 28 29 30 3 + 20 18 10 4 31 26 28 3 + 19 13 17 4 30 29 32 3 + 10 19 20 4 28 30 31 3 + 21 19 17 4 33 30 32 3 + tverts 34 + 1.1016 0.954095 0 + 0.7767 0.785471 0 + 0.1026 1.499 0 + -0.1016 0.204979 0 + -0.1016 0.771979 0 + 0.8974 0.134104 0 + 0.8974 0.842854 0 + -0.1016 0.499999 0 + -0.1016 0.954095 0 + 0.2373 0.756167 0 + 0.8974 1.499 0 + 0.8974 0.763848 0 + 0.1026 0.764377 0 + 1.1016 0.499999 0 + -0.0656779 0.2165 0 + 0.601099 0.2165 0 + 0.601099 0.7835 0 + -0.0656777 0.7835 0 + -0.397902 0.499999 0 + 0.601099 0.499999 0 + 0.601099 1.30531 0 + -0.0656779 1.44098 0 + 0.398901 0.499999 0 + 1.3979 0.499999 0 + 1.06568 1.44098 0 + 0.398901 1.30531 0 + 0.68777 0.499999 0 + 0.9995 0.499999 0 + 0.7835 1.44098 0 + 0.2165 1.44098 0 + 0.324764 1.32902 0 + 0.580862 1.32951 0 + 0.0004995 0.499999 0 + 0.316927 0.499999 0 + endnode + node trimesh meshtdc1403 + parent tdc01_g02_03 + position 5 -5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -197.5 50 162.5 + bitmap tdc01_wall_uni + verts 6 + -1.85 1 0.75 + -2.1 1 0.75 + -2.1 1 2.5 + -1.85 1 2.5 + -2.1 0 0.75 + -2.1 0 2.5 + faces 4 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + 1 4 5 2 1 4 5 3 + 5 2 1 2 5 2 1 3 + tverts 6 + 0.418684 0.0491585 0 + 0.383947 0.0491585 0 + 0.383947 0.472464 0 + 0.418684 0.472464 0 + 0.206819 0.0491585 0 + 0.206819 0.472464 0 + endnode + node trimesh meshtdc1406 + parent tdc01_g02_03 + position 5 -5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -212.5 50 150 + bitmap tdc01_sandstone + verts 13 + -2.4 1 0 + -2 1 0.5 + -2 1 0 + -2.1 0 0.75 + -2.1 1 0.75 + -2.4 0 0 + -1.85 1 0.75 + -2.35 1 3 + -1.85 1 3 + -1.85 1 2.5 + -2.1 1 2.5 + -2.35 0 3 + -2.1 0 2.5 + faces 9 + 0 1 2 1 0 1 2 5 + 0 3 4 2 0 3 4 5 + 3 0 5 2 3 0 5 5 + 0 4 1 1 0 4 1 5 + 4 6 1 1 4 6 1 5 + 7 8 9 1 7 8 9 5 + 10 11 7 2 10 11 7 5 + 11 10 12 2 11 10 12 5 + 10 7 9 1 10 7 9 5 + tverts 13 + 1 0 0 + 1.3556 0.707593 0 + 1.4227 0 0 + 0.5 0.999796 0 + 1 0.999796 0 + 0.5 0 0 + 1.38388 0.999796 0 + 0 0.5 0 + -0.205 0.5 0 + -0.125 0.999501 0 + 0 0.999501 0 + 0.5 0.5 0 + 0.5 0.999501 0 + endnode + node trimesh meshtdc1393 + parent tdc01_g02_03 + position 5 5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -197.5 -50 162.5 + bitmap tdc01_wall_uni + verts 6 + -2.1 -1 0.75 + -1.85 -1 0.75 + -2.1 -1 2.5 + -1.85 -1 2.5 + -2.1 0 0.75 + -2.1 0 2.5 + faces 4 + 0 1 2 1 0 1 2 6 + 3 2 1 1 2 3 0 6 + 4 0 5 2 1 4 5 3 + 2 5 0 2 5 2 1 3 + tverts 6 + 0.418684 0.0491585 0 + 0.383947 0.0491585 0 + 0.383947 0.472464 0 + 0.418684 0.472464 0 + 0.206819 0.0491585 0 + 0.206819 0.472464 0 + endnode + node trimesh meshtdc1380 + parent tdc01_g02_03 + position -5 5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 212.5 -50 150 + bitmap tdc01_sandstone + verts 13 + 2.4 -1 0 + 2 -1 0.5 + 2 -1 0 + 2.1 0 0.75 + 2.1 -1 0.75 + 2.4 0 0 + 1.85 -1 0.75 + 2.35 -1 3 + 1.85 -1 3 + 1.85 -1 2.5 + 2.1 -1 2.5 + 2.35 0 3 + 2.1 0 2.5 + faces 9 + 0 1 2 1 0 1 2 5 + 0 3 4 2 0 3 4 5 + 3 0 5 2 3 0 5 5 + 0 4 1 1 0 4 1 5 + 4 6 1 1 4 6 1 5 + 7 8 9 1 7 8 9 5 + 10 11 7 2 10 11 7 5 + 11 10 12 2 11 10 12 5 + 10 7 9 1 10 7 9 5 + tverts 13 + 1 0 0 + 1.3556 0.707593 0 + 1.4227 0 0 + 0.5 0.999796 0 + 1 0.999796 0 + 0.5 0 0 + 1.38388 0.999796 0 + 0 0.5 0 + -0.205 0.5 0 + -0.125 0.999501 0 + 0 0.999501 0 + 0.5 0.5 0 + 0.5 0.999501 0 + endnode + node trimesh meshtdc0157 + parent tdc01_g02_03 + position 0 0 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 0 0 0 + bitmap tdc01_fltile00 + verts 40 + -2.6 -4 0 + -2.6 -5 0 + -1 -3 0 + -1 -5 0 + 1 -3 0 + 1 -5 0 + 2.6 -4 0 + 3 -4 0 + -3 -1 0 + -3 -3 0 + -1 -1 0 + 1 -1 0 + 3 -1 0 + 3 -3 0 + -3 -0.36 0 + -2.6 -0.28 0 + -1 1 0 + 1 1 0 + 3 1 0 + 2.6 0.28 0 + 3 0.36 0 + -3 3 0 + -3 1 0 + -1 3 0 + 1 3 0 + 3 3 0 + -3 4 0 + -2.6 4 0 + -1 5 0 + 1 5 0 + 2.6 4 0 + 2.6 5 0 + 3 -0.34 0 + 2.6 -0.26 0 + -3 0.34 0 + -2.6 0.26 0 + 2.6 -5 0 + 3 4 0 + -2.6 5 0 + -3 -4 0 + faces 46 + 0 1 2 1 0 1 2 1 + 2 3 4 1 3 4 5 1 + 5 4 3 1 6 5 4 1 + 4 6 7 1 7 8 9 1 + 8 9 10 1 10 11 7 1 + 2 10 9 1 2 7 11 1 + 10 2 11 1 5 6 12 1 + 4 11 2 1 13 12 6 1 + 11 4 12 1 2 14 11 1 + 13 12 4 1 15 11 14 1 + 14 8 15 1 16 15 17 1 + 10 16 8 1 14 2 15 1 + 15 8 16 1 17 15 2 1 + 16 10 17 1 3 4 5 1 + 11 17 10 1 6 5 4 1 + 17 11 18 1 7 2 10 1 + 19 18 11 1 18 10 2 1 + 20 18 19 1 19 10 18 1 + 21 22 23 1 10 11 7 1 + 16 23 22 1 2 7 11 1 + 23 16 24 1 5 6 12 1 + 17 24 16 1 13 12 6 1 + 24 17 25 1 2 14 11 1 + 18 25 17 1 15 11 14 1 + 26 23 27 1 20 14 0 1 + 28 23 29 1 5 3 6 1 + 24 29 23 1 4 6 3 1 + 29 24 30 1 7 2 8 1 + 30 31 29 1 8 21 7 1 + 12 32 11 1 11 22 2 1 + 32 33 11 1 22 23 2 1 + 22 34 16 1 11 24 2 1 + 34 35 16 1 24 25 2 1 + 33 19 11 1 23 18 2 1 + 35 15 16 1 25 17 2 1 + 13 4 7 1 10 7 9 1 + 4 5 6 1 7 2 8 1 + 6 5 36 1 8 2 26 1 + 24 25 30 1 2 11 8 1 + 30 25 37 1 8 11 9 1 + 21 23 26 1 15 14 20 1 + 23 28 27 1 14 2 0 1 + 27 28 38 1 0 2 26 1 + 3 2 1 1 14 2 1 1 + 2 9 0 1 2 11 0 1 + 0 9 39 1 0 11 20 1 + tverts 27 + 0.05 0.375 0 + 0.05 0.25 0 + 0.25 0.5 0 + 0.75 0.25 0 + 1 0.25 0 + 0.75 0.5 0 + 1 0.5 0 + 0.25 0.75 0 + 0.05 0.625 0 + 0 0.625 0 + 0 0.75 0 + 0 0.5 0 + 0.75 0.75 0 + 1 0.75 0 + 0.25 0.25 0 + 0 0.25 0 + 0 0.331171 0 + 0.0492227 0.340915 0 + 0.0490316 0.660377 0 + 0 0.669861 0 + 0 0.375 0 + 0.05 0.75 0 + 0 0.582766 0 + 0.0494365 0.593702 0 + 0 0.417385 0 + 0.0490634 0.407475 0 + 0.05 0.5 0 + endnode + node trimesh meshtdc1389 + parent tdc01_g02_03 + position 4.8 3 1.1 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -115 0 105.5 + bitmap tdc01_pitwall00 + verts 8 + -0.65 -0.66 1.33 + -0.65 0.66 1.33 + -0.65 -0.66 0.78 + -0.65 0.66 0.78 + -1.65 -0.9 0.78 + -1.65 -0.9 1.33 + -1.65 0.9 0.78 + -1.65 0.9 1.33 + faces 8 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 5 0 2 4 5 6 6 + 0 2 4 2 6 7 4 6 + 6 4 2 4 8 9 10 6 + 2 3 6 4 10 11 8 6 + 7 6 3 2 6 7 4 6 + 3 1 7 2 4 5 6 6 + tverts 12 + 1.88889 0.385988 0 + -0.11111 0.385988 0 + 1.88889 0.0193209 0 + -0.11111 0.0193209 0 + 1 0.0193209 0 + 1 0.385988 0 + -1 0.385988 0 + -1 0.0193209 0 + 1.11111 1 0 + -0.88889 1 0 + -0.88889 0 0 + 1.11111 -4e-07 0 + endnode + node trimesh meshtdc0158 + parent tdc01_g02_03 + position 3.2 3.01 1.4 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -10 -1 -12.5 + bitmap tdc01_copper00 + verts 5 + -0.05 -0.91 0.15 + -0.05 0.89 0.15 + -0.15 -0.01 -0.12 + -0.05 0.89 -0.4 + -0.05 -0.91 -0.4 + faces 4 + 0 1 2 1 0 1 2 4 + 3 2 1 1 3 2 1 4 + 3 4 2 1 3 4 2 4 + 0 2 4 1 0 2 4 4 + tverts 5 + 0.0004995 0.99975 0 + 0.999501 0.99975 0 + 0.50172 0.75086 0 + 0.999501 0.50025 0 + 0.0004995 0.50025 0 + endnode + node trimesh meshtdc1388 + parent tdc01_g02_03 + position 3.16 3 1.47 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -1 -300 35.5 + bitmap tdc01_wall_uni + verts 24 + -0.01 -0.9 0.96 + -0.01 -0.9 0.41 + -0.01 -1 1.23 + -0.01 -1 -0.52 + -0.01 -0.9 0.08 + -0.01 -0.9 -0.47 + -0.01 1 -0.52 + -0.01 0.9 -0.47 + -0.01 0.9 0.96 + -0.01 1 1.23 + -0.01 0.9 0.41 + -0.01 0.9 0.08 + -0.01 -6.9 0.96 + -0.01 -6.9 0.41 + -0.01 -7 1.23 + -0.01 -7 -0.52 + -0.01 -6.9 0.08 + -0.01 -6.9 -0.47 + -0.01 -5 -0.52 + -0.01 -5.1 -0.47 + -0.01 -5.1 0.96 + -0.01 -5 1.23 + -0.01 -5.1 0.41 + -0.01 -5.1 0.08 + faces 28 + 0 1 2 1 0 1 2 6 + 3 2 4 1 3 2 4 6 + 1 4 2 1 1 4 2 6 + 4 5 3 1 4 5 3 6 + 6 3 7 1 6 3 7 6 + 5 7 3 1 5 7 3 6 + 8 9 10 1 8 9 10 6 + 10 9 11 1 10 9 11 6 + 6 11 9 1 6 11 9 6 + 11 6 7 1 11 6 7 6 + 1 10 4 1 1 10 4 6 + 11 4 10 1 11 4 10 6 + 2 9 0 1 2 9 0 6 + 8 0 9 1 8 0 9 6 + 12 13 14 1 0 1 2 6 + 15 14 16 1 3 2 4 6 + 13 16 14 1 1 4 2 6 + 16 17 15 1 4 5 3 6 + 18 15 19 1 6 3 7 6 + 17 19 15 1 5 7 3 6 + 20 21 22 1 8 9 10 6 + 22 21 23 1 10 9 11 6 + 18 23 21 1 6 11 9 6 + 23 18 19 1 11 6 7 6 + 13 22 16 1 1 10 4 6 + 23 16 22 1 11 4 10 6 + 14 21 12 1 2 9 0 6 + 20 12 21 1 8 0 9 6 + tverts 12 + 0.484462 0.428496 0 + 0.484462 0.268432 0 + 0.509927 0.507073 0 + 0.509927 -0.0022215 0 + 0.484462 0.172394 0 + 0.484462 0.0123298 0 + 0.0006321 -0.0022215 0 + 0.0260969 0.0123298 0 + 0.0260969 0.428496 0 + 0.000632 0.507073 0 + 0.0260969 0.268432 0 + 0.0260969 0.172394 0 + endnode + node trimesh meshtdc1356 + parent tdc01_g02_03 + position -4.93 3 1.1 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 128 0 105.5 + bitmap tdc01_pitwall00 + verts 8 + 0.78 0.66 1.33 + 0.78 -0.66 1.33 + 0.78 0.66 0.78 + 0.78 -0.66 0.78 + 1.78 0.9 0.78 + 1.78 0.9 1.33 + 1.78 -0.9 0.78 + 1.78 -0.9 1.33 + faces 8 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 5 0 2 4 5 6 6 + 0 2 4 2 6 7 4 6 + 6 4 2 4 8 9 10 6 + 2 3 6 4 10 11 8 6 + 7 6 3 2 6 7 4 6 + 3 1 7 2 4 5 6 6 + tverts 12 + 1.88889 0.385988 0 + -0.11111 0.385988 0 + 1.88889 0.0193209 0 + -0.11111 0.0193209 0 + 1 0.0193209 0 + 1 0.385988 0 + -1 0.385988 0 + -1 0.0193209 0 + 1.11111 1 0 + -0.88889 1 0 + -0.88889 0 0 + 1.11111 -4e-07 0 + endnode + node trimesh meshtdc1376 + parent tdc01_g02_03 + position -5 -5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 212.5 50 150 + bitmap tdc01_sandstone + verts 13 + 2 1 0.5 + 2.4 1 0 + 2 1 0 + 2.1 0 0.75 + 2.1 1 0.75 + 2.4 0 0 + 1.85 1 0.75 + 1.85 1 3 + 2.35 1 3 + 1.85 1 2.5 + 2.35 0 3 + 2.1 1 2.5 + 2.1 0 2.5 + faces 9 + 0 1 2 1 0 1 2 5 + 3 1 4 2 3 1 4 5 + 1 3 5 2 1 3 5 5 + 4 1 0 1 4 1 0 5 + 6 4 0 1 6 4 0 5 + 7 8 9 1 7 8 9 5 + 10 11 8 2 10 11 8 5 + 11 10 12 2 11 10 12 5 + 8 11 9 1 8 11 9 5 + tverts 13 + 1.3556 0.707593 0 + 1 0 0 + 1.4227 0 0 + 0.5 0.999796 0 + 1 0.999796 0 + 0.5 0 0 + 1.38388 0.999796 0 + -0.205 0.5 0 + 0 0.5 0 + -0.125 0.999501 0 + 0.5 0.5 0 + 0 0.999501 0 + 0.5 0.999501 0 + endnode + node trimesh meshtdc1375 + parent tdc01_g02_03 + position -5 -5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 197.5 50 162.5 + bitmap tdc01_wall_uni + verts 6 + 2.1 1 0.75 + 1.85 1 0.75 + 2.1 1 2.5 + 1.85 1 2.5 + 2.1 0 0.75 + 2.1 0 2.5 + faces 4 + 0 1 2 1 0 1 2 6 + 3 2 1 1 2 3 0 6 + 4 0 5 2 1 4 5 3 + 2 5 0 2 5 2 1 3 + tverts 6 + 0.418684 0.0491585 0 + 0.383947 0.0491585 0 + 0.383947 0.472464 0 + 0.418684 0.472464 0 + 0.206819 0.0491585 0 + 0.206819 0.472464 0 + endnode + node trimesh mesh22 + parent tdc01_g02_03 + diffuse 0 0 0 + position 2.5 1 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 0 0 0 + specular 0 0 0 + shininess 11 + center 0 0 390 + bitmap twc03_black + verts 4 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + 0.45 0.45 3.9 + faces 2 + 0 1 2 1 0 0 0 1 + 2 3 0 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node trimesh meshtdc1377 + parent tdc01_g02_03 + position -5 5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 197.5 -50 162.5 + bitmap tdc01_wall_uni + verts 6 + 1.85 -1 0.75 + 2.1 -1 0.75 + 2.1 -1 2.5 + 1.85 -1 2.5 + 2.1 0 0.75 + 2.1 0 2.5 + faces 4 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + 1 4 5 2 1 4 5 3 + 5 2 1 2 5 2 1 3 + tverts 6 + 0.418684 0.0491585 0 + 0.383947 0.0491585 0 + 0.383947 0.472464 0 + 0.418684 0.472464 0 + 0.206819 0.0491585 0 + 0.206819 0.472464 0 + endnode + node trimesh meshtdc0155 + parent tdc01_g02_03 + position 3.15 0 2.75 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -21.5 0 -92.5 + bitmap tdc01_wall_uni + verts 14 + 0 -0.27 -0.05 + -0.43 -0.2 -0.05 + -0.25 -0.2 -1.8 + 0 -0.27 -1.8 + -0.43 0.22 -0.05 + -0.25 0.22 -1.8 + 0 0.29 -0.05 + 0 0.29 -1.8 + 0 -2 -1.8 + 0 -2 -0.05 + 0 -0.5 -0.05 + 0 0.5 -0.05 + 0 2 -1.8 + 0 2 -0.05 + faces 12 + 0 1 2 1 0 1 2 4 + 2 3 0 1 2 3 0 4 + 1 4 5 2 1 4 5 4 + 5 2 1 2 5 2 1 4 + 4 6 7 1 6 7 8 4 + 7 5 4 1 8 9 6 4 + 3 8 9 2 10 11 12 6 + 3 10 0 2 10 13 14 6 + 3 9 10 2 10 12 13 6 + 11 7 6 2 15 16 17 6 + 12 11 13 2 18 15 19 6 + 12 7 11 2 18 16 15 6 + tverts 20 + 0.24992 0.499741 0 + 0.186785 0.499741 0 + 0.186785 0.009946 0 + 0.24992 0.009946 0 + 0.050137 0.499741 0 + 0.050137 0.0099459 0 + 0.494938 0.499741 0 + 0.412032 0.499741 0 + 0.412032 0.009946 0 + 0.494938 0.0099459 0 + -0.21055 0.0082777 0 + 0.27629 0.0082777 0 + 0.27629 0.49512 0 + -0.11753 0.49512 0 + -0.21055 0.49512 0 + 0.574318 0.995312 0 + 0.636095 0.517321 0 + 0.636095 0.995312 0 + 0.158104 0.517321 0 + 0.158104 0.995312 0 + endnode + node trimesh meshtdc4349 + parent tdc01_g02_03 + position 0 0.01 4.04 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 0 0 57 + bitmap tdc01_sandstone + tilefade 0 + verts 16 + -0.32 -0.25 0 + 0.32 -0.25 0 + 0.63 -0.49 1.14 + -0.63 -0.49 1.14 + 0.32 0.25 0 + 0.42 0.13 0.37 + 0.63 0.49 1.14 + 0.58 -0.19 0.96 + -0.32 0.25 0 + -0.63 0.49 1.14 + 0.42 -0.13 0.37 + 0.58 0.19 0.96 + -0.42 0.13 0.37 + -0.58 -0.19 0.96 + -0.42 -0.13 0.37 + -0.58 0.19 0.96 + faces 20 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 1 4 5 2 0 1 4 4 + 6 2 7 2 2 3 5 4 + 4 8 9 1 0 1 2 6 + 9 6 4 1 2 3 0 6 + 10 2 1 2 6 3 0 4 + 7 2 10 2 5 3 6 4 + 6 7 11 2 2 5 7 4 + 1 5 10 2 0 4 6 4 + 5 4 6 2 4 1 2 4 + 11 5 6 2 7 4 2 4 + 8 0 12 2 1 0 4 4 + 3 9 13 2 3 2 5 4 + 3 14 0 2 3 6 0 4 + 3 13 14 2 3 5 6 4 + 13 9 15 2 5 2 7 4 + 12 0 14 2 4 0 6 4 + 8 12 9 2 1 4 2 4 + 12 15 9 2 4 7 2 4 + tverts 8 + 0.245153 0.0004995 0 + 0.754847 0.0004995 0 + 0.9995 0.9995 0 + 0.0004995 0.9995 0 + 0.630027 0.324854 0 + 0.309963 0.840651 0 + 0.368571 0.326838 0 + 0.690586 0.842145 0 + endnode + node trimesh meshtdc4352 + parent tdc01_g02_03 + position -1.48 0.01 3.49 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -86.5 0 40 + bitmap tdc01_sandstone + tilefade 0 + verts 16 + -0.4 0.25 0.12 + -0.4 -0.25 0.12 + -0.84 0.25 -0.11 + -0.84 -0.25 -0.11 + -1.33 -0.36 0.58 + -0.69 -0.36 0.91 + -0.89 -0.13 -0.04 + -1.33 0.36 0.58 + -1.24 -0.19 0.46 + -0.69 0.36 0.91 + -0.44 -0.13 0.23 + -0.64 -0.19 0.79 + -0.64 0.19 0.79 + -0.44 0.13 0.23 + -0.89 0.13 -0.04 + -1.24 0.18 0.46 + faces 22 + 0 1 2 1 0 1 2 2 + 3 2 1 1 3 2 1 2 + 3 1 4 2 4 5 6 5 + 5 4 1 2 7 6 5 5 + 2 3 6 4 4 5 8 4 + 4 7 8 4 7 6 9 4 + 0 2 9 2 4 5 6 6 + 7 9 2 2 7 6 5 6 + 1 0 10 4 4 5 10 3 + 9 5 11 4 7 6 11 3 + 9 11 12 4 7 11 12 3 + 1 10 5 4 4 10 6 3 + 10 0 13 4 10 5 13 3 + 9 12 0 4 7 12 5 3 + 12 13 0 4 12 13 5 3 + 10 11 5 4 10 11 6 3 + 2 6 14 4 4 8 14 4 + 4 8 3 4 7 9 5 4 + 8 7 15 4 9 6 15 4 + 8 6 3 4 9 8 5 4 + 2 14 7 4 4 14 6 4 + 14 15 7 4 14 15 6 4 + tverts 16 + 0.846869 0.846875 0 + 0.846869 0.153125 0 + 0.153119 0.846875 0 + 0.153119 0.153125 0 + 0.846881 0.500002 0 + 0.153131 0.500002 0 + 0.999506 1.499 0 + 0.0005054 1.499 0 + 0.322096 0.60356 0 + 0.23767 1.33156 0 + 0.675304 0.634319 0 + 0.766609 1.34464 0 + 0.239425 1.34167 0 + 0.32249 0.632936 0 + 0.678759 0.599989 0 + 0.757652 1.33153 0 + endnode + node trimesh meshtdc1357 + parent tdc01_g02_03 + position -4 3 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 85 0 162.5 + bitmap tdc01_wall_uni + verts 12 + 0.85 0.9 2.23 + 0.85 0.9 1.68 + 0.85 1 2.5 + 0.85 1 0.75 + 0.85 0.9 1.35 + 0.85 0.9 0.8 + 0.85 -1 0.75 + 0.85 -0.9 0.8 + 0.85 -0.9 2.23 + 0.85 -1 2.5 + 0.85 -0.9 1.68 + 0.85 -0.9 1.35 + faces 14 + 0 1 2 1 0 1 2 6 + 3 2 4 1 3 2 4 6 + 1 4 2 1 1 4 2 6 + 4 5 3 1 4 5 3 6 + 6 3 7 1 6 3 7 6 + 5 7 3 1 5 7 3 6 + 8 9 10 1 8 9 10 6 + 10 9 11 1 10 9 11 6 + 6 11 9 1 6 11 9 6 + 11 6 7 1 11 6 7 6 + 1 10 4 1 1 10 4 6 + 11 4 10 1 11 4 10 6 + 2 9 0 1 2 9 0 6 + 8 0 9 1 8 0 9 6 + tverts 12 + 0.971881 0.430059 0 + 0.971881 0.264811 0 + 0.996682 0.520843 0 + 0.996682 -0.004947 0 + 0.971881 0.175324 0 + 0.971881 0.0100756 0 + 0.500654 -0.004947 0 + 0.525455 0.0100756 0 + 0.525455 0.430059 0 + 0.500654 0.520843 0 + 0.525455 0.264811 0 + 0.525455 0.175324 0 + endnode + node trimesh meshtdc0153 + parent tdc01_g02_03 + position -4.16 0 2.68 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 134.5 0 -98 + bitmap tdc01_sandstone + verts 22 + 1.16 0.27 -1.98 + 1.26 0.2 -1.73 + 1.56 0.26 -2.48 + 1.26 -0.22 -1.73 + 1.56 -0.28 -2.48 + 1.01 -0.29 -1.73 + 1.16 -0.28 -1.98 + 1.16 -0.36 -2.48 + 1.16 0.34 -2.48 + 1.01 0.27 -1.73 + 1.58 0.29 0.02 + 1.68 0.29 0.35 + 1.58 -0.27 0.02 + 1.68 -0.27 0.35 + 1.01 0.5 0.02 + 1.01 0.5 0.52 + 1.01 -0.5 0.52 + 1.01 -0.5 0.02 + 1.01 0.2 0.52 + 1.56 -0.1 0.37 + 1.56 0.1 0.37 + 1.01 -0.2 0.52 + faces 20 + 0 1 2 1 0 1 2 4 + 1 3 4 2 3 4 5 4 + 4 2 1 2 5 6 3 4 + 3 5 6 1 7 8 9 4 + 6 4 3 4 9 10 7 4 + 6 7 4 4 9 11 10 4 + 2 8 0 4 2 12 0 4 + 1 0 9 8 1 0 13 4 + 10 11 12 1 14 15 16 1 + 13 12 11 1 17 16 15 1 + 14 15 10 2 18 19 20 5 + 11 10 15 2 21 20 19 5 + 16 17 13 2 22 23 24 6 + 12 13 17 2 25 24 23 6 + 15 18 11 4 26 27 28 3 + 13 11 19 4 29 28 30 3 + 18 20 11 4 27 31 28 3 + 13 19 16 4 29 30 32 3 + 19 11 20 4 30 28 31 3 + 19 21 16 4 30 33 32 3 + tverts 34 + 0.7767 0.785471 0 + 1.1016 0.954095 0 + 0.1026 1.499 0 + -0.1016 0.771979 0 + -0.1016 0.204979 0 + 0.8974 0.134104 0 + 0.8974 0.842854 0 + -0.1016 0.954095 0 + -0.1016 0.499999 0 + 0.2373 0.756167 0 + 0.8974 1.499 0 + 0.8974 0.763848 0 + 0.1026 0.764377 0 + 1.1016 0.499999 0 + 0.601099 0.2165 0 + -0.0656779 0.2165 0 + 0.601099 0.7835 0 + -0.0656777 0.7835 0 + 0.601099 0.499999 0 + -0.397902 0.499999 0 + 0.601099 1.30531 0 + -0.0656779 1.44098 0 + 1.3979 0.499999 0 + 0.398901 0.499999 0 + 1.06568 1.44098 0 + 0.398901 1.30531 0 + 0.9995 0.499999 0 + 0.68777 0.499999 0 + 0.7835 1.44098 0 + 0.2165 1.44098 0 + 0.324764 1.32902 0 + 0.580862 1.32951 0 + 0.0004995 0.499999 0 + 0.316927 0.499999 0 + endnode + node trimesh meshtdc0161 + parent tdc01_g02_03 + position -3.2 3 1.55 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 10 0 -27.5 + bitmap tdc01_copper00 + verts 5 + 0.05 0.9 0 + 0.05 -0.9 0 + 0.15 0 -0.27 + 0.05 -0.9 -0.55 + 0.05 0.9 -0.55 + faces 4 + 0 1 2 1 0 1 2 4 + 3 2 1 1 3 2 1 4 + 3 4 2 1 3 4 2 4 + 0 2 4 1 0 2 4 4 + tverts 5 + 0.0004995 0.99975 0 + 0.999501 0.99975 0 + 0.50172 0.75086 0 + 0.999501 0.50025 0 + 0.0004995 0.50025 0 + endnode + node trimesh meshtdc4626 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + position -0.41 0.01 3.49 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 1 + center 0 0 0 + bitmap tdc01_black8_00 + tilefade 0 + verts 8 + 3.22 0.36 0.58 + 2.58 0.36 0.91 + 2.58 -0.36 0.91 + 3.22 -0.36 0.58 + -2.4 -0.36 0.58 + -1.76 -0.36 0.91 + -1.76 0.36 0.91 + -2.4 0.36 0.58 + faces 4 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 5 6 1 4 5 6 1 + 6 7 4 1 6 7 4 1 + tverts 8 + 1.306 0.647 0 + 0.665 0.647 0 + 0.665 -0.073 0 + 1.306 -0.073 0 + -0.305 -0.073 0 + 0.335 -0.073 0 + 0.335 0.647 0 + -0.305 0.647 0 + endnode + node trimesh meshtdc0152 + parent tdc01_g02_03 + position -3.19 0 2.28 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 25.5 0 -45.5 + bitmap tdc01_wall_uni + verts 14 + 0.04 0.27 0.42 + 0.47 0.2 0.42 + 0.29 0.2 -1.33 + 0.04 0.27 -1.33 + 0.47 -0.22 0.42 + 0.29 -0.22 -1.33 + 0.04 -0.29 0.42 + 0.04 -0.29 -1.33 + 0.04 2 -1.33 + 0.04 2 0.42 + 0.04 0.5 0.42 + 0.04 -0.5 0.42 + 0.04 -2 -1.33 + 0.04 -2 0.42 + faces 12 + 0 1 2 1 0 1 2 4 + 2 3 0 1 2 3 0 4 + 1 4 5 2 1 4 5 4 + 5 2 1 2 5 2 1 4 + 4 6 7 1 6 7 8 4 + 7 5 4 1 8 9 6 4 + 3 8 9 2 10 11 12 6 + 3 10 0 2 10 13 14 6 + 3 9 10 2 10 12 13 6 + 11 7 6 2 15 16 17 6 + 12 11 13 2 18 15 19 6 + 12 7 11 2 18 16 15 6 + tverts 20 + 0.24992 0.499741 0 + 0.186785 0.499741 0 + 0.186785 0.009946 0 + 0.24992 0.009946 0 + 0.050137 0.499741 0 + 0.050137 0.0099459 0 + 0.494938 0.499741 0 + 0.412032 0.499741 0 + 0.412032 0.009946 0 + 0.494938 0.0099459 0 + 0.706268 0.501031 0 + 1.19311 0.501031 0 + 1.19311 0.987874 0 + 0.781015 0.987874 0 + 0.706268 0.987874 0 + 0.501816 1.03727 0 + 0.575852 0.511479 0 + 0.575852 1.03727 0 + 0.0500617 0.511479 0 + 0.0500616 1.03727 0 + endnode + node trimesh meshtdc1369 + parent tdc01_g02_03 + position -4 -3 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 85 0 162.5 + bitmap tdc01_wall_uni + verts 12 + 0.85 0.9 2.23 + 0.85 0.9 1.68 + 0.85 1 2.5 + 0.85 1 0.75 + 0.85 0.9 1.35 + 0.85 0.9 0.8 + 0.85 -1 0.75 + 0.85 -0.9 0.8 + 0.85 -0.9 2.23 + 0.85 -1 2.5 + 0.85 -0.9 1.68 + 0.85 -0.9 1.35 + faces 14 + 0 1 2 1 0 1 2 6 + 3 2 4 1 3 2 4 6 + 1 4 2 1 1 4 2 6 + 4 5 3 1 4 5 3 6 + 6 3 7 1 6 3 7 6 + 5 7 3 1 5 7 3 6 + 8 9 10 1 8 9 10 6 + 10 9 11 1 10 9 11 6 + 6 11 9 1 6 11 9 6 + 11 6 7 1 11 6 7 6 + 1 10 4 1 1 10 4 6 + 11 4 10 1 11 4 10 6 + 2 9 0 1 2 9 0 6 + 8 0 9 1 8 0 9 6 + tverts 12 + 0.971881 0.430059 0 + 0.971881 0.264811 0 + 0.996682 0.520843 0 + 0.996682 -0.004947 0 + 0.971881 0.175324 0 + 0.971881 0.0100756 0 + 0.500654 -0.004947 0 + 0.525455 0.0100756 0 + 0.525455 0.430059 0 + 0.500654 0.520843 0 + 0.525455 0.264811 0 + 0.525455 0.175324 0 + endnode + node trimesh meshtdc0160 + parent tdc01_g02_03 + position -3.2 -3 2.43 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 10 0 -27.5 + bitmap tdc01_copper00 + verts 5 + 0.05 0.9 0 + 0.05 -0.9 0 + 0.15 0 -0.27 + 0.05 -0.9 -0.55 + 0.05 0.9 -0.55 + faces 4 + 0 1 2 1 0 1 2 4 + 3 2 1 1 3 2 1 4 + 3 4 2 1 3 4 2 4 + 0 2 4 1 0 2 4 4 + tverts 5 + 0.0004996 0.49975 0 + 0.9995 0.49975 0 + 0.50172 0.25086 0 + 0.9995 0.0002497 0 + 0.0004996 0.0002498 0 + endnode + node trimesh meshtdc4364 + parent tdc01_g02_03 + position 5.01 -3 1.7 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -191 0 1.5 + bitmap tdc01_copper00 + verts 10 + -1.86 -0.9 -0.15 + -1.86 0.9 -0.15 + -1.96 0 -0.42 + -1.86 0.9 -0.7 + -1.86 -0.9 -0.7 + -1.86 -0.9 0.73 + -1.86 0.9 0.73 + -1.96 0 0.46 + -1.86 0.9 0.18 + -1.86 -0.9 0.18 + faces 8 + 0 1 2 1 0 1 2 4 + 3 2 1 1 3 2 1 4 + 3 4 2 1 3 4 2 4 + 0 2 4 1 0 2 4 4 + 5 6 7 1 5 6 7 4 + 8 7 6 1 8 7 6 4 + 8 9 7 1 8 9 7 4 + 5 7 9 1 5 7 9 4 + tverts 10 + 0.0004995 0.99975 0 + 0.999501 0.99975 0 + 0.50172 0.75086 0 + 0.999501 0.50025 0 + 0.0004995 0.50025 0 + 0.0004996 0.49975 0 + 0.9995 0.49975 0 + 0.50172 0.25086 0 + 0.9995 0.0002497 0 + 0.0004996 0.0002498 0 + endnode + node trimesh meshtdc1371 + parent tdc01_g02_03 + position -4.93 -3 0.22 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 128 0 105.5 + bitmap tdc01_pitwall00 + verts 8 + 0.78 0.66 1.33 + 0.78 -0.66 1.33 + 0.78 0.66 0.78 + 0.78 -0.66 0.78 + 1.78 0.9 0.78 + 1.78 0.9 1.33 + 1.78 -0.9 0.78 + 1.78 -0.9 1.33 + faces 8 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 5 0 2 4 5 6 6 + 0 2 4 2 6 7 4 6 + 6 4 2 4 8 9 10 6 + 2 3 6 4 10 11 8 6 + 7 6 3 2 6 7 4 6 + 3 1 7 2 4 5 6 6 + tverts 12 + 1.88889 0.385988 0 + -0.11111 0.385988 0 + 1.88889 0.0193209 0 + -0.11111 0.0193209 0 + 1 0.0193209 0 + 1 0.385988 0 + -1 0.385988 0 + -1 0.0193209 0 + 1.11111 1 0 + -0.88889 1 0 + -0.88889 0 0 + 1.11111 -4e-07 0 + endnode + node trimesh object251 + parent tdc01_g02_03 + position 3.16 3 1.47 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 1 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -205 -292 179.5 + bitmap tdc01_alpha + tilefade 0 + verts 7 + -0.51 -2.92 1.4 + -2.31 -2.92 1.4 + -0.51 -2.92 2.32 + -2.07 -2.92 2.36 + -3.2 -2.92 0.97 + -3.59 -2.92 2.56 + -2.81 -2.92 2.62 + faces 6 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 5 6 1 4 5 6 6 + 1 0 2 2 1 0 2 6 + 2 3 1 2 2 3 1 6 + 5 4 6 2 5 4 6 6 + tverts 7 + 0.740965 0.0415624 0 + 0.0577326 0.041563 0 + 0.740965 0.294186 0 + 0.0577326 0.294186 0 + 0.229814 -0.0164086 0 + 0.0478648 0.271032 0 + 0.405461 0.279693 0 + endnode + node trimesh meshtdc1360 + parent tdc01_g02_03 + position -4 1 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 85 -100 275 + bitmap tdc01_trim00 + verts 12 + 0.85 1 3 + 0.85 -0.5 3 + 0.85 -0.5 2.5 + 0.85 1 2.5 + 0.85 3 3 + 0.85 3 2.5 + 0.85 -1.5 3 + 0.85 -3 3 + 0.85 -3 2.5 + 0.85 -1.5 2.5 + 0.85 -5 3 + 0.85 -5 2.5 + faces 8 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 4 0 3 1 0 1 2 5 + 3 5 4 1 2 3 0 5 + 6 7 8 1 0 1 2 5 + 8 9 6 1 2 3 0 5 + 7 10 11 1 0 1 2 5 + 11 8 7 1 2 3 0 5 + tverts 4 + 0.0004995 0.76 0 + 0.999501 0.76 0 + 0.999501 1 0 + 0.0004995 1 0 + endnode + node trimesh meshtdc1372 + parent tdc01_g02_03 + position -4 -3 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 92.5 300 37.5 + bitmap tdc01_trim00 + verts 20 + 1 0 0 + 1 2 0 + 1 1 0.5 + 1 -1 0.5 + 1 -1 0 + 0.85 1 0.75 + 0.85 -1 0.75 + 1 2.64 0 + 1 2.72 0.5 + 0.85 2.71 0.75 + 1 4 0 + 1 6 0 + 1 5 0.5 + 1 3.27 0.5 + 1 3.34 0 + 0.85 5 0.75 + 0.85 3.27 0.75 + 1 7 0 + 1 7 0.5 + 0.85 7 0.75 + faces 18 + 0 1 2 1 0 1 2 5 + 0 3 4 1 0 3 4 5 + 3 2 5 2 3 2 5 5 + 5 6 3 2 5 6 3 5 + 1 7 8 1 7 8 2 5 + 8 2 1 1 2 3 7 5 + 2 8 9 2 3 2 5 5 + 9 5 2 2 5 6 3 5 + 10 11 12 1 9 10 2 5 + 10 13 14 1 9 3 11 5 + 13 12 15 2 3 2 5 5 + 15 16 13 2 5 6 3 5 + 11 17 18 1 12 13 2 5 + 18 12 11 1 2 3 12 5 + 12 18 19 2 3 2 5 5 + 19 15 12 2 5 6 3 5 + 3 0 2 1 3 0 2 5 + 13 10 12 1 3 9 2 5 + tverts 14 + 0.479835 0.116442 0 + 1.52447 0.116442 0 + 1.00147 0.75 0 + 0.0024731 0.75 0 + -0.0271302 0.116442 0 + 0.999501 0.999501 0 + 0.0004995 0.999501 0 + 0.608354 0.116442 0 + 0.9324 0.116442 0 + 0.512878 0.116442 0 + 1.46526 0.116442 0 + 0.0123408 0.116442 0 + 0.505729 0.116442 0 + 0.928452 0.116442 0 + endnode + node trimesh plane25 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + position 2.5 1 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 11 + center 0 0 195 + bitmap tdc01_trim00 + verts 20 + 0.4 0.4 0 + -0.4 0.4 0 + -0.4 0.4 0.2 + 0.4 0.4 0.2 + -0.4 -0.4 0 + -0.4 -0.4 0.2 + 0.4 -0.4 0 + 0.4 -0.4 0.2 + -0.25 0.25 0.6 + 0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + -0.25 0.25 3 + 0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + -0.45 0.45 3.9 + 0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 4 5 2 4 5 6 1 + 5 2 1 2 6 7 4 1 + 4 6 7 1 8 9 10 1 + 7 5 4 1 10 11 8 1 + 6 0 3 2 12 13 14 1 + 3 7 6 2 14 15 12 1 + 3 2 8 4 3 2 16 1 + 8 9 3 4 16 17 3 1 + 2 5 10 8 7 6 18 1 + 10 8 2 8 18 19 7 1 + 5 7 11 4 11 10 20 1 + 11 10 5 4 20 21 11 1 + 7 3 9 8 15 14 22 1 + 9 11 7 8 22 23 15 1 + 9 8 12 1 24 25 26 1 + 12 13 9 1 26 27 24 1 + 8 10 14 2 28 29 30 1 + 14 12 8 2 30 31 28 1 + 10 11 15 1 32 33 34 1 + 15 14 10 1 34 35 32 1 + 11 9 13 2 36 37 38 1 + 13 15 11 2 38 39 36 1 + 13 12 16 4 40 41 42 1 + 16 17 13 4 42 43 40 1 + 12 14 18 8 44 45 46 1 + 18 16 12 8 46 47 44 1 + 14 15 19 4 48 49 50 1 + 19 18 14 4 50 51 48 1 + 15 13 17 8 52 53 54 1 + 17 19 15 8 54 55 52 1 + tverts 56 + 0.216757 0.0271105 0 + 0.536757 0.0271105 0 + 0.536757 0.107111 0 + 0.216757 0.107111 0 + 0.21451 0.0271105 0 + 0.53451 0.0271105 0 + 0.53451 0.107111 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.783243 0.0271105 0 + 0.783243 0.107111 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.476757 0.26711 0 + 0.276757 0.26711 0 + 0.47451 0.26711 0 + 0.27451 0.26711 0 + 0.723243 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.273966 0.288193 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.273966 1.64023 0 + 0.278974 0.288193 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.726033 0.288193 0 + 0.726033 1.64023 0 + 0.526033 1.64023 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.268677 0.744214 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.188677 1.0796 0 + 0.523241 0.744214 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.731323 0.744214 0 + 0.811323 1.0796 0 + 0.451322 1.0796 0 + endnode + node trimesh meshtdc4363 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + position 4 0.69 3.17 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 1 + center -400 -69 3 + bitmap tdc01_black8_00 + verts 28 + 1 4.31 0.03 + -0.85 -0.19 0.03 + 1 -5.69 0.03 + -0.85 1.31 0.03 + -0.85 3.31 0.03 + -1.35 4.31 0.03 + -1.35 3.31 0.03 + -0.85 -1.19 0.03 + -0.85 -2.69 0.03 + -0.85 -4.69 0.03 + -1.35 -5.69 0.03 + -1.35 -4.69 0.03 + -0.85 -0.89 0.03 + -7.15 -0.19 0.03 + -7.15 1.31 0.03 + -9 4.31 0.03 + -7.15 3.31 0.03 + -9 -5.69 0.03 + -6.65 4.31 0.03 + -6.65 3.31 0.03 + -7.15 -2.69 0.03 + -7.15 -1.19 0.03 + -7.15 -4.69 0.03 + -6.65 -5.69 0.03 + -6.65 -4.69 0.03 + -7.15 -0.49 0.03 + -0.85 -0.49 0.03 + -7.15 -0.89 0.03 + faces 24 + 0 1 2 1 0 1 2 1 + 0 3 1 1 0 3 1 1 + 3 0 4 1 3 0 4 1 + 5 4 0 1 5 4 0 1 + 5 6 4 1 5 6 4 1 + 7 8 2 1 7 8 2 1 + 8 9 2 1 8 9 2 1 + 9 10 2 1 9 10 2 1 + 11 10 9 1 11 10 9 1 + 12 7 2 1 12 7 2 1 + 13 14 15 1 13 14 15 1 + 14 16 15 1 14 16 15 1 + 15 17 13 1 15 17 13 1 + 16 18 15 1 16 18 15 1 + 19 18 16 1 19 18 16 1 + 20 21 17 1 20 21 17 1 + 22 20 17 1 22 20 17 1 + 23 22 17 1 23 22 17 1 + 23 24 22 1 23 24 22 1 + 25 13 17 1 25 13 17 1 + 1 26 2 1 1 26 2 1 + 26 12 2 1 26 12 2 1 + 27 25 17 1 27 25 17 1 + 21 27 17 1 21 27 17 1 + tverts 28 + 1.5 5.279 0 + -0.35 0.775 0 + 1.5 -4.721 0 + -0.35 2.279 0 + -0.35 4.279 0 + -0.85 5.279 0 + -0.85 4.279 0 + -0.35 -0.218 0 + -0.35 -1.721 0 + -0.35 -3.721 0 + -0.85 -4.721 0 + -0.85 -3.721 0 + -0.35 0.103 0 + 1.35 0.775 0 + 1.35 2.279 0 + -0.5 5.279 0 + 1.35 4.279 0 + -0.5 -4.721 0 + 1.85 5.279 0 + 1.85 4.279 0 + 1.35 -1.721 0 + 1.35 -0.218 0 + 1.35 -3.721 0 + 1.85 -4.721 0 + 1.85 -3.721 0 + 1.35 0.472 0 + -0.35 0.472 0 + 1.35 0.103 0 + endnode + node trimesh meshtdc1383 + parent tdc01_g02_03 + position 4 1 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -92.5 -100 37.5 + bitmap tdc01_trim00 + verts 20 + -1 0 0 + -1 -0.64 0 + -1 -0.71 0.5 + -1 1 0.5 + -1 2 0 + -0.85 -0.71 0.75 + -0.85 1 0.75 + -1 3 0.5 + -1 3 0 + -0.85 3 0.75 + -1 -1.27 0.5 + -1 -2 0 + -1 -3 0.5 + -1 -1.34 0 + -0.85 -3 0.75 + -0.85 -1.27 0.75 + -1 -4 0 + -1 -5 0 + -1 -5 0.5 + -0.85 -5 0.75 + faces 18 + 0 1 2 1 0 1 2 5 + 0 3 4 1 0 3 4 5 + 3 2 5 2 3 2 5 5 + 5 6 3 2 5 6 3 5 + 7 4 3 1 3 7 2 5 + 4 7 8 1 7 3 8 5 + 7 3 6 2 3 2 5 5 + 6 9 7 2 5 6 3 5 + 10 11 12 1 3 9 2 5 + 11 10 13 1 9 3 10 5 + 10 12 14 2 3 2 5 5 + 14 15 10 2 5 6 3 5 + 16 17 18 1 11 1 2 5 + 16 12 11 1 11 3 12 5 + 12 18 19 2 3 2 5 5 + 19 14 12 2 5 6 3 5 + 12 16 18 1 3 11 2 5 + 3 0 2 1 3 0 2 5 + tverts 13 + 0.580238 0.135765 0 + 0.999501 0.135765 0 + 1.00147 0.75 0 + 0.0024731 0.75 0 + -0.619197 0.135765 0 + 0.999501 0.999501 0 + 0.0004995 0.999501 0 + 0.502165 0.135765 0 + 0.0360236 0.135765 0 + 0.442958 0.135765 0 + 0.0754946 0.135765 0 + 0.511774 0.135765 0 + -0.488942 0.135765 0 + endnode + node trimesh box11 + parent tdc01_g02_03 + position -2.47 -1.73 0.18 + orientation 0 0 0 0 + wirecolor 0.337255 0.337255 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 26 + center 0 0 37.5 + bitmap tdc01_trim00 + verts 16 + 0.43 1.18 0.1 + -0.43 1.18 0.1 + 0.42 -1.18 0.1 + -0.43 -1.18 0.1 + 0.43 1.18 0.65 + -0.43 1.18 0.65 + 0.42 -1.18 0.65 + -0.43 -1.18 0.65 + 0.35 1.1 0.65 + -0.35 1.1 0.65 + 0.36 -1.11 0.65 + -0.36 -1.1 0.65 + 0.35 1.1 0.15 + -0.35 1.1 0.15 + 0.36 -1.11 0.15 + -0.36 -1.1 0.15 + faces 24 + 0 1 5 0 16 17 18 1 + 5 4 0 0 18 19 16 1 + 1 3 7 0 1 20 21 1 + 7 5 1 0 21 22 1 1 + 3 2 6 0 3 23 24 1 + 6 7 3 0 24 25 3 1 + 2 0 4 0 2 0 26 1 + 4 6 2 0 26 27 2 1 + 4 5 9 0 4 5 28 1 + 9 8 4 0 28 29 4 1 + 5 7 11 0 5 7 30 1 + 11 9 5 0 30 28 5 1 + 7 6 10 0 7 6 31 1 + 10 11 7 0 31 30 7 1 + 6 4 8 0 6 4 29 1 + 8 10 6 0 29 31 6 1 + 11 10 14 0 32 33 34 1 + 14 15 11 0 34 35 32 1 + 10 8 12 0 10 36 37 1 + 12 14 10 0 37 14 10 1 + 8 9 13 0 8 38 39 1 + 13 12 8 0 39 12 8 1 + 9 11 15 0 9 11 15 1 + 15 13 9 0 15 13 9 1 + tverts 40 + 1.61582 0.00234112 0 + -0.61582 0.00234112 0 + -1.21335 0.00234112 0 + -0.257022 0.00234112 0 + -0.032979 -0.205273 0 + 1.25702 -0.205273 0 + -0.032978 0.737783 0 + 1.25702 0.737783 0 + 0.92048 0.84765 0 + 1.52591 0.84765 0 + 2.12344 0.84765 0 + -1.12344 0.84765 0 + 0.92048 0.0791874 0 + 1.52591 0.0791874 0 + 2.12344 0.0791874 0 + -1.12344 0.0791874 0 + -0.032979 0.00234112 0 + 1.25702 0.00234112 0 + 1.25702 0.84765 0 + -0.032979 0.84765 0 + 2.21335 0.00234112 0 + 2.21335 0.84765 0 + -0.61582 0.84765 0 + 1.03298 0.00234112 0 + 1.03298 0.84765 0 + -0.257022 0.84765 0 + 1.61582 0.84765 0 + -1.21335 0.84765 0 + 1.14452 -0.175303 0 + 0.07952 -0.175303 0 + 1.14452 0.707813 0 + 0.07952 0.707813 0 + 1.14452 0.84765 0 + 0.07952 0.84765 0 + 0.07952 0.0791874 0 + 1.14452 0.0791874 0 + -0.52591 0.84765 0 + -0.52591 0.0791874 0 + -0.144521 0.84765 0 + -0.144521 0.0791874 0 + endnode + node trimesh box12 + parent tdc01_g02_03 + position -2.47 -1.73 0.18 + orientation 0 0 0 0 + wirecolor 0.337255 0.337255 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 26 + center -0.5 0 7.5 + bitmap tdc01_stone00 + verts 12 + 0.5 1.25 0 + -0.5 1.25 0 + 0.49 -1.25 0 + -0.51 -1.25 0 + 0.43 1.18 0.1 + -0.43 1.18 0.1 + 0.42 -1.18 0.1 + -0.43 -1.18 0.1 + 0.35 1.1 0.15 + -0.35 1.1 0.15 + 0.36 -1.11 0.15 + -0.36 -1.1 0.15 + faces 10 + 0 1 5 8 0 1 5 5 + 5 4 0 8 5 4 0 5 + 1 3 7 16 1 3 7 4 + 7 5 1 16 7 5 1 4 + 3 2 6 32 3 2 6 6 + 6 7 3 32 6 7 3 6 + 2 0 4 64 2 0 4 3 + 4 6 2 64 4 6 2 3 + 11 10 8 0 11 10 8 1 + 11 8 9 0 11 8 9 1 + tverts 12 + -0.137979 -0.194585 0 + 1.36202 -0.194585 0 + -0.137978 1.80342 0 + 1.36202 1.80342 0 + -0.032979 -0.138641 0 + 1.25702 -0.138641 0 + -0.032978 1.74747 0 + 1.25702 1.74747 0 + 0.07952 -0.0787013 0 + 1.14452 -0.0787014 0 + 0.07952 1.68753 0 + 1.14452 1.68753 0 + endnode + node trimesh lid03 + parent tdc01_g02_03 + position -1.85 -1.61 0.65 + orientation 0 0 0 0 + wirecolor 0.337255 0.337255 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 26 + center -4 0.5 0 + bitmap tdc01_stone00 + verts 13 + -0.1 0.01 -0.04 + 0.17 1.25 -0.47 + -0.17 1.26 0.47 + 0.16 -1.25 -0.47 + -0.18 -1.24 0.47 + 0.18 1.18 -0.38 + -0.11 1.18 0.41 + 0.19 -1.17 -0.38 + -0.11 -1.17 0.41 + -0.26 -1.13 0.39 + 0.05 -1.14 -0.47 + 0.05 1.16 -0.47 + -0.27 1.14 0.39 + faces 22 + 5 6 8 4 5 6 8 1 + 8 7 5 4 8 7 5 1 + 2 1 11 0 2 1 11 1 + 4 2 9 0 4 2 9 1 + 3 4 9 0 3 4 9 1 + 1 3 10 0 1 3 10 1 + 1 2 6 0 1 2 6 1 + 6 5 1 0 6 5 1 1 + 2 4 8 0 2 4 8 1 + 8 6 2 0 8 6 2 1 + 4 3 7 0 4 3 7 1 + 7 8 4 0 7 8 4 1 + 3 1 5 0 3 1 5 1 + 5 7 3 0 5 7 3 1 + 9 2 12 0 9 2 12 1 + 3 9 10 0 3 9 10 1 + 10 9 0 0 10 9 0 1 + 1 10 11 0 1 10 11 1 + 11 10 0 0 11 10 0 1 + 2 11 12 0 2 11 12 1 + 12 11 0 0 12 11 0 1 + 9 12 0 0 9 12 0 1 + tverts 13 + 0.5 0.24935 0 + -0.74875 0.64895 0 + -0.748751 -0.150247 0 + 1.74875 0.64895 0 + 1.74875 -0.150248 0 + -0.673825 0.58901 0 + -0.673825 -0.090307 0 + 1.67383 0.58901 0 + 1.67383 -0.090308 0 + 1.63091 -0.11254 0 + 1.65034 0.61746 0 + -0.645298 0.61585 0 + -0.635887 -0.114131 0 + endnode + node trimesh plane26 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + position -2.52 -3.5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 11 + center 0 0 195 + bitmap tdc01_trim00 + verts 20 + 0.4 0.4 0 + -0.4 0.4 0 + -0.4 0.4 0.2 + 0.4 0.4 0.2 + -0.4 -0.4 0 + -0.4 -0.4 0.2 + 0.4 -0.4 0 + 0.4 -0.4 0.2 + -0.25 0.25 0.6 + 0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + -0.25 0.25 3 + 0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + -0.45 0.45 3.9 + 0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 4 5 2 4 5 6 1 + 5 2 1 2 6 7 4 1 + 4 6 7 1 8 9 10 1 + 7 5 4 1 10 11 8 1 + 6 0 3 2 12 13 14 1 + 3 7 6 2 14 15 12 1 + 3 2 8 4 3 2 16 1 + 8 9 3 4 16 17 3 1 + 2 5 10 8 7 6 18 1 + 10 8 2 8 18 19 7 1 + 5 7 11 4 11 10 20 1 + 11 10 5 4 20 21 11 1 + 7 3 9 8 15 14 22 1 + 9 11 7 8 22 23 15 1 + 9 8 12 1 24 25 26 1 + 12 13 9 1 26 27 24 1 + 8 10 14 2 28 29 30 1 + 14 12 8 2 30 31 28 1 + 10 11 15 1 32 33 34 1 + 15 14 10 1 34 35 32 1 + 11 9 13 2 36 37 38 1 + 13 15 11 2 38 39 36 1 + 13 12 16 4 40 41 42 1 + 16 17 13 4 42 43 40 1 + 12 14 18 8 44 45 46 1 + 18 16 12 8 46 47 44 1 + 14 15 19 4 48 49 50 1 + 19 18 14 4 50 51 48 1 + 15 13 17 8 52 53 54 1 + 17 19 15 8 54 55 52 1 + tverts 56 + 0.216757 0.0271105 0 + 0.536757 0.0271105 0 + 0.536757 0.107111 0 + 0.216757 0.107111 0 + 0.21451 0.0271105 0 + 0.53451 0.0271105 0 + 0.53451 0.107111 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.783243 0.0271105 0 + 0.783243 0.107111 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.476757 0.26711 0 + 0.276757 0.26711 0 + 0.47451 0.26711 0 + 0.27451 0.26711 0 + 0.723243 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.273966 0.288193 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.273966 1.64023 0 + 0.278974 0.288193 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.726033 0.288193 0 + 0.726033 1.64023 0 + 0.526033 1.64023 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.268677 0.744214 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.188677 1.0796 0 + 0.523241 0.744214 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.731323 0.744214 0 + 0.811323 1.0796 0 + 0.451322 1.0796 0 + endnode + node trimesh sin005 + parent tdc01_g02_03 + position 0 0.15 3.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -2 0 253.5 + bitmap tdc01_trim00 + tilefade 0 + verts 16 + -0.02 0 1.06 + -1.59 0 3.29 + -1.82 0 3.2 + -1.82 0 1.42 + -1.61 0 1.27 + -1.59 0 1.06 + 1.13 0 3.68 + 0.62 0 3.93 + 0.01 0 4.01 + -0.61 0 3.94 + -1.14 0 3.69 + 1.55 0 1.06 + 1.57 0 1.27 + 1.78 0 1.42 + 1.78 0 3.2 + 1.55 0 3.29 + faces 14 + 3 2 14 0 0 1 2 1 + 14 13 12 0 2 3 4 1 + 12 0 5 0 4 5 6 1 + 4 3 14 0 7 0 2 1 + 14 12 5 0 2 4 6 1 + 14 5 4 0 2 6 7 1 + 12 11 0 0 4 8 5 1 + 15 14 2 0 9 2 1 1 + 15 2 1 0 9 1 10 1 + 6 15 1 0 11 9 10 1 + 6 1 10 0 11 10 12 1 + 6 10 9 0 11 12 13 1 + 6 9 8 0 11 13 14 1 + 6 8 7 0 11 14 15 1 + tverts 16 + 1.02835 0.567883 0 + 1.02835 0.0458278 0 + -0.0274931 0.0458278 0 + -0.0274931 0.567883 0 + 0.0340977 0.611877 0 + 0.500428 0.737991 0 + 0.960892 0.673467 0 + 0.966758 0.611877 0 + 0.0399635 0.673467 0 + 0.0399635 0.0194317 0 + 0.960892 0.0194317 0 + 0.163145 -0.0949512 0 + 0.828912 -0.0978841 0 + 0.673469 -0.171206 0 + 0.491629 -0.191737 0 + 0.312723 -0.168274 0 + endnode + node trimesh sin4 + parent tdc01_g02_03 + position 0 -0.15 3.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 2 0 253.5 + bitmap tdc01_trim00 + tilefade 0 + verts 16 + 0.02 0 1.06 + 1.59 0 3.29 + 1.82 0 3.2 + 1.82 0 1.42 + 1.61 0 1.27 + 1.59 0 1.06 + -1.13 0 3.68 + -0.62 0 3.93 + -0.01 0 4.01 + 0.61 0 3.94 + 1.14 0 3.69 + -1.55 0 1.06 + -1.57 0 1.27 + -1.78 0 1.42 + -1.78 0 3.2 + -1.55 0 3.29 + faces 14 + 3 2 14 0 0 1 2 1 + 14 13 12 0 2 3 4 1 + 12 0 5 0 4 5 6 1 + 4 3 14 0 7 0 2 1 + 14 12 5 0 2 4 6 1 + 14 5 4 0 2 6 7 1 + 12 11 0 0 4 8 5 1 + 15 14 2 0 9 2 1 1 + 15 2 1 0 9 1 10 1 + 6 15 1 0 11 9 10 1 + 6 1 10 0 11 10 12 1 + 6 10 9 0 11 12 13 1 + 6 9 8 0 11 13 14 1 + 6 8 7 0 11 14 15 1 + tverts 16 + 1.02835 0.567883 0 + 1.02835 0.0458278 0 + -0.0274931 0.0458278 0 + -0.0274931 0.567883 0 + 0.0340977 0.611877 0 + 0.500428 0.737991 0 + 0.960892 0.673467 0 + 0.966758 0.611877 0 + 0.0399635 0.673467 0 + 0.0399635 0.0194317 0 + 0.960892 0.0194317 0 + 0.163145 -0.0949512 0 + 0.828912 -0.0978841 0 + 0.673469 -0.171206 0 + 0.491629 -0.191737 0 + 0.312723 -0.168274 0 + endnode + node trimesh object05 + parent tdc01_g02_03 + position -2.15 -4.91 -0.75 + orientation 0 0 0 0 + wirecolor 0.694118 0.109804 0.584314 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 215.5 491 759.5 + bitmap tdc01_flrcrack + tilefade 0 + verts 14 + 0.57 9.98 7.23 + 1.03 9.98 7.65 + 1.56 9.98 7.89 + 2.15 9.98 7.96 + 2.77 9.98 7.88 + 3.3 9.98 7.63 + 3.74 9.98 7.22 + 0.58 -0.16 7.23 + 1.03 -0.16 7.64 + 1.55 -0.16 7.89 + 2.14 -0.16 7.97 + 2.75 -0.16 7.89 + 3.27 -0.16 7.64 + 3.71 -0.16 7.22 + faces 12 + 0 1 8 1 0 1 11 1 + 0 8 7 1 0 11 10 1 + 1 2 9 2 2 3 13 1 + 1 9 8 2 2 13 12 1 + 2 3 10 2 3 4 14 1 + 2 10 9 2 3 14 13 1 + 3 4 11 2 5 6 16 1 + 3 11 10 2 5 16 15 1 + 4 5 12 2 6 7 17 1 + 4 12 11 2 6 17 16 1 + 5 6 13 2 8 9 19 1 + 5 13 12 2 8 19 18 1 + tverts 20 + 0 0 0 + 0.111284 0 0 + 0.22205 0 0 + 0.333333 0 0 + 0.444617 0 0 + 0.555383 0 0 + 0.666667 0 0 + 0.77795 0 0 + 0.888716 0 0 + 1 0 0 + 0 1 0 + 0.111284 1 0 + 0.22205 1 0 + 0.333333 1 0 + 0.444617 1 0 + 0.555383 1 0 + 0.666667 1 0 + 0.77795 1 0 + 0.888716 1 0 + 1 1 0 + endnode + node trimesh object04 + parent tdc01_g02_03 + position -2.15 -4.91 -0.75 + orientation 0 0 0 0 + wirecolor 0.694118 0.109804 0.584314 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -111 491 559.5 + bitmap tdc01_trim00 + tilefade 0 + verts 18 + -2.81 9.97 3.95 + -0.46 9.97 3.95 + -0.16 9.97 4.86 + 0.37 9.97 4.86 + 0.58 9.97 5.01 + 0.56 9.97 5.22 + 0.35 9.97 5.37 + 0.35 9.97 7.15 + 0.59 9.97 7.24 + -2.81 -0.15 3.95 + -0.45 -0.15 3.95 + -0.16 -0.15 4.86 + 0.37 -0.15 4.86 + 0.58 -0.15 5.01 + 0.56 -0.15 5.22 + 0.35 -0.15 5.37 + 0.35 -0.15 7.15 + 0.59 -0.15 7.24 + faces 16 + 0 1 10 1 0 18 19 2 + 0 10 9 1 0 19 9 2 + 1 2 11 4 1 20 21 2 + 1 11 10 4 1 21 10 2 + 2 3 12 2 2 22 23 2 + 2 12 11 2 2 23 11 2 + 3 4 13 4 3 4 13 2 + 3 13 12 4 3 13 12 2 + 4 5 14 2 4 5 14 2 + 4 14 13 2 4 14 13 2 + 5 6 15 4 5 6 15 2 + 5 15 14 4 5 15 14 2 + 6 7 16 2 6 7 16 2 + 6 16 15 2 6 16 15 2 + 7 8 17 4 7 8 17 2 + 7 17 16 4 7 17 16 2 + tverts 24 + -3.03424 1.72809 0 + -3.03424 0.99356 0 + -3.03424 0.38225 0 + -3.03424 0.72049 0 + -3.03424 0.67571 0 + -3.03424 0.61357 0 + -3.03424 0.56786 0 + -3.03424 0.03496 0 + -3.03395 0.00687 0 + 3.03541 1.72809 0 + 3.03541 0.99356 0 + 3.03541 0.38225 0 + 3.03541 0.72049 0 + 3.03541 0.67571 0 + 3.03541 0.61357 0 + 3.03541 0.56786 0 + 3.03541 0.03496 0 + 3.0357 0.00687 0 + -3.03424 -0.34596 0 + 3.03541 -0.34596 0 + -3.03424 0.72014 0 + 3.03541 0.72014 0 + -3.03424 -0.07614 0 + 3.03541 -0.07614 0 + endnode + node trimesh object01 + parent tdc01_g02_03 + position -2.15 -4.91 -0.75 + orientation 0 0 0 0 + wirecolor 0.694118 0.109804 0.584314 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 540 491 559.5 + bitmap tdc01_trim00 + tilefade 0 + verts 21 + 3.7 9.97 7.24 + 3.95 9.97 7.15 + 3.95 9.97 5.37 + 3.74 9.97 5.22 + 3.72 9.97 5.01 + 3.94 9.97 4.86 + 4.46 9.97 4.86 + 4.77 9.97 3.95 + 7.1 9.97 3.95 + 3.7 -0.15 7.24 + 3.95 -0.15 7.15 + 3.95 -0.15 5.37 + 3.74 -0.15 5.22 + 3.72 -0.15 5.01 + 3.94 -0.15 4.86 + 4.46 -0.15 4.86 + 4.77 -0.15 3.95 + 7.1 -0.15 3.95 + 3.7 -0.15 7.24 + 3.7 -0.15 7.24 + 3.7 -0.15 7.24 + faces 19 + 0 1 10 4 18 1 10 2 + 0 10 9 4 18 10 19 2 + 1 2 11 2 1 2 11 2 + 1 11 10 2 1 11 10 2 + 2 3 12 4 2 3 12 2 + 2 12 11 4 2 12 11 2 + 3 4 13 2 3 4 13 2 + 3 13 12 2 3 13 12 2 + 4 5 14 4 4 20 21 2 + 4 14 13 4 4 21 13 2 + 5 6 15 2 5 22 23 2 + 5 15 14 2 5 23 14 2 + 6 7 16 4 6 24 25 2 + 6 16 15 4 6 25 15 2 + 7 8 17 2 7 8 17 2 + 7 17 16 2 7 17 16 2 + 18 0 9 2 9 0 9 2 + 19 0 18 2 9 0 9 2 + 20 0 19 2 9 0 9 2 + tverts 26 + 3.03483 0.9985 0 + 3.03483 0.03467 0 + 3.03483 0.56757 0 + 3.03483 0.61328 0 + 3.03483 0.67542 0 + -3.03483 0.80572 0 + 3.03483 0.71985 0 + -3.03483 1.07555 0 + -3.03483 -0.998501 0 + -3.03483 0.9985 0 + -3.03483 0.03467 0 + -3.03483 0.56757 0 + -3.03483 0.61328 0 + -3.03483 0.67542 0 + 3.03483 0.80572 0 + -3.03483 0.71985 0 + 3.03483 1.07555 0 + 3.03483 -0.998501 0 + 3.03483 0.00672 0 + -3.03483 0.00672 0 + 3.03483 0.7202 0 + -3.03483 0.7202 0 + -3.03483 0.34734 0 + 3.03483 0.34734 0 + 3.03483 0.99328 0 + -3.03483 0.99327 0 + endnode + node trimesh meshtdc5451 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + position -0.41 0.01 3.5 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 1 + center 41 0 168 + bitmap tdc01_wall_uni + tilefade 0 + verts 4 + -0.22 -0.49 1.68 + 1.04 -0.49 1.68 + 1.04 0.49 1.68 + -0.22 0.49 1.68 + faces 2 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + tverts 4 + 0.701795 0.588488 0 + 0.887592 0.588488 0 + 0.887592 0.732996 0 + 0.701795 0.732996 0 + endnode +endmodelgeom tdc01_g02_03 +donemodel tdc01_g02_03 diff --git a/tests/fixtures/oracle/ascii/tin01_d11_01.mdl b/tests/fixtures/oracle/ascii/tin01_d11_01.mdl new file mode 100644 index 0000000..454c313 --- /dev/null +++ b/tests/fixtures/oracle/ascii/tin01_d11_01.mdl @@ -0,0 +1,1947 @@ +# Exported from NWmax 0.8 b60 at 12.10.2012 21:49:42 +# mdl file +# +#NWmax MODEL ASCII +# model: tin01_d11_01 +#local file: Unknown +filedependancy Unknown +newmodel tin01_d11_01 +setsupermodel tin01_d11_01 NULL +classification Tile +#NWmax GEOM ASCII +beginmodelgeom tin01_d11_01 +node dummy tin01_d11_01 + parent NULL +endnode +#Tile trimesh node +node trimesh Plane333 + parent tin01_d11_01 + position 0.0 0.0 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.603922 0.584314 0.592157 + diffuse 0.603922 0.584314 0.592157 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 0.0 0.0 + bitmap tin01_shpflr1 + verts 25 + -5.0 -2.5 0.0 + -5.0 -5.0 0.0 + -2.5 -2.5 0.0 + -2.5 -5.0 0.0 + 0.0 -2.5 0.0 + 0.0 -5.0 0.0 + 2.5 -2.5 0.0 + 2.5 -5.0 0.0 + 5.0 -2.5 0.0 + 5.0 -5.0 0.0 + -5.0 0.0 0.0 + -2.5 0.0 0.0 + 0.0 0.0 0.0 + 2.5 0.0 0.0 + 5.0 0.0 0.0 + -5.0 2.5 0.0 + -2.5 2.5 0.0 + 0.0 2.5 0.0 + 2.5 2.5 0.0 + 5.0 2.5 0.0 + -5.0 5.0 0.0 + -2.5 5.0 0.0 + 0.0 5.0 0.0 + 2.5 5.0 0.0 + 5.0 5.0 0.0 + faces 32 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 2 3 4 1 2 3 4 1 + 5 4 3 1 5 4 3 1 + 4 5 6 1 4 5 6 1 + 7 6 5 1 7 6 5 1 + 6 7 8 1 6 7 8 1 + 9 8 7 1 9 8 7 1 + 10 0 11 1 10 0 11 1 + 2 11 0 1 2 11 0 1 + 11 2 12 1 11 2 12 1 + 4 12 2 1 4 12 2 1 + 12 4 13 1 12 4 13 1 + 6 13 4 1 6 13 4 1 + 13 6 14 1 13 6 14 1 + 8 14 6 1 8 14 6 1 + 15 10 16 1 15 10 16 1 + 11 16 10 1 11 16 10 1 + 16 11 17 1 16 11 17 1 + 12 17 11 1 12 17 11 1 + 17 12 18 1 17 12 18 1 + 13 18 12 1 13 18 12 1 + 18 13 19 1 18 13 19 1 + 14 19 13 1 14 19 13 1 + 20 15 21 1 20 15 21 1 + 16 21 15 1 16 21 15 1 + 21 16 22 1 21 16 22 1 + 17 22 16 1 17 22 16 1 + 22 17 23 1 22 17 23 1 + 18 23 17 1 18 23 17 1 + 23 18 24 1 23 18 24 1 + 19 24 18 1 19 24 18 1 + tverts 25 + 12.0 -21.5 0 + 12.0 -22.0 0 + 12.5 -21.5 0 + 12.5 -22.0 0 + 13.0 -21.5 0 + 13.0 -22.0 0 + 13.5 -21.5 0 + 13.5 -22.0 0 + 14.0 -21.5 0 + 14.0 -22.0 0 + 12.0 -21.0 0 + 12.5 -21.0 0 + 13.0 -21.0 0 + 13.5 -21.0 0 + 14.0 -21.0 0 + 12.0 -20.5 0 + 12.5 -20.5 0 + 13.0 -20.5 0 + 13.5 -20.5 0 + 14.0 -20.5 0 + 12.0 -20.0 0 + 12.5 -20.0 0 + 13.0 -20.0 0 + 13.5 -20.0 0 + 14.0 -20.0 0 +endnode +node aabb wok + parent tin01_d11_01 + position 0.0 0.0 0.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + bitmap NULL + verts 4 + 5.0 -5.0 0.0 + 5.0 5.0 0.0 + -5.0 -5.0 0.0 + -5.0 5.0 0.0 + faces 2 + 0 1 2 1 0 1 2 4 + 3 2 1 1 3 4 5 4 + tverts 6 + -31.1667 -2.83333 0 + -31.1667 -1.99999 0 + -32.0 -2.83333 0 + -34.5 0.500008 0 + -34.5 -0.333325 0 + -33.6667 0.500008 0 + aabb -5.0 -5.0 0.0 5.0 5.0 0.0 -1 + -5.0 -5.0 0.0 5.0 5.0 0.0 1 + -5.0 -5.0 0.0 5.0 5.0 0.0 0 +endnode +node light tin01_d11_01ml1 + parent tin01_d11_01 + position 0.0 0.0 5.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 14.0 + multiplier 1.0 + color 0.0 0.0 0.0 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +#Tile trimesh node +node trimesh construction01 + parent tin01_d11_01 + position -4.0 -0.2 3.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.87451 0.556863 0.337255 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 400.0 20.0 292.0 + bitmap tin01_furnish2 + verts 272 + 8.92 0.1 1.94 + 8.92 0.3 1.94 + 6.63 0.1 1.86 + 6.63 0.3 1.86 + 4.45 0.15 1.92 + 4.45 0.35 1.92 + 2.33 0.1 1.82 + 2.33 0.3 1.82 + -0.9 0.1 1.93 + -0.9 0.3 1.93 + 8.9 0.1 2.11 + 8.9 0.3 2.11 + 6.63 0.1 2.06 + 6.63 0.3 2.06 + 4.45 0.15 2.12 + 4.45 0.35 2.12 + 2.33 0.1 2.02 + 2.33 0.3 2.02 + -0.9 0.1 2.11 + -0.9 0.3 2.11 + 3.89 -4.71 1.94 + 4.09 -4.71 1.94 + 3.93 -2.42 1.94 + 4.13 -2.42 1.94 + 3.89 -0.28 1.86 + 4.09 -0.28 1.86 + 3.89 1.87 1.92 + 4.09 1.87 1.92 + 3.87 5.15 1.94 + 4.07 5.15 1.94 + 3.89 -4.7 2.11 + 4.09 -4.7 2.11 + 3.93 -2.42 2.14 + 4.13 -2.42 2.14 + 3.89 -0.28 2.06 + 4.09 -0.28 2.06 + 3.89 1.87 2.12 + 4.09 1.87 2.12 + 3.87 5.15 2.14 + 4.07 5.15 2.14 + 4.1 5.2 3.76 + 3.9 5.2 3.76 + 4.11 1.65 3.74 + 3.91 1.65 3.74 + 4.06 -0.53 3.8 + 3.86 -0.53 3.8 + 4.11 -2.65 3.7 + 3.91 -2.65 3.7 + 4.1 -4.8 3.76 + 3.9 -4.8 3.76 + 4.1 5.2 3.96 + 3.9 5.2 3.96 + 4.11 1.65 3.94 + 3.91 1.65 3.94 + 4.06 -0.53 4.0 + 3.86 -0.53 4.0 + 4.11 -2.65 3.9 + 3.91 -2.65 3.9 + 4.1 -4.8 3.96 + 3.9 -4.8 3.96 + 9.0 0.1 3.76 + 9.0 0.3 3.76 + 6.85 0.05 3.82 + 6.85 0.25 3.82 + 4.7 0.02 3.74 + 4.7 0.22 3.74 + 2.55 0.02 3.8 + 2.55 0.22 3.8 + -1.0 0.1 3.76 + -1.0 0.3 3.76 + 9.0 0.1 3.96 + 9.0 0.3 3.96 + 6.85 0.05 4.02 + 6.85 0.25 4.02 + 4.7 0.02 3.94 + 4.7 0.22 3.94 + 2.55 0.02 4.0 + 2.55 0.22 4.0 + -1.0 0.1 3.96 + -1.0 0.3 3.96 + 6.08 0.14 2.07 + 6.08 0.3 2.07 + 5.92 0.14 2.07 + 5.92 0.3 2.07 + 6.06 0.06 3.82 + 6.06 0.22 3.82 + 5.92 0.06 3.82 + 5.92 0.22 3.82 + 2.09 0.12 2.0 + 2.09 0.28 2.0 + 1.93 0.12 2.0 + 1.93 0.28 2.0 + 2.07 0.06 3.82 + 2.07 0.22 3.82 + 1.93 0.06 3.82 + 1.93 0.22 3.82 + 4.06 2.16 2.04 + 4.06 2.32 2.04 + 3.9 2.16 2.04 + 3.9 2.32 2.04 + 4.06 2.08 3.82 + 4.06 2.24 3.82 + 3.92 2.08 3.82 + 3.92 2.24 3.82 + 4.1 -1.88 2.07 + 4.1 -1.72 2.07 + 3.94 -1.88 2.07 + 3.94 -1.72 2.07 + 4.08 -1.96 3.82 + 4.08 -1.8 3.82 + 3.94 -1.96 3.82 + 3.94 -1.8 3.82 + 9.0 0.1 2.07 + 9.0 0.3 2.07 + 8.92 0.12 2.07 + 8.92 0.28 2.07 + 9.0 0.1 3.72 + 9.0 0.3 3.72 + 8.92 0.12 3.77 + 8.92 0.28 3.77 + -1.0 0.3 2.07 + -1.0 0.1 2.07 + -0.92 0.28 2.07 + -0.92 0.12 2.07 + -1.0 0.3 3.72 + -1.0 0.1 3.72 + -0.92 0.28 3.77 + -0.92 0.12 3.77 + 9.0 -4.8 3.72 + 8.9 -4.7 3.72 + 5.0 -4.8 3.72 + 5.45 -4.71 3.69 + 3.0 -4.8 3.72 + 3.07 -4.7 3.75 + -1.0 -4.8 3.72 + -0.9 -4.7 3.72 + 9.0 -4.8 3.92 + 8.9 -4.7 3.92 + 5.0 -4.8 3.92 + 5.45 -4.71 3.94 + 3.0 -4.8 3.92 + 3.07 -4.7 4.0 + -1.0 -4.8 3.92 + -0.9 -4.7 3.92 + 3.9 -4.8 2.07 + 4.1 -4.8 2.07 + 3.92 -4.72 2.07 + 4.08 -4.72 2.07 + 3.9 -4.8 3.72 + 4.1 -4.8 3.72 + 3.92 -4.72 3.77 + 4.08 -4.72 3.77 + 4.1 5.2 2.07 + 3.9 5.2 2.07 + 4.08 5.12 2.07 + 3.92 5.12 2.07 + 4.1 5.2 3.72 + 3.9 5.2 3.72 + 4.08 5.12 3.77 + 3.92 5.12 3.77 + 9.0 -4.8 1.92 + 8.9 -4.7 1.92 + 5.0 -4.8 1.92 + 5.45 -4.71 1.89 + 3.0 -4.8 1.92 + 3.07 -4.7 1.95 + -1.0 -4.8 1.92 + -0.9 -4.7 1.92 + 9.0 -4.8 2.12 + 8.9 -4.7 2.12 + 5.0 -4.8 2.12 + 5.45 -4.71 2.14 + 3.0 -4.8 2.12 + 3.07 -4.7 2.2 + -1.0 -4.8 2.12 + -0.9 -4.7 2.12 + 9.0 5.2 3.72 + 8.9 5.1 3.72 + 9.0 1.2 3.72 + 8.91 1.65 3.69 + 9.0 -0.8 3.72 + 8.9 -0.73 3.75 + 9.0 -4.8 3.72 + 8.9 -4.7 3.72 + 9.0 5.2 3.92 + 8.9 5.1 3.92 + 9.0 1.2 3.92 + 8.91 1.65 3.94 + 9.0 -0.8 3.92 + 8.9 -0.73 4.0 + 9.0 -4.8 3.92 + 8.9 -4.7 3.92 + 9.0 5.2 1.92 + 8.9 5.1 1.92 + 9.0 1.2 1.92 + 8.91 1.65 1.89 + 9.0 -0.8 1.92 + 8.9 -0.73 1.95 + 9.0 -4.8 1.92 + 8.9 -4.7 1.92 + 9.0 5.2 2.12 + 8.9 5.1 2.12 + 9.0 1.2 2.12 + 8.91 1.65 2.14 + 9.0 -0.8 2.12 + 8.9 -0.73 2.2 + 9.0 -4.8 2.12 + 8.9 -4.7 2.12 + -1.0 5.2 3.72 + -0.9 5.1 3.72 + 3.0 5.2 3.72 + 2.55 5.11 3.69 + 5.0 5.2 3.72 + 4.93 5.1 3.75 + 9.0 5.2 3.72 + 8.9 5.1 3.72 + -1.0 5.2 3.92 + -0.9 5.1 3.92 + 3.0 5.2 3.92 + 2.55 5.11 3.94 + 5.0 5.2 3.92 + 4.93 5.1 4.0 + 9.0 5.2 3.92 + 8.9 5.1 3.92 + -1.0 5.2 1.92 + -0.9 5.1 1.92 + 3.0 5.2 1.92 + 2.55 5.11 1.89 + 5.0 5.2 1.92 + 4.93 5.1 1.95 + 9.0 5.2 1.92 + 8.9 5.1 1.92 + -1.0 5.2 2.12 + -0.9 5.1 2.12 + 3.0 5.2 2.12 + 2.55 5.11 2.14 + 5.0 5.2 2.12 + 4.93 5.1 2.2 + 9.0 5.2 2.12 + 8.9 5.1 2.12 + -1.0 -4.8 3.72 + -0.9 -4.7 3.72 + -1.0 -0.8 3.72 + -0.91 -1.25 3.69 + -1.0 1.2 3.72 + -0.9 1.13 3.75 + -1.0 5.2 3.72 + -0.9 5.1 3.72 + -1.0 -4.8 3.92 + -0.9 -4.7 3.92 + -1.0 -0.8 3.92 + -0.91 -1.25 3.94 + -1.0 1.2 3.92 + -0.9 1.13 4.0 + -1.0 5.2 3.92 + -0.9 5.1 3.92 + -1.0 -4.8 1.92 + -0.9 -4.7 1.92 + -1.0 -0.8 1.92 + -0.91 -1.25 1.89 + -1.0 1.2 1.92 + -0.9 1.13 1.95 + -1.0 5.2 1.92 + -0.9 5.1 1.92 + -1.0 -4.8 2.12 + -0.9 -4.7 2.12 + -1.0 -0.8 2.12 + -0.91 -1.25 2.14 + -1.0 1.2 2.12 + -0.9 1.13 2.2 + -1.0 5.2 2.12 + -0.9 5.1 2.12 + faces 394 + 0 2 3 2 0 2 16 2 + 3 1 0 2 17 18 0 2 + 2 4 5 2 2 4 19 2 + 5 3 2 2 20 21 2 2 + 4 6 7 2 178 180 190 2 + 7 5 4 2 191 192 178 2 + 6 8 9 2 180 182 193 2 + 9 7 6 2 194 195 180 2 + 10 11 13 4 8 9 11 1 + 13 12 10 4 11 10 8 1 + 12 13 15 4 10 11 13 1 + 15 14 12 4 13 12 10 1 + 14 15 17 4 184 185 187 1 + 17 16 14 4 187 186 184 1 + 16 17 19 4 186 187 189 1 + 19 18 16 4 189 188 186 1 + 1 3 13 16 1 3 11 4 + 13 11 1 16 11 9 1 4 + 3 5 15 16 3 5 13 4 + 15 13 3 16 13 11 3 4 + 5 7 17 16 179 181 187 4 + 17 15 5 16 187 185 179 4 + 7 9 19 16 181 183 189 4 + 19 17 7 16 189 187 181 4 + 9 8 18 32 22 6 14 6 + 18 19 9 32 14 15 7 6 + 8 6 16 64 182 180 186 3 + 16 18 8 64 186 188 182 3 + 6 4 14 64 180 178 184 3 + 14 16 6 64 184 186 180 3 + 4 2 12 64 4 2 10 3 + 12 14 4 64 10 12 4 3 + 2 0 10 64 2 0 8 3 + 10 12 2 64 8 10 2 3 + 20 22 23 2 23 25 39 2 + 23 21 20 2 40 41 23 2 + 22 24 25 2 25 27 42 2 + 25 23 22 2 43 44 25 2 + 24 26 27 2 261 263 273 2 + 27 25 24 2 274 275 261 2 + 26 28 29 2 263 265 276 2 + 29 27 26 2 277 278 263 2 + 30 31 33 4 31 32 34 1 + 33 32 30 4 34 33 31 1 + 32 33 35 4 33 34 36 1 + 35 34 32 4 36 35 33 1 + 34 35 37 4 267 268 270 1 + 37 36 34 4 270 269 267 1 + 36 37 39 4 269 270 272 1 + 39 38 36 4 272 271 269 1 + 20 21 31 8 23 45 32 5 + 31 30 20 8 32 31 23 5 + 21 23 33 16 24 26 34 4 + 33 31 21 16 34 32 24 4 + 23 25 35 16 26 28 36 4 + 35 33 23 16 36 34 26 4 + 25 27 37 16 262 264 270 4 + 37 35 25 16 270 268 262 4 + 27 29 39 16 264 266 272 4 + 39 37 27 16 272 270 264 4 + 29 28 38 32 46 29 37 6 + 38 39 29 32 37 38 30 6 + 28 26 36 64 265 263 269 3 + 36 38 28 64 269 271 265 3 + 26 24 34 64 263 261 267 3 + 34 36 26 64 267 269 263 3 + 24 22 32 64 27 25 33 3 + 32 34 24 64 33 35 27 3 + 22 20 30 64 25 23 31 3 + 30 32 22 64 31 33 25 3 + 40 42 43 2 279 281 291 2 + 43 41 40 2 292 293 279 2 + 42 44 45 2 281 283 294 2 + 45 43 42 2 295 296 281 2 + 44 46 47 2 48 50 62 2 + 47 45 44 2 63 64 48 2 + 46 48 49 2 50 52 65 2 + 49 47 46 2 66 67 50 2 + 50 51 53 4 285 286 288 1 + 53 52 50 4 288 287 285 1 + 52 53 55 4 287 288 290 1 + 55 54 52 4 290 289 287 1 + 54 55 57 4 56 57 59 1 + 57 56 54 4 59 58 56 1 + 56 57 59 4 58 59 61 1 + 59 58 56 4 61 60 58 1 + 40 41 51 8 47 68 55 5 + 51 50 40 8 55 54 47 5 + 41 43 53 16 280 282 288 4 + 53 51 41 16 288 286 280 4 + 43 45 55 16 282 284 290 4 + 55 53 43 16 290 288 282 4 + 45 47 57 16 49 51 59 4 + 57 55 45 16 59 57 49 4 + 47 49 59 16 51 53 61 4 + 59 57 47 16 61 59 51 4 + 48 46 56 64 52 50 58 3 + 56 58 48 64 58 60 52 3 + 46 44 54 64 50 48 56 3 + 54 56 46 64 56 58 50 3 + 44 42 52 64 283 281 287 3 + 52 54 44 64 287 289 283 3 + 42 40 50 64 281 279 285 3 + 50 52 42 64 285 287 281 3 + 60 62 63 2 70 72 86 2 + 63 61 60 2 87 88 70 2 + 62 64 65 2 72 74 89 2 + 65 63 62 2 90 91 72 2 + 64 66 67 2 196 198 208 2 + 67 65 64 2 209 210 196 2 + 66 68 69 2 198 200 211 2 + 69 67 66 2 212 213 198 2 + 70 71 73 4 78 79 81 1 + 73 72 70 4 81 80 78 1 + 72 73 75 4 80 81 83 1 + 75 74 72 4 83 82 80 1 + 74 75 77 4 202 203 205 1 + 77 76 74 4 205 204 202 1 + 76 77 79 4 204 205 207 1 + 79 78 76 4 207 206 204 1 + 61 63 73 16 71 73 81 4 + 73 71 61 16 81 79 71 4 + 63 65 75 16 73 75 83 4 + 75 73 63 16 83 81 73 4 + 65 67 77 16 197 199 205 4 + 77 75 65 16 205 203 197 4 + 67 69 79 16 199 201 207 4 + 79 77 67 16 207 205 199 4 + 69 68 78 32 92 76 84 6 + 78 79 69 32 84 85 77 6 + 68 66 76 64 200 198 204 3 + 76 78 68 64 204 206 200 3 + 66 64 74 64 198 196 202 3 + 74 76 66 64 202 204 198 3 + 64 62 72 64 74 72 80 3 + 72 74 64 64 80 82 74 3 + 62 60 70 64 72 70 78 3 + 70 72 62 64 78 80 72 3 + 80 81 85 8 93 94 98 5 + 85 84 80 8 98 97 93 5 + 81 83 87 16 94 96 100 4 + 87 85 81 16 100 98 94 4 + 83 82 86 32 101 95 99 6 + 86 87 83 32 99 102 103 6 + 82 80 84 64 95 93 97 3 + 84 86 82 64 97 99 95 3 + 88 89 93 8 104 105 109 5 + 93 92 88 8 109 108 104 5 + 89 91 95 16 105 107 111 4 + 95 93 89 16 111 109 105 4 + 91 90 94 32 112 106 110 6 + 94 95 91 32 110 113 114 6 + 90 88 92 64 106 104 108 3 + 92 94 90 64 108 110 106 3 + 96 97 101 8 115 116 120 5 + 101 100 96 8 120 119 115 5 + 97 99 103 16 116 118 122 4 + 103 101 97 16 122 120 116 4 + 99 98 102 32 123 117 121 6 + 102 103 99 32 121 124 125 6 + 98 96 100 64 117 115 119 3 + 100 102 98 64 119 121 117 3 + 104 105 109 8 126 127 131 5 + 109 108 104 8 131 130 126 5 + 105 107 111 16 127 129 133 4 + 111 109 105 16 133 131 127 4 + 107 106 110 32 134 128 132 6 + 110 111 107 32 132 135 136 6 + 106 104 108 64 128 126 130 3 + 108 110 106 64 130 132 128 3 + 112 113 117 8 137 138 141 5 + 117 116 112 8 141 140 137 5 + 113 115 119 16 147 149 153 4 + 119 117 113 16 153 151 147 4 + 115 114 118 32 143 139 142 6 + 118 119 115 32 142 144 145 6 + 114 112 116 64 148 146 150 3 + 116 118 114 64 150 152 148 3 + 120 121 125 8 214 215 218 5 + 125 124 120 8 218 217 214 5 + 121 123 127 16 224 226 230 4 + 127 125 121 16 230 228 224 4 + 123 122 126 32 220 216 219 6 + 126 127 123 32 219 221 222 6 + 122 120 124 64 225 223 227 3 + 124 126 122 64 227 229 225 3 + 128 130 131 2 406 407 408 2 + 131 129 128 2 408 409 406 2 + 130 132 133 2 314 316 317 2 + 133 131 130 2 317 315 314 2 + 132 134 135 2 397 399 400 2 + 135 133 132 2 400 398 397 2 + 136 137 139 4 423 424 425 1 + 139 138 136 4 425 426 423 1 + 138 139 141 4 319 318 320 1 + 141 140 138 4 320 321 319 1 + 140 141 143 4 416 415 417 1 + 143 142 140 4 417 418 416 1 + 129 131 139 16 409 408 412 4 + 139 137 129 16 413 414 409 4 + 131 133 141 16 315 317 322 4 + 141 139 131 16 323 324 315 4 + 133 135 143 16 398 400 403 4 + 143 141 133 16 404 405 398 4 + 134 132 140 64 399 397 401 3 + 140 142 134 64 401 402 399 3 + 132 130 138 64 316 314 319 3 + 138 140 132 64 319 321 316 3 + 130 128 136 64 407 406 410 3 + 136 138 130 64 410 411 407 3 + 144 145 149 8 297 298 301 5 + 149 148 144 8 301 300 297 5 + 145 147 151 16 307 309 313 4 + 151 149 145 16 313 311 307 4 + 147 146 150 32 303 299 302 6 + 150 151 147 32 302 304 305 6 + 146 144 148 64 308 306 310 3 + 148 150 146 64 310 312 308 3 + 152 153 157 8 325 326 329 5 + 157 156 152 8 329 328 325 5 + 153 155 159 16 335 337 341 4 + 159 157 153 16 341 339 335 4 + 155 154 158 32 331 327 330 6 + 158 159 155 32 330 332 333 6 + 154 152 156 64 336 334 338 3 + 156 158 154 64 338 340 336 3 + 160 162 163 2 509 510 511 2 + 163 161 160 2 511 512 509 2 + 162 164 165 2 471 473 474 2 + 165 163 162 2 474 472 471 2 + 164 166 167 2 500 502 503 2 + 167 165 164 2 503 501 500 2 + 168 169 171 4 526 527 528 1 + 171 170 168 4 528 529 526 1 + 170 171 173 4 476 475 477 1 + 173 172 170 4 477 478 476 1 + 172 173 175 4 519 518 520 1 + 175 174 172 4 520 521 519 1 + 161 163 171 16 512 511 515 4 + 171 169 161 16 516 517 512 4 + 163 165 173 16 472 474 479 4 + 173 171 163 16 480 481 472 4 + 165 167 175 16 501 503 506 4 + 175 173 165 16 507 508 501 4 + 166 164 172 64 502 500 504 3 + 172 174 166 64 504 505 502 3 + 164 162 170 64 473 471 476 3 + 170 172 164 64 476 478 473 3 + 162 160 168 64 510 509 513 3 + 168 170 162 64 513 514 510 3 + 176 178 179 2 657 658 659 2 + 179 177 176 2 659 660 657 2 + 178 180 181 2 628 630 631 2 + 181 179 178 2 631 629 628 2 + 180 182 183 2 648 650 651 2 + 183 181 180 2 651 649 648 2 + 184 185 187 4 670 671 672 1 + 187 186 184 4 672 673 670 1 + 186 187 189 4 633 632 634 1 + 189 188 186 4 634 635 633 1 + 188 189 191 4 667 666 668 1 + 191 190 188 4 668 669 667 1 + 177 179 187 16 660 659 663 4 + 187 185 177 16 664 665 660 4 + 179 181 189 16 629 631 636 4 + 189 187 179 16 637 638 629 4 + 181 183 191 16 649 651 654 4 + 191 189 181 16 655 656 649 4 + 182 180 188 64 650 648 652 3 + 188 190 182 64 652 653 650 3 + 180 178 186 64 630 628 633 3 + 186 188 180 64 633 635 630 3 + 178 176 184 64 658 657 661 3 + 184 186 178 64 661 662 658 3 + 192 194 195 2 724 725 726 2 + 195 193 192 2 726 727 724 2 + 194 196 197 2 695 697 698 2 + 197 195 194 2 698 696 695 2 + 196 198 199 2 715 717 718 2 + 199 197 196 2 718 716 715 2 + 200 201 203 4 737 738 739 1 + 203 202 200 4 739 740 737 1 + 202 203 205 4 700 699 701 1 + 205 204 202 4 701 702 700 1 + 204 205 207 4 734 733 735 1 + 207 206 204 4 735 736 734 1 + 193 195 203 16 727 726 730 4 + 203 201 193 16 731 732 727 4 + 195 197 205 16 696 698 703 4 + 205 203 195 16 704 705 696 4 + 197 199 207 16 716 718 721 4 + 207 205 197 16 722 723 716 4 + 198 196 204 64 717 715 719 3 + 204 206 198 64 719 720 717 3 + 196 194 202 64 697 695 700 3 + 202 204 196 64 700 702 697 3 + 194 192 200 64 725 724 728 3 + 200 202 194 64 728 729 725 3 + 208 210 211 2 886 887 888 2 + 211 209 208 2 888 889 886 2 + 210 212 213 2 866 868 869 2 + 213 211 210 2 869 867 866 2 + 212 214 215 2 877 879 880 2 + 215 213 212 2 880 878 877 2 + 216 217 219 4 899 900 901 1 + 219 218 216 4 901 902 899 1 + 218 219 221 4 871 870 872 1 + 221 220 218 4 872 873 871 1 + 220 221 223 4 896 895 897 1 + 223 222 220 4 897 898 896 1 + 209 211 219 16 889 888 892 4 + 219 217 209 16 893 894 889 4 + 211 213 221 16 867 869 874 4 + 221 219 211 16 875 876 867 4 + 213 215 223 16 878 880 883 4 + 223 221 213 16 884 885 878 4 + 214 212 220 64 879 877 881 3 + 220 222 214 64 881 882 879 3 + 212 210 218 64 868 866 871 3 + 218 220 212 64 871 873 868 3 + 210 208 216 64 887 886 890 3 + 216 218 210 64 890 891 887 3 + 224 226 227 2 923 924 925 2 + 227 225 224 2 925 926 923 2 + 226 228 229 2 903 905 906 2 + 229 227 226 2 906 904 903 2 + 228 230 231 2 914 916 917 2 + 231 229 228 2 917 915 914 2 + 232 233 235 4 936 937 938 1 + 235 234 232 4 938 939 936 1 + 234 235 237 4 908 907 909 1 + 237 236 234 4 909 910 908 1 + 236 237 239 4 933 932 934 1 + 239 238 236 4 934 935 933 1 + 225 227 235 16 926 925 929 4 + 235 233 225 16 930 931 926 4 + 227 229 237 16 904 906 911 4 + 237 235 227 16 912 913 904 4 + 229 231 239 16 915 917 920 4 + 239 237 229 16 921 922 915 4 + 230 228 236 64 916 914 918 3 + 236 238 230 64 918 919 916 3 + 228 226 234 64 905 903 908 3 + 234 236 228 64 908 910 905 3 + 226 224 232 64 924 923 927 3 + 232 234 226 64 927 928 924 3 + 240 242 243 2 960 961 962 2 + 243 241 240 2 962 963 960 2 + 242 244 245 2 940 942 943 2 + 245 243 242 2 943 941 940 2 + 244 246 247 2 951 953 954 2 + 247 245 244 2 954 952 951 2 + 248 249 251 4 973 974 975 1 + 251 250 248 4 975 976 973 1 + 250 251 253 4 945 944 946 1 + 253 252 250 4 946 947 945 1 + 252 253 255 4 970 969 971 1 + 255 254 252 4 971 972 970 1 + 241 243 251 16 963 962 966 4 + 251 249 241 16 967 968 963 4 + 243 245 253 16 941 943 948 4 + 253 251 243 16 949 950 941 4 + 245 247 255 16 952 954 957 4 + 255 253 245 16 958 959 952 4 + 246 244 252 64 953 951 955 3 + 252 254 246 64 955 956 953 3 + 244 242 250 64 942 940 945 3 + 250 252 244 64 945 947 942 3 + 242 240 248 64 961 960 964 3 + 248 250 242 64 964 965 961 3 + 256 258 259 2 997 998 999 2 + 259 257 256 2 999 1000 997 2 + 258 260 261 2 977 979 980 2 + 261 259 258 2 980 978 977 2 + 260 262 263 2 988 990 991 2 + 263 261 260 2 991 989 988 2 + 264 265 267 4 1010 1011 1012 1 + 267 266 264 4 1012 1013 1010 1 + 266 267 269 4 982 981 983 1 + 269 268 266 4 983 984 982 1 + 268 269 271 4 1007 1006 1008 1 + 271 270 268 4 1008 1009 1007 1 + 257 259 267 16 1000 999 1003 4 + 267 265 257 16 1004 1005 1000 4 + 259 261 269 16 978 980 985 4 + 269 267 259 16 986 987 978 4 + 261 263 271 16 989 991 994 4 + 271 269 261 16 995 996 989 4 + 262 260 268 64 990 988 992 3 + 268 270 262 64 992 993 990 3 + 260 258 266 64 979 977 982 3 + 266 268 260 64 982 984 979 3 + 258 256 264 64 998 997 1001 3 + 264 266 258 64 1001 1002 998 3 + tverts 1014 + 0.174465 0.00149864 0 + 0.104128 0.00149864 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.00149864 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 2.9985 0 + 0.344242 -1.04225 0 + 0.273035 -1.04225 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 1.95475 0 + 0.174465 0.00149864 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 2.9985 0 + 0.104128 2.9985 0 + 0.104128 2.24925 0 + 0.104128 0.00149864 0 + 0.104128 2.9985 0 + 0.344242 -1.04225 0 + 0.273035 -1.04225 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 1.95475 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.0337728 0.940718 0 + 0.0337728 -0.0582831 0 + 0.243649 -0.0582831 0 + 0.310278 -0.0582831 0 + 0.177022 -0.0582831 0 + 0.376905 -0.0582831 0 + 0.237631 0.940718 0 + 0.316296 0.940718 0 + 0.177022 0.940718 0 + 0.376905 0.940718 0 + 0.257387 -0.568116 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -0.568116 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.316414 -0.568116 0 + 0.341479 -0.568116 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -0.568116 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 3.66842 0 + 0.104128 3.66842 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 3.66842 0 + 0.175144 3.66842 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 3.66842 0 + 0.104128 3.66842 0 + 0.104128 2.24925 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.348651 2.41652 0 + 0.277444 2.41652 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.419858 2.41652 0 + 0.349339 2.41652 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.277444 2.41652 0 + 0.277444 2.41652 0 + 0.273035 1.2055 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.326305 2.43905 0 + 0.255098 2.43905 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.397512 2.43905 0 + 0.326993 2.43905 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.255098 2.43905 0 + 0.255098 2.43905 0 + 0.273035 1.2055 0 + 0.159393 -0.654153 0 + 0.0890555 -0.654153 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.229729 -0.654153 0 + 0.160072 -0.654153 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.0890555 -0.654153 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.0337728 0.940718 0 + 0.0337728 -0.0582831 0 + 0.243649 -0.0582831 0 + 0.310278 -0.0582831 0 + 0.177022 -0.0582831 0 + 0.376905 -0.0582831 0 + 0.237631 0.940718 0 + 0.316296 0.940718 0 + 0.177022 0.940718 0 + 0.376905 0.940718 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 -0.0109385 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -0.0109385 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.37945 -0.0109385 0 + 0.404514 -0.0109386 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -0.0109386 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.32817 0 + 0.23974 2.32817 0 + 0.316414 0.879271 0 + 0.316414 2.32817 0 + 0.172541 2.32817 0 + 0.172541 2.32817 0 + 0.170192 0.852609 0 + 0.320422 -1.13992 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -1.13992 0 + 0.37945 -1.13992 0 + 0.37945 0.674666 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -1.13992 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.35824 0 + 0.23974 2.35824 0 + 0.316414 0.879271 0 + 0.316414 2.35824 0 + 0.172541 2.35824 0 + 0.172541 2.35824 0 + 0.170192 0.852609 0 + 0.257387 -1.76798 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -1.76798 0 + 0.316414 -1.76798 0 + 0.316414 0.117489 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -1.76798 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.35824 0 + 0.316414 2.39498 0 + 0.37945 -1.19967 0 + 0.404514 -1.13992 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.316414 -1.82165 0 + 0.341479 -1.76798 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.32817 0 + 0.316414 2.38131 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.164791 0.513932 0 + 0.147595 0.342531 0 + 0.164791 1.27572 0 + 0.141295 1.24906 0 + 0.250616 0.342531 0 + 0.223819 0.513932 0 + 0.248267 1.24906 0 + 0.223819 1.27572 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.0775959 1.24906 0 + 0.0775959 1.24906 0 + 0.079945 0.342531 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.16743 0 + 0.0841089 2.16743 0 + 0.160783 0.718537 0 + 0.160783 2.16743 0 + 0.01691 2.16743 0 + 0.01691 2.16743 0 + 0.014561 0.691875 0 + 0.164791 -1.30066 0 + 0.164791 0.513932 0 + 0.147595 0.342531 0 + 0.146631 -1.30066 0 + 0.223819 -1.30066 0 + 0.223819 0.513932 0 + 0.079945 0.342531 0 + 0.079945 0.342531 0 + 0.0782129 -1.30066 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.19751 0 + 0.0841089 2.19751 0 + 0.160783 0.718537 0 + 0.160783 2.19751 0 + 0.01691 2.19751 0 + 0.01691 2.19751 0 + 0.014561 0.691875 0 + 0.101756 -1.92871 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.92871 0 + 0.160783 -1.92871 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.92871 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.19751 0 + 0.160783 2.23425 0 + 0.223819 -1.3604 0 + 0.248883 -1.30066 0 + 0.250616 0.342531 0 + 0.223819 0.513932 0 + 0.160783 -1.98238 0 + 0.185848 -1.92871 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.16743 0 + 0.160783 2.22057 0 + 0.101756 -1.029 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.029 0 + 0.160783 -1.029 0 + 0.185848 -1.029 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.029 0 + 0.164791 1.27572 0 + 0.141295 1.24906 0 + 0.164791 2.261 0 + 0.147144 2.261 0 + 0.248267 1.24906 0 + 0.223819 1.27572 0 + 0.250616 2.261 0 + 0.223819 2.261 0 + 0.079946 2.261 0 + 0.079946 2.261 0 + 0.0775959 1.24906 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.257387 -0.568116 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -0.568116 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.316414 -0.568116 0 + 0.341479 -0.568116 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -0.568116 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.277444 2.41652 0 + 0.277444 2.41652 0 + 0.273035 1.2055 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.32817 0 + 0.23974 2.32817 0 + 0.316414 0.879271 0 + 0.316414 2.32817 0 + 0.172541 2.32817 0 + 0.172541 2.32817 0 + 0.170192 0.852609 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.35824 0 + 0.23974 2.35824 0 + 0.316414 0.879271 0 + 0.316414 2.35824 0 + 0.172541 2.35824 0 + 0.172541 2.35824 0 + 0.170192 0.852609 0 + 0.257387 -1.76798 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -1.76798 0 + 0.316414 -1.76798 0 + 0.316414 0.117489 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -1.76798 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.35824 0 + 0.316414 2.39498 0 + 0.316414 -1.82165 0 + 0.341479 -1.76798 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.32817 0 + 0.316414 2.38131 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.16743 0 + 0.0841089 2.16743 0 + 0.160783 0.718537 0 + 0.160783 2.16743 0 + 0.01691 2.16743 0 + 0.01691 2.16743 0 + 0.014561 0.691875 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.19751 0 + 0.0841089 2.19751 0 + 0.160783 0.718537 0 + 0.160783 2.19751 0 + 0.01691 2.19751 0 + 0.01691 2.19751 0 + 0.014561 0.691875 0 + 0.101756 -1.92871 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.92871 0 + 0.160783 -1.92871 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.92871 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.19751 0 + 0.160783 2.23425 0 + 0.160783 -1.98238 0 + 0.185848 -1.92871 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.16743 0 + 0.160783 2.22057 0 + 0.101756 -1.029 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.029 0 + 0.160783 -1.029 0 + 0.185848 -1.029 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.029 0 + 0.249099 -0.975342 0 + 0.324159 -0.975342 0 + 0.0698632 -0.975342 0 + 0.503394 -0.975342 0 + 0.249099 0.0236625 0 + 0.324159 0.0236625 0 + 0.0698632 0.0236625 0 + 0.503394 0.0236625 0 + 0.320501 -0.509138 0 + 0.252757 -0.509138 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.320501 -0.442538 0 + 0.320501 -0.509138 0 + 0.320501 -0.509138 0 + 0.320501 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.509138 0 + 0.320501 -0.509138 0 + -0.00519651 -0.975342 0 + -0.00519651 0.0236625 0 + -0.00519651 -0.975342 0 + 0.249099 -1.46084 0 + 0.324159 -1.46084 0 + 0.0698632 -1.46084 0 + 0.503394 -1.46084 0 + 0.249099 -0.461844 0 + 0.324159 -0.461844 0 + 0.0698632 -0.461844 0 + 0.503394 -0.461844 0 + 0.320501 -0.994642 0 + 0.252757 -0.994642 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.320501 -0.928042 0 + 0.320501 -0.994642 0 + 0.320501 -0.994642 0 + 0.320501 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.994642 0 + 0.320501 -0.994642 0 + -0.00519651 -1.46084 0 + -0.00519651 -0.461844 0 + -0.00519651 -1.46084 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.316414 -0.568116 0 + 0.341479 -0.568116 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -0.568116 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 3.66842 0 + 0.104128 3.66842 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 3.66842 0 + 0.175144 3.66842 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 3.66842 0 + 0.104128 3.66842 0 + 0.104128 2.24925 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.348651 2.41652 0 + 0.277444 2.41652 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.419858 2.41652 0 + 0.349339 2.41652 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.35824 0 + 0.23974 2.35824 0 + 0.316414 0.879271 0 + 0.316414 2.35824 0 + 0.172541 2.35824 0 + 0.172541 2.35824 0 + 0.170192 0.852609 0 + 0.257387 -1.76798 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -1.76798 0 + 0.316414 -1.76798 0 + 0.316414 0.117489 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -1.76798 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.35824 0 + 0.316414 2.39498 0 + 0.316414 -1.82165 0 + 0.341479 -1.76798 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.19751 0 + 0.0841089 2.19751 0 + 0.160783 0.718537 0 + 0.160783 2.19751 0 + 0.01691 2.19751 0 + 0.01691 2.19751 0 + 0.014561 0.691875 0 + 0.101756 -1.92871 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.92871 0 + 0.160783 -1.92871 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.92871 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.19751 0 + 0.160783 2.23425 0 + 0.160783 -1.98238 0 + 0.185848 -1.92871 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.35824 0 + 0.23974 2.35824 0 + 0.316414 0.879271 0 + 0.316414 2.35824 0 + 0.172541 2.35824 0 + 0.172541 2.35824 0 + 0.170192 0.852609 0 + 0.257387 -1.76798 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -1.76798 0 + 0.316414 -1.76798 0 + 0.316414 0.117489 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -1.76798 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.35824 0 + 0.316414 2.39498 0 + 0.316414 -1.82165 0 + 0.341479 -1.76798 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.19751 0 + 0.0841089 2.19751 0 + 0.160783 0.718537 0 + 0.160783 2.19751 0 + 0.01691 2.19751 0 + 0.01691 2.19751 0 + 0.014561 0.691875 0 + 0.101756 -1.92871 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.92871 0 + 0.160783 -1.92871 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.92871 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.19751 0 + 0.160783 2.23425 0 + 0.160783 -1.98238 0 + 0.185848 -1.92871 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 +endnode +#Tile trimesh node +node trimesh roof01 + parent tin01_d11_01 + position -4.5 0.0 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 450.0 0.0 183.0 + bitmap tin01_plank + verts 16 + 9.5 -2.5 1.83 + 7.0 -5.0 1.83 + 7.0 -2.5 1.83 + 2.0 -5.0 1.83 + -0.5 -2.5 1.83 + 2.0 -2.5 1.83 + -0.5 2.5 1.83 + 2.0 5.0 1.83 + 2.0 2.5 1.83 + 7.0 5.0 1.83 + 9.5 2.5 1.83 + 7.0 2.5 1.83 + 9.5 -5.0 1.83 + -0.5 -5.0 1.83 + 9.5 5.0 1.83 + -0.5 5.0 1.83 + faces 18 + 4 6 8 0 4 6 8 1 + 4 8 5 0 4 8 5 1 + 5 8 11 0 5 8 11 1 + 8 7 9 0 8 7 9 1 + 8 9 11 0 8 9 11 1 + 5 11 2 0 5 11 2 1 + 5 2 1 0 5 2 1 1 + 5 1 3 0 5 1 3 1 + 2 11 10 0 2 11 10 1 + 2 10 0 0 2 10 0 1 + 1 2 0 0 1 2 0 1 + 1 0 12 0 1 0 12 1 + 4 5 3 0 4 5 3 1 + 4 3 13 0 4 3 13 1 + 11 9 14 0 11 9 14 1 + 11 14 10 0 11 14 10 1 + 6 15 7 0 6 15 7 1 + 6 7 8 0 6 7 8 1 + tverts 16 + 1.999 0.500499 0 + 1.4995 0.000999153 0 + 1.4995 0.500499 0 + 0.500499 0.000999391 0 + 0.000999153 0.5005 0 + 0.500499 0.5005 0 + 0.000999391 1.4995 0 + 0.5005 1.999 0 + 0.5005 1.4995 0 + 1.4995 1.999 0 + 1.999 1.4995 0 + 1.4995 1.4995 0 + 1.999 0.000999033 0 + 0.000999033 0.00099951 0 + 1.999 1.999 0 + 0.00099951 1.999 0 +endnode +endmodelgeom tin01_d11_01 +donemodel tin01_d11_01 diff --git a/tests/fixtures/oracle/ascii/wsf10_p01_01.mdl b/tests/fixtures/oracle/ascii/wsf10_p01_01.mdl new file mode 100644 index 0000000..0e7b39f --- /dev/null +++ b/tests/fixtures/oracle/ascii/wsf10_p01_01.mdl @@ -0,0 +1,5185 @@ +# Rewritten by CleanModels 3 Version 3.5.2d Wed Jun 17 08:18:30 2020 +#MAXMODEL ASCII +filedependency Unknown +newmodel wsf10_p01_01 + classification TILE + setsupermodel wsf10_p01_01 NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom wsf10_p01_01 +node dummy wsf10_p01_01 + parent NULL +endnode +node trimesh node14 + parent wsf10_p01_01 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.564706 0.564706 0.564706 + tilefade 1 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + center 60.5 46.5 438 + bitmap wtf_2_leaves + verts 1248 + -0.46 2.65 8.85 + -1.98 0.78 9.77 + 0.52 0.38 8.08 + -3.07 3.1 9.88 + -4.83 1.16 9.57 + -7.58 1.54 8.93 + -6.46 -0.69 9.49 + -1.06 -1.46 8.92 + -5.93 3.4 8.75 + -3.83 -1.1 8.54 + -4.38 -0.1 8.08 + -2.65 0.43 9.1 + -4.7 -1.85 9.4 + -4.21 -0.66 8.08 + -5.46 0.63 9.4 + -2.49 -0.14 9.1 + -2.74 -1.44 8.5 + -3.93 1.39 8.55 + -5.88 -1 8.83 + -4.01 0.08 9.62 + -5.86 -0.68 8.62 + -2.72 -1.13 8.29 + -4.37 -0.37 9.67 + -3.08 -1.59 8.34 + -4.28 1.24 8.39 + -3.79 -0.46 9.61 + -3.69 1.16 8.33 + -5.64 -1.22 8.61 + -1.57 2.47 9.56 + -4.55 3.24 9.86 + -3.62 0.19 9.85 + -2.97 2.04 8.7 + -3.29 0.29 10.01 + -4.22 3.34 10.02 + -3.53 2.18 8.76 + -1.81 2.71 9.77 + -3.85 0.43 10.07 + -3.36 1.62 8.75 + -4.61 2.91 10.08 + -1.64 2.14 9.77 + -1.89 0.83 9.18 + -3.09 3.66 9.22 + -5.03 1.28 9.51 + -3.17 2.36 10.29 + -5.01 1.6 9.29 + -1.87 1.15 8.96 + -3.53 1.91 10.35 + -2.23 0.69 9.02 + -3.43 3.52 9.06 + -2.95 1.82 10.29 + -2.85 3.44 9 + -4.79 1.06 9.29 + 0.42 3.14 8.48 + -2.55 3.91 8.78 + -1.62 0.86 8.77 + -0.97 2.72 7.62 + -1.29 0.97 8.94 + -2.22 4.02 8.94 + -1.53 2.86 7.68 + 0.19 3.38 8.7 + -1.85 1.1 8.99 + -1.36 2.29 7.68 + -2.62 3.59 9 + 0.36 2.82 8.7 + 0.11 1.51 8.1 + -1.09 4.34 8.14 + -3.03 1.96 8.43 + -1.17 3.04 9.22 + -3.02 2.27 8.22 + 0.13 1.82 7.89 + -1.53 2.58 9.27 + -0.23 1.37 7.94 + -1.43 4.2 7.98 + -0.95 2.5 9.21 + -0.85 4.11 7.92 + -2.79 1.73 8.21 + -2.9 4.66 8.79 + -5.88 5.43 9.1 + -4.94 2.38 9.09 + -4.3 4.24 7.94 + -4.62 2.48 9.25 + -5.55 5.53 9.26 + -4.86 4.38 7.99 + -3.14 4.9 9.01 + -5.18 2.62 9.31 + -4.69 3.81 7.99 + -5.94 5.11 9.32 + -2.97 4.33 9.01 + -3.22 3.03 8.42 + -4.42 5.86 8.46 + -6.36 3.48 8.75 + -4.49 4.55 9.53 + -6.34 3.79 8.53 + -3.2 3.34 8.2 + -4.85 4.1 9.59 + -3.56 2.89 8.26 + -4.76 5.72 8.3 + -4.27 4.01 9.52 + -4.18 5.63 8.24 + -6.12 3.25 8.53 + 2.07 1.97 7.99 + -0.9 2.74 8.29 + 0.03 -0.31 8.29 + 0.68 1.55 7.13 + 0.36 -0.21 8.45 + -0.57 2.85 8.46 + 0.12 1.69 7.19 + 1.84 2.21 8.21 + -0.2 -0.07 8.51 + 0.29 1.12 7.19 + -0.97 2.42 8.51 + 2.01 1.65 8.21 + 1.76 0.34 7.61 + 0.56 3.17 7.66 + -1.38 0.79 7.94 + 0.48 1.87 8.73 + -1.37 1.1 7.73 + 1.78 0.65 7.4 + 0.12 1.41 8.78 + 1.42 0.2 7.45 + 0.22 3.03 7.5 + 0.7 1.32 8.72 + 0.8 2.94 7.44 + -1.14 0.56 7.72 + -4.56 2.07 8.72 + -7.53 2.84 9.02 + -6.6 -0.21 9.01 + -5.96 1.65 7.86 + -6.28 -0.11 9.17 + -7.21 2.95 9.18 + -6.52 1.79 7.92 + -4.8 2.31 8.93 + -6.84 0.03 9.23 + -6.35 1.22 7.91 + -7.6 2.52 9.24 + -4.63 1.74 8.93 + -4.88 0.44 8.34 + -6.08 3.27 8.38 + -8.02 0.89 8.67 + -6.15 1.96 9.45 + -8 1.2 8.45 + -4.86 0.75 8.12 + -6.51 1.51 9.51 + -5.22 0.3 8.18 + -6.42 3.13 8.22 + -5.93 1.42 9.45 + -5.84 3.04 8.16 + -7.78 0.66 8.45 + -3.49 4.79 9.94 + -1.53 3.2 10.48 + -1.34 5.82 8.95 + -3.83 2.11 10.83 + -1.97 0.38 10.12 + -2.47 -2.31 9.32 + -0.17 -1.24 9.65 + 0.58 4.18 9.4 + -4.32 -0.65 9.54 + 0.13 1.45 8.86 + -6.09 1.03 10.41 + -5.79 3.72 9.62 + -1.02 2.85 9.99 + -1.78 -0.14 10.17 + 1.25 0.79 9.81 + -0.74 1.52 8.98 + 1.18 1.1 10.01 + -1.85 0.17 10.37 + -0.87 0.96 9.01 + -1.23 2.59 10.23 + 1.04 0.53 10.04 + -0.31 1.12 8.95 + -1.43 -0.22 10.34 + -0.67 2.76 10.16 + 0.54 2.56 9.37 + -2.27 1.36 9.71 + 0.1 -0.6 9.51 + -0.83 1.2 10.58 + -0.24 -0.56 9.35 + 0.2 2.59 9.2 + -0.38 0.84 10.55 + 0.65 2.23 9.16 + -2.16 1.04 9.51 + -0.29 1.42 10.52 + -2.07 1.62 9.48 + 0.3 -0.34 9.28 + -3.17 3.64 11.04 + -3.93 0.65 11.22 + -0.9 1.58 10.86 + -2.89 2.31 10.03 + -0.97 1.89 11.06 + -4.01 0.96 11.42 + -3.03 1.75 10.06 + -3.38 3.39 11.27 + -1.11 1.33 11.09 + -2.46 1.92 9.99 + -3.58 0.57 11.38 + -2.82 3.56 11.21 + -1.61 3.35 10.42 + -4.42 2.16 10.76 + -2.05 0.19 10.56 + -2.98 1.99 11.63 + -2.39 0.23 10.4 + -1.95 3.39 10.25 + -2.53 1.63 11.59 + -1.5 3.02 10.21 + -4.31 1.83 10.56 + -2.45 2.21 11.57 + -4.23 2.41 10.53 + -1.85 0.45 10.33 + -3.97 5.72 10.23 + -4.73 2.73 10.4 + -1.69 3.66 10.04 + -3.69 4.39 9.21 + -1.77 3.97 10.24 + -4.8 3.04 10.6 + -3.82 3.83 9.25 + -4.18 5.46 10.46 + -1.9 3.4 10.27 + -3.26 3.99 9.18 + -4.37 2.64 10.57 + -3.62 5.63 10.39 + -2.41 5.43 9.6 + -5.22 4.23 9.95 + -2.85 2.27 9.75 + -3.78 4.07 10.82 + -3.18 2.31 9.58 + -2.75 5.46 9.43 + -3.33 3.71 10.78 + -2.3 5.1 9.4 + -5.11 3.91 9.74 + -3.24 4.29 10.75 + -5.02 4.49 9.71 + -2.65 2.53 9.52 + -5.47 2.38 10.49 + -6.22 -0.61 10.67 + -3.19 0.32 10.31 + -5.19 1.05 9.48 + -3.27 0.63 10.51 + -6.3 -0.3 10.87 + -5.32 0.49 9.51 + -5.68 2.13 10.73 + -3.4 0.07 10.54 + -4.76 0.65 9.45 + -5.87 -0.69 10.84 + -5.11 2.29 10.66 + -3.91 2.09 9.87 + -6.72 0.89 10.21 + -4.34 -1.07 10.02 + -5.28 0.73 11.09 + -4.68 -1.03 9.85 + -4.25 2.12 9.7 + -4.83 0.37 11.05 + -3.79 1.76 9.67 + -6.6 0.57 10.01 + -4.74 0.95 11.02 + -6.52 1.15 9.98 + -4.15 -0.81 9.79 + -2.29 6.99 9.32 + -3.04 4 9.5 + -0.01 4.93 9.13 + -2 5.66 8.31 + -0.09 5.24 9.33 + -3.12 4.31 9.7 + -2.14 5.1 8.34 + -2.5 6.74 9.55 + -0.22 4.68 9.37 + -1.58 5.27 8.27 + -2.69 3.92 9.66 + -1.93 6.91 9.48 + -0.73 6.7 8.69 + -3.54 5.51 9.04 + -1.16 3.54 8.84 + -2.1 5.34 9.91 + -1.5 3.58 8.67 + -1.06 6.74 8.53 + -1.64 4.98 9.87 + -0.61 6.37 8.49 + -3.42 5.18 8.84 + -1.56 5.56 9.84 + -3.34 5.76 8.81 + -0.96 3.8 8.61 + -3.64 0.56 9.67 + -4.4 -2.42 9.85 + -1.37 -1.5 9.48 + -3.36 -0.76 8.66 + -1.44 -1.18 9.68 + -4.48 -2.11 10.05 + -3.5 -1.33 8.69 + -3.85 0.31 9.9 + -1.58 -1.75 9.72 + -2.93 -1.16 8.62 + -4.05 -2.51 10.01 + -3.29 0.48 9.83 + -2.08 0.28 9.04 + -4.89 -0.92 9.39 + -2.52 -2.88 9.19 + -3.45 -1.08 10.26 + -2.86 -2.85 9.03 + -2.42 0.31 8.88 + -3 -1.45 10.22 + -1.97 -0.05 8.84 + -4.78 -1.25 9.19 + -2.92 -0.86 10.19 + -4.7 -0.66 9.16 + -2.32 -2.63 8.96 + -4.2 5.28 9.23 + -1.58 4.88 8.29 + -2.42 0.19 8.88 + -5.39 0.96 9.18 + -4.46 -2.09 9.18 + -3.82 -0.23 8.03 + -4.13 -1.99 9.34 + -5.07 1.06 9.35 + -3.54 -0.11 6.64 + -4.97 0.8 7.11 + -4.95 -1.03 6.15 + -3.51 1.75 7.15 + -4.97 2.72 6.77 + -4.95 4.54 6.15 + -6.36 3.62 6.56 + -6.36 -0.09 6.56 + -3.54 3.61 6.19 + -6.36 1.76 6.1 + -5.72 2.19 5.78 + -5.24 1.17 6.6 + -6.97 2.33 6.6 + -6.09 2.03 5.78 + -5.37 3.08 6.6 + -5.61 1 6.6 + -6.49 1 6.15 + -4.7 2.07 6.15 + -6.49 3.16 6.15 + -5.62 2.07 6.84 + -6.27 3.16 6.02 + -6.27 1 6.02 + -5.96 2.27 6.84 + -6.61 1.2 6.02 + -4.82 2.27 6.02 + -5.96 1.87 6.84 + -4.83 1.87 6.02 + -6.61 2.96 6.02 + -3.79 0.67 7.03 + -3.56 2.75 7.03 + -5.52 1.84 7.03 + -4.18 1.5 6.34 + -5.42 1.64 7.16 + -3.46 2.55 7.16 + -4.14 1.89 6.34 + -3.66 0.87 7.16 + -5.38 2.03 7.16 + -4.5 1.73 6.34 + -3.79 2.78 7.16 + -4.02 0.7 7.16 + -4.9 0.7 6.72 + -3.12 1.77 6.72 + -4.9 2.86 6.72 + -4.03 1.77 7.4 + -4.68 2.86 6.58 + -4.68 0.7 6.58 + -4.37 1.98 7.4 + -5.02 0.9 6.58 + -3.24 1.98 6.58 + -4.37 1.58 7.4 + -3.24 1.58 6.58 + -5.03 2.66 6.58 + -3.12 -0.67 6.46 + -2.89 1.41 6.46 + -4.85 0.49 6.46 + -3.5 0.16 5.78 + -4.75 0.3 6.6 + -2.79 1.21 6.6 + -3.47 0.55 5.78 + -2.99 -0.48 6.6 + -4.71 0.69 6.6 + -3.83 0.38 5.78 + -3.12 1.43 6.6 + -3.35 -0.64 6.6 + -4.23 -0.64 6.15 + -2.45 0.43 6.15 + -4.23 1.52 6.15 + -3.36 0.43 6.84 + -4.01 1.52 6.02 + -4.01 -0.64 6.02 + -3.7 0.63 6.84 + -4.35 -0.44 6.02 + -2.57 0.63 6.02 + -3.7 0.23 6.84 + -2.57 0.23 6.02 + -4.35 1.32 6.02 + -2.42 1.71 6.46 + -2.19 3.79 6.46 + -4.15 2.88 6.46 + -2.81 2.54 5.78 + -4.05 2.68 6.6 + -2.09 3.59 6.6 + -2.77 2.93 5.78 + -2.29 1.91 6.6 + -4.01 3.07 6.6 + -3.13 2.77 5.78 + -2.42 3.82 6.6 + -2.65 1.74 6.6 + -3.53 1.74 6.15 + -1.75 2.81 6.15 + -3.53 3.9 6.15 + -2.66 2.82 6.84 + -3.31 3.9 6.02 + -3.31 1.74 6.02 + -3 3.02 6.84 + -3.65 1.94 6.02 + -1.87 3.02 6.02 + -3 2.62 6.84 + -1.87 2.62 6.02 + -3.65 3.71 6.02 + -3.74 -1.92 6.23 + -3.5 0.16 6.23 + -5.46 -0.75 6.23 + -4.12 -1.09 5.55 + -5.37 -0.95 6.37 + -3.41 -0.04 6.37 + -4.08 -0.7 5.55 + -3.6 -1.72 6.37 + -5.33 -0.56 6.37 + -4.45 -0.86 5.55 + -3.73 0.19 6.37 + -3.97 -1.89 6.37 + -4.85 -1.89 5.92 + -3.06 -0.82 5.92 + -4.85 0.27 5.92 + -3.98 -0.81 6.61 + -4.63 0.27 5.79 + -4.63 -1.89 5.79 + -4.32 -0.61 6.61 + -4.97 -1.69 5.79 + -3.18 -0.61 5.79 + -4.32 -1.01 6.61 + -3.19 -1.01 5.79 + -4.97 0.08 5.79 + -4.31 2.57 6.23 + -4.07 4.64 6.23 + -6.03 3.73 6.23 + -4.69 3.4 5.55 + -5.94 3.53 6.37 + -3.98 4.45 6.37 + -4.65 3.79 5.55 + -4.17 2.76 6.37 + -5.9 3.93 6.37 + -5.02 3.62 5.55 + -4.3 4.67 6.37 + -4.54 2.6 6.37 + -5.42 2.6 5.92 + -3.63 3.67 5.92 + -5.42 4.76 5.92 + -4.55 3.67 6.61 + -5.2 4.76 5.79 + -5.2 2.6 5.79 + -4.89 3.87 6.61 + -5.54 2.8 5.79 + -3.75 3.87 5.79 + -4.89 3.47 6.61 + -3.76 3.47 5.79 + -5.54 4.56 5.79 + -2.42 2.2 7.2 + -3.33 0.78 7.67 + -1.5 0.79 6.71 + -4.28 2.23 7.71 + -5.24 0.78 7.33 + -7.07 0.79 6.71 + -6.15 -0.61 7.12 + -2.44 -0.61 7.12 + -6.13 2.2 6.75 + -4.29 -0.61 6.66 + -5.2 3.61 7.24 + -3.34 3.61 6.79 + -3.5 0.37 7.37 + -5.58 0.6 7.37 + -4.66 -1.36 7.37 + -4.33 -0.02 6.68 + -4.47 -1.26 7.51 + -5.38 0.7 7.51 + -4.72 0.02 6.68 + -3.69 0.5 7.51 + -4.86 -1.22 7.51 + -4.55 -0.34 6.68 + -5.6 0.37 7.51 + -3.53 0.14 7.51 + -3.53 -0.74 7.06 + -4.6 1.04 7.06 + -5.69 -0.74 7.06 + -4.6 0.13 7.75 + -5.69 -0.52 6.92 + -3.53 -0.52 6.92 + -4.8 -0.21 7.75 + -3.73 -0.86 6.92 + -4.8 0.92 6.92 + -4.4 -0.21 7.75 + -4.4 0.92 6.92 + -5.49 -0.87 6.92 + -3.2 1.95 7.93 + -5.28 2.19 7.93 + -4.36 0.23 7.93 + -4.03 1.57 7.25 + -4.17 0.32 8.07 + -5.08 2.28 8.07 + -4.42 1.61 7.25 + -3.39 2.09 8.07 + -4.56 0.36 8.07 + -4.26 1.24 7.25 + -5.31 1.96 8.07 + -3.23 1.72 8.07 + -3.23 0.84 7.62 + -4.3 2.63 7.62 + -5.39 0.84 7.62 + -4.3 1.71 8.31 + -5.39 1.06 7.49 + -3.23 1.06 7.49 + -4.5 1.37 8.31 + -3.43 0.72 7.49 + -4.5 2.51 7.49 + -4.1 1.37 8.31 + -4.1 2.5 7.49 + -5.19 0.72 7.49 + -1.86 2.62 7.37 + -3.93 2.86 7.37 + -3.02 0.9 7.37 + -2.69 2.24 6.68 + -2.82 0.99 7.51 + -3.74 2.95 7.51 + -3.08 2.28 6.68 + -2.05 2.76 7.51 + -3.22 1.03 7.51 + -2.91 1.91 6.68 + -3.96 2.63 7.51 + -1.89 2.39 7.51 + -1.89 1.51 7.06 + -2.96 3.3 7.06 + -4.05 1.51 7.06 + -2.96 2.38 7.75 + -4.05 1.73 6.92 + -1.89 1.73 6.92 + -3.16 2.04 7.75 + -2.09 1.39 6.92 + -3.16 3.18 6.92 + -2.76 2.04 7.75 + -2.76 3.17 6.92 + -3.85 1.39 6.92 + -4.24 3.32 7.37 + -6.32 3.56 7.37 + -5.4 1.6 7.37 + -5.07 2.94 6.68 + -5.21 1.69 7.51 + -6.12 3.65 7.51 + -5.46 2.98 6.68 + -4.44 3.46 7.51 + -5.6 1.73 7.51 + -5.3 2.61 6.68 + -6.35 3.33 7.51 + -4.27 3.09 7.51 + -4.27 2.21 7.06 + -5.34 4 7.06 + -6.43 2.21 7.06 + -5.34 3.08 7.75 + -6.43 2.43 6.92 + -4.27 2.43 6.92 + -5.54 2.74 7.75 + -4.47 2.09 6.92 + -5.54 3.88 6.92 + -5.14 2.74 7.75 + -5.14 3.87 6.92 + -6.23 2.09 6.92 + -0.82 1.56 6.91 + -2.9 1.79 6.91 + -1.98 -0.17 6.91 + -1.65 1.18 6.22 + -1.79 -0.07 7.05 + -2.7 1.89 7.05 + -2.04 1.21 6.22 + -1.01 1.69 7.05 + -2.18 -0.03 7.05 + -1.87 0.85 6.22 + -2.93 1.56 7.05 + -0.85 1.33 7.05 + -0.85 0.45 6.6 + -1.92 2.23 6.6 + -3.01 0.45 6.6 + -1.92 1.32 7.29 + -3.01 0.67 6.46 + -0.85 0.67 6.46 + -2.12 0.98 7.29 + -1.05 0.33 6.46 + -2.12 2.11 6.46 + -1.72 0.98 7.29 + -1.72 2.11 6.46 + -2.81 0.33 6.46 + -5.26 1.88 6.91 + -7.34 2.11 6.91 + -6.43 0.15 6.91 + -6.09 1.49 6.22 + -6.23 0.25 7.05 + -7.14 2.2 7.05 + -6.48 1.53 6.22 + -5.46 2.01 7.05 + -6.62 0.28 7.05 + -6.32 1.17 6.22 + -7.37 1.88 7.05 + -5.29 1.65 7.05 + -5.29 0.77 6.6 + -6.36 2.55 6.6 + -7.45 0.77 6.6 + -6.36 1.64 7.29 + -7.45 0.98 6.46 + -5.29 0.98 6.46 + -6.56 1.3 7.29 + -5.49 0.65 6.46 + -6.56 2.43 6.46 + -6.16 1.29 7.29 + -6.16 2.43 6.46 + -7.25 0.64 6.46 + -2.14 2.67 6.68 + -2.14 0.82 6.23 + -5.38 0.97 6.46 + -5.14 3.05 6.46 + -7.1 2.14 6.46 + -5.76 1.8 5.78 + -7.01 1.94 6.6 + -5.05 2.85 6.6 + -2.99 3.07 4.66 + -3.62 1.52 5.13 + -1.84 1.86 4.18 + -4.81 2.77 5.17 + -5.5 1.17 4.8 + -7.28 0.86 4.18 + -6.13 -0.35 4.58 + -2.5 0.32 4.58 + -6.62 2.4 4.22 + -4.31 -0.02 4.13 + -4.85 0.53 3.81 + -3.93 1.18 4.63 + -4.75 -0.72 4.63 + -4.62 0.2 3.81 + -5.77 0.71 4.63 + -3.7 0.86 4.63 + -3.54 0 4.18 + -4.91 1.55 4.18 + -5.65 -0.4 4.18 + -4.75 0.65 4.87 + -5.7 -0.18 4.05 + -3.58 0.21 4.05 + -4.88 0.28 4.87 + -3.72 -0.16 4.05 + -5.09 1.39 4.05 + -4.49 0.35 4.87 + -4.7 1.46 4.05 + -5.44 -0.48 4.05 + -3.71 2.69 5.05 + -5.78 2.54 5.05 + -4.53 0.79 5.05 + -4.45 2.16 4.37 + -4.36 0.92 5.19 + -5.61 2.67 5.19 + -4.84 2.13 4.37 + -3.92 2.78 5.19 + -4.75 0.89 5.19 + -4.61 1.8 4.37 + -5.77 2.31 5.19 + -3.69 2.46 5.19 + -3.54 1.6 4.74 + -4.91 3.15 4.74 + -5.65 1.21 4.74 + -4.74 2.25 5.43 + -5.69 1.42 4.61 + -3.58 1.81 4.61 + -4.88 1.89 5.43 + -3.71 1.44 4.61 + -5.08 2.99 4.61 + -4.49 1.96 5.43 + -4.69 3.06 4.61 + -5.43 1.12 4.61 + -2.52 3.59 4.49 + -4.59 3.44 4.49 + -3.34 1.69 4.49 + -3.26 3.06 3.81 + -3.17 1.82 4.63 + -4.41 3.57 4.63 + -3.65 3.03 3.81 + -2.73 3.68 4.63 + -3.56 1.79 4.63 + -3.42 2.7 3.81 + -4.58 3.21 4.63 + -2.5 3.36 4.63 + -2.34 2.5 4.18 + -3.71 4.05 4.18 + -4.46 2.11 4.18 + -3.55 3.15 4.87 + -4.5 2.32 4.05 + -2.38 2.71 4.05 + -3.69 2.79 4.87 + -2.52 2.34 4.05 + -3.89 3.89 4.05 + -3.29 2.86 4.87 + -3.5 3.96 4.05 + -4.24 2.02 4.05 + -4.97 3.84 4.49 + -7.05 3.69 4.49 + -5.8 1.94 4.49 + -5.72 3.32 3.81 + -5.63 2.07 4.63 + -6.87 3.82 4.63 + -6.11 3.28 3.81 + -5.19 3.94 4.63 + -6.02 2.04 4.63 + -5.88 2.96 3.81 + -7.03 3.46 4.63 + -4.96 3.61 4.63 + -4.8 2.75 4.18 + -6.17 4.3 4.18 + -6.91 2.36 4.18 + -6.01 3.41 4.87 + -6.96 2.57 4.05 + -4.84 2.96 4.05 + -6.14 3.04 4.87 + -4.98 2.6 4.05 + -6.35 4.15 4.05 + -5.75 3.11 4.87 + -5.96 4.22 4.05 + -6.7 2.27 4.05 + -1.19 3.21 4.26 + -3.26 3.06 4.26 + -2.01 1.32 4.26 + -1.93 2.69 3.58 + -1.84 1.44 4.4 + -3.08 3.19 4.4 + -2.32 2.65 3.58 + -1.4 3.31 4.4 + -2.23 1.41 4.4 + -2.09 2.33 3.58 + -3.25 2.83 4.4 + -1.17 2.98 4.4 + -1.01 2.12 3.95 + -2.38 3.67 3.95 + -3.13 1.73 3.95 + -2.22 2.78 4.64 + -3.17 1.94 3.82 + -1.05 2.33 3.82 + -2.36 2.41 4.64 + -1.19 1.97 3.82 + -2.56 3.52 3.82 + -1.96 2.48 4.64 + -2.17 3.59 3.82 + -2.91 1.65 3.82 + -5.47 1.84 4.26 + -7.54 1.69 4.26 + -6.29 -0.06 4.26 + -6.21 1.32 3.58 + -6.12 0.07 4.4 + -7.37 1.82 4.4 + -6.6 1.28 3.58 + -5.68 1.94 4.4 + -6.51 0.04 4.4 + -6.37 0.96 3.58 + -7.53 1.46 4.4 + -5.45 1.61 4.4 + -5.29 0.75 3.95 + -6.67 2.3 3.95 + -7.41 0.36 3.95 + -6.5 1.41 4.64 + -7.45 0.57 3.82 + -5.34 0.96 3.82 + -6.64 1.04 4.64 + -5.47 0.6 3.82 + -6.84 2.15 3.82 + -6.25 1.11 4.64 + -6.45 2.22 3.82 + -7.19 0.27 3.82 + -5.45 3.75 5.22 + -3.9 3.13 5.69 + -4.24 4.91 4.73 + -5.15 1.93 5.73 + -3.55 1.25 5.36 + -3.23 -0.54 4.73 + -2.03 0.62 5.14 + -2.7 4.25 5.14 + -4.78 0.12 4.77 + -2.36 2.43 4.69 + -6.32 0.78 5.26 + -6.66 2.6 4.81 + -3.47 3.03 5.39 + -3.32 0.96 5.39 + -1.57 2.21 5.39 + -2.94 2.29 4.71 + -1.69 2.38 5.53 + -3.44 1.13 5.53 + -2.91 1.9 4.71 + -3.56 2.82 5.53 + -1.66 1.99 5.53 + -2.58 2.13 4.71 + -3.09 0.97 5.53 + -3.23 3.04 5.53 + -2.37 3.2 5.08 + -3.92 1.83 5.08 + -1.98 1.09 5.08 + -3.03 2 5.77 + -2.19 1.05 4.95 + -2.59 3.16 4.95 + -2.66 1.86 5.77 + -2.22 3.03 4.95 + -3.77 1.66 4.95 + -2.73 2.25 5.77 + -3.84 2.05 4.95 + -1.9 1.31 4.95 + -5.07 3.04 5.95 + -4.92 0.96 5.95 + -3.17 2.21 5.95 + -4.54 2.29 5.27 + -3.3 2.39 6.09 + -5.05 1.14 6.09 + -4.51 1.9 5.27 + -5.16 2.82 6.09 + -3.26 2 6.09 + -4.18 2.13 5.27 + -4.69 0.98 6.09 + -4.84 3.05 6.09 + -3.98 3.21 5.64 + -5.53 1.84 5.64 + -3.59 1.1 5.64 + -4.63 2 6.33 + -3.8 1.05 5.51 + -4.19 3.17 5.51 + -4.26 1.87 6.33 + -3.82 3.03 5.51 + -5.37 1.66 5.51 + -4.33 2.26 6.33 + -5.44 2.05 5.51 + -3.5 1.31 5.51 + -5.97 4.23 5.39 + -5.82 2.15 5.39 + -4.07 3.4 5.39 + -5.44 3.49 4.71 + -4.2 3.58 5.53 + -5.95 2.33 5.53 + -5.41 3.1 4.71 + -6.06 4.01 5.53 + -4.16 3.19 5.53 + -5.08 3.32 4.71 + -5.59 2.17 5.53 + -5.74 4.24 5.53 + -4.88 4.4 5.08 + -6.43 3.03 5.08 + -4.49 2.29 5.08 + -5.53 3.19 5.77 + -4.7 2.25 4.95 + -5.09 4.36 4.95 + -5.16 3.06 5.77 + -4.72 4.22 4.95 + -6.27 2.85 4.95 + -5.23 3.45 5.77 + -6.34 3.24 4.95 + -4.4 2.5 4.95 + -6.22 1.77 5.39 + -6.07 -0.3 5.39 + -4.32 0.94 5.39 + -5.69 1.03 4.71 + -4.45 1.12 5.53 + -6.2 -0.13 5.53 + -5.66 0.64 4.71 + -6.31 1.55 5.53 + -4.42 0.73 5.53 + -5.33 0.87 4.71 + -5.84 -0.29 5.53 + -5.99 1.78 5.53 + -5.13 1.94 5.08 + -6.68 0.57 5.08 + -4.74 -0.17 5.08 + -5.78 0.74 5.77 + -4.95 -0.21 4.95 + -5.34 1.9 4.95 + -5.42 0.6 5.77 + -4.97 1.77 4.95 + -6.52 0.4 4.95 + -5.49 0.99 5.77 + -6.59 0.79 4.95 + -4.65 0.05 4.95 + -5.12 5.44 4.94 + -4.97 3.36 4.94 + -3.22 4.61 4.94 + -4.59 4.69 4.25 + -3.34 4.78 5.07 + -5.09 3.54 5.07 + -4.56 4.3 4.25 + -5.21 5.22 5.07 + -3.31 4.39 5.07 + -4.23 4.53 4.25 + -4.74 3.38 5.07 + -4.88 5.45 5.07 + -4.02 5.61 4.63 + -5.57 4.24 4.63 + -3.63 3.5 4.63 + -4.68 4.4 5.31 + -3.84 3.45 4.49 + -4.24 5.57 4.49 + -4.31 4.27 5.31 + -3.87 5.43 4.49 + -5.42 4.06 4.49 + -4.38 4.66 5.31 + -5.49 4.45 4.49 + -3.55 3.71 4.49 + -4.62 1.03 4.94 + -4.47 -1.04 4.94 + -2.72 0.21 4.94 + -4.09 0.29 4.25 + -2.85 0.38 5.07 + -4.6 -0.86 5.07 + -4.06 -0.1 4.25 + -4.71 0.82 5.07 + -2.82 -0.01 5.07 + -3.74 0.13 4.25 + -4.24 -1.03 5.07 + -4.39 1.05 5.07 + -3.53 1.21 4.63 + -5.08 -0.16 4.63 + -3.14 -0.91 4.63 + -4.18 0 5.31 + -3.35 -0.95 4.49 + -3.74 1.17 4.49 + -3.82 -0.14 5.31 + -3.37 1.03 4.49 + -4.92 -0.34 4.49 + -3.89 0.26 5.31 + -4.99 0.05 4.49 + -3.05 -0.69 4.49 + -5.96 3.95 4.71 + -4.15 4.28 4.26 + -3.71 1.09 4.49 + -5.79 0.94 4.49 + -4.54 -0.81 4.49 + -4.46 0.56 3.81 + -4.36 -0.68 4.63 + -5.61 1.07 4.63 + -5.29 4.03 6.4 + -3.08 2.81 6.89 + -3.37 5.45 5.42 + -5.13 1.33 7.22 + -3 -0.02 6.48 + -3 -2.72 5.63 + -0.95 -1.27 5.97 + -1.19 4.18 5.83 + -5.11 -1.43 5.88 + -1.14 1.44 5.24 + -2.09 0.75 4.88 + -2.73 2.27 6.12 + -0.13 0.67 5.89 + -1.57 1.02 4.81 + -2.41 -0.53 6.17 + -2.21 2.53 6.05 + -1 2.57 5.26 + -3.53 0.89 5.59 + -0.85 -0.6 5.34 + -2.08 0.97 6.45 + -1.19 -0.62 5.18 + -1.34 2.55 5.1 + -1.58 0.7 6.4 + -0.83 2.27 5.05 + -3.36 0.59 5.38 + -1.6 1.28 6.38 + -3.38 1.18 5.36 + -0.71 -0.31 5.12 + -4.81 2.92 6.96 + -5.01 -0.14 7.08 + -2.22 1.32 6.73 + -4.3 1.7 5.92 + -2.35 1.61 6.93 + -5.14 0.15 7.28 + -4.33 1.12 5.95 + -4.97 2.64 7.19 + -2.38 1.03 6.95 + -3.82 1.39 5.88 + -4.65 -0.16 7.24 + -4.45 2.9 7.12 + -3.24 2.93 6.33 + -5.77 1.25 6.66 + -3.09 -0.23 6.41 + -4.32 1.34 7.51 + -3.43 -0.26 6.25 + -3.58 2.91 6.16 + -3.82 1.06 7.47 + -3.07 2.64 6.12 + -5.6 0.96 6.45 + -3.84 1.65 7.45 + -5.62 1.54 6.43 + -2.95 0.06 6.18 + -5.97 4.83 6.19 + -6.17 1.77 6.31 + -3.37 3.23 5.96 + -5.46 3.6 5.16 + -3.5 3.51 6.17 + -6.3 2.05 6.52 + -5.49 3.02 5.18 + -6.13 4.54 6.42 + -3.53 2.94 6.19 + -4.97 3.29 5.12 + -5.81 1.74 6.47 + -5.61 4.81 6.36 + -4.4 4.84 5.56 + -6.93 3.16 5.89 + -4.25 1.67 5.64 + -5.48 3.24 6.75 + -4.59 1.65 5.48 + -4.74 4.82 5.4 + -4.98 2.97 6.7 + -4.23 4.54 5.35 + -6.76 2.86 5.68 + -5 3.55 6.68 + -6.78 3.45 5.67 + -4.11 1.96 5.42 + -6.83 1.29 6.4 + -7.03 -1.78 6.52 + -4.24 -0.32 6.17 + -6.32 0.06 5.37 + -4.37 -0.03 6.37 + -7.16 -1.49 6.72 + -6.35 -0.52 5.39 + -6.99 1 6.63 + -4.4 -0.6 6.39 + -5.84 -0.25 5.32 + -6.67 -1.8 6.68 + -6.47 1.26 6.56 + -5.26 1.3 5.77 + -7.79 -0.38 6.1 + -5.12 -1.87 5.85 + -6.34 -0.3 6.95 + -5.45 -1.89 5.69 + -5.6 1.27 5.6 + -5.84 -0.57 6.91 + -5.09 1 5.56 + -7.62 -0.68 5.89 + -5.86 0.01 6.89 + -7.64 -0.09 5.87 + -4.97 -1.58 5.62 + -5.19 6.68 5.71 + -5.39 3.62 5.83 + -2.6 5.08 5.48 + -4.68 5.46 4.68 + -2.72 5.37 5.68 + -5.52 3.91 6.03 + -4.71 4.88 4.7 + -5.35 6.39 5.94 + -2.75 4.79 5.7 + -4.19 5.15 4.63 + -5.03 3.6 5.99 + -4.83 6.66 5.87 + -3.62 6.69 5.08 + -6.15 5.01 5.41 + -3.47 3.52 5.16 + -4.7 5.1 6.26 + -3.81 3.5 5 + -3.96 6.67 4.91 + -4.2 4.82 6.22 + -3.45 6.4 4.87 + -5.98 4.72 5.2 + -4.22 5.41 6.2 + -6 5.3 5.18 + -3.33 3.81 4.93 + -4.06 0.14 5.79 + -4.26 -2.92 5.91 + -1.47 -1.46 5.56 + -3.55 -1.09 4.76 + -1.59 -1.17 5.76 + -4.39 -2.63 6.12 + -3.58 -1.66 4.78 + -4.22 -0.15 6.02 + -1.62 -1.75 5.78 + -3.06 -1.4 4.71 + -3.9 -2.94 6.07 + -3.7 0.12 5.95 + -2.49 0.15 5.16 + -5.02 -1.53 5.49 + -2.34 -3.02 5.24 + -3.57 -1.45 6.34 + -2.68 -3.04 5.08 + -2.83 0.13 5 + -3.07 -1.72 6.3 + -2.32 -0.14 4.95 + -4.85 -1.83 5.28 + -3.09 -1.13 6.28 + -4.87 -1.24 5.26 + -2.2 -2.73 5.02 + -6.68 0.6 7.49 + -5.38 2.77 7.97 + -8.19 2.59 6.86 + -3.89 0.7 7.93 + -2.63 2.87 7.18 + -0.07 2.93 5.96 + -1.44 4.96 6.66 + -6.86 4.73 7.26 + -1.34 0.81 6.23 + -4.22 4.82 6.3 + -2.53 -1.29 7.15 + -5.31 -1.42 6.8 + -5.2 3.37 7.5 + -2.16 3.15 7.17 + -3.62 5.97 7.24 + -4.13 3.95 6.34 + -3.88 5.82 7.47 + -2.42 3.01 7.4 + -3.55 3.92 6.28 + -4.89 3.19 7.67 + -3.3 5.79 7.41 + -3.82 4.44 6.29 + -2.11 3.5 7.35 + -5.15 3.71 7.68 + -5.28 4.98 6.99 + -3.6 2.43 6.89 + -2.13 5.12 6.64 + -3.55 3.81 7.86 + -2.14 4.79 6.45 + -5.29 4.66 6.8 + -3.28 4.31 7.81 + -5.02 5.17 6.76 + -3.34 2.61 6.65 + -3.86 4.29 7.88 + -3.92 2.59 6.72 + -2.45 5.28 6.47 + -5.44 1.05 8.43 + -2.4 0.84 8.1 + -3.86 3.65 8.17 + -4.37 1.63 7.27 + -4.12 3.51 8.41 + -2.66 0.69 8.33 + -3.79 1.6 7.21 + -5.13 0.87 8.6 + -3.54 3.48 8.34 + -4.06 2.12 7.22 + -2.35 1.18 8.28 + -5.4 1.4 8.61 + -5.52 2.67 7.92 + -3.84 0.11 7.82 + -2.37 2.8 7.58 + -3.79 1.49 8.79 + -2.38 2.47 7.39 + -5.53 2.34 7.73 + -3.52 2 8.74 + -5.26 2.85 7.69 + -3.58 0.3 7.59 + -4.1 1.98 8.81 + -4.16 0.28 7.65 + -2.69 2.96 7.4 + -7.45 -0.04 7.85 + -4.4 -0.26 7.52 + -5.86 2.56 7.59 + -6.37 0.54 6.7 + -6.12 2.41 7.83 + -4.66 -0.4 7.76 + -5.8 0.51 6.63 + -7.13 -0.22 8.02 + -5.55 2.38 7.77 + -6.07 1.03 6.65 + -4.35 0.09 7.71 + -7.4 0.3 8.03 + -7.53 1.57 7.35 + -5.85 -0.98 7.24 + -4.38 1.71 7 + -5.8 0.4 8.21 + -4.38 1.38 6.81 + -7.53 1.25 7.16 + -5.53 0.9 8.17 + -7.26 1.76 7.11 + -5.58 -0.79 7.01 + -6.11 0.88 8.23 + -6.17 -0.82 7.07 + -4.7 1.87 6.83 + -3.92 -0.92 7.49 + -0.88 -1.14 7.16 + -2.34 1.68 7.24 + -2.85 -0.34 6.34 + -2.6 1.54 7.47 + -1.14 -1.28 7.4 + -2.27 -0.37 6.28 + -3.61 -1.1 7.66 + -2.03 1.5 7.41 + -2.54 0.15 6.29 + -0.83 -0.79 7.35 + -3.88 -0.58 7.67 + -4 0.69 6.99 + -2.32 -1.86 6.88 + -0.85 0.83 6.64 + -2.27 -0.48 7.85 + -0.86 0.5 6.45 + -4.01 0.37 6.8 + -2 0.03 7.81 + -3.74 0.88 6.75 + -2.06 -1.67 6.65 + -2.58 0 7.87 + -2.64 -1.69 6.71 + -1.17 0.99 6.47 + -9.1 1.43 7.31 + -6.06 1.22 6.98 + -7.52 4.03 7.05 + -8.03 2.02 6.15 + -7.78 3.89 7.28 + -6.32 1.07 7.21 + -7.46 1.98 6.09 + -8.79 1.26 7.48 + -7.21 3.86 7.22 + -7.72 2.51 6.1 + -6.01 1.57 7.16 + -9.06 1.78 7.49 + -9.19 3.05 6.8 + -7.5 0.5 6.7 + -6.03 3.18 6.45 + -7.45 1.87 7.67 + -6.04 2.86 6.26 + -9.19 2.72 6.61 + -7.18 2.38 7.62 + -8.92 3.23 6.57 + -7.24 0.68 6.46 + -7.77 2.36 7.69 + -7.82 0.66 6.53 + -6.35 3.35 6.28 + -2.6 1.24 6.6 + 0.44 1.03 6.27 + -1.02 3.84 6.34 + -1.53 1.82 5.45 + -1.28 3.7 6.58 + 0.18 0.88 6.51 + -0.96 1.79 5.38 + -2.29 1.06 6.77 + -0.71 3.67 6.52 + -1.22 2.31 5.4 + 0.49 1.37 6.46 + -2.56 1.59 6.78 + -2.69 2.86 6.1 + -1 0.31 5.99 + 0.47 2.99 5.75 + -0.95 1.68 6.96 + 0.46 2.66 5.56 + -2.69 2.53 5.91 + -0.68 2.19 6.92 + -2.42 3.04 5.86 + -0.74 0.49 5.76 + -1.27 2.17 6.98 + -1.32 0.47 5.82 + 0.15 3.15 5.58 + -7.15 -0.13 6.79 + -7.34 2.57 6.06 + -2.57 2.56 5.89 + -2.77 -0.5 6.01 + 0.02 0.96 5.66 + -2.06 1.33 4.86 + -0.1 1.24 5.86 + -2.9 -0.22 6.22 + faces 488 + 0 1 2 1 0 1 2 1 + 3 1 0 1 2 1 0 1 + 4 1 3 1 0 1 2 1 + 5 6 4 1 2 1 0 1 + 1 7 2 1 0 1 2 1 + 8 4 3 1 0 1 2 1 + 4 9 1 1 0 1 2 1 + 1 9 7 1 0 1 2 1 + 8 5 4 1 2 1 0 1 + 10 11 12 1 0 2 3 1 + 13 14 15 1 2 0 1 1 + 16 17 18 1 1 2 0 1 + 19 20 21 1 0 3 2 1 + 22 23 24 1 0 3 2 1 + 25 26 27 1 2 1 0 1 + 28 29 30 1 2 0 1 1 + 31 32 33 1 0 2 3 1 + 34 35 36 1 0 2 3 1 + 37 38 39 1 2 0 1 1 + 40 41 42 1 1 2 0 1 + 43 44 45 1 0 3 2 1 + 46 47 48 1 0 3 2 1 + 49 50 51 1 2 1 0 1 + 52 53 54 1 2 0 1 1 + 55 56 57 1 0 2 3 1 + 58 59 60 1 0 2 3 1 + 61 62 63 1 2 0 1 1 + 64 65 66 1 1 2 0 1 + 67 68 69 1 0 3 2 1 + 70 71 72 1 0 3 2 1 + 73 74 75 1 2 1 0 1 + 76 77 78 1 2 0 1 1 + 79 80 81 1 0 2 3 1 + 82 83 84 1 0 2 3 1 + 85 86 87 1 2 0 1 1 + 88 89 90 1 1 2 0 1 + 91 92 93 1 0 3 2 1 + 94 95 96 1 0 3 2 1 + 97 98 99 1 2 1 0 1 + 100 101 102 1 2 0 1 1 + 103 104 105 1 0 2 3 1 + 106 107 108 1 0 2 3 1 + 109 110 111 1 2 0 1 1 + 112 113 114 1 1 2 0 1 + 115 116 117 1 0 3 2 1 + 118 119 120 1 0 3 2 1 + 121 122 123 1 2 1 0 1 + 124 125 126 1 2 0 1 1 + 127 128 129 1 0 2 3 1 + 130 131 132 1 0 2 3 1 + 133 134 135 1 2 0 1 1 + 136 137 138 1 1 2 0 1 + 139 140 141 1 0 3 2 1 + 142 143 144 1 0 3 2 1 + 145 146 147 1 2 1 0 1 + 148 149 150 1 0 1 2 1 + 151 149 148 1 2 1 0 1 + 152 149 151 1 0 1 2 1 + 153 154 152 1 2 1 0 1 + 149 155 150 1 0 1 2 1 + 156 152 151 1 0 1 2 1 + 152 157 149 1 0 1 2 1 + 149 157 155 1 0 1 2 1 + 156 153 152 1 2 1 0 1 + 158 151 159 1 0 1 2 1 + 159 151 148 1 2 1 0 1 + 158 156 151 1 0 1 2 1 + 152 154 157 1 2 1 0 1 + 160 161 162 1 2 0 1 1 + 163 164 165 1 0 2 3 1 + 166 167 168 1 0 2 3 1 + 169 170 171 1 2 0 1 1 + 172 173 174 1 1 2 0 1 + 175 176 177 1 0 3 2 1 + 178 179 180 1 0 3 2 1 + 181 182 183 1 2 1 0 1 + 184 185 186 1 2 0 1 1 + 187 188 189 1 0 2 3 1 + 190 191 192 1 0 2 3 1 + 193 194 195 1 2 0 1 1 + 196 197 198 1 1 2 0 1 + 199 200 201 1 0 3 2 1 + 202 203 204 1 0 3 2 1 + 205 206 207 1 2 1 0 1 + 208 209 210 1 2 0 1 1 + 211 212 213 1 0 2 3 1 + 214 215 216 1 0 2 3 1 + 217 218 219 1 2 0 1 1 + 220 221 222 1 1 2 0 1 + 223 224 225 1 0 3 2 1 + 226 227 228 1 0 3 2 1 + 229 230 231 1 2 1 0 1 + 232 233 234 1 2 0 1 1 + 235 236 237 1 0 2 3 1 + 238 239 240 1 0 2 3 1 + 241 242 243 1 2 0 1 1 + 244 245 246 1 1 2 0 1 + 247 248 249 1 0 3 2 1 + 250 251 252 1 0 3 2 1 + 253 254 255 1 2 1 0 1 + 256 257 258 1 2 0 1 1 + 259 260 261 1 0 2 3 1 + 262 263 264 1 0 2 3 1 + 265 266 267 1 2 0 1 1 + 268 269 270 1 1 2 0 1 + 271 272 273 1 0 3 2 1 + 274 275 276 1 0 3 2 1 + 277 278 279 1 2 1 0 1 + 280 281 282 1 2 0 1 1 + 283 284 285 1 0 2 3 1 + 286 287 288 1 0 2 3 1 + 289 290 291 1 2 0 1 1 + 292 293 294 1 1 2 0 1 + 295 296 297 1 0 3 2 1 + 298 299 300 1 0 3 2 1 + 301 302 303 1 2 1 0 1 + 304 3 305 1 0 1 2 1 + 305 3 0 1 2 1 0 1 + 304 8 3 1 0 1 2 1 + 4 6 9 1 2 1 0 1 + 306 307 308 1 2 0 1 1 + 309 310 311 1 0 2 3 1 + 312 313 314 1 0 1 2 1 + 315 313 312 1 2 1 0 1 + 316 313 315 1 0 1 2 1 + 317 318 316 1 2 1 0 1 + 313 319 314 1 0 1 2 1 + 320 316 315 1 0 1 2 1 + 316 321 313 1 0 1 2 1 + 313 321 319 1 0 1 2 1 + 320 317 316 1 2 1 0 1 + 322 323 324 1 0 2 3 1 + 325 326 327 1 2 0 1 1 + 328 329 330 1 1 2 0 1 + 331 332 333 1 0 3 2 1 + 334 335 336 1 0 3 2 1 + 337 338 339 1 2 1 0 1 + 340 341 342 1 2 0 1 1 + 343 344 345 1 0 2 3 1 + 346 347 348 1 0 2 3 1 + 349 350 351 1 2 0 1 1 + 352 353 354 1 1 2 0 1 + 355 356 357 1 0 3 2 1 + 358 359 360 1 0 3 2 1 + 361 362 363 1 2 1 0 1 + 364 365 366 1 2 0 1 1 + 367 368 369 1 0 2 3 1 + 370 371 372 1 0 2 3 1 + 373 374 375 1 2 0 1 1 + 376 377 378 1 1 2 0 1 + 379 380 381 1 0 3 2 1 + 382 383 384 1 0 3 2 1 + 385 386 387 1 2 1 0 1 + 388 389 390 1 2 0 1 1 + 391 392 393 1 0 2 3 1 + 394 395 396 1 0 2 3 1 + 397 398 399 1 2 0 1 1 + 400 401 402 1 1 2 0 1 + 403 404 405 1 0 3 2 1 + 406 407 408 1 0 3 2 1 + 409 410 411 1 2 1 0 1 + 412 413 414 1 2 0 1 1 + 415 416 417 1 0 2 3 1 + 418 419 420 1 0 2 3 1 + 421 422 423 1 2 0 1 1 + 424 425 426 1 1 2 0 1 + 427 428 429 1 0 3 2 1 + 430 431 432 1 0 3 2 1 + 433 434 435 1 2 1 0 1 + 436 437 438 1 2 0 1 1 + 439 440 441 1 0 2 3 1 + 442 443 444 1 0 2 3 1 + 445 446 447 1 2 0 1 1 + 448 449 450 1 1 2 0 1 + 451 452 453 1 0 3 2 1 + 454 455 456 1 0 3 2 1 + 457 458 459 1 2 1 0 1 + 460 461 462 1 0 1 2 1 + 463 461 460 1 2 1 0 1 + 464 461 463 1 0 1 2 1 + 465 466 464 1 2 1 0 1 + 461 467 462 1 0 1 2 1 + 468 464 463 1 0 1 2 1 + 464 469 461 1 0 1 2 1 + 461 469 467 1 0 1 2 1 + 468 465 464 1 2 1 0 1 + 470 463 471 1 0 1 2 1 + 471 463 460 1 2 1 0 1 + 470 468 463 1 0 1 2 1 + 464 466 469 1 2 1 0 1 + 472 473 474 1 2 0 1 1 + 475 476 477 1 0 2 3 1 + 478 479 480 1 0 2 3 1 + 481 482 483 1 2 0 1 1 + 484 485 486 1 1 2 0 1 + 487 488 489 1 0 3 2 1 + 490 491 492 1 0 3 2 1 + 493 494 495 1 2 1 0 1 + 496 497 498 1 2 0 1 1 + 499 500 501 1 0 2 3 1 + 502 503 504 1 0 2 3 1 + 505 506 507 1 2 0 1 1 + 508 509 510 1 1 2 0 1 + 511 512 513 1 0 3 2 1 + 514 515 516 1 0 3 2 1 + 517 518 519 1 2 1 0 1 + 520 521 522 1 2 0 1 1 + 523 524 525 1 0 2 3 1 + 526 527 528 1 0 2 3 1 + 529 530 531 1 2 0 1 1 + 532 533 534 1 1 2 0 1 + 535 536 537 1 0 3 2 1 + 538 539 540 1 0 3 2 1 + 541 542 543 1 2 1 0 1 + 544 545 546 1 2 0 1 1 + 547 548 549 1 0 2 3 1 + 550 551 552 1 0 2 3 1 + 553 554 555 1 2 0 1 1 + 556 557 558 1 1 2 0 1 + 559 560 561 1 0 3 2 1 + 562 563 564 1 0 3 2 1 + 565 566 567 1 2 1 0 1 + 568 569 570 1 2 0 1 1 + 571 572 573 1 0 2 3 1 + 574 575 576 1 0 2 3 1 + 577 578 579 1 2 0 1 1 + 580 581 582 1 1 2 0 1 + 583 584 585 1 0 3 2 1 + 586 587 588 1 0 3 2 1 + 589 590 591 1 2 1 0 1 + 592 593 594 1 2 0 1 1 + 595 596 597 1 0 2 3 1 + 598 599 600 1 0 2 3 1 + 601 602 603 1 2 0 1 1 + 604 605 606 1 1 2 0 1 + 607 608 609 1 0 3 2 1 + 610 611 612 1 0 3 2 1 + 613 614 615 1 2 1 0 1 + 616 315 617 1 0 1 2 1 + 617 315 312 1 2 1 0 1 + 616 320 315 1 0 1 2 1 + 316 318 321 1 2 1 0 1 + 618 619 620 1 2 0 1 1 + 621 622 623 1 0 2 3 1 + 624 625 626 1 0 1 2 1 + 627 625 624 1 2 1 0 1 + 628 625 627 1 0 1 2 1 + 629 630 628 1 2 1 0 1 + 625 631 626 1 0 1 2 1 + 632 628 627 1 0 1 2 1 + 628 633 625 1 0 1 2 1 + 625 633 631 1 0 1 2 1 + 632 629 628 1 2 1 0 1 + 634 635 636 1 0 2 3 1 + 637 638 639 1 2 0 1 1 + 640 641 642 1 1 2 0 1 + 643 644 645 1 0 3 2 1 + 646 647 648 1 0 3 2 1 + 649 650 651 1 2 1 0 1 + 652 653 654 1 2 0 1 1 + 655 656 657 1 0 2 3 1 + 658 659 660 1 0 2 3 1 + 661 662 663 1 2 0 1 1 + 664 665 666 1 1 2 0 1 + 667 668 669 1 0 3 2 1 + 670 671 672 1 0 3 2 1 + 673 674 675 1 2 1 0 1 + 676 677 678 1 2 0 1 1 + 679 680 681 1 0 2 3 1 + 682 683 684 1 0 2 3 1 + 685 686 687 1 2 0 1 1 + 688 689 690 1 1 2 0 1 + 691 692 693 1 0 3 2 1 + 694 695 696 1 0 3 2 1 + 697 698 699 1 2 1 0 1 + 700 701 702 1 2 0 1 1 + 703 704 705 1 0 2 3 1 + 706 707 708 1 0 2 3 1 + 709 710 711 1 2 0 1 1 + 712 713 714 1 1 2 0 1 + 715 716 717 1 0 3 2 1 + 718 719 720 1 0 3 2 1 + 721 722 723 1 2 1 0 1 + 724 725 726 1 2 0 1 1 + 727 728 729 1 0 2 3 1 + 730 731 732 1 0 2 3 1 + 733 734 735 1 2 0 1 1 + 736 737 738 1 1 2 0 1 + 739 740 741 1 0 3 2 1 + 742 743 744 1 0 3 2 1 + 745 746 747 1 2 1 0 1 + 748 749 750 1 2 0 1 1 + 751 752 753 1 0 2 3 1 + 754 755 756 1 0 2 3 1 + 757 758 759 1 2 0 1 1 + 760 761 762 1 1 2 0 1 + 763 764 765 1 0 3 2 1 + 766 767 768 1 0 3 2 1 + 769 770 771 1 2 1 0 1 + 772 773 774 1 0 1 2 1 + 775 773 772 1 2 1 0 1 + 776 773 775 1 0 1 2 1 + 777 778 776 1 2 1 0 1 + 773 779 774 1 0 1 2 1 + 780 776 775 1 0 1 2 1 + 776 781 773 1 0 1 2 1 + 773 781 779 1 0 1 2 1 + 780 777 776 1 2 1 0 1 + 782 775 783 1 0 1 2 1 + 783 775 772 1 2 1 0 1 + 782 780 775 1 0 1 2 1 + 776 778 781 1 2 1 0 1 + 784 785 786 1 2 0 1 1 + 787 788 789 1 0 2 3 1 + 790 791 792 1 0 2 3 1 + 793 794 795 1 2 0 1 1 + 796 797 798 1 1 2 0 1 + 799 800 801 1 0 3 2 1 + 802 803 804 1 0 3 2 1 + 805 806 807 1 2 1 0 1 + 808 809 810 1 2 0 1 1 + 811 812 813 1 0 2 3 1 + 814 815 816 1 0 2 3 1 + 817 818 819 1 2 0 1 1 + 820 821 822 1 1 2 0 1 + 823 824 825 1 0 3 2 1 + 826 827 828 1 0 3 2 1 + 829 830 831 1 2 1 0 1 + 832 833 834 1 2 0 1 1 + 835 836 837 1 0 2 3 1 + 838 839 840 1 0 2 3 1 + 841 842 843 1 2 0 1 1 + 844 845 846 1 1 2 0 1 + 847 848 849 1 0 3 2 1 + 850 851 852 1 0 3 2 1 + 853 854 855 1 2 1 0 1 + 856 857 858 1 2 0 1 1 + 859 860 861 1 0 2 3 1 + 862 863 864 1 0 2 3 1 + 865 866 867 1 2 0 1 1 + 868 869 870 1 1 2 0 1 + 871 872 873 1 0 3 2 1 + 874 875 876 1 0 3 2 1 + 877 878 879 1 2 1 0 1 + 880 881 882 1 2 0 1 1 + 883 884 885 1 0 2 3 1 + 886 887 888 1 0 2 3 1 + 889 890 891 1 2 0 1 1 + 892 893 894 1 1 2 0 1 + 895 896 897 1 0 3 2 1 + 898 899 900 1 0 3 2 1 + 901 902 903 1 2 1 0 1 + 904 905 906 1 2 0 1 1 + 907 908 909 1 0 2 3 1 + 910 911 912 1 0 2 3 1 + 913 914 915 1 2 0 1 1 + 916 917 918 1 1 2 0 1 + 919 920 921 1 0 3 2 1 + 922 923 924 1 0 3 2 1 + 925 926 927 1 2 1 0 1 + 928 627 929 1 0 1 2 1 + 929 627 624 1 2 1 0 1 + 928 632 627 1 0 1 2 1 + 628 630 633 1 2 1 0 1 + 930 931 932 1 2 0 1 1 + 933 934 935 1 0 2 3 1 + 936 937 938 1 0 1 2 1 + 939 937 936 1 2 1 0 1 + 940 937 939 1 0 1 2 1 + 941 942 940 1 2 1 0 1 + 937 943 938 1 0 1 2 1 + 944 940 939 1 0 1 2 1 + 940 945 937 1 0 1 2 1 + 937 945 943 1 0 1 2 1 + 944 941 940 1 2 1 0 1 + 946 947 948 1 0 2 3 1 + 949 950 951 1 2 0 1 1 + 952 953 954 1 1 2 0 1 + 955 956 957 1 0 3 2 1 + 958 959 960 1 0 3 2 1 + 961 962 963 1 2 1 0 1 + 964 965 966 1 2 0 1 1 + 967 968 969 1 0 2 3 1 + 970 971 972 1 0 2 3 1 + 973 974 975 1 2 0 1 1 + 976 977 978 1 1 2 0 1 + 979 980 981 1 0 3 2 1 + 982 983 984 1 0 3 2 1 + 985 986 987 1 2 1 0 1 + 988 989 990 1 2 0 1 1 + 991 992 993 1 0 2 3 1 + 994 995 996 1 0 2 3 1 + 997 998 999 1 2 0 1 1 + 1000 1001 1002 1 1 2 0 1 + 1003 1004 1005 1 0 3 2 1 + 1006 1007 1008 1 0 3 2 1 + 1009 1010 1011 1 2 1 0 1 + 1012 1013 1014 1 2 0 1 1 + 1015 1016 1017 1 0 2 3 1 + 1018 1019 1020 1 0 2 3 1 + 1021 1022 1023 1 2 0 1 1 + 1024 1025 1026 1 1 2 0 1 + 1027 1028 1029 1 0 3 2 1 + 1030 1031 1032 1 0 3 2 1 + 1033 1034 1035 1 2 1 0 1 + 1036 1037 1038 1 2 0 1 1 + 1039 1040 1041 1 0 2 3 1 + 1042 1043 1044 1 0 2 3 1 + 1045 1046 1047 1 2 0 1 1 + 1048 1049 1050 1 1 2 0 1 + 1051 1052 1053 1 0 3 2 1 + 1054 1055 1056 1 0 3 2 1 + 1057 1058 1059 1 2 1 0 1 + 1060 1061 1062 1 2 0 1 1 + 1063 1064 1065 1 0 2 3 1 + 1066 1067 1068 1 0 2 3 1 + 1069 1070 1071 1 2 0 1 1 + 1072 1073 1074 1 1 2 0 1 + 1075 1076 1077 1 0 3 2 1 + 1078 1079 1080 1 0 3 2 1 + 1081 1082 1083 1 2 1 0 1 + 1084 1085 1086 1 0 1 2 1 + 1087 1085 1084 1 2 1 0 1 + 1088 1085 1087 1 0 1 2 1 + 1089 1090 1088 1 2 1 0 1 + 1085 1091 1086 1 0 1 2 1 + 1092 1088 1087 1 0 1 2 1 + 1088 1093 1085 1 0 1 2 1 + 1085 1093 1091 1 0 1 2 1 + 1092 1089 1088 1 2 1 0 1 + 1094 1087 1095 1 0 1 2 1 + 1095 1087 1084 1 2 1 0 1 + 1094 1092 1087 1 0 1 2 1 + 1088 1090 1093 1 2 1 0 1 + 1096 1097 1098 1 2 0 1 1 + 1099 1100 1101 1 0 2 3 1 + 1102 1103 1104 1 0 2 3 1 + 1105 1106 1107 1 2 0 1 1 + 1108 1109 1110 1 1 2 0 1 + 1111 1112 1113 1 0 3 2 1 + 1114 1115 1116 1 0 3 2 1 + 1117 1118 1119 1 2 1 0 1 + 1120 1121 1122 1 2 0 1 1 + 1123 1124 1125 1 0 2 3 1 + 1126 1127 1128 1 0 2 3 1 + 1129 1130 1131 1 2 0 1 1 + 1132 1133 1134 1 1 2 0 1 + 1135 1136 1137 1 0 3 2 1 + 1138 1139 1140 1 0 3 2 1 + 1141 1142 1143 1 2 1 0 1 + 1144 1145 1146 1 2 0 1 1 + 1147 1148 1149 1 0 2 3 1 + 1150 1151 1152 1 0 2 3 1 + 1153 1154 1155 1 2 0 1 1 + 1156 1157 1158 1 1 2 0 1 + 1159 1160 1161 1 0 3 2 1 + 1162 1163 1164 1 0 3 2 1 + 1165 1166 1167 1 2 1 0 1 + 1168 1169 1170 1 2 0 1 1 + 1171 1172 1173 1 0 2 3 1 + 1174 1175 1176 1 0 2 3 1 + 1177 1178 1179 1 2 0 1 1 + 1180 1181 1182 1 1 2 0 1 + 1183 1184 1185 1 0 3 2 1 + 1186 1187 1188 1 0 3 2 1 + 1189 1190 1191 1 2 1 0 1 + 1192 1193 1194 1 2 0 1 1 + 1195 1196 1197 1 0 2 3 1 + 1198 1199 1200 1 0 2 3 1 + 1201 1202 1203 1 2 0 1 1 + 1204 1205 1206 1 1 2 0 1 + 1207 1208 1209 1 0 3 2 1 + 1210 1211 1212 1 0 3 2 1 + 1213 1214 1215 1 2 1 0 1 + 1216 1217 1218 1 2 0 1 1 + 1219 1220 1221 1 0 2 3 1 + 1222 1223 1224 1 0 2 3 1 + 1225 1226 1227 1 2 0 1 1 + 1228 1229 1230 1 1 2 0 1 + 1231 1232 1233 1 0 3 2 1 + 1234 1235 1236 1 0 3 2 1 + 1237 1238 1239 1 2 1 0 1 + 1240 939 1241 1 0 1 2 1 + 1241 939 936 1 2 1 0 1 + 1240 944 939 1 0 1 2 1 + 940 942 945 1 2 1 0 1 + 1242 1243 1244 1 2 0 1 1 + 1245 1246 1247 1 0 2 3 1 + tverts 4 + 0.0078125 0.0078125 0 + 0.505859 0.992188 0 + 0.998047 0.0078125 0 + 0.505859 0.994141 0 +endnode +node trimesh terrain + parent wsf10_p01_01 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.419608 0.419608 0.419608 + tilefade 0 + scale 1 + render 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + center 0 0 -19 + bitmap wtf_1_streama2 + shadow 0 + verts 121 + -5 -5 0 + -4 -5 0 + -3 -5 0 + -2 -5 -0.3 + -1 -5 -0.64 + 0 -5 -0.64 + 1 -5 -0.64 + 2 -5 -0.3 + 3 -5 0 + 4 -5 0 + 5 -5 0 + -5 -4 0 + -4 -4 0 + -3 -4 0 + -2 -4 -0.45 + -1 -4 -0.64 + 0 -4 -0.64 + 1 -4 -0.76 + 2 -4 -0.3 + 3 -4 0 + 4 -4 0 + 5 -4 0 + -5 -3 0 + -4 -3 0 + -3 -3 0 + -2 -3 -0.64 + -1 -3 -0.64 + 0 -3 -0.64 + 1 -3 -0.64 + 2.31 -2.72 -0.64 + 3.31 -2.68 0 + 4 -3 0 + 5 -3 0 + -5 -2 0 + -4 -2 0.07 + -3 -2 0.21 + -1.8 -2 -0.64 + -1 -2 -0.64 + 0 -2 -0.64 + 1 -2 -0.64 + 2 -2 -0.64 + 2.73 -2 -0.19 + 4 -2 0.03 + 5 -2 0 + -5 -1 0 + -4 -1 0.17 + -2.7 -1 0.1 + -1.9 -1 -0.64 + -1 -1 -0.64 + 0 -1 -0.64 + 1 -1 -0.64 + 1.73 -1 -0.64 + 2.63 -1 -0.12 + 4.21 -1 0.03 + 5 -1 0 + -5 0 0 + -4 0 0.16 + -2.76 0 0.07 + -2.35 0 -0.64 + -1 0 -0.64 + 0 0 -0.64 + 1 0 -0.64 + 1.78 -0.11 -0.46 + 3 0 0.01 + 4 0 -0.05 + 5 0 0 + -5 1 0 + -4 1 0.38 + -3.01 0.72 0.19 + -2.56 1 -0.64 + -1 1 -0.64 + 0 1 -0.64 + 1 1 -0.64 + 2.35 1 -0.42 + 3 1 -0.24 + 4 1 0.12 + 5 1 0 + -5 2 0 + -4 2 0 + -3.09 2 -0.19 + -2.19 2 -0.56 + -1 2 -0.64 + 0 2 -0.64 + 1 2 -0.64 + 2 2 -0.52 + 2.58 2 -0.31 + 4 2 0.12 + 5 2 0 + -5 3 0 + -4 3 0 + -2.62 3 -0.23 + -1.57 3 -0.64 + -1 3 -0.64 + 0 3 -0.64 + 1 3 -0.64 + 2 3.26 -0.37 + 3 3 -0.15 + 4 3 0.03 + 5 3 0 + -5 4 0 + -4 4 0 + -2.92 4 0 + -1.91 4 -0.42 + -1 4 -0.53 + 0 4 -0.59 + 1 4 -0.67 + 1.78 4 -0.37 + 2.81 4 -0.08 + 4 4 0.13 + 5 4 0 + -5 5 0 + -4 5 0 + -3 5 0 + -2 5 -0.3 + -1 5 -0.64 + 0 5 -0.64 + 1 5 -0.64 + 2 5 -0.3 + 3 5 0 + 4 5 0 + 5 5 0 + faces 200 + 11 0 12 1 11 0 12 65536 + 1 12 0 1 1 12 0 65536 + 12 1 13 1 12 1 13 65536 + 2 13 1 1 2 13 1 65536 + 13 2 14 1 13 2 14 65536 + 3 14 2 1 3 14 2 65536 + 14 3 15 1 14 3 15 65536 + 4 15 3 1 4 15 3 65536 + 15 4 16 1 15 4 16 65536 + 5 16 4 1 5 16 4 65536 + 16 5 17 1 16 5 17 65536 + 6 17 5 1 6 17 5 65536 + 17 6 18 1 17 6 18 65536 + 7 18 6 1 7 18 6 65536 + 18 7 19 1 18 7 19 65536 + 8 19 7 1 8 19 7 65536 + 19 8 20 1 19 8 20 65536 + 9 20 8 1 9 20 8 65536 + 20 9 21 1 20 9 21 65536 + 10 21 9 1 10 21 9 65536 + 22 11 23 1 22 11 23 65536 + 12 23 11 1 12 23 11 65536 + 23 12 24 1 23 12 24 65536 + 13 24 12 1 13 24 12 65536 + 24 13 25 1 24 13 25 65536 + 14 25 13 1 14 25 13 65536 + 25 14 26 1 25 14 26 65536 + 15 26 14 1 15 26 14 65536 + 26 15 27 1 26 15 27 65536 + 16 27 15 1 16 27 15 65536 + 27 16 28 1 27 16 28 65536 + 17 28 16 1 17 28 16 65536 + 28 17 29 1 28 17 29 65536 + 18 29 17 1 18 29 17 65536 + 29 18 30 1 29 18 30 65536 + 19 30 18 1 19 30 18 65536 + 30 19 31 1 30 19 31 65536 + 20 31 19 1 20 31 19 65536 + 31 20 32 1 31 20 32 65536 + 21 32 20 1 21 32 20 65536 + 33 22 34 1 33 22 34 65536 + 23 34 22 1 23 34 22 65536 + 34 23 35 1 34 23 35 65536 + 24 35 23 1 24 35 23 65536 + 35 24 36 1 35 24 36 65536 + 25 36 24 1 25 36 24 65536 + 36 25 37 1 36 25 37 65536 + 26 37 25 1 26 37 25 65536 + 37 26 38 1 37 26 38 65536 + 27 38 26 1 27 38 26 65536 + 38 27 39 1 38 27 39 65536 + 28 39 27 1 28 39 27 65536 + 39 28 40 1 39 28 40 65536 + 29 40 28 1 29 40 28 65536 + 40 29 41 1 40 29 41 65536 + 30 41 29 1 30 41 29 65536 + 41 30 42 1 41 30 42 65536 + 31 42 30 1 31 42 30 65536 + 42 31 43 1 42 31 43 65536 + 32 43 31 1 32 43 31 65536 + 44 33 45 1 44 33 45 65536 + 34 45 33 1 34 45 33 65536 + 45 34 46 1 45 34 46 65536 + 35 46 34 1 35 46 34 65536 + 46 35 47 1 46 35 47 65536 + 36 47 35 1 36 47 35 65536 + 47 36 48 1 47 36 48 65536 + 37 48 36 1 37 48 36 65536 + 48 37 49 1 48 37 49 65536 + 38 49 37 1 38 49 37 65536 + 49 38 50 1 49 38 50 65536 + 39 50 38 1 39 50 38 65536 + 50 39 51 1 50 39 51 65536 + 40 51 39 1 40 51 39 65536 + 51 40 52 1 51 40 52 65536 + 41 52 40 1 41 52 40 65536 + 52 41 53 1 52 41 53 65536 + 42 53 41 1 42 53 41 65536 + 53 42 54 1 53 42 54 65536 + 43 54 42 1 43 54 42 65536 + 55 44 56 1 55 44 56 65536 + 45 56 44 1 45 56 44 65536 + 56 45 57 1 56 45 57 65536 + 46 57 45 1 46 57 45 65536 + 57 46 58 1 57 46 58 65536 + 47 58 46 1 47 58 46 65536 + 58 47 59 1 58 47 59 65536 + 48 59 47 1 48 59 47 65536 + 59 48 60 1 59 48 60 65536 + 49 60 48 1 49 60 48 65536 + 60 49 61 1 60 49 61 65536 + 50 61 49 1 50 61 49 65536 + 61 50 62 1 61 50 62 65536 + 51 62 50 1 51 62 50 65536 + 62 51 63 1 62 51 63 65536 + 52 63 51 1 52 63 51 65536 + 63 52 64 1 63 52 64 65536 + 53 64 52 1 53 64 52 65536 + 64 53 65 1 64 53 65 65536 + 54 65 53 1 54 65 53 65536 + 66 55 67 1 66 55 67 65536 + 56 67 55 1 56 67 55 65536 + 67 56 68 1 67 56 68 65536 + 57 68 56 1 57 68 56 65536 + 68 57 69 1 68 57 69 65536 + 58 69 57 1 58 69 57 65536 + 69 58 70 1 69 58 70 65536 + 59 70 58 1 59 70 58 65536 + 70 59 71 1 70 59 71 65536 + 60 71 59 1 60 71 59 65536 + 71 60 72 1 71 60 72 65536 + 61 72 60 1 61 72 60 65536 + 72 61 73 1 72 61 73 65536 + 62 73 61 1 62 73 61 65536 + 73 62 74 1 73 62 74 65536 + 63 74 62 1 63 74 62 65536 + 74 63 75 1 74 63 75 65536 + 64 75 63 1 64 75 63 65536 + 75 64 76 1 75 64 76 65536 + 65 76 64 1 65 76 64 65536 + 77 66 78 1 77 66 78 65536 + 67 78 66 1 67 78 66 65536 + 78 67 79 1 78 67 79 65536 + 68 79 67 1 68 79 67 65536 + 79 68 80 1 79 68 80 65536 + 69 80 68 1 69 80 68 65536 + 80 69 81 1 80 69 81 65536 + 70 81 69 1 70 81 69 65536 + 81 70 82 1 81 70 82 65536 + 71 82 70 1 71 82 70 65536 + 82 71 83 1 82 71 83 65536 + 72 83 71 1 72 83 71 65536 + 83 72 84 1 83 72 84 65536 + 73 84 72 1 73 84 72 65536 + 84 73 85 1 84 73 85 65536 + 74 85 73 1 74 85 73 65536 + 85 74 86 1 85 74 86 65536 + 75 86 74 1 75 86 74 65536 + 86 75 87 1 86 75 87 65536 + 76 87 75 1 76 87 75 65536 + 88 77 89 1 88 77 89 65536 + 78 89 77 1 78 89 77 65536 + 89 78 90 1 89 78 90 65536 + 79 90 78 1 79 90 78 65536 + 90 79 91 1 90 79 91 65536 + 80 91 79 1 80 91 79 65536 + 91 80 92 1 91 80 92 65536 + 81 92 80 1 81 92 80 65536 + 92 81 93 1 92 81 93 65536 + 82 93 81 1 82 93 81 65536 + 93 82 94 1 93 82 94 65536 + 83 94 82 1 83 94 82 65536 + 94 83 95 1 94 83 95 65536 + 84 95 83 1 84 95 83 65536 + 95 84 96 1 95 84 96 65536 + 85 96 84 1 85 96 84 65536 + 96 85 97 1 96 85 97 65536 + 86 97 85 1 86 97 85 65536 + 97 86 98 1 97 86 98 65536 + 87 98 86 1 87 98 86 65536 + 99 88 100 1 99 88 100 65536 + 89 100 88 1 89 100 88 65536 + 100 89 101 1 100 89 101 65536 + 90 101 89 1 90 101 89 65536 + 101 90 102 1 101 90 102 65536 + 91 102 90 1 91 102 90 65536 + 102 91 103 1 102 91 103 65536 + 92 103 91 1 92 103 91 65536 + 103 92 104 1 103 92 104 65536 + 93 104 92 1 93 104 92 65536 + 104 93 105 1 104 93 105 65536 + 94 105 93 1 94 105 93 65536 + 105 94 106 1 105 94 106 65536 + 95 106 94 1 95 106 94 65536 + 106 95 107 1 106 95 107 65536 + 96 107 95 1 96 107 95 65536 + 107 96 108 1 107 96 108 65536 + 97 108 96 1 97 108 96 65536 + 108 97 109 1 108 97 109 65536 + 98 109 97 1 98 109 97 65536 + 110 99 111 1 110 99 111 65536 + 100 111 99 1 100 111 99 65536 + 111 100 112 1 111 100 112 65536 + 101 112 100 1 101 112 100 65536 + 112 101 113 1 112 101 113 65536 + 102 113 101 1 102 113 101 65536 + 113 102 114 1 113 102 114 65536 + 103 114 102 1 103 114 102 65536 + 114 103 115 1 114 103 115 65536 + 104 115 103 1 104 115 103 65536 + 115 104 116 1 115 104 116 65536 + 105 116 104 1 105 116 104 65536 + 116 105 117 1 116 105 117 65536 + 106 117 105 1 106 117 105 65536 + 117 106 118 1 117 106 118 65536 + 107 118 106 1 107 118 106 65536 + 118 107 119 1 118 107 119 65536 + 108 119 107 1 108 119 107 65536 + 119 108 120 1 119 108 120 65536 + 109 120 108 1 109 120 108 65536 + tverts 121 + 0 0 0 + 0.0996094 0 0 + 0.201172 0 0 + 0.300781 0 0 + 0.400391 0 0 + 0.5 0 0 + 0.599609 0 0 + 0.699219 0 0 + 0.798828 0 0 + 0.900391 0 0 + 1 0 0 + 0 0.0996094 0 + 0.0996094 0.0996094 0 + 0.201172 0.0996094 0 + 0.300781 0.0996094 0 + 0.400391 0.0996094 0 + 0.5 0.0996094 0 + 0.599609 0.0996094 0 + 0.699219 0.0996094 0 + 0.798828 0.0996094 0 + 0.900391 0.0996094 0 + 1 0.0996094 0 + 0 0.201172 0 + 0.0996094 0.201172 0 + 0.201172 0.201172 0 + 0.300781 0.201172 0 + 0.400391 0.201172 0 + 0.5 0.201172 0 + 0.599609 0.201172 0 + 0.730469 0.228516 0 + 0.830078 0.232422 0 + 0.900391 0.201172 0 + 1 0.201172 0 + 0 0.300781 0 + 0.0996094 0.300781 0 + 0.201172 0.300781 0 + 0.320313 0.300781 0 + 0.400391 0.300781 0 + 0.5 0.300781 0 + 0.599609 0.300781 0 + 0.699219 0.300781 0 + 0.773438 0.300781 0 + 0.900391 0.300781 0 + 1 0.300781 0 + 0 0.400391 0 + 0.0996094 0.400391 0 + 0.230469 0.400391 0 + 0.310547 0.400391 0 + 0.400391 0.400391 0 + 0.5 0.400391 0 + 0.599609 0.400391 0 + 0.671875 0.400391 0 + 0.763672 0.400391 0 + 0.919922 0.400391 0 + 1 0.400391 0 + 0 0.5 0 + 0.0996094 0.5 0 + 0.224609 0.5 0 + 0.265625 0.5 0 + 0.400391 0.5 0 + 0.5 0.5 0 + 0.599609 0.5 0 + 0.677734 0.488281 0 + 0.798828 0.5 0 + 0.900391 0.5 0 + 1 0.5 0 + 0 0.599609 0 + 0.0996094 0.599609 0 + 0.199219 0.572266 0 + 0.244141 0.599609 0 + 0.400391 0.599609 0 + 0.5 0.599609 0 + 0.599609 0.599609 0 + 0.734375 0.599609 0 + 0.798828 0.599609 0 + 0.900391 0.599609 0 + 1 0.599609 0 + 0 0.699219 0 + 0.0996094 0.699219 0 + 0.191406 0.699219 0 + 0.28125 0.699219 0 + 0.400391 0.699219 0 + 0.5 0.699219 0 + 0.599609 0.699219 0 + 0.699219 0.699219 0 + 0.757813 0.699219 0 + 0.900391 0.699219 0 + 1 0.699219 0 + 0 0.798828 0 + 0.0996094 0.798828 0 + 0.238281 0.798828 0 + 0.34375 0.798828 0 + 0.400391 0.798828 0 + 0.5 0.798828 0 + 0.599609 0.798828 0 + 0.699219 0.826172 0 + 0.798828 0.798828 0 + 0.900391 0.798828 0 + 1 0.798828 0 + 0 0.900391 0 + 0.0996094 0.900391 0 + 0.208984 0.900391 0 + 0.308594 0.900391 0 + 0.400391 0.900391 0 + 0.5 0.900391 0 + 0.599609 0.900391 0 + 0.677734 0.900391 0 + 0.78125 0.900391 0 + 0.900391 0.900391 0 + 1 0.900391 0 + 0 1 0 + 0.0996094 1 0 + 0.201172 1 0 + 0.300781 1 0 + 0.400391 1 0 + 0.5 1 0 + 0.599609 1 0 + 0.699219 1 0 + 0.798828 1 0 + 0.900391 1 0 + 1 1 0 +endnode +node light wsf10_p01_01ml1 + parent wsf10_p01_01 + position -2.59481 0.812168 5.00325 + wirecolor 0.419608 0.419608 0.419608 + radius 500 + multiplier 1 + color 0 0 0 + ambientonly 0 + nDynamicType 0 + affectdynamic 1 + shadow 0 + lightpriority 5 + fadinglight 1 + orientation 0 0 0 0 +endnode +node light wsf10_p01_01ml2 + parent wsf10_p01_01 + position 3.48059 -2.81609 6.3088 + wirecolor 0.419608 0.419608 0.419608 + radius 500 + multiplier 1 + color 0 0 0 + ambientonly 0 + nDynamicType 0 + affectdynamic 1 + shadow 0 + lightpriority 5 + fadinglight 1 + orientation 0 0 0 0 +endnode +node trimesh loft02 + parent wsf10_p01_01 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.882353 0.882353 0.882353 + tilefade 0 + scale 1 + render 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + center 61.5 232 651.5 + bitmap tno01_bark02 + shadow 0 + verts 435 + -3.92 0.99 -0.8 + -3.45 0.63 -0.84 + -2.85 0.79 -0.92 + -2.61 1.34 -0.96 + -2.17 1.91 -1.03 + -2.39 2.58 -1.03 + -2.9 2.48 -0.96 + -3.54 2.99 -0.91 + -4.19 2.41 -0.82 + -3.8 1.64 -0.84 + -3.12 1.3 0.74 + -2.9 1.24 0.44 + -2.68 1.19 0.15 + -2.57 1.5 0.06 + -2.45 1.81 -0.02 + -2.56 2.08 0.18 + -2.67 2.36 0.38 + -2.9 2.16 0.63 + -3.12 1.96 0.88 + -3.12 1.63 0.81 + -2.94 1.52 1.34 + -2.64 1.32 1.28 + -2.3 1.39 1.2 + -2.13 1.77 1.16 + -2.29 2 1.19 + -2.45 2.24 1.23 + -2.72 2.08 1.29 + -2.99 1.93 1.35 + -2.95 1.6 1.89 + -2.74 1.46 2.04 + -2.49 1.53 2.18 + -2.42 1.94 2.15 + -2.58 2.22 2.01 + -2.78 2.08 1.91 + -2.97 1.93 1.82 + -3.1 1.75 3.07 + -2.92 1.63 3.05 + -2.71 1.68 3.03 + -2.65 1.99 3.01 + -2.79 2.22 3.02 + -2.96 2.12 3.04 + -3.13 2.01 3.06 + -2.46 1.73 4.8 + -2.27 1.72 4.63 + -2.23 1.95 4.62 + -2.31 2.11 4.7 + -2.4 2.03 4.78 + -2.5 1.96 4.86 + -1.78 1.69 6.14 + -1.58 1.67 6.14 + -1.55 1.85 6.13 + -1.7 1.94 6.12 + -1.84 1.86 6.13 + -2.39 1.92 7.48 + -2.25 1.92 7.59 + -2.22 2.07 7.58 + -2.31 2.14 7.49 + -2.41 2.06 7.42 + -2.52 2.28 8.85 + -2.44 2.23 8.8 + -2.35 2.25 8.75 + -2.33 2.36 8.75 + -2.43 2.42 8.81 + -2.54 2.38 8.86 + -1.19 1.65 10.43 + -1.17 1.61 10.33 + -1.13 1.67 10.3 + -1.13 1.73 10.36 + -1.17 1.72 10.44 + -0.3 0.23 11.44 + -2.95 2.04 2.9 + -2.91 1.84 3.14 + -2.72 1.79 3.06 + -2.67 1.92 2.83 + -2.8 2.08 2.71 + -2.65 2.95 3.71 + -2.65 2.77 3.86 + -2.49 2.74 3.84 + -2.42 2.87 3.72 + -2.51 3 3.63 + -2.39 3.24 5.41 + -2.38 3.12 5.57 + -2.27 3.1 5.55 + -2.22 3.17 5.43 + -2.29 3.26 5.33 + -2.1 4.3 6.14 + -2.08 4.23 6.3 + -1.98 4.21 6.28 + -1.95 4.25 6.15 + -2.01 4.31 6.06 + -1.85 5.01 7.12 + -1.83 4.98 7.27 + -1.74 4.96 7.26 + -1.72 4.98 7.13 + -1.78 5.01 7.04 + -1.63 6.01 7.04 + -1.59 6 7.17 + -1.54 5.99 7.06 + -1.32 7.09 7.72 + -2.73 1.99 2.71 + -2.92 1.89 2.5 + -2.89 1.64 2.55 + -2.72 1.59 2.76 + -2.6 1.79 2.89 + -3.49 1.85 3.91 + -3.63 1.79 3.75 + -3.62 1.61 3.78 + -3.5 1.57 3.93 + -3.41 1.72 4.02 + -3.83 2.06 5.39 + -3.94 2.01 5.23 + -3.92 1.86 5.26 + -3.83 1.83 5.39 + -3.77 1.95 5.48 + -4.44 2.18 6.4 + -4.53 2.13 6.23 + -4.52 1.98 6.26 + -4.44 1.96 6.41 + -4.39 2.07 6.5 + -5.39 2.06 6.96 + -5.46 2.02 6.79 + -5.45 1.89 6.81 + -5.39 1.86 6.96 + -5.36 1.96 7.06 + -6.04 2.04 7.89 + -6.06 2.02 7.8 + -6.06 1.96 7.82 + -6.04 1.94 7.89 + -6.03 1.99 7.94 + -6.22 2.36 8.96 + -1.75 1.74 6.12 + -1.68 1.76 5.96 + -1.66 1.89 5.98 + -1.76 1.85 6.2 + -0.97 1.51 6.98 + -0.93 1.52 6.84 + -0.91 1.63 6.85 + -0.94 1.67 6.98 + -0.98 1.6 7.06 + 0.12 1.52 7.18 + 0.13 1.53 7.07 + 0.15 1.61 7.08 + 0.14 1.64 7.17 + 0.12 1.59 7.24 + 0.99 1.47 8.09 + 0.99 1.49 8 + 1 1.55 8.01 + 1 1.56 8.08 + 1 1.52 8.13 + 1.33 1.14 9.13 + -4.41 2.07 6.31 + -4.48 2.09 6.22 + -4.5 2.02 6.31 + -4.69 2.48 6.84 + -4.75 2.52 6.79 + -4.77 2.44 6.86 + -5.04 2.88 7.69 + -5.1 2.91 7.62 + -5.12 2.84 7.7 + -5.28 3.53 8.61 + -2.39 2.41 8.82 + -2.48 2.37 8.68 + -2.47 2.24 8.71 + -2.4 2.21 8.83 + -2.34 2.31 8.9 + -3.01 2.52 9.83 + -3.08 2.48 9.7 + -3.06 2.37 9.72 + -3.01 2.35 9.83 + -2.96 2.43 9.9 + -3.96 2.39 10.38 + -4 2.36 10.27 + -3.99 2.28 10.29 + -3.96 2.27 10.38 + -3.94 2.33 10.44 + -4.6 2.4 11.32 + -4.62 2.38 11.23 + -4.62 2.32 11.25 + -4.6 2.31 11.32 + -4.59 2.36 11.37 + -4.78 2.73 12.4 + -1.63 5.2 7.17 + -1.66 5.25 7.07 + -1.72 5.18 7.14 + -1.74 5.73 7.68 + -1.78 5.79 7.62 + -1.83 5.72 7.67 + -2.11 6.23 7.83 + -2.14 6.28 7.75 + -2.19 6.21 7.8 + -2.34 6.92 8.53 + -2.22 1.81 -0.69 + -2.12 2.06 -0.75 + -2.11 2.13 -0.66 + -2.03 2.35 -0.8 + -2.3 1.59 -0.43 + -2.22 1.86 -0.58 + -2.21 2.19 -0.7 + -2.5 1.43 -0.31 + -2.3 1.65 -0.35 + -2.32 1.71 -0.34 + -2.3 1.96 -0.61 + -2.52 1.28 -0.3 + -2.51 1.43 -0.15 + -2.5 1.57 -0.16 + -2.39 1.76 -0.42 + -2.6 1.42 -0.06 + -2.59 1.65 -0.26 + -2.41 1.07 -0.34 + -2.52 1.24 -0.15 + -2.73 1.32 0.13 + -2.68 1.54 -0.18 + -3.77 1.3 0.19 + -3.28 1.29 0.29 + -3.2 1.36 0.45 + -2.94 1.26 0.34 + -2.93 1.36 0.34 + -2.83 1.42 0.01 + -3 1.17 0.2 + -4.02 1.2 0.16 + -3.57 1.39 0.39 + -3.22 1.52 0.46 + -3 1.45 0.2 + -3.84 1.37 0.42 + -3.61 1.57 0.41 + -3.3 1.62 0.3 + -4.12 1.38 0.22 + -3.87 1.46 0.44 + -3.76 1.64 0.18 + -4.02 1.53 0.16 + -2.38 1.03 -0.22 + -2.26 0.93 -0.66 + -2.13 0.84 -0.63 + -1.82 0.88 -0.91 + -1.83 0.77 -0.91 + -2.22 0.75 -0.69 + -2.38 0.8 -0.44 + -2.31 0.84 -0.34 + -2.42 0.98 -0.2 + -2.6 1.21 -0.06 + -2.76 1.2 0.15 + -2.51 0.96 -0.28 + -2.72 1.15 -0.21 + -2.83 1.14 0.01 + -4.68 1.37 -0.14 + -4.87 1.02 -0.14 + -4.71 0.62 -0.15 + -4.32 0.52 -0.15 + -3.89 0.27 -0.15 + -3.47 0.48 -0.15 + -3.58 0.81 -0.14 + -3.3 1.29 -0.14 + -3.75 1.68 -0.14 + -4.23 1.35 -0.14 + -4.45 0.97 0.96 + -4.45 0.8 0.78 + -4.46 0.62 0.59 + -4.24 0.57 0.55 + -4.02 0.52 0.51 + -3.85 0.63 0.64 + -3.68 0.74 0.77 + -3.85 0.89 0.92 + -4.01 1.04 1.07 + -4.23 1 1.01 + -4.3 0.91 1.38 + -4.4 0.69 1.36 + -4.32 0.47 1.33 + -4.05 0.38 1.33 + -3.91 0.51 1.34 + -3.77 0.65 1.36 + -3.9 0.81 1.37 + -4.03 0.98 1.39 + -4.27 0.97 1.75 + -4.35 0.82 1.87 + -4.28 0.67 1.98 + -3.99 0.66 1.97 + -3.82 0.79 1.87 + -3.93 0.9 1.79 + -4.04 1.01 1.71 + -4.21 1.16 2.54 + -4.28 1.03 2.54 + -4.22 0.89 2.54 + -4.01 0.88 2.54 + -3.87 1 2.54 + -3.96 1.1 2.54 + -4.04 1.21 2.54 + -4.22 0.86 3.75 + -4.21 0.72 3.65 + -4.05 0.71 3.65 + -3.95 0.78 3.7 + -4.02 0.84 3.75 + -4.08 0.91 3.79 + -4.23 0.49 4.7 + -4.22 0.36 4.72 + -4.1 0.35 4.72 + -4.05 0.46 4.7 + -4.12 0.54 4.69 + -4.17 1.01 5.56 + -4.16 0.93 5.64 + -4.06 0.92 5.64 + -4.02 0.98 5.58 + -4.08 1.04 5.52 + -3.98 1.23 6.48 + -4.01 1.17 6.45 + -3.99 1.11 6.43 + -3.91 1.1 6.43 + -3.88 1.18 6.46 + -3.92 1.25 6.49 + -4.33 0.39 7.63 + -4.36 0.37 7.56 + -4.31 0.35 7.55 + -4.27 0.36 7.58 + -4.28 0.39 7.63 + -5.23 -0.26 8.34 + -4 1.08 2.44 + -4.14 1.05 2.6 + -4.15 0.91 2.56 + -4.05 0.87 2.41 + -3.95 0.97 2.33 + -3.39 1.02 3.02 + -3.51 1.01 3.12 + -3.52 0.91 3.12 + -3.42 0.86 3.05 + -3.34 0.93 2.98 + -3.23 1 4.2 + -3.31 0.99 4.3 + -3.31 0.91 4.3 + -3.25 0.87 4.22 + -3.2 0.93 4.15 + -2.51 0.95 4.73 + -2.56 0.95 4.84 + -2.56 0.87 4.84 + -2.53 0.85 4.75 + -2.49 0.89 4.68 + -2.04 0.92 5.42 + -2.06 0.91 5.52 + -2.07 0.86 5.52 + -2.05 0.83 5.44 + -2.03 0.87 5.37 + -1.35 0.87 5.41 + -1.36 0.85 5.5 + -1.36 0.81 5.43 + -0.62 0.81 5.91 + -4.01 0.91 2.33 + -4.08 1.01 2.17 + -4.25 0.98 2.2 + -4.28 0.87 2.35 + -4.14 0.82 2.45 + -4.21 1.49 3.08 + -4.26 1.57 2.96 + -4.38 1.54 2.98 + -4.4 1.47 3.08 + -4.3 1.43 3.15 + -4.15 1.84 4.05 + -4.19 1.89 3.93 + -4.29 1.87 3.95 + -4.3 1.82 4.05 + -4.22 1.8 4.12 + -4.16 2.33 4.69 + -4.19 2.37 4.57 + -4.29 2.35 4.59 + -4.3 2.31 4.69 + -4.23 2.29 4.76 + -4.34 2.99 4.99 + -4.37 3.02 4.87 + -4.46 3 4.88 + -4.47 2.97 4.99 + -4.41 2.97 5.06 + -4.44 3.49 5.57 + -4.46 3.49 5.51 + -4.5 3.49 5.52 + -4.51 3.48 5.57 + -4.48 3.48 5.6 + -4.28 3.71 6.29 + -4.19 0.47 4.69 + -4.17 0.42 4.59 + -4.08 0.42 4.6 + -4.12 0.5 4.75 + -4.3 -0.01 5.32 + -4.29 -0.05 5.23 + -4.21 -0.05 5.24 + -4.19 -0.02 5.32 + -4.24 0.01 5.38 + -4.2 -0.72 5.54 + -4.19 -0.74 5.46 + -4.13 -0.74 5.47 + -4.12 -0.72 5.53 + -4.16 -0.71 5.58 + -4.18 -1.24 6.21 + -4.17 -1.24 6.15 + -4.13 -1.24 6.16 + -4.12 -1.24 6.21 + -4.15 -1.24 6.24 + -4.4 -1.42 6.93 + -4.22 2.3 4.63 + -4.21 2.33 4.56 + -4.27 2.35 4.62 + -3.99 2.56 4.97 + -3.97 2.6 4.93 + -4.02 2.61 4.98 + -3.78 2.89 5.53 + -3.77 2.92 5.48 + -3.82 2.94 5.53 + -3.4 3.17 6.14 + -3.89 1.15 6.47 + -3.92 1.2 6.37 + -4.01 1.19 6.39 + -4.02 1.14 6.47 + -3.95 1.12 6.53 + -3.9 1.65 7.11 + -3.93 1.68 7.01 + -4 1.66 7.03 + -4.02 1.63 7.11 + -3.96 1.62 7.16 + -4.1 2.31 7.4 + -4.11 2.32 7.33 + -4.17 2.31 7.34 + -4.18 2.3 7.4 + -4.14 2.29 7.45 + -4.17 2.8 7.99 + -4.19 2.81 7.93 + -4.23 2.8 7.94 + -4.23 2.79 7.99 + -4.2 2.8 8.03 + -4.01 3.02 8.71 + -1.89 0.8 5.48 + -1.86 0.82 5.41 + -1.92 0.86 5.45 + -1.57 0.96 5.82 + -1.53 0.99 5.78 + -1.58 1.02 5.81 + -1.27 1.26 5.91 + -1.24 1.28 5.85 + -1.29 1.31 5.88 + -0.85 1.53 6.37 + faces 770 + 0 1 11 1 191 192 11 2 + 11 10 0 1 11 193 191 2 + 1 2 12 1 192 194 195 2 + 12 11 1 1 195 11 192 2 + 2 3 13 1 196 197 13 2 + 13 12 2 1 13 12 196 2 + 3 4 14 1 197 198 199 2 + 14 13 3 1 199 13 197 2 + 4 5 15 1 198 200 201 2 + 15 14 4 1 201 199 198 2 + 5 6 16 1 202 203 16 2 + 16 15 5 1 204 201 200 2 + 6 7 17 1 203 205 17 2 + 17 16 6 1 17 16 203 2 + 7 8 18 1 205 206 207 2 + 18 17 7 1 207 17 205 2 + 8 9 19 1 208 209 210 2 + 19 18 8 1 19 18 211 2 + 9 0 10 1 212 213 10 2 + 10 19 9 1 10 19 212 2 + 10 11 21 1 193 11 21 2 + 21 20 10 1 21 214 193 2 + 11 12 22 1 11 195 215 2 + 22 21 11 1 215 21 11 2 + 12 13 22 1 12 13 22 2 + 13 14 23 1 13 199 216 2 + 23 22 13 1 216 22 13 2 + 14 15 24 1 14 15 24 2 + 24 23 14 1 24 23 14 2 + 15 16 25 1 15 16 25 2 + 25 24 15 1 25 24 15 2 + 16 17 26 1 16 17 26 2 + 26 25 16 1 26 25 16 2 + 17 18 27 1 17 207 217 2 + 27 26 17 1 217 26 17 2 + 18 19 20 1 18 19 20 2 + 20 27 18 1 20 27 18 2 + 19 10 20 1 19 10 20 2 + 20 21 29 1 214 21 29 2 + 29 28 20 1 29 218 214 2 + 21 22 30 1 21 215 219 2 + 30 29 21 1 219 29 21 2 + 22 23 31 1 22 216 220 2 + 31 30 22 1 220 30 22 2 + 23 24 31 1 23 24 31 2 + 24 25 32 1 24 25 32 2 + 32 31 24 1 32 31 24 2 + 25 26 33 1 25 26 33 2 + 33 32 25 1 33 32 25 2 + 26 27 34 1 26 217 221 2 + 34 33 26 1 221 33 26 2 + 27 20 28 1 27 20 28 2 + 28 34 27 1 28 34 27 2 + 28 29 36 1 218 29 36 2 + 36 35 28 1 36 222 218 2 + 29 30 37 1 29 219 223 2 + 37 36 29 1 223 36 29 2 + 30 31 38 1 30 220 36 2 + 38 37 30 1 36 37 30 2 + 31 32 39 1 31 32 39 2 + 39 38 31 1 39 38 31 2 + 32 33 40 1 32 33 40 2 + 40 39 32 1 40 39 32 2 + 33 34 41 1 33 221 224 2 + 41 40 33 1 224 40 33 2 + 34 28 35 1 34 28 35 2 + 35 41 34 1 35 41 34 2 + 35 36 42 1 222 36 225 2 + 36 37 43 1 36 223 226 2 + 43 42 36 1 226 225 36 2 + 37 38 44 1 37 36 227 2 + 44 43 37 1 227 43 37 2 + 38 39 45 1 38 39 45 2 + 45 44 38 1 45 44 38 2 + 39 40 46 1 39 40 46 2 + 46 45 39 1 46 45 39 2 + 40 41 47 1 40 224 228 2 + 47 46 40 1 228 46 40 2 + 41 35 42 1 41 35 42 2 + 42 47 41 1 42 47 41 2 + 42 43 49 1 225 226 229 2 + 49 48 42 1 229 230 225 2 + 43 44 50 1 43 227 231 2 + 50 49 43 1 231 49 43 2 + 44 45 51 1 44 45 51 2 + 51 50 44 1 51 50 44 2 + 45 46 51 1 45 46 51 2 + 46 47 52 1 46 228 232 2 + 52 51 46 1 232 51 46 2 + 47 42 48 1 47 42 48 2 + 48 52 47 1 48 52 47 2 + 48 49 54 1 230 229 233 2 + 54 53 48 1 233 234 230 2 + 49 50 55 1 49 231 235 2 + 55 54 49 1 235 54 49 2 + 50 51 56 1 50 51 56 2 + 56 55 50 1 56 55 50 2 + 51 52 57 1 51 232 236 2 + 57 56 51 1 236 56 51 2 + 52 48 53 1 52 48 53 2 + 53 57 52 1 53 57 52 2 + 59 58 53 1 59 237 234 2 + 53 54 60 1 234 233 60 2 + 60 59 53 1 60 59 234 2 + 54 55 61 1 54 235 238 2 + 61 60 54 1 238 239 54 2 + 55 56 62 1 55 56 62 2 + 62 61 55 1 62 61 55 2 + 56 57 63 1 56 236 240 2 + 63 62 56 1 240 62 56 2 + 57 53 58 1 57 53 58 2 + 58 63 57 1 58 241 57 2 + 58 59 64 1 237 59 242 2 + 59 60 65 1 59 60 243 2 + 65 64 59 1 243 242 59 2 + 60 61 66 1 239 238 66 2 + 66 65 60 1 244 243 60 2 + 61 62 67 1 61 62 67 2 + 67 66 61 1 67 245 61 2 + 62 63 68 1 62 240 246 2 + 68 67 62 1 246 67 62 2 + 63 58 64 1 241 58 247 2 + 64 68 63 1 64 68 63 2 + 64 65 69 1 242 243 248 2 + 65 66 69 1 65 249 250 2 + 66 67 69 1 66 251 252 2 + 67 68 69 1 67 246 253 2 + 68 64 69 1 68 64 69 2 + 5 7 6 1 254 255 6 1 + 1 3 2 1 1 3 2 1 + 9 1 0 1 9 1 0 1 + 9 3 1 1 9 3 1 1 + 8 3 9 1 8 3 9 1 + 7 3 8 1 7 3 8 1 + 5 3 7 1 5 3 7 1 + 4 3 5 1 4 3 5 1 + 70 71 76 1 256 257 258 2 + 76 75 70 1 258 259 256 2 + 71 72 77 1 260 261 262 2 + 77 76 71 1 262 263 260 2 + 72 73 78 1 264 265 266 2 + 78 77 72 1 266 77 264 2 + 73 74 79 1 265 267 268 2 + 79 78 73 1 268 266 265 2 + 74 70 75 1 269 270 75 2 + 75 79 74 1 75 79 269 2 + 75 76 81 1 259 258 271 2 + 81 80 75 1 271 272 259 2 + 76 77 82 1 76 273 274 2 + 82 81 76 1 274 275 76 2 + 77 78 83 1 77 266 83 2 + 83 82 77 1 83 82 77 2 + 78 79 84 1 78 79 276 2 + 84 83 78 1 276 277 78 2 + 79 75 80 1 79 75 278 2 + 80 84 79 1 278 276 79 2 + 80 81 86 1 272 271 279 2 + 86 85 80 1 279 280 272 2 + 81 82 87 1 81 281 282 2 + 87 86 81 1 282 283 81 2 + 82 83 88 1 82 83 88 2 + 88 87 82 1 88 87 82 2 + 83 84 89 1 83 284 285 2 + 89 88 83 1 285 88 83 2 + 84 80 85 1 84 80 286 2 + 85 89 84 1 286 287 84 2 + 85 86 91 1 280 279 288 2 + 91 90 85 1 288 289 280 2 + 86 87 92 1 86 290 291 2 + 92 91 86 1 291 292 86 2 + 87 88 93 1 87 88 293 2 + 93 92 87 1 293 92 87 2 + 88 89 94 1 88 285 294 2 + 94 93 88 1 294 293 88 2 + 89 85 90 1 89 85 295 2 + 90 94 89 1 295 296 89 2 + 90 91 96 1 289 288 297 2 + 96 95 90 1 297 298 289 2 + 91 92 96 1 91 299 300 2 + 92 93 97 1 92 293 301 2 + 97 96 92 1 301 96 92 2 + 93 94 95 1 293 294 302 2 + 95 97 93 1 95 97 93 2 + 94 90 95 1 94 90 95 2 + 95 96 98 1 298 297 303 2 + 96 97 98 1 96 301 304 2 + 97 95 98 1 97 95 98 2 + 74 71 70 1 74 71 70 1 + 73 71 74 1 73 71 74 1 + 72 71 73 1 72 71 73 1 + 99 100 105 1 305 306 307 2 + 105 104 99 1 307 104 305 2 + 100 101 106 1 308 309 310 2 + 106 105 100 1 310 311 308 2 + 101 102 107 1 312 313 107 2 + 107 106 101 1 107 106 312 2 + 102 103 108 1 313 314 315 2 + 108 107 102 1 315 107 313 2 + 103 99 104 1 316 305 104 2 + 104 108 103 1 104 108 316 2 + 104 105 110 1 104 307 317 2 + 110 109 104 1 317 109 104 2 + 105 106 111 1 105 318 319 2 + 111 110 105 1 319 320 105 2 + 106 107 112 1 106 107 112 2 + 112 111 106 1 112 111 106 2 + 107 108 113 1 107 315 321 2 + 113 112 107 1 321 112 107 2 + 108 104 109 1 108 104 109 2 + 109 113 108 1 109 113 108 2 + 109 110 115 1 109 317 322 2 + 115 114 109 1 322 114 109 2 + 110 111 116 1 110 323 324 2 + 116 115 110 1 324 115 110 2 + 111 112 117 1 111 112 117 2 + 117 116 111 1 117 116 111 2 + 112 113 118 1 112 321 325 2 + 118 117 112 1 325 117 112 2 + 113 109 114 1 113 109 114 2 + 114 118 113 1 114 118 113 2 + 114 115 120 1 114 322 326 2 + 120 119 114 1 326 119 114 2 + 115 116 121 1 115 324 327 2 + 121 120 115 1 327 120 115 2 + 116 117 122 1 116 117 122 2 + 122 121 116 1 122 121 116 2 + 117 118 123 1 117 325 328 2 + 123 122 117 1 328 122 117 2 + 118 114 119 1 118 114 119 2 + 119 123 118 1 119 123 118 2 + 119 120 125 1 119 326 329 2 + 125 124 119 1 329 330 119 2 + 120 121 126 1 120 327 331 2 + 126 125 120 1 331 332 120 2 + 121 122 127 1 121 122 333 2 + 127 126 121 1 333 126 121 2 + 122 123 128 1 122 328 334 2 + 128 127 122 1 334 333 122 2 + 123 119 124 1 123 119 330 2 + 124 128 123 1 330 335 123 2 + 124 125 129 1 330 329 336 2 + 125 126 129 1 125 337 338 2 + 126 127 129 1 126 333 339 2 + 127 128 129 1 127 128 129 2 + 128 124 129 1 128 124 129 2 + 103 100 99 1 103 100 99 1 + 102 100 103 1 102 100 103 1 + 101 100 102 1 101 100 102 1 + 130 131 135 1 130 340 341 2 + 135 134 130 1 341 134 130 2 + 131 132 136 1 131 342 343 2 + 136 135 131 1 343 135 131 2 + 132 51 137 1 132 51 137 2 + 137 136 132 1 137 136 132 2 + 51 133 138 1 51 344 345 2 + 138 137 51 1 345 137 51 2 + 133 130 134 1 133 130 134 2 + 134 138 133 1 134 138 133 2 + 134 135 140 1 134 341 346 2 + 140 139 134 1 346 139 134 2 + 135 136 141 1 135 343 347 2 + 141 140 135 1 347 140 135 2 + 136 137 142 1 136 137 142 2 + 142 141 136 1 142 141 136 2 + 137 138 143 1 137 345 348 2 + 143 142 137 1 348 142 137 2 + 138 134 139 1 138 134 139 2 + 139 143 138 1 139 143 138 2 + 139 140 145 1 139 346 349 2 + 145 144 139 1 349 350 139 2 + 140 141 146 1 140 347 351 2 + 146 145 140 1 351 352 140 2 + 141 142 147 1 141 142 147 2 + 147 146 141 1 147 353 141 2 + 142 143 148 1 142 348 354 2 + 148 147 142 1 354 147 142 2 + 143 139 144 1 143 139 350 2 + 144 148 143 1 350 355 143 2 + 144 145 149 1 350 349 356 2 + 145 146 149 1 145 146 357 2 + 146 147 149 1 146 358 357 2 + 147 148 149 1 147 354 359 2 + 148 144 149 1 148 144 149 2 + 150 151 154 1 360 361 362 2 + 154 153 150 1 362 363 360 2 + 151 152 155 1 151 364 365 2 + 155 154 151 1 365 154 151 2 + 152 150 153 1 152 150 366 2 + 153 155 152 1 366 367 152 2 + 153 154 157 1 363 362 368 2 + 157 156 153 1 368 369 363 2 + 154 155 158 1 154 365 370 2 + 158 157 154 1 370 157 154 2 + 155 153 156 1 155 153 156 2 + 156 158 155 1 156 158 155 2 + 156 157 159 1 369 368 371 2 + 157 158 159 1 157 370 372 2 + 158 156 159 1 158 156 159 2 + 160 161 166 1 160 373 374 2 + 166 165 160 1 374 165 160 2 + 161 162 167 1 161 375 376 2 + 167 166 161 1 376 166 161 2 + 162 163 168 1 162 163 168 2 + 168 167 162 1 168 167 162 2 + 163 164 169 1 163 377 378 2 + 169 168 163 1 378 168 163 2 + 164 160 165 1 164 160 165 2 + 165 169 164 1 165 169 164 2 + 165 166 171 1 165 374 379 2 + 171 170 165 1 379 170 165 2 + 166 167 172 1 166 376 380 2 + 172 171 166 1 380 171 166 2 + 167 168 173 1 167 168 173 2 + 173 172 167 1 173 172 167 2 + 168 169 174 1 168 378 381 2 + 174 173 168 1 381 173 168 2 + 169 165 170 1 169 165 170 2 + 170 174 169 1 170 174 169 2 + 170 171 176 1 170 379 382 2 + 176 175 170 1 382 383 170 2 + 171 172 177 1 171 380 384 2 + 177 176 171 1 384 385 171 2 + 172 173 178 1 172 173 386 2 + 178 177 172 1 386 177 172 2 + 173 174 179 1 173 381 387 2 + 179 178 173 1 387 386 173 2 + 174 170 175 1 174 170 383 2 + 175 179 174 1 383 388 174 2 + 175 176 180 1 383 382 389 2 + 176 177 180 1 176 390 391 2 + 177 178 180 1 177 386 392 2 + 178 179 180 1 178 179 180 2 + 179 175 180 1 179 175 180 2 + 181 182 185 1 393 394 395 2 + 185 184 181 1 395 396 393 2 + 182 183 186 1 182 397 398 2 + 186 185 182 1 398 399 182 2 + 183 181 184 1 183 181 400 2 + 184 186 183 1 400 401 183 2 + 184 185 188 1 402 403 404 2 + 188 187 184 1 404 405 402 2 + 185 186 189 1 185 406 407 2 + 189 188 185 1 407 408 185 2 + 186 184 187 1 186 184 409 2 + 187 189 186 1 409 410 186 2 + 187 188 190 1 411 412 413 2 + 188 189 190 1 188 414 415 2 + 189 187 190 1 189 187 190 2 + 191 192 193 1 416 417 418 1 + 192 194 193 1 417 419 418 1 + 195 191 196 1 420 416 421 1 + 193 196 191 1 418 421 416 1 + 196 193 197 1 421 418 422 1 + 194 197 193 1 419 422 418 1 + 198 195 199 1 423 420 424 1 + 196 199 195 1 421 424 420 1 + 200 199 196 1 425 424 421 1 + 200 196 201 1 425 421 426 1 + 197 201 196 1 422 426 421 1 + 202 198 203 1 427 423 428 1 + 199 203 198 1 424 428 423 1 + 204 203 199 1 429 428 424 1 + 200 204 199 1 425 429 424 1 + 204 200 205 1 429 425 430 1 + 201 205 200 1 426 430 425 1 + 204 206 203 1 429 431 428 1 + 206 204 207 1 431 429 432 1 + 205 207 204 1 430 432 429 1 + 208 202 209 1 433 427 434 1 + 203 209 202 1 428 434 427 1 + 203 210 209 1 428 435 434 1 + 206 210 203 1 431 435 428 1 + 210 206 211 1 435 431 436 1 + 207 211 206 1 432 436 431 1 + 212 213 214 1 437 438 439 1 + 215 214 213 1 440 439 438 1 + 216 214 215 1 441 439 440 1 + 210 216 215 1 435 441 440 1 + 216 210 217 1 441 435 442 1 + 211 217 210 1 436 442 435 1 + 213 218 215 1 438 443 440 1 + 219 212 220 1 444 437 445 1 + 214 220 212 1 439 445 437 1 + 221 220 214 1 446 445 439 1 + 216 221 214 1 441 446 439 1 + 221 216 222 1 446 441 447 1 + 217 222 216 1 442 447 441 1 + 220 223 219 1 445 448 444 1 + 224 223 220 1 449 448 445 1 + 221 224 220 1 446 449 445 1 + 224 221 225 1 449 446 450 1 + 222 225 221 1 447 450 446 1 + 226 219 223 1 451 444 448 1 + 223 227 226 1 448 452 451 1 + 224 227 223 1 449 452 448 1 + 227 224 228 1 452 449 453 1 + 225 228 224 1 450 453 449 1 + 229 226 227 1 454 451 452 1 + 228 229 227 1 453 454 452 1 + 209 230 208 1 434 455 433 1 + 231 208 230 1 456 433 455 1 + 230 232 231 1 455 457 456 1 + 233 231 232 1 458 456 457 1 + 234 233 232 1 459 458 457 1 + 235 234 232 1 460 459 457 1 + 236 235 232 1 461 460 457 1 + 232 237 236 1 457 462 461 1 + 237 232 230 1 462 457 455 1 + 238 237 230 1 463 462 455 1 + 238 230 209 1 463 455 434 1 + 239 238 209 1 464 463 434 1 + 209 210 239 1 434 435 464 1 + 210 240 239 1 435 465 464 1 + 210 215 240 1 435 440 465 1 + 240 215 218 1 465 440 443 1 + 241 236 237 1 466 461 462 1 + 237 238 241 1 462 463 466 1 + 242 241 238 1 467 466 463 1 + 238 239 242 1 463 464 467 1 + 243 242 239 1 468 467 464 1 + 239 240 243 1 464 465 468 1 + 218 243 240 1 443 468 465 1 + 244 245 255 1 191 192 11 2 + 255 254 244 1 11 193 191 2 + 245 246 256 1 192 194 195 2 + 256 255 245 1 195 11 192 2 + 246 247 257 1 196 197 13 2 + 257 256 246 1 13 12 196 2 + 247 248 258 1 197 198 199 2 + 258 257 247 1 199 13 197 2 + 248 249 259 1 198 200 201 2 + 259 258 248 1 201 199 198 2 + 249 250 260 1 202 203 16 2 + 260 259 249 1 204 201 200 2 + 250 251 261 1 203 205 17 2 + 261 260 250 1 17 16 203 2 + 251 252 262 1 205 206 207 2 + 262 261 251 1 207 17 205 2 + 252 253 263 1 208 209 210 2 + 263 262 252 1 19 18 211 2 + 253 244 254 1 212 213 10 2 + 254 263 253 1 10 19 212 2 + 254 255 265 1 193 11 21 2 + 265 264 254 1 21 214 193 2 + 255 256 266 1 11 195 215 2 + 266 265 255 1 215 21 11 2 + 256 257 266 1 12 13 22 2 + 257 258 267 1 13 199 216 2 + 267 266 257 1 216 22 13 2 + 258 259 268 1 14 15 24 2 + 268 267 258 1 24 23 14 2 + 259 260 269 1 15 16 25 2 + 269 268 259 1 25 24 15 2 + 260 261 270 1 16 17 26 2 + 270 269 260 1 26 25 16 2 + 261 262 271 1 17 207 217 2 + 271 270 261 1 217 26 17 2 + 262 263 264 1 18 19 20 2 + 264 271 262 1 20 27 18 2 + 263 254 264 1 19 10 20 2 + 264 265 273 1 214 21 29 2 + 273 272 264 1 29 218 214 2 + 265 266 274 1 21 215 219 2 + 274 273 265 1 219 29 21 2 + 266 267 275 1 22 216 220 2 + 275 274 266 1 220 30 22 2 + 267 268 275 1 23 24 31 2 + 268 269 276 1 24 25 32 2 + 276 275 268 1 32 31 24 2 + 269 270 277 1 25 26 33 2 + 277 276 269 1 33 32 25 2 + 270 271 278 1 26 217 221 2 + 278 277 270 1 221 33 26 2 + 271 264 272 1 27 20 28 2 + 272 278 271 1 28 34 27 2 + 272 273 280 1 218 29 36 2 + 280 279 272 1 36 222 218 2 + 273 274 281 1 29 219 223 2 + 281 280 273 1 223 36 29 2 + 274 275 282 1 30 220 36 2 + 282 281 274 1 36 37 30 2 + 275 276 283 1 31 32 39 2 + 283 282 275 1 39 38 31 2 + 276 277 284 1 32 33 40 2 + 284 283 276 1 40 39 32 2 + 277 278 285 1 33 221 224 2 + 285 284 277 1 224 40 33 2 + 278 272 279 1 34 28 35 2 + 279 285 278 1 35 41 34 2 + 279 280 286 1 222 36 225 2 + 280 281 287 1 36 223 226 2 + 287 286 280 1 226 225 36 2 + 281 282 288 1 37 36 227 2 + 288 287 281 1 227 43 37 2 + 282 283 289 1 38 39 45 2 + 289 288 282 1 45 44 38 2 + 283 284 290 1 39 40 46 2 + 290 289 283 1 46 45 39 2 + 284 285 291 1 40 224 228 2 + 291 290 284 1 228 46 40 2 + 285 279 286 1 41 35 42 2 + 286 291 285 1 42 47 41 2 + 286 287 293 1 225 226 229 2 + 293 292 286 1 229 230 225 2 + 287 288 294 1 43 227 231 2 + 294 293 287 1 231 49 43 2 + 288 289 295 1 44 45 51 2 + 295 294 288 1 51 50 44 2 + 289 290 295 1 45 46 51 2 + 290 291 296 1 46 228 232 2 + 296 295 290 1 232 51 46 2 + 291 286 292 1 47 42 48 2 + 292 296 291 1 48 52 47 2 + 292 293 298 1 230 229 233 2 + 298 297 292 1 233 234 230 2 + 293 294 299 1 49 231 235 2 + 299 298 293 1 235 54 49 2 + 294 295 300 1 50 51 56 2 + 300 299 294 1 56 55 50 2 + 295 296 301 1 51 232 236 2 + 301 300 295 1 236 56 51 2 + 296 292 297 1 52 48 53 2 + 297 301 296 1 53 57 52 2 + 303 302 297 1 59 237 234 2 + 297 298 304 1 234 233 60 2 + 304 303 297 1 60 59 234 2 + 298 299 305 1 54 235 238 2 + 305 304 298 1 238 239 54 2 + 299 300 306 1 55 56 62 2 + 306 305 299 1 62 61 55 2 + 300 301 307 1 56 236 240 2 + 307 306 300 1 240 62 56 2 + 301 297 302 1 57 53 58 2 + 302 307 301 1 58 241 57 2 + 302 303 308 1 237 59 242 2 + 303 304 309 1 59 60 243 2 + 309 308 303 1 243 242 59 2 + 304 305 310 1 239 238 66 2 + 310 309 304 1 244 243 60 2 + 305 306 311 1 61 62 67 2 + 311 310 305 1 67 245 61 2 + 306 307 312 1 62 240 246 2 + 312 311 306 1 246 67 62 2 + 307 302 308 1 241 58 247 2 + 308 312 307 1 64 68 63 2 + 308 309 313 1 242 243 248 2 + 309 310 313 1 65 249 250 2 + 310 311 313 1 66 251 252 2 + 311 312 313 1 67 246 253 2 + 312 308 313 1 68 64 69 2 + 249 251 250 1 254 255 6 1 + 245 247 246 1 1 3 2 1 + 253 245 244 1 9 1 0 1 + 253 247 245 1 9 3 1 1 + 252 247 253 1 8 3 9 1 + 251 247 252 1 7 3 8 1 + 249 247 251 1 5 3 7 1 + 248 247 249 1 4 3 5 1 + 314 315 320 1 256 257 258 2 + 320 319 314 1 258 259 256 2 + 315 316 321 1 260 261 262 2 + 321 320 315 1 262 263 260 2 + 316 317 322 1 264 265 266 2 + 322 321 316 1 266 77 264 2 + 317 318 323 1 265 267 268 2 + 323 322 317 1 268 266 265 2 + 318 314 319 1 269 270 75 2 + 319 323 318 1 75 79 269 2 + 319 320 325 1 259 258 271 2 + 325 324 319 1 271 272 259 2 + 320 321 326 1 76 273 274 2 + 326 325 320 1 274 275 76 2 + 321 322 327 1 77 266 83 2 + 327 326 321 1 83 82 77 2 + 322 323 328 1 78 79 276 2 + 328 327 322 1 276 277 78 2 + 323 319 324 1 79 75 278 2 + 324 328 323 1 278 276 79 2 + 324 325 330 1 272 271 279 2 + 330 329 324 1 279 280 272 2 + 325 326 331 1 81 281 282 2 + 331 330 325 1 282 283 81 2 + 326 327 332 1 82 83 88 2 + 332 331 326 1 88 87 82 2 + 327 328 333 1 83 284 285 2 + 333 332 327 1 285 88 83 2 + 328 324 329 1 84 80 286 2 + 329 333 328 1 286 287 84 2 + 329 330 335 1 280 279 288 2 + 335 334 329 1 288 289 280 2 + 330 331 336 1 86 290 291 2 + 336 335 330 1 291 292 86 2 + 331 332 337 1 87 88 293 2 + 337 336 331 1 293 92 87 2 + 332 333 338 1 88 285 294 2 + 338 337 332 1 294 293 88 2 + 333 329 334 1 89 85 295 2 + 334 338 333 1 295 296 89 2 + 334 335 340 1 289 288 297 2 + 340 339 334 1 297 298 289 2 + 335 336 340 1 91 299 300 2 + 336 337 341 1 92 293 301 2 + 341 340 336 1 301 96 92 2 + 337 338 339 1 293 294 302 2 + 339 341 337 1 95 97 93 2 + 338 334 339 1 94 90 95 2 + 339 340 342 1 298 297 303 2 + 340 341 342 1 96 301 304 2 + 341 339 342 1 97 95 98 2 + 318 315 314 1 74 71 70 1 + 317 315 318 1 73 71 74 1 + 316 315 317 1 72 71 73 1 + 343 344 349 1 305 306 307 2 + 349 348 343 1 307 104 305 2 + 344 345 350 1 308 309 310 2 + 350 349 344 1 310 311 308 2 + 345 346 351 1 312 313 107 2 + 351 350 345 1 107 106 312 2 + 346 347 352 1 313 314 315 2 + 352 351 346 1 315 107 313 2 + 347 343 348 1 316 305 104 2 + 348 352 347 1 104 108 316 2 + 348 349 354 1 104 307 317 2 + 354 353 348 1 317 109 104 2 + 349 350 355 1 105 318 319 2 + 355 354 349 1 319 320 105 2 + 350 351 356 1 106 107 112 2 + 356 355 350 1 112 111 106 2 + 351 352 357 1 107 315 321 2 + 357 356 351 1 321 112 107 2 + 352 348 353 1 108 104 109 2 + 353 357 352 1 109 113 108 2 + 353 354 359 1 109 317 322 2 + 359 358 353 1 322 114 109 2 + 354 355 360 1 110 323 324 2 + 360 359 354 1 324 115 110 2 + 355 356 361 1 111 112 117 2 + 361 360 355 1 117 116 111 2 + 356 357 362 1 112 321 325 2 + 362 361 356 1 325 117 112 2 + 357 353 358 1 113 109 114 2 + 358 362 357 1 114 118 113 2 + 358 359 364 1 114 322 326 2 + 364 363 358 1 326 119 114 2 + 359 360 365 1 115 324 327 2 + 365 364 359 1 327 120 115 2 + 360 361 366 1 116 117 122 2 + 366 365 360 1 122 121 116 2 + 361 362 367 1 117 325 328 2 + 367 366 361 1 328 122 117 2 + 362 358 363 1 118 114 119 2 + 363 367 362 1 119 123 118 2 + 363 364 369 1 119 326 329 2 + 369 368 363 1 329 330 119 2 + 364 365 370 1 120 327 331 2 + 370 369 364 1 331 332 120 2 + 365 366 371 1 121 122 333 2 + 371 370 365 1 333 126 121 2 + 366 367 372 1 122 328 334 2 + 372 371 366 1 334 333 122 2 + 367 363 368 1 123 119 330 2 + 368 372 367 1 330 335 123 2 + 368 369 373 1 330 329 336 2 + 369 370 373 1 125 337 338 2 + 370 371 373 1 126 333 339 2 + 371 372 373 1 127 128 129 2 + 372 368 373 1 128 124 129 2 + 347 344 343 1 103 100 99 1 + 346 344 347 1 102 100 103 1 + 345 344 346 1 101 100 102 1 + 374 375 379 1 130 340 341 2 + 379 378 374 1 341 134 130 2 + 375 376 380 1 131 342 343 2 + 380 379 375 1 343 135 131 2 + 376 295 381 1 132 51 137 2 + 381 380 376 1 137 136 132 2 + 295 377 382 1 51 344 345 2 + 382 381 295 1 345 137 51 2 + 377 374 378 1 133 130 134 2 + 378 382 377 1 134 138 133 2 + 378 379 384 1 134 341 346 2 + 384 383 378 1 346 139 134 2 + 379 380 385 1 135 343 347 2 + 385 384 379 1 347 140 135 2 + 380 381 386 1 136 137 142 2 + 386 385 380 1 142 141 136 2 + 381 382 387 1 137 345 348 2 + 387 386 381 1 348 142 137 2 + 382 378 383 1 138 134 139 2 + 383 387 382 1 139 143 138 2 + 383 384 389 1 139 346 349 2 + 389 388 383 1 349 350 139 2 + 384 385 390 1 140 347 351 2 + 390 389 384 1 351 352 140 2 + 385 386 391 1 141 142 147 2 + 391 390 385 1 147 353 141 2 + 386 387 392 1 142 348 354 2 + 392 391 386 1 354 147 142 2 + 387 383 388 1 143 139 350 2 + 388 392 387 1 350 355 143 2 + 388 389 393 1 350 349 356 2 + 389 390 393 1 145 146 357 2 + 390 391 393 1 146 358 357 2 + 391 392 393 1 147 354 359 2 + 392 388 393 1 148 144 149 2 + 394 395 398 1 360 361 362 2 + 398 397 394 1 362 363 360 2 + 395 396 399 1 151 364 365 2 + 399 398 395 1 365 154 151 2 + 396 394 397 1 152 150 366 2 + 397 399 396 1 366 367 152 2 + 397 398 401 1 363 362 368 2 + 401 400 397 1 368 369 363 2 + 398 399 402 1 154 365 370 2 + 402 401 398 1 370 157 154 2 + 399 397 400 1 155 153 156 2 + 400 402 399 1 156 158 155 2 + 400 401 403 1 369 368 371 2 + 401 402 403 1 157 370 372 2 + 402 400 403 1 158 156 159 2 + 404 405 410 1 160 373 374 2 + 410 409 404 1 374 165 160 2 + 405 406 411 1 161 375 376 2 + 411 410 405 1 376 166 161 2 + 406 407 412 1 162 163 168 2 + 412 411 406 1 168 167 162 2 + 407 408 413 1 163 377 378 2 + 413 412 407 1 378 168 163 2 + 408 404 409 1 164 160 165 2 + 409 413 408 1 165 169 164 2 + 409 410 415 1 165 374 379 2 + 415 414 409 1 379 170 165 2 + 410 411 416 1 166 376 380 2 + 416 415 410 1 380 171 166 2 + 411 412 417 1 167 168 173 2 + 417 416 411 1 173 172 167 2 + 412 413 418 1 168 378 381 2 + 418 417 412 1 381 173 168 2 + 413 409 414 1 169 165 170 2 + 414 418 413 1 170 174 169 2 + 414 415 420 1 170 379 382 2 + 420 419 414 1 382 383 170 2 + 415 416 421 1 171 380 384 2 + 421 420 415 1 384 385 171 2 + 416 417 422 1 172 173 386 2 + 422 421 416 1 386 177 172 2 + 417 418 423 1 173 381 387 2 + 423 422 417 1 387 386 173 2 + 418 414 419 1 174 170 383 2 + 419 423 418 1 383 388 174 2 + 419 420 424 1 383 382 389 2 + 420 421 424 1 176 390 391 2 + 421 422 424 1 177 386 392 2 + 422 423 424 1 178 179 180 2 + 423 419 424 1 179 175 180 2 + 425 426 429 1 393 394 395 2 + 429 428 425 1 395 396 393 2 + 426 427 430 1 182 397 398 2 + 430 429 426 1 398 399 182 2 + 427 425 428 1 183 181 400 2 + 428 430 427 1 400 401 183 2 + 428 429 432 1 402 403 404 2 + 432 431 428 1 404 405 402 2 + 429 430 433 1 185 406 407 2 + 433 432 429 1 407 408 185 2 + 430 428 431 1 186 184 409 2 + 431 433 430 1 409 410 186 2 + 431 432 434 1 411 412 413 2 + 432 433 434 1 188 414 415 2 + 433 431 434 1 189 187 190 2 + tverts 469 + 0.972656 0.667969 0 + 1.13867 0.402344 0 + 1.00195 0.105469 0 + 0.673828 0.0253906 0 + 0.314453 -0.160156 0 + -0.0449219 -0.00390625 0 + -0.0527344 0.248047 0 + -0.183594 0.611328 0 + 0.193359 0.90625 0 + 0.599609 0.652344 0 + 0.779297 -0.955078 0 + 0.763672 -1.03711 0 + 0.208984 -1.11719 0 + 0.394531 -1.13672 0 + 1.02734 -1.1543 0 + 1.11133 -1.0957 0 + 1.19727 -1.03906 0 + 1.31055 -0.974609 0 + 0.412109 -0.908203 0 + 0.59375 -0.931641 0 + 0.658203 -0.771484 0 + 0.84375 -0.78125 0 + 0.324219 -0.792969 0 + 0.921875 -0.794922 0 + 1.02148 -0.789063 0 + 1.12305 -0.78125 0 + 1.24805 -0.773438 0 + 0.429688 -0.767578 0 + 0.628906 -0.609375 0 + 0.744141 -0.558594 0 + 0.363281 -0.509766 0 + 1.13281 -0.511719 0 + 1.23047 -0.556641 0 + 1.3125 -0.591797 0 + 0.439453 -0.626953 0 + 0.583984 -0.263672 0 + 0.587891 -0.263672 0 + 0.408203 -0.263672 0 + 1.29883 -0.263672 0 + 1.39063 -0.263672 0 + 1.46875 -0.263672 0 + 0.4375 -0.263672 0 + 0.587891 0.265625 0 + 0.419922 0.222656 0 + 1.16992 0.222656 0 + 1.22461 0.246094 0 + 1.27148 0.265625 0 + 0.46875 0.285156 0 + 0.59375 0.685547 0 + 0.408203 0.691406 0 + 0.900391 0.691406 0 + 0.980469 0.681641 0 + 0.501953 0.681641 0 + 0.546875 1.06055 0 + 0.458984 1.09766 0 + 1.33203 1.09766 0 + 1.37695 1.06836 0 + 0.470703 1.04297 0 + 0.388672 1.46484 0 + 0.482422 1.45313 0 + 0.529297 1.44141 0 + 1.4668 1.44141 0 + 1.5293 1.45703 0 + 0.660156 0.582031 0 + 0.316406 -0.0683594 0 + -0.296875 0.916016 0 + 0.332031 1.93164 0 + 0.90625 1.94922 0 + 0.357422 -0.0742188 0 + -0.441406 -0.5625 0 + 0.550781 0.693359 0 + 0.572266 0.763672 0 + 0.673828 0.744141 0 + 0.707031 0.681641 0 + 0.634766 0.644531 0 + 0.40625 -0.0507813 0 + 0.599609 -0.0078125 0 + 0 -0.0078125 0 + 0.285156 -0.0410156 0 + 0.333984 -0.0683594 0 + 0.751953 0.388672 0 + 0.179688 0.382813 0 + 0.173828 0.507813 0 + 0.224609 0.472656 0 + 0.726563 0.333984 0 + 0.355469 0.697266 0 + 0.650391 0.744141 0 + 0.806641 0.744141 0 + 0.835938 0.707031 0 + 0.306641 0.677734 0 + 0.753906 0.330078 0 + 0.226563 0.326172 0 + 1.2207 1.04492 0 + 0.761719 0.263672 0 + 0.748047 0.291016 0 + 0.171875 0.289063 0 + 1.82227 1.0332 0 + 0.177734 0.244141 0 + -0.441406 0.246094 0 + 0.587891 0.644531 0 + 0.525391 0.576172 0 + 0.382813 0.589844 0 + 0.363281 0.65625 0 + 0.480469 0.699219 0 + -0.238281 -0.0273438 0 + 0.623047 -0.0800781 0 + 1.19727 -0.0722656 0 + 1.25391 -0.0253906 0 + -0.28125 0.00585938 0 + 0.0253906 0.398438 0 + 0.560547 0.0683594 0 + 0.947266 0.355469 0 + 0.988281 0.398438 0 + -0.0078125 0.427734 0 + 0.396484 0.679688 0 + 0.566406 0.427734 0 + 0.585938 0.634766 0 + 0.619141 0.679688 0 + 0.367188 0.710938 0 + 0.898438 0.8125 0 + 0.714844 0.917969 0 + 0.09375 0.763672 0 + 0.115234 0.810547 0 + 0.878906 0.841797 0 + 0.222656 0.0644531 0 + 0.787109 0.0390625 0 + -0.271484 1.04297 0 + 0.169922 0.0644531 0 + 0.195313 0.0800781 0 + 0.361328 0.378906 0 + 0.0078125 -0.320313 0 + 0.546875 0.951172 0 + 0.951172 0.642578 0 + -0.00976563 -0.294922 0 + 0.371094 -0.0429688 0 + 0.644531 0.599609 0 + 0.599609 0.921875 0 + 0.623047 0.957031 0 + 0.357422 -0.0195313 0 + 0.910156 0.0507813 0 + 0.560547 0.078125 0 + 0.078125 1.02148 0 + 0.0878906 1.04883 0 + 0.902344 0.0683594 0 + 0.554688 0.345703 0 + 0.457031 0.318359 0 + 0.490234 0.322266 0 + -0.302734 1.34375 0 + 0.527344 0.359375 0 + 0.740234 0.660156 0 + 0.412109 0.371094 0 + 0.580078 0.623047 0 + 0.371094 0.412109 0 + 0.429688 -0.197266 0 + 0.375 0.785156 0 + 0.392578 -0.195313 0 + 0.179688 0.046875 0 + 0.207031 1.02539 0 + 0.144531 0.046875 0 + -0.0332031 0.316406 0 + -0.492188 0.460938 0 + 0.335938 -0.457031 0 + 1.46875 0.423828 0 + 1.50391 0.460938 0 + -0.519531 0.486328 0 + -0.121094 0.740234 0 + 0.34375 -0.0957031 0 + 1.10742 0.705078 0 + 1.13281 0.740234 0 + -0.144531 0.763672 0 + 0.380859 0.869141 0 + 0.498047 0.392578 0 + 0.617188 0.839844 0 + 0.628906 0.869141 0 + 0.369141 0.888672 0 + 0.451172 0.128906 0 + 0.560547 0.101563 0 + 0.246094 1.10547 0 + 0.400391 0.126953 0 + 0.425781 0.142578 0 + 0.591797 0.441406 0 + 0.763672 0.0253906 0 + 0.605469 -0.00585938 0 + 0.71875 0.0117188 0 + 0.644531 0.359375 0 + 0.322266 0.380859 0 + 0.632813 0.402344 0 + 0.414063 0.214844 0 + 1.07813 0.189453 0 + 0.375 0.203125 0 + 0.208984 0.417969 0 + 0.332031 -1.43945 0 + 0.597656 -1.43945 0 + 0.632813 -0.955078 0 + 0.894531 -1.44141 0 + 0.894531 -1.11719 0 + -0.00195313 -1.44141 0 + 0.326172 -1.44141 0 + 0.685547 -1.44141 0 + 0.580078 -1.1543 0 + 1.04492 -1.44141 0 + 0.720703 -1.0957 0 + 0.996094 -1.44141 0 + 1.24805 -1.43945 0 + 0.863281 -1.03906 0 + 1.61133 -1.43945 0 + 1.90625 -1.43945 0 + 1.42383 -0.908203 0 + 0.09375 0.560547 0 + 0.347656 0.560547 0 + 0.605469 1.06836 0 + 0.193359 -1.43945 0 + 0.599609 -1.43945 0 + 0.972656 -1.43945 0 + 0.675781 -0.771484 0 + 1.01367 -0.792969 0 + 0.550781 -0.794922 0 + 1.37695 -0.767578 0 + 0.634766 -0.609375 0 + 0.855469 -0.509766 0 + 0.601563 -0.511719 0 + 1.39648 -0.626953 0 + 0.486328 -0.263672 0 + 0.693359 -0.263672 0 + 1.54688 -0.263672 0 + 0.71875 0.265625 0 + 0.824219 0.222656 0 + 0.554688 0.222656 0 + 1.32031 0.285156 0 + 1.0957 0.691406 0 + 0.992188 0.685547 0 + 0.511719 0.691406 0 + 1.04492 0.681641 0 + 0.664063 1.09766 0 + 0.601563 1.06055 0 + 0.546875 1.09766 0 + 1.41992 1.04297 0 + 0.433594 1.46484 0 + 0.669922 1.44141 0 + 0.605469 1.44141 0 + 1.58203 1.46875 0 + 0.339844 1.46875 0 + 1.06836 1.9668 0 + 1.08398 1.93945 0 + 1.10156 1.93164 0 + 0.898438 1.93164 0 + 0.925781 1.9707 0 + 0.683594 1.9668 0 + 1.5625 2.28125 0 + -0.332031 0.898438 0 + 0.441406 0.4375 0 + 0.365234 1.94922 0 + -0.441406 2.28125 0 + 0.4375 2.28125 0 + 0.0449219 -0.00390625 0 + 0.183594 0.611328 0 + 1.4043 -0.306641 0 + 1.51953 -0.236328 0 + 0.994141 -0.0078125 0 + 0.886719 -0.0507813 0 + 0.480469 0.427734 0 + 0.470703 0.326172 0 + 1 0.320313 0 + 1.00586 0.400391 0 + -0.529297 -0.255859 0 + -0.445313 -0.318359 0 + 0.0820313 -0.0410156 0 + -0.363281 -0.355469 0 + 0.152344 -0.0683594 0 + 0.365234 -0.355469 0 + 0.449219 -0.306641 0 + 0.820313 0.509766 0 + 0.751953 0.462891 0 + 0.679688 -0.0078125 0 + 0.677734 0.507813 0 + 0.617188 0.509766 0 + 0.333984 0.443359 0 + 0.294922 0.472656 0 + 0.388672 0.462891 0 + 0.191406 0.744141 0 + 0.148438 0.697266 0 + 0.173828 0.322266 0 + 0.806641 0.294922 0 + 0.808594 0.349609 0 + 0.273438 0.443359 0 + 0.865234 0.677734 0 + 0.148438 0.355469 0 + 0.134766 0.306641 0 + -0.226563 1.04492 0 + -0.246094 1 0 + 0.705078 0.744141 0 + 0.71875 1.04492 0 + 0.673828 1.04492 0 + 1.23828 1.00781 0 + 1.25195 0.978516 0 + 0.330078 1 0 + 0.291016 0.978516 0 + -0.822266 1.0332 0 + -0.828125 0.994141 0 + 0.220703 0.28125 0 + 0.822266 0.275391 0 + 1.82227 1.00391 0 + 1.82813 0.994141 0 + -1.44141 1.21484 0 + 2.44141 1.21484 0 + -0.673828 -0.355469 0 + -0.599609 -0.423828 0 + -0.179688 -0.0800781 0 + 0.474609 0.400391 0 + 0.617188 0.373047 0 + 0.722656 0.802734 0 + 0.623047 0.820313 0 + 1.62695 -0.410156 0 + 1.70508 -0.34375 0 + 1.74414 -0.300781 0 + 1.28125 0.00585938 0 + -0.744141 -0.300781 0 + 0.0683594 0.347656 0 + 0.722656 -0.0722656 0 + 0.644531 0.355469 0 + 0.560547 0.347656 0 + 1.00781 0.427734 0 + 0.427734 0.626953 0 + 0.644531 0.0527344 0 + 0.648438 0.414063 0 + 0.632813 0.710938 0 + 0.917969 0.757813 0 + 0.787109 0.90625 0 + 0.121094 0.841797 0 + 1.27734 1.03906 0 + 1.27344 1.06445 0 + 0.822266 1.27148 0 + 0.787109 1.27734 0 + -0.263672 1.06445 0 + -0.265625 1.08008 0 + 1.26563 1.08008 0 + 1.44141 1.37891 0 + 0.822266 0.0429688 0 + 0.638672 0.378906 0 + -0.441406 1.37891 0 + 0.0488281 -0.365234 0 + 0.400391 -0.0839844 0 + 0.470703 0.951172 0 + 0.580078 0.599609 0 + 1.00977 0.705078 0 + 0.642578 0.980469 0 + 0.921875 0.0175781 0 + 0.513672 0.078125 0 + 0.0976563 1.06836 0 + 1.30664 0.318359 0 + 1.30273 0.345703 0 + 0.509766 -0.306641 0 + 0.542969 -0.306641 0 + -0.306641 1.32227 0 + -0.300781 1.35938 0 + 1.30078 0.359375 0 + 1.44141 0.660156 0 + 0.259766 0.660156 0 + 0.498047 0.34375 0 + -0.441406 1.66016 0 + 0.371094 0.652344 0 + 0.398438 0.623047 0 + 0.599609 0.785156 0 + 0.570313 0.802734 0 + 0.628906 0.650391 0 + 0.423828 0.804688 0 + 0.605469 0.570313 0 + 0.576172 0.607422 0 + 0.845703 1.02539 0 + 0.820313 1.04688 0 + 0.25 1.04688 0 + 1.0332 1.31641 0 + -0.103516 1.31641 0 + -0.457031 0.416016 0 + -0.0957031 0.699219 0 + 0.408203 -0.46875 0 + 0.40625 -0.107422 0 + 1.51953 0.486328 0 + 1.14453 0.763672 0 + 0.392578 0.835938 0 + 0.542969 0.382813 0 + 0.630859 0.888672 0 + 0.757813 1.10156 0 + 0.755859 1.12891 0 + 0.59375 0.753906 0 + 0.560547 0.757813 0 + 0.251953 1.12695 0 + 0.25 1.14258 0 + 0.75 1.14258 0 + 0.921875 1.44141 0 + 0.59375 0.105469 0 + 0.408203 0.441406 0 + 0.078125 1.44141 0 + 0.369141 0.0253906 0 + 0.394531 -0.00585938 0 + 0.677734 0.158203 0 + 0.644531 0.177734 0 + 0.650391 0.0117188 0 + 0.367188 0.169922 0 + 0.322266 0.158203 0 + 0.640625 0.177734 0 + 0.597656 0.169922 0 + 0.359375 0.177734 0 + 0.380859 0.158203 0 + 0.601563 0.189453 0 + 0.585938 0.214844 0 + 0.367188 0.402344 0 + 0.119141 0.625 0 + 0.078125 0.601563 0 + 0.894531 0.585938 0 + 0.880859 0.625 0 + -0.105469 0.214844 0 + -0.078125 0.189453 0 + 0.246094 0.417969 0 + 1.11914 0.203125 0 + 0.753906 0.417969 0 + 0.710938 0.5625 0 + 0.861328 0.507813 0 + 0.902344 0.519531 0 + 1.03125 0.455078 0 + 0.585938 0.648438 0 + 0.746094 0.582031 0 + 0.943359 0.541016 0 + 0.505859 0.748047 0 + 0.625 0.662109 0 + 0.667969 0.667969 0 + 0.808594 0.599609 0 + 0.412109 0.763672 0 + 0.507813 0.779297 0 + 0.59375 0.769531 0 + 0.701172 0.673828 0 + 0.511719 0.830078 0 + 0.650391 0.779297 0 + 0.273438 0.726563 0 + 0.388672 0.792969 0 + 0.464844 0.916016 0 + 0.585938 0.830078 0 + 0.513672 1.2793 0 + 0.482422 1.13672 0 + 0.529297 1.13281 0 + 0.443359 1.0293 0 + 0.509766 1.01953 0 + 0.529297 0.921875 0 + 0.390625 1.02734 0 + 0.505859 1.38867 0 + 0.566406 1.25 0 + 0.626953 1.13672 0 + 0.560547 1.01563 0 + 0.572266 1.3457 0 + 0.679688 1.25586 0 + 0.691406 1.12695 0 + 0.625 1.42383 0 + 0.630859 1.35352 0 + 0.730469 1.26172 0 + 0.705078 1.37305 0 + 0.251953 0.742188 0 + 0.164063 0.621094 0 + 0.103516 0.587891 0 + 0.101563 0.425781 0 + 0.03125 0.433594 0 + 0.0507813 0.609375 0 + 0.0976563 0.708984 0 + 0.123047 0.705078 0 + 0.222656 0.761719 0 + 0.382813 0.839844 0 + 0.392578 0.935547 0 + 0.212891 0.777344 0 + 0.347656 0.853516 0 + 0.355469 0.935547 0 +endnode +node aabb wok + parent wsf10_p01_01 + position 0 0 0 + wirecolor 0.882353 0.882353 0.882353 + bitmap NULL + orientation 0 0 0 0 + render 0 + shadow 0 + verts 121 + -5 -5 0 + -4 -5 0 + -3 -5 0 + -2 -5 -0.3 + -1 -5 -0.64 + 0 -5 -0.64 + 1 -5 -0.64 + 2 -5 -0.3 + 3 -5 0 + 4 -5 0 + 5 -5 0 + -5 -4 0 + -4 -4 0 + -3 -4 0 + -2 -4 -0.45 + -1 -4 -0.64 + 0 -4 -0.64 + 1 -4 -0.76 + 2 -4 -0.3 + 3 -4 0 + 4 -4 0 + 5 -4 0 + -5 -3 0 + -4 -3 0 + -3 -3 0 + -2 -3 -0.64 + -1 -3 -0.64 + 0 -3 -0.64 + 1 -3 -0.64 + 2.31 -2.72 -0.64 + 3.31 -2.68 0 + 4 -3 0 + 5 -3 0 + -5 -2 0 + -4 -2 0.07 + -3 -2 0.21 + -1.8 -2 -0.64 + -1 -2 -0.64 + 0 -2 -0.64 + 1 -2 -0.64 + 2 -2 -0.64 + 2.73 -2 -0.19 + 4 -2 0.03 + 5 -2 0 + -5 -1 0 + -4 -1 0.17 + -2.7 -1 0.1 + -1.9 -1 -0.64 + -1 -1 -0.64 + 0 -1 -0.64 + 1 -1 -0.64 + 1.73 -1 -0.64 + 2.63 -1 -0.12 + 4.21 -1 0.03 + 5 -1 0 + -5 0 0 + -4 0 0.16 + -2.76 0 0.07 + -2.35 0 -0.64 + -1 0 -0.64 + 0 0 -0.64 + 1 0 -0.64 + 1.78 -0.11 -0.46 + 3 0 0.01 + 4 0 -0.05 + 5 0 0 + -5 1 0 + -4 1 0.38 + -3.01 0.72 0.19 + -2.56 1 -0.64 + -1 1 -0.64 + 0 1 -0.64 + 1 1 -0.64 + 2.35 1 -0.42 + 3 1 -0.24 + 4 1 0.12 + 5 1 0 + -5 2 0 + -4 2 0 + -3.09 2 -0.19 + -2.19 2 -0.56 + -1 2 -0.64 + 0 2 -0.64 + 1 2 -0.64 + 2 2 -0.52 + 2.58 2 -0.31 + 4 2 0.12 + 5 2 0 + -5 3 0 + -4 3 0 + -2.62 3 -0.23 + -1.57 3 -0.64 + -1 3 -0.64 + 0 3 -0.64 + 1 3 -0.64 + 2 3.26 -0.37 + 3 3 -0.15 + 4 3 0.03 + 5 3 0 + -5 4 0 + -4 4 0 + -2.92 4 0 + -1.91 4 -0.42 + -1 4 -0.53 + 0 4 -0.59 + 1 4 -0.67 + 1.78 4 -0.37 + 2.81 4 -0.08 + 4 4 0.13 + 5 4 0 + -5 5 0 + -4 5 0 + -3 5 0 + -2 5 -0.3 + -1 5 -0.64 + 0 5 -0.64 + 1 5 -0.64 + 2 5 -0.3 + 3 5 0 + 4 5 0 + 5 5 0 + faces 200 + 11 0 12 1 0 0 0 3 + 1 12 0 1 0 0 0 3 + 12 1 13 1 0 0 0 3 + 2 13 1 1 0 0 0 3 + 13 2 14 2 0 0 0 3 + 3 14 2 4 0 0 0 3 + 14 3 15 4 0 0 0 6 + 4 15 3 1 0 0 0 6 + 15 4 16 8 0 0 0 6 + 5 16 4 8 0 0 0 6 + 16 5 17 8 0 0 0 6 + 6 17 5 8 0 0 0 6 + 17 6 18 1 0 0 0 6 + 7 18 6 1 0 0 0 6 + 18 7 19 1 0 0 0 3 + 8 19 7 1 0 0 0 3 + 19 8 20 2 0 0 0 3 + 9 20 8 2 0 0 0 3 + 20 9 21 2 0 0 0 3 + 10 21 9 2 0 0 0 3 + 22 11 23 1 0 0 0 3 + 12 23 11 1 0 0 0 3 + 23 12 24 1 0 0 0 3 + 13 24 12 1 0 0 0 3 + 24 13 25 4 0 0 0 3 + 14 25 13 2 0 0 0 3 + 25 14 26 1 0 0 0 6 + 15 26 14 4 0 0 0 6 + 26 15 27 8 0 0 0 6 + 16 27 15 8 0 0 0 6 + 27 16 28 8 0 0 0 6 + 17 28 16 8 0 0 0 6 + 28 17 29 8 0 0 0 6 + 18 29 17 4 0 0 0 6 + 29 18 30 4 0 0 0 3 + 19 30 18 1 0 0 0 3 + 30 19 31 2 0 0 0 3 + 20 31 19 2 0 0 0 3 + 31 20 32 2 0 0 0 3 + 21 32 20 2 0 0 0 3 + 33 22 34 1 0 0 0 3 + 23 34 22 1 0 0 0 3 + 34 23 35 1 0 0 0 3 + 24 35 23 2 0 0 0 3 + 35 24 36 4 0 0 0 3 + 25 36 24 4 0 0 0 3 + 36 25 37 8 0 0 0 6 + 26 37 25 8 0 0 0 6 + 37 26 38 8 0 0 0 6 + 27 38 26 8 0 0 0 6 + 38 27 39 8 0 0 0 6 + 28 39 27 8 0 0 0 6 + 39 28 40 8 0 0 0 6 + 29 40 28 8 0 0 0 6 + 40 29 41 16 0 0 0 3 + 30 41 29 16 0 0 0 3 + 41 30 42 2 0 0 0 3 + 31 42 30 2 0 0 0 3 + 42 31 43 2 0 0 0 3 + 32 43 31 2 0 0 0 3 + 44 33 45 1 0 0 0 3 + 34 45 33 1 0 0 0 3 + 45 34 46 1 0 0 0 3 + 35 46 34 8 0 0 0 3 + 46 35 47 16 0 0 0 3 + 36 47 35 32 0 0 0 3 + 47 36 48 8 0 0 0 6 + 37 48 36 8 0 0 0 6 + 48 37 49 8 0 0 0 6 + 38 49 37 8 0 0 0 6 + 49 38 50 8 0 0 0 6 + 39 50 38 8 0 0 0 6 + 50 39 51 8 0 0 0 6 + 40 51 39 8 0 0 0 6 + 51 40 52 16 0 0 0 3 + 41 52 40 16 0 0 0 3 + 52 41 53 2 0 0 0 3 + 42 53 41 2 0 0 0 3 + 53 42 54 2 0 0 0 3 + 43 54 42 2 0 0 0 3 + 55 44 56 1 0 0 0 3 + 45 56 44 1 0 0 0 3 + 56 45 57 1 0 0 0 3 + 46 57 45 1 0 0 0 3 + 57 46 58 2 0 0 0 3 + 47 58 46 4 0 0 0 3 + 58 47 59 8 0 0 0 6 + 48 59 47 8 0 0 0 6 + 59 48 60 8 0 0 0 6 + 49 60 48 8 0 0 0 6 + 60 49 61 8 0 0 0 6 + 50 61 49 8 0 0 0 6 + 61 50 62 8 0 0 0 6 + 51 62 50 1 0 0 0 6 + 62 51 63 2 0 0 0 3 + 52 63 51 4 0 0 0 3 + 63 52 64 1 0 0 0 3 + 53 64 52 2 0 0 0 3 + 64 53 65 2 0 0 0 3 + 54 65 53 2 0 0 0 3 + 66 55 67 2 0 0 0 7 + 56 67 55 4 0 0 0 7 + 67 56 68 1 0 0 0 7 + 57 68 56 1 0 0 0 3 + 68 57 69 2 0 0 0 3 + 58 69 57 2 0 0 0 3 + 69 58 70 8 0 0 0 6 + 59 70 58 8 0 0 0 6 + 70 59 71 8 0 0 0 6 + 60 71 59 8 0 0 0 6 + 71 60 72 8 0 0 0 6 + 61 72 60 8 0 0 0 6 + 72 61 73 8 0 0 0 6 + 62 73 61 8 0 0 0 6 + 73 62 74 8 0 0 0 3 + 63 74 62 8 0 0 0 3 + 74 63 75 8 0 0 0 3 + 64 75 63 1 0 0 0 3 + 75 64 76 1 0 0 0 3 + 65 76 64 2 0 0 0 3 + 77 66 78 1 0 0 0 3 + 67 78 66 8 0 0 0 7 + 78 67 79 16 0 0 0 7 + 68 79 67 16 0 0 0 7 + 79 68 80 16 0 0 0 7 + 69 80 68 4 0 0 0 3 + 80 69 81 8 0 0 0 6 + 70 81 69 8 0 0 0 6 + 81 70 82 8 0 0 0 6 + 71 82 70 8 0 0 0 6 + 82 71 83 8 0 0 0 6 + 72 83 71 8 0 0 0 6 + 83 72 84 8 0 0 0 6 + 73 84 72 8 0 0 0 6 + 84 73 85 8 0 0 0 3 + 74 85 73 8 0 0 0 3 + 85 74 86 8 0 0 0 3 + 75 86 74 8 0 0 0 3 + 86 75 87 1 0 0 0 3 + 76 87 75 1 0 0 0 3 + 88 77 89 1 0 0 0 3 + 78 89 77 1 0 0 0 3 + 89 78 90 1 0 0 0 3 + 79 90 78 1 0 0 0 7 + 90 79 91 2 0 0 0 7 + 80 91 79 2 0 0 0 7 + 91 80 92 8 0 0 0 6 + 81 92 80 8 0 0 0 6 + 92 81 93 8 0 0 0 6 + 82 93 81 8 0 0 0 6 + 93 82 94 8 0 0 0 6 + 83 94 82 8 0 0 0 6 + 94 83 95 8 0 0 0 6 + 84 95 83 8 0 0 0 6 + 95 84 96 8 0 0 0 3 + 85 96 84 8 0 0 0 3 + 96 85 97 8 0 0 0 3 + 86 97 85 8 0 0 0 3 + 97 86 98 1 0 0 0 3 + 87 98 86 1 0 0 0 3 + 99 88 100 1 0 0 0 3 + 89 100 88 1 0 0 0 3 + 100 89 101 1 0 0 0 3 + 90 101 89 1 0 0 0 3 + 101 90 102 2 0 0 0 3 + 91 102 90 2 0 0 0 6 + 102 91 103 8 0 0 0 6 + 92 103 91 8 0 0 0 6 + 103 92 104 8 0 0 0 6 + 93 104 92 8 0 0 0 6 + 104 93 105 8 0 0 0 6 + 94 105 93 8 0 0 0 6 + 105 94 106 8 0 0 0 6 + 95 106 94 8 0 0 0 6 + 106 95 107 8 0 0 0 3 + 96 107 95 8 0 0 0 3 + 107 96 108 8 0 0 0 3 + 97 108 96 8 0 0 0 3 + 108 97 109 1 0 0 0 3 + 98 109 97 1 0 0 0 3 + 110 99 111 1 0 0 0 3 + 100 111 99 1 0 0 0 3 + 111 100 112 1 0 0 0 3 + 101 112 100 1 0 0 0 3 + 112 101 113 2 0 0 0 3 + 102 113 101 2 0 0 0 3 + 113 102 114 2 0 0 0 6 + 103 114 102 8 0 0 0 6 + 114 103 115 8 0 0 0 6 + 104 115 103 8 0 0 0 6 + 115 104 116 8 0 0 0 6 + 105 116 104 8 0 0 0 6 + 116 105 117 8 0 0 0 6 + 106 117 105 8 0 0 0 6 + 117 106 118 8 0 0 0 3 + 107 118 106 8 0 0 0 3 + 118 107 119 1 0 0 0 3 + 108 119 107 2 0 0 0 3 + 119 108 120 2 0 0 0 3 + 109 120 108 1 0 0 0 3 + aabb -5 -5 -0.76 5 5 0.38 -1 + -5 -5 -0.64 0 5 0.38 -1 + -5 -5 -0.64 0 0 0.21 -1 + -5 -5 -0.64 -1.8 0 0.21 -1 + -5 -5 -0.64 -2 -2 0.21 -1 + -5 -5 0 -4 -2 0.07 -1 + -5 -5 0 -4 -4 0 -1 + -5 -5 0 -4 -4 0 0 + -5 -5 0 -4 -4 0 1 + -5 -4 0 -4 -2 0.07 -1 + -5 -4 0 -4 -3 0 -1 + -5 -4 0 -4 -3 0 20 + -5 -4 0 -4 -3 0 21 + -5 -3 0 -4 -2 0.07 41 + -4 -5 -0.64 -2 -2 0.21 -1 + -4 -5 -0.45 -2 -4 0 -1 + -4 -5 0 -3 -4 0 -1 + -4 -5 0 -3 -4 0 2 + -4 -5 0 -3 -4 0 3 + -3 -5 -0.45 -2 -4 0 4 + -4 -4 -0.64 -2 -2 0.21 -1 + -4 -4 0 -3 -2 0.21 -1 + -4 -4 0 -3 -3 0 -1 + -4 -4 0 -3 -3 0 22 + -4 -4 0 -3 -3 0 23 + -4 -3 0 -3 -2 0.21 43 + -3 -4 -0.64 -2 -3 0 24 + -5 -3 -0.64 -1.8 0 0.21 -1 + -5 -3 0 -3 0 0.21 -1 + -5 -3 0 -3 -1 0.21 -1 + -5 -3 0 -4 -1 0.17 -1 + -5 -3 0 -4 -2 0.07 40 + -5 -2 0 -4 -1 0.17 61 + -4 -3 0 -3 -2 0.21 42 + -5 -2 0 -4 0 0.17 -1 + -5 -2 0 -4 -1 0.17 60 + -5 -1 0 -4 0 0.17 -1 + -5 -1 0 -4 0 0.16 80 + -5 -1 0 -4 0 0.17 81 + -4 -3 -0.64 -1.8 0 0.21 -1 + -4 -3 -0.64 -1.8 -1 0.21 -1 + -4 -2 0.07 -2.7 -1 0.21 -1 + -4 -2 0.07 -2.7 -1 0.17 62 + -4 -2 0.07 -2.7 -1 0.21 63 + -3 -3 -0.64 -1.8 -1 0.21 -1 + -3 -3 -0.64 -1.8 -2 0.21 44 + -3 -2 -0.64 -1.9 -1 0.21 64 + -4 -1 -0.64 -2.35 0 0.17 -1 + -4 -1 0.07 -2.7 0 0.17 -1 + -4 -1 0.07 -2.76 0 0.17 82 + -4 -1 0.07 -2.7 0 0.17 83 + -2.76 -1 -0.64 -2.35 0 0.1 84 + -3 -5 -0.64 0 0 0.21 -1 + -3 -5 -0.64 0 -2 0 -1 + -3 -5 -0.64 -1 -2 0 -1 + -3 -5 -0.64 -1 -4 0 -1 + -3 -5 -0.45 -2 -4 0 5 + -2 -5 -0.64 -1 -4 -0.3 -1 + -2 -5 -0.64 -1 -4 -0.3 6 + -2 -5 -0.64 -1 -4 -0.3 7 + -3 -4 -0.64 -1 -2 0 -1 + -3 -4 -0.64 -1.8 -2 0 -1 + -3 -4 -0.64 -2 -3 0 25 + -3 -3 -0.64 -1.8 -2 0 45 + -2 -4 -0.64 -1 -2 -0.45 -1 + -2 -4 -0.64 -1 -3 -0.45 -1 + -2 -4 -0.64 -1 -3 -0.45 26 + -2 -4 -0.64 -1 -3 -0.45 27 + -2 -3 -0.64 -1 -2 -0.64 47 + -1 -5 -0.64 0 -2 -0.64 -1 + -1 -5 -0.64 0 -4 -0.64 -1 + -1 -5 -0.64 0 -4 -0.64 8 + -1 -5 -0.64 0 -4 -0.64 9 + -1 -4 -0.64 0 -2 -0.64 -1 + -1 -4 -0.64 0 -3 -0.64 -1 + -1 -4 -0.64 0 -3 -0.64 28 + -1 -4 -0.64 0 -3 -0.64 29 + -1 -3 -0.64 0 -2 -0.64 49 + -3 -3 -0.64 0 0 0.21 -1 + -3 -3 -0.64 -1 0 0.21 -1 + -3 -3 -0.64 -1 -1 0.21 -1 + -3 -2 -0.64 -1.8 -1 0.21 65 + -2 -3 -0.64 -1 -1 -0.64 -1 + -2 -3 -0.64 -1 -2 -0.64 46 + -1.9 -2 -0.64 -1 -1 -0.64 -1 + -1.8 -2 -0.64 -1 -1 -0.64 67 + -1.9 -2 -0.64 -1 -1 -0.64 66 + -2.7 -1 -0.64 -1 0 0.1 -1 + -2.7 -1 -0.64 -1.9 0 0.1 85 + -2.35 -1 -0.64 -1 0 -0.64 -1 + -2.35 -1 -0.64 -1 0 -0.64 86 + -1.9 -1 -0.64 -1 0 -0.64 87 + -1 -3 -0.64 0 0 -0.64 -1 + -1 -3 -0.64 0 -1 -0.64 -1 + -1 -3 -0.64 0 -2 -0.64 48 + -1 -2 -0.64 0 -1 -0.64 -1 + -1 -2 -0.64 0 -1 -0.64 68 + -1 -2 -0.64 0 -1 -0.64 69 + -1 -1 -0.64 0 0 -0.64 -1 + -1 -1 -0.64 0 0 -0.64 88 + -1 -1 -0.64 0 0 -0.64 89 + -5 0 -0.64 0 5 0.38 -1 + -5 0 -0.64 -2 5 0.38 -1 + -5 0 -0.64 -2.19 2 0.38 -1 + -5 0 -0.19 -3.01 2 0.38 -1 + -5 0 0 -3.01 1 0.38 -1 + -5 0 0 -4 1 0.38 -1 + -5 0 0 -4 1 0.38 100 + -5 0 0 -4 1 0.38 101 + -4 0 0.16 -3.01 1 0.38 102 + -5 1 -0.19 -3.09 2 0.38 -1 + -5 1 0 -4 2 0.38 -1 + -5 1 0 -4 2 0 120 + -5 1 0 -4 2 0.38 121 + -4 1 -0.19 -3.09 2 0.38 122 + -4 0 -0.64 -2.19 2 0.38 -1 + -4 0 -0.64 -2.35 1 0.19 -1 + -4 0 0.07 -2.76 0.72 0.19 103 + -3.01 0 -0.64 -2.35 1 0.19 -1 + -2.76 0 -0.64 -2.35 1 0.07 105 + -3.01 0 -0.64 -2.56 1 0.19 104 + -4 0.72 -0.64 -2.19 2 0.38 -1 + -4 0.72 -0.19 -3.01 2 0.38 123 + -3.09 0.72 -0.64 -2.19 2 0.19 -1 + -3.01 0.72 -0.64 -2.19 2 0.19 125 + -3.09 0.72 -0.56 -2.19 2 0.19 124 + -5 2 -0.3 -2 5 0 -1 + -5 2 0 -4 5 0 -1 + -5 2 0 -4 4 0 -1 + -5 2 0 -4 3 0 -1 + -5 2 0 -4 3 0 140 + -5 2 0 -4 3 0 141 + -5 3 0 -4 4 0 161 + -5 3 0 -4 5 0 -1 + -5 3 0 -4 4 0 160 + -5 4 0 -4 5 0 -1 + -5 4 0 -4 5 0 180 + -5 4 0 -4 5 0 181 + -4 2 -0.3 -2 5 0 -1 + -4 2 -0.23 -2.62 4 0 -1 + -4 2 -0.23 -2.62 3 0 -1 + -4 2 -0.23 -2.62 3 0 142 + -4 2 -0.23 -2.62 3 0 143 + -4 3 -0.23 -2.62 4 0 -1 + -4 3 0 -2.92 4 0 162 + -4 3 -0.23 -2.62 4 0 163 + -4 4 -0.3 -2 5 0 -1 + -4 4 0 -2.92 5 0 -1 + -4 4 0 -3 5 0 182 + -4 4 0 -2.92 5 0 183 + -3 4 -0.3 -2 5 0 184 + -3.09 0 -0.64 0 5 0 -1 + -3.09 0 -0.64 0 3 -0.19 -1 + -3.09 0 -0.64 -1 3 -0.19 -1 + -2.56 0 -0.64 -1 2 -0.64 -1 + -2.56 0 -0.64 -1 1 -0.64 -1 + -2.56 0 -0.64 -1 1 -0.64 106 + -2.35 0 -0.64 -1 1 -0.64 107 + -2.56 1 -0.64 -1 2 -0.64 127 + -3.09 1 -0.64 -1 3 -0.19 -1 + -3.09 1 -0.64 -1 3 -0.19 -1 + -3.09 2 -0.64 -1.57 3 -0.19 145 + -2.56 1 -0.64 -1 2 -0.56 126 + -2.19 2 -0.64 -1 3 -0.56 147 + -1 0 -0.64 0 3 -0.64 -1 + -1 0 -0.64 0 1 -0.64 -1 + -1 0 -0.64 0 1 -0.64 108 + -1 0 -0.64 0 1 -0.64 109 + -1 1 -0.64 0 3 -0.64 -1 + -1 1 -0.64 0 2 -0.64 -1 + -1 1 -0.64 0 2 -0.64 128 + -1 1 -0.64 0 2 -0.64 129 + -1 2 -0.64 0 3 -0.64 149 + -3.09 2 -0.64 0 5 0 -1 + -3.09 2 -0.64 -1 5 0 -1 + -3.09 2 -0.64 -1 4 -0.19 -1 + -3.09 2 -0.64 -1.57 4 -0.19 -1 + -3.09 2 -0.64 -1.57 3 -0.19 144 + -2.62 3 -0.64 -1.57 4 -0.23 165 + -2.19 2 -0.64 -1 3 -0.56 146 + -2.92 3 -0.64 -1 5 0 -1 + -2.92 3 -0.64 -1 4 0 -1 + -2.92 3 -0.42 -1.91 4 0 164 + -1.91 3 -0.64 -1 4 -0.42 166 + -2.92 4 -0.64 -1 5 0 -1 + -2.92 4 -0.42 -1.91 5 0 185 + -2 4 -0.64 -1 5 -0.3 186 + -1.91 2 -0.64 0 5 -0.42 -1 + -1.57 2 -0.64 0 4 -0.53 -1 + -1 2 -0.64 0 3 -0.64 148 + -1.57 3 -0.64 0 4 -0.53 -1 + -1.57 3 -0.64 -1 4 -0.53 167 + -1 3 -0.64 0 4 -0.53 -1 + -1 3 -0.64 0 4 -0.53 168 + -1 3 -0.64 0 4 -0.59 169 + -1.91 4 -0.64 0 5 -0.42 -1 + -1.91 4 -0.64 -1 5 -0.42 187 + -1 4 -0.64 0 5 -0.53 -1 + -1 4 -0.64 0 5 -0.53 188 + -1 4 -0.64 0 5 -0.53 189 + 0 -5 -0.76 5 5 0.13 -1 + 0 -5 -0.76 5 0 0.03 -1 + 0 -5 -0.76 3 0 0.01 -1 + 0 -5 -0.76 3 -2 0 -1 + 0 -5 -0.76 1 -2 -0.64 -1 + 0 -5 -0.76 1 -3 -0.64 -1 + 0 -5 -0.76 1 -4 -0.64 -1 + 0 -5 -0.76 1 -4 -0.64 10 + 0 -5 -0.76 1 -4 -0.64 11 + 0 -4 -0.76 1 -3 -0.64 31 + 0 -4 -0.64 1 -2 -0.64 -1 + 0 -4 -0.64 1 -3 -0.64 30 + 0 -3 -0.64 1 -2 -0.64 -1 + 0 -3 -0.64 1 -2 -0.64 50 + 0 -3 -0.64 1 -2 -0.64 51 + 1 -5 -0.76 3 -2 0 -1 + 1 -5 -0.76 3 -4 0 -1 + 1 -5 -0.76 2 -4 -0.3 -1 + 1 -5 -0.76 2 -4 -0.3 12 + 1 -5 -0.64 2 -4 -0.3 13 + 2 -5 -0.3 3 -4 0 14 + 1 -4 -0.76 2.31 -2 -0.3 -1 + 1 -4 -0.76 2.31 -2.72 -0.3 -1 + 1 -4 -0.76 2.31 -2.72 -0.64 32 + 1 -4 -0.76 2.31 -2.72 -0.3 33 + 1 -3 -0.64 2.31 -2 -0.64 -1 + 1 -3 -0.64 2 -2 -0.64 52 + 1 -3 -0.64 2.31 -2 -0.64 53 + 0 -2.72 -0.64 3 0 0.01 -1 + 0 -2 -0.64 1.78 0 -0.46 -1 + 0 -2 -0.64 1.73 -1 -0.64 -1 + 0 -2 -0.64 1 -1 -0.64 -1 + 0 -2 -0.64 1 -1 -0.64 70 + 0 -2 -0.64 1 -1 -0.64 71 + 1 -2 -0.64 1.73 -1 -0.64 72 + 0 -1 -0.64 1.78 0 -0.46 -1 + 0 -1 -0.64 1 0 -0.64 -1 + 0 -1 -0.64 1 0 -0.64 90 + 0 -1 -0.64 1 0 -0.64 91 + 1 -1 -0.64 1.78 0 -0.46 92 + 1 -2.72 -0.64 3 0 0.01 -1 + 1 -2.72 -0.64 2.73 -1 -0.12 -1 + 1 -2 -0.64 2.63 -1 -0.12 -1 + 1 -2 -0.64 2 -1 -0.64 73 + 1.73 -2 -0.64 2.63 -1 -0.12 74 + 2 -2.72 -0.64 2.73 -1 -0.12 -1 + 2 -2.72 -0.64 2.73 -2 -0.19 54 + 2 -2 -0.64 2.73 -1 -0.12 75 + 1 -1 -0.64 3 0 0.01 -1 + 1 -1 -0.64 1.78 -0.11 -0.46 93 + 1.73 -1 -0.64 3 0 0.01 -1 + 1.73 -1 -0.64 3 0 0.01 94 + 1.73 -1 -0.64 3 0 0.01 95 + 2 -5 -0.64 5 0 0.03 -1 + 2 -5 -0.64 5 -2 0 -1 + 2 -5 -0.64 4 -2.68 0 -1 + 2 -5 -0.3 4 -4 0 -1 + 2 -5 -0.3 3 -4 0 15 + 3 -5 0 4 -4 0 -1 + 3 -5 0 4 -4 0 16 + 3 -5 0 4 -4 0 17 + 2 -4 -0.64 4 -2.68 0 -1 + 2 -4 -0.64 3.31 -2.68 0 -1 + 2 -4 -0.3 3.31 -2.68 0 35 + 2 -4 -0.64 3.31 -2.68 0 34 + 3 -4 0 4 -2.68 0 -1 + 3 -4 0 4 -3 0 37 + 3 -4 0 4 -2.68 0 36 + 4 -5 0 5 -2 0 -1 + 4 -5 0 5 -4 0 -1 + 4 -5 0 5 -4 0 18 + 4 -5 0 5 -4 0 19 + 4 -4 0 5 -2 0 -1 + 4 -4 0 5 -3 0 -1 + 4 -4 0 5 -3 0 38 + 4 -4 0 5 -3 0 39 + 4 -3 0 5 -2 0 59 + 2.31 -3 -0.64 5 0 0.03 -1 + 2.31 -3 -0.64 5 -1 0.03 -1 + 2.31 -2.72 -0.64 4.21 -1 0.03 -1 + 2.31 -2.72 -0.64 3.31 -2 0 55 + 2.73 -2.68 -0.19 4.21 -1 0.03 -1 + 2.73 -2.68 -0.19 4 -2 0.03 56 + 2.73 -2 -0.19 4.21 -1 0.03 77 + 3.31 -3 0 5 -1 0.03 -1 + 3.31 -3 0 5 -2 0.03 -1 + 3.31 -3 0 4 -2 0.03 57 + 4 -3 0 5 -2 0.03 58 + 4 -2 0 5 -1 0.03 79 + 2.63 -2 -0.19 5 0 0.03 -1 + 2.63 -2 -0.19 4.21 0 0.03 -1 + 2.63 -2 -0.19 4.21 -1 0.03 76 + 2.63 -1 -0.12 4.21 0 0.03 -1 + 2.63 -1 -0.12 4 0 0.01 96 + 2.63 -1 -0.12 4.21 0 0.03 97 + 4 -2 -0.05 5 0 0.03 -1 + 4 -2 0 5 -1 0.03 78 + 4 -1 -0.05 5 0 0.03 -1 + 4 -1 -0.05 5 0 0.03 98 + 4.21 -1 0 5 0 0.03 99 + 0 -0.11 -0.67 5 5 0.13 -1 + 0 -0.11 -0.64 5 3.26 0.12 -1 + 0 -0.11 -0.64 3 3.26 -0.24 -1 + 0 -0.11 -0.64 3 1 -0.24 -1 + 0 0 -0.64 1 1 -0.64 -1 + 0 0 -0.64 1 1 -0.64 110 + 0 0 -0.64 1 1 -0.64 111 + 1 -0.11 -0.64 3 1 -0.24 -1 + 1 -0.11 -0.64 2.35 1 -0.42 -1 + 1 0 -0.64 2.35 1 -0.42 112 + 1 -0.11 -0.64 2.35 1 -0.42 113 + 1.78 -0.11 -0.46 3 1 -0.24 114 + 0 1 -0.64 2.58 3.26 -0.31 -1 + 0 1 -0.64 1 3 -0.64 -1 + 0 1 -0.64 1 2 -0.64 -1 + 0 1 -0.64 1 2 -0.64 130 + 0 1 -0.64 1 2 -0.64 131 + 0 2 -0.64 1 3 -0.64 151 + 1 1 -0.64 2.58 3.26 -0.31 -1 + 1 1 -0.64 2.58 2 -0.31 -1 + 1 1 -0.64 2.35 2 -0.42 -1 + 1 1 -0.64 2 2 -0.52 132 + 1 1 -0.64 2.35 2 -0.42 133 + 2 1 -0.52 2.58 2 -0.31 134 + 1 2 -0.64 2 3.26 -0.37 153 + 1.78 -0.11 -0.52 5 3 0.12 -1 + 1.78 -0.11 -0.52 4 3 0.12 -1 + 1.78 -0.11 -0.46 4 1 0.12 -1 + 1.78 -0.11 -0.46 3 1 0.01 115 + 3 0 -0.24 4 1 0.12 -1 + 3 0 -0.24 4 1 0.12 116 + 3 0 -0.05 4 1 0.12 117 + 2 1 -0.52 4 3 0.12 -1 + 2 1 -0.52 3 3 -0.15 -1 + 2.35 1 -0.42 3 2 -0.24 135 + 2 2 -0.52 3 3 -0.15 155 + 2.58 1 -0.31 4 3 0.12 -1 + 2.58 1 -0.31 4 2 0.12 -1 + 2.58 1 -0.31 4 2 0.12 136 + 3 1 -0.24 4 2 0.12 137 + 2.58 2 -0.31 4 3 0.12 157 + 4 0 -0.05 5 3 0.12 -1 + 4 0 -0.05 5 1 0.12 -1 + 4 0 -0.05 5 1 0.12 118 + 4 0 -0.05 5 1 0 119 + 4 1 0 5 3 0.12 -1 + 4 1 0 5 2 0.12 -1 + 4 1 0 5 2 0.12 138 + 4 1 0 5 2 0.12 139 + 4 2 0 5 3 0.12 159 + 0 2 -0.67 5 5 0.13 -1 + 0 2 -0.67 3 5 0 -1 + 0 2 -0.67 1 5 -0.59 -1 + 0 2 -0.67 1 4 -0.59 -1 + 0 2 -0.64 1 3 -0.64 150 + 0 3 -0.67 1 4 -0.59 -1 + 0 3 -0.67 1 4 -0.59 170 + 0 3 -0.67 1 4 -0.64 171 + 0 4 -0.67 1 5 -0.59 -1 + 0 4 -0.64 1 5 -0.59 190 + 0 4 -0.67 1 5 -0.59 191 + 1 2 -0.67 3 5 0 -1 + 1 2 -0.67 3 4 -0.15 -1 + 1 2 -0.67 2 4 -0.37 -1 + 1 2 -0.64 2 3.26 -0.37 152 + 1 3 -0.67 2 4 -0.37 -1 + 1 3 -0.67 1.78 4 -0.37 172 + 1 3 -0.64 2 4 -0.37 173 + 2 2 -0.52 3 3.26 -0.15 154 + 1 3.26 -0.67 3 5 0 -1 + 1 4 -0.67 2 5 -0.3 -1 + 1 4 -0.67 2 5 -0.3 192 + 1 4 -0.67 2 5 -0.3 193 + 1.78 3.26 -0.37 3 5 0 -1 + 1.78 3.26 -0.37 2.81 4 -0.08 174 + 1.78 4 -0.37 3 5 0 194 + 1.78 2 -0.37 5 5 0.13 -1 + 1.78 2 -0.37 4 5 0.13 -1 + 2 2 -0.37 4 4 0.13 -1 + 2 3 -0.37 3 4 -0.08 175 + 2.58 2 -0.31 4 4 0.13 -1 + 2.58 2 -0.31 4 3 0.03 156 + 2.81 3 -0.15 4 4 0.13 -1 + 2.81 3 -0.15 4 4 0.13 176 + 3 3 -0.15 4 4 0.13 177 + 1.78 4 -0.37 4 5 0.13 -1 + 1.78 4 -0.37 3 5 0 195 + 2.81 4 -0.08 4 5 0.13 -1 + 2.81 4 -0.08 4 5 0 196 + 2.81 4 -0.08 4 5 0.13 197 + 4 2 0 5 5 0.13 -1 + 4 2 0 5 4 0.13 -1 + 4 2 0 5 3 0.12 158 + 4 3 0 5 4 0.13 -1 + 4 3 0 5 4 0.13 178 + 4 3 0 5 4 0.03 179 + 4 4 0 5 5 0.13 -1 + 4 4 0 5 5 0.13 198 + 4 4 0 5 5 0.13 199 +endnode +node dummy wsf10_p01_01a + parent wsf10_p01_01 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 1 0 0 +endnode +node dummy cm3_repair_1 + parent wsf10_p01_01a + position 0 0 0 + orientation 0 0 -1 -3.14159 + wirecolor 0.603922 0.603922 0.898039 +endnode +node trimesh water + parent cm3_repair_1 + position 5.49674e-07 4.1391e-06 -0.4 + orientation 0 0 -1 -3.14159 + wirecolor 0.109804 0.109804 0.109804 + tilefade 0 + scale 1 + render 1 + beaming 0 + inheritcolor 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + center 0 0 0 + bitmap nwr_sfwater01 + rotatetexture 1 + shadow 0 + verts 121 + -5 -5 0 + -4 -5 0 + -3 -5 0 + -2 -5 0 + -1 -5 0 + 0 -5 0 + 1 -5 0 + 2 -5 0 + 3 -5 0 + 4 -5 0 + 5 -5 0 + -5 -4 0 + -4 -4 0 + -3 -4 0 + -2 -4 0 + -1 -4 0 + 0 -4 0 + 1 -4 0 + 2 -4 0 + 3 -4 0 + 4 -4 0 + 5 -4 0 + -5 -3 0 + -4 -3 0 + -3 -3 0 + -2 -3 0 + -1 -3 0 + 0 -3 0 + 1 -3 0 + 2 -3 0 + 3 -3 0 + 4 -3 0 + 5 -3 0 + -5 -2 0 + -4 -2 0 + -3 -2 0 + -2 -2 0 + -1 -2 0 + 0 -2 0 + 1 -2 0 + 2 -2 0 + 3 -2 0 + 4 -2 0 + 5 -2 0 + -5 -1 0 + -4 -1 0 + -3 -1 0 + -2 -1 0 + -1 -1 0 + 0 -1 0 + 1 -1 0 + 2 -1 0 + 3 -1 0 + 4 -1 0 + 5 -1 0 + -5 0 0 + -4 0 0 + -3 0 0 + -2 0 0 + -1 0 0 + 0 0 0 + 1 0 0 + 2 0 0 + 3 0 0 + 4 0 0 + 5 0 0 + -5 1 0 + -4 1 0 + -3 1 0 + -2 1 0 + -1 1 0 + 0 1 0 + 1 1 0 + 2 1 0 + 3 1 0 + 4 1 0 + 5 1 0 + -5 2 0 + -4 2 0 + -3 2 0 + -2 2 0 + -1 2 0 + 0 2 0 + 1 2 0 + 2 2 0 + 3 2 0 + 4 2 0 + 5 2 0 + -5 3 0 + -4 3 0 + -3 3 0 + -2 3 0 + -1 3 0 + 0 3 0 + 1 3 0 + 2 3 0 + 3 3 0 + 4 3 0 + 5 3 0 + -5 4 0 + -4 4 0 + -3 4 0 + -2 4 0 + -1 4 0 + 0 4 0 + 1 4 0 + 2 4 0 + 3 4 0 + 4 4 0 + 5 4 0 + -5 5 0 + -4 5 0 + -3 5 0 + -2 5 0 + -1 5 0 + 0 5 0 + 1 5 0 + 2 5 0 + 3 5 0 + 4 5 0 + 5 5 0 + faces 200 + 11 0 12 1 11 0 12 0 + 1 12 0 1 1 12 0 0 + 12 1 13 1 12 1 13 0 + 2 13 1 1 2 13 1 0 + 13 2 14 1 13 2 14 0 + 3 14 2 1 3 14 2 0 + 14 3 15 1 14 3 15 0 + 4 15 3 1 4 15 3 0 + 15 4 16 1 15 4 16 0 + 5 16 4 1 5 16 4 0 + 16 5 17 1 16 5 17 0 + 6 17 5 1 6 17 5 0 + 17 6 18 1 17 6 18 0 + 7 18 6 1 7 18 6 0 + 18 7 19 1 18 7 19 0 + 8 19 7 1 8 19 7 0 + 19 8 20 1 19 8 20 0 + 9 20 8 1 9 20 8 0 + 20 9 21 1 20 9 21 0 + 10 21 9 1 10 21 9 0 + 22 11 23 1 22 11 23 0 + 12 23 11 1 12 23 11 0 + 23 12 24 1 23 12 24 0 + 13 24 12 1 13 24 12 0 + 24 13 25 1 24 13 25 0 + 14 25 13 1 14 25 13 0 + 25 14 26 1 25 14 26 0 + 15 26 14 1 15 26 14 0 + 26 15 27 1 26 15 27 0 + 16 27 15 1 16 27 15 0 + 27 16 28 1 27 16 28 0 + 17 28 16 1 17 28 16 0 + 28 17 29 1 28 17 29 0 + 18 29 17 1 18 29 17 0 + 29 18 30 1 29 18 30 0 + 19 30 18 1 19 30 18 0 + 30 19 31 1 30 19 31 0 + 20 31 19 1 20 31 19 0 + 31 20 32 1 31 20 32 0 + 21 32 20 1 21 32 20 0 + 33 22 34 1 33 22 34 0 + 23 34 22 1 23 34 22 0 + 34 23 35 1 34 23 35 0 + 24 35 23 1 24 35 23 0 + 35 24 36 1 35 24 36 0 + 25 36 24 1 25 36 24 0 + 36 25 37 1 36 25 37 0 + 26 37 25 1 26 37 25 0 + 37 26 38 1 37 26 38 0 + 27 38 26 1 27 38 26 0 + 38 27 39 1 38 27 39 0 + 28 39 27 1 28 39 27 0 + 39 28 40 1 39 28 40 0 + 29 40 28 1 29 40 28 0 + 40 29 41 1 40 29 41 0 + 30 41 29 1 30 41 29 0 + 41 30 42 1 41 30 42 0 + 31 42 30 1 31 42 30 0 + 42 31 43 1 42 31 43 0 + 32 43 31 1 32 43 31 0 + 44 33 45 1 44 33 45 0 + 34 45 33 1 34 45 33 0 + 45 34 46 1 45 34 46 0 + 35 46 34 1 35 46 34 0 + 46 35 47 1 46 35 47 0 + 36 47 35 1 36 47 35 0 + 47 36 48 1 47 36 48 0 + 37 48 36 1 37 48 36 0 + 48 37 49 1 48 37 49 0 + 38 49 37 1 38 49 37 0 + 49 38 50 1 49 38 50 0 + 39 50 38 1 39 50 38 0 + 50 39 51 1 50 39 51 0 + 40 51 39 1 40 51 39 0 + 51 40 52 1 51 40 52 0 + 41 52 40 1 41 52 40 0 + 52 41 53 1 52 41 53 0 + 42 53 41 1 42 53 41 0 + 53 42 54 1 53 42 54 0 + 43 54 42 1 43 54 42 0 + 55 44 56 1 55 44 56 0 + 45 56 44 1 45 56 44 0 + 56 45 57 1 56 45 57 0 + 46 57 45 1 46 57 45 0 + 57 46 58 1 57 46 58 0 + 47 58 46 1 47 58 46 0 + 58 47 59 1 58 47 59 0 + 48 59 47 1 48 59 47 0 + 59 48 60 1 59 48 60 0 + 49 60 48 1 49 60 48 0 + 60 49 61 1 60 49 61 0 + 50 61 49 1 50 61 49 0 + 61 50 62 1 61 50 62 0 + 51 62 50 1 51 62 50 0 + 62 51 63 1 62 51 63 0 + 52 63 51 1 52 63 51 0 + 63 52 64 1 63 52 64 0 + 53 64 52 1 53 64 52 0 + 64 53 65 1 64 53 65 0 + 54 65 53 1 54 65 53 0 + 66 55 67 1 66 55 67 0 + 56 67 55 1 56 67 55 0 + 67 56 68 1 67 56 68 0 + 57 68 56 1 57 68 56 0 + 68 57 69 1 68 57 69 0 + 58 69 57 1 58 69 57 0 + 69 58 70 1 69 58 70 0 + 59 70 58 1 59 70 58 0 + 70 59 71 1 70 59 71 0 + 60 71 59 1 60 71 59 0 + 71 60 72 1 71 60 72 0 + 61 72 60 1 61 72 60 0 + 72 61 73 1 72 61 73 0 + 62 73 61 1 62 73 61 0 + 73 62 74 1 73 62 74 0 + 63 74 62 1 63 74 62 0 + 74 63 75 1 74 63 75 0 + 64 75 63 1 64 75 63 0 + 75 64 76 1 75 64 76 0 + 65 76 64 1 65 76 64 0 + 77 66 78 1 77 66 78 0 + 67 78 66 1 67 78 66 0 + 78 67 79 1 78 67 79 0 + 68 79 67 1 68 79 67 0 + 79 68 80 1 79 68 80 0 + 69 80 68 1 69 80 68 0 + 80 69 81 1 80 69 81 0 + 70 81 69 1 70 81 69 0 + 81 70 82 1 81 70 82 0 + 71 82 70 1 71 82 70 0 + 82 71 83 1 82 71 83 0 + 72 83 71 1 72 83 71 0 + 83 72 84 1 83 72 84 0 + 73 84 72 1 73 84 72 0 + 84 73 85 1 84 73 85 0 + 74 85 73 1 74 85 73 0 + 85 74 86 1 85 74 86 0 + 75 86 74 1 75 86 74 0 + 86 75 87 1 86 75 87 0 + 76 87 75 1 76 87 75 0 + 88 77 89 1 88 77 89 0 + 78 89 77 1 78 89 77 0 + 89 78 90 1 89 78 90 0 + 79 90 78 1 79 90 78 0 + 90 79 91 1 90 79 91 0 + 80 91 79 1 80 91 79 0 + 91 80 92 1 91 80 92 0 + 81 92 80 1 81 92 80 0 + 92 81 93 1 92 81 93 0 + 82 93 81 1 82 93 81 0 + 93 82 94 1 93 82 94 0 + 83 94 82 1 83 94 82 0 + 94 83 95 1 94 83 95 0 + 84 95 83 1 84 95 83 0 + 95 84 96 1 95 84 96 0 + 85 96 84 1 85 96 84 0 + 96 85 97 1 96 85 97 0 + 86 97 85 1 86 97 85 0 + 97 86 98 1 97 86 98 0 + 87 98 86 1 87 98 86 0 + 99 88 100 1 99 88 100 0 + 89 100 88 1 89 100 88 0 + 100 89 101 1 100 89 101 0 + 90 101 89 1 90 101 89 0 + 101 90 102 1 101 90 102 0 + 91 102 90 1 91 102 90 0 + 102 91 103 1 102 91 103 0 + 92 103 91 1 92 103 91 0 + 103 92 104 1 103 92 104 0 + 93 104 92 1 93 104 92 0 + 104 93 105 1 104 93 105 0 + 94 105 93 1 94 105 93 0 + 105 94 106 1 105 94 106 0 + 95 106 94 1 95 106 94 0 + 106 95 107 1 106 95 107 0 + 96 107 95 1 96 107 95 0 + 107 96 108 1 107 96 108 0 + 97 108 96 1 97 108 96 0 + 108 97 109 1 108 97 109 0 + 98 109 97 1 98 109 97 0 + 110 99 111 1 110 99 111 0 + 100 111 99 1 100 111 99 0 + 111 100 112 1 111 100 112 0 + 101 112 100 1 101 112 100 0 + 112 101 113 1 112 101 113 0 + 102 113 101 1 102 113 101 0 + 113 102 114 1 113 102 114 0 + 103 114 102 1 103 114 102 0 + 114 103 115 1 114 103 115 0 + 104 115 103 1 104 115 103 0 + 115 104 116 1 115 104 116 0 + 105 116 104 1 105 116 104 0 + 116 105 117 1 116 105 117 0 + 106 117 105 1 106 117 105 0 + 117 106 118 1 117 106 118 0 + 107 118 106 1 107 118 106 0 + 118 107 119 1 118 107 119 0 + 108 119 107 1 108 119 107 0 + 119 108 120 1 119 108 120 0 + 109 120 108 1 109 120 108 0 + tverts 121 + -1.09935e-07 -8.2782e-07 0 + 0.199219 0 0 + 0.400391 0 0 + 0.599609 0 0 + 0.800781 0 0 + 1 -8.2782e-07 0 + 1.19922 0 0 + 1.40039 0 0 + 1.59961 0 0 + 1.80078 0 0 + 2 -8.2782e-07 0 + 0 0.199219 0 + 0.199219 0.199219 0 + 0.400391 0.199219 0 + 0.599609 0.199219 0 + 0.800781 0.199219 0 + 1 0.199219 0 + 1.19922 0.199219 0 + 1.40039 0.199219 0 + 1.59961 0.199219 0 + 1.80078 0.199219 0 + 2 0.199219 0 + 0 0.400391 0 + 0.199219 0.400391 0 + 0.400391 0.400391 0 + 0.599609 0.400391 0 + 0.800781 0.400391 0 + 1 0.400391 0 + 1.19922 0.400391 0 + 1.40039 0.400391 0 + 1.59961 0.400391 0 + 1.80078 0.400391 0 + 2 0.400391 0 + 0 0.599609 0 + 0.199219 0.599609 0 + 0.400391 0.599609 0 + 0.599609 0.599609 0 + 0.800781 0.599609 0 + 1 0.599609 0 + 1.19922 0.599609 0 + 1.40039 0.599609 0 + 1.59961 0.599609 0 + 1.80078 0.599609 0 + 2 0.599609 0 + 0 0.800781 0 + 0.199219 0.800781 0 + 0.400391 0.800781 0 + 0.599609 0.800781 0 + 0.800781 0.800781 0 + 1 0.800781 0 + 1.19922 0.800781 0 + 1.40039 0.800781 0 + 1.59961 0.800781 0 + 1.80078 0.800781 0 + 2 0.800781 0 + -1.09935e-07 0.999999 0 + 0.199219 1 0 + 0.400391 1 0 + 0.599609 1 0 + 0.800781 1 0 + 1 0.999999 0 + 1.19922 1 0 + 1.40039 1 0 + 1.59961 1 0 + 1.80078 1 0 + 2 0.999999 0 + 0 1.19922 0 + 0.199219 1.19922 0 + 0.400391 1.19922 0 + 0.599609 1.19922 0 + 0.800781 1.19922 0 + 1 1.19922 0 + 1.19922 1.19922 0 + 1.40039 1.19922 0 + 1.59961 1.19922 0 + 1.80078 1.19922 0 + 2 1.19922 0 + 0 1.40039 0 + 0.199219 1.40039 0 + 0.400391 1.40039 0 + 0.599609 1.40039 0 + 0.800781 1.40039 0 + 1 1.40039 0 + 1.19922 1.40039 0 + 1.40039 1.40039 0 + 1.59961 1.40039 0 + 1.80078 1.40039 0 + 2 1.40039 0 + 0 1.59961 0 + 0.199219 1.59961 0 + 0.400391 1.59961 0 + 0.599609 1.59961 0 + 0.800781 1.59961 0 + 1 1.59961 0 + 1.19922 1.59961 0 + 1.40039 1.59961 0 + 1.59961 1.59961 0 + 1.80078 1.59961 0 + 2 1.59961 0 + 0 1.80078 0 + 0.199219 1.80078 0 + 0.400391 1.80078 0 + 0.599609 1.80078 0 + 0.800781 1.80078 0 + 1 1.80078 0 + 1.19922 1.80078 0 + 1.40039 1.80078 0 + 1.59961 1.80078 0 + 1.80078 1.80078 0 + 2 1.80078 0 + -1.09935e-07 2 0 + 0.199219 2 0 + 0.400391 2 0 + 0.599609 2 0 + 0.800781 2 0 + 1 2 0 + 1.19922 2 0 + 1.40039 2 0 + 1.59961 2 0 + 1.80078 2 0 + 2 2 0 +endnode +endmodelgeom wsf10_p01_01 +donemodel wsf10_p01_01 diff --git a/tests/fixtures/oracle/ascii/zlc_o23.mdl b/tests/fixtures/oracle/ascii/zlc_o23.mdl new file mode 100644 index 0000000..15c7908 --- /dev/null +++ b/tests/fixtures/oracle/ascii/zlc_o23.mdl @@ -0,0 +1,1081 @@ +# Rewritten by CleanModels 3 Version 3.5.2d Sun Oct 13 18:44:05 2019 +#MAXMODEL ASCII +filedependency Unknown +newmodel zlc_o23 + classification CHARACTER + setsupermodel zlc_o23 NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom zlc_o23 +node dummy zlc_o23 + parent NULL +endnode +node emitter chunkywood06 + parent zlc_o23 + position -0.054296 -0.135908 0.702591 + orientation 0 0 -1 -1.5708 + colorStart 1 1 1 + colorEnd 1 1 1 + alphaStart 1 + alphaEnd 1 + sizeStart 0.1 + sizeEnd 0.1 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 24 + birthrate 3 + spawntype 0 + lifeExp 0.75 + mass 3 + spread 1.22173 + particleRot 5 + velocity 8 + randvel 0.3 + fps 0 + random 0 + inherit 1 + inherit_local 0 + inherit_part 0 + inheritvel 0 + xsize 89 + ysize 40 + bounce 1 + bounce_co 0.5 + loop 0 + update Explosion + render Normal + blend Normal + deadspace 0 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 0 + p2p 0 + p2p_sel 1 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_cloud02 + xgrid 5 + ygrid 5 + affectedByWind 0 + m_isTinted 0 + splat 0 +endnode +node dummy o23_head_hit + parent zlc_o23 + position -2e-05 -5e-06 2.96709 + orientation 0 0 0 0 +endnode +node emitter fire!09 + parent zlc_o23 + position -0.054296 -0.135908 1.187 + orientation -0.57735 -0.57735 -0.57735 -2.0944 + colorStart 0.47451 0.439216 0.364706 + colorEnd 0.819608 0.796079 0.709804 + alphaStart 1 + alphaEnd 0 + sizeStart 4 + sizeEnd 1 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 24 + birthrate 35 + spawntype 0 + lifeExp 2.5 + mass 0.09 + spread 2.96706 + particleRot 0.5 + velocity 2 + randvel 0.5 + fps 10 + random 0 + inherit 1 + inherit_local 0 + inherit_part 0 + inheritvel 0 + xsize 591 + ysize 167 + bounce 0 + bounce_co 0 + loop 0 + update Explosion + render Normal + blend Normal + deadspace 0 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0.2 + blastLength 1 + twosidedtex 1 + p2p 0 + p2p_sel 1 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_smoke01 + xgrid 4 + ygrid 4 + affectedByWind 0 + m_isTinted 1 + splat 0 +endnode +node emitter chunkywood05 + parent zlc_o23 + position -0.054296 -0.135908 1.6018 + orientation 0 0 -1 -1.5708 + colorStart 0.482353 0.435294 0.317647 + colorEnd 0.584314 0.533333 0.407843 + alphaStart 1 + alphaEnd 1 + sizeStart 0.1 + sizeEnd 0.1 + sizeStart_y 0 + sizeEnd_y 0 + frameStart 0 + frameEnd 24 + birthrate 3 + spawntype 0 + lifeExp 0.75 + mass 3 + spread 1.22173 + particleRot 2.9 + velocity 8 + randvel 0.3 + fps 0 + random 0 + inherit 1 + inherit_local 0 + inherit_part 0 + inheritvel 0 + xsize 89 + ysize 40 + bounce 1 + bounce_co 0.5 + loop 0 + update Explosion + render Normal + blend Normal + deadspace 0 + blurlength 10 + lightningDelay 0 + lightningRadius 0 + lightningScale 0 + blastRadius 0 + blastLength 0 + twosidedtex 1 + p2p 0 + p2p_sel 1 + p2p_bezier2 0 + p2p_bezier3 0 + combinetime 0 + drag 0 + grav 0 + threshold 0 + texture fxpa_cloud02 + xgrid 5 + ygrid 5 + affectedByWind 0 + m_isTinted 0 + splat 0 +endnode +node dummy o23_head + parent zlc_o23 + position -2e-05 -5e-06 3.41892 + orientation 0 0 0 0 +endnode +node dummy o23_ground + parent zlc_o23 + position -2e-05 -5e-06 0 + orientation 0 0 0 0 +endnode +node dummy o23_impact + parent zlc_o23 + position -2e-05 -5e-06 1.56351 + orientation 0 0 0 0 +endnode +node trimesh line1962 + parent zlc_o23 + position -2.5 0.01 1.93 + orientation 0 0 0 0 + alpha 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + shininess 1 + render 1 + bitmap tcn01_fence02 + verts 8 + 2.375 -0.009878 2.57 + 1 -0.009878 2.07 + 2.375 -0.009878 1.07 + 0 -0.009878 1.07 + 2.375 -0.009878 -1.93 + 2.375 -0.009878 -0.430002 + 0 -0.009878 -1.93 + 0 -0.009878 -0.430002 + faces 12 + 0 1 2 1 0 1 2 1 + 1 3 2 1 1 3 2 1 + 4 5 6 1 4 5 6 1 + 6 5 7 1 6 5 7 1 + 5 2 7 1 8 9 10 1 + 2 3 7 1 9 11 10 1 + 1 0 2 1 1 0 2 1 + 3 1 2 1 3 1 2 1 + 5 4 6 1 5 4 6 1 + 5 6 7 1 5 6 7 1 + 2 5 7 1 9 8 10 1 + 3 2 7 1 11 9 10 1 + tverts 12 + -0.036997 0.651674 0 + 0.520958 0.651785 0 + -0.036998 0.084374 0 + 0.9995 0.084374 0 + -0.038024 0.006251 0 + -0.038024 0.653436 0 + 0.9995 0.006453 0 + 0.9995 0.652636 0 + -0.038024 0.007128 0 + -0.038024 0.653805 0 + 0.9995 0.006725 0 + 0.9995 0.653745 0 +endnode +node trimesh box872 + parent line1962 + position 1.95 -0.01 -1.93 + orientation 0 0 0 0 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + shininess 26 + render 1 + bitmap tcn01_evil02 + verts 13 + 0.425 -0.050176 0 + 0.425 0.049824 0 + 0.55 -0.000176 0 + 0.505527 -0.000176 4.5 + 0.410098 0.037993 4.5 + 0.410098 -0.038345 4.5 + 0.403535 -0.044575 4.5 + 0.403535 0.044819 4.5 + 0.515273 0.000122 4.5 + 0.54998 0.000122 4.46723 + 0.367031 0.088623 4.46723 + 0.440781 0.000122 4.9 + 0.367031 -0.088379 4.46723 + faces 12 + 0 1 2 1 0 0 1 2 + 3 4 5 1 2 3 3 1 + 2 1 4 1 1 0 3 5 + 4 3 2 1 3 2 1 5 + 1 0 5 1 0 1 2 4 + 5 4 1 1 2 3 0 4 + 0 2 3 1 0 1 2 6 + 3 5 0 1 2 3 0 6 + 6 7 8 1 4 5 6 2 + 9 10 11 1 7 8 9 5 + 10 12 11 1 8 10 11 4 + 12 9 11 1 12 7 9 6 + tverts 13 + 0.167751 -0.5 0 + 0.238718 -0.5 0 + 0.238718 1.5 0 + 0.167751 1.5 0 + -0.096858 0.0005 0 + 0.49818 0.0005 0 + 0.25 0.0005 0 + 0.25 0.220192 0 + 0.500716 0.220192 0 + 0.25523 0.999501 0 + 0.750616 0.220192 0 + 0.75 0.999501 0 + -0.095447 0.220192 0 +endnode +node trimesh mesh31 + parent line1962 + position 0.8 0 2.09 + orientation 0 0 0 0 + alpha 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + shininess 1 + render 1 + bitmap tcn01_fence02 + verts 9 + 0.2 -0.009878 0.039836 + 1.57498 -0.009878 0.539835 + 1.57498 0.046924 0.479998 + 0.2 0.046924 -0.020002 + -0.8 -0.009878 -0.960164 + -0.8 0.046924 -1.02 + 0.2 -0.063989 -0.020002 + 1.57498 -0.063989 0.479998 + -0.8 -0.063989 -1.02 + faces 12 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 0 3 1 4 0 3 1 + 3 5 4 1 3 5 4 1 + 6 7 1 1 6 7 1 1 + 1 0 6 1 1 0 6 1 + 8 6 0 1 8 6 0 1 + 0 4 8 1 0 4 8 1 + 3 2 7 1 9 10 11 1 + 7 6 3 1 11 12 9 1 + 5 3 6 1 13 9 12 1 + 6 8 5 1 12 14 13 1 + tverts 15 + 0.504202 0.080103 0 + -0.400904 0.088001 0 + -0.401276 0.021871 0 + 0.503832 0.013972 0 + -0.40095 0.088001 0 + -0.401319 0.021871 0 + 0.503848 0.015777 0 + -0.401258 0.023675 0 + -0.401304 0.023675 0 + 0.016759 0.030094 0 + 0.985657 0.030097 0 + 0.985657 0.071919 0 + 0.016759 0.071916 0 + 0.984065 0.030092 0 + 0.984065 0.071913 0 +endnode +node trimesh line1961 + parent zlc_o23 + position 2.5 0.01 1.93 + orientation 0 0 0 0 + alpha 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + shininess 1 + render 1 + bitmap tcn01_fence02 + verts 8 + -2.375 -0.009878 2.57 + -1 -0.009878 2.07 + -2.375 -0.009878 1.07 + 0 -0.009878 1.07 + -2.375 -0.009878 -1.93 + -2.375 -0.009878 -0.430002 + 0 -0.009878 -1.93 + 0 -0.009878 -0.430002 + faces 12 + 0 1 2 1 0 1 2 1 + 1 3 2 1 1 3 2 1 + 4 5 6 1 4 5 6 1 + 6 5 7 1 6 5 7 1 + 5 2 7 1 8 9 10 1 + 2 3 7 1 9 11 10 1 + 1 0 2 1 1 0 2 1 + 3 1 2 1 3 1 2 1 + 5 4 6 1 5 4 6 1 + 5 6 7 1 5 6 7 1 + 2 5 7 1 9 8 10 1 + 3 2 7 1 11 9 10 1 + tverts 12 + -0.036997 0.651674 0 + 0.520958 0.651785 0 + -0.036998 0.084374 0 + 0.9995 0.084374 0 + -0.038024 0.006251 0 + -0.038024 0.653436 0 + 0.9995 0.006453 0 + 0.9995 0.652636 0 + -0.038024 0.007128 0 + -0.038024 0.653805 0 + 0.9995 0.006725 0 + 0.9995 0.653745 0 +endnode +node trimesh box871 + parent line1961 + position -1.95 0 -1.93 + orientation 0 0 0 0 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + shininess 26 + render 1 + bitmap tcn01_evil02 + verts 13 + -0.425 0.04042 0 + -0.425 -0.05958 0 + -0.55 -0.00958 0 + -0.505527 -0.00958 4.5 + -0.410098 -0.047749 4.5 + -0.410098 0.028589 4.5 + -0.403535 0.034819 4.5 + -0.403535 -0.054575 4.5 + -0.515273 -0.009878 4.5 + -0.54998 -0.009878 4.46723 + -0.367031 -0.098379 4.46723 + -0.440781 -0.009878 4.9 + -0.367031 0.078623 4.46723 + faces 12 + 0 1 2 1 0 0 1 2 + 3 4 5 1 2 3 3 1 + 2 1 4 1 1 0 3 5 + 4 3 2 1 3 2 1 5 + 1 0 5 1 0 1 2 4 + 5 4 1 1 2 3 0 4 + 0 2 3 1 0 1 2 6 + 3 5 0 1 2 3 0 6 + 6 7 8 1 4 5 6 2 + 9 10 11 1 7 8 9 5 + 10 12 11 1 8 10 11 4 + 12 9 11 1 12 7 9 6 + tverts 13 + 0.167751 -0.5 0 + 0.238718 -0.5 0 + 0.238718 1.5 0 + 0.167751 1.5 0 + -0.096858 0.0005 0 + 0.49818 0.0005 0 + 0.25 0.0005 0 + 0.25 0.220192 0 + 0.500716 0.220192 0 + 0.25523 0.999501 0 + 0.750616 0.220192 0 + 0.75 0.999501 0 + -0.095447 0.220192 0 +endnode +node trimesh object335 + parent line1961 + position -0.8 -0.01 2.09 + orientation 0 0 0 0 + alpha 1 + diffuse 1 1 1 + ambient 1 1 1 + specular 0 0 0 + shininess 1 + render 1 + bitmap tcn01_fence02 + verts 9 + -0.2 0.000122 0.039836 + -1.575 0.000122 0.539835 + -1.575 -0.05668 0.479998 + -0.2 -0.05668 -0.020002 + 0.8 0.000122 -0.960164 + 0.8 -0.05668 -1.02 + -0.2 0.054233 -0.020002 + -1.575 0.054233 0.479998 + 0.8 0.054233 -1.02 + faces 12 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 0 3 1 4 0 3 1 + 3 5 4 1 3 5 4 1 + 6 7 1 1 6 7 1 1 + 1 0 6 1 1 0 6 1 + 8 6 0 1 8 6 0 1 + 0 4 8 1 0 4 8 1 + 3 2 7 1 9 10 11 1 + 7 6 3 1 11 12 9 1 + 5 3 6 1 13 9 12 1 + 6 8 5 1 12 14 13 1 + tverts 15 + 0.504202 0.080103 0 + -0.400904 0.088001 0 + -0.401276 0.021871 0 + 0.503832 0.013972 0 + -0.40095 0.088001 0 + -0.401319 0.021871 0 + 0.503848 0.015777 0 + -0.401258 0.023675 0 + -0.401304 0.023675 0 + 0.016759 0.030094 0 + 0.985657 0.030097 0 + 0.985657 0.071919 0 + 0.016759 0.071916 0 + 0.984065 0.030092 0 + 0.984065 0.071913 0 +endnode +endmodelgeom zlc_o23 + +#MAXANIM ASCII +newanim close zlc_o23 + length 0.033333 + transtime 0.25 + animroot zlc_o23 + node dummy zlc_o23 + parent NULL + endnode + node emitter chunkywood06 + parent zlc_o23 + endnode + node dummy o23_head_hit + parent zlc_o23 + endnode + node emitter fire!09 + parent zlc_o23 + endnode + node emitter chunkywood05 + parent zlc_o23 + endnode + node dummy o23_head + parent zlc_o23 + endnode + node dummy o23_ground + parent zlc_o23 + endnode + node dummy o23_impact + parent zlc_o23 + endnode + node trimesh line1962 + parent zlc_o23 + orientationkey + 0 0 0 0 0 + 0.033333 0 0 0 0 + endlist + endnode + node dummy box872 + parent line1962 + endnode + node dummy mesh31 + parent line1962 + endnode + node trimesh line1961 + parent zlc_o23 + orientationkey + 0 0 0 0 0 + 0.033333 0 0 0 0 + endlist + endnode + node dummy box871 + parent line1961 + endnode + node dummy object335 + parent line1961 + endnode +doneanim close zlc_o23 + +#MAXANIM ASCII +newanim closing1 zlc_o23 + length 0.966667 + transtime 0.25 + animroot zlc_o23 + node dummy zlc_o23 + parent NULL + endnode + node emitter chunkywood06 + parent zlc_o23 + endnode + node dummy o23_head_hit + parent zlc_o23 + endnode + node emitter fire!09 + parent zlc_o23 + endnode + node emitter chunkywood05 + parent zlc_o23 + endnode + node dummy o23_head + parent zlc_o23 + endnode + node dummy o23_ground + parent zlc_o23 + endnode + node dummy o23_impact + parent zlc_o23 + endnode + node trimesh line1962 + parent zlc_o23 + orientationkey + 0 0 0 1 -1.48353 + 0.966667 0 0 0 0 + endlist + endnode + node dummy box872 + parent line1962 + endnode + node dummy mesh31 + parent line1962 + endnode + node trimesh line1961 + parent zlc_o23 + orientationkey + 0 0 0 -1 -1.49226 + 0.966667 0 0 0 0 + endlist + endnode + node dummy box871 + parent line1961 + endnode + node dummy object335 + parent line1961 + endnode +doneanim closing1 zlc_o23 + +#MAXANIM ASCII +newanim closing2 zlc_o23 + length 0.966667 + transtime 0.25 + animroot zlc_o23 + node dummy zlc_o23 + parent NULL + endnode + node emitter chunkywood06 + parent zlc_o23 + endnode + node dummy o23_head_hit + parent zlc_o23 + endnode + node emitter fire!09 + parent zlc_o23 + endnode + node emitter chunkywood05 + parent zlc_o23 + endnode + node dummy o23_head + parent zlc_o23 + endnode + node dummy o23_ground + parent zlc_o23 + endnode + node dummy o23_impact + parent zlc_o23 + endnode + node trimesh line1962 + parent zlc_o23 + orientationkey + 0 0 0 -1 -1.51844 + 0.966667 0 0 0 0 + endlist + endnode + node dummy box872 + parent line1962 + endnode + node dummy mesh31 + parent line1962 + endnode + node trimesh line1961 + parent zlc_o23 + orientationkey + 0 0 0 1 -1.50971 + 0.966667 0 0 0 0 + endlist + endnode + node dummy box871 + parent line1961 + endnode + node dummy object335 + parent line1961 + endnode +doneanim closing2 zlc_o23 + +#MAXANIM ASCII +newanim dead zlc_o23 + length 0.033333 + transtime 0.25 + event 0 detonate + animroot zlc_o23 + node dummy zlc_o23 + parent NULL + endnode + node emitter chunkywood06 + parent zlc_o23 + endnode + node dummy o23_head_hit + parent zlc_o23 + endnode + node emitter fire!09 + parent zlc_o23 + endnode + node emitter chunkywood05 + parent zlc_o23 + endnode + node dummy o23_head + parent zlc_o23 + endnode + node dummy o23_ground + parent zlc_o23 + endnode + node dummy o23_impact + parent zlc_o23 + endnode + node trimesh line1962 + parent zlc_o23 + positionkey + 0 -2.5 0.01 -9.84141 + 0.033333 -2.5 0.01 -9.84141 + endlist + endnode + node dummy box872 + parent line1962 + endnode + node dummy mesh31 + parent line1962 + endnode + node trimesh line1961 + parent zlc_o23 + positionkey + 0 2.5 0.01 -9.84141 + 0.033333 2.5 0.01 -9.84141 + endlist + endnode + node dummy box871 + parent line1961 + endnode + node dummy object335 + parent line1961 + endnode +doneanim dead zlc_o23 + +#MAXANIM ASCII +newanim die zlc_o23 + length 0.033333 + transtime 0.25 + event 0.033333 detonate + animroot zlc_o23 + node dummy zlc_o23 + parent NULL + endnode + node emitter chunkywood06 + parent zlc_o23 + endnode + node dummy o23_head_hit + parent zlc_o23 + endnode + node emitter fire!09 + parent zlc_o23 + endnode + node emitter chunkywood05 + parent zlc_o23 + endnode + node dummy o23_head + parent zlc_o23 + endnode + node dummy o23_ground + parent zlc_o23 + endnode + node dummy o23_impact + parent zlc_o23 + endnode + node trimesh line1962 + parent zlc_o23 + positionkey + 0 -2.5 0.01 1.93 + 0.033333 -2.5 0.01 -9.84141 + endlist + orientationkey + 0 0 0 0 0 + endlist + endnode + node dummy box872 + parent line1962 + endnode + node dummy mesh31 + parent line1962 + endnode + node trimesh line1961 + parent zlc_o23 + positionkey + 0 2.5 0.01 1.93 + 0.033333 2.5 0.01 -9.84141 + endlist + orientationkey + 0 0 0 0 0 + endlist + endnode + node dummy box871 + parent line1961 + endnode + node dummy object335 + parent line1961 + endnode +doneanim die zlc_o23 + +#MAXANIM ASCII +newanim open zlc_o23 + length 0.033333 + transtime 0.25 + animroot zlc_o23 + node dummy zlc_o23 + parent NULL + endnode + node emitter chunkywood06 + parent zlc_o23 + endnode + node dummy o23_head_hit + parent zlc_o23 + endnode + node emitter fire!09 + parent zlc_o23 + endnode + node emitter chunkywood05 + parent zlc_o23 + endnode + node dummy o23_head + parent zlc_o23 + endnode + node dummy o23_ground + parent zlc_o23 + endnode + node dummy o23_impact + parent zlc_o23 + endnode + node trimesh line1962 + parent zlc_o23 + orientationkey + 0 0 0 1 -1.48353 + 0.033333 0 0 1 -1.48353 + endlist + endnode + node dummy box872 + parent line1962 + endnode + node dummy mesh31 + parent line1962 + endnode + node trimesh line1961 + parent zlc_o23 + orientationkey + 0 0 0 -1 -1.49226 + 0.033333 0 0 -1 -1.49226 + endlist + endnode + node dummy box871 + parent line1961 + endnode + node dummy object335 + parent line1961 + endnode +doneanim open zlc_o23 + +#MAXANIM ASCII +newanim opened2 zlc_o23 + length 0.033333 + transtime 0.25 + animroot zlc_o23 + node dummy zlc_o23 + parent NULL + endnode + node emitter chunkywood06 + parent zlc_o23 + endnode + node dummy o23_head_hit + parent zlc_o23 + endnode + node emitter fire!09 + parent zlc_o23 + endnode + node emitter chunkywood05 + parent zlc_o23 + endnode + node dummy o23_head + parent zlc_o23 + endnode + node dummy o23_ground + parent zlc_o23 + endnode + node dummy o23_impact + parent zlc_o23 + endnode + node trimesh line1962 + parent zlc_o23 + orientationkey + 0 0 0 -1 -1.51844 + 0.033333 0 0 -1 -1.51844 + endlist + endnode + node dummy box872 + parent line1962 + endnode + node dummy mesh31 + parent line1962 + endnode + node trimesh line1961 + parent zlc_o23 + orientationkey + 0 0 0 1 -1.50971 + 0.033333 0 0 1 -1.50971 + endlist + endnode + node dummy box871 + parent line1961 + endnode + node dummy object335 + parent line1961 + endnode +doneanim opened2 zlc_o23 + +#MAXANIM ASCII +newanim opening1 zlc_o23 + length 1 + transtime 0.25 + animroot zlc_o23 + node dummy zlc_o23 + parent NULL + endnode + node emitter chunkywood06 + parent zlc_o23 + endnode + node dummy o23_head_hit + parent zlc_o23 + endnode + node emitter fire!09 + parent zlc_o23 + endnode + node emitter chunkywood05 + parent zlc_o23 + endnode + node dummy o23_head + parent zlc_o23 + endnode + node dummy o23_ground + parent zlc_o23 + endnode + node dummy o23_impact + parent zlc_o23 + endnode + node trimesh line1962 + parent zlc_o23 + orientationkey + 0 0 0 0 0 + 1 0 0 1 -1.48353 + endlist + endnode + node dummy box872 + parent line1962 + endnode + node dummy mesh31 + parent line1962 + endnode + node trimesh line1961 + parent zlc_o23 + orientationkey + 0 0 0 0 0 + 1 0 0 -1 -1.49226 + endlist + endnode + node dummy box871 + parent line1961 + endnode + node dummy object335 + parent line1961 + endnode +doneanim opening1 zlc_o23 + +#MAXANIM ASCII +newanim opening2 zlc_o23 + length 0.966667 + transtime 0.25 + animroot zlc_o23 + node dummy zlc_o23 + parent NULL + endnode + node emitter chunkywood06 + parent zlc_o23 + endnode + node dummy o23_head_hit + parent zlc_o23 + endnode + node emitter fire!09 + parent zlc_o23 + endnode + node emitter chunkywood05 + parent zlc_o23 + endnode + node dummy o23_head + parent zlc_o23 + endnode + node dummy o23_ground + parent zlc_o23 + endnode + node dummy o23_impact + parent zlc_o23 + endnode + node trimesh line1962 + parent zlc_o23 + orientationkey + 0 0 0 0 0 + 0.966667 0 0 -1 -1.51844 + endlist + endnode + node dummy box872 + parent line1962 + endnode + node dummy mesh31 + parent line1962 + endnode + node trimesh line1961 + parent zlc_o23 + orientationkey + 0 0 0 0 0 + 0.966667 0 0 1 -1.50971 + endlist + endnode + node dummy box871 + parent line1961 + endnode + node dummy object335 + parent line1961 + endnode +doneanim opening2 zlc_o23 + +#MAXANIM ASCII +newanim trans zlc_o23 + length 0.033333 + transtime 0.25 + animroot zlc_o23 + node dummy zlc_o23 + parent NULL + endnode + node emitter chunkywood06 + parent zlc_o23 + endnode + node dummy o23_head_hit + parent zlc_o23 + endnode + node emitter fire!09 + parent zlc_o23 + endnode + node emitter chunkywood05 + parent zlc_o23 + endnode + node dummy o23_head + parent zlc_o23 + endnode + node dummy o23_ground + parent zlc_o23 + endnode + node dummy o23_impact + parent zlc_o23 + endnode + node dummy line1962 + parent zlc_o23 + endnode + node dummy box872 + parent line1962 + endnode + node dummy mesh31 + parent line1962 + endnode + node dummy line1961 + parent zlc_o23 + endnode + node dummy box871 + parent line1961 + endnode + node dummy object335 + parent line1961 + endnode +doneanim trans zlc_o23 +donemodel zlc_o23 diff --git a/tests/fixtures/oracle/game_binary/BUT_CHAT_BAR360.mdl b/tests/fixtures/oracle/game_binary/BUT_CHAT_BAR360.mdl new file mode 100644 index 0000000..4ae8a45 Binary files /dev/null and b/tests/fixtures/oracle/game_binary/BUT_CHAT_BAR360.mdl differ diff --git a/tests/fixtures/oracle/game_binary/INV_EQP_HELMET.mdl b/tests/fixtures/oracle/game_binary/INV_EQP_HELMET.mdl new file mode 100644 index 0000000..660a66d Binary files /dev/null and b/tests/fixtures/oracle/game_binary/INV_EQP_HELMET.mdl differ diff --git a/tests/fixtures/oracle/game_binary/PLC_D01.mdl b/tests/fixtures/oracle/game_binary/PLC_D01.mdl new file mode 100644 index 0000000..f5f80e4 Binary files /dev/null and b/tests/fixtures/oracle/game_binary/PLC_D01.mdl differ diff --git a/tests/fixtures/oracle/game_binary/Red_M_Torso.mdl b/tests/fixtures/oracle/game_binary/Red_M_Torso.mdl new file mode 100644 index 0000000..38c2c9b Binary files /dev/null and b/tests/fixtures/oracle/game_binary/Red_M_Torso.mdl differ diff --git a/tests/fixtures/oracle/game_binary/abp_weaprack_1.mdl b/tests/fixtures/oracle/game_binary/abp_weaprack_1.mdl new file mode 100644 index 0000000..62f8565 Binary files /dev/null and b/tests/fixtures/oracle/game_binary/abp_weaprack_1.mdl differ diff --git a/tests/fixtures/oracle/game_binary/c_elemashm.mdl b/tests/fixtures/oracle/game_binary/c_elemashm.mdl new file mode 100644 index 0000000..21ad204 Binary files /dev/null and b/tests/fixtures/oracle/game_binary/c_elemashm.mdl differ diff --git a/tests/fixtures/oracle/game_binary/c_marilith2.mdl b/tests/fixtures/oracle/game_binary/c_marilith2.mdl new file mode 100644 index 0000000..4fa2464 Binary files /dev/null and b/tests/fixtures/oracle/game_binary/c_marilith2.mdl differ diff --git a/tests/fixtures/oracle/game_binary/c_marilithe.mdl b/tests/fixtures/oracle/game_binary/c_marilithe.mdl new file mode 100644 index 0000000..1737c15 Binary files /dev/null and b/tests/fixtures/oracle/game_binary/c_marilithe.mdl differ diff --git a/tests/fixtures/oracle/game_binary/ctl_compass.mdl b/tests/fixtures/oracle/game_binary/ctl_compass.mdl new file mode 100644 index 0000000..dc3616e Binary files /dev/null and b/tests/fixtures/oracle/game_binary/ctl_compass.mdl differ diff --git a/tests/fixtures/oracle/game_binary/plc_crysblu.mdl b/tests/fixtures/oracle/game_binary/plc_crysblu.mdl new file mode 100644 index 0000000..a0e00d8 Binary files /dev/null and b/tests/fixtures/oracle/game_binary/plc_crysblu.mdl differ diff --git a/tests/fixtures/oracle/game_binary/plc_dd27.mdl b/tests/fixtures/oracle/game_binary/plc_dd27.mdl new file mode 100644 index 0000000..76a5c07 Binary files /dev/null and b/tests/fixtures/oracle/game_binary/plc_dd27.mdl differ diff --git a/tests/fixtures/oracle/game_binary/plc_guillo2.mdl b/tests/fixtures/oracle/game_binary/plc_guillo2.mdl new file mode 100644 index 0000000..e987ce0 Binary files /dev/null and b/tests/fixtures/oracle/game_binary/plc_guillo2.mdl differ diff --git a/tests/fixtures/oracle/game_binary/plc_nc03.mdl b/tests/fixtures/oracle/game_binary/plc_nc03.mdl new file mode 100644 index 0000000..3249128 Binary files /dev/null and b/tests/fixtures/oracle/game_binary/plc_nc03.mdl differ diff --git a/tests/fixtures/oracle/game_binary/plc_statdwl.mdl b/tests/fixtures/oracle/game_binary/plc_statdwl.mdl new file mode 100644 index 0000000..408611a Binary files /dev/null and b/tests/fixtures/oracle/game_binary/plc_statdwl.mdl differ diff --git a/tests/fixtures/oracle/game_binary/pmh0_head001.mdl b/tests/fixtures/oracle/game_binary/pmh0_head001.mdl new file mode 100644 index 0000000..26f0615 Binary files /dev/null and b/tests/fixtures/oracle/game_binary/pmh0_head001.mdl differ diff --git a/tests/fixtures/oracle/game_binary/tdc01_a01_03.mdl b/tests/fixtures/oracle/game_binary/tdc01_a01_03.mdl new file mode 100644 index 0000000..ce2253e Binary files /dev/null and b/tests/fixtures/oracle/game_binary/tdc01_a01_03.mdl differ diff --git a/tests/fixtures/oracle/game_binary/tin01_d11_01.mdl b/tests/fixtures/oracle/game_binary/tin01_d11_01.mdl new file mode 100644 index 0000000..6531e2c Binary files /dev/null and b/tests/fixtures/oracle/game_binary/tin01_d11_01.mdl differ diff --git a/tests/fixtures/oracle/game_binary/wsf10_p01_01.mdl b/tests/fixtures/oracle/game_binary/wsf10_p01_01.mdl new file mode 100644 index 0000000..3acaac2 Binary files /dev/null and b/tests/fixtures/oracle/game_binary/wsf10_p01_01.mdl differ diff --git a/tests/fixtures/oracle/game_binary/zlc_o23.mdl b/tests/fixtures/oracle/game_binary/zlc_o23.mdl new file mode 100644 index 0000000..872c356 Binary files /dev/null and b/tests/fixtures/oracle/game_binary/zlc_o23.mdl differ diff --git a/tests/fixtures/oracle/nwn_development/abp_weaprack_1.utp b/tests/fixtures/oracle/nwn_development/abp_weaprack_1.utp new file mode 100644 index 0000000..c364236 Binary files /dev/null and b/tests/fixtures/oracle/nwn_development/abp_weaprack_1.utp differ diff --git a/tests/fixtures/oracle/nwn_development/oracle_spawn.ncs b/tests/fixtures/oracle/nwn_development/oracle_spawn.ncs new file mode 100644 index 0000000..f5eaff1 Binary files /dev/null and b/tests/fixtures/oracle/nwn_development/oracle_spawn.ncs differ diff --git a/tests/fixtures/oracle/nwn_development/oracle_spawn.nss b/tests/fixtures/oracle/nwn_development/oracle_spawn.nss new file mode 100644 index 0000000..3951148 --- /dev/null +++ b/tests/fixtures/oracle/nwn_development/oracle_spawn.nss @@ -0,0 +1,31 @@ +// oracle_spawn.nss +// Run with: dm_runscript oracle_spawn +// Spawns all oracle test placeables around the PC so NWN loads and compiles their models. +// After running, open the debug console and type: compileloadedmodels +// Copy the resulting binaries from Documents\Neverwinter Nights\compiled_models\ to +// tests/fixtures/oracle/game_binary/ then run: go test ./pkg/mdl/ -run TestOracleCompare -v + +void SpawnAt(string sResRef, location lBase, float fAngle, float fDist) { + float fX = GetPositionFromLocation(lBase).x + fDist * cos(fAngle); + float fY = GetPositionFromLocation(lBase).y + fDist * sin(fAngle); + float fZ = GetPositionFromLocation(lBase).z; + vector vPos = Vector(fX, fY, fZ); + location lSpawn = Location(GetAreaFromLocation(lBase), vPos, fAngle * 180.0 / 3.14159); + CreateObject(OBJECT_TYPE_PLACEABLE, sResRef, lSpawn); +} + +void main() { + location lBase = GetLocation(OBJECT_SELF); + float fStep = 2.0 * 3.14159 / 8.0; + + SpawnAt("squid", lBase, fStep * 0, 4.0); + SpawnAt("plc_guillo2", lBase, fStep * 1, 4.0); + SpawnAt("plc_nc03", lBase, fStep * 2, 4.0); + SpawnAt("plc_dd27", lBase, fStep * 3, 4.0); + SpawnAt("plc_crysblu", lBase, fStep * 4, 4.0); + SpawnAt("plc_statdwl", lBase, fStep * 5, 4.0); + SpawnAt("zlc_o23", lBase, fStep * 6, 4.0); + SpawnAt("abp_weaprack_1", lBase, fStep * 7, 4.0); + + SendMessageToPC(OBJECT_SELF, "Oracle placeables spawned. Now run: compileloadedmodels"); +} diff --git a/tests/fixtures/oracle/nwn_development/plc_crysblu.utp b/tests/fixtures/oracle/nwn_development/plc_crysblu.utp new file mode 100644 index 0000000..0f2d9f5 Binary files /dev/null and b/tests/fixtures/oracle/nwn_development/plc_crysblu.utp differ diff --git a/tests/fixtures/oracle/nwn_development/plc_dd27.utp b/tests/fixtures/oracle/nwn_development/plc_dd27.utp new file mode 100644 index 0000000..d5b47c0 Binary files /dev/null and b/tests/fixtures/oracle/nwn_development/plc_dd27.utp differ diff --git a/tests/fixtures/oracle/nwn_development/plc_guillo2.utp b/tests/fixtures/oracle/nwn_development/plc_guillo2.utp new file mode 100644 index 0000000..f92b283 Binary files /dev/null and b/tests/fixtures/oracle/nwn_development/plc_guillo2.utp differ diff --git a/tests/fixtures/oracle/nwn_development/plc_nc03.utp b/tests/fixtures/oracle/nwn_development/plc_nc03.utp new file mode 100644 index 0000000..51e75d3 Binary files /dev/null and b/tests/fixtures/oracle/nwn_development/plc_nc03.utp differ diff --git a/tests/fixtures/oracle/nwn_development/plc_statdwl.utp b/tests/fixtures/oracle/nwn_development/plc_statdwl.utp new file mode 100644 index 0000000..689b20f Binary files /dev/null and b/tests/fixtures/oracle/nwn_development/plc_statdwl.utp differ diff --git a/tests/fixtures/oracle/nwn_development/squid.utp b/tests/fixtures/oracle/nwn_development/squid.utp new file mode 100644 index 0000000..bb8e49a Binary files /dev/null and b/tests/fixtures/oracle/nwn_development/squid.utp differ diff --git a/tests/fixtures/oracle/nwn_development/zlc_o23.utp b/tests/fixtures/oracle/nwn_development/zlc_o23.utp new file mode 100644 index 0000000..27b8ae0 Binary files /dev/null and b/tests/fixtures/oracle/nwn_development/zlc_o23.utp differ diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/TIN01_D01_09.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/TIN01_D01_09.mdl new file mode 100644 index 0000000..9f2b70e --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/TIN01_D01_09.mdl @@ -0,0 +1,1430 @@ +#Exported from 3ds max by MDL Plug-in Suite 1.0b +#http://www.bricksbuilder.com/nwn/utils/ +#MAXMODEL ASCII +# model: TIN01_D01_09 +filedependancy Unknown +newmodel TIN01_D01_09 +setsupermodel TIN01_D01_09 NULL +classification Tile +setanimationscale 1.0 +#MAXGEOM ASCII +beginmodelgeom TIN01_D01_09 +node dummy TIN01_D01_09 + parent NULL +endnode +node trimesh Box483 + parent TIN01_D01_09 + position 1.2 3.91 2.5 + orientation 0 0 0 0 + wirecolor 0.882813 0.882813 0.882813 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap TIN01_paint04 + verts 8 + 0.37 -0.2 -0.71 + 0.37 -0.2 0.28 + -0.46 -0.2 0.28 + -0.46 -0.2 -0.71 + -0.46 -0.16 -0.71 + 0.37 -0.16 -0.71 + -0.46 -0.16 0.28 + 0.37 -0.16 0.28 + faces 10 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 0 3 4 1 4 5 6 5 + 4 5 0 1 6 7 4 5 + 3 2 6 1 8 9 10 4 + 6 4 3 1 10 11 8 4 + 2 1 7 1 5 12 13 6 + 7 6 2 1 13 6 5 6 + 1 0 5 1 9 14 15 3 + 5 7 1 1 15 10 9 3 + tverts 16 + -0.0271302 0.0415626 0 + -0.02713 0.501916 0 + 0.529795 0.501916 0 + 0.529794 0.0415624 0 + 0.000249743 -0.0354264 0 + 0.49975 -0.0354264 0 + 0.49975 0.0365016 0 + 0.000249743 0.0365016 0 + 0.467426 0.000680402 0 + 0.467426 0.500181 0 + 0.527589 0.500181 0 + 0.527589 0.000680402 0 + 0.000249848 -0.0354265 0 + 0.000249848 0.0365016 0 + 0.467426 0.000680551 0 + 0.527589 0.000680551 0 +endnode +node trimesh Box482 + parent TIN01_D01_09 + position -1.55 3.45 2.32 + orientation 0 0 0 0 + wirecolor 0.113281 0.113281 0.113281 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap TIN01_paint04 + verts 8 + 0.52 0.26 -0.4 + 0.52 0.26 0.32 + -0.55 0.26 0.32 + -0.55 0.26 -0.4 + -0.55 0.3 -0.4 + 0.52 0.3 -0.4 + -0.55 0.3 0.32 + 0.52 0.3 0.32 + faces 10 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 0 3 4 1 4 5 6 5 + 4 5 0 1 6 7 4 5 + 3 2 6 1 8 9 10 4 + 6 4 3 1 10 11 8 4 + 2 1 7 1 5 12 13 6 + 7 6 2 1 13 6 5 6 + 1 0 5 1 9 14 15 3 + 5 7 1 1 15 10 9 3 + tverts 16 + -0.0271302 0.534316 0 + -0.02713 0.99467 0 + 0.529795 0.994669 0 + 0.529794 0.534316 0 + 0.000249743 -0.0354264 0 + 0.49975 -0.0354264 0 + 0.49975 0.0365016 0 + 0.000249743 0.0365016 0 + 0.467426 0.000680402 0 + 0.467426 0.500181 0 + 0.527589 0.500181 0 + 0.527589 0.000680402 0 + 0.000249848 -0.0354265 0 + 0.000249848 0.0365016 0 + 0.467426 0.000680551 0 + 0.527589 0.000680551 0 +endnode +node trimesh Box474 + parent TIN01_D01_09 + position 4.37 4.21 1.39 + orientation 0 0 0 0 + wirecolor 0.898438 0.898438 0.898438 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap TIN01_Lwalls + verts 74 + -0.62 -0.46 1.61 + -0.62 -1.21 1.61 + 0.13 -1.71 1.61 + -0.62 -1.71 1.61 + 0.13 0.29 1.61 + -0.89 -1.36 -0.87 + -0.89 -1.36 -1.39 + -0.89 -1.71 -1.39 + -0.89 -1.71 0.1 + -0.89 -1.21 0.1 + -0.89 -1.21 -0.71 + -1.87 0.29 1.61 + -1.87 -0.46 1.61 + -1.37 -0.46 1.61 + -8.98 -0.46 0.1 + -8.98 -0.73 0.1 + -6.87 -0.46 0.1 + -6.87 -0.73 0.1 + -0.62 -4.21 1.61 + 0.13 -4.21 1.61 + -0.889415 -2.7164 -0.538365 + -0.62 -6.71 1.61 + 0.13 -6.71 1.61 + -0.89 -6.71 -1.39 + -0.89 -6.71 0.1 + -0.889416 -5.95065 -1.38677 + -0.62 -8.82 1.61 + 0.13 -9.21 1.61 + -0.62 -9.21 1.61 + -0.62 -6.71 0.1 + -0.62 -8.82 0.1 + -4.37 0.29 1.61 + -6.87 0.29 1.61 + -4.37 -0.46 1.61 + -6.87 -0.46 1.61 + -4.37 -0.73 -1.39 + -1.87 -0.73 -1.39 + -4.37 -0.73 0.1 + -1.87 -0.73 0.1 + -6.87 -0.73 -1.39 + -9.37 0.29 1.61 + -9.37 -0.46 1.61 + -8.98 -0.46 1.61 + -1.51 -0.73 -1.39 + -1.51 -0.73 -0.87 + -1.37 -0.73 -0.71 + -1.37 -0.73 0.1 + -0.62 -1.71 0.1 + -0.62 -1.21 0.1 + -0.62 -4.21 0.1 + -0.89 -8.67 -0.87 + -0.89 -8.82 -0.71 + -0.89 -8.82 0.1 + -0.89 -8.67 -1.39 + -1.87 -0.46 0.1 + -2.8 -0.46 0.4 + -4.37 -0.46 0.1 + -3.63 -0.46 1.39 + -5.4 -0.46 0.53 + -6.47 -0.46 1.25 + -1.37 -0.46 0.1 + -8.98 -0.73 -0.71 + -8.83 -0.73 -0.87 + -8.83 -0.73 -1.39 + -0.89 -4.20976 0.1 + -0.89 -5.94971 0.1 + -0.889416 -4.21173 -0.538365 + -0.889416 -5.95036 -0.538365 + -0.889415 -2.7214 -1.38677 + -6.47 -0.46 0.53 + -5.4 -0.46 1.25 + -3.63 -0.46 0.4 + -2.8 -0.46 1.39 + -0.888831 -4.2137 -1.38355 + faces 97 + 0 1 2 1 0 1 2 1 + 1 3 2 1 1 3 2 1 + 2 4 0 1 2 4 0 1 + 5 6 7 1 5 6 7 5 + 7 8 9 1 7 8 9 5 + 9 10 5 1 9 10 5 5 + 7 9 5 1 7 9 5 5 + 0 4 11 1 11 12 13 1 + 11 12 13 1 13 14 15 1 + 11 13 0 1 13 15 11 1 + 14 15 16 1 16 17 18 3 + 17 16 15 1 19 18 17 3 + 18 19 2 1 20 21 2 1 + 2 3 18 1 2 3 20 1 + 8 7 20 1 8 7 22 5 + 21 22 19 1 23 24 21 1 + 19 18 21 1 21 20 23 1 + 23 24 25 1 25 26 27 5 + 26 27 22 1 28 29 24 1 + 27 26 28 1 29 28 30 1 + 22 21 26 1 24 23 28 1 + 21 29 26 1 31 32 33 5 + 30 26 29 1 34 33 32 5 + 31 32 33 1 35 36 37 1 + 34 33 32 1 38 37 36 1 + 35 36 37 1 39 40 41 3 + 38 37 36 1 42 41 40 3 + 39 35 17 1 43 39 44 3 + 37 17 35 1 41 44 39 3 + 32 40 41 1 45 46 47 1 + 42 34 32 1 48 49 45 1 + 41 42 32 1 47 48 45 1 + 11 31 12 1 13 35 14 1 + 33 12 31 1 37 14 35 1 + 36 43 44 1 50 51 52 3 + 44 45 46 1 52 53 54 3 + 46 38 36 1 54 55 50 3 + 44 46 36 1 52 54 50 3 + 47 3 48 1 56 57 58 5 + 1 48 3 1 59 58 57 5 + 16 34 14 1 60 61 62 3 + 42 14 34 1 63 62 61 3 + 49 18 47 1 64 65 66 5 + 3 47 18 1 67 66 65 5 + 29 21 49 1 32 31 64 5 + 18 49 21 1 65 64 31 5 + 50 51 52 1 68 69 70 5 + 52 24 23 1 70 26 25 5 + 23 53 50 1 25 71 68 5 + 52 23 50 1 70 25 68 5 + 54 12 55 1 72 73 74 3 + 33 56 57 1 75 76 77 3 + 56 33 58 1 76 75 78 3 + 34 16 59 1 61 60 79 3 + 60 13 54 1 80 81 72 3 + 12 54 13 1 73 72 81 3 + 8 47 9 1 82 83 84 5 + 48 9 47 1 85 84 83 5 + 39 17 15 1 86 87 88 3 + 15 61 62 1 88 89 90 3 + 62 63 39 1 90 91 86 3 + 15 62 39 1 88 90 86 3 + 64 49 8 1 92 93 82 5 + 47 8 49 1 83 82 93 5 + 24 29 65 1 94 95 96 5 + 38 54 37 1 98 99 100 3 + 56 37 54 1 101 100 99 3 + 37 56 17 1 100 101 19 3 + 16 17 56 1 18 19 101 3 + 46 60 38 1 102 103 98 3 + 54 38 60 1 99 98 103 3 + 52 30 24 1 104 105 94 5 + 29 24 30 1 95 94 105 5 + 65 29 64 1 106 95 97 5 + 49 64 29 1 93 97 95 5 + 25 24 65 1 27 26 107 5 + 65 66 67 1 108 109 110 5 + 68 20 7 1 111 22 7 5 + 66 64 20 1 112 113 22 5 + 8 20 64 1 8 22 113 5 + 64 66 65 1 114 109 108 5 + 59 16 69 1 79 60 115 3 + 34 59 33 1 61 79 75 3 + 59 70 33 1 79 116 75 3 + 58 33 70 1 78 75 116 3 + 56 58 16 1 76 78 60 3 + 69 16 58 1 115 60 78 3 + 57 56 71 1 77 76 117 3 + 33 57 12 1 75 77 73 3 + 54 71 56 1 72 117 76 3 + 57 72 12 1 77 118 73 3 + 55 12 72 1 74 73 118 3 + 54 55 71 1 72 74 117 3 + 20 68 66 1 119 123 121 0 + 73 66 68 1 124 121 123 0 + 66 73 67 1 121 124 122 0 + 25 67 73 1 120 122 124 0 + tverts 125 + 2.6875 -0.0837521 0 + 2.50206 -0.083752 0 + 2.375 -0.271252 0 + 2.375 -0.083752 0 + 2.875 -0.271252 0 + -0.974299 0.217081 0 + -0.9743 0.0875172 0 + -0.885584 0.0875171 0 + -0.885584 0.460994 0 + -1.01058 0.460994 0 + -1.01058 0.257778 0 + 1.4901 2.71346 0 + 1.67574 2.90096 0 + 1.18069 2.90096 0 + 1.18069 2.71346 0 + 1.3043 2.71346 0 + -0.450999 0.458412 0 + -0.450999 0.391412 0 + 0.075999 0.458412 0 + 0.075999 0.391412 0 + 1.75 -0.0837519 0 + 1.75 -0.271252 0 + -0.635217 0.30066 0 + 1.125 -0.0837517 0 + 1.125 -0.271252 0 + 0.364416 0.0875169 0 + 0.364416 0.460993 0 + 0.170726 0.0875169 0 + 0.599078 -0.0837516 0 + 0.5 -0.271252 0 + 0.5 -0.0837516 0 + -0.910625 0.856814 0 + -0.910625 0.481884 0 + -1.43655 0.856814 0 + -1.43654 0.483142 0 + 0.561882 2.90096 0 + -0.0569302 2.90096 0 + 0.561882 2.71346 0 + -0.0569302 2.71346 0 + -0.423091 0.0908791 0 + 0.201909 0.0908789 0 + -0.423091 0.458293 0 + 0.201909 0.458293 0 + -1.04809 0.0908792 0 + -1.04809 0.458293 0 + 0.8125 0.962454 0 + 0.1875 0.962454 0 + 0.1875 0.774954 0 + 0.285502 0.774954 0 + 0.8125 0.774954 0 + 1.63984 0.0906924 0 + 1.72887 0.0906924 0 + 1.72887 0.220256 0 + 1.76484 0.260953 0 + 1.76484 0.458106 0 + 1.63984 0.458106 0 + 0.805574 0.482205 0 + 0.805574 0.857135 0 + 0.680574 0.482205 0 + 0.680574 0.857135 0 + 0.075999 0.482477 0 + 0.075999 0.859001 0 + -0.450999 0.482477 0 + -0.450999 0.859001 0 + -0.285625 0.481884 0 + -0.285625 0.856814 0 + 0.339375 0.481884 0 + 0.339375 0.856814 0 + 0.854108 0.217081 0 + 0.891413 0.257778 0 + 0.891414 0.460993 0 + 0.854108 0.0875168 0 + 1.326 0.482477 0 + 1.326 0.859001 0 + 1.09264 0.557465 0 + 0.700999 0.859001 0 + 0.700999 0.482477 0 + 0.885063 0.803107 0 + 0.442816 0.589774 0 + 0.174802 0.769774 0 + 1.451 0.482477 0 + 1.451 0.859001 0 + 1.60688 1.44535 0 + 1.60688 1.3802 0 + 1.48188 1.44535 0 + 1.48188 1.3802 0 + 1.00826 0.0921533 0 + 1.00826 0.459567 0 + 0.481259 0.459567 0 + 0.481259 0.262414 0 + 0.518565 0.221717 0 + 0.518565 0.0921533 0 + 2.23188 1.44535 0 + 2.23188 1.3802 0 + 2.85688 1.44535 0 + 2.85688 1.3802 0 + 2.66396 1.44535 0 + 2.26467 1.44193 0 + 1.326 0.391411 0 + 1.326 0.458411 0 + 0.700999 0.391411 0 + 0.700999 0.458411 0 + 1.451 0.391411 0 + 1.451 0.458411 0 + 3.38388 1.44535 0 + 3.38388 1.3802 0 + 2.63106 1.44535 0 + 0.173784 0.460993 0 + 0.14041 0.460993 0 + -0.227051 0.298969 0 + 0.140409 0.298969 0 + -0.633284 0.0875171 0 + -0.261129 0.299216 0 + -0.261129 0.460994 0 + -0.227051 0.460994 0 + 0.174801 0.589774 0 + 0.442816 0.769774 0 + 0.885063 0.557465 0 + 1.09264 0.803107 0 + 0.00241546 0.309179 0.701083 + 1 0 1.25664 + 0.464758 0.309179 0.735808 + 1.00233 0.309179 0.776101 + 0.00154599 0 1.18164 + 0.462951 0.00380179 0.256641 +endnode +node aabb Line06 + parent TIN01_D01_09 + position 0 0 1.5 + orientation 0 0 0 0 + wirecolor 0.898438 0.898438 0.898438 + ambient 0.2 0.2 0.2 + diffuse 0.8 0.8 0.8 + specular 0 0 0 + shininess 1 + bitmap NULL + verts 29 + -5 2.85 -1.5 + -4.46 2.85 -1.5 + -5 2.85 1.5 + -4.46 3.48 -1.5 + -4.46 3.48 1.5 + 2.86 3.48 -1.5 + 2.86 3.48 1.5 + 2.85 2.85 -1.5 + 2.85 2.85 1.5 + 3.45482 2.57238 -1.5 + 3.45482 2.57238 1.5 + 3.45981 -3.91697 -1.5 + 3.45981 -3.91697 1.5 + 3.48 -4.46 -1.5 + 3.48 -4.46 1.5 + 2.85 -4.46 -1.5 + 2.85 -5 1.5 + 2.85 -5 -1.5 + 5 -5 1.5 + 5 5 1.5 + -5 5 1.5 + -5 -5 -1.5 + 1.3737 -0.99 -1.5 + -0.97 1.21 -1.5 + -2.15 0.38 -1.5 + 1.35814 0.78 -1.5 + -2.15 -2.29 -1.5 + -2.93 -0.96 -1.5 + -0.61 -2.3 -1.5 + faces 48 + 0 1 2 1 0 0 0 2 + 1 3 4 2 0 0 0 2 + 1 4 2 4 0 0 0 2 + 3 5 6 1 0 0 0 2 + 3 6 4 1 0 0 0 2 + 5 7 8 2 0 0 0 2 + 5 8 6 2 0 0 0 2 + 7 9 10 1 0 0 0 2 + 7 10 8 1 0 0 0 2 + 9 11 12 2 0 0 0 2 + 9 12 10 2 0 0 0 2 + 11 13 14 2 0 0 0 2 + 11 14 12 2 0 0 0 2 + 13 15 16 1 0 0 0 2 + 13 16 14 4 0 0 0 2 + 15 17 16 2 0 0 0 2 + 18 14 16 8 0 0 0 2 + 6 8 19 8 0 0 0 2 + 8 10 19 8 0 0 0 2 + 12 18 19 8 0 0 0 2 + 10 12 19 8 0 0 0 2 + 12 14 18 8 0 0 0 2 + 2 4 20 8 0 0 0 2 + 4 19 20 8 0 0 0 2 + 4 6 19 8 0 0 0 2 + 1 0 21 8 0 0 0 5 + 22 23 24 8 0 0 0 5 + 5 3 1 8 0 0 0 2 + 7 5 1 8 0 0 0 2 + 9 7 1 8 0 0 0 2 + 11 9 25 8 0 0 0 5 + 15 11 21 8 0 0 0 5 + 15 13 11 8 0 0 0 7 + 17 15 21 8 0 0 0 5 + 26 24 27 8 0 0 0 5 + 11 22 28 8 0 0 0 5 + 28 26 21 8 0 0 0 5 + 11 28 21 8 0 0 0 5 + 27 1 21 8 0 0 0 5 + 26 27 21 8 0 0 0 5 + 24 1 27 8 0 0 0 5 + 11 25 22 8 0 0 0 5 + 23 9 1 8 0 0 0 5 + 24 23 1 8 0 0 0 5 + 25 9 23 8 0 0 0 5 + 22 25 23 8 0 0 0 5 + 22 24 26 8 0 0 0 5 + 28 22 26 8 0 0 0 5 + aabb -5.00 -5.00 -1.50 5.00 5.00 1.50 -1 + -5.00 -5.00 -1.50 5.00 5.00 1.50 -1 + -5.00 -5.00 -1.50 3.46 2.85 -1.50 -1 + -5.00 -5.00 -1.50 1.37 2.85 -1.50 -1 + -5.00 -5.00 -1.50 -0.61 2.85 -1.50 -1 + -5.00 -5.00 -1.50 -0.61 -2.29 -1.50 36 + -5.00 -5.00 -1.50 -2.15 2.85 -1.50 -1 + -5.00 -5.00 -1.50 -2.15 -0.96 -1.50 39 + -5.00 -5.00 -1.50 -2.93 2.85 -1.50 38 + -5.00 -5.00 -1.50 1.37 2.85 -1.50 -1 + -2.15 -2.29 -1.50 1.37 0.38 -1.50 46 + -5.00 -5.00 -1.50 -2.15 2.85 -1.50 -1 + -2.93 -2.29 -1.50 -2.15 0.38 -1.50 34 + -5.00 -5.00 -1.50 -4.46 2.85 -1.50 25 + -5.00 -5.00 -1.50 3.46 1.21 -1.50 -1 + -5.00 -5.00 -1.50 3.46 1.21 -1.50 -1 + -5.00 -5.00 -1.50 3.46 -2.30 -1.50 37 + -2.15 -2.30 -1.50 1.37 1.21 -1.50 -1 + -2.15 -0.99 -1.50 1.37 1.21 -1.50 26 + -2.15 -2.30 -1.50 1.37 -0.99 -1.50 47 + -5.00 -5.00 -1.50 3.46 1.21 -1.50 -1 + -5.00 -5.00 -1.50 2.85 -4.46 -1.50 33 + -5.00 -5.00 -1.50 3.46 1.21 -1.50 -1 + -5.00 -5.00 -1.50 3.46 -3.92 -1.50 31 + -0.97 -0.99 -1.50 1.37 1.21 -1.50 45 + -5.00 -0.96 -1.50 5.00 5.00 1.50 -1 + -5.00 -0.96 -1.50 -0.97 5.00 1.50 -1 + -5.00 -0.96 -1.50 -0.97 2.85 1.50 -1 + -5.00 2.85 -1.50 -4.46 2.85 1.50 0 + -4.46 -0.96 -1.50 -0.97 2.85 -1.50 -1 + -4.46 -0.96 -1.50 -2.15 2.85 -1.50 40 + -4.46 0.38 -1.50 -0.97 2.85 -1.50 43 + -5.00 2.85 -1.50 -4.46 5.00 1.50 -1 + -4.46 2.85 -1.50 -4.46 3.48 1.50 1 + -5.00 2.85 -1.50 -4.46 5.00 1.50 -1 + -5.00 2.85 -1.50 -4.46 3.48 1.50 2 + -5.00 2.85 1.50 -4.46 5.00 1.50 22 + -5.00 1.21 -1.50 5.00 5.00 1.50 -1 + -5.00 2.85 -1.50 5.00 5.00 1.50 -1 + -4.46 2.85 -1.50 2.86 3.48 -1.50 27 + -5.00 3.48 -1.50 5.00 5.00 1.50 -1 + -4.46 3.48 -1.50 2.86 3.48 1.50 4 + -5.00 3.48 1.50 5.00 5.00 1.50 23 + -4.46 1.21 -1.50 3.45 3.48 1.50 -1 + -4.46 1.21 -1.50 3.45 2.85 -1.50 42 + -4.46 2.85 -1.50 2.86 3.48 1.50 -1 + -4.46 2.85 -1.50 2.86 3.48 -1.50 28 + -4.46 3.48 -1.50 2.86 3.48 1.50 3 + -4.46 -5.00 -1.50 5.00 5.00 1.50 -1 + -0.61 -5.00 -1.50 5.00 5.00 1.50 -1 + 2.85 -5.00 -1.50 5.00 -3.92 1.50 -1 + 2.85 -5.00 -1.50 3.48 -3.92 1.50 -1 + 2.85 -4.46 -1.50 3.48 -3.92 -1.50 32 + 2.85 -5.00 -1.50 3.48 -4.46 1.50 -1 + 2.85 -5.00 -1.50 3.48 -4.46 1.50 13 + 2.85 -5.00 -1.50 2.85 -4.46 1.50 15 + 2.85 -5.00 -1.50 5.00 -3.92 1.50 -1 + 2.85 -5.00 -1.50 3.48 -4.46 1.50 14 + 2.85 -5.00 1.50 5.00 -3.92 1.50 -1 + 2.85 -5.00 1.50 5.00 -4.46 1.50 16 + 3.46 -5.00 1.50 5.00 -3.92 1.50 21 + -0.61 -5.00 -1.50 5.00 5.00 1.50 -1 + -0.61 -4.46 -1.50 3.48 -0.99 1.50 -1 + -0.61 -3.92 -1.50 3.46 -0.99 -1.50 35 + 3.46 -4.46 -1.50 3.48 -3.92 1.50 -1 + 3.46 -4.46 -1.50 3.48 -3.92 1.50 11 + 3.46 -4.46 -1.50 3.48 -3.92 1.50 12 + 1.36 -5.00 -1.50 5.00 5.00 1.50 -1 + 3.45 -3.92 -1.50 3.46 2.57 1.50 9 + 1.36 -5.00 -1.50 5.00 5.00 1.50 -1 + 1.36 -3.92 -1.50 3.46 0.78 -1.50 41 + 3.46 -5.00 1.50 5.00 5.00 1.50 19 + -4.46 -3.92 -1.50 5.00 5.00 1.50 -1 + -4.46 -3.92 -1.50 5.00 5.00 1.50 -1 + -4.46 0.78 -1.50 5.00 5.00 1.50 -1 + -4.46 2.57 -1.50 3.45 2.85 -1.50 29 + -4.46 0.78 -1.50 5.00 5.00 1.50 -1 + -4.46 3.48 1.50 5.00 5.00 1.50 24 + -0.97 0.78 -1.50 3.45 2.57 -1.50 44 + 1.36 -3.92 -1.50 3.46 3.48 1.50 -1 + 1.36 -3.92 -1.50 3.46 2.57 -1.50 30 + 2.85 2.85 -1.50 2.86 3.48 1.50 -1 + 2.85 2.85 -1.50 2.86 3.48 1.50 5 + 2.85 2.85 -1.50 2.86 3.48 1.50 6 + 2.85 -3.92 -1.50 5.00 5.00 1.50 -1 + 2.85 -3.92 -1.50 5.00 5.00 1.50 -1 + 3.45 -3.92 -1.50 3.46 2.57 1.50 10 + 2.85 -3.92 -1.50 5.00 5.00 1.50 -1 + 3.45 -3.92 1.50 5.00 5.00 1.50 20 + 2.85 2.57 -1.50 3.45 2.85 1.50 7 + 2.85 2.57 -1.50 5.00 5.00 1.50 -1 + 2.85 2.57 -1.50 3.45 2.85 1.50 8 + 2.85 2.57 1.50 5.00 5.00 1.50 -1 + 2.85 2.57 1.50 5.00 5.00 1.50 18 + 2.85 2.85 1.50 5.00 5.00 1.50 17 +endnode +node trimesh Box2738 + parent TIN01_D01_09 + position 3.37 3.25 0.34 + orientation 0 0 0 0 + wirecolor 0.898438 0.898438 0.898438 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap TIN01_door2 + verts 19 + 0.11 -0.25 0.34 + -0.37 -0.25 0.34 + 0.11 -0.4 0.18 + -0.52 -0.4 0.18 + -0.37 0.23 0.34 + -0.51 0.23 0.18 + 0.11 -0.4 0 + -0.52 -0.4 0 + -0.51 0.23 0 + 0.38 -0.25 2.66 + -0.37 -0.25 2.66 + 0.11 -0.25 1.15 + 0.38 -0.25 1.15 + -0.52 -0.4 -0.34 + 0.11 -0.4 -0.34 + -0.51 0.23 -0.34 + -0.37 0.5 2.66 + -0.37 0.5 1.15 + -0.37 0.23 1.15 + faces 20 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 1 4 3 1 4 5 6 1 + 5 3 4 1 7 6 5 1 + 2 3 6 1 2 3 8 1 + 7 6 3 1 9 8 3 1 + 3 5 7 1 6 7 10 1 + 8 7 5 1 11 10 7 1 + 9 10 1 1 12 13 14 5 + 1 0 11 1 14 15 16 5 + 11 12 9 1 16 17 12 5 + 1 11 9 1 14 16 12 5 + 7 13 6 1 9 18 8 1 + 14 6 13 1 19 8 18 1 + 8 15 7 1 11 20 10 1 + 13 7 15 1 21 10 20 1 + 1 10 16 1 22 23 24 3 + 16 17 18 1 24 25 26 3 + 18 4 1 1 26 27 22 3 + 16 18 1 1 24 26 22 3 + tverts 28 + 0.0546721 1.05077 0 + 0.300601 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.305378 1.04315 0 + 0.0410672 1.04315 0 + 0.357965 0.959772 0 + 0.0510691 0.959772 0 + 0.0514033 0.845122 0 + 0.349531 0.845122 0 + 0.357965 0.868473 0 + 0.051069 0.868473 0 + 0.39879 0.174919 0 + 0.047924 0.174272 0 + 0.047924 -0.502544 0 + 0.272483 -0.502544 0 + 0.272414 -0.263925 0 + 0.39879 -0.263852 0 + 0.349531 0.639765 0 + 0.0514033 0.639765 0 + 0.051069 0.694046 0 + 0.357965 0.694046 0 + 0.395638 -0.497611 0 + 0.395638 0.174571 0 + 0.0501186 0.174704 0 + 0.0501186 -0.261694 0 + 0.172152 -0.262098 0 + 0.170505 -0.497611 0 +endnode +node trimesh Line90 + parent TIN01_D01_09 + position 2.21 1.44 3.05 + orientation 0 0 0 0 + wirecolor 0.347656 0.347656 0.347656 + ambient 0 0 0 + diffuse 0 0 0 + specular 0 0 0 + shininess 1 + bitmap TIN01_black + verts 13 + 2.79 3.56 -0.05 + -7.21 3.56 -0.05 + -7.21 3.06 -0.05 + -4.71 3.06 -0.05 + -2.21 3.06 -0.05 + 2.29 -6.44 -0.05 + 2.79 -6.44 -0.05 + 2.29 -3.94 -0.05 + 2.29 -1.93 -0.05 + 2.29 -0.43 -0.05 + 0.29 3.06 -0.05 + 2.29 3.06 -0.05 + 2.29 1.06 -0.05 + faces 11 + 0 1 2 1 0 1 2 1 + 0 2 3 1 0 2 3 1 + 0 3 4 1 0 3 4 1 + 5 6 0 1 5 6 0 1 + 7 5 0 1 7 5 0 1 + 8 7 0 1 8 7 0 1 + 9 8 0 1 9 8 0 1 + 10 0 4 1 10 0 4 1 + 10 11 0 1 10 11 0 1 + 12 9 0 1 12 9 0 1 + 11 12 0 1 11 12 0 1 + tverts 13 + -134.5 100.5 0 + -144.5 100.5 0 + -144.5 100 0 + -142 100 0 + -139.5 100 0 + -135 90.5 0 + -134.5 90.5 0 + -135 93 0 + -135 95.0058 0 + -135 96.5058 0 + -137 100 0 + -135 100 0 + -135 98 0 +endnode +node trimesh Mesh456 + parent TIN01_D01_09 + position 3.37 3.37 4.28 + orientation 0 0 0 0 + wirecolor 0.347656 0.347656 0.347656 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap TIN01_door2 + render 1 + Shadow 1 + beaming 0 + transparencyhint 0 + tilefade 1 + rotatetexture 0 + verts 16 + -0.37 -0.37 -0.07 + -0.37 0.38 -0.07 + -0.37 -0.37 -1.28 + -0.37 0.38 -1.28 + -0.52 -0.52 0.1 + 0.53 -0.52 0.1 + 0.53 -0.52 0.27 + -0.52 -0.52 0.27 + 0.53 0.53 0.1 + 0.53 0.53 0.27 + -0.52 0.53 0.1 + -0.52 0.53 0.27 + 0.38 -0.37 -1.28 + 0.38 0.38 -1.28 + 0.38 0.38 -0.07 + 0.38 -0.37 -0.07 + faces 24 + 0 1 2 1 0 1 2 3 + 3 2 1 1 3 2 1 3 + 4 5 6 1 4 5 6 1 + 6 7 4 1 6 7 4 1 + 5 8 9 1 8 9 10 1 + 9 6 5 1 10 11 8 1 + 8 10 11 1 5 12 13 1 + 11 9 8 1 13 6 5 1 + 10 4 7 1 9 8 11 1 + 7 11 10 1 11 10 9 1 + 12 13 14 1 14 15 16 1 + 14 15 12 1 16 17 14 1 + 13 3 1 1 18 19 20 1 + 1 14 13 1 20 21 18 1 + 12 15 2 1 22 23 24 5 + 0 2 15 1 25 24 23 5 + 0 15 5 1 26 27 5 1 + 5 4 0 1 5 4 26 1 + 15 14 8 1 28 29 9 1 + 8 5 15 1 9 8 28 1 + 14 1 10 1 27 26 12 1 + 10 8 14 1 12 5 27 1 + 1 0 4 1 30 31 8 1 + 4 10 1 1 8 9 30 1 + tverts 32 + 0.395638 0.526576 0 + 0.0501187 0.526576 0 + 0.395638 0.174571 0 + 0.0501186 0.174704 0 + 0.062259 0.92544 0 + 0.3898 0.92544 0 + 0.3898 0.99029 0 + 0.062259 0.99029 0 + 0.388822 0.913771 0 + 0.0570302 0.913771 0 + 0.0570302 0.981379 0 + 0.388822 0.981379 0 + 0.0622591 0.92544 0 + 0.0622591 0.99029 0 + 0.0495125 0.659307 0 + 0.397992 0.659307 0 + 0.397992 0.991104 0 + 0.0495127 0.991104 0 + 0.0551109 0.131306 0 + 0.385624 0.131306 0 + 0.385624 0.533417 0 + 0.055111 0.533417 0 + 0.39879 0.174919 0 + 0.39879 0.528703 0 + 0.047924 0.174272 0 + 0.047924 0.528703 0 + 0.108877 0.863705 0 + 0.343182 0.863705 0 + 0.341599 0.849409 0 + 0.104253 0.849409 0 + 0.104253 0.84941 0 + 0.341599 0.84941 0 +endnode +node trimesh Object532 + parent TIN01_D01_09 + position 3.37 3.37 4.55 + orientation 0 0 0 0 + wirecolor 0.34375 0.34375 0.34375 + ambient 0 0 0 + diffuse 0 0 0 + specular 0 0 0 + shininess 1 + bitmap TIN01_black + render 1 + Shadow 1 + beaming 0 + transparencyhint 0 + tilefade 1 + rotatetexture 0 + verts 4 + -0.52 -0.52 0 + 0.53 -0.52 0 + 0.53 0.53 0 + -0.52 0.53 0 + faces 2 + 0 1 2 1 0 0 0 1 + 2 3 0 1 0 0 0 1 + tverts 1 + 0 0 0 +endnode +node trimesh Box3015 + parent TIN01_D01_09 + position 3.37 -4.8 0.33 + orientation 0 0 0 0 + wirecolor 0.34375 0.34375 0.34375 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap TIN01_door2 + verts 14 + -0.37 0.19 0.35 + 0.11 0.19 0.35 + 0.11 0.34 0.19 + -0.52 0.34 0.19 + -0.37 -0.2 0.35 + -0.52 -0.2 0.19 + 0.11 0.34 -0.33 + -0.52 0.34 -0.33 + -0.52 -0.2 -0.33 + -0.37 0.19 2.67 + -0.37 -0.2 2.67 + 0.38 0.19 2.67 + 0.38 0.19 1.16 + 0.11 0.19 1.16 + faces 14 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 0 5 1 4 5 6 1 + 3 5 0 1 7 6 5 1 + 3 2 6 1 3 2 8 1 + 6 7 3 1 8 9 3 1 + 5 3 7 1 6 7 10 1 + 7 8 5 1 10 11 6 1 + 0 4 9 1 12 13 14 3 + 10 9 4 1 15 14 13 3 + 0 9 11 1 16 17 18 5 + 11 12 13 1 18 19 20 5 + 13 1 0 1 20 21 16 5 + 11 13 0 1 18 20 16 5 + tverts 22 + 0.300601 1.05077 0 + 0.0546721 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.167227 1.04315 0 + 0.305378 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.357965 0.694046 0 + 0.173247 0.694046 0 + 0.395638 -0.497611 0 + 0.215041 -0.497611 0 + 0.395638 0.174409 0 + 0.215041 0.174409 0 + 0.047924 -0.502544 0 + 0.047924 0.174109 0 + 0.39879 0.174359 0 + 0.39879 -0.26474 0 + 0.276247 -0.265795 0 + 0.274456 -0.502544 0 +endnode +node trimesh Object1373 + parent TIN01_D01_09 + position -4.79 3.36 0.33 + orientation 0 0 0 0 + wirecolor 0.777344 0.777344 0.777344 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap TIN01_door2 + verts 14 + 0.18 -0.36 0.35 + 0.18 0.12 0.35 + 0.18 0.12 1.16 + 0.33 0.12 0.19 + 0.33 -0.51 0.19 + -0.21 -0.36 0.35 + -0.21 -0.51 0.19 + 0.33 0.12 -0.33 + 0.33 -0.51 -0.33 + -0.21 -0.51 -0.33 + -0.21 -0.36 2.67 + 0.18 -0.36 2.67 + 0.18 0.39 1.16 + 0.18 0.39 2.67 + faces 14 + 0 1 2 1 0 1 2 5 + 1 0 3 1 3 4 5 1 + 4 3 0 1 6 5 4 1 + 0 5 6 1 7 8 9 1 + 6 4 0 1 9 10 7 1 + 3 4 7 1 5 6 11 1 + 8 7 4 1 12 11 6 1 + 4 6 8 1 10 9 13 1 + 9 8 6 1 14 13 9 1 + 5 0 10 1 15 16 17 3 + 11 10 0 1 18 17 16 3 + 12 13 11 1 19 20 21 5 + 11 0 2 1 21 0 2 5 + 11 2 12 1 21 2 19 5 + tverts 22 + 0.047924 -0.502544 0 + 0.274456 -0.502544 0 + 0.276247 -0.265795 0 + 0.0546721 1.05077 0 + 0.300601 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.305378 1.04315 0 + 0.167227 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.357965 0.694046 0 + 0.173247 0.694046 0 + 0.215041 -0.497611 0 + 0.395638 -0.497611 0 + 0.215041 0.174409 0 + 0.395638 0.174409 0 + 0.39879 -0.26474 0 + 0.39879 0.174359 0 + 0.047924 0.174109 0 +endnode +node trimesh Mesh3797 + parent TIN01_D01_09 + position -4.73 3.37 4.26 + orientation 0 0 0 0 + wirecolor 0.777344 0.777344 0.777344 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap TIN01_door2 + render 1 + Shadow 1 + beaming 0 + transparencyhint 0 + tilefade 1 + rotatetexture 0 + verts 16 + 0.27 -0.52 0.12 + 0.27 0.53 0.12 + 0.27 0.53 0.29 + 0.27 -0.52 0.29 + -0.27 0.53 0.12 + -0.27 0.53 0.29 + -0.27 -0.52 0.12 + -0.27 -0.52 0.29 + 0.12 -0.37 -0.05 + 0.12 0.38 -0.05 + -0.27 0.38 -0.05 + -0.27 -0.37 -0.05 + 0.12 0.38 -1.26 + 0.12 -0.37 -1.26 + -0.27 0.38 -1.26 + -0.27 -0.37 -1.26 + faces 18 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 4 2 1 4 5 6 1 + 5 2 4 1 7 6 5 1 + 6 0 7 1 5 4 7 1 + 3 7 0 1 6 7 4 1 + 8 9 1 1 8 9 1 1 + 1 0 8 1 1 0 8 1 + 9 10 4 1 10 11 5 1 + 4 1 9 1 5 4 10 1 + 11 8 6 1 11 10 5 1 + 0 6 8 1 4 5 10 1 + 9 8 12 1 12 13 14 5 + 13 12 8 1 15 14 13 5 + 12 14 9 1 16 17 18 1 + 10 9 14 1 19 18 17 1 + 13 8 15 1 20 21 22 3 + 11 15 8 1 23 22 21 3 + tverts 24 + 0.0517443 0.437877 0 + 0.390491 0.437877 0 + 0.390491 0.523377 0 + 0.0517443 0.523377 0 + 0.405369 0.414929 0 + 0.147514 0.414929 0 + 0.405369 0.517406 0 + 0.147514 0.517406 0 + 0.099957 0.356483 0 + 0.342278 0.356483 0 + 0.334277 0.317374 0 + 0.147514 0.317374 0 + 0.39879 0.528703 0 + 0.047924 0.528703 0 + 0.39879 0.174359 0 + 0.047924 0.174109 0 + 0.0692728 0.653515 0 + 0.265279 0.653515 0 + 0.0692729 1.003 0 + 0.265279 1.003 0 + 0.395638 0.174409 0 + 0.395638 0.526576 0 + 0.215041 0.174409 0 + 0.215041 0.526576 0 +endnode +node trimesh Object1376 + parent TIN01_D01_09 + position 3.37 -4.73 4.26 + orientation 0 0 0 0 + wirecolor 0.777344 0.777344 0.777344 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap TIN01_door2 + render 1 + Shadow 1 + beaming 0 + transparencyhint 0 + tilefade 1 + rotatetexture 0 + verts 16 + 0.53 0.27 0.12 + -0.52 0.27 0.12 + 0.53 0.27 0.29 + -0.52 0.27 0.29 + 0.53 -0.27 0.12 + 0.53 -0.27 0.29 + -0.52 -0.27 0.12 + -0.52 -0.27 0.29 + 0.38 0.12 -0.05 + -0.37 0.12 -0.05 + 0.38 -0.27 -0.05 + -0.37 -0.27 -0.05 + -0.37 0.12 -1.26 + 0.38 0.12 -1.26 + 0.38 -0.27 -1.26 + -0.37 -0.27 -1.26 + faces 18 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 0 2 1 4 5 6 1 + 2 5 4 1 6 7 4 1 + 1 6 7 1 5 4 7 1 + 7 3 1 1 7 6 5 1 + 8 9 0 1 8 9 0 1 + 1 0 9 1 1 0 9 1 + 10 8 4 1 10 11 4 1 + 0 4 8 1 5 4 11 1 + 9 11 6 1 11 10 4 1 + 6 1 9 1 4 5 11 1 + 9 8 12 1 12 13 14 5 + 13 12 8 1 15 14 13 5 + 14 13 8 1 16 17 18 1 + 8 10 14 1 18 19 16 1 + 15 11 12 1 20 21 22 3 + 9 12 11 1 23 22 21 3 + tverts 24 + 0.390491 0.437877 0 + 0.0517443 0.437877 0 + 0.390491 0.523377 0 + 0.0517443 0.523377 0 + 0.147514 0.414929 0 + 0.405369 0.414929 0 + 0.405369 0.517406 0 + 0.147514 0.517406 0 + 0.342278 0.356483 0 + 0.099957 0.356483 0 + 0.147514 0.317374 0 + 0.334277 0.317374 0 + 0.047924 0.528703 0 + 0.39879 0.528703 0 + 0.047924 0.174109 0 + 0.39879 0.174359 0 + 0.265279 0.653515 0 + 0.0692728 0.653515 0 + 0.0692729 1.003 0 + 0.265279 1.003 0 + 0.215041 0.174409 0 + 0.215041 0.526576 0 + 0.395638 0.174409 0 + 0.395638 0.526576 0 +endnode +node trimesh Object1381 + parent TIN01_D01_09 + position 3.25 -0.16 4.52 + orientation 0 0 0 0 + wirecolor 0.839844 0.839844 0.839844 + ambient 0 0 0 + diffuse 0 0 0 + specular 0 0 0 + shininess 1 + bitmap TIN01_black + render 1 + Shadow 1 + beaming 0 + transparencyhint 0 + tilefade 1 + rotatetexture 0 + verts 8 + -7.71 3.01 0.0299999 + -7.71 4.06 0.0299999 + -8.25 3.01 0.0299999 + -8.25 4.06 0.0299999 + 0.65 -4.3 0.0299999 + -0.4 -4.3 0.0299999 + -0.4 -4.84 0.0299999 + 0.65 -4.84 0.0299999 + faces 4 + 0 1 2 1 0 0 0 1 + 3 2 1 1 0 0 0 1 + 4 5 6 1 0 0 0 1 + 6 7 4 1 0 0 0 1 + tverts 1 + 0 0 0 +endnode +node trimesh Rectangle93 + parent TIN01_D01_09 + position -4.8 3.37 3 + orientation 0 0 0 0 + wirecolor 0.839844 0.839844 0.839844 + ambient 0 0 0 + diffuse 0 0 0 + specular 0 0 0 + shininess 1 + bitmap TIN01_black + render 1 + Shadow 0 + beaming 0 + transparencyhint 0 + tilefade 2 + rotatetexture 0 + verts 12 + -0.2 -0.37 0 + 0.19 -0.37 0 + 0.19 0.38 0 + -0.2 0.38 0 + 7.8 -8.37 0 + 8.55 -8.37 0 + 8.55 -7.98 0 + 7.8 -7.98 0 + 7.8 -0.37 0 + 8.55 -0.37 0 + 8.55 0.38 0 + 7.8 0.38 0 + faces 6 + 0 1 2 1 0 0 0 1 + 3 0 2 1 0 0 0 1 + 4 5 6 1 0 0 0 1 + 4 6 7 1 0 0 0 1 + 8 9 10 1 0 0 0 1 + 8 10 11 1 0 0 0 1 +endnode +node trimesh Line777 + parent TIN01_D01_09 + position -5 3.37 4.04 + orientation 0 0 0 0 + wirecolor 0.425781 0.425781 0.425781 + ambient 0 0 0 + diffuse 0 0 0 + specular 0 0 0 + shininess 1 + bitmap TIN01_black + render 1 + Shadow 0 + beaming 0 + transparencyhint 0 + tilefade 4 + rotatetexture 0 + verts 16 + 0 0.53 0.51 + 0 -0.37 0.17 + 0 -0.52 0.34 + 0 -0.52 0.51 + 0 0.38 0.17 + 0 0.38 -1.04 + 0 -0.37 -1.04 + 0 0.53 0.34 + 7.85 -8.37 0.51 + 8.75 -8.37 0.17 + 8.9 -8.37 0.34 + 8.9 -8.37 0.51 + 8 -8.37 0.17 + 8 -8.37 -1.04 + 8.75 -8.37 -1.04 + 7.85 -8.37 0.34 + faces 12 + 0 1 2 1 0 0 0 1 + 0 2 3 1 0 0 0 1 + 4 1 0 1 0 0 0 1 + 5 6 1 1 0 0 0 1 + 4 5 1 1 0 0 0 1 + 7 4 0 1 0 0 0 1 + 8 9 10 1 0 0 0 1 + 8 10 11 1 0 0 0 1 + 12 9 8 1 0 0 0 1 + 13 14 9 1 0 0 0 1 + 12 13 9 1 0 0 0 1 + 15 12 8 1 0 0 0 1 +endnode +node light TIN01_D01_09ml1 + parent TIN01_D01_09 + position 0 0 5 + orientation 0 0 0 0 + wirecolor 0.425781 0.425781 0.425781 + radius 14 + multiplier 1 + color 0 0 0 + ambientOnly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + lensflares 0 + fadingLight 1 +endnode +node light TIN01_D01_09ml2 + parent TIN01_D01_09 + position -3.17457 1.98018 4 + orientation 0 0 0 0 + wirecolor 0.425781 0.425781 0.425781 + radius 5 + multiplier 1 + color 0.00392157 0.00392157 0.00392157 + ambientOnly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + lensflares 0 + fadingLight 1 +endnode +node trimesh Plane334 + parent TIN01_D01_09 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.226563 0.226563 0.226563 + ambient 0.603922 0.584314 0.592157 + diffuse 0.603922 0.584314 0.592157 + specular 0 0 0 + shininess 1 + bitmap TIN01_shpFLR1 + render 1 + Shadow 0 + beaming 0 + transparencyhint 0 + tilefade 0 + rotatetexture 1 + verts 35 + -5 -2.5 0 + -5 -5 0 + -2.5 -2.5 0 + -2.5 -5 0 + 0 -2.5 0 + 0 -5 0 + 2.5 -2.5 0 + 2.5 -5 0 + 2.85 -4.46 0 + 3.48 -2.5 0 + 3.48 -4.46 0 + -5 0 0 + -2.5 0 0 + 2.50077 -1.74201 0 + 3.47623 -1.73863 0 + -5 2.5 0 + -2.5 2.5 0 + 0 2.5 0 + 2.49016 1.48975 0 + 2.5 2.5 0 + 3.48 2.5 0 + -5 2.85 0 + -4.46 2.85 0 + -2.5 3.48 0 + 0 3.48 0 + 2.5 3.48 0 + 2.85 2.85 0 + 2.86 3.48 0 + -4.46 3.48 0 + 3.48 2.85 0 + 2.85 -5 0 + 0 0 0 + 3.47481 1.48508 0 + 2.49577 -0.00427009 0 + 3.49456 -0.00854027 0 + faces 44 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 2 3 4 1 2 3 4 1 + 5 4 3 1 5 4 3 1 + 4 5 6 1 4 5 6 1 + 7 6 5 1 7 6 5 1 + 6 8 9 1 6 8 9 1 + 6 7 8 1 6 7 8 1 + 10 9 8 1 10 9 8 1 + 11 0 12 1 11 0 12 1 + 2 12 0 1 2 12 0 1 + 13 9 14 1 13 9 14 1 + 15 11 16 1 15 11 16 1 + 12 16 11 1 12 16 11 1 + 17 18 19 1 17 18 19 1 + 19 18 20 1 19 18 20 1 + 21 15 22 1 21 15 22 1 + 16 22 15 1 16 22 15 1 + 23 16 24 1 23 16 24 1 + 17 24 16 1 17 24 16 1 + 25 19 26 1 25 19 26 1 + 26 27 25 1 26 27 25 1 + 16 23 22 1 16 23 22 1 + 23 28 22 1 23 28 22 1 + 19 25 17 1 19 25 17 1 + 25 24 17 1 25 24 17 1 + 19 20 26 1 19 20 26 1 + 20 29 26 1 20 29 26 1 + 7 30 8 1 7 30 8 1 + 31 12 2 1 31 12 2 1 + 4 31 2 1 4 31 2 1 + 17 31 18 1 17 31 18 1 + 18 32 20 1 18 32 20 1 + 18 31 33 1 18 31 33 1 + 33 31 13 1 33 31 13 1 + 4 13 31 1 4 13 31 1 + 9 13 6 1 9 13 6 1 + 6 13 4 1 6 13 4 1 + 16 12 17 1 16 12 17 1 + 31 17 12 1 31 17 12 1 + 34 32 33 1 39 37 38 0 + 18 33 32 1 36 38 37 0 + 14 34 13 1 35 39 34 0 + 33 13 34 1 38 34 39 0 + tverts 40 + 12 -1.5 0 + 12 -2 0 + 12.5 -1.5 0 + 12.5 -2 0 + 13 -1.5 0 + 13 -2 0 + 13.5 -1.5 0 + 13.5 -2 0 + 13.5702 -1.89176 0 + 13.6964 -1.5 0 + 13.6964 -1.89176 0 + 12 -1 0 + 12.5 -1 0 + 13.5 -1.34793 0 + 13.6964 -1.3475 0 + 12 -0.500002 0 + 12.5 -0.500002 0 + 13 -0.500002 0 + 13.4983 -0.700343 0 + 13.5 -0.500002 0 + 13.6964 -0.500002 0 + 12 -0.429846 0 + 12.1082 -0.429846 0 + 12.5 -0.303602 0 + 13 -0.303602 0 + 13.5 -0.303602 0 + 13.5702 -0.429847 0 + 13.5712 -0.303602 0 + 12.1082 -0.303602 0 + 13.6964 -0.429029 0 + 13.5702 -2 0 + 13 -1 0 + 13.6964 -0.701842 0 + 13.4988 -1 0 + 13.4982 -1.34953 0.5 + 13.6969 -1.35002 0.5 + 13.4991 -0.700832 0.5 + 13.6958 -0.700098 0.5 + 13.4988 -1.00105 0.5 + 13.6965 -1.00019 0.5 +endnode +endmodelgeom TIN01_D01_09 +donemodel TIN01_D01_09 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/TTR01_G02_02.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/TTR01_G02_02.mdl new file mode 100644 index 0000000..ebfc9ec --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/TTR01_G02_02.mdl @@ -0,0 +1,2190 @@ +#MAXMODEL ASCII +# model: TTR01_G02_02 +filedependancy TTR01_G02_02.max +newmodel TTR01_G02_02 +setsupermodel TTR01_G02_02 NULL +classification TILE +setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom TTR01_G02_02 +node dummy TTR01_G02_02 + parent NULL +endnode +node dummy TTR01_G02_02a + parent TTR01_G02_02 + position 0 0 0 + orientation 0 0 0 0 +endnode +node trimesh Line1203 + parent TTR01_G02_02a + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + transparencyhint 1 + bitmap TTR01_water01 + verts 6 + -2.0000000 -5.0000000 0.0000000 + 2.0000000 -5.0000000 0.0000000 + 3.0000000 2.0000000 0.0000000 + -3.0000000 -2.0000000 0.0000000 + -2.0000000 5.0000000 0.0000000 + 2.0000000 5.0000000 0.0000000 + tverts 6 + 36.9003983 -5.0000701 0 + 38.1003990 -5.0000701 0 + 38.4003983 -2.9000499 0 + 36.6003990 -4.1000600 0 + 36.9003983 -2.0000401 0 + 38.1003990 -2.0000401 0 + faces 4 + 0 1 2 1 0 1 2 1 + 3 0 2 1 3 0 2 1 + 4 3 2 1 4 3 2 1 + 5 4 2 1 5 4 2 1 + position 0 0 -1 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node light TTR01_G02_02ml2 + parent TTR01_G02_02 + ambientonly 0 + shadow 0 + isdynamic 0 + affectdynamic 1 + lightpriority 5 + fadingLight 1 + flareradius 0 + position 0.553626 -0.886874 2.56173 + orientation 0 0 0 0 + radius 5 + multiplier 1 + color 0.00392157 0.00392157 0.00392157 +endnode +node light TTR01_G02_02ml1 + parent TTR01_G02_02 + ambientonly 0 + shadow 0 + isdynamic 0 + affectdynamic 1 + lightpriority 5 + fadingLight 1 + flareradius 0 + position 0 0 5 + orientation 0 0 0 0 + radius 14 + multiplier 1 + color 0 0 0 +endnode +node trimesh Line1202 + parent TTR01_G02_02 + ambient 0.788235 0.72549 0.72549 + diffuse 0.788235 0.72549 0.72549 + specular 0.05 0.05 0.05 + shininess 26 + bitmap TTR01_watcliff + verts 17 + -3.4300001 5.0000000 -0.4500000 + -3.3499999 3.4800000 -0.3500000 + -2.4700000 3.5300000 0.4200000 + -2.5300000 5.0000000 0.3500000 + -3.5599999 2.1500001 -0.5200000 + -2.6400001 2.2200000 0.3500000 + -3.7100000 0.4800000 -0.3800000 + -2.8099999 0.4200000 0.4500000 + -2.7400000 -0.0800000 0.5000000 + -3.2800000 -2.7400000 -0.0500000 + -3.5200000 -3.6900001 -0.3800000 + -2.6300001 -3.6300001 0.3400000 + -2.5300000 -5.0000000 0.3500000 + -3.4300001 -5.0000000 -0.4500000 + -2.8800001 -2.7900000 0.2800000 + -3.8800001 -2.0899999 -0.3900000 + -3.6800001 -0.3800000 -0.3100000 + tverts 17 + 3.9979999 0.5570510 0 + 3.3912799 0.5942290 0 + 3.4089601 0.8892120 0 + 3.9979999 0.8641030 0 + 2.8581300 0.5318930 0 + 2.8856299 0.8640030 0 + 2.1910701 0.5824410 0 + 2.1676400 0.9025950 0 + 1.9766099 0.9073580 0 + 0.9006430 0.6973260 0 + 0.5244620 0.5826880 0 + 0.5492820 0.8610830 0 + 0.0019984 0.8641040 0 + 0.0019983 0.5570520 0 + 0.8962180 0.8710920 0 + 1.1412899 0.5851680 0 + 1.8461400 0.6038120 0 + faces 13 + 0 1 2 1 0 1 2 3 + 0 2 3 1 0 2 3 3 + 1 4 5 1 1 4 5 3 + 1 5 2 1 1 5 2 3 + 4 6 7 1 4 6 7 3 + 4 7 5 1 4 7 5 3 + 6 8 7 1 6 8 7 3 + 9 10 11 1 9 10 11 3 + 10 12 11 1 10 12 11 3 + 10 13 12 1 10 13 12 3 + 9 11 14 1 9 11 14 3 + 15 10 9 1 15 10 9 3 + 6 16 8 1 6 16 8 3 + position 4.73 0 -0.85 + orientation 0 0 0 0 +endnode +node trimesh Plane581 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 0.658824 0.572549 0.498039 + specular 0 0 0 + shininess 1 + bitmap TTR01_rock00 + verts 25 + -1.4800000 -3.7700000 3.8099999 + -1.3099999 -5.0000000 3.7000000 + -0.1100000 -3.8099999 3.5500000 + -0.0100000 -5.0000000 3.5500000 + 1.2000000 -3.6900001 3.7700000 + 1.2900000 -5.0000000 3.7000000 + -1.7800000 -2.2700000 3.7400000 + -0.4300000 -2.3599999 3.5500000 + 0.8400000 -2.0899999 3.7600000 + -1.9900000 -0.8800000 3.7000000 + -0.5400000 -0.9900000 3.5500000 + 0.7000000 -1.0700001 3.7600000 + 1.0400000 -0.3800000 3.8399999 + -1.8400000 0.4600000 3.7000000 + -0.5200000 0.4400000 3.3000000 + 1.0100000 0.4800000 3.7700000 + -1.6600000 2.1199999 3.8099999 + -0.1700000 1.9900000 3.5500000 + 1.1600000 2.1500001 3.6300001 + -1.4700000 3.8000000 3.6900001 + -0.1300000 3.5999999 3.5500000 + 1.3700000 3.4800000 3.8000000 + -1.3099999 5.0000000 3.7000000 + -0.0100000 5.0000000 3.5500000 + 1.2900000 5.0000000 3.7000000 + tverts 25 + 0.7060220 0.2474890 0 + 0.7402590 0.0009992 0 + 0.9805950 0.2382170 0 + 1.0000000 0.0009992 0 + 1.2418000 0.2622310 0 + 1.2597400 0.0009991 0 + 0.6457290 0.5471780 0 + 0.9157700 0.5286900 0 + 1.1695200 0.5826350 0 + 0.6040110 0.8236430 0 + 0.8931540 0.8030050 0 + 1.1415499 0.7860390 0 + 1.2102000 0.9233360 0 + 0.6343710 1.0921201 0 + 0.8981160 1.0869800 0 + 1.2035000 1.0955300 0 + 0.6701700 1.4233201 0 + 0.9689800 1.3978000 0 + 1.2340900 1.4290600 0 + 0.7075540 1.7594700 0 + 0.9751250 1.7192800 0 + 1.2750900 1.6956400 0 + 0.7402600 1.9990000 0 + 1.0000000 1.9990000 0 + 1.2597400 1.9990000 0 + faces 29 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 2 3 4 1 2 3 4 1 + 5 4 3 1 5 4 3 1 + 6 0 7 1 6 0 7 1 + 2 7 0 1 2 7 0 1 + 7 2 8 1 7 2 8 1 + 4 8 2 1 4 8 2 1 + 9 6 10 1 9 6 10 1 + 7 10 6 1 7 10 6 1 + 10 7 11 1 10 7 11 1 + 11 12 10 1 11 12 10 1 + 13 9 14 1 13 9 14 1 + 10 14 9 1 10 14 9 1 + 14 10 15 1 14 10 15 1 + 12 15 10 1 12 15 10 1 + 16 13 17 1 16 13 17 1 + 14 17 13 1 14 17 13 1 + 17 14 18 1 17 14 18 1 + 15 18 14 1 15 18 14 1 + 19 16 20 1 19 16 20 1 + 17 20 16 1 17 20 16 1 + 20 17 21 1 20 17 21 1 + 18 21 17 1 18 21 17 1 + 22 19 23 1 22 19 23 1 + 20 23 19 1 20 23 19 1 + 23 20 24 1 23 20 24 1 + 21 24 20 1 21 24 20 1 + 8 11 7 1 8 11 7 1 + position 0.01 0 -5 + orientation 0 0 0 0 +endnode +node trimesh Plane580 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + rotatetexture 1 + bitmap TTR01_grass02 + verts 50 + -5.0000000 -2.5000000 5.0000000 + -5.0000000 -5.0000000 5.0000000 + -3.4200001 -3.8800001 5.0000000 + -3.7700000 -2.2700000 5.0000000 + 3.1900001 -3.5699999 5.0000000 + 3.3000000 -5.0000000 5.0000000 + 5.0000000 -5.0000000 5.0000000 + 5.0000000 -2.5000000 5.0000000 + -5.0000000 0.0000000 5.0000000 + -3.9300001 -0.6900000 5.0000000 + -3.8000000 0.5300000 5.0000000 + 3.2400000 -1.2800000 5.0000000 + 2.8699999 -1.2900000 5.0000000 + 5.0000000 0.0000000 5.0000000 + 3.9900000 -0.5800000 5.0000000 + -5.0000000 2.5000000 5.0000000 + -3.6199999 2.0200000 5.0000000 + 3.7700000 0.2200000 5.0000000 + 5.0000000 2.5000000 5.0000000 + 3.4500000 0.3800000 5.0000000 + -5.0000000 5.0000000 5.0000000 + -3.5000000 3.7000000 5.0000000 + -3.3000000 5.0000000 5.0000000 + 3.3299999 3.5699999 5.0000000 + 3.2000000 2.2900000 5.0000000 + 5.0000000 5.0000000 5.0000000 + 2.7600000 -1.8600000 4.9299998 + -3.3000000 -5.0000000 5.0000000 + 3.3000000 5.0000000 5.0000000 + 2.0999999 -3.6300001 4.4899998 + 2.2000000 -5.0000000 4.5000000 + -2.2000000 5.0000000 4.5000000 + -2.3800001 3.7500000 4.5000000 + -2.5300000 2.0699999 4.6399999 + -2.7100000 0.5000000 4.5000000 + -2.8499999 -0.7900000 4.5700002 + -2.6700001 -2.2700000 4.5200000 + -2.3399999 -3.8199999 4.5900002 + -2.2000000 -5.0000000 4.5000000 + 2.2600000 3.5300000 4.5700002 + 2.2000000 5.0000000 4.5000000 + 2.0899999 2.2200000 4.5000000 + 1.9200000 0.4200000 4.5999999 + 2.2700000 -0.2200000 4.7600002 + 2.4500000 0.1300000 4.8099999 + 1.8500000 -2.7900000 4.4299998 + 3.6199999 -1.1200000 5.0000000 + 4.0300002 -0.2600000 4.9899998 + 2.7400000 0.2700000 4.9000001 + 1.9900000 -0.0800000 4.6500001 + tverts 50 + -22.5000000 17.0000000 0 + -22.5000000 16.5000000 0 + -22.1830006 16.7247009 0 + -22.2546005 17.0466995 0 + -20.8616009 16.7863007 0 + -20.8400002 16.5000000 0 + -20.5000000 16.5000000 0 + -20.5000000 17.0000000 0 + -22.5000000 17.5000000 0 + -22.2851009 17.3614006 0 + -22.2595997 17.6063004 0 + -20.8521996 17.2436008 0 + -20.9256001 17.2425995 0 + -20.5000000 17.5000000 0 + -20.7029991 17.3848000 0 + -22.5000000 18.0000000 0 + -22.2238007 17.9043999 0 + -20.7467003 17.5438004 0 + -20.5000000 18.0000000 0 + -20.8101006 17.5762005 0 + -22.5000000 18.5000000 0 + -22.2003002 18.2402992 0 + -22.1599998 18.5000000 0 + -20.8330994 18.2140007 0 + -20.8603001 17.9570007 0 + -20.5000000 18.5000000 0 + -20.9484997 17.1280003 0 + -22.1599998 16.5000000 0 + -20.8400002 18.5000000 0 + -21.0797997 16.7738991 0 + -21.0599995 16.5000000 0 + -21.9400005 18.5000000 0 + -21.9764996 18.2502995 0 + -22.0070000 17.9141006 0 + -22.0428009 17.5991993 0 + -22.0706997 17.3423996 0 + -22.0345993 17.0466995 0 + -21.9685993 16.7357006 0 + -21.9400005 16.5000000 0 + -21.0489006 18.2052002 0 + -21.0599995 18.5000000 0 + -21.0830002 17.9433002 0 + -21.1159000 17.5839005 0 + -21.0452995 17.4563999 0 + -21.0100994 17.5258007 0 + -21.1292000 16.9421997 0 + -20.7768993 17.2763996 0 + -20.6931992 17.4480991 0 + -20.9510994 17.5545998 0 + -21.1012993 17.4843006 0 + faces 55 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 1 + 4 5 6 1 4 5 6 2 + 6 7 4 1 6 7 4 2 + 8 0 9 1 8 0 9 2 + 9 10 8 1 9 10 8 1 + 11 12 7 1 11 12 7 1 + 7 13 14 1 7 13 14 2 + 15 8 16 1 15 8 16 2 + 10 16 8 1 10 16 8 1 + 17 18 19 1 17 18 19 2 + 20 15 21 1 20 15 21 2 + 21 22 20 1 21 22 20 2 + 23 24 18 1 23 24 18 1 + 18 25 23 1 18 25 23 2 + 26 4 7 1 26 4 7 1 + 27 2 1 1 27 2 1 2 + 3 9 0 1 3 9 0 1 + 16 21 15 1 16 21 15 1 + 24 19 18 1 24 19 18 1 + 28 23 25 1 28 23 25 2 + 29 30 5 1 29 30 5 2 + 21 31 22 1 21 31 22 2 + 16 32 21 1 16 32 21 2 + 10 33 16 1 10 33 16 2 + 9 34 10 1 9 34 10 2 + 3 35 9 1 3 35 9 2 + 2 36 3 1 2 36 3 2 + 27 37 2 1 27 37 2 2 + 27 38 37 1 27 38 37 2 + 3 36 35 1 3 36 35 2 + 9 35 34 1 9 35 34 2 + 16 33 32 1 16 33 32 2 + 21 32 31 1 21 32 31 2 + 39 24 23 1 39 24 23 2 + 40 39 23 1 40 39 23 2 + 40 23 28 1 40 23 28 2 + 41 19 24 1 41 19 24 2 + 39 41 24 1 39 41 24 2 + 42 43 44 1 42 43 44 2 + 41 42 19 1 41 42 19 2 + 45 4 26 1 45 4 26 2 + 29 5 4 1 29 5 4 2 + 45 29 4 1 45 29 4 2 + 2 37 36 1 2 37 36 2 + 10 34 33 1 10 34 33 2 + 12 26 7 1 12 26 7 1 + 7 46 11 1 7 46 11 2 + 7 14 46 1 7 14 46 2 + 14 13 47 1 14 13 47 2 + 17 47 13 1 17 47 13 1 + 13 18 17 1 13 18 17 2 + 42 48 19 1 42 48 19 2 + 42 44 48 1 42 44 48 2 + 42 49 43 1 42 49 43 2 + position 0 0 -5 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Object419 + parent TTR01_G02_02 + ambient 0.788235 0.72549 0.72549 + diffuse 0.788235 0.72549 0.72549 + specular 0.05 0.05 0.05 + shininess 26 + bitmap TTR01_watcliff + verts 16 + 3.5000000 4.2100000 -0.5000000 + 4.5799999 5.4600000 -1.3000000 + 3.6800001 5.4600000 -0.5000000 + 3.3499999 2.5300000 -0.3600000 + 4.4200001 4.2600002 -1.3099999 + 3.1700001 0.9600000 -0.5000000 + 4.2300000 2.5799999 -1.1900001 + 3.0300000 -0.3300000 -0.4300000 + 4.0500002 0.9200000 -1.3000000 + 3.2100000 -1.8099999 -0.4800000 + 3.9000001 -0.4200000 -1.3000000 + 3.5400000 -3.3599999 -0.4100000 + 4.1100001 -1.8099999 -1.2600000 + 4.5799999 -4.5400000 -1.3000000 + 4.4099998 -3.3099999 -1.1900001 + 3.6800001 -4.5400000 -0.5000000 + tverts 16 + 3.4990599 0.8630630 0 + 3.9979999 0.5570510 0 + 3.9979999 0.8641030 0 + 2.8273399 0.9162490 0 + 3.5189400 0.5549690 0 + 2.1982801 0.8641030 0 + 2.8466499 0.6008450 0 + 1.6851900 0.8895370 0 + 2.1842501 0.5570520 0 + 1.0943600 0.8716010 0 + 1.6472900 0.5570520 0 + 0.4730080 0.8971700 0 + 1.0943600 0.5720470 0 + 0.0019983 0.5570520 0 + 0.4949780 0.5981990 0 + 0.0019984 0.8641040 0 + faces 14 + 0 1 2 1 0 1 2 3 + 3 4 0 1 3 4 0 3 + 5 6 3 1 5 6 3 3 + 7 8 5 1 7 8 5 3 + 9 10 7 1 9 10 7 3 + 11 12 9 1 11 12 9 3 + 13 14 15 1 13 14 15 3 + 15 14 11 1 15 14 11 3 + 14 12 11 1 14 12 11 3 + 10 8 7 1 10 8 7 3 + 8 6 5 1 8 6 5 3 + 4 1 0 1 4 1 0 3 + 12 10 9 1 12 10 9 3 + 6 4 3 1 6 4 3 3 + position -5.88 -0.46 0 + orientation 0 0 0 0 +endnode +node trimesh Line1236 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_leaf03 + verts 8 + -0.1100000 0.1400000 0.0000000 + -0.2200000 0.1900000 0.0000000 + -0.2800000 -0.0700000 0.0000000 + -0.1300000 -0.2000000 0.0000000 + 0.1000000 -0.0900000 0.0000000 + 0.1900000 0.0900000 0.0000000 + 0.1000000 0.2700000 0.0000000 + -0.0800000 0.2800000 0.0000000 + tverts 8 + 0.3293730 0.5749000 0 + 0.0844914 0.5525640 0 + 0.2512750 0.0372604 0 + 0.6423160 -0.0150799 0 + 0.9150820 0.3985130 0 + 0.8940310 0.7901760 0 + 0.5534170 1.0133700 0 + 0.2338540 0.8448850 0 + faces 6 + 0 1 2 1 0 1 2 1 + 0 2 3 1 0 2 3 1 + 0 3 4 1 0 3 4 1 + 0 4 5 1 0 4 5 1 + 0 5 6 1 0 5 6 1 + 0 6 7 1 0 6 7 1 + position 1.4 3.51 -0.98 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Line1235 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_leaf03 + verts 8 + 0.0000000 -0.0800000 0.0000000 + 0.0500000 -0.2000000 0.0000000 + 0.2700000 -0.0400000 0.0000000 + 0.2400000 0.1500000 0.0000000 + 0.0000000 0.2200000 0.0000000 + -0.1800000 0.1500000 0.0000000 + -0.2400000 -0.0400000 0.0000000 + -0.1100000 -0.1700000 0.0000000 + tverts 8 + 0.3293730 0.5749000 0 + 0.0844914 0.5525640 0 + 0.2512750 0.0372604 0 + 0.6423160 -0.0150799 0 + 0.9150820 0.3985130 0 + 0.8940310 0.7901760 0 + 0.5534170 1.0133700 0 + 0.2338540 0.8448850 0 + faces 6 + 0 1 2 1 0 1 2 1 + 0 2 3 1 0 2 3 1 + 0 3 4 1 0 3 4 1 + 0 4 5 1 0 4 5 1 + 0 5 6 1 0 5 6 1 + 0 6 7 1 0 6 7 1 + position 1.31 3.08 -0.98 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Line1238 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_leaf01 + verts 18 + 0.0100000 -0.0500000 -0.0100000 + 0.0500000 0.0200000 -0.0100000 + 0.0400000 0.0300000 0.4200000 + 0.0100000 -0.0100000 0.4200000 + -0.0300000 0.0200000 -0.0100000 + -0.0200000 0.0300000 0.4200000 + 0.0400000 -0.0100000 0.8400000 + 0.0200000 -0.0500000 0.8400000 + 0.0000000 -0.0100000 0.8400000 + 0.0300000 0.0100000 1.2600000 + 0.0100000 -0.0300000 1.2600000 + -0.0100000 0.0100000 1.2600000 + -0.1200000 -0.0200000 0.5100000 + -0.0800000 -0.0900000 0.5100000 + -0.2800000 -0.1600000 0.5100000 + 0.0500000 0.0900000 0.5200000 + -0.0200000 0.0900000 0.5200000 + 0.0300000 0.2600000 0.5700000 + tverts 26 + -0.1603950 0.0004995 0 + 0.1408020 0.0004995 0 + 0.1350130 0.3335000 0 + -0.1456130 0.3335000 0 + 0.4473940 0.0004995 0 + 0.4318260 0.3335000 0 + 0.8396050 0.0004995 0 + 0.8543870 0.3335000 0 + 0.1319700 0.6665000 0 + -0.1371520 0.6665000 0 + 0.4211190 0.6665000 0 + 0.8628480 0.6665000 0 + 0.1295450 0.9995010 0 + -0.1300650 0.9995010 0 + 0.4108990 0.9995010 0 + 0.8699350 0.9995010 0 + 0.3755010 0.6342580 0 + 0.6244990 0.6190700 0 + 0.5766490 0.9539450 0 + 0.4117500 0.9640030 0 + 0.4585690 0.0359965 0 + 0.6382410 0.2872360 0 + 0.3617590 0.2485670 0 + 0.4115460 0.0248096 0 + 0.6178760 0.0536671 0 + 0.4528360 0.9751900 0 + faces 24 + 0 1 2 1 0 1 2 3 + 0 2 3 1 0 2 3 3 + 1 4 5 2 1 4 5 3 + 1 5 2 2 1 5 2 3 + 4 0 3 4 4 6 7 3 + 4 3 5 4 4 7 5 3 + 3 2 6 1 3 2 8 3 + 3 6 7 1 3 8 9 3 + 2 5 8 2 2 5 10 3 + 2 8 6 2 2 10 8 3 + 5 3 7 4 5 7 11 3 + 5 7 8 4 5 11 10 3 + 7 6 9 1 9 8 12 3 + 7 9 10 1 9 12 13 3 + 6 8 11 2 8 10 14 3 + 6 11 9 2 8 14 12 3 + 8 7 10 4 10 11 15 3 + 8 10 11 4 10 15 14 3 + 12 13 3 4 16 17 18 3 + 3 5 12 4 18 19 16 3 + 13 12 14 4 17 16 20 3 + 15 16 5 2 21 22 23 3 + 5 2 15 2 23 24 21 3 + 16 15 17 2 22 21 25 3 + position 1.31 2.95 -1.38 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Mesh1707 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_wdfence + verts 6 + -0.0400000 0.0200000 1.6500000 + 0.0100000 -0.0600000 1.6500000 + 0.0600000 0.0200000 1.6500000 + -0.0400000 0.0200000 1.2600000 + 0.0100000 -0.0600000 1.2600000 + 0.0600000 0.0200000 1.2600000 + tverts 11 + 0.0071932 0.0000100 0 + 0.0199900 0.0177003 0 + 0.0000100 0.0199900 0 + 0.0452086 0.1149430 0 + 0.0846931 0.1149430 0 + 0.0846931 0.2148430 0 + 0.0452086 0.2148430 0 + -0.0153069 0.1149430 0 + 0.0132940 0.1149430 0 + 0.0132940 0.2148430 0 + -0.0153069 0.2148430 0 + faces 7 + 0 1 2 1 0 1 2 1 + 3 4 1 1 3 4 5 1 + 1 0 3 1 5 6 3 1 + 4 5 2 1 7 8 9 1 + 2 1 4 1 9 10 7 1 + 5 3 0 1 8 3 6 1 + 0 2 5 1 6 9 8 1 + position 1.31 2.95 -1.38 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Line1237 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_leaf03 + verts 8 + -0.0500000 0.0200000 0.0000000 + -0.1300000 0.0200000 0.0000000 + -0.0900000 -0.1500000 0.0000000 + 0.0400000 -0.1800000 0.0000000 + 0.1400000 -0.0500000 0.0000000 + 0.1400000 0.0700000 0.0000000 + 0.0400000 0.1600000 0.0000000 + -0.0700000 0.1100000 0.0000000 + tverts 8 + 0.3293730 0.5749000 0 + 0.0844914 0.5525640 0 + 0.2512750 0.0372604 0 + 0.6423160 -0.0150799 0 + 0.9150820 0.3985130 0 + 0.8940310 0.7901760 0 + 0.5534170 1.0133700 0 + 0.2338540 0.8448850 0 + faces 6 + 0 1 2 1 0 1 2 1 + 0 2 3 1 0 2 3 1 + 0 3 4 1 0 3 4 1 + 0 4 5 1 0 4 5 1 + 0 5 6 1 0 5 6 1 + 0 6 7 1 0 6 7 1 + position 1 3.33 -0.98 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Line1239 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_leaf01 + verts 18 + 0.0500000 0.0000000 -0.0100000 + -0.0100000 0.0400000 -0.0100000 + -0.0300000 0.0300000 0.4200000 + 0.0100000 0.0000000 0.4200000 + -0.0200000 -0.0400000 -0.0100000 + -0.0400000 -0.0200000 0.4200000 + 0.0100000 -0.0100000 0.7300000 + 0.0500000 -0.0300000 0.7300000 + 0.0100000 -0.0500000 0.7200000 + 0.0000000 -0.1200000 1.0700001 + 0.0300000 -0.1400000 1.0599999 + -0.0100000 -0.1500000 1.0599999 + 0.0000000 -0.1300000 0.5100000 + 0.0800000 -0.1000000 0.5100000 + 0.1200000 -0.3000000 0.5100000 + -0.0900000 0.0500000 0.5200000 + -0.0900000 -0.0200000 0.5200000 + -0.2600000 0.0400000 0.5700000 + tverts 26 + -0.1603950 0.0004995 0 + 0.1408020 0.0004995 0 + 0.1350130 0.3335000 0 + -0.1456130 0.3335000 0 + 0.4473940 0.0004995 0 + 0.4318260 0.3335000 0 + 0.8396050 0.0004995 0 + 0.8543870 0.3335000 0 + 0.1319700 0.6665000 0 + -0.1371520 0.6665000 0 + 0.4211190 0.6665000 0 + 0.8628480 0.6665000 0 + 0.1295450 0.9995010 0 + -0.1300650 0.9995010 0 + 0.4108990 0.9995010 0 + 0.8699350 0.9995010 0 + 0.3755010 0.6342580 0 + 0.6244990 0.6190700 0 + 0.5766490 0.9539450 0 + 0.4117500 0.9640030 0 + 0.4585690 0.0359965 0 + 0.6382410 0.2872360 0 + 0.3617590 0.2485670 0 + 0.4115460 0.0248096 0 + 0.6178760 0.0536671 0 + 0.4528360 0.9751900 0 + faces 24 + 0 1 2 1 0 1 2 3 + 0 2 3 1 0 2 3 3 + 1 4 5 2 1 4 5 3 + 1 5 2 2 1 5 2 3 + 4 0 3 4 4 6 7 3 + 4 3 5 4 4 7 5 3 + 3 2 6 1 3 2 8 3 + 3 6 7 1 3 8 9 3 + 2 5 8 2 2 5 10 3 + 2 8 6 2 2 10 8 3 + 5 3 7 4 5 7 11 3 + 5 7 8 4 5 11 10 3 + 7 6 9 1 9 8 12 3 + 7 9 10 1 9 12 13 3 + 6 8 11 2 8 10 14 3 + 6 11 9 2 8 14 12 3 + 8 7 10 4 10 11 15 3 + 8 10 11 4 10 15 14 3 + 12 13 3 4 16 17 18 3 + 3 5 12 4 18 19 16 3 + 13 12 14 4 17 16 20 3 + 15 16 5 2 21 22 23 3 + 5 2 15 2 23 24 21 3 + 16 15 17 2 22 21 25 3 + position 1.34 2.76 -1.38 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Mesh1708 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_wdfence + verts 6 + -0.0300000 -0.3400000 1.3900000 + 0.0600000 -0.3100000 1.4100000 + -0.0200000 -0.2600000 1.4299999 + -0.0300000 -0.1700000 1.0400000 + 0.0600000 -0.1400000 1.0599999 + -0.0200000 -0.0900000 1.0900000 + tverts 11 + 0.0071932 0.0000100 0 + 0.0199900 0.0177003 0 + 0.0000100 0.0199900 0 + 0.0452086 0.1149430 0 + 0.0846931 0.1149430 0 + 0.0846931 0.2148430 0 + 0.0452086 0.2148430 0 + -0.0153069 0.1149430 0 + 0.0132940 0.1149430 0 + 0.0132940 0.2148430 0 + -0.0153069 0.2148430 0 + faces 7 + 0 1 2 1 0 1 2 1 + 3 4 1 1 3 4 5 1 + 1 0 3 1 5 6 3 1 + 4 5 2 1 7 8 9 1 + 2 1 4 1 9 10 7 1 + 5 3 0 1 8 3 6 1 + 0 2 5 1 6 9 8 1 + position 1.34 2.76 -1.38 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Line1234 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_leaf03 + verts 8 + 0.0500000 -0.0600000 0.0000000 + 0.1300000 -0.1100000 0.0000000 + 0.1900000 0.1000000 0.0000000 + 0.0800000 0.2000000 0.0000000 + -0.1000000 0.1300000 0.0000000 + -0.1800000 -0.0100000 0.0000000 + -0.1200000 -0.1500000 0.0000000 + 0.0200000 -0.1700000 0.0000000 + tverts 8 + 0.3293730 0.5749000 0 + 0.0844914 0.5525640 0 + 0.2512750 0.0372604 0 + 0.6423160 -0.0150799 0 + 0.9150820 0.3985130 0 + 0.8940310 0.7901760 0 + 0.5534170 1.0133700 0 + 0.2338540 0.8448850 0 + faces 6 + 0 1 2 1 0 1 2 1 + 0 2 3 1 0 2 3 1 + 0 3 4 1 0 3 4 1 + 0 4 5 1 0 4 5 1 + 0 5 6 1 0 5 6 1 + 0 6 7 1 0 6 7 1 + position -1.82 0.86 -0.98 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Line845 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap TTR01_stone06 + verts 65 + 0.2400000 1.3099999 -0.3500000 + -0.7000000 1.0100000 0.0000000 + -0.6100000 0.8100000 1.0000000 + 0.2100000 1.0800000 1.0000000 + -1.0400000 0.3200000 0.0000000 + -0.9100000 0.2100000 1.0000000 + -0.9000000 -0.7000000 0.0000000 + -0.7900000 -0.6800000 1.0000000 + -0.3000000 -1.3500000 0.0000000 + -0.2600000 -1.2400000 1.0000000 + 0.1000000 -1.4000000 0.0000000 + 0.0900000 -1.2900000 1.0000000 + 1.0100000 -0.4700000 -0.0700000 + 0.8800000 -0.4800000 1.0000000 + 1.1200000 0.1000000 0.0000000 + 0.9800000 0.0200000 1.0000000 + 2.2800000 1.1300000 -0.0100000 + 2.0200000 1.6100000 0.0000000 + 2.0200000 1.6000000 0.3900000 + 2.2800000 1.1200000 0.3900000 + 0.5200000 1.1700000 -0.2400000 + 0.4600000 0.9600000 1.0000000 + -0.3700000 0.3100000 2.0000000 + 0.1300000 0.4700000 2.0000000 + -0.5600000 -0.0600000 2.0000000 + -0.4800000 -0.6100000 2.0000000 + -0.1600000 -0.9600000 2.0000000 + 0.0600000 -0.9800000 2.0000000 + 0.5400000 -0.4900000 2.0000000 + 0.6000000 -0.1800000 2.0000000 + 0.2800000 0.3900000 2.0000000 + -0.1300000 -0.8100000 2.0799999 + 0.0500000 -0.8300000 2.0799999 + 0.4400000 -0.4300000 2.0799999 + -0.3800000 -0.5300000 2.0799999 + -0.4400000 -0.0900000 2.0799999 + 0.4900000 -0.1900000 2.0799999 + 0.2300000 0.2700000 2.0799999 + -0.3000000 0.2000000 2.0799999 + 0.1100000 0.3300000 2.0799999 + -0.7000000 1.0100000 -1.1600000 + -1.0400000 0.3200000 -1.2400000 + -0.9000000 -0.7000000 -1.2400000 + -0.3000000 -1.3500000 -0.9000000 + 0.1000000 -1.4000000 -0.5700000 + 1.4900000 0.1100000 0.0000000 + 1.5300000 0.2800000 0.9400000 + 0.8500000 1.4800000 1.0200000 + 0.7000000 1.5200000 -0.1900000 + 0.9800000 1.6600000 0.8800000 + 0.9900000 1.6600000 -0.1000000 + 0.9600000 1.4299999 1.0599999 + 1.5900000 0.4000000 1.0100000 + 1.8700000 0.4000000 0.8900000 + 1.0700001 1.5900000 0.9700000 + 1.8700000 0.2700000 0.0000000 + 1.8600000 0.2700000 0.8200000 + 1.7000000 1.7700000 0.5800000 + 1.7000000 1.7700000 0.0000000 + 2.1900001 0.8600000 0.6600000 + 1.7300000 1.6799999 0.6600000 + 2.2400000 0.8100000 0.0000000 + 2.2300000 0.8100000 0.5800000 + 2.2500000 1.1400000 0.5000000 + 2.0200000 1.5400000 0.5000000 + tverts 90 + 0.1446320 0.3232320 0 + 0.3469010 0.4479570 0 + 0.3575740 0.8094400 0 + 0.1436870 0.8094400 0 + 0.5288950 0.4479570 0 + 0.5442870 0.8094400 0 + 0.7311410 0.4479570 0 + 0.7398330 0.8094400 0 + 0.8706900 0.4479570 0 + 0.8726650 0.8094400 0 + 0.9408510 0.4479570 0 + 0.9394370 0.8094400 0 + 1.2546000 0.4231720 0 + 1.2380199 0.8094400 0 + 1.3866000 0.4479570 0 + 1.3729500 0.8094400 0 + 0.7826400 0.0853239 0 + 0.8781120 0.0892582 0 + 0.8765300 0.2412080 0 + 0.7820000 0.2412080 0 + 0.0950982 0.3628200 0 + 0.0915889 0.8094400 0 + 0.4227810 1.1709200 0 + 0.1376530 1.1709200 0 + 0.6144560 1.1709200 0 + 0.7728340 1.1709200 0 + 0.8798410 1.1709200 0 + 0.9341480 1.1709200 0 + 1.1674000 1.1709200 0 + 1.3013099 1.1709200 0 + -0.1270490 0.8094400 0 + 0.0689123 1.1709200 0 + -0.1986930 1.1709200 0 + 0.4498050 0.3166500 0 + 0.5080360 0.3093710 0 + 0.6372390 0.4422120 0 + 0.3642770 0.4094570 0 + 0.3442600 0.5550360 0 + 0.6536170 0.5241010 0 + 0.5680870 0.6769590 0 + 0.3933930 0.6533030 0 + 0.5280530 0.6969760 0 + 0.3469010 0.0295096 0 + 0.5288950 0.0005994 0 + 0.7311410 0.0006992 0 + 0.8706900 0.1234690 0 + 0.9408510 0.2423170 0 + 0.5363930 0.7422530 0 + 0.3680680 0.6876610 0 + 0.3066520 0.5648280 0 + 0.3316740 0.3828540 0 + 0.4385830 0.2668450 0 + 0.5113720 0.2577470 0 + 0.6728750 0.4237980 0 + 0.6933480 0.5261590 0 + 0.5864360 0.7172320 0 + 0.5171320 0.0896213 0 + 0.5321920 0.4536260 0 + 0.4455020 0.0910628 0 + 0.1319600 0.4834290 0 + 0.1443280 0.0168773 0 + 0.2106450 0.0002498 0 + -0.1133950 0.4479570 0 + 0.0878480 0.4298080 0 + 0.0854398 0.0532240 0 + 0.1045630 0.4791210 0 + 0.3162690 0.1369940 0 + 0.4102420 0.1356080 0 + 0.1432650 0.5329130 0 + 0.6005820 0.0909517 0 + 0.6001310 0.4070850 0 + -0.0564777 0.3153700 0 + -0.0569802 0.0924624 0 + 0.5159920 0.2887820 0 + 0.3633190 0.5624400 0 + 0.7276950 0.0896364 0 + 0.7272340 0.3153700 0 + 0.9430200 0.0924624 0 + 0.9435220 0.3153700 0 + 0.5367980 0.3832570 0 + 0.4576060 0.5146650 0 + 0.8689350 0.2841660 0 + 0.7855550 0.2841660 0 + 0.1133510 0.5558150 0 + 0.0674928 0.4953580 0 + 0.2964110 0.0958573 0 + 0.4063600 0.0942352 0 + -0.0696612 0.3461400 0 + 0.7347150 0.3461400 0 + 0.9303390 0.3461400 0 + faces 111 + 0 1 2 1 0 1 2 3 + 0 2 3 1 0 2 3 3 + 1 4 5 1 1 4 5 3 + 1 5 2 1 1 5 2 3 + 4 6 7 1 4 6 7 3 + 4 7 5 1 4 7 5 3 + 6 8 9 1 6 8 9 3 + 6 9 7 1 6 9 7 3 + 8 10 11 1 8 10 11 3 + 8 11 9 1 8 11 9 3 + 10 12 13 1 10 12 13 3 + 10 13 11 1 10 13 11 3 + 12 14 15 1 12 14 15 3 + 12 15 13 1 12 15 13 3 + 16 17 18 2 16 17 18 3 + 16 18 19 2 16 18 19 3 + 20 0 3 1 20 0 3 3 + 20 3 21 1 20 3 21 3 + 3 2 22 1 3 2 22 3 + 3 22 23 1 3 22 23 3 + 2 5 24 1 2 5 24 3 + 2 24 22 1 2 24 22 3 + 5 7 25 1 5 7 25 3 + 5 25 24 1 5 25 24 3 + 7 9 26 1 7 9 26 3 + 7 26 25 1 7 26 25 3 + 9 11 27 1 9 11 27 3 + 9 27 26 1 9 27 26 3 + 11 13 28 1 11 13 28 3 + 11 28 27 1 11 28 27 3 + 13 15 29 1 13 15 29 3 + 13 29 28 1 13 29 28 3 + 15 21 30 1 30 21 31 3 + 15 30 29 1 30 31 32 3 + 21 3 23 1 21 3 23 3 + 21 23 30 1 21 23 31 3 + 31 32 33 1 33 34 35 1 + 34 31 33 1 36 33 35 1 + 35 34 33 1 37 36 35 1 + 35 33 36 1 37 35 38 1 + 35 36 37 1 37 38 39 1 + 38 35 37 1 40 37 39 1 + 39 38 37 1 41 40 39 1 + 0 40 1 1 0 42 1 3 + 40 41 4 1 42 43 4 3 + 4 1 40 1 4 1 42 3 + 41 42 6 1 43 44 6 3 + 6 4 41 1 6 4 43 3 + 42 43 8 1 44 45 8 3 + 8 6 42 1 8 6 44 3 + 43 44 10 1 45 46 10 3 + 10 8 43 1 10 8 45 3 + 12 10 44 1 12 10 46 3 + 23 22 38 1 47 48 40 1 + 38 39 23 1 40 41 47 1 + 22 24 35 1 48 49 37 1 + 35 38 22 1 37 40 48 1 + 24 25 34 1 49 50 36 1 + 34 35 24 1 36 37 49 1 + 25 26 31 1 50 51 33 1 + 31 34 25 1 33 36 50 1 + 26 27 32 1 51 52 34 1 + 32 31 26 1 34 33 51 1 + 27 28 33 1 52 53 35 1 + 33 32 27 1 35 34 52 1 + 28 29 36 1 53 54 38 1 + 36 33 28 1 38 35 53 1 + 29 30 37 1 54 55 39 1 + 37 36 29 1 39 38 54 1 + 30 23 39 1 55 47 41 1 + 39 37 30 1 41 39 55 1 + 45 46 14 2 56 57 58 3 + 47 48 20 2 59 60 61 3 + 20 14 46 2 61 58 57 3 + 14 20 21 1 62 20 21 3 + 48 47 49 2 60 59 63 3 + 49 50 48 2 63 64 60 3 + 51 52 53 2 65 66 67 3 + 53 54 51 2 67 68 65 3 + 46 45 55 2 57 56 69 3 + 55 56 46 2 69 70 57 3 + 50 49 57 2 64 63 71 3 + 57 58 50 2 71 72 64 3 + 54 53 59 2 68 67 73 3 + 59 60 54 2 73 74 68 3 + 56 55 61 2 70 69 75 3 + 61 62 56 2 75 76 70 3 + 58 57 18 2 77 78 18 3 + 18 17 58 2 18 17 77 3 + 60 59 63 2 74 73 79 3 + 63 64 60 2 79 80 74 3 + 62 61 16 2 76 75 16 3 + 16 19 62 2 16 19 76 3 + 46 47 20 2 57 59 61 3 + 21 15 14 1 21 30 62 3 + 19 18 64 2 19 18 81 3 + 64 63 19 2 81 82 19 3 + 49 47 51 2 83 84 65 3 + 51 54 49 2 65 68 83 3 + 47 46 52 2 84 85 66 3 + 52 51 47 2 66 65 84 3 + 46 56 53 2 85 86 67 3 + 53 52 46 2 67 66 85 3 + 60 49 54 2 74 83 68 3 + 49 60 57 2 63 87 71 3 + 56 62 59 2 70 76 88 3 + 59 53 56 2 73 67 86 3 + 18 57 60 2 18 78 89 3 + 60 64 18 2 89 81 18 3 + 62 19 63 2 76 19 82 3 + 63 59 62 2 82 88 76 3 + position 1.75 -1.39 0 + orientation 0 0 0 0 +endnode +node trimesh Line1243 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_leaf01 + verts 18 + 0.0200000 -0.0500000 0.0000000 + 0.0500000 0.0200000 -0.0100000 + 0.0400000 0.1200000 0.4000000 + 0.0200000 0.0700000 0.4100000 + -0.0200000 0.0200000 -0.0100000 + -0.0100000 0.1200000 0.4000000 + 0.0500000 0.1600000 0.8200000 + 0.0200000 0.1200000 0.8300000 + 0.0000000 0.1600000 0.8200000 + 0.0400000 0.2600000 1.2300000 + 0.0200000 0.2200000 1.2400000 + 0.0000000 0.2600000 1.2300000 + -0.1100000 0.0800000 0.5000000 + -0.0700000 0.0100000 0.5100000 + -0.2700000 -0.0500000 0.5200000 + 0.0500000 0.1900000 0.4900000 + -0.0200000 0.1900000 0.4900000 + 0.0300000 0.3700000 0.5000000 + tverts 26 + -0.1603950 0.0004995 0 + 0.1408020 0.0004995 0 + 0.1350130 0.3335000 0 + -0.1456130 0.3335000 0 + 0.4473940 0.0004995 0 + 0.4318260 0.3335000 0 + 0.8396050 0.0004995 0 + 0.8543870 0.3335000 0 + 0.1319700 0.6665000 0 + -0.1371520 0.6665000 0 + 0.4211190 0.6665000 0 + 0.8628480 0.6665000 0 + 0.1295450 0.9995010 0 + -0.1300650 0.9995010 0 + 0.4108990 0.9995010 0 + 0.8699350 0.9995010 0 + 0.3755010 0.6342580 0 + 0.6244990 0.6190700 0 + 0.5766490 0.9539450 0 + 0.4117500 0.9640030 0 + 0.4585690 0.0359965 0 + 0.6382410 0.2872360 0 + 0.3617590 0.2485670 0 + 0.4115460 0.0248096 0 + 0.6178760 0.0536671 0 + 0.4528360 0.9751900 0 + faces 24 + 0 1 2 1 0 1 2 3 + 0 2 3 1 0 2 3 3 + 1 4 5 2 1 4 5 3 + 1 5 2 2 1 5 2 3 + 4 0 3 4 4 6 7 3 + 4 3 5 4 4 7 5 3 + 3 2 6 1 3 2 8 3 + 3 6 7 1 3 8 9 3 + 2 5 8 2 2 5 10 3 + 2 8 6 2 2 10 8 3 + 5 3 7 4 5 7 11 3 + 5 7 8 4 5 11 10 3 + 7 6 9 1 9 8 12 3 + 7 9 10 1 9 12 13 3 + 6 8 11 2 8 10 14 3 + 6 11 9 2 8 14 12 3 + 8 7 10 4 10 11 15 3 + 8 10 11 4 10 15 14 3 + 12 13 3 4 16 17 18 3 + 3 5 12 4 18 19 16 3 + 13 12 14 4 17 16 20 3 + 15 16 5 2 21 22 23 3 + 5 2 15 2 23 24 21 3 + 16 15 17 2 22 21 25 3 + position 1.18 -0.3 -1.06 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Mesh1709 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_wdfence + verts 6 + 0.0100000 0.3200000 1.6100000 + 0.0600000 0.2300000 1.6200000 + 0.1100000 0.3200000 1.6100000 + -0.0300000 0.2700000 1.2300000 + 0.0200000 0.1900000 1.2400000 + 0.0600000 0.2700000 1.2300000 + tverts 11 + 0.0071932 0.0000100 0 + 0.0199900 0.0177003 0 + 0.0000100 0.0199900 0 + 0.0452086 0.1149430 0 + 0.0846931 0.1149430 0 + 0.0846931 0.2148430 0 + 0.0452086 0.2148430 0 + -0.0153069 0.1149430 0 + 0.0132940 0.1149430 0 + 0.0132940 0.2148430 0 + -0.0153069 0.2148430 0 + faces 7 + 0 1 2 1 0 1 2 1 + 3 4 1 1 3 4 5 1 + 1 0 3 1 5 6 3 1 + 4 5 2 1 7 8 9 1 + 2 1 4 1 9 10 7 1 + 5 3 0 1 8 3 6 1 + 0 2 5 1 6 9 8 1 + position 1.18 -0.3 -1.06 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Line1244 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_leaf03 + verts 8 + -0.1100000 -0.1600000 0.0000000 + -0.1300000 -0.2800000 0.0000000 + 0.1400000 -0.2700000 0.0000000 + 0.2200000 -0.0800000 0.0000000 + 0.0600000 0.1000000 0.0000000 + -0.1400000 0.1500000 0.0000000 + -0.2900000 0.0100000 0.0000000 + -0.2500000 -0.1700000 0.0000000 + tverts 8 + 0.3293730 0.5749000 0 + 0.0844914 0.5525640 0 + 0.2512750 0.0372604 0 + 0.6423160 -0.0150799 0 + 0.9150820 0.3985130 0 + 0.8940310 0.7901760 0 + 0.5534170 1.0133700 0 + 0.2338540 0.8448850 0 + faces 6 + 0 1 2 1 0 1 2 1 + 0 2 3 1 0 2 3 1 + 0 3 4 1 0 3 4 1 + 0 4 5 1 0 4 5 1 + 0 5 6 1 0 5 6 1 + 0 6 7 1 0 6 7 1 + position 1.11 -2.78 -0.98 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Line1245 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_leaf03 + verts 8 + -0.0500000 0.0200000 0.0000000 + -0.1300000 0.0200000 0.0000000 + -0.0900000 -0.1500000 0.0000000 + 0.0400000 -0.1800000 0.0000000 + 0.1400000 -0.0600000 0.0000000 + 0.1400000 0.0700000 0.0000000 + 0.0400000 0.1500000 0.0000000 + -0.0700000 0.1100000 0.0000000 + tverts 8 + 0.3293730 0.5749000 0 + 0.0844914 0.5525640 0 + 0.2512750 0.0372604 0 + 0.6423160 -0.0150799 0 + 0.9150820 0.3985130 0 + 0.8940310 0.7901760 0 + 0.5534170 1.0133700 0 + 0.2338540 0.8448850 0 + faces 6 + 0 1 2 1 0 1 2 1 + 0 2 3 1 0 2 3 1 + 0 3 4 1 0 3 4 1 + 0 4 5 1 0 4 5 1 + 0 5 6 1 0 5 6 1 + 0 6 7 1 0 6 7 1 + position 0.95 -2.47 -0.98 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Line1240 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_leaf01 + verts 18 + -0.0900000 0.0500000 0.1800000 + -0.0700000 -0.1700000 0.1300000 + 0.0000000 -0.0400000 -0.0100000 + -0.0200000 0.0200000 -0.0100000 + -0.3700000 -0.0100000 0.3900000 + -0.3500000 -0.2000000 0.3500000 + -0.6100000 -0.1200000 0.4100000 + 0.1200000 -0.1900000 0.0700000 + 0.2400000 0.0000000 0.0500000 + 0.0400000 0.0500000 -0.0100000 + 0.4300000 -0.3600000 0.1100000 + 0.5300000 -0.2000000 0.1200000 + 0.6700000 -0.4000000 0.0100000 + 0.1200000 0.2200000 0.0600000 + -0.1000000 0.1900000 0.0900000 + 0.0900000 0.5800000 0.0900000 + -0.1000000 0.5500000 0.1100000 + -0.0300000 0.7900000 -0.0100000 + tverts 24 + 0.8073030 0.2379370 0 + 0.5844620 0.2267300 0 + 0.6421500 0.0343084 0 + 0.7498030 0.0397223 0 + 0.8070320 0.6880430 0 + 0.6197700 0.6786260 0 + 0.7216020 0.9694440 0 + 0.4423550 0.6986770 0 + 0.1559940 0.7161220 0 + 0.2064700 0.9471100 0 + 0.3989350 0.8892250 0 + 0.4340830 0.2130040 0 + 0.1934440 0.2276640 0 + 0.3192720 -0.0885838 0 + 0.4156360 0.7543690 0 + 0.6383850 0.7659240 0 + 0.6152590 0.9824660 0 + 0.4374180 0.9824660 0 + 0.4051100 0.2902670 0 + 0.6243450 0.2999780 0 + 0.5037260 0.0247938 0 + 0.6430400 0.2611340 0 + 0.7003920 0.1591710 0 + 0.5927400 0.1537570 0 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 0 1 2 3 0 3 + 4 5 1 1 4 5 1 3 + 1 0 4 1 1 0 4 3 + 5 4 6 1 5 4 6 3 + 7 8 9 2 7 8 9 3 + 9 2 7 2 9 10 7 3 + 10 11 8 2 11 12 8 3 + 8 7 10 2 8 7 11 3 + 11 10 12 2 12 11 13 3 + 13 14 3 1 14 15 16 3 + 3 9 13 1 16 17 14 3 + 15 16 14 1 18 19 15 3 + 14 13 15 1 15 14 18 3 + 16 15 17 1 19 18 20 3 + 9 3 2 4 21 22 23 1 + position -2.79 1.61 -0.29 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Line1242 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_leaf01 + verts 18 + -0.1800000 -0.0900000 0.0700000 + 0.0000000 -0.2200000 0.0500000 + 0.0300000 -0.0300000 0.0000000 + -0.0300000 0.0000000 -0.0200000 + -0.4000000 -0.3600000 0.0400000 + -0.2500000 -0.4800000 0.0300000 + -0.4700000 -0.5700000 -0.1100000 + 0.1500000 -0.1200000 0.1300000 + 0.1000000 0.0900000 0.2000000 + -0.0100000 0.0600000 0.0200000 + 0.4200000 -0.1200000 0.3800000 + 0.3600000 0.0500000 0.4400000 + 0.6300000 0.0100000 0.4600000 + -0.1200000 0.2000000 0.1300000 + -0.2300000 0.0600000 0.0000000 + -0.3800000 0.4400000 0.1300000 + -0.4800000 0.3200000 0.0200000 + -0.5400000 0.5800000 -0.0300000 + tverts 24 + 0.8073030 0.2379370 0 + 0.5844620 0.2267300 0 + 0.6421500 0.0343084 0 + 0.7498030 0.0397223 0 + 0.8070320 0.6880430 0 + 0.6197700 0.6786260 0 + 0.7216020 0.9694440 0 + 0.4423550 0.6986770 0 + 0.1559940 0.7161220 0 + 0.2064700 0.9471100 0 + 0.3989350 0.8892250 0 + 0.4340830 0.2130040 0 + 0.1934440 0.2276640 0 + 0.3192720 -0.0885838 0 + 0.4156360 0.7543690 0 + 0.6383850 0.7659240 0 + 0.6152590 0.9824660 0 + 0.4374180 0.9824660 0 + 0.4051100 0.2902670 0 + 0.6243450 0.2999780 0 + 0.5037260 0.0247938 0 + 0.6430400 0.2611340 0 + 0.7003920 0.1591710 0 + 0.5927400 0.1537570 0 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 0 1 2 3 0 3 + 4 5 1 1 4 5 1 3 + 1 0 4 1 1 0 4 3 + 5 4 6 1 5 4 6 3 + 7 8 9 2 7 8 9 3 + 9 2 7 2 9 10 7 3 + 10 11 8 2 11 12 8 3 + 8 7 10 2 8 7 11 3 + 11 10 12 2 12 11 13 3 + 13 14 3 1 14 15 16 3 + 3 9 13 1 16 17 14 3 + 15 16 14 1 18 19 15 3 + 14 13 15 1 15 14 18 3 + 16 15 17 1 19 18 20 3 + 9 3 2 4 21 22 23 1 + position 2.35 0.49 -0.28 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node aabb CM204 + parent TTR01_G02_02 + ambient 0.2 0.2 0.2 + diffuse 0.8 0.8 0.8 + specular 0 0 0 + shininess 1 + shadow 0 + transparencyhint 0 + bitmap NULL + verts 63 + -5.0000000 -2.5000000 -0.1900000 + -5.0000000 -5.0000000 -0.1900000 + -3.4200001 -3.8800001 -0.1900000 + -3.7700000 -2.2700000 -0.1900000 + 3.1900001 -3.5699999 -0.1900000 + 3.3000000 -5.0000000 -0.1900000 + 5.0000000 -5.0000000 -0.1900000 + 5.0000000 -2.5000000 -0.1900000 + -5.0000000 0.0000000 -0.1900000 + -3.9300001 -0.6900000 -0.1900000 + -3.8000000 0.5300000 -0.1900000 + 5.0000000 0.0000000 -0.1900000 + 4.1399999 -0.5300000 -0.2000000 + -5.0000000 2.5000000 -0.1900000 + -3.6199999 2.0200000 -0.1900000 + -5.0000000 5.0000000 -0.1900000 + -3.5000000 3.7000000 -0.1900000 + -3.3000000 5.0000000 -0.1900000 + 3.3299999 3.5699999 -0.1900000 + 3.2000000 2.2900000 -0.1900000 + 5.0000000 2.5000000 -0.1900000 + 5.0000000 5.0000000 -0.1900000 + 2.7700000 -1.8700000 -0.2300000 + -3.3000000 -5.0000000 -0.1900000 + 3.8000000 0.4200000 -0.1900000 + 3.3000000 5.0000000 -0.1900000 + 2.0999999 -3.6300001 -0.7000000 + 2.2000000 -5.0000000 -0.6900000 + -2.2000000 5.0000000 -0.6900000 + -2.3800001 3.7500000 -0.6900000 + -2.5300000 2.0699999 -0.5600000 + -2.7100000 0.5000000 -0.6900000 + -2.8499999 -0.7900000 -0.6300000 + -2.6700001 -2.2700000 -0.6700000 + -2.3399999 -3.8199999 -0.6100000 + -2.2000000 -5.0000000 -0.6900000 + 2.2600000 3.5300000 -0.6300000 + 2.2000000 5.0000000 -0.6900000 + 2.0899999 2.2200000 -0.6900000 + 1.9200000 0.4200000 -0.5900000 + 1.9900000 -0.0800000 -0.5400000 + 2.5100000 0.3800000 -0.3400000 + 1.8500000 -2.7900000 -0.7600000 + 1.3000000 5.0000000 -1.4900000 + 1.3800000 3.4800000 -1.3900000 + 1.1700000 2.1500001 -1.5599999 + 1.0200000 0.4800000 -1.4299999 + 0.9900000 -2.6500001 -1.4200000 + 1.2100000 -3.6900001 -1.4200000 + 1.3000000 -5.0000000 -1.4900000 + 0.5400000 -0.3600000 -1.3900000 + -1.4700000 -3.7700000 -1.3800000 + -1.3000000 -5.0000000 -1.4900000 + -1.7700000 -2.2700000 -1.4500000 + -1.9800000 -0.8800000 -1.4900000 + -1.8300000 0.4600000 -1.4900000 + -1.6500000 2.1199999 -1.3800000 + -1.4600000 3.8000000 -1.5000000 + -1.3000000 5.0000000 -1.4900000 + 1.1600000 -1.1300000 1.8099999 + 2.0000000 -0.8700000 1.8099999 + 1.4400001 -2.7400000 1.8099999 + 2.3900001 -1.7600000 1.8099999 + tverts 126 + 0.0009992 0.5005000 0 + 0.0009990 0.0009995 0 + 0.3176650 0.2255190 0 + 0.2461290 0.5471780 0 + 1.6377800 0.2870510 0 + 1.6593400 0.0009991 0 + 1.9990000 0.0009990 0 + 1.9990000 0.5004990 0 + 0.0009993 1.0000000 0 + 0.2156770 0.8615440 0 + 0.2411360 1.1061600 0 + 1.9990000 1.0000000 0 + 1.7962199 0.8848590 0 + 0.0009994 1.4995000 0 + 0.2768910 1.4040200 0 + 0.0009995 1.9990000 0 + 0.3003930 1.7395900 0 + 0.3406600 1.9990000 0 + 1.6662101 1.7133200 0 + 1.6390899 1.4565600 0 + 1.9990000 1.4995000 0 + 1.9990000 1.9990000 0 + 1.5509000 0.6284010 0 + 0.3406590 0.0009994 0 + 1.6892200 1.0760900 0 + 1.6593400 1.9990000 0 + 1.4198101 0.2746410 0 + 1.4395601 0.0009992 0 + 0.5604400 1.9990000 0 + 0.5239530 1.7495300 0 + 0.4935110 1.4136699 0 + 0.4577340 1.0991400 0 + 0.4298240 0.8425930 0 + 0.4659090 0.5471780 0 + 0.5318240 0.2365040 0 + 0.5604390 0.0009994 0 + 1.4506700 1.7044801 0 + 1.4395601 1.9990000 0 + 1.4166100 1.4428101 0 + 1.3837000 1.0838200 0 + 1.4542800 0.9563890 0 + 1.4893900 1.0257200 0 + 1.5483500 1.0545200 0 + 1.3703800 0.4427950 0 + 1.7224100 0.7766540 0 + 1.7525100 1.0437599 0 + 1.8060100 0.9481480 0 + 3.9979999 0.5570510 0 + 3.3912799 0.5942290 0 + 3.4089601 0.8892120 0 + 3.9979999 0.8641030 0 + 3.1491799 0.7233910 0 + 2.8856299 0.8640030 0 + 2.8581300 0.5318930 0 + 2.1910701 0.5824410 0 + 2.1676400 0.9025950 0 + 1.9766099 0.9073580 0 + 0.9006430 0.6973260 0 + 0.5244620 0.5826880 0 + 0.5492820 0.8610830 0 + 0.0019984 0.8641040 0 + 0.0019983 0.5570520 0 + 0.8962180 0.8710920 0 + 1.8461400 0.6038120 0 + 0.7060220 0.2474890 0 + 0.7402590 0.0009992 0 + 0.9805950 0.2382170 0 + 1.0000000 0.0009992 0 + 0.6457290 0.5471780 0 + 0.9157700 0.5286900 0 + 0.6040110 0.8236430 0 + 0.8931540 0.8030050 0 + 0.6343710 1.0921201 0 + 0.8981160 1.0869800 0 + 0.6701700 1.4233201 0 + 1.2340900 1.4290600 0 + 1.2035000 1.0955300 0 + 0.9689800 1.3978000 0 + 0.7075540 1.7594700 0 + 0.9751250 1.7192800 0 + 0.7402600 1.9990000 0 + 1.0000000 1.9990000 0 + 0.1446320 0.3232320 0 + 0.3575740 0.8094400 0 + 0.1436870 0.8094400 0 + 0.9408510 0.4479570 0 + 1.2546000 0.4231720 0 + 1.2380199 0.8094400 0 + 0.3442600 0.5550360 0 + 0.3642770 0.4094570 0 + 0.6372390 0.4422120 0 + 0.6536170 0.5241010 0 + 0.5680870 0.6769590 0 + 0.3469010 0.0295096 0 + 0.3469010 0.4479570 0 + 0.5288950 0.0005994 0 + 0.7311410 0.0006992 0 + 0.7311410 0.4479570 0 + 0.5288950 0.4479570 0 + 0.8706900 0.1234690 0 + 0.9408510 0.2423170 0 + 0.5171320 0.0896213 0 + 0.1443280 0.0168773 0 + 0.2106450 0.0002498 0 + -0.1133950 0.4479570 0 + 0.0950982 0.3628200 0 + 0.0915889 0.8094400 0 + 0.7276950 0.0896364 0 + 0.5297840 0.0770419 0 + 0.6005820 0.0909517 0 + 0.2154120 0.1123600 0 + -0.0569802 0.0924624 0 + 0.0854398 0.0532240 0 + -0.1270490 0.8094400 0 + 3.4990599 0.8630630 0 + 2.8273399 0.9162490 0 + 3.5189400 0.5549690 0 + 2.1982801 0.8641030 0 + 2.8466499 0.6008450 0 + 1.6851900 0.8895370 0 + 2.1842501 0.5570520 0 + 1.0943600 0.8716010 0 + 1.6472900 0.5570520 0 + 0.4730080 0.8971700 0 + 1.0943600 0.5720470 0 + 0.4949780 0.5981990 0 + faces 102 + 0 1 2 1 0 1 2 3 + 2 3 0 1 2 3 0 3 + 4 5 6 1 4 5 6 3 + 6 7 4 1 6 7 4 3 + 8 0 9 1 8 0 9 3 + 9 10 8 1 9 10 8 3 + 7 11 12 2 7 11 12 3 + 13 8 14 1 13 8 14 3 + 10 14 8 1 10 14 8 3 + 15 13 16 1 15 13 16 3 + 16 17 15 1 16 17 15 3 + 18 19 20 1 18 19 20 3 + 20 21 18 1 20 21 18 3 + 22 4 7 4 22 4 7 3 + 23 2 1 1 23 2 1 3 + 3 9 0 1 3 9 0 3 + 14 16 13 1 14 16 13 3 + 19 24 20 1 19 24 20 3 + 25 18 21 1 25 18 21 3 + 26 27 5 2 26 27 5 3 + 16 28 17 2 16 28 17 3 + 14 29 16 4 14 29 16 3 + 10 30 14 2 10 30 14 3 + 9 31 10 4 9 31 10 3 + 3 32 9 2 3 32 9 3 + 2 33 3 4 2 33 3 3 + 23 34 2 2 23 34 2 3 + 23 35 34 4 23 35 34 3 + 3 33 32 8 3 33 32 3 + 9 32 31 16 9 32 31 3 + 14 30 29 8 14 30 29 3 + 16 29 28 16 16 29 28 3 + 36 19 18 2 36 19 18 3 + 37 36 18 4 37 36 18 3 + 37 18 25 8 37 18 25 3 + 38 24 19 4 38 24 19 3 + 36 38 19 8 36 38 19 3 + 39 40 41 1 39 40 41 3 + 38 39 41 2 38 39 42 3 + 42 4 22 2 43 4 22 3 + 26 5 4 8 26 5 4 3 + 42 26 4 16 43 26 4 3 + 2 34 33 16 2 34 33 3 + 10 31 30 32 10 31 30 3 + 7 12 22 8 7 12 44 3 + 24 12 11 16 45 46 11 3 + 11 20 24 1 11 20 45 3 + 38 41 24 32 38 42 24 3 + 43 44 36 1 47 48 49 1 + 43 36 37 16 47 49 50 1 + 45 38 36 64 51 52 49 1 + 45 46 39 4 53 54 55 1 + 45 39 38 16 53 55 52 1 + 46 40 39 8 54 56 55 1 + 47 48 26 1 57 58 59 1 + 48 27 26 4 58 60 59 1 + 48 49 27 8 58 61 60 1 + 47 26 42 32 57 59 62 1 + 46 50 40 2 54 63 56 1 + 51 52 48 2 64 65 66 6 + 49 48 52 16 67 66 65 6 + 53 51 47 4 68 64 69 6 + 48 47 51 64 66 69 64 6 + 54 53 50 1 70 68 71 6 + 47 50 53 8 69 71 68 6 + 55 54 50 4 72 70 73 6 + 56 55 45 1 74 72 75 6 + 50 46 55 16 73 76 72 6 + 44 56 45 2 77 74 75 6 + 46 45 55 32 76 75 72 6 + 57 56 44 4 78 74 79 6 + 58 57 43 2 80 78 81 6 + 44 43 57 8 79 81 78 6 + 40 59 60 4 82 83 84 2 + 61 22 62 1 85 86 87 2 + 59 61 62 2 88 89 90 2 + 59 62 60 2 88 91 92 2 + 40 50 59 32 82 93 94 2 + 50 47 61 128 95 96 97 2 + 61 59 50 64 97 98 95 2 + 47 42 61 256 99 100 85 2 + 22 61 42 512 86 85 100 2 + 22 41 40 16 101 102 103 7 + 22 40 60 64 104 105 106 2 + 12 41 22 128 107 108 109 7 + 12 24 41 64 110 111 112 7 + 60 62 22 32 106 113 104 2 + 29 58 28 1 114 47 50 1 + 30 57 29 64 115 116 114 1 + 31 56 30 128 117 118 115 1 + 32 55 31 64 119 120 117 1 + 33 54 32 32 121 122 119 1 + 34 53 33 64 123 124 121 1 + 52 51 35 1 61 125 60 1 + 35 51 34 8 60 125 123 1 + 51 53 34 32 125 124 123 1 + 54 55 32 128 122 120 119 1 + 55 56 31 8 120 118 117 1 + 57 58 29 32 116 47 114 1 + 53 54 33 2 124 122 121 1 + 56 57 30 16 118 116 115 1 + 44 45 36 128 48 51 49 1 + aabb -5.0000000 -5.0000000 -1.5599999 5.0000000 5.0000000 1.8099999 -1 + -5.0000000 -5.0000000 -1.4900000 5.0000000 0.5000000 1.8099999 -1 + -5.0000000 -5.0000000 -1.4900000 1.3000000 0.5000000 -0.1900000 -1 + -5.0000000 -5.0000000 -0.6900000 -2.2000000 0.5000000 -0.1900000 -1 + -5.0000000 -5.0000000 -0.6900000 -2.2000000 -2.2700000 -0.1900000 -1 + -5.0000000 -5.0000000 -0.1900000 -3.3000000 -2.2700000 -0.1900000 -1 + -5.0000000 -5.0000000 -0.1900000 -3.3000000 -3.8800001 -0.1900000 14 + -5.0000000 -5.0000000 -0.1900000 -3.4200001 -2.2700000 -0.1900000 -1 + -5.0000000 -5.0000000 -0.1900000 -3.4200001 -2.5000000 -0.1900000 0 + -5.0000000 -3.8800001 -0.1900000 -3.4200001 -2.2700000 -0.1900000 1 + -3.4200001 -5.0000000 -0.6900000 -2.2000000 -2.2700000 -0.1900000 -1 + -3.3000000 -5.0000000 -0.6900000 -2.2000000 -3.8199999 -0.1900000 27 + -3.4200001 -5.0000000 -0.6700000 -2.3399999 -2.2700000 -0.1900000 -1 + -3.4200001 -5.0000000 -0.6100000 -2.3399999 -3.8199999 -0.1900000 26 + -3.4200001 -3.8800001 -0.6700000 -2.3399999 -2.2700000 -0.1900000 42 + -5.0000000 -3.8800001 -0.6900000 -2.6700001 0.5000000 -0.1900000 -1 + -5.0000000 -3.8800001 -0.6700000 -2.6700001 -0.6900000 -0.1900000 -1 + -3.7700000 -3.8800001 -0.6700000 -2.6700001 -2.2700000 -0.1900000 25 + -5.0000000 -2.5000000 -0.6700000 -2.6700001 -0.6900000 -0.1900000 -1 + -5.0000000 -2.5000000 -0.1900000 -3.7700000 -0.6900000 -0.1900000 15 + -3.7700000 -2.2700000 -0.6700000 -2.6700001 -0.7900000 -0.1900000 28 + -5.0000000 -2.5000000 -0.6900000 -2.7100000 0.5000000 -0.1900000 -1 + -3.9300001 -2.2700000 -0.6300000 -2.8499999 -0.6900000 -0.1900000 24 + -5.0000000 -2.5000000 -0.6900000 -2.7100000 0.5000000 -0.1900000 -1 + -5.0000000 -2.5000000 -0.1900000 -3.9300001 0.0000000 -0.1900000 4 + -3.9300001 -0.7900000 -0.6900000 -2.7100000 0.5000000 -0.1900000 29 + -2.8499999 -5.0000000 -1.4900000 1.3000000 0.4600000 -0.6100000 -1 + -2.3399999 -5.0000000 -1.4900000 1.3000000 -2.2700000 -0.6100000 -1 + -2.3399999 -5.0000000 -1.4900000 -1.3000000 -2.2700000 -0.6100000 -1 + -2.2000000 -5.0000000 -1.4900000 -1.3000000 -3.7700000 -0.6900000 93 + -2.3399999 -5.0000000 -1.4500000 -1.4700000 -2.2700000 -0.6100000 -1 + -2.3399999 -5.0000000 -1.3800000 -1.4700000 -3.7700000 -0.6100000 94 + -2.3399999 -3.8199999 -1.4500000 -1.4700000 -2.2700000 -0.6100000 95 + -1.4700000 -5.0000000 -1.4900000 1.3000000 -2.6500001 -1.3800000 -1 + -1.4700000 -5.0000000 -1.4900000 1.2100000 -3.6900001 -1.3800000 59 + -1.4700000 -5.0000000 -1.4900000 1.3000000 -2.6500001 -1.3800000 -1 + -1.4700000 -3.7700000 -1.4200000 1.2100000 -2.6500001 -1.3800000 62 + -1.3000000 -5.0000000 -1.4900000 1.3000000 -3.6900001 -1.4200000 60 + -2.8499999 -3.8199999 -1.4900000 0.9900000 0.4600000 -0.6100000 -1 + -2.6700001 -3.8199999 -1.4900000 0.9900000 -0.8800000 -0.6100000 -1 + -2.6700001 -3.8199999 -1.4500000 -1.7700000 -2.2700000 -0.6100000 92 + -2.6700001 -3.7700000 -1.4900000 0.9900000 -0.8800000 -0.6700000 -1 + -2.6700001 -2.2700000 -1.4900000 -1.7700000 -0.8800000 -0.6700000 99 + -1.7700000 -3.7700000 -1.4500000 0.9900000 -2.2700000 -1.3800000 61 + -2.8499999 -2.6500001 -1.4900000 0.9900000 0.4600000 -0.6300000 -1 + -2.8499999 -2.2700000 -1.4900000 -1.8300000 0.4600000 -0.6300000 -1 + -2.8499999 -2.2700000 -1.4900000 -1.9800000 -0.7900000 -0.6300000 91 + -2.8499999 -0.8800000 -1.4900000 -1.8300000 0.4600000 -0.6300000 96 + -1.9800000 -2.6500001 -1.4900000 0.9900000 -0.3600000 -1.3900000 -1 + -1.9800000 -2.2700000 -1.4900000 0.5400000 -0.3600000 -1.3900000 63 + -1.7700000 -2.6500001 -1.4500000 0.9900000 -0.3600000 -1.3900000 64 + 0.5400000 -5.0000000 -1.4900000 5.0000000 0.3800000 1.8099999 -1 + 0.9900000 -5.0000000 -1.4900000 5.0000000 -1.8700000 1.8099999 -1 + 0.9900000 -5.0000000 -1.4900000 2.7700000 -1.8700000 1.8099999 -1 + 0.9900000 -5.0000000 -1.4900000 2.2000000 -2.6500001 -0.6900000 -1 + 1.2100000 -5.0000000 -1.4900000 2.2000000 -3.6900001 -0.6900000 56 + 0.9900000 -3.6900001 -1.4200000 2.0999999 -2.6500001 -0.7000000 -1 + 0.9900000 -3.6900001 -1.4200000 2.0999999 -2.6500001 -0.7000000 54 + 0.9900000 -3.6300001 -1.4200000 2.0999999 -2.6500001 -0.7000000 57 + 0.9900000 -5.0000000 -1.4200000 2.7700000 -1.8700000 1.8099999 -1 + 1.2100000 -5.0000000 -1.4200000 2.2000000 -3.6300001 -0.6900000 55 + 0.9900000 -2.7900000 -1.4200000 2.7700000 -1.8700000 1.8099999 -1 + 0.9900000 -2.7900000 -1.4200000 1.8500000 -2.6500001 1.8099999 80 + 1.4400001 -2.7900000 -0.7600000 2.7700000 -1.8700000 1.8099999 81 + 1.8500000 -5.0000000 -0.7600000 5.0000000 -1.8700000 -0.1900000 -1 + 1.8500000 -5.0000000 -0.7600000 3.3000000 -1.8700000 -0.1900000 -1 + 2.0999999 -5.0000000 -0.7000000 3.3000000 -3.6300001 -0.1900000 19 + 1.8500000 -3.6300001 -0.7600000 3.1900001 -1.8700000 -0.1900000 -1 + 1.8500000 -3.6300001 -0.7600000 3.1900001 -2.7900000 -0.1900000 41 + 1.8500000 -3.5699999 -0.7600000 3.1900001 -1.8700000 -0.1900000 39 + 2.0999999 -5.0000000 -0.7000000 5.0000000 -1.8700000 -0.1900000 -1 + 2.0999999 -5.0000000 -0.7000000 5.0000000 -3.5699999 -0.1900000 -1 + 2.0999999 -5.0000000 -0.7000000 3.3000000 -3.5699999 -0.1900000 40 + 3.1900001 -5.0000000 -0.1900000 5.0000000 -3.5699999 -0.1900000 2 + 2.7700000 -5.0000000 -0.2300000 5.0000000 -1.8700000 -0.1900000 -1 + 3.1900001 -5.0000000 -0.1900000 5.0000000 -2.5000000 -0.1900000 3 + 2.7700000 -3.5699999 -0.2300000 5.0000000 -1.8700000 -0.1900000 13 + 0.5400000 -2.7400000 -1.4200000 5.0000000 0.3800000 1.8099999 -1 + 0.5400000 -2.7400000 -1.4200000 2.3900001 -0.0800000 1.8099999 -1 + 0.5400000 -2.7400000 -1.4200000 1.9900000 -0.0800000 1.8099999 -1 + 0.5400000 -2.7400000 -1.4200000 1.4400001 -0.3600000 1.8099999 78 + 0.5400000 -2.7400000 -1.3900000 1.9900000 -0.0800000 1.8099999 -1 + 0.5400000 -1.1300000 -1.3900000 1.9900000 -0.0800000 1.8099999 77 + 0.5400000 -2.7400000 -1.3900000 1.4400001 -0.3600000 1.8099999 79 + 1.1600000 -2.7400000 -0.5400000 2.3900001 -0.0800000 1.8099999 -1 + 1.1600000 -2.7400000 1.8099999 2.3900001 -1.1300000 1.8099999 75 + 1.1600000 -1.7600000 -0.5400000 2.3900001 -0.0800000 1.8099999 -1 + 1.1600000 -1.1300000 -0.5400000 2.0000000 -0.0800000 1.8099999 73 + 1.1600000 -1.7600000 1.8099999 2.3900001 -0.8700000 1.8099999 76 + 1.4400001 -2.7400000 -0.5400000 5.0000000 0.3800000 1.8099999 -1 + 1.4400001 -2.7400000 -0.5400000 2.7700000 -0.0800000 1.8099999 -1 + 1.4400001 -2.7400000 -0.2300000 2.7700000 -1.7600000 1.8099999 74 + 1.9900000 -1.8700000 -0.5400000 2.7700000 -0.0800000 1.8099999 -1 + 1.9900000 -1.8700000 -0.5400000 2.7700000 -0.0800000 1.8099999 83 + 2.0000000 -1.8700000 -0.2300000 2.7700000 -0.8700000 1.8099999 86 + 1.9900000 -2.5000000 -0.5400000 5.0000000 0.3800000 -0.1900000 -1 + 1.9900000 -1.8700000 -0.5400000 4.1399999 0.3800000 -0.2000000 -1 + 2.5100000 -1.8700000 -0.3400000 4.1399999 0.3800000 -0.2000000 84 + 1.9900000 -1.8700000 -0.5400000 2.7700000 0.3800000 -0.2300000 82 + 2.7700000 -2.5000000 -0.2300000 5.0000000 0.0000000 -0.1900000 -1 + 2.7700000 -2.5000000 -0.2300000 5.0000000 -0.5300000 -0.1900000 44 + 4.1399999 -2.5000000 -0.2000000 5.0000000 0.0000000 -0.1900000 6 + -5.0000000 -0.8800000 -1.5599999 5.0000000 5.0000000 -0.1900000 -1 + -5.0000000 -0.8800000 -1.5599999 1.3800000 5.0000000 -0.1900000 -1 + -5.0000000 -0.6900000 -0.6900000 -2.2000000 5.0000000 -0.1900000 -1 + -5.0000000 -0.6900000 -0.6900000 -2.5300000 2.5000000 -0.1900000 -1 + -5.0000000 -0.6900000 -0.6900000 -2.7100000 2.0200000 -0.1900000 -1 + -5.0000000 -0.6900000 -0.1900000 -3.8000000 0.5300000 -0.1900000 5 + -5.0000000 -0.6900000 -0.6900000 -2.7100000 2.0200000 -0.1900000 -1 + -3.9300001 -0.6900000 -0.6900000 -2.7100000 0.5300000 -0.1900000 23 + -5.0000000 0.0000000 -0.1900000 -3.6199999 2.0200000 -0.1900000 8 + -5.0000000 0.0000000 -0.6900000 -2.5300000 2.5000000 -0.1900000 -1 + -3.8000000 0.5000000 -0.6900000 -2.5300000 2.0699999 -0.1900000 43 + -5.0000000 0.0000000 -0.5600000 -2.5300000 2.5000000 -0.1900000 -1 + -5.0000000 0.0000000 -0.1900000 -3.6199999 2.5000000 -0.1900000 7 + -3.8000000 0.5300000 -0.5600000 -2.5300000 2.0699999 -0.1900000 22 + -5.0000000 2.0200000 -0.6900000 -2.2000000 5.0000000 -0.1900000 -1 + -5.0000000 2.0200000 -0.6900000 -2.3800001 3.7500000 -0.1900000 -1 + -5.0000000 2.0200000 -0.1900000 -3.5000000 3.7000000 -0.1900000 16 + -3.6199999 2.0200000 -0.6900000 -2.3800001 3.7500000 -0.1900000 -1 + -3.6199999 2.0200000 -0.6900000 -2.3800001 3.7500000 -0.1900000 30 + -3.6199999 2.0200000 -0.6900000 -2.3800001 3.7500000 -0.1900000 21 + -5.0000000 2.5000000 -0.6900000 -2.2000000 5.0000000 -0.1900000 -1 + -5.0000000 2.5000000 -0.1900000 -3.5000000 5.0000000 -0.1900000 9 + -5.0000000 3.7000000 -0.6900000 -2.2000000 5.0000000 -0.1900000 -1 + -5.0000000 3.7000000 -0.1900000 -3.3000000 5.0000000 -0.1900000 10 + -3.5000000 3.7000000 -0.6900000 -2.2000000 5.0000000 -0.1900000 20 + -3.5000000 -0.8800000 -1.5599999 1.3800000 5.0000000 -0.1900000 -1 + -2.8499999 -0.8800000 -1.5599999 1.1700000 2.1500001 -0.5600000 -1 + -2.8499999 -0.7900000 -1.4900000 -1.6500000 2.1199999 -0.5600000 -1 + -2.8499999 -0.7900000 -1.4900000 -1.8300000 0.5000000 -0.6300000 90 + -2.7100000 0.4600000 -1.4900000 -1.6500000 2.1199999 -0.5600000 -1 + -2.7100000 0.4600000 -1.4900000 -1.6500000 2.1199999 -0.6900000 97 + -2.7100000 0.5000000 -1.3800000 -1.6500000 2.1199999 -0.5600000 89 + -1.9800000 -0.8800000 -1.5599999 1.1700000 2.1500001 -1.3800000 -1 + -1.9800000 -0.8800000 -1.4900000 0.5400000 0.4600000 -1.3900000 65 + -1.8300000 -0.3600000 -1.5599999 1.1700000 2.1500001 -1.3800000 -1 + -1.8300000 0.4600000 -1.5599999 1.1700000 2.1500001 -1.3800000 66 + -1.8300000 -0.3600000 -1.4900000 1.0200000 0.4800000 -1.3900000 67 + -3.5000000 2.0699999 -1.5000000 1.3800000 5.0000000 -0.1900000 -1 + -3.5000000 2.0699999 -1.5000000 -1.3000000 5.0000000 -0.1900000 -1 + -2.5300000 2.0699999 -1.5000000 -1.4600000 3.8000000 -0.5600000 88 + -3.5000000 3.7000000 -1.4900000 -1.3000000 5.0000000 -0.1900000 -1 + -3.5000000 3.7000000 -0.6900000 -2.2000000 5.0000000 -0.1900000 31 + -2.3800001 3.7500000 -1.4900000 -1.3000000 5.0000000 -0.6900000 87 + -2.5300000 2.0699999 -1.5000000 1.3800000 5.0000000 -0.5600000 -1 + -2.5300000 2.0699999 -1.5000000 -1.3000000 5.0000000 -0.5600000 -1 + -2.5300000 2.0699999 -1.5000000 -1.4600000 3.8000000 -0.5600000 100 + -2.3800001 3.7500000 -1.5000000 -1.3000000 5.0000000 -0.6900000 98 + -1.6500000 2.1199999 -1.5000000 1.3800000 5.0000000 -1.3800000 -1 + -1.6500000 2.1199999 -1.5000000 1.3800000 3.8000000 -1.3800000 70 + -1.4600000 3.8000000 -1.5000000 1.3000000 5.0000000 -1.4900000 71 + -1.8300000 -0.5300000 -1.5599999 5.0000000 5.0000000 -0.1900000 -1 + -1.8300000 -0.3600000 -1.5599999 2.5100000 5.0000000 -0.3400000 -1 + -1.8300000 -0.3600000 -1.5599999 2.5100000 2.2200000 -0.3400000 -1 + -1.8300000 -0.3600000 -1.5599999 1.9900000 2.1500001 -0.5400000 -1 + -1.8300000 0.4600000 -1.5599999 1.1700000 2.1500001 -1.4299999 69 + 0.5400000 -0.3600000 -1.5599999 1.9900000 2.1500001 -0.5400000 -1 + 0.5400000 -0.3600000 -1.4299999 1.9900000 0.4800000 -0.5400000 58 + 1.0200000 0.4200000 -1.5599999 1.9200000 2.1500001 -0.5900000 51 + 1.0200000 -0.0800000 -1.4299999 2.5100000 2.2200000 -0.3400000 -1 + 1.9200000 -0.0800000 -0.5900000 2.5100000 0.4200000 -0.3400000 37 + 1.0200000 -0.0800000 -1.4299999 2.5100000 2.2200000 -0.3400000 -1 + 1.0200000 -0.0800000 -1.4299999 1.9900000 0.4800000 -0.5400000 53 + 1.9200000 0.3800000 -0.6900000 2.5100000 2.2200000 -0.3400000 38 + -1.6500000 0.4200000 -1.5599999 2.2600000 5.0000000 -0.5900000 -1 + -1.6500000 0.4200000 -1.5599999 2.2600000 3.5300000 -0.5900000 -1 + -1.6500000 2.1199999 -1.5599999 1.3800000 3.4800000 -1.3800000 68 + 1.1700000 0.4200000 -1.5599999 2.2600000 3.5300000 -0.5900000 -1 + 1.1700000 0.4200000 -1.5599999 2.0899999 2.2200000 -0.5900000 52 + 1.1700000 2.1500001 -1.5599999 2.2600000 3.5300000 -0.6300000 50 + -1.4600000 2.1500001 -1.5599999 2.2600000 5.0000000 -0.6300000 -1 + -1.4600000 2.1500001 -1.5599999 2.2600000 5.0000000 -0.6300000 -1 + -1.4600000 3.4800000 -1.5000000 1.3800000 5.0000000 -1.3900000 72 + 1.1700000 2.1500001 -1.5599999 2.2600000 3.5300000 -0.6300000 101 + 1.3000000 3.4800000 -1.4900000 2.2600000 5.0000000 -0.6300000 -1 + 1.3000000 3.4800000 -1.4900000 2.2600000 5.0000000 -0.6300000 48 + 1.3000000 3.5300000 -1.4900000 2.2600000 5.0000000 -0.6300000 49 + 2.0899999 -0.5300000 -0.6900000 5.0000000 5.0000000 -0.1900000 -1 + 2.0899999 -0.5300000 -0.6900000 5.0000000 2.5000000 -0.1900000 -1 + 2.5100000 -0.5300000 -0.3400000 5.0000000 2.5000000 -0.1900000 -1 + 3.8000000 -0.5300000 -0.2000000 5.0000000 0.4200000 -0.1900000 45 + 2.5100000 -0.5300000 -0.3400000 5.0000000 2.5000000 -0.1900000 -1 + 2.5100000 -0.5300000 -0.3400000 4.1399999 0.4200000 -0.1900000 85 + 3.8000000 0.0000000 -0.1900000 5.0000000 2.5000000 -0.1900000 46 + 2.0899999 0.3800000 -0.6900000 5.0000000 2.5000000 -0.1900000 -1 + 2.0899999 0.3800000 -0.6900000 3.8000000 2.2200000 -0.1900000 47 + 2.0899999 0.4200000 -0.6900000 5.0000000 2.5000000 -0.1900000 -1 + 2.0899999 0.4200000 -0.6900000 3.8000000 2.2900000 -0.1900000 35 + 3.2000000 0.4200000 -0.1900000 5.0000000 2.5000000 -0.1900000 17 + 2.0899999 2.2200000 -0.6900000 5.0000000 5.0000000 -0.1900000 -1 + 2.0899999 2.2200000 -0.6900000 3.3299999 5.0000000 -0.1900000 -1 + 2.0899999 2.2200000 -0.6900000 3.2000000 3.5300000 -0.1900000 36 + 2.2000000 2.2900000 -0.6900000 3.3299999 5.0000000 -0.1900000 -1 + 2.2600000 2.2900000 -0.6300000 3.3299999 3.5699999 -0.1900000 32 + 2.2000000 3.5300000 -0.6900000 3.3299999 5.0000000 -0.1900000 33 + 2.2000000 2.2900000 -0.6900000 5.0000000 5.0000000 -0.1900000 -1 + 2.2000000 2.2900000 -0.6900000 5.0000000 5.0000000 -0.1900000 -1 + 2.2000000 3.5699999 -0.6900000 3.3299999 5.0000000 -0.1900000 34 + 3.2000000 2.2900000 -0.1900000 5.0000000 3.5699999 -0.1900000 11 + 3.3000000 2.5000000 -0.1900000 5.0000000 5.0000000 -0.1900000 -1 + 3.3299999 2.5000000 -0.1900000 5.0000000 5.0000000 -0.1900000 12 + 3.3000000 3.5699999 -0.1900000 5.0000000 5.0000000 -0.1900000 18 + position 0 0 0.191768 + orientation 0 0 0 0 +endnode +node trimesh Line1233 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + bitmap TTR01_leaf03 + verts 8 + 0.0900000 -0.0200000 0.0000000 + 0.2000000 0.0200000 0.0000000 + 0.0700000 0.2600000 0.0000000 + -0.1200000 0.2400000 0.0000000 + -0.2200000 0.0200000 0.0000000 + -0.1700000 -0.1700000 0.0000000 + 0.0200000 -0.2500000 0.0000000 + 0.1600000 -0.1400000 0.0000000 + tverts 8 + 0.3293730 0.5749000 0 + 0.0844914 0.5525640 0 + 0.2512750 0.0372604 0 + 0.6423160 -0.0150799 0 + 0.9150820 0.3985130 0 + 0.8940310 0.7901760 0 + 0.5534170 1.0133700 0 + 0.2338540 0.8448850 0 + faces 6 + 0 1 2 1 0 1 2 1 + 0 2 3 1 0 2 3 1 + 0 3 4 1 0 3 4 1 + 0 4 5 1 0 4 5 1 + 0 5 6 1 0 5 6 1 + 0 6 7 1 0 6 7 1 + position -1.61 1.3 -0.98 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Line1204 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + transparencyhint 1 + bitmap TTR01_grassrim01 + verts 32 + -0.0600000 -5.0700002 -0.0400000 + -0.1600000 -3.7000000 -0.0500000 + -0.6600000 -3.7000000 -0.2500000 + -0.5600000 -5.0700002 -0.2400000 + -0.4100000 -2.8599999 -0.1100000 + -0.6500000 -2.8599999 -0.1900000 + -0.3400000 0.3500000 0.0600000 + -0.1700000 2.1500001 -0.0400000 + -0.6700000 2.1500001 -0.2400000 + -0.8400000 0.3500000 -0.1400000 + 0.0000000 3.4600000 0.0300000 + -0.5000000 3.4600000 -0.1700000 + -0.0600000 4.9299998 -0.0400000 + -0.5600000 4.9299998 -0.2400000 + -4.4600000 4.9299998 -0.0400000 + -4.6399999 3.6800001 -0.0400000 + -4.1399999 3.6800001 -0.2400000 + -3.9600000 4.9299998 -0.2400000 + -4.7900000 2.0000000 0.1000000 + -4.2900000 2.0000000 -0.1000000 + -4.9699998 0.4300000 -0.0400000 + -4.4699998 0.4300000 -0.2400000 + -5.1100001 -0.8600000 0.0300000 + -4.6100001 -0.8600000 -0.1700000 + -4.9299998 -2.3399999 -0.0200000 + -4.4299998 -2.3399999 -0.2200000 + -4.5999999 -3.8900001 0.0500000 + -4.0999999 -3.8900001 -0.1500000 + -4.4600000 -5.0700002 -0.0400000 + -3.9600000 -5.0700002 -0.2400000 + -0.4900000 -0.2100000 0.0200000 + -0.2700000 -0.1500000 0.1100000 + tverts 29 + 6.9965000 0.0500000 0 + 6.1233501 0.0500000 0 + 6.1233501 0.4500000 0 + 6.9965000 0.4500000 0 + 5.4309802 0.0500000 0 + 5.4309802 0.4500000 0 + 2.9352701 0.0500000 0 + 1.9151200 0.0500000 0 + 1.9151200 0.4500000 0 + 2.9352701 0.4500000 0 + 0.8277630 0.0500000 0 + 0.8277630 0.4500000 0 + 0.0034970 0.0500000 0 + 0.0034968 0.4500000 0 + 0.8766490 0.0500000 0 + 0.8766490 0.4500000 0 + 0.0034970 0.4500000 0 + 2.0521500 0.0500000 0 + 2.0521500 0.4500000 0 + 3.1530099 0.0500000 0 + 3.1530099 0.4500000 0 + 4.0509200 0.0500000 0 + 4.0509200 0.4500000 0 + 5.0848799 0.0500000 0 + 5.0848799 0.4500000 0 + 6.1722398 0.0500000 0 + 6.1722398 0.4500000 0 + 3.4045899 0.4500000 0 + 3.4045899 0.0500000 0 + faces 26 + 0 1 2 1 0 1 2 3 + 0 2 3 1 0 2 3 3 + 1 4 5 1 1 4 5 3 + 1 5 2 1 1 5 2 3 + 6 7 8 1 6 7 8 3 + 6 8 9 1 6 8 9 3 + 7 10 11 1 7 10 11 3 + 7 11 8 1 7 11 8 3 + 10 12 13 1 10 12 13 3 + 10 13 11 1 10 13 11 3 + 14 15 16 1 12 14 15 3 + 14 16 17 1 12 15 16 3 + 15 18 19 1 14 17 18 3 + 15 19 16 1 14 18 15 3 + 18 20 21 1 17 19 20 3 + 18 21 19 1 17 20 18 3 + 20 22 23 1 19 21 22 3 + 20 23 21 1 19 22 20 3 + 22 24 25 1 21 23 24 3 + 22 25 23 1 21 24 22 3 + 24 26 27 1 23 25 26 3 + 24 27 25 1 23 26 24 3 + 26 28 29 1 25 0 3 3 + 26 29 27 1 25 3 26 3 + 30 31 6 1 27 28 6 3 + 6 9 30 1 6 9 27 3 + position 2.26 0.07 -0.46 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +node trimesh Rectangle209 + parent TTR01_G02_02 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + shadow 0 + transparencyhint 1 + bitmap TTR01_splotch01 + verts 4 + 0.8300000 -0.9200000 0.0000000 + 0.9200000 0.8300000 0.0000000 + -0.8300000 0.9200000 0.0000000 + -0.9200000 -0.8300000 0.0000000 + tverts 4 + 0.0139398 0.0025404 0 + 0.2281660 0.0025403 0 + 0.2281660 0.2691990 0 + 0.0139399 0.2691990 0 + faces 2 + 0 1 2 1 0 1 2 1 + 3 0 2 1 3 0 2 1 + position 3.86 -1.21 0.01 + orientation 0 0 0 0 + alpha 1 + scale 1 + selfillumcolor 0 0 0 +endnode +endmodelgeom TTR01_G02_02 + +donemodel TTR01_G02_02 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/tdc01_g02_01.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/tdc01_g02_01.mdl new file mode 100644 index 0000000..fa69e28 --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/tdc01_g02_01.mdl @@ -0,0 +1,4483 @@ +# Rewritten by CleanModels 3 Version 3.7.0 Sun Jan 17 04:30:09 2021 +#MAXMODEL ASCII +filedependency Unknown +newmodel tdc01_g02_01 + classification TILE + setsupermodel tdc01_g02_01 NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom tdc01_g02_01 + node dummy tdc01_g02_01 + parent NULL + endnode + node light tdc01_g02_01ml1 + parent tdc01_g02_01 + orientation 0 0 0 0 + position 0 0 5 + wirecolor 1 1 1 + radius 14 + multiplier 1 + color 0 0 0 + ambientonly 0 + nDynamicType 0 + affectdynamic 1 + shadow 0 + lightpriority 5 + fadinglight 1 + endnode + node light tdc01_g02_01ml2 + parent tdc01_g02_01 + orientation 0 0 0 0 + position 1.66656 -3.00967 4 + wirecolor 1 1 1 + radius 5 + multiplier 1 + color 0.00392157 0.00392157 0.00392157 + ambientonly 0 + nDynamicType 0 + affectdynamic 1 + shadow 0 + lightpriority 5 + fadinglight 1 + endnode + node trimesh meshtdc1392 + parent tdc01_g02_01 + position 5 5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -212.5 -50 150 + bitmap tdc01_sandstone + verts 13 + -2 -1 0.5 + -2.4 -1 0 + -2 -1 0 + -2.1 0 0.75 + -2.1 -1 0.75 + -2.4 0 0 + -1.85 -1 0.75 + -1.85 -1 3 + -2.35 -1 3 + -1.85 -1 2.5 + -2.35 0 3 + -2.1 -1 2.5 + -2.1 0 2.5 + faces 9 + 0 1 2 1 0 1 2 5 + 3 1 4 2 3 1 4 5 + 1 3 5 2 1 3 5 5 + 4 1 0 1 4 1 0 5 + 6 4 0 1 6 4 0 5 + 7 8 9 1 7 8 9 5 + 10 11 8 2 10 11 8 5 + 11 10 12 2 11 10 12 5 + 8 11 9 1 8 11 9 5 + tverts 13 + 1.3556 0.707593 0 + 1 0 0 + 1.4227 0 0 + 0.5 0.999796 0 + 1 0.999796 0 + 0.5 0 0 + 1.38388 0.999796 0 + -0.205 0.5 0 + 0 0.5 0 + -0.125 0.999501 0 + 0.5 0.5 0 + 0 0.999501 0 + 0.5 0.999501 0 + endnode + node trimesh meshtdc4351 + parent tdc01_g02_01 + position 1.44 0.01 4.27 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 132 -1 -77 + bitmap tdc01_trim00 + tilefade 0 + verts 12 + 1.28 -0.19 -0.32 + 0.93 -0.13 -0.82 + 1.02 -0.13 -0.93 + 1.55 -0.19 -0.64 + 0.93 0.13 -0.82 + 1.02 0.13 -0.93 + 1.28 0.18 -0.32 + 1.55 0.18 -0.64 + 1.14 -0.13 -1.22 + 1.71 -0.21 -1.07 + 1.14 0.13 -1.22 + 1.71 0.19 -1.07 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 0 1 2 3 0 3 + 1 4 5 2 4 5 6 3 + 5 2 1 2 6 7 4 3 + 4 6 7 1 5 0 3 3 + 7 5 4 1 3 6 5 3 + 3 2 8 1 3 2 8 3 + 8 9 3 1 8 9 3 3 + 2 5 10 2 7 6 10 3 + 10 8 2 2 10 11 7 3 + 5 7 11 1 6 3 9 3 + 11 10 5 1 9 10 6 3 + 6 0 3 2 12 13 14 3 + 3 7 6 2 14 15 12 3 + 7 3 9 2 15 14 16 3 + 9 11 7 2 16 17 15 3 + tverts 18 + 0.24174 0.76 0 + 0.24174 0.272084 0 + 0.59375 0.272084 0 + 0.59375 0.76 0 + 0.24174 0.336632 0 + 0.24174 0.272479 0 + 0.59375 0.272479 0 + 0.59375 0.336632 0 + 0.99772 0.272084 0 + 0.99772 0.76 0 + 0.99772 0.272479 0 + 0.99772 0.336632 0 + 0.752339 0.76 0 + 0.752339 0.999021 0 + 0.400332 0.999021 0 + 0.400332 0.76 0 + -0.0036439 0.999021 0 + -0.0036438 0.76 0 + endnode + node trimesh meshtdc4350 + parent tdc01_g02_01 + position 2.1 0.01 3.49 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 24.5 0 40 + bitmap tdc01_sandstone + tilefade 0 + verts 16 + -0.22 -0.25 0.12 + -0.22 0.25 0.12 + 0.22 0.25 -0.11 + 0.22 -0.25 -0.11 + 0.71 -0.36 0.58 + 0.07 -0.36 0.91 + 0.27 -0.13 -0.04 + 0.71 0.36 0.58 + 0.62 -0.19 0.46 + 0.07 0.36 0.91 + -0.18 -0.13 0.23 + 0.02 -0.19 0.79 + 0.02 0.19 0.79 + -0.18 0.13 0.23 + 0.27 0.13 -0.04 + 0.62 0.18 0.46 + faces 22 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 0 3 4 2 4 5 6 5 + 4 5 0 2 6 7 4 5 + 3 2 6 4 4 5 8 4 + 7 4 8 4 6 7 9 4 + 2 1 9 2 4 5 6 6 + 9 7 2 2 6 7 4 6 + 1 0 10 4 4 5 10 3 + 5 9 11 4 6 7 11 3 + 11 9 12 4 11 7 12 3 + 10 0 5 4 10 5 6 3 + 1 10 13 4 4 10 13 3 + 12 9 1 4 12 7 4 3 + 13 12 1 4 13 12 4 3 + 11 10 5 4 11 10 6 3 + 6 2 14 4 8 5 14 4 + 8 4 3 4 9 7 4 4 + 7 8 15 4 6 9 15 4 + 6 8 3 4 8 9 4 4 + 14 2 7 4 14 5 6 4 + 15 14 7 4 15 14 6 4 + tverts 16 + 0.846869 0.153125 0 + 0.846869 0.846875 0 + 0.153119 0.846875 0 + 0.153119 0.153125 0 + 0.153131 0.500002 0 + 0.846881 0.500002 0 + 0.999506 1.499 0 + 0.0005054 1.499 0 + 0.322096 0.60356 0 + 0.23767 1.33156 0 + 0.675304 0.634319 0 + 0.766609 1.34464 0 + 0.239425 1.34167 0 + 0.32249 0.632936 0 + 0.678759 0.599989 0 + 0.757652 1.33153 0 + endnode + node trimesh meshtdc4357 + parent tdc01_g02_01 + position 4.27 0.02 2.81 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -145.5 -2 -111 + bitmap tdc01_sandstone + verts 22 + -1.37 0.2 -1.86 + -1.27 0.27 -2.11 + -1.67 0.26 -2.61 + -1.37 -0.22 -1.86 + -1.67 -0.28 -2.61 + -1.12 -0.29 -1.86 + -1.27 -0.29 -2.11 + -1.27 -0.36 -2.61 + -1.27 0.34 -2.61 + -1.12 0.27 -1.86 + -1.79 0.27 0.22 + -1.69 0.27 -0.11 + -1.69 -0.29 -0.11 + -1.79 -0.29 0.22 + -1.12 0.48 0.39 + -1.12 0.48 -0.11 + -1.12 -0.52 -0.11 + -1.12 -0.52 0.39 + -1.12 0.18 0.39 + -1.69 -0.14 0.24 + -1.69 0.12 0.24 + -1.12 -0.22 0.39 + faces 20 + 0 1 2 1 0 1 2 4 + 3 0 4 2 3 4 5 4 + 2 4 0 2 6 5 4 4 + 5 3 6 1 7 8 9 4 + 4 6 3 4 10 9 8 4 + 7 6 4 8 11 9 10 4 + 8 2 1 4 12 2 1 4 + 1 0 9 8 1 0 13 4 + 10 11 12 1 14 15 16 1 + 12 13 10 1 16 17 14 1 + 14 15 11 2 18 19 20 5 + 11 10 14 2 20 21 18 5 + 16 17 13 2 22 23 24 6 + 13 12 16 2 24 25 22 6 + 18 14 10 4 26 27 28 3 + 10 13 19 4 28 29 30 3 + 20 18 10 4 31 26 28 3 + 19 13 17 4 30 29 32 3 + 10 19 20 4 28 30 31 3 + 21 19 17 4 33 30 32 3 + tverts 34 + 1.1016 0.954095 0 + 0.7767 0.785471 0 + 0.1026 1.499 0 + -0.1016 0.204979 0 + -0.1016 0.771979 0 + 0.8974 0.134104 0 + 0.8974 0.842854 0 + -0.1016 0.499999 0 + -0.1016 0.954095 0 + 0.2373 0.756167 0 + 0.8974 1.499 0 + 0.8974 0.763848 0 + 0.1026 0.764377 0 + 1.1016 0.499999 0 + -0.0656779 0.2165 0 + 0.601099 0.2165 0 + 0.601099 0.7835 0 + -0.0656777 0.7835 0 + -0.397902 0.499999 0 + 0.601099 0.499999 0 + 0.601099 1.30531 0 + -0.0656779 1.44098 0 + 0.398901 0.499999 0 + 1.3979 0.499999 0 + 1.06568 1.44098 0 + 0.398901 1.30531 0 + 0.68777 0.499999 0 + 0.9995 0.499999 0 + 0.7835 1.44098 0 + 0.2165 1.44098 0 + 0.324764 1.32902 0 + 0.580862 1.32951 0 + 0.0004995 0.499999 0 + 0.316927 0.499999 0 + endnode + node trimesh meshtdc1403 + parent tdc01_g02_01 + position 5 -5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -197.5 50 162.5 + bitmap tdc01_wall_uni + verts 6 + -1.85 1 0.75 + -2.1 1 0.75 + -2.1 1 2.5 + -1.85 1 2.5 + -2.1 0 0.75 + -2.1 0 2.5 + faces 4 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + 1 4 5 2 1 4 5 3 + 5 2 1 2 5 2 1 3 + tverts 6 + 0.418684 0.0491585 0 + 0.383947 0.0491585 0 + 0.383947 0.472464 0 + 0.418684 0.472464 0 + 0.206819 0.0491585 0 + 0.206819 0.472464 0 + endnode + node trimesh meshtdc1406 + parent tdc01_g02_01 + position 5 -5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -212.5 50 150 + bitmap tdc01_sandstone + verts 13 + -2.4 1 0 + -2 1 0.5 + -2 1 0 + -2.1 0 0.75 + -2.1 1 0.75 + -2.4 0 0 + -1.85 1 0.75 + -2.35 1 3 + -1.85 1 3 + -1.85 1 2.5 + -2.1 1 2.5 + -2.35 0 3 + -2.1 0 2.5 + faces 9 + 0 1 2 1 0 1 2 5 + 0 3 4 2 0 3 4 5 + 3 0 5 2 3 0 5 5 + 0 4 1 1 0 4 1 5 + 4 6 1 1 4 6 1 5 + 7 8 9 1 7 8 9 5 + 10 11 7 2 10 11 7 5 + 11 10 12 2 11 10 12 5 + 10 7 9 1 10 7 9 5 + tverts 13 + 1 0 0 + 1.3556 0.707593 0 + 1.4227 0 0 + 0.5 0.999796 0 + 1 0.999796 0 + 0.5 0 0 + 1.38388 0.999796 0 + 0 0.5 0 + -0.205 0.5 0 + -0.125 0.999501 0 + 0 0.999501 0 + 0.5 0.5 0 + 0.5 0.999501 0 + endnode + node trimesh meshtdc1393 + parent tdc01_g02_01 + position 5 5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -197.5 -50 162.5 + bitmap tdc01_wall_uni + verts 6 + -2.1 -1 0.75 + -1.85 -1 0.75 + -2.1 -1 2.5 + -1.85 -1 2.5 + -2.1 0 0.75 + -2.1 0 2.5 + faces 4 + 0 1 2 1 0 1 2 6 + 3 2 1 1 2 3 0 6 + 4 0 5 2 1 4 5 3 + 2 5 0 2 5 2 1 3 + tverts 6 + 0.418684 0.0491585 0 + 0.383947 0.0491585 0 + 0.383947 0.472464 0 + 0.418684 0.472464 0 + 0.206819 0.0491585 0 + 0.206819 0.472464 0 + endnode + node trimesh meshtdc1380 + parent tdc01_g02_01 + position -5 5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 212.5 -50 150 + bitmap tdc01_sandstone + verts 13 + 2.4 -1 0 + 2 -1 0.5 + 2 -1 0 + 2.1 0 0.75 + 2.1 -1 0.75 + 2.4 0 0 + 1.85 -1 0.75 + 2.35 -1 3 + 1.85 -1 3 + 1.85 -1 2.5 + 2.1 -1 2.5 + 2.35 0 3 + 2.1 0 2.5 + faces 9 + 0 1 2 1 0 1 2 5 + 0 3 4 2 0 3 4 5 + 3 0 5 2 3 0 5 5 + 0 4 1 1 0 4 1 5 + 4 6 1 1 4 6 1 5 + 7 8 9 1 7 8 9 5 + 10 11 7 2 10 11 7 5 + 11 10 12 2 11 10 12 5 + 10 7 9 1 10 7 9 5 + tverts 13 + 1 0 0 + 1.3556 0.707593 0 + 1.4227 0 0 + 0.5 0.999796 0 + 1 0.999796 0 + 0.5 0 0 + 1.38388 0.999796 0 + 0 0.5 0 + -0.205 0.5 0 + -0.125 0.999501 0 + 0 0.999501 0 + 0.5 0.5 0 + 0.5 0.999501 0 + endnode + node trimesh meshtdc0157 + parent tdc01_g02_01 + position 0 0 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 0 0 0 + bitmap tdc01_fltile00 + verts 40 + -2.6 -4 0 + -2.6 -5 0 + -1 -3 0 + -1 -5 0 + 1 -3 0 + 1 -5 0 + 2.6 -4 0 + 3 -4 0 + -3 -1 0 + -3 -3 0 + -1 -1 0 + 1 -1 0 + 3 -1 0 + 3 -3 0 + -3 -0.36 0 + -2.6 -0.28 0 + -1 1 0 + 1 1 0 + 3 1 0 + 2.6 0.28 0 + 3 0.36 0 + -3 3 0 + -3 1 0 + -1 3 0 + 1 3 0 + 3 3 0 + -3 4 0 + -2.6 4 0 + -1 5 0 + 1 5 0 + 2.6 4 0 + 2.6 5 0 + 3 -0.34 0 + 2.6 -0.26 0 + -3 0.34 0 + -2.6 0.26 0 + 2.6 -5 0 + 3 4 0 + -2.6 5 0 + -3 -4 0 + faces 46 + 0 1 2 1 0 1 2 1 + 2 3 4 1 3 4 5 1 + 5 4 3 1 6 5 4 1 + 4 6 7 1 7 8 9 1 + 8 9 10 1 10 11 7 1 + 2 10 9 1 2 7 11 1 + 10 2 11 1 5 6 12 1 + 4 11 2 1 13 12 6 1 + 11 4 12 1 2 14 11 1 + 13 12 4 1 15 11 14 1 + 14 8 15 1 16 15 17 1 + 10 16 8 1 14 2 15 1 + 15 8 16 1 17 15 2 1 + 16 10 17 1 3 4 5 1 + 11 17 10 1 6 5 4 1 + 17 11 18 1 7 2 10 1 + 19 18 11 1 18 10 2 1 + 20 18 19 1 19 10 18 1 + 21 22 23 1 10 11 7 1 + 16 23 22 1 2 7 11 1 + 23 16 24 1 5 6 12 1 + 17 24 16 1 13 12 6 1 + 24 17 25 1 2 14 11 1 + 18 25 17 1 15 11 14 1 + 26 23 27 1 20 14 0 1 + 28 23 29 1 5 3 6 1 + 24 29 23 1 4 6 3 1 + 29 24 30 1 7 2 8 1 + 30 31 29 1 8 21 7 1 + 12 32 11 1 11 22 2 1 + 32 33 11 1 22 23 2 1 + 22 34 16 1 11 24 2 1 + 34 35 16 1 24 25 2 1 + 33 19 11 1 23 18 2 1 + 35 15 16 1 25 17 2 1 + 13 4 7 1 10 7 9 1 + 4 5 6 1 7 2 8 1 + 6 5 36 1 8 2 26 1 + 24 25 30 1 2 11 8 1 + 30 25 37 1 8 11 9 1 + 21 23 26 1 15 14 20 1 + 23 28 27 1 14 2 0 1 + 27 28 38 1 0 2 26 1 + 3 2 1 1 14 2 1 1 + 2 9 0 1 2 11 0 1 + 0 9 39 1 0 11 20 1 + tverts 27 + 0.05 0.375 0 + 0.05 0.25 0 + 0.25 0.5 0 + 0.75 0.25 0 + 1 0.25 0 + 0.75 0.5 0 + 1 0.5 0 + 0.25 0.75 0 + 0.05 0.625 0 + 0 0.625 0 + 0 0.75 0 + 0 0.5 0 + 0.75 0.75 0 + 1 0.75 0 + 0.25 0.25 0 + 0 0.25 0 + 0 0.331171 0 + 0.0492227 0.340915 0 + 0.0490316 0.660377 0 + 0 0.669861 0 + 0 0.375 0 + 0.05 0.75 0 + 0 0.582766 0 + 0.0494365 0.593702 0 + 0 0.417385 0 + 0.0490634 0.407475 0 + 0.05 0.5 0 + endnode + node trimesh meshtdc1389 + parent tdc01_g02_01 + position 4.8 3 1.1 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -115 0 105.5 + bitmap tdc01_pitwall00 + verts 8 + -0.65 -0.66 1.33 + -0.65 0.66 1.33 + -0.65 -0.66 0.78 + -0.65 0.66 0.78 + -1.65 -0.9 0.78 + -1.65 -0.9 1.33 + -1.65 0.9 0.78 + -1.65 0.9 1.33 + faces 8 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 5 0 2 4 5 6 6 + 0 2 4 2 6 7 4 6 + 6 4 2 4 8 9 10 6 + 2 3 6 4 10 11 8 6 + 7 6 3 2 6 7 4 6 + 3 1 7 2 4 5 6 6 + tverts 12 + 1.88889 0.385988 0 + -0.11111 0.385988 0 + 1.88889 0.0193209 0 + -0.11111 0.0193209 0 + 1 0.0193209 0 + 1 0.385988 0 + -1 0.385988 0 + -1 0.0193209 0 + 1.11111 1 0 + -0.88889 1 0 + -0.88889 0 0 + 1.11111 -4e-07 0 + endnode + node trimesh meshtdc0158 + parent tdc01_g02_01 + position 3.2 3.01 1.4 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -10 -1 -12.5 + bitmap tdc01_copper00 + verts 5 + -0.05 -0.91 0.15 + -0.05 0.89 0.15 + -0.15 -0.01 -0.12 + -0.05 0.89 -0.4 + -0.05 -0.91 -0.4 + faces 4 + 0 1 2 1 0 1 2 4 + 3 2 1 1 3 2 1 4 + 3 4 2 1 3 4 2 4 + 0 2 4 1 0 2 4 4 + tverts 5 + 0.0004995 0.99975 0 + 0.999501 0.99975 0 + 0.50172 0.75086 0 + 0.999501 0.50025 0 + 0.0004995 0.50025 0 + endnode + node trimesh meshtdc1383 + parent tdc01_g02_01 + position 4 1 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -92.5 -100 37.5 + bitmap tdc01_trim00 + verts 20 + -1 0 0 + -1 -0.64 0 + -1 -0.71 0.5 + -1 1 0.5 + -1 2 0 + -0.85 -0.71 0.75 + -0.85 1 0.75 + -1 3 0.5 + -1 3 0 + -0.85 3 0.75 + -1 -1.27 0.5 + -1 -2 0 + -1 -3 0.5 + -1 -1.34 0 + -0.85 -3 0.75 + -0.85 -1.27 0.75 + -1 -4 0 + -1 -5 0 + -1 -5 0.5 + -0.85 -5 0.75 + faces 18 + 0 1 2 1 0 1 2 5 + 0 3 4 1 0 3 4 5 + 3 2 5 2 3 2 5 5 + 5 6 3 2 5 6 3 5 + 7 4 3 1 3 7 2 5 + 4 7 8 1 7 3 8 5 + 7 3 6 2 3 2 5 5 + 6 9 7 2 5 6 3 5 + 10 11 12 1 3 9 2 5 + 11 10 13 1 9 3 10 5 + 10 12 14 2 3 2 5 5 + 14 15 10 2 5 6 3 5 + 16 17 18 1 11 1 2 5 + 16 12 11 1 11 3 12 5 + 12 18 19 2 3 2 5 5 + 19 14 12 2 5 6 3 5 + 12 16 18 1 3 11 2 5 + 3 0 2 1 3 0 2 5 + tverts 13 + 0.580238 0.135765 0 + 0.999501 0.135765 0 + 1.00147 0.75 0 + 0.0024731 0.75 0 + -0.619197 0.135765 0 + 0.999501 0.999501 0 + 0.0004995 0.999501 0 + 0.502165 0.135765 0 + 0.0360236 0.135765 0 + 0.442958 0.135765 0 + 0.0754946 0.135765 0 + 0.511774 0.135765 0 + -0.488942 0.135765 0 + endnode + node trimesh meshtdc1388 + parent tdc01_g02_01 + position 3.16 3 1.47 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -1 -300 35.5 + bitmap tdc01_wall_uni + verts 24 + -0.01 -0.9 0.96 + -0.01 -0.9 0.41 + -0.01 -1 1.23 + -0.01 -1 -0.52 + -0.01 -0.9 0.08 + -0.01 -0.9 -0.47 + -0.01 1 -0.52 + -0.01 0.9 -0.47 + -0.01 0.9 0.96 + -0.01 1 1.23 + -0.01 0.9 0.41 + -0.01 0.9 0.08 + -0.01 -6.9 0.96 + -0.01 -6.9 0.41 + -0.01 -7 1.23 + -0.01 -7 -0.52 + -0.01 -6.9 0.08 + -0.01 -6.9 -0.47 + -0.01 -5 -0.52 + -0.01 -5.1 -0.47 + -0.01 -5.1 0.96 + -0.01 -5 1.23 + -0.01 -5.1 0.41 + -0.01 -5.1 0.08 + faces 28 + 0 1 2 1 0 1 2 6 + 3 2 4 1 3 2 4 6 + 1 4 2 1 1 4 2 6 + 4 5 3 1 4 5 3 6 + 6 3 7 1 6 3 7 6 + 5 7 3 1 5 7 3 6 + 8 9 10 1 8 9 10 6 + 10 9 11 1 10 9 11 6 + 6 11 9 1 6 11 9 6 + 11 6 7 1 11 6 7 6 + 1 10 4 1 1 10 4 6 + 11 4 10 1 11 4 10 6 + 2 9 0 1 2 9 0 6 + 8 0 9 1 8 0 9 6 + 12 13 14 1 0 1 2 6 + 15 14 16 1 3 2 4 6 + 13 16 14 1 1 4 2 6 + 16 17 15 1 4 5 3 6 + 18 15 19 1 6 3 7 6 + 17 19 15 1 5 7 3 6 + 20 21 22 1 8 9 10 6 + 22 21 23 1 10 9 11 6 + 18 23 21 1 6 11 9 6 + 23 18 19 1 11 6 7 6 + 13 22 16 1 1 10 4 6 + 23 16 22 1 11 4 10 6 + 14 21 12 1 2 9 0 6 + 20 12 21 1 8 0 9 6 + tverts 12 + 0.484462 0.428496 0 + 0.484462 0.268432 0 + 0.509927 0.507073 0 + 0.509927 -0.0022215 0 + 0.484462 0.172394 0 + 0.484462 0.0123298 0 + 0.0006321 -0.0022215 0 + 0.0260969 0.0123298 0 + 0.0260969 0.428496 0 + 0.000632 0.507073 0 + 0.0260969 0.268432 0 + 0.0260969 0.172394 0 + endnode + node trimesh meshtdc1356 + parent tdc01_g02_01 + position -4.93 3 1.1 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 128 0 105.5 + bitmap tdc01_pitwall00 + verts 8 + 0.78 0.66 1.33 + 0.78 -0.66 1.33 + 0.78 0.66 0.78 + 0.78 -0.66 0.78 + 1.78 0.9 0.78 + 1.78 0.9 1.33 + 1.78 -0.9 0.78 + 1.78 -0.9 1.33 + faces 8 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 5 0 2 4 5 6 6 + 0 2 4 2 6 7 4 6 + 6 4 2 4 8 9 10 6 + 2 3 6 4 10 11 8 6 + 7 6 3 2 6 7 4 6 + 3 1 7 2 4 5 6 6 + tverts 12 + 1.88889 0.385988 0 + -0.11111 0.385988 0 + 1.88889 0.0193209 0 + -0.11111 0.0193209 0 + 1 0.0193209 0 + 1 0.385988 0 + -1 0.385988 0 + -1 0.0193209 0 + 1.11111 1 0 + -0.88889 1 0 + -0.88889 0 0 + 1.11111 -4e-07 0 + endnode + node trimesh meshtdc1382 + parent tdc01_g02_01 + position 4 1 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -85 -100 275 + bitmap tdc01_trim00 + verts 12 + -0.85 -0.5 3 + -0.85 1 3 + -0.85 1 2.5 + -0.85 -0.5 2.5 + -0.85 3 3 + -0.85 3 2.5 + -0.85 -3 3 + -0.85 -1.5 3 + -0.85 -1.5 2.5 + -0.85 -3 2.5 + -0.85 -5 3 + -0.85 -5 2.5 + faces 8 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 1 4 5 1 0 1 2 5 + 5 2 1 1 2 3 0 5 + 6 7 8 1 0 1 2 5 + 8 9 6 1 2 3 0 5 + 10 6 9 1 0 1 2 5 + 9 11 10 1 2 3 0 5 + tverts 4 + 0.0004995 0.76 0 + 0.999501 0.76 0 + 0.999501 1 0 + 0.0004995 1 0 + endnode + node trimesh meshtdc1376 + parent tdc01_g02_01 + position -5 -5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 212.5 50 150 + bitmap tdc01_sandstone + verts 13 + 2 1 0.5 + 2.4 1 0 + 2 1 0 + 2.1 0 0.75 + 2.1 1 0.75 + 2.4 0 0 + 1.85 1 0.75 + 1.85 1 3 + 2.35 1 3 + 1.85 1 2.5 + 2.35 0 3 + 2.1 1 2.5 + 2.1 0 2.5 + faces 9 + 0 1 2 1 0 1 2 5 + 3 1 4 2 3 1 4 5 + 1 3 5 2 1 3 5 5 + 4 1 0 1 4 1 0 5 + 6 4 0 1 6 4 0 5 + 7 8 9 1 7 8 9 5 + 10 11 8 2 10 11 8 5 + 11 10 12 2 11 10 12 5 + 8 11 9 1 8 11 9 5 + tverts 13 + 1.3556 0.707593 0 + 1 0 0 + 1.4227 0 0 + 0.5 0.999796 0 + 1 0.999796 0 + 0.5 0 0 + 1.38388 0.999796 0 + -0.205 0.5 0 + 0 0.5 0 + -0.125 0.999501 0 + 0.5 0.5 0 + 0 0.999501 0 + 0.5 0.999501 0 + endnode + node trimesh meshtdc1375 + parent tdc01_g02_01 + position -5 -5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 197.5 50 162.5 + bitmap tdc01_wall_uni + verts 6 + 2.1 1 0.75 + 1.85 1 0.75 + 2.1 1 2.5 + 1.85 1 2.5 + 2.1 0 0.75 + 2.1 0 2.5 + faces 4 + 0 1 2 1 0 1 2 6 + 3 2 1 1 2 3 0 6 + 4 0 5 2 1 4 5 3 + 2 5 0 2 5 2 1 3 + tverts 6 + 0.418684 0.0491585 0 + 0.383947 0.0491585 0 + 0.383947 0.472464 0 + 0.418684 0.472464 0 + 0.206819 0.0491585 0 + 0.206819 0.472464 0 + endnode + node trimesh meshtdc4363 + parent tdc01_g02_01 + diffuse 1 1 1 + ambient 1 1 1 + position 4 0.69 3.17 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 1 + center -400 -69 3 + bitmap tdc01_black8_00 + verts 28 + 1 4.31 0.03 + -0.85 -0.19 0.03 + 1 -5.69 0.03 + -0.85 1.31 0.03 + -0.85 3.31 0.03 + -1.35 4.31 0.03 + -1.35 3.31 0.03 + -0.85 -1.19 0.03 + -0.85 -2.69 0.03 + -0.85 -4.69 0.03 + -1.35 -5.69 0.03 + -1.35 -4.69 0.03 + -0.85 -0.89 0.03 + -7.15 -0.19 0.03 + -7.15 1.31 0.03 + -9 4.31 0.03 + -7.15 3.31 0.03 + -9 -5.69 0.03 + -6.65 4.31 0.03 + -6.65 3.31 0.03 + -7.15 -2.69 0.03 + -7.15 -1.19 0.03 + -7.15 -4.69 0.03 + -6.65 -5.69 0.03 + -6.65 -4.69 0.03 + -7.15 -0.49 0.03 + -0.85 -0.49 0.03 + -7.15 -0.89 0.03 + faces 24 + 0 1 2 1 0 1 2 1 + 0 3 1 1 0 3 1 1 + 3 0 4 1 3 0 4 1 + 5 4 0 1 5 4 0 1 + 5 6 4 1 5 6 4 1 + 7 8 2 1 7 8 2 1 + 8 9 2 1 8 9 2 1 + 9 10 2 1 9 10 2 1 + 11 10 9 1 11 10 9 1 + 12 7 2 1 12 7 2 1 + 13 14 15 1 13 14 15 1 + 14 16 15 1 14 16 15 1 + 15 17 13 1 15 17 13 1 + 16 18 15 1 16 18 15 1 + 19 18 16 1 19 18 16 1 + 20 21 17 1 20 21 17 1 + 22 20 17 1 22 20 17 1 + 23 22 17 1 23 22 17 1 + 23 24 22 1 23 24 22 1 + 25 13 17 1 25 13 17 1 + 1 26 2 1 1 26 2 1 + 26 12 2 1 26 12 2 1 + 27 25 17 1 27 25 17 1 + 21 27 17 1 21 27 17 1 + tverts 28 + 1.5 5.279 0 + -0.35 0.775 0 + 1.5 -4.721 0 + -0.35 2.279 0 + -0.35 4.279 0 + -0.85 5.279 0 + -0.85 4.279 0 + -0.35 -0.218 0 + -0.35 -1.721 0 + -0.35 -3.721 0 + -0.85 -4.721 0 + -0.85 -3.721 0 + -0.35 0.103 0 + 1.35 0.775 0 + 1.35 2.279 0 + -0.5 5.279 0 + 1.35 4.279 0 + -0.5 -4.721 0 + 1.85 5.279 0 + 1.85 4.279 0 + 1.35 -1.721 0 + 1.35 -0.218 0 + 1.35 -3.721 0 + 1.85 -4.721 0 + 1.85 -3.721 0 + 1.35 0.472 0 + -0.35 0.472 0 + 1.35 0.103 0 + endnode + node trimesh meshtdc1377 + parent tdc01_g02_01 + position -5 5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 197.5 -50 162.5 + bitmap tdc01_wall_uni + verts 6 + 1.85 -1 0.75 + 2.1 -1 0.75 + 2.1 -1 2.5 + 1.85 -1 2.5 + 2.1 0 0.75 + 2.1 0 2.5 + faces 4 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + 1 4 5 2 1 4 5 3 + 5 2 1 2 5 2 1 3 + tverts 6 + 0.418684 0.0491585 0 + 0.383947 0.0491585 0 + 0.383947 0.472464 0 + 0.418684 0.472464 0 + 0.206819 0.0491585 0 + 0.206819 0.472464 0 + endnode + node trimesh meshtdc0155 + parent tdc01_g02_01 + position 3.15 0 2.75 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -21.5 0 -92.5 + bitmap tdc01_wall_uni + verts 14 + 0 -0.27 -0.05 + -0.43 -0.2 -0.05 + -0.25 -0.2 -1.8 + 0 -0.27 -1.8 + -0.43 0.22 -0.05 + -0.25 0.22 -1.8 + 0 0.29 -0.05 + 0 0.29 -1.8 + 0 -2 -1.8 + 0 -2 -0.05 + 0 -0.5 -0.05 + 0 0.5 -0.05 + 0 2 -1.8 + 0 2 -0.05 + faces 12 + 0 1 2 1 0 1 2 4 + 2 3 0 1 2 3 0 4 + 1 4 5 2 1 4 5 4 + 5 2 1 2 5 2 1 4 + 4 6 7 1 6 7 8 4 + 7 5 4 1 8 9 6 4 + 3 8 9 2 10 11 12 6 + 3 10 0 2 10 13 14 6 + 3 9 10 2 10 12 13 6 + 11 7 6 2 15 16 17 6 + 12 11 13 2 18 15 19 6 + 12 7 11 2 18 16 15 6 + tverts 20 + 0.24992 0.499741 0 + 0.186785 0.499741 0 + 0.186785 0.009946 0 + 0.24992 0.009946 0 + 0.050137 0.499741 0 + 0.050137 0.0099459 0 + 0.494938 0.499741 0 + 0.412032 0.499741 0 + 0.412032 0.009946 0 + 0.494938 0.0099459 0 + -0.21055 0.0082777 0 + 0.27629 0.0082777 0 + 0.27629 0.49512 0 + -0.11753 0.49512 0 + -0.21055 0.49512 0 + 0.574318 0.995312 0 + 0.636095 0.517321 0 + 0.636095 0.995312 0 + 0.158104 0.517321 0 + 0.158104 0.995312 0 + endnode + node trimesh mesh535 + parent tdc01_g02_01 + position -1.42 0.01 4.23 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 15 0 13 + bitmap tdc01_trim00 + tilefade 0 + verts 22 + 1 -0.13 0.18 + 0.84 -0.19 0.77 + 0.69 -0.13 0.08 + 0.35 -0.19 0.58 + 0.84 0.19 0.77 + 1 0.13 0.18 + 0.35 0.18 0.58 + 0.69 0.13 0.08 + 0.55 -0.13 -0.06 + 0.06 -0.19 0.29 + 0.55 0.13 -0.06 + 0.06 0.18 0.29 + 0.31 -0.13 -0.46 + -0.03 -0.19 0.12 + 0.31 0.13 -0.46 + -0.03 0.18 0.12 + -0.5 -0.13 -0.51 + -0.64 -0.19 0.08 + -0.64 0.18 0.08 + -0.5 0.13 -0.51 + -0.7 0.19 0.05 + -0.7 -0.19 0.05 + faces 32 + 0 1 2 1 0 1 2 3 + 3 2 1 1 3 2 1 3 + 4 5 6 1 1 4 3 3 + 7 6 5 1 5 3 4 3 + 2 3 8 1 2 3 6 3 + 9 8 3 1 7 6 3 3 + 7 2 10 2 5 8 9 3 + 8 10 2 2 10 9 8 3 + 6 7 11 1 3 5 7 3 + 10 11 7 1 9 7 5 3 + 8 9 12 1 6 7 11 3 + 13 12 9 1 12 11 7 3 + 10 8 14 2 9 10 13 3 + 12 14 8 2 14 13 10 3 + 11 10 15 1 7 9 12 3 + 14 15 10 1 13 12 9 3 + 12 13 16 1 11 12 15 3 + 17 16 13 1 16 15 12 3 + 15 14 18 1 12 13 16 3 + 19 18 14 1 17 16 13 3 + 18 19 20 1 16 17 18 3 + 1 4 3 2 19 20 21 3 + 6 3 4 2 22 21 20 3 + 3 6 9 2 21 22 23 3 + 11 9 6 2 24 23 22 3 + 9 11 13 2 23 24 25 3 + 15 13 11 2 26 25 24 3 + 13 15 17 4 25 26 27 3 + 18 17 15 4 28 27 26 3 + 20 21 18 4 29 30 28 3 + 17 18 21 4 27 28 30 3 + 21 16 17 1 31 15 16 3 + tverts 32 + -0.549868 0.272084 0 + -0.549868 0.76 0 + -0.250627 0.272084 0 + -0.250627 0.76 0 + -0.549868 0.272479 0 + -0.250627 0.272479 0 + -0.004771 0.272084 0 + -0.004771 0.76 0 + -0.250627 0.336632 0 + -0.004771 0.272479 0 + -0.004771 0.336632 0 + 0.26149 0.272084 0 + 0.26149 0.76 0 + 0.26149 0.272479 0 + 0.26149 0.336632 0 + 0.83984 0.272084 0 + 0.83984 0.76 0 + 0.83984 0.272479 0 + 0.88625 0.76 0 + 1.54395 0.999021 0 + 1.54395 0.76 0 + 1.24471 0.999021 0 + 1.24471 0.76 0 + 0.99885 0.999021 0 + 0.99885 0.76 0 + 0.73259 0.999021 0 + 0.73259 0.76 0 + 0.15424 0.999021 0 + 0.15424 0.76 0 + 0.10783 0.76 0 + 0.11248 0.999021 0 + 0.8816 0.76 0 + endnode + node trimesh meshtdc4349 + parent tdc01_g02_01 + position 0 0.01 4.04 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 0 0 57 + bitmap tdc01_sandstone + tilefade 0 + verts 16 + -0.32 -0.25 0 + 0.32 -0.25 0 + 0.63 -0.49 1.14 + -0.63 -0.49 1.14 + 0.32 0.25 0 + 0.42 0.13 0.37 + 0.63 0.49 1.14 + 0.58 -0.19 0.96 + -0.32 0.25 0 + -0.63 0.49 1.14 + 0.42 -0.13 0.37 + 0.58 0.19 0.96 + -0.42 0.13 0.37 + -0.58 -0.19 0.96 + -0.42 -0.13 0.37 + -0.58 0.19 0.96 + faces 20 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 1 4 5 2 0 1 4 4 + 6 2 7 2 2 3 5 4 + 4 8 9 1 0 1 2 6 + 9 6 4 1 2 3 0 6 + 10 2 1 2 6 3 0 4 + 7 2 10 2 5 3 6 4 + 6 7 11 2 2 5 7 4 + 1 5 10 2 0 4 6 4 + 5 4 6 2 4 1 2 4 + 11 5 6 2 7 4 2 4 + 8 0 12 2 1 0 4 4 + 3 9 13 2 3 2 5 4 + 3 14 0 2 3 6 0 4 + 3 13 14 2 3 5 6 4 + 13 9 15 2 5 2 7 4 + 12 0 14 2 4 0 6 4 + 8 12 9 2 1 4 2 4 + 12 15 9 2 4 7 2 4 + tverts 8 + 0.245153 0.0004995 0 + 0.754847 0.0004995 0 + 0.9995 0.9995 0 + 0.0004995 0.9995 0 + 0.630027 0.324854 0 + 0.309963 0.840651 0 + 0.368571 0.326838 0 + 0.690586 0.842145 0 + endnode + node trimesh meshtdc4352 + parent tdc01_g02_01 + position -1.48 0.01 3.49 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -86.5 0 40 + bitmap tdc01_sandstone + tilefade 0 + verts 16 + -0.4 0.25 0.12 + -0.4 -0.25 0.12 + -0.84 0.25 -0.11 + -0.84 -0.25 -0.11 + -1.33 -0.36 0.58 + -0.69 -0.36 0.91 + -0.89 -0.13 -0.04 + -1.33 0.36 0.58 + -1.24 -0.19 0.46 + -0.69 0.36 0.91 + -0.44 -0.13 0.23 + -0.64 -0.19 0.79 + -0.64 0.19 0.79 + -0.44 0.13 0.23 + -0.89 0.13 -0.04 + -1.24 0.18 0.46 + faces 22 + 0 1 2 1 0 1 2 2 + 3 2 1 1 3 2 1 2 + 3 1 4 2 4 5 6 5 + 5 4 1 2 7 6 5 5 + 2 3 6 4 4 5 8 4 + 4 7 8 4 7 6 9 4 + 0 2 9 2 4 5 6 6 + 7 9 2 2 7 6 5 6 + 1 0 10 4 4 5 10 3 + 9 5 11 4 7 6 11 3 + 9 11 12 4 7 11 12 3 + 1 10 5 4 4 10 6 3 + 10 0 13 4 10 5 13 3 + 9 12 0 4 7 12 5 3 + 12 13 0 4 12 13 5 3 + 10 11 5 4 10 11 6 3 + 2 6 14 4 4 8 14 4 + 4 8 3 4 7 9 5 4 + 8 7 15 4 9 6 15 4 + 8 6 3 4 9 8 5 4 + 2 14 7 4 4 14 6 4 + 14 15 7 4 14 15 6 4 + tverts 16 + 0.846869 0.846875 0 + 0.846869 0.153125 0 + 0.153119 0.846875 0 + 0.153119 0.153125 0 + 0.846881 0.500002 0 + 0.153131 0.500002 0 + 0.999506 1.499 0 + 0.0005054 1.499 0 + 0.322096 0.60356 0 + 0.23767 1.33156 0 + 0.675304 0.634319 0 + 0.766609 1.34464 0 + 0.239425 1.34167 0 + 0.32249 0.632936 0 + 0.678759 0.599989 0 + 0.757652 1.33153 0 + endnode + node trimesh meshtdc4353 + parent tdc01_g02_01 + position -2.64 0.01 3.81 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -12 -1 -31 + bitmap tdc01_trim00 + tilefade 0 + verts 12 + 0.27 -0.13 -0.36 + -0.08 -0.19 0.14 + 0.18 -0.13 -0.47 + -0.35 -0.19 -0.18 + 0.27 0.13 -0.36 + 0.18 0.13 -0.47 + -0.08 0.18 0.14 + -0.35 0.18 -0.18 + 0.04 -0.11 -0.76 + -0.51 -0.21 -0.61 + 0.04 0.09 -0.76 + -0.51 0.19 -0.61 + faces 16 + 0 1 2 1 0 1 2 3 + 3 2 1 1 3 2 1 3 + 4 0 5 2 4 5 6 3 + 2 5 0 2 7 6 5 3 + 6 4 7 1 1 4 3 3 + 5 7 4 1 6 3 4 3 + 2 3 8 1 2 3 8 3 + 9 8 3 1 9 8 3 3 + 5 2 10 2 6 7 10 3 + 8 10 2 2 11 10 7 3 + 7 5 11 1 3 6 9 3 + 10 11 5 1 10 9 6 3 + 1 6 3 2 12 13 14 3 + 7 3 6 2 15 14 13 3 + 3 7 9 2 14 15 16 3 + 11 9 7 2 17 16 15 3 + tverts 18 + 0.24174 0.272084 0 + 0.24174 0.76 0 + 0.59375 0.272084 0 + 0.59375 0.76 0 + 0.24174 0.272479 0 + 0.24174 0.336632 0 + 0.59375 0.272479 0 + 0.59375 0.336632 0 + 0.99772 0.272084 0 + 0.99772 0.76 0 + 0.99772 0.272479 0 + 0.99772 0.336632 0 + 0.752339 0.999021 0 + 0.752339 0.76 0 + 0.400332 0.999021 0 + 0.400332 0.76 0 + -0.0036439 0.999021 0 + -0.0036438 0.76 0 + endnode + node trimesh mesh536 + parent tdc01_g02_01 + position 1.44 0.01 4.27 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -17 0 9 + bitmap tdc01_trim00 + tilefade 0 + verts 22 + -0.86 -0.19 0.73 + -1.02 -0.13 0.14 + -0.71 -0.13 0.04 + -0.37 -0.19 0.54 + -1.02 0.13 0.14 + -0.86 0.19 0.73 + -0.37 0.18 0.54 + -0.71 0.13 0.04 + -0.57 -0.13 -0.1 + -0.08 -0.19 0.25 + -0.57 0.13 -0.1 + -0.08 0.18 0.25 + -0.33 -0.13 -0.5 + 0.01 -0.19 0.08 + -0.33 0.13 -0.5 + 0.01 0.18 0.08 + 0.48 -0.13 -0.55 + 0.62 -0.19 0.04 + 0.62 0.18 0.04 + 0.48 0.13 -0.55 + 0.68 0.19 0.01 + 0.68 -0.19 0.01 + faces 32 + 0 1 2 1 0 1 2 3 + 2 3 0 1 2 3 0 3 + 4 5 6 1 4 0 3 3 + 6 7 4 1 3 5 4 3 + 3 2 8 1 3 2 6 3 + 8 9 3 1 6 7 3 3 + 2 7 10 2 8 5 9 3 + 10 8 2 2 9 10 8 3 + 7 6 11 1 5 3 7 3 + 11 10 7 1 7 9 5 3 + 9 8 12 1 7 6 11 3 + 12 13 9 1 11 12 7 3 + 8 10 14 2 10 9 13 3 + 14 12 8 2 13 14 10 3 + 10 11 15 1 9 7 12 3 + 15 14 10 1 12 13 9 3 + 13 12 16 1 12 11 15 3 + 16 17 13 1 15 16 12 3 + 14 15 18 1 13 12 16 3 + 18 19 14 1 16 17 13 3 + 19 18 20 1 17 16 18 3 + 5 0 3 2 19 20 21 3 + 3 6 5 2 21 22 19 3 + 6 3 9 2 22 21 23 3 + 9 11 6 2 23 24 22 3 + 11 9 13 2 24 23 25 3 + 13 15 11 2 25 26 24 3 + 15 13 17 4 26 25 27 3 + 17 18 15 4 27 28 26 3 + 21 20 18 4 29 30 28 3 + 18 17 21 4 28 27 29 3 + 16 21 17 1 15 31 16 3 + tverts 32 + -0.549868 0.76 0 + -0.549868 0.272084 0 + -0.250627 0.272084 0 + -0.250627 0.76 0 + -0.549868 0.272479 0 + -0.250627 0.272479 0 + -0.004771 0.272084 0 + -0.004771 0.76 0 + -0.250627 0.336632 0 + -0.004771 0.272479 0 + -0.004771 0.336632 0 + 0.26149 0.272084 0 + 0.26149 0.76 0 + 0.26149 0.272479 0 + 0.26149 0.336632 0 + 0.83984 0.272084 0 + 0.83984 0.76 0 + 0.83984 0.272479 0 + 0.88625 0.76 0 + 1.54395 0.76 0 + 1.54395 0.999021 0 + 1.24471 0.999021 0 + 1.24471 0.76 0 + 0.99885 0.999021 0 + 0.99885 0.76 0 + 0.73259 0.999021 0 + 0.73259 0.76 0 + 0.15424 0.999021 0 + 0.15424 0.76 0 + 0.11248 0.999021 0 + 0.10783 0.76 0 + 0.8816 0.76 0 + endnode + node trimesh meshtdc1357 + parent tdc01_g02_01 + position -4 3 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 85 0 162.5 + bitmap tdc01_wall_uni + verts 12 + 0.85 0.9 2.23 + 0.85 0.9 1.68 + 0.85 1 2.5 + 0.85 1 0.75 + 0.85 0.9 1.35 + 0.85 0.9 0.8 + 0.85 -1 0.75 + 0.85 -0.9 0.8 + 0.85 -0.9 2.23 + 0.85 -1 2.5 + 0.85 -0.9 1.68 + 0.85 -0.9 1.35 + faces 14 + 0 1 2 1 0 1 2 6 + 3 2 4 1 3 2 4 6 + 1 4 2 1 1 4 2 6 + 4 5 3 1 4 5 3 6 + 6 3 7 1 6 3 7 6 + 5 7 3 1 5 7 3 6 + 8 9 10 1 8 9 10 6 + 10 9 11 1 10 9 11 6 + 6 11 9 1 6 11 9 6 + 11 6 7 1 11 6 7 6 + 1 10 4 1 1 10 4 6 + 11 4 10 1 11 4 10 6 + 2 9 0 1 2 9 0 6 + 8 0 9 1 8 0 9 6 + tverts 12 + 0.971881 0.430059 0 + 0.971881 0.264811 0 + 0.996682 0.520843 0 + 0.996682 -0.004947 0 + 0.971881 0.175324 0 + 0.971881 0.0100756 0 + 0.500654 -0.004947 0 + 0.525455 0.0100756 0 + 0.525455 0.430059 0 + 0.500654 0.520843 0 + 0.525455 0.264811 0 + 0.525455 0.175324 0 + endnode + node trimesh meshtdc0153 + parent tdc01_g02_01 + position -4.16 0 2.68 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 134.5 0 -98 + bitmap tdc01_sandstone + verts 22 + 1.16 0.27 -1.98 + 1.26 0.2 -1.73 + 1.56 0.26 -2.48 + 1.26 -0.22 -1.73 + 1.56 -0.28 -2.48 + 1.01 -0.29 -1.73 + 1.16 -0.28 -1.98 + 1.16 -0.36 -2.48 + 1.16 0.34 -2.48 + 1.01 0.27 -1.73 + 1.58 0.29 0.02 + 1.68 0.29 0.35 + 1.58 -0.27 0.02 + 1.68 -0.27 0.35 + 1.01 0.5 0.02 + 1.01 0.5 0.52 + 1.01 -0.5 0.52 + 1.01 -0.5 0.02 + 1.01 0.2 0.52 + 1.56 -0.1 0.37 + 1.56 0.1 0.37 + 1.01 -0.2 0.52 + faces 20 + 0 1 2 1 0 1 2 4 + 1 3 4 2 3 4 5 4 + 4 2 1 2 5 6 3 4 + 3 5 6 1 7 8 9 4 + 6 4 3 4 9 10 7 4 + 6 7 4 4 9 11 10 4 + 2 8 0 4 2 12 0 4 + 1 0 9 8 1 0 13 4 + 10 11 12 1 14 15 16 1 + 13 12 11 1 17 16 15 1 + 14 15 10 2 18 19 20 5 + 11 10 15 2 21 20 19 5 + 16 17 13 2 22 23 24 6 + 12 13 17 2 25 24 23 6 + 15 18 11 4 26 27 28 3 + 13 11 19 4 29 28 30 3 + 18 20 11 4 27 31 28 3 + 13 19 16 4 29 30 32 3 + 19 11 20 4 30 28 31 3 + 19 21 16 4 30 33 32 3 + tverts 34 + 0.7767 0.785471 0 + 1.1016 0.954095 0 + 0.1026 1.499 0 + -0.1016 0.771979 0 + -0.1016 0.204979 0 + 0.8974 0.134104 0 + 0.8974 0.842854 0 + -0.1016 0.954095 0 + -0.1016 0.499999 0 + 0.2373 0.756167 0 + 0.8974 1.499 0 + 0.8974 0.763848 0 + 0.1026 0.764377 0 + 1.1016 0.499999 0 + 0.601099 0.2165 0 + -0.0656779 0.2165 0 + 0.601099 0.7835 0 + -0.0656777 0.7835 0 + 0.601099 0.499999 0 + -0.397902 0.499999 0 + 0.601099 1.30531 0 + -0.0656779 1.44098 0 + 1.3979 0.499999 0 + 0.398901 0.499999 0 + 1.06568 1.44098 0 + 0.398901 1.30531 0 + 0.9995 0.499999 0 + 0.68777 0.499999 0 + 0.7835 1.44098 0 + 0.2165 1.44098 0 + 0.324764 1.32902 0 + 0.580862 1.32951 0 + 0.0004995 0.499999 0 + 0.316927 0.499999 0 + endnode + node trimesh meshtdc0161 + parent tdc01_g02_01 + position -3.2 3 1.55 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 10 0 -27.5 + bitmap tdc01_copper00 + verts 5 + 0.05 0.9 0 + 0.05 -0.9 0 + 0.15 0 -0.27 + 0.05 -0.9 -0.55 + 0.05 0.9 -0.55 + faces 4 + 0 1 2 1 0 1 2 4 + 3 2 1 1 3 2 1 4 + 3 4 2 1 3 4 2 4 + 0 2 4 1 0 2 4 4 + tverts 5 + 0.0004995 0.99975 0 + 0.999501 0.99975 0 + 0.50172 0.75086 0 + 0.999501 0.50025 0 + 0.0004995 0.50025 0 + endnode + node trimesh meshtdc4626 + parent tdc01_g02_01 + diffuse 1 1 1 + ambient 1 1 1 + position -0.41 0.01 3.49 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 1 + center 41 0 74.5 + bitmap tdc01_black8_00 + tilefade 0 + verts 8 + 3.22 0.36 0.58 + 2.58 0.36 0.91 + 2.58 -0.36 0.91 + 3.22 -0.36 0.58 + -2.4 -0.36 0.58 + -1.76 -0.36 0.91 + -1.76 0.36 0.91 + -2.4 0.36 0.58 + faces 4 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 5 6 1 4 5 6 1 + 6 7 4 1 6 7 4 1 + tverts 8 + 1.306 0.647 0 + 0.665 0.647 0 + 0.665 -0.073 0 + 1.306 -0.073 0 + -0.305 -0.073 0 + 0.335 -0.073 0 + 0.335 0.647 0 + -0.305 0.647 0 + endnode + node trimesh meshtdc0152 + parent tdc01_g02_01 + position -3.19 0 2.28 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 25.5 0 -45.5 + bitmap tdc01_wall_uni + verts 14 + 0.04 0.27 0.42 + 0.47 0.2 0.42 + 0.29 0.2 -1.33 + 0.04 0.27 -1.33 + 0.47 -0.22 0.42 + 0.29 -0.22 -1.33 + 0.04 -0.29 0.42 + 0.04 -0.29 -1.33 + 0.04 2 -1.33 + 0.04 2 0.42 + 0.04 0.5 0.42 + 0.04 -0.5 0.42 + 0.04 -2 -1.33 + 0.04 -2 0.42 + faces 12 + 0 1 2 1 0 1 2 4 + 2 3 0 1 2 3 0 4 + 1 4 5 2 1 4 5 4 + 5 2 1 2 5 2 1 4 + 4 6 7 1 6 7 8 4 + 7 5 4 1 8 9 6 4 + 3 8 9 2 10 11 12 6 + 3 10 0 2 10 13 14 6 + 3 9 10 2 10 12 13 6 + 11 7 6 2 15 16 17 6 + 12 11 13 2 18 15 19 6 + 12 7 11 2 18 16 15 6 + tverts 20 + 0.24992 0.499741 0 + 0.186785 0.499741 0 + 0.186785 0.009946 0 + 0.24992 0.009946 0 + 0.050137 0.499741 0 + 0.050137 0.0099459 0 + 0.494938 0.499741 0 + 0.412032 0.499741 0 + 0.412032 0.009946 0 + 0.494938 0.0099459 0 + 0.706268 0.501031 0 + 1.19311 0.501031 0 + 1.19311 0.987874 0 + 0.781015 0.987874 0 + 0.706268 0.987874 0 + 0.501816 1.03727 0 + 0.575852 0.511479 0 + 0.575852 1.03727 0 + 0.0500617 0.511479 0 + 0.0500616 1.03727 0 + endnode + node trimesh meshtdc1369 + parent tdc01_g02_01 + position -4 -3 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 85 0 162.5 + bitmap tdc01_wall_uni + verts 12 + 0.85 0.9 2.23 + 0.85 0.9 1.68 + 0.85 1 2.5 + 0.85 1 0.75 + 0.85 0.9 1.35 + 0.85 0.9 0.8 + 0.85 -1 0.75 + 0.85 -0.9 0.8 + 0.85 -0.9 2.23 + 0.85 -1 2.5 + 0.85 -0.9 1.68 + 0.85 -0.9 1.35 + faces 14 + 0 1 2 1 0 1 2 6 + 3 2 4 1 3 2 4 6 + 1 4 2 1 1 4 2 6 + 4 5 3 1 4 5 3 6 + 6 3 7 1 6 3 7 6 + 5 7 3 1 5 7 3 6 + 8 9 10 1 8 9 10 6 + 10 9 11 1 10 9 11 6 + 6 11 9 1 6 11 9 6 + 11 6 7 1 11 6 7 6 + 1 10 4 1 1 10 4 6 + 11 4 10 1 11 4 10 6 + 2 9 0 1 2 9 0 6 + 8 0 9 1 8 0 9 6 + tverts 12 + 0.971881 0.430059 0 + 0.971881 0.264811 0 + 0.996682 0.520843 0 + 0.996682 -0.004947 0 + 0.971881 0.175324 0 + 0.971881 0.0100756 0 + 0.500654 -0.004947 0 + 0.525455 0.0100756 0 + 0.525455 0.430059 0 + 0.500654 0.520843 0 + 0.525455 0.264811 0 + 0.525455 0.175324 0 + endnode + node trimesh meshtdc1372 + parent tdc01_g02_01 + position -4 -3 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 92.5 300 37.5 + bitmap tdc01_trim00 + verts 20 + 1 0 0 + 1 2 0 + 1 1 0.5 + 1 -1 0.5 + 1 -1 0 + 0.85 1 0.75 + 0.85 -1 0.75 + 1 2.64 0 + 1 2.72 0.5 + 0.85 2.71 0.75 + 1 4 0 + 1 6 0 + 1 5 0.5 + 1 3.27 0.5 + 1 3.34 0 + 0.85 5 0.75 + 0.85 3.27 0.75 + 1 7 0 + 1 7 0.5 + 0.85 7 0.75 + faces 18 + 0 1 2 1 0 1 2 5 + 0 3 4 1 0 3 4 5 + 3 2 5 2 3 2 5 5 + 5 6 3 2 5 6 3 5 + 1 7 8 1 7 8 2 5 + 8 2 1 1 2 3 7 5 + 2 8 9 2 3 2 5 5 + 9 5 2 2 5 6 3 5 + 10 11 12 1 9 10 2 5 + 10 13 14 1 9 3 11 5 + 13 12 15 2 3 2 5 5 + 15 16 13 2 5 6 3 5 + 11 17 18 1 12 13 2 5 + 18 12 11 1 2 3 12 5 + 12 18 19 2 3 2 5 5 + 19 15 12 2 5 6 3 5 + 3 0 2 1 3 0 2 5 + 13 10 12 1 3 9 2 5 + tverts 14 + 0.479835 0.116442 0 + 1.52447 0.116442 0 + 1.00147 0.75 0 + 0.0024731 0.75 0 + -0.0271302 0.116442 0 + 0.999501 0.999501 0 + 0.0004995 0.999501 0 + 0.608354 0.116442 0 + 0.9324 0.116442 0 + 0.512878 0.116442 0 + 1.46526 0.116442 0 + 0.0123408 0.116442 0 + 0.505729 0.116442 0 + 0.928452 0.116442 0 + endnode + node trimesh meshtdc0160 + parent tdc01_g02_01 + position -3.2 -3 2.43 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 10 0 -27.5 + bitmap tdc01_copper00 + verts 5 + 0.05 0.9 0 + 0.05 -0.9 0 + 0.15 0 -0.27 + 0.05 -0.9 -0.55 + 0.05 0.9 -0.55 + faces 4 + 0 1 2 1 0 1 2 4 + 3 2 1 1 3 2 1 4 + 3 4 2 1 3 4 2 4 + 0 2 4 1 0 2 4 4 + tverts 5 + 0.0004996 0.49975 0 + 0.9995 0.49975 0 + 0.50172 0.25086 0 + 0.9995 0.0002497 0 + 0.0004996 0.0002498 0 + endnode + node trimesh meshtdc1360 + parent tdc01_g02_01 + position -4 1 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 85 -100 275 + bitmap tdc01_trim00 + verts 12 + 0.85 1 3 + 0.85 -0.5 3 + 0.85 -0.5 2.5 + 0.85 1 2.5 + 0.85 3 3 + 0.85 3 2.5 + 0.85 -1.5 3 + 0.85 -3 3 + 0.85 -3 2.5 + 0.85 -1.5 2.5 + 0.85 -5 3 + 0.85 -5 2.5 + faces 8 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 4 0 3 1 0 1 2 5 + 3 5 4 1 2 3 0 5 + 6 7 8 1 0 1 2 5 + 8 9 6 1 2 3 0 5 + 7 10 11 1 0 1 2 5 + 11 8 7 1 2 3 0 5 + tverts 4 + 0.0004995 0.76 0 + 0.999501 0.76 0 + 0.999501 1 0 + 0.0004995 1 0 + endnode + node aabb object83 + parent tdc01_g02_01 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 1 1 1 + bitmap NULL + render 0 + shadow 0 + verts 12 + 5 -5 3.2 + 2.65 5 3.2 + 2.65 -5 3.2 + 5 5 3.2 + -2.65 5 3.2 + -5 -5 3.2 + -2.65 -5 3.2 + -5 5 3.2 + -2.6 5 0.2 + -2.6 -5 0.2 + 2.6 -5 0.2 + 2.6 5 0.2 + faces 10 + 0 1 2 1 0 0 0 2 + 0 3 1 1 0 0 0 2 + 4 5 6 1 0 0 0 2 + 7 5 4 1 0 0 0 2 + 8 9 10 1 0 0 0 4 + 10 11 8 1 0 0 0 4 + 9 8 6 2 0 0 0 2 + 6 8 4 2 0 0 0 2 + 11 10 2 2 0 0 0 2 + 11 2 1 2 0 0 0 2 + aabb -5 -5 0.2 5 5 3.2 -1 + -5 -5 0.2 2.6 5 3.2 -1 + -5 -5 0.2 2.6 5 3.2 -1 + -5 -5 0.2 -2.6 5 3.2 -1 + -2.65 -5 0.2 -2.6 5 3.2 6 + -5 -5 3.2 -2.65 5 3.2 2 + -2.6 -5 0.2 2.6 5 0.2 4 + -5 -5 0.2 -2.6 5 3.2 -1 + -2.65 -5 0.2 -2.6 5 3.2 7 + -5 -5 3.2 -2.65 5 3.2 3 + -2.6 -5 0.2 5 5 3.2 -1 + 2.6 -5 0.2 5 5 3.2 -1 + 2.6 -5 0.2 2.65 5 3.2 8 + 2.65 -5 3.2 5 5 3.2 0 + -2.6 -5 0.2 5 5 3.2 -1 + -2.6 -5 0.2 2.6 5 0.2 5 + 2.6 -5 0.2 5 5 3.2 -1 + 2.6 -5 0.2 2.65 5 3.2 9 + 2.65 -5 3.2 5 5 3.2 1 + endnode + node trimesh meshtdc4364 + parent tdc01_g02_01 + position 5.01 -3 1.7 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -191 0 1.5 + bitmap tdc01_copper00 + verts 10 + -1.86 -0.9 -0.15 + -1.86 0.9 -0.15 + -1.96 0 -0.42 + -1.86 0.9 -0.7 + -1.86 -0.9 -0.7 + -1.86 -0.9 0.73 + -1.86 0.9 0.73 + -1.96 0 0.46 + -1.86 0.9 0.18 + -1.86 -0.9 0.18 + faces 8 + 0 1 2 1 0 1 2 4 + 3 2 1 1 3 2 1 4 + 3 4 2 1 3 4 2 4 + 0 2 4 1 0 2 4 4 + 5 6 7 1 5 6 7 4 + 8 7 6 1 8 7 6 4 + 8 9 7 1 8 9 7 4 + 5 7 9 1 5 7 9 4 + tverts 10 + 0.0004995 0.99975 0 + 0.999501 0.99975 0 + 0.50172 0.75086 0 + 0.999501 0.50025 0 + 0.0004995 0.50025 0 + 0.0004996 0.49975 0 + 0.9995 0.49975 0 + 0.50172 0.25086 0 + 0.9995 0.0002497 0 + 0.0004996 0.0002498 0 + endnode + node trimesh meshtdc1371 + parent tdc01_g02_01 + position -4.93 -3 0.22 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 128 0 105.5 + bitmap tdc01_pitwall00 + verts 8 + 0.78 0.66 1.33 + 0.78 -0.66 1.33 + 0.78 0.66 0.78 + 0.78 -0.66 0.78 + 1.78 0.9 0.78 + 1.78 0.9 1.33 + 1.78 -0.9 0.78 + 1.78 -0.9 1.33 + faces 8 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 5 0 2 4 5 6 6 + 0 2 4 2 6 7 4 6 + 6 4 2 4 8 9 10 6 + 2 3 6 4 10 11 8 6 + 7 6 3 2 6 7 4 6 + 3 1 7 2 4 5 6 6 + tverts 12 + 1.88889 0.385988 0 + -0.11111 0.385988 0 + 1.88889 0.0193209 0 + -0.11111 0.0193209 0 + 1 0.0193209 0 + 1 0.385988 0 + -1 0.385988 0 + -1 0.0193209 0 + 1.11111 1 0 + -0.88889 1 0 + -0.88889 0 0 + 1.11111 -4e-07 0 + endnode + node trimesh object251 + parent tdc01_g02_01 + position 3.16 3 1.47 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 1 + selfillumcolor 0.368627 0.368627 0.368627 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -205 -292 179.5 + bitmap tdc01_alpha + tilefade 0 + verts 7 + -0.51 -2.92 1.4 + -2.31 -2.92 1.4 + -0.51 -2.92 2.32 + -2.07 -2.92 2.36 + -3.2 -2.92 0.97 + -3.59 -2.92 2.56 + -2.81 -2.92 2.62 + faces 6 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 5 6 1 4 5 6 6 + 1 0 2 2 1 0 2 6 + 2 3 1 2 2 3 1 6 + 5 4 6 2 5 4 6 6 + tverts 7 + 0.740965 0.0415624 0 + 0.0577326 0.041563 0 + 0.740965 0.294186 0 + 0.0577326 0.294186 0 + 0.229814 -0.0164086 0 + 0.0478648 0.271032 0 + 0.405461 0.279693 0 + endnode + node dummy pwc_decor1 + parent tdc01_g02_01 + orientation 0 0 0 0 + position 0 0 0 + wirecolor 0.603922 0.603922 0.898039 + endnode + node dummy pwc_colm_001 + parent pwc_decor1 + orientation 0 0 0 0 + position -2.5 -3.5 0.2 + wirecolor 0.603922 0.603922 0.898039 + endnode + node trimesh mesh16 + parent pwc_colm_001 + diffuse 0 0 0 + bitmap twc03_black + center 0 0 390 + shininess 11 + specular 0 0 0 + ambient 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 0.537255 0.0313726 0.431373 + orientation 0 0 0 0 + position 0 0 0 + verts 4 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 2 + 1 2 3 1 0 0 0 1 + 3 0 1 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node trimesh plane25 + parent pwc_colm_001 + diffuse 1 1 1 + ambient 1 1 1 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.537255 0.0313726 0.431373 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 11 + center 0 0 195 + bitmap tdc01_trim00 + verts 20 + -0.4 0.4 0 + -0.4 -0.4 0 + 0.4 0.4 0 + 0.4 -0.4 0 + 0.4 0.4 0.2 + -0.4 0.4 0.2 + -0.4 -0.4 0.2 + 0.4 -0.4 0.2 + 0.25 0.25 0.6 + -0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + 0.25 0.25 3 + -0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 2 0 5 0 2 0 5 1 + 5 4 2 0 5 4 2 1 + 0 1 6 0 12 1 6 1 + 6 5 0 0 6 13 12 1 + 1 3 7 0 14 3 7 1 + 7 6 1 0 7 15 14 1 + 3 2 4 0 16 17 18 1 + 4 7 3 0 18 19 16 1 + 4 5 9 0 4 5 9 1 + 9 8 4 0 9 8 4 1 + 5 6 10 0 13 6 10 1 + 10 9 5 0 10 20 13 1 + 6 7 11 0 15 7 11 1 + 11 10 6 0 11 21 15 1 + 7 4 8 0 19 18 22 1 + 8 11 7 0 22 23 19 1 + 8 9 13 0 48 49 50 1 + 13 12 8 0 50 51 48 1 + 9 10 14 0 41 52 53 1 + 14 13 9 0 53 42 41 1 + 10 11 15 0 44 54 55 1 + 15 14 10 0 55 45 44 1 + 11 8 12 0 46 40 43 1 + 12 15 11 0 43 47 46 1 + 12 13 17 0 32 33 34 1 + 17 16 12 0 34 35 32 1 + 13 14 18 0 25 36 37 1 + 18 17 13 0 37 26 25 1 + 14 15 19 0 28 38 39 1 + 19 18 14 0 39 29 28 1 + 15 12 16 0 30 24 27 1 + 16 19 15 0 27 31 30 1 + tverts 56 + 0.536757 0.0271105 0 + 0.53451 0.0271105 0 + 0.216757 0.0271105 0 + 0.783243 0.0271105 0 + 0.216757 0.107111 0 + 0.536757 0.107111 0 + 0.53451 0.107111 0 + 0.783243 0.107111 0 + 0.276757 0.26711 0 + 0.476757 0.26711 0 + 0.47451 0.26711 0 + 0.723243 0.26711 0 + 0.21451 0.0271105 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.27451 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.731323 0.744214 0 + 0.268677 0.744214 0 + 0.188677 1.0796 0 + 0.811323 1.0796 0 + 0.523241 0.744214 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.451322 1.0796 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.726033 0.288193 0 + 0.273966 0.288193 0 + 0.273966 1.64023 0 + 0.726033 1.64023 0 + 0.278974 0.288193 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.526033 1.64023 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + endnode + node dummy pwc_colm_002 + parent pwc_decor1 + orientation 0 0 0 0 + position -2.5 -1 0.2 + wirecolor 0.6 0.894118 0.839216 + endnode + node trimesh plane16 + parent pwc_colm_002 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 0.537255 0.0313726 0.431373 + orientation 0 0 0 0 + position 0 0 0 + verts 20 + -0.4 0.4 0 + -0.4 -0.4 0 + 0.4 0.4 0 + 0.4 -0.4 0 + 0.4 0.4 0.2 + -0.4 0.4 0.2 + -0.4 -0.4 0.2 + 0.4 -0.4 0.2 + 0.25 0.25 0.6 + -0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + 0.25 0.25 3 + -0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 2 0 5 0 2 0 5 1 + 5 4 2 0 5 4 2 1 + 0 1 6 0 12 1 6 1 + 6 5 0 0 6 13 12 1 + 1 3 7 0 14 3 7 1 + 7 6 1 0 7 15 14 1 + 3 2 4 0 16 17 18 1 + 4 7 3 0 18 19 16 1 + 4 5 9 0 4 5 9 1 + 9 8 4 0 9 8 4 1 + 5 6 10 0 13 6 10 1 + 10 9 5 0 10 20 13 1 + 6 7 11 0 15 7 11 1 + 11 10 6 0 11 21 15 1 + 7 4 8 0 19 18 22 1 + 8 11 7 0 22 23 19 1 + 8 9 13 0 48 49 50 1 + 13 12 8 0 50 51 48 1 + 9 10 14 0 41 52 53 1 + 14 13 9 0 53 42 41 1 + 10 11 15 0 44 54 55 1 + 15 14 10 0 55 45 44 1 + 11 8 12 0 46 40 43 1 + 12 15 11 0 43 47 46 1 + 12 13 17 0 32 33 34 1 + 17 16 12 0 34 35 32 1 + 13 14 18 0 25 36 37 1 + 18 17 13 0 37 26 25 1 + 14 15 19 0 28 38 39 1 + 19 18 14 0 39 29 28 1 + 15 12 16 0 30 24 27 1 + 16 19 15 0 27 31 30 1 + tverts 56 + 0.536757 0.0271105 0 + 0.53451 0.0271105 0 + 0.216757 0.0271105 0 + 0.783243 0.0271105 0 + 0.216757 0.107111 0 + 0.536757 0.107111 0 + 0.53451 0.107111 0 + 0.783243 0.107111 0 + 0.276757 0.26711 0 + 0.476757 0.26711 0 + 0.47451 0.26711 0 + 0.723243 0.26711 0 + 0.21451 0.0271105 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.27451 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.731323 0.744214 0 + 0.268677 0.744214 0 + 0.188677 1.0796 0 + 0.811323 1.0796 0 + 0.523241 0.744214 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.451322 1.0796 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.726033 0.288193 0 + 0.273966 0.288193 0 + 0.273966 1.64023 0 + 0.726033 1.64023 0 + 0.278974 0.288193 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.526033 1.64023 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + endnode + node trimesh mesh15 + parent pwc_colm_002 + diffuse 0 0 0 + bitmap twc03_black + center 0 0 390 + shininess 11 + specular 0 0 0 + ambient 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 0.537255 0.0313726 0.431373 + orientation 0 0 0 0 + position 0 0 0 + verts 4 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 2 + 1 2 3 1 0 0 0 1 + 3 0 1 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node dummy pwc_colm_003 + parent pwc_decor1 + orientation 0 0 0 0 + position -2.5 3.5 0.2 + wirecolor 0.776471 0.882353 0.341176 + endnode + node trimesh plane15 + parent pwc_colm_003 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 0.537255 0.0313726 0.431373 + orientation 0 0 0 0 + position 0 0 0 + verts 20 + -0.4 0.4 0 + -0.4 -0.4 0 + 0.4 0.4 0 + 0.4 -0.4 0 + 0.4 0.4 0.2 + -0.4 0.4 0.2 + -0.4 -0.4 0.2 + 0.4 -0.4 0.2 + 0.25 0.25 0.6 + -0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + 0.25 0.25 3 + -0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 2 0 5 0 2 0 5 1 + 5 4 2 0 5 4 2 1 + 0 1 6 0 12 1 6 1 + 6 5 0 0 6 13 12 1 + 1 3 7 0 14 3 7 1 + 7 6 1 0 7 15 14 1 + 3 2 4 0 16 17 18 1 + 4 7 3 0 18 19 16 1 + 4 5 9 0 4 5 9 1 + 9 8 4 0 9 8 4 1 + 5 6 10 0 13 6 10 1 + 10 9 5 0 10 20 13 1 + 6 7 11 0 15 7 11 1 + 11 10 6 0 11 21 15 1 + 7 4 8 0 19 18 22 1 + 8 11 7 0 22 23 19 1 + 8 9 13 0 48 49 50 1 + 13 12 8 0 50 51 48 1 + 9 10 14 0 41 52 53 1 + 14 13 9 0 53 42 41 1 + 10 11 15 0 44 54 55 1 + 15 14 10 0 55 45 44 1 + 11 8 12 0 46 40 43 1 + 12 15 11 0 43 47 46 1 + 12 13 17 0 32 33 34 1 + 17 16 12 0 34 35 32 1 + 13 14 18 0 25 36 37 1 + 18 17 13 0 37 26 25 1 + 14 15 19 0 28 38 39 1 + 19 18 14 0 39 29 28 1 + 15 12 16 0 30 24 27 1 + 16 19 15 0 27 31 30 1 + tverts 56 + 0.536757 0.0271105 0 + 0.53451 0.0271105 0 + 0.216757 0.0271105 0 + 0.783243 0.0271105 0 + 0.216757 0.107111 0 + 0.536757 0.107111 0 + 0.53451 0.107111 0 + 0.783243 0.107111 0 + 0.276757 0.26711 0 + 0.476757 0.26711 0 + 0.47451 0.26711 0 + 0.723243 0.26711 0 + 0.21451 0.0271105 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.27451 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.731323 0.744214 0 + 0.268677 0.744214 0 + 0.188677 1.0796 0 + 0.811323 1.0796 0 + 0.523241 0.744214 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.451322 1.0796 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.726033 0.288193 0 + 0.273966 0.288193 0 + 0.273966 1.64023 0 + 0.726033 1.64023 0 + 0.278974 0.288193 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.526033 1.64023 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + endnode + node trimesh mesh14 + parent pwc_colm_003 + diffuse 0 0 0 + bitmap twc03_black + center 0 0 390 + shininess 11 + specular 0 0 0 + ambient 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 0.537255 0.0313726 0.431373 + orientation 0 0 0 0 + position 0 0 0 + verts 4 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 2 + 1 2 3 1 0 0 0 1 + 3 0 1 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node dummy pwc_colm_004 + parent pwc_decor1 + orientation 0 0 0 0 + position -2.5 1 0.2 + wirecolor 0.690196 0.101961 0.101961 + endnode + node trimesh plane14 + parent pwc_colm_004 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 0.537255 0.0313726 0.431373 + orientation 0 0 0 0 + position 0 0 0 + verts 20 + -0.4 0.4 0 + -0.4 -0.4 0 + 0.4 0.4 0 + 0.4 -0.4 0 + 0.4 0.4 0.2 + -0.4 0.4 0.2 + -0.4 -0.4 0.2 + 0.4 -0.4 0.2 + 0.25 0.25 0.6 + -0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + 0.25 0.25 3 + -0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 2 0 5 0 2 0 5 1 + 5 4 2 0 5 4 2 1 + 0 1 6 0 12 1 6 1 + 6 5 0 0 6 13 12 1 + 1 3 7 0 14 3 7 1 + 7 6 1 0 7 15 14 1 + 3 2 4 0 16 17 18 1 + 4 7 3 0 18 19 16 1 + 4 5 9 0 4 5 9 1 + 9 8 4 0 9 8 4 1 + 5 6 10 0 13 6 10 1 + 10 9 5 0 10 20 13 1 + 6 7 11 0 15 7 11 1 + 11 10 6 0 11 21 15 1 + 7 4 8 0 19 18 22 1 + 8 11 7 0 22 23 19 1 + 8 9 13 0 48 49 50 1 + 13 12 8 0 50 51 48 1 + 9 10 14 0 41 52 53 1 + 14 13 9 0 53 42 41 1 + 10 11 15 0 44 54 55 1 + 15 14 10 0 55 45 44 1 + 11 8 12 0 46 40 43 1 + 12 15 11 0 43 47 46 1 + 12 13 17 0 32 33 34 1 + 17 16 12 0 34 35 32 1 + 13 14 18 0 25 36 37 1 + 18 17 13 0 37 26 25 1 + 14 15 19 0 28 38 39 1 + 19 18 14 0 39 29 28 1 + 15 12 16 0 30 24 27 1 + 16 19 15 0 27 31 30 1 + tverts 56 + 0.536757 0.0271105 0 + 0.53451 0.0271105 0 + 0.216757 0.0271105 0 + 0.783243 0.0271105 0 + 0.216757 0.107111 0 + 0.536757 0.107111 0 + 0.53451 0.107111 0 + 0.783243 0.107111 0 + 0.276757 0.26711 0 + 0.476757 0.26711 0 + 0.47451 0.26711 0 + 0.723243 0.26711 0 + 0.21451 0.0271105 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.27451 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.731323 0.744214 0 + 0.268677 0.744214 0 + 0.188677 1.0796 0 + 0.811323 1.0796 0 + 0.523241 0.744214 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.451322 1.0796 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.726033 0.288193 0 + 0.273966 0.288193 0 + 0.273966 1.64023 0 + 0.726033 1.64023 0 + 0.278974 0.288193 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.526033 1.64023 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + endnode + node trimesh mesh13 + parent pwc_colm_004 + diffuse 0 0 0 + bitmap twc03_black + center 0 0 390 + shininess 11 + specular 0 0 0 + ambient 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 0.537255 0.0313726 0.431373 + orientation 0 0 0 0 + position 0 0 0 + verts 4 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 2 + 1 2 3 1 0 0 0 1 + 3 0 1 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node dummy pwc_colm_005 + parent pwc_decor1 + orientation 0 0 0 0 + position 2.5 -3.5 0.2 + wirecolor 0.694118 0.109804 0.584314 + endnode + node trimesh plane13 + parent pwc_colm_005 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 0.537255 0.0313726 0.431373 + orientation 0 0 0 0 + position 0 0 0 + verts 20 + -0.4 0.4 0 + -0.4 -0.4 0 + 0.4 0.4 0 + 0.4 -0.4 0 + 0.4 0.4 0.2 + -0.4 0.4 0.2 + -0.4 -0.4 0.2 + 0.4 -0.4 0.2 + 0.25 0.25 0.6 + -0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + 0.25 0.25 3 + -0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 2 0 5 0 2 0 5 1 + 5 4 2 0 5 4 2 1 + 0 1 6 0 12 1 6 1 + 6 5 0 0 6 13 12 1 + 1 3 7 0 14 3 7 1 + 7 6 1 0 7 15 14 1 + 3 2 4 0 16 17 18 1 + 4 7 3 0 18 19 16 1 + 4 5 9 0 4 5 9 1 + 9 8 4 0 9 8 4 1 + 5 6 10 0 13 6 10 1 + 10 9 5 0 10 20 13 1 + 6 7 11 0 15 7 11 1 + 11 10 6 0 11 21 15 1 + 7 4 8 0 19 18 22 1 + 8 11 7 0 22 23 19 1 + 8 9 13 0 48 49 50 1 + 13 12 8 0 50 51 48 1 + 9 10 14 0 41 52 53 1 + 14 13 9 0 53 42 41 1 + 10 11 15 0 44 54 55 1 + 15 14 10 0 55 45 44 1 + 11 8 12 0 46 40 43 1 + 12 15 11 0 43 47 46 1 + 12 13 17 0 32 33 34 1 + 17 16 12 0 34 35 32 1 + 13 14 18 0 25 36 37 1 + 18 17 13 0 37 26 25 1 + 14 15 19 0 28 38 39 1 + 19 18 14 0 39 29 28 1 + 15 12 16 0 30 24 27 1 + 16 19 15 0 27 31 30 1 + tverts 56 + 0.536757 0.0271105 0 + 0.53451 0.0271105 0 + 0.216757 0.0271105 0 + 0.783243 0.0271105 0 + 0.216757 0.107111 0 + 0.536757 0.107111 0 + 0.53451 0.107111 0 + 0.783243 0.107111 0 + 0.276757 0.26711 0 + 0.476757 0.26711 0 + 0.47451 0.26711 0 + 0.723243 0.26711 0 + 0.21451 0.0271105 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.27451 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.731323 0.744214 0 + 0.268677 0.744214 0 + 0.188677 1.0796 0 + 0.811323 1.0796 0 + 0.523241 0.744214 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.451322 1.0796 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.726033 0.288193 0 + 0.273966 0.288193 0 + 0.273966 1.64023 0 + 0.726033 1.64023 0 + 0.278974 0.288193 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.526033 1.64023 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + endnode + node trimesh mesh12 + parent pwc_colm_005 + diffuse 0 0 0 + bitmap twc03_black + center 0 0 390 + shininess 11 + specular 0 0 0 + ambient 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 0.537255 0.0313726 0.431373 + orientation 0 0 0 0 + position 0 0 0 + verts 4 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 2 + 1 2 3 1 0 0 0 1 + 3 0 1 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node dummy pwc_colm_006 + parent pwc_decor1 + orientation 0 0 0 0 + position 2.5 -1 0.2 + wirecolor 0.0313726 0.239216 0.541176 + endnode + node trimesh plane12 + parent pwc_colm_006 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 0.537255 0.0313726 0.431373 + orientation 0 0 0 0 + position 0 0 0 + verts 20 + -0.4 0.4 0 + -0.4 -0.4 0 + 0.4 0.4 0 + 0.4 -0.4 0 + 0.4 0.4 0.2 + -0.4 0.4 0.2 + -0.4 -0.4 0.2 + 0.4 -0.4 0.2 + 0.25 0.25 0.6 + -0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + 0.25 0.25 3 + -0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 2 0 5 0 2 0 5 1 + 5 4 2 0 5 4 2 1 + 0 1 6 0 12 1 6 1 + 6 5 0 0 6 13 12 1 + 1 3 7 0 14 3 7 1 + 7 6 1 0 7 15 14 1 + 3 2 4 0 16 17 18 1 + 4 7 3 0 18 19 16 1 + 4 5 9 0 4 5 9 1 + 9 8 4 0 9 8 4 1 + 5 6 10 0 13 6 10 1 + 10 9 5 0 10 20 13 1 + 6 7 11 0 15 7 11 1 + 11 10 6 0 11 21 15 1 + 7 4 8 0 19 18 22 1 + 8 11 7 0 22 23 19 1 + 8 9 13 0 48 49 50 1 + 13 12 8 0 50 51 48 1 + 9 10 14 0 41 52 53 1 + 14 13 9 0 53 42 41 1 + 10 11 15 0 44 54 55 1 + 15 14 10 0 55 45 44 1 + 11 8 12 0 46 40 43 1 + 12 15 11 0 43 47 46 1 + 12 13 17 0 32 33 34 1 + 17 16 12 0 34 35 32 1 + 13 14 18 0 25 36 37 1 + 18 17 13 0 37 26 25 1 + 14 15 19 0 28 38 39 1 + 19 18 14 0 39 29 28 1 + 15 12 16 0 30 24 27 1 + 16 19 15 0 27 31 30 1 + tverts 56 + 0.536757 0.0271105 0 + 0.53451 0.0271105 0 + 0.216757 0.0271105 0 + 0.783243 0.0271105 0 + 0.216757 0.107111 0 + 0.536757 0.107111 0 + 0.53451 0.107111 0 + 0.783243 0.107111 0 + 0.276757 0.26711 0 + 0.476757 0.26711 0 + 0.47451 0.26711 0 + 0.723243 0.26711 0 + 0.21451 0.0271105 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.27451 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.731323 0.744214 0 + 0.268677 0.744214 0 + 0.188677 1.0796 0 + 0.811323 1.0796 0 + 0.523241 0.744214 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.451322 1.0796 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.726033 0.288193 0 + 0.273966 0.288193 0 + 0.273966 1.64023 0 + 0.726033 1.64023 0 + 0.278974 0.288193 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.526033 1.64023 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + endnode + node trimesh mesh11 + parent pwc_colm_006 + diffuse 0 0 0 + bitmap twc03_black + center 0 0 390 + shininess 11 + specular 0 0 0 + ambient 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 0.537255 0.0313726 0.431373 + orientation 0 0 0 0 + position 0 0 0 + verts 4 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 2 + 1 2 3 1 0 0 0 1 + 3 0 1 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node dummy pwc_colm_007 + parent pwc_decor1 + orientation 0 0 0 0 + position 2.5 3.5 0.2 + wirecolor 0.0235294 0.529412 0.227451 + endnode + node trimesh plane11 + parent pwc_colm_007 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 0.537255 0.0313726 0.431373 + orientation 0 0 0 0 + position 0 0 0 + verts 20 + -0.4 0.4 0 + -0.4 -0.4 0 + 0.4 0.4 0 + 0.4 -0.4 0 + 0.4 0.4 0.2 + -0.4 0.4 0.2 + -0.4 -0.4 0.2 + 0.4 -0.4 0.2 + 0.25 0.25 0.6 + -0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + 0.25 0.25 3 + -0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 2 0 5 0 2 0 5 1 + 5 4 2 0 5 4 2 1 + 0 1 6 0 12 1 6 1 + 6 5 0 0 6 13 12 1 + 1 3 7 0 14 3 7 1 + 7 6 1 0 7 15 14 1 + 3 2 4 0 16 17 18 1 + 4 7 3 0 18 19 16 1 + 4 5 9 0 4 5 9 1 + 9 8 4 0 9 8 4 1 + 5 6 10 0 13 6 10 1 + 10 9 5 0 10 20 13 1 + 6 7 11 0 15 7 11 1 + 11 10 6 0 11 21 15 1 + 7 4 8 0 19 18 22 1 + 8 11 7 0 22 23 19 1 + 8 9 13 0 48 49 50 1 + 13 12 8 0 50 51 48 1 + 9 10 14 0 41 52 53 1 + 14 13 9 0 53 42 41 1 + 10 11 15 0 44 54 55 1 + 15 14 10 0 55 45 44 1 + 11 8 12 0 46 40 43 1 + 12 15 11 0 43 47 46 1 + 12 13 17 0 32 33 34 1 + 17 16 12 0 34 35 32 1 + 13 14 18 0 25 36 37 1 + 18 17 13 0 37 26 25 1 + 14 15 19 0 28 38 39 1 + 19 18 14 0 39 29 28 1 + 15 12 16 0 30 24 27 1 + 16 19 15 0 27 31 30 1 + tverts 56 + 0.536757 0.0271105 0 + 0.53451 0.0271105 0 + 0.216757 0.0271105 0 + 0.783243 0.0271105 0 + 0.216757 0.107111 0 + 0.536757 0.107111 0 + 0.53451 0.107111 0 + 0.783243 0.107111 0 + 0.276757 0.26711 0 + 0.476757 0.26711 0 + 0.47451 0.26711 0 + 0.723243 0.26711 0 + 0.21451 0.0271105 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.27451 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.731323 0.744214 0 + 0.268677 0.744214 0 + 0.188677 1.0796 0 + 0.811323 1.0796 0 + 0.523241 0.744214 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.451322 1.0796 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.726033 0.288193 0 + 0.273966 0.288193 0 + 0.273966 1.64023 0 + 0.726033 1.64023 0 + 0.278974 0.288193 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.526033 1.64023 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + endnode + node trimesh mesh10 + parent pwc_colm_007 + diffuse 0 0 0 + bitmap twc03_black + center 0 0 390 + shininess 11 + specular 0 0 0 + ambient 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 0.537255 0.0313726 0.431373 + orientation 0 0 0 0 + position 0 0 0 + verts 4 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 2 + 1 2 3 1 0 0 0 1 + 3 0 1 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node dummy pwc_colm_008 + parent pwc_decor1 + orientation 0 0 0 0 + position 2.5 1 0.2 + wirecolor 0.0235294 0.529412 0.227451 + endnode + node trimesh plane10 + parent pwc_colm_008 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 0.537255 0.0313726 0.431373 + orientation 0 0 0 0 + position 0 0 0 + verts 20 + -0.4 0.4 0 + -0.4 -0.4 0 + 0.4 0.4 0 + 0.4 -0.4 0 + 0.4 0.4 0.2 + -0.4 0.4 0.2 + -0.4 -0.4 0.2 + 0.4 -0.4 0.2 + 0.25 0.25 0.6 + -0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + 0.25 0.25 3 + -0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 2 0 5 0 2 0 5 1 + 5 4 2 0 5 4 2 1 + 0 1 6 0 12 1 6 1 + 6 5 0 0 6 13 12 1 + 1 3 7 0 14 3 7 1 + 7 6 1 0 7 15 14 1 + 3 2 4 0 16 17 18 1 + 4 7 3 0 18 19 16 1 + 4 5 9 0 4 5 9 1 + 9 8 4 0 9 8 4 1 + 5 6 10 0 13 6 10 1 + 10 9 5 0 10 20 13 1 + 6 7 11 0 15 7 11 1 + 11 10 6 0 11 21 15 1 + 7 4 8 0 19 18 22 1 + 8 11 7 0 22 23 19 1 + 8 9 13 0 48 49 50 1 + 13 12 8 0 50 51 48 1 + 9 10 14 0 41 52 53 1 + 14 13 9 0 53 42 41 1 + 10 11 15 0 44 54 55 1 + 15 14 10 0 55 45 44 1 + 11 8 12 0 46 40 43 1 + 12 15 11 0 43 47 46 1 + 12 13 17 0 32 33 34 1 + 17 16 12 0 34 35 32 1 + 13 14 18 0 25 36 37 1 + 18 17 13 0 37 26 25 1 + 14 15 19 0 28 38 39 1 + 19 18 14 0 39 29 28 1 + 15 12 16 0 30 24 27 1 + 16 19 15 0 27 31 30 1 + tverts 56 + 0.536757 0.0271105 0 + 0.53451 0.0271105 0 + 0.216757 0.0271105 0 + 0.783243 0.0271105 0 + 0.216757 0.107111 0 + 0.536757 0.107111 0 + 0.53451 0.107111 0 + 0.783243 0.107111 0 + 0.276757 0.26711 0 + 0.476757 0.26711 0 + 0.47451 0.26711 0 + 0.723243 0.26711 0 + 0.21451 0.0271105 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.27451 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.731323 0.744214 0 + 0.268677 0.744214 0 + 0.188677 1.0796 0 + 0.811323 1.0796 0 + 0.523241 0.744214 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.451322 1.0796 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.726033 0.288193 0 + 0.273966 0.288193 0 + 0.273966 1.64023 0 + 0.726033 1.64023 0 + 0.278974 0.288193 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.526033 1.64023 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + endnode + node trimesh mesh22 + parent pwc_colm_008 + diffuse 0 0 0 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.537255 0.0313726 0.431373 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 0 0 0 + specular 0 0 0 + shininess 11 + center 0 0 390 + bitmap twc03_black + verts 4 + 0.45 0.45 3.9 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 2 + 1 2 3 1 0 0 0 1 + 3 0 1 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node dummy pwc_rubl_002 + parent pwc_decor1 + position -2.2 1.7 0.2 + orientation 0 0 -1 -1.55 + wirecolor 0.839216 0.894118 0.6 + endnode + node trimesh object03 + parent pwc_rubl_002 + diffuse 1 1 1 + ambient 1 1 1 + position -0.49 0.71 0.57 + orientation 0 0 0 0 + wirecolor 0.337255 0.776471 0.882353 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 10 + center 2.5 -16 -22.5 + bitmap twc03_wood02 + verts 8 + -0.16 0.05 -0.06 + 0.07 0.14 -0.09 + -0.07 -0.19 0.01 + 0.15 -0.02 0.09 + 0.12 -0.19 -0.54 + -0.11 -0.28 -0.5 + 0.21 -0.37 -0.39 + -0.02 -0.46 -0.35 + faces 10 + 0 2 3 2 0 2 3 2 + 3 1 0 2 3 1 0 2 + 0 1 4 8 6 7 4 5 + 4 5 0 8 4 5 6 5 + 1 3 6 16 8 9 4 4 + 6 4 1 16 4 5 8 4 + 2 7 6 32 11 4 5 6 + 6 3 2 32 5 10 11 6 + 2 0 5 64 12 13 4 3 + 5 7 2 64 4 5 12 3 + tverts 14 + 0.55 0.45 0 + 0.45 0.45 0 + 0.55 0.55 0 + 0.45 0.55 0 + 0.55 0.441533 0 + 0.45 0.441533 0 + 0.45 0.222702 0 + 0.55 0.22 0 + 0.45 0.22 0 + 0.55 0.200665 0 + 0.45 0.200665 0 + 0.55 0.259442 0 + 0.45 0.259442 0 + 0.55 0.222702 0 + endnode + node trimesh meshtdc5451 + parent tdc01_g02_01 + diffuse 1 1 1 + ambient 1 1 1 + position -0.41 0.01 3.5 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 1 + center 41 0 168 + bitmap tdc01_wall_uni + tilefade 0 + verts 4 + -0.22 -0.49 1.68 + 1.04 -0.49 1.68 + 1.04 0.49 1.68 + -0.22 0.49 1.68 + faces 2 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + tverts 4 + 0.701795 0.588488 0 + 0.887592 0.588488 0 + 0.887592 0.732996 0 + 0.701795 0.732996 0 + endnode + node trimesh sin4 + parent tdc01_g02_01 + position 0 -0.15 3.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 2 0 253.5 + bitmap tdc01_trim00 + tilefade 0 + verts 16 + 0.02 0 1.06 + 1.59 0 3.29 + 1.82 0 3.2 + 1.82 0 1.42 + 1.61 0 1.27 + 1.59 0 1.06 + -1.13 0 3.68 + -0.62 0 3.93 + -0.01 0 4.01 + 0.61 0 3.94 + 1.14 0 3.69 + -1.55 0 1.06 + -1.57 0 1.27 + -1.78 0 1.42 + -1.78 0 3.2 + -1.55 0 3.29 + faces 14 + 3 2 14 0 0 1 2 1 + 14 13 12 0 2 3 4 1 + 12 0 5 0 4 5 6 1 + 4 3 14 0 7 0 2 1 + 14 12 5 0 2 4 6 1 + 14 5 4 0 2 6 7 1 + 12 11 0 0 4 8 5 1 + 15 14 2 0 9 2 1 1 + 15 2 1 0 9 1 10 1 + 6 15 1 0 11 9 10 1 + 6 1 10 0 11 10 12 1 + 6 10 9 0 11 12 13 1 + 6 9 8 0 11 13 14 1 + 6 8 7 0 11 14 15 1 + tverts 16 + 1.02835 0.567883 0 + 1.02835 0.0458278 0 + -0.0274931 0.0458278 0 + -0.0274931 0.567883 0 + 0.0340977 0.611877 0 + 0.500428 0.737991 0 + 0.960892 0.673467 0 + 0.966758 0.611877 0 + 0.0399635 0.673467 0 + 0.0399635 0.0194317 0 + 0.960892 0.0194317 0 + 0.163145 -0.0949512 0 + 0.828912 -0.0978841 0 + 0.673469 -0.171206 0 + 0.491629 -0.191737 0 + 0.312723 -0.168274 0 + endnode + node trimesh sin005 + parent tdc01_g02_01 + position 0 0.15 3.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -2 0 253.5 + bitmap tdc01_trim00 + tilefade 0 + verts 16 + -0.02 0 1.06 + -1.59 0 3.29 + -1.82 0 3.2 + -1.82 0 1.42 + -1.61 0 1.27 + -1.59 0 1.06 + 1.13 0 3.68 + 0.62 0 3.93 + 0.01 0 4.01 + -0.61 0 3.94 + -1.14 0 3.69 + 1.55 0 1.06 + 1.57 0 1.27 + 1.78 0 1.42 + 1.78 0 3.2 + 1.55 0 3.29 + faces 14 + 3 2 14 0 0 1 2 1 + 14 13 12 0 2 3 4 1 + 12 0 5 0 4 5 6 1 + 4 3 14 0 7 0 2 1 + 14 12 5 0 2 4 6 1 + 14 5 4 0 2 6 7 1 + 12 11 0 0 4 8 5 1 + 15 14 2 0 9 2 1 1 + 15 2 1 0 9 1 10 1 + 6 15 1 0 11 9 10 1 + 6 1 10 0 11 10 12 1 + 6 10 9 0 11 12 13 1 + 6 9 8 0 11 13 14 1 + 6 8 7 0 11 14 15 1 + tverts 16 + 1.02835 0.567883 0 + 1.02835 0.0458278 0 + -0.0274931 0.0458278 0 + -0.0274931 0.567883 0 + 0.0340977 0.611877 0 + 0.500428 0.737991 0 + 0.960892 0.673467 0 + 0.966758 0.611877 0 + 0.0399635 0.673467 0 + 0.0399635 0.0194317 0 + 0.960892 0.0194317 0 + 0.163145 -0.0949512 0 + 0.828912 -0.0978841 0 + 0.673469 -0.171206 0 + 0.491629 -0.191737 0 + 0.312723 -0.168274 0 + endnode + node trimesh object01 + parent tdc01_g02_01 + position -2.15 -4.91 -0.75 + orientation 0 0 0 0 + wirecolor 0.694118 0.109804 0.584314 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 540 491 559.5 + bitmap tdc01_trim00 + tilefade 0 + verts 21 + 3.7 9.97 7.24 + 3.95 9.97 7.15 + 3.95 9.97 5.37 + 3.74 9.97 5.22 + 3.72 9.97 5.01 + 3.94 9.97 4.86 + 4.46 9.97 4.86 + 4.77 9.97 3.95 + 7.1 9.97 3.95 + 3.7 -0.15 7.24 + 3.95 -0.15 7.15 + 3.95 -0.15 5.37 + 3.74 -0.15 5.22 + 3.72 -0.15 5.01 + 3.94 -0.15 4.86 + 4.46 -0.15 4.86 + 4.77 -0.15 3.95 + 7.1 -0.15 3.95 + 3.7 -0.15 7.24 + 3.7 -0.15 7.24 + 3.7 -0.15 7.24 + faces 19 + 0 1 10 4 18 1 10 2 + 0 10 9 4 18 10 19 2 + 1 2 11 2 1 2 11 2 + 1 11 10 2 1 11 10 2 + 2 3 12 4 2 3 12 2 + 2 12 11 4 2 12 11 2 + 3 4 13 2 3 4 13 2 + 3 13 12 2 3 13 12 2 + 4 5 14 4 4 20 21 2 + 4 14 13 4 4 21 13 2 + 5 6 15 2 5 22 23 2 + 5 15 14 2 5 23 14 2 + 6 7 16 4 6 24 25 2 + 6 16 15 4 6 25 15 2 + 7 8 17 2 7 8 17 2 + 7 17 16 2 7 17 16 2 + 18 0 9 2 9 0 9 2 + 19 0 18 2 9 0 9 2 + 20 0 19 2 9 0 9 2 + tverts 26 + 3.03483 0.9985 0 + 3.03483 0.03467 0 + 3.03483 0.56757 0 + 3.03483 0.61328 0 + 3.03483 0.67542 0 + -3.03483 0.80572 0 + 3.03483 0.71985 0 + -3.03483 1.07555 0 + -3.03483 -0.998501 0 + -3.03483 0.9985 0 + -3.03483 0.03467 0 + -3.03483 0.56757 0 + -3.03483 0.61328 0 + -3.03483 0.67542 0 + 3.03483 0.80572 0 + -3.03483 0.71985 0 + 3.03483 1.07555 0 + 3.03483 -0.998501 0 + 3.03483 0.00672 0 + -3.03483 0.00672 0 + 3.03483 0.7202 0 + -3.03483 0.7202 0 + -3.03483 0.34734 0 + 3.03483 0.34734 0 + 3.03483 0.99328 0 + -3.03483 0.99327 0 + endnode + node trimesh object04 + parent tdc01_g02_01 + position -2.15 -4.91 -0.75 + orientation 0 0 0 0 + wirecolor 0.694118 0.109804 0.584314 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -111 491 559.5 + bitmap tdc01_trim00 + tilefade 0 + verts 18 + -2.81 9.97 3.95 + -0.46 9.97 3.95 + -0.16 9.97 4.86 + 0.37 9.97 4.86 + 0.58 9.97 5.01 + 0.56 9.97 5.22 + 0.35 9.97 5.37 + 0.35 9.97 7.15 + 0.59 9.97 7.24 + -2.81 -0.15 3.95 + -0.45 -0.15 3.95 + -0.16 -0.15 4.86 + 0.37 -0.15 4.86 + 0.58 -0.15 5.01 + 0.56 -0.15 5.22 + 0.35 -0.15 5.37 + 0.35 -0.15 7.15 + 0.59 -0.15 7.24 + faces 16 + 0 1 10 1 0 18 19 2 + 0 10 9 1 0 19 9 2 + 1 2 11 4 1 20 21 2 + 1 11 10 4 1 21 10 2 + 2 3 12 2 2 22 23 2 + 2 12 11 2 2 23 11 2 + 3 4 13 4 3 4 13 2 + 3 13 12 4 3 13 12 2 + 4 5 14 2 4 5 14 2 + 4 14 13 2 4 14 13 2 + 5 6 15 4 5 6 15 2 + 5 15 14 4 5 15 14 2 + 6 7 16 2 6 7 16 2 + 6 16 15 2 6 16 15 2 + 7 8 17 4 7 8 17 2 + 7 17 16 4 7 17 16 2 + tverts 24 + -3.03424 1.72809 0 + -3.03424 0.99356 0 + -3.03424 0.38225 0 + -3.03424 0.72049 0 + -3.03424 0.67571 0 + -3.03424 0.61357 0 + -3.03424 0.56786 0 + -3.03424 0.03496 0 + -3.03395 0.00687 0 + 3.03541 1.72809 0 + 3.03541 0.99356 0 + 3.03541 0.38225 0 + 3.03541 0.72049 0 + 3.03541 0.67571 0 + 3.03541 0.61357 0 + 3.03541 0.56786 0 + 3.03541 0.03496 0 + 3.0357 0.00687 0 + -3.03424 -0.34596 0 + 3.03541 -0.34596 0 + -3.03424 0.72014 0 + 3.03541 0.72014 0 + -3.03424 -0.07614 0 + 3.03541 -0.07614 0 + endnode + node trimesh object05 + parent tdc01_g02_01 + position -2.15 -4.91 -0.75 + orientation 0 0 0 0 + wirecolor 0.694118 0.109804 0.584314 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 215.5 491 759.5 + bitmap tdc01_flrcrack + tilefade 0 + verts 14 + 0.57 9.98 7.23 + 1.03 9.98 7.65 + 1.56 9.98 7.89 + 2.15 9.98 7.96 + 2.77 9.98 7.88 + 3.3 9.98 7.63 + 3.74 9.98 7.22 + 0.58 -0.16 7.23 + 1.03 -0.16 7.64 + 1.55 -0.16 7.89 + 2.14 -0.16 7.97 + 2.75 -0.16 7.89 + 3.27 -0.16 7.64 + 3.71 -0.16 7.22 + faces 12 + 0 1 8 1 0 1 11 1 + 0 8 7 1 0 11 10 1 + 1 2 9 2 2 3 13 1 + 1 9 8 2 2 13 12 1 + 2 3 10 2 3 4 14 1 + 2 10 9 2 3 14 13 1 + 3 4 11 2 5 6 16 1 + 3 11 10 2 5 16 15 1 + 4 5 12 2 6 7 17 1 + 4 12 11 2 6 17 16 1 + 5 6 13 2 8 9 19 1 + 5 13 12 2 8 19 18 1 + tverts 20 + 0 0 0 + 0.111284 0 0 + 0.22205 0 0 + 0.333333 0 0 + 0.444617 0 0 + 0.555383 0 0 + 0.666667 0 0 + 0.77795 0 0 + 0.888716 0 0 + 1 0 0 + 0 1 0 + 0.111284 1 0 + 0.22205 1 0 + 0.333333 1 0 + 0.444617 1 0 + 0.555383 1 0 + 0.666667 1 0 + 0.77795 1 0 + 0.888716 1 0 + 1 1 0 + endnode + node dummy tdc01_g02_01a + parent tdc01_g02_01 + orientation 0 0 0 0 + position 0 0 0 + wirecolor 0.529412 0.0235294 0.0235294 + endnode + node trimesh object115 + parent tdc01_g02_01a + orientation 0 0 0 0 + position 3.16 3 1.47 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 1 + selfillumcolor 0.368627 0.368627 0.368627 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -319.5 -300 24.5 + bitmap tdc01_alpha + verts 12 + -0.01 0.9 0.41 + -0.01 -0.9 0.41 + -0.01 -0.9 0.96 + -0.01 0.9 0.96 + -6.38 -0.9 0.41 + -6.38 0.9 0.41 + -6.38 -0.9 0.96 + -6.38 0.9 0.96 + -6.38 -6.9 -0.47 + -6.38 -5.1 -0.47 + -6.38 -6.9 0.08 + -6.38 -5.1 0.08 + faces 6 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + 4 5 6 1 4 5 6 6 + 7 6 5 1 7 6 5 6 + 8 9 10 1 8 9 10 6 + 11 10 9 1 11 10 9 6 + tverts 12 + 0.606381 0.326587 0 + 0.9995 0.326586 0 + 0.9995 0.678244 0 + 0.606381 0.678244 0 + 0.9995 0.717891 0 + 0.606381 0.717891 0 + 0.9995 0.970514 0 + 0.606381 0.970515 0 + 0.740965 0.0415624 0 + 0.0577326 0.041563 0 + 0.740965 0.294186 0 + 0.0577326 0.294186 0 + endnode +endmodelgeom tdc01_g02_01 +donemodel tdc01_g02_01 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/tdc01_g02_03.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/tdc01_g02_03.mdl new file mode 100644 index 0000000..50f3d75 --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/tdc01_g02_03.mdl @@ -0,0 +1,4267 @@ +# Rewritten by CleanModels 3 Version 3.7.0 Sun Jan 17 04:30:10 2021 +#MAXMODEL ASCII +filedependency Unknown +newmodel tdc01_g02_03 + classification TILE + setsupermodel tdc01_g02_03 NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom tdc01_g02_03 + node dummy tdc01_g02_03 + parent NULL + endnode + node trimesh mesh12 + parent tdc01_g02_03 + diffuse 0 0 0 + bitmap twc03_black + center 0 0 390 + shininess 11 + specular 0 0 0 + ambient 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 1 1 1 + orientation 0 0 0 0 + position 2.5 3.5 0.2 + verts 4 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + 0.45 0.45 3.9 + faces 2 + 0 1 2 1 0 0 0 1 + 2 3 0 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node trimesh mesh11 + parent tdc01_g02_03 + diffuse 0 0 0 + bitmap twc03_black + center 0 0 390 + shininess 11 + specular 0 0 0 + ambient 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 1 1 1 + orientation 0 0 0 0 + position -2.5 1 0.2 + verts 4 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + 0.45 0.45 3.9 + faces 2 + 0 1 2 1 0 0 0 1 + 2 3 0 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node trimesh mesh10 + parent tdc01_g02_03 + diffuse 0 0 0 + bitmap twc03_black + center 0 0 390 + shininess 11 + specular 0 0 0 + ambient 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 1 1 1 + orientation 0 0 0 0 + position -2.5 3.5 0.2 + verts 4 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + 0.45 0.45 3.9 + faces 2 + 0 1 2 1 0 0 0 1 + 2 3 0 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node trimesh plane13 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 1 1 1 + orientation 0 0 0 0 + position 2.5 -3.5 0.2 + verts 20 + 0.4 0.4 0 + -0.4 0.4 0 + -0.4 0.4 0.2 + 0.4 0.4 0.2 + -0.4 -0.4 0 + -0.4 -0.4 0.2 + 0.4 -0.4 0 + 0.4 -0.4 0.2 + -0.25 0.25 0.6 + 0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + -0.25 0.25 3 + 0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + -0.45 0.45 3.9 + 0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 4 5 2 4 5 6 1 + 5 2 1 2 6 7 4 1 + 4 6 7 1 8 9 10 1 + 7 5 4 1 10 11 8 1 + 6 0 3 2 12 13 14 1 + 3 7 6 2 14 15 12 1 + 3 2 8 4 3 2 16 1 + 8 9 3 4 16 17 3 1 + 2 5 10 8 7 6 18 1 + 10 8 2 8 18 19 7 1 + 5 7 11 4 11 10 20 1 + 11 10 5 4 20 21 11 1 + 7 3 9 8 15 14 22 1 + 9 11 7 8 22 23 15 1 + 9 8 12 1 24 25 26 1 + 12 13 9 1 26 27 24 1 + 8 10 14 2 28 29 30 1 + 14 12 8 2 30 31 28 1 + 10 11 15 1 32 33 34 1 + 15 14 10 1 34 35 32 1 + 11 9 13 2 36 37 38 1 + 13 15 11 2 38 39 36 1 + 13 12 16 4 40 41 42 1 + 16 17 13 4 42 43 40 1 + 12 14 18 8 44 45 46 1 + 18 16 12 8 46 47 44 1 + 14 15 19 4 48 49 50 1 + 19 18 14 4 50 51 48 1 + 15 13 17 8 52 53 54 1 + 17 19 15 8 54 55 52 1 + tverts 56 + 0.216757 0.0271105 0 + 0.536757 0.0271105 0 + 0.536757 0.107111 0 + 0.216757 0.107111 0 + 0.21451 0.0271105 0 + 0.53451 0.0271105 0 + 0.53451 0.107111 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.783243 0.0271105 0 + 0.783243 0.107111 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.476757 0.26711 0 + 0.276757 0.26711 0 + 0.47451 0.26711 0 + 0.27451 0.26711 0 + 0.723243 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.273966 0.288193 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.273966 1.64023 0 + 0.278974 0.288193 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.726033 0.288193 0 + 0.726033 1.64023 0 + 0.526033 1.64023 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.268677 0.744214 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.188677 1.0796 0 + 0.523241 0.744214 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.731323 0.744214 0 + 0.811323 1.0796 0 + 0.451322 1.0796 0 + endnode + node trimesh plane12 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 1 1 1 + orientation 0 0 0 0 + position -2.5 1 0.2 + verts 20 + 0.4 0.4 0 + -0.4 0.4 0 + -0.4 0.4 0.2 + 0.4 0.4 0.2 + -0.4 -0.4 0 + -0.4 -0.4 0.2 + 0.4 -0.4 0 + 0.4 -0.4 0.2 + -0.25 0.25 0.6 + 0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + -0.25 0.25 3 + 0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + -0.45 0.45 3.9 + 0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 4 5 2 4 5 6 1 + 5 2 1 2 6 7 4 1 + 4 6 7 1 8 9 10 1 + 7 5 4 1 10 11 8 1 + 6 0 3 2 12 13 14 1 + 3 7 6 2 14 15 12 1 + 3 2 8 4 3 2 16 1 + 8 9 3 4 16 17 3 1 + 2 5 10 8 7 6 18 1 + 10 8 2 8 18 19 7 1 + 5 7 11 4 11 10 20 1 + 11 10 5 4 20 21 11 1 + 7 3 9 8 15 14 22 1 + 9 11 7 8 22 23 15 1 + 9 8 12 1 24 25 26 1 + 12 13 9 1 26 27 24 1 + 8 10 14 2 28 29 30 1 + 14 12 8 2 30 31 28 1 + 10 11 15 1 32 33 34 1 + 15 14 10 1 34 35 32 1 + 11 9 13 2 36 37 38 1 + 13 15 11 2 38 39 36 1 + 13 12 16 4 40 41 42 1 + 16 17 13 4 42 43 40 1 + 12 14 18 8 44 45 46 1 + 18 16 12 8 46 47 44 1 + 14 15 19 4 48 49 50 1 + 19 18 14 4 50 51 48 1 + 15 13 17 8 52 53 54 1 + 17 19 15 8 54 55 52 1 + tverts 56 + 0.216757 0.0271105 0 + 0.536757 0.0271105 0 + 0.536757 0.107111 0 + 0.216757 0.107111 0 + 0.21451 0.0271105 0 + 0.53451 0.0271105 0 + 0.53451 0.107111 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.783243 0.0271105 0 + 0.783243 0.107111 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.476757 0.26711 0 + 0.276757 0.26711 0 + 0.47451 0.26711 0 + 0.27451 0.26711 0 + 0.723243 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.273966 0.288193 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.273966 1.64023 0 + 0.278974 0.288193 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.726033 0.288193 0 + 0.726033 1.64023 0 + 0.526033 1.64023 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.268677 0.744214 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.188677 1.0796 0 + 0.523241 0.744214 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.731323 0.744214 0 + 0.811323 1.0796 0 + 0.451322 1.0796 0 + endnode + node trimesh plane11 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 1 1 1 + orientation 0 0 0 0 + position -2.5 3.5 0.2 + verts 20 + 0.4 0.4 0 + -0.4 0.4 0 + -0.4 0.4 0.2 + 0.4 0.4 0.2 + -0.4 -0.4 0 + -0.4 -0.4 0.2 + 0.4 -0.4 0 + 0.4 -0.4 0.2 + -0.25 0.25 0.6 + 0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + -0.25 0.25 3 + 0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + -0.45 0.45 3.9 + 0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 4 5 2 4 5 6 1 + 5 2 1 2 6 7 4 1 + 4 6 7 1 8 9 10 1 + 7 5 4 1 10 11 8 1 + 6 0 3 2 12 13 14 1 + 3 7 6 2 14 15 12 1 + 3 2 8 4 3 2 16 1 + 8 9 3 4 16 17 3 1 + 2 5 10 8 7 6 18 1 + 10 8 2 8 18 19 7 1 + 5 7 11 4 11 10 20 1 + 11 10 5 4 20 21 11 1 + 7 3 9 8 15 14 22 1 + 9 11 7 8 22 23 15 1 + 9 8 12 1 24 25 26 1 + 12 13 9 1 26 27 24 1 + 8 10 14 2 28 29 30 1 + 14 12 8 2 30 31 28 1 + 10 11 15 1 32 33 34 1 + 15 14 10 1 34 35 32 1 + 11 9 13 2 36 37 38 1 + 13 15 11 2 38 39 36 1 + 13 12 16 4 40 41 42 1 + 16 17 13 4 42 43 40 1 + 12 14 18 8 44 45 46 1 + 18 16 12 8 46 47 44 1 + 14 15 19 4 48 49 50 1 + 19 18 14 4 50 51 48 1 + 15 13 17 8 52 53 54 1 + 17 19 15 8 54 55 52 1 + tverts 56 + 0.216757 0.0271105 0 + 0.536757 0.0271105 0 + 0.536757 0.107111 0 + 0.216757 0.107111 0 + 0.21451 0.0271105 0 + 0.53451 0.0271105 0 + 0.53451 0.107111 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.783243 0.0271105 0 + 0.783243 0.107111 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.476757 0.26711 0 + 0.276757 0.26711 0 + 0.47451 0.26711 0 + 0.27451 0.26711 0 + 0.723243 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.273966 0.288193 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.273966 1.64023 0 + 0.278974 0.288193 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.726033 0.288193 0 + 0.726033 1.64023 0 + 0.526033 1.64023 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.268677 0.744214 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.188677 1.0796 0 + 0.523241 0.744214 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.731323 0.744214 0 + 0.811323 1.0796 0 + 0.451322 1.0796 0 + endnode + node trimesh plane10 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + bitmap tdc01_trim00 + center 0 0 195 + shininess 11 + specular 0 0 0 + selfillumcolor 0 0 0 + transparencyhint 0 + alpha 1 + rotatetexture 0 + inheritcolor 0 + beaming 0 + shadow 1 + render 1 + scale 1 + tilefade 0 + wirecolor 1 1 1 + orientation 0 0 0 0 + position 2.5 3.5 0.2 + verts 20 + 0.4 0.4 0 + -0.4 0.4 0 + -0.4 0.4 0.2 + 0.4 0.4 0.2 + -0.4 -0.4 0 + -0.4 -0.4 0.2 + 0.4 -0.4 0 + 0.4 -0.4 0.2 + -0.25 0.25 0.6 + 0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + -0.25 0.25 3 + 0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + -0.45 0.45 3.9 + 0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 4 5 2 4 5 6 1 + 5 2 1 2 6 7 4 1 + 4 6 7 1 8 9 10 1 + 7 5 4 1 10 11 8 1 + 6 0 3 2 12 13 14 1 + 3 7 6 2 14 15 12 1 + 3 2 8 4 3 2 16 1 + 8 9 3 4 16 17 3 1 + 2 5 10 8 7 6 18 1 + 10 8 2 8 18 19 7 1 + 5 7 11 4 11 10 20 1 + 11 10 5 4 20 21 11 1 + 7 3 9 8 15 14 22 1 + 9 11 7 8 22 23 15 1 + 9 8 12 1 24 25 26 1 + 12 13 9 1 26 27 24 1 + 8 10 14 2 28 29 30 1 + 14 12 8 2 30 31 28 1 + 10 11 15 1 32 33 34 1 + 15 14 10 1 34 35 32 1 + 11 9 13 2 36 37 38 1 + 13 15 11 2 38 39 36 1 + 13 12 16 4 40 41 42 1 + 16 17 13 4 42 43 40 1 + 12 14 18 8 44 45 46 1 + 18 16 12 8 46 47 44 1 + 14 15 19 4 48 49 50 1 + 19 18 14 4 50 51 48 1 + 15 13 17 8 52 53 54 1 + 17 19 15 8 54 55 52 1 + tverts 56 + 0.216757 0.0271105 0 + 0.536757 0.0271105 0 + 0.536757 0.107111 0 + 0.216757 0.107111 0 + 0.21451 0.0271105 0 + 0.53451 0.0271105 0 + 0.53451 0.107111 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.783243 0.0271105 0 + 0.783243 0.107111 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.476757 0.26711 0 + 0.276757 0.26711 0 + 0.47451 0.26711 0 + 0.27451 0.26711 0 + 0.723243 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.273966 0.288193 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.273966 1.64023 0 + 0.278974 0.288193 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.726033 0.288193 0 + 0.726033 1.64023 0 + 0.526033 1.64023 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.268677 0.744214 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.188677 1.0796 0 + 0.523241 0.744214 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.731323 0.744214 0 + 0.811323 1.0796 0 + 0.451322 1.0796 0 + endnode + node trimesh meshtdc4351 + parent tdc01_g02_03 + position 1.44 0.01 4.27 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 132 -1 -77 + bitmap tdc01_trim00 + tilefade 0 + verts 12 + 1.28 -0.19 -0.32 + 0.93 -0.13 -0.82 + 1.02 -0.13 -0.93 + 1.55 -0.19 -0.64 + 0.93 0.13 -0.82 + 1.02 0.13 -0.93 + 1.28 0.18 -0.32 + 1.55 0.18 -0.64 + 1.14 -0.13 -1.22 + 1.71 -0.21 -1.07 + 1.14 0.13 -1.22 + 1.71 0.19 -1.07 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 0 1 2 3 0 3 + 1 4 5 2 4 5 6 3 + 5 2 1 2 6 7 4 3 + 4 6 7 1 5 0 3 3 + 7 5 4 1 3 6 5 3 + 3 2 8 1 3 2 8 3 + 8 9 3 1 8 9 3 3 + 2 5 10 2 7 6 10 3 + 10 8 2 2 10 11 7 3 + 5 7 11 1 6 3 9 3 + 11 10 5 1 9 10 6 3 + 6 0 3 2 12 13 14 3 + 3 7 6 2 14 15 12 3 + 7 3 9 2 15 14 16 3 + 9 11 7 2 16 17 15 3 + tverts 18 + 0.24174 0.76 0 + 0.24174 0.272084 0 + 0.59375 0.272084 0 + 0.59375 0.76 0 + 0.24174 0.336632 0 + 0.24174 0.272479 0 + 0.59375 0.272479 0 + 0.59375 0.336632 0 + 0.99772 0.272084 0 + 0.99772 0.76 0 + 0.99772 0.272479 0 + 0.99772 0.336632 0 + 0.752339 0.76 0 + 0.752339 0.999021 0 + 0.400332 0.999021 0 + 0.400332 0.76 0 + -0.0036439 0.999021 0 + -0.0036438 0.76 0 + endnode + node trimesh meshtdc1382 + parent tdc01_g02_03 + position 4 1 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -85 -100 275 + bitmap tdc01_trim00 + verts 12 + -0.85 -0.5 3 + -0.85 1 3 + -0.85 1 2.5 + -0.85 -0.5 2.5 + -0.85 3 3 + -0.85 3 2.5 + -0.85 -3 3 + -0.85 -1.5 3 + -0.85 -1.5 2.5 + -0.85 -3 2.5 + -0.85 -5 3 + -0.85 -5 2.5 + faces 8 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 1 4 5 1 0 1 2 5 + 5 2 1 1 2 3 0 5 + 6 7 8 1 0 1 2 5 + 8 9 6 1 2 3 0 5 + 10 6 9 1 0 1 2 5 + 9 11 10 1 2 3 0 5 + tverts 4 + 0.0004995 0.76 0 + 0.999501 0.76 0 + 0.999501 1 0 + 0.0004995 1 0 + endnode + node trimesh mesh535 + parent tdc01_g02_03 + position -1.42 0.01 4.23 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 15 0 13 + bitmap tdc01_trim00 + tilefade 0 + verts 22 + 1 -0.13 0.18 + 0.84 -0.19 0.77 + 0.69 -0.13 0.08 + 0.35 -0.19 0.58 + 0.84 0.19 0.77 + 1 0.13 0.18 + 0.35 0.18 0.58 + 0.69 0.13 0.08 + 0.55 -0.13 -0.06 + 0.06 -0.19 0.29 + 0.55 0.13 -0.06 + 0.06 0.18 0.29 + 0.31 -0.13 -0.46 + -0.03 -0.19 0.12 + 0.31 0.13 -0.46 + -0.03 0.18 0.12 + -0.5 -0.13 -0.51 + -0.64 -0.19 0.08 + -0.64 0.18 0.08 + -0.5 0.13 -0.51 + -0.7 0.19 0.05 + -0.7 -0.19 0.05 + faces 32 + 0 1 2 1 0 1 2 3 + 3 2 1 1 3 2 1 3 + 4 5 6 1 1 4 3 3 + 7 6 5 1 5 3 4 3 + 2 3 8 1 2 3 6 3 + 9 8 3 1 7 6 3 3 + 7 2 10 2 5 8 9 3 + 8 10 2 2 10 9 8 3 + 6 7 11 1 3 5 7 3 + 10 11 7 1 9 7 5 3 + 8 9 12 1 6 7 11 3 + 13 12 9 1 12 11 7 3 + 10 8 14 2 9 10 13 3 + 12 14 8 2 14 13 10 3 + 11 10 15 1 7 9 12 3 + 14 15 10 1 13 12 9 3 + 12 13 16 1 11 12 15 3 + 17 16 13 1 16 15 12 3 + 15 14 18 1 12 13 16 3 + 19 18 14 1 17 16 13 3 + 18 19 20 1 16 17 18 3 + 1 4 3 2 19 20 21 3 + 6 3 4 2 22 21 20 3 + 3 6 9 2 21 22 23 3 + 11 9 6 2 24 23 22 3 + 9 11 13 2 23 24 25 3 + 15 13 11 2 26 25 24 3 + 13 15 17 4 25 26 27 3 + 18 17 15 4 28 27 26 3 + 20 21 18 4 29 30 28 3 + 17 18 21 4 27 28 30 3 + 21 16 17 1 31 15 16 3 + tverts 32 + -0.549868 0.272084 0 + -0.549868 0.76 0 + -0.250627 0.272084 0 + -0.250627 0.76 0 + -0.549868 0.272479 0 + -0.250627 0.272479 0 + -0.004771 0.272084 0 + -0.004771 0.76 0 + -0.250627 0.336632 0 + -0.004771 0.272479 0 + -0.004771 0.336632 0 + 0.26149 0.272084 0 + 0.26149 0.76 0 + 0.26149 0.272479 0 + 0.26149 0.336632 0 + 0.83984 0.272084 0 + 0.83984 0.76 0 + 0.83984 0.272479 0 + 0.88625 0.76 0 + 1.54395 0.999021 0 + 1.54395 0.76 0 + 1.24471 0.999021 0 + 1.24471 0.76 0 + 0.99885 0.999021 0 + 0.99885 0.76 0 + 0.73259 0.999021 0 + 0.73259 0.76 0 + 0.15424 0.999021 0 + 0.15424 0.76 0 + 0.10783 0.76 0 + 0.11248 0.999021 0 + 0.8816 0.76 0 + endnode + node trimesh meshtdc4353 + parent tdc01_g02_03 + position -2.64 0.01 3.81 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -12 -1 -31 + bitmap tdc01_trim00 + tilefade 0 + verts 12 + 0.27 -0.13 -0.36 + -0.08 -0.19 0.14 + 0.18 -0.13 -0.47 + -0.35 -0.19 -0.18 + 0.27 0.13 -0.36 + 0.18 0.13 -0.47 + -0.08 0.18 0.14 + -0.35 0.18 -0.18 + 0.04 -0.11 -0.76 + -0.51 -0.21 -0.61 + 0.04 0.09 -0.76 + -0.51 0.19 -0.61 + faces 16 + 0 1 2 1 0 1 2 3 + 3 2 1 1 3 2 1 3 + 4 0 5 2 4 5 6 3 + 2 5 0 2 7 6 5 3 + 6 4 7 1 1 4 3 3 + 5 7 4 1 6 3 4 3 + 2 3 8 1 2 3 8 3 + 9 8 3 1 9 8 3 3 + 5 2 10 2 6 7 10 3 + 8 10 2 2 11 10 7 3 + 7 5 11 1 3 6 9 3 + 10 11 5 1 10 9 6 3 + 1 6 3 2 12 13 14 3 + 7 3 6 2 15 14 13 3 + 3 7 9 2 14 15 16 3 + 11 9 7 2 17 16 15 3 + tverts 18 + 0.24174 0.272084 0 + 0.24174 0.76 0 + 0.59375 0.272084 0 + 0.59375 0.76 0 + 0.24174 0.272479 0 + 0.24174 0.336632 0 + 0.59375 0.272479 0 + 0.59375 0.336632 0 + 0.99772 0.272084 0 + 0.99772 0.76 0 + 0.99772 0.272479 0 + 0.99772 0.336632 0 + 0.752339 0.999021 0 + 0.752339 0.76 0 + 0.400332 0.999021 0 + 0.400332 0.76 0 + -0.0036439 0.999021 0 + -0.0036438 0.76 0 + endnode + node trimesh mesh536 + parent tdc01_g02_03 + position 1.44 0.01 4.27 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -17 0 9 + bitmap tdc01_trim00 + tilefade 0 + verts 22 + -0.86 -0.19 0.73 + -1.02 -0.13 0.14 + -0.71 -0.13 0.04 + -0.37 -0.19 0.54 + -1.02 0.13 0.14 + -0.86 0.19 0.73 + -0.37 0.18 0.54 + -0.71 0.13 0.04 + -0.57 -0.13 -0.1 + -0.08 -0.19 0.25 + -0.57 0.13 -0.1 + -0.08 0.18 0.25 + -0.33 -0.13 -0.5 + 0.01 -0.19 0.08 + -0.33 0.13 -0.5 + 0.01 0.18 0.08 + 0.48 -0.13 -0.55 + 0.62 -0.19 0.04 + 0.62 0.18 0.04 + 0.48 0.13 -0.55 + 0.68 0.19 0.01 + 0.68 -0.19 0.01 + faces 32 + 0 1 2 1 0 1 2 3 + 2 3 0 1 2 3 0 3 + 4 5 6 1 4 0 3 3 + 6 7 4 1 3 5 4 3 + 3 2 8 1 3 2 6 3 + 8 9 3 1 6 7 3 3 + 2 7 10 2 8 5 9 3 + 10 8 2 2 9 10 8 3 + 7 6 11 1 5 3 7 3 + 11 10 7 1 7 9 5 3 + 9 8 12 1 7 6 11 3 + 12 13 9 1 11 12 7 3 + 8 10 14 2 10 9 13 3 + 14 12 8 2 13 14 10 3 + 10 11 15 1 9 7 12 3 + 15 14 10 1 12 13 9 3 + 13 12 16 1 12 11 15 3 + 16 17 13 1 15 16 12 3 + 14 15 18 1 13 12 16 3 + 18 19 14 1 16 17 13 3 + 19 18 20 1 17 16 18 3 + 5 0 3 2 19 20 21 3 + 3 6 5 2 21 22 19 3 + 6 3 9 2 22 21 23 3 + 9 11 6 2 23 24 22 3 + 11 9 13 2 24 23 25 3 + 13 15 11 2 25 26 24 3 + 15 13 17 4 26 25 27 3 + 17 18 15 4 27 28 26 3 + 21 20 18 4 29 30 28 3 + 18 17 21 4 28 27 29 3 + 16 21 17 1 15 31 16 3 + tverts 32 + -0.549868 0.76 0 + -0.549868 0.272084 0 + -0.250627 0.272084 0 + -0.250627 0.76 0 + -0.549868 0.272479 0 + -0.250627 0.272479 0 + -0.004771 0.272084 0 + -0.004771 0.76 0 + -0.250627 0.336632 0 + -0.004771 0.272479 0 + -0.004771 0.336632 0 + 0.26149 0.272084 0 + 0.26149 0.76 0 + 0.26149 0.272479 0 + 0.26149 0.336632 0 + 0.83984 0.272084 0 + 0.83984 0.76 0 + 0.83984 0.272479 0 + 0.88625 0.76 0 + 1.54395 0.76 0 + 1.54395 0.999021 0 + 1.24471 0.999021 0 + 1.24471 0.76 0 + 0.99885 0.999021 0 + 0.99885 0.76 0 + 0.73259 0.999021 0 + 0.73259 0.76 0 + 0.15424 0.999021 0 + 0.15424 0.76 0 + 0.11248 0.999021 0 + 0.10783 0.76 0 + 0.8816 0.76 0 + endnode + node aabb object83 + parent tdc01_g02_03 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 1 1 1 + bitmap NULL + render 0 + shadow 0 + verts 12 + 5 -5 3.2 + 2.65 5 3.2 + 2.65 -5 3.2 + 5 5 3.2 + -2.65 5 3.2 + -5 -5 3.2 + -2.65 -5 3.2 + -5 5 3.2 + -2.6 5 0.2 + -2.6 -5 0.2 + 2.6 -5 0.2 + 2.6 5 0.2 + faces 10 + 0 1 2 1 0 0 0 2 + 0 3 1 1 0 0 0 2 + 4 5 6 1 0 0 0 2 + 7 5 4 1 0 0 0 2 + 8 9 10 1 0 0 0 4 + 10 11 8 1 0 0 0 4 + 9 8 6 2 0 0 0 2 + 6 8 4 2 0 0 0 2 + 11 10 2 2 0 0 0 2 + 11 2 1 2 0 0 0 2 + aabb -5 -5 0.2 5 5 3.2 -1 + -5 -5 0.2 2.6 5 3.2 -1 + -5 -5 0.2 2.6 5 3.2 -1 + -5 -5 0.2 -2.6 5 3.2 -1 + -2.65 -5 0.2 -2.6 5 3.2 6 + -5 -5 3.2 -2.65 5 3.2 2 + -2.6 -5 0.2 2.6 5 0.2 4 + -5 -5 0.2 -2.6 5 3.2 -1 + -2.65 -5 0.2 -2.6 5 3.2 7 + -5 -5 3.2 -2.65 5 3.2 3 + -2.6 -5 0.2 5 5 3.2 -1 + 2.6 -5 0.2 5 5 3.2 -1 + 2.6 -5 0.2 2.65 5 3.2 8 + 2.65 -5 3.2 5 5 3.2 0 + -2.6 -5 0.2 5 5 3.2 -1 + -2.6 -5 0.2 2.6 5 0.2 5 + 2.6 -5 0.2 5 5 3.2 -1 + 2.6 -5 0.2 2.65 5 3.2 9 + 2.65 -5 3.2 5 5 3.2 1 + endnode + node trimesh mesh02 + parent tdc01_g02_03 + diffuse 0 0 0 + position -2.52 -3.5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 0 0 0 + specular 0 0 0 + shininess 11 + center 0 0 390 + bitmap twc03_black + verts 4 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + 0.45 0.45 3.9 + faces 2 + 0 1 2 1 0 0 0 1 + 2 3 0 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node trimesh mesh01 + parent tdc01_g02_03 + diffuse 0 0 0 + position 2.5 -3.5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 0 0 0 + specular 0 0 0 + shininess 11 + center 0 0 390 + bitmap twc03_black + verts 4 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + 0.45 0.45 3.9 + faces 2 + 0 1 2 1 0 0 0 1 + 2 3 0 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node light tdc01_g02_03ml1 + parent tdc01_g02_03 + orientation 0 0 0 0 + position 0 0 5 + wirecolor 1 1 1 + radius 14 + multiplier 1 + color 0 0 0 + ambientonly 0 + nDynamicType 0 + affectdynamic 1 + shadow 0 + lightpriority 5 + fadinglight 1 + endnode + node trimesh object115 + parent tdc01_g02_03 + position 3.16 3 1.47 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 1 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -319.5 -300 24.5 + bitmap tdc01_alpha + verts 12 + -0.01 0.9 0.41 + -0.01 -0.9 0.41 + -0.01 -0.9 0.96 + -0.01 0.9 0.96 + -6.38 -0.9 0.41 + -6.38 0.9 0.41 + -6.38 -0.9 0.96 + -6.38 0.9 0.96 + -6.38 -6.9 -0.47 + -6.38 -5.1 -0.47 + -6.38 -6.9 0.08 + -6.38 -5.1 0.08 + faces 6 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + 4 5 6 1 4 5 6 6 + 7 6 5 1 7 6 5 6 + 8 9 10 1 8 9 10 6 + 11 10 9 1 11 10 9 6 + tverts 12 + 0.606381 0.326587 0 + 0.9995 0.326586 0 + 0.9995 0.678244 0 + 0.606381 0.678244 0 + 0.9995 0.717891 0 + 0.606381 0.717891 0 + 0.9995 0.970514 0 + 0.606381 0.970515 0 + 0.740965 0.0415624 0 + 0.0577326 0.041563 0 + 0.740965 0.294186 0 + 0.0577326 0.294186 0 + endnode + node light tdc01_g02_03ml2 + parent tdc01_g02_03 + orientation 0 0 0 0 + position 1.66656 -3.00967 4 + wirecolor 1 1 1 + radius 5 + multiplier 1 + color 0.00392157 0.00392157 0.00392157 + ambientonly 0 + nDynamicType 0 + affectdynamic 1 + shadow 0 + lightpriority 5 + fadinglight 1 + endnode + node trimesh meshtdc1392 + parent tdc01_g02_03 + position 5 5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -212.5 -50 150 + bitmap tdc01_sandstone + verts 13 + -2 -1 0.5 + -2.4 -1 0 + -2 -1 0 + -2.1 0 0.75 + -2.1 -1 0.75 + -2.4 0 0 + -1.85 -1 0.75 + -1.85 -1 3 + -2.35 -1 3 + -1.85 -1 2.5 + -2.35 0 3 + -2.1 -1 2.5 + -2.1 0 2.5 + faces 9 + 0 1 2 1 0 1 2 5 + 3 1 4 2 3 1 4 5 + 1 3 5 2 1 3 5 5 + 4 1 0 1 4 1 0 5 + 6 4 0 1 6 4 0 5 + 7 8 9 1 7 8 9 5 + 10 11 8 2 10 11 8 5 + 11 10 12 2 11 10 12 5 + 8 11 9 1 8 11 9 5 + tverts 13 + 1.3556 0.707593 0 + 1 0 0 + 1.4227 0 0 + 0.5 0.999796 0 + 1 0.999796 0 + 0.5 0 0 + 1.38388 0.999796 0 + -0.205 0.5 0 + 0 0.5 0 + -0.125 0.999501 0 + 0.5 0.5 0 + 0 0.999501 0 + 0.5 0.999501 0 + endnode + node trimesh meshtdc4350 + parent tdc01_g02_03 + position 2.1 0.01 3.49 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 24.5 0 40 + bitmap tdc01_sandstone + tilefade 0 + verts 16 + -0.22 -0.25 0.12 + -0.22 0.25 0.12 + 0.22 0.25 -0.11 + 0.22 -0.25 -0.11 + 0.71 -0.36 0.58 + 0.07 -0.36 0.91 + 0.27 -0.13 -0.04 + 0.71 0.36 0.58 + 0.62 -0.19 0.46 + 0.07 0.36 0.91 + -0.18 -0.13 0.23 + 0.02 -0.19 0.79 + 0.02 0.19 0.79 + -0.18 0.13 0.23 + 0.27 0.13 -0.04 + 0.62 0.18 0.46 + faces 22 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 0 3 4 2 4 5 6 5 + 4 5 0 2 6 7 4 5 + 3 2 6 4 4 5 8 4 + 7 4 8 4 6 7 9 4 + 2 1 9 2 4 5 6 6 + 9 7 2 2 6 7 4 6 + 1 0 10 4 4 5 10 3 + 5 9 11 4 6 7 11 3 + 11 9 12 4 11 7 12 3 + 10 0 5 4 10 5 6 3 + 1 10 13 4 4 10 13 3 + 12 9 1 4 12 7 4 3 + 13 12 1 4 13 12 4 3 + 11 10 5 4 11 10 6 3 + 6 2 14 4 8 5 14 4 + 8 4 3 4 9 7 4 4 + 7 8 15 4 6 9 15 4 + 6 8 3 4 8 9 4 4 + 14 2 7 4 14 5 6 4 + 15 14 7 4 15 14 6 4 + tverts 16 + 0.846869 0.153125 0 + 0.846869 0.846875 0 + 0.153119 0.846875 0 + 0.153119 0.153125 0 + 0.153131 0.500002 0 + 0.846881 0.500002 0 + 0.999506 1.499 0 + 0.0005054 1.499 0 + 0.322096 0.60356 0 + 0.23767 1.33156 0 + 0.675304 0.634319 0 + 0.766609 1.34464 0 + 0.239425 1.34167 0 + 0.32249 0.632936 0 + 0.678759 0.599989 0 + 0.757652 1.33153 0 + endnode + node trimesh meshtdc4357 + parent tdc01_g02_03 + position 4.27 0.02 2.81 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -145.5 -2 -111 + bitmap tdc01_sandstone + verts 22 + -1.37 0.2 -1.86 + -1.27 0.27 -2.11 + -1.67 0.26 -2.61 + -1.37 -0.22 -1.86 + -1.67 -0.28 -2.61 + -1.12 -0.29 -1.86 + -1.27 -0.29 -2.11 + -1.27 -0.36 -2.61 + -1.27 0.34 -2.61 + -1.12 0.27 -1.86 + -1.79 0.27 0.22 + -1.69 0.27 -0.11 + -1.69 -0.29 -0.11 + -1.79 -0.29 0.22 + -1.12 0.48 0.39 + -1.12 0.48 -0.11 + -1.12 -0.52 -0.11 + -1.12 -0.52 0.39 + -1.12 0.18 0.39 + -1.69 -0.14 0.24 + -1.69 0.12 0.24 + -1.12 -0.22 0.39 + faces 20 + 0 1 2 1 0 1 2 4 + 3 0 4 2 3 4 5 4 + 2 4 0 2 6 5 4 4 + 5 3 6 1 7 8 9 4 + 4 6 3 4 10 9 8 4 + 7 6 4 8 11 9 10 4 + 8 2 1 4 12 2 1 4 + 1 0 9 8 1 0 13 4 + 10 11 12 1 14 15 16 1 + 12 13 10 1 16 17 14 1 + 14 15 11 2 18 19 20 5 + 11 10 14 2 20 21 18 5 + 16 17 13 2 22 23 24 6 + 13 12 16 2 24 25 22 6 + 18 14 10 4 26 27 28 3 + 10 13 19 4 28 29 30 3 + 20 18 10 4 31 26 28 3 + 19 13 17 4 30 29 32 3 + 10 19 20 4 28 30 31 3 + 21 19 17 4 33 30 32 3 + tverts 34 + 1.1016 0.954095 0 + 0.7767 0.785471 0 + 0.1026 1.499 0 + -0.1016 0.204979 0 + -0.1016 0.771979 0 + 0.8974 0.134104 0 + 0.8974 0.842854 0 + -0.1016 0.499999 0 + -0.1016 0.954095 0 + 0.2373 0.756167 0 + 0.8974 1.499 0 + 0.8974 0.763848 0 + 0.1026 0.764377 0 + 1.1016 0.499999 0 + -0.0656779 0.2165 0 + 0.601099 0.2165 0 + 0.601099 0.7835 0 + -0.0656777 0.7835 0 + -0.397902 0.499999 0 + 0.601099 0.499999 0 + 0.601099 1.30531 0 + -0.0656779 1.44098 0 + 0.398901 0.499999 0 + 1.3979 0.499999 0 + 1.06568 1.44098 0 + 0.398901 1.30531 0 + 0.68777 0.499999 0 + 0.9995 0.499999 0 + 0.7835 1.44098 0 + 0.2165 1.44098 0 + 0.324764 1.32902 0 + 0.580862 1.32951 0 + 0.0004995 0.499999 0 + 0.316927 0.499999 0 + endnode + node trimesh meshtdc1403 + parent tdc01_g02_03 + position 5 -5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -197.5 50 162.5 + bitmap tdc01_wall_uni + verts 6 + -1.85 1 0.75 + -2.1 1 0.75 + -2.1 1 2.5 + -1.85 1 2.5 + -2.1 0 0.75 + -2.1 0 2.5 + faces 4 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + 1 4 5 2 1 4 5 3 + 5 2 1 2 5 2 1 3 + tverts 6 + 0.418684 0.0491585 0 + 0.383947 0.0491585 0 + 0.383947 0.472464 0 + 0.418684 0.472464 0 + 0.206819 0.0491585 0 + 0.206819 0.472464 0 + endnode + node trimesh meshtdc1406 + parent tdc01_g02_03 + position 5 -5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -212.5 50 150 + bitmap tdc01_sandstone + verts 13 + -2.4 1 0 + -2 1 0.5 + -2 1 0 + -2.1 0 0.75 + -2.1 1 0.75 + -2.4 0 0 + -1.85 1 0.75 + -2.35 1 3 + -1.85 1 3 + -1.85 1 2.5 + -2.1 1 2.5 + -2.35 0 3 + -2.1 0 2.5 + faces 9 + 0 1 2 1 0 1 2 5 + 0 3 4 2 0 3 4 5 + 3 0 5 2 3 0 5 5 + 0 4 1 1 0 4 1 5 + 4 6 1 1 4 6 1 5 + 7 8 9 1 7 8 9 5 + 10 11 7 2 10 11 7 5 + 11 10 12 2 11 10 12 5 + 10 7 9 1 10 7 9 5 + tverts 13 + 1 0 0 + 1.3556 0.707593 0 + 1.4227 0 0 + 0.5 0.999796 0 + 1 0.999796 0 + 0.5 0 0 + 1.38388 0.999796 0 + 0 0.5 0 + -0.205 0.5 0 + -0.125 0.999501 0 + 0 0.999501 0 + 0.5 0.5 0 + 0.5 0.999501 0 + endnode + node trimesh meshtdc1393 + parent tdc01_g02_03 + position 5 5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -197.5 -50 162.5 + bitmap tdc01_wall_uni + verts 6 + -2.1 -1 0.75 + -1.85 -1 0.75 + -2.1 -1 2.5 + -1.85 -1 2.5 + -2.1 0 0.75 + -2.1 0 2.5 + faces 4 + 0 1 2 1 0 1 2 6 + 3 2 1 1 2 3 0 6 + 4 0 5 2 1 4 5 3 + 2 5 0 2 5 2 1 3 + tverts 6 + 0.418684 0.0491585 0 + 0.383947 0.0491585 0 + 0.383947 0.472464 0 + 0.418684 0.472464 0 + 0.206819 0.0491585 0 + 0.206819 0.472464 0 + endnode + node trimesh meshtdc1380 + parent tdc01_g02_03 + position -5 5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 212.5 -50 150 + bitmap tdc01_sandstone + verts 13 + 2.4 -1 0 + 2 -1 0.5 + 2 -1 0 + 2.1 0 0.75 + 2.1 -1 0.75 + 2.4 0 0 + 1.85 -1 0.75 + 2.35 -1 3 + 1.85 -1 3 + 1.85 -1 2.5 + 2.1 -1 2.5 + 2.35 0 3 + 2.1 0 2.5 + faces 9 + 0 1 2 1 0 1 2 5 + 0 3 4 2 0 3 4 5 + 3 0 5 2 3 0 5 5 + 0 4 1 1 0 4 1 5 + 4 6 1 1 4 6 1 5 + 7 8 9 1 7 8 9 5 + 10 11 7 2 10 11 7 5 + 11 10 12 2 11 10 12 5 + 10 7 9 1 10 7 9 5 + tverts 13 + 1 0 0 + 1.3556 0.707593 0 + 1.4227 0 0 + 0.5 0.999796 0 + 1 0.999796 0 + 0.5 0 0 + 1.38388 0.999796 0 + 0 0.5 0 + -0.205 0.5 0 + -0.125 0.999501 0 + 0 0.999501 0 + 0.5 0.5 0 + 0.5 0.999501 0 + endnode + node trimesh meshtdc0157 + parent tdc01_g02_03 + position 0 0 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 0 0 0 + bitmap tdc01_fltile00 + verts 40 + -2.6 -4 0 + -2.6 -5 0 + -1 -3 0 + -1 -5 0 + 1 -3 0 + 1 -5 0 + 2.6 -4 0 + 3 -4 0 + -3 -1 0 + -3 -3 0 + -1 -1 0 + 1 -1 0 + 3 -1 0 + 3 -3 0 + -3 -0.36 0 + -2.6 -0.28 0 + -1 1 0 + 1 1 0 + 3 1 0 + 2.6 0.28 0 + 3 0.36 0 + -3 3 0 + -3 1 0 + -1 3 0 + 1 3 0 + 3 3 0 + -3 4 0 + -2.6 4 0 + -1 5 0 + 1 5 0 + 2.6 4 0 + 2.6 5 0 + 3 -0.34 0 + 2.6 -0.26 0 + -3 0.34 0 + -2.6 0.26 0 + 2.6 -5 0 + 3 4 0 + -2.6 5 0 + -3 -4 0 + faces 46 + 0 1 2 1 0 1 2 1 + 2 3 4 1 3 4 5 1 + 5 4 3 1 6 5 4 1 + 4 6 7 1 7 8 9 1 + 8 9 10 1 10 11 7 1 + 2 10 9 1 2 7 11 1 + 10 2 11 1 5 6 12 1 + 4 11 2 1 13 12 6 1 + 11 4 12 1 2 14 11 1 + 13 12 4 1 15 11 14 1 + 14 8 15 1 16 15 17 1 + 10 16 8 1 14 2 15 1 + 15 8 16 1 17 15 2 1 + 16 10 17 1 3 4 5 1 + 11 17 10 1 6 5 4 1 + 17 11 18 1 7 2 10 1 + 19 18 11 1 18 10 2 1 + 20 18 19 1 19 10 18 1 + 21 22 23 1 10 11 7 1 + 16 23 22 1 2 7 11 1 + 23 16 24 1 5 6 12 1 + 17 24 16 1 13 12 6 1 + 24 17 25 1 2 14 11 1 + 18 25 17 1 15 11 14 1 + 26 23 27 1 20 14 0 1 + 28 23 29 1 5 3 6 1 + 24 29 23 1 4 6 3 1 + 29 24 30 1 7 2 8 1 + 30 31 29 1 8 21 7 1 + 12 32 11 1 11 22 2 1 + 32 33 11 1 22 23 2 1 + 22 34 16 1 11 24 2 1 + 34 35 16 1 24 25 2 1 + 33 19 11 1 23 18 2 1 + 35 15 16 1 25 17 2 1 + 13 4 7 1 10 7 9 1 + 4 5 6 1 7 2 8 1 + 6 5 36 1 8 2 26 1 + 24 25 30 1 2 11 8 1 + 30 25 37 1 8 11 9 1 + 21 23 26 1 15 14 20 1 + 23 28 27 1 14 2 0 1 + 27 28 38 1 0 2 26 1 + 3 2 1 1 14 2 1 1 + 2 9 0 1 2 11 0 1 + 0 9 39 1 0 11 20 1 + tverts 27 + 0.05 0.375 0 + 0.05 0.25 0 + 0.25 0.5 0 + 0.75 0.25 0 + 1 0.25 0 + 0.75 0.5 0 + 1 0.5 0 + 0.25 0.75 0 + 0.05 0.625 0 + 0 0.625 0 + 0 0.75 0 + 0 0.5 0 + 0.75 0.75 0 + 1 0.75 0 + 0.25 0.25 0 + 0 0.25 0 + 0 0.331171 0 + 0.0492227 0.340915 0 + 0.0490316 0.660377 0 + 0 0.669861 0 + 0 0.375 0 + 0.05 0.75 0 + 0 0.582766 0 + 0.0494365 0.593702 0 + 0 0.417385 0 + 0.0490634 0.407475 0 + 0.05 0.5 0 + endnode + node trimesh meshtdc1389 + parent tdc01_g02_03 + position 4.8 3 1.1 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -115 0 105.5 + bitmap tdc01_pitwall00 + verts 8 + -0.65 -0.66 1.33 + -0.65 0.66 1.33 + -0.65 -0.66 0.78 + -0.65 0.66 0.78 + -1.65 -0.9 0.78 + -1.65 -0.9 1.33 + -1.65 0.9 0.78 + -1.65 0.9 1.33 + faces 8 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 5 0 2 4 5 6 6 + 0 2 4 2 6 7 4 6 + 6 4 2 4 8 9 10 6 + 2 3 6 4 10 11 8 6 + 7 6 3 2 6 7 4 6 + 3 1 7 2 4 5 6 6 + tverts 12 + 1.88889 0.385988 0 + -0.11111 0.385988 0 + 1.88889 0.0193209 0 + -0.11111 0.0193209 0 + 1 0.0193209 0 + 1 0.385988 0 + -1 0.385988 0 + -1 0.0193209 0 + 1.11111 1 0 + -0.88889 1 0 + -0.88889 0 0 + 1.11111 -4e-07 0 + endnode + node trimesh meshtdc0158 + parent tdc01_g02_03 + position 3.2 3.01 1.4 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -10 -1 -12.5 + bitmap tdc01_copper00 + verts 5 + -0.05 -0.91 0.15 + -0.05 0.89 0.15 + -0.15 -0.01 -0.12 + -0.05 0.89 -0.4 + -0.05 -0.91 -0.4 + faces 4 + 0 1 2 1 0 1 2 4 + 3 2 1 1 3 2 1 4 + 3 4 2 1 3 4 2 4 + 0 2 4 1 0 2 4 4 + tverts 5 + 0.0004995 0.99975 0 + 0.999501 0.99975 0 + 0.50172 0.75086 0 + 0.999501 0.50025 0 + 0.0004995 0.50025 0 + endnode + node trimesh meshtdc1388 + parent tdc01_g02_03 + position 3.16 3 1.47 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -1 -300 35.5 + bitmap tdc01_wall_uni + verts 24 + -0.01 -0.9 0.96 + -0.01 -0.9 0.41 + -0.01 -1 1.23 + -0.01 -1 -0.52 + -0.01 -0.9 0.08 + -0.01 -0.9 -0.47 + -0.01 1 -0.52 + -0.01 0.9 -0.47 + -0.01 0.9 0.96 + -0.01 1 1.23 + -0.01 0.9 0.41 + -0.01 0.9 0.08 + -0.01 -6.9 0.96 + -0.01 -6.9 0.41 + -0.01 -7 1.23 + -0.01 -7 -0.52 + -0.01 -6.9 0.08 + -0.01 -6.9 -0.47 + -0.01 -5 -0.52 + -0.01 -5.1 -0.47 + -0.01 -5.1 0.96 + -0.01 -5 1.23 + -0.01 -5.1 0.41 + -0.01 -5.1 0.08 + faces 28 + 0 1 2 1 0 1 2 6 + 3 2 4 1 3 2 4 6 + 1 4 2 1 1 4 2 6 + 4 5 3 1 4 5 3 6 + 6 3 7 1 6 3 7 6 + 5 7 3 1 5 7 3 6 + 8 9 10 1 8 9 10 6 + 10 9 11 1 10 9 11 6 + 6 11 9 1 6 11 9 6 + 11 6 7 1 11 6 7 6 + 1 10 4 1 1 10 4 6 + 11 4 10 1 11 4 10 6 + 2 9 0 1 2 9 0 6 + 8 0 9 1 8 0 9 6 + 12 13 14 1 0 1 2 6 + 15 14 16 1 3 2 4 6 + 13 16 14 1 1 4 2 6 + 16 17 15 1 4 5 3 6 + 18 15 19 1 6 3 7 6 + 17 19 15 1 5 7 3 6 + 20 21 22 1 8 9 10 6 + 22 21 23 1 10 9 11 6 + 18 23 21 1 6 11 9 6 + 23 18 19 1 11 6 7 6 + 13 22 16 1 1 10 4 6 + 23 16 22 1 11 4 10 6 + 14 21 12 1 2 9 0 6 + 20 12 21 1 8 0 9 6 + tverts 12 + 0.484462 0.428496 0 + 0.484462 0.268432 0 + 0.509927 0.507073 0 + 0.509927 -0.0022215 0 + 0.484462 0.172394 0 + 0.484462 0.0123298 0 + 0.0006321 -0.0022215 0 + 0.0260969 0.0123298 0 + 0.0260969 0.428496 0 + 0.000632 0.507073 0 + 0.0260969 0.268432 0 + 0.0260969 0.172394 0 + endnode + node trimesh meshtdc1356 + parent tdc01_g02_03 + position -4.93 3 1.1 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 128 0 105.5 + bitmap tdc01_pitwall00 + verts 8 + 0.78 0.66 1.33 + 0.78 -0.66 1.33 + 0.78 0.66 0.78 + 0.78 -0.66 0.78 + 1.78 0.9 0.78 + 1.78 0.9 1.33 + 1.78 -0.9 0.78 + 1.78 -0.9 1.33 + faces 8 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 5 0 2 4 5 6 6 + 0 2 4 2 6 7 4 6 + 6 4 2 4 8 9 10 6 + 2 3 6 4 10 11 8 6 + 7 6 3 2 6 7 4 6 + 3 1 7 2 4 5 6 6 + tverts 12 + 1.88889 0.385988 0 + -0.11111 0.385988 0 + 1.88889 0.0193209 0 + -0.11111 0.0193209 0 + 1 0.0193209 0 + 1 0.385988 0 + -1 0.385988 0 + -1 0.0193209 0 + 1.11111 1 0 + -0.88889 1 0 + -0.88889 0 0 + 1.11111 -4e-07 0 + endnode + node trimesh meshtdc1376 + parent tdc01_g02_03 + position -5 -5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 212.5 50 150 + bitmap tdc01_sandstone + verts 13 + 2 1 0.5 + 2.4 1 0 + 2 1 0 + 2.1 0 0.75 + 2.1 1 0.75 + 2.4 0 0 + 1.85 1 0.75 + 1.85 1 3 + 2.35 1 3 + 1.85 1 2.5 + 2.35 0 3 + 2.1 1 2.5 + 2.1 0 2.5 + faces 9 + 0 1 2 1 0 1 2 5 + 3 1 4 2 3 1 4 5 + 1 3 5 2 1 3 5 5 + 4 1 0 1 4 1 0 5 + 6 4 0 1 6 4 0 5 + 7 8 9 1 7 8 9 5 + 10 11 8 2 10 11 8 5 + 11 10 12 2 11 10 12 5 + 8 11 9 1 8 11 9 5 + tverts 13 + 1.3556 0.707593 0 + 1 0 0 + 1.4227 0 0 + 0.5 0.999796 0 + 1 0.999796 0 + 0.5 0 0 + 1.38388 0.999796 0 + -0.205 0.5 0 + 0 0.5 0 + -0.125 0.999501 0 + 0.5 0.5 0 + 0 0.999501 0 + 0.5 0.999501 0 + endnode + node trimesh meshtdc1375 + parent tdc01_g02_03 + position -5 -5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 197.5 50 162.5 + bitmap tdc01_wall_uni + verts 6 + 2.1 1 0.75 + 1.85 1 0.75 + 2.1 1 2.5 + 1.85 1 2.5 + 2.1 0 0.75 + 2.1 0 2.5 + faces 4 + 0 1 2 1 0 1 2 6 + 3 2 1 1 2 3 0 6 + 4 0 5 2 1 4 5 3 + 2 5 0 2 5 2 1 3 + tverts 6 + 0.418684 0.0491585 0 + 0.383947 0.0491585 0 + 0.383947 0.472464 0 + 0.418684 0.472464 0 + 0.206819 0.0491585 0 + 0.206819 0.472464 0 + endnode + node trimesh mesh22 + parent tdc01_g02_03 + diffuse 0 0 0 + position 2.5 1 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 0 0 0 + specular 0 0 0 + shininess 11 + center 0 0 390 + bitmap twc03_black + verts 4 + -0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + 0.45 0.45 3.9 + faces 2 + 0 1 2 1 0 0 0 1 + 2 3 0 1 0 0 0 1 + tverts 1 + 0 0 0 + endnode + node trimesh meshtdc1377 + parent tdc01_g02_03 + position -5 5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 197.5 -50 162.5 + bitmap tdc01_wall_uni + verts 6 + 1.85 -1 0.75 + 2.1 -1 0.75 + 2.1 -1 2.5 + 1.85 -1 2.5 + 2.1 0 0.75 + 2.1 0 2.5 + faces 4 + 0 1 2 1 0 1 2 6 + 2 3 0 1 2 3 0 6 + 1 4 5 2 1 4 5 3 + 5 2 1 2 5 2 1 3 + tverts 6 + 0.418684 0.0491585 0 + 0.383947 0.0491585 0 + 0.383947 0.472464 0 + 0.418684 0.472464 0 + 0.206819 0.0491585 0 + 0.206819 0.472464 0 + endnode + node trimesh meshtdc0155 + parent tdc01_g02_03 + position 3.15 0 2.75 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -21.5 0 -92.5 + bitmap tdc01_wall_uni + verts 14 + 0 -0.27 -0.05 + -0.43 -0.2 -0.05 + -0.25 -0.2 -1.8 + 0 -0.27 -1.8 + -0.43 0.22 -0.05 + -0.25 0.22 -1.8 + 0 0.29 -0.05 + 0 0.29 -1.8 + 0 -2 -1.8 + 0 -2 -0.05 + 0 -0.5 -0.05 + 0 0.5 -0.05 + 0 2 -1.8 + 0 2 -0.05 + faces 12 + 0 1 2 1 0 1 2 4 + 2 3 0 1 2 3 0 4 + 1 4 5 2 1 4 5 4 + 5 2 1 2 5 2 1 4 + 4 6 7 1 6 7 8 4 + 7 5 4 1 8 9 6 4 + 3 8 9 2 10 11 12 6 + 3 10 0 2 10 13 14 6 + 3 9 10 2 10 12 13 6 + 11 7 6 2 15 16 17 6 + 12 11 13 2 18 15 19 6 + 12 7 11 2 18 16 15 6 + tverts 20 + 0.24992 0.499741 0 + 0.186785 0.499741 0 + 0.186785 0.009946 0 + 0.24992 0.009946 0 + 0.050137 0.499741 0 + 0.050137 0.0099459 0 + 0.494938 0.499741 0 + 0.412032 0.499741 0 + 0.412032 0.009946 0 + 0.494938 0.0099459 0 + -0.21055 0.0082777 0 + 0.27629 0.0082777 0 + 0.27629 0.49512 0 + -0.11753 0.49512 0 + -0.21055 0.49512 0 + 0.574318 0.995312 0 + 0.636095 0.517321 0 + 0.636095 0.995312 0 + 0.158104 0.517321 0 + 0.158104 0.995312 0 + endnode + node trimesh meshtdc4349 + parent tdc01_g02_03 + position 0 0.01 4.04 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 0 0 57 + bitmap tdc01_sandstone + tilefade 0 + verts 16 + -0.32 -0.25 0 + 0.32 -0.25 0 + 0.63 -0.49 1.14 + -0.63 -0.49 1.14 + 0.32 0.25 0 + 0.42 0.13 0.37 + 0.63 0.49 1.14 + 0.58 -0.19 0.96 + -0.32 0.25 0 + -0.63 0.49 1.14 + 0.42 -0.13 0.37 + 0.58 0.19 0.96 + -0.42 0.13 0.37 + -0.58 -0.19 0.96 + -0.42 -0.13 0.37 + -0.58 0.19 0.96 + faces 20 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 1 4 5 2 0 1 4 4 + 6 2 7 2 2 3 5 4 + 4 8 9 1 0 1 2 6 + 9 6 4 1 2 3 0 6 + 10 2 1 2 6 3 0 4 + 7 2 10 2 5 3 6 4 + 6 7 11 2 2 5 7 4 + 1 5 10 2 0 4 6 4 + 5 4 6 2 4 1 2 4 + 11 5 6 2 7 4 2 4 + 8 0 12 2 1 0 4 4 + 3 9 13 2 3 2 5 4 + 3 14 0 2 3 6 0 4 + 3 13 14 2 3 5 6 4 + 13 9 15 2 5 2 7 4 + 12 0 14 2 4 0 6 4 + 8 12 9 2 1 4 2 4 + 12 15 9 2 4 7 2 4 + tverts 8 + 0.245153 0.0004995 0 + 0.754847 0.0004995 0 + 0.9995 0.9995 0 + 0.0004995 0.9995 0 + 0.630027 0.324854 0 + 0.309963 0.840651 0 + 0.368571 0.326838 0 + 0.690586 0.842145 0 + endnode + node trimesh meshtdc4352 + parent tdc01_g02_03 + position -1.48 0.01 3.49 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -86.5 0 40 + bitmap tdc01_sandstone + tilefade 0 + verts 16 + -0.4 0.25 0.12 + -0.4 -0.25 0.12 + -0.84 0.25 -0.11 + -0.84 -0.25 -0.11 + -1.33 -0.36 0.58 + -0.69 -0.36 0.91 + -0.89 -0.13 -0.04 + -1.33 0.36 0.58 + -1.24 -0.19 0.46 + -0.69 0.36 0.91 + -0.44 -0.13 0.23 + -0.64 -0.19 0.79 + -0.64 0.19 0.79 + -0.44 0.13 0.23 + -0.89 0.13 -0.04 + -1.24 0.18 0.46 + faces 22 + 0 1 2 1 0 1 2 2 + 3 2 1 1 3 2 1 2 + 3 1 4 2 4 5 6 5 + 5 4 1 2 7 6 5 5 + 2 3 6 4 4 5 8 4 + 4 7 8 4 7 6 9 4 + 0 2 9 2 4 5 6 6 + 7 9 2 2 7 6 5 6 + 1 0 10 4 4 5 10 3 + 9 5 11 4 7 6 11 3 + 9 11 12 4 7 11 12 3 + 1 10 5 4 4 10 6 3 + 10 0 13 4 10 5 13 3 + 9 12 0 4 7 12 5 3 + 12 13 0 4 12 13 5 3 + 10 11 5 4 10 11 6 3 + 2 6 14 4 4 8 14 4 + 4 8 3 4 7 9 5 4 + 8 7 15 4 9 6 15 4 + 8 6 3 4 9 8 5 4 + 2 14 7 4 4 14 6 4 + 14 15 7 4 14 15 6 4 + tverts 16 + 0.846869 0.846875 0 + 0.846869 0.153125 0 + 0.153119 0.846875 0 + 0.153119 0.153125 0 + 0.846881 0.500002 0 + 0.153131 0.500002 0 + 0.999506 1.499 0 + 0.0005054 1.499 0 + 0.322096 0.60356 0 + 0.23767 1.33156 0 + 0.675304 0.634319 0 + 0.766609 1.34464 0 + 0.239425 1.34167 0 + 0.32249 0.632936 0 + 0.678759 0.599989 0 + 0.757652 1.33153 0 + endnode + node trimesh meshtdc1357 + parent tdc01_g02_03 + position -4 3 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 85 0 162.5 + bitmap tdc01_wall_uni + verts 12 + 0.85 0.9 2.23 + 0.85 0.9 1.68 + 0.85 1 2.5 + 0.85 1 0.75 + 0.85 0.9 1.35 + 0.85 0.9 0.8 + 0.85 -1 0.75 + 0.85 -0.9 0.8 + 0.85 -0.9 2.23 + 0.85 -1 2.5 + 0.85 -0.9 1.68 + 0.85 -0.9 1.35 + faces 14 + 0 1 2 1 0 1 2 6 + 3 2 4 1 3 2 4 6 + 1 4 2 1 1 4 2 6 + 4 5 3 1 4 5 3 6 + 6 3 7 1 6 3 7 6 + 5 7 3 1 5 7 3 6 + 8 9 10 1 8 9 10 6 + 10 9 11 1 10 9 11 6 + 6 11 9 1 6 11 9 6 + 11 6 7 1 11 6 7 6 + 1 10 4 1 1 10 4 6 + 11 4 10 1 11 4 10 6 + 2 9 0 1 2 9 0 6 + 8 0 9 1 8 0 9 6 + tverts 12 + 0.971881 0.430059 0 + 0.971881 0.264811 0 + 0.996682 0.520843 0 + 0.996682 -0.004947 0 + 0.971881 0.175324 0 + 0.971881 0.0100756 0 + 0.500654 -0.004947 0 + 0.525455 0.0100756 0 + 0.525455 0.430059 0 + 0.500654 0.520843 0 + 0.525455 0.264811 0 + 0.525455 0.175324 0 + endnode + node trimesh meshtdc0153 + parent tdc01_g02_03 + position -4.16 0 2.68 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 134.5 0 -98 + bitmap tdc01_sandstone + verts 22 + 1.16 0.27 -1.98 + 1.26 0.2 -1.73 + 1.56 0.26 -2.48 + 1.26 -0.22 -1.73 + 1.56 -0.28 -2.48 + 1.01 -0.29 -1.73 + 1.16 -0.28 -1.98 + 1.16 -0.36 -2.48 + 1.16 0.34 -2.48 + 1.01 0.27 -1.73 + 1.58 0.29 0.02 + 1.68 0.29 0.35 + 1.58 -0.27 0.02 + 1.68 -0.27 0.35 + 1.01 0.5 0.02 + 1.01 0.5 0.52 + 1.01 -0.5 0.52 + 1.01 -0.5 0.02 + 1.01 0.2 0.52 + 1.56 -0.1 0.37 + 1.56 0.1 0.37 + 1.01 -0.2 0.52 + faces 20 + 0 1 2 1 0 1 2 4 + 1 3 4 2 3 4 5 4 + 4 2 1 2 5 6 3 4 + 3 5 6 1 7 8 9 4 + 6 4 3 4 9 10 7 4 + 6 7 4 4 9 11 10 4 + 2 8 0 4 2 12 0 4 + 1 0 9 8 1 0 13 4 + 10 11 12 1 14 15 16 1 + 13 12 11 1 17 16 15 1 + 14 15 10 2 18 19 20 5 + 11 10 15 2 21 20 19 5 + 16 17 13 2 22 23 24 6 + 12 13 17 2 25 24 23 6 + 15 18 11 4 26 27 28 3 + 13 11 19 4 29 28 30 3 + 18 20 11 4 27 31 28 3 + 13 19 16 4 29 30 32 3 + 19 11 20 4 30 28 31 3 + 19 21 16 4 30 33 32 3 + tverts 34 + 0.7767 0.785471 0 + 1.1016 0.954095 0 + 0.1026 1.499 0 + -0.1016 0.771979 0 + -0.1016 0.204979 0 + 0.8974 0.134104 0 + 0.8974 0.842854 0 + -0.1016 0.954095 0 + -0.1016 0.499999 0 + 0.2373 0.756167 0 + 0.8974 1.499 0 + 0.8974 0.763848 0 + 0.1026 0.764377 0 + 1.1016 0.499999 0 + 0.601099 0.2165 0 + -0.0656779 0.2165 0 + 0.601099 0.7835 0 + -0.0656777 0.7835 0 + 0.601099 0.499999 0 + -0.397902 0.499999 0 + 0.601099 1.30531 0 + -0.0656779 1.44098 0 + 1.3979 0.499999 0 + 0.398901 0.499999 0 + 1.06568 1.44098 0 + 0.398901 1.30531 0 + 0.9995 0.499999 0 + 0.68777 0.499999 0 + 0.7835 1.44098 0 + 0.2165 1.44098 0 + 0.324764 1.32902 0 + 0.580862 1.32951 0 + 0.0004995 0.499999 0 + 0.316927 0.499999 0 + endnode + node trimesh meshtdc0161 + parent tdc01_g02_03 + position -3.2 3 1.55 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 10 0 -27.5 + bitmap tdc01_copper00 + verts 5 + 0.05 0.9 0 + 0.05 -0.9 0 + 0.15 0 -0.27 + 0.05 -0.9 -0.55 + 0.05 0.9 -0.55 + faces 4 + 0 1 2 1 0 1 2 4 + 3 2 1 1 3 2 1 4 + 3 4 2 1 3 4 2 4 + 0 2 4 1 0 2 4 4 + tverts 5 + 0.0004995 0.99975 0 + 0.999501 0.99975 0 + 0.50172 0.75086 0 + 0.999501 0.50025 0 + 0.0004995 0.50025 0 + endnode + node trimesh meshtdc4626 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + position -0.41 0.01 3.49 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 1 + center 0 0 0 + bitmap tdc01_black8_00 + tilefade 0 + verts 8 + 3.22 0.36 0.58 + 2.58 0.36 0.91 + 2.58 -0.36 0.91 + 3.22 -0.36 0.58 + -2.4 -0.36 0.58 + -1.76 -0.36 0.91 + -1.76 0.36 0.91 + -2.4 0.36 0.58 + faces 4 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 5 6 1 4 5 6 1 + 6 7 4 1 6 7 4 1 + tverts 8 + 1.306 0.647 0 + 0.665 0.647 0 + 0.665 -0.073 0 + 1.306 -0.073 0 + -0.305 -0.073 0 + 0.335 -0.073 0 + 0.335 0.647 0 + -0.305 0.647 0 + endnode + node trimesh meshtdc0152 + parent tdc01_g02_03 + position -3.19 0 2.28 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 25.5 0 -45.5 + bitmap tdc01_wall_uni + verts 14 + 0.04 0.27 0.42 + 0.47 0.2 0.42 + 0.29 0.2 -1.33 + 0.04 0.27 -1.33 + 0.47 -0.22 0.42 + 0.29 -0.22 -1.33 + 0.04 -0.29 0.42 + 0.04 -0.29 -1.33 + 0.04 2 -1.33 + 0.04 2 0.42 + 0.04 0.5 0.42 + 0.04 -0.5 0.42 + 0.04 -2 -1.33 + 0.04 -2 0.42 + faces 12 + 0 1 2 1 0 1 2 4 + 2 3 0 1 2 3 0 4 + 1 4 5 2 1 4 5 4 + 5 2 1 2 5 2 1 4 + 4 6 7 1 6 7 8 4 + 7 5 4 1 8 9 6 4 + 3 8 9 2 10 11 12 6 + 3 10 0 2 10 13 14 6 + 3 9 10 2 10 12 13 6 + 11 7 6 2 15 16 17 6 + 12 11 13 2 18 15 19 6 + 12 7 11 2 18 16 15 6 + tverts 20 + 0.24992 0.499741 0 + 0.186785 0.499741 0 + 0.186785 0.009946 0 + 0.24992 0.009946 0 + 0.050137 0.499741 0 + 0.050137 0.0099459 0 + 0.494938 0.499741 0 + 0.412032 0.499741 0 + 0.412032 0.009946 0 + 0.494938 0.0099459 0 + 0.706268 0.501031 0 + 1.19311 0.501031 0 + 1.19311 0.987874 0 + 0.781015 0.987874 0 + 0.706268 0.987874 0 + 0.501816 1.03727 0 + 0.575852 0.511479 0 + 0.575852 1.03727 0 + 0.0500617 0.511479 0 + 0.0500616 1.03727 0 + endnode + node trimesh meshtdc1369 + parent tdc01_g02_03 + position -4 -3 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 85 0 162.5 + bitmap tdc01_wall_uni + verts 12 + 0.85 0.9 2.23 + 0.85 0.9 1.68 + 0.85 1 2.5 + 0.85 1 0.75 + 0.85 0.9 1.35 + 0.85 0.9 0.8 + 0.85 -1 0.75 + 0.85 -0.9 0.8 + 0.85 -0.9 2.23 + 0.85 -1 2.5 + 0.85 -0.9 1.68 + 0.85 -0.9 1.35 + faces 14 + 0 1 2 1 0 1 2 6 + 3 2 4 1 3 2 4 6 + 1 4 2 1 1 4 2 6 + 4 5 3 1 4 5 3 6 + 6 3 7 1 6 3 7 6 + 5 7 3 1 5 7 3 6 + 8 9 10 1 8 9 10 6 + 10 9 11 1 10 9 11 6 + 6 11 9 1 6 11 9 6 + 11 6 7 1 11 6 7 6 + 1 10 4 1 1 10 4 6 + 11 4 10 1 11 4 10 6 + 2 9 0 1 2 9 0 6 + 8 0 9 1 8 0 9 6 + tverts 12 + 0.971881 0.430059 0 + 0.971881 0.264811 0 + 0.996682 0.520843 0 + 0.996682 -0.004947 0 + 0.971881 0.175324 0 + 0.971881 0.0100756 0 + 0.500654 -0.004947 0 + 0.525455 0.0100756 0 + 0.525455 0.430059 0 + 0.500654 0.520843 0 + 0.525455 0.264811 0 + 0.525455 0.175324 0 + endnode + node trimesh meshtdc0160 + parent tdc01_g02_03 + position -3.2 -3 2.43 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 10 0 -27.5 + bitmap tdc01_copper00 + verts 5 + 0.05 0.9 0 + 0.05 -0.9 0 + 0.15 0 -0.27 + 0.05 -0.9 -0.55 + 0.05 0.9 -0.55 + faces 4 + 0 1 2 1 0 1 2 4 + 3 2 1 1 3 2 1 4 + 3 4 2 1 3 4 2 4 + 0 2 4 1 0 2 4 4 + tverts 5 + 0.0004996 0.49975 0 + 0.9995 0.49975 0 + 0.50172 0.25086 0 + 0.9995 0.0002497 0 + 0.0004996 0.0002498 0 + endnode + node trimesh meshtdc4364 + parent tdc01_g02_03 + position 5.01 -3 1.7 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -191 0 1.5 + bitmap tdc01_copper00 + verts 10 + -1.86 -0.9 -0.15 + -1.86 0.9 -0.15 + -1.96 0 -0.42 + -1.86 0.9 -0.7 + -1.86 -0.9 -0.7 + -1.86 -0.9 0.73 + -1.86 0.9 0.73 + -1.96 0 0.46 + -1.86 0.9 0.18 + -1.86 -0.9 0.18 + faces 8 + 0 1 2 1 0 1 2 4 + 3 2 1 1 3 2 1 4 + 3 4 2 1 3 4 2 4 + 0 2 4 1 0 2 4 4 + 5 6 7 1 5 6 7 4 + 8 7 6 1 8 7 6 4 + 8 9 7 1 8 9 7 4 + 5 7 9 1 5 7 9 4 + tverts 10 + 0.0004995 0.99975 0 + 0.999501 0.99975 0 + 0.50172 0.75086 0 + 0.999501 0.50025 0 + 0.0004995 0.50025 0 + 0.0004996 0.49975 0 + 0.9995 0.49975 0 + 0.50172 0.25086 0 + 0.9995 0.0002497 0 + 0.0004996 0.0002498 0 + endnode + node trimesh meshtdc1371 + parent tdc01_g02_03 + position -4.93 -3 0.22 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 128 0 105.5 + bitmap tdc01_pitwall00 + verts 8 + 0.78 0.66 1.33 + 0.78 -0.66 1.33 + 0.78 0.66 0.78 + 0.78 -0.66 0.78 + 1.78 0.9 0.78 + 1.78 0.9 1.33 + 1.78 -0.9 0.78 + 1.78 -0.9 1.33 + faces 8 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 5 0 2 4 5 6 6 + 0 2 4 2 6 7 4 6 + 6 4 2 4 8 9 10 6 + 2 3 6 4 10 11 8 6 + 7 6 3 2 6 7 4 6 + 3 1 7 2 4 5 6 6 + tverts 12 + 1.88889 0.385988 0 + -0.11111 0.385988 0 + 1.88889 0.0193209 0 + -0.11111 0.0193209 0 + 1 0.0193209 0 + 1 0.385988 0 + -1 0.385988 0 + -1 0.0193209 0 + 1.11111 1 0 + -0.88889 1 0 + -0.88889 0 0 + 1.11111 -4e-07 0 + endnode + node trimesh object251 + parent tdc01_g02_03 + position 3.16 3 1.47 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 1 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -205 -292 179.5 + bitmap tdc01_alpha + tilefade 0 + verts 7 + -0.51 -2.92 1.4 + -2.31 -2.92 1.4 + -0.51 -2.92 2.32 + -2.07 -2.92 2.36 + -3.2 -2.92 0.97 + -3.59 -2.92 2.56 + -2.81 -2.92 2.62 + faces 6 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 5 6 1 4 5 6 6 + 1 0 2 2 1 0 2 6 + 2 3 1 2 2 3 1 6 + 5 4 6 2 5 4 6 6 + tverts 7 + 0.740965 0.0415624 0 + 0.0577326 0.041563 0 + 0.740965 0.294186 0 + 0.0577326 0.294186 0 + 0.229814 -0.0164086 0 + 0.0478648 0.271032 0 + 0.405461 0.279693 0 + endnode + node trimesh meshtdc1360 + parent tdc01_g02_03 + position -4 1 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 85 -100 275 + bitmap tdc01_trim00 + verts 12 + 0.85 1 3 + 0.85 -0.5 3 + 0.85 -0.5 2.5 + 0.85 1 2.5 + 0.85 3 3 + 0.85 3 2.5 + 0.85 -1.5 3 + 0.85 -3 3 + 0.85 -3 2.5 + 0.85 -1.5 2.5 + 0.85 -5 3 + 0.85 -5 2.5 + faces 8 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 4 0 3 1 0 1 2 5 + 3 5 4 1 2 3 0 5 + 6 7 8 1 0 1 2 5 + 8 9 6 1 2 3 0 5 + 7 10 11 1 0 1 2 5 + 11 8 7 1 2 3 0 5 + tverts 4 + 0.0004995 0.76 0 + 0.999501 0.76 0 + 0.999501 1 0 + 0.0004995 1 0 + endnode + node trimesh meshtdc1372 + parent tdc01_g02_03 + position -4 -3 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 92.5 300 37.5 + bitmap tdc01_trim00 + verts 20 + 1 0 0 + 1 2 0 + 1 1 0.5 + 1 -1 0.5 + 1 -1 0 + 0.85 1 0.75 + 0.85 -1 0.75 + 1 2.64 0 + 1 2.72 0.5 + 0.85 2.71 0.75 + 1 4 0 + 1 6 0 + 1 5 0.5 + 1 3.27 0.5 + 1 3.34 0 + 0.85 5 0.75 + 0.85 3.27 0.75 + 1 7 0 + 1 7 0.5 + 0.85 7 0.75 + faces 18 + 0 1 2 1 0 1 2 5 + 0 3 4 1 0 3 4 5 + 3 2 5 2 3 2 5 5 + 5 6 3 2 5 6 3 5 + 1 7 8 1 7 8 2 5 + 8 2 1 1 2 3 7 5 + 2 8 9 2 3 2 5 5 + 9 5 2 2 5 6 3 5 + 10 11 12 1 9 10 2 5 + 10 13 14 1 9 3 11 5 + 13 12 15 2 3 2 5 5 + 15 16 13 2 5 6 3 5 + 11 17 18 1 12 13 2 5 + 18 12 11 1 2 3 12 5 + 12 18 19 2 3 2 5 5 + 19 15 12 2 5 6 3 5 + 3 0 2 1 3 0 2 5 + 13 10 12 1 3 9 2 5 + tverts 14 + 0.479835 0.116442 0 + 1.52447 0.116442 0 + 1.00147 0.75 0 + 0.0024731 0.75 0 + -0.0271302 0.116442 0 + 0.999501 0.999501 0 + 0.0004995 0.999501 0 + 0.608354 0.116442 0 + 0.9324 0.116442 0 + 0.512878 0.116442 0 + 1.46526 0.116442 0 + 0.0123408 0.116442 0 + 0.505729 0.116442 0 + 0.928452 0.116442 0 + endnode + node trimesh plane25 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + position 2.5 1 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 11 + center 0 0 195 + bitmap tdc01_trim00 + verts 20 + 0.4 0.4 0 + -0.4 0.4 0 + -0.4 0.4 0.2 + 0.4 0.4 0.2 + -0.4 -0.4 0 + -0.4 -0.4 0.2 + 0.4 -0.4 0 + 0.4 -0.4 0.2 + -0.25 0.25 0.6 + 0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + -0.25 0.25 3 + 0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + -0.45 0.45 3.9 + 0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 4 5 2 4 5 6 1 + 5 2 1 2 6 7 4 1 + 4 6 7 1 8 9 10 1 + 7 5 4 1 10 11 8 1 + 6 0 3 2 12 13 14 1 + 3 7 6 2 14 15 12 1 + 3 2 8 4 3 2 16 1 + 8 9 3 4 16 17 3 1 + 2 5 10 8 7 6 18 1 + 10 8 2 8 18 19 7 1 + 5 7 11 4 11 10 20 1 + 11 10 5 4 20 21 11 1 + 7 3 9 8 15 14 22 1 + 9 11 7 8 22 23 15 1 + 9 8 12 1 24 25 26 1 + 12 13 9 1 26 27 24 1 + 8 10 14 2 28 29 30 1 + 14 12 8 2 30 31 28 1 + 10 11 15 1 32 33 34 1 + 15 14 10 1 34 35 32 1 + 11 9 13 2 36 37 38 1 + 13 15 11 2 38 39 36 1 + 13 12 16 4 40 41 42 1 + 16 17 13 4 42 43 40 1 + 12 14 18 8 44 45 46 1 + 18 16 12 8 46 47 44 1 + 14 15 19 4 48 49 50 1 + 19 18 14 4 50 51 48 1 + 15 13 17 8 52 53 54 1 + 17 19 15 8 54 55 52 1 + tverts 56 + 0.216757 0.0271105 0 + 0.536757 0.0271105 0 + 0.536757 0.107111 0 + 0.216757 0.107111 0 + 0.21451 0.0271105 0 + 0.53451 0.0271105 0 + 0.53451 0.107111 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.783243 0.0271105 0 + 0.783243 0.107111 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.476757 0.26711 0 + 0.276757 0.26711 0 + 0.47451 0.26711 0 + 0.27451 0.26711 0 + 0.723243 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.273966 0.288193 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.273966 1.64023 0 + 0.278974 0.288193 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.726033 0.288193 0 + 0.726033 1.64023 0 + 0.526033 1.64023 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.268677 0.744214 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.188677 1.0796 0 + 0.523241 0.744214 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.731323 0.744214 0 + 0.811323 1.0796 0 + 0.451322 1.0796 0 + endnode + node trimesh meshtdc4363 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + position 4 0.69 3.17 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 1 + center -400 -69 3 + bitmap tdc01_black8_00 + verts 28 + 1 4.31 0.03 + -0.85 -0.19 0.03 + 1 -5.69 0.03 + -0.85 1.31 0.03 + -0.85 3.31 0.03 + -1.35 4.31 0.03 + -1.35 3.31 0.03 + -0.85 -1.19 0.03 + -0.85 -2.69 0.03 + -0.85 -4.69 0.03 + -1.35 -5.69 0.03 + -1.35 -4.69 0.03 + -0.85 -0.89 0.03 + -7.15 -0.19 0.03 + -7.15 1.31 0.03 + -9 4.31 0.03 + -7.15 3.31 0.03 + -9 -5.69 0.03 + -6.65 4.31 0.03 + -6.65 3.31 0.03 + -7.15 -2.69 0.03 + -7.15 -1.19 0.03 + -7.15 -4.69 0.03 + -6.65 -5.69 0.03 + -6.65 -4.69 0.03 + -7.15 -0.49 0.03 + -0.85 -0.49 0.03 + -7.15 -0.89 0.03 + faces 24 + 0 1 2 1 0 1 2 1 + 0 3 1 1 0 3 1 1 + 3 0 4 1 3 0 4 1 + 5 4 0 1 5 4 0 1 + 5 6 4 1 5 6 4 1 + 7 8 2 1 7 8 2 1 + 8 9 2 1 8 9 2 1 + 9 10 2 1 9 10 2 1 + 11 10 9 1 11 10 9 1 + 12 7 2 1 12 7 2 1 + 13 14 15 1 13 14 15 1 + 14 16 15 1 14 16 15 1 + 15 17 13 1 15 17 13 1 + 16 18 15 1 16 18 15 1 + 19 18 16 1 19 18 16 1 + 20 21 17 1 20 21 17 1 + 22 20 17 1 22 20 17 1 + 23 22 17 1 23 22 17 1 + 23 24 22 1 23 24 22 1 + 25 13 17 1 25 13 17 1 + 1 26 2 1 1 26 2 1 + 26 12 2 1 26 12 2 1 + 27 25 17 1 27 25 17 1 + 21 27 17 1 21 27 17 1 + tverts 28 + 1.5 5.279 0 + -0.35 0.775 0 + 1.5 -4.721 0 + -0.35 2.279 0 + -0.35 4.279 0 + -0.85 5.279 0 + -0.85 4.279 0 + -0.35 -0.218 0 + -0.35 -1.721 0 + -0.35 -3.721 0 + -0.85 -4.721 0 + -0.85 -3.721 0 + -0.35 0.103 0 + 1.35 0.775 0 + 1.35 2.279 0 + -0.5 5.279 0 + 1.35 4.279 0 + -0.5 -4.721 0 + 1.85 5.279 0 + 1.85 4.279 0 + 1.35 -1.721 0 + 1.35 -0.218 0 + 1.35 -3.721 0 + 1.85 -4.721 0 + 1.85 -3.721 0 + 1.35 0.472 0 + -0.35 0.472 0 + 1.35 0.103 0 + endnode + node trimesh meshtdc1383 + parent tdc01_g02_03 + position 4 1 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -92.5 -100 37.5 + bitmap tdc01_trim00 + verts 20 + -1 0 0 + -1 -0.64 0 + -1 -0.71 0.5 + -1 1 0.5 + -1 2 0 + -0.85 -0.71 0.75 + -0.85 1 0.75 + -1 3 0.5 + -1 3 0 + -0.85 3 0.75 + -1 -1.27 0.5 + -1 -2 0 + -1 -3 0.5 + -1 -1.34 0 + -0.85 -3 0.75 + -0.85 -1.27 0.75 + -1 -4 0 + -1 -5 0 + -1 -5 0.5 + -0.85 -5 0.75 + faces 18 + 0 1 2 1 0 1 2 5 + 0 3 4 1 0 3 4 5 + 3 2 5 2 3 2 5 5 + 5 6 3 2 5 6 3 5 + 7 4 3 1 3 7 2 5 + 4 7 8 1 7 3 8 5 + 7 3 6 2 3 2 5 5 + 6 9 7 2 5 6 3 5 + 10 11 12 1 3 9 2 5 + 11 10 13 1 9 3 10 5 + 10 12 14 2 3 2 5 5 + 14 15 10 2 5 6 3 5 + 16 17 18 1 11 1 2 5 + 16 12 11 1 11 3 12 5 + 12 18 19 2 3 2 5 5 + 19 14 12 2 5 6 3 5 + 12 16 18 1 3 11 2 5 + 3 0 2 1 3 0 2 5 + tverts 13 + 0.580238 0.135765 0 + 0.999501 0.135765 0 + 1.00147 0.75 0 + 0.0024731 0.75 0 + -0.619197 0.135765 0 + 0.999501 0.999501 0 + 0.0004995 0.999501 0 + 0.502165 0.135765 0 + 0.0360236 0.135765 0 + 0.442958 0.135765 0 + 0.0754946 0.135765 0 + 0.511774 0.135765 0 + -0.488942 0.135765 0 + endnode + node trimesh box11 + parent tdc01_g02_03 + position -2.47 -1.73 0.18 + orientation 0 0 0 0 + wirecolor 0.337255 0.337255 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 26 + center 0 0 37.5 + bitmap tdc01_trim00 + verts 16 + 0.43 1.18 0.1 + -0.43 1.18 0.1 + 0.42 -1.18 0.1 + -0.43 -1.18 0.1 + 0.43 1.18 0.65 + -0.43 1.18 0.65 + 0.42 -1.18 0.65 + -0.43 -1.18 0.65 + 0.35 1.1 0.65 + -0.35 1.1 0.65 + 0.36 -1.11 0.65 + -0.36 -1.1 0.65 + 0.35 1.1 0.15 + -0.35 1.1 0.15 + 0.36 -1.11 0.15 + -0.36 -1.1 0.15 + faces 24 + 0 1 5 0 16 17 18 1 + 5 4 0 0 18 19 16 1 + 1 3 7 0 1 20 21 1 + 7 5 1 0 21 22 1 1 + 3 2 6 0 3 23 24 1 + 6 7 3 0 24 25 3 1 + 2 0 4 0 2 0 26 1 + 4 6 2 0 26 27 2 1 + 4 5 9 0 4 5 28 1 + 9 8 4 0 28 29 4 1 + 5 7 11 0 5 7 30 1 + 11 9 5 0 30 28 5 1 + 7 6 10 0 7 6 31 1 + 10 11 7 0 31 30 7 1 + 6 4 8 0 6 4 29 1 + 8 10 6 0 29 31 6 1 + 11 10 14 0 32 33 34 1 + 14 15 11 0 34 35 32 1 + 10 8 12 0 10 36 37 1 + 12 14 10 0 37 14 10 1 + 8 9 13 0 8 38 39 1 + 13 12 8 0 39 12 8 1 + 9 11 15 0 9 11 15 1 + 15 13 9 0 15 13 9 1 + tverts 40 + 1.61582 0.00234112 0 + -0.61582 0.00234112 0 + -1.21335 0.00234112 0 + -0.257022 0.00234112 0 + -0.032979 -0.205273 0 + 1.25702 -0.205273 0 + -0.032978 0.737783 0 + 1.25702 0.737783 0 + 0.92048 0.84765 0 + 1.52591 0.84765 0 + 2.12344 0.84765 0 + -1.12344 0.84765 0 + 0.92048 0.0791874 0 + 1.52591 0.0791874 0 + 2.12344 0.0791874 0 + -1.12344 0.0791874 0 + -0.032979 0.00234112 0 + 1.25702 0.00234112 0 + 1.25702 0.84765 0 + -0.032979 0.84765 0 + 2.21335 0.00234112 0 + 2.21335 0.84765 0 + -0.61582 0.84765 0 + 1.03298 0.00234112 0 + 1.03298 0.84765 0 + -0.257022 0.84765 0 + 1.61582 0.84765 0 + -1.21335 0.84765 0 + 1.14452 -0.175303 0 + 0.07952 -0.175303 0 + 1.14452 0.707813 0 + 0.07952 0.707813 0 + 1.14452 0.84765 0 + 0.07952 0.84765 0 + 0.07952 0.0791874 0 + 1.14452 0.0791874 0 + -0.52591 0.84765 0 + -0.52591 0.0791874 0 + -0.144521 0.84765 0 + -0.144521 0.0791874 0 + endnode + node trimesh box12 + parent tdc01_g02_03 + position -2.47 -1.73 0.18 + orientation 0 0 0 0 + wirecolor 0.337255 0.337255 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 26 + center -0.5 0 7.5 + bitmap tdc01_stone00 + verts 12 + 0.5 1.25 0 + -0.5 1.25 0 + 0.49 -1.25 0 + -0.51 -1.25 0 + 0.43 1.18 0.1 + -0.43 1.18 0.1 + 0.42 -1.18 0.1 + -0.43 -1.18 0.1 + 0.35 1.1 0.15 + -0.35 1.1 0.15 + 0.36 -1.11 0.15 + -0.36 -1.1 0.15 + faces 10 + 0 1 5 8 0 1 5 5 + 5 4 0 8 5 4 0 5 + 1 3 7 16 1 3 7 4 + 7 5 1 16 7 5 1 4 + 3 2 6 32 3 2 6 6 + 6 7 3 32 6 7 3 6 + 2 0 4 64 2 0 4 3 + 4 6 2 64 4 6 2 3 + 11 10 8 0 11 10 8 1 + 11 8 9 0 11 8 9 1 + tverts 12 + -0.137979 -0.194585 0 + 1.36202 -0.194585 0 + -0.137978 1.80342 0 + 1.36202 1.80342 0 + -0.032979 -0.138641 0 + 1.25702 -0.138641 0 + -0.032978 1.74747 0 + 1.25702 1.74747 0 + 0.07952 -0.0787013 0 + 1.14452 -0.0787014 0 + 0.07952 1.68753 0 + 1.14452 1.68753 0 + endnode + node trimesh lid03 + parent tdc01_g02_03 + position -1.85 -1.61 0.65 + orientation 0 0 0 0 + wirecolor 0.337255 0.337255 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 26 + center -4 0.5 0 + bitmap tdc01_stone00 + verts 13 + -0.1 0.01 -0.04 + 0.17 1.25 -0.47 + -0.17 1.26 0.47 + 0.16 -1.25 -0.47 + -0.18 -1.24 0.47 + 0.18 1.18 -0.38 + -0.11 1.18 0.41 + 0.19 -1.17 -0.38 + -0.11 -1.17 0.41 + -0.26 -1.13 0.39 + 0.05 -1.14 -0.47 + 0.05 1.16 -0.47 + -0.27 1.14 0.39 + faces 22 + 5 6 8 4 5 6 8 1 + 8 7 5 4 8 7 5 1 + 2 1 11 0 2 1 11 1 + 4 2 9 0 4 2 9 1 + 3 4 9 0 3 4 9 1 + 1 3 10 0 1 3 10 1 + 1 2 6 0 1 2 6 1 + 6 5 1 0 6 5 1 1 + 2 4 8 0 2 4 8 1 + 8 6 2 0 8 6 2 1 + 4 3 7 0 4 3 7 1 + 7 8 4 0 7 8 4 1 + 3 1 5 0 3 1 5 1 + 5 7 3 0 5 7 3 1 + 9 2 12 0 9 2 12 1 + 3 9 10 0 3 9 10 1 + 10 9 0 0 10 9 0 1 + 1 10 11 0 1 10 11 1 + 11 10 0 0 11 10 0 1 + 2 11 12 0 2 11 12 1 + 12 11 0 0 12 11 0 1 + 9 12 0 0 9 12 0 1 + tverts 13 + 0.5 0.24935 0 + -0.74875 0.64895 0 + -0.748751 -0.150247 0 + 1.74875 0.64895 0 + 1.74875 -0.150248 0 + -0.673825 0.58901 0 + -0.673825 -0.090307 0 + 1.67383 0.58901 0 + 1.67383 -0.090308 0 + 1.63091 -0.11254 0 + 1.65034 0.61746 0 + -0.645298 0.61585 0 + -0.635887 -0.114131 0 + endnode + node trimesh plane26 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + position -2.52 -3.5 0.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + tilefade 0 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 11 + center 0 0 195 + bitmap tdc01_trim00 + verts 20 + 0.4 0.4 0 + -0.4 0.4 0 + -0.4 0.4 0.2 + 0.4 0.4 0.2 + -0.4 -0.4 0 + -0.4 -0.4 0.2 + 0.4 -0.4 0 + 0.4 -0.4 0.2 + -0.25 0.25 0.6 + 0.25 0.25 0.6 + -0.25 -0.25 0.6 + 0.25 -0.25 0.6 + -0.25 0.25 3 + 0.25 0.25 3 + -0.25 -0.25 3 + 0.25 -0.25 3 + -0.45 0.45 3.9 + 0.45 0.45 3.9 + -0.45 -0.45 3.9 + 0.45 -0.45 3.9 + faces 32 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 4 5 2 4 5 6 1 + 5 2 1 2 6 7 4 1 + 4 6 7 1 8 9 10 1 + 7 5 4 1 10 11 8 1 + 6 0 3 2 12 13 14 1 + 3 7 6 2 14 15 12 1 + 3 2 8 4 3 2 16 1 + 8 9 3 4 16 17 3 1 + 2 5 10 8 7 6 18 1 + 10 8 2 8 18 19 7 1 + 5 7 11 4 11 10 20 1 + 11 10 5 4 20 21 11 1 + 7 3 9 8 15 14 22 1 + 9 11 7 8 22 23 15 1 + 9 8 12 1 24 25 26 1 + 12 13 9 1 26 27 24 1 + 8 10 14 2 28 29 30 1 + 14 12 8 2 30 31 28 1 + 10 11 15 1 32 33 34 1 + 15 14 10 1 34 35 32 1 + 11 9 13 2 36 37 38 1 + 13 15 11 2 38 39 36 1 + 13 12 16 4 40 41 42 1 + 16 17 13 4 42 43 40 1 + 12 14 18 8 44 45 46 1 + 18 16 12 8 46 47 44 1 + 14 15 19 4 48 49 50 1 + 19 18 14 4 50 51 48 1 + 15 13 17 8 52 53 54 1 + 17 19 15 8 54 55 52 1 + tverts 56 + 0.216757 0.0271105 0 + 0.536757 0.0271105 0 + 0.536757 0.107111 0 + 0.216757 0.107111 0 + 0.21451 0.0271105 0 + 0.53451 0.0271105 0 + 0.53451 0.107111 0 + 0.21451 0.107111 0 + 0.463243 0.0271105 0 + 0.783243 0.0271105 0 + 0.783243 0.107111 0 + 0.463243 0.107111 0 + 0.46549 0.0271105 0 + 0.78549 0.0271105 0 + 0.78549 0.107111 0 + 0.46549 0.107111 0 + 0.476757 0.26711 0 + 0.276757 0.26711 0 + 0.47451 0.26711 0 + 0.27451 0.26711 0 + 0.723243 0.26711 0 + 0.523243 0.26711 0 + 0.72549 0.26711 0 + 0.52549 0.26711 0 + 0.521026 0.288193 0 + 0.721026 0.288193 0 + 0.721026 1.64023 0 + 0.521026 1.64023 0 + 0.273966 0.288193 0 + 0.473967 0.288193 0 + 0.473967 1.64023 0 + 0.273966 1.64023 0 + 0.278974 0.288193 0 + 0.478974 0.288193 0 + 0.478974 1.64023 0 + 0.278974 1.64023 0 + 0.526033 0.288193 0 + 0.726033 0.288193 0 + 0.726033 1.64023 0 + 0.526033 1.64023 0 + 0.276759 0.744214 0 + 0.476759 0.744214 0 + 0.556759 1.0796 0 + 0.196759 1.0796 0 + 0.268677 0.744214 0 + 0.468677 0.744214 0 + 0.548677 1.0796 0 + 0.188677 1.0796 0 + 0.523241 0.744214 0 + 0.723241 0.744214 0 + 0.803241 1.0796 0 + 0.443241 1.0796 0 + 0.531322 0.744214 0 + 0.731323 0.744214 0 + 0.811323 1.0796 0 + 0.451322 1.0796 0 + endnode + node trimesh sin005 + parent tdc01_g02_03 + position 0 0.15 3.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -2 0 253.5 + bitmap tdc01_trim00 + tilefade 0 + verts 16 + -0.02 0 1.06 + -1.59 0 3.29 + -1.82 0 3.2 + -1.82 0 1.42 + -1.61 0 1.27 + -1.59 0 1.06 + 1.13 0 3.68 + 0.62 0 3.93 + 0.01 0 4.01 + -0.61 0 3.94 + -1.14 0 3.69 + 1.55 0 1.06 + 1.57 0 1.27 + 1.78 0 1.42 + 1.78 0 3.2 + 1.55 0 3.29 + faces 14 + 3 2 14 0 0 1 2 1 + 14 13 12 0 2 3 4 1 + 12 0 5 0 4 5 6 1 + 4 3 14 0 7 0 2 1 + 14 12 5 0 2 4 6 1 + 14 5 4 0 2 6 7 1 + 12 11 0 0 4 8 5 1 + 15 14 2 0 9 2 1 1 + 15 2 1 0 9 1 10 1 + 6 15 1 0 11 9 10 1 + 6 1 10 0 11 10 12 1 + 6 10 9 0 11 12 13 1 + 6 9 8 0 11 13 14 1 + 6 8 7 0 11 14 15 1 + tverts 16 + 1.02835 0.567883 0 + 1.02835 0.0458278 0 + -0.0274931 0.0458278 0 + -0.0274931 0.567883 0 + 0.0340977 0.611877 0 + 0.500428 0.737991 0 + 0.960892 0.673467 0 + 0.966758 0.611877 0 + 0.0399635 0.673467 0 + 0.0399635 0.0194317 0 + 0.960892 0.0194317 0 + 0.163145 -0.0949512 0 + 0.828912 -0.0978841 0 + 0.673469 -0.171206 0 + 0.491629 -0.191737 0 + 0.312723 -0.168274 0 + endnode + node trimesh sin4 + parent tdc01_g02_03 + position 0 -0.15 3.2 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 2 0 253.5 + bitmap tdc01_trim00 + tilefade 0 + verts 16 + 0.02 0 1.06 + 1.59 0 3.29 + 1.82 0 3.2 + 1.82 0 1.42 + 1.61 0 1.27 + 1.59 0 1.06 + -1.13 0 3.68 + -0.62 0 3.93 + -0.01 0 4.01 + 0.61 0 3.94 + 1.14 0 3.69 + -1.55 0 1.06 + -1.57 0 1.27 + -1.78 0 1.42 + -1.78 0 3.2 + -1.55 0 3.29 + faces 14 + 3 2 14 0 0 1 2 1 + 14 13 12 0 2 3 4 1 + 12 0 5 0 4 5 6 1 + 4 3 14 0 7 0 2 1 + 14 12 5 0 2 4 6 1 + 14 5 4 0 2 6 7 1 + 12 11 0 0 4 8 5 1 + 15 14 2 0 9 2 1 1 + 15 2 1 0 9 1 10 1 + 6 15 1 0 11 9 10 1 + 6 1 10 0 11 10 12 1 + 6 10 9 0 11 12 13 1 + 6 9 8 0 11 13 14 1 + 6 8 7 0 11 14 15 1 + tverts 16 + 1.02835 0.567883 0 + 1.02835 0.0458278 0 + -0.0274931 0.0458278 0 + -0.0274931 0.567883 0 + 0.0340977 0.611877 0 + 0.500428 0.737991 0 + 0.960892 0.673467 0 + 0.966758 0.611877 0 + 0.0399635 0.673467 0 + 0.0399635 0.0194317 0 + 0.960892 0.0194317 0 + 0.163145 -0.0949512 0 + 0.828912 -0.0978841 0 + 0.673469 -0.171206 0 + 0.491629 -0.191737 0 + 0.312723 -0.168274 0 + endnode + node trimesh object05 + parent tdc01_g02_03 + position -2.15 -4.91 -0.75 + orientation 0 0 0 0 + wirecolor 0.694118 0.109804 0.584314 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 215.5 491 759.5 + bitmap tdc01_flrcrack + tilefade 0 + verts 14 + 0.57 9.98 7.23 + 1.03 9.98 7.65 + 1.56 9.98 7.89 + 2.15 9.98 7.96 + 2.77 9.98 7.88 + 3.3 9.98 7.63 + 3.74 9.98 7.22 + 0.58 -0.16 7.23 + 1.03 -0.16 7.64 + 1.55 -0.16 7.89 + 2.14 -0.16 7.97 + 2.75 -0.16 7.89 + 3.27 -0.16 7.64 + 3.71 -0.16 7.22 + faces 12 + 0 1 8 1 0 1 11 1 + 0 8 7 1 0 11 10 1 + 1 2 9 2 2 3 13 1 + 1 9 8 2 2 13 12 1 + 2 3 10 2 3 4 14 1 + 2 10 9 2 3 14 13 1 + 3 4 11 2 5 6 16 1 + 3 11 10 2 5 16 15 1 + 4 5 12 2 6 7 17 1 + 4 12 11 2 6 17 16 1 + 5 6 13 2 8 9 19 1 + 5 13 12 2 8 19 18 1 + tverts 20 + 0 0 0 + 0.111284 0 0 + 0.22205 0 0 + 0.333333 0 0 + 0.444617 0 0 + 0.555383 0 0 + 0.666667 0 0 + 0.77795 0 0 + 0.888716 0 0 + 1 0 0 + 0 1 0 + 0.111284 1 0 + 0.22205 1 0 + 0.333333 1 0 + 0.444617 1 0 + 0.555383 1 0 + 0.666667 1 0 + 0.77795 1 0 + 0.888716 1 0 + 1 1 0 + endnode + node trimesh object04 + parent tdc01_g02_03 + position -2.15 -4.91 -0.75 + orientation 0 0 0 0 + wirecolor 0.694118 0.109804 0.584314 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center -111 491 559.5 + bitmap tdc01_trim00 + tilefade 0 + verts 18 + -2.81 9.97 3.95 + -0.46 9.97 3.95 + -0.16 9.97 4.86 + 0.37 9.97 4.86 + 0.58 9.97 5.01 + 0.56 9.97 5.22 + 0.35 9.97 5.37 + 0.35 9.97 7.15 + 0.59 9.97 7.24 + -2.81 -0.15 3.95 + -0.45 -0.15 3.95 + -0.16 -0.15 4.86 + 0.37 -0.15 4.86 + 0.58 -0.15 5.01 + 0.56 -0.15 5.22 + 0.35 -0.15 5.37 + 0.35 -0.15 7.15 + 0.59 -0.15 7.24 + faces 16 + 0 1 10 1 0 18 19 2 + 0 10 9 1 0 19 9 2 + 1 2 11 4 1 20 21 2 + 1 11 10 4 1 21 10 2 + 2 3 12 2 2 22 23 2 + 2 12 11 2 2 23 11 2 + 3 4 13 4 3 4 13 2 + 3 13 12 4 3 13 12 2 + 4 5 14 2 4 5 14 2 + 4 14 13 2 4 14 13 2 + 5 6 15 4 5 6 15 2 + 5 15 14 4 5 15 14 2 + 6 7 16 2 6 7 16 2 + 6 16 15 2 6 16 15 2 + 7 8 17 4 7 8 17 2 + 7 17 16 4 7 17 16 2 + tverts 24 + -3.03424 1.72809 0 + -3.03424 0.99356 0 + -3.03424 0.38225 0 + -3.03424 0.72049 0 + -3.03424 0.67571 0 + -3.03424 0.61357 0 + -3.03424 0.56786 0 + -3.03424 0.03496 0 + -3.03395 0.00687 0 + 3.03541 1.72809 0 + 3.03541 0.99356 0 + 3.03541 0.38225 0 + 3.03541 0.72049 0 + 3.03541 0.67571 0 + 3.03541 0.61357 0 + 3.03541 0.56786 0 + 3.03541 0.03496 0 + 3.0357 0.00687 0 + -3.03424 -0.34596 0 + 3.03541 -0.34596 0 + -3.03424 0.72014 0 + 3.03541 0.72014 0 + -3.03424 -0.07614 0 + 3.03541 -0.07614 0 + endnode + node trimesh object01 + parent tdc01_g02_03 + position -2.15 -4.91 -0.75 + orientation 0 0 0 0 + wirecolor 0.694118 0.109804 0.584314 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + center 540 491 559.5 + bitmap tdc01_trim00 + tilefade 0 + verts 21 + 3.7 9.97 7.24 + 3.95 9.97 7.15 + 3.95 9.97 5.37 + 3.74 9.97 5.22 + 3.72 9.97 5.01 + 3.94 9.97 4.86 + 4.46 9.97 4.86 + 4.77 9.97 3.95 + 7.1 9.97 3.95 + 3.7 -0.15 7.24 + 3.95 -0.15 7.15 + 3.95 -0.15 5.37 + 3.74 -0.15 5.22 + 3.72 -0.15 5.01 + 3.94 -0.15 4.86 + 4.46 -0.15 4.86 + 4.77 -0.15 3.95 + 7.1 -0.15 3.95 + 3.7 -0.15 7.24 + 3.7 -0.15 7.24 + 3.7 -0.15 7.24 + faces 19 + 0 1 10 4 18 1 10 2 + 0 10 9 4 18 10 19 2 + 1 2 11 2 1 2 11 2 + 1 11 10 2 1 11 10 2 + 2 3 12 4 2 3 12 2 + 2 12 11 4 2 12 11 2 + 3 4 13 2 3 4 13 2 + 3 13 12 2 3 13 12 2 + 4 5 14 4 4 20 21 2 + 4 14 13 4 4 21 13 2 + 5 6 15 2 5 22 23 2 + 5 15 14 2 5 23 14 2 + 6 7 16 4 6 24 25 2 + 6 16 15 4 6 25 15 2 + 7 8 17 2 7 8 17 2 + 7 17 16 2 7 17 16 2 + 18 0 9 2 9 0 9 2 + 19 0 18 2 9 0 9 2 + 20 0 19 2 9 0 9 2 + tverts 26 + 3.03483 0.9985 0 + 3.03483 0.03467 0 + 3.03483 0.56757 0 + 3.03483 0.61328 0 + 3.03483 0.67542 0 + -3.03483 0.80572 0 + 3.03483 0.71985 0 + -3.03483 1.07555 0 + -3.03483 -0.998501 0 + -3.03483 0.9985 0 + -3.03483 0.03467 0 + -3.03483 0.56757 0 + -3.03483 0.61328 0 + -3.03483 0.67542 0 + 3.03483 0.80572 0 + -3.03483 0.71985 0 + 3.03483 1.07555 0 + 3.03483 -0.998501 0 + 3.03483 0.00672 0 + -3.03483 0.00672 0 + 3.03483 0.7202 0 + -3.03483 0.7202 0 + -3.03483 0.34734 0 + 3.03483 0.34734 0 + 3.03483 0.99328 0 + -3.03483 0.99327 0 + endnode + node trimesh meshtdc5451 + parent tdc01_g02_03 + diffuse 1 1 1 + ambient 1 1 1 + position -0.41 0.01 3.5 + orientation 0 0 0 0 + wirecolor 1 1 1 + scale 1 + render 1 + shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + specular 0 0 0 + shininess 1 + center 41 0 168 + bitmap tdc01_wall_uni + tilefade 0 + verts 4 + -0.22 -0.49 1.68 + 1.04 -0.49 1.68 + 1.04 0.49 1.68 + -0.22 0.49 1.68 + faces 2 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + tverts 4 + 0.701795 0.588488 0 + 0.887592 0.588488 0 + 0.887592 0.732996 0 + 0.701795 0.732996 0 + endnode +endmodelgeom tdc01_g02_03 +donemodel tdc01_g02_03 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/tin01_D02_04.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_D02_04.mdl new file mode 100644 index 0000000..328cb34 --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_D02_04.mdl @@ -0,0 +1,1107 @@ +#Exported from 3ds max by MDL Plug-in Suite 1.0b +#http://www.bricksbuilder.com/nwn/utils/ +#MAXMODEL ASCII +# model: tin01_D02_04 +filedependancy Unknown +newmodel tin01_D02_04 +setsupermodel tin01_D02_04 NULL +classification Tile +setanimationscale 1.0 +#MAXGEOM ASCII +beginmodelgeom tin01_D02_04 +node dummy tin01_D02_04 + parent NULL +endnode +node trimesh Plane335 + parent tin01_D02_04 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.839844 0.839844 0.839844 + ambient 0.603922 0.584314 0.592157 + diffuse 0.603922 0.584314 0.592157 + specular 0 0 0 + shininess 1 + bitmap tin01_shpFLR1 + render 1 + Shadow 1 + beaming 0 + transparencyhint 0 + tilefade 0 + rotatetexture 1 + verts 31 + -5 -2.5 0 + -5 -5 0 + -2.49866 -2.49712 0 + -2.5 -5 0 + 0.000966688 -2.49712 0 + 0 -5 0 + 2.49933 -2.49712 0 + 2.5 -5 0 + 2.85 -4.46 0 + 3.48 -4.46 0 + 3.48 -2.5 0 + -5 0 0 + -2.49866 0 0 + -5 2.5 0 + -2.49866 2.50312 0 + 2.49933 2.50312 0 + 0.000966906 2.50312 0 + -5 5 0 + -2.5 5 0 + 0 5 0 + 2.5 5 0 + 2.85 5 0 + 2.85 4.46 0 + 2.85 -5 0 + 3.48 2.5 0 + 3.48 4.46 0 + 3.486 2.50623 0 + 3.48601 0 0 + 2.49866 0 0 + 0.00193359 0 0 + 3.486 -2.49424 0 + faces 36 + 0 1 2 1 0 1 2 0 + 3 2 1 1 3 2 1 0 + 2 3 4 1 2 3 4 0 + 5 4 3 1 5 4 3 0 + 4 5 6 1 4 5 6 0 + 7 6 5 1 7 6 5 0 + 8 9 10 1 8 9 10 0 + 11 0 12 1 11 0 12 0 + 2 12 0 1 2 12 0 0 + 13 11 14 1 13 11 14 0 + 12 14 11 1 12 14 11 0 + 17 13 18 1 17 13 18 0 + 14 18 13 1 14 18 13 0 + 18 14 19 1 18 14 19 0 + 16 19 14 1 16 19 14 0 + 19 16 20 1 19 16 20 0 + 15 20 16 1 15 20 16 0 + 21 15 22 1 21 15 22 0 + 20 15 21 1 20 15 21 0 + 7 10 6 1 7 10 6 0 + 10 7 8 1 10 7 8 0 + 7 23 8 1 7 23 8 0 + 22 15 24 1 22 15 24 0 + 24 25 22 1 24 25 22 0 + 27 26 28 1 30 26 31 0 + 15 28 26 1 27 31 26 0 + 28 15 29 1 31 27 32 0 + 16 29 15 1 28 32 27 0 + 29 16 12 1 32 28 33 0 + 14 12 16 1 29 33 28 0 + 30 27 6 1 34 30 35 0 + 28 6 27 1 31 35 30 0 + 6 28 4 1 35 31 36 0 + 29 4 28 1 32 36 31 0 + 4 29 2 1 36 32 37 0 + 12 2 29 1 33 37 32 0 + tverts 38 + 12 -3.5 0 + 12 -4 0 + 12.5 -3.5 0 + 12.5 -4 0 + 13 -3.5 0 + 13 -4 0 + 13.5 -3.5 0 + 13.5 -4 0 + 13.5702 -3.89176 0 + 13.6964 -3.89176 0 + 13.6964 -3.5 0 + 12 -3 0 + 12.5 -3 0 + 12 -2.5 0 + 12.5 -2.5 0 + 13.5 -2.5 0 + 13 -2.5 0 + 12 -2 0 + 12.5 -2 0 + 13 -2 0 + 13.5 -2 0 + 13.5702 -2 0 + 13.5702 -2.10825 0 + 13.5702 -4 0 + 13.6964 -2.5 0 + 13.6964 -2.10825 0 + 13.6968 -3.50561 0 + 13.4993 -3.50561 0 + 12.9997 -3.50561 0 + 12.4996 -3.50561 0 + 13.6968 -3.00411 0 + 13.4993 -3.00411 0 + 12.9997 -3.00411 0 + 12.4996 -3.00411 0 + 13.6968 -2.50502 0 + 13.4993 -2.50502 0 + 12.9997 -2.50502 0 + 12.4996 -2.50502 0 +endnode +node aabb Box1503 + parent tin01_D02_04 + position 0 0 1.49986 + orientation 0 0 0 0 + wirecolor 0.839844 0.839844 0.839844 + ambient 0.2 0.2 0.2 + diffuse 0.8 0.8 0.8 + specular 0 0 0 + shininess 1 + bitmap NULL + verts 30 + 2.85 -5 1.5 + 5 -5 1.5 + 3.48 -4.46 1.5 + 3.48 -4.46 -1.5 + 2.85 -4.46 -1.5 + 2.85 -5 -1.5 + -1.07 1.41 -1.5 + 0.02 0.78 -1.5 + 2.85 5 -1.5 + -1.81 1.97 -1.5 + 3.47861 -1.26 -1.5 + -5 5 -1.5 + 3.48942 1.17 -1.5 + 2.85 4.46 -1.5 + 3.48 4.46 -1.5 + 3.55814 -1.26 1.5 + 3.62972 1.17 1.5 + 5 5 1.5 + 3.63 4.46 1.5 + 2.85 5 1.5 + -2.27 1.37 -1.5 + -0.87 0.78 -1.5 + -5 -5 -1.5 + -0.87 -0.5 -1.5 + -1.33 -1.54 -1.5 + -0.84 -0.75 -1.5 + -0.19 -1.15 -1.5 + 0.02 -0.5 -1.5 + -0.68 -1.94 -1.5 + -1.54 0.8 -1.5 + faces 50 + 0 1 2 1 0 0 0 2 + 0 2 3 2 0 0 0 2 + 3 4 0 4 0 0 0 2 + 4 5 0 8 0 0 0 2 + 6 7 8 1 0 0 0 5 + 8 9 6 1 0 0 0 5 + 3 10 4 16 0 0 0 5 + 11 9 8 1 0 0 0 5 + 8 12 13 2 0 0 0 5 + 12 14 13 4 0 0 0 5 + 7 12 8 1 0 0 0 5 + 15 1 16 1 0 0 0 2 + 1 15 2 1 0 0 0 2 + 17 18 16 1 0 0 0 2 + 2 15 10 8 0 0 0 2 + 10 3 2 8 0 0 0 2 + 12 16 18 8 0 0 0 2 + 18 14 12 8 0 0 0 2 + 16 12 10 8 0 0 0 2 + 10 15 16 8 0 0 0 2 + 17 16 1 1 0 0 0 2 + 17 19 18 1 0 0 0 2 + 18 19 14 2 0 0 0 2 + 13 14 19 16 0 0 0 2 + 8 13 19 8 0 0 0 2 + 11 20 9 1 0 0 0 5 + 10 12 7 1 0 0 0 5 + 21 22 23 1 0 0 0 5 + 22 24 23 1 0 0 0 5 + 25 23 24 1 0 0 0 5 + 5 4 10 2 0 0 0 2 + 10 26 5 1 0 0 0 5 + 10 7 27 1 0 0 0 5 + 27 7 23 1 0 0 0 5 + 21 23 7 1 0 0 0 5 + 22 5 28 1 0 0 0 5 + 24 22 28 1 0 0 0 5 + 5 26 28 1 0 0 0 5 + 28 25 24 1 0 0 0 5 + 10 27 26 1 0 0 0 5 + 26 23 25 1 0 0 0 5 + 23 26 27 1 0 0 0 5 + 28 26 25 1 0 0 0 5 + 21 7 6 1 0 0 0 5 + 11 22 20 1 0 0 0 5 + 20 22 29 1 0 0 0 5 + 22 21 29 1 0 0 0 5 + 29 21 6 1 0 0 0 5 + 9 20 29 1 0 0 0 5 + 29 6 9 1 0 0 0 5 + aabb -5.00 -5.00 -1.50 5.00 5.00 1.50 -1 + -5.00 -5.00 -1.50 5.00 1.37 1.50 -1 + -5.00 -5.00 -1.50 2.85 1.37 -1.50 -1 + -5.00 -5.00 -1.50 -0.68 1.37 -1.50 -1 + -5.00 -5.00 -1.50 -0.68 0.78 -1.50 -1 + -5.00 -5.00 -1.50 -0.68 -1.54 -1.50 36 + -5.00 -5.00 -1.50 -0.87 0.78 -1.50 -1 + -5.00 -5.00 -1.50 -0.87 -0.50 -1.50 28 + -5.00 -5.00 -1.50 -0.87 0.78 -1.50 27 + -5.00 -5.00 -1.50 -0.84 1.37 -1.50 -1 + -5.00 -5.00 -1.50 -0.87 0.80 -1.50 46 + -5.00 -5.00 -1.50 -0.84 1.37 -1.50 -1 + -5.00 -5.00 -1.50 -1.54 1.37 -1.50 45 + -1.33 -1.54 -1.50 -0.84 -0.50 -1.50 29 + -5.00 -5.00 -1.50 2.85 -0.50 -1.50 -1 + -5.00 -5.00 -1.50 2.85 -0.50 -1.50 -1 + -1.33 -1.94 -1.50 -0.68 -0.75 -1.50 38 + -5.00 -5.00 -1.50 2.85 -0.50 -1.50 -1 + -5.00 -5.00 -1.50 2.85 -1.94 -1.50 35 + -0.87 -1.15 -1.50 -0.19 -0.50 -1.50 40 + -0.87 -5.00 -1.50 2.85 -0.50 -1.50 -1 + -0.68 -5.00 -1.50 2.85 -1.15 -1.50 37 + -0.87 -1.94 -1.50 0.02 -0.50 -1.50 -1 + -0.84 -1.94 -1.50 -0.19 -0.75 -1.50 42 + -0.87 -1.15 -1.50 0.02 -0.50 -1.50 41 + -0.19 -5.00 -1.50 5.00 1.17 1.50 -1 + 2.85 -5.00 -1.50 5.00 -1.26 1.50 -1 + 2.85 -5.00 -1.50 5.00 -4.46 1.50 -1 + 2.85 -5.00 -1.50 2.85 -4.46 1.50 3 + 2.85 -5.00 -1.50 5.00 -4.46 1.50 -1 + 2.85 -5.00 -1.50 3.48 -4.46 1.50 1 + 2.85 -5.00 1.50 5.00 -4.46 1.50 0 + 2.85 -5.00 -1.50 5.00 -1.26 1.50 -1 + 2.85 -5.00 -1.50 3.48 -4.46 1.50 2 + 2.85 -5.00 -1.50 5.00 -1.26 1.50 -1 + 2.85 -5.00 -1.50 3.48 -1.26 -1.50 30 + 3.48 -5.00 1.50 5.00 -1.26 1.50 12 + -0.19 -5.00 -1.50 5.00 1.17 1.50 -1 + -0.19 -5.00 -1.50 3.48 -1.15 1.50 -1 + 2.85 -4.46 -1.50 3.48 -1.26 -1.50 6 + -0.19 -5.00 -1.50 3.48 -1.15 1.50 -1 + 3.48 -4.46 -1.50 3.48 -1.26 1.50 15 + -0.19 -5.00 -1.50 3.48 -1.15 -1.50 31 + -0.19 -5.00 -1.50 5.00 1.17 1.50 -1 + 3.48 -5.00 -1.50 5.00 1.17 1.50 -1 + 3.48 -4.46 -1.50 3.56 -1.26 1.50 14 + 3.56 -5.00 1.50 5.00 1.17 1.50 11 + -0.19 -1.26 -1.50 3.63 1.17 1.50 -1 + -0.19 -1.26 -1.50 3.48 -0.50 -1.50 39 + 3.48 -1.26 -1.50 3.63 1.17 1.50 19 + -5.00 -5.00 -1.50 5.00 5.00 1.50 -1 + -5.00 -5.00 -1.50 3.49 5.00 -1.50 -1 + -5.00 -5.00 -1.50 3.48 5.00 -1.50 -1 + -0.87 -1.26 -1.50 3.48 0.78 -1.50 -1 + -0.87 -0.50 -1.50 0.02 0.78 -1.50 34 + -0.87 -1.26 -1.50 3.48 0.78 -1.50 -1 + -0.87 -0.50 -1.50 0.02 0.78 -1.50 33 + 0.02 -1.26 -1.50 3.48 0.78 -1.50 32 + -5.00 -5.00 -1.50 0.02 5.00 -1.50 -1 + -5.00 -5.00 -1.50 -2.27 5.00 -1.50 44 + -1.54 0.78 -1.50 0.02 1.41 -1.50 -1 + -1.54 0.78 -1.50 -0.87 1.41 -1.50 47 + -1.07 0.78 -1.50 0.02 1.41 -1.50 43 + -5.00 0.78 -1.50 3.49 5.00 -1.50 -1 + -5.00 0.80 -1.50 -1.07 5.00 -1.50 -1 + -2.27 0.80 -1.50 -1.54 1.97 -1.50 48 + -5.00 0.80 -1.50 -1.07 5.00 -1.50 -1 + -1.81 0.80 -1.50 -1.07 1.97 -1.50 49 + -5.00 1.37 -1.50 -1.81 5.00 -1.50 25 + -1.81 0.78 -1.50 3.49 5.00 -1.50 -1 + -1.81 1.41 -1.50 2.85 5.00 -1.50 5 + -1.07 0.78 -1.50 3.49 5.00 -1.50 -1 + -1.07 0.78 -1.50 2.85 5.00 -1.50 4 + 0.02 0.78 -1.50 3.49 5.00 -1.50 10 + -5.00 -5.00 -1.50 5.00 5.00 1.50 -1 + -5.00 -1.26 -1.50 3.63 5.00 1.50 -1 + -5.00 -1.26 -1.50 3.49 5.00 1.50 -1 + -5.00 1.97 -1.50 2.85 5.00 -1.50 7 + 0.02 -1.26 -1.50 3.49 5.00 1.50 -1 + 0.02 -1.26 -1.50 3.49 1.17 -1.50 26 + 2.85 4.46 -1.50 3.48 5.00 1.50 23 + 2.85 1.17 -1.50 3.63 5.00 1.50 -1 + 3.48 1.17 -1.50 3.63 4.46 1.50 17 + 2.85 1.17 -1.50 3.49 5.00 -1.50 -1 + 2.85 1.17 -1.50 3.49 4.46 -1.50 9 + 2.85 1.17 -1.50 3.49 5.00 -1.50 8 + 2.85 -5.00 -1.50 5.00 5.00 1.50 -1 + 3.48 -5.00 -1.50 5.00 5.00 1.50 -1 + 3.48 -1.26 -1.50 3.63 1.17 1.50 18 + 3.49 -5.00 -1.50 5.00 5.00 1.50 -1 + 3.63 -5.00 1.50 5.00 5.00 1.50 20 + 3.49 1.17 -1.50 3.63 4.46 1.50 16 + 2.85 1.17 -1.50 5.00 5.00 1.50 -1 + 2.85 1.17 -1.50 5.00 5.00 1.50 -1 + 3.63 1.17 1.50 5.00 5.00 1.50 13 + 2.85 4.46 -1.50 3.63 5.00 1.50 22 + 2.85 4.46 -1.50 5.00 5.00 1.50 -1 + 2.85 4.46 -1.50 2.85 5.00 1.50 24 + 2.85 4.46 1.50 5.00 5.00 1.50 21 +endnode +node trimesh Line89 + parent tin01_D02_04 + position 5.36 0.4 2.98 + orientation 0 0 0 0 + wirecolor 0.226563 0.226563 0.226563 + ambient 0 0 0 + diffuse 0 0 0 + specular 0 0 0 + shininess 1 + bitmap tin01_black + verts 7 + -0.36 4.6 0.0199998 + -0.86 -2.9 0.0199998 + -0.86 -5.4 0.0199998 + -0.36 -5.4 0.0199998 + -0.86 4.6 0.0199998 + -0.86 2.1 0.0199998 + -0.86 -0.4 0.0199998 + faces 5 + 0 1 2 1 0 1 2 0 + 3 0 2 1 3 0 2 0 + 0 4 5 1 0 4 5 0 + 0 5 6 1 0 5 6 0 + 0 6 1 1 0 6 1 0 + tverts 7 + -134.5 90.5 0 + -135 83 0 + -135 80.5 0 + -134.5 80.5 0 + -135 90.5 0 + -135 88 0 + -135 85.5 0 +endnode +node trimesh Box3007 + parent tin01_D02_04 + position 3.37 4.81 0.33 + orientation 0 0 0 0 + wirecolor 0.226563 0.226563 0.226563 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap tin01_door2 + verts 14 + 0.11 -0.2 0.35 + -0.37 -0.2 0.35 + 0.11 -0.35 0.19 + -0.52 -0.35 0.19 + -0.37 0.19 0.35 + -0.52 0.19 0.19 + 0.11 -0.35 -0.33 + -0.52 -0.35 -0.33 + -0.52 0.19 -0.33 + -0.37 0.19 2.67 + -0.37 -0.2 2.67 + 0.38 -0.2 1.16 + 0.38 -0.2 2.67 + 0.11 -0.2 1.16 + faces 14 + 0 1 2 1 0 1 2 0 + 3 2 1 1 3 2 1 0 + 1 4 5 1 4 5 6 0 + 5 3 1 1 6 7 4 0 + 2 3 6 1 2 3 8 0 + 7 6 3 1 9 8 3 0 + 3 5 7 1 7 6 10 0 + 8 7 5 1 11 10 6 0 + 4 1 9 1 12 13 14 0 + 10 9 1 1 15 14 13 0 + 11 12 10 1 16 17 18 0 + 10 1 0 1 18 19 20 0 + 13 11 10 1 21 16 18 0 + 10 0 13 1 18 20 21 0 + tverts 22 + 0.0546721 1.05077 0 + 0.300601 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.305378 1.04315 0 + 0.167227 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.357965 0.694046 0 + 0.173247 0.694046 0 + 0.215041 -0.497611 0 + 0.395638 -0.497611 0 + 0.215041 0.174409 0 + 0.395638 0.174409 0 + 0.39879 -0.26474 0 + 0.39879 0.174359 0 + 0.047924 0.174109 0 + 0.047924 -0.502544 0 + 0.274456 -0.502544 0 + 0.276247 -0.265795 0 +endnode +node trimesh Box3008 + parent tin01_D02_04 + position 3.37 -4.8 0.33 + orientation 0 0 0 0 + wirecolor 0.226563 0.226563 0.226563 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap tin01_door2 + verts 14 + -0.37 0.19 0.35 + 0.11 0.19 0.35 + 0.11 0.34 0.19 + -0.52 0.34 0.19 + -0.37 -0.2 0.35 + -0.52 -0.2 0.19 + 0.11 0.34 -0.33 + -0.52 0.34 -0.33 + -0.52 -0.2 -0.33 + -0.37 0.19 2.67 + -0.37 -0.2 2.67 + 0.38 0.19 2.67 + 0.38 0.19 1.16 + 0.11 0.19 1.16 + faces 14 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 4 0 5 1 4 5 6 0 + 3 5 0 1 7 6 5 0 + 3 2 6 1 3 2 8 0 + 6 7 3 1 8 9 3 0 + 5 3 7 1 6 7 10 0 + 7 8 5 1 10 11 6 0 + 0 4 9 1 12 13 14 0 + 10 9 4 1 15 14 13 0 + 0 9 11 1 16 17 18 0 + 11 12 13 1 18 19 20 0 + 13 1 0 1 20 21 16 0 + 11 13 0 1 18 20 16 0 + tverts 22 + 0.300601 1.05077 0 + 0.0546721 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.167227 1.04315 0 + 0.305378 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.357965 0.694046 0 + 0.173247 0.694046 0 + 0.395638 -0.497611 0 + 0.215041 -0.497611 0 + 0.395638 0.174409 0 + 0.215041 0.174409 0 + 0.047924 -0.502544 0 + 0.047924 0.174109 0 + 0.39879 0.174359 0 + 0.39879 -0.26474 0 + 0.276247 -0.265795 0 + 0.274456 -0.502544 0 +endnode +node trimesh Object1375 + parent tin01_D02_04 + position 3.37 4.73 4.26 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap tin01_door2 + render 1 + Shadow 1 + beaming 0 + transparencyhint 0 + tilefade 1 + rotatetexture 0 + verts 16 + -0.52 -0.27 0.12 + 0.53 -0.27 0.12 + 0.53 -0.27 0.29 + -0.52 -0.27 0.29 + 0.53 0.27 0.12 + 0.53 0.27 0.29 + -0.52 0.27 0.12 + -0.52 0.27 0.29 + -0.37 -0.12 -0.05 + 0.38 -0.12 -0.05 + 0.38 0.27 -0.05 + -0.37 0.27 -0.05 + 0.38 -0.12 -1.26 + -0.37 -0.12 -1.26 + 0.38 0.27 -1.26 + -0.37 0.27 -1.26 + faces 18 + 0 1 2 1 0 1 2 0 + 2 3 0 1 2 3 0 0 + 1 4 2 1 4 5 6 0 + 5 2 4 1 7 6 5 0 + 6 0 7 1 5 4 7 0 + 3 7 0 1 6 7 4 0 + 8 9 1 1 8 9 1 0 + 1 0 8 1 1 0 8 0 + 9 10 4 1 10 11 5 0 + 4 1 9 1 5 4 10 0 + 11 8 6 1 11 10 5 0 + 0 6 8 1 4 5 10 0 + 9 8 12 1 12 13 14 0 + 13 12 8 1 15 14 13 0 + 12 14 9 1 16 17 18 0 + 10 9 14 1 19 18 17 0 + 13 8 15 1 20 21 22 0 + 11 15 8 1 23 22 21 0 + tverts 24 + 0.0517443 0.437877 0 + 0.390491 0.437877 0 + 0.390491 0.523377 0 + 0.0517443 0.523377 0 + 0.405369 0.414929 0 + 0.147514 0.414929 0 + 0.405369 0.517406 0 + 0.147514 0.517406 0 + 0.099957 0.356483 0 + 0.342278 0.356483 0 + 0.334277 0.317374 0 + 0.147514 0.317374 0 + 0.39879 0.528703 0 + 0.047924 0.528703 0 + 0.39879 0.174359 0 + 0.047924 0.174109 0 + 0.0692728 0.653515 0 + 0.265279 0.653515 0 + 0.0692729 1.003 0 + 0.265279 1.003 0 + 0.395638 0.174409 0 + 0.395638 0.526576 0 + 0.215041 0.174409 0 + 0.215041 0.526576 0 +endnode +node trimesh Object1377 + parent tin01_D02_04 + position 3.37 -4.73 4.26 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap tin01_door2 + render 1 + Shadow 1 + beaming 0 + transparencyhint 0 + tilefade 1 + rotatetexture 0 + verts 16 + 0.53 0.27 0.12 + -0.52 0.27 0.12 + 0.53 0.27 0.29 + -0.52 0.27 0.29 + 0.53 -0.27 0.12 + 0.53 -0.27 0.29 + -0.52 -0.27 0.12 + -0.52 -0.27 0.29 + 0.38 0.12 -0.05 + -0.37 0.12 -0.05 + 0.38 -0.27 -0.05 + -0.37 -0.27 -0.05 + -0.37 0.12 -1.26 + 0.38 0.12 -1.26 + 0.38 -0.27 -1.26 + -0.37 -0.27 -1.26 + faces 18 + 0 1 2 1 0 1 2 0 + 3 2 1 1 3 2 1 0 + 4 0 2 1 4 5 6 0 + 2 5 4 1 6 7 4 0 + 1 6 7 1 5 4 7 0 + 7 3 1 1 7 6 5 0 + 8 9 0 1 8 9 0 0 + 1 0 9 1 1 0 9 0 + 10 8 4 1 10 11 4 0 + 0 4 8 1 5 4 11 0 + 9 11 6 1 11 10 4 0 + 6 1 9 1 4 5 11 0 + 9 8 12 1 12 13 14 0 + 13 12 8 1 15 14 13 0 + 14 13 8 1 16 17 18 0 + 8 10 14 1 18 19 16 0 + 15 11 12 1 20 21 22 0 + 9 12 11 1 23 22 21 0 + tverts 24 + 0.390491 0.437877 0 + 0.0517443 0.437877 0 + 0.390491 0.523377 0 + 0.0517443 0.523377 0 + 0.147514 0.414929 0 + 0.405369 0.414929 0 + 0.405369 0.517406 0 + 0.147514 0.517406 0 + 0.342278 0.356483 0 + 0.099957 0.356483 0 + 0.147514 0.317374 0 + 0.334277 0.317374 0 + 0.047924 0.528703 0 + 0.39879 0.528703 0 + 0.047924 0.174109 0 + 0.39879 0.174359 0 + 0.265279 0.653515 0 + 0.0692728 0.653515 0 + 0.0692729 1.003 0 + 0.265279 1.003 0 + 0.215041 0.174409 0 + 0.215041 0.526576 0 + 0.395638 0.174409 0 + 0.395638 0.526576 0 +endnode +node trimesh Mesh3803 + parent tin01_D02_04 + position 3.37 -4.8 4.43 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 + ambient 0 0 0 + diffuse 0 0 0 + specular 0 0 0 + shininess 1 + bitmap tin01_black + render 1 + Shadow 1 + beaming 0 + transparencyhint 0 + tilefade 1 + rotatetexture 0 + verts 8 + 0.53 0.34 0.12 + -0.52 0.34 0.12 + -0.52 -0.2 0.12 + 0.53 -0.2 0.12 + -0.52 9.26 0.12 + 0.53 9.26 0.12 + -0.52 9.8 0.12 + 0.53 9.8 0.12 + faces 4 + 0 1 2 1 0 0 0 0 + 2 3 0 1 0 0 0 0 + 4 5 6 1 0 0 0 0 + 7 6 5 1 0 0 0 0 + tverts 1 + 0 0 0 +endnode +node trimesh Rectangle94 + parent tin01_D02_04 + position 3.37 4.8 3 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 + ambient 0 0 0 + diffuse 0 0 0 + specular 0 0 0 + shininess 1 + bitmap tin01_black + render 1 + Shadow 1 + beaming 0 + transparencyhint 0 + tilefade 2 + rotatetexture 0 + verts 8 + -0.37 -0.19 0 + 0.38 -0.19 0 + 0.38 0.2 0 + -0.37 0.2 0 + -0.37 -9.8 0 + 0.38 -9.8 0 + 0.38 -9.41 0 + -0.37 -9.41 0 + faces 4 + 0 1 2 1 0 0 0 0 + 0 2 3 1 0 0 0 0 + 4 5 6 1 0 0 0 0 + 4 6 7 1 0 0 0 0 + tverts 1 + 0 0 0 +endnode +node trimesh Line785 + parent tin01_D02_04 + position -5 3.37 4.04 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 + ambient 0 0 0 + diffuse 0 0 0 + specular 0 0 0 + shininess 1 + bitmap tin01_black + render 1 + Shadow 1 + beaming 0 + transparencyhint 0 + tilefade 4 + rotatetexture 0 + verts 16 + 8.9 1.63 0.51 + 8 1.63 0.17 + 7.85 1.63 0.34 + 7.85 1.63 0.51 + 8.75 1.63 0.17 + 8.75 1.63 -1.04 + 8 1.63 -1.04 + 8.9 1.63 0.34 + 7.85 -8.37 0.51 + 8.75 -8.37 0.17 + 8.9 -8.37 0.34 + 8.9 -8.37 0.51 + 8 -8.37 0.17 + 8 -8.37 -1.04 + 8.75 -8.37 -1.04 + 7.85 -8.37 0.34 + faces 12 + 0 1 2 1 0 0 0 0 + 0 2 3 1 0 0 0 0 + 4 1 0 1 0 0 0 0 + 5 6 1 1 0 0 0 0 + 4 5 1 1 0 0 0 0 + 7 4 0 1 0 0 0 0 + 8 9 10 1 0 0 0 0 + 8 10 11 1 0 0 0 0 + 12 9 8 1 0 0 0 0 + 13 14 9 1 0 0 0 0 + 12 13 9 1 0 0 0 0 + 15 12 8 1 0 0 0 0 + tverts 1 + 0 0 0 +endnode +node light tin01_D02_04ml1 + parent tin01_D02_04 + position 0 0 5 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 + radius 14 + multiplier 1 + color 0 0 0 + ambientOnly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + lensflares 0 + fadingLight 1 +endnode +node light tin01_D02_04ml2 + parent tin01_D02_04 + position 2.76083 -1.98904 4 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 + radius 5 + multiplier 1 + color 0.00392157 0.00392157 0.00392157 + ambientOnly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + lensflares 0 + fadingLight 1 +endnode +node dummy tin01_D02_04a + parent tin01_D02_04 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.605469 0.605469 0.605469 +endnode +node trimesh Plane02 + parent tin01_D02_04 + position 3.47443 -0.0620212 0.749721 + orientation 0.57735 0.57735 -0.57735 -2.0944 + wirecolor 0.601563 0.601563 0.601563 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 1 + bitmap tin01_Lwalls + verts 46 + 1.78414 0.745203 -0.00278702 + -1.77711 0.745203 -0.00278714 + 1.77809 -0.740482 -0.00122014 + -1.77433 -0.740481 -0.00122018 + 1.79598 -0.775279 -0.272335 + -1.7852 -0.775278 -0.272335 + 1.5409 -0.770279 -0.275606 + 0.50322 -0.770279 -0.275638 + -0.533329 -0.770278 -0.275638 + -1.5321 -0.770278 -0.275606 + 0.704697 -2.25875 -0.275411 + -0.021151 -2.25662 -0.275525 + -0.696887 -2.25875 -0.275411 + 0.704234 -2.26302 -1.02623 + -0.700975 -2.26302 -1.02623 + -2.43798 -2.25028 -0.275574 + -2.43798 -2.25028 -1.02557 + -1.71798 -2.25028 -0.275574 + -1.71798 -2.25028 -1.02557 + -2.43798 0.749722 -0.00557431 + -2.43798 -0.740278 -0.00557436 + -4.54798 -2.25028 -0.275574 + -4.93798 -2.25028 -1.02557 + -2.43798 -0.740278 -0.275574 + -4.54798 -0.740278 -0.275574 + -4.93798 -2.25028 -0.275575 + 2.56202 -2.25028 -1.02557 + 2.56202 -2.25028 -0.275574 + 1.75202 -2.25028 -0.275574 + 1.75202 -2.25028 -1.02557 + 2.56202 -0.740279 -0.275574 + 5.06202 -2.25028 -1.02557 + 4.67202 -2.25028 -0.275574 + 4.67202 -0.740279 -0.275574 + 4.67202 -0.740279 -0.00557385 + 2.56202 -0.740279 -0.00557398 + 5.06202 -2.25028 -0.275574 + -4.39798 0.229722 -0.00557446 + -4.54798 0.069722 -0.00557446 + -4.54798 -0.740278 -0.00557449 + -4.39798 0.749722 -0.00557444 + 2.56202 0.749721 -0.00557393 + 4.67202 0.0697209 -0.00557384 + 4.52202 0.229721 -0.00557383 + 4.52202 0.749721 -0.00557381 + -0.0202411 -2.26302 -1.02623 + faces 59 + 2 0 3 1 2 0 3 0 + 1 3 0 1 1 3 0 0 + 5 4 3 1 6 4 7 0 + 2 3 4 1 5 7 4 0 + 10 6 11 1 12 8 13 0 + 7 11 6 1 9 13 8 0 + 8 11 7 1 10 14 9 0 + 11 8 12 1 14 10 15 0 + 9 12 8 1 11 15 10 0 + 14 45 12 1 18 79 19 0 + 10 11 13 1 17 80 16 0 + 15 16 17 1 20 21 22 0 + 18 17 16 1 23 22 21 0 + 19 20 1 1 24 25 26 0 + 3 1 20 1 27 26 25 0 + 21 22 16 1 28 29 21 0 + 16 15 21 1 21 20 28 0 + 15 23 21 1 30 31 32 0 + 24 21 23 1 33 32 31 0 + 22 21 25 1 29 28 34 0 + 26 27 28 1 21 20 35 0 + 28 29 26 1 35 36 21 0 + 28 27 30 1 37 38 39 0 + 10 28 30 1 40 37 39 0 + 4 6 10 1 41 42 40 0 + 30 4 10 1 39 41 40 0 + 31 32 26 1 29 28 21 0 + 27 26 32 1 20 21 28 0 + 33 34 30 1 43 44 45 0 + 35 30 34 1 46 45 44 0 + 32 31 36 1 28 29 34 0 + 13 29 28 1 47 48 49 0 + 28 10 13 1 49 50 47 0 + 18 14 12 1 51 52 53 0 + 12 17 18 1 53 54 51 0 + 23 15 17 1 55 56 57 0 + 5 23 17 1 58 55 57 0 + 17 12 9 1 57 59 60 0 + 17 9 5 1 57 60 58 0 + 37 38 39 1 61 62 63 0 + 39 20 19 1 63 64 65 0 + 19 40 37 1 65 66 61 0 + 39 19 37 1 63 65 61 0 + 30 35 4 1 45 46 67 0 + 2 4 35 1 68 67 46 0 + 30 27 33 1 31 30 33 0 + 32 33 27 1 32 33 30 0 + 20 23 3 1 69 70 71 0 + 5 3 23 1 72 71 70 0 + 41 35 34 1 65 64 63 0 + 34 42 43 1 63 62 61 0 + 43 44 41 1 61 66 65 0 + 34 43 41 1 63 61 65 0 + 39 24 20 1 73 74 69 0 + 23 20 24 1 70 69 74 0 + 35 41 2 1 75 76 77 0 + 0 2 41 1 78 77 76 0 + 45 11 12 1 79 80 19 0 + 45 13 11 1 79 16 80 0 + tverts 81 + 0.072686 0.100312 0 + 0.934229 0.100312 0 + 0.072686 0.454412 0 + 0.934229 0.454412 0 + 0.946069 0.385788 0 + 0.946069 0.435611 0 + 0.0460796 0.378453 0 + 0.0460796 0.428275 0 + 0.0479146 0.537089 0 + 0.351493 0.537089 0 + 0.655072 0.537089 0 + 0.945865 0.537089 0 + 0.292351 0.959418 0 + 0.475726 0.959418 0 + 0.565271 0.959418 0 + 0.701777 0.959418 0 + 0.552547 0.577582 0 + 0.552547 0.802176 0 + 0.137332 0.577582 0 + 0.137332 0.802176 0 + 1.125 -0.0837517 0 + 1.125 -0.271252 0 + 1.3056 -0.137933 0 + 1.3056 -0.271252 0 + 1.45903 0.0873629 0 + 1.45903 0.454777 0 + 1.14892 0.087363 0 + 1.14892 0.454777 0 + 0.599078 -0.0837516 0 + 0.5 -0.271252 0 + -0.910625 0.859681 0 + -0.910625 0.484751 0 + -1.43655 0.859681 0 + -1.43654 0.486008 0 + 0.5 -0.0837516 0 + 1.32854 -0.144813 0 + 1.32854 -0.271252 0 + 0.412564 0.859554 0 + 0.209027 0.859554 0 + 0.209027 0.484624 0 + 0.809411 0.860328 0 + 0.542067 0.502107 0 + 0.669222 0.502881 0 + 3.57988 1.3802 0 + 3.57988 1.44535 0 + 4.10688 1.3802 0 + 4.10688 1.44535 0 + 0.885301 0.694973 0 + 1.19819 0.694973 0 + 1.19819 0.882473 0 + 0.885301 0.882473 0 + 0.332331 0.694973 0 + 0.64522 0.694973 0 + 0.64522 0.882473 0 + 0.332331 0.882473 0 + 1.45903 0.484623 0 + 1.45903 0.859553 0 + 1.27842 0.859553 0 + 1.14892 0.502107 0 + 1.04949 0.860328 0 + 1.10583 0.502881 0 + -1.39983 0.217566 0 + -1.43654 0.259696 0 + -1.43654 0.456188 0 + -0.910625 0.454904 0 + -0.910625 0.0874906 0 + -1.40002 0.0874906 0 + 4.43992 1.3802 0 + 4.43992 1.44535 0 + 5.35688 1.44535 0 + 5.35688 1.3802 0 + 5.04677 1.44535 0 + 5.04677 1.3802 0 + 5.88388 1.44535 0 + 5.88388 1.3802 0 + 0.209027 0.454777 0 + 0.209027 0.0873633 0 + 0.542066 0.454777 0 + 0.542066 0.0873632 0 + 0.338477 0.577582 0 + 0.337786 0.802176 0 +endnode +endmodelgeom tin01_D02_04 + +#MAXANIM ASCII +newanim animloop01 tin01_D02_04 + length 0.0333333 + transtime 0 + animroot tin01_D02_04 +node dummy tin01_D02_04 + parent NULL +endnode +node trimesh Plane335 + parent tin01_D02_04 +endnode +node trimesh Box1503 + parent tin01_D02_04 +endnode +node trimesh Line89 + parent tin01_D02_04 +endnode +node trimesh Box3007 + parent tin01_D02_04 +endnode +node trimesh Box3008 + parent tin01_D02_04 +endnode +node trimesh Object1375 + parent tin01_D02_04 +endnode +node trimesh Object1377 + parent tin01_D02_04 +endnode +node trimesh Mesh3803 + parent tin01_D02_04 +endnode +node trimesh Rectangle94 + parent tin01_D02_04 +endnode +node trimesh Line785 + parent tin01_D02_04 +endnode +node light tin01_D02_04ml1 + parent tin01_D02_04 +endnode +node light tin01_D02_04ml2 + parent tin01_D02_04 +endnode +node dummy tin01_D02_04a + parent tin01_D02_04 +endnode +node trimesh Plane02 + parent tin01_D02_04 +endnode +doneanim animloop01 tin01_D02_04 + +#MAXANIM ASCII +newanim tiledefault tin01_D02_04 + length 0 + transtime 0 + animroot tin01_D02_04 +node dummy tin01_D02_04 + parent NULL +endnode +node trimesh Plane335 + parent tin01_D02_04 +endnode +node trimesh Box1503 + parent tin01_D02_04 +endnode +node trimesh Line89 + parent tin01_D02_04 +endnode +node trimesh Box3007 + parent tin01_D02_04 +endnode +node trimesh Box3008 + parent tin01_D02_04 +endnode +node trimesh Object1375 + parent tin01_D02_04 +endnode +node trimesh Object1377 + parent tin01_D02_04 +endnode +node trimesh Mesh3803 + parent tin01_D02_04 +endnode +node trimesh Rectangle94 + parent tin01_D02_04 +endnode +node trimesh Line785 + parent tin01_D02_04 +endnode +node light tin01_D02_04ml1 + parent tin01_D02_04 +endnode +node light tin01_D02_04ml2 + parent tin01_D02_04 +endnode +node dummy tin01_D02_04a + parent tin01_D02_04 +endnode +node trimesh Plane02 + parent tin01_D02_04 +endnode +doneanim tiledefault tin01_D02_04 +donemodel tin01_D02_04 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/tin01_a02_02.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_a02_02.mdl new file mode 100644 index 0000000..ef54e0f --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_a02_02.mdl @@ -0,0 +1,5040 @@ +# Exported from NWmax 0.8 b60 at 21.10.2012 17:28:23 +# mdl file +# +#NWmax MODEL ASCII +# model: tin01_a02_02 +#local file: Unknown +filedependancy Unknown +newmodel tin01_a02_02 +setsupermodel tin01_a02_02 NULL +classification Tile +#NWmax GEOM ASCII +beginmodelgeom tin01_a02_02 +node dummy tin01_a02_02 + parent NULL +endnode +node light tin01_a02_02ml1 + parent tin01_a02_02 + position 0.0 0.0 5.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 14.0 + multiplier 1.0 + color 0.0 0.0 0.0 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +node dummy tin01_a02_02sl1 + parent tin01_a02_02 + position -3.37527 0.00434204 1.76166 + orientation 0.0 0.0 -1.0 -3.14159 + wirecolor 0.109804 0.34902 0.694118 +endnode +node light tin01_a02_02ml2 + parent tin01_a02_02 + position -3.25401 2.78745 4.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 5.0 + multiplier 1.0 + color 0.00392157 0.00392157 0.00392157 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +#Tile trimesh node +node trimesh Mesh1338 + parent tin01_a02_02 + position -3.85 4.55 2.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -27.5 -83.5 -119.0 + bitmap tin01_wallcord + verts 13 + 0.1 -2.12 0.31 + -0.65 0.45 0.31 + -0.65 -2.12 0.31 + 0.1 0.23 0.31 + 0.1 -0.22 -0.82 + 0.1 0.23 -2.69 + 0.1 -0.88 -0.35 + 0.1 -2.12 -0.17 + 0.1 0.45 0.31 + 0.1 -0.22 -2.69 + -0.21 -0.22 -0.82 + -0.21 -0.88 -0.35 + -0.21 -0.22 -2.69 + faces 12 + 0 1 2 1 0 1 2 1 + 3 4 5 2 3 4 5 4 + 4 3 6 2 4 3 6 4 + 6 3 7 2 6 3 7 4 + 8 1 3 1 8 1 9 1 + 4 9 5 2 4 10 5 4 + 3 1 0 1 9 1 0 1 + 3 0 7 2 3 11 7 4 + 10 6 11 1 12 13 14 3 + 10 4 6 1 12 15 13 3 + 12 9 10 4 16 17 12 3 + 4 10 9 4 15 12 17 3 + tverts 18 + 1.22305 0.870259 0 + 2.07285 1.1186 0 + 1.22305 1.1186 0 + 1.93412 0.996604 0 + 1.78415 0.623796 0 + 1.93412 0.0032268 0 + 1.56605 0.778557 0 + 1.15615 0.838108 0 + 2.07285 0.870258 0 + 2.00102 0.870258 0 + 1.78415 0.0032268 0 + 1.15615 0.996604 0 + 0.552141 0.620095 0 + 0.447858 0.774855 0 + 0.552141 0.774855 0 + 0.447858 0.620095 0 + 0.552141 -0.0004746 0 + 0.447858 -0.0004746 0 +endnode +#Tile trimesh node +node trimesh Object303 + parent tin01_a02_02 + position 3.8 -0.13 2.8 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 21.0 13.0 -201.5 + bitmap tin01_wallbrick + verts 9 + 0.24 0.04 -2.8 + 0.26 -0.41 -2.8 + 0.26 -0.41 -1.68 + 0.24 0.23 -2.8 + 0.18 0.23 -2.17 + 0.26 0.67 -2.21 + 0.17 -0.14 -1.23 + 0.26 0.67 -2.8 + 0.16 0.04 -1.85 + faces 5 + 0 1 2 1 0 1 2 3 + 3 4 5 1 3 4 5 4 + 6 0 2 2 6 0 2 3 + 7 3 5 2 7 3 5 3 + 6 8 0 4 6 8 0 4 + tverts 9 + 0.383089 0.180053 0 + 0.595968 0.180053 0 + 0.595968 0.503724 0 + 0.541358 0.180053 0 + 0.543261 0.361842 0 + 0.338204 0.35057 0 + 0.468994 0.630599 0 + 0.338205 0.180054 0 + 0.384244 0.451952 0 +endnode +#Tile trimesh node +node trimesh Object299 + parent tin01_a02_02 + position 4.54 -0.13 2.8 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -41.5 13.0 -100.5 + bitmap tin01_wallcord + verts 30 + -0.79 0.67 -0.93 + -0.48 1.33 -0.46 + -0.48 0.67 -0.93 + -0.79 1.33 -0.46 + -0.48 -1.07 -0.46 + -0.79 -0.41 -0.93 + -0.48 -0.41 -0.93 + -0.79 -1.07 -0.46 + -0.79 -0.41 -1.25 + -0.04 0.13 0.2 + -0.79 0.13 0.2 + -0.04 -2.3 0.2 + -0.79 -2.3 -0.28 + -0.79 -2.3 0.2 + -0.79 -0.15 -1.12 + -0.79 0.13 -1.49 + -0.65 0.13 -1.94 + -0.65 0.04 -1.62 + -0.04 2.56 0.2 + -0.79 2.56 -0.28 + -0.79 2.56 0.2 + -0.79 0.35 -1.58 + -0.48 0.67 -2.21 + -0.79 0.67 -1.83 + -0.65 0.23 -1.98 + -0.57 -0.14 -1.23 + -0.48 -0.41 -1.68 + -0.58 0.04 -1.85 + -0.62 0.23 -2.1 + -0.56 0.23 -2.17 + faces 36 + 0 1 2 1 0 1 2 3 + 3 1 0 1 3 1 0 3 + 4 5 6 1 1 0 2 3 + 4 7 5 1 1 3 0 3 + 6 5 8 2 4 5 6 3 + 9 10 11 1 7 8 9 1 + 10 7 12 4 10 11 12 4 + 13 10 12 4 13 10 12 4 + 5 7 10 4 14 11 10 4 + 14 10 15 4 15 16 17 4 + 15 16 17 2 18 19 20 4 + 11 10 13 1 9 8 21 1 + 10 9 18 1 8 7 9 1 + 3 10 19 4 11 10 12 4 + 10 20 19 4 10 13 12 4 + 3 0 10 4 11 14 10 4 + 0 21 10 4 22 23 16 4 + 10 18 20 1 8 9 21 1 + 2 22 23 2 24 25 26 3 + 21 23 24 2 27 28 29 4 + 5 10 8 4 14 10 30 4 + 15 25 14 2 18 31 32 4 + 14 25 8 2 32 31 33 4 + 8 10 14 4 34 16 15 4 + 8 26 6 2 6 35 4 3 + 25 26 8 2 31 36 33 3 + 21 16 15 2 27 19 18 4 + 21 15 10 4 23 17 16 4 + 0 23 21 4 22 37 23 4 + 2 23 0 2 24 26 38 3 + 17 27 25 2 20 39 31 4 + 15 17 25 2 18 20 31 4 + 21 24 16 2 27 29 19 4 + 24 23 28 2 29 28 40 4 + 23 22 28 2 28 41 40 4 + 28 22 29 2 40 41 42 4 + tverts 43 + 0.447858 0.620095 0 + 0.552142 0.774855 0 + 0.552142 0.620095 0 + 0.447858 0.774855 0 + 0.42832 0.635085 0 + 0.533299 0.635085 0 + 0.533299 0.52711 0 + 0.417219 1.1186 0 + 0.417219 0.870259 0 + 1.22305 1.1186 0 + 0.350321 0.996605 0 + 0.746259 0.778557 0 + 1.15615 0.838108 0 + 1.15615 0.996604 0 + 0.528158 0.623797 0 + 0.587464 0.561999 0 + 0.494911 1.00237 0 + 0.494911 0.439938 0 + 0.567682 0.449397 0 + 0.567682 0.238855 0 + 0.60279 0.387304 0 + 1.22305 0.870259 0 + 0.315889 0.627074 0 + 0.420392 0.40754 0 + 0.428322 0.635085 0 + 0.428322 0.207907 0 + 0.5333 0.333024 0 + 0.477899 0.403767 0 + 0.351992 0.287531 0 + 0.52699 0.218177 0 + 0.528158 0.54376 0 + 0.675216 0.568198 0 + 0.64564 0.662378 0 + 0.783373 0.560892 0 + 0.673935 0.519099 0 + 0.42832 0.385324 0 + 0.783372 0.361193 0 + 0.315889 0.325013 0 + 0.5333 0.635085 0 + 0.603132 0.277157 0 + 0.527223 0.162817 0 + 0.351992 0.11131 0 + 0.527313 0.129772 0 +endnode +#Tile trimesh node +node trimesh Mesh1344 + parent tin01_a02_02 + position 5.33 0.03 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -127.0 -2.99998 126.0 + bitmap tin01_wallbrick + verts 18 + -1.27 -2.53 0.0 + -1.27 -3.7 2.34 + -1.27 -2.46 2.52 + -1.27 -1.23 2.34 + -1.27 -0.57 1.87 + -1.27 -4.36 1.87 + -1.27 -4.36 0.0 + -1.27 -0.57 0.0 + -1.27 -0.57 1.12 + -1.27 2.47 0.0 + -1.27 1.17 2.34 + -1.27 2.4 2.52 + -1.27 3.64 2.34 + -1.27 4.3 1.87 + -1.27 0.51 1.87 + -1.27 0.51 0.59 + -1.27 4.3 0.0 + -1.27 0.51 0.0 + faces 14 + 0 1 2 1 0 1 2 3 + 0 3 4 1 0 3 4 3 + 0 2 3 1 0 2 3 3 + 5 1 0 1 5 1 0 3 + 0 6 5 1 0 6 5 3 + 7 0 8 1 7 0 8 3 + 9 10 11 1 0 1 2 3 + 9 12 13 1 0 3 4 3 + 9 11 12 1 0 2 3 3 + 14 10 9 1 5 1 0 3 + 9 15 14 1 0 9 5 3 + 16 9 13 1 7 0 4 3 + 8 0 4 1 8 0 4 3 + 9 17 15 1 0 6 9 3 + tverts 10 + 1.06062 -0.0003026 0 + 1.69567 0.775027 0 + 1.05555 0.834578 0 + 0.306033 0.775027 0 + -0.0557951 0.620267 0 + 2.02789 0.620267 0 + 2.02789 -0.0003027 0 + -0.0557952 -0.0003025 0 + -0.0557952 0.372507 0 + 2.02789 0.196627 0 +endnode +#Tile trimesh node +node trimesh Object297 + parent tin01_a02_02 + position 3.82 4.78 2.73 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 30.5 -106.5 -123.0 + bitmap tin01_wallcord + verts 13 + -0.07 -1.11 -0.39 + 0.24 -0.45 -0.86 + 0.24 -1.11 -0.39 + -0.07 -0.45 -0.86 + -0.07 -0.45 -2.73 + 0.24 -0.45 -2.73 + 0.68 0.22 0.27 + -0.07 -2.35 0.27 + 0.68 -2.35 0.27 + -0.07 0.0 0.27 + -0.07 0.0 -2.73 + -0.07 -2.35 -0.21 + -0.07 0.22 0.27 + faces 12 + 0 1 2 1 0 1 2 3 + 3 1 0 1 3 1 0 3 + 4 5 1 2 4 5 1 3 + 1 3 4 2 1 3 4 3 + 6 7 8 1 6 7 8 1 + 3 9 10 4 9 10 11 4 + 9 3 0 4 10 9 12 4 + 9 0 11 4 10 12 13 4 + 6 12 9 1 6 14 15 1 + 4 3 10 4 16 9 11 4 + 6 9 7 1 6 15 7 1 + 7 9 11 4 17 10 13 4 + tverts 18 + 0.447858 0.774855 0 + 0.552141 0.620095 0 + 0.552141 0.774855 0 + 0.447858 0.620095 0 + 0.447858 -0.0004746 0 + 0.552141 -0.0004746 0 + 2.07285 1.1186 0 + 1.22305 0.870259 0 + 1.22305 1.1186 0 + 1.78415 0.623796 0 + 1.93412 0.996604 0 + 1.93412 0.0032268 0 + 1.56605 0.778557 0 + 1.15615 0.838108 0 + 2.07285 0.870258 0 + 2.00102 0.870258 0 + 1.78415 0.0032268 0 + 1.15615 0.996604 0 +endnode +#Tile trimesh node +node trimesh TDmesh940 + parent tin01_a02_02 + position 0.0 0.0 -0.2 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 0.0 20.0 + bitmap tin01_floor2 + verts 51 + -3.4 -4.78 0.2 + -3.4 -5.0 0.2 + -2.5 -2.5 0.2 + 2.5 -2.5 0.2 + 3.75 -4.33 0.2 + 4.06 -2.5 0.2 + 4.06 -4.33 0.2 + -4.06 -0.54 0.2 + -4.06 -2.5 0.2 + -3.75 -0.54 0.2 + 2.5 0.0 0.2 + 3.89 -0.09 0.2 + 3.89 0.0 0.2 + -3.75 0.54 0.2 + -3.75 0.0 0.2 + -2.5 0.0 0.2 + -2.5 2.5 0.2 + 2.5 2.5 0.2 + 3.89 0.1 0.2 + 4.06 2.5 0.2 + 4.06 0.54 0.2 + -4.06 4.33 0.2 + -4.06 2.5 0.2 + -3.75 4.33 0.2 + 2.5 5.0 0.2 + 3.4 4.78 0.2 + 3.4 5.0 0.2 + -2.5 -5.0 0.2 + 0.0 -2.5 0.2 + 0.0 -5.0 0.2 + 2.5 -5.0 0.2 + 0.0 0.0 0.2 + 0.0 2.5 0.2 + -2.5 5.0 0.2 + 0.0 5.0 0.2 + 3.75 4.33 0.2 + 3.75 4.78 0.2 + 4.06 4.33 0.2 + 4.06 -0.54 0.2 + 3.4 -4.78 0.2 + 3.4 -5.0 0.2 + -3.75 -4.33 0.2 + -3.75 -4.78 0.2 + -4.06 -4.33 0.2 + -4.06 0.54 0.2 + -3.4 4.78 0.2 + -3.4 5.0 0.2 + 3.75 -4.78 0.2 + -3.75 4.78 0.2 + 4.04 0.1 0.2 + 4.04 -0.09 0.2 + faces 58 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 6 5 4 1 6 5 4 1 + 7 8 9 1 7 8 9 1 + 2 9 8 1 2 9 8 1 + 10 3 11 1 10 3 11 1 + 11 12 10 1 11 12 10 1 + 13 14 15 1 13 14 15 1 + 15 16 13 1 15 16 13 1 + 17 18 19 1 17 18 19 1 + 20 19 18 1 20 19 18 1 + 21 22 23 1 21 22 23 1 + 16 23 22 1 16 23 22 1 + 24 17 25 1 24 17 25 1 + 25 26 24 1 25 26 24 1 + 2 27 28 1 2 27 28 1 + 29 28 27 1 29 28 27 1 + 28 29 3 1 28 29 3 1 + 30 3 29 1 30 3 29 1 + 15 2 31 1 15 2 31 1 + 28 31 2 1 28 31 2 1 + 31 28 10 1 31 28 10 1 + 3 10 28 1 3 10 28 1 + 16 15 32 1 16 15 32 1 + 31 32 15 1 31 32 15 1 + 32 31 17 1 32 31 17 1 + 10 17 31 1 10 17 31 1 + 33 16 34 1 33 16 34 1 + 32 34 16 1 32 34 16 1 + 34 32 24 1 34 32 24 1 + 17 24 32 1 17 24 32 1 + 17 19 25 1 17 19 25 1 + 25 35 36 1 25 35 36 1 + 19 37 35 1 19 37 35 1 + 17 10 18 1 17 10 18 1 + 10 12 18 1 10 12 18 1 + 3 5 11 1 3 5 11 1 + 5 38 11 1 5 38 11 1 + 4 30 39 1 4 30 39 1 + 3 30 4 1 3 30 4 1 + 30 40 39 1 30 40 39 1 + 27 2 1 1 27 2 1 1 + 2 8 0 1 2 8 0 1 + 0 41 42 1 0 41 42 1 + 8 43 41 1 8 43 41 1 + 2 15 9 1 2 15 9 1 + 15 14 9 1 15 14 9 1 + 16 22 13 1 16 22 13 1 + 22 44 13 1 22 44 13 1 + 23 33 45 1 23 33 45 1 + 16 33 23 1 16 33 23 1 + 33 46 45 1 33 46 45 1 + 35 25 19 1 35 25 19 1 + 39 47 4 1 39 47 4 1 + 41 0 8 1 41 0 8 1 + 45 48 23 1 45 48 23 1 + 49 20 18 1 49 20 18 1 + 11 38 50 1 11 38 50 1 + tverts 51 + 0.319998 -3.95661 0 + 0.319998 -4.0 0 + 0.499999 -3.5 0 + 1.5 -3.5 0 + 1.75 -3.86603 0 + 1.81299 -3.5 0 + 1.81299 -3.86603 0 + 0.187012 -3.10741 0 + 0.187012 -3.5 0 + 0.249999 -3.10741 0 + 1.5 -3.0 0 + 1.77735 -3.01768 0 + 1.77735 -3.0 0 + 0.249999 -2.89259 0 + 0.249999 -3.0 0 + 0.499999 -3.0 0 + 0.499999 -2.5 0 + 1.5 -2.5 0 + 1.77735 -2.97957 0 + 1.81299 -2.5 0 + 1.81299 -2.89259 0 + 0.187012 -2.13397 0 + 0.187012 -2.5 0 + 0.249999 -2.13397 0 + 1.5 -2.0 0 + 1.68 -2.04339 0 + 1.68 -2.0 0 + 0.499999 -4.0 0 + 0.999999 -3.5 0 + 0.999999 -4.0 0 + 1.5 -4.0 0 + 0.999999 -3.0 0 + 0.999999 -2.5 0 + 0.499999 -2.0 0 + 0.999999 -2.0 0 + 1.75 -2.13397 0 + 1.75 -2.04339 0 + 1.81299 -2.13397 0 + 1.81299 -3.10741 0 + 1.68 -3.95661 0 + 1.68 -4.0 0 + 0.249999 -3.86603 0 + 0.249999 -3.95661 0 + 0.187012 -3.86603 0 + 0.187012 -2.89259 0 + 0.319998 -2.04338 0 + 0.319998 -2.0 0 + 1.75 -3.95661 0 + 0.249999 -2.04339 0 + 1.8087 -2.97957 0 + 1.80849 -3.01768 0 +endnode +#Tile trimesh node +node trimesh Box82 + parent tin01_a02_02 + position 3.78 0.52 0.01 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 19.0 -4.0 16.0 + bitmap tin01_wallcord + verts 8 + 0.1 -0.1 0.33 + 0.28 -0.03 0.33 + 0.28 0.02 0.33 + 0.1 -0.06 0.33 + 0.1 -0.06 -0.01 + 0.28 -0.03 -0.01 + 0.28 0.02 -0.01 + 0.1 -0.02 -0.01 + faces 8 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 5 1 2 4 5 6 5 + 1 0 4 2 6 7 4 5 + 6 7 3 2 5 4 7 6 + 3 2 6 2 7 6 5 6 + 7 4 0 4 8 9 10 3 + 0 3 7 4 10 11 8 3 + tverts 12 + 0.747061 0.0115885 0 + 0.929876 0.0140039 0 + 0.929876 0.0381585 0 + 0.747061 0.0381585 0 + 0.533917 -0.0002956 0 + 0.594372 -0.0002956 0 + 0.594372 0.113038 0 + 0.533917 0.113038 0 + 0.43524 0.0045353 0 + 0.502341 0.0045353 0 + 0.502341 0.113038 0 + 0.433266 0.117869 0 +endnode +#Tile trimesh node +node trimesh Box80 + parent tin01_a02_02 + position 3.18 0.34 0.02 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -3.5 0.0 16.0 + bitmap tin01_wallcord + verts 11 + 0.11 -0.25 0.02 + -0.17 -0.05 -0.01 + 0.12 0.04 -0.01 + -0.17 0.29 0.1 + -0.25 0.14 0.16 + -0.22 -0.08 0.1 + -0.07 0.11 0.22 + -0.29 0.14 0.01 + 0.11 -0.29 0.18 + 0.22 0.17 0.33 + -0.09 0.28 0.26 + faces 18 + 0 1 2 1 0 1 2 2 + 3 2 1 2 3 2 1 2 + 4 5 6 1 4 5 6 1 + 1 0 5 4 7 8 9 5 + 5 4 7 2 9 10 11 5 + 5 8 6 8 5 12 6 4 + 8 5 0 16 13 9 8 4 + 8 9 10 1 12 14 15 6 + 6 7 4 4 16 17 18 3 + 7 6 3 16 19 20 3 3 + 7 1 5 32 11 7 9 5 + 3 1 7 8 3 1 19 2 + 3 6 10 32 3 20 21 3 + 8 10 6 2 12 15 6 6 + 3 10 9 4 22 23 24 3 + 0 9 8 32 25 24 26 2 + 3 9 2 64 22 24 27 2 + 0 2 9 8 25 27 24 2 + tverts 28 + 0.560371 0.374095 0 + 0.500341 0.393377 0 + 0.504827 0.483279 0 + 0.359779 0.466791 0 + 0.396587 0.4289 0 + 0.47752 0.389081 0 + 0.444026 0.490151 0 + 0.485008 0.46019 0 + 0.62481 0.471682 0 + 0.478027 0.517589 0 + 0.35889 0.518683 0 + 0.367977 0.45768 0 + 0.618848 0.467163 0 + 0.63156 0.542485 0 + 0.480967 0.610919 0 + 0.381152 0.522141 0 + 0.465743 0.555794 0 + 0.351312 0.474286 0 + 0.391752 0.538419 0 + 0.397358 0.374095 0 + 0.463843 0.488043 0 + 0.381975 0.524561 0 + 0.347681 0.547575 0 + 0.407834 0.613932 0 + 0.546104 0.616346 0 + 0.60852 0.392866 0 + 0.653804 0.447606 0 + 0.501339 0.438857 0 +endnode +#Tile trimesh node +node trimesh Object298 + parent tin01_a02_02 + position -4.84 -0.13 2.89 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 71.5 13.0 -139.0 + bitmap tin01_wallcord + verts 21 + 1.09 0.13 0.11 + 0.34 0.13 0.11 + 0.34 -2.3 0.11 + 1.09 -1.07 -0.55 + 1.09 -2.3 -0.37 + 1.09 -2.3 0.11 + 1.09 -0.41 -1.02 + 1.09 0.13 -2.89 + 1.09 -0.41 -2.89 + 0.34 2.56 0.11 + 1.09 1.33 -0.55 + 1.09 2.56 -0.37 + 1.09 2.56 0.11 + 1.09 0.67 -1.02 + 1.09 0.67 -2.89 + 0.78 1.33 -0.55 + 0.78 0.67 -1.02 + 0.78 0.67 -2.89 + 0.78 -1.07 -0.55 + 0.78 -0.41 -1.02 + 0.78 -0.41 -2.89 + faces 22 + 0 1 2 1 0 1 2 1 + 3 0 4 2 3 4 5 4 + 0 5 4 2 4 6 5 4 + 3 6 0 2 3 7 4 4 + 7 0 6 2 8 4 7 4 + 6 8 7 2 7 9 8 4 + 0 2 5 1 0 2 10 1 + 1 0 9 1 1 0 2 1 + 0 10 11 2 4 3 5 4 + 12 0 11 2 6 4 5 4 + 13 10 0 2 7 3 4 4 + 13 0 7 2 7 4 8 4 + 7 14 13 2 8 9 7 4 + 9 0 12 1 2 0 10 1 + 15 13 16 1 11 12 13 3 + 15 10 13 1 11 14 12 3 + 14 17 13 4 15 16 12 3 + 16 13 17 4 13 12 16 3 + 6 18 19 1 12 11 13 3 + 3 18 6 1 14 11 12 3 + 20 8 6 4 16 15 12 3 + 6 19 20 4 12 13 16 3 + tverts 17 + 0.417219 0.870259 0 + 0.417219 1.1186 0 + 1.22305 1.1186 0 + 0.746259 0.778557 0 + 0.350321 0.996605 0 + 1.15615 0.838108 0 + 1.15615 0.996604 0 + 0.528158 0.623797 0 + 0.350321 0.0032271 0 + 0.528158 0.0032271 0 + 1.22305 0.870259 0 + 0.552142 0.774855 0 + 0.447858 0.620095 0 + 0.552142 0.620095 0 + 0.447858 0.774855 0 + 0.447858 -0.0004746 0 + 0.552142 -0.0004745 0 +endnode +#Tile trimesh node +node trimesh Box1199 + parent tin01_a02_02 + position 3.73 -0.67 -0.06 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -2.5 11.5 12.5 + bitmap tin01_wallcord + verts 8 + 0.27 -0.06 0.16 + 0.24 -0.07 0.06 + -0.3 -0.15 0.06 + -0.28 -0.13 0.19 + -0.32 0.12 0.16 + 0.13 0.38 0.18 + -0.2 0.29 0.16 + -0.29 0.2 0.06 + faces 10 + 0 1 2 1 0 1 2 2 + 2 1 3 2 3 4 5 5 + 3 0 4 4 6 7 8 4 + 0 3 1 8 9 5 4 4 + 0 5 6 2 7 10 11 6 + 4 2 3 16 12 13 14 3 + 2 4 7 8 13 12 15 3 + 7 4 6 1 15 12 16 3 + 0 6 4 32 7 11 8 6 + 7 6 5 4 17 18 19 3 + tverts 20 + 0.640221 0.530995 0 + 0.560371 0.374095 0 + 0.500341 0.393377 0 + 0.426411 0.479784 0 + 0.645538 0.479784 0 + 0.434684 0.530429 0 + 0.429637 0.365154 0 + 0.636321 0.495239 0 + 0.363679 0.454046 0 + 0.657818 0.52152 0 + 0.491352 0.634846 0 + 0.380446 0.541199 0 + 0.470467 0.509889 0 + 0.578752 0.467431 0 + 0.573538 0.518482 0 + 0.442945 0.471197 0 + 0.410812 0.519435 0 + 0.359779 0.466791 0 + 0.381975 0.524561 0 + 0.511943 0.625905 0 +endnode +#Tile trimesh node +node trimesh Box1197 + parent tin01_a02_02 + position 3.78 -0.51 0.01 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 19.0 -7.0 16.0 + bitmap tin01_wallcord + verts 8 + 0.1 -0.11 0.33 + 0.28 -0.03 0.33 + 0.28 0.02 0.33 + 0.1 -0.06 0.33 + 0.1 -0.16 -0.01 + 0.28 -0.03 -0.01 + 0.28 0.02 -0.01 + 0.1 -0.12 -0.01 + faces 8 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 5 1 2 4 5 6 5 + 1 0 4 2 6 7 4 5 + 6 7 3 2 5 4 7 6 + 3 2 6 2 7 6 5 6 + 7 4 0 4 8 9 10 3 + 0 3 7 4 10 11 8 3 + tverts 12 + 0.747061 0.0115885 0 + 0.929876 0.0140039 0 + 0.929876 0.0381585 0 + 0.747061 0.0381585 0 + 0.533917 -0.0002956 0 + 0.594372 -0.0002956 0 + 0.594372 0.113038 0 + 0.533917 0.113038 0 + 0.43524 0.0045353 0 + 0.502341 0.0045353 0 + 0.502341 0.113038 0 + 0.433266 0.117869 0 +endnode +#Tile trimesh node +node trimesh Box1198 + parent tin01_a02_02 + position 3.67 0.2 -0.09 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 4.0 2.0 14.0 + bitmap tin01_wallcord + verts 7 + -0.03 0.07 0.09 + 0.11 0.16 0.09 + 0.16 0.11 0.16 + -0.08 0.02 0.09 + 0.08 0.06 0.19 + -0.03 -0.13 0.18 + -0.01 0.17 0.09 + faces 10 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 0 3 4 2 0 3 4 5 + 5 4 3 2 5 4 3 4 + 5 3 2 1 5 3 2 6 + 6 4 1 2 6 4 1 3 + 6 0 4 2 6 0 4 5 + 1 0 6 1 1 0 6 2 + 1 4 2 2 1 4 2 3 + 5 2 4 2 5 2 4 6 + tverts 7 + 0.454988 0.438606 0 + 0.314426 0.526462 0 + 0.336622 0.595597 0 + 0.515018 0.415531 0 + 0.41849 0.551895 0 + 0.594867 0.603297 0 + 0.352005 0.415531 0 +endnode +#Tile trimesh node +node trimesh Box1196 + parent tin01_a02_02 + position 4.05 0.01 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -8.5 -0.5 59.0 + bitmap tin01_plank + verts 11 + -0.13 0.09 0.7 + -0.16 0.09 0.0 + -0.16 0.09 0.82 + -0.16 -0.01 0.86 + -0.16 -0.01 0.0 + -0.16 -0.1 0.0 + -0.16 -0.1 1.18 + -0.01 -0.1 0.0 + -0.09 -0.1 0.95 + -0.01 0.09 0.0 + -0.07 0.09 0.63 + faces 9 + 0 1 2 1 0 1 2 6 + 3 2 1 2 3 4 5 3 + 4 5 3 2 6 1 7 3 + 3 5 6 2 7 1 8 3 + 7 6 5 1 9 10 5 5 + 7 8 6 1 9 11 10 5 + 9 0 10 1 12 0 13 6 + 9 1 0 1 12 1 0 6 + 1 4 3 2 14 6 7 3 + tverts 15 + 0.425188 0.463534 0 + 0.439511 0.0 0 + 0.439511 0.537877 0 + 0.395996 0.563349 0 + 0.335504 0.541961 0 + 0.335504 0.0 0 + 0.391812 0.0019978 0 + 0.397489 0.561358 0 + 0.439511 0.77731 0 + 0.440048 0.0044324 0 + 0.337099 0.775359 0 + 0.373276 0.626318 0 + 0.335883 0.0 0 + 0.379376 0.400551 0 + 0.339075 0.0042067 0 +endnode +#Tile trimesh node +node trimesh Object302 + parent tin01_a02_02 + position 4.27 -4.65 2.93 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -14.5 93.5 -143.0 + bitmap tin01_wallcord + verts 13 + -0.21 0.32 -1.06 + -0.52 0.98 -0.59 + -0.21 0.98 -0.59 + -0.52 0.32 -1.06 + -0.21 0.32 -2.93 + -0.52 0.32 -2.93 + -0.52 2.22 0.07 + 0.23 -0.35 0.07 + 0.23 2.22 0.07 + -0.52 -0.13 0.07 + -0.52 -0.13 -2.93 + -0.52 2.22 -0.41 + -0.52 -0.35 0.07 + faces 12 + 0 1 2 1 0 1 2 3 + 0 3 1 1 0 3 1 3 + 4 5 0 2 4 5 0 3 + 3 0 5 2 3 0 5 3 + 6 7 8 1 6 7 8 1 + 9 3 10 4 9 10 11 4 + 3 9 1 4 10 9 12 4 + 1 9 11 4 12 9 13 4 + 12 7 9 1 14 7 15 1 + 3 5 10 4 10 16 11 4 + 9 7 6 1 15 7 6 1 + 9 6 11 4 9 17 13 4 + tverts 18 + 0.552141 0.620095 0 + 0.447858 0.774855 0 + 0.552141 0.774855 0 + 0.447858 0.620095 0 + 0.552141 -0.0004746 0 + 0.447858 -0.0004746 0 + 1.22305 0.870259 0 + 2.07285 1.1186 0 + 1.22305 1.1186 0 + 1.93412 0.996604 0 + 1.78415 0.623796 0 + 1.93412 0.0032268 0 + 1.56605 0.778557 0 + 1.15615 0.838108 0 + 2.07285 0.870258 0 + 2.00102 0.870258 0 + 1.78415 0.0032268 0 + 1.15615 0.996604 0 +endnode +#Tile trimesh node +node trimesh Object301 + parent tin01_a02_02 + position -4.24 -4.63 2.97 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 11.5 91.5 -147.0 + bitmap tin01_wallcord + verts 13 + -0.26 -0.37 0.03 + 0.49 2.2 0.03 + -0.26 2.2 0.03 + 0.49 0.3 -1.1 + 0.49 -0.15 0.03 + 0.49 -0.15 -2.97 + 0.49 0.96 -0.63 + 0.49 2.2 -0.45 + 0.49 -0.37 0.03 + 0.49 0.3 -2.97 + 0.18 0.3 -1.1 + 0.18 0.96 -0.63 + 0.18 0.3 -2.97 + faces 12 + 0 1 2 1 0 1 2 1 + 3 4 5 2 3 4 5 4 + 4 3 6 2 4 3 6 4 + 4 6 7 2 4 6 7 4 + 0 8 4 1 0 8 9 1 + 9 3 5 2 10 3 5 4 + 0 4 1 1 0 9 1 1 + 1 4 7 2 11 4 7 4 + 6 10 11 1 12 13 14 3 + 3 10 6 1 15 13 12 3 + 9 12 10 4 16 17 13 3 + 10 3 9 4 13 15 16 3 + tverts 18 + 2.07285 1.1186 0 + 1.22305 0.870259 0 + 1.22305 1.1186 0 + 1.78415 0.623796 0 + 1.93412 0.996604 0 + 1.93412 0.0032268 0 + 1.56605 0.778557 0 + 1.15615 0.838108 0 + 2.07285 0.870258 0 + 2.00102 0.870258 0 + 1.78415 0.0032268 0 + 1.15615 0.996604 0 + 0.447858 0.774855 0 + 0.552141 0.620095 0 + 0.552141 0.774855 0 + 0.447858 0.620095 0 + 0.447858 -0.0004746 0 + 0.552141 -0.0004746 0 +endnode +node aabb Object599 + parent tin01_a02_02 + position 0.0 0.0 1.5 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.0 1.0 0.0 + multimaterial 20 + Dirt + Obscuring + Grass + Stone + Wood + Water + Nonwalk + Transparent + Carpet + Metal + Puddles + Swamp + Mud + Leaves + Lava + BottomlessPit + DeepWater + Door + Snow + Sand + ambient 0.0 0.0 0.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10.0 + bitmap Obscuring + verts 38 + 5.0 -5.0 1.5 + 5.0 5.0 1.5 + 3.75 5.0 1.5 + 3.75 -5.0 1.5 + 3.75 4.78 -1.5 + 3.75 0.6 -1.5 + 2.89 0.28 -1.5 + 3.37 -0.06 -1.5 + 3.75 -4.78 -1.5 + 2.89 0.6 -1.5 + 3.4 4.78 -1.5 + 3.38 -0.84 -1.5 + 3.4 -4.78 -1.5 + 3.4 5.0 -1.5 + 3.4 -5.0 -1.5 + -5.0 5.0 1.5 + -5.0 -5.0 1.5 + -3.75 -5.0 1.5 + -3.75 5.0 1.5 + -3.75 -4.78 -1.5 + -3.75 -0.2 -1.5 + -3.34 0.17 -1.5 + -3.75 0.17 -1.5 + -3.75 4.78 -1.5 + -3.34 -0.2 -1.5 + -3.4 -4.78 -1.5 + -3.4 4.78 -1.5 + -3.4 -5.0 -1.5 + -3.4 5.0 -1.5 + -2.27 -5.0 -1.5 + 2.28 -5.0 -1.5 + 2.31 0.38 -1.5 + -2.21 -0.2 -1.5 + 2.31 5.0 -1.5 + -2.35 5.0 -1.5 + 3.75 -0.81 -1.5 + -3.75 0.39 0.09 + 3.75 -0.07 -0.01 + faces 58 + 0 1 2 1 0 1 2 2 + 0 2 3 1 0 3 4 2 + 3 2 37 2 4 3 32 2 + 5 6 7 1 6 7 8 7 + 9 6 5 1 9 7 6 7 + 10 9 5 1 3 6 10 4 + 5 4 10 1 6 3 5 4 + 11 12 8 1 11 12 13 4 + 12 11 6 1 12 11 14 4 + 2 10 4 4 3 5 15 2 + 2 13 10 8 3 5 15 2 + 3 8 12 4 4 12 13 2 + 3 12 14 8 4 12 13 2 + 15 16 17 1 0 1 2 2 + 15 17 18 1 0 3 4 2 + 18 17 36 2 4 3 31 2 + 20 21 22 1 6 7 11 7 + 24 21 20 1 9 7 6 7 + 25 24 20 1 3 6 10 4 + 20 19 25 1 6 3 5 4 + 21 26 23 1 11 12 13 4 + 23 22 21 1 12 11 14 4 + 17 25 19 4 3 5 15 2 + 17 27 25 8 3 5 15 2 + 18 23 26 4 4 12 13 2 + 18 26 28 8 4 12 13 2 + 29 30 31 1 16 17 18 9 + 32 24 29 1 19 9 16 4 + 33 31 9 1 20 21 22 4 + 24 25 29 1 6 3 5 4 + 9 10 33 1 11 12 13 4 + 32 21 24 1 23 11 24 4 + 30 12 6 1 3 5 6 4 + 12 30 14 1 3 5 15 4 + 26 34 28 1 12 13 25 4 + 32 26 21 1 23 12 11 4 + 8 35 11 1 12 11 14 4 + 5 11 35 1 6 26 11 7 + 5 7 11 1 6 8 26 7 + 6 11 7 1 11 14 27 4 + 10 13 33 1 12 13 25 4 + 29 31 32 1 28 29 23 9 + 25 27 29 1 3 5 15 4 + 6 31 30 1 6 21 3 4 + 6 9 31 1 6 22 21 4 + 32 31 33 1 19 18 30 9 + 32 33 34 1 23 12 13 9 + 34 26 32 1 12 13 23 4 + 36 17 19 2 31 3 5 2 + 37 2 4 2 32 3 5 2 + 4 5 37 0 3 6 32 2 + 5 35 37 0 6 11 32 2 + 37 35 8 0 32 11 13 2 + 37 8 3 0 32 13 4 2 + 19 20 36 0 3 6 31 2 + 20 22 36 0 6 11 31 2 + 22 23 18 0 11 13 4 2 + 22 18 36 0 11 4 31 2 + tverts 33 + 312.663 -687.663 0 + 312.663 312.337 0 + 262.663 262.337 0 + 262.663 -431.024 0 + 262.663 -681.253 0 + 262.663 -431.024 0 + 262.663 -533.047 0 + 262.663 -546.085 0 + 262.663 -547.529 0 + 262.663 -536.685 0 + 262.663 -533.047 0 + 262.663 -549.667 0 + 262.663 -681.324 0 + 262.663 -681.324 0 + 262.663 -549.667 0 + 262.663 -431.024 0 + 262.663 -434.663 0 + 262.663 -434.663 0 + 262.663 -549.665 0 + 262.663 -551.246 0 + 262.663 -674.103 0 + 262.663 -546.027 0 + 262.663 -542.446 0 + 262.663 -554.828 0 + 262.663 -540.267 0 + 262.663 -681.324 0 + 262.663 -548.66 0 + 262.663 -549.667 0 + 262.663 -438.245 0 + 262.663 -553.247 0 + 262.663 -677.742 0 + 262.663 -563.409 0 + 262.663 -555.137 0 + aabb -5.0 -5.0 -1.5 5.0 5.0 1.5 -1 + -5.0 -5.0 -1.5 2.31 5.0 1.5 -1 + -5.0 -5.0 -1.5 2.31 5.0 1.5 -1 + -3.75 -5.0 -1.5 -2.27 0.39 1.5 -1 + -3.75 -5.0 -1.5 -2.27 -4.78 1.5 -1 + -3.4 -5.0 -1.5 -2.27 -4.78 -1.5 42 + -3.75 -5.0 -1.5 -3.4 -4.78 1.5 -1 + -3.75 -5.0 -1.5 -3.4 -4.78 1.5 22 + -3.75 -5.0 -1.5 -3.4 -4.78 1.5 23 + -3.75 -5.0 -1.5 -2.27 0.39 1.5 -1 + -3.75 -5.0 -1.5 -2.27 -0.2 -1.5 -1 + -3.4 -5.0 -1.5 -2.27 -0.2 -1.5 29 + -3.75 -4.78 -1.5 -3.4 -0.2 -1.5 19 + -3.75 -5.0 -1.5 -3.75 0.39 1.5 48 + -5.0 -5.0 -1.5 2.31 5.0 1.5 -1 + -5.0 -5.0 -1.5 2.31 5.0 1.5 -1 + -5.0 -5.0 -1.5 -2.21 5.0 1.5 -1 + -3.34 -5.0 -1.5 -2.21 -0.2 -1.5 27 + -5.0 -5.0 -1.5 -3.34 5.0 1.5 -1 + -3.75 -4.78 -1.5 -3.34 -0.2 -1.5 18 + -5.0 -5.0 1.5 -3.75 5.0 1.5 13 + -3.75 -5.0 -1.5 2.31 0.39 0.09 -1 + -3.75 -4.78 -1.5 -3.75 0.39 0.09 54 + -2.27 -5.0 -1.5 2.31 0.38 -1.5 41 + -3.75 -0.2 -1.5 -2.21 0.17 -1.5 -1 + -3.75 -0.2 -1.5 -3.34 0.17 -1.5 -1 + -3.75 -0.2 -1.5 -3.34 0.17 -1.5 16 + -3.75 -0.2 -1.5 -3.34 0.17 -1.5 17 + -3.34 -0.2 -1.5 -2.21 0.17 -1.5 31 + -5.0 -5.0 -1.5 2.31 5.0 1.5 -1 + -5.0 -5.0 -1.5 -2.21 5.0 1.5 -1 + -3.75 -5.0 -1.5 -3.75 5.0 1.5 -1 + -3.75 -0.2 -1.5 -3.75 0.39 0.09 55 + -3.75 -5.0 0.09 -3.75 5.0 1.5 15 + -5.0 -5.0 -1.5 -2.21 5.0 1.5 -1 + -5.0 -5.0 -1.5 -2.21 5.0 1.5 -1 + -3.4 -0.2 -1.5 -2.21 4.78 -1.5 35 + -5.0 -5.0 1.5 -3.75 5.0 1.5 14 + -3.75 0.17 -1.5 -3.34 5.0 1.5 -1 + -3.75 0.17 -1.5 -3.34 4.78 -1.5 21 + -3.75 0.17 -1.5 -3.75 5.0 1.5 57 + -3.75 -0.2 -1.5 2.31 5.0 1.5 -1 + -3.75 0.17 -1.5 -2.35 5.0 1.5 -1 + -3.75 0.17 -1.5 -3.34 5.0 1.5 -1 + -3.75 0.17 -1.5 -3.34 4.78 -1.5 20 + -3.75 0.17 -1.5 -3.75 5.0 1.5 56 + -3.75 4.78 -1.5 -2.35 5.0 1.5 -1 + -3.4 4.78 -1.5 -2.35 5.0 -1.5 34 + -3.75 4.78 -1.5 -3.4 5.0 1.5 -1 + -3.75 4.78 -1.5 -3.4 5.0 1.5 24 + -3.75 4.78 -1.5 -3.4 5.0 1.5 25 + -3.4 -0.2 -1.5 2.31 5.0 -1.5 -1 + -3.4 -0.2 -1.5 -2.21 5.0 -1.5 47 + -2.35 -0.2 -1.5 2.31 5.0 -1.5 46 + -2.27 -5.0 -1.5 5.0 5.0 1.5 -1 + -2.27 -5.0 -1.5 5.0 5.0 1.5 -1 + -2.27 -5.0 -1.5 3.75 0.38 1.5 -1 + -2.27 -5.0 -1.5 3.4 0.38 -1.5 -1 + -2.27 -5.0 -1.5 2.31 0.38 -1.5 26 + 2.28 -5.0 -1.5 3.4 0.28 -1.5 32 + 2.28 -5.0 -1.5 3.75 -0.07 1.5 -1 + 2.28 -5.0 -1.5 3.75 -4.78 1.5 -1 + 2.28 -5.0 -1.5 3.4 -4.78 -1.5 33 + 3.4 -5.0 -1.5 3.75 -4.78 1.5 -1 + 3.4 -5.0 -1.5 3.75 -4.78 1.5 12 + 3.4 -5.0 -1.5 3.75 -4.78 1.5 11 + 3.38 -5.0 -1.5 3.75 -0.07 1.5 -1 + 3.38 -4.78 -1.5 3.75 -0.84 -1.5 7 + 3.75 -5.0 -1.5 3.75 -0.07 1.5 53 + 2.28 -5.0 -1.5 5.0 5.0 1.5 -1 + 2.28 -5.0 -1.5 5.0 5.0 1.5 -1 + 3.38 -4.78 -1.5 3.75 -0.07 -0.01 -1 + 3.38 -4.78 -1.5 3.75 -0.81 -1.5 36 + 3.75 -4.78 -1.5 3.75 -0.07 -0.01 52 + 2.28 -5.0 -1.5 5.0 5.0 1.5 -1 + 2.89 -5.0 -1.5 5.0 5.0 1.5 -1 + 2.89 -4.78 -1.5 3.4 0.28 -1.5 8 + 3.75 -5.0 1.5 5.0 5.0 1.5 1 + 2.28 -5.0 -1.5 2.89 0.38 -1.5 43 + 2.89 -0.84 -1.5 3.75 0.6 -0.01 -1 + 2.89 -0.84 -1.5 3.75 0.6 -1.5 -1 + 3.38 -0.84 -1.5 3.75 0.6 -1.5 37 + 2.89 -0.84 -1.5 3.75 0.6 -1.5 -1 + 2.89 -0.84 -1.5 3.38 0.28 -1.5 39 + 3.37 -0.84 -1.5 3.75 0.6 -1.5 38 + 3.75 -0.81 -1.5 3.75 0.6 -0.01 51 + -2.21 -5.0 -1.5 5.0 5.0 1.5 -1 + -2.21 -5.0 -1.5 5.0 5.0 1.5 -1 + 2.31 -5.0 -1.5 3.75 5.0 1.5 -1 + 2.89 -5.0 -1.5 3.75 5.0 1.5 -1 + 3.75 -5.0 -0.01 3.75 5.0 1.5 2 + 2.89 -0.06 -1.5 3.75 0.6 -1.5 3 + 2.31 0.28 -1.5 3.75 0.6 -1.5 -1 + 2.31 0.28 -1.5 2.89 0.6 -1.5 44 + 2.89 0.28 -1.5 3.75 0.6 -1.5 4 + -2.21 -5.0 -1.5 5.0 5.0 1.5 -1 + -2.21 -5.0 -1.5 5.0 5.0 1.5 -1 + 3.75 -5.0 1.5 5.0 5.0 1.5 0 + -2.21 -0.2 -1.5 3.75 5.0 -0.01 -1 + -2.21 -0.2 -1.5 2.31 5.0 -1.5 45 + 3.75 -0.07 -1.5 3.75 4.78 -0.01 50 + 2.31 0.38 -1.5 3.75 5.0 -1.5 -1 + 2.31 0.38 -1.5 2.89 5.0 -1.5 28 + 2.89 0.6 -1.5 3.75 4.78 -1.5 5 + 2.31 -0.07 -1.5 3.75 5.0 1.5 -1 + 2.31 -0.07 -1.5 3.75 5.0 1.5 -1 + 3.75 -0.07 -1.5 3.75 5.0 1.5 49 + 2.31 0.6 -1.5 3.75 5.0 -1.5 -1 + 3.4 0.6 -1.5 3.75 4.78 -1.5 6 + 2.31 0.6 -1.5 3.4 5.0 -1.5 30 + 2.31 4.78 -1.5 3.75 5.0 1.5 -1 + 2.31 4.78 -1.5 3.4 5.0 -1.5 40 + 3.4 4.78 -1.5 3.75 5.0 1.5 -1 + 3.4 4.78 -1.5 3.75 5.0 1.5 10 + 3.4 4.78 -1.5 3.75 5.0 1.5 9 +endnode +#Tile trimesh node +node trimesh Box1191 + parent tin01_a02_02 + position -3.73 0.03 1.36 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 1.0 -3.0 43.5 + bitmap tin01_cloack + verts 11 + 0.04 0.16 0.87 + -0.02 0.16 0.87 + 0.04 -0.01 0.87 + -0.02 -0.01 0.87 + 0.04 0.16 0.0 + -0.02 0.16 0.0 + -0.02 -0.22 0.0 + 0.04 -0.22 0.0 + 0.04 -0.22 0.87 + -0.02 -0.22 0.87 + 0.04 -0.01 0.0 + faces 12 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 5 1 2 4 5 6 5 + 1 0 4 2 6 7 4 5 + 6 7 8 2 8 9 10 6 + 8 9 6 2 10 11 8 6 + 7 10 8 4 12 13 14 3 + 2 8 10 4 15 14 13 3 + 3 9 2 1 3 16 2 1 + 8 2 9 1 17 2 16 1 + 10 4 2 4 13 18 15 3 + 0 2 4 4 19 15 18 3 + tverts 20 + 0.898467 0.223245 0 + 1.00147 0.223245 0 + 0.898467 0.0028619 0 + 1.00147 0.002862 0 + 0.500313 -0.0235639 0 + 0.499191 0.0350445 0 + 0.993075 0.0356416 0 + 0.994198 -0.0229667 0 + 0.499191 0.035044 0 + 0.500313 -0.0235643 0 + 0.994198 -0.0229672 0 + 0.993075 0.0356412 0 + 0.49411 0.221873 0 + 0.49411 0.0003982 0 + 0.998131 0.221873 0 + 0.998131 0.0003981 0 + 1.00147 0.224244 0 + 0.898468 0.224244 0 + 0.49411 0.219901 0 + 0.998131 0.219901 0 +endnode +#Tile trimesh node +node trimesh Mesh1345 + parent tin01_a02_02 + position -7.03 -0.19 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 297.0 19.0 126.0 + bitmap tin01_wallbrick + verts 16 + 2.97 -3.48 2.34 + 2.97 -2.31 0.0 + 2.97 -2.24 2.52 + 2.97 -1.01 2.34 + 2.97 -0.35 1.87 + 2.97 -4.14 1.87 + 2.97 -4.14 0.0 + 2.97 -0.35 0.0 + 2.97 1.39 2.34 + 2.97 2.69 0.0 + 2.97 2.62 2.52 + 2.97 3.86 2.34 + 2.97 4.52 1.87 + 2.97 0.73 1.87 + 2.97 0.73 0.0 + 2.97 4.52 0.0 + faces 12 + 0 1 2 1 0 1 2 3 + 3 1 4 1 3 1 4 3 + 2 1 3 1 2 1 3 3 + 0 5 1 1 0 5 1 3 + 6 1 5 1 6 1 5 3 + 1 7 4 1 1 7 4 3 + 8 9 10 1 0 1 2 3 + 11 9 12 1 3 1 4 3 + 10 9 11 1 2 1 3 3 + 8 13 9 1 0 5 1 3 + 14 9 13 1 6 1 5 3 + 9 15 12 1 1 7 4 3 + tverts 8 + 1.69567 0.775027 0 + 1.06062 -0.0003026 0 + 0.850303 0.834578 0 + 0.306033 0.775027 0 + -0.0557951 0.620267 0 + 2.02789 0.620267 0 + 2.02789 -0.0003027 0 + -0.0557952 -0.0003025 0 +endnode +#Tile trimesh node +node trimesh Box2155 + parent tin01_a02_02 + position -3.54 0.01 1.96 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 12.0 0.5 -19.5 + bitmap tin01_deco + verts 26 + 0.32 0.16 -0.23 + -0.02 0.16 -0.23 + -0.02 0.25 0.09 + 0.39 0.25 0.09 + -0.02 -0.15 -0.23 + 0.32 -0.15 -0.23 + 0.39 -0.24 0.09 + -0.02 -0.24 0.09 + 0.29 -0.1 -0.28 + 0.29 0.07 -0.28 + 0.01 -0.1 -0.28 + 0.01 0.07 -0.28 + -0.02 0.02 -0.03 + -0.02 0.02 0.02 + -0.02 -0.02 0.02 + -0.02 -0.02 -0.03 + -0.15 -0.02 -0.03 + -0.15 0.02 -0.03 + -0.15 -0.02 0.02 + -0.15 0.02 0.02 + -0.02 -0.02 -0.15 + -0.02 0.02 -0.15 + -0.15 -0.02 -0.48 + -0.15 0.02 -0.48 + -0.15 -0.02 -0.36 + -0.15 0.02 -0.36 + faces 46 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 4 5 6 1 0 1 2 6 + 6 7 4 1 2 3 0 6 + 5 0 3 2 0 1 2 3 + 3 6 5 2 2 3 0 3 + 0 5 8 4 4 5 6 2 + 8 9 0 4 6 7 4 2 + 5 4 10 8 8 9 10 2 + 10 8 5 8 10 11 8 2 + 1 0 9 8 9 8 11 2 + 9 11 1 8 6 10 7 2 + 4 1 11 2 6 12 13 2 + 10 4 11 2 4 7 14 2 + 2 1 12 4 15 16 17 4 + 12 13 2 4 16 15 18 4 + 4 7 14 4 19 20 21 4 + 14 15 4 4 20 19 22 4 + 7 2 13 4 20 15 18 4 + 13 14 7 4 15 20 21 4 + 12 15 16 1 23 24 25 4 + 16 17 12 1 25 26 23 4 + 15 14 18 2 24 27 28 4 + 18 16 15 2 28 25 24 4 + 14 13 19 1 29 30 31 4 + 19 18 14 1 31 32 29 4 + 13 12 17 2 30 23 26 4 + 17 19 13 2 26 31 30 4 + 1 4 20 4 16 19 22 4 + 20 21 1 4 19 16 17 4 + 12 1 21 4 16 17 33 4 + 15 20 4 4 19 22 34 4 + 21 20 22 1 35 36 37 4 + 22 23 21 1 37 38 35 4 + 20 15 24 2 36 39 40 4 + 24 22 20 2 40 37 36 4 + 15 12 25 8 41 42 43 4 + 25 24 15 8 43 44 41 4 + 12 21 23 2 42 35 38 4 + 23 25 12 2 38 43 42 4 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 4 5 6 1 0 1 2 6 + 6 7 4 1 2 3 0 6 + 5 0 3 2 0 1 2 3 + 3 6 5 2 2 3 0 3 + tverts 45 + 0.521018 0.0 0 + 1.0 0.0 0 + 0.982238 0.690821 0 + 0.501283 0.690821 0 + 0.511079 0.702509 0 + 0.981214 0.698406 0 + 0.896967 0.824806 0 + 0.597518 0.827419 0 + 0.499032 0.68758 0 + 0.990409 0.68758 0 + 0.90121 0.83899 0 + 0.588231 0.83899 0 + 0.981213 0.698406 0 + 0.981213 0.698406 0 + 0.597518 0.827419 0 + 0.50523 0.995169 0 + 0.507204 0.681159 0 + 0.507204 0.681159 0 + 0.50523 0.995169 0 + 0.986185 0.681159 0 + 0.986185 0.995169 0 + 0.986185 0.995169 0 + 0.986185 0.681159 0 + 0.993125 1.00324 0 + 0.993125 0.748687 0 + 0.505274 0.748687 0 + 0.505274 1.00324 0 + 0.993125 1.00082 0 + 0.505274 1.00082 0 + 0.993125 0.993575 0 + 0.993125 0.751103 0 + 0.505274 0.751103 0 + 0.505274 0.993575 0 + 0.507204 0.681159 0 + 0.986185 0.681159 0 + 0.51106 0.723637 0 + 0.508645 0.994235 0 + 0.99103 0.992378 0 + 0.99103 0.720792 0 + 0.505181 0.717645 0 + 0.992397 0.719736 0 + 0.510012 0.722974 0 + 0.507596 0.993069 0 + 0.992397 0.990978 0 + 0.992397 0.721118 0 +endnode +#Tile trimesh node +node trimesh Object300 + parent tin01_a02_02 + position 0.0 0.0 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 0.0 0.0 + bitmap tin01_black + verts 14 + 4.5 2.43 0.0 + 5.0 -5.0 0.0 + 4.5 5.0 0.0 + 5.0 5.0 0.0 + 4.5 0.0 0.0 + 4.5 -2.43 0.0 + 4.5 -5.0 0.0 + -5.0 -5.0 0.0 + -4.5 2.43 0.0 + -4.5 5.0 0.0 + -5.0 5.0 0.0 + -4.5 0.0 0.0 + -4.5 -2.43 0.0 + -4.5 -5.0 0.0 + faces 10 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 1 0 1 4 1 0 1 + 5 1 4 1 5 1 4 1 + 6 1 5 1 6 1 5 1 + 7 8 9 1 7 8 9 1 + 9 10 7 1 9 10 7 1 + 7 11 8 1 7 11 8 1 + 7 12 11 1 7 12 11 1 + 7 13 12 1 7 13 12 1 + tverts 14 + -155.0 87.9336 0 + -154.5 80.5 0 + -155.0 90.5 0 + -154.5 90.5 0 + -155.0 85.5 0 + -155.0 83.0664 0 + -155.0 80.5 0 + -164.5 80.5 0 + -164.0 87.9336 0 + -164.0 90.5 0 + -164.5 90.5 0 + -164.0 85.5 0 + -164.0 83.0664 0 + -164.0 80.5 0 +endnode +#Tile trimesh node +node trimesh Line685 + parent tin01_a02_02 + position -3.58 4.89 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 358.0 -489.0 0.0 + bitmap tin01_black + verts 16 + -0.17 0.11 0.0 + -0.17 -0.11 0.0 + 0.18 -0.11 0.0 + 0.18 0.11 0.0 + 6.98 -0.11 0.0 + 7.33 -0.11 0.0 + 7.33 0.11 0.0 + 6.98 0.11 0.0 + 6.98 -9.89 0.0 + 7.33 -9.89 0.0 + 7.33 -9.67 0.0 + 6.98 -9.67 0.0 + -0.17 -9.89 0.0 + 0.18 -9.89 0.0 + 0.18 -9.67 0.0 + -0.17 -9.67 0.0 + faces 8 + 0 1 2 1 0 0 0 1 + 3 0 2 1 0 0 0 1 + 4 5 6 1 0 0 0 1 + 4 6 7 1 0 0 0 1 + 8 9 10 1 0 0 0 1 + 8 10 11 1 0 0 0 1 + 12 13 14 1 0 0 0 1 + 12 14 15 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Mesh3545 + parent tin01_a02_02 + position -1.66 4.92 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center undefined + bitmap tin01_furnish2 + verts 0 + faces 0 +endnode +#Tile trimesh node +node trimesh Mesh3548 + parent tin01_a02_02 + position 1.54 4.92 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center undefined + bitmap tin01_furnish2 + verts 0 + faces 0 +endnode +#Tile trimesh node +node trimesh Box2902 + parent tin01_a02_02 + position -3.4 -5.09 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -17.5 20.0 -218.0 + bitmap tin01_furnish2 + verts 8 + 0.0 0.31 -3.68 + -0.35 0.31 -3.68 + 0.0 0.31 -1.26 + -0.35 0.31 -0.68 + 0.0 0.31 -0.68 + 0.0 0.09 -3.68 + 0.0 0.09 -1.26 + 0.0 0.09 -0.68 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 5 0 2 2 5 6 7 3 + 2 6 5 2 7 8 5 3 + 4 7 6 2 9 10 8 3 + 6 2 4 2 8 7 9 3 + tverts 11 + 1.34658 -0.23919 0 + 1.44658 -0.23919 0 + 1.34658 0.452184 0 + 1.44658 0.617953 0 + 1.34658 0.617953 0 + 0.285126 -0.0988962 0 + 0.219389 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.219389 0.810195 0 + 0.285126 0.810195 0 +endnode +#Tile trimesh node +node trimesh Box2903 + parent tin01_a02_02 + position 3.41 -5.09 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 16.5 20.0 -219.0 + bitmap tin01_furnish2 + verts 8 + 0.34 0.31 -3.69 + -0.01 0.31 -3.69 + 0.34 0.31 -0.69 + -0.01 0.31 -1.27 + -0.01 0.31 -0.69 + -0.01 0.09 -3.69 + -0.01 0.09 -1.27 + -0.01 0.09 -0.69 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 1 5 3 2 5 6 7 3 + 6 3 5 2 8 7 6 3 + 7 4 6 2 9 10 8 3 + 3 6 4 2 7 8 10 3 + tverts 11 + -0.696282 -0.23919 0 + -0.596283 -0.23919 0 + -0.696282 0.617953 0 + -0.596281 0.452184 0 + -0.596281 0.617953 0 + 0.219389 -0.0988962 0 + 0.285126 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 +endnode +#Tile trimesh node +node trimesh Box2907 + parent tin01_a02_02 + position -3.41 5.09 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -16.5 -20.0 -219.0 + bitmap tin01_furnish2 + verts 8 + -0.34 -0.31 -3.69 + 0.01 -0.31 -3.69 + -0.34 -0.31 -0.69 + 0.01 -0.31 -1.27 + 0.01 -0.31 -0.69 + 0.01 -0.09 -3.69 + 0.01 -0.09 -1.27 + 0.01 -0.09 -0.69 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 1 5 3 2 5 6 7 3 + 6 3 5 2 8 7 6 3 + 7 4 6 2 9 10 8 3 + 3 6 4 2 7 8 10 3 + tverts 11 + -0.696282 -0.23919 0 + -0.596283 -0.23919 0 + -0.696282 0.617953 0 + -0.596281 0.452184 0 + -0.596281 0.617953 0 + 0.219389 -0.0988962 0 + 0.285126 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 +endnode +#Tile trimesh node +node trimesh Box2910 + parent tin01_a02_02 + position 3.4 5.09 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 17.5 -20.0 -218.0 + bitmap tin01_furnish2 + verts 8 + 0.0 -0.31 -3.68 + 0.35 -0.31 -3.68 + 0.0 -0.31 -1.26 + 0.35 -0.31 -0.68 + 0.0 -0.31 -0.68 + 0.0 -0.09 -3.68 + 0.0 -0.09 -1.26 + 0.0 -0.09 -0.68 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 5 0 2 2 5 6 7 3 + 2 6 5 2 7 8 5 3 + 4 7 6 2 9 10 8 3 + 6 2 4 2 8 7 9 3 + tverts 11 + 1.34658 -0.23919 0 + 1.44658 -0.23919 0 + 1.34658 0.452184 0 + 1.44658 0.617953 0 + 1.34658 0.617953 0 + 0.285126 -0.0988962 0 + 0.219389 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.219389 0.810195 0 + 0.285126 0.810195 0 +endnode +#Tile trimesh node +node trimesh Object867 + parent tin01_a02_02 + position -3.54 0.01 1.96 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 18.5 0.5 -7.0 + bitmap tin01_deco + verts 8 + -0.02 0.16 -0.23 + 0.32 0.16 -0.23 + -0.02 0.25 0.09 + 0.39 0.25 0.09 + 0.32 -0.15 -0.23 + -0.02 -0.15 -0.23 + 0.39 -0.24 0.09 + -0.02 -0.24 0.09 + faces 10 + 0 1 2 1 0 1 2 5 + 3 2 1 1 3 2 1 5 + 4 5 6 1 0 1 2 6 + 7 6 5 1 3 2 1 6 + 1 4 3 2 0 1 2 3 + 6 3 4 2 3 2 1 3 + 5 0 2 2 4 5 6 3 + 2 7 5 2 6 7 4 3 + 5 4 1 4 0 1 8 5 + 1 0 5 4 1 0 9 5 + tverts 10 + 1.0 0.0 0 + 0.521018 0.0 0 + 0.982238 0.690821 0 + 0.501283 0.690821 0 + 0.668117 0.708635 0 + 0.804191 0.708635 0 + 0.799145 0.904891 0 + 0.66251 0.904891 0 + 0.521018 0.0 0 + 1.0 0.0 0 +endnode +#Tile trimesh node +node trimesh Mesh1342 + parent tin01_a02_02 + position 0.0 0.03 -0.13 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 1 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 1.5 -3.00003 14.0 + bitmap tin01_burlap + verts 15 + -2.56 -2.51 0.14 + -2.5 -5.03 0.14 + -0.06 -2.51 0.14 + 0.0 -5.03 0.14 + 2.44 -2.51 0.14 + 2.5 -5.03 0.14 + -2.41 -0.01 0.14 + 0.09 -0.01 0.14 + 2.59 -0.01 0.14 + -2.41 2.49 0.14 + 0.09 2.49 0.14 + 2.59 2.49 0.14 + -2.5 4.97 0.14 + 0.0 4.97 0.14 + 2.5 4.97 0.14 + faces 16 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 2 3 4 1 2 3 4 1 + 5 4 3 1 5 4 3 1 + 6 0 7 1 6 0 7 1 + 2 7 0 1 2 7 0 1 + 7 2 8 1 7 2 8 1 + 4 8 2 1 4 8 2 1 + 9 6 10 1 9 6 10 1 + 7 10 6 1 7 10 6 1 + 10 7 11 1 10 7 11 1 + 8 11 7 1 8 11 7 1 + 12 9 13 1 12 9 13 1 + 10 13 9 1 10 13 9 1 + 13 10 14 1 13 10 14 1 + 11 14 10 1 11 14 10 1 + tverts 15 + -0.0076119 0.0637697 0 + -0.007612 0.683901 0 + 0.594654 0.0637696 0 + 0.594654 0.6839 0 + -0.0022856 0.0637694 0 + -0.0022858 0.6839 0 + -0.0076117 0.68877 0 + 0.594655 0.68877 0 + -0.0022854 0.688769 0 + -0.0076116 0.0686388 0 + 0.594655 0.0686387 0 + -0.0022854 0.0686384 0 + -0.0076114 0.686683 0 + 0.594655 0.686683 0 + -0.0022852 0.686682 0 +endnode +#Tile trimesh node +node trimesh bolt01 + parent tin01_a02_02 + position -2.06 0.0 5.02 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.6 0.894118 0.721569 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10 + center 202.5 0.0 4.0 + bitmap tin01__metal01 + verts 24 + 0.0 -0.33 0.0 + -0.06 -0.33 0.0 + -0.02 -0.33 0.06 + 0.05 -0.33 0.04 + 0.05 -0.33 -0.04 + -0.02 -0.33 -0.06 + -0.06 0.33 0.0 + -0.02 0.33 0.06 + 0.05 0.33 0.04 + 0.05 0.33 -0.04 + -0.02 0.33 -0.06 + 0.0 0.33 0.0 + 4.06 -0.33 0.08 + 4.0 -0.33 0.08 + 4.04 -0.33 0.14 + 4.11 -0.33 0.12 + 4.11 -0.33 0.04 + 4.04 -0.33 0.02 + 4.0 0.33 0.08 + 4.04 0.33 0.14 + 4.11 0.33 0.12 + 4.11 0.33 0.04 + 4.04 0.33 0.02 + 4.06 0.33 0.08 + faces 40 + 0 2 1 1 12 13 14 2 + 0 3 2 1 15 16 17 2 + 0 4 3 1 18 19 20 2 + 0 5 4 1 21 22 23 2 + 0 1 5 1 0 24 25 2 + 1 7 6 8 1 7 6 3 + 1 2 7 8 1 2 7 3 + 2 8 7 8 26 8 27 3 + 2 3 8 8 28 3 8 3 + 3 9 8 8 3 9 8 3 + 3 4 9 8 3 4 9 3 + 4 10 9 8 4 10 9 3 + 4 5 10 8 4 5 10 3 + 5 6 10 8 5 6 10 3 + 5 1 6 8 5 1 6 3 + 11 6 7 1 29 30 31 1 + 11 7 8 1 32 33 34 1 + 11 8 9 1 35 36 37 1 + 11 9 10 1 38 39 40 1 + 11 10 6 1 11 41 42 1 + 12 14 13 1 55 56 57 2 + 12 15 14 1 58 59 60 2 + 12 16 15 1 61 62 63 2 + 12 17 16 1 64 65 66 2 + 12 13 17 1 43 67 68 2 + 13 19 18 8 44 50 49 3 + 13 14 19 8 44 45 50 3 + 14 20 19 8 69 51 70 3 + 14 15 20 8 71 46 51 3 + 15 21 20 8 46 52 51 3 + 15 16 21 8 46 47 52 3 + 16 22 21 8 47 53 52 3 + 16 17 22 8 47 48 53 3 + 17 18 22 8 48 49 53 3 + 17 13 18 8 48 44 49 3 + 23 18 19 1 72 73 74 1 + 23 19 20 1 75 76 77 1 + 23 20 21 1 78 79 80 1 + 23 21 22 1 81 82 83 1 + 23 22 18 1 54 84 85 1 + tverts 86 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 +endnode +#Tile trimesh node +node trimesh roof01 + parent tin01_a02_02 + position 0.0 4.5 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -450.0 183.0 + bitmap tin01_floor + verts 10 + -2.5 0.5 1.83 + 2.5 0.5 1.83 + 2.5 -9.5 1.83 + 2.5 -9.28 1.83 + 2.5 -4.5 1.83 + 2.5 -6.93 1.83 + -2.5 -9.5 1.83 + -2.5 -4.5 1.83 + -2.5 0.28 1.83 + -2.5 -2.07 1.83 + faces 8 + 6 3 2 0 6 3 2 1 + 5 3 6 0 5 3 6 1 + 0 1 8 0 0 1 8 1 + 1 4 7 0 1 4 7 1 + 8 1 9 0 8 1 9 1 + 9 1 7 0 9 1 7 1 + 6 7 4 0 6 7 4 1 + 6 4 5 0 6 4 5 1 + tverts 10 + 0.5005 1.999 0 + 1.4995 1.999 0 + 1.4995 0.000999033 0 + 1.4995 0.0449551 0 + 1.4995 1.0 0 + 1.4995 0.514485 0 + 0.500499 0.000999272 0 + 0.5005 1.0 0 + 0.5005 1.95504 0 + 0.5005 1.48551 0 +endnode +#Tile trimesh node +node trimesh roofrim01 + parent tin01_a02_02 + position 0.0 4.5 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -450.0 91.5 + bitmap tin01_floor + verts 22 + 3.75 0.5 0.0 + 2.5 0.5 1.83 + 3.75 -9.5 0.0 + 2.5 -9.5 1.83 + 3.75 -2.05 0.0 + 3.75 -4.5 0.0 + 3.75 -6.93 0.0 + 3.75 -9.28 0.0 + 2.5 -9.28 1.83 + 2.5 -4.5 1.83 + 2.5 -6.93 1.83 + -3.75 -9.5 0.0 + -2.5 -9.5 1.83 + -3.75 0.5 0.0 + -2.5 0.5 1.83 + -3.75 -6.95 0.0 + -3.75 -4.5 0.0 + -3.75 -2.07 0.0 + -3.75 0.28 0.0 + -2.5 0.28 1.83 + -2.5 -4.5 1.83 + -2.5 -2.07 1.83 + faces 18 + 3 8 2 1 3 11 12 5 + 4 5 1 1 13 14 15 1 + 7 2 8 1 16 2 17 1 + 6 7 10 1 18 19 20 1 + 10 7 8 1 21 7 8 1 + 5 6 9 1 22 23 24 1 + 9 6 10 1 25 6 10 1 + 1 5 9 1 26 5 9 1 + 0 4 1 1 0 4 1 1 + 14 19 13 1 30 38 39 5 + 15 16 12 1 40 41 42 1 + 18 13 19 1 43 29 44 1 + 17 18 21 1 45 46 47 1 + 21 18 19 1 48 34 35 1 + 16 17 20 1 49 50 51 1 + 20 17 21 1 52 33 37 1 + 12 16 20 1 53 32 36 1 + 11 15 12 1 27 31 28 1 + tverts 54 + 0.5 0.00119366 0 + -0.00133294 0.00119357 0 + 0.5 1.9992 0 + -0.00133306 1.9992 0 + 0.5 0.510684 0 + 0.5 1.00019 0 + 0.5 1.48571 0 + 0.5 1.95524 0 + -0.00133306 1.95524 0 + -0.00133294 1.00019 0 + -0.00133306 1.48571 0 + -0.00133306 1.95524 0 + 0.5 1.9992 0 + 0.5 0.510684 0 + 0.5 1.00019 0 + -0.00133294 0.00119357 0 + 0.5 1.95524 0 + -0.00133306 1.95524 0 + 0.5 1.48571 0 + 0.5 1.95524 0 + -0.00133306 1.48571 0 + -0.00133306 1.48571 0 + 0.5 1.00019 0 + 0.5 1.48571 0 + -0.00133294 1.00019 0 + -0.00133294 1.00019 0 + -0.00133294 0.00119357 0 + 0.5 0.00119366 0 + -0.00133294 0.00119357 0 + 0.5 1.9992 0 + -0.00133306 1.9992 0 + 0.5 0.510684 0 + 0.5 1.00019 0 + 0.5 1.48571 0 + 0.5 1.95524 0 + -0.00133306 1.95524 0 + -0.00133294 1.00019 0 + -0.00133306 1.48571 0 + -0.00133306 1.95524 0 + 0.5 1.9992 0 + 0.5 0.510684 0 + 0.5 1.00019 0 + -0.00133294 0.00119357 0 + 0.5 1.95524 0 + -0.00133306 1.95524 0 + 0.5 1.48571 0 + 0.5 1.95524 0 + -0.00133306 1.48571 0 + -0.00133306 1.48571 0 + 0.5 1.00019 0 + 0.5 1.48571 0 + -0.00133294 1.00019 0 + -0.00133294 1.00019 0 + -0.00133294 0.00119357 0 +endnode +#Tile trimesh node +node trimesh topwall01 + parent tin01_a02_02 + position 0.0 4.5 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -450.0 108.5 + bitmap tin01_wallbrick + verts 26 + 3.75 0.5 0.0 + 3.75 0.5 2.17 + 3.75 -9.5 0.0 + 3.75 -9.5 2.17 + 3.75 -2.07 0.0 + 3.75 -4.5 0.0 + 3.75 -6.93 0.0 + 3.75 -9.28 0.0 + 3.75 -2.05 2.17 + 3.75 -9.28 2.17 + 3.75 -4.5 2.17 + 3.75 -6.93 2.17 + 3.75 0.28 0.0 + -3.75 -9.5 0.0 + -3.75 -9.5 2.17 + -3.75 0.5 0.0 + -3.75 0.5 2.17 + -3.75 -6.93 0.0 + -3.75 -4.5 0.0 + -3.75 -2.07 0.0 + -3.75 0.28 0.0 + -3.75 -6.95 2.17 + -3.75 0.28 2.17 + -3.75 -4.5 2.17 + -3.75 -2.07 2.17 + -3.75 -9.28 0.0 + faces 22 + 12 4 1 2 60 42 43 5 + 3 9 2 2 13 44 45 5 + 1 4 8 2 3 46 47 1 + 4 5 8 2 14 48 49 1 + 7 2 9 2 50 12 51 1 + 6 7 11 2 52 53 54 1 + 11 7 9 2 55 17 19 1 + 5 6 10 2 56 57 58 1 + 10 6 11 2 59 16 21 1 + 8 5 10 2 18 15 20 1 + 0 12 1 2 1 60 43 5 + 25 17 14 2 121 103 104 5 + 16 22 15 2 74 105 106 5 + 14 17 21 2 64 107 108 1 + 17 18 21 2 75 109 110 1 + 20 15 22 2 111 73 112 1 + 19 20 24 2 113 114 115 1 + 24 20 22 2 116 78 80 1 + 18 19 23 2 117 118 119 1 + 23 19 24 2 120 77 82 1 + 21 18 23 2 79 76 81 1 + 13 25 14 2 62 121 104 5 + tverts 122 + 0.00149882 0.09 0 + 0.00149918 0.09 0 + 0.00149882 0.99 0 + 0.00149918 0.99 0 + 2.54638 0.09 0 + 1.71407 0.09 0 + 0.874911 0.09 0 + 0.076852 0.09 0 + 2.54638 0.99 0 + 0.076852 0.99 0 + 1.71407 0.99 0 + 0.874911 0.99 0 + 2.9985 0.09 0 + 2.9985 0.99 0 + 0.446768 0.09 0 + 1.28593 0.09 0 + 2.11824 0.09 0 + 2.92315 0.09 0 + 0.446768 0.99 0 + 2.92315 0.99 0 + 1.28593 0.99 0 + 2.11824 0.99 0 + 2.54638 0.09 0 + 2.9985 0.09 0 + 2.9985 0.99 0 + 0.076852 0.99 0 + 0.00149882 0.09 0 + 2.54638 0.09 0 + 2.9985 0.99 0 + 2.54638 0.99 0 + 1.71407 0.09 0 + 2.54638 0.99 0 + 0.076852 0.09 0 + 0.076852 0.99 0 + 0.076852 0.09 0 + 0.874911 0.09 0 + 0.874911 0.99 0 + 0.874911 0.99 0 + 0.874911 0.09 0 + 1.71407 0.09 0 + 1.71407 0.99 0 + 1.71407 0.99 0 + 0.446768 0.09 0 + 0.00149918 0.99 0 + 2.92315 0.99 0 + 2.9985 0.09 0 + 0.446768 0.09 0 + 0.446768 0.99 0 + 1.28593 0.09 0 + 0.446768 0.99 0 + 2.92315 0.09 0 + 2.92315 0.99 0 + 2.11824 0.09 0 + 2.92315 0.09 0 + 2.11824 0.99 0 + 2.11824 0.99 0 + 1.28593 0.09 0 + 2.11824 0.09 0 + 1.28593 0.99 0 + 1.28593 0.99 0 + 0.0411781 0.09 0 + 0.00149882 0.09 0 + 0.00149918 0.09 0 + 0.00149882 0.99 0 + 0.00149918 0.99 0 + 2.54638 0.09 0 + 1.71407 0.09 0 + 0.874911 0.09 0 + 0.076852 0.09 0 + 2.54638 0.99 0 + 0.076852 0.99 0 + 1.71407 0.99 0 + 0.874911 0.99 0 + 2.9985 0.09 0 + 2.9985 0.99 0 + 0.446768 0.09 0 + 1.28593 0.09 0 + 2.11824 0.09 0 + 2.92315 0.09 0 + 0.446768 0.99 0 + 2.92315 0.99 0 + 1.28593 0.99 0 + 2.11824 0.99 0 + 2.54638 0.09 0 + 2.9985 0.09 0 + 2.9985 0.99 0 + 0.076852 0.99 0 + 0.00149882 0.09 0 + 2.54638 0.09 0 + 2.9985 0.99 0 + 2.54638 0.99 0 + 1.71407 0.09 0 + 2.54638 0.99 0 + 0.076852 0.09 0 + 0.076852 0.99 0 + 0.076852 0.09 0 + 0.874911 0.09 0 + 0.874911 0.99 0 + 0.874911 0.99 0 + 0.874911 0.09 0 + 1.71407 0.09 0 + 1.71407 0.99 0 + 1.71407 0.99 0 + 0.446768 0.09 0 + 0.00149918 0.99 0 + 2.92315 0.99 0 + 2.9985 0.09 0 + 0.446768 0.09 0 + 0.446768 0.99 0 + 1.28593 0.09 0 + 0.446768 0.99 0 + 2.92315 0.09 0 + 2.92315 0.99 0 + 2.11824 0.09 0 + 2.92315 0.09 0 + 2.11824 0.99 0 + 2.11824 0.99 0 + 1.28593 0.09 0 + 2.11824 0.09 0 + 1.28593 0.99 0 + 1.28593 0.99 0 + 0.0411781 0.09 0 +endnode +#Tile trimesh node +node trimesh fix01 + parent tin01_a02_02 + position 5.33 0.03 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -533.0 -3.0 243.0 + bitmap tin01_wallcord + verts 24 + -1.27 -3.7 2.34 + -1.27 -2.46 2.52 + -1.27 -1.23 2.34 + -1.27 1.17 2.34 + -1.27 2.4 2.52 + -1.27 3.64 2.34 + -9.39 -3.7 2.34 + -9.39 -2.46 2.52 + -9.39 -1.23 2.34 + -9.39 1.17 2.34 + -9.39 2.4 2.52 + -9.39 3.64 2.34 + -9.08 3.64 2.34 + -9.08 2.4 2.52 + -9.08 -1.23 2.34 + -9.08 -2.46 2.52 + -9.08 1.17 2.34 + -9.08 -3.7 2.34 + -1.58 -3.7 2.34 + -1.58 -2.46 2.52 + -1.58 1.17 2.34 + -1.58 -1.23 2.34 + -1.58 2.4 2.52 + -1.58 3.64 2.34 + faces 16 + 6 7 15 0 25 26 27 1 + 6 15 17 0 6 28 18 1 + 7 8 14 0 29 8 30 1 + 7 14 15 0 7 15 16 1 + 9 10 13 0 31 10 32 1 + 9 13 16 0 9 33 17 1 + 10 11 12 0 34 11 35 1 + 10 12 13 0 12 13 14 1 + 5 4 22 0 36 37 38 1 + 5 22 23 0 5 39 24 1 + 4 3 20 0 40 3 41 1 + 4 20 22 0 4 21 23 1 + 21 2 1 0 42 2 43 1 + 21 1 19 0 22 44 45 1 + 1 0 18 0 46 0 47 1 + 1 18 19 0 1 19 20 1 + tverts 48 + 0.000999331 0.14338 0 + 0.000999272 0.43281 0 + 0.000999212 0.719906 0 + 0.207273 0.150071 0 + 0.207273 0.437167 0 + 0.207273 0.726598 0 + 0.506194 0.152349 0 + 0.506193 0.441779 0 + 0.506193 0.728875 0 + 0.766278 0.168009 0 + 0.766278 0.455105 0 + 0.766278 0.744535 0 + 0.764374 0.455105 0 + 0.69392 0.744535 0 + 0.69392 0.455105 0 + 0.433836 0.728875 0 + 0.433836 0.441779 0 + 0.69392 0.168009 0 + 0.433836 0.152349 0 + 0.0733569 0.14338 0 + 0.0733568 0.43281 0 + 0.279631 0.150071 0 + 0.0733567 0.719906 0 + 0.27963 0.437168 0 + 0.27963 0.726598 0 + 0.506194 0.152349 0 + 0.506193 0.441779 0 + 0.433836 0.441779 0 + 0.433836 0.441779 0 + 0.506193 0.441779 0 + 0.433836 0.728875 0 + 0.766278 0.168009 0 + 0.69392 0.455105 0 + 0.69392 0.455105 0 + 0.764374 0.455105 0 + 0.69392 0.744535 0 + 0.207273 0.726598 0 + 0.207273 0.437167 0 + 0.27963 0.437168 0 + 0.27963 0.437168 0 + 0.207273 0.437167 0 + 0.279631 0.150071 0 + 0.0733567 0.719906 0 + 0.000999272 0.43281 0 + 0.000999272 0.43281 0 + 0.0733568 0.43281 0 + 0.000999272 0.43281 0 + 0.0733569 0.14338 0 +endnode +#Tile trimesh node +node trimesh construction01 + parent tin01_a02_02 + position -0.2 4.0 3.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.87451 0.556863 0.337255 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 20.0 -400.0 194.0 + bitmap tin01_furnish2 + verts 188 + 0.1 -8.78 1.88 + 0.3 -8.78 1.88 + 0.1 -6.63 1.86 + 0.3 -6.63 1.86 + 0.15 -4.45 1.92 + 0.35 -4.45 1.92 + 0.1 -2.33 1.82 + 0.3 -2.33 1.82 + 0.1 0.8 1.88 + 0.3 0.8 1.88 + 0.1 -8.78 2.08 + 0.3 -8.78 2.08 + 0.1 -6.63 2.06 + 0.3 -6.63 2.06 + 0.15 -4.45 2.12 + 0.35 -4.45 2.12 + 0.1 -2.33 2.02 + 0.3 -2.33 2.02 + 0.1 0.8 2.08 + 0.3 0.8 2.08 + 4.06 -3.7 -0.14 + 4.06 -3.9 -0.14 + 4.34 -3.7 0.14 + 4.34 -3.9 0.14 + 1.94 -3.7 1.98 + 1.94 -3.9 1.98 + 2.22 -3.7 2.26 + 2.22 -3.9 2.26 + 4.06 -4.1 -0.14 + 4.06 -4.3 -0.14 + 4.34 -4.1 0.14 + 4.34 -4.3 0.14 + 1.94 -4.1 1.98 + 1.94 -4.3 1.98 + 2.22 -4.1 2.26 + 2.22 -4.3 2.26 + -3.62 -3.89 1.88 + -3.62 -4.09 1.88 + -2.42 -3.93 1.94 + -2.42 -4.13 1.94 + -0.28 -3.89 1.86 + -0.28 -4.09 1.86 + 1.87 -3.89 1.92 + 1.87 -4.09 1.92 + 4.02 -3.89 1.88 + 4.02 -4.09 1.88 + -3.62 -3.89 2.08 + -3.62 -4.09 2.08 + -2.42 -3.93 2.14 + -2.42 -4.13 2.14 + -0.28 -3.89 2.06 + -0.28 -4.09 2.06 + 1.87 -3.89 2.12 + 1.87 -4.09 2.12 + 4.02 -3.89 2.08 + 4.02 -4.09 2.08 + 2.9 -4.11 3.76 + 2.9 -3.91 3.76 + 1.65 -4.11 3.74 + 1.65 -3.91 3.74 + -0.53 -4.06 3.8 + -0.53 -3.86 3.8 + -2.6 -4.11 3.7 + -2.6 -3.91 3.7 + 2.9 -4.11 3.96 + 2.9 -3.91 3.96 + 1.65 -4.11 3.94 + 1.65 -3.91 3.94 + -0.53 -4.06 4.0 + -0.53 -3.86 4.0 + -2.6 -4.11 3.9 + -2.6 -3.91 3.9 + 0.1 -9.0 3.76 + 0.3 -9.0 3.76 + 0.05 -6.85 3.82 + 0.25 -6.85 3.82 + 0.02 -4.7 3.74 + 0.22 -4.7 3.74 + 0.02 -2.55 3.8 + 0.22 -2.55 3.8 + 0.1 1.0 3.76 + 0.3 1.0 3.76 + 0.1 -9.0 3.96 + 0.3 -9.0 3.96 + 0.05 -6.85 4.02 + 0.25 -6.85 4.02 + 0.02 -4.7 3.94 + 0.22 -4.7 3.94 + 0.02 -2.55 4.0 + 0.22 -2.55 4.0 + 0.1 1.0 3.96 + 0.3 1.0 3.96 + 3.0 -9.0 3.72 + 3.0 -8.91 3.71 + 1.2 -9.0 3.72 + 1.65 -8.91 3.69 + -0.8 -9.0 3.72 + -0.73 -8.9 3.75 + -2.6 -9.0 3.72 + -2.6 -8.91 3.7 + 3.0 -9.0 3.92 + 3.0 -8.91 3.96 + 1.2 -9.0 3.92 + 1.65 -8.91 3.94 + -0.8 -9.0 3.92 + -0.73 -8.9 4.0 + -2.6 -9.0 3.92 + -2.6 -8.91 3.94 + 0.1 -9.0 2.07 + 0.3 -9.0 2.07 + 0.12 -8.92 2.07 + 0.28 -8.92 2.07 + 0.1 -9.0 3.72 + 0.3 -9.0 3.72 + 0.12 -8.92 3.77 + 0.28 -8.92 3.77 + 0.14 -6.08 2.07 + 0.3 -6.08 2.07 + 0.14 -5.92 2.07 + 0.3 -5.92 2.07 + 0.06 -6.06 3.82 + 0.22 -6.06 3.82 + 0.06 -5.92 3.82 + 0.22 -5.92 3.82 + 0.12 -2.08 2.0 + 0.28 -2.08 2.0 + 0.12 -1.92 2.0 + 0.28 -1.92 2.0 + 0.04 -2.06 3.82 + 0.2 -2.06 3.82 + 0.04 -1.92 3.82 + 0.2 -1.92 3.82 + 1.14 -4.08 2.04 + 1.3 -4.08 2.04 + 1.14 -3.92 2.04 + 1.3 -3.92 2.04 + 1.06 -4.06 3.82 + 1.22 -4.06 3.82 + 1.06 -3.92 3.82 + 1.22 -3.92 3.82 + -0.82 -4.06 2.07 + -0.66 -4.06 2.07 + -0.82 -3.9 2.07 + -0.66 -3.9 2.07 + -0.9 -4.04 3.82 + -0.74 -4.04 3.82 + -0.9 -3.9 3.82 + -0.74 -3.9 3.82 + -3.66 -4.3 -0.14 + -3.66 -4.1 -0.14 + -3.94 -4.3 0.14 + -3.94 -4.1 0.14 + -1.54 -4.3 1.98 + -1.54 -4.1 1.98 + -1.82 -4.3 2.26 + -1.82 -4.1 2.26 + -3.66 -3.9 -0.14 + -3.66 -3.7 -0.14 + -3.94 -3.9 0.14 + -3.94 -3.7 0.14 + -1.54 -3.9 1.98 + -1.54 -3.7 1.98 + -1.82 -3.9 2.26 + -1.82 -3.7 2.26 + -2.6 1.0 3.72 + -2.6 0.91 3.71 + -0.8 1.0 3.72 + -1.25 0.91 3.69 + 1.2 1.0 3.72 + 1.13 0.9 3.75 + 3.0 1.0 3.72 + 3.0 0.91 3.7 + -2.6 1.0 3.92 + -2.6 0.91 3.96 + -0.8 1.0 3.92 + -1.25 0.91 3.94 + 1.2 1.0 3.92 + 1.13 0.9 4.0 + 3.0 1.0 3.92 + 3.0 0.91 3.94 + 0.3 1.0 2.07 + 0.1 1.0 2.07 + 0.28 0.92 2.07 + 0.12 0.92 2.07 + 0.3 1.0 3.72 + 0.1 1.0 3.72 + 0.28 0.92 3.77 + 0.12 0.92 3.77 + faces 286 + 0 2 3 2 0 2 16 2 + 3 1 0 2 17 18 0 2 + 2 4 5 2 2 4 19 2 + 5 3 2 2 20 21 2 2 + 4 6 7 2 267 269 279 2 + 7 5 4 2 280 281 267 2 + 6 8 9 2 269 271 282 2 + 9 7 6 2 283 284 269 2 + 10 11 13 4 8 9 11 1 + 13 12 10 4 11 10 8 1 + 12 13 15 4 10 11 13 1 + 15 14 12 4 13 12 10 1 + 14 15 17 4 273 274 276 1 + 17 16 14 4 276 275 273 1 + 16 17 19 4 275 276 278 1 + 19 18 16 4 278 277 275 1 + 0 1 11 8 0 22 9 5 + 11 10 0 8 9 8 0 5 + 1 3 13 16 1 3 11 4 + 13 11 1 16 11 9 1 4 + 3 5 15 16 3 5 13 4 + 15 13 3 16 13 11 3 4 + 5 7 17 16 268 270 276 4 + 17 15 5 16 276 274 268 4 + 7 9 19 16 270 272 278 4 + 19 17 7 16 278 276 270 4 + 9 8 18 32 23 6 14 6 + 18 19 9 32 14 15 7 6 + 8 6 16 64 271 269 275 3 + 16 18 8 64 275 277 271 3 + 6 4 14 64 269 267 273 3 + 14 16 6 64 273 275 269 3 + 4 2 12 64 4 2 10 3 + 12 14 4 64 10 12 4 3 + 2 0 10 64 2 0 8 3 + 10 12 2 64 8 10 2 3 + 20 22 23 2 32 33 34 2 + 23 21 20 2 35 36 37 2 + 24 25 27 4 38 39 40 1 + 27 26 24 4 41 42 43 1 + 20 21 25 8 24 25 29 5 + 25 24 20 8 29 28 24 5 + 21 23 27 16 25 27 31 4 + 27 25 21 16 31 29 25 4 + 23 22 26 32 44 26 30 6 + 26 27 23 32 30 45 46 6 + 22 20 24 64 26 24 28 3 + 24 26 22 64 28 30 26 3 + 28 30 31 2 55 56 57 2 + 31 29 28 2 58 59 60 2 + 32 33 35 4 61 62 63 1 + 35 34 32 4 64 65 66 1 + 28 29 33 8 47 48 52 5 + 33 32 28 8 52 51 47 5 + 29 31 35 16 48 50 54 4 + 35 33 29 16 54 52 48 4 + 31 30 34 32 67 49 53 6 + 34 35 31 32 53 68 69 6 + 30 28 32 64 49 47 51 3 + 32 34 30 64 51 53 49 3 + 36 38 39 2 250 252 261 2 + 39 37 36 2 262 263 250 2 + 38 40 41 2 252 254 264 2 + 41 39 38 2 265 266 252 2 + 40 42 43 2 72 74 87 2 + 43 41 40 2 88 89 72 2 + 42 44 45 2 74 76 90 2 + 45 43 42 2 91 92 74 2 + 46 47 49 4 255 256 258 1 + 49 48 46 4 258 257 255 1 + 48 49 51 4 257 258 260 1 + 51 50 48 4 260 259 257 1 + 50 51 53 4 81 82 84 1 + 53 52 50 4 84 83 81 1 + 52 53 55 4 83 84 86 1 + 55 54 52 4 86 85 83 1 + 36 37 47 8 70 93 79 5 + 47 46 36 8 79 78 70 5 + 37 39 49 16 251 253 258 4 + 49 47 37 16 258 256 251 4 + 39 41 51 16 71 73 82 4 + 51 49 39 16 82 80 71 4 + 41 43 53 16 73 75 84 4 + 53 51 41 16 84 82 73 4 + 43 45 55 16 75 77 86 4 + 55 53 43 16 86 84 75 4 + 45 44 54 32 94 76 85 6 + 54 55 45 32 85 86 77 6 + 44 42 52 64 76 74 83 3 + 52 54 44 64 83 85 76 3 + 42 40 50 64 74 72 81 3 + 50 52 42 64 81 83 74 3 + 40 38 48 64 254 252 257 3 + 48 50 40 64 257 259 254 3 + 38 36 46 64 252 250 255 3 + 46 48 38 64 255 257 252 3 + 56 58 59 2 133 135 145 2 + 59 57 56 2 146 147 133 2 + 58 60 61 2 135 137 148 2 + 61 59 58 2 149 150 135 2 + 60 62 63 2 96 98 106 2 + 63 61 60 2 107 108 96 2 + 64 65 67 4 139 140 142 1 + 67 66 64 4 142 141 139 1 + 66 67 69 4 141 142 144 1 + 69 68 66 4 144 143 141 1 + 68 69 71 4 102 103 105 1 + 71 70 68 4 105 104 102 1 + 56 57 65 8 95 109 101 5 + 65 64 56 8 101 100 95 5 + 57 59 67 16 134 136 142 4 + 67 65 57 16 142 140 134 4 + 59 61 69 16 136 138 144 4 + 69 67 59 16 144 142 136 4 + 61 63 71 16 97 99 105 4 + 71 69 61 16 105 103 97 4 + 62 60 68 64 98 96 102 3 + 68 70 62 64 102 104 98 3 + 60 58 66 64 137 135 141 3 + 66 68 60 64 141 143 137 3 + 58 56 64 64 135 133 139 3 + 64 66 58 64 139 141 135 3 + 72 74 75 2 110 112 126 2 + 75 73 72 2 127 128 110 2 + 74 76 77 2 112 114 129 2 + 77 75 74 2 130 131 112 2 + 76 78 79 2 285 287 297 2 + 79 77 76 2 298 299 285 2 + 78 80 81 2 287 289 300 2 + 81 79 78 2 301 302 287 2 + 82 83 85 4 118 119 121 1 + 85 84 82 4 121 120 118 1 + 84 85 87 4 120 121 123 1 + 87 86 84 4 123 122 120 1 + 86 87 89 4 291 292 294 1 + 89 88 86 4 294 293 291 1 + 88 89 91 4 293 294 296 1 + 91 90 88 4 296 295 293 1 + 73 75 85 16 111 113 121 4 + 85 83 73 16 121 119 111 4 + 75 77 87 16 113 115 123 4 + 87 85 75 16 123 121 113 4 + 77 79 89 16 286 288 294 4 + 89 87 77 16 294 292 286 4 + 79 81 91 16 288 290 296 4 + 91 89 79 16 296 294 288 4 + 81 80 90 32 132 116 124 6 + 90 91 81 32 124 125 117 6 + 80 78 88 64 289 287 293 3 + 88 90 80 64 293 295 289 3 + 78 76 86 64 287 285 291 3 + 86 88 78 64 291 293 287 3 + 76 74 84 64 114 112 120 3 + 84 86 76 64 120 122 114 3 + 74 72 82 64 112 110 118 3 + 82 84 74 64 118 120 112 3 + 92 94 95 2 311 312 313 2 + 95 93 92 2 313 314 311 2 + 94 96 97 2 312 315 316 2 + 97 95 94 2 316 313 312 2 + 96 98 99 2 315 317 318 2 + 99 97 96 2 318 316 315 2 + 100 101 103 4 319 320 321 1 + 103 102 100 4 321 322 319 1 + 102 103 105 4 322 321 323 1 + 105 104 102 4 323 324 322 1 + 104 105 107 4 324 323 325 1 + 107 106 104 4 325 326 324 1 + 92 93 101 8 327 328 329 5 + 101 100 92 8 330 331 332 5 + 93 95 103 16 314 313 333 4 + 103 101 93 16 334 335 314 4 + 95 97 105 16 313 316 336 4 + 105 103 95 16 337 338 313 4 + 97 99 107 16 316 318 339 4 + 107 105 97 16 340 341 316 4 + 98 96 104 64 317 315 324 3 + 104 106 98 64 324 326 317 3 + 96 94 102 64 315 312 322 3 + 102 104 96 64 322 324 315 3 + 94 92 100 64 312 311 319 3 + 100 102 94 64 319 322 312 3 + 108 109 113 8 151 152 155 5 + 113 112 108 8 155 154 151 5 + 109 111 115 16 304 306 310 4 + 115 113 109 16 310 308 304 4 + 111 110 114 32 157 153 156 6 + 114 115 111 32 156 158 159 6 + 110 108 112 64 305 303 307 3 + 112 114 110 64 307 309 305 3 + 116 117 121 8 160 161 165 5 + 121 120 116 8 165 164 160 5 + 117 119 123 16 161 163 167 4 + 123 121 117 16 167 165 161 4 + 119 118 122 32 168 162 166 6 + 122 123 119 32 166 169 170 6 + 118 116 120 64 162 160 164 3 + 120 122 118 64 164 166 162 3 + 124 125 129 8 171 172 176 5 + 129 128 124 8 176 175 171 5 + 125 127 131 16 172 174 178 4 + 131 129 125 16 178 176 172 4 + 127 126 130 32 179 173 177 6 + 130 131 127 32 177 180 181 6 + 126 124 128 64 173 171 175 3 + 128 130 126 64 175 177 173 3 + 132 133 137 8 182 183 187 5 + 137 136 132 8 187 186 182 5 + 133 135 139 16 183 185 189 4 + 139 137 133 16 189 187 183 4 + 135 134 138 32 190 184 188 6 + 138 139 135 32 188 191 192 6 + 134 132 136 64 184 182 186 3 + 136 138 134 64 186 188 184 3 + 140 141 145 8 193 194 198 5 + 145 144 140 8 198 197 193 5 + 141 143 147 16 194 196 200 4 + 147 145 141 16 200 198 194 4 + 143 142 146 32 201 195 199 6 + 146 147 143 32 199 202 203 6 + 142 140 144 64 195 193 197 3 + 144 146 142 64 197 199 195 3 + 148 150 151 2 212 213 214 2 + 151 149 148 2 215 216 217 2 + 152 153 155 4 218 219 220 1 + 155 154 152 4 221 222 223 1 + 148 149 153 8 204 205 209 5 + 153 152 148 8 209 208 204 5 + 149 151 155 16 205 207 211 4 + 155 153 149 16 211 209 205 4 + 151 150 154 32 224 206 210 6 + 154 155 151 32 210 225 226 6 + 150 148 152 64 206 204 208 3 + 152 154 150 64 208 210 206 3 + 156 158 159 2 235 236 237 2 + 159 157 156 2 238 239 240 2 + 160 161 163 4 241 242 243 1 + 163 162 160 4 244 245 246 1 + 156 157 161 8 227 228 232 5 + 161 160 156 8 232 231 227 5 + 157 159 163 16 228 230 234 4 + 163 161 157 16 234 232 228 4 + 159 158 162 32 247 229 233 6 + 162 163 159 32 233 248 249 6 + 158 156 160 64 229 227 231 3 + 160 162 158 64 231 233 229 3 + 107 98 106 0 342 343 344 1 + 99 98 107 0 345 346 347 1 + 63 70 71 0 106 104 105 1 + 63 62 70 0 106 98 104 1 + 164 166 167 2 365 366 367 2 + 167 165 164 2 367 368 365 2 + 166 168 169 2 366 369 370 2 + 169 167 166 2 370 367 366 2 + 168 170 171 2 369 371 372 2 + 171 169 168 2 372 370 369 2 + 172 173 175 4 373 374 375 1 + 175 174 172 4 375 376 373 1 + 174 175 177 4 376 375 377 1 + 177 176 174 4 377 378 376 1 + 176 177 179 4 378 377 379 1 + 179 178 176 4 379 380 378 1 + 164 165 173 8 381 382 383 5 + 173 172 164 8 384 385 386 5 + 165 167 175 16 368 367 387 4 + 175 173 165 16 388 389 368 4 + 167 169 177 16 367 370 390 4 + 177 175 167 16 391 392 367 4 + 169 171 179 16 370 372 393 4 + 179 177 169 16 394 395 370 4 + 170 168 176 64 371 369 378 3 + 176 178 170 64 378 380 371 3 + 168 166 174 64 369 366 376 3 + 174 176 168 64 376 378 369 3 + 166 164 172 64 366 365 373 3 + 172 174 166 64 373 376 366 3 + 180 181 185 8 348 349 352 5 + 185 184 180 8 352 351 348 5 + 181 183 187 16 358 360 364 4 + 187 185 181 16 364 362 358 4 + 183 182 186 32 354 350 353 6 + 186 187 183 32 353 355 356 6 + 182 180 184 64 359 357 361 3 + 184 186 182 64 361 363 359 3 + 179 170 178 0 396 397 398 1 + 171 170 179 0 399 400 401 1 + tverts 402 + 0.174465 0.00149864 0 + 0.104128 0.00149864 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.00149864 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.00149864 0 + 0.104128 2.9985 0 + 0.251779 -1.21921 0 + 0.326839 -1.21921 0 + 0.0725431 -1.21921 0 + 0.506074 -1.21921 0 + 0.251779 -0.220206 0 + 0.326839 -0.220206 0 + 0.0725431 -0.220206 0 + 0.506074 -0.220206 0 + 0.323181 -0.753007 0 + 0.255437 -0.753007 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.323181 -0.686406 0 + 0.323181 -0.753007 0 + 0.323181 -0.753007 0 + 0.323181 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.753007 0 + 0.323181 -0.753007 0 + -0.00251664 -1.21921 0 + -0.00251664 -0.220206 0 + -0.00251664 -1.21921 0 + 0.251779 -1.70471 0 + 0.326839 -1.70471 0 + 0.0725431 -1.70471 0 + 0.506074 -1.70471 0 + 0.251779 -0.705713 0 + 0.326839 -0.705713 0 + 0.0725431 -0.705713 0 + 0.506074 -0.705713 0 + 0.323181 -1.23851 0 + 0.255437 -1.23851 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.323181 -1.17191 0 + 0.323181 -1.23851 0 + 0.323181 -1.23851 0 + 0.323181 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.23851 0 + 0.323181 -1.23851 0 + -0.00251664 -1.70471 0 + -0.00251664 -0.705713 0 + -0.00251664 -1.70471 0 + 0.344242 -1.04225 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.273035 1.95475 0 + 0.273035 1.95475 0 + 0.273035 1.2055 0 + 0.273035 -1.04225 0 + 0.273035 1.95475 0 + 0.174465 0.00149864 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 0.00149864 0 + 0.344242 -1.04225 0 + 0.273035 -1.04225 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 1.95475 0 + 0.174465 0.295412 0 + 0.104128 0.295412 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.244801 0.295412 0 + 0.175144 0.295412 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.295412 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.0337728 0.940718 0 + 0.0337728 -0.0582831 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.251779 0.000499517 0 + 0.326839 0.000499517 0 + 0.0725431 0.000499517 0 + 0.506074 0.000499517 0 + 0.251779 0.999501 0 + 0.326839 0.999501 0 + 0.0725431 0.999501 0 + 0.506074 0.999501 0 + 0.323181 0.4667 0 + 0.255437 0.4667 0 + 0.255437 0.5333 0 + 0.255437 0.5333 0 + 0.323181 0.5333 0 + 0.323181 0.4667 0 + 0.323181 0.4667 0 + 0.323181 0.5333 0 + 0.255437 0.5333 0 + 0.255437 0.5333 0 + 0.255437 0.4667 0 + 0.323181 0.4667 0 + -0.00251664 0.000499517 0 + -0.00251664 0.999501 0 + -0.00251664 0.000499517 0 + 0.251779 -0.485008 0 + 0.326839 -0.485008 0 + 0.0725431 -0.485008 0 + 0.506074 -0.485008 0 + 0.251779 0.513993 0 + 0.326839 0.513993 0 + 0.0725431 0.513993 0 + 0.506074 0.513993 0 + 0.323181 -0.0188073 0 + 0.255437 -0.0188073 0 + 0.255437 0.0477928 0 + 0.255437 0.0477928 0 + 0.323181 0.0477928 0 + 0.323181 -0.0188073 0 + 0.323181 -0.0188073 0 + 0.323181 0.0477928 0 + 0.255437 0.0477928 0 + 0.255437 0.0477928 0 + 0.255437 -0.0188073 0 + 0.323181 -0.0188073 0 + -0.00251664 -0.485008 0 + -0.00251664 0.513993 0 + -0.00251664 -0.485008 0 + 0.35804 -0.614525 0 + 0.286833 -0.614525 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.429247 -0.614525 0 + 0.358728 -0.614525 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.286833 -0.614525 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.159308 4.10494 0 + 0.0889714 4.10494 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.229645 4.10494 0 + 0.159987 4.10494 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.0889714 4.10494 0 + 0.0889714 4.10494 0 + 0.104128 2.24925 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.34016 2.49931 0 + 0.268953 2.49931 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.411367 2.49931 0 + 0.340848 2.49931 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.268953 2.49931 0 + 0.268953 2.49931 0 + 0.273035 1.2055 0 + 0.243649 -0.0582831 0 + 0.310278 -0.0582831 0 + 0.177022 -0.0582831 0 + 0.376905 -0.0582831 0 + 0.237631 0.940718 0 + 0.316296 0.940718 0 + 0.177022 0.940718 0 + 0.376905 0.940718 0 + 0.257387 -0.568116 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -0.568116 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 1.56488 0 + 0.23974 1.56488 0 + 0.316414 -0.568116 0 + 0.341479 -0.568116 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 1.56488 0 + 0.316414 1.56488 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -0.568116 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.172541 1.56488 0 + 0.172541 1.56488 0 + 0.170192 0.852609 0 + 0.620832 0.473548 0 + 0.727885 0.211864 0 + 0.727885 0.449758 0 + 0.620832 0.188075 0 + 0.727885 0.211864 0 + 0.620832 0.473548 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 -0.0109385 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -0.0109385 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.37945 -0.0109385 0 + 0.404514 -0.0109386 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -0.0109386 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 +endnode +#Tile trimesh node +node trimesh blacky03 + parent tin01_a02_02 + position 2.21 -5.0 4.31 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 4 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center -221.0 500.0 -22.5 + bitmap tin01_black + verts 48 + 0.01 0.0 0.53 + -0.81 0.0 0.53 + 0.22 0.0 0.18 + 0.43 0.0 0.42 + 0.97 0.0 -0.12 + 0.75 0.0 -0.36 + 1.19 0.0 -0.61 + 1.19 0.0 -1.31 + 1.54 0.0 0.86 + 1.19 0.0 0.53 + 1.54 0.0 -1.31 + -2.21 0.0 0.86 + -2.21 0.0 0.53 + -3.61 0.0 0.53 + -4.43 0.0 0.53 + -4.64 0.0 0.18 + -4.85 0.0 0.42 + -5.39 0.0 -0.12 + -5.17 0.0 -0.36 + -5.61 0.0 -0.61 + -5.61 0.0 -1.31 + -5.61 0.0 0.53 + -5.96 0.0 0.86 + -5.96 0.0 -1.31 + -0.81 10.0 0.53 + 0.01 10.0 0.53 + 0.22 10.0 0.18 + 0.43 10.0 0.42 + 0.97 10.0 -0.12 + 0.75 10.0 -0.36 + 1.19 10.0 -0.61 + 1.19 10.0 -1.31 + 1.19 10.0 0.53 + 1.54 10.0 0.86 + 1.54 10.0 -1.31 + -2.21 10.0 0.86 + -2.21 10.0 0.53 + -4.43 10.0 0.53 + -3.61 10.0 0.53 + -4.64 10.0 0.18 + -4.85 10.0 0.42 + -5.39 10.0 -0.12 + -5.17 10.0 -0.36 + -5.61 10.0 -0.61 + -5.61 10.0 -1.31 + -5.96 10.0 0.86 + -5.61 10.0 0.53 + -5.96 10.0 -1.31 + faces 52 + 0 1 2 1 0 0 0 1 + 0 2 3 1 0 0 0 1 + 4 3 5 1 0 0 0 1 + 5 3 2 1 0 0 0 1 + 6 4 7 1 0 0 0 1 + 7 4 5 1 0 0 0 1 + 8 9 10 1 0 0 0 1 + 10 6 7 1 0 0 0 1 + 10 9 6 1 0 0 0 1 + 0 9 8 1 0 0 0 1 + 8 11 12 1 0 0 0 1 + 1 0 8 1 0 0 0 1 + 8 12 1 1 0 0 0 1 + 13 14 15 1 0 0 0 1 + 15 14 16 1 0 0 0 1 + 16 17 18 1 0 0 0 1 + 16 18 15 1 0 0 0 1 + 17 19 20 1 0 0 0 1 + 17 20 18 1 0 0 0 1 + 21 22 23 1 0 0 0 1 + 19 23 20 1 0 0 0 1 + 21 23 19 1 0 0 0 1 + 21 14 22 1 0 0 0 1 + 11 22 12 1 0 0 0 1 + 14 13 22 1 0 0 0 1 + 12 22 13 1 0 0 0 1 + 24 25 26 1 0 0 0 1 + 26 25 27 1 0 0 0 1 + 27 28 29 1 0 0 0 1 + 27 29 26 1 0 0 0 1 + 28 30 31 1 0 0 0 1 + 28 31 29 1 0 0 0 1 + 32 33 34 1 0 0 0 1 + 30 34 31 1 0 0 0 1 + 32 34 30 1 0 0 0 1 + 32 25 33 1 0 0 0 1 + 35 33 36 1 0 0 0 1 + 25 24 33 1 0 0 0 1 + 36 33 24 1 0 0 0 1 + 37 38 39 1 0 0 0 1 + 37 39 40 1 0 0 0 1 + 41 40 42 1 0 0 0 1 + 42 40 39 1 0 0 0 1 + 43 41 44 1 0 0 0 1 + 44 41 42 1 0 0 0 1 + 45 46 47 1 0 0 0 1 + 47 43 44 1 0 0 0 1 + 47 46 43 1 0 0 0 1 + 37 46 45 1 0 0 0 1 + 45 35 36 1 0 0 0 1 + 38 37 45 1 0 0 0 1 + 45 36 38 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Mesh01 + parent tin01_a02_02 + position 3.4 4.88 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -31.0 1.0 40.5 + bitmap tin01_furnish2 + verts 20 + 0.35 0.12 1.49 + 0.35 -0.1 1.49 + 0.35 -0.1 -0.68 + 0.35 0.12 -0.68 + 0.0 -0.1 1.16 + 0.0 0.12 1.16 + 0.0 0.12 0.02 + 0.0 -0.1 0.02 + 0.0 -0.1 -0.68 + -0.97 -0.1 0.81 + -0.44 0.12 0.27 + -0.97 0.12 0.81 + 0.0 0.12 -0.68 + -0.44 -0.1 0.27 + -0.22 -0.1 0.51 + -0.22 0.12 0.51 + -0.97 -0.1 0.81 + -0.76 -0.1 1.05 + -0.76 0.12 1.05 + -0.97 0.12 0.81 + faces 20 + 0 1 2 1 0 1 2 4 + 0 2 3 1 0 2 3 4 + 4 5 6 1 4 5 6 3 + 6 7 4 1 6 7 4 3 + 9 11 10 1 24 25 26 3 + 7 8 2 2 28 29 30 6 + 2 1 4 2 30 31 32 6 + 2 4 7 2 30 32 28 6 + 13 8 7 8 35 33 45 5 + 7 14 13 8 45 36 35 5 + 13 14 17 8 35 36 40 5 + 17 16 13 8 40 39 35 5 + 7 6 15 16 45 46 37 4 + 15 14 7 16 37 36 45 4 + 14 15 18 16 36 37 41 4 + 18 17 14 16 41 40 36 4 + 12 8 13 64 34 33 35 3 + 13 10 12 64 35 38 34 3 + 10 13 16 64 38 35 39 3 + 16 19 10 64 39 42 38 3 + tverts 47 + 0.408666 0.891416 0 + 0.346688 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.219389 1.36765 0 + 0.285126 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + 0.46889 1.46063 0 + 0.540743 1.39726 0 + 0.618333 1.52891 0 + 0.829444 1.52891 0 + 0.36085 -0.460635 0 + 0.426587 -0.460635 0 + 0.426587 -0.528906 0 + 0.36085 -0.528906 0 + 0.30483 1.29827 0 + 0.377444 1.23509 0 + 0.36085 -0.298269 0 + 0.426587 -0.298269 0 + 0.219389 1.0989 0 + 0.285126 1.0989 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 + 0.414477 0.4225 0 + 0.476458 0.4225 0 + 0.476458 0.206945 0 + 0.414477 0.206945 0 + 0.328438 0.836212 0 + 0.328438 0.625102 0 + 0.434495 0.624996 0 + 0.434495 1.28399 0 + 0.328438 1.18256 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.170894 0.6665 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh02 + parent tin01_a02_02 + position -3.41 4.88 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 32.0 1.0 39.5 + bitmap tin01_furnish2 + verts 18 + -0.34 -0.1 1.48 + -0.34 0.12 1.48 + -0.34 -0.1 -0.69 + -0.34 0.12 -0.69 + 0.01 0.12 1.15 + 0.01 -0.1 1.15 + 0.01 0.12 0.01 + 0.01 -0.1 0.01 + 0.01 -0.1 -0.69 + 0.01 0.12 -0.69 + 0.23 0.12 0.5 + 0.23 -0.1 0.5 + 0.45 -0.1 0.26 + 0.45 0.12 0.26 + 0.77 0.12 1.04 + 0.77 -0.1 1.04 + 0.98 -0.1 0.8 + 0.98 0.12 0.8 + faces 19 + 0 1 2 1 0 1 2 4 + 2 1 3 1 2 1 3 4 + 4 5 6 1 4 5 6 3 + 7 6 5 1 7 6 5 3 + 0 2 8 2 8 9 10 6 + 7 5 0 2 11 12 8 6 + 8 7 0 2 10 11 8 6 + 10 6 7 16 57 86 87 4 + 7 11 10 16 87 58 57 4 + 10 11 15 16 57 58 64 4 + 15 14 10 16 64 73 57 4 + 7 8 12 32 88 74 59 6 + 12 11 7 32 59 67 88 6 + 11 12 16 32 68 59 65 6 + 16 15 11 32 65 75 68 6 + 8 9 13 64 51 50 60 3 + 13 12 8 64 60 59 51 3 + 12 13 17 64 59 60 66 3 + 17 16 12 64 66 65 59 3 + tverts 89 + 0.346688 0.891416 0 + 0.408666 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.285126 1.36765 0 + 0.219389 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + -0.696282 1.23919 0 + -0.696282 0.617953 0 + -0.596281 0.617953 0 + -0.596281 0.817 0 + -0.596281 1.14356 0 + 0.225624 0.266174 0 + 0.252833 0.305544 0 + 0.252357 0.150473 0 + 0.226784 -0.0348742 0 + 0.191477 0.305544 0 + 0.191001 0.150473 0 + 0.204708 0.471327 0 + 0.273749 0.510697 0 + 0.212393 0.510697 0 + 0.286295 0.267326 0 + 0.28814 -0.0348742 0 + 0.266064 0.471327 0 + 0.21826 0.266174 0 + 0.137861 0.305544 0 + 0.136086 0.150473 0 + 0.136086 0.150473 0 + 0.213931 -0.0348742 0 + 0.21826 0.266174 0 + 0.252833 0.305544 0 + 0.191477 0.305544 0 + 0.252357 0.150473 0 + 0.191477 0.305544 0 + 0.296319 0.471327 0 + 0.215919 0.510697 0 + 0.137861 0.305544 0 + 0.137861 0.305544 0 + 0.21826 0.266174 0 + 0.296319 0.471327 0 + 0.212393 0.510697 0 + 0.252833 0.305544 0 + 0.286295 0.267326 0 + 0.225624 0.266174 0 + 0.28814 -0.0348742 0 + 0.225624 0.266174 0 + 0.204708 0.471327 0 + 0.286295 0.267326 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.0952516 0.000499517 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.496536 0.3335 0 + 0.0952516 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + -0.0034642 0.3335 0 + -0.0034642 0.3335 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + 0.420894 0.6665 0 + 0.0876934 0.0625172 0 + -0.00129734 0.669749 0 + 0.345252 0.777547 0 + -0.00282295 0.777409 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 + 0.496536 0.192615 0 + -0.0034642 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh03 + parent tin01_a02_02 + position 1.65 4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 22.5 1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + -1.65 -0.1 0.19 + -1.65 -0.1 -0.14 + 2.1 -0.1 0.19 + 1.75 -0.1 -0.14 + 0.57 -0.1 -0.14 + -0.25 -0.1 -0.14 + 1.75 0.12 -0.14 + 0.57 0.12 -0.14 + 2.1 0.12 0.19 + -1.65 0.12 0.19 + -1.65 0.12 -0.14 + -0.25 0.12 -0.14 + 0.78 -0.1 -0.49 + 0.99 -0.1 -0.25 + 0.99 0.12 -0.25 + 0.78 0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 3 2 4 1 3 2 4 3 + 4 2 5 1 4 2 5 3 + 5 2 1 1 5 2 1 3 + 6 3 4 2 28 21 29 3 + 4 7 6 2 22 23 20 3 + 2 8 9 2 6 7 8 3 + 9 0 2 2 8 9 6 3 + 1 10 11 2 30 25 31 3 + 11 5 1 2 26 27 24 3 + 4 5 12 8 15 10 12 5 + 12 13 4 8 12 13 15 5 + 14 7 4 16 17 19 18 4 + 4 13 14 16 18 16 17 4 + 15 12 5 64 14 12 10 3 + 5 11 15 64 10 11 14 3 + tverts 32 + 0.496366 -0.196817 0 + 0.384796 -0.196817 0 + 0.496367 1.05318 0 + 0.384796 0.936516 0 + 0.384796 0.544462 0 + 0.384796 0.268566 0 + 0.426587 -0.634963 0 + 0.36085 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.170894 0.6665 0 + 0.345252 0.777547 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.326259 1.00025 0 + 0.261617 1.00025 0 + 0.261617 0.653536 0 + 0.326259 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.00124749 0 + 0.326259 0.412601 0 + 0.261617 0.412601 0 + 0.326259 1.00025 0 + 0.261617 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.412601 0 +endnode +#Tile trimesh node +node trimesh Mesh04 + parent tin01_a02_02 + position -1.55 4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -32.5 1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + 1.55 -0.1 -0.14 + 1.55 -0.1 0.19 + -2.2 -0.1 0.19 + -1.85 -0.1 -0.14 + -0.67 -0.1 -0.14 + 0.15 -0.1 -0.14 + -1.85 0.12 -0.14 + -0.67 0.12 -0.14 + -2.2 0.12 0.19 + 1.55 0.12 0.19 + 1.55 0.12 -0.14 + 0.15 0.12 -0.14 + -1.09 0.12 -0.25 + -1.09 -0.1 -0.25 + -0.88 -0.1 -0.49 + -0.88 0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 4 1 2 3 4 3 + 2 4 5 1 2 4 5 3 + 2 5 0 1 2 5 0 3 + 3 6 4 2 24 32 33 3 + 7 4 6 2 27 26 25 3 + 8 2 9 2 6 7 8 3 + 1 9 2 2 9 8 7 3 + 10 0 11 2 28 34 35 3 + 5 11 0 2 31 30 29 3 + 13 14 5 32 15 16 14 6 + 14 15 11 64 12 13 10 3 + 11 5 14 64 10 11 12 3 + 13 5 4 0 15 17 18 1 + 12 13 4 0 20 21 23 1 + 12 4 7 0 19 23 22 1 + tverts 36 + 0.338345 1.40811 0 + 0.449916 1.40811 0 + 0.449916 0.158114 0 + 0.338345 0.274781 0 + 0.338345 0.666835 0 + 0.338345 0.942731 0 + 0.36085 -0.634963 0 + 0.426587 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + -0.00282295 0.777409 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.219023 0.00190346 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.280636 0.349166 0 + 0.274944 1.00143 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 + 0.213895 0.589529 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 +endnode +#Tile trimesh node +node trimesh Mesh05 + parent tin01_a02_02 + position -1.65 -4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -22.5 -1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + 1.65 0.1 0.19 + 1.65 0.1 -0.14 + -2.1 0.1 0.19 + -1.75 0.1 -0.14 + -0.57 0.1 -0.14 + 0.25 0.1 -0.14 + -1.75 -0.12 -0.14 + -0.57 -0.12 -0.14 + -2.1 -0.12 0.19 + 1.65 -0.12 0.19 + 1.65 -0.12 -0.14 + 0.25 -0.12 -0.14 + -0.78 0.1 -0.49 + -0.99 0.1 -0.25 + -0.99 -0.12 -0.25 + -0.78 -0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 3 2 4 1 3 2 4 3 + 4 2 5 1 4 2 5 3 + 5 2 1 1 5 2 1 3 + 6 3 4 2 28 21 29 3 + 4 7 6 2 22 23 20 3 + 2 8 9 2 6 7 8 3 + 9 0 2 2 8 9 6 3 + 1 10 11 2 30 25 31 3 + 11 5 1 2 26 27 24 3 + 4 5 12 8 15 10 12 5 + 12 13 4 8 12 13 15 5 + 14 7 4 16 17 19 18 4 + 4 13 14 16 18 16 17 4 + 15 12 5 64 14 12 10 3 + 5 11 15 64 10 11 14 3 + tverts 32 + 0.496366 -0.196817 0 + 0.384796 -0.196817 0 + 0.496367 1.05318 0 + 0.384796 0.936516 0 + 0.384796 0.544462 0 + 0.384796 0.268566 0 + 0.426587 -0.634963 0 + 0.36085 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.170894 0.6665 0 + 0.345252 0.777547 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.326259 1.00025 0 + 0.261617 1.00025 0 + 0.261617 0.653536 0 + 0.326259 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.00124749 0 + 0.326259 0.412601 0 + 0.261617 0.412601 0 + 0.326259 1.00025 0 + 0.261617 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.412601 0 +endnode +#Tile trimesh node +node trimesh Mesh06 + parent tin01_a02_02 + position -3.4 -4.88 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 31.0 -1.0 40.5 + bitmap tin01_furnish2 + verts 20 + -0.35 -0.12 1.49 + -0.35 0.1 1.49 + -0.35 0.1 -0.68 + -0.35 -0.12 -0.68 + 0.0 0.1 1.16 + 0.0 -0.12 1.16 + 0.0 -0.12 0.02 + 0.0 0.1 0.02 + 0.0 0.1 -0.68 + 0.97 0.1 0.81 + 0.44 -0.12 0.27 + 0.97 -0.12 0.81 + 0.0 -0.12 -0.68 + 0.44 0.1 0.27 + 0.22 0.1 0.51 + 0.22 -0.12 0.51 + 0.97 0.1 0.81 + 0.76 0.1 1.05 + 0.76 -0.12 1.05 + 0.97 -0.12 0.81 + faces 20 + 0 1 2 1 0 1 2 4 + 0 2 3 1 0 2 3 4 + 4 5 6 1 4 5 6 3 + 6 7 4 1 6 7 4 3 + 9 11 10 1 24 25 26 3 + 7 8 2 2 28 29 30 6 + 2 1 4 2 30 31 32 6 + 2 4 7 2 30 32 28 6 + 13 8 7 8 35 33 45 5 + 7 14 13 8 45 36 35 5 + 13 14 17 8 35 36 40 5 + 17 16 13 8 40 39 35 5 + 7 6 15 16 45 46 37 4 + 15 14 7 16 37 36 45 4 + 14 15 18 16 36 37 41 4 + 18 17 14 16 41 40 36 4 + 12 8 13 64 34 33 35 3 + 13 10 12 64 35 38 34 3 + 10 13 16 64 38 35 39 3 + 16 19 10 64 39 42 38 3 + tverts 47 + 0.408666 0.891416 0 + 0.346688 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.219389 1.36765 0 + 0.285126 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + 0.46889 1.46063 0 + 0.540743 1.39726 0 + 0.618333 1.52891 0 + 0.829444 1.52891 0 + 0.36085 -0.460635 0 + 0.426587 -0.460635 0 + 0.426587 -0.528906 0 + 0.36085 -0.528906 0 + 0.30483 1.29827 0 + 0.377444 1.23509 0 + 0.36085 -0.298269 0 + 0.426587 -0.298269 0 + 0.219389 1.0989 0 + 0.285126 1.0989 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 + 0.414477 0.4225 0 + 0.476458 0.4225 0 + 0.476458 0.206945 0 + 0.414477 0.206945 0 + 0.328438 0.836212 0 + 0.328438 0.625102 0 + 0.434495 0.624996 0 + 0.434495 1.28399 0 + 0.328438 1.18256 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.170894 0.6665 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh07 + parent tin01_a02_02 + position 1.55 -4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 32.5 -1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + -1.55 0.1 -0.14 + -1.55 0.1 0.19 + 2.2 0.1 0.19 + 1.85 0.1 -0.14 + 0.67 0.1 -0.14 + -0.15 0.1 -0.14 + 1.85 -0.12 -0.14 + 0.67 -0.12 -0.14 + 2.2 -0.12 0.19 + -1.55 -0.12 0.19 + -1.55 -0.12 -0.14 + -0.15 -0.12 -0.14 + 1.09 -0.12 -0.25 + 1.09 0.1 -0.25 + 0.88 0.1 -0.49 + 0.88 -0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 4 1 2 3 4 3 + 2 4 5 1 2 4 5 3 + 2 5 0 1 2 5 0 3 + 3 6 4 2 24 32 33 3 + 7 4 6 2 27 26 25 3 + 8 2 9 2 6 7 8 3 + 1 9 2 2 9 8 7 3 + 10 0 11 2 28 34 35 3 + 5 11 0 2 31 30 29 3 + 13 14 5 32 15 16 14 6 + 14 15 11 64 12 13 10 3 + 11 5 14 64 10 11 12 3 + 13 5 4 0 15 17 18 1 + 12 13 4 0 20 21 23 1 + 12 4 7 0 19 23 22 1 + tverts 36 + 0.338345 1.40811 0 + 0.449916 1.40811 0 + 0.449916 0.158114 0 + 0.338345 0.274781 0 + 0.338345 0.666835 0 + 0.338345 0.942731 0 + 0.36085 -0.634963 0 + 0.426587 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + -0.00282295 0.777409 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.219023 0.00190346 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.280636 0.349166 0 + 0.274944 1.00143 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 + 0.213895 0.589529 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 +endnode +#Tile trimesh node +node trimesh Mesh08 + parent tin01_a02_02 + position 3.41 -4.88 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -32.0 -1.0 39.5 + bitmap tin01_furnish2 + verts 18 + 0.34 0.1 1.48 + 0.34 -0.12 1.48 + 0.34 0.1 -0.69 + 0.34 -0.12 -0.69 + -0.01 -0.12 1.15 + -0.01 0.1 1.15 + -0.01 -0.12 0.01 + -0.01 0.1 0.01 + -0.01 0.1 -0.69 + -0.01 -0.12 -0.69 + -0.23 -0.12 0.5 + -0.23 0.1 0.5 + -0.45 0.1 0.26 + -0.45 -0.12 0.26 + -0.77 -0.12 1.04 + -0.77 0.1 1.04 + -0.98 0.1 0.8 + -0.98 -0.12 0.8 + faces 19 + 0 1 2 1 0 1 2 4 + 2 1 3 1 2 1 3 4 + 4 5 6 1 4 5 6 3 + 7 6 5 1 7 6 5 3 + 0 2 8 2 8 9 10 6 + 7 5 0 2 11 12 8 6 + 8 7 0 2 10 11 8 6 + 10 6 7 16 57 86 87 4 + 7 11 10 16 87 58 57 4 + 10 11 15 16 57 58 64 4 + 15 14 10 16 64 73 57 4 + 7 8 12 32 88 74 59 6 + 12 11 7 32 59 67 88 6 + 11 12 16 32 68 59 65 6 + 16 15 11 32 65 75 68 6 + 8 9 13 64 51 50 60 3 + 13 12 8 64 60 59 51 3 + 12 13 17 64 59 60 66 3 + 17 16 12 64 66 65 59 3 + tverts 89 + 0.346688 0.891416 0 + 0.408666 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.285126 1.36765 0 + 0.219389 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + -0.696282 1.23919 0 + -0.696282 0.617953 0 + -0.596281 0.617953 0 + -0.596281 0.817 0 + -0.596281 1.14356 0 + 0.225624 0.266174 0 + 0.252833 0.305544 0 + 0.252357 0.150473 0 + 0.226784 -0.0348742 0 + 0.191477 0.305544 0 + 0.191001 0.150473 0 + 0.204708 0.471327 0 + 0.273749 0.510697 0 + 0.212393 0.510697 0 + 0.286295 0.267326 0 + 0.28814 -0.0348742 0 + 0.266064 0.471327 0 + 0.21826 0.266174 0 + 0.137861 0.305544 0 + 0.136086 0.150473 0 + 0.136086 0.150473 0 + 0.213931 -0.0348742 0 + 0.21826 0.266174 0 + 0.252833 0.305544 0 + 0.191477 0.305544 0 + 0.252357 0.150473 0 + 0.191477 0.305544 0 + 0.296319 0.471327 0 + 0.215919 0.510697 0 + 0.137861 0.305544 0 + 0.137861 0.305544 0 + 0.21826 0.266174 0 + 0.296319 0.471327 0 + 0.212393 0.510697 0 + 0.252833 0.305544 0 + 0.286295 0.267326 0 + 0.225624 0.266174 0 + 0.28814 -0.0348742 0 + 0.225624 0.266174 0 + 0.204708 0.471327 0 + 0.286295 0.267326 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.0952516 0.000499517 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.496536 0.3335 0 + 0.0952516 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + -0.0034642 0.3335 0 + -0.0034642 0.3335 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + 0.420894 0.6665 0 + 0.0876934 0.0625172 0 + -0.00129734 0.669749 0 + 0.345252 0.777547 0 + -0.00282295 0.777409 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 + 0.496536 0.192615 0 + -0.0034642 0.192615 0 +endnode +#Tile trimesh node +node trimesh blacky10 + parent tin01_a02_02 + position 4.5 0.0 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 4 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -6.10352e-005 -450.0 108.5 + bitmap tin01_black + verts 16 + 0.0 5.0 0.0 + 0.0 5.0 2.17 + -8.25 -5.0 0.0 + -8.25 -5.0 2.17 + -0.75 5.0 0.0 + -0.75 5.0 2.17 + -9.0 -5.0 0.0 + -9.0 -5.0 2.17 + -0.75 -5.0 0.0 + -0.75 -5.0 2.17 + -9.0 5.0 0.0 + -9.0 5.0 2.17 + 0.0 -5.0 0.0 + 0.0 -5.0 2.17 + -8.25 5.0 0.0 + -8.25 5.0 2.17 + faces 8 + 6 3 7 0 11 5 13 1 + 6 2 3 0 11 2 5 1 + 0 4 5 0 7 12 8 1 + 0 5 1 0 7 8 1 1 + 14 11 15 0 25 19 27 1 + 14 10 11 0 25 16 19 1 + 8 12 13 0 21 26 22 1 + 8 13 9 0 21 22 15 1 + tverts 28 + 1.999 0.09 0 + 1.999 0.99 0 + 0.000999033 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 1.999 0.09 0 + 0.00149882 0.99 0 + 0.874911 0.09 0 + 0.076852 0.09 0 + 2.9985 0.09 0 + 0.00149882 0.09 0 + 1.84126 0.000999093 0 + 1.999 0.09 0 + 1.999 0.99 0 + 0.000999033 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 1.999 0.09 0 + 0.00149882 0.99 0 + 0.874911 0.09 0 + 0.076852 0.09 0 + 2.9985 0.09 0 + 0.00149882 0.09 0 + 1.84126 0.000999093 0 +endnode +#Tile trimesh node +node trimesh wallback01 + parent tin01_a02_02 + position 0.0 4.5 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center undefined + bitmap tin01_wallbrick + verts 20 + 4.5 0.5 0.0 + 4.5 0.5 2.17 + 4.5 -9.5 0.0 + 4.5 -9.5 2.17 + 3.75 0.5 2.17 + 3.75 -9.5 2.17 + 3.75 -2.05 2.17 + 3.75 -9.28 2.17 + 3.75 -4.5 2.17 + 3.75 -6.93 2.17 + -4.5 -9.5 0.0 + -4.5 0.5 0.0 + -4.5 -9.5 2.17 + -4.5 0.5 2.17 + -3.75 -9.5 2.17 + -3.75 0.5 2.17 + -3.75 -2.07 2.17 + -3.75 -9.28 2.17 + -3.75 -4.5 2.17 + -3.75 -6.95 2.17 + faces 16 + 2 0 3 0 4 6 7 1 + 3 0 1 0 5 8 9 1 + 4 6 1 0 13 14 12 1 + 6 8 1 0 14 15 12 1 + 1 8 9 0 12 15 16 1 + 9 3 1 0 16 17 12 1 + 9 7 3 0 16 18 17 1 + 7 5 3 0 18 19 17 1 + 11 10 13 0 29 36 37 1 + 13 10 12 0 31 28 30 1 + 12 14 17 0 38 39 40 1 + 12 17 19 0 38 40 41 1 + 12 19 18 0 38 41 42 1 + 12 18 13 0 38 42 43 1 + 18 16 13 0 42 44 43 1 + 16 15 13 0 44 45 43 1 + tverts 46 + 1.999 0.09 0 + 0.000999093 0.09 0 + 1.999 0.99 0 + 0.000999093 0.99 0 + 0.000999033 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 1.999 0.99 0 + 1.999 0.09 0 + 0.000999093 0.99 0 + -0.388774 0.438941 0 + -0.231037 0.281204 0 + 0.042374 0.281204 0 + 0.557648 0.281204 0 + 1.06872 0.281204 0 + 1.60923 0.438941 0 + 1.56296 0.281204 0 + 1.60923 0.281204 0 + -0.211194 0.392396 0 + -0.211194 0.234659 0 + -0.164924 0.234659 0 + 0.325112 0.234659 0 + 0.840386 0.234659 0 + 1.78681 0.392396 0 + 1.35145 0.234659 0 + 1.62907 0.234659 0 + 1.999 0.09 0 + 0.000999093 0.09 0 + 1.999 0.99 0 + 0.000999093 0.99 0 + 1.999 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 1.999 0.99 0 + 1.999 0.09 0 + 0.000999093 0.99 0 + -0.211194 0.392396 0 + -0.211194 0.234659 0 + -0.164924 0.234659 0 + 0.325112 0.234659 0 + 0.840386 0.234659 0 + 1.78681 0.392396 0 + 1.35145 0.234659 0 + 1.62907 0.234659 0 +endnode +endmodelgeom tin01_a02_02 +donemodel tin01_a02_02 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/tin01_a02_03.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_a02_03.mdl new file mode 100644 index 0000000..a0ca561 --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_a02_03.mdl @@ -0,0 +1,4829 @@ +# Exported from NWmax 0.8 b60 at 12.12.2013 22:04:29 +# mdl file +# +#NWmax MODEL ASCII +# model: tin01_a02_03 +#local file: Unknown +filedependancy Unknown +newmodel tin01_a02_03 +setsupermodel tin01_a02_03 NULL +classification Tile +#NWmax GEOM ASCII +beginmodelgeom tin01_a02_03 +node dummy tin01_a02_03 + parent NULL +endnode +node light tin01_a02_03ml2 + parent tin01_a02_03 + position 1.20909 3.16187 4.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 5.0 + multiplier 1.0 + color 0.00392157 0.00392157 0.00392157 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +node dummy tin01_a02_03sl2 + parent tin01_a02_03 + position 2.12467 0.00743408 1.51171 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.6 0.894118 0.6 +endnode +node light tin01_a02_03ml1 + parent tin01_a02_03 + position 0.0 0.0 5.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 14.0 + multiplier 1.0 + color 0.0 0.0 0.0 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +node dummy tin01_a02_03sl1 + parent tin01_a02_03 + position -2.16856 -0.0226184 1.51171 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.6 0.894118 0.6 +endnode +#Tile trimesh node +node trimesh Mesh1365 + parent tin01_a02_03 + position -3.85 4.55 2.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -27.5 -83.5 -119.0 + bitmap tin01_wallcord + verts 13 + 0.1 -2.12 0.31 + -0.65 0.45 0.31 + -0.65 -2.12 0.31 + 0.1 0.23 0.31 + 0.1 -0.22 -0.82 + 0.1 0.23 -2.69 + 0.1 -0.88 -0.35 + 0.1 -2.12 -0.17 + 0.1 0.45 0.31 + 0.1 -0.22 -2.69 + -0.21 -0.22 -0.82 + -0.21 -0.88 -0.35 + -0.21 -0.22 -2.69 + faces 12 + 0 1 2 1 0 1 2 1 + 3 4 5 2 3 4 5 4 + 4 3 6 2 4 3 6 4 + 6 3 7 2 6 3 7 4 + 8 1 3 1 8 1 9 1 + 4 9 5 2 4 10 5 4 + 3 1 0 1 9 1 0 1 + 3 0 7 2 3 11 7 4 + 10 6 11 1 12 13 14 3 + 10 4 6 1 12 15 13 3 + 12 9 10 4 16 17 12 3 + 4 10 9 4 15 12 17 3 + tverts 18 + 1.22305 0.870259 0 + 2.07285 1.1186 0 + 1.22305 1.1186 0 + 1.93412 0.996604 0 + 1.78415 0.623796 0 + 1.93412 0.0032268 0 + 1.56605 0.778557 0 + 1.15615 0.838108 0 + 2.07285 0.870258 0 + 2.00102 0.870258 0 + 1.78415 0.0032268 0 + 1.15615 0.996604 0 + 0.552141 0.620095 0 + 0.447858 0.774855 0 + 0.552141 0.774855 0 + 0.447858 0.620095 0 + 0.552141 -0.0004746 0 + 0.447858 -0.0004746 0 +endnode +#Tile trimesh node +node trimesh Object318 + parent tin01_a02_03 + position 3.82 4.78 2.73 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 30.5 -106.5 -123.0 + bitmap tin01_wallcord + verts 13 + -0.07 -1.11 -0.39 + 0.24 -0.45 -0.86 + 0.24 -1.11 -0.39 + -0.07 -0.45 -0.86 + -0.07 -0.45 -2.73 + 0.24 -0.45 -2.73 + 0.68 0.22 0.27 + -0.07 -2.35 0.27 + 0.68 -2.35 0.27 + -0.07 0.0 0.27 + -0.07 0.0 -2.73 + -0.07 -2.35 -0.21 + -0.07 0.22 0.27 + faces 12 + 0 1 2 1 0 1 2 3 + 3 1 0 1 3 1 0 3 + 4 5 1 2 4 5 1 3 + 1 3 4 2 1 3 4 3 + 6 7 8 1 6 7 8 1 + 3 9 10 4 9 10 11 4 + 9 3 0 4 10 9 12 4 + 9 0 11 4 10 12 13 4 + 6 12 9 1 6 14 15 1 + 4 3 10 4 16 9 11 4 + 6 9 7 1 6 15 7 1 + 7 9 11 4 17 10 13 4 + tverts 18 + 0.447858 0.774855 0 + 0.552141 0.620095 0 + 0.552141 0.774855 0 + 0.447858 0.620095 0 + 0.447858 -0.0004746 0 + 0.552141 -0.0004746 0 + 2.07285 1.1186 0 + 1.22305 0.870259 0 + 1.22305 1.1186 0 + 1.78415 0.623796 0 + 1.93412 0.996604 0 + 1.93412 0.0032268 0 + 1.56605 0.778557 0 + 1.15615 0.838108 0 + 2.07285 0.870258 0 + 2.00102 0.870258 0 + 1.78415 0.0032268 0 + 1.15615 0.996604 0 +endnode +#Tile trimesh node +node trimesh Object315 + parent tin01_a02_03 + position 4.54 -0.13 2.8 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -41.5 13.0 -130.0 + bitmap tin01_wallcord + verts 24 + -0.79 0.67 -0.93 + -0.48 1.33 -0.46 + -0.48 0.67 -0.93 + -0.79 1.33 -0.46 + -0.48 0.67 -2.8 + -0.79 0.67 -2.8 + -0.48 -1.07 -0.46 + -0.79 -0.41 -0.93 + -0.48 -0.41 -0.93 + -0.79 -1.07 -0.46 + -0.79 -0.41 -2.8 + -0.48 -0.41 -2.8 + -0.04 0.13 0.2 + -0.79 0.16 0.2 + -0.04 -2.3 0.2 + -0.79 0.1 0.2 + -0.79 -2.3 -0.28 + -0.79 -2.3 0.2 + -0.79 0.1 -0.15 + -0.04 2.56 0.2 + -0.79 2.56 -0.28 + -0.79 2.56 0.2 + -0.79 0.13 -2.8 + -0.79 0.16 -0.15 + faces 26 + 0 1 2 1 0 1 2 3 + 3 1 0 1 3 1 0 3 + 4 5 0 2 4 5 0 3 + 0 2 4 2 0 2 4 3 + 6 7 8 1 1 0 2 3 + 6 9 7 1 1 3 0 3 + 10 11 7 2 5 4 0 3 + 8 7 11 2 2 0 4 3 + 12 13 14 1 6 7 8 1 + 15 9 16 4 9 10 11 4 + 17 15 16 4 12 9 11 4 + 7 9 15 4 13 10 9 4 + 7 15 18 4 13 9 14 4 + 14 15 17 1 8 15 16 1 + 13 12 19 1 7 6 8 1 + 3 13 20 4 10 17 11 4 + 13 21 20 4 17 12 11 4 + 3 0 13 4 10 13 17 4 + 22 0 5 4 18 13 19 4 + 0 23 13 4 13 20 17 4 + 13 19 21 1 7 8 16 1 + 0 22 23 4 13 18 20 4 + 22 10 23 4 18 19 20 4 + 23 10 18 4 20 19 14 4 + 7 18 10 4 13 14 19 4 + 14 13 15 1 8 7 15 1 + tverts 21 + 0.447858 0.620095 0 + 0.552142 0.774855 0 + 0.552142 0.620095 0 + 0.447858 0.774855 0 + 0.552142 -0.0004745 0 + 0.447858 -0.0004746 0 + 0.417219 1.1186 0 + 0.417219 0.870259 0 + 1.22305 1.1186 0 + 0.370063 0.996605 0 + 0.746259 0.778557 0 + 1.15615 0.838108 0 + 1.15615 0.996604 0 + 0.528158 0.623797 0 + 0.371087 0.880608 0 + 0.436961 0.870259 0 + 1.22305 0.870259 0 + 0.350321 0.996605 0 + 0.350321 0.0032271 0 + 0.528158 0.0032271 0 + 0.350321 0.872747 0 +endnode +#Tile trimesh node +node trimesh Mesh1366 + parent tin01_a02_03 + position 5.33 0.03 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -127.0 -2.99998 126.0 + bitmap tin01_wallbrick + verts 16 + -1.27 -2.53 0.0 + -1.27 -3.7 2.34 + -1.27 -2.46 2.52 + -1.27 -1.23 2.34 + -1.27 -0.57 1.87 + -1.27 -4.36 1.87 + -1.27 -4.36 0.0 + -1.27 -0.57 0.0 + -1.27 2.47 0.0 + -1.27 1.17 2.34 + -1.27 2.4 2.52 + -1.27 3.64 2.34 + -1.27 4.3 1.87 + -1.27 0.51 1.87 + -1.27 0.51 0.0 + -1.27 4.3 0.0 + faces 12 + 0 1 2 1 0 1 2 3 + 0 3 4 1 0 3 4 3 + 0 2 3 1 0 2 3 3 + 5 1 0 1 5 1 0 3 + 0 6 5 1 0 6 5 3 + 7 0 4 1 7 0 4 3 + 8 9 10 1 0 1 2 3 + 8 11 12 1 0 3 4 3 + 8 10 11 1 0 2 3 3 + 13 9 8 1 5 1 0 3 + 8 14 13 1 0 6 5 3 + 15 8 12 1 7 0 4 3 + tverts 8 + 1.06062 -0.0003026 0 + 1.69567 0.775027 0 + 1.05358 0.834578 0 + 0.306033 0.775027 0 + -0.0557951 0.620267 0 + 2.02789 0.620267 0 + 2.02789 -0.0003027 0 + -0.0557952 -0.0003025 0 +endnode +node aabb wok + parent tin01_a02_03 + position 0.0 0.0 1.5 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.0 1.0 0.0 + multimaterial 20 + Dirt + Obscuring + Grass + Stone + Wood + Water + Nonwalk + Transparent + Carpet + Metal + Puddles + Swamp + Mud + Leaves + Lava + BottomlessPit + DeepWater + Door + Snow + Sand + ambient 0.0 0.0 0.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10.0 + bitmap Obscuring + verts 34 + 5.0 -5.0 1.5 + 5.0 5.0 1.5 + 3.75 5.0 1.5 + 3.75 -5.0 1.5 + 3.75 4.78 -1.5 + 3.75 0.12 -1.5 + 2.04 -0.12 -1.5 + 3.75 -0.12 -1.5 + 3.75 -4.78 -1.5 + 2.04 0.12 -1.5 + 3.4 4.78 -1.5 + 3.4 -4.78 -1.5 + 3.4 5.0 -1.5 + 3.4 -5.0 -1.5 + -5.0 5.0 1.5 + -5.0 -5.0 1.5 + -3.75 -5.0 1.5 + -3.75 5.0 1.5 + -3.75 -4.78 -1.5 + -3.75 -0.12 -1.5 + -2.03 0.11 -1.5 + -3.75 0.11 -1.5 + -3.75 4.78 -1.5 + -2.03 -0.12 -1.5 + -3.4 -4.78 -1.5 + -3.4 4.78 -1.5 + -3.4 -5.0 -1.5 + -3.4 5.0 -1.5 + 2.32 -5.0 -1.5 + -2.31 -5.0 -1.5 + 2.29 5.0 -1.5 + -2.23 5.0 -1.5 + -3.75 0.23 0.04 + 3.75 -0.14 0.01 + faces 50 + 0 1 2 1 0 1 2 2 + 0 2 3 1 0 3 4 2 + 3 2 33 2 4 3 19 2 + 5 6 7 1 6 7 8 7 + 9 6 5 1 9 7 6 7 + 10 9 5 1 3 6 10 4 + 5 4 10 1 6 3 5 4 + 6 11 8 1 8 11 12 4 + 8 7 6 1 11 8 13 4 + 2 10 4 4 3 5 14 2 + 2 12 10 8 3 5 14 2 + 3 8 11 4 4 11 12 2 + 3 11 13 8 4 11 12 2 + 14 15 16 1 0 1 2 2 + 14 16 17 1 0 3 4 2 + 17 16 32 2 4 3 18 2 + 19 20 21 1 6 7 8 7 + 23 20 19 1 9 7 6 7 + 24 23 19 1 3 6 10 4 + 19 18 24 1 6 3 5 4 + 21 25 22 1 8 11 12 4 + 25 21 20 1 11 8 13 4 + 16 24 18 4 3 5 14 2 + 16 26 24 8 3 5 14 2 + 17 22 25 4 4 11 12 2 + 17 25 27 8 4 11 12 2 + 6 9 20 1 9 7 15 9 + 20 23 6 1 7 9 16 9 + 28 6 23 1 3 6 10 9 + 23 24 29 1 6 3 5 4 + 9 10 30 1 8 11 12 4 + 31 25 20 1 11 12 8 4 + 28 11 6 1 3 5 6 4 + 11 28 13 1 3 5 14 4 + 25 31 27 1 11 12 17 4 + 9 31 20 1 8 11 13 9 + 10 12 30 1 11 12 17 4 + 9 30 31 1 8 11 12 9 + 24 26 29 1 3 5 14 4 + 23 29 28 1 6 3 5 9 + 32 16 18 2 18 3 5 2 + 33 2 4 2 19 3 5 2 + 4 5 33 0 3 6 19 2 + 5 7 33 0 6 8 19 2 + 7 8 3 0 8 12 4 2 + 7 3 33 0 8 4 19 2 + 18 19 32 0 3 6 18 2 + 19 21 32 0 6 8 18 2 + 21 22 32 0 8 12 18 2 + 32 22 17 0 18 12 4 2 + tverts 20 + 312.663 -687.663 0 + 312.663 312.337 0 + 262.663 262.337 0 + 262.663 -431.024 0 + 262.663 -681.253 0 + 262.663 -431.024 0 + 262.663 -533.047 0 + 262.663 -546.085 0 + 262.663 -549.667 0 + 262.663 -536.685 0 + 262.663 -533.047 0 + 262.663 -681.324 0 + 262.663 -681.324 0 + 262.663 -549.667 0 + 262.663 -431.024 0 + 262.663 -546.085 0 + 262.663 -536.685 0 + 262.663 -681.324 0 + 262.663 -559.29 0 + 262.663 -556.925 0 + aabb -5.0 -5.0 -1.5 5.0 5.0 1.5 -1 + -5.0 -5.0 -1.5 2.32 5.0 1.5 -1 + -5.0 -5.0 -1.5 2.32 5.0 1.5 -1 + -3.75 -5.0 -1.5 2.32 -0.12 1.5 -1 + -3.75 -5.0 -1.5 -2.31 -4.78 1.5 -1 + -3.4 -5.0 -1.5 -2.31 -4.78 -1.5 38 + -3.75 -5.0 -1.5 -3.4 -4.78 1.5 -1 + -3.75 -5.0 -1.5 -3.4 -4.78 1.5 22 + -3.75 -5.0 -1.5 -3.4 -4.78 1.5 23 + -3.4 -5.0 -1.5 2.32 -0.12 -1.5 -1 + -3.4 -5.0 -1.5 -2.03 -0.12 -1.5 29 + -2.31 -5.0 -1.5 2.32 -0.12 -1.5 39 + -5.0 -5.0 -1.5 -2.03 5.0 1.5 -1 + -3.75 -5.0 -1.5 -3.4 0.23 1.5 -1 + -3.75 -4.78 -1.5 -3.4 -0.12 -1.5 19 + -3.75 -5.0 -1.5 -3.75 0.23 1.5 40 + -5.0 -5.0 -1.5 -2.03 5.0 1.5 -1 + -5.0 -5.0 -1.5 -2.03 5.0 1.5 -1 + -3.75 -4.78 -1.5 -2.03 -0.12 -1.5 18 + -5.0 -5.0 1.5 -3.75 5.0 1.5 13 + -3.75 -4.78 -1.5 -3.75 0.23 0.04 46 + -5.0 -5.0 -1.5 2.04 5.0 1.5 -1 + -5.0 -5.0 -1.5 2.04 5.0 1.5 -1 + -3.75 -5.0 -1.5 2.04 5.0 1.5 -1 + -3.75 -0.12 -1.5 2.04 0.11 -1.5 -1 + -3.75 -0.12 -1.5 -2.03 0.11 -1.5 17 + -2.03 -0.12 -1.5 2.04 0.11 -1.5 27 + -3.75 -5.0 -1.5 -2.03 5.0 1.5 -1 + -3.75 -0.12 -1.5 -2.03 0.11 -1.5 16 + -3.75 -5.0 -1.5 -3.75 5.0 1.5 -1 + -3.75 -0.12 -1.5 -3.75 0.23 0.04 47 + -3.75 -5.0 0.04 -3.75 5.0 1.5 15 + -5.0 -5.0 -1.5 2.04 5.0 1.5 -1 + -5.0 -5.0 -1.5 -2.03 5.0 1.5 -1 + -3.75 0.11 -1.5 -2.03 4.78 -1.5 21 + -5.0 -5.0 1.5 -3.75 5.0 1.5 14 + -3.75 0.11 -1.5 2.04 5.0 0.04 -1 + -3.75 0.11 -1.5 -3.75 4.78 0.04 48 + -2.23 0.11 -1.5 2.04 5.0 -1.5 35 + -3.75 0.11 -1.5 -2.03 5.0 1.5 -1 + -3.75 0.11 -1.5 -2.03 5.0 1.5 -1 + -3.75 0.11 -1.5 -3.4 4.78 -1.5 20 + -3.75 0.11 -1.5 -2.03 5.0 1.5 -1 + -3.4 0.11 -1.5 -2.03 5.0 -1.5 31 + -3.75 0.23 -1.5 -3.75 5.0 1.5 49 + -3.75 4.78 -1.5 -2.23 5.0 1.5 -1 + -3.4 4.78 -1.5 -2.23 5.0 -1.5 34 + -3.75 4.78 -1.5 -3.4 5.0 1.5 -1 + -3.75 4.78 -1.5 -3.4 5.0 1.5 24 + -3.75 4.78 -1.5 -3.4 5.0 1.5 25 + -2.23 -5.0 -1.5 5.0 5.0 1.5 -1 + -2.03 -5.0 -1.5 5.0 5.0 1.5 -1 + 2.04 -5.0 -1.5 3.75 -0.12 1.5 -1 + 2.32 -5.0 -1.5 3.75 -4.78 1.5 -1 + 2.32 -5.0 -1.5 3.4 -4.78 -1.5 33 + 3.4 -5.0 -1.5 3.75 -4.78 1.5 -1 + 3.4 -5.0 -1.5 3.75 -4.78 1.5 12 + 3.4 -5.0 -1.5 3.75 -4.78 1.5 11 + 2.04 -5.0 -1.5 3.75 -0.12 1.5 -1 + 2.04 -5.0 -1.5 3.75 -0.12 1.5 -1 + 2.04 -5.0 -1.5 3.4 -0.12 -1.5 32 + 3.75 -5.0 -1.5 3.75 -0.12 1.5 44 + 2.04 -4.78 -1.5 3.75 -0.12 -1.5 7 + -2.03 -5.0 -1.5 5.0 5.0 1.5 -1 + -2.03 -5.0 -1.5 5.0 5.0 1.5 -1 + -2.03 -5.0 -1.5 3.75 -0.12 1.5 -1 + -2.03 -5.0 -1.5 2.32 -0.12 -1.5 28 + 3.75 -5.0 -1.5 3.75 -0.12 1.5 45 + 2.04 -5.0 -1.5 5.0 5.0 1.5 -1 + 2.04 -4.78 -1.5 3.75 -0.12 -1.5 8 + 3.75 -5.0 1.5 5.0 5.0 1.5 1 + -2.03 -5.0 -1.5 3.75 5.0 1.5 -1 + 2.04 -5.0 -1.5 3.75 5.0 1.5 -1 + 3.75 -5.0 -1.5 3.75 5.0 1.5 -1 + 3.75 -0.14 -1.5 3.75 0.12 0.01 43 + 3.75 -5.0 0.01 3.75 5.0 1.5 2 + 2.04 -0.12 -1.5 3.75 0.12 -1.5 3 + -2.03 -0.12 -1.5 3.75 0.12 -1.5 -1 + -2.03 -0.12 -1.5 2.04 0.12 -1.5 26 + 2.04 -0.12 -1.5 3.75 0.12 -1.5 4 + -2.23 -5.0 -1.5 5.0 5.0 1.5 -1 + 2.04 -5.0 -1.5 5.0 5.0 1.5 -1 + 2.04 -5.0 -1.5 5.0 5.0 1.5 -1 + 3.75 -0.14 -1.5 3.75 4.78 0.01 42 + 2.04 -5.0 -1.5 5.0 5.0 1.5 -1 + 3.75 -5.0 1.5 5.0 5.0 1.5 0 + 2.04 0.12 -1.5 3.75 4.78 -1.5 5 + 3.4 -0.14 -1.5 3.75 5.0 1.5 -1 + 3.75 -0.14 -1.5 3.75 5.0 1.5 41 + 3.4 0.12 -1.5 3.75 4.78 -1.5 6 + -2.23 0.12 -1.5 3.75 5.0 1.5 -1 + -2.23 0.12 -1.5 3.4 5.0 -1.5 -1 + -2.23 0.12 -1.5 2.29 5.0 -1.5 37 + 2.04 0.12 -1.5 3.4 5.0 -1.5 30 + 2.29 4.78 -1.5 3.75 5.0 1.5 -1 + 2.29 4.78 -1.5 3.4 5.0 -1.5 36 + 3.4 4.78 -1.5 3.75 5.0 1.5 -1 + 3.4 4.78 -1.5 3.75 5.0 1.5 10 + 3.4 4.78 -1.5 3.75 5.0 1.5 9 +endnode +#Tile trimesh node +node trimesh Object317 + parent tin01_a02_03 + position -4.84 -0.13 2.89 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 71.5 13.0 -139.0 + bitmap tin01_wallcord + verts 24 + 1.09 0.1 0.11 + 0.34 0.13 0.11 + 0.34 -2.3 0.11 + 1.09 -1.07 -0.55 + 1.09 -2.3 -0.37 + 1.09 -2.3 0.11 + 1.09 -0.41 -1.02 + 1.09 0.13 -2.89 + 1.09 0.1 -0.24 + 1.09 -0.41 -2.89 + 0.34 2.56 0.11 + 1.09 0.16 0.11 + 1.09 1.33 -0.55 + 1.09 2.56 -0.37 + 1.09 2.56 0.11 + 1.09 0.67 -1.02 + 1.09 0.16 -0.24 + 1.09 0.67 -2.89 + 0.78 1.33 -0.55 + 0.78 0.67 -1.02 + 0.78 0.67 -2.89 + 0.78 -1.07 -0.55 + 0.78 -0.41 -1.02 + 0.78 -0.41 -2.89 + faces 26 + 0 1 2 1 0 1 2 1 + 3 0 4 2 3 4 5 4 + 0 5 4 2 4 6 5 4 + 3 6 0 2 3 7 4 4 + 7 8 6 2 8 9 7 4 + 6 9 7 2 7 10 8 4 + 0 2 5 1 0 2 11 1 + 1 0 10 1 1 0 2 1 + 11 12 13 2 12 3 5 4 + 14 11 13 2 6 12 5 4 + 15 12 11 2 7 3 12 4 + 15 16 7 2 7 13 8 4 + 7 17 15 2 8 10 7 4 + 10 11 14 1 2 14 11 1 + 18 15 19 1 15 16 17 3 + 18 12 15 1 15 18 16 3 + 17 20 15 4 19 20 16 3 + 19 15 20 4 17 16 20 3 + 6 21 22 1 16 15 17 3 + 3 21 6 1 18 15 16 3 + 23 9 6 4 20 19 16 3 + 6 22 23 4 16 17 20 3 + 15 11 16 2 7 12 13 4 + 8 0 6 2 9 4 7 4 + 16 8 7 2 13 9 8 4 + 10 0 11 1 2 0 14 1 + tverts 21 + 0.417219 0.870259 0 + 0.417219 1.1186 0 + 1.22305 1.1186 0 + 0.746259 0.778557 0 + 0.350321 0.996605 0 + 1.15615 0.838108 0 + 1.15615 0.996604 0 + 0.528158 0.623797 0 + 0.350321 0.0032271 0 + 0.350321 0.879541 0 + 0.528158 0.0032271 0 + 1.22305 0.870259 0 + 0.370027 0.996605 0 + 0.364273 0.859477 0 + 0.436925 0.870259 0 + 0.552142 0.774855 0 + 0.447858 0.620095 0 + 0.552142 0.620095 0 + 0.447858 0.774855 0 + 0.447858 -0.0004746 0 + 0.552142 -0.0004745 0 +endnode +#Tile trimesh node +node trimesh Object320 + parent tin01_a02_03 + position 4.08 -4.65 2.93 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 4.5 93.5 -143.0 + bitmap tin01_wallcord + verts 13 + -0.02 0.32 -1.06 + -0.33 0.98 -0.59 + -0.02 0.98 -0.59 + -0.33 0.32 -1.06 + -0.02 0.32 -2.93 + -0.33 0.32 -2.93 + -0.33 2.22 0.07 + 0.42 -0.35 0.07 + 0.42 2.22 0.07 + -0.33 -0.13 0.07 + -0.33 -0.13 -2.93 + -0.33 2.22 -0.41 + -0.33 -0.35 0.07 + faces 12 + 0 1 2 1 0 1 2 3 + 0 3 1 1 0 3 1 3 + 4 5 0 2 4 5 0 3 + 3 0 5 2 3 0 5 3 + 6 7 8 1 6 7 8 1 + 9 3 10 4 9 10 11 4 + 3 9 1 4 10 9 12 4 + 1 9 11 4 12 9 13 4 + 12 7 9 1 14 7 15 1 + 3 5 10 4 10 16 11 4 + 9 7 6 1 15 7 6 1 + 9 6 11 4 9 17 13 4 + tverts 18 + 0.552141 0.620095 0 + 0.447858 0.774855 0 + 0.552141 0.774855 0 + 0.447858 0.620095 0 + 0.552141 -0.0004746 0 + 0.447858 -0.0004746 0 + 1.22305 0.870259 0 + 2.07285 1.1186 0 + 1.22305 1.1186 0 + 1.93412 0.996604 0 + 1.78415 0.623796 0 + 1.93412 0.0032268 0 + 1.56605 0.778557 0 + 1.15615 0.838108 0 + 2.07285 0.870258 0 + 2.00102 0.870258 0 + 1.78415 0.0032268 0 + 1.15615 0.996604 0 +endnode +#Tile trimesh node +node trimesh TDmesh944 + parent tin01_a02_03 + position 0.0 0.0 -0.2 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 0.0 20.0 + bitmap tin01_floor2 + verts 49 + -3.4 -4.78 0.2 + -3.4 -5.0 0.2 + -2.5 -2.5 0.2 + 2.5 -2.5 0.2 + 3.75 -4.33 0.2 + 4.06 -2.5 0.2 + 4.06 -4.33 0.2 + -4.06 -0.54 0.2 + -4.06 -2.5 0.2 + -3.75 -0.54 0.2 + 2.5 0.0 0.2 + 3.75 -0.54 0.2 + 3.75 0.0 0.2 + -3.75 0.54 0.2 + -3.75 0.0 0.2 + -2.5 0.0 0.2 + -2.5 2.5 0.2 + 2.5 2.5 0.2 + 3.75 0.54 0.2 + 4.06 2.5 0.2 + 4.06 0.54 0.2 + -4.06 4.33 0.2 + -4.06 2.5 0.2 + -3.75 4.33 0.2 + 2.5 5.0 0.2 + 3.4 4.78 0.2 + 3.4 5.0 0.2 + -2.5 -5.0 0.2 + 0.0 -2.5 0.2 + 0.0 -5.0 0.2 + 2.5 -5.0 0.2 + 0.0 0.0 0.2 + 0.0 2.5 0.2 + -2.5 5.0 0.2 + 0.0 5.0 0.2 + 3.75 4.33 0.2 + 3.75 4.78 0.2 + 4.06 4.33 0.2 + 4.06 -0.54 0.2 + 3.4 -4.78 0.2 + 3.4 -5.0 0.2 + -3.75 -4.33 0.2 + -3.75 -4.78 0.2 + -4.06 -4.33 0.2 + -4.06 0.54 0.2 + -3.4 4.78 0.2 + -3.4 5.0 0.2 + 3.75 -4.78 0.2 + -3.75 4.78 0.2 + faces 56 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 6 5 4 1 6 5 4 1 + 7 8 9 1 7 8 9 1 + 2 9 8 1 2 9 8 1 + 10 3 11 1 10 3 11 1 + 11 12 10 1 11 12 10 1 + 13 14 15 1 13 14 15 1 + 15 16 13 1 15 16 13 1 + 17 18 19 1 17 18 19 1 + 20 19 18 1 20 19 18 1 + 21 22 23 1 21 22 23 1 + 16 23 22 1 16 23 22 1 + 24 17 25 1 24 17 25 1 + 25 26 24 1 25 26 24 1 + 2 27 28 1 2 27 28 1 + 29 28 27 1 29 28 27 1 + 28 29 3 1 28 29 3 1 + 30 3 29 1 30 3 29 1 + 15 2 31 1 15 2 31 1 + 28 31 2 1 28 31 2 1 + 31 28 10 1 31 28 10 1 + 3 10 28 1 3 10 28 1 + 16 15 32 1 16 15 32 1 + 31 32 15 1 31 32 15 1 + 32 31 17 1 32 31 17 1 + 10 17 31 1 10 17 31 1 + 33 16 34 1 33 16 34 1 + 32 34 16 1 32 34 16 1 + 34 32 24 1 34 32 24 1 + 17 24 32 1 17 24 32 1 + 17 19 25 1 17 19 25 1 + 25 35 36 1 25 35 36 1 + 19 37 35 1 19 37 35 1 + 17 10 18 1 17 10 18 1 + 10 12 18 1 10 12 18 1 + 3 5 11 1 3 5 11 1 + 5 38 11 1 5 38 11 1 + 4 30 39 1 4 30 39 1 + 3 30 4 1 3 30 4 1 + 30 40 39 1 30 40 39 1 + 27 2 1 1 27 2 1 1 + 2 8 0 1 2 8 0 1 + 0 41 42 1 0 41 42 1 + 8 43 41 1 8 43 41 1 + 2 15 9 1 2 15 9 1 + 15 14 9 1 15 14 9 1 + 16 22 13 1 16 22 13 1 + 22 44 13 1 22 44 13 1 + 23 33 45 1 23 33 45 1 + 16 33 23 1 16 33 23 1 + 33 46 45 1 33 46 45 1 + 35 25 19 1 35 25 19 1 + 39 47 4 1 39 47 4 1 + 41 0 8 1 41 0 8 1 + 45 48 23 1 45 48 23 1 + tverts 49 + 0.319998 -3.95661 0 + 0.319998 -4.0 0 + 0.499999 -3.5 0 + 1.5 -3.5 0 + 1.75 -3.86603 0 + 1.81299 -3.5 0 + 1.81299 -3.86603 0 + 0.187012 -3.10741 0 + 0.187012 -3.5 0 + 0.249999 -3.10741 0 + 1.5 -3.0 0 + 1.75 -3.10741 0 + 1.75 -3.0 0 + 0.249999 -2.89259 0 + 0.249999 -3.0 0 + 0.499999 -3.0 0 + 0.499999 -2.5 0 + 1.5 -2.5 0 + 1.75 -2.89259 0 + 1.81299 -2.5 0 + 1.81299 -2.89259 0 + 0.187012 -2.13397 0 + 0.187012 -2.5 0 + 0.249999 -2.13397 0 + 1.5 -2.0 0 + 1.68 -2.04339 0 + 1.68 -2.0 0 + 0.499999 -4.0 0 + 0.999999 -3.5 0 + 0.999999 -4.0 0 + 1.5 -4.0 0 + 0.999999 -3.0 0 + 0.999999 -2.5 0 + 0.499999 -2.0 0 + 0.999999 -2.0 0 + 1.75 -2.13397 0 + 1.75 -2.04339 0 + 1.81299 -2.13397 0 + 1.81299 -3.10741 0 + 1.68 -3.95661 0 + 1.68 -4.0 0 + 0.249999 -3.86603 0 + 0.249999 -3.95661 0 + 0.187012 -3.86603 0 + 0.187012 -2.89259 0 + 0.319998 -2.04338 0 + 0.319998 -2.0 0 + 1.75 -3.95661 0 + 0.249999 -2.04339 0 +endnode +#Tile trimesh node +node trimesh Box1225 + parent tin01_a02_03 + position 3.47 0.0 2.53 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.603922 0.584314 0.592157 + diffuse 0.603922 0.584314 0.592157 + specular 0.0 0.0 0.0 + shininess 1 + center -54.0 0.0 29.5 + bitmap tin01_shpFLR1 + verts 11 + -0.11 -0.03 0.17 + 0.28 -0.03 0.47 + 0.28 0.03 0.47 + -0.11 0.03 0.17 + 0.28 -0.03 0.12 + 0.28 0.03 0.12 + -1.36 0.03 0.12 + -1.36 0.0 0.12 + -1.36 -0.03 0.17 + -1.36 -0.03 0.12 + -1.36 0.03 0.17 + faces 13 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 0 4 2 4 5 6 5 + 3 2 5 2 5 4 6 6 + 6 7 8 1 7 8 9 3 + 8 7 9 1 9 8 10 3 + 8 10 6 1 9 11 7 3 + 0 3 10 4 12 13 11 3 + 10 8 0 4 11 9 12 3 + 4 0 8 2 14 12 9 3 + 8 9 4 2 9 10 14 3 + 3 5 6 2 13 15 7 3 + 6 10 3 2 7 11 13 3 + tverts 16 + 0.463885 0.731296 0 + 0.463884 0.268704 0 + 0.536115 0.268704 0 + 0.536116 0.731296 0 + 0.602609 0.580382 0 + 0.483031 0.426185 0 + 0.461905 0.580382 0 + 0.479305 0.956563 0 + 0.507398 0.956563 0 + 0.575082 0.956563 0 + 0.530742 0.956563 0 + 0.438906 0.956563 0 + 0.575082 0.194509 0 + 0.438907 0.194509 0 + 0.346568 -0.126979 0 + 0.216947 -0.126979 0 +endnode +#Tile trimesh node +node trimesh Box2170 + parent tin01_a02_03 + position 2.14 0.0 2.58 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.5 -0.5 -52.0 + bitmap tin01_deco + verts 45 + -0.14 -0.15 -0.26 + 0.15 -0.15 -0.26 + 0.02 -0.02 -0.16 + -0.01 -0.02 -0.16 + 0.15 0.15 -0.26 + 0.02 0.01 -0.16 + -0.14 0.15 -0.26 + -0.01 0.01 -0.16 + 0.02 -0.02 0.05 + -0.01 -0.02 0.06 + 0.02 0.01 0.05 + -0.01 0.01 0.06 + -0.22 -0.23 -0.99 + 0.23 -0.23 -0.99 + 0.01 0.0 -1.1 + 0.23 0.22 -0.99 + -0.22 0.22 -0.99 + -0.22 -0.23 -1.09 + 0.23 -0.23 -1.09 + 0.23 0.22 -1.09 + -0.22 0.22 -1.09 + -0.2 0.2 -0.99 + -0.2 0.18 -0.99 + -0.12 0.1 -0.26 + -0.12 0.12 -0.26 + -0.18 0.18 -0.99 + -0.1 0.1 -0.26 + 0.2 -0.19 -0.99 + 0.2 -0.2 -0.99 + 0.12 -0.14 -0.26 + 0.12 -0.13 -0.26 + 0.21 -0.2 -0.99 + 0.14 -0.14 -0.26 + 0.2 0.21 -0.99 + 0.2 0.19 -0.99 + 0.13 0.12 -0.26 + 0.13 0.13 -0.26 + 0.22 0.19 -0.99 + 0.15 0.12 -0.26 + -0.2 -0.2 -0.99 + -0.2 -0.22 -0.99 + -0.13 -0.14 -0.26 + -0.13 -0.13 -0.26 + -0.18 -0.22 -0.99 + -0.11 -0.14 -0.26 + faces 52 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 2 4 5 2 4 5 6 4 + 4 2 1 2 5 4 7 4 + 5 6 7 1 2 0 8 6 + 6 5 4 1 0 2 1 6 + 6 0 3 2 9 7 4 3 + 3 7 6 2 4 6 9 3 + 8 9 3 1 10 11 12 5 + 3 2 8 1 12 13 10 5 + 10 8 2 2 14 10 13 4 + 2 5 10 2 13 15 14 4 + 11 10 5 1 16 17 15 6 + 5 7 11 1 15 18 16 6 + 9 11 7 2 11 16 18 3 + 7 3 9 2 18 12 11 3 + 12 13 14 1 0 1 2 5 + 15 14 13 2 5 4 7 4 + 16 14 15 4 0 2 1 6 + 16 12 14 8 9 7 4 3 + 17 18 13 1 19 20 21 5 + 13 12 17 1 21 22 19 5 + 18 19 15 2 20 23 24 4 + 15 13 18 2 24 21 20 4 + 19 20 16 4 25 26 27 6 + 16 15 19 4 27 28 25 6 + 20 17 12 8 26 19 22 3 + 12 16 20 8 22 27 26 3 + 21 22 23 1 26 19 22 3 + 23 24 21 1 22 27 26 3 + 25 26 23 1 19 22 29 3 + 23 22 25 1 22 19 30 3 + 21 24 26 1 19 22 29 3 + 26 25 21 1 22 19 30 3 + 27 28 29 1 26 19 22 3 + 29 30 27 1 22 27 26 3 + 31 32 29 1 19 22 29 3 + 29 28 31 1 22 19 30 3 + 27 30 32 1 19 22 29 3 + 32 31 27 1 22 19 30 3 + 33 34 35 1 26 19 22 3 + 35 36 33 1 22 27 26 3 + 37 38 35 1 19 22 29 3 + 35 34 37 1 22 19 30 3 + 33 36 38 1 19 22 29 3 + 38 37 33 1 22 19 30 3 + 39 40 41 1 26 19 22 3 + 41 42 39 1 22 27 26 3 + 43 44 41 1 19 22 29 3 + 41 40 43 1 22 19 30 3 + 39 42 44 1 19 22 29 3 + 44 43 39 1 22 19 30 3 + tverts 31 + 0.492462 0.645202 0 + 0.999816 0.645202 0 + 0.79758 0.990112 0 + 0.694697 0.990112 0 + 0.797311 0.987816 0 + 0.490883 0.652362 0 + 0.693987 0.987816 0 + 1.00041 0.652362 0 + 0.694698 0.990112 0 + 0.490884 0.652362 0 + 0.434748 8.28857 0 + 0.434582 8.73272 0 + 0.190252 3.66919 0 + 0.190418 3.22504 0 + 0.440252 8.28857 0 + 0.184582 3.22504 0 + -0.0595825 8.73272 0 + -0.0597477 8.28857 0 + 0.184748 3.66919 0 + 0.617747 0.720991 0 + 0.867747 0.720991 0 + 0.867747 0.812825 0 + 0.617747 0.812825 0 + 0.618438 0.720991 0 + 0.618438 0.812825 0 + 0.61903 0.720991 0 + 0.86903 0.720991 0 + 0.86903 0.812825 0 + 0.61903 0.812825 0 + 0.617747 0.812825 0 + 0.617747 0.720991 0 +endnode +#Tile trimesh node +node trimesh Box1228 + parent tin01_a02_03 + position -3.48 0.01 2.53 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.603922 0.584314 0.592157 + diffuse 0.603922 0.584314 0.592157 + specular 0.0 0.0 0.0 + shininess 1 + center 55.0 -1.0 29.5 + bitmap tin01_shpFLR1 + verts 11 + 0.12 0.02 0.17 + -0.27 0.02 0.47 + -0.27 -0.04 0.47 + 0.12 -0.04 0.17 + -0.27 0.02 0.12 + -0.27 -0.04 0.12 + 1.37 -0.04 0.12 + 1.37 -0.01 0.12 + 1.37 0.02 0.17 + 1.37 0.02 0.12 + 1.37 -0.04 0.17 + faces 13 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 0 4 2 4 5 6 5 + 3 2 5 2 5 4 6 6 + 6 7 8 1 7 8 9 3 + 8 7 9 1 9 8 10 3 + 8 10 6 1 9 11 7 3 + 0 3 10 4 12 13 11 3 + 10 8 0 4 11 9 12 3 + 4 0 8 2 14 12 9 3 + 8 9 4 2 9 10 14 3 + 3 5 6 2 13 15 7 3 + 6 10 3 2 7 11 13 3 + tverts 16 + 0.463885 0.731296 0 + 0.463884 0.268704 0 + 0.536115 0.268704 0 + 0.536116 0.731296 0 + 0.602609 0.580382 0 + 0.483031 0.426185 0 + 0.461905 0.580382 0 + 0.479305 0.956563 0 + 0.507398 0.956563 0 + 0.575082 0.956563 0 + 0.530742 0.956563 0 + 0.438906 0.956563 0 + 0.575082 0.194509 0 + 0.438907 0.194509 0 + 0.346568 -0.126979 0 + 0.216947 -0.126979 0 +endnode +#Tile trimesh node +node trimesh Mesh1373 + parent tin01_a02_03 + position 3.85 0.0 2.53 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -64.5 0.0 -110.0 + bitmap tin01_flood + verts 12 + -0.16 0.01 -1.78 + -0.64 0.01 -2.32 + -0.16 0.01 0.12 + -0.64 0.01 0.12 + -1.13 -0.01 -1.78 + -0.64 -0.01 -2.32 + -1.13 -0.01 0.12 + -0.64 -0.01 0.12 + -1.13 0.01 -1.78 + -1.13 0.01 0.12 + -0.16 -0.01 -1.78 + -0.16 -0.01 0.12 + faces 8 + 0 1 2 1 0 1 2 3 + 3 2 1 1 3 2 1 3 + 4 5 6 1 4 1 5 3 + 7 6 5 1 3 5 1 3 + 1 8 3 1 1 4 3 3 + 9 3 8 1 5 3 4 3 + 5 10 7 1 1 0 3 3 + 11 7 10 1 2 3 0 3 + tverts 6 + 0.262117 0.73289 0 + -0.0036612 0.998353 0 + 0.947225 0.732891 0 + 0.947225 0.998354 0 + 0.262117 0.73 0 + 0.947225 0.73 0 +endnode +#Tile trimesh node +node trimesh Box2171 + parent tin01_a02_03 + position -2.16 0.0 2.58 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.5 -0.5 -52.0 + bitmap tin01_deco + verts 45 + -0.14 -0.15 -0.26 + 0.16 -0.15 -0.26 + 0.02 -0.02 -0.16 + -0.01 -0.02 -0.16 + 0.16 0.14 -0.26 + 0.02 0.01 -0.16 + -0.14 0.14 -0.26 + -0.01 0.01 -0.16 + 0.02 -0.02 0.05 + -0.01 -0.02 0.06 + 0.02 0.01 0.05 + -0.01 0.01 0.06 + -0.22 -0.23 -0.99 + 0.23 -0.23 -0.99 + 0.01 0.0 -1.1 + 0.23 0.22 -0.99 + -0.22 0.22 -0.99 + -0.22 -0.23 -1.09 + 0.23 -0.23 -1.09 + 0.23 0.22 -1.09 + -0.22 0.22 -1.09 + -0.2 0.2 -0.99 + -0.2 0.18 -0.99 + -0.12 0.1 -0.26 + -0.12 0.12 -0.26 + -0.18 0.18 -0.99 + -0.1 0.1 -0.26 + 0.2 -0.19 -0.99 + 0.2 -0.21 -0.99 + 0.12 -0.14 -0.26 + 0.12 -0.13 -0.26 + 0.22 -0.21 -0.99 + 0.14 -0.14 -0.26 + 0.2 0.21 -0.99 + 0.2 0.19 -0.99 + 0.13 0.12 -0.26 + 0.13 0.13 -0.26 + 0.22 0.19 -0.99 + 0.15 0.12 -0.26 + -0.2 -0.2 -0.99 + -0.2 -0.22 -0.99 + -0.13 -0.14 -0.26 + -0.13 -0.13 -0.26 + -0.18 -0.22 -0.99 + -0.11 -0.14 -0.26 + faces 52 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 2 4 5 2 4 5 6 4 + 4 2 1 2 5 4 7 4 + 5 6 7 1 2 0 8 6 + 6 5 4 1 0 2 1 6 + 6 0 3 2 9 7 4 3 + 3 7 6 2 4 6 9 3 + 8 9 3 1 10 11 12 5 + 3 2 8 1 12 13 10 5 + 10 8 2 2 14 10 13 4 + 2 5 10 2 13 15 14 4 + 11 10 5 1 16 17 15 6 + 5 7 11 1 15 18 16 6 + 9 11 7 2 11 16 18 3 + 7 3 9 2 18 12 11 3 + 12 13 14 1 0 1 2 5 + 15 14 13 2 5 4 7 4 + 16 14 15 4 0 2 1 6 + 16 12 14 8 9 7 4 3 + 17 18 13 1 19 20 21 5 + 13 12 17 1 21 22 19 5 + 18 19 15 2 20 23 24 4 + 15 13 18 2 24 21 20 4 + 19 20 16 4 25 26 27 6 + 16 15 19 4 27 28 25 6 + 20 17 12 8 26 19 22 3 + 12 16 20 8 22 27 26 3 + 21 22 23 1 26 19 22 3 + 23 24 21 1 22 27 26 3 + 25 26 23 1 19 22 29 3 + 23 22 25 1 22 19 30 3 + 21 24 26 1 19 22 29 3 + 26 25 21 1 22 19 30 3 + 27 28 29 1 26 19 22 3 + 29 30 27 1 22 27 26 3 + 31 32 29 1 19 22 29 3 + 29 28 31 1 22 19 30 3 + 27 30 32 1 19 22 29 3 + 32 31 27 1 22 19 30 3 + 33 34 35 1 26 19 22 3 + 35 36 33 1 22 27 26 3 + 37 38 35 1 19 22 29 3 + 35 34 37 1 22 19 30 3 + 33 36 38 1 19 22 29 3 + 38 37 33 1 22 19 30 3 + 39 40 41 1 26 19 22 3 + 41 42 39 1 22 27 26 3 + 43 44 41 1 19 22 29 3 + 41 40 43 1 22 19 30 3 + 39 42 44 1 19 22 29 3 + 44 43 39 1 22 19 30 3 + tverts 31 + 0.492462 0.645202 0 + 0.999816 0.645202 0 + 0.79758 0.990112 0 + 0.694697 0.990112 0 + 0.797311 0.987816 0 + 0.490883 0.652362 0 + 0.693987 0.987816 0 + 1.00041 0.652362 0 + 0.694698 0.990112 0 + 0.490884 0.652362 0 + 0.434748 8.28857 0 + 0.434582 8.73272 0 + 0.190252 3.66919 0 + 0.190418 3.22504 0 + 0.440252 8.28857 0 + 0.184582 3.22504 0 + -0.0595825 8.73272 0 + -0.0597477 8.28857 0 + 0.184748 3.66919 0 + 0.617747 0.720991 0 + 0.867747 0.720991 0 + 0.867747 0.812825 0 + 0.617747 0.812825 0 + 0.618438 0.720991 0 + 0.618438 0.812825 0 + 0.61903 0.720991 0 + 0.86903 0.720991 0 + 0.86903 0.812825 0 + 0.61903 0.812825 0 + 0.617747 0.812825 0 + 0.617747 0.720991 0 +endnode +#Tile trimesh node +node trimesh Object319 + parent tin01_a02_03 + position -4.24 -4.63 2.97 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 11.5 91.5 -147.0 + bitmap tin01_wallcord + verts 13 + -0.26 -0.37 0.03 + 0.49 2.2 0.03 + -0.26 2.2 0.03 + 0.49 0.3 -1.1 + 0.49 -0.15 0.03 + 0.49 -0.15 -2.97 + 0.49 0.96 -0.63 + 0.49 2.2 -0.45 + 0.49 -0.37 0.03 + 0.49 0.3 -2.97 + 0.18 0.3 -1.1 + 0.18 0.96 -0.63 + 0.18 0.3 -2.97 + faces 12 + 0 1 2 1 0 1 2 1 + 3 4 5 2 3 4 5 4 + 4 3 6 2 4 3 6 4 + 4 6 7 2 4 6 7 4 + 0 8 4 1 0 8 9 1 + 9 3 5 2 10 3 5 4 + 0 4 1 1 0 9 1 1 + 1 4 7 2 11 4 7 4 + 6 10 11 1 12 13 14 3 + 3 10 6 1 15 13 12 3 + 9 12 10 4 16 17 13 3 + 10 3 9 4 13 15 16 3 + tverts 18 + 2.07285 1.1186 0 + 1.22305 0.870259 0 + 1.22305 1.1186 0 + 1.78415 0.623796 0 + 1.93412 0.996604 0 + 1.93412 0.0032268 0 + 1.56605 0.778557 0 + 1.15615 0.838108 0 + 2.07285 0.870258 0 + 2.00102 0.870258 0 + 1.78415 0.0032268 0 + 1.15615 0.996604 0 + 0.447858 0.774855 0 + 0.552141 0.620095 0 + 0.552141 0.774855 0 + 0.447858 0.620095 0 + 0.447858 -0.0004746 0 + 0.552141 -0.0004746 0 +endnode +#Tile trimesh node +node trimesh Mesh1374 + parent tin01_a02_03 + position -3.84 0.01 2.53 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 64.5 -0.5 -110.0 + bitmap tin01_flood + verts 12 + 0.16 -0.01 -1.78 + 0.65 -0.01 -2.32 + 0.16 -0.01 0.12 + 0.65 -0.01 0.12 + 1.13 0.0 -1.78 + 0.65 0.0 -2.32 + 1.13 0.0 0.12 + 0.65 0.0 0.12 + 1.13 -0.01 -1.78 + 1.13 -0.01 0.12 + 0.16 0.0 -1.78 + 0.16 0.0 0.12 + faces 8 + 0 1 2 1 0 1 2 3 + 3 2 1 1 3 2 1 3 + 4 5 6 1 4 1 5 3 + 7 6 5 1 3 5 1 3 + 1 8 3 1 1 4 3 3 + 9 3 8 1 5 3 4 3 + 5 10 7 1 1 0 3 3 + 11 7 10 1 2 3 0 3 + tverts 6 + 0.262117 0.73289 0 + -0.0036612 0.998353 0 + 0.947225 0.732891 0 + 0.947225 0.998354 0 + 0.262117 0.73 0 + 0.947225 0.73 0 +endnode +#Tile trimesh node +node trimesh Mesh1372 + parent tin01_a02_03 + position -7.03 -0.19 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 297.0 19.0 126.0 + bitmap tin01_wallbrick + verts 16 + 2.97 -3.48 2.34 + 2.97 -2.31 0.0 + 2.97 -2.24 2.52 + 2.97 -1.01 2.34 + 2.97 -0.35 1.87 + 2.97 -4.14 1.87 + 2.97 -4.14 0.0 + 2.97 -0.35 0.0 + 2.97 1.39 2.34 + 2.97 2.69 0.0 + 2.97 2.62 2.52 + 2.97 3.86 2.34 + 2.97 4.52 1.87 + 2.97 0.73 1.87 + 2.97 0.73 0.0 + 2.97 4.52 0.0 + faces 12 + 0 1 2 1 0 1 2 3 + 3 1 4 1 3 1 4 3 + 2 1 3 1 2 1 3 3 + 0 5 1 1 0 5 1 3 + 6 1 5 1 6 1 5 3 + 1 7 4 1 1 7 4 3 + 8 9 10 1 0 1 2 3 + 11 9 12 1 3 1 4 3 + 10 9 11 1 2 1 3 3 + 8 13 9 1 0 5 1 3 + 14 9 13 1 6 1 5 3 + 9 15 12 1 1 7 4 3 + tverts 8 + 1.69567 0.775027 0 + 1.06062 -0.0003026 0 + 0.850303 0.834578 0 + 0.306033 0.775027 0 + -0.0557951 0.620267 0 + 2.02789 0.620267 0 + 2.02789 -0.0003027 0 + -0.0557952 -0.0003025 0 +endnode +#Tile trimesh node +node trimesh Line686 + parent tin01_a02_03 + position -3.58 4.89 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 358.0 -489.0 0.0 + bitmap tin01_black + verts 16 + -0.17 0.11 0.0 + -0.17 -0.11 0.0 + 0.18 -0.11 0.0 + 0.18 0.11 0.0 + 6.98 -0.11 0.0 + 7.33 -0.11 0.0 + 7.33 0.11 0.0 + 6.98 0.11 0.0 + 6.98 -9.89 0.0 + 7.33 -9.89 0.0 + 7.33 -9.67 0.0 + 6.98 -9.67 0.0 + -0.17 -9.89 0.0 + 0.18 -9.89 0.0 + 0.18 -9.67 0.0 + -0.17 -9.67 0.0 + faces 8 + 0 1 2 1 0 0 0 1 + 3 0 2 1 0 0 0 1 + 4 5 6 1 0 0 0 1 + 4 6 7 1 0 0 0 1 + 8 9 10 1 0 0 0 1 + 8 10 11 1 0 0 0 1 + 12 13 14 1 0 0 0 1 + 12 14 15 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Mesh3589 + parent tin01_a02_03 + position -1.66 4.92 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center undefined + bitmap tin01_furnish2 + verts 0 + faces 0 +endnode +#Tile trimesh node +node trimesh Mesh3590 + parent tin01_a02_03 + position 1.54 4.92 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center undefined + bitmap tin01_furnish2 + verts 0 + faces 0 +endnode +#Tile trimesh node +node trimesh Box2913 + parent tin01_a02_03 + position 3.41 -5.09 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 16.5 20.0 -219.0 + bitmap tin01_furnish2 + verts 8 + 0.34 0.31 -3.69 + -0.01 0.31 -3.69 + 0.34 0.31 -0.69 + -0.01 0.31 -1.27 + -0.01 0.31 -0.69 + -0.01 0.09 -3.69 + -0.01 0.09 -1.27 + -0.01 0.09 -0.69 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 1 5 3 2 5 6 7 3 + 6 3 5 2 8 7 6 3 + 7 4 6 2 9 10 8 3 + 3 6 4 2 7 8 10 3 + tverts 11 + -0.696282 -0.23919 0 + -0.596283 -0.23919 0 + -0.696282 0.617953 0 + -0.596281 0.452184 0 + -0.596281 0.617953 0 + 0.219389 -0.0988962 0 + 0.285126 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 +endnode +#Tile trimesh node +node trimesh Box2914 + parent tin01_a02_03 + position -3.4 -5.09 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -17.5 20.0 -218.0 + bitmap tin01_furnish2 + verts 8 + 0.0 0.31 -3.68 + -0.35 0.31 -3.68 + 0.0 0.31 -1.26 + -0.35 0.31 -0.68 + 0.0 0.31 -0.68 + 0.0 0.09 -3.68 + 0.0 0.09 -1.26 + 0.0 0.09 -0.68 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 5 0 2 2 5 6 7 3 + 2 6 5 2 7 8 5 3 + 4 7 6 2 9 10 8 3 + 6 2 4 2 8 7 9 3 + tverts 11 + 1.34658 -0.23919 0 + 1.44658 -0.23919 0 + 1.34658 0.452184 0 + 1.44658 0.617953 0 + 1.34658 0.617953 0 + 0.285126 -0.0988962 0 + 0.219389 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.219389 0.810195 0 + 0.285126 0.810195 0 +endnode +#Tile trimesh node +node trimesh Box2916 + parent tin01_a02_03 + position -3.41 5.09 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -16.5 -20.0 -219.0 + bitmap tin01_furnish2 + verts 8 + -0.34 -0.31 -3.69 + 0.01 -0.31 -3.69 + -0.34 -0.31 -0.69 + 0.01 -0.31 -1.27 + 0.01 -0.31 -0.69 + 0.01 -0.09 -3.69 + 0.01 -0.09 -1.27 + 0.01 -0.09 -0.69 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 1 5 3 2 5 6 7 3 + 6 3 5 2 8 7 6 3 + 7 4 6 2 9 10 8 3 + 3 6 4 2 7 8 10 3 + tverts 11 + -0.696282 -0.23919 0 + -0.596283 -0.23919 0 + -0.696282 0.617953 0 + -0.596281 0.452184 0 + -0.596281 0.617953 0 + 0.219389 -0.0988962 0 + 0.285126 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 +endnode +#Tile trimesh node +node trimesh Box2917 + parent tin01_a02_03 + position 3.4 5.09 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 17.5 -20.0 -218.0 + bitmap tin01_furnish2 + verts 8 + 0.0 -0.31 -3.68 + 0.35 -0.31 -3.68 + 0.0 -0.31 -1.26 + 0.35 -0.31 -0.68 + 0.0 -0.31 -0.68 + 0.0 -0.09 -3.68 + 0.0 -0.09 -1.26 + 0.0 -0.09 -0.68 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 5 0 2 2 5 6 7 3 + 2 6 5 2 7 8 5 3 + 4 7 6 2 9 10 8 3 + 6 2 4 2 8 7 9 3 + tverts 11 + 1.34658 -0.23919 0 + 1.44658 -0.23919 0 + 1.34658 0.452184 0 + 1.44658 0.617953 0 + 1.34658 0.617953 0 + 0.285126 -0.0988962 0 + 0.219389 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.219389 0.810195 0 + 0.285126 0.810195 0 +endnode +#Tile trimesh node +node trimesh Object316 + parent tin01_a02_03 + position 0.0 0.0 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 0.0 0.0 + bitmap tin01_black + verts 14 + 4.5 2.43 0.0 + 5.0 -5.0 0.0 + 4.5 5.0 0.0 + 5.0 5.0 0.0 + 4.5 0.0 0.0 + 4.5 -2.43 0.0 + 4.5 -5.0 0.0 + -5.0 -5.0 0.0 + -4.5 2.43 0.0 + -4.5 5.0 0.0 + -5.0 5.0 0.0 + -4.5 0.0 0.0 + -4.5 -2.43 0.0 + -4.5 -5.0 0.0 + faces 10 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 1 0 1 4 1 0 1 + 5 1 4 1 5 1 4 1 + 6 1 5 1 6 1 5 1 + 7 8 9 1 7 8 9 1 + 9 10 7 1 9 10 7 1 + 7 11 8 1 7 11 8 1 + 7 12 11 1 7 12 11 1 + 7 13 12 1 7 13 12 1 + tverts 14 + -155.0 87.9336 0 + -154.5 80.5 0 + -155.0 90.5 0 + -154.5 90.5 0 + -155.0 85.5 0 + -155.0 83.0664 0 + -155.0 80.5 0 + -164.5 80.5 0 + -164.0 87.9336 0 + -164.0 90.5 0 + -164.5 90.5 0 + -164.0 85.5 0 + -164.0 83.0664 0 + -164.0 80.5 0 +endnode +#Tile trimesh node +node trimesh Mesh1367 + parent tin01_a02_03 + position 0.0 0.03 -0.13 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 1 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 1.5 -3.00003 14.0 + bitmap tin01_burlap + verts 15 + -2.56 -2.51 0.14 + -2.5 -5.03 0.14 + -0.06 -2.51 0.14 + 0.0 -5.03 0.14 + 2.44 -2.51 0.14 + 2.5 -5.03 0.14 + -2.41 -0.01 0.14 + 0.09 -0.01 0.14 + 2.59 -0.01 0.14 + -2.41 2.49 0.14 + 0.09 2.49 0.14 + 2.59 2.49 0.14 + -2.5 4.97 0.14 + 0.0 4.97 0.14 + 2.5 4.97 0.14 + faces 16 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 2 3 4 1 2 3 4 1 + 5 4 3 1 5 4 3 1 + 6 0 7 1 6 0 7 1 + 2 7 0 1 2 7 0 1 + 7 2 8 1 7 2 8 1 + 4 8 2 1 4 8 2 1 + 9 6 10 1 9 6 10 1 + 7 10 6 1 7 10 6 1 + 10 7 11 1 10 7 11 1 + 8 11 7 1 8 11 7 1 + 12 9 13 1 12 9 13 1 + 10 13 9 1 10 13 9 1 + 13 10 14 1 13 10 14 1 + 11 14 10 1 11 14 10 1 + tverts 15 + -0.0076119 0.0637697 0 + -0.007612 0.683901 0 + 0.594654 0.0637696 0 + 0.594654 0.6839 0 + -0.0022856 0.0637694 0 + -0.0022858 0.6839 0 + -0.0076117 0.68877 0 + 0.594655 0.68877 0 + -0.0022854 0.688769 0 + -0.0076116 0.0686388 0 + 0.594655 0.0686387 0 + -0.0022854 0.0686384 0 + -0.0076114 0.686683 0 + 0.594655 0.686683 0 + -0.0022852 0.686682 0 +endnode +#Tile trimesh node +node trimesh bolt01 + parent tin01_a02_03 + position -2.06 0.0 5.02 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.6 0.894118 0.721569 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10 + center 202.5 0.0 4.0 + bitmap tin01__metal01 + verts 24 + 0.0 -0.33 0.0 + -0.06 -0.33 0.0 + -0.02 -0.33 0.06 + 0.05 -0.33 0.04 + 0.05 -0.33 -0.04 + -0.02 -0.33 -0.06 + -0.06 0.33 0.0 + -0.02 0.33 0.06 + 0.05 0.33 0.04 + 0.05 0.33 -0.04 + -0.02 0.33 -0.06 + 0.0 0.33 0.0 + 4.06 -0.33 0.08 + 4.0 -0.33 0.08 + 4.04 -0.33 0.14 + 4.11 -0.33 0.12 + 4.11 -0.33 0.04 + 4.04 -0.33 0.02 + 4.0 0.33 0.08 + 4.04 0.33 0.14 + 4.11 0.33 0.12 + 4.11 0.33 0.04 + 4.04 0.33 0.02 + 4.06 0.33 0.08 + faces 40 + 0 2 1 1 12 13 14 2 + 0 3 2 1 15 16 17 2 + 0 4 3 1 18 19 20 2 + 0 5 4 1 21 22 23 2 + 0 1 5 1 0 24 25 2 + 1 7 6 8 1 7 6 3 + 1 2 7 8 1 2 7 3 + 2 8 7 8 26 8 27 3 + 2 3 8 8 28 3 8 3 + 3 9 8 8 3 9 8 3 + 3 4 9 8 3 4 9 3 + 4 10 9 8 4 10 9 3 + 4 5 10 8 4 5 10 3 + 5 6 10 8 5 6 10 3 + 5 1 6 8 5 1 6 3 + 11 6 7 1 29 30 31 1 + 11 7 8 1 32 33 34 1 + 11 8 9 1 35 36 37 1 + 11 9 10 1 38 39 40 1 + 11 10 6 1 11 41 42 1 + 12 14 13 1 55 56 57 2 + 12 15 14 1 58 59 60 2 + 12 16 15 1 61 62 63 2 + 12 17 16 1 64 65 66 2 + 12 13 17 1 43 67 68 2 + 13 19 18 8 44 50 49 3 + 13 14 19 8 44 45 50 3 + 14 20 19 8 69 51 70 3 + 14 15 20 8 71 46 51 3 + 15 21 20 8 46 52 51 3 + 15 16 21 8 46 47 52 3 + 16 22 21 8 47 53 52 3 + 16 17 22 8 47 48 53 3 + 17 18 22 8 48 49 53 3 + 17 13 18 8 48 44 49 3 + 23 18 19 1 72 73 74 1 + 23 19 20 1 75 76 77 1 + 23 20 21 1 78 79 80 1 + 23 21 22 1 81 82 83 1 + 23 22 18 1 54 84 85 1 + tverts 86 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 +endnode +#Tile trimesh node +node trimesh fix01 + parent tin01_a02_03 + position 5.33 0.03 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -533.0 -3.0 243.0 + bitmap tin01_wallcord + verts 24 + -1.27 -3.7 2.34 + -1.27 -2.46 2.52 + -1.27 -1.23 2.34 + -1.27 1.17 2.34 + -1.27 2.4 2.52 + -1.27 3.64 2.34 + -9.39 -3.7 2.34 + -9.39 -2.46 2.52 + -9.39 -1.23 2.34 + -9.39 1.17 2.34 + -9.39 2.4 2.52 + -9.39 3.64 2.34 + -9.08 3.64 2.34 + -9.08 2.4 2.52 + -9.08 -1.23 2.34 + -9.08 -2.46 2.52 + -9.08 1.17 2.34 + -9.08 -3.7 2.34 + -1.58 -3.7 2.34 + -1.58 -2.46 2.52 + -1.58 1.17 2.34 + -1.58 -1.23 2.34 + -1.58 2.4 2.52 + -1.58 3.64 2.34 + faces 16 + 6 7 15 0 25 26 27 1 + 6 15 17 0 6 28 18 1 + 7 8 14 0 29 8 30 1 + 7 14 15 0 7 15 16 1 + 9 10 13 0 31 10 32 1 + 9 13 16 0 9 33 17 1 + 10 11 12 0 34 11 35 1 + 10 12 13 0 12 13 14 1 + 5 4 22 0 36 37 38 1 + 5 22 23 0 5 39 24 1 + 4 3 20 0 40 3 41 1 + 4 20 22 0 4 21 23 1 + 21 2 1 0 42 2 43 1 + 21 1 19 0 22 44 45 1 + 1 0 18 0 46 0 47 1 + 1 18 19 0 1 19 20 1 + tverts 48 + 0.000999331 0.14338 0 + 0.000999272 0.43281 0 + 0.000999212 0.719906 0 + 0.207273 0.150071 0 + 0.207273 0.437167 0 + 0.207273 0.726598 0 + 0.506194 0.152349 0 + 0.506193 0.441779 0 + 0.506193 0.728875 0 + 0.766278 0.168009 0 + 0.766278 0.455105 0 + 0.766278 0.744535 0 + 0.764374 0.455105 0 + 0.69392 0.744535 0 + 0.69392 0.455105 0 + 0.433836 0.728875 0 + 0.433836 0.441779 0 + 0.69392 0.168009 0 + 0.433836 0.152349 0 + 0.0733569 0.14338 0 + 0.0733568 0.43281 0 + 0.279631 0.150071 0 + 0.0733567 0.719906 0 + 0.27963 0.437168 0 + 0.27963 0.726598 0 + 0.506194 0.152349 0 + 0.506193 0.441779 0 + 0.433836 0.441779 0 + 0.433836 0.441779 0 + 0.506193 0.441779 0 + 0.433836 0.728875 0 + 0.766278 0.168009 0 + 0.69392 0.455105 0 + 0.69392 0.455105 0 + 0.764374 0.455105 0 + 0.69392 0.744535 0 + 0.207273 0.726598 0 + 0.207273 0.437167 0 + 0.27963 0.437168 0 + 0.27963 0.437168 0 + 0.207273 0.437167 0 + 0.279631 0.150071 0 + 0.0733567 0.719906 0 + 0.000999272 0.43281 0 + 0.000999272 0.43281 0 + 0.0733568 0.43281 0 + 0.000999272 0.43281 0 + 0.0733569 0.14338 0 +endnode +#Tile trimesh node +node trimesh roof01 + parent tin01_a02_03 + position 0.0 4.5 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -450.0 183.0 + bitmap tin01_floor + verts 10 + -2.5 0.5 1.83 + 2.5 0.5 1.83 + 2.5 -9.5 1.83 + 2.5 -9.28 1.83 + 2.5 -4.5 1.83 + 2.5 -6.93 1.83 + -2.5 -9.5 1.83 + -2.5 -4.5 1.83 + -2.5 0.28 1.83 + -2.5 -2.07 1.83 + faces 8 + 6 3 2 0 6 3 2 1 + 5 3 6 0 5 3 6 1 + 0 1 8 0 0 1 8 1 + 1 4 7 0 1 4 7 1 + 8 1 9 0 8 1 9 1 + 9 1 7 0 9 1 7 1 + 6 7 4 0 6 7 4 1 + 6 4 5 0 6 4 5 1 + tverts 10 + 0.5005 1.999 0 + 1.4995 1.999 0 + 1.4995 0.000999033 0 + 1.4995 0.0449551 0 + 1.4995 1.0 0 + 1.4995 0.514485 0 + 0.500499 0.000999272 0 + 0.5005 1.0 0 + 0.5005 1.95504 0 + 0.5005 1.48551 0 +endnode +#Tile trimesh node +node trimesh roofrim01 + parent tin01_a02_03 + position 0.0 4.5 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -450.0 91.5 + bitmap tin01_floor + verts 22 + 3.75 0.5 0.0 + 2.5 0.5 1.83 + 3.75 -9.5 0.0 + 2.5 -9.5 1.83 + 3.75 -2.05 0.0 + 3.75 -4.5 0.0 + 3.75 -6.93 0.0 + 3.75 -9.28 0.0 + 2.5 -9.28 1.83 + 2.5 -4.5 1.83 + 2.5 -6.93 1.83 + -3.75 -9.5 0.0 + -2.5 -9.5 1.83 + -3.75 0.5 0.0 + -2.5 0.5 1.83 + -3.75 -6.95 0.0 + -3.75 -4.5 0.0 + -3.75 -2.07 0.0 + -3.75 0.28 0.0 + -2.5 0.28 1.83 + -2.5 -4.5 1.83 + -2.5 -2.07 1.83 + faces 18 + 3 8 2 1 3 11 12 5 + 4 5 1 1 13 14 15 1 + 7 2 8 1 16 2 17 1 + 6 7 10 1 18 19 20 1 + 10 7 8 1 21 7 8 1 + 5 6 9 1 22 23 24 1 + 9 6 10 1 25 6 10 1 + 1 5 9 1 26 5 9 1 + 0 4 1 1 0 4 1 1 + 14 19 13 1 30 38 39 5 + 15 16 12 1 40 41 42 1 + 18 13 19 1 43 29 44 1 + 17 18 21 1 45 46 47 1 + 21 18 19 1 48 34 35 1 + 16 17 20 1 49 50 51 1 + 20 17 21 1 52 33 37 1 + 12 16 20 1 53 32 36 1 + 11 15 12 1 27 31 28 1 + tverts 54 + 0.5 0.00119366 0 + -0.00133294 0.00119357 0 + 0.5 1.9992 0 + -0.00133306 1.9992 0 + 0.5 0.510684 0 + 0.5 1.00019 0 + 0.5 1.48571 0 + 0.5 1.95524 0 + -0.00133306 1.95524 0 + -0.00133294 1.00019 0 + -0.00133306 1.48571 0 + -0.00133306 1.95524 0 + 0.5 1.9992 0 + 0.5 0.510684 0 + 0.5 1.00019 0 + -0.00133294 0.00119357 0 + 0.5 1.95524 0 + -0.00133306 1.95524 0 + 0.5 1.48571 0 + 0.5 1.95524 0 + -0.00133306 1.48571 0 + -0.00133306 1.48571 0 + 0.5 1.00019 0 + 0.5 1.48571 0 + -0.00133294 1.00019 0 + -0.00133294 1.00019 0 + -0.00133294 0.00119357 0 + 0.5 0.00119366 0 + -0.00133294 0.00119357 0 + 0.5 1.9992 0 + -0.00133306 1.9992 0 + 0.5 0.510684 0 + 0.5 1.00019 0 + 0.5 1.48571 0 + 0.5 1.95524 0 + -0.00133306 1.95524 0 + -0.00133294 1.00019 0 + -0.00133306 1.48571 0 + -0.00133306 1.95524 0 + 0.5 1.9992 0 + 0.5 0.510684 0 + 0.5 1.00019 0 + -0.00133294 0.00119357 0 + 0.5 1.95524 0 + -0.00133306 1.95524 0 + 0.5 1.48571 0 + 0.5 1.95524 0 + -0.00133306 1.48571 0 + -0.00133306 1.48571 0 + 0.5 1.00019 0 + 0.5 1.48571 0 + -0.00133294 1.00019 0 + -0.00133294 1.00019 0 + -0.00133294 0.00119357 0 +endnode +#Tile trimesh node +node trimesh topwall01 + parent tin01_a02_03 + position 0.0 4.5 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -450.0 108.5 + bitmap tin01_wallbrick + verts 26 + 3.75 0.5 0.0 + 3.75 0.5 2.17 + 3.75 -9.5 0.0 + 3.75 -9.5 2.17 + 3.75 -2.07 0.0 + 3.75 -4.5 0.0 + 3.75 -6.93 0.0 + 3.75 -9.28 0.0 + 3.75 -2.05 2.17 + 3.75 -9.28 2.17 + 3.75 -4.5 2.17 + 3.75 -6.93 2.17 + 3.75 0.28 0.0 + -3.75 -9.5 0.0 + -3.75 -9.5 2.17 + -3.75 0.5 0.0 + -3.75 0.5 2.17 + -3.75 -6.93 0.0 + -3.75 -4.5 0.0 + -3.75 -2.07 0.0 + -3.75 0.28 0.0 + -3.75 -6.95 2.17 + -3.75 0.28 2.17 + -3.75 -4.5 2.17 + -3.75 -2.07 2.17 + -3.75 -9.28 0.0 + faces 22 + 12 4 1 2 60 42 43 5 + 3 9 2 2 13 44 45 5 + 1 4 8 2 3 46 47 1 + 4 5 8 2 14 48 49 1 + 7 2 9 2 50 12 51 1 + 6 7 11 2 52 53 54 1 + 11 7 9 2 55 17 19 1 + 5 6 10 2 56 57 58 1 + 10 6 11 2 59 16 21 1 + 8 5 10 2 18 15 20 1 + 0 12 1 2 1 60 43 5 + 25 17 14 2 121 103 104 5 + 16 22 15 2 74 105 106 5 + 14 17 21 2 64 107 108 1 + 17 18 21 2 75 109 110 1 + 20 15 22 2 111 73 112 1 + 19 20 24 2 113 114 115 1 + 24 20 22 2 116 78 80 1 + 18 19 23 2 117 118 119 1 + 23 19 24 2 120 77 82 1 + 21 18 23 2 79 76 81 1 + 13 25 14 2 62 121 104 5 + tverts 122 + 0.00149882 0.09 0 + 0.00149918 0.09 0 + 0.00149882 0.99 0 + 0.00149918 0.99 0 + 2.54638 0.09 0 + 1.71407 0.09 0 + 0.874911 0.09 0 + 0.076852 0.09 0 + 2.54638 0.99 0 + 0.076852 0.99 0 + 1.71407 0.99 0 + 0.874911 0.99 0 + 2.9985 0.09 0 + 2.9985 0.99 0 + 0.446768 0.09 0 + 1.28593 0.09 0 + 2.11824 0.09 0 + 2.92315 0.09 0 + 0.446768 0.99 0 + 2.92315 0.99 0 + 1.28593 0.99 0 + 2.11824 0.99 0 + 2.54638 0.09 0 + 2.9985 0.09 0 + 2.9985 0.99 0 + 0.076852 0.99 0 + 0.00149882 0.09 0 + 2.54638 0.09 0 + 2.9985 0.99 0 + 2.54638 0.99 0 + 1.71407 0.09 0 + 2.54638 0.99 0 + 0.076852 0.09 0 + 0.076852 0.99 0 + 0.076852 0.09 0 + 0.874911 0.09 0 + 0.874911 0.99 0 + 0.874911 0.99 0 + 0.874911 0.09 0 + 1.71407 0.09 0 + 1.71407 0.99 0 + 1.71407 0.99 0 + 0.446768 0.09 0 + 0.00149918 0.99 0 + 2.92315 0.99 0 + 2.9985 0.09 0 + 0.446768 0.09 0 + 0.446768 0.99 0 + 1.28593 0.09 0 + 0.446768 0.99 0 + 2.92315 0.09 0 + 2.92315 0.99 0 + 2.11824 0.09 0 + 2.92315 0.09 0 + 2.11824 0.99 0 + 2.11824 0.99 0 + 1.28593 0.09 0 + 2.11824 0.09 0 + 1.28593 0.99 0 + 1.28593 0.99 0 + 0.0411781 0.09 0 + 0.00149882 0.09 0 + 0.00149918 0.09 0 + 0.00149882 0.99 0 + 0.00149918 0.99 0 + 2.54638 0.09 0 + 1.71407 0.09 0 + 0.874911 0.09 0 + 0.076852 0.09 0 + 2.54638 0.99 0 + 0.076852 0.99 0 + 1.71407 0.99 0 + 0.874911 0.99 0 + 2.9985 0.09 0 + 2.9985 0.99 0 + 0.446768 0.09 0 + 1.28593 0.09 0 + 2.11824 0.09 0 + 2.92315 0.09 0 + 0.446768 0.99 0 + 2.92315 0.99 0 + 1.28593 0.99 0 + 2.11824 0.99 0 + 2.54638 0.09 0 + 2.9985 0.09 0 + 2.9985 0.99 0 + 0.076852 0.99 0 + 0.00149882 0.09 0 + 2.54638 0.09 0 + 2.9985 0.99 0 + 2.54638 0.99 0 + 1.71407 0.09 0 + 2.54638 0.99 0 + 0.076852 0.09 0 + 0.076852 0.99 0 + 0.076852 0.09 0 + 0.874911 0.09 0 + 0.874911 0.99 0 + 0.874911 0.99 0 + 0.874911 0.09 0 + 1.71407 0.09 0 + 1.71407 0.99 0 + 1.71407 0.99 0 + 0.446768 0.09 0 + 0.00149918 0.99 0 + 2.92315 0.99 0 + 2.9985 0.09 0 + 0.446768 0.09 0 + 0.446768 0.99 0 + 1.28593 0.09 0 + 0.446768 0.99 0 + 2.92315 0.09 0 + 2.92315 0.99 0 + 2.11824 0.09 0 + 2.92315 0.09 0 + 2.11824 0.99 0 + 2.11824 0.99 0 + 1.28593 0.09 0 + 2.11824 0.09 0 + 1.28593 0.99 0 + 1.28593 0.99 0 + 0.0411781 0.09 0 +endnode +#Tile trimesh node +node trimesh construction01 + parent tin01_a02_03 + position -0.2 4.0 3.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.87451 0.556863 0.337255 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 20.0 -400.0 194.0 + bitmap tin01_furnish2 + verts 188 + 0.1 -8.78 1.88 + 0.3 -8.78 1.88 + 0.1 -6.63 1.86 + 0.3 -6.63 1.86 + 0.15 -4.45 1.92 + 0.35 -4.45 1.92 + 0.1 -2.33 1.82 + 0.3 -2.33 1.82 + 0.1 0.8 1.88 + 0.3 0.8 1.88 + 0.1 -8.78 2.08 + 0.3 -8.78 2.08 + 0.1 -6.63 2.06 + 0.3 -6.63 2.06 + 0.15 -4.45 2.12 + 0.35 -4.45 2.12 + 0.1 -2.33 2.02 + 0.3 -2.33 2.02 + 0.1 0.8 2.08 + 0.3 0.8 2.08 + 4.06 -3.7 -0.14 + 4.06 -3.9 -0.14 + 4.34 -3.7 0.14 + 4.34 -3.9 0.14 + 1.94 -3.7 1.98 + 1.94 -3.9 1.98 + 2.22 -3.7 2.26 + 2.22 -3.9 2.26 + 4.06 -4.1 -0.14 + 4.06 -4.3 -0.14 + 4.34 -4.1 0.14 + 4.34 -4.3 0.14 + 1.94 -4.1 1.98 + 1.94 -4.3 1.98 + 2.22 -4.1 2.26 + 2.22 -4.3 2.26 + -3.62 -3.89 1.88 + -3.62 -4.09 1.88 + -2.42 -3.93 1.94 + -2.42 -4.13 1.94 + -0.28 -3.89 1.86 + -0.28 -4.09 1.86 + 1.87 -3.89 1.92 + 1.87 -4.09 1.92 + 4.02 -3.89 1.88 + 4.02 -4.09 1.88 + -3.62 -3.89 2.08 + -3.62 -4.09 2.08 + -2.42 -3.93 2.14 + -2.42 -4.13 2.14 + -0.28 -3.89 2.06 + -0.28 -4.09 2.06 + 1.87 -3.89 2.12 + 1.87 -4.09 2.12 + 4.02 -3.89 2.08 + 4.02 -4.09 2.08 + 2.9 -4.11 3.76 + 2.9 -3.91 3.76 + 1.65 -4.11 3.74 + 1.65 -3.91 3.74 + -0.53 -4.06 3.8 + -0.53 -3.86 3.8 + -2.6 -4.11 3.7 + -2.6 -3.91 3.7 + 2.9 -4.11 3.96 + 2.9 -3.91 3.96 + 1.65 -4.11 3.94 + 1.65 -3.91 3.94 + -0.53 -4.06 4.0 + -0.53 -3.86 4.0 + -2.6 -4.11 3.9 + -2.6 -3.91 3.9 + 0.1 -9.0 3.76 + 0.3 -9.0 3.76 + 0.05 -6.85 3.82 + 0.25 -6.85 3.82 + 0.02 -4.7 3.74 + 0.22 -4.7 3.74 + 0.02 -2.55 3.8 + 0.22 -2.55 3.8 + 0.1 1.0 3.76 + 0.3 1.0 3.76 + 0.1 -9.0 3.96 + 0.3 -9.0 3.96 + 0.05 -6.85 4.02 + 0.25 -6.85 4.02 + 0.02 -4.7 3.94 + 0.22 -4.7 3.94 + 0.02 -2.55 4.0 + 0.22 -2.55 4.0 + 0.1 1.0 3.96 + 0.3 1.0 3.96 + 3.0 -9.0 3.72 + 3.0 -8.91 3.71 + 1.2 -9.0 3.72 + 1.65 -8.91 3.69 + -0.8 -9.0 3.72 + -0.73 -8.9 3.75 + -2.6 -9.0 3.72 + -2.6 -8.91 3.7 + 3.0 -9.0 3.92 + 3.0 -8.91 3.96 + 1.2 -9.0 3.92 + 1.65 -8.91 3.94 + -0.8 -9.0 3.92 + -0.73 -8.9 4.0 + -2.6 -9.0 3.92 + -2.6 -8.91 3.94 + 0.1 -9.0 2.07 + 0.3 -9.0 2.07 + 0.12 -8.92 2.07 + 0.28 -8.92 2.07 + 0.1 -9.0 3.72 + 0.3 -9.0 3.72 + 0.12 -8.92 3.77 + 0.28 -8.92 3.77 + 0.14 -6.08 2.07 + 0.3 -6.08 2.07 + 0.14 -5.92 2.07 + 0.3 -5.92 2.07 + 0.06 -6.06 3.82 + 0.22 -6.06 3.82 + 0.06 -5.92 3.82 + 0.22 -5.92 3.82 + 0.12 -2.08 2.0 + 0.28 -2.08 2.0 + 0.12 -1.92 2.0 + 0.28 -1.92 2.0 + 0.04 -2.06 3.82 + 0.2 -2.06 3.82 + 0.04 -1.92 3.82 + 0.2 -1.92 3.82 + 1.14 -4.08 2.04 + 1.3 -4.08 2.04 + 1.14 -3.92 2.04 + 1.3 -3.92 2.04 + 1.06 -4.06 3.82 + 1.22 -4.06 3.82 + 1.06 -3.92 3.82 + 1.22 -3.92 3.82 + -0.82 -4.06 2.07 + -0.66 -4.06 2.07 + -0.82 -3.9 2.07 + -0.66 -3.9 2.07 + -0.9 -4.04 3.82 + -0.74 -4.04 3.82 + -0.9 -3.9 3.82 + -0.74 -3.9 3.82 + -3.66 -4.3 -0.14 + -3.66 -4.1 -0.14 + -3.94 -4.3 0.14 + -3.94 -4.1 0.14 + -1.54 -4.3 1.98 + -1.54 -4.1 1.98 + -1.82 -4.3 2.26 + -1.82 -4.1 2.26 + -3.66 -3.9 -0.14 + -3.66 -3.7 -0.14 + -3.94 -3.9 0.14 + -3.94 -3.7 0.14 + -1.54 -3.9 1.98 + -1.54 -3.7 1.98 + -1.82 -3.9 2.26 + -1.82 -3.7 2.26 + -2.6 1.0 3.72 + -2.6 0.91 3.71 + -0.8 1.0 3.72 + -1.25 0.91 3.69 + 1.2 1.0 3.72 + 1.13 0.9 3.75 + 3.0 1.0 3.72 + 3.0 0.91 3.7 + -2.6 1.0 3.92 + -2.6 0.91 3.96 + -0.8 1.0 3.92 + -1.25 0.91 3.94 + 1.2 1.0 3.92 + 1.13 0.9 4.0 + 3.0 1.0 3.92 + 3.0 0.91 3.94 + 0.3 1.0 2.07 + 0.1 1.0 2.07 + 0.28 0.92 2.07 + 0.12 0.92 2.07 + 0.3 1.0 3.72 + 0.1 1.0 3.72 + 0.28 0.92 3.77 + 0.12 0.92 3.77 + faces 286 + 0 2 3 2 0 2 16 2 + 3 1 0 2 17 18 0 2 + 2 4 5 2 2 4 19 2 + 5 3 2 2 20 21 2 2 + 4 6 7 2 267 269 279 2 + 7 5 4 2 280 281 267 2 + 6 8 9 2 269 271 282 2 + 9 7 6 2 283 284 269 2 + 10 11 13 4 8 9 11 1 + 13 12 10 4 11 10 8 1 + 12 13 15 4 10 11 13 1 + 15 14 12 4 13 12 10 1 + 14 15 17 4 273 274 276 1 + 17 16 14 4 276 275 273 1 + 16 17 19 4 275 276 278 1 + 19 18 16 4 278 277 275 1 + 0 1 11 8 0 22 9 5 + 11 10 0 8 9 8 0 5 + 1 3 13 16 1 3 11 4 + 13 11 1 16 11 9 1 4 + 3 5 15 16 3 5 13 4 + 15 13 3 16 13 11 3 4 + 5 7 17 16 268 270 276 4 + 17 15 5 16 276 274 268 4 + 7 9 19 16 270 272 278 4 + 19 17 7 16 278 276 270 4 + 9 8 18 32 23 6 14 6 + 18 19 9 32 14 15 7 6 + 8 6 16 64 271 269 275 3 + 16 18 8 64 275 277 271 3 + 6 4 14 64 269 267 273 3 + 14 16 6 64 273 275 269 3 + 4 2 12 64 4 2 10 3 + 12 14 4 64 10 12 4 3 + 2 0 10 64 2 0 8 3 + 10 12 2 64 8 10 2 3 + 20 22 23 2 32 33 34 2 + 23 21 20 2 35 36 37 2 + 24 25 27 4 38 39 40 1 + 27 26 24 4 41 42 43 1 + 20 21 25 8 24 25 29 5 + 25 24 20 8 29 28 24 5 + 21 23 27 16 25 27 31 4 + 27 25 21 16 31 29 25 4 + 23 22 26 32 44 26 30 6 + 26 27 23 32 30 45 46 6 + 22 20 24 64 26 24 28 3 + 24 26 22 64 28 30 26 3 + 28 30 31 2 55 56 57 2 + 31 29 28 2 58 59 60 2 + 32 33 35 4 61 62 63 1 + 35 34 32 4 64 65 66 1 + 28 29 33 8 47 48 52 5 + 33 32 28 8 52 51 47 5 + 29 31 35 16 48 50 54 4 + 35 33 29 16 54 52 48 4 + 31 30 34 32 67 49 53 6 + 34 35 31 32 53 68 69 6 + 30 28 32 64 49 47 51 3 + 32 34 30 64 51 53 49 3 + 36 38 39 2 250 252 261 2 + 39 37 36 2 262 263 250 2 + 38 40 41 2 252 254 264 2 + 41 39 38 2 265 266 252 2 + 40 42 43 2 72 74 87 2 + 43 41 40 2 88 89 72 2 + 42 44 45 2 74 76 90 2 + 45 43 42 2 91 92 74 2 + 46 47 49 4 255 256 258 1 + 49 48 46 4 258 257 255 1 + 48 49 51 4 257 258 260 1 + 51 50 48 4 260 259 257 1 + 50 51 53 4 81 82 84 1 + 53 52 50 4 84 83 81 1 + 52 53 55 4 83 84 86 1 + 55 54 52 4 86 85 83 1 + 36 37 47 8 70 93 79 5 + 47 46 36 8 79 78 70 5 + 37 39 49 16 251 253 258 4 + 49 47 37 16 258 256 251 4 + 39 41 51 16 71 73 82 4 + 51 49 39 16 82 80 71 4 + 41 43 53 16 73 75 84 4 + 53 51 41 16 84 82 73 4 + 43 45 55 16 75 77 86 4 + 55 53 43 16 86 84 75 4 + 45 44 54 32 94 76 85 6 + 54 55 45 32 85 86 77 6 + 44 42 52 64 76 74 83 3 + 52 54 44 64 83 85 76 3 + 42 40 50 64 74 72 81 3 + 50 52 42 64 81 83 74 3 + 40 38 48 64 254 252 257 3 + 48 50 40 64 257 259 254 3 + 38 36 46 64 252 250 255 3 + 46 48 38 64 255 257 252 3 + 56 58 59 2 133 135 145 2 + 59 57 56 2 146 147 133 2 + 58 60 61 2 135 137 148 2 + 61 59 58 2 149 150 135 2 + 60 62 63 2 96 98 106 2 + 63 61 60 2 107 108 96 2 + 64 65 67 4 139 140 142 1 + 67 66 64 4 142 141 139 1 + 66 67 69 4 141 142 144 1 + 69 68 66 4 144 143 141 1 + 68 69 71 4 102 103 105 1 + 71 70 68 4 105 104 102 1 + 56 57 65 8 95 109 101 5 + 65 64 56 8 101 100 95 5 + 57 59 67 16 134 136 142 4 + 67 65 57 16 142 140 134 4 + 59 61 69 16 136 138 144 4 + 69 67 59 16 144 142 136 4 + 61 63 71 16 97 99 105 4 + 71 69 61 16 105 103 97 4 + 62 60 68 64 98 96 102 3 + 68 70 62 64 102 104 98 3 + 60 58 66 64 137 135 141 3 + 66 68 60 64 141 143 137 3 + 58 56 64 64 135 133 139 3 + 64 66 58 64 139 141 135 3 + 72 74 75 2 110 112 126 2 + 75 73 72 2 127 128 110 2 + 74 76 77 2 112 114 129 2 + 77 75 74 2 130 131 112 2 + 76 78 79 2 285 287 297 2 + 79 77 76 2 298 299 285 2 + 78 80 81 2 287 289 300 2 + 81 79 78 2 301 302 287 2 + 82 83 85 4 118 119 121 1 + 85 84 82 4 121 120 118 1 + 84 85 87 4 120 121 123 1 + 87 86 84 4 123 122 120 1 + 86 87 89 4 291 292 294 1 + 89 88 86 4 294 293 291 1 + 88 89 91 4 293 294 296 1 + 91 90 88 4 296 295 293 1 + 73 75 85 16 111 113 121 4 + 85 83 73 16 121 119 111 4 + 75 77 87 16 113 115 123 4 + 87 85 75 16 123 121 113 4 + 77 79 89 16 286 288 294 4 + 89 87 77 16 294 292 286 4 + 79 81 91 16 288 290 296 4 + 91 89 79 16 296 294 288 4 + 81 80 90 32 132 116 124 6 + 90 91 81 32 124 125 117 6 + 80 78 88 64 289 287 293 3 + 88 90 80 64 293 295 289 3 + 78 76 86 64 287 285 291 3 + 86 88 78 64 291 293 287 3 + 76 74 84 64 114 112 120 3 + 84 86 76 64 120 122 114 3 + 74 72 82 64 112 110 118 3 + 82 84 74 64 118 120 112 3 + 92 94 95 2 311 312 313 2 + 95 93 92 2 313 314 311 2 + 94 96 97 2 312 315 316 2 + 97 95 94 2 316 313 312 2 + 96 98 99 2 315 317 318 2 + 99 97 96 2 318 316 315 2 + 100 101 103 4 319 320 321 1 + 103 102 100 4 321 322 319 1 + 102 103 105 4 322 321 323 1 + 105 104 102 4 323 324 322 1 + 104 105 107 4 324 323 325 1 + 107 106 104 4 325 326 324 1 + 92 93 101 8 327 328 329 5 + 101 100 92 8 330 331 332 5 + 93 95 103 16 314 313 333 4 + 103 101 93 16 334 335 314 4 + 95 97 105 16 313 316 336 4 + 105 103 95 16 337 338 313 4 + 97 99 107 16 316 318 339 4 + 107 105 97 16 340 341 316 4 + 98 96 104 64 317 315 324 3 + 104 106 98 64 324 326 317 3 + 96 94 102 64 315 312 322 3 + 102 104 96 64 322 324 315 3 + 94 92 100 64 312 311 319 3 + 100 102 94 64 319 322 312 3 + 108 109 113 8 151 152 155 5 + 113 112 108 8 155 154 151 5 + 109 111 115 16 304 306 310 4 + 115 113 109 16 310 308 304 4 + 111 110 114 32 157 153 156 6 + 114 115 111 32 156 158 159 6 + 110 108 112 64 305 303 307 3 + 112 114 110 64 307 309 305 3 + 116 117 121 8 160 161 165 5 + 121 120 116 8 165 164 160 5 + 117 119 123 16 161 163 167 4 + 123 121 117 16 167 165 161 4 + 119 118 122 32 168 162 166 6 + 122 123 119 32 166 169 170 6 + 118 116 120 64 162 160 164 3 + 120 122 118 64 164 166 162 3 + 124 125 129 8 171 172 176 5 + 129 128 124 8 176 175 171 5 + 125 127 131 16 172 174 178 4 + 131 129 125 16 178 176 172 4 + 127 126 130 32 179 173 177 6 + 130 131 127 32 177 180 181 6 + 126 124 128 64 173 171 175 3 + 128 130 126 64 175 177 173 3 + 132 133 137 8 182 183 187 5 + 137 136 132 8 187 186 182 5 + 133 135 139 16 183 185 189 4 + 139 137 133 16 189 187 183 4 + 135 134 138 32 190 184 188 6 + 138 139 135 32 188 191 192 6 + 134 132 136 64 184 182 186 3 + 136 138 134 64 186 188 184 3 + 140 141 145 8 193 194 198 5 + 145 144 140 8 198 197 193 5 + 141 143 147 16 194 196 200 4 + 147 145 141 16 200 198 194 4 + 143 142 146 32 201 195 199 6 + 146 147 143 32 199 202 203 6 + 142 140 144 64 195 193 197 3 + 144 146 142 64 197 199 195 3 + 148 150 151 2 212 213 214 2 + 151 149 148 2 215 216 217 2 + 152 153 155 4 218 219 220 1 + 155 154 152 4 221 222 223 1 + 148 149 153 8 204 205 209 5 + 153 152 148 8 209 208 204 5 + 149 151 155 16 205 207 211 4 + 155 153 149 16 211 209 205 4 + 151 150 154 32 224 206 210 6 + 154 155 151 32 210 225 226 6 + 150 148 152 64 206 204 208 3 + 152 154 150 64 208 210 206 3 + 156 158 159 2 235 236 237 2 + 159 157 156 2 238 239 240 2 + 160 161 163 4 241 242 243 1 + 163 162 160 4 244 245 246 1 + 156 157 161 8 227 228 232 5 + 161 160 156 8 232 231 227 5 + 157 159 163 16 228 230 234 4 + 163 161 157 16 234 232 228 4 + 159 158 162 32 247 229 233 6 + 162 163 159 32 233 248 249 6 + 158 156 160 64 229 227 231 3 + 160 162 158 64 231 233 229 3 + 107 98 106 0 342 343 344 1 + 99 98 107 0 345 346 347 1 + 63 70 71 0 106 104 105 1 + 63 62 70 0 106 98 104 1 + 164 166 167 2 365 366 367 2 + 167 165 164 2 367 368 365 2 + 166 168 169 2 366 369 370 2 + 169 167 166 2 370 367 366 2 + 168 170 171 2 369 371 372 2 + 171 169 168 2 372 370 369 2 + 172 173 175 4 373 374 375 1 + 175 174 172 4 375 376 373 1 + 174 175 177 4 376 375 377 1 + 177 176 174 4 377 378 376 1 + 176 177 179 4 378 377 379 1 + 179 178 176 4 379 380 378 1 + 164 165 173 8 381 382 383 5 + 173 172 164 8 384 385 386 5 + 165 167 175 16 368 367 387 4 + 175 173 165 16 388 389 368 4 + 167 169 177 16 367 370 390 4 + 177 175 167 16 391 392 367 4 + 169 171 179 16 370 372 393 4 + 179 177 169 16 394 395 370 4 + 170 168 176 64 371 369 378 3 + 176 178 170 64 378 380 371 3 + 168 166 174 64 369 366 376 3 + 174 176 168 64 376 378 369 3 + 166 164 172 64 366 365 373 3 + 172 174 166 64 373 376 366 3 + 180 181 185 8 348 349 352 5 + 185 184 180 8 352 351 348 5 + 181 183 187 16 358 360 364 4 + 187 185 181 16 364 362 358 4 + 183 182 186 32 354 350 353 6 + 186 187 183 32 353 355 356 6 + 182 180 184 64 359 357 361 3 + 184 186 182 64 361 363 359 3 + 179 170 178 0 396 397 398 1 + 171 170 179 0 399 400 401 1 + tverts 402 + 0.174465 0.00149864 0 + 0.104128 0.00149864 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.00149864 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.00149864 0 + 0.104128 2.9985 0 + 0.251779 -1.21921 0 + 0.326839 -1.21921 0 + 0.0725431 -1.21921 0 + 0.506074 -1.21921 0 + 0.251779 -0.220206 0 + 0.326839 -0.220206 0 + 0.0725431 -0.220206 0 + 0.506074 -0.220206 0 + 0.323181 -0.753007 0 + 0.255437 -0.753007 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.323181 -0.686406 0 + 0.323181 -0.753007 0 + 0.323181 -0.753007 0 + 0.323181 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.753007 0 + 0.323181 -0.753007 0 + -0.00251664 -1.21921 0 + -0.00251664 -0.220206 0 + -0.00251664 -1.21921 0 + 0.251779 -1.70471 0 + 0.326839 -1.70471 0 + 0.0725431 -1.70471 0 + 0.506074 -1.70471 0 + 0.251779 -0.705713 0 + 0.326839 -0.705713 0 + 0.0725431 -0.705713 0 + 0.506074 -0.705713 0 + 0.323181 -1.23851 0 + 0.255437 -1.23851 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.323181 -1.17191 0 + 0.323181 -1.23851 0 + 0.323181 -1.23851 0 + 0.323181 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.23851 0 + 0.323181 -1.23851 0 + -0.00251664 -1.70471 0 + -0.00251664 -0.705713 0 + -0.00251664 -1.70471 0 + 0.344242 -1.04225 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.273035 1.95475 0 + 0.273035 1.95475 0 + 0.273035 1.2055 0 + 0.273035 -1.04225 0 + 0.273035 1.95475 0 + 0.174465 0.00149864 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 0.00149864 0 + 0.344242 -1.04225 0 + 0.273035 -1.04225 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 1.95475 0 + 0.174465 0.295412 0 + 0.104128 0.295412 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.244801 0.295412 0 + 0.175144 0.295412 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.295412 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.0337728 0.940718 0 + 0.0337728 -0.0582831 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.251779 0.000499517 0 + 0.326839 0.000499517 0 + 0.0725431 0.000499517 0 + 0.506074 0.000499517 0 + 0.251779 0.999501 0 + 0.326839 0.999501 0 + 0.0725431 0.999501 0 + 0.506074 0.999501 0 + 0.323181 0.4667 0 + 0.255437 0.4667 0 + 0.255437 0.5333 0 + 0.255437 0.5333 0 + 0.323181 0.5333 0 + 0.323181 0.4667 0 + 0.323181 0.4667 0 + 0.323181 0.5333 0 + 0.255437 0.5333 0 + 0.255437 0.5333 0 + 0.255437 0.4667 0 + 0.323181 0.4667 0 + -0.00251664 0.000499517 0 + -0.00251664 0.999501 0 + -0.00251664 0.000499517 0 + 0.251779 -0.485008 0 + 0.326839 -0.485008 0 + 0.0725431 -0.485008 0 + 0.506074 -0.485008 0 + 0.251779 0.513993 0 + 0.326839 0.513993 0 + 0.0725431 0.513993 0 + 0.506074 0.513993 0 + 0.323181 -0.0188073 0 + 0.255437 -0.0188073 0 + 0.255437 0.0477928 0 + 0.255437 0.0477928 0 + 0.323181 0.0477928 0 + 0.323181 -0.0188073 0 + 0.323181 -0.0188073 0 + 0.323181 0.0477928 0 + 0.255437 0.0477928 0 + 0.255437 0.0477928 0 + 0.255437 -0.0188073 0 + 0.323181 -0.0188073 0 + -0.00251664 -0.485008 0 + -0.00251664 0.513993 0 + -0.00251664 -0.485008 0 + 0.35804 -0.614525 0 + 0.286833 -0.614525 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.429247 -0.614525 0 + 0.358728 -0.614525 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.286833 -0.614525 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.159308 4.10494 0 + 0.0889714 4.10494 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.229645 4.10494 0 + 0.159987 4.10494 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.0889714 4.10494 0 + 0.0889714 4.10494 0 + 0.104128 2.24925 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.34016 2.49931 0 + 0.268953 2.49931 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.411367 2.49931 0 + 0.340848 2.49931 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.268953 2.49931 0 + 0.268953 2.49931 0 + 0.273035 1.2055 0 + 0.243649 -0.0582831 0 + 0.310278 -0.0582831 0 + 0.177022 -0.0582831 0 + 0.376905 -0.0582831 0 + 0.237631 0.940718 0 + 0.316296 0.940718 0 + 0.177022 0.940718 0 + 0.376905 0.940718 0 + 0.257387 -0.568116 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -0.568116 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 1.56488 0 + 0.23974 1.56488 0 + 0.316414 -0.568116 0 + 0.341479 -0.568116 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 1.56488 0 + 0.316414 1.56488 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -0.568116 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.172541 1.56488 0 + 0.172541 1.56488 0 + 0.170192 0.852609 0 + 0.620832 0.473548 0 + 0.727885 0.211864 0 + 0.727885 0.449758 0 + 0.620832 0.188075 0 + 0.727885 0.211864 0 + 0.620832 0.473548 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 -0.0109385 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -0.0109385 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.37945 -0.0109385 0 + 0.404514 -0.0109386 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -0.0109386 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 +endnode +#Tile trimesh node +node trimesh blacky03 + parent tin01_a02_03 + position 2.21 -5.0 4.31 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 4 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center -221.0 500.0 -22.5 + bitmap tin01_black + verts 48 + 0.01 0.0 0.53 + -0.81 0.0 0.53 + 0.22 0.0 0.18 + 0.43 0.0 0.42 + 0.97 0.0 -0.12 + 0.75 0.0 -0.36 + 1.19 0.0 -0.61 + 1.19 0.0 -1.31 + 1.54 0.0 0.86 + 1.19 0.0 0.53 + 1.54 0.0 -1.31 + -2.21 0.0 0.86 + -2.21 0.0 0.53 + -3.61 0.0 0.53 + -4.43 0.0 0.53 + -4.64 0.0 0.18 + -4.85 0.0 0.42 + -5.39 0.0 -0.12 + -5.17 0.0 -0.36 + -5.61 0.0 -0.61 + -5.61 0.0 -1.31 + -5.61 0.0 0.53 + -5.96 0.0 0.86 + -5.96 0.0 -1.31 + -0.81 10.0 0.53 + 0.01 10.0 0.53 + 0.22 10.0 0.18 + 0.43 10.0 0.42 + 0.97 10.0 -0.12 + 0.75 10.0 -0.36 + 1.19 10.0 -0.61 + 1.19 10.0 -1.31 + 1.19 10.0 0.53 + 1.54 10.0 0.86 + 1.54 10.0 -1.31 + -2.21 10.0 0.86 + -2.21 10.0 0.53 + -4.43 10.0 0.53 + -3.61 10.0 0.53 + -4.64 10.0 0.18 + -4.85 10.0 0.42 + -5.39 10.0 -0.12 + -5.17 10.0 -0.36 + -5.61 10.0 -0.61 + -5.61 10.0 -1.31 + -5.96 10.0 0.86 + -5.61 10.0 0.53 + -5.96 10.0 -1.31 + faces 52 + 0 1 2 1 0 0 0 1 + 0 2 3 1 0 0 0 1 + 4 3 5 1 0 0 0 1 + 5 3 2 1 0 0 0 1 + 6 4 7 1 0 0 0 1 + 7 4 5 1 0 0 0 1 + 8 9 10 1 0 0 0 1 + 10 6 7 1 0 0 0 1 + 10 9 6 1 0 0 0 1 + 0 9 8 1 0 0 0 1 + 8 11 12 1 0 0 0 1 + 1 0 8 1 0 0 0 1 + 8 12 1 1 0 0 0 1 + 13 14 15 1 0 0 0 1 + 15 14 16 1 0 0 0 1 + 16 17 18 1 0 0 0 1 + 16 18 15 1 0 0 0 1 + 17 19 20 1 0 0 0 1 + 17 20 18 1 0 0 0 1 + 21 22 23 1 0 0 0 1 + 19 23 20 1 0 0 0 1 + 21 23 19 1 0 0 0 1 + 21 14 22 1 0 0 0 1 + 11 22 12 1 0 0 0 1 + 14 13 22 1 0 0 0 1 + 12 22 13 1 0 0 0 1 + 24 25 26 1 0 0 0 1 + 26 25 27 1 0 0 0 1 + 27 28 29 1 0 0 0 1 + 27 29 26 1 0 0 0 1 + 28 30 31 1 0 0 0 1 + 28 31 29 1 0 0 0 1 + 32 33 34 1 0 0 0 1 + 30 34 31 1 0 0 0 1 + 32 34 30 1 0 0 0 1 + 32 25 33 1 0 0 0 1 + 35 33 36 1 0 0 0 1 + 25 24 33 1 0 0 0 1 + 36 33 24 1 0 0 0 1 + 37 38 39 1 0 0 0 1 + 37 39 40 1 0 0 0 1 + 41 40 42 1 0 0 0 1 + 42 40 39 1 0 0 0 1 + 43 41 44 1 0 0 0 1 + 44 41 42 1 0 0 0 1 + 45 46 47 1 0 0 0 1 + 47 43 44 1 0 0 0 1 + 47 46 43 1 0 0 0 1 + 37 46 45 1 0 0 0 1 + 45 35 36 1 0 0 0 1 + 38 37 45 1 0 0 0 1 + 45 36 38 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Mesh01 + parent tin01_a02_03 + position 3.4 4.88 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -31.0 1.0 40.5 + bitmap tin01_furnish2 + verts 20 + 0.35 0.12 1.49 + 0.35 -0.1 1.49 + 0.35 -0.1 -0.68 + 0.35 0.12 -0.68 + 0.0 -0.1 1.16 + 0.0 0.12 1.16 + 0.0 0.12 0.02 + 0.0 -0.1 0.02 + 0.0 -0.1 -0.68 + -0.97 -0.1 0.81 + -0.44 0.12 0.27 + -0.97 0.12 0.81 + 0.0 0.12 -0.68 + -0.44 -0.1 0.27 + -0.22 -0.1 0.51 + -0.22 0.12 0.51 + -0.97 -0.1 0.81 + -0.76 -0.1 1.05 + -0.76 0.12 1.05 + -0.97 0.12 0.81 + faces 20 + 0 1 2 1 0 1 2 4 + 0 2 3 1 0 2 3 4 + 4 5 6 1 4 5 6 3 + 6 7 4 1 6 7 4 3 + 9 11 10 1 24 25 26 3 + 7 8 2 2 28 29 30 6 + 2 1 4 2 30 31 32 6 + 2 4 7 2 30 32 28 6 + 13 8 7 8 35 33 45 5 + 7 14 13 8 45 36 35 5 + 13 14 17 8 35 36 40 5 + 17 16 13 8 40 39 35 5 + 7 6 15 16 45 46 37 4 + 15 14 7 16 37 36 45 4 + 14 15 18 16 36 37 41 4 + 18 17 14 16 41 40 36 4 + 12 8 13 64 34 33 35 3 + 13 10 12 64 35 38 34 3 + 10 13 16 64 38 35 39 3 + 16 19 10 64 39 42 38 3 + tverts 47 + 0.408666 0.891416 0 + 0.346688 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.219389 1.36765 0 + 0.285126 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + 0.46889 1.46063 0 + 0.540743 1.39726 0 + 0.618333 1.52891 0 + 0.829444 1.52891 0 + 0.36085 -0.460635 0 + 0.426587 -0.460635 0 + 0.426587 -0.528906 0 + 0.36085 -0.528906 0 + 0.30483 1.29827 0 + 0.377444 1.23509 0 + 0.36085 -0.298269 0 + 0.426587 -0.298269 0 + 0.219389 1.0989 0 + 0.285126 1.0989 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 + 0.414477 0.4225 0 + 0.476458 0.4225 0 + 0.476458 0.206945 0 + 0.414477 0.206945 0 + 0.328438 0.836212 0 + 0.328438 0.625102 0 + 0.434495 0.624996 0 + 0.434495 1.28399 0 + 0.328438 1.18256 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.170894 0.6665 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh02 + parent tin01_a02_03 + position -3.41 4.88 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 32.0 1.0 39.5 + bitmap tin01_furnish2 + verts 18 + -0.34 -0.1 1.48 + -0.34 0.12 1.48 + -0.34 -0.1 -0.69 + -0.34 0.12 -0.69 + 0.01 0.12 1.15 + 0.01 -0.1 1.15 + 0.01 0.12 0.01 + 0.01 -0.1 0.01 + 0.01 -0.1 -0.69 + 0.01 0.12 -0.69 + 0.23 0.12 0.5 + 0.23 -0.1 0.5 + 0.45 -0.1 0.26 + 0.45 0.12 0.26 + 0.77 0.12 1.04 + 0.77 -0.1 1.04 + 0.98 -0.1 0.8 + 0.98 0.12 0.8 + faces 19 + 0 1 2 1 0 1 2 4 + 2 1 3 1 2 1 3 4 + 4 5 6 1 4 5 6 3 + 7 6 5 1 7 6 5 3 + 0 2 8 2 8 9 10 6 + 7 5 0 2 11 12 8 6 + 8 7 0 2 10 11 8 6 + 10 6 7 16 57 86 87 4 + 7 11 10 16 87 58 57 4 + 10 11 15 16 57 58 64 4 + 15 14 10 16 64 73 57 4 + 7 8 12 32 88 74 59 6 + 12 11 7 32 59 67 88 6 + 11 12 16 32 68 59 65 6 + 16 15 11 32 65 75 68 6 + 8 9 13 64 51 50 60 3 + 13 12 8 64 60 59 51 3 + 12 13 17 64 59 60 66 3 + 17 16 12 64 66 65 59 3 + tverts 89 + 0.346688 0.891416 0 + 0.408666 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.285126 1.36765 0 + 0.219389 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + -0.696282 1.23919 0 + -0.696282 0.617953 0 + -0.596281 0.617953 0 + -0.596281 0.817 0 + -0.596281 1.14356 0 + 0.225624 0.266174 0 + 0.252833 0.305544 0 + 0.252357 0.150473 0 + 0.226784 -0.0348742 0 + 0.191477 0.305544 0 + 0.191001 0.150473 0 + 0.204708 0.471327 0 + 0.273749 0.510697 0 + 0.212393 0.510697 0 + 0.286295 0.267326 0 + 0.28814 -0.0348742 0 + 0.266064 0.471327 0 + 0.21826 0.266174 0 + 0.137861 0.305544 0 + 0.136086 0.150473 0 + 0.136086 0.150473 0 + 0.213931 -0.0348742 0 + 0.21826 0.266174 0 + 0.252833 0.305544 0 + 0.191477 0.305544 0 + 0.252357 0.150473 0 + 0.191477 0.305544 0 + 0.296319 0.471327 0 + 0.215919 0.510697 0 + 0.137861 0.305544 0 + 0.137861 0.305544 0 + 0.21826 0.266174 0 + 0.296319 0.471327 0 + 0.212393 0.510697 0 + 0.252833 0.305544 0 + 0.286295 0.267326 0 + 0.225624 0.266174 0 + 0.28814 -0.0348742 0 + 0.225624 0.266174 0 + 0.204708 0.471327 0 + 0.286295 0.267326 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.0952516 0.000499517 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.496536 0.3335 0 + 0.0952516 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + -0.0034642 0.3335 0 + -0.0034642 0.3335 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + 0.420894 0.6665 0 + 0.0876934 0.0625172 0 + -0.00129734 0.669749 0 + 0.345252 0.777547 0 + -0.00282295 0.777409 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 + 0.496536 0.192615 0 + -0.0034642 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh03 + parent tin01_a02_03 + position 1.65 4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 22.5 1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + -1.65 -0.1 0.19 + -1.65 -0.1 -0.14 + 2.1 -0.1 0.19 + 1.75 -0.1 -0.14 + 0.57 -0.1 -0.14 + -0.25 -0.1 -0.14 + 1.75 0.12 -0.14 + 0.57 0.12 -0.14 + 2.1 0.12 0.19 + -1.65 0.12 0.19 + -1.65 0.12 -0.14 + -0.25 0.12 -0.14 + 0.78 -0.1 -0.49 + 0.99 -0.1 -0.25 + 0.99 0.12 -0.25 + 0.78 0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 3 2 4 1 3 2 4 3 + 4 2 5 1 4 2 5 3 + 5 2 1 1 5 2 1 3 + 6 3 4 2 28 21 29 3 + 4 7 6 2 22 23 20 3 + 2 8 9 2 6 7 8 3 + 9 0 2 2 8 9 6 3 + 1 10 11 2 30 25 31 3 + 11 5 1 2 26 27 24 3 + 4 5 12 8 15 10 12 5 + 12 13 4 8 12 13 15 5 + 14 7 4 16 17 19 18 4 + 4 13 14 16 18 16 17 4 + 15 12 5 64 14 12 10 3 + 5 11 15 64 10 11 14 3 + tverts 32 + 0.496366 -0.196817 0 + 0.384796 -0.196817 0 + 0.496367 1.05318 0 + 0.384796 0.936516 0 + 0.384796 0.544462 0 + 0.384796 0.268566 0 + 0.426587 -0.634963 0 + 0.36085 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.170894 0.6665 0 + 0.345252 0.777547 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.326259 1.00025 0 + 0.261617 1.00025 0 + 0.261617 0.653536 0 + 0.326259 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.00124749 0 + 0.326259 0.412601 0 + 0.261617 0.412601 0 + 0.326259 1.00025 0 + 0.261617 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.412601 0 +endnode +#Tile trimesh node +node trimesh Mesh04 + parent tin01_a02_03 + position -1.55 4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -32.5 1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + 1.55 -0.1 -0.14 + 1.55 -0.1 0.19 + -2.2 -0.1 0.19 + -1.85 -0.1 -0.14 + -0.67 -0.1 -0.14 + 0.15 -0.1 -0.14 + -1.85 0.12 -0.14 + -0.67 0.12 -0.14 + -2.2 0.12 0.19 + 1.55 0.12 0.19 + 1.55 0.12 -0.14 + 0.15 0.12 -0.14 + -1.09 0.12 -0.25 + -1.09 -0.1 -0.25 + -0.88 -0.1 -0.49 + -0.88 0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 4 1 2 3 4 3 + 2 4 5 1 2 4 5 3 + 2 5 0 1 2 5 0 3 + 3 6 4 2 24 32 33 3 + 7 4 6 2 27 26 25 3 + 8 2 9 2 6 7 8 3 + 1 9 2 2 9 8 7 3 + 10 0 11 2 28 34 35 3 + 5 11 0 2 31 30 29 3 + 13 14 5 32 15 16 14 6 + 14 15 11 64 12 13 10 3 + 11 5 14 64 10 11 12 3 + 13 5 4 0 15 17 18 1 + 12 13 4 0 20 21 23 1 + 12 4 7 0 19 23 22 1 + tverts 36 + 0.338345 1.40811 0 + 0.449916 1.40811 0 + 0.449916 0.158114 0 + 0.338345 0.274781 0 + 0.338345 0.666835 0 + 0.338345 0.942731 0 + 0.36085 -0.634963 0 + 0.426587 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + -0.00282295 0.777409 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.219023 0.00190346 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.280636 0.349166 0 + 0.274944 1.00143 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 + 0.213895 0.589529 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 +endnode +#Tile trimesh node +node trimesh Mesh05 + parent tin01_a02_03 + position -1.65 -4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -22.5 -1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + 1.65 0.1 0.19 + 1.65 0.1 -0.14 + -2.1 0.1 0.19 + -1.75 0.1 -0.14 + -0.57 0.1 -0.14 + 0.25 0.1 -0.14 + -1.75 -0.12 -0.14 + -0.57 -0.12 -0.14 + -2.1 -0.12 0.19 + 1.65 -0.12 0.19 + 1.65 -0.12 -0.14 + 0.25 -0.12 -0.14 + -0.78 0.1 -0.49 + -0.99 0.1 -0.25 + -0.99 -0.12 -0.25 + -0.78 -0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 3 2 4 1 3 2 4 3 + 4 2 5 1 4 2 5 3 + 5 2 1 1 5 2 1 3 + 6 3 4 2 28 21 29 3 + 4 7 6 2 22 23 20 3 + 2 8 9 2 6 7 8 3 + 9 0 2 2 8 9 6 3 + 1 10 11 2 30 25 31 3 + 11 5 1 2 26 27 24 3 + 4 5 12 8 15 10 12 5 + 12 13 4 8 12 13 15 5 + 14 7 4 16 17 19 18 4 + 4 13 14 16 18 16 17 4 + 15 12 5 64 14 12 10 3 + 5 11 15 64 10 11 14 3 + tverts 32 + 0.496366 -0.196817 0 + 0.384796 -0.196817 0 + 0.496367 1.05318 0 + 0.384796 0.936516 0 + 0.384796 0.544462 0 + 0.384796 0.268566 0 + 0.426587 -0.634963 0 + 0.36085 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.170894 0.6665 0 + 0.345252 0.777547 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.326259 1.00025 0 + 0.261617 1.00025 0 + 0.261617 0.653536 0 + 0.326259 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.00124749 0 + 0.326259 0.412601 0 + 0.261617 0.412601 0 + 0.326259 1.00025 0 + 0.261617 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.412601 0 +endnode +#Tile trimesh node +node trimesh Mesh06 + parent tin01_a02_03 + position -3.4 -4.88 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 31.0 -1.0 40.5 + bitmap tin01_furnish2 + verts 20 + -0.35 -0.12 1.49 + -0.35 0.1 1.49 + -0.35 0.1 -0.68 + -0.35 -0.12 -0.68 + 0.0 0.1 1.16 + 0.0 -0.12 1.16 + 0.0 -0.12 0.02 + 0.0 0.1 0.02 + 0.0 0.1 -0.68 + 0.97 0.1 0.81 + 0.44 -0.12 0.27 + 0.97 -0.12 0.81 + 0.0 -0.12 -0.68 + 0.44 0.1 0.27 + 0.22 0.1 0.51 + 0.22 -0.12 0.51 + 0.97 0.1 0.81 + 0.76 0.1 1.05 + 0.76 -0.12 1.05 + 0.97 -0.12 0.81 + faces 20 + 0 1 2 1 0 1 2 4 + 0 2 3 1 0 2 3 4 + 4 5 6 1 4 5 6 3 + 6 7 4 1 6 7 4 3 + 9 11 10 1 24 25 26 3 + 7 8 2 2 28 29 30 6 + 2 1 4 2 30 31 32 6 + 2 4 7 2 30 32 28 6 + 13 8 7 8 35 33 45 5 + 7 14 13 8 45 36 35 5 + 13 14 17 8 35 36 40 5 + 17 16 13 8 40 39 35 5 + 7 6 15 16 45 46 37 4 + 15 14 7 16 37 36 45 4 + 14 15 18 16 36 37 41 4 + 18 17 14 16 41 40 36 4 + 12 8 13 64 34 33 35 3 + 13 10 12 64 35 38 34 3 + 10 13 16 64 38 35 39 3 + 16 19 10 64 39 42 38 3 + tverts 47 + 0.408666 0.891416 0 + 0.346688 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.219389 1.36765 0 + 0.285126 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + 0.46889 1.46063 0 + 0.540743 1.39726 0 + 0.618333 1.52891 0 + 0.829444 1.52891 0 + 0.36085 -0.460635 0 + 0.426587 -0.460635 0 + 0.426587 -0.528906 0 + 0.36085 -0.528906 0 + 0.30483 1.29827 0 + 0.377444 1.23509 0 + 0.36085 -0.298269 0 + 0.426587 -0.298269 0 + 0.219389 1.0989 0 + 0.285126 1.0989 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 + 0.414477 0.4225 0 + 0.476458 0.4225 0 + 0.476458 0.206945 0 + 0.414477 0.206945 0 + 0.328438 0.836212 0 + 0.328438 0.625102 0 + 0.434495 0.624996 0 + 0.434495 1.28399 0 + 0.328438 1.18256 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.170894 0.6665 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh07 + parent tin01_a02_03 + position 1.55 -4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 32.5 -1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + -1.55 0.1 -0.14 + -1.55 0.1 0.19 + 2.2 0.1 0.19 + 1.85 0.1 -0.14 + 0.67 0.1 -0.14 + -0.15 0.1 -0.14 + 1.85 -0.12 -0.14 + 0.67 -0.12 -0.14 + 2.2 -0.12 0.19 + -1.55 -0.12 0.19 + -1.55 -0.12 -0.14 + -0.15 -0.12 -0.14 + 1.09 -0.12 -0.25 + 1.09 0.1 -0.25 + 0.88 0.1 -0.49 + 0.88 -0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 4 1 2 3 4 3 + 2 4 5 1 2 4 5 3 + 2 5 0 1 2 5 0 3 + 3 6 4 2 24 32 33 3 + 7 4 6 2 27 26 25 3 + 8 2 9 2 6 7 8 3 + 1 9 2 2 9 8 7 3 + 10 0 11 2 28 34 35 3 + 5 11 0 2 31 30 29 3 + 13 14 5 32 15 16 14 6 + 14 15 11 64 12 13 10 3 + 11 5 14 64 10 11 12 3 + 13 5 4 0 15 17 18 1 + 12 13 4 0 20 21 23 1 + 12 4 7 0 19 23 22 1 + tverts 36 + 0.338345 1.40811 0 + 0.449916 1.40811 0 + 0.449916 0.158114 0 + 0.338345 0.274781 0 + 0.338345 0.666835 0 + 0.338345 0.942731 0 + 0.36085 -0.634963 0 + 0.426587 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + -0.00282295 0.777409 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.219023 0.00190346 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.280636 0.349166 0 + 0.274944 1.00143 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 + 0.213895 0.589529 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 +endnode +#Tile trimesh node +node trimesh Mesh08 + parent tin01_a02_03 + position 3.41 -4.88 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -32.0 -1.0 39.5 + bitmap tin01_furnish2 + verts 18 + 0.34 0.1 1.48 + 0.34 -0.12 1.48 + 0.34 0.1 -0.69 + 0.34 -0.12 -0.69 + -0.01 -0.12 1.15 + -0.01 0.1 1.15 + -0.01 -0.12 0.01 + -0.01 0.1 0.01 + -0.01 0.1 -0.69 + -0.01 -0.12 -0.69 + -0.23 -0.12 0.5 + -0.23 0.1 0.5 + -0.45 0.1 0.26 + -0.45 -0.12 0.26 + -0.77 -0.12 1.04 + -0.77 0.1 1.04 + -0.98 0.1 0.8 + -0.98 -0.12 0.8 + faces 19 + 0 1 2 1 0 1 2 4 + 2 1 3 1 2 1 3 4 + 4 5 6 1 4 5 6 3 + 7 6 5 1 7 6 5 3 + 0 2 8 2 8 9 10 6 + 7 5 0 2 11 12 8 6 + 8 7 0 2 10 11 8 6 + 10 6 7 16 57 86 87 4 + 7 11 10 16 87 58 57 4 + 10 11 15 16 57 58 64 4 + 15 14 10 16 64 73 57 4 + 7 8 12 32 88 74 59 6 + 12 11 7 32 59 67 88 6 + 11 12 16 32 68 59 65 6 + 16 15 11 32 65 75 68 6 + 8 9 13 64 51 50 60 3 + 13 12 8 64 60 59 51 3 + 12 13 17 64 59 60 66 3 + 17 16 12 64 66 65 59 3 + tverts 89 + 0.346688 0.891416 0 + 0.408666 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.285126 1.36765 0 + 0.219389 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + -0.696282 1.23919 0 + -0.696282 0.617953 0 + -0.596281 0.617953 0 + -0.596281 0.817 0 + -0.596281 1.14356 0 + 0.225624 0.266174 0 + 0.252833 0.305544 0 + 0.252357 0.150473 0 + 0.226784 -0.0348742 0 + 0.191477 0.305544 0 + 0.191001 0.150473 0 + 0.204708 0.471327 0 + 0.273749 0.510697 0 + 0.212393 0.510697 0 + 0.286295 0.267326 0 + 0.28814 -0.0348742 0 + 0.266064 0.471327 0 + 0.21826 0.266174 0 + 0.137861 0.305544 0 + 0.136086 0.150473 0 + 0.136086 0.150473 0 + 0.213931 -0.0348742 0 + 0.21826 0.266174 0 + 0.252833 0.305544 0 + 0.191477 0.305544 0 + 0.252357 0.150473 0 + 0.191477 0.305544 0 + 0.296319 0.471327 0 + 0.215919 0.510697 0 + 0.137861 0.305544 0 + 0.137861 0.305544 0 + 0.21826 0.266174 0 + 0.296319 0.471327 0 + 0.212393 0.510697 0 + 0.252833 0.305544 0 + 0.286295 0.267326 0 + 0.225624 0.266174 0 + 0.28814 -0.0348742 0 + 0.225624 0.266174 0 + 0.204708 0.471327 0 + 0.286295 0.267326 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.0952516 0.000499517 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.496536 0.3335 0 + 0.0952516 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + -0.0034642 0.3335 0 + -0.0034642 0.3335 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + 0.420894 0.6665 0 + 0.0876934 0.0625172 0 + -0.00129734 0.669749 0 + 0.345252 0.777547 0 + -0.00282295 0.777409 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 + 0.496536 0.192615 0 + -0.0034642 0.192615 0 +endnode +#Tile trimesh node +node trimesh blacky10 + parent tin01_a02_03 + position 4.5 0.0 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 4 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -450.0 0.0 108.5 + bitmap tin01_black + verts 16 + 0.0 5.0 0.0 + 0.0 5.0 2.17 + -8.25 -5.0 0.0 + -8.25 -5.0 2.17 + -0.75 5.0 0.0 + -0.75 5.0 2.17 + -9.0 -5.0 0.0 + -9.0 -5.0 2.17 + -0.75 -5.0 0.0 + -0.75 -5.0 2.17 + -9.0 5.0 0.0 + -9.0 5.0 2.17 + 0.0 -5.0 0.0 + 0.0 -5.0 2.17 + -8.25 5.0 0.0 + -8.25 5.0 2.17 + faces 8 + 6 3 7 0 11 5 13 1 + 6 2 3 0 11 2 5 1 + 0 4 5 0 7 12 8 1 + 0 5 1 0 7 8 1 1 + 14 11 15 0 25 19 27 1 + 14 10 11 0 25 16 19 1 + 8 12 13 0 21 26 22 1 + 8 13 9 0 21 22 15 1 + tverts 28 + 1.999 0.09 0 + 1.999 0.99 0 + 0.000999033 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 1.999 0.09 0 + 0.00149882 0.99 0 + 0.874911 0.09 0 + 0.076852 0.09 0 + 2.9985 0.09 0 + 0.00149882 0.09 0 + 1.84126 0.000999093 0 + 1.999 0.09 0 + 1.999 0.99 0 + 0.000999033 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 1.999 0.09 0 + 0.00149882 0.99 0 + 0.874911 0.09 0 + 0.076852 0.09 0 + 2.9985 0.09 0 + 0.00149882 0.09 0 + 1.84126 0.000999093 0 +endnode +#Tile trimesh node +node trimesh wallback01 + parent tin01_a02_03 + position 0.0 4.5 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -450.0 108.5 + bitmap tin01_wallbrick + verts 20 + 4.5 0.5 0.0 + 4.5 0.5 2.17 + 4.5 -9.5 0.0 + 4.5 -9.5 2.17 + 3.75 0.5 2.17 + 3.75 -9.5 2.17 + 3.75 -2.05 2.17 + 3.75 -9.28 2.17 + 3.75 -4.5 2.17 + 3.75 -6.93 2.17 + -4.5 -9.5 0.0 + -4.5 0.5 0.0 + -4.5 -9.5 2.17 + -4.5 0.5 2.17 + -3.75 -9.5 2.17 + -3.75 0.5 2.17 + -3.75 -2.07 2.17 + -3.75 -9.28 2.17 + -3.75 -4.5 2.17 + -3.75 -6.95 2.17 + faces 16 + 2 0 3 0 4 6 7 1 + 3 0 1 0 5 8 9 1 + 4 6 1 0 13 14 12 1 + 6 8 1 0 14 15 12 1 + 1 8 9 0 12 15 16 1 + 9 3 1 0 16 17 12 1 + 9 7 3 0 16 18 17 1 + 7 5 3 0 18 19 17 1 + 11 10 13 0 29 36 37 1 + 13 10 12 0 31 28 30 1 + 12 14 17 0 38 39 40 1 + 12 17 19 0 38 40 41 1 + 12 19 18 0 38 41 42 1 + 12 18 13 0 38 42 43 1 + 18 16 13 0 42 44 43 1 + 16 15 13 0 44 45 43 1 + tverts 46 + 1.999 0.09 0 + 0.000999093 0.09 0 + 1.999 0.99 0 + 0.000999093 0.99 0 + 0.000999033 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 1.999 0.99 0 + 1.999 0.09 0 + 0.000999093 0.99 0 + -0.388774 0.438941 0 + -0.231037 0.281204 0 + 0.042374 0.281204 0 + 0.557648 0.281204 0 + 1.06872 0.281204 0 + 1.60923 0.438941 0 + 1.56296 0.281204 0 + 1.60923 0.281204 0 + -0.211194 0.392396 0 + -0.211194 0.234659 0 + -0.164924 0.234659 0 + 0.325112 0.234659 0 + 0.840386 0.234659 0 + 1.78681 0.392396 0 + 1.35145 0.234659 0 + 1.62907 0.234659 0 + 1.999 0.09 0 + 0.000999093 0.09 0 + 1.999 0.99 0 + 0.000999093 0.99 0 + 1.999 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 1.999 0.99 0 + 1.999 0.09 0 + 0.000999093 0.99 0 + -0.211194 0.392396 0 + -0.211194 0.234659 0 + -0.164924 0.234659 0 + 0.325112 0.234659 0 + 0.840386 0.234659 0 + 1.78681 0.392396 0 + 1.35145 0.234659 0 + 1.62907 0.234659 0 +endnode +endmodelgeom tin01_a02_03 +donemodel tin01_a02_03 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/tin01_a16_02.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_a16_02.mdl new file mode 100644 index 0000000..b9dd190 --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_a16_02.mdl @@ -0,0 +1,4777 @@ +# Exported from NWmax 0.8 b60 at 21.10.2012 18:16:52 +# mdl file +# +#NWmax MODEL ASCII +# model: tin01_a16_02 +#local file: Unknown +filedependancy Unknown +newmodel tin01_a16_02 +setsupermodel tin01_a16_02 NULL +classification Tile +#NWmax GEOM ASCII +beginmodelgeom tin01_a16_02 +node dummy tin01_a16_02 + parent NULL +endnode +node dummy tin01_a16_02_D01 + parent tin01_a16_02 + position 0.0 5.0 0.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.52549 0.431373 0.0313726 +endnode +node light tin01_a16_02ml1 + parent tin01_a16_02 + position 0.0 0.0 5.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 14.0 + multiplier 1.0 + color 0.0 0.0 0.0 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +node light tin01_a16_02ml2 + parent tin01_a16_02 + position -3.04148 1.44577 4.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 5.0 + multiplier 1.0 + color 0.00392157 0.00392157 0.00392157 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +#Tile trimesh node +node trimesh Object337 + parent tin01_a16_02 + position 1.08 4.39 3.67 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 3.0 28.0 -217.0 + bitmap tin01_seat + verts 10 + -0.08 0.3 -0.67 + -0.08 0.61 -0.67 + -0.08 0.61 -3.67 + -0.08 -0.05 -3.67 + -0.08 -0.05 -0.67 + 0.14 0.25 -0.67 + 0.14 -0.05 -0.67 + 0.14 0.25 -1.64 + 0.14 -0.05 -3.67 + 0.14 0.25 -3.67 + faces 8 + 0 1 2 1 0 1 2 1 + 2 3 4 1 2 3 4 1 + 5 6 7 1 5 6 7 1 + 8 9 7 1 3 8 7 1 + 6 4 3 2 9 10 11 1 + 3 8 6 2 11 12 9 1 + 4 0 2 1 4 0 2 1 + 8 7 6 1 3 7 6 1 + tverts 13 + 0.0033116 0.35114 0 + 0.0033116 0.415914 0 + 0.996688 0.415914 0 + 0.996688 0.196195 0 + 0.0033116 0.196195 0 + 0.0033112 0.296363 0 + 0.0033112 0.196195 0 + 0.341464 0.296363 0 + 0.996688 0.296363 0 + 0.996689 0.243509 0 + 0.996688 0.316026 0 + 0.0033114 0.316022 0 + 0.0033118 0.243505 0 +endnode +#Tile trimesh node +node trimesh Mesh1434 + parent tin01_a16_02 + position -1.09 4.48 3.71 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -2.0 19.0 -221.0 + bitmap tin01_seat + verts 10 + 0.09 0.21 -0.71 + 0.09 -0.14 -0.71 + 0.09 -0.14 -3.71 + 0.09 0.52 -3.71 + 0.09 0.52 -0.71 + -0.13 -0.14 -0.71 + -0.13 0.16 -0.71 + -0.13 0.16 -1.68 + -0.13 0.16 -3.71 + -0.13 -0.14 -3.71 + faces 8 + 0 1 2 1 0 1 2 4 + 2 3 4 1 2 3 4 4 + 5 6 7 1 5 6 7 4 + 8 9 5 1 8 9 5 4 + 1 5 9 2 10 11 12 4 + 9 2 1 2 12 13 10 4 + 4 0 2 1 4 0 2 4 + 5 7 8 1 5 7 8 4 + tverts 14 + 0.0033115 0.311733 0 + 0.0033115 0.196195 0 + 0.996688 0.196195 0 + 0.996688 0.415914 0 + 0.0033115 0.415914 0 + 0.0033118 0.196195 0 + 0.0033119 0.296363 0 + 0.323518 0.296363 0 + 0.996689 0.296363 0 + 0.996689 0.196195 0 + 0.996688 0.319703 0 + 0.996688 0.39222 0 + 0.0033113 0.392217 0 + 0.0033116 0.3197 0 +endnode +#Tile trimesh node +node trimesh Mesh1440 + parent tin01_a16_02 + position 2.09 3.64 3.93 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -65.0 -110.0 + bitmap tin01_flood + verts 12 + -0.01 -0.16 -1.78 + -0.01 -0.65 -2.32 + -0.01 -0.16 0.12 + -0.01 -0.65 0.12 + 0.01 -1.14 -1.78 + 0.01 -0.65 -2.32 + 0.01 -1.14 0.12 + 0.01 -0.65 0.12 + -0.01 -1.14 -1.78 + -0.01 -1.14 0.12 + 0.01 -0.16 -1.78 + 0.01 -0.16 0.12 + faces 8 + 0 1 2 1 0 1 2 3 + 3 2 1 1 3 2 1 3 + 4 5 6 1 4 1 5 3 + 7 6 5 1 3 5 1 3 + 1 8 3 1 1 4 3 3 + 9 3 8 1 5 3 4 3 + 5 10 7 1 1 0 3 3 + 11 7 10 1 2 3 0 3 + tverts 6 + 0.262117 0.73289 0 + -0.0036612 0.998353 0 + 0.947225 0.732891 0 + 0.947225 0.998354 0 + 0.262117 0.73 0 + 0.947225 0.73 0 +endnode +#Tile trimesh node +node trimesh Mesh1431 + parent tin01_a16_02 + position -2.15 4.87 2.72 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 80.0 -69.5 -122.0 + bitmap tin01_wallcord + verts 33 + -1.14 -1.12 -0.2 + -0.63 -1.12 -0.38 + -0.02 -1.12 -0.07 + -1.57 -1.16 -0.25 + -0.95 -1.12 0.28 + -0.35 -1.12 -0.85 + -0.35 -1.12 -2.72 + 0.35 -1.12 -2.72 + 0.35 -1.12 0.28 + 0.04 -1.12 0.28 + -0.35 -0.37 0.28 + -2.35 -0.37 0.28 + -1.91 -0.81 -0.29 + -1.14 -0.81 -0.2 + 0.35 -0.23 -2.72 + 0.35 -0.23 -0.69 + 0.35 -0.23 0.28 + -0.35 -0.23 0.28 + 0.93 -0.23 -0.69 + 0.93 -0.23 0.28 + 0.93 -0.23 -2.72 + -1.6 -1.12 0.28 + -0.63 -0.81 -0.38 + -0.35 -0.81 -0.85 + -0.35 -0.81 -2.72 + 3.37 -0.23 0.28 + 3.37 -0.23 -0.69 + 3.95 -0.23 0.28 + 3.95 -0.23 -2.72 + 3.95 -0.23 -0.69 + 3.37 -0.23 -2.72 + -0.02 -1.12 0.28 + 0.04 -1.12 -0.07 + faces 39 + 0 1 2 1 0 1 2 4 + 3 0 4 2 3 0 4 4 + 5 6 7 1 5 6 7 4 + 5 7 8 1 5 7 8 4 + 9 8 10 4 9 10 11 1 + 11 4 10 4 12 13 11 1 + 12 13 0 4 3 0 14 4 + 0 3 12 8 0 3 15 4 + 14 15 8 2 16 17 18 4 + 8 7 14 2 18 19 16 4 + 16 10 8 4 20 21 22 4 + 10 16 17 4 21 20 23 4 + 18 19 16 1 50 39 51 4 + 15 14 20 1 52 42 53 4 + 18 15 20 1 54 55 43 4 + 15 16 8 2 17 24 18 4 + 15 18 16 1 41 38 40 4 + 4 21 3 16 4 25 3 1 + 4 11 21 4 13 12 26 1 + 13 22 1 16 0 1 27 4 + 1 0 13 16 1 0 14 4 + 22 23 5 2 28 29 30 4 + 5 1 22 2 30 31 28 4 + 23 24 6 4 29 32 33 4 + 6 5 23 4 33 30 29 4 + 25 26 27 1 44 56 57 4 + 28 29 30 1 47 58 59 4 + 29 26 30 1 60 61 49 4 + 26 29 27 1 45 48 46 4 + 4 31 10 4 13 34 11 1 + 0 31 4 1 0 35 4 4 + 0 2 31 1 0 2 35 4 + 31 9 10 4 34 9 11 1 + 32 1 5 1 36 1 5 4 + 8 32 5 1 8 36 5 4 + 2 1 32 1 2 1 36 4 + 8 9 32 1 8 37 36 4 + 2 32 9 0 62 65 63 1 + 2 9 31 0 62 63 64 1 + tverts 66 + -0.631994 0.838192 0 + -0.434986 0.778641 0 + -0.224667 0.879928 0 + -0.829002 0.821 0 + -0.631995 0.996689 0 + -0.33016 0.623881 0 + -0.33016 0.0033114 0 + -0.096027 0.0033114 0 + -0.096027 0.996689 0 + -0.225859 -0.123339 0 + -0.0960271 -0.123339 0 + -0.327809 0.108097 0 + -1.01881 0.108098 0 + -0.631995 -0.123339 0 + -0.631994 0.838192 0 + -0.829002 0.821 0 + 0.647179 0.0033113 0 + 0.647179 0.652005 0 + 0.352822 0.996689 0 + 0.352822 0.0033113 0 + 0.647178 0.879747 0 + 0.601166 1.11153 0 + 0.352822 0.879747 0 + 0.647178 1.11153 0 + 0.647179 0.996689 0 + -1.08504 0.996689 0 + -0.909392 -0.123338 0 + -0.434986 0.778641 0 + 0.552142 0.77254 0 + 0.552142 0.61778 0 + 0.447858 0.61778 0 + 0.447858 0.77254 0 + 0.552142 -0.0027898 0 + 0.447858 -0.0027898 0 + -0.250382 -0.123339 0 + -0.250382 0.996689 0 + -0.203502 0.879311 0 + -0.225859 0.996689 0 + 0.12916 0.67649 0 + 0.12916 0.999501 0 + 0.000399613 0.999501 0 + 0.000399613 0.67649 0 + 0.000399613 0.000499517 0 + 0.12916 0.000499517 0 + 0.67084 0.999501 0 + 0.67084 0.67649 0 + 0.7996 0.999501 0 + 0.7996 0.000499517 0 + 0.7996 0.67649 0 + 0.67084 0.000499517 0 + 0.12916 0.67649 0 + 0.000399613 0.999501 0 + 0.000399613 0.67649 0 + 0.12916 0.000499517 0 + 0.12916 0.67649 0 + 0.000399613 0.67649 0 + 0.67084 0.67649 0 + 0.7996 0.999501 0 + 0.7996 0.67649 0 + 0.67084 0.000499517 0 + 0.7996 0.67649 0 + 0.67084 0.67649 0 + -0.265488 0.876473 0 + -0.238105 1.0 0 + -0.262628 1.0 0 + -0.244323 0.87709 0 +endnode +#Tile trimesh node +node trimesh flagpole01 + parent tin01_a16_02 + position 2.09 3.48 3.93 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.603922 0.584314 0.592157 + diffuse 0.603922 0.584314 0.592157 + specular 0.0 0.0 0.0 + shininess 1 + center 1.0 -55.0 29.5 + bitmap tin01_shpFLR1 + verts 12 + 0.04 -0.12 0.17 + 0.04 0.27 0.47 + -0.02 0.27 0.47 + -0.02 -0.12 0.17 + 0.04 0.27 0.12 + 0.01 0.27 0.12 + -0.02 0.27 0.12 + -0.02 -1.37 0.12 + 0.01 -1.37 0.12 + 0.04 -1.37 0.17 + 0.04 -1.37 0.12 + -0.02 -1.37 0.17 + faces 19 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 0 4 2 4 5 6 5 + 4 5 2 4 7 8 9 4 + 2 5 6 4 10 8 11 4 + 2 1 4 4 9 12 7 4 + 3 2 6 2 5 4 6 6 + 7 8 9 1 13 14 15 3 + 9 8 10 1 15 14 16 3 + 9 11 7 1 15 17 13 3 + 0 3 11 4 18 19 17 3 + 11 9 0 4 17 15 18 3 + 4 0 9 2 7 18 15 3 + 9 10 4 2 15 16 7 3 + 3 6 7 2 19 11 13 3 + 7 11 3 2 13 17 19 3 + 6 4 10 0 11 6 16 1 + 8 6 10 0 14 11 16 1 + 6 8 7 0 11 14 13 1 + tverts 20 + 0.463885 0.731296 0 + 0.463884 0.268704 0 + 0.536115 0.268704 0 + 0.536116 0.731296 0 + 0.602609 0.580382 0 + 0.483031 0.426185 0 + 0.461905 0.580382 0 + 0.346568 -0.126979 0 + 0.287743 -0.126979 0 + 0.757581 -0.12698 0 + -0.242419 -0.12698 0 + 0.216947 -0.126979 0 + 0.725212 -0.12698 0 + 0.479305 0.956563 0 + 0.507398 0.956563 0 + 0.575082 0.956563 0 + 0.530742 0.956563 0 + 0.438906 0.956563 0 + 0.575082 0.194509 0 + 0.438907 0.194509 0 +endnode +#Tile trimesh node +node trimesh Mesh1433 + parent tin01_a16_02 + position 2.09 3.95 2.85 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 106.0 22.5 -135.0 + bitmap tin01_wallcord + verts 24 + 0.04 -0.2 -0.2 + 1.2 -0.2 -0.33 + 0.04 -0.2 0.15 + 1.01 -0.2 0.15 + 1.63 -0.24 -0.38 + 0.69 -0.2 -0.51 + 0.41 -0.2 -2.85 + 0.41 -0.2 -0.98 + -0.29 -0.2 -2.85 + -0.02 -0.2 -0.2 + 0.41 0.55 0.15 + 2.41 0.55 0.15 + 1.2 0.11 -0.33 + 1.97 0.11 -0.42 + -0.29 0.69 -0.82 + -0.29 0.69 -2.85 + -0.29 -0.2 0.15 + -0.29 0.69 0.15 + 0.41 0.69 0.15 + 1.66 -0.2 0.15 + 0.69 0.11 -0.51 + 0.41 0.11 -0.98 + 0.41 0.11 -2.85 + -0.02 -0.2 0.15 + faces 31 + 0 1 2 1 0 1 2 4 + 2 1 3 1 2 1 3 4 + 1 4 3 2 1 4 3 4 + 5 1 0 1 5 1 0 4 + 6 7 8 1 6 7 8 4 + 8 7 9 1 8 7 9 4 + 2 3 10 4 10 11 12 1 + 3 11 10 4 11 13 12 1 + 12 13 1 4 1 4 14 4 + 4 1 13 8 4 1 15 4 + 14 15 16 2 16 17 18 4 + 8 16 15 2 19 18 17 4 + 10 17 16 4 20 21 22 4 + 17 10 18 4 21 20 23 4 + 17 14 16 2 24 16 18 4 + 19 3 4 16 25 3 4 1 + 11 3 19 4 13 11 26 1 + 20 12 5 16 5 1 27 4 + 1 5 12 16 1 5 14 4 + 21 20 7 2 28 29 30 4 + 5 7 20 2 31 30 29 4 + 22 21 6 4 32 28 33 4 + 7 6 21 4 30 33 28 4 + 16 23 10 4 34 35 12 1 + 16 9 23 1 36 9 37 4 + 23 2 10 4 35 10 12 1 + 9 16 8 1 9 36 8 4 + 5 0 7 1 5 0 7 4 + 7 0 9 1 7 0 9 4 + 9 0 23 0 40 38 41 1 + 0 2 23 0 38 39 41 1 + tverts 42 + -0.207174 0.879772 0 + -0.631994 0.838192 0 + -0.230285 0.996689 0 + -0.631995 0.996689 0 + -0.829002 0.821 0 + -0.434986 0.778641 0 + -0.33016 0.0033114 0 + -0.33016 0.623881 0 + -0.096027 0.0033114 0 + -0.185753 0.879514 0 + -0.190347 -0.123339 0 + -0.63141 -0.124451 0 + -0.294258 0.112928 0 + -1.14709 0.112928 0 + -0.631994 0.838192 0 + -0.829002 0.821 0 + 0.647179 0.652005 0 + 0.647179 0.0033113 0 + 0.352822 0.996689 0 + 0.352822 0.0033113 0 + 0.601166 1.11153 0 + 0.647178 0.879747 0 + 0.352822 0.879747 0 + 0.647178 1.11153 0 + 0.647179 0.996689 0 + -1.08504 0.996689 0 + -0.996229 -0.125754 0 + -0.434986 0.778641 0 + 0.552142 0.61778 0 + 0.552142 0.77254 0 + 0.447858 0.61778 0 + 0.447858 0.77254 0 + 0.552142 -0.0027898 0 + 0.447858 -0.0027898 0 + -0.0427412 -0.123339 0 + -0.162718 -0.123339 0 + -0.096027 0.996689 0 + -0.205154 0.996689 0 + -0.206811 0.879699 0 + -0.230235 0.997151 0 + -0.18539 0.879957 0 + -0.205717 0.99694 0 +endnode +#Tile trimesh node +node trimesh Mesh1430 + parent tin01_a16_02 + position 4.06 4.07 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -78.0 -420.5 126.0 + bitmap tin01_wallbrick + verts 19 + 0.0 -0.01 2.43 + 0.0 -1.57 0.0 + 0.0 -1.64 2.52 + 0.0 -2.87 2.34 + 0.0 -3.53 1.87 + 0.0 -0.01 0.0 + 0.0 -3.53 0.0 + 0.0 -6.57 0.0 + 0.0 -7.74 2.34 + 0.0 -6.5 2.52 + 0.0 -5.27 2.34 + 0.0 -4.61 1.87 + 0.0 -8.4 1.87 + 0.0 -8.4 0.0 + 0.0 -4.61 0.0 + -0.77 -0.01 2.52 + -1.28 -0.01 2.34 + -1.56 -0.01 1.87 + -1.56 -0.01 0.0 + faces 15 + 0 1 2 1 0 1 2 3 + 3 1 4 1 3 1 4 3 + 2 1 3 1 2 1 3 3 + 0 5 1 1 0 5 1 3 + 1 6 4 1 1 6 4 3 + 7 8 9 1 7 8 9 3 + 7 10 11 1 7 10 11 3 + 7 9 10 1 7 9 10 3 + 12 8 7 1 12 8 7 3 + 7 13 12 1 7 13 12 3 + 14 7 11 1 14 7 11 3 + 5 0 15 1 15 16 17 3 + 5 16 17 1 15 18 19 3 + 5 15 16 1 15 17 18 3 + 18 5 17 1 20 15 19 3 + tverts 21 + -1.00758 0.817241 0 + -0.0991076 -9.2e-005 0 + -0.0605695 0.834789 0 + 0.658039 0.775238 0 + 1.0404 0.620478 0 + -1.00758 -9.19e-005 0 + 1.0404 -9.19e-005 0 + 1.06062 -0.0003026 0 + 1.69567 0.775027 0 + 0.850303 0.834578 0 + 0.306033 0.775027 0 + -0.0557951 0.620267 0 + 2.02789 0.620267 0 + 2.02789 -0.0003027 0 + -0.0557952 -0.0003025 0 + 0.0180582 0.0014104 0 + 0.0180579 0.806135 0 + 0.470135 0.836291 0 + 0.84841 0.77674 0 + 1.04545 0.62198 0 + 1.04544 0.0014105 0 +endnode +#Tile trimesh node +node trimesh Object335 + parent tin01_a16_02 + position -4.83 -0.04 2.72 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 72.0 107.5 -122.0 + bitmap tin01_wallcord + verts 27 + 1.08 2.47 0.28 + 0.33 2.47 0.28 + 0.33 0.04 0.28 + 1.08 0.04 0.28 + 1.08 0.58 -0.85 + 1.08 1.24 -0.38 + 1.08 0.04 -2.72 + 1.08 0.58 -2.72 + 0.77 4.1 -0.29 + 1.11 3.75 -0.25 + 1.08 2.47 -0.2 + 0.77 2.47 -0.2 + 1.08 3.79 0.28 + 0.33 4.54 0.28 + 1.08 -0.5 -0.85 + 0.77 -1.16 -0.38 + 0.77 -0.5 -0.85 + 1.08 -1.16 -0.38 + 1.08 -2.39 -0.2 + 0.77 -2.39 -0.2 + 0.77 -0.5 -2.72 + 1.08 -0.5 -2.72 + 0.77 0.58 -0.85 + 0.77 1.24 -0.38 + 0.77 0.58 -2.72 + 0.33 -2.39 0.28 + 1.08 -2.39 0.28 + faces 32 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 5 3 2 4 5 6 4 + 4 6 7 2 4 7 8 4 + 4 3 6 2 4 6 7 4 + 8 9 10 1 9 10 11 3 + 10 11 8 4 11 12 9 3 + 3 5 10 2 6 5 13 4 + 12 0 10 2 14 15 13 4 + 10 9 12 8 13 16 14 4 + 10 0 3 2 13 15 6 4 + 1 0 12 1 1 0 17 1 + 12 13 1 1 17 18 1 1 + 14 15 16 1 19 20 21 3 + 17 15 14 1 22 20 19 3 + 18 19 15 4 23 24 25 3 + 18 15 17 4 23 25 26 3 + 20 21 14 4 27 28 19 3 + 14 16 20 4 19 21 27 3 + 22 23 4 1 29 30 31 4 + 5 4 23 1 32 31 30 4 + 24 22 7 4 33 29 34 4 + 4 7 22 4 31 34 29 4 + 23 11 5 16 5 13 35 4 + 10 5 11 16 13 5 36 4 + 3 2 25 1 37 38 39 1 + 17 3 18 2 25 40 23 4 + 3 26 18 2 40 41 23 4 + 17 14 3 2 25 42 40 4 + 6 14 21 2 43 42 44 4 + 14 6 3 2 42 43 40 4 + 3 25 26 1 37 39 45 1 + tverts 46 + 1.38861 0.870063 0 + 1.38861 1.11358 0 + 0.582782 1.11358 0 + 0.582781 0.870063 0 + 0.849308 0.623881 0 + 1.06741 0.778641 0 + 0.671471 0.996689 0 + 0.671471 0.0033113 0 + 0.849309 0.0033113 0 + -0.995684 0.820561 0 + -0.881635 0.820561 0 + -0.891401 0.838108 0 + -0.995684 0.838108 0 + 1.4773 0.838192 0 + 1.91319 0.996689 0 + 1.4773 0.996689 0 + 1.9002 0.820645 0 + 1.8245 0.870063 0 + 2.07285 1.11358 0 + 0.447858 0.620095 0 + 0.552142 0.774855 0 + 0.552142 0.620095 0 + 0.447858 0.774855 0 + 1.15615 0.838108 0 + 1.15615 0.838108 0 + 0.746259 0.778557 0 + 0.746259 0.778557 0 + 0.552142 -0.0004745 0 + 0.447858 -0.0004746 0 + 0.431599 0.620178 0 + 0.431599 0.774939 0 + 0.535885 0.620178 0 + 0.535885 0.774939 0 + 0.431599 -0.0003912 0 + 0.535885 -0.0003912 0 + 1.06741 0.778641 0 + 1.4773 0.838192 0 + 0.417219 0.870259 0 + 0.417219 1.11377 0 + 1.22305 1.11377 0 + 0.350321 0.996605 0 + 1.15615 0.996604 0 + 0.528158 0.623797 0 + 0.350321 0.0032271 0 + 0.528158 0.0032271 0 + 1.22305 0.870259 0 +endnode +#Tile trimesh node +node trimesh Mesh1429 + parent tin01_a16_02 + position -4.08 4.08 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 80.0 -421.5 126.0 + bitmap tin01_wallbrick + verts 19 + 0.02 -7.75 2.34 + 0.02 -6.58 0.0 + 0.02 -6.51 2.52 + 0.02 -5.28 2.34 + 0.02 -4.62 1.87 + 0.02 -8.41 1.87 + 0.02 -8.41 0.0 + 0.02 -4.62 0.0 + 0.02 -1.58 0.0 + 0.02 -0.02 2.43 + 0.02 -1.65 2.52 + 0.02 -2.88 2.34 + 0.02 -3.54 1.87 + 0.02 -0.02 0.0 + 0.02 -3.54 0.0 + 0.79 -0.02 2.52 + 1.3 -0.02 2.34 + 1.58 -0.02 1.87 + 1.58 -0.02 0.0 + faces 15 + 0 1 2 1 0 1 2 3 + 3 1 4 1 3 1 4 3 + 2 1 3 1 2 1 3 3 + 0 5 1 1 0 5 1 3 + 6 1 5 1 6 1 5 3 + 1 7 4 1 1 7 4 3 + 8 9 10 1 8 9 10 3 + 8 11 12 1 8 11 12 3 + 8 10 11 1 8 10 11 3 + 13 9 8 1 13 9 8 3 + 14 8 12 1 14 8 12 3 + 9 13 15 1 15 16 17 3 + 16 13 17 1 18 16 19 3 + 15 13 16 1 17 16 18 3 + 13 18 17 1 16 20 19 3 + tverts 21 + 1.69567 0.775027 0 + 1.06062 -0.0003026 0 + 0.850303 0.834578 0 + 0.306033 0.775027 0 + -0.0557951 0.620267 0 + 2.02789 0.620267 0 + 2.02789 -0.0003027 0 + -0.0557952 -0.0003025 0 + -0.0991076 -9.2e-005 0 + -1.00758 0.817241 0 + -0.0605695 0.834789 0 + 0.658039 0.775238 0 + 1.0404 0.620478 0 + -1.00758 -9.19e-005 0 + 1.0404 -9.19e-005 0 + 0.039767 0.806135 0 + 0.0397673 0.0014104 0 + 0.491844 0.836291 0 + 0.870119 0.77674 0 + 1.06716 0.62198 0 + 1.06715 0.0014105 0 +endnode +#Tile trimesh node +node trimesh Mesh1437 + parent tin01_a16_02 + position 0.0 0.0 -0.26 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 0.0 26.0 + bitmap tin01_floor2 + verts 55 + 1.0 4.34 0.26 + 1.0 5.0 0.26 + 0.0 5.0 0.26 + 0.0 2.5 0.26 + -1.8 3.75 0.26 + -2.5 3.75 0.26 + -2.5 4.06 0.26 + -4.06 4.06 0.26 + -4.06 2.5 0.26 + 4.06 0.54 0.26 + 4.06 2.5 0.26 + 3.75 0.54 0.26 + 2.5 2.5 0.26 + -2.5 0.0 0.26 + -2.5 2.5 0.26 + -3.75 0.54 0.26 + -3.75 0.0 0.26 + 3.75 -0.54 0.26 + 3.75 0.0 0.26 + 2.5 0.0 0.26 + 2.5 -2.5 0.26 + -2.5 -2.5 0.26 + -3.75 -0.54 0.26 + -4.06 -2.5 0.26 + -4.06 -0.54 0.26 + 4.06 -4.33 0.26 + 4.06 -2.5 0.26 + 3.75 -4.33 0.26 + -3.4 -5.0 0.26 + -3.4 -4.78 0.26 + 0.0 0.0 0.26 + 0.0 -2.5 0.26 + 2.5 -5.0 0.26 + 0.0 -5.0 0.26 + -2.5 -5.0 0.26 + 1.22 4.34 0.26 + 1.8 3.75 0.26 + 1.8 4.64 0.26 + 1.22 4.64 0.26 + 2.5 3.75 0.26 + 4.06 4.06 0.26 + 2.5 4.06 0.26 + 4.06 -0.54 0.26 + 3.4 -4.78 0.26 + 3.4 -5.0 0.26 + -3.75 -4.33 0.26 + -3.75 -4.78 0.26 + -4.06 -4.33 0.26 + -4.06 0.54 0.26 + -1.8 4.64 0.26 + -1.22 4.34 0.26 + -1.22 4.64 0.26 + -1.0 5.0 0.26 + -1.0 4.34 0.26 + 3.75 -4.78 0.26 + faces 62 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 3 4 5 1 3 4 5 1 + 5 6 7 1 5 6 7 1 + 7 8 5 1 7 8 5 1 + 9 10 11 1 9 10 11 1 + 12 11 10 1 12 11 10 1 + 13 14 15 1 13 14 15 1 + 15 16 13 1 15 16 13 1 + 17 18 19 1 17 18 19 1 + 19 20 17 1 19 20 17 1 + 21 22 23 1 21 22 23 1 + 24 23 22 1 24 23 22 1 + 25 26 27 1 25 26 27 1 + 20 27 26 1 20 27 26 1 + 28 21 29 1 28 21 29 1 + 19 12 30 1 19 12 30 1 + 3 30 12 1 3 30 12 1 + 30 3 13 1 30 3 13 1 + 14 13 3 1 14 13 3 1 + 20 19 31 1 20 19 31 1 + 30 31 19 1 30 31 19 1 + 31 30 21 1 31 30 21 1 + 13 21 30 1 13 21 30 1 + 32 20 33 1 32 20 33 1 + 31 33 20 1 31 33 20 1 + 33 31 34 1 33 31 34 1 + 21 34 31 1 21 34 31 1 + 3 12 0 1 3 12 0 1 + 0 12 35 1 0 12 35 1 + 35 36 37 1 35 36 37 1 + 35 37 38 1 35 37 38 1 + 35 12 36 1 35 12 36 1 + 39 12 10 1 39 12 10 1 + 10 40 41 1 10 40 41 1 + 10 41 39 1 10 41 39 1 + 39 36 12 1 39 36 12 1 + 12 19 11 1 12 19 11 1 + 19 18 11 1 19 18 11 1 + 20 26 17 1 20 26 17 1 + 26 42 17 1 26 42 17 1 + 27 32 43 1 27 32 43 1 + 20 32 27 1 20 32 27 1 + 32 44 43 1 32 44 43 1 + 34 21 28 1 34 21 28 1 + 21 23 29 1 21 23 29 1 + 29 45 46 1 29 45 46 1 + 23 47 45 1 23 47 45 1 + 21 13 22 1 21 13 22 1 + 13 16 22 1 13 16 22 1 + 14 8 15 1 14 8 15 1 + 8 48 15 1 8 48 15 1 + 49 4 50 1 49 4 50 1 + 50 51 49 1 50 51 49 1 + 14 3 5 1 14 3 5 1 + 14 5 8 1 14 5 8 1 + 3 2 4 1 3 2 4 1 + 2 52 53 1 2 52 53 1 + 4 53 50 1 4 53 50 1 + 4 2 53 1 4 2 53 1 + 43 54 27 1 43 54 27 1 + 45 29 23 1 45 29 23 1 + tverts 55 + 1.19999 -30.1327 0 + 1.19999 -30.0 0 + 0.999993 -30.0 0 + 0.999993 -30.5 0 + 0.639994 -30.25 0 + 0.499993 -30.25 0 + 0.499993 -30.187 0 + 0.187006 -30.187 0 + 0.187005 -30.5 0 + 1.81298 -30.8926 0 + 1.81298 -30.5 0 + 1.74999 -30.8926 0 + 1.49999 -30.5 0 + 0.499992 -31.0 0 + 0.499993 -30.5 0 + 0.249992 -30.8926 0 + 0.249992 -31.0 0 + 1.74999 -31.1074 0 + 1.74999 -31.0 0 + 1.49999 -31.0 0 + 1.49999 -31.5 0 + 0.499992 -31.5 0 + 0.249992 -31.1074 0 + 0.187005 -31.5 0 + 0.187005 -31.1074 0 + 1.81298 -31.866 0 + 1.81298 -31.5 0 + 1.74999 -31.866 0 + 0.319992 -32.0 0 + 0.319992 -31.9566 0 + 0.999992 -31.0 0 + 0.999992 -31.5 0 + 1.49999 -32.0 0 + 0.999992 -32.0 0 + 0.499992 -32.0 0 + 1.24379 -30.1327 0 + 1.35999 -30.25 0 + 1.35999 -30.0722 0 + 1.24379 -30.0722 0 + 1.49999 -30.25 0 + 1.81298 -30.187 0 + 1.49999 -30.187 0 + 1.81298 -31.1074 0 + 1.67999 -31.9566 0 + 1.67999 -32.0 0 + 0.249992 -31.866 0 + 0.249992 -31.9566 0 + 0.187005 -31.866 0 + 0.187003 -30.8926 0 + 0.639994 -30.0722 0 + 0.756196 -30.1327 0 + 0.756194 -30.0722 0 + 0.799994 -30.0 0 + 0.799996 -30.1327 0 + 1.74999 -31.9566 0 +endnode +#Tile trimesh node +node trimesh Object336 + parent tin01_a16_02 + position 4.75 0.0 2.85 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -64.0 103.5 -135.0 + bitmap tin01_wallcord + verts 27 + -0.25 2.43 0.15 + -1.0 2.43 0.15 + -0.25 0.0 0.15 + -1.0 0.0 0.15 + -1.0 1.2 -0.51 + -1.0 0.54 -0.98 + -1.0 0.0 -2.85 + -1.0 0.54 -2.85 + -1.03 3.71 -0.38 + -0.69 4.06 -0.42 + -1.0 2.43 -0.33 + -0.69 2.43 -0.33 + -1.0 3.75 0.15 + -0.25 4.5 0.15 + -0.69 -1.2 -0.51 + -1.0 -0.54 -0.98 + -0.69 -0.54 -0.98 + -1.0 -1.2 -0.51 + -1.0 -0.54 -2.85 + -0.69 -0.54 -2.85 + -0.69 1.2 -0.51 + -0.69 0.54 -0.98 + -0.69 0.54 -2.85 + -0.25 -2.43 0.15 + -1.0 -2.43 -0.33 + -1.0 -2.43 0.15 + -0.69 -2.43 -0.33 + faces 32 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 5 3 2 4 5 6 4 + 6 5 7 2 7 5 8 4 + 3 5 6 2 6 5 7 4 + 8 9 10 1 9 10 11 3 + 11 10 9 4 12 11 10 3 + 4 3 10 2 4 6 13 4 + 1 12 10 2 14 15 13 4 + 8 10 12 8 16 13 15 4 + 1 10 3 2 14 13 6 4 + 1 0 12 1 1 0 17 1 + 13 12 0 1 18 17 0 1 + 14 15 16 1 19 20 21 3 + 14 17 15 1 19 22 20 3 + 18 19 15 4 23 24 20 3 + 16 15 19 4 21 20 24 3 + 5 20 21 1 20 19 21 3 + 4 20 5 1 22 19 20 3 + 10 11 20 16 25 26 27 3 + 10 20 4 16 25 27 28 3 + 22 7 5 4 24 23 20 3 + 5 21 22 4 20 21 24 3 + 2 3 23 1 29 30 31 1 + 3 17 24 2 32 27 25 4 + 25 3 24 2 33 32 25 4 + 15 17 3 2 34 27 32 4 + 15 6 18 2 34 35 36 4 + 6 15 3 2 35 34 32 4 + 23 3 25 1 31 30 37 1 + 26 24 17 4 38 25 27 1 + 26 17 14 4 38 27 19 1 + tverts 39 + 1.38861 1.11116 0 + 1.38861 0.870063 0 + 0.582782 1.11116 0 + 0.582781 0.870063 0 + 1.06741 0.778641 0 + 0.849308 0.623881 0 + 0.671471 0.996689 0 + 0.671471 0.0033113 0 + 0.849309 0.0033113 0 + -0.881635 0.820561 0 + -0.995684 0.820561 0 + -0.891401 0.838108 0 + -0.995684 0.838108 0 + 1.4773 0.838192 0 + 1.4773 0.996689 0 + 1.91319 0.996689 0 + 1.9002 0.820645 0 + 1.8245 0.870063 0 + 2.07285 1.11116 0 + 0.552142 0.774855 0 + 0.447858 0.620095 0 + 0.552142 0.620095 0 + 0.447858 0.774855 0 + 0.447858 -0.0004746 0 + 0.552142 -0.0004745 0 + 1.15615 0.838108 0 + 1.15615 0.838108 0 + 0.746259 0.778557 0 + 0.746259 0.778557 0 + 0.417219 1.11377 0 + 0.417219 0.870259 0 + 1.22305 1.11377 0 + 0.350321 0.996605 0 + 1.15615 0.996604 0 + 0.528158 0.623797 0 + 0.350321 0.0032271 0 + 0.528158 0.0032271 0 + 1.22305 0.870259 0 + 1.846 0.838792 0 +endnode +node aabb wok + parent tin01_a16_02 + position 0.0 0.0 1.5 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + multimaterial 20 + Dirt + Obscuring + Grass + Stone + Wood + Water + Nonwalk + Transparent + Carpet + Metal + Puddles + Swamp + Mud + Leaves + Lava + BottomlessPit + DeepWater + Door + Snow + Sand + ambient 0.0 0.0 0.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10.0 + bitmap Obscuring + verts 38 + -3.75 -4.78 -1.5 + -3.75 3.75 -1.5 + -3.75 3.75 1.5 + -3.75 -5.0 1.5 + -5.0 5.0 1.5 + -5.0 -5.0 1.5 + 3.75 3.75 -1.5 + 3.75 -4.78 -1.5 + 3.75 3.75 1.5 + 3.75 -5.0 1.5 + 5.0 5.0 1.5 + 5.0 -5.0 1.5 + 2.32 3.75 -1.5 + 2.19 2.07 -1.5 + -2.3 1.39 -1.5 + 1.98 2.07 -1.5 + -1.96 2.07 -1.5 + 1.8 3.75 1.5 + 1.8 3.75 -1.5 + 1.0 4.34 -1.5 + 1.0 4.34 1.5 + 1.0 5.0 1.5 + -1.8 3.75 -1.5 + -1.0 4.34 -1.5 + -1.0 4.34 1.5 + -1.8 3.75 1.5 + 1.0 5.0 -1.5 + -1.0 5.0 -1.5 + -1.0 5.0 1.5 + -2.26 3.75 -1.5 + -2.17 2.07 -1.5 + 3.4 -4.78 -1.5 + 2.31 1.86 -1.5 + 2.29 -5.0 -1.5 + 3.4 -5.0 -1.5 + -2.24 -5.0 -1.5 + -3.4 -4.78 -1.5 + -3.4 -5.0 -1.5 + faces 60 + 0 1 2 1 0 1 2 2 + 3 0 2 1 0 1 3 2 + 3 2 4 2 0 1 3 2 + 3 4 5 2 0 4 5 2 + 6 7 8 1 0 1 3 2 + 7 9 8 1 0 1 3 2 + 8 9 10 2 0 1 3 2 + 10 9 11 2 0 1 3 2 + 6 12 13 2 0 6 1 4 + 14 15 16 2 7 2 0 4 + 17 18 8 4 0 1 3 2 + 18 17 19 1 0 1 3 2 + 20 19 17 1 0 1 3 2 + 21 20 17 2 0 1 3 2 + 17 8 10 2 0 1 3 2 + 17 10 21 2 0 1 3 2 + 19 22 18 2 0 1 3 4 + 22 19 23 2 0 1 3 4 + 24 25 23 1 0 1 3 2 + 22 23 25 1 0 1 3 2 + 21 26 19 4 8 0 1 2 + 19 20 21 4 0 1 9 2 + 27 28 24 4 0 1 3 2 + 24 23 27 4 0 1 3 2 + 22 25 2 4 0 1 3 2 + 24 28 25 2 0 1 3 2 + 2 25 4 2 0 1 3 2 + 4 25 28 2 0 1 3 2 + 26 27 23 2 0 1 3 4 + 23 19 26 2 0 1 3 4 + 29 1 30 2 6 10 0 4 + 31 7 32 2 0 2 12 4 + 14 33 32 2 7 13 2 9 + 33 34 31 2 0 1 3 4 + 35 36 37 2 0 1 3 4 + 7 31 9 4 0 1 3 4 + 36 0 3 4 0 1 3 4 + 31 34 9 8 0 1 3 4 + 37 36 3 8 0 1 3 4 + 13 18 15 2 2 12 0 7 + 6 13 32 2 0 2 12 4 + 15 18 16 2 2 12 0 4 + 13 15 32 2 2 12 14 4 + 16 29 30 2 15 6 0 7 + 36 35 14 2 6 10 16 4 + 14 1 0 2 16 6 0 4 + 36 14 0 2 6 16 0 4 + 12 18 13 2 2 12 0 7 + 18 22 16 2 6 10 0 4 + 16 22 29 2 6 10 11 7 + 14 35 33 2 17 0 1 9 + 32 33 31 2 0 1 3 4 + 16 30 14 2 15 5 16 4 + 30 1 14 2 5 6 16 4 + 32 15 14 2 2 12 7 4 + 6 32 7 2 0 2 1 4 + 1 29 2 0 1 6 2 2 + 29 22 2 0 6 1 2 2 + 18 12 8 0 1 6 3 2 + 12 6 8 0 6 0 3 2 + tverts 18 + 262.663 -662.804 0 + 262.663 -662.804 0 + 262.663 -662.803 0 + 262.663 -662.804 0 + -254.156 644.811 0 + 8.00633 -18.4919 0 + 0.5 0.5 0 + 319.911 -807.649 0 + 262.663 -685.724 0 + 262.663 -639.883 0 + 0.5 0.5 0 + 0.5 0.5 0 + 262.663 -662.803 0 + 255.156 -643.811 0 + 262.663 -662.803 0 + 8.00654 -18.4925 0 + 65.2547 -163.337 0 + 327.417 -826.641 0 + aabb -5.0 -5.0 -1.5 5.0 5.0 1.5 -1 + -5.0 -5.0 -1.5 2.29 5.0 1.5 -1 + -5.0 -5.0 -1.5 2.29 5.0 1.5 -1 + -3.75 -5.0 -1.5 2.29 1.39 1.5 -1 + -3.75 -5.0 -1.5 -2.24 -4.78 1.5 -1 + -3.4 -5.0 -1.5 -2.24 -4.78 -1.5 34 + -3.75 -5.0 -1.5 -3.4 -4.78 1.5 -1 + -3.75 -5.0 -1.5 -3.4 -4.78 1.5 36 + -3.75 -5.0 -1.5 -3.4 -4.78 1.5 38 + -3.75 -5.0 -1.5 2.29 1.39 -1.5 -1 + -2.3 -5.0 -1.5 2.29 1.39 -1.5 50 + -3.75 -5.0 -1.5 -2.24 1.39 -1.5 -1 + -3.4 -5.0 -1.5 -2.24 1.39 -1.5 44 + -3.75 -4.78 -1.5 -2.3 1.39 -1.5 46 + -5.0 -5.0 -1.5 -2.3 5.0 1.5 -1 + -5.0 -5.0 -1.5 -3.75 5.0 1.5 -1 + -3.75 -5.0 -1.5 -3.75 3.75 1.5 1 + -5.0 -5.0 1.5 -3.75 5.0 1.5 3 + -5.0 -5.0 -1.5 -2.3 5.0 1.5 -1 + -3.75 -4.78 -1.5 -2.3 3.75 -1.5 45 + -5.0 -5.0 -1.5 -3.75 5.0 1.5 -1 + -3.75 -4.78 -1.5 -3.75 3.75 1.5 0 + -5.0 -5.0 1.5 -3.75 5.0 1.5 2 + -5.0 1.39 -1.5 1.98 5.0 1.5 -1 + -5.0 1.39 -1.5 -1.0 5.0 1.5 -1 + -5.0 1.39 -1.5 -1.8 5.0 1.5 -1 + -3.75 1.39 -1.5 -2.17 3.75 -1.5 -1 + -3.75 1.39 -1.5 -2.17 3.75 -1.5 53 + -3.75 2.07 -1.5 -2.17 3.75 -1.5 30 + -5.0 3.75 -1.5 -1.8 5.0 1.5 -1 + -3.75 3.75 -1.5 -2.26 3.75 1.5 56 + -5.0 3.75 1.5 -1.8 5.0 1.5 26 + -5.0 1.39 -1.5 -1.0 5.0 1.5 -1 + -5.0 3.75 -1.5 -1.0 5.0 1.5 -1 + -3.75 3.75 -1.5 -1.8 3.75 1.5 57 + -5.0 3.75 -1.5 -1.0 5.0 1.5 -1 + -3.75 3.75 -1.5 -1.8 3.75 1.5 24 + -5.0 3.75 1.5 -1.0 5.0 1.5 27 + -2.3 1.39 -1.5 -1.8 3.75 -1.5 -1 + -2.3 1.39 -1.5 -1.96 2.07 -1.5 52 + -2.26 2.07 -1.5 -1.8 3.75 -1.5 -1 + -2.26 2.07 -1.5 -1.96 3.75 -1.5 43 + -2.26 2.07 -1.5 -1.8 3.75 -1.5 49 + -2.3 1.39 -1.5 1.98 5.0 1.5 -1 + -1.8 3.75 -1.5 -1.0 5.0 1.5 -1 + -1.8 3.75 -1.5 -1.0 5.0 1.5 -1 + -1.8 3.75 -1.5 -1.0 4.34 1.5 19 + -1.0 4.34 -1.5 -1.0 5.0 1.5 23 + -1.8 3.75 -1.5 -1.0 5.0 1.5 -1 + -1.8 3.75 -1.5 -1.0 5.0 1.5 -1 + -1.8 3.75 -1.5 -1.0 4.34 1.5 18 + -1.0 4.34 -1.5 -1.0 5.0 1.5 22 + -1.8 3.75 1.5 -1.0 5.0 1.5 25 + -2.3 1.39 -1.5 1.98 5.0 -1.5 -1 + -2.3 1.39 -1.5 1.98 4.34 -1.5 -1 + -2.3 1.39 -1.5 1.98 2.07 -1.5 9 + -1.96 2.07 -1.5 1.8 4.34 -1.5 -1 + -1.96 2.07 -1.5 1.8 3.75 -1.5 48 + -1.8 3.75 -1.5 1.0 4.34 -1.5 17 + -1.0 4.34 -1.5 1.0 5.0 -1.5 28 + -2.3 -5.0 -1.5 5.0 5.0 1.5 -1 + -2.3 -5.0 -1.5 5.0 5.0 1.5 -1 + 2.29 -5.0 -1.5 3.75 3.75 1.5 -1 + 2.29 -5.0 -1.5 3.75 -4.78 1.5 -1 + 2.29 -5.0 -1.5 3.4 -4.78 -1.5 33 + 3.4 -5.0 -1.5 3.75 -4.78 1.5 -1 + 3.4 -5.0 -1.5 3.75 -4.78 1.5 37 + 3.4 -5.0 -1.5 3.75 -4.78 1.5 35 + 2.29 -5.0 -1.5 3.75 3.75 1.5 -1 + 2.29 -5.0 -1.5 3.75 1.86 -1.5 -1 + 2.29 -5.0 -1.5 3.4 1.86 -1.5 51 + 2.31 -4.78 -1.5 3.75 1.86 -1.5 31 + 3.75 -5.0 -1.5 3.75 3.75 1.5 5 + -2.3 -5.0 -1.5 5.0 5.0 1.5 -1 + -2.3 -5.0 -1.5 5.0 5.0 1.5 -1 + 3.75 -5.0 1.5 5.0 5.0 1.5 7 + -2.3 -5.0 -1.5 2.31 1.86 -1.5 32 + 2.31 -5.0 -1.5 5.0 5.0 1.5 -1 + 2.31 -4.78 -1.5 3.75 3.75 -1.5 55 + 3.75 -5.0 -1.5 5.0 5.0 1.5 -1 + 3.75 -4.78 -1.5 3.75 3.75 1.5 4 + 3.75 -5.0 1.5 5.0 5.0 1.5 6 + -2.3 1.39 -1.5 5.0 5.0 1.5 -1 + -2.3 1.39 -1.5 2.31 5.0 1.5 -1 + -2.3 1.39 -1.5 2.31 5.0 -1.5 -1 + -1.8 3.75 -1.5 1.8 5.0 -1.5 -1 + -1.8 3.75 -1.5 1.8 4.34 -1.5 16 + -1.0 4.34 -1.5 1.0 5.0 -1.5 29 + -2.3 1.39 -1.5 2.31 3.75 -1.5 -1 + -1.96 2.07 -1.5 1.98 3.75 -1.5 41 + -2.3 1.39 -1.5 2.31 2.07 -1.5 54 + 1.0 3.75 -1.5 1.8 5.0 1.5 -1 + 1.0 3.75 -1.5 1.8 5.0 1.5 -1 + 1.0 4.34 -1.5 1.0 5.0 1.5 20 + 1.0 3.75 -1.5 1.8 4.34 1.5 11 + 1.0 3.75 -1.5 1.8 5.0 1.5 -1 + 1.0 3.75 -1.5 1.8 5.0 1.5 -1 + 1.0 4.34 -1.5 1.0 5.0 1.5 21 + 1.0 3.75 -1.5 1.8 4.34 1.5 12 + 1.0 3.75 1.5 1.8 5.0 1.5 13 + 1.0 1.86 -1.5 5.0 5.0 1.5 -1 + 1.0 1.86 -1.5 5.0 5.0 1.5 -1 + 1.8 1.86 -1.5 2.32 3.75 -1.5 -1 + 1.98 1.86 -1.5 2.31 2.07 -1.5 42 + 1.8 2.07 -1.5 2.32 3.75 -1.5 -1 + 1.8 2.07 -1.5 2.19 3.75 -1.5 39 + 1.8 2.07 -1.5 2.32 3.75 -1.5 47 + 1.0 3.75 -1.5 5.0 5.0 1.5 -1 + 1.8 3.75 -1.5 3.75 3.75 1.5 10 + 1.0 3.75 1.5 5.0 5.0 1.5 15 + 1.8 1.86 -1.5 5.0 5.0 1.5 -1 + 1.8 1.86 -1.5 3.75 3.75 1.5 -1 + 2.19 1.86 -1.5 3.75 3.75 -1.5 -1 + 2.19 1.86 -1.5 3.75 3.75 -1.5 40 + 2.19 2.07 -1.5 3.75 3.75 -1.5 8 + 1.8 3.75 -1.5 3.75 3.75 1.5 58 + 1.8 3.75 -1.5 5.0 5.0 1.5 -1 + 2.32 3.75 -1.5 3.75 3.75 1.5 59 + 1.8 3.75 1.5 5.0 5.0 1.5 14 +endnode +#Tile trimesh node +node trimesh Mesh1435 + parent tin01_a16_02 + position -4.39 -4.67 2.72 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 26.5 95.5 -122.0 + bitmap tin01_wallcord + verts 14 + -0.11 -0.33 0.28 + 0.64 2.24 0.28 + -0.11 2.24 0.28 + 0.64 0.34 -0.85 + 0.64 -0.11 0.28 + 0.64 -0.11 -2.72 + 0.64 1.0 -0.38 + 0.64 2.24 -0.2 + 0.64 -0.33 0.28 + 0.64 0.34 -2.72 + 0.33 0.34 -0.85 + 0.33 1.0 -0.38 + 0.33 2.24 -0.2 + 0.33 0.34 -2.72 + faces 14 + 0 1 2 1 0 1 2 1 + 3 4 5 2 3 4 5 4 + 4 3 6 2 4 3 6 4 + 4 6 7 2 4 6 7 4 + 0 8 4 1 0 8 9 1 + 9 3 5 2 10 3 5 4 + 0 4 1 1 0 9 1 1 + 1 4 7 2 11 4 7 4 + 10 11 3 1 12 13 14 4 + 6 3 11 1 15 14 13 4 + 11 12 6 4 13 16 15 4 + 7 6 12 4 17 15 16 4 + 13 10 9 4 18 12 19 4 + 3 9 10 4 14 19 12 4 + tverts 20 + 2.07285 1.11377 0 + 1.22305 0.870259 0 + 1.22305 1.11377 0 + 1.78415 0.623796 0 + 1.93412 0.996604 0 + 1.93412 0.0032268 0 + 1.56605 0.778557 0 + 1.15615 0.838108 0 + 2.07285 0.870258 0 + 2.00102 0.870258 0 + 1.78415 0.0032268 0 + 1.15615 0.996604 0 + 1.846 0.62448 0 + 1.846 0.779241 0 + 1.74172 0.62448 0 + 1.74172 0.779241 0 + 1.846 0.838792 0 + 1.74172 0.838792 0 + 1.846 0.0039111 0 + 1.74172 0.0039111 0 +endnode +#Tile trimesh node +node trimesh Mesh1441 + parent tin01_a16_02 + position -2.15 3.64 3.93 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -65.0 -110.0 + bitmap tin01_flood + verts 12 + -0.01 -0.16 -1.78 + -0.01 -0.65 -2.32 + -0.01 -0.16 0.12 + -0.01 -0.65 0.12 + 0.01 -1.14 -1.78 + 0.01 -0.65 -2.32 + 0.01 -1.14 0.12 + 0.01 -0.65 0.12 + -0.01 -1.14 -1.78 + -0.01 -1.14 0.12 + 0.01 -0.16 -1.78 + 0.01 -0.16 0.12 + faces 8 + 0 1 2 1 0 1 2 3 + 3 2 1 1 3 2 1 3 + 4 5 6 1 4 1 5 3 + 7 6 5 1 3 5 1 3 + 1 8 3 1 1 4 3 3 + 9 3 8 1 5 3 4 3 + 5 10 7 1 1 0 3 3 + 11 7 10 1 2 3 0 3 + tverts 6 + 0.262117 0.73289 0 + -0.0036612 0.998353 0 + 0.947225 0.732891 0 + 0.947225 0.998354 0 + 0.262117 0.73 0 + 0.947225 0.73 0 +endnode +#Tile trimesh node +node trimesh Mesh153 + parent tin01_a16_02 + position -1.09 4.48 3.71 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 109.0 13.5 -33.0 + bitmap tin01_seat + verts 14 + -0.13 -0.14 0.05 + 0.35 -0.14 -0.24 + 1.09 -0.14 -0.06 + 0.09 -0.14 -0.71 + 0.35 0.41 -0.24 + 1.09 0.41 -0.06 + 2.31 0.16 0.05 + -0.13 0.16 0.05 + 1.09 -0.14 0.05 + 0.21 0.21 -0.49 + 0.09 0.21 -0.71 + -0.13 0.16 -0.71 + -0.13 -0.14 -0.71 + 0.21 0.41 -0.49 + faces 14 + 0 1 2 1 0 1 2 4 + 3 1 0 1 3 1 0 4 + 4 5 2 2 4 5 6 4 + 2 1 4 2 5 4 7 4 + 6 7 0 2 8 9 10 4 + 0 8 6 2 10 11 8 4 + 9 4 1 4 12 13 14 4 + 9 3 10 2 12 15 16 4 + 7 11 12 4 17 18 19 4 + 12 0 7 4 19 20 17 4 + 0 2 8 1 0 2 21 4 + 0 12 3 1 0 22 3 4 + 1 3 9 8 14 15 12 4 + 13 4 9 4 23 13 12 4 + tverts 24 + 0.9128 0.340659 0 + 0.753321 0.436302 0 + 0.508054 0.376751 0 + 0.839798 0.591063 0 + -0.128576 0.997862 0 + 0.803687 0.779815 0 + 0.803687 0.779815 0 + -0.128576 0.997862 0 + 0.550084 0.188924 0 + 0.550084 0.996208 0 + 0.449916 0.996208 0 + 0.449916 0.594142 0 + -0.0922862 0.280191 0 + -0.151449 0.415914 0 + -0.151449 0.196195 0 + 0.0033115 0.196195 0 + 0.0033115 0.311733 0 + -0.247092 0.296363 0 + 0.0033119 0.296363 0 + 0.0033118 0.196195 0 + -0.247092 0.196195 0 + 0.508054 0.340658 0 + 0.912798 0.591063 0 + -0.0748892 0.386036 0 +endnode +#Tile trimesh node +node trimesh Mesh155 + parent tin01_a16_02 + position 1.08 4.39 3.67 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -47.0 22.5 -29.0 + bitmap tin01_seat + verts 13 + 0.14 -0.05 0.09 + -1.08 -0.05 -0.02 + -0.35 -0.05 -0.2 + -0.08 -0.05 -0.67 + -1.08 -0.05 0.09 + 0.14 0.25 0.09 + -1.08 0.5 -0.02 + -0.35 0.5 -0.2 + -0.21 0.3 -0.45 + 0.14 0.25 -0.67 + 0.14 -0.05 -0.67 + -0.21 0.5 -0.45 + -0.08 0.3 -0.67 + faces 13 + 0 1 2 1 0 1 2 1 + 0 2 3 1 0 2 3 1 + 4 0 5 2 4 5 6 1 + 6 7 2 2 7 8 9 1 + 2 1 6 2 8 7 10 1 + 8 2 7 4 11 12 13 1 + 9 5 0 4 14 15 16 1 + 0 10 9 4 16 17 14 1 + 0 4 1 1 0 18 1 1 + 0 3 10 1 0 3 19 1 + 7 11 8 4 13 20 11 1 + 8 12 3 2 11 21 22 1 + 3 2 8 8 22 12 11 1 + tverts 23 + 0.100134 0.340658 0 + 0.508054 0.376751 0 + 0.262788 0.436302 0 + 0.173131 0.591063 0 + 0.449916 0.594142 0 + 0.449916 0.188923 0 + 0.550084 0.188924 0 + 0.803687 0.779815 0 + 1.00177 0.839365 0 + 1.00177 0.839365 0 + 0.803687 0.779815 0 + -0.0830785 0.318846 0 + -0.151449 0.196195 0 + -0.151449 0.415914 0 + 0.0033112 0.296363 0 + -0.247093 0.296363 0 + -0.247093 0.196195 0 + 0.0033112 0.196195 0 + 0.508054 0.340658 0 + 0.100131 0.591062 0 + -0.0739108 0.399087 0 + 0.0033116 0.35114 0 + 0.0033116 0.196195 0 +endnode +#Tile trimesh node +node trimesh Object338 + parent tin01_a16_02 + position 0.39 4.94 3.11 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -39.0 -15.0 21.5 + bitmap tin01_wallcord + verts 9 + -0.39 -0.05 0.54 + -1.13 -0.05 0.36 + -1.27 -0.05 0.11 + 0.48 -0.05 0.11 + 0.34 -0.05 0.36 + 0.61 -0.25 -0.11 + 0.48 -0.25 0.11 + -1.27 -0.25 0.11 + -1.39 -0.25 -0.11 + faces 7 + 0 1 2 1 0 1 2 4 + 2 3 4 1 2 3 4 4 + 4 0 2 1 4 0 2 4 + 5 6 7 1 5 6 7 4 + 7 8 5 1 7 8 5 4 + 6 3 2 2 9 10 11 4 + 2 7 6 2 11 12 9 4 + tverts 13 + 0.499747 0.712938 0 + 0.256105 0.653387 0 + 0.210882 0.571916 0 + 0.789118 0.571916 0 + 0.743389 0.653387 0 + 0.837378 0.968517 0 + 0.794045 1.04181 0 + 0.215809 1.04181 0 + 0.175126 0.968517 0 + 0.79537 0.971935 0 + 0.795369 1.03839 0 + 0.217133 1.03839 0 + 0.217135 0.971935 0 +endnode +#Tile trimesh node +node trimesh Line368 + parent tin01_a16_02 + position -1.63 4.64 3.01 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 163.0 3.0 -1.0 + bitmap tin01_black + verts 14 + -0.87 0.36 -0.01 + -0.87 0.0 -0.01 + -0.17 0.0 -0.01 + 0.63 0.36 -0.01 + 0.41 0.0 -0.01 + 0.63 -0.3 -0.01 + 0.41 -0.3 -0.01 + 3.43 0.0 -0.01 + 4.13 0.0 -0.01 + 4.13 0.36 -0.01 + 2.63 0.36 -0.01 + 2.85 0.0 -0.01 + 2.63 -0.3 -0.01 + 2.85 -0.3 -0.01 + faces 10 + 0 1 2 1 0 1 2 1 + 3 0 2 1 3 0 2 1 + 3 2 4 1 3 2 4 1 + 5 3 4 1 5 3 4 1 + 5 4 6 1 5 4 6 1 + 7 8 9 1 7 8 9 1 + 7 9 10 1 7 9 10 1 + 11 7 10 1 11 7 10 1 + 11 10 12 1 11 10 12 1 + 13 11 12 1 13 11 12 1 + tverts 14 + 0.0005035 0.999501 0 + 0.0004995 0.491779 0 + 0.140357 0.49178 0 + 0.300201 0.9995 0 + 0.256445 0.491777 0 + 0.300202 0.0663782 0 + 0.256446 0.0663781 0 + 0.859643 0.491779 0 + 0.999501 0.491777 0 + 0.999497 0.999499 0 + 0.699799 0.999499 0 + 0.743555 0.491783 0 + 0.6998 0.0663775 0 + 0.743556 0.0663841 0 +endnode +#Tile trimesh node +node trimesh Line193 + parent tin01_a16_02 + position 0.0 0.0 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 0.0 0.0 + bitmap tin01_black + verts 20 + 2.5 4.64 0.0 + 2.5 4.5 0.0 + 4.5 4.5 0.0 + 4.5 -5.0 0.0 + 5.0 -5.0 0.0 + 5.0 5.0 0.0 + 4.5 -2.43 0.0 + 4.5 0.0 0.0 + 4.5 2.43 0.0 + 2.5 5.0 0.0 + -5.0 5.0 0.0 + -5.0 -5.0 0.0 + -4.5 -5.0 0.0 + -4.5 -2.43 0.0 + -4.5 0.0 0.0 + -4.5 2.43 0.0 + -4.5 4.5 0.0 + -2.5 5.0 0.0 + -2.5 4.5 0.0 + -2.5 4.64 0.0 + faces 16 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 6 3 5 1 6 3 5 1 + 7 6 5 1 7 6 5 1 + 8 7 5 1 8 7 5 1 + 2 8 5 1 2 8 5 1 + 2 5 9 1 2 5 9 1 + 0 2 9 1 0 2 9 1 + 10 11 12 1 10 11 12 1 + 10 12 13 1 10 12 13 1 + 10 13 14 1 10 13 14 1 + 10 14 15 1 10 14 15 1 + 10 15 16 1 10 15 16 1 + 17 10 16 1 17 10 16 1 + 17 16 18 1 17 16 18 1 + 19 17 18 1 19 17 18 1 + tverts 20 + -157.0 -49.861 0 + -157.0 -50.0 0 + -155.0 -50.0 0 + -155.0 -59.5 0 + -154.5 -59.5 0 + -154.5 -49.5 0 + -155.0 -56.9336 0 + -155.0 -54.5 0 + -155.0 -52.0664 0 + -157.0 -49.5 0 + -164.5 -49.5 0 + -164.5 -59.5 0 + -164.0 -59.5 0 + -164.0 -56.9336 0 + -164.0 -54.5 0 + -164.0 -52.0664 0 + -164.0 -50.0 0 + -162.0 -49.5 0 + -162.0 -50.0 0 + -162.0 -49.861 0 +endnode +#Tile trimesh node +node trimesh Rectangle51 + parent tin01_a16_02 + position 3.57 -4.89 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center -357.0 0.0 0.0 + bitmap tin01_black + verts 8 + -0.17 -0.11 0.0 + 0.18 -0.11 0.0 + 0.18 0.11 0.0 + -0.17 0.11 0.0 + -7.32 -0.11 0.0 + -6.97 -0.11 0.0 + -6.97 0.11 0.0 + -7.32 0.11 0.0 + faces 4 + 0 1 2 1 0 0 0 1 + 0 2 3 1 0 0 0 1 + 4 5 6 1 0 0 0 1 + 4 6 7 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Box2867 + parent tin01_a16_02 + position 3.41 -5.09 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 16.5 20.0 -219.0 + bitmap tin01_furnish2 + verts 8 + 0.34 0.31 -3.69 + -0.01 0.31 -3.69 + 0.34 0.31 -0.69 + -0.01 0.31 -1.27 + -0.01 0.31 -0.69 + -0.01 0.09 -3.69 + -0.01 0.09 -1.27 + -0.01 0.09 -0.69 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 1 5 3 2 5 6 7 3 + 6 3 5 2 8 7 6 3 + 7 4 6 2 9 10 8 3 + 3 6 4 2 7 8 10 3 + tverts 11 + -0.696282 -0.23919 0 + -0.596283 -0.23919 0 + -0.696282 0.617953 0 + -0.596281 0.452184 0 + -0.596281 0.617953 0 + 0.219389 -0.0988962 0 + 0.285126 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 +endnode +#Tile trimesh node +node trimesh Box2868 + parent tin01_a16_02 + position -3.4 -5.09 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -17.5 20.0 -218.0 + bitmap tin01_furnish2 + verts 8 + 0.0 0.31 -3.68 + -0.35 0.31 -3.68 + 0.0 0.31 -1.26 + -0.35 0.31 -0.68 + 0.0 0.31 -0.68 + 0.0 0.09 -3.68 + 0.0 0.09 -1.26 + 0.0 0.09 -0.68 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 5 0 2 2 5 6 7 3 + 2 6 5 2 7 8 5 3 + 4 7 6 2 9 10 8 3 + 6 2 4 2 8 7 9 3 + tverts 11 + 1.34658 -0.23919 0 + 1.44658 -0.23919 0 + 1.34658 0.452184 0 + 1.44658 0.617953 0 + 1.34658 0.617953 0 + 0.285126 -0.0988962 0 + 0.219389 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.219389 0.810195 0 + 0.285126 0.810195 0 +endnode +#Tile trimesh node +node trimesh Mesh1432 + parent tin01_a16_02 + position 4.36 -4.75 2.85 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -23.5 103.5 -135.0 + bitmap tin01_wallcord + verts 14 + -0.61 2.32 0.15 + 0.14 -0.25 0.15 + 0.14 2.32 0.15 + -0.61 -0.03 0.15 + -0.61 0.42 -0.98 + -0.61 -0.03 -2.85 + -0.61 1.08 -0.51 + -0.61 2.32 -0.33 + -0.61 -0.25 0.15 + -0.61 0.42 -2.85 + -0.3 1.08 -0.51 + -0.3 0.42 -0.98 + -0.3 2.32 -0.33 + -0.3 0.42 -2.85 + faces 14 + 0 1 2 1 0 1 2 1 + 3 4 5 2 3 4 5 4 + 4 3 6 2 4 3 6 4 + 6 3 7 2 6 3 7 4 + 8 1 3 1 8 1 9 1 + 4 9 5 2 4 10 5 4 + 3 1 0 1 9 1 0 1 + 3 0 7 2 3 11 7 4 + 10 11 4 1 12 13 14 4 + 4 6 10 1 14 15 12 4 + 12 10 6 4 16 12 15 4 + 6 7 12 4 15 17 16 4 + 11 13 9 4 13 18 19 4 + 9 4 11 4 19 14 13 4 + tverts 20 + 1.22305 0.870259 0 + 2.07285 1.11377 0 + 1.22305 1.11377 0 + 1.93412 0.996604 0 + 1.78415 0.623796 0 + 1.93412 0.0032268 0 + 1.56605 0.778557 0 + 1.15615 0.838108 0 + 2.07285 0.870258 0 + 2.00102 0.870258 0 + 1.78415 0.0032268 0 + 1.15615 0.996604 0 + 1.846 0.779241 0 + 1.846 0.62448 0 + 1.74172 0.62448 0 + 1.74172 0.779241 0 + 1.846 0.838792 0 + 1.74172 0.838792 0 + 1.846 0.0039111 0 + 1.74172 0.0039111 0 +endnode +#Tile trimesh node +node trimesh Mesh1436 + parent tin01_a16_02 + position 0.0 0.0 -0.22 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 1 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 7.0 -154.0 23.0 + bitmap tin01_burlap + verts 12 + 2.61 -0.45 0.23 + 2.48 1.92 0.23 + 0.11 -0.45 0.23 + 0.0 1.64 0.23 + -2.39 -0.45 0.23 + -2.48 1.36 0.23 + 2.64 -2.5 0.23 + 0.14 -2.5 0.23 + -2.36 -2.5 0.23 + 2.5 -5.0 0.23 + 0.0 -5.0 0.23 + -2.5 -5.0 0.23 + faces 12 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 2 3 4 1 2 3 4 1 + 5 4 3 1 5 4 3 1 + 6 0 7 1 6 7 8 1 + 2 7 0 1 9 8 7 1 + 7 2 8 1 8 9 10 1 + 4 8 2 1 11 10 9 1 + 9 6 10 1 12 6 13 1 + 7 10 6 1 8 13 6 1 + 10 7 11 1 13 8 14 1 + 8 11 7 1 10 14 8 1 + tverts 15 + -0.0076117 0.372948 0 + -0.0076119 0.997948 0 + 0.594655 0.372948 0 + 0.594654 0.997948 0 + -0.0022854 0.372949 0 + -0.0022856 0.997949 0 + -0.0076116 0.0686388 0 + -0.0076117 0.68877 0 + 0.594655 0.0686387 0 + 0.594655 0.68877 0 + -0.0022854 0.0686384 0 + -0.0022854 0.688769 0 + -0.0076114 0.686683 0 + 0.594655 0.686683 0 + -0.0022852 0.686682 0 +endnode +#Tile trimesh node +node trimesh back01 + parent tin01_a16_02 + position -0.03 5.26 4.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 3.0 -26.0 92.0 + bitmap tin01_black + verts 8 + -1.77 -0.26 2.92 + 1.83 -0.26 2.92 + -2.47 -0.26 2.92 + 2.53 -0.26 2.92 + 3.78 -0.26 1.09 + 3.78 -0.26 -1.08 + -3.72 -0.26 -1.08 + -3.72 -0.26 1.09 + faces 6 + 5 3 4 0 2 14 11 1 + 5 6 7 0 2 10 9 1 + 5 7 2 0 2 9 15 1 + 5 2 0 0 2 15 12 1 + 5 0 1 0 2 12 13 1 + 5 1 3 0 2 13 14 1 + tverts 16 + 0.723249 0.09 0 + 0.614349 0.09 0 + 0.886599 0.09 0 + 1.14251 0.09 0 + 1.01619 0.295138 0 + 0.358434 1.0 0 + 1.01619 0.295138 0 + 1.14251 1.0 0 + 0.358434 1.0 0 + 0.614349 0.602236 0 + 0.614349 0.09 0 + 0.886599 0.602236 0 + 0.099064 0.873293 0 + 0.883145 0.873293 0 + 1.0356 0.873293 0 + -0.0533962 0.873293 0 +endnode +#Tile trimesh node +node trimesh bolt01 + parent tin01_a16_02 + position -2.06 0.0 5.02 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.6 0.894118 0.721569 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10 + center 202.5 0.0 4.0 + bitmap tin01__metal01 + verts 24 + 0.0 -0.33 0.0 + -0.06 -0.33 0.0 + -0.02 -0.33 0.06 + 0.05 -0.33 0.04 + 0.05 -0.33 -0.04 + -0.02 -0.33 -0.06 + -0.06 0.33 0.0 + -0.02 0.33 0.06 + 0.05 0.33 0.04 + 0.05 0.33 -0.04 + -0.02 0.33 -0.06 + 0.0 0.33 0.0 + 4.06 -0.33 0.08 + 4.0 -0.33 0.08 + 4.04 -0.33 0.14 + 4.11 -0.33 0.12 + 4.11 -0.33 0.04 + 4.04 -0.33 0.02 + 4.0 0.33 0.08 + 4.04 0.33 0.14 + 4.11 0.33 0.12 + 4.11 0.33 0.04 + 4.04 0.33 0.02 + 4.06 0.33 0.08 + faces 40 + 0 2 1 1 12 13 14 2 + 0 3 2 1 15 16 17 2 + 0 4 3 1 18 19 20 2 + 0 5 4 1 21 22 23 2 + 0 1 5 1 0 24 25 2 + 1 7 6 8 1 7 6 3 + 1 2 7 8 1 2 7 3 + 2 8 7 8 26 8 27 3 + 2 3 8 8 28 3 8 3 + 3 9 8 8 3 9 8 3 + 3 4 9 8 3 4 9 3 + 4 10 9 8 4 10 9 3 + 4 5 10 8 4 5 10 3 + 5 6 10 8 5 6 10 3 + 5 1 6 8 5 1 6 3 + 11 6 7 1 29 30 31 1 + 11 7 8 1 32 33 34 1 + 11 8 9 1 35 36 37 1 + 11 9 10 1 38 39 40 1 + 11 10 6 1 11 41 42 1 + 12 14 13 1 55 56 57 2 + 12 15 14 1 58 59 60 2 + 12 16 15 1 61 62 63 2 + 12 17 16 1 64 65 66 2 + 12 13 17 1 43 67 68 2 + 13 19 18 8 44 50 49 3 + 13 14 19 8 44 45 50 3 + 14 20 19 8 69 51 70 3 + 14 15 20 8 71 46 51 3 + 15 21 20 8 46 52 51 3 + 15 16 21 8 46 47 52 3 + 16 22 21 8 47 53 52 3 + 16 17 22 8 47 48 53 3 + 17 18 22 8 48 49 53 3 + 17 13 18 8 48 44 49 3 + 23 18 19 1 72 73 74 1 + 23 19 20 1 75 76 77 1 + 23 20 21 1 78 79 80 1 + 23 21 22 1 81 82 83 1 + 23 22 18 1 54 84 85 1 + tverts 86 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 +endnode +#Tile trimesh node +node trimesh construction01 + parent tin01_a16_02 + position -0.2 4.0 3.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.87451 0.556863 0.337255 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 20.0 -400.0 194.0 + bitmap tin01_furnish2 + verts 164 + 0.1 -8.78 1.88 + 0.3 -8.78 1.88 + 0.1 -6.63 1.86 + 0.3 -6.63 1.86 + 0.15 -4.45 1.92 + 0.35 -4.45 1.92 + 0.1 -2.33 1.82 + 0.3 -2.33 1.82 + 0.1 0.8 1.88 + 0.3 0.8 1.88 + 0.1 -8.78 2.08 + 0.3 -8.78 2.08 + 0.1 -6.63 2.06 + 0.3 -6.63 2.06 + 0.15 -4.45 2.12 + 0.35 -4.45 2.12 + 0.1 -2.33 2.02 + 0.3 -2.33 2.02 + 0.1 0.8 2.08 + 0.3 0.8 2.08 + 4.06 -3.7 -0.14 + 4.06 -3.9 -0.14 + 4.34 -3.7 0.14 + 4.34 -3.9 0.14 + 1.94 -3.7 1.98 + 1.94 -3.9 1.98 + 2.22 -3.7 2.26 + 2.22 -3.9 2.26 + 4.06 -4.1 -0.14 + 4.06 -4.3 -0.14 + 4.34 -4.1 0.14 + 4.34 -4.3 0.14 + 1.94 -4.1 1.98 + 1.94 -4.3 1.98 + 2.22 -4.1 2.26 + 2.22 -4.3 2.26 + -3.62 -3.89 1.88 + -3.62 -4.09 1.88 + -2.42 -3.93 1.94 + -2.42 -4.13 1.94 + -0.28 -3.89 1.86 + -0.28 -4.09 1.86 + 1.87 -3.89 1.92 + 1.87 -4.09 1.92 + 4.02 -3.89 1.88 + 4.02 -4.09 1.88 + -3.62 -3.89 2.08 + -3.62 -4.09 2.08 + -2.42 -3.93 2.14 + -2.42 -4.13 2.14 + -0.28 -3.89 2.06 + -0.28 -4.09 2.06 + 1.87 -3.89 2.12 + 1.87 -4.09 2.12 + 4.02 -3.89 2.08 + 4.02 -4.09 2.08 + 2.9 -4.11 3.76 + 2.9 -3.91 3.76 + 1.65 -4.11 3.74 + 1.65 -3.91 3.74 + -0.53 -4.06 3.8 + -0.53 -3.86 3.8 + -2.6 -4.11 3.7 + -2.6 -3.91 3.7 + 2.9 -4.11 3.96 + 2.9 -3.91 3.96 + 1.65 -4.11 3.94 + 1.65 -3.91 3.94 + -0.53 -4.06 4.0 + -0.53 -3.86 4.0 + -2.6 -4.11 3.9 + -2.6 -3.91 3.9 + 0.1 -9.0 3.76 + 0.3 -9.0 3.76 + 0.05 -6.85 3.82 + 0.25 -6.85 3.82 + 0.02 -4.7 3.74 + 0.22 -4.7 3.74 + 0.02 -2.55 3.8 + 0.22 -2.55 3.8 + 0.1 1.0 3.76 + 0.3 1.0 3.76 + 0.1 -9.0 3.96 + 0.3 -9.0 3.96 + 0.05 -6.85 4.02 + 0.25 -6.85 4.02 + 0.02 -4.7 3.94 + 0.22 -4.7 3.94 + 0.02 -2.55 4.0 + 0.22 -2.55 4.0 + 0.1 1.0 3.96 + 0.3 1.0 3.96 + 3.0 -9.0 3.72 + 3.0 -8.91 3.71 + 1.2 -9.0 3.72 + 1.65 -8.91 3.69 + -0.8 -9.0 3.72 + -0.73 -8.9 3.75 + -2.6 -9.0 3.72 + -2.6 -8.91 3.7 + 3.0 -9.0 3.92 + 3.0 -8.91 3.96 + 1.2 -9.0 3.92 + 1.65 -8.91 3.94 + -0.8 -9.0 3.92 + -0.73 -8.9 4.0 + -2.6 -9.0 3.92 + -2.6 -8.91 3.94 + 0.1 -9.0 2.07 + 0.3 -9.0 2.07 + 0.12 -8.92 2.07 + 0.28 -8.92 2.07 + 0.1 -9.0 3.72 + 0.3 -9.0 3.72 + 0.12 -8.92 3.77 + 0.28 -8.92 3.77 + 0.14 -6.08 2.07 + 0.3 -6.08 2.07 + 0.14 -5.92 2.07 + 0.3 -5.92 2.07 + 0.06 -6.06 3.82 + 0.22 -6.06 3.82 + 0.06 -5.92 3.82 + 0.22 -5.92 3.82 + 0.12 -2.08 2.0 + 0.28 -2.08 2.0 + 0.12 -1.92 2.0 + 0.28 -1.92 2.0 + 0.04 -2.06 3.82 + 0.2 -2.06 3.82 + 0.04 -1.92 3.82 + 0.2 -1.92 3.82 + 1.14 -4.08 2.04 + 1.3 -4.08 2.04 + 1.14 -3.92 2.04 + 1.3 -3.92 2.04 + 1.06 -4.06 3.82 + 1.22 -4.06 3.82 + 1.06 -3.92 3.82 + 1.22 -3.92 3.82 + -0.82 -4.06 2.07 + -0.66 -4.06 2.07 + -0.82 -3.9 2.07 + -0.66 -3.9 2.07 + -0.9 -4.04 3.82 + -0.74 -4.04 3.82 + -0.9 -3.9 3.82 + -0.74 -3.9 3.82 + -3.66 -4.3 -0.14 + -3.66 -4.1 -0.14 + -3.94 -4.3 0.14 + -3.94 -4.1 0.14 + -1.54 -4.3 1.98 + -1.54 -4.1 1.98 + -1.82 -4.3 2.26 + -1.82 -4.1 2.26 + -3.66 -3.9 -0.14 + -3.66 -3.7 -0.14 + -3.94 -3.9 0.14 + -3.94 -3.7 0.14 + -1.54 -3.9 1.98 + -1.54 -3.7 1.98 + -1.82 -3.9 2.26 + -1.82 -3.7 2.26 + faces 250 + 0 2 3 2 0 2 16 2 + 3 1 0 2 17 18 0 2 + 2 4 5 2 2 4 19 2 + 5 3 2 2 20 21 2 2 + 4 6 7 2 267 269 279 2 + 7 5 4 2 280 281 267 2 + 6 8 9 2 269 271 282 2 + 9 7 6 2 283 284 269 2 + 10 11 13 4 8 9 11 1 + 13 12 10 4 11 10 8 1 + 12 13 15 4 10 11 13 1 + 15 14 12 4 13 12 10 1 + 14 15 17 4 273 274 276 1 + 17 16 14 4 276 275 273 1 + 16 17 19 4 275 276 278 1 + 19 18 16 4 278 277 275 1 + 0 1 11 8 0 22 9 5 + 11 10 0 8 9 8 0 5 + 1 3 13 16 1 3 11 4 + 13 11 1 16 11 9 1 4 + 3 5 15 16 3 5 13 4 + 15 13 3 16 13 11 3 4 + 5 7 17 16 268 270 276 4 + 17 15 5 16 276 274 268 4 + 7 9 19 16 270 272 278 4 + 19 17 7 16 278 276 270 4 + 9 8 18 32 23 6 14 6 + 18 19 9 32 14 15 7 6 + 8 6 16 64 271 269 275 3 + 16 18 8 64 275 277 271 3 + 6 4 14 64 269 267 273 3 + 14 16 6 64 273 275 269 3 + 4 2 12 64 4 2 10 3 + 12 14 4 64 10 12 4 3 + 2 0 10 64 2 0 8 3 + 10 12 2 64 8 10 2 3 + 20 22 23 2 32 33 34 2 + 23 21 20 2 35 36 37 2 + 24 25 27 4 38 39 40 1 + 27 26 24 4 41 42 43 1 + 20 21 25 8 24 25 29 5 + 25 24 20 8 29 28 24 5 + 21 23 27 16 25 27 31 4 + 27 25 21 16 31 29 25 4 + 23 22 26 32 44 26 30 6 + 26 27 23 32 30 45 46 6 + 22 20 24 64 26 24 28 3 + 24 26 22 64 28 30 26 3 + 28 30 31 2 55 56 57 2 + 31 29 28 2 58 59 60 2 + 32 33 35 4 61 62 63 1 + 35 34 32 4 64 65 66 1 + 28 29 33 8 47 48 52 5 + 33 32 28 8 52 51 47 5 + 29 31 35 16 48 50 54 4 + 35 33 29 16 54 52 48 4 + 31 30 34 32 67 49 53 6 + 34 35 31 32 53 68 69 6 + 30 28 32 64 49 47 51 3 + 32 34 30 64 51 53 49 3 + 36 38 39 2 250 252 261 2 + 39 37 36 2 262 263 250 2 + 38 40 41 2 252 254 264 2 + 41 39 38 2 265 266 252 2 + 40 42 43 2 72 74 87 2 + 43 41 40 2 88 89 72 2 + 42 44 45 2 74 76 90 2 + 45 43 42 2 91 92 74 2 + 46 47 49 4 255 256 258 1 + 49 48 46 4 258 257 255 1 + 48 49 51 4 257 258 260 1 + 51 50 48 4 260 259 257 1 + 50 51 53 4 81 82 84 1 + 53 52 50 4 84 83 81 1 + 52 53 55 4 83 84 86 1 + 55 54 52 4 86 85 83 1 + 36 37 47 8 70 93 79 5 + 47 46 36 8 79 78 70 5 + 37 39 49 16 251 253 258 4 + 49 47 37 16 258 256 251 4 + 39 41 51 16 71 73 82 4 + 51 49 39 16 82 80 71 4 + 41 43 53 16 73 75 84 4 + 53 51 41 16 84 82 73 4 + 43 45 55 16 75 77 86 4 + 55 53 43 16 86 84 75 4 + 45 44 54 32 94 76 85 6 + 54 55 45 32 85 86 77 6 + 44 42 52 64 76 74 83 3 + 52 54 44 64 83 85 76 3 + 42 40 50 64 74 72 81 3 + 50 52 42 64 81 83 74 3 + 40 38 48 64 254 252 257 3 + 48 50 40 64 257 259 254 3 + 38 36 46 64 252 250 255 3 + 46 48 38 64 255 257 252 3 + 56 58 59 2 133 135 145 2 + 59 57 56 2 146 147 133 2 + 58 60 61 2 135 137 148 2 + 61 59 58 2 149 150 135 2 + 60 62 63 2 96 98 106 2 + 63 61 60 2 107 108 96 2 + 64 65 67 4 139 140 142 1 + 67 66 64 4 142 141 139 1 + 66 67 69 4 141 142 144 1 + 69 68 66 4 144 143 141 1 + 68 69 71 4 102 103 105 1 + 71 70 68 4 105 104 102 1 + 56 57 65 8 95 109 101 5 + 65 64 56 8 101 100 95 5 + 57 59 67 16 134 136 142 4 + 67 65 57 16 142 140 134 4 + 59 61 69 16 136 138 144 4 + 69 67 59 16 144 142 136 4 + 61 63 71 16 97 99 105 4 + 71 69 61 16 105 103 97 4 + 62 60 68 64 98 96 102 3 + 68 70 62 64 102 104 98 3 + 60 58 66 64 137 135 141 3 + 66 68 60 64 141 143 137 3 + 58 56 64 64 135 133 139 3 + 64 66 58 64 139 141 135 3 + 72 74 75 2 110 112 126 2 + 75 73 72 2 127 128 110 2 + 74 76 77 2 112 114 129 2 + 77 75 74 2 130 131 112 2 + 76 78 79 2 285 287 297 2 + 79 77 76 2 298 299 285 2 + 78 80 81 2 287 289 300 2 + 81 79 78 2 301 302 287 2 + 82 83 85 4 118 119 121 1 + 85 84 82 4 121 120 118 1 + 84 85 87 4 120 121 123 1 + 87 86 84 4 123 122 120 1 + 86 87 89 4 291 292 294 1 + 89 88 86 4 294 293 291 1 + 88 89 91 4 293 294 296 1 + 91 90 88 4 296 295 293 1 + 73 75 85 16 111 113 121 4 + 85 83 73 16 121 119 111 4 + 75 77 87 16 113 115 123 4 + 87 85 75 16 123 121 113 4 + 77 79 89 16 286 288 294 4 + 89 87 77 16 294 292 286 4 + 79 81 91 16 288 290 296 4 + 91 89 79 16 296 294 288 4 + 81 80 90 32 132 116 124 6 + 90 91 81 32 124 125 117 6 + 80 78 88 64 289 287 293 3 + 88 90 80 64 293 295 289 3 + 78 76 86 64 287 285 291 3 + 86 88 78 64 291 293 287 3 + 76 74 84 64 114 112 120 3 + 84 86 76 64 120 122 114 3 + 74 72 82 64 112 110 118 3 + 82 84 74 64 118 120 112 3 + 92 94 95 2 311 312 313 2 + 95 93 92 2 313 314 311 2 + 94 96 97 2 312 315 316 2 + 97 95 94 2 316 313 312 2 + 96 98 99 2 315 317 318 2 + 99 97 96 2 318 316 315 2 + 100 101 103 4 319 320 321 1 + 103 102 100 4 321 322 319 1 + 102 103 105 4 322 321 323 1 + 105 104 102 4 323 324 322 1 + 104 105 107 4 324 323 325 1 + 107 106 104 4 325 326 324 1 + 92 93 101 8 327 328 329 5 + 101 100 92 8 330 331 332 5 + 93 95 103 16 314 313 333 4 + 103 101 93 16 334 335 314 4 + 95 97 105 16 313 316 336 4 + 105 103 95 16 337 338 313 4 + 97 99 107 16 316 318 339 4 + 107 105 97 16 340 341 316 4 + 98 96 104 64 317 315 324 3 + 104 106 98 64 324 326 317 3 + 96 94 102 64 315 312 322 3 + 102 104 96 64 322 324 315 3 + 94 92 100 64 312 311 319 3 + 100 102 94 64 319 322 312 3 + 108 109 113 8 151 152 155 5 + 113 112 108 8 155 154 151 5 + 109 111 115 16 304 306 310 4 + 115 113 109 16 310 308 304 4 + 111 110 114 32 157 153 156 6 + 114 115 111 32 156 158 159 6 + 110 108 112 64 305 303 307 3 + 112 114 110 64 307 309 305 3 + 116 117 121 8 160 161 165 5 + 121 120 116 8 165 164 160 5 + 117 119 123 16 161 163 167 4 + 123 121 117 16 167 165 161 4 + 119 118 122 32 168 162 166 6 + 122 123 119 32 166 169 170 6 + 118 116 120 64 162 160 164 3 + 120 122 118 64 164 166 162 3 + 124 125 129 8 171 172 176 5 + 129 128 124 8 176 175 171 5 + 125 127 131 16 172 174 178 4 + 131 129 125 16 178 176 172 4 + 127 126 130 32 179 173 177 6 + 130 131 127 32 177 180 181 6 + 126 124 128 64 173 171 175 3 + 128 130 126 64 175 177 173 3 + 132 133 137 8 182 183 187 5 + 137 136 132 8 187 186 182 5 + 133 135 139 16 183 185 189 4 + 139 137 133 16 189 187 183 4 + 135 134 138 32 190 184 188 6 + 138 139 135 32 188 191 192 6 + 134 132 136 64 184 182 186 3 + 136 138 134 64 186 188 184 3 + 140 141 145 8 193 194 198 5 + 145 144 140 8 198 197 193 5 + 141 143 147 16 194 196 200 4 + 147 145 141 16 200 198 194 4 + 143 142 146 32 201 195 199 6 + 146 147 143 32 199 202 203 6 + 142 140 144 64 195 193 197 3 + 144 146 142 64 197 199 195 3 + 148 150 151 2 212 213 214 2 + 151 149 148 2 215 216 217 2 + 152 153 155 4 218 219 220 1 + 155 154 152 4 221 222 223 1 + 148 149 153 8 204 205 209 5 + 153 152 148 8 209 208 204 5 + 149 151 155 16 205 207 211 4 + 155 153 149 16 211 209 205 4 + 151 150 154 32 224 206 210 6 + 154 155 151 32 210 225 226 6 + 150 148 152 64 206 204 208 3 + 152 154 150 64 208 210 206 3 + 156 158 159 2 235 236 237 2 + 159 157 156 2 238 239 240 2 + 160 161 163 4 241 242 243 1 + 163 162 160 4 244 245 246 1 + 156 157 161 8 227 228 232 5 + 161 160 156 8 232 231 227 5 + 157 159 163 16 228 230 234 4 + 163 161 157 16 234 232 228 4 + 159 158 162 32 247 229 233 6 + 162 163 159 32 233 248 249 6 + 158 156 160 64 229 227 231 3 + 160 162 158 64 231 233 229 3 + 107 98 106 0 342 343 344 1 + 99 98 107 0 345 346 347 1 + 63 70 71 0 106 104 105 1 + 63 62 70 0 106 98 104 1 + tverts 402 + 0.174465 0.00149864 0 + 0.104128 0.00149864 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.00149864 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.00149864 0 + 0.104128 2.9985 0 + 0.251779 -1.21921 0 + 0.326839 -1.21921 0 + 0.0725431 -1.21921 0 + 0.506074 -1.21921 0 + 0.251779 -0.220206 0 + 0.326839 -0.220206 0 + 0.0725431 -0.220206 0 + 0.506074 -0.220206 0 + 0.323181 -0.753007 0 + 0.255437 -0.753007 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.323181 -0.686406 0 + 0.323181 -0.753007 0 + 0.323181 -0.753007 0 + 0.323181 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.753007 0 + 0.323181 -0.753007 0 + -0.00251664 -1.21921 0 + -0.00251664 -0.220206 0 + -0.00251664 -1.21921 0 + 0.251779 -1.70471 0 + 0.326839 -1.70471 0 + 0.0725431 -1.70471 0 + 0.506074 -1.70471 0 + 0.251779 -0.705713 0 + 0.326839 -0.705713 0 + 0.0725431 -0.705713 0 + 0.506074 -0.705713 0 + 0.323181 -1.23851 0 + 0.255437 -1.23851 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.323181 -1.17191 0 + 0.323181 -1.23851 0 + 0.323181 -1.23851 0 + 0.323181 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.23851 0 + 0.323181 -1.23851 0 + -0.00251664 -1.70471 0 + -0.00251664 -0.705713 0 + -0.00251664 -1.70471 0 + 0.344242 -1.04225 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.273035 1.95475 0 + 0.273035 1.95475 0 + 0.273035 1.2055 0 + 0.273035 -1.04225 0 + 0.273035 1.95475 0 + 0.174465 0.00149864 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 0.00149864 0 + 0.344242 -1.04225 0 + 0.273035 -1.04225 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 1.95475 0 + 0.174465 0.295412 0 + 0.104128 0.295412 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.244801 0.295412 0 + 0.175144 0.295412 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.295412 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.0337728 0.940718 0 + 0.0337728 -0.0582831 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.251779 0.000499517 0 + 0.326839 0.000499517 0 + 0.0725431 0.000499517 0 + 0.506074 0.000499517 0 + 0.251779 0.999501 0 + 0.326839 0.999501 0 + 0.0725431 0.999501 0 + 0.506074 0.999501 0 + 0.323181 0.4667 0 + 0.255437 0.4667 0 + 0.255437 0.5333 0 + 0.255437 0.5333 0 + 0.323181 0.5333 0 + 0.323181 0.4667 0 + 0.323181 0.4667 0 + 0.323181 0.5333 0 + 0.255437 0.5333 0 + 0.255437 0.5333 0 + 0.255437 0.4667 0 + 0.323181 0.4667 0 + -0.00251664 0.000499517 0 + -0.00251664 0.999501 0 + -0.00251664 0.000499517 0 + 0.251779 -0.485008 0 + 0.326839 -0.485008 0 + 0.0725431 -0.485008 0 + 0.506074 -0.485008 0 + 0.251779 0.513993 0 + 0.326839 0.513993 0 + 0.0725431 0.513993 0 + 0.506074 0.513993 0 + 0.323181 -0.0188073 0 + 0.255437 -0.0188073 0 + 0.255437 0.0477928 0 + 0.255437 0.0477928 0 + 0.323181 0.0477928 0 + 0.323181 -0.0188073 0 + 0.323181 -0.0188073 0 + 0.323181 0.0477928 0 + 0.255437 0.0477928 0 + 0.255437 0.0477928 0 + 0.255437 -0.0188073 0 + 0.323181 -0.0188073 0 + -0.00251664 -0.485008 0 + -0.00251664 0.513993 0 + -0.00251664 -0.485008 0 + 0.35804 -0.614525 0 + 0.286833 -0.614525 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.429247 -0.614525 0 + 0.358728 -0.614525 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.286833 -0.614525 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.159308 4.10494 0 + 0.0889714 4.10494 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.229645 4.10494 0 + 0.159987 4.10494 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.0889714 4.10494 0 + 0.0889714 4.10494 0 + 0.104128 2.24925 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.34016 2.49931 0 + 0.268953 2.49931 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.411367 2.49931 0 + 0.340848 2.49931 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.268953 2.49931 0 + 0.268953 2.49931 0 + 0.273035 1.2055 0 + 0.243649 -0.0582831 0 + 0.310278 -0.0582831 0 + 0.177022 -0.0582831 0 + 0.376905 -0.0582831 0 + 0.237631 0.940718 0 + 0.316296 0.940718 0 + 0.177022 0.940718 0 + 0.376905 0.940718 0 + 0.257387 -0.568116 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -0.568116 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 1.56488 0 + 0.23974 1.56488 0 + 0.316414 -0.568116 0 + 0.341479 -0.568116 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 1.56488 0 + 0.316414 1.56488 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -0.568116 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.172541 1.56488 0 + 0.172541 1.56488 0 + 0.170192 0.852609 0 + 0.620832 0.473548 0 + 0.727885 0.211864 0 + 0.727885 0.449758 0 + 0.620832 0.188075 0 + 0.727885 0.211864 0 + 0.620832 0.473548 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 -0.0109385 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -0.0109385 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.37945 -0.0109385 0 + 0.404514 -0.0109386 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -0.0109386 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 +endnode +#Tile trimesh node +node trimesh doorwall01 + parent tin01_a16_02 + position -0.03 5.26 4.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 3.0 -88.5 92.0 + bitmap tin01_wallcord + verts 26 + -1.77 -0.62 2.92 + -1.19 -0.62 -0.32 + -1.77 -0.26 2.92 + 1.25 -0.62 -1.08 + 1.83 -0.62 -1.08 + 1.25 -0.62 -0.32 + 1.83 -0.62 2.92 + 1.83 -0.26 2.92 + -1.77 -0.62 -1.08 + -1.19 -0.62 -1.08 + 1.83 -1.51 -1.08 + -1.77 -1.51 -1.08 + 1.83 -1.51 2.92 + -1.77 -1.51 2.92 + -3.72 -1.51 -1.08 + -3.72 -1.51 1.09 + 3.78 -1.51 -1.08 + 3.78 -1.51 1.09 + -2.47 -1.51 2.92 + 2.53 -1.51 2.92 + -2.47 -0.26 2.92 + 2.53 -0.26 2.92 + 3.78 -0.26 1.09 + 3.78 -0.26 -1.08 + -3.72 -0.26 -1.08 + -3.72 -0.26 1.09 + faces 32 + 3 4 5 1 1 20 21 5 + 2 0 7 2 78 79 80 5 + 6 7 0 2 81 82 83 5 + 0 5 6 1 22 23 24 5 + 0 1 5 1 25 26 27 5 + 1 8 9 1 28 29 5 5 + 5 4 6 1 3 30 31 1 + 8 1 0 1 32 0 33 1 + 4 10 12 4 34 35 36 1 + 4 12 6 4 2 37 38 1 + 10 16 17 1 39 40 41 1 + 10 19 12 1 42 43 44 1 + 14 11 13 1 45 46 47 1 + 14 18 15 1 48 49 50 1 + 11 8 0 4 51 4 52 1 + 11 0 13 4 7 53 54 1 + 14 13 18 1 55 56 57 1 + 10 17 19 1 6 58 59 1 + 6 21 7 2 84 85 75 1 + 6 12 19 2 86 76 87 1 + 6 19 21 2 74 88 89 1 + 18 13 0 2 90 77 91 1 + 18 0 2 2 92 72 93 1 + 18 2 20 2 94 73 95 1 + 25 15 18 4 60 61 62 1 + 25 18 20 4 63 12 14 1 + 24 14 15 4 64 8 65 1 + 24 15 25 4 18 9 19 1 + 17 22 21 4 66 67 68 1 + 17 21 19 4 69 15 13 1 + 16 23 22 4 70 17 71 1 + 16 22 17 4 10 16 11 1 + tverts 96 + 0.484758 0.295138 0 + 1.01619 0.09 0 + 0.723249 0.09 0 + 1.01619 0.295138 0 + 0.7777 0.09 0 + 0.484758 0.09 0 + 1.14251 0.09 0 + 0.614349 0.09 0 + 0.886599 0.09 0 + 0.886599 0.602236 0 + 0.614349 0.09 0 + 0.614349 0.602236 0 + 0.886599 1.0 0 + 0.614349 1.0 0 + 0.614349 1.0 0 + 0.886599 1.0 0 + 0.886599 0.602236 0 + 0.886599 0.09 0 + 0.614349 0.09 0 + 0.614349 0.602236 0 + 1.14251 0.09 0 + 1.01619 0.295138 0 + 0.358434 1.0 0 + 1.01619 0.295138 0 + 1.14251 1.0 0 + 0.358434 1.0 0 + 0.484758 0.295138 0 + 1.01619 0.295138 0 + 0.484758 0.295138 0 + 0.358434 0.09 0 + 1.14251 0.09 0 + 1.14251 1.0 0 + 0.358434 0.09 0 + 0.358434 1.0 0 + 0.723249 0.09 0 + 0.8866 0.09 0 + 0.8866 1.0 0 + 0.8866 1.0 0 + 0.723249 1.0 0 + 1.14251 0.09 0 + 1.56723 0.09 0 + 1.56723 0.602236 0 + 1.14251 0.09 0 + 1.29497 1.0 0 + 1.14251 1.0 0 + -0.0662764 0.09 0 + 0.358434 0.09 0 + 0.358434 1.0 0 + -0.0662764 0.09 0 + 0.205974 1.0 0 + -0.0662764 0.602236 0 + 0.614349 0.09 0 + 0.7777 1.0 0 + 0.7777 1.0 0 + 0.614349 1.0 0 + -0.0662764 0.09 0 + 0.358434 1.0 0 + 0.205974 1.0 0 + 1.56723 0.602236 0 + 1.29497 1.0 0 + 0.614349 0.602236 0 + 0.886599 0.602236 0 + 0.886599 1.0 0 + 0.614349 0.602236 0 + 0.614349 0.09 0 + 0.886599 0.602236 0 + 0.614349 0.602236 0 + 0.886599 0.602236 0 + 0.886599 1.0 0 + 0.614349 0.602236 0 + 0.614349 0.09 0 + 0.886599 0.602236 0 + 0.0990639 0.982193 0 + 0.099064 0.873293 0 + 0.883145 0.982193 0 + 0.883145 0.873293 0 + 0.883145 1.07646 0 + 0.0990639 1.07646 0 + 0.099064 0.873293 0 + 0.0990639 0.982193 0 + 0.883145 0.873293 0 + 0.883145 0.982193 0 + 0.883145 0.873293 0 + 0.0990639 0.982193 0 + 0.883145 0.982193 0 + 1.0356 0.873293 0 + 0.883145 0.982193 0 + 1.0356 1.07646 0 + 1.0356 1.07646 0 + 1.0356 0.873293 0 + -0.0533962 1.07646 0 + 0.0990639 0.982193 0 + -0.0533962 1.07646 0 + 0.099064 0.873293 0 + -0.0533962 1.07646 0 + -0.0533962 0.873293 0 +endnode +#Tile trimesh node +node trimesh roof01 + parent tin01_a16_02 + position 0.0 4.5 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -468.0 183.0 + bitmap tin01_floor + verts 13 + 2.5 -0.75 1.83 + 2.5 -4.5 1.83 + 2.5 -7.0 1.83 + -2.5 -4.5 1.83 + -2.5 -0.75 1.83 + -2.5 -2.07 1.83 + -2.5 -7.0 1.83 + 1.8 -0.75 1.83 + -1.8 -0.75 1.83 + -1.8 0.14 1.83 + 1.8 0.14 1.83 + -2.5 -9.5 1.83 + 2.5 -9.5 1.83 + faces 11 + 0 1 3 0 0 1 3 1 + 7 0 5 0 7 0 5 1 + 5 0 3 0 5 0 3 1 + 6 3 1 0 6 3 1 1 + 2 6 1 0 2 6 1 1 + 8 7 5 0 8 7 5 1 + 4 8 5 0 4 8 5 1 + 9 7 8 0 9 7 8 1 + 9 10 7 0 9 10 7 1 + 6 2 12 0 6 2 12 1 + 6 12 11 0 6 12 11 1 + tverts 13 + 1.51815 1.81454 0 + 1.51815 1.03731 0 + 1.51815 0.519153 0 + 0.481846 1.03731 0 + 0.481846 1.81454 0 + 0.481846 1.54095 0 + 0.481846 0.519153 0 + 1.37307 1.81454 0 + 0.626929 1.81454 0 + 0.626929 1.999 0 + 1.37307 1.999 0 + 0.481846 0.000999212 0 + 1.51815 0.000998974 0 +endnode +#Tile trimesh node +node trimesh roofrim01 + parent tin01_a16_02 + position 0.0 4.5 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -512.5 91.5 + bitmap tin01_floor + verts 22 + 3.75 -0.75 0.0 + 2.5 -0.75 1.83 + 3.75 -2.05 0.0 + 3.75 -4.5 0.0 + 3.75 -6.93 0.0 + 2.5 -4.5 1.83 + 2.5 -7.0 1.83 + -2.5 -7.0 1.83 + -3.75 -6.95 0.0 + -3.75 -4.5 0.0 + -3.75 -2.07 0.0 + -3.75 -0.75 0.0 + -2.5 -0.75 1.83 + -2.5 -4.5 1.83 + -2.5 -2.07 1.83 + 3.75 -9.5 0.0 + 2.5 -9.5 1.83 + 3.75 -9.28 0.0 + 2.5 -9.28 1.83 + 2.5 -6.93 1.83 + -3.75 -9.5 0.0 + -2.5 -9.5 1.83 + faces 17 + 2 3 1 1 39 40 41 1 + 3 4 5 1 10 11 12 1 + 5 4 6 1 13 0 2 1 + 1 3 5 1 42 35 37 1 + 0 2 1 1 38 34 36 1 + 8 9 7 1 14 15 16 1 + 10 11 14 1 26 27 28 1 + 14 11 12 1 29 23 22 1 + 9 10 13 1 30 31 32 1 + 13 10 14 1 33 24 25 1 + 7 9 13 1 17 4 6 1 + 16 18 15 1 46 54 55 5 + 17 15 18 1 59 45 60 1 + 4 17 19 1 61 62 63 1 + 19 17 18 1 64 50 51 1 + 20 8 21 1 70 74 71 1 + 8 7 21 0 74 16 71 1 + tverts 97 + 0.5 1.73679 0 + 0.5 2.04231 0 + 2.88864e-005 1.73679 0 + 0.5 0.317961 0 + 0.5 0.885031 0 + 2.88864e-005 0.306388 0 + 2.88566e-005 0.88503 0 + 0.5 0.0 0 + 0.5 1.73679 0 + 2.88864e-005 1.73679 0 + 0.5 1.17435 0 + 0.5 1.73679 0 + 2.88566e-005 1.17435 0 + 2.88566e-005 1.17435 0 + 0.5 0.317961 0 + 0.5 0.885031 0 + 2.88864e-005 0.306388 0 + 2.88864e-005 0.306388 0 + 0.5 1.95524 0 + -0.00133306 1.48571 0 + 0.5 -0.49 0 + -0.00133294 0.00119357 0 + 2.88864e-005 1.78973 0 + 0.5 1.78973 0 + 0.5 1.44747 0 + 2.88864e-005 1.44747 0 + 0.5 1.44747 0 + 0.5 1.78973 0 + 2.88864e-005 1.44747 0 + 2.88864e-005 1.44747 0 + 0.5 0.885031 0 + 0.5 1.44747 0 + 2.88566e-005 0.88503 0 + 2.88566e-005 0.88503 0 + 0.5 0.607282 0 + 0.5 1.17435 0 + 2.88566e-005 0.265338 0 + 2.88566e-005 1.17435 0 + 0.5 0.265338 0 + 0.5 0.607282 0 + 0.5 1.17435 0 + 2.88566e-005 0.265338 0 + 2.88566e-005 0.265338 0 + 0.5 0.00119366 0 + -0.00133294 0.00119357 0 + 0.5 1.9992 0 + -0.00133306 1.9992 0 + 0.5 0.510684 0 + 0.5 1.00019 0 + 0.5 1.48571 0 + 0.5 1.95524 0 + -0.00133306 1.95524 0 + -0.00133294 1.00019 0 + -0.00133306 1.48571 0 + -0.00133306 1.95524 0 + 0.5 1.9992 0 + 0.5 0.510684 0 + 0.5 1.00019 0 + -0.00133294 0.00119357 0 + 0.5 1.95524 0 + -0.00133306 1.95524 0 + 0.5 1.48571 0 + 0.5 1.95524 0 + -0.00133306 1.48571 0 + -0.00133306 1.48571 0 + 0.5 1.00019 0 + 0.5 1.48571 0 + -0.00133294 1.00019 0 + -0.00133294 1.00019 0 + -0.00133294 0.00119357 0 + 0.5 0.00119366 0 + -0.00133294 0.00119357 0 + 0.5 1.9992 0 + -0.00133306 1.9992 0 + 0.5 0.510684 0 + 0.5 1.00019 0 + 0.5 1.48571 0 + 0.5 1.95524 0 + -0.00133306 1.95524 0 + -0.00133294 1.00019 0 + -0.00133306 1.48571 0 + -0.00133306 1.95524 0 + 0.5 1.9992 0 + 0.5 0.510684 0 + 0.5 1.00019 0 + -0.00133294 0.00119357 0 + 0.5 1.95524 0 + -0.00133306 1.95524 0 + 0.5 1.48571 0 + 0.5 1.95524 0 + -0.00133306 1.48571 0 + -0.00133306 1.48571 0 + 0.5 1.00019 0 + 0.5 1.48571 0 + -0.00133294 1.00019 0 + -0.00133294 1.00019 0 + -0.00133294 0.00119357 0 +endnode +#Tile trimesh node +node trimesh topwall01 + parent tin01_a16_02 + position 0.0 4.5 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -512.5 108.5 + bitmap tin01_wallbrick + verts 23 + 3.75 -0.75 2.17 + 3.75 -2.07 0.0 + 3.75 -4.5 0.0 + 3.75 -6.93 0.0 + 3.75 -2.05 2.17 + 3.75 -4.5 2.17 + 3.75 -6.93 2.17 + 3.75 -0.75 0.0 + -3.75 -6.93 0.0 + -3.75 -4.5 0.0 + -3.75 -2.07 0.0 + -3.75 -0.75 0.0 + -3.75 -6.95 2.17 + -3.75 -0.75 2.17 + -3.75 -4.5 2.17 + -3.75 -2.07 2.17 + 3.75 -9.5 0.0 + 3.75 -9.5 2.17 + 3.75 -9.28 0.0 + 3.75 -9.28 2.17 + -3.75 -9.5 0.0 + -3.75 -9.5 2.17 + -3.75 -9.28 0.0 + faces 19 + 7 1 0 2 35 29 30 5 + 0 1 4 2 27 31 32 1 + 1 2 4 2 28 33 34 1 + 2 3 5 2 14 15 16 1 + 5 3 6 2 17 6 9 1 + 4 2 5 2 37 36 38 1 + 8 9 12 2 19 24 25 1 + 10 11 15 2 43 44 45 1 + 15 11 13 2 46 40 41 1 + 9 10 14 2 3 4 5 1 + 14 10 15 2 47 39 42 1 + 12 9 14 2 1 0 2 1 + 17 19 16 2 61 92 93 5 + 18 16 19 2 98 60 99 1 + 3 18 6 2 100 101 102 1 + 6 18 19 2 103 65 67 1 + 22 8 21 2 169 151 152 5 + 21 8 12 2 112 155 156 1 + 20 22 21 2 110 169 152 5 + tverts 170 + 1.28593 0.09 0 + 0.446768 0.99 0 + 1.28593 0.99 0 + 1.28593 0.09 0 + 2.11824 0.09 0 + 1.28593 0.99 0 + 2.11824 0.09 0 + 2.70027 0.09 0 + 2.70027 0.99 0 + 2.11824 0.99 0 + 2.11824 0.09 0 + 2.70027 0.09 0 + 2.11824 0.99 0 + 2.11824 0.99 0 + 1.28593 0.09 0 + 2.11824 0.09 0 + 1.28593 0.99 0 + 1.28593 0.99 0 + 0.0860402 0.99 0 + 0.446768 0.09 0 + 0.446768 0.09 0 + 0.0860402 0.99 0 + 0.446768 0.09 0 + 0.446768 0.99 0 + 1.28593 0.09 0 + 0.446768 0.99 0 + 0.0845411 0.09 0 + 0.129519 0.99 0 + 0.446768 0.09 0 + 0.446768 0.09 0 + 0.129519 0.99 0 + 0.446768 0.09 0 + 0.446768 0.99 0 + 1.28593 0.09 0 + 0.446768 0.99 0 + 0.128019 0.09 0 + 1.28593 0.09 0 + 0.446768 0.99 0 + 1.28593 0.99 0 + 2.11824 0.09 0 + 2.55751 0.09 0 + 2.55751 0.99 0 + 2.11824 0.99 0 + 2.11824 0.09 0 + 2.55751 0.09 0 + 2.11824 0.99 0 + 2.11824 0.99 0 + 1.28593 0.99 0 + 0.00149882 0.09 0 + 0.00149918 0.09 0 + 0.00149882 0.99 0 + 0.00149918 0.99 0 + 2.54638 0.09 0 + 1.71407 0.09 0 + 0.874911 0.09 0 + 0.076852 0.09 0 + 2.54638 0.99 0 + 0.076852 0.99 0 + 1.71407 0.99 0 + 0.874911 0.99 0 + 2.9985 0.09 0 + 2.9985 0.99 0 + 0.446768 0.09 0 + 1.28593 0.09 0 + 2.11824 0.09 0 + 2.92315 0.09 0 + 0.446768 0.99 0 + 2.92315 0.99 0 + 1.28593 0.99 0 + 2.11824 0.99 0 + 2.54638 0.09 0 + 2.9985 0.09 0 + 2.9985 0.99 0 + 0.076852 0.99 0 + 0.00149882 0.09 0 + 2.54638 0.09 0 + 2.9985 0.99 0 + 2.54638 0.99 0 + 1.71407 0.09 0 + 2.54638 0.99 0 + 0.076852 0.09 0 + 0.076852 0.99 0 + 0.076852 0.09 0 + 0.874911 0.09 0 + 0.874911 0.99 0 + 0.874911 0.99 0 + 0.874911 0.09 0 + 1.71407 0.09 0 + 1.71407 0.99 0 + 1.71407 0.99 0 + 0.446768 0.09 0 + 0.00149918 0.99 0 + 2.92315 0.99 0 + 2.9985 0.09 0 + 0.446768 0.09 0 + 0.446768 0.99 0 + 1.28593 0.09 0 + 0.446768 0.99 0 + 2.92315 0.09 0 + 2.92315 0.99 0 + 2.11824 0.09 0 + 2.92315 0.09 0 + 2.11824 0.99 0 + 2.11824 0.99 0 + 1.28593 0.09 0 + 2.11824 0.09 0 + 1.28593 0.99 0 + 1.28593 0.99 0 + 0.0411781 0.09 0 + 0.00149882 0.09 0 + 0.00149918 0.09 0 + 0.00149882 0.99 0 + 0.00149918 0.99 0 + 2.54638 0.09 0 + 1.71407 0.09 0 + 0.874911 0.09 0 + 0.076852 0.09 0 + 2.54638 0.99 0 + 0.076852 0.99 0 + 1.71407 0.99 0 + 0.874911 0.99 0 + 2.9985 0.09 0 + 2.9985 0.99 0 + 0.446768 0.09 0 + 1.28593 0.09 0 + 2.11824 0.09 0 + 2.92315 0.09 0 + 0.446768 0.99 0 + 2.92315 0.99 0 + 1.28593 0.99 0 + 2.11824 0.99 0 + 2.54638 0.09 0 + 2.9985 0.09 0 + 2.9985 0.99 0 + 0.076852 0.99 0 + 0.00149882 0.09 0 + 2.54638 0.09 0 + 2.9985 0.99 0 + 2.54638 0.99 0 + 1.71407 0.09 0 + 2.54638 0.99 0 + 0.076852 0.09 0 + 0.076852 0.99 0 + 0.076852 0.09 0 + 0.874911 0.09 0 + 0.874911 0.99 0 + 0.874911 0.99 0 + 0.874911 0.09 0 + 1.71407 0.09 0 + 1.71407 0.99 0 + 1.71407 0.99 0 + 0.446768 0.09 0 + 0.00149918 0.99 0 + 2.92315 0.99 0 + 2.9985 0.09 0 + 0.446768 0.09 0 + 0.446768 0.99 0 + 1.28593 0.09 0 + 0.446768 0.99 0 + 2.92315 0.09 0 + 2.92315 0.99 0 + 2.11824 0.09 0 + 2.92315 0.09 0 + 2.11824 0.99 0 + 2.11824 0.99 0 + 1.28593 0.09 0 + 2.11824 0.09 0 + 1.28593 0.99 0 + 1.28593 0.99 0 + 0.0411781 0.09 0 +endnode +#Tile trimesh node +node trimesh flagpole02 + parent tin01_a16_02 + position -2.15 3.48 3.93 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.603922 0.584314 0.592157 + diffuse 0.603922 0.584314 0.592157 + specular 0.0 0.0 0.0 + shininess 1 + center 1.0 -55.0 29.5 + bitmap tin01_shpFLR1 + verts 12 + 0.04 -0.12 0.17 + 0.04 0.27 0.47 + -0.02 0.27 0.47 + -0.02 -0.12 0.17 + 0.04 0.27 0.12 + 0.01 0.27 0.12 + -0.02 0.27 0.12 + -0.02 -1.37 0.12 + 0.01 -1.37 0.12 + 0.04 -1.37 0.17 + 0.04 -1.37 0.12 + -0.02 -1.37 0.17 + faces 19 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 1 0 4 2 4 5 6 5 + 4 5 2 4 7 8 9 4 + 2 5 6 4 10 8 11 4 + 2 1 4 4 9 12 7 4 + 3 2 6 2 5 4 6 6 + 7 8 9 1 13 14 15 3 + 9 8 10 1 15 14 16 3 + 9 11 7 1 15 17 13 3 + 0 3 11 4 18 19 17 3 + 11 9 0 4 17 15 18 3 + 4 0 9 2 7 18 15 3 + 9 10 4 2 15 16 7 3 + 3 6 7 2 19 11 13 3 + 7 11 3 2 13 17 19 3 + 6 4 10 0 11 6 16 1 + 8 6 10 0 14 11 16 1 + 6 8 7 0 11 14 13 1 + tverts 20 + 0.463885 0.731296 0 + 0.463884 0.268704 0 + 0.536115 0.268704 0 + 0.536116 0.731296 0 + 0.602609 0.580382 0 + 0.483031 0.426185 0 + 0.461905 0.580382 0 + 0.346568 -0.126979 0 + 0.287743 -0.126979 0 + 0.757581 -0.12698 0 + -0.242419 -0.12698 0 + 0.216947 -0.126979 0 + 0.725212 -0.12698 0 + 0.479305 0.956563 0 + 0.507398 0.956563 0 + 0.575082 0.956563 0 + 0.530742 0.956563 0 + 0.438906 0.956563 0 + 0.575082 0.194509 0 + 0.438907 0.194509 0 +endnode +#Tile trimesh node +node trimesh blacky01 + parent tin01_a16_02 + position -2.21 -5.0 4.31 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 4 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 221.0 0.0 -22.5 + bitmap tin01_black + verts 24 + 0.81 0.0 0.53 + -0.01 0.0 0.53 + -0.22 0.0 0.18 + -0.43 0.0 0.42 + -0.97 0.0 -0.12 + -0.75 0.0 -0.36 + -1.19 0.0 -0.61 + -1.19 0.0 -1.31 + -1.19 0.0 0.53 + -1.54 0.0 0.86 + -1.54 0.0 -1.31 + 2.21 0.0 0.86 + 2.21 0.0 0.53 + 4.43 0.0 0.53 + 3.61 0.0 0.53 + 4.64 0.0 0.18 + 4.85 0.0 0.42 + 5.39 0.0 -0.12 + 5.17 0.0 -0.36 + 5.61 0.0 -0.61 + 5.61 0.0 -1.31 + 5.96 0.0 0.86 + 5.61 0.0 0.53 + 5.96 0.0 -1.31 + faces 26 + 0 1 2 1 0 0 0 1 + 2 1 3 1 0 0 0 1 + 3 4 5 1 0 0 0 1 + 3 5 2 1 0 0 0 1 + 4 6 7 1 0 0 0 1 + 4 7 5 1 0 0 0 1 + 8 9 10 1 0 0 0 1 + 6 10 7 1 0 0 0 1 + 8 10 6 1 0 0 0 1 + 8 1 9 1 0 0 0 1 + 11 9 12 1 0 0 0 1 + 1 0 9 1 0 0 0 1 + 12 9 0 1 0 0 0 1 + 13 14 15 1 0 0 0 1 + 13 15 16 1 0 0 0 1 + 17 16 18 1 0 0 0 1 + 18 16 15 1 0 0 0 1 + 19 17 20 1 0 0 0 1 + 20 17 18 1 0 0 0 1 + 21 22 23 1 0 0 0 1 + 23 19 20 1 0 0 0 1 + 23 22 19 1 0 0 0 1 + 13 22 21 1 0 0 0 1 + 21 11 12 1 0 0 0 1 + 14 13 21 1 0 0 0 1 + 21 12 14 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Mesh01 + parent tin01_a16_02 + position -3.4 -4.88 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 31.0 -1.0 40.5 + bitmap tin01_furnish2 + verts 20 + -0.35 -0.12 1.49 + -0.35 0.1 1.49 + -0.35 0.1 -0.68 + -0.35 -0.12 -0.68 + 0.0 0.1 1.16 + 0.0 -0.12 1.16 + 0.0 -0.12 0.02 + 0.0 0.1 0.02 + 0.0 0.1 -0.68 + 0.97 0.1 0.81 + 0.44 -0.12 0.27 + 0.97 -0.12 0.81 + 0.0 -0.12 -0.68 + 0.44 0.1 0.27 + 0.22 0.1 0.51 + 0.22 -0.12 0.51 + 0.97 0.1 0.81 + 0.76 0.1 1.05 + 0.76 -0.12 1.05 + 0.97 -0.12 0.81 + faces 20 + 0 1 2 1 0 1 2 4 + 0 2 3 1 0 2 3 4 + 4 5 6 1 4 5 6 3 + 6 7 4 1 6 7 4 3 + 9 11 10 1 24 25 26 3 + 7 8 2 2 28 29 30 6 + 2 1 4 2 30 31 32 6 + 2 4 7 2 30 32 28 6 + 13 8 7 8 35 33 45 5 + 7 14 13 8 45 36 35 5 + 13 14 17 8 35 36 40 5 + 17 16 13 8 40 39 35 5 + 7 6 15 16 45 46 37 4 + 15 14 7 16 37 36 45 4 + 14 15 18 16 36 37 41 4 + 18 17 14 16 41 40 36 4 + 12 8 13 64 34 33 35 3 + 13 10 12 64 35 38 34 3 + 10 13 16 64 38 35 39 3 + 16 19 10 64 39 42 38 3 + tverts 47 + 0.408666 0.891416 0 + 0.346688 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.219389 1.36765 0 + 0.285126 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + 0.46889 1.46063 0 + 0.540743 1.39726 0 + 0.618333 1.52891 0 + 0.829444 1.52891 0 + 0.36085 -0.460635 0 + 0.426587 -0.460635 0 + 0.426587 -0.528906 0 + 0.36085 -0.528906 0 + 0.30483 1.29827 0 + 0.377444 1.23509 0 + 0.36085 -0.298269 0 + 0.426587 -0.298269 0 + 0.219389 1.0989 0 + 0.285126 1.0989 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 + 0.414477 0.4225 0 + 0.476458 0.4225 0 + 0.476458 0.206945 0 + 0.414477 0.206945 0 + 0.328438 0.836212 0 + 0.328438 0.625102 0 + 0.434495 0.624996 0 + 0.434495 1.28399 0 + 0.328438 1.18256 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.170894 0.6665 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh02 + parent tin01_a16_02 + position 3.41 -4.88 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -32.0 -1.0 39.5 + bitmap tin01_furnish2 + verts 18 + 0.34 0.1 1.48 + 0.34 -0.12 1.48 + 0.34 0.1 -0.69 + 0.34 -0.12 -0.69 + -0.01 -0.12 1.15 + -0.01 0.1 1.15 + -0.01 -0.12 0.01 + -0.01 0.1 0.01 + -0.01 0.1 -0.69 + -0.01 -0.12 -0.69 + -0.23 -0.12 0.5 + -0.23 0.1 0.5 + -0.45 0.1 0.26 + -0.45 -0.12 0.26 + -0.77 -0.12 1.04 + -0.77 0.1 1.04 + -0.98 0.1 0.8 + -0.98 -0.12 0.8 + faces 19 + 0 1 2 1 0 1 2 4 + 2 1 3 1 2 1 3 4 + 4 5 6 1 4 5 6 3 + 7 6 5 1 7 6 5 3 + 0 2 8 2 8 9 10 6 + 7 5 0 2 11 12 8 6 + 8 7 0 2 10 11 8 6 + 10 6 7 16 57 86 87 4 + 7 11 10 16 87 58 57 4 + 10 11 15 16 57 58 64 4 + 15 14 10 16 64 73 57 4 + 7 8 12 32 88 74 59 6 + 12 11 7 32 59 67 88 6 + 11 12 16 32 68 59 65 6 + 16 15 11 32 65 75 68 6 + 8 9 13 64 51 50 60 3 + 13 12 8 64 60 59 51 3 + 12 13 17 64 59 60 66 3 + 17 16 12 64 66 65 59 3 + tverts 89 + 0.346688 0.891416 0 + 0.408666 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.285126 1.36765 0 + 0.219389 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + -0.696282 1.23919 0 + -0.696282 0.617953 0 + -0.596281 0.617953 0 + -0.596281 0.817 0 + -0.596281 1.14356 0 + 0.225624 0.266174 0 + 0.252833 0.305544 0 + 0.252357 0.150473 0 + 0.226784 -0.0348742 0 + 0.191477 0.305544 0 + 0.191001 0.150473 0 + 0.204708 0.471327 0 + 0.273749 0.510697 0 + 0.212393 0.510697 0 + 0.286295 0.267326 0 + 0.28814 -0.0348742 0 + 0.266064 0.471327 0 + 0.21826 0.266174 0 + 0.137861 0.305544 0 + 0.136086 0.150473 0 + 0.136086 0.150473 0 + 0.213931 -0.0348742 0 + 0.21826 0.266174 0 + 0.252833 0.305544 0 + 0.191477 0.305544 0 + 0.252357 0.150473 0 + 0.191477 0.305544 0 + 0.296319 0.471327 0 + 0.215919 0.510697 0 + 0.137861 0.305544 0 + 0.137861 0.305544 0 + 0.21826 0.266174 0 + 0.296319 0.471327 0 + 0.212393 0.510697 0 + 0.252833 0.305544 0 + 0.286295 0.267326 0 + 0.225624 0.266174 0 + 0.28814 -0.0348742 0 + 0.225624 0.266174 0 + 0.204708 0.471327 0 + 0.286295 0.267326 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.0952516 0.000499517 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.496536 0.3335 0 + 0.0952516 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + -0.0034642 0.3335 0 + -0.0034642 0.3335 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + 0.420894 0.6665 0 + 0.0876934 0.0625172 0 + -0.00129734 0.669749 0 + 0.345252 0.777547 0 + -0.00282295 0.777409 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 + 0.496536 0.192615 0 + -0.0034642 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh03 + parent tin01_a16_02 + position -1.65 -4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -22.5 -1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + 1.65 0.1 0.19 + 1.65 0.1 -0.14 + -2.1 0.1 0.19 + -1.75 0.1 -0.14 + -0.57 0.1 -0.14 + 0.25 0.1 -0.14 + -1.75 -0.12 -0.14 + -0.57 -0.12 -0.14 + -2.1 -0.12 0.19 + 1.65 -0.12 0.19 + 1.65 -0.12 -0.14 + 0.25 -0.12 -0.14 + -0.78 0.1 -0.49 + -0.99 0.1 -0.25 + -0.99 -0.12 -0.25 + -0.78 -0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 3 2 4 1 3 2 4 3 + 4 2 5 1 4 2 5 3 + 5 2 1 1 5 2 1 3 + 6 3 4 2 28 21 29 3 + 4 7 6 2 22 23 20 3 + 2 8 9 2 6 7 8 3 + 9 0 2 2 8 9 6 3 + 1 10 11 2 30 25 31 3 + 11 5 1 2 26 27 24 3 + 4 5 12 8 15 10 12 5 + 12 13 4 8 12 13 15 5 + 14 7 4 16 17 19 18 4 + 4 13 14 16 18 16 17 4 + 15 12 5 64 14 12 10 3 + 5 11 15 64 10 11 14 3 + tverts 32 + 0.496366 -0.196817 0 + 0.384796 -0.196817 0 + 0.496367 1.05318 0 + 0.384796 0.936516 0 + 0.384796 0.544462 0 + 0.384796 0.268566 0 + 0.426587 -0.634963 0 + 0.36085 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.170894 0.6665 0 + 0.345252 0.777547 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.326259 1.00025 0 + 0.261617 1.00025 0 + 0.261617 0.653536 0 + 0.326259 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.00124749 0 + 0.326259 0.412601 0 + 0.261617 0.412601 0 + 0.326259 1.00025 0 + 0.261617 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.412601 0 +endnode +#Tile trimesh node +node trimesh Mesh04 + parent tin01_a16_02 + position 1.55 -4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 32.5 -1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + -1.55 0.1 -0.14 + -1.55 0.1 0.19 + 2.2 0.1 0.19 + 1.85 0.1 -0.14 + 0.67 0.1 -0.14 + -0.15 0.1 -0.14 + 1.85 -0.12 -0.14 + 0.67 -0.12 -0.14 + 2.2 -0.12 0.19 + -1.55 -0.12 0.19 + -1.55 -0.12 -0.14 + -0.15 -0.12 -0.14 + 1.09 -0.12 -0.25 + 1.09 0.1 -0.25 + 0.88 0.1 -0.49 + 0.88 -0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 4 1 2 3 4 3 + 2 4 5 1 2 4 5 3 + 2 5 0 1 2 5 0 3 + 3 6 4 2 24 32 33 3 + 7 4 6 2 27 26 25 3 + 8 2 9 2 6 7 8 3 + 1 9 2 2 9 8 7 3 + 10 0 11 2 28 34 35 3 + 5 11 0 2 31 30 29 3 + 13 14 5 32 15 16 14 6 + 14 15 11 64 12 13 10 3 + 11 5 14 64 10 11 12 3 + 13 5 4 0 15 17 18 1 + 12 13 4 0 20 21 23 1 + 12 4 7 0 19 23 22 1 + tverts 36 + 0.338345 1.40811 0 + 0.449916 1.40811 0 + 0.449916 0.158114 0 + 0.338345 0.274781 0 + 0.338345 0.666835 0 + 0.338345 0.942731 0 + 0.36085 -0.634963 0 + 0.426587 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + -0.00282295 0.777409 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.219023 0.00190346 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.280636 0.349166 0 + 0.274944 1.00143 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 + 0.213895 0.589529 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 +endnode +#Tile trimesh node +node trimesh fix01 + parent tin01_a16_02 + position -1.08 -4.41 3.66 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 108.0 925.5 -66.0 + bitmap tin01_seat + verts 4 + 2.08 9.1 -0.66 + 2.08 9.41 -0.66 + 0.08 9.1 -0.66 + 0.08 9.41 -0.66 + faces 2 + 2 3 1 0 10 9 11 1 + 2 1 0 0 8 7 6 1 + tverts 12 + 0.920418 0.220306 0 + 0.765573 0.220306 0 + 0.925249 0.980177 0 + 0.770403 0.980177 0 + 0.925249 0.980177 0 + 0.765573 0.220306 0 + 0.920418 0.220306 0 + 0.765573 0.220306 0 + 0.925249 0.980177 0 + 0.770403 0.980177 0 + 0.925249 0.980177 0 + 0.765573 0.220306 0 +endnode +#Tile trimesh node +node trimesh blacky10 + parent tin01_a16_02 + position 4.5 0.0 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 4 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -450.0 0.0 108.5 + bitmap tin01_black + verts 16 + 0.0 5.0 0.0 + 0.0 5.0 2.17 + -8.25 -5.0 0.0 + -8.25 -5.0 2.17 + -0.75 5.0 0.0 + -0.75 5.0 2.17 + -9.0 -5.0 0.0 + -9.0 -5.0 2.17 + -0.75 -5.0 0.0 + -0.75 -5.0 2.17 + -9.0 5.0 0.0 + -9.0 5.0 2.17 + 0.0 -5.0 0.0 + 0.0 -5.0 2.17 + -8.25 5.0 0.0 + -8.25 5.0 2.17 + faces 8 + 6 3 7 0 11 5 13 1 + 6 2 3 0 11 2 5 1 + 0 4 5 0 7 12 8 1 + 0 5 1 0 7 8 1 1 + 14 11 15 0 25 19 27 1 + 14 10 11 0 25 16 19 1 + 8 12 13 0 21 26 22 1 + 8 13 9 0 21 22 15 1 + tverts 28 + 1.999 0.09 0 + 1.999 0.99 0 + 0.000999033 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 1.999 0.09 0 + 0.00149882 0.99 0 + 0.874911 0.09 0 + 0.076852 0.09 0 + 2.9985 0.09 0 + 0.00149882 0.09 0 + 1.84126 0.000999093 0 + 1.999 0.09 0 + 1.999 0.99 0 + 0.000999033 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 1.999 0.09 0 + 0.00149882 0.99 0 + 0.874911 0.09 0 + 0.076852 0.09 0 + 2.9985 0.09 0 + 0.00149882 0.09 0 + 1.84126 0.000999093 0 +endnode +#Tile trimesh node +node trimesh wallback01 + parent tin01_a16_02 + position 0.0 4.5 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -450.0 108.5 + bitmap tin01_wallbrick + verts 20 + 4.5 0.5 0.0 + 4.5 0.5 2.17 + 4.5 -9.5 0.0 + 4.5 -9.5 2.17 + 3.75 0.5 2.17 + 3.75 -9.5 2.17 + 3.75 -2.05 2.17 + 3.75 -9.28 2.17 + 3.75 -4.5 2.17 + 3.75 -6.93 2.17 + -4.5 -9.5 0.0 + -4.5 0.5 0.0 + -4.5 -9.5 2.17 + -4.5 0.5 2.17 + -3.75 -9.5 2.17 + -3.75 0.5 2.17 + -3.75 -2.07 2.17 + -3.75 -9.28 2.17 + -3.75 -4.5 2.17 + -3.75 -6.95 2.17 + faces 16 + 2 0 3 0 4 6 7 1 + 3 0 1 0 5 8 9 1 + 4 6 1 0 13 14 12 1 + 6 8 1 0 14 15 12 1 + 1 8 9 0 12 15 16 1 + 9 3 1 0 16 17 12 1 + 9 7 3 0 16 18 17 1 + 7 5 3 0 18 19 17 1 + 11 10 13 0 29 36 37 1 + 13 10 12 0 31 28 30 1 + 12 14 17 0 38 39 40 1 + 12 17 19 0 38 40 41 1 + 12 19 18 0 38 41 42 1 + 12 18 13 0 38 42 43 1 + 18 16 13 0 42 44 43 1 + 16 15 13 0 44 45 43 1 + tverts 46 + 1.999 0.09 0 + 0.000999093 0.09 0 + 1.999 0.99 0 + 0.000999093 0.99 0 + 0.000999033 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 1.999 0.99 0 + 1.999 0.09 0 + 0.000999093 0.99 0 + -0.388774 0.438941 0 + -0.231037 0.281204 0 + 0.042374 0.281204 0 + 0.557648 0.281204 0 + 1.06872 0.281204 0 + 1.60923 0.438941 0 + 1.56296 0.281204 0 + 1.60923 0.281204 0 + -0.211194 0.392396 0 + -0.211194 0.234659 0 + -0.164924 0.234659 0 + 0.325112 0.234659 0 + 0.840386 0.234659 0 + 1.78681 0.392396 0 + 1.35145 0.234659 0 + 1.62907 0.234659 0 + 1.999 0.09 0 + 0.000999093 0.09 0 + 1.999 0.99 0 + 0.000999093 0.99 0 + 1.999 0.09 0 + 0.000999033 0.99 0 + 1.999 0.09 0 + 1.999 0.99 0 + 1.999 0.09 0 + 0.000999093 0.99 0 + -0.211194 0.392396 0 + -0.211194 0.234659 0 + -0.164924 0.234659 0 + 0.325112 0.234659 0 + 0.840386 0.234659 0 + 1.78681 0.392396 0 + 1.35145 0.234659 0 + 1.62907 0.234659 0 +endnode +endmodelgeom tin01_a16_02 +donemodel tin01_a16_02 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d08_01.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d08_01.mdl new file mode 100644 index 0000000..bc6751a --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d08_01.mdl @@ -0,0 +1,4752 @@ +# Exported from NWmax 0.8 b60 at 15.10.2012 22:38:37 +# mdl file +# +#NWmax MODEL ASCII +# model: tin01_d08_01 +#local file: Unknown +filedependancy Unknown +newmodel tin01_d08_01 +setsupermodel tin01_d08_01 NULL +classification Tile +#NWmax GEOM ASCII +beginmodelgeom tin01_d08_01 +node dummy tin01_d08_01 + parent NULL +endnode +#Tile trimesh node +node trimesh Mesh921 + parent tin01_d08_01 + position -4.14 4.59 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -10.0 -46.0 150.0 + bitmap tin01_lwalls + verts 17 + 0.39 0.19 1.49 + 0.39 0.19 3.0 + 0.39 -0.84 3.0 + 0.39 -0.84 1.49 + -0.47 -0.84 1.49 + -0.47 -1.11 1.49 + 0.66 -1.11 1.49 + -0.47 -0.84 3.0 + -0.36 -0.09 3.0 + -0.86 -0.09 3.0 + -0.86 -0.84 3.0 + 0.66 -1.11 0.0 + 0.66 0.19 1.49 + 0.66 0.19 0.0 + -0.47 -1.11 0.68 + -0.32 -1.11 0.0 + -0.32 -1.11 0.52 + faces 17 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 3 4 5 2 4 5 6 1 + 5 6 3 2 6 7 4 1 + 7 2 8 2 8 9 10 1 + 7 8 9 2 8 10 11 1 + 7 9 10 2 8 11 12 1 + 6 11 12 1 13 14 15 1 + 11 13 12 1 14 16 15 1 + 7 4 3 4 17 18 19 1 + 3 2 7 4 19 20 17 1 + 5 14 6 4 21 22 23 1 + 11 6 15 4 24 23 25 1 + 14 16 6 4 22 26 23 1 + 15 6 16 4 25 23 26 1 + 3 6 12 2 27 28 29 1 + 12 0 3 2 29 30 27 1 + tverts 31 + 0.159906 0.483529 0 + 0.159906 0.858599 0 + 0.374404 0.858599 0 + 0.374404 0.483529 0 + 0.426252 0.45777 0 + 0.640749 0.45777 0 + 0.640749 0.390768 0 + 0.359251 0.390768 0 + 0.558247 0.677799 0 + 0.34375 0.677799 0 + 0.531713 0.865299 0 + 0.65625 0.8653 0 + 0.65625 0.677799 0 + 0.536235 0.46138 0 + 0.536235 0.0939666 0 + 0.321738 0.46138 0 + 0.323519 0.0932356 0 + 0.543447 0.858423 0 + 0.543447 0.483353 0 + 0.32895 0.483354 0 + 0.32895 0.858423 0 + 0.705278 0.461204 0 + 0.705278 0.264192 0 + 0.490781 0.461205 0 + 0.490781 0.0937908 0 + 0.667973 0.0937908 0 + 0.667973 0.223495 0 + 6.29438 1.3802 0 + 6.29438 1.44535 0 + 6.07989 1.44535 0 + 6.07989 1.3802 0 +endnode +#Tile trimesh node +node trimesh Object469 + parent tin01_d08_01 + position 3.65 4.32 2.99 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -365.0 -57.0 1.0 + bitmap tin01_wallcord + verts 10 + -8.15 0.68 0.01 + -8.15 0.18 0.01 + -7.4 -0.57 0.01 + -7.4 0.46 0.01 + -7.4 0.68 0.01 + 0.1 0.68 0.01 + 0.1 0.46 0.01 + 0.85 0.68 0.01 + 0.85 -1.82 0.01 + 0.1 -1.82 0.01 + faces 6 + 0 1 2 1 0 1 2 3 + 3 4 0 1 3 4 0 3 + 2 3 0 1 2 3 0 3 + 5 6 7 1 5 6 7 3 + 8 7 9 1 8 7 9 3 + 6 9 7 1 6 9 7 3 + tverts 10 + 0.33861 0.896304 0 + 0.339701 0.771309 0 + 0.52883 0.585452 0 + 0.526576 0.843711 0 + 0.526103 0.89794 0 + 0.503495 0.900295 0 + 0.502024 0.844116 0 + 0.340948 0.904552 0 + 0.327395 0.386992 0 + 0.490045 0.386669 0 +endnode +#Tile trimesh node +node trimesh pict01 + parent tin01_d08_01 + position 3.9 -2.4 2.27 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -17.0 14.0 -4.5 + bitmap tin01_paint04 + verts 8 + -0.19 -0.44 -0.74 + -0.19 -0.44 0.65 + -0.19 0.72 0.65 + -0.19 0.72 -0.74 + -0.15 0.72 -0.74 + -0.15 -0.44 -0.74 + -0.15 0.72 0.65 + -0.15 -0.44 0.65 + faces 10 + 0 1 2 1 24 25 26 2 + 2 3 0 1 26 27 24 2 + 0 3 4 2 8 9 10 5 + 4 5 0 2 11 12 13 5 + 3 2 6 4 14 15 16 4 + 6 4 3 4 17 2 1 4 + 2 1 7 2 18 19 20 6 + 7 6 2 2 21 5 4 6 + 1 0 5 4 22 0 23 3 + 5 7 1 4 3 7 6 3 + tverts 28 + 0.461374 0.00438177 0 + 0.495297 0.00438177 0 + 0.461374 0.00438177 0 + 0.495297 0.00438177 0 + 0.461374 0.453051 0 + 0.495297 0.453051 0 + 0.461374 0.493519 0 + 0.495297 0.493519 0 + 0.495297 0.04485 0 + 0.495297 0.453051 0 + 0.461374 0.453051 0 + 0.461374 0.453051 0 + 0.461374 0.04485 0 + 0.495297 0.04485 0 + 0.495297 0.00438177 0 + 0.495297 0.493519 0 + 0.461374 0.493519 0 + 0.461374 0.493519 0 + 0.461374 0.453051 0 + 0.461374 0.04485 0 + 0.495297 0.04485 0 + 0.495297 0.04485 0 + 0.461374 0.493519 0 + 0.495297 0.00438177 0 + -0.000365246 0.00534039 0 + -0.000365071 0.493545 0 + 0.488166 0.493545 0 + 0.488165 0.00534018 0 +endnode +#Tile trimesh node +node trimesh Mesh06 + parent tin01_d08_01 + position -0.54 -0.2 0.33 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -0.999998 117.0 + bitmap tin01_door2 + verts 26 + 0.41 -0.38 0.35 + 0.41 -0.22 0.35 + 0.41 -0.22 1.16 + 0.41 -0.38 2.67 + 0.41 0.2 1.16 + 0.41 0.36 0.35 + 0.41 0.36 2.67 + 0.54 -0.22 0.19 + 0.54 -0.53 0.19 + -0.39 -0.38 0.35 + -0.54 -0.53 0.19 + 0.54 -0.22 -0.33 + 0.54 -0.53 -0.33 + -0.54 -0.53 -0.33 + -0.39 -0.38 2.67 + -0.39 0.36 0.35 + -0.54 0.51 0.19 + -0.54 0.2 -0.33 + -0.54 0.51 -0.33 + -0.39 0.36 2.67 + 0.41 0.2 0.35 + 0.54 0.2 0.19 + 0.54 0.51 0.19 + 0.54 0.2 -0.33 + 0.54 0.51 -0.33 + 0.23 0.51 -0.33 + faces 34 + 0 1 2 1 0 1 2 5 + 3 0 2 1 3 0 4 5 + 4 5 6 1 5 6 7 5 + 6 3 2 1 7 3 4 5 + 2 4 6 1 4 5 7 5 + 1 0 7 2 8 9 10 1 + 8 7 0 2 11 10 9 1 + 0 9 10 4 12 13 14 1 + 10 8 0 4 14 15 12 1 + 7 8 11 1 10 11 16 1 + 12 11 8 1 17 16 11 1 + 8 10 12 8 15 14 18 1 + 13 12 10 8 19 18 14 1 + 9 0 14 8 20 21 22 3 + 3 14 0 8 23 22 21 3 + 9 15 16 1 12 24 25 1 + 16 10 9 1 25 15 12 1 + 10 16 13 2 15 25 18 1 + 17 13 16 2 26 18 25 1 + 18 17 16 2 27 26 25 1 + 15 9 19 2 28 21 29 3 + 14 19 9 2 23 29 21 3 + 20 5 4 1 1 0 2 5 + 5 20 21 2 9 8 10 1 + 21 22 5 2 10 11 9 1 + 22 21 23 1 30 31 32 1 + 23 24 22 1 32 33 30 1 + 15 5 16 4 13 12 14 1 + 22 16 5 4 15 14 12 1 + 25 18 16 8 34 19 14 1 + 16 22 24 8 14 15 18 1 + 24 25 16 8 18 34 14 1 + 5 15 6 8 21 20 23 3 + 19 6 15 8 22 23 20 3 + tverts 35 + 0.047924 -0.502544 0 + 0.128413 -0.502544 0 + 0.130204 -0.265795 0 + 0.047924 0.174109 0 + 0.276247 -0.265795 0 + 0.325769 -0.26474 0 + 0.0501291 -0.513995 0 + 0.278903 0.170171 0 + 0.0546721 1.05077 0 + 0.300601 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.305378 1.04315 0 + 0.0961792 1.04315 0 + 0.102199 0.959772 0 + 0.357965 0.959772 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.357965 0.694046 0 + 0.102199 0.694046 0 + 0.0551832 -0.497611 0 + 0.395638 -0.497611 0 + 0.0551832 0.174409 0 + 0.395638 0.174409 0 + 0.117888 1.04315 0 + 0.123908 0.959772 0 + 0.193635 0.694046 0 + 0.123908 0.694046 0 + 0.0591303 -0.497611 0 + 0.0591303 0.174409 0 + 0.359399 0.95261 0 + 0.104689 0.95261 0 + 0.104689 0.639765 0 + 0.360637 0.639767 0 + 0.285157 0.694046 0 +endnode +#Tile trimesh node +node trimesh Plane363 + parent tin01_d08_01 + position 0.0 0.0 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.603922 0.584314 0.592157 + diffuse 0.603922 0.584314 0.592157 + specular 0.0 0.0 0.0 + shininess 1 + center -76.0 -76.0 0.0 + bitmap tin01_shpflr1 + verts 28 + 2.85 -4.46 0.0 + 3.48 -4.46 0.0 + 3.48 -2.5 0.0 + 2.5 -2.5 0.0 + 2.5 -0.42 0.0 + 3.48 -0.42 0.0 + 0.0 -5.0 0.0 + 2.5 -5.0 0.0 + 0.0 -2.5 0.0 + 0.0 -0.73 0.0 + 0.0 -0.42 0.0 + -2.5 -5.0 0.0 + -2.5 -2.5 0.0 + -1.08 -0.73 0.0 + -5.0 -5.0 0.0 + -5.0 -2.5 0.0 + -5.0 0.0 0.0 + -2.5 0.0 0.0 + -5.0 2.5 0.0 + -2.5 2.5 0.0 + -4.46 2.85 0.0 + -5.0 2.85 0.0 + -1.08 0.0 0.0 + -1.08 0.31 0.0 + 2.85 -5.0 0.0 + -4.46 3.48 0.0 + -3.48 3.48 0.0 + -0.31 0.31 0.0 + faces 30 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 3 2 4 1 3 2 4 1 + 5 4 2 1 5 4 2 1 + 6 7 8 1 6 7 8 1 + 3 8 7 1 3 8 7 1 + 9 3 10 1 9 3 10 1 + 4 10 3 1 4 10 3 1 + 11 6 12 1 11 6 12 1 + 8 12 6 1 8 12 6 1 + 12 8 9 1 12 8 9 1 + 9 13 12 1 9 13 12 1 + 14 11 15 1 14 11 15 1 + 12 15 11 1 12 15 11 1 + 15 12 16 1 15 12 16 1 + 17 16 12 1 17 16 12 1 + 16 17 18 1 16 17 18 1 + 19 18 17 1 19 18 17 1 + 18 19 20 1 18 19 20 1 + 20 21 18 1 20 21 18 1 + 17 12 13 1 17 12 13 1 + 13 22 17 1 13 22 17 1 + 19 17 23 1 19 17 23 1 + 23 17 22 1 23 17 22 1 + 3 7 0 1 3 7 0 1 + 7 24 0 1 7 24 0 1 + 19 25 20 1 19 25 20 1 + 19 26 25 1 19 26 25 1 + 23 27 19 1 23 27 19 1 + 8 3 9 1 8 3 9 1 + tverts 28 + 13.5702 -15.8918 0 + 13.6964 -15.8918 0 + 13.6964 -15.5 0 + 13.5 -15.5 0 + 13.5 -15.084 0 + 13.6964 -15.084 0 + 13.0 -16.0 0 + 13.5 -16.0 0 + 13.0 -15.5 0 + 13.0 -15.1463 0 + 13.0 -15.084 0 + 12.5 -16.0 0 + 12.5 -15.5 0 + 12.7846 -15.1463 0 + 12.0 -16.0 0 + 12.0 -15.5 0 + 12.0 -15.0 0 + 12.5 -15.0 0 + 12.0 -14.5 0 + 12.5 -14.5 0 + 12.1082 -14.4298 0 + 12.0 -14.4298 0 + 12.7846 -15.0 0 + 12.7846 -14.9377 0 + 13.5702 -16.0 0 + 12.1082 -14.3036 0 + 12.3036 -14.3036 0 + 12.9383 -14.9377 0 +endnode +#Tile trimesh node +node trimesh Mesh926 + parent tin01_d08_01 + position 0.0 0.0 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 250.0 0.0 + bitmap tin01_floortran4 + verts 20 + 3.4 4.78 0.0 + 3.4 5.0 0.0 + 2.5 2.5 0.0 + 0.0 2.5 0.0 + 0.0 5.0 0.0 + 2.5 5.0 0.0 + -2.5 2.5 0.0 + -2.5 5.0 0.0 + -3.4 4.78 0.0 + -3.48 4.78 0.0 + -3.48 3.48 0.0 + 2.5 0.0 0.0 + 3.48 0.0 0.0 + 3.48 2.5 0.0 + 3.48 3.48 0.0 + 0.0 0.31 0.0 + -0.31 0.31 0.0 + 3.48 4.78 0.0 + -3.4 5.0 0.0 + 0.0 0.0 0.0 + faces 20 + 0 1 2 1 27 28 29 1 + 3 2 4 1 30 29 31 1 + 5 4 2 1 32 31 29 1 + 6 3 7 1 15 16 17 1 + 4 7 3 1 18 17 16 1 + 8 9 10 1 19 20 21 1 + 11 12 2 1 1 2 3 1 + 13 2 12 1 4 3 2 1 + 2 13 14 1 29 33 34 1 + 15 11 3 1 5 6 7 1 + 2 3 11 1 8 7 6 1 + 3 16 15 1 9 10 11 1 + 5 2 1 1 32 29 28 1 + 2 17 0 1 29 35 27 1 + 2 14 17 1 29 34 35 1 + 6 7 10 1 24 25 21 1 + 10 7 8 1 21 25 19 1 + 7 18 8 1 12 13 0 1 + 3 6 16 1 22 26 23 1 + 19 11 15 1 14 6 5 1 + tverts 36 + 0.692412 0.544153 0 + 0.35144 1.00064 0 + 0.15504 1.00064 0 + 0.351439 0.500638 0 + 0.155039 0.500638 0 + 0.504094 0.939091 0 + 0.0040941 1.00064 0 + 0.504094 0.500637 0 + 0.0040938 0.500638 0 + 0.506067 0.500637 0 + 0.56781 0.938895 0 + 0.506068 0.939091 0 + 0.512411 0.500768 0 + 0.692412 0.500768 0 + 0.504094 1.00064 0 + 0.666294 0.830369 0 + 0.186084 0.82927 0 + 0.686084 0.32927 0 + 0.186084 0.32927 0 + 0.692412 0.544153 0 + 0.708811 0.544153 0 + 0.708809 0.80437 0 + 0.506067 0.500637 0 + 0.559014 0.936696 0 + 0.535499 0.954594 0 + 0.512411 0.500768 0 + 1.00607 0.500637 0 + 0.69246 0.464931 0 + 0.69246 0.508318 0 + 0.512685 0.00779169 0 + 0.0131372 0.00831804 0 + 0.0131381 0.508318 0 + 0.512638 0.508318 0 + 0.709132 0.00726532 0 + 0.708987 0.204193 0 + 0.708843 0.464931 0 +endnode +#Tile trimesh node +node trimesh Mesh924 + parent tin01_d08_01 + position 4.37 -0.21 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -218.5 9.99998 150.0 + bitmap tin01_lwalls + verts 48 + -0.62 4.99 3.0 + -0.62 4.99 1.49 + -0.62 2.71 3.0 + -0.62 2.71 1.49 + -0.89 2.71 0.0 + -0.89 2.71 1.49 + -0.89 4.99 1.49 + -0.89 3.69 0.0 + -0.62 0.21 3.0 + 0.13 0.21 3.0 + 0.13 2.71 3.0 + -0.62 0.21 1.49 + -0.89 0.21 0.0 + -0.89 0.21 1.49 + -0.62 -2.29 3.0 + 0.13 -2.29 3.0 + -0.62 -1.47 1.53 + -0.62 -2.29 1.49 + -0.62 -2.63 1.53 + -0.89 -2.29 0.0 + -0.89 -2.29 1.49 + -0.89 -0.21 0.0 + -0.89 -0.21 1.49 + -0.89 -4.25 0.0 + -0.89 -4.25 0.52 + -0.62 -4.4 3.0 + 0.13 -4.79 3.0 + -0.62 -4.79 3.0 + -0.62 -2.63 2.92 + -0.62 -4.4 1.49 + -0.89 -4.4 0.68 + -0.89 -4.4 1.49 + -1.87 0.21 0.0 + -1.87 0.21 1.49 + -1.87 -0.21 1.49 + -1.87 -0.21 0.0 + -4.37 0.21 1.49 + -4.37 -0.21 1.49 + -4.37 -0.21 0.52 + -4.37 0.21 0.0 + -4.37 0.21 0.52 + -4.5 0.21 1.49 + -4.5 -0.21 1.49 + -4.5 0.21 0.68 + -4.5 -0.21 0.68 + -0.62 -1.47 2.92 + -0.89 4.99 0.0 + -4.37 -0.21 0.0 + faces 61 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 5 6 1 4 5 6 1 + 7 4 6 1 7 4 6 1 + 5 3 6 2 8 9 10 1 + 1 6 3 2 11 10 9 1 + 8 9 10 2 12 13 14 1 + 10 2 8 2 14 15 12 1 + 11 8 2 1 16 17 18 1 + 2 3 11 1 18 19 16 1 + 12 13 5 1 20 21 5 1 + 5 4 12 1 5 4 20 1 + 13 11 3 2 22 23 24 1 + 3 5 13 2 24 25 22 1 + 14 15 9 2 26 27 13 1 + 9 8 14 2 13 12 26 1 + 16 17 18 1 28 29 30 1 + 8 11 16 1 31 32 28 1 + 19 20 21 1 33 34 35 1 + 22 21 20 1 36 35 34 1 + 20 17 11 2 37 38 23 1 + 11 13 22 2 23 22 39 1 + 11 22 20 2 23 39 37 1 + 19 23 24 1 40 41 42 3 + 14 25 15 2 43 44 45 1 + 26 15 27 2 46 45 47 1 + 25 27 15 2 44 47 45 1 + 25 14 28 1 48 49 50 3 + 17 29 18 1 51 52 53 3 + 30 31 20 1 54 55 56 3 + 24 30 20 1 42 54 56 3 + 20 19 24 1 56 40 42 3 + 29 17 31 2 57 58 59 3 + 20 31 17 2 60 59 58 3 + 13 12 32 4 61 62 63 1 + 32 33 13 4 63 64 61 1 + 21 22 34 4 62 65 64 1 + 34 35 21 4 64 63 62 1 + 22 13 33 2 66 67 68 1 + 33 34 22 2 68 69 66 1 + 34 33 36 2 69 68 70 1 + 36 37 34 2 70 71 69 1 + 35 34 37 4 63 64 72 1 + 37 38 35 4 72 73 63 1 + 33 32 39 4 64 63 74 1 + 39 40 33 4 74 75 64 1 + 37 36 41 2 71 70 76 1 + 41 42 37 2 76 77 71 1 + 38 37 42 4 78 79 80 1 + 43 41 36 4 81 82 83 1 + 42 44 38 4 80 84 78 1 + 40 43 36 4 85 81 83 1 + 18 29 25 1 53 52 48 3 + 28 18 25 1 50 53 48 3 + 16 11 17 1 28 32 29 1 + 45 14 8 1 86 87 31 1 + 16 45 8 1 28 86 31 1 + 45 28 14 1 88 50 49 3 + 46 7 6 1 89 7 6 1 + 40 36 33 4 75 72 64 1 + 38 47 35 4 73 74 63 1 + tverts 90 + -0.438777 0.86012 0 + -0.438777 0.483596 0 + 0.131989 0.86012 0 + 0.131989 0.483596 0 + 0.205011 0.0859651 0 + 0.205011 0.459442 0 + -0.365756 0.459442 0 + -0.0436657 0.0859652 0 + 6.29438 1.44535 0 + 6.29438 1.3802 0 + 6.07989 1.44535 0 + 6.07989 1.3802 0 + 0.812499 0.642952 0 + 0.812499 0.830915 0 + 0.187499 0.830915 0 + 0.187499 0.642952 0 + 0.504374 0.483596 0 + 0.504374 0.86012 0 + -0.120626 0.86012 0 + -0.120626 0.483596 0 + 0.830011 0.085965 0 + 0.830011 0.459442 0 + 0.5 0.385728 0 + 0.5 0.452728 0 + -0.125 0.452728 0 + -0.125 0.385728 0 + 1.4375 0.642952 0 + 1.4375 0.830915 0 + 1.17647 0.492858 0 + 1.38199 0.483596 0 + 1.29755 0.492669 0 + 0.756989 0.86012 0 + 0.756989 0.483596 0 + 1.45501 0.0859648 0 + 1.45501 0.459441 0 + 0.935028 0.085965 0 + 0.935028 0.459442 0 + 1.125 0.385727 0 + 1.125 0.452728 0 + 0.605017 0.385728 0 + 1.00826 0.0836864 0 + 0.518565 0.0836864 0 + 0.518565 0.21325 0 + 0.8125 0.774954 0 + 0.285502 0.774954 0 + 0.8125 0.962454 0 + 0.1875 0.962454 0 + 0.1875 0.774954 0 + 0.481259 0.861477 0 + 1.00826 0.861477 0 + 0.923599 0.842738 0 + 1.00826 0.484953 0 + 0.481259 0.484953 0 + 0.923817 0.494025 0 + 0.481259 0.253947 0 + 0.481259 0.457162 0 + 1.00826 0.457162 0 + 1.58916 0.458269 0 + 1.06216 0.458269 0 + 1.58916 0.391269 0 + 1.06216 0.391269 0 + 0.614325 0.460943 0 + 0.614325 0.0874666 0 + 0.368826 0.0874667 0 + 0.368826 0.460943 0 + 0.614326 0.460943 0 + -0.151343 0.460334 0 + -0.151344 0.387623 0 + 0.101749 0.387623 0 + 0.101749 0.460334 0 + 0.746079 0.387623 0 + 0.746079 0.460334 0 + -0.256174 0.460943 0 + -0.256174 0.217213 0 + -0.256175 0.0874667 0 + -0.256174 0.217221 0 + 0.816155 0.387623 0 + 0.816155 0.460334 0 + 0.516046 0.214807 0 + 0.516046 0.45858 0 + 0.483958 0.458719 0 + 0.483954 0.255504 0 + 0.483954 0.458719 0 + 0.516042 0.45858 0 + 0.483958 0.255504 0 + 0.516042 0.214807 0 + 1.1767 0.841375 0 + 1.38199 0.86012 0 + 0.802966 0.842733 0 + -0.365756 0.0859652 0 +endnode +node aabb wok + parent tin01_d08_01 + position 0.0 0.0 0.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.0 1.0 0.0 + multimaterial 20 + Dirt + Obscuring + Grass + Stone + Wood + Water + Nonwalk + Transparent + Carpet + Metal + Puddles + Swamp + Mud + Leaves + Lava + BottomlessPit + DeepWater + Door + Snow + Sand + ambient 0.0 0.0 0.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10.0 + bitmap Obscuring + verts 38 + 2.85 -4.46 0.0 + 2.85 -5.0 0.0 + 2.85 -5.0 3.0 + 3.48 -4.46 0.0 + 3.48 -4.46 3.0 + -0.01 -0.42 0.0 + 3.48 -0.42 0.0 + -0.01 -0.42 1.5 + 3.48 -0.42 1.5 + -0.01 -0.73 0.0 + -0.01 -0.73 3.0 + -1.09 -0.73 0.0 + -1.09 -0.73 3.0 + -1.09 0.31 0.0 + -1.09 0.31 3.0 + -0.01 0.31 0.0 + -0.01 0.31 3.0 + -0.01 0.0 0.0 + -0.01 0.0 1.5 + 3.48 0.0 0.0 + 3.48 0.0 1.5 + 5.0 -5.0 3.0 + 5.0 5.0 3.0 + 3.48 5.0 3.0 + 3.47 0.47 0.0 + -3.4 5.0 0.0 + 3.4 5.0 0.0 + -3.48 3.48 0.0 + -4.46 2.85 0.0 + -5.0 2.85 0.0 + -5.0 -5.0 0.0 + -4.46 3.48 0.0 + -5.0 2.85 3.0 + -4.46 3.48 3.0 + -3.48 5.0 3.0 + -3.48 3.48 3.0 + -5.0 5.0 3.0 + 3.48 -0.27 3.0 + faces 62 + 0 1 2 1 0 0 0 2 + 3 0 4 2 0 0 0 2 + 4 0 2 2 0 0 0 2 + 5 6 7 2 0 0 0 2 + 7 6 8 2 0 0 0 2 + 9 5 10 4 0 0 0 2 + 10 5 7 4 0 0 0 2 + 11 9 12 2 0 0 0 2 + 12 9 10 2 0 0 0 2 + 13 11 14 4 0 0 0 2 + 14 11 12 4 0 0 0 2 + 15 13 16 2 0 0 0 2 + 16 13 14 2 0 0 0 2 + 17 15 18 4 0 0 0 2 + 18 15 16 4 0 0 0 2 + 19 17 20 2 0 0 0 2 + 20 17 18 2 0 0 0 2 + 16 10 18 4 0 0 0 2 + 7 18 10 2 0 0 0 2 + 21 22 23 1 0 0 0 2 + 37 4 21 1 0 0 0 2 + 10 16 14 4 0 0 0 2 + 14 12 10 4 0 0 0 2 + 7 8 20 2 0 0 0 2 + 20 18 7 2 0 0 0 2 + 15 19 24 1 0 0 0 5 + 25 15 26 1 0 0 0 4 + 13 15 27 1 0 0 0 5 + 28 29 30 1 0 0 0 5 + 6 5 9 1 0 0 0 5 + 3 6 9 1 0 0 0 5 + 0 3 9 1 0 0 0 5 + 30 1 0 1 0 0 0 5 + 30 0 9 1 0 0 0 5 + 30 9 11 1 0 0 0 5 + 28 30 11 1 0 0 0 5 + 28 11 13 1 0 0 0 5 + 28 13 27 1 0 0 0 5 + 28 27 31 1 0 0 0 5 + 29 28 32 1 0 0 0 2 + 28 31 33 2 0 0 0 2 + 28 33 32 2 0 0 0 2 + 27 34 35 2 0 0 0 2 + 32 33 36 2 0 0 0 2 + 33 35 36 2 0 0 0 2 + 35 34 36 2 0 0 0 2 + 27 25 34 2 0 0 0 2 + 15 17 19 1 0 0 0 5 + 15 24 26 1 0 0 0 4 + 27 15 25 0 0 0 0 5 + 31 27 35 0 0 0 0 2 + 31 35 33 0 0 0 0 2 + 4 2 21 0 0 0 0 2 + 6 3 4 0 0 0 0 2 + 23 37 21 1 0 0 0 2 + 20 8 37 0 0 0 0 2 + 8 4 37 0 0 0 0 2 + 23 20 37 0 0 0 0 2 + 8 6 4 0 0 0 0 2 + 24 19 20 0 0 0 0 2 + 26 24 23 0 0 0 0 2 + 23 24 20 0 0 0 0 2 + aabb -5.0 -5.0 0.0 5.0 5.0 3.0 -1 + -5.0 -5.0 0.0 3.4 5.0 3.0 -1 + -5.0 -5.0 0.0 2.85 2.85 3.0 -1 + -5.0 -5.0 0.0 -0.01 2.85 3.0 -1 + -5.0 -5.0 0.0 -0.01 2.85 0.0 -1 + -5.0 -5.0 0.0 -0.01 -0.73 0.0 34 + -5.0 -5.0 0.0 -1.09 2.85 0.0 35 + -5.0 -5.0 0.0 -1.09 2.85 3.0 -1 + -1.09 -0.73 0.0 -1.09 0.31 3.0 -1 + -1.09 -0.73 0.0 -1.09 0.31 3.0 9 + -1.09 -0.73 0.0 -1.09 0.31 3.0 10 + -5.0 -5.0 0.0 -1.09 2.85 0.0 -1 + -5.0 -5.0 0.0 -4.46 2.85 0.0 28 + -4.46 -0.73 0.0 -1.09 2.85 0.0 36 + -5.0 -5.0 0.0 2.85 0.31 3.0 -1 + -5.0 -5.0 0.0 2.85 0.31 3.0 -1 + -5.0 -5.0 0.0 2.85 0.31 3.0 -1 + -1.09 -0.73 0.0 -0.01 0.31 3.0 -1 + -1.09 -0.73 0.0 -0.01 -0.73 3.0 7 + -1.09 -0.73 0.0 -0.01 0.31 3.0 -1 + -1.09 0.31 0.0 -0.01 0.31 3.0 12 + -1.09 -0.73 3.0 -0.01 0.31 3.0 22 + -5.0 -5.0 0.0 2.85 -0.73 0.0 33 + -1.09 -0.73 0.0 -0.01 0.31 3.0 -1 + -1.09 0.31 0.0 -0.01 0.31 3.0 11 + -1.09 -0.73 0.0 -0.01 0.31 3.0 -1 + -1.09 -0.73 0.0 -0.01 -0.73 3.0 8 + -1.09 -0.73 3.0 -0.01 0.31 3.0 21 + -0.01 -0.73 0.0 -0.01 0.31 3.0 -1 + -0.01 -0.73 0.0 -0.01 0.31 3.0 -1 + -0.01 0.0 0.0 -0.01 0.31 1.5 13 + -0.01 -0.73 0.0 -0.01 -0.42 3.0 5 + -0.01 -0.73 0.0 -0.01 0.31 3.0 -1 + -0.01 -0.73 0.0 -0.01 0.31 3.0 -1 + -0.01 -0.73 0.0 -0.01 -0.42 3.0 6 + -0.01 0.0 0.0 -0.01 0.31 3.0 14 + -0.01 -0.73 1.5 -0.01 0.31 3.0 -1 + -0.01 -0.73 1.5 -0.01 0.0 3.0 18 + -0.01 -0.73 1.5 -0.01 0.31 3.0 17 + -5.0 0.31 0.0 3.4 5.0 3.0 -1 + -5.0 2.85 0.0 -3.48 5.0 3.0 -1 + -5.0 2.85 0.0 -3.48 3.48 3.0 -1 + -4.46 2.85 0.0 -3.48 3.48 0.0 38 + -5.0 2.85 0.0 -3.48 3.48 3.0 -1 + -5.0 2.85 0.0 -4.46 3.48 3.0 -1 + -5.0 2.85 0.0 -4.46 2.85 3.0 39 + -4.46 2.85 0.0 -4.46 3.48 3.0 40 + -4.46 3.48 0.0 -3.48 3.48 3.0 50 + -5.0 2.85 0.0 -3.48 5.0 3.0 -1 + -5.0 2.85 0.0 -3.48 3.48 3.0 -1 + -5.0 2.85 0.0 -4.46 3.48 3.0 41 + -4.46 3.48 0.0 -3.48 3.48 3.0 51 + -5.0 2.85 3.0 -3.48 5.0 3.0 -1 + -5.0 2.85 3.0 -3.48 5.0 3.0 -1 + -5.0 2.85 3.0 -4.46 5.0 3.0 43 + -5.0 3.48 3.0 -3.48 5.0 3.0 44 + -5.0 3.48 3.0 -3.48 5.0 3.0 45 + -4.46 0.31 0.0 3.4 5.0 3.0 -1 + -4.46 0.31 0.0 -0.01 5.0 3.0 -1 + -4.46 0.31 0.0 -0.01 5.0 0.0 -1 + -4.46 0.31 0.0 -1.09 3.48 0.0 37 + -3.48 0.31 0.0 -0.01 5.0 0.0 49 + -3.48 3.48 0.0 -3.4 5.0 3.0 -1 + -3.48 3.48 0.0 -3.4 5.0 3.0 46 + -3.48 3.48 0.0 -3.48 5.0 3.0 42 + -3.48 0.31 0.0 3.4 5.0 0.0 -1 + -3.48 0.31 0.0 -0.01 3.48 0.0 27 + -3.4 0.31 0.0 3.4 5.0 0.0 26 + -5.0 -5.0 0.0 5.0 5.0 3.0 -1 + -5.0 -5.0 0.0 3.48 5.0 1.5 -1 + -5.0 -5.0 0.0 3.48 -0.42 0.0 -1 + -5.0 -5.0 0.0 2.85 -4.46 0.0 32 + -0.01 -4.46 0.0 3.48 -0.42 0.0 -1 + -0.01 -4.46 0.0 3.48 -0.73 0.0 31 + -0.01 -4.46 0.0 3.48 -0.42 0.0 30 + -0.01 -0.73 0.0 3.48 5.0 1.5 -1 + -0.01 -0.73 0.0 3.48 0.0 1.5 -1 + -0.01 -0.73 0.0 3.48 0.0 1.5 -1 + -0.01 -0.73 0.0 3.48 -0.42 0.0 29 + -0.01 -0.42 0.0 3.48 0.0 1.5 -1 + -0.01 -0.42 0.0 3.48 -0.42 1.5 3 + -0.01 0.0 0.0 3.48 0.0 1.5 15 + -0.01 -0.42 0.0 3.48 0.0 1.5 -1 + -0.01 -0.42 0.0 3.48 0.0 1.5 -1 + -0.01 0.0 0.0 3.48 0.0 1.5 16 + -0.01 -0.42 0.0 3.48 -0.42 1.5 4 + -0.01 -0.42 1.5 3.48 0.0 1.5 -1 + -0.01 -0.42 1.5 3.48 0.0 1.5 24 + -0.01 -0.42 1.5 3.48 0.0 1.5 23 + -0.01 0.0 0.0 3.48 5.0 0.0 -1 + -0.01 0.0 0.0 3.48 0.47 0.0 -1 + -0.01 0.0 0.0 3.48 0.31 0.0 47 + -0.01 0.0 0.0 3.48 0.47 0.0 25 + -0.01 0.31 0.0 3.47 5.0 0.0 48 + 2.85 -5.0 0.0 5.0 5.0 3.0 -1 + 2.85 -5.0 0.0 5.0 -0.27 3.0 -1 + 2.85 -5.0 0.0 5.0 -4.46 3.0 -1 + 2.85 -5.0 0.0 3.48 -4.46 3.0 -1 + 2.85 -5.0 0.0 2.85 -4.46 3.0 0 + 2.85 -4.46 0.0 3.48 -4.46 3.0 1 + 2.85 -5.0 0.0 5.0 -4.46 3.0 -1 + 2.85 -5.0 0.0 3.48 -4.46 3.0 2 + 2.85 -5.0 3.0 5.0 -4.46 3.0 52 + 3.48 -5.0 0.0 5.0 -0.27 3.0 -1 + 3.48 -5.0 0.0 5.0 -0.27 3.0 -1 + 3.48 -5.0 3.0 5.0 -0.27 3.0 20 + 3.48 -4.46 0.0 3.48 -0.42 3.0 53 + 3.48 -4.46 0.0 3.48 -0.27 3.0 -1 + 3.48 -4.46 0.0 3.48 -0.42 3.0 58 + 3.48 -4.46 1.5 3.48 -0.27 3.0 56 + 3.4 -5.0 0.0 5.0 5.0 3.0 -1 + 3.47 -5.0 0.0 5.0 5.0 3.0 -1 + 3.48 -5.0 1.5 5.0 5.0 3.0 -1 + 3.48 -0.42 1.5 3.48 0.0 3.0 55 + 3.48 -5.0 3.0 5.0 5.0 3.0 54 + 3.47 0.0 0.0 3.48 0.47 1.5 59 + 3.4 -5.0 0.0 5.0 5.0 3.0 -1 + 3.47 -5.0 0.0 5.0 5.0 3.0 -1 + 3.48 -5.0 1.5 5.0 5.0 3.0 -1 + 3.48 -0.27 1.5 3.48 5.0 3.0 57 + 3.48 -5.0 3.0 5.0 5.0 3.0 19 + 3.47 0.0 0.0 3.48 5.0 3.0 61 + 3.4 0.47 0.0 3.48 5.0 3.0 60 +endnode +#Tile trimesh node +node trimesh Line119 + parent tin01_d08_01 + position -4.76 4.75 2.93 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 476.0 -475.0 7.0 + bitmap tin01_black + verts 11 + 0.26 -0.25 0.07 + 0.26 0.25 0.07 + -0.24 0.25 0.07 + -0.24 -0.25 0.07 + 9.76 -9.75 0.07 + 9.76 0.25 0.07 + 9.26 0.25 0.07 + 9.26 -2.25 0.07 + 9.26 -4.75 0.07 + 9.26 -7.25 0.07 + 9.26 -9.75 0.07 + faces 7 + 0 1 2 1 0 1 2 1 + 0 2 3 1 0 2 3 1 + 4 5 6 1 4 5 6 1 + 4 6 7 1 4 6 7 1 + 4 7 8 1 4 7 8 1 + 4 8 9 1 4 8 9 1 + 4 9 10 1 4 9 10 1 + tverts 11 + -144.002 30.0 0 + -144.0 30.5 0 + -144.5 30.5 0 + -144.5 30.0 0 + -134.5 20.5 0 + -134.5 30.5 0 + -135.0 30.5 0 + -134.998 28.0 0 + -134.998 25.5 0 + -135.0 23.0 0 + -135.0 20.5 0 +endnode +#Tile trimesh node +node trimesh Box2923 + parent tin01_d08_01 + position -3.41 5.09 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -16.5 -20.0 -219.0 + bitmap tin01_furnish2 + verts 10 + 0.01 -0.31 -3.69 + 0.01 -0.31 -1.27 + -0.07 -0.31 -2.2 + 0.01 -0.31 -0.69 + -0.34 -0.31 -0.69 + 0.01 -0.09 -3.69 + 0.01 -0.09 -1.27 + 0.01 -0.09 -0.69 + -0.34 -0.31 -2.2 + -0.07 -0.31 -3.69 + faces 9 + 0 1 2 1 0 1 2 6 + 3 4 1 1 3 4 1 6 + 0 5 1 2 5 6 7 3 + 6 1 5 2 8 7 6 3 + 7 3 6 2 9 10 8 3 + 1 6 3 2 7 8 10 3 + 2 1 4 1 2 1 4 6 + 8 2 4 1 11 2 4 6 + 2 9 0 1 2 12 0 6 + tverts 13 + -0.596283 -0.23919 0 + -0.596281 0.452184 0 + -0.620348 0.18706 0 + -0.596281 0.617953 0 + -0.696282 0.617953 0 + 0.219389 -0.0988962 0 + 0.285126 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 + -0.696282 0.188288 0 + -0.621104 -0.23919 0 +endnode +#Tile trimesh node +node trimesh Box2924 + parent tin01_d08_01 + position 3.4 5.09 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 17.5 -20.0 -218.0 + bitmap tin01_furnish2 + verts 10 + 0.35 -0.31 -2.19 + 0.35 -0.31 -0.68 + 0.0 -0.31 -1.26 + 0.0 -0.31 -0.68 + 0.0 -0.09 -3.68 + 0.0 -0.31 -3.68 + 0.0 -0.09 -1.26 + 0.0 -0.09 -0.68 + 0.08 -0.31 -2.19 + 0.08 -0.31 -3.68 + faces 9 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 5 2 2 4 5 6 3 + 2 6 4 2 6 7 4 3 + 3 7 6 2 8 9 7 3 + 6 2 3 2 7 6 8 3 + 8 0 2 1 10 0 2 6 + 5 9 2 1 11 12 2 6 + 9 8 2 1 12 10 2 6 + tverts 13 + 1.44658 0.187879 0 + 1.44658 0.617953 0 + 1.34658 0.452184 0 + 1.34658 0.617953 0 + 0.285126 -0.0988962 0 + 0.219389 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.219389 0.810195 0 + 0.285126 0.810195 0 + 1.36977 0.187755 0 + 1.34658 -0.23919 0 + 1.37001 -0.23919 0 +endnode +#Tile trimesh node +node trimesh Rectangle32 + parent tin01_d08_01 + position 3.58 4.89 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center -358.0 0.0 0.0 + bitmap tin01_black + verts 8 + -0.18 -0.11 0.0 + 0.17 -0.11 0.0 + 0.17 0.11 0.0 + -0.18 0.11 0.0 + -7.33 -0.11 0.0 + -6.98 -0.11 0.0 + -6.98 0.11 0.0 + -7.33 0.11 0.0 + faces 4 + 0 1 2 1 0 0 0 1 + 0 2 3 1 0 0 0 1 + 4 5 6 1 0 0 0 1 + 4 6 7 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Rectangle102 + parent tin01_d08_01 + position -4.8 3.37 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 621.0 -579.0 0.0 + bitmap tin01_black + verts 8 + 7.8 -8.37 0.0 + 8.55 -8.37 0.0 + 8.55 -7.98 0.0 + 7.8 -7.98 0.0 + 3.87 -3.95 0.0 + 4.67 -3.95 0.0 + 4.67 -3.21 0.0 + 3.87 -3.21 0.0 + faces 4 + 0 1 2 1 0 0 0 1 + 0 2 3 1 0 0 0 1 + 4 5 6 1 0 0 0 1 + 4 6 7 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Box3027 + parent tin01_d08_01 + position 3.37 -4.8 0.33 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -7.0 7.0 117.0 + bitmap tin01_door2 + verts 14 + -0.37 0.19 0.35 + 0.11 0.19 0.35 + 0.11 0.34 0.19 + -0.52 0.34 0.19 + -0.37 -0.2 0.35 + -0.52 -0.2 0.19 + 0.11 0.34 -0.33 + -0.52 0.34 -0.33 + -0.52 -0.2 -0.33 + -0.37 0.19 2.67 + -0.37 -0.2 2.67 + 0.38 0.19 2.67 + 0.38 0.19 1.16 + 0.11 0.19 1.16 + faces 14 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 0 5 2 4 5 6 1 + 3 5 0 2 7 6 5 1 + 3 2 6 4 3 2 8 1 + 6 7 3 4 8 9 3 1 + 5 3 7 8 6 7 10 1 + 7 8 5 8 10 11 6 1 + 0 4 9 4 12 13 14 3 + 10 9 4 4 15 14 13 3 + 0 9 11 8 16 17 18 5 + 11 12 13 8 18 19 20 5 + 13 1 0 8 20 21 16 5 + 11 13 0 8 18 20 16 5 + tverts 22 + 0.300601 1.05077 0 + 0.0546721 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.167227 1.04315 0 + 0.305378 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.357965 0.694046 0 + 0.173247 0.694046 0 + 0.395638 -0.497611 0 + 0.215041 -0.497611 0 + 0.395638 0.174409 0 + 0.215041 0.174409 0 + 0.047924 -0.502544 0 + 0.047924 0.174109 0 + 0.39879 0.174359 0 + 0.39879 -0.26474 0 + 0.276247 -0.265795 0 + 0.274456 -0.502544 0 +endnode +#Tile trimesh node +node trimesh Mesh05 + parent tin01_d08_01 + position -0.54 -0.21 4.26 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 0.0 -28.5 + bitmap tin01_door2 + verts 16 + 0.54 -0.52 0.52 + 0.54 0.52 0.52 + 0.54 0.52 0.69 + 0.54 -0.52 0.69 + -0.54 -0.52 0.52 + -0.54 -0.52 0.69 + -0.54 0.52 0.52 + -0.54 0.52 0.69 + 0.41 0.37 -1.26 + 0.41 0.37 0.35 + 0.41 -0.37 -1.26 + 0.41 -0.37 0.35 + -0.39 -0.37 -1.26 + -0.39 -0.37 0.35 + -0.39 0.37 -1.26 + -0.39 0.37 0.35 + faces 26 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 0 5 2 4 5 6 1 + 3 5 0 2 7 6 5 1 + 6 4 7 1 8 5 9 1 + 5 7 4 1 7 9 5 1 + 1 6 7 2 5 4 6 1 + 7 2 1 2 6 7 5 1 + 8 9 10 1 10 11 12 5 + 11 10 9 1 13 12 11 5 + 10 11 12 2 14 15 16 3 + 13 12 11 2 17 16 15 3 + 12 13 14 1 14 15 18 3 + 15 14 13 1 19 18 15 3 + 14 15 8 2 16 17 14 3 + 9 8 15 2 15 14 17 3 + 11 9 1 4 20 21 1 1 + 1 0 11 4 1 0 20 1 + 9 15 6 8 22 23 24 1 + 6 1 9 8 24 5 22 1 + 13 11 4 16 23 22 25 1 + 0 4 11 16 5 25 22 1 + 13 4 6 8 26 27 28 1 + 6 15 13 8 28 29 26 1 + 7 5 3 0 30 31 32 1 + 2 7 3 0 33 30 32 1 + tverts 34 + 0.0517443 0.437877 0 + 0.390491 0.437877 0 + 0.390491 0.523377 0 + 0.0517443 0.523377 0 + 0.048836 0.414929 0 + 0.405369 0.414929 0 + 0.048836 0.517406 0 + 0.405369 0.517406 0 + 0.0606773 0.414929 0 + 0.0606773 0.517406 0 + 0.278903 0.170171 0 + 0.39879 0.528703 0 + 0.047924 0.174109 0 + 0.047924 0.528703 0 + 0.395638 0.174409 0 + 0.395638 0.526576 0 + 0.0551832 0.174409 0 + 0.0551832 0.526576 0 + 0.0591303 0.174409 0 + 0.0591303 0.526576 0 + 0.099957 0.356483 0 + 0.342278 0.356483 0 + 0.403351 0.317374 0 + 0.0429154 0.317374 0 + 0.0468626 0.414929 0 + 0.0468624 0.414929 0 + 0.0351955 0.384792 0 + 0.0584208 0.467864 0 + 0.402799 0.470279 0 + 0.394447 0.37996 0 + 0.0501243 0.684175 0 + 0.0501242 0.354472 0 + 0.379827 0.354472 0 + 0.379827 0.684175 0 +endnode +#Tile trimesh node +node trimesh Box3029 + parent tin01_d08_01 + position -4.81 3.38 0.33 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 8.0 -8.0 117.0 + bitmap tin01_door2 + verts 14 + 0.2 -0.38 0.35 + 0.2 0.1 0.35 + 0.2 0.1 1.16 + 0.35 0.1 0.19 + 0.35 -0.53 0.19 + -0.19 -0.38 0.35 + -0.19 -0.53 0.19 + 0.35 0.1 -0.33 + 0.35 -0.53 -0.33 + -0.19 -0.53 -0.33 + 0.2 -0.38 2.67 + -0.19 -0.38 2.67 + 0.2 0.37 2.67 + 0.2 0.37 1.16 + faces 14 + 0 1 2 1 0 1 2 5 + 1 0 3 2 3 4 5 1 + 4 3 0 2 6 5 4 1 + 0 5 6 4 7 8 9 1 + 6 4 0 4 9 10 7 1 + 3 4 7 1 5 6 11 1 + 8 7 4 1 12 11 6 1 + 4 6 8 8 10 9 13 1 + 9 8 6 8 14 13 9 1 + 5 0 10 8 15 16 17 3 + 10 11 5 8 17 18 15 3 + 10 0 12 1 19 0 20 5 + 13 12 2 1 21 20 2 5 + 2 12 0 1 2 20 0 5 + tverts 22 + 0.047924 -0.502544 0 + 0.274456 -0.502544 0 + 0.276247 -0.265795 0 + 0.0546721 1.05077 0 + 0.300601 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.305378 1.04315 0 + 0.167227 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.357965 0.694046 0 + 0.173247 0.694046 0 + 0.215041 -0.497611 0 + 0.395638 -0.497611 0 + 0.395638 0.174409 0 + 0.215041 0.174409 0 + 0.047924 0.174109 0 + 0.39879 0.174359 0 + 0.39879 -0.26474 0 +endnode +#Tile trimesh node +node trimesh Rectangle105 + parent tin01_d08_01 + position -4.8 3.37 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center -0.5 0.5 0.0 + bitmap tin01_black + verts 4 + 0.19 0.38 0.0 + -0.2 0.38 0.0 + 0.19 -0.37 0.0 + -0.2 -0.37 0.0 + faces 2 + 0 1 2 1 0 0 0 1 + 1 3 2 1 0 0 0 1 +endnode +node light tin01_d08_01ml1 + parent tin01_d08_01 + position 0.0 0.0 5.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 14.0 + multiplier 1.0 + color 0.0 0.0 0.0 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +node light tin01_d08_01ml2 + parent tin01_d08_01 + position -2.17598 3.46326 4.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 5.0 + multiplier 1.0 + color 0.00392157 0.00392157 0.00392157 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +#Tile trimesh node +node trimesh blacky01 + parent tin01_d08_01 + position -3.37 -5.0 4.04 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 4 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 312.0 500.0 4.5 + bitmap tin01_black + verts 40 + -1.63 8.0 0.17 + -1.63 8.75 0.17 + -1.63 8.75 -1.04 + -1.63 8.0 -1.04 + 1.15 10.0 0.8 + 1.97 10.0 0.8 + 0.94 10.0 0.45 + 0.73 10.0 0.69 + 0.19 10.0 0.15 + 0.41 10.0 -0.09 + -0.03 10.0 -0.34 + -0.03 10.0 -1.04 + -0.38 10.0 1.13 + -0.03 10.0 0.8 + -0.38 10.0 -1.04 + 3.37 10.0 1.13 + 3.37 10.0 0.8 + 4.77 10.0 0.8 + 5.59 10.0 0.8 + 5.8 10.0 0.45 + 6.01 10.0 0.69 + 6.55 10.0 0.15 + 6.33 10.0 -0.09 + 6.77 10.0 -0.34 + 6.77 10.0 -1.04 + 6.77 10.0 0.8 + 7.12 10.0 1.13 + 7.12 10.0 -1.04 + 7.12 0.0 -1.04 + 6.37 0.0 -1.04 + 6.37 0.0 0.17 + 7.12 0.0 0.17 + 7.87 0.0 -1.04 + 7.12 0.0 -1.04 + 7.12 10.0 -1.04 + 7.87 10.0 -1.04 + 7.87 0.0 1.13 + 7.12 0.0 1.13 + 7.12 10.0 1.13 + 7.87 10.0 1.13 + faces 34 + 2 3 0 1 2 3 0 1 + 1 2 0 1 1 2 0 1 + 4 5 6 1 4 5 6 1 + 4 6 7 1 4 6 7 1 + 8 7 9 1 8 7 9 1 + 9 7 6 1 9 7 6 1 + 10 8 11 1 10 8 11 1 + 11 8 9 1 11 8 9 1 + 12 13 14 1 12 13 14 1 + 14 10 11 1 14 10 11 1 + 14 13 10 1 14 13 10 1 + 4 13 12 1 4 13 12 1 + 12 15 16 1 12 15 16 1 + 5 4 12 1 5 4 12 1 + 12 16 5 1 12 16 5 1 + 17 18 19 1 17 18 19 1 + 19 18 20 1 19 18 20 1 + 20 21 22 1 20 21 22 1 + 20 22 19 1 20 22 19 1 + 21 23 24 1 21 23 24 1 + 21 24 22 1 21 24 22 1 + 25 26 27 1 25 26 27 1 + 23 27 24 1 23 27 24 1 + 25 27 23 1 25 27 23 1 + 25 18 26 1 25 18 26 1 + 15 26 16 1 15 26 16 1 + 18 17 26 1 18 17 26 1 + 16 26 17 1 16 26 17 1 + 29 28 31 0 31 28 34 1 + 29 31 30 0 31 34 33 1 + 33 32 36 0 52 48 53 1 + 36 37 33 0 49 54 55 1 + 35 34 38 0 56 57 58 1 + 38 39 35 0 59 51 50 1 + tverts 72 + -163.0 800.0 0 + -163.0 875.0 0 + -163.0 875.0 0 + -163.0 800.0 0 + 115.0 1000.0 0 + 197.0 1000.0 0 + 94.0 1000.0 0 + 73.0 1000.0 0 + 19.0 1000.0 0 + 41.0 1000.0 0 + -3.00001 1000.0 0 + -3.00001 1000.0 0 + -38.0 1000.0 0 + -3.00001 1000.0 0 + -38.0 1000.0 0 + 337.0 1000.0 0 + 337.0 1000.0 0 + 477.0 1000.0 0 + 559.0 1000.0 0 + 580.0 1000.0 0 + 601.0 1000.0 0 + 655.0 1000.0 0 + 633.0 1000.0 0 + 677.0 1000.0 0 + 677.0 1000.0 0 + 677.0 1000.0 0 + 712.0 1000.0 0 + 712.0 1000.0 0 + 0.265279 0.653515 0 + 0.0692729 1.003 0 + 0.265279 1.003 0 + 0.215041 0.174409 0 + 0.215041 0.35 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.812499 0.830915 0 + 1.4375 0.642952 0 + 1.4375 0.830915 0 + 0.8125 0.774954 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 0.500499 0.5 0 + 1.4995 0.0 0 + 1.92108 0.0 0 + 1.92108 0.5 0 + 1.07492 0.0 0 + 1.07492 0.5 0 + 0.925075 0.0 0 + 0.925075 0.5 0 + 0.925075 0.0 0 + 1.07492 0.5 0 + 0.925075 0.5 0 + 0.925075 0.0 0 + 0.925075 0.0 0 + 1.07492 0.0 0 + 1.07492 0.5 0 + 1.07492 0.5 0 + 0.688285 0.0 0 + 0.000998914 0.0 0 + 0.688285 0.5 0 + 0.000998914 0.5 0 + 0.688285 0.0 0 + 0.938035 0.0 0 + 0.938035 0.5 0 + 0.938035 0.5 0 + 0.000998914 0.0 0 + 0.250749 0.0 0 + 0.250749 0.5 0 + 0.250749 0.5 0 +endnode +#Tile trimesh node +node trimesh bolt01 + parent tin01_d08_01 + position 5.0 -2.85 5.02 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.6 0.894118 0.721569 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10 + center -565.0 210.5 47.5 + bitmap tin01__metal01 + verts 90 + -9.67 5.41 0.16 + -9.67 5.35 0.16 + -9.67 5.39 0.22 + -9.67 5.46 0.2 + -9.67 5.46 0.12 + -9.67 5.39 0.1 + -9.95 5.35 0.16 + -9.95 5.39 0.22 + -9.95 5.46 0.2 + -9.95 5.46 0.12 + -9.95 5.39 0.1 + -9.67 4.06 1.86 + -9.67 4.0 1.86 + -9.67 4.04 1.92 + -9.67 4.11 1.9 + -9.67 4.11 1.82 + -9.67 4.04 1.8 + -9.95 4.0 1.86 + -9.95 4.04 1.92 + -9.95 4.11 1.9 + -9.95 4.11 1.82 + -9.95 4.04 1.8 + -9.67 6.26 -0.91 + -9.67 6.2 -0.91 + -9.67 6.24 -0.85 + -9.67 6.31 -0.87 + -9.67 6.31 -0.95 + -9.67 6.24 -0.97 + -9.95 6.2 -0.91 + -9.95 6.24 -0.85 + -9.95 6.31 -0.87 + -9.95 6.31 -0.95 + -9.95 6.24 -0.97 + -1.4 2.52 0.08 + -1.46 2.52 0.08 + -1.42 2.52 0.14 + -1.35 2.52 0.12 + -1.35 2.52 0.04 + -1.42 2.52 0.02 + -1.46 3.18 0.08 + -1.42 3.18 0.14 + -1.35 3.18 0.12 + -1.35 3.18 0.04 + -1.42 3.18 0.02 + -1.4 3.18 0.08 + -3.0 2.52 1.86 + -3.06 2.52 1.86 + -3.02 2.52 1.92 + -2.95 2.52 1.9 + -2.95 2.52 1.82 + -3.02 2.52 1.8 + -3.06 3.18 1.86 + -3.02 3.18 1.92 + -2.95 3.18 1.9 + -2.95 3.18 1.82 + -3.02 3.18 1.8 + -3.0 3.18 1.86 + -2.5 -2.1 0.16 + -2.46 -2.1 0.22 + -2.39 -2.1 0.2 + -2.39 -2.1 0.12 + -2.46 -2.1 0.1 + -2.5 -1.82 0.16 + -2.46 -1.82 0.22 + -2.39 -1.82 0.2 + -2.39 -1.82 0.12 + -2.46 -1.82 0.1 + -2.44 -1.82 0.16 + -3.85 -2.1 1.86 + -3.81 -2.1 1.92 + -3.74 -2.1 1.9 + -3.74 -2.1 1.82 + -3.81 -2.1 1.8 + -3.85 -1.82 1.86 + -3.81 -1.82 1.92 + -3.74 -1.82 1.9 + -3.74 -1.82 1.82 + -3.81 -1.82 1.8 + -3.79 -1.82 1.86 + -1.65 -2.1 -0.91 + -1.61 -2.1 -0.85 + -1.54 -2.1 -0.87 + -1.54 -2.1 -0.95 + -1.61 -2.1 -0.97 + -1.65 -1.82 -0.91 + -1.61 -1.82 -0.85 + -1.54 -1.82 -0.87 + -1.54 -1.82 -0.95 + -1.61 -1.82 -0.97 + -1.59 -1.82 -0.91 + faces 130 + 0 2 1 1 95 96 97 2 + 0 3 2 1 98 99 100 2 + 0 4 3 1 101 102 103 2 + 0 5 4 1 104 105 106 2 + 0 1 5 1 84 107 108 2 + 1 7 6 8 85 91 90 3 + 1 2 7 8 85 86 91 3 + 2 8 7 8 109 92 110 3 + 2 3 8 8 111 87 92 3 + 3 9 8 8 87 93 92 3 + 3 4 9 8 87 88 93 3 + 4 10 9 8 88 94 93 3 + 4 5 10 8 88 89 94 3 + 5 6 10 8 89 90 94 3 + 5 1 6 8 89 85 90 3 + 11 13 12 1 123 124 125 2 + 11 14 13 1 126 127 128 2 + 11 15 14 1 129 130 131 2 + 11 16 15 1 132 133 134 2 + 11 12 16 1 112 135 136 2 + 12 18 17 8 113 119 118 3 + 12 13 18 8 113 114 119 3 + 13 19 18 8 137 120 138 3 + 13 14 19 8 139 115 120 3 + 14 20 19 8 115 121 120 3 + 14 15 20 8 115 116 121 3 + 15 21 20 8 116 122 121 3 + 15 16 21 8 116 117 122 3 + 16 17 21 8 117 118 122 3 + 16 12 17 8 117 113 118 3 + 22 24 23 1 151 152 153 2 + 22 25 24 1 154 155 156 2 + 22 26 25 1 157 158 159 2 + 22 27 26 1 160 161 162 2 + 22 23 27 1 140 163 164 2 + 23 29 28 8 141 147 146 3 + 23 24 29 8 141 142 147 3 + 24 30 29 8 165 148 166 3 + 24 25 30 8 167 143 148 3 + 25 31 30 8 143 149 148 3 + 25 26 31 8 143 144 149 3 + 26 32 31 8 144 150 149 3 + 26 27 32 8 144 145 150 3 + 27 28 32 8 145 146 150 3 + 27 23 28 8 145 141 146 3 + 33 35 34 1 223 224 225 2 + 33 36 35 1 226 227 228 2 + 33 37 36 1 229 230 231 2 + 33 38 37 1 232 233 234 2 + 33 34 38 1 211 235 236 2 + 34 40 39 8 212 218 217 3 + 34 35 40 8 212 213 218 3 + 35 41 40 8 237 219 238 3 + 35 36 41 8 239 214 219 3 + 36 42 41 8 214 220 219 3 + 36 37 42 8 214 215 220 3 + 37 43 42 8 215 221 220 3 + 37 38 43 8 215 216 221 3 + 38 39 43 8 216 217 221 3 + 38 34 39 8 216 212 217 3 + 44 39 40 1 240 241 242 1 + 44 40 41 1 243 244 245 1 + 44 41 42 1 246 247 248 1 + 44 42 43 1 249 250 251 1 + 44 43 39 1 222 252 253 1 + 45 47 46 1 309 310 311 2 + 45 48 47 1 312 313 314 2 + 45 49 48 1 315 316 317 2 + 45 50 49 1 318 319 320 2 + 45 46 50 1 297 321 322 2 + 46 52 51 8 298 304 303 3 + 46 47 52 8 298 299 304 3 + 47 53 52 8 323 305 324 3 + 47 48 53 8 325 300 305 3 + 48 54 53 8 300 306 305 3 + 48 49 54 8 300 301 306 3 + 49 55 54 8 301 307 306 3 + 49 50 55 8 301 302 307 3 + 50 51 55 8 302 303 307 3 + 50 46 51 8 302 298 303 3 + 56 51 52 1 326 327 328 1 + 56 52 53 1 329 330 331 1 + 56 53 54 1 332 333 334 1 + 56 54 55 1 335 336 337 1 + 56 55 51 1 308 338 339 1 + 57 63 62 8 340 346 345 3 + 57 58 63 8 340 341 346 3 + 58 64 63 8 351 347 352 3 + 58 59 64 8 353 342 347 3 + 59 65 64 8 342 348 347 3 + 59 60 65 8 342 343 348 3 + 60 66 65 8 343 349 348 3 + 60 61 66 8 343 344 349 3 + 61 62 66 8 344 345 349 3 + 61 57 62 8 344 340 345 3 + 67 62 63 1 354 355 356 1 + 67 63 64 1 357 358 359 1 + 67 64 65 1 360 361 362 1 + 67 65 66 1 363 364 365 1 + 67 66 62 1 350 366 367 1 + 68 74 73 8 368 374 373 3 + 68 69 74 8 368 369 374 3 + 69 75 74 8 379 375 380 3 + 69 70 75 8 381 370 375 3 + 70 76 75 8 370 376 375 3 + 70 71 76 8 370 371 376 3 + 71 77 76 8 371 377 376 3 + 71 72 77 8 371 372 377 3 + 72 73 77 8 372 373 377 3 + 72 68 73 8 372 368 373 3 + 78 73 74 1 382 383 384 1 + 78 74 75 1 385 386 387 1 + 78 75 76 1 388 389 390 1 + 78 76 77 1 391 392 393 1 + 78 77 73 1 378 394 395 1 + 79 85 84 8 396 402 401 3 + 79 80 85 8 396 397 402 3 + 80 86 85 8 407 403 408 3 + 80 81 86 8 409 398 403 3 + 81 87 86 8 398 404 403 3 + 81 82 87 8 398 399 404 3 + 82 88 87 8 399 405 404 3 + 82 83 88 8 399 400 405 3 + 83 84 88 8 400 401 405 3 + 83 79 84 8 400 396 401 3 + 89 84 85 1 410 411 412 1 + 89 85 86 1 413 414 415 1 + 89 86 87 1 416 417 418 1 + 89 87 88 1 419 420 421 1 + 89 88 84 1 406 422 423 1 + tverts 424 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 +endnode +#Tile trimesh node +node trimesh construction01 + parent tin01_d08_01 + position -4.0 -0.2 3.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.87451 0.556863 0.337255 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 357.0 20.0 275.0 + bitmap tin01_furnish2 + verts 228 + 7.76 0.1 1.94 + 7.76 0.3 1.94 + 6.63 0.1 1.86 + 6.63 0.3 1.86 + 4.45 0.15 1.92 + 4.45 0.35 1.92 + 2.33 0.1 1.82 + 2.33 0.3 1.82 + -0.9 0.1 1.93 + -0.9 0.3 1.93 + 7.74 0.1 2.11 + 7.74 0.3 2.11 + 6.63 0.1 2.06 + 6.63 0.3 2.06 + 4.45 0.15 2.12 + 4.45 0.35 2.12 + 2.33 0.1 2.02 + 2.33 0.3 2.02 + -0.9 0.1 2.11 + -0.9 0.3 2.11 + 3.89 -4.71 1.94 + 4.09 -4.71 1.94 + 3.93 -2.42 1.94 + 4.13 -2.42 1.94 + 3.89 -0.28 1.86 + 4.09 -0.28 1.86 + 3.89 1.87 1.92 + 4.09 1.87 1.92 + 3.89 4.98 1.88 + 4.09 4.98 1.88 + 3.89 -4.7 2.11 + 4.09 -4.7 2.11 + 3.93 -2.42 2.14 + 4.13 -2.42 2.14 + 3.89 -0.28 2.06 + 4.09 -0.28 2.06 + 3.89 1.87 2.12 + 4.09 1.87 2.12 + 3.89 4.98 2.08 + 4.09 4.98 2.08 + 4.1 5.2 3.76 + 3.9 5.2 3.76 + 4.11 1.65 3.74 + 3.91 1.65 3.74 + 4.06 -0.53 3.8 + 3.86 -0.53 3.8 + 4.11 -2.65 3.7 + 3.91 -2.65 3.7 + 4.1 -4.8 3.76 + 3.9 -4.8 3.76 + 4.1 5.2 3.96 + 3.9 5.2 3.96 + 4.11 1.65 3.94 + 3.91 1.65 3.94 + 4.06 -0.53 4.0 + 3.86 -0.53 4.0 + 4.11 -2.65 3.9 + 3.91 -2.65 3.9 + 4.1 -4.8 3.96 + 3.9 -4.8 3.96 + 6.85 0.05 3.82 + 6.85 0.25 3.82 + 4.7 0.02 3.74 + 4.7 0.22 3.74 + 2.55 0.02 3.8 + 2.55 0.22 3.8 + -1.0 0.1 3.76 + -1.0 0.3 3.76 + 6.85 0.05 4.02 + 6.85 0.25 4.02 + 4.7 0.02 3.94 + 4.7 0.22 3.94 + 2.55 0.02 4.0 + 2.55 0.22 4.0 + -1.0 0.1 3.96 + -1.0 0.3 3.96 + 6.08 0.14 2.07 + 6.08 0.3 2.07 + 5.92 0.14 2.07 + 5.92 0.3 2.07 + 6.06 0.06 3.82 + 6.06 0.22 3.82 + 5.92 0.06 3.82 + 5.92 0.22 3.82 + 2.09 0.12 2.0 + 2.09 0.28 2.0 + 1.93 0.12 2.0 + 1.93 0.28 2.0 + 2.07 0.06 3.82 + 2.07 0.22 3.82 + 1.93 0.06 3.82 + 1.93 0.22 3.82 + 4.06 2.16 2.04 + 4.06 2.32 2.04 + 3.9 2.16 2.04 + 3.9 2.32 2.04 + 4.06 2.08 3.82 + 4.06 2.24 3.82 + 3.92 2.08 3.82 + 3.92 2.24 3.82 + 4.1 -1.88 2.07 + 4.1 -1.72 2.07 + 3.94 -1.88 2.07 + 3.94 -1.72 2.07 + 4.08 -1.96 3.82 + 4.08 -1.8 3.82 + 3.94 -1.96 3.82 + 3.94 -1.8 3.82 + -1.0 -4.8 3.72 + -0.9 -4.7 3.72 + -1.0 -0.8 3.72 + -0.91 -1.25 3.69 + -1.0 1.2 3.72 + -0.9 1.13 3.75 + -1.0 3.0 3.72 + -0.91 3.0 3.7 + -1.0 -4.8 3.92 + -0.9 -4.7 3.92 + -1.0 -0.8 3.92 + -0.91 -1.25 3.94 + -1.0 1.2 3.92 + -0.9 1.13 4.0 + -1.0 3.0 3.92 + -0.91 3.0 3.94 + -1.0 0.3 2.07 + -1.0 0.1 2.07 + -0.92 0.28 2.07 + -0.92 0.12 2.07 + -1.0 0.3 3.72 + -1.0 0.1 3.72 + -0.92 0.28 3.77 + -0.92 0.12 3.77 + 6.9 -4.8 3.72 + 6.8 -4.7 3.72 + 5.0 -4.8 3.72 + 5.45 -4.71 3.69 + 3.0 -4.8 3.72 + 3.07 -4.7 3.75 + -1.0 -4.8 3.72 + -0.9 -4.7 3.72 + 6.9 -4.8 3.92 + 6.8 -4.7 3.92 + 5.0 -4.8 3.92 + 5.45 -4.71 3.94 + 3.0 -4.8 3.92 + 3.07 -4.7 4.0 + -1.0 -4.8 3.92 + -0.9 -4.7 3.92 + 3.9 -4.8 2.07 + 4.1 -4.8 2.07 + 3.92 -4.72 2.07 + 4.08 -4.72 2.07 + 3.9 -4.8 3.72 + 4.1 -4.8 3.72 + 3.92 -4.72 3.77 + 4.08 -4.72 3.77 + 1.2 5.2 3.72 + 1.2 5.11 3.71 + 3.0 5.2 3.72 + 2.55 5.11 3.69 + 5.0 5.2 3.72 + 4.93 5.1 3.75 + 6.8 5.2 3.72 + 6.8 5.11 3.7 + 1.2 5.2 3.92 + 1.2 5.11 3.96 + 3.0 5.2 3.92 + 2.55 5.11 3.94 + 5.0 5.2 3.92 + 4.93 5.1 4.0 + 6.8 5.2 3.92 + 6.8 5.11 3.94 + 4.1 5.2 2.07 + 3.9 5.2 2.07 + 4.08 5.12 2.07 + 3.92 5.12 2.07 + 4.1 5.2 3.72 + 3.9 5.2 3.72 + 4.08 5.12 3.77 + 3.92 5.12 3.77 + -1.0 -4.8 1.92 + -0.9 -4.7 1.92 + -1.0 -0.8 1.92 + -0.91 -1.25 1.89 + -1.0 1.2 1.92 + -0.9 1.13 1.95 + -1.0 3.95 1.92 + -0.91 3.95 1.9 + -1.0 -4.8 2.12 + -0.9 -4.7 2.12 + -1.0 -0.8 2.12 + -0.91 -1.25 2.14 + -1.0 1.2 2.12 + -0.9 1.13 2.2 + -1.0 3.95 2.12 + -0.91 3.95 2.14 + 7.79 -4.8 1.92 + 7.74 -4.7 1.92 + 5.0 -4.8 1.92 + 5.45 -4.71 1.89 + 3.0 -4.8 1.92 + 3.07 -4.7 1.95 + -1.0 -4.8 1.92 + -0.9 -4.7 1.92 + 7.79 -4.8 2.12 + 7.74 -4.7 2.12 + 5.0 -4.8 2.12 + 5.45 -4.71 2.14 + 3.0 -4.8 2.12 + 3.07 -4.7 2.2 + -1.0 -4.8 2.12 + -0.9 -4.7 2.12 + 7.86 0.5 1.41 + 7.86 0.3 1.41 + 8.14 0.5 1.69 + 8.14 0.3 1.69 + 5.74 0.5 3.81 + 5.74 0.3 3.81 + 6.02 0.5 4.09 + 6.02 0.3 4.09 + 7.86 0.1 1.41 + 7.86 -0.1 1.41 + 8.14 0.1 1.69 + 8.14 -0.1 1.69 + 5.74 0.1 3.81 + 5.74 -0.1 3.81 + 6.02 0.1 4.09 + 6.02 -0.1 4.09 + faces 342 + 0 2 3 2 435 437 447 2 + 3 1 0 2 448 449 435 2 + 2 4 5 2 437 439 450 2 + 5 3 2 2 451 452 437 2 + 4 6 7 2 111 113 123 2 + 7 5 4 2 124 125 111 2 + 6 8 9 2 113 115 126 2 + 9 7 6 2 127 128 113 2 + 10 11 13 4 441 442 444 1 + 13 12 10 4 444 443 441 1 + 12 13 15 4 443 444 446 1 + 15 14 12 4 446 445 443 1 + 14 15 17 4 117 118 120 1 + 17 16 14 4 120 119 117 1 + 16 17 19 4 119 120 122 1 + 19 18 16 4 122 121 119 1 + 1 3 13 16 436 438 444 4 + 13 11 1 16 444 442 436 4 + 3 5 15 16 438 440 446 4 + 15 13 3 16 446 444 438 4 + 5 7 17 16 112 114 120 4 + 17 15 5 16 120 118 112 4 + 7 9 19 16 114 116 122 4 + 19 17 7 16 122 120 114 4 + 9 8 18 32 4 0 2 6 + 18 19 9 32 2 3 1 6 + 8 6 16 64 115 113 119 3 + 16 18 8 64 119 121 115 3 + 6 4 14 64 113 111 117 3 + 14 16 6 64 117 119 113 3 + 4 2 12 64 439 437 443 3 + 12 14 4 64 443 445 439 3 + 2 0 10 64 437 435 441 3 + 10 12 2 64 441 443 437 3 + 20 22 23 2 5 7 21 2 + 23 21 20 2 22 23 5 2 + 22 24 25 2 7 9 24 2 + 25 23 22 2 25 26 7 2 + 24 26 27 2 194 196 206 2 + 27 25 24 2 207 208 194 2 + 26 28 29 2 196 198 209 2 + 29 27 26 2 210 211 196 2 + 30 31 33 4 13 14 16 1 + 33 32 30 4 16 15 13 1 + 32 33 35 4 15 16 18 1 + 35 34 32 4 18 17 15 1 + 34 35 37 4 200 201 203 1 + 37 36 34 4 203 202 200 1 + 36 37 39 4 202 203 205 1 + 39 38 36 4 205 204 202 1 + 20 21 31 8 5 27 14 5 + 31 30 20 8 14 13 5 5 + 21 23 33 16 6 8 16 4 + 33 31 21 16 16 14 6 4 + 23 25 35 16 8 10 18 4 + 35 33 23 16 18 16 8 4 + 25 27 37 16 195 197 203 4 + 37 35 25 16 203 201 195 4 + 27 29 39 16 197 199 205 4 + 39 37 27 16 205 203 197 4 + 29 28 38 32 28 11 19 6 + 38 39 29 32 19 20 12 6 + 28 26 36 64 198 196 202 3 + 36 38 28 64 202 204 198 3 + 26 24 34 64 196 194 200 3 + 34 36 26 64 200 202 196 3 + 24 22 32 64 9 7 15 3 + 32 34 24 64 15 17 9 3 + 22 20 30 64 7 5 13 3 + 30 32 22 64 13 15 7 3 + 40 42 43 2 212 214 224 2 + 43 41 40 2 225 226 212 2 + 42 44 45 2 214 216 227 2 + 45 43 42 2 228 229 214 2 + 44 46 47 2 30 32 44 2 + 47 45 44 2 45 46 30 2 + 46 48 49 2 32 34 47 2 + 49 47 46 2 48 49 32 2 + 50 51 53 4 218 219 221 1 + 53 52 50 4 221 220 218 1 + 52 53 55 4 220 221 223 1 + 55 54 52 4 223 222 220 1 + 54 55 57 4 38 39 41 1 + 57 56 54 4 41 40 38 1 + 56 57 59 4 40 41 43 1 + 59 58 56 4 43 42 40 1 + 40 41 51 8 29 50 37 5 + 51 50 40 8 37 36 29 5 + 41 43 53 16 213 215 221 4 + 53 51 41 16 221 219 213 4 + 43 45 55 16 215 217 223 4 + 55 53 43 16 223 221 215 4 + 45 47 57 16 31 33 41 4 + 57 55 45 16 41 39 31 4 + 47 49 59 16 33 35 43 4 + 59 57 47 16 43 41 33 4 + 48 46 56 64 34 32 40 3 + 56 58 48 64 40 42 34 3 + 46 44 54 64 32 30 38 3 + 54 56 46 64 38 40 32 3 + 44 42 52 64 216 214 220 3 + 52 54 44 64 220 222 216 3 + 42 40 50 64 214 212 218 3 + 50 52 42 64 218 220 214 3 + 60 62 63 2 51 53 63 2 + 63 61 60 2 64 65 51 2 + 62 64 65 2 129 131 141 2 + 65 63 62 2 142 143 129 2 + 64 66 67 2 131 133 144 2 + 67 65 64 2 145 146 131 2 + 68 69 71 4 57 58 60 1 + 71 70 68 4 60 59 57 1 + 70 71 73 4 135 136 138 1 + 73 72 70 4 138 137 135 1 + 72 73 75 4 137 138 140 1 + 75 74 72 4 140 139 137 1 + 61 63 71 16 52 54 60 4 + 71 69 61 16 60 58 52 4 + 63 65 73 16 130 132 138 4 + 73 71 63 16 138 136 130 4 + 65 67 75 16 132 134 140 4 + 75 73 65 16 140 138 132 4 + 67 66 74 32 66 55 61 6 + 74 75 67 32 61 62 56 6 + 66 64 72 64 133 131 137 3 + 72 74 66 64 137 139 133 3 + 64 62 70 64 131 129 135 3 + 70 72 64 64 135 137 131 3 + 62 60 68 64 53 51 57 3 + 68 70 62 64 57 59 53 3 + 76 77 81 8 67 68 72 5 + 81 80 76 8 72 71 67 5 + 77 79 83 16 68 70 74 4 + 83 81 77 16 74 72 68 4 + 79 78 82 32 75 69 73 6 + 82 83 79 32 73 76 77 6 + 78 76 80 64 69 67 71 3 + 80 82 78 64 71 73 69 3 + 84 85 89 8 78 79 83 5 + 89 88 84 8 83 82 78 5 + 85 87 91 16 79 81 85 4 + 91 89 85 16 85 83 79 4 + 87 86 90 32 86 80 84 6 + 90 91 87 32 84 87 88 6 + 86 84 88 64 80 78 82 3 + 88 90 86 64 82 84 80 3 + 92 93 97 8 89 90 94 5 + 97 96 92 8 94 93 89 5 + 93 95 99 16 90 92 96 4 + 99 97 93 16 96 94 90 4 + 95 94 98 32 97 91 95 6 + 98 99 95 32 95 98 99 6 + 94 92 96 64 91 89 93 3 + 96 98 94 64 93 95 91 3 + 100 101 105 8 100 101 105 5 + 105 104 100 8 105 104 100 5 + 101 103 107 16 101 103 107 4 + 107 105 101 16 107 105 101 4 + 103 102 106 32 108 102 106 6 + 106 107 103 32 106 109 110 6 + 102 100 104 64 102 100 104 3 + 104 106 102 64 104 106 102 3 + 108 110 111 2 312 313 314 2 + 111 109 108 2 314 315 312 2 + 110 112 113 2 164 166 167 2 + 113 111 110 2 167 165 164 2 + 112 114 115 2 166 168 169 2 + 115 113 112 2 169 167 166 2 + 116 117 119 4 343 344 345 1 + 119 118 116 4 345 346 343 1 + 118 119 121 4 171 170 172 1 + 121 120 118 4 172 173 171 1 + 120 121 123 4 173 172 174 1 + 123 122 120 4 174 175 173 1 + 108 109 117 8 176 177 178 5 + 117 116 108 8 179 180 181 5 + 109 111 119 16 315 314 318 4 + 119 117 109 16 319 320 315 4 + 111 113 121 16 165 167 182 4 + 121 119 111 16 183 184 165 4 + 113 115 123 16 167 169 185 4 + 123 121 113 16 186 187 167 4 + 114 112 120 64 168 166 173 3 + 120 122 114 64 173 175 168 3 + 112 110 118 64 166 164 171 3 + 118 120 112 64 171 173 166 3 + 110 108 116 64 313 312 316 3 + 116 118 110 64 316 317 313 3 + 124 125 129 8 147 148 151 5 + 129 128 124 8 151 150 147 5 + 125 127 131 16 157 159 163 4 + 131 129 125 16 163 161 157 4 + 127 126 130 32 153 149 152 6 + 130 131 127 32 152 154 155 6 + 126 124 128 64 158 156 160 3 + 128 130 126 64 160 162 158 3 + 123 114 122 0 188 189 190 1 + 115 114 123 0 191 192 193 1 + 132 134 135 2 330 331 332 2 + 135 133 132 2 332 333 330 2 + 134 136 137 2 247 249 250 2 + 137 135 134 2 250 248 247 2 + 136 138 139 2 321 323 324 2 + 139 137 136 2 324 322 321 2 + 140 141 143 4 347 348 349 1 + 143 142 140 4 349 350 347 1 + 142 143 145 4 252 251 253 1 + 145 144 142 4 253 254 252 1 + 144 145 147 4 340 339 341 1 + 147 146 144 4 341 342 340 1 + 133 135 143 16 333 332 336 4 + 143 141 133 16 337 338 333 4 + 135 137 145 16 248 250 255 4 + 145 143 135 16 256 257 248 4 + 137 139 147 16 322 324 327 4 + 147 145 137 16 328 329 322 4 + 138 136 144 64 323 321 325 3 + 144 146 138 64 325 326 323 3 + 136 134 142 64 249 247 252 3 + 142 144 136 64 252 254 249 3 + 134 132 140 64 331 330 334 3 + 140 142 134 64 334 335 331 3 + 148 149 153 8 230 231 234 5 + 153 152 148 8 234 233 230 5 + 149 151 155 16 240 242 246 4 + 155 153 149 16 246 244 240 4 + 151 150 154 32 236 232 235 6 + 154 155 151 32 235 237 238 6 + 150 148 152 64 241 239 243 3 + 152 154 150 64 243 245 241 3 + 156 158 159 2 275 276 277 2 + 159 157 156 2 277 278 275 2 + 158 160 161 2 276 279 280 2 + 161 159 158 2 280 277 276 2 + 160 162 163 2 279 281 282 2 + 163 161 160 2 282 280 279 2 + 164 165 167 4 283 284 285 1 + 167 166 164 4 285 286 283 1 + 166 167 169 4 286 285 287 1 + 169 168 166 4 287 288 286 1 + 168 169 171 4 288 287 289 1 + 171 170 168 4 289 290 288 1 + 156 157 165 8 291 292 293 5 + 165 164 156 8 294 295 296 5 + 157 159 167 16 278 277 297 4 + 167 165 157 16 298 299 278 4 + 159 161 169 16 277 280 300 4 + 169 167 159 16 301 302 277 4 + 161 163 171 16 280 282 303 4 + 171 169 161 16 304 305 280 4 + 162 160 168 64 281 279 288 3 + 168 170 162 64 288 290 281 3 + 160 158 166 64 279 276 286 3 + 166 168 160 64 286 288 279 3 + 158 156 164 64 276 275 283 3 + 164 166 158 64 283 286 276 3 + 172 173 177 8 258 259 262 5 + 177 176 172 8 262 261 258 5 + 173 175 179 16 268 270 274 4 + 179 177 173 16 274 272 268 4 + 175 174 178 32 264 260 263 6 + 178 179 175 32 263 265 266 6 + 174 172 176 64 269 267 271 3 + 176 178 174 64 271 273 269 3 + 171 162 170 0 306 307 308 1 + 163 162 171 0 309 310 311 1 + 180 182 183 2 385 386 387 2 + 183 181 180 2 387 388 385 2 + 182 184 185 2 351 353 354 2 + 185 183 182 2 354 352 351 2 + 184 186 187 2 411 413 414 2 + 187 185 184 2 414 412 411 2 + 188 189 191 4 407 408 409 1 + 191 190 188 4 409 410 407 1 + 190 191 193 4 356 355 357 1 + 193 192 190 4 357 358 356 1 + 192 193 195 4 416 415 417 1 + 195 194 192 4 417 418 416 1 + 180 181 189 8 359 360 361 5 + 189 188 180 8 362 363 364 5 + 181 183 191 16 388 387 391 4 + 191 189 181 16 392 393 388 4 + 183 185 193 16 352 354 365 4 + 193 191 183 16 366 367 352 4 + 185 187 195 16 412 414 419 4 + 195 193 185 16 420 421 412 4 + 186 184 192 64 413 411 416 3 + 192 194 186 64 416 418 413 3 + 184 182 190 64 353 351 356 3 + 190 192 184 64 356 358 353 3 + 182 180 188 64 386 385 389 3 + 188 190 182 64 389 390 386 3 + 195 186 194 0 368 369 370 1 + 187 186 195 0 371 372 373 1 + 196 198 199 2 422 423 424 2 + 199 197 196 2 424 425 422 2 + 198 200 201 2 374 376 377 2 + 201 199 198 2 377 375 374 2 + 200 202 203 2 394 396 397 2 + 203 201 200 2 397 395 394 2 + 204 205 207 4 431 432 433 1 + 207 206 204 4 433 434 431 1 + 206 207 209 4 379 378 380 1 + 209 208 206 4 380 381 379 1 + 208 209 211 4 404 403 405 1 + 211 210 208 4 405 406 404 1 + 197 199 207 16 425 424 428 4 + 207 205 197 16 429 430 425 4 + 199 201 209 16 375 377 382 4 + 209 207 199 16 383 384 375 4 + 201 203 211 16 395 397 400 4 + 211 209 201 16 401 402 395 4 + 202 200 208 64 396 394 398 3 + 208 210 202 64 398 399 396 3 + 200 198 206 64 376 374 379 3 + 206 208 200 64 379 381 376 3 + 198 196 204 64 423 422 426 3 + 204 206 198 64 426 427 423 3 + 212 214 215 2 465 466 467 2 + 215 213 212 2 468 469 470 2 + 216 217 219 4 471 472 473 1 + 219 218 216 4 474 475 476 1 + 212 213 217 8 457 458 462 5 + 217 216 212 8 462 461 457 5 + 213 215 219 16 458 460 464 4 + 219 217 213 16 464 462 458 4 + 215 214 218 32 477 459 463 6 + 218 219 215 32 463 478 479 6 + 214 212 216 64 459 457 461 3 + 216 218 214 64 461 463 459 3 + 220 222 223 2 488 489 490 2 + 223 221 220 2 491 492 493 2 + 224 225 227 4 494 495 496 1 + 227 226 224 4 497 498 499 1 + 220 221 225 8 480 481 485 5 + 225 224 220 8 485 484 480 5 + 221 223 227 16 481 483 487 4 + 227 225 221 16 487 485 481 4 + 223 222 226 32 500 482 486 6 + 226 227 223 32 486 501 502 6 + 222 220 224 64 482 480 484 3 + 224 226 222 64 484 486 482 3 + tverts 503 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 2.9985 0 + 0.344242 -1.04225 0 + 0.273035 -1.04225 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 1.95475 0 + 0.174465 0.00149864 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 2.9985 0 + 0.104128 2.9985 0 + 0.104128 2.24925 0 + 0.104128 0.00149864 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 1.95475 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 3.66842 0 + 0.104128 3.66842 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 3.66842 0 + 0.175144 3.66842 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 3.66842 0 + 0.104128 3.66842 0 + 0.104128 2.24925 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.348651 2.41652 0 + 0.277444 2.41652 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.419858 2.41652 0 + 0.349339 2.41652 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.277444 2.41652 0 + 0.277444 2.41652 0 + 0.273035 1.2055 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.326305 2.43905 0 + 0.255098 2.43905 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.397512 2.43905 0 + 0.326993 2.43905 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.255098 2.43905 0 + 0.255098 2.43905 0 + 0.273035 1.2055 0 + 0.159393 -0.654153 0 + 0.0890555 -0.654153 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.229729 -0.654153 0 + 0.160072 -0.654153 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.0890555 -0.654153 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.0337728 0.940718 0 + 0.0337728 -0.0582831 0 + 0.243649 -0.0582831 0 + 0.310278 -0.0582831 0 + 0.177022 -0.0582831 0 + 0.376905 -0.0582831 0 + 0.237631 0.940718 0 + 0.316296 0.940718 0 + 0.177022 0.940718 0 + 0.376905 0.940718 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 -0.0109385 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -0.0109385 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.37945 -0.0109385 0 + 0.404514 -0.0109386 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -0.0109386 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.320422 -1.13992 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -1.13992 0 + 0.37945 -1.13992 0 + 0.37945 0.674666 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -1.13992 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.35824 0 + 0.23974 2.35824 0 + 0.316414 0.879271 0 + 0.316414 2.35824 0 + 0.172541 2.35824 0 + 0.172541 2.35824 0 + 0.170192 0.852609 0 + 0.257387 -1.76798 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -1.76798 0 + 0.316414 -1.76798 0 + 0.316414 0.117489 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -1.76798 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.35824 0 + 0.316414 2.39498 0 + 0.37945 -1.19967 0 + 0.404514 -1.13992 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.316414 -1.82165 0 + 0.341479 -1.76798 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.164791 0.513932 0 + 0.147595 0.342531 0 + 0.164791 1.27572 0 + 0.141295 1.24906 0 + 0.250616 0.342531 0 + 0.223819 0.513932 0 + 0.248267 1.24906 0 + 0.223819 1.27572 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.0775959 1.24906 0 + 0.0775959 1.24906 0 + 0.079945 0.342531 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.164791 -1.30066 0 + 0.164791 0.513932 0 + 0.147595 0.342531 0 + 0.146631 -1.30066 0 + 0.223819 -1.30066 0 + 0.223819 0.513932 0 + 0.079945 0.342531 0 + 0.079945 0.342531 0 + 0.0782129 -1.30066 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.19751 0 + 0.0841089 2.19751 0 + 0.160783 0.718537 0 + 0.160783 2.19751 0 + 0.01691 2.19751 0 + 0.01691 2.19751 0 + 0.014561 0.691875 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.19751 0 + 0.160783 2.23425 0 + 0.223819 -1.3604 0 + 0.248883 -1.30066 0 + 0.250616 0.342531 0 + 0.223819 0.513932 0 + 0.164791 1.27572 0 + 0.141295 1.24906 0 + 0.164791 2.261 0 + 0.147144 2.261 0 + 0.248267 1.24906 0 + 0.223819 1.27572 0 + 0.250616 2.261 0 + 0.223819 2.261 0 + 0.079946 2.261 0 + 0.079946 2.261 0 + 0.0775959 1.24906 0 + 0.101756 -1.12541 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.12541 0 + 0.160783 -1.12541 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.12541 0 + 0.160783 -1.17908 0 + 0.185848 -1.12541 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.174465 0.521668 0 + 0.104128 0.521668 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.244801 0.521668 0 + 0.175144 0.521668 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.521668 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.00149864 0 + 0.104128 2.9985 0 + 0.251779 -1.21921 0 + 0.326839 -1.21921 0 + 0.0725431 -1.21921 0 + 0.506074 -1.21921 0 + 0.251779 -0.220206 0 + 0.326839 -0.220206 0 + 0.0725431 -0.220206 0 + 0.506074 -0.220206 0 + 0.323181 -0.753007 0 + 0.255437 -0.753007 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.323181 -0.686406 0 + 0.323181 -0.753007 0 + 0.323181 -0.753007 0 + 0.323181 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.753007 0 + 0.323181 -0.753007 0 + -0.00251664 -1.21921 0 + -0.00251664 -0.220206 0 + -0.00251664 -1.21921 0 + 0.251779 -1.70471 0 + 0.326839 -1.70471 0 + 0.0725431 -1.70471 0 + 0.506074 -1.70471 0 + 0.251779 -0.705713 0 + 0.326839 -0.705713 0 + 0.0725431 -0.705713 0 + 0.506074 -0.705713 0 + 0.323181 -1.23851 0 + 0.255437 -1.23851 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.323181 -1.17191 0 + 0.323181 -1.23851 0 + 0.323181 -1.23851 0 + 0.323181 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.23851 0 + 0.323181 -1.23851 0 + -0.00251664 -1.70471 0 + -0.00251664 -0.705713 0 + -0.00251664 -1.70471 0 +endnode +#Tile trimesh node +node trimesh pillprt01 + parent tin01_d08_01 + position -4.73 3.37 4.26 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -7.5 0.5 -65.5 + bitmap tin01_door2 + verts 13 + 0.12 -0.37 -0.55 + 0.12 0.38 -0.55 + -0.27 -0.37 -0.55 + 0.12 0.38 -1.26 + 0.12 -0.37 -1.26 + -0.27 -0.37 -1.26 + -0.27 -0.37 -0.05 + -0.27 0.38 -0.05 + -0.17 -0.37 -0.36 + -0.17 0.38 -0.36 + -0.17 -0.37 -0.05 + -0.17 0.38 -0.05 + -0.27 -0.37 -0.36 + faces 14 + 1 0 3 1 0 1 2 5 + 4 3 0 1 3 2 1 5 + 4 0 5 2 7 8 9 3 + 2 5 0 2 10 9 8 3 + 2 0 8 0 61 62 63 1 + 2 8 12 0 43 64 65 1 + 8 10 6 0 66 67 68 1 + 8 0 1 0 69 41 70 1 + 8 1 9 0 71 42 72 1 + 8 9 11 0 73 47 74 1 + 8 11 10 0 75 76 77 1 + 10 11 7 0 78 49 79 1 + 10 7 6 0 48 45 80 1 + 12 8 6 0 50 46 44 1 + tverts 101 + 0.39879 0.35 0 + 0.047924 0.35 0 + 0.39879 0.174359 0 + 0.047924 0.174109 0 + 0.0692728 0.653515 0 + 0.265279 0.653515 0 + 0.0692729 1.003 0 + 0.395638 0.174409 0 + 0.395638 0.35 0 + 0.215041 0.174409 0 + 0.215041 0.35 0 + 0.12013 0.470888 0 + 0.000249729 0.504188 0 + 0.18673 0.597428 0 + 0.12013 0.597428 0 + 0.000249773 0.697328 0 + 0.12013 0.797228 0 + 0.477454 0.504188 0 + 0.477454 0.597428 0 + 0.477454 0.697328 0 + 0.477454 0.763928 0 + 0.12013 0.470888 0 + 0.37987 0.470888 0 + 0.18673 0.597428 0 + 0.18673 0.597428 0 + 0.12013 0.597428 0 + 0.18673 0.597428 0 + 0.18673 0.797228 0 + 0.12013 0.797228 0 + 0.000249773 0.697328 0 + 0.477454 0.504188 0 + 0.000249773 0.697328 0 + 0.477454 0.697328 0 + 0.000249773 0.597428 0 + 0.477454 0.797228 0 + 0.000249773 0.597428 0 + 0.477454 0.797228 0 + 0.000249773 0.797228 0 + 0.000249773 0.697328 0 + 0.477454 0.763928 0 + 0.000249788 0.763928 0 + 0.0373349 0.154797 0 + 0.38537 0.154797 0 + 0.211353 0.219764 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.257757 0.307933 0 + 0.38537 0.307933 0 + 0.0373349 0.289371 0 + 0.38537 0.289371 0 + 0.211353 0.307933 0 + 0.037335 0.516754 0 + 0.38537 0.516754 0 + 0.211353 0.219764 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.164948 0.307933 0 + 0.0373349 0.307933 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.211353 0.307933 0 + 0.211353 0.219764 0 + 0.392331 0.219764 0 + 0.257757 0.307933 0 + 0.257757 0.307933 0 + 0.211353 0.307933 0 + 0.257757 0.307933 0 + 0.257757 0.451787 0 + 0.211353 0.451787 0 + 0.0373349 0.289371 0 + 0.38537 0.154797 0 + 0.0373349 0.289371 0 + 0.38537 0.289371 0 + 0.0373349 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.451787 0 + 0.0373349 0.289371 0 + 0.38537 0.335775 0 + 0.037335 0.335775 0 + 0.211353 0.219764 0 + 0.164948 0.307933 0 + 0.0303742 0.219764 0 + 0.211353 0.307933 0 + 0.164948 0.307933 0 + 0.164948 0.307933 0 + 0.211353 0.451787 0 + 0.164948 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.516754 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.38537 0.307933 0 + 0.0373349 0.451787 0 + 0.38537 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.335775 0 + 0.037335 0.335775 0 +endnode +#Tile trimesh node +node trimesh pillprt02 + parent tin01_d08_01 + position 3.37 -4.73 4.26 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.5 -7.5 -65.5 + bitmap tin01_door2 + verts 15 + 0.38 0.12 -0.55 + -0.37 0.12 -0.55 + 0.38 -0.27 -0.55 + -0.37 -0.27 -0.55 + -0.37 0.12 -1.26 + 0.38 0.12 -1.26 + 0.38 -0.27 -1.26 + -0.37 -0.27 -1.26 + -0.37 -0.27 -0.05 + 0.38 -0.27 -0.05 + -0.37 -0.17 -0.36 + 0.38 -0.17 -0.36 + -0.37 -0.17 -0.05 + 0.38 -0.17 -0.05 + -0.37 -0.27 -0.36 + faces 16 + 1 0 4 1 0 1 2 5 + 5 4 0 1 3 2 1 5 + 6 5 0 2 4 5 6 1 + 0 2 6 2 6 7 4 1 + 7 3 4 2 8 9 10 3 + 1 4 3 2 11 10 9 3 + 3 10 1 0 22 23 24 1 + 3 14 10 0 14 25 26 1 + 10 8 12 0 27 28 29 1 + 10 0 1 0 30 31 12 1 + 10 11 0 0 32 33 13 1 + 10 13 11 0 34 35 18 1 + 10 12 13 0 36 37 38 1 + 12 9 13 0 39 40 20 1 + 12 8 9 0 19 41 16 1 + 14 8 10 0 21 15 17 1 + tverts 42 + 0.047924 0.35 0 + 0.39879 0.35 0 + 0.047924 0.174109 0 + 0.39879 0.174359 0 + 0.265279 0.653515 0 + 0.0692728 0.653515 0 + 0.0692729 1.003 0 + 0.265279 1.003 0 + 0.215041 0.174409 0 + 0.215041 0.35 0 + 0.395638 0.174409 0 + 0.395638 0.35 0 + 0.037335 0.516754 0 + 0.38537 0.516754 0 + 0.211353 0.219764 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.164948 0.307933 0 + 0.0373349 0.307933 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.211353 0.307933 0 + 0.211353 0.219764 0 + 0.164948 0.307933 0 + 0.0303742 0.219764 0 + 0.211353 0.307933 0 + 0.164948 0.307933 0 + 0.164948 0.307933 0 + 0.211353 0.451787 0 + 0.164948 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.516754 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.38537 0.307933 0 + 0.0373349 0.451787 0 + 0.38537 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.335775 0 + 0.037335 0.335775 0 +endnode +#Tile trimesh node +node trimesh roof01 + parent tin01_d08_01 + position -4.5 0.0 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 325.0 0.0 183.0 + bitmap tin01_plank + verts 11 + 7.0 -5.0 1.83 + 7.0 -2.5 1.83 + 2.0 -5.0 1.83 + -0.5 -2.5 1.83 + 2.0 -2.5 1.83 + -0.5 2.5 1.83 + 2.0 5.0 1.83 + 2.0 2.5 1.83 + 7.0 5.0 1.83 + 7.0 2.5 1.83 + -0.5 -5.0 1.83 + faces 10 + 3 5 7 0 4 6 8 1 + 3 7 4 0 4 8 5 1 + 4 7 9 0 5 8 11 1 + 7 6 8 0 8 7 9 1 + 7 8 9 0 8 9 11 1 + 4 9 1 0 5 11 2 1 + 4 1 0 0 5 2 1 1 + 4 0 2 0 5 1 3 1 + 3 4 2 0 4 5 3 1 + 3 2 10 0 4 3 13 1 + tverts 14 + 1.999 0.500499 0 + 1.4995 0.000999093 0 + 1.4995 0.500499 0 + 0.500499 0.000999331 0 + 0.000999212 0.5005 0 + 0.5005 0.5005 0 + 0.000999451 1.4995 0 + 0.5005 1.999 0 + 0.5005 1.4995 0 + 1.4995 1.999 0 + 1.999 1.4995 0 + 1.4995 1.4995 0 + 1.999 0.000998974 0 + 0.000999093 0.000999451 0 +endnode +#Tile trimesh node +node trimesh roofrim01 + parent tin01_d08_01 + position -4.5 0.0 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 387.5 0.0 91.5 + bitmap tin01_floor + verts 12 + -0.5 2.5 1.83 + -0.5 3.75 0.0 + 0.75 5.0 0.0 + 0.75 3.75 0.0 + 2.0 5.0 1.83 + 2.0 2.5 1.83 + 7.0 5.0 1.83 + 8.25 5.0 0.0 + 8.25 -5.0 0.0 + 7.0 -5.0 1.83 + 7.0 -2.5 1.83 + 7.0 2.5 1.83 + faces 8 + 1 3 5 0 12 13 14 1 + 1 5 0 0 1 15 0 1 + 3 2 4 0 16 2 17 1 + 3 4 5 0 3 4 5 1 + 7 8 9 0 18 8 19 1 + 7 11 6 0 20 21 6 1 + 7 9 10 0 22 9 23 1 + 7 10 11 0 7 10 11 1 + tverts 24 + 0.0 0.125981 0 + 0.5 0.125981 0 + 0.5 1.99911 0 + 0.5 1.74936 0 + 0.0 1.99911 0 + 0.0 1.49961 0 + 0.0 0.00110595 0 + 0.5 0.00110603 0 + 0.5 1.99911 0 + 0.0 1.99911 0 + 0.0 1.49961 0 + 0.0 0.500606 0 + 0.5 0.125981 0 + 0.5 0.375731 0 + 0.0 0.625481 0 + 0.0 0.625481 0 + 0.5 1.74936 0 + 0.0 1.99911 0 + 0.5 0.00110603 0 + 0.0 1.99911 0 + 0.5 0.00110603 0 + 0.0 0.500606 0 + 0.5 0.00110603 0 + 0.0 1.49961 0 +endnode +#Tile trimesh node +node trimesh strut01 + parent tin01_d08_01 + position 1.0 -1.0 3.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.87451 0.556863 0.337255 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -163.0 37.0 245.0 + bitmap tin01_furnish2 + verts 16 + 2.36 -3.7 0.81 + 2.36 -3.9 0.81 + 2.64 -3.7 1.09 + 2.64 -3.9 1.09 + -0.06 -3.7 3.81 + -0.06 -3.9 3.81 + 0.22 -3.7 4.09 + 0.22 -3.9 4.09 + -5.9 4.36 0.81 + -5.7 4.36 0.81 + -5.9 4.64 1.09 + -5.7 4.64 1.09 + -5.9 1.94 3.81 + -5.7 1.94 3.81 + -5.9 2.22 4.09 + -5.7 2.22 4.09 + faces 24 + 0 2 3 2 8 9 10 2 + 3 1 0 2 11 12 13 2 + 4 5 7 4 14 15 16 1 + 7 6 4 4 17 18 19 1 + 0 1 5 8 0 1 5 5 + 5 4 0 8 5 4 0 5 + 1 3 7 16 1 3 7 4 + 7 5 1 16 7 5 1 4 + 3 2 6 32 20 2 6 6 + 6 7 3 32 6 21 22 6 + 2 0 4 64 2 0 4 3 + 4 6 2 64 4 6 2 3 + 8 10 11 2 31 32 33 2 + 11 9 8 2 34 35 36 2 + 12 13 15 4 37 38 39 1 + 15 14 12 4 40 41 42 1 + 8 9 13 8 23 24 28 5 + 13 12 8 8 28 27 23 5 + 9 11 15 16 24 26 30 4 + 15 13 9 16 30 28 24 4 + 11 10 14 32 43 25 29 6 + 14 15 11 32 29 44 45 6 + 10 8 12 64 25 23 27 3 + 12 14 10 64 27 29 25 3 + tverts 46 + 0.249099 -0.975342 0 + 0.324159 -0.975342 0 + 0.0698632 -0.975342 0 + 0.503394 -0.975342 0 + 0.249099 0.0236625 0 + 0.324159 0.0236625 0 + 0.0698632 0.0236625 0 + 0.503394 0.0236625 0 + 0.320501 -0.509138 0 + 0.252757 -0.509138 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.320501 -0.442538 0 + 0.320501 -0.509138 0 + 0.320501 -0.509138 0 + 0.320501 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.509138 0 + 0.320501 -0.509138 0 + -0.00519651 -0.975342 0 + -0.00519651 0.0236625 0 + -0.00519651 -0.975342 0 + 0.249099 -1.46084 0 + 0.324159 -1.46084 0 + 0.0698632 -1.46084 0 + 0.503394 -1.46084 0 + 0.249099 -0.461844 0 + 0.324159 -0.461844 0 + 0.0698632 -0.461844 0 + 0.503394 -0.461844 0 + 0.320501 -0.994642 0 + 0.252757 -0.994642 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.320501 -0.928042 0 + 0.320501 -0.994642 0 + 0.320501 -0.994642 0 + 0.320501 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.994642 0 + 0.320501 -0.994642 0 + -0.00519651 -1.46084 0 + -0.00519651 -0.461844 0 + -0.00519651 -1.46084 0 +endnode +#Tile trimesh node +node trimesh Mesh03 + parent tin01_d08_01 + position 1.65 4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 22.5 1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + -1.65 -0.1 0.19 + -1.65 -0.1 -0.14 + 2.1 -0.1 0.19 + 1.75 -0.1 -0.14 + 0.57 -0.1 -0.14 + -0.25 -0.1 -0.14 + 1.75 0.12 -0.14 + 0.57 0.12 -0.14 + 2.1 0.12 0.19 + -1.65 0.12 0.19 + -1.65 0.12 -0.14 + -0.25 0.12 -0.14 + 0.78 -0.1 -0.49 + 0.99 -0.1 -0.25 + 0.99 0.12 -0.25 + 0.78 0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 3 2 4 1 3 2 4 3 + 4 2 5 1 4 2 5 3 + 5 2 1 1 5 2 1 3 + 6 3 4 2 28 21 29 3 + 4 7 6 2 22 23 20 3 + 2 8 9 2 6 7 8 3 + 9 0 2 2 8 9 6 3 + 1 10 11 2 30 25 31 3 + 11 5 1 2 26 27 24 3 + 4 5 12 8 15 10 12 5 + 12 13 4 8 12 13 15 5 + 14 7 4 16 17 19 18 4 + 4 13 14 16 18 16 17 4 + 15 12 5 64 14 12 10 3 + 5 11 15 64 10 11 14 3 + tverts 32 + 0.496366 -0.196817 0 + 0.384796 -0.196817 0 + 0.496367 1.05318 0 + 0.384796 0.936516 0 + 0.384796 0.544462 0 + 0.384796 0.268566 0 + 0.426587 -0.634963 0 + 0.36085 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.170894 0.6665 0 + 0.345252 0.777547 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.326259 1.00025 0 + 0.261617 1.00025 0 + 0.261617 0.653536 0 + 0.326259 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.00124749 0 + 0.326259 0.412601 0 + 0.261617 0.412601 0 + 0.326259 1.00025 0 + 0.261617 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.412601 0 +endnode +#Tile trimesh node +node trimesh Mesh04 + parent tin01_d08_01 + position -1.55 4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -32.5 1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + 1.55 -0.1 -0.14 + 1.55 -0.1 0.19 + -2.2 -0.1 0.19 + -1.85 -0.1 -0.14 + -0.67 -0.1 -0.14 + 0.15 -0.1 -0.14 + -1.85 0.12 -0.14 + -0.67 0.12 -0.14 + -2.2 0.12 0.19 + 1.55 0.12 0.19 + 1.55 0.12 -0.14 + 0.15 0.12 -0.14 + -1.09 0.12 -0.25 + -1.09 -0.1 -0.25 + -0.88 -0.1 -0.49 + -0.88 0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 4 1 2 3 4 3 + 2 4 5 1 2 4 5 3 + 2 5 0 1 2 5 0 3 + 3 6 4 2 24 32 33 3 + 7 4 6 2 27 26 25 3 + 8 2 9 2 6 7 8 3 + 1 9 2 2 9 8 7 3 + 10 0 11 2 28 34 35 3 + 5 11 0 2 31 30 29 3 + 13 14 5 32 15 16 14 6 + 14 15 11 64 12 13 10 3 + 11 5 14 64 10 11 12 3 + 13 5 4 0 15 17 18 1 + 12 13 4 0 20 21 23 1 + 12 4 7 0 19 23 22 1 + tverts 36 + 0.338345 1.40811 0 + 0.449916 1.40811 0 + 0.449916 0.158114 0 + 0.338345 0.274781 0 + 0.338345 0.666835 0 + 0.338345 0.942731 0 + 0.36085 -0.634963 0 + 0.426587 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + -0.00282295 0.777409 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.219023 0.00190346 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.280636 0.349166 0 + 0.274944 1.00143 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 + 0.213895 0.589529 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 +endnode +#Tile trimesh node +node trimesh Mesh02 + parent tin01_d08_01 + position -3.41 4.88 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 32.0 1.0 39.5 + bitmap tin01_furnish2 + verts 18 + -0.34 -0.1 1.48 + -0.34 0.12 1.48 + -0.34 -0.1 -0.69 + -0.34 0.12 -0.69 + 0.01 0.12 1.15 + 0.01 -0.1 1.15 + 0.01 0.12 0.01 + 0.01 -0.1 0.01 + 0.01 -0.1 -0.69 + 0.01 0.12 -0.69 + 0.23 0.12 0.5 + 0.23 -0.1 0.5 + 0.45 -0.1 0.26 + 0.45 0.12 0.26 + 0.77 0.12 1.04 + 0.77 -0.1 1.04 + 0.98 -0.1 0.8 + 0.98 0.12 0.8 + faces 19 + 0 1 2 1 0 1 2 4 + 2 1 3 1 2 1 3 4 + 4 5 6 1 4 5 6 3 + 7 6 5 1 7 6 5 3 + 0 2 8 2 8 9 10 6 + 7 5 0 2 11 12 8 6 + 8 7 0 2 10 11 8 6 + 10 6 7 16 57 86 87 4 + 7 11 10 16 87 58 57 4 + 10 11 15 16 57 58 64 4 + 15 14 10 16 64 73 57 4 + 7 8 12 32 88 74 59 6 + 12 11 7 32 59 67 88 6 + 11 12 16 32 68 59 65 6 + 16 15 11 32 65 75 68 6 + 8 9 13 64 51 50 60 3 + 13 12 8 64 60 59 51 3 + 12 13 17 64 59 60 66 3 + 17 16 12 64 66 65 59 3 + tverts 89 + 0.346688 0.891416 0 + 0.408666 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.285126 1.36765 0 + 0.219389 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + -0.696282 1.23919 0 + -0.696282 0.617953 0 + -0.596281 0.617953 0 + -0.596281 0.817 0 + -0.596281 1.14356 0 + 0.225624 0.266174 0 + 0.252833 0.305544 0 + 0.252357 0.150473 0 + 0.226784 -0.0348742 0 + 0.191477 0.305544 0 + 0.191001 0.150473 0 + 0.204708 0.471327 0 + 0.273749 0.510697 0 + 0.212393 0.510697 0 + 0.286295 0.267326 0 + 0.28814 -0.0348742 0 + 0.266064 0.471327 0 + 0.21826 0.266174 0 + 0.137861 0.305544 0 + 0.136086 0.150473 0 + 0.136086 0.150473 0 + 0.213931 -0.0348742 0 + 0.21826 0.266174 0 + 0.252833 0.305544 0 + 0.191477 0.305544 0 + 0.252357 0.150473 0 + 0.191477 0.305544 0 + 0.296319 0.471327 0 + 0.215919 0.510697 0 + 0.137861 0.305544 0 + 0.137861 0.305544 0 + 0.21826 0.266174 0 + 0.296319 0.471327 0 + 0.212393 0.510697 0 + 0.252833 0.305544 0 + 0.286295 0.267326 0 + 0.225624 0.266174 0 + 0.28814 -0.0348742 0 + 0.225624 0.266174 0 + 0.204708 0.471327 0 + 0.286295 0.267326 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.0952516 0.000499517 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.496536 0.3335 0 + 0.0952516 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + -0.0034642 0.3335 0 + -0.0034642 0.3335 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + 0.420894 0.6665 0 + 0.0876934 0.0625172 0 + -0.00129734 0.669749 0 + 0.345252 0.777547 0 + -0.00282295 0.777409 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 + 0.496536 0.192615 0 + -0.0034642 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh01 + parent tin01_d08_01 + position 3.4 4.88 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -31.0 1.0 40.5 + bitmap tin01_furnish2 + verts 20 + 0.35 0.12 1.49 + 0.35 -0.1 1.49 + 0.35 -0.1 -0.68 + 0.35 0.12 -0.68 + 0.0 -0.1 1.16 + 0.0 0.12 1.16 + 0.0 0.12 0.02 + 0.0 -0.1 0.02 + 0.0 -0.1 -0.68 + -0.97 -0.1 0.81 + -0.44 0.12 0.27 + -0.97 0.12 0.81 + 0.0 0.12 -0.68 + -0.44 -0.1 0.27 + -0.22 -0.1 0.51 + -0.22 0.12 0.51 + -0.97 -0.1 0.81 + -0.76 -0.1 1.05 + -0.76 0.12 1.05 + -0.97 0.12 0.81 + faces 20 + 0 1 2 1 0 1 2 4 + 0 2 3 1 0 2 3 4 + 4 5 6 1 4 5 6 3 + 6 7 4 1 6 7 4 3 + 9 11 10 1 24 25 26 3 + 7 8 2 2 28 29 30 6 + 2 1 4 2 30 31 32 6 + 2 4 7 2 30 32 28 6 + 13 8 7 8 35 33 45 5 + 7 14 13 8 45 36 35 5 + 13 14 17 8 35 36 40 5 + 17 16 13 8 40 39 35 5 + 7 6 15 16 45 46 37 4 + 15 14 7 16 37 36 45 4 + 14 15 18 16 36 37 41 4 + 18 17 14 16 41 40 36 4 + 12 8 13 64 34 33 35 3 + 13 10 12 64 35 38 34 3 + 10 13 16 64 38 35 39 3 + 16 19 10 64 39 42 38 3 + tverts 47 + 0.408666 0.891416 0 + 0.346688 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.219389 1.36765 0 + 0.285126 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + 0.46889 1.46063 0 + 0.540743 1.39726 0 + 0.618333 1.52891 0 + 0.829444 1.52891 0 + 0.36085 -0.460635 0 + 0.426587 -0.460635 0 + 0.426587 -0.528906 0 + 0.36085 -0.528906 0 + 0.30483 1.29827 0 + 0.377444 1.23509 0 + 0.36085 -0.298269 0 + 0.426587 -0.298269 0 + 0.219389 1.0989 0 + 0.285126 1.0989 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 + 0.414477 0.4225 0 + 0.476458 0.4225 0 + 0.476458 0.206945 0 + 0.414477 0.206945 0 + 0.328438 0.836212 0 + 0.328438 0.625102 0 + 0.434495 0.624996 0 + 0.434495 1.28399 0 + 0.328438 1.18256 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.170894 0.6665 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 +endnode +#Tile trimesh node +node trimesh topwall01 + parent tin01_d08_01 + position 4.37 -0.21 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -462.0 21.0 408.5 + bitmap tin01_wall2 + verts 35 + -0.62 2.71 3.0 + -0.62 0.21 3.0 + 0.13 0.21 3.0 + 0.13 2.71 3.0 + -0.62 -2.29 3.0 + 0.13 -2.29 3.0 + -0.62 -4.4 3.0 + 0.13 -4.79 3.0 + -0.62 -4.79 3.0 + -0.62 5.21 3.0 + 0.13 5.21 3.0 + -0.62 2.71 5.17 + -0.62 0.21 5.17 + 0.13 0.21 5.17 + 0.13 2.71 5.17 + -0.62 -2.29 5.17 + 0.13 -2.29 5.17 + -0.62 -4.4 5.17 + 0.13 -4.79 5.17 + -0.62 -4.79 5.17 + -0.62 5.21 5.17 + 0.13 5.21 5.17 + -8.12 3.96 3.0 + -8.12 5.21 3.0 + -9.37 3.96 3.0 + -8.12 3.96 5.17 + -8.12 5.21 5.17 + -9.37 3.96 5.17 + -9.37 5.21 5.17 + -8.12 5.21 3.0 + -9.37 3.96 3.0 + -9.37 5.21 3.0 + -8.12 5.21 5.17 + -9.37 3.96 5.17 + -9.37 5.21 5.17 + faces 37 + 12 13 14 2 4 7 1 1 + 14 11 12 2 1 0 4 1 + 15 16 13 2 8 9 7 1 + 13 12 15 2 7 4 8 1 + 15 17 16 2 10 12 11 1 + 18 16 19 2 13 11 14 1 + 17 19 16 2 12 14 11 1 + 11 14 21 0 2 3 5 1 + 11 21 20 0 2 5 6 1 + 2 3 14 0 37 38 39 1 + 14 13 2 0 40 41 42 1 + 0 1 12 0 43 44 45 1 + 12 11 0 0 46 47 48 1 + 5 2 13 0 49 15 50 1 + 13 16 5 0 18 51 52 1 + 1 4 15 0 53 54 55 1 + 15 12 1 0 56 21 20 1 + 4 6 17 0 57 58 59 1 + 17 15 4 0 60 26 25 1 + 7 5 16 0 61 23 62 1 + 16 18 7 0 24 63 64 1 + 6 8 19 0 69 31 70 1 + 19 17 6 0 32 28 27 1 + 3 10 21 0 71 72 73 1 + 21 14 3 0 74 17 16 1 + 9 0 11 0 79 19 80 1 + 11 20 9 0 22 36 35 1 + 25 26 28 4 97 98 99 1 + 28 27 25 4 100 101 102 1 + 22 23 26 8 103 104 105 5 + 26 25 22 8 106 107 108 5 + 24 22 25 64 117 81 118 3 + 25 27 24 64 85 87 83 3 + 29 31 34 16 151 152 153 4 + 34 32 29 16 154 149 147 4 + 31 30 33 32 155 156 157 6 + 33 34 31 32 158 150 148 6 + tverts 159 + 0.187499 0.642952 0 + 0.187499 0.830915 0 + 0.593953 0.669332 0 + 0.593953 0.806513 0 + 0.812499 0.642952 0 + 0.0944526 0.806513 0 + 0.0944526 0.669332 0 + 0.812499 0.830915 0 + 1.4375 0.642952 0 + 1.4375 0.830915 0 + 0.8125 0.774954 0 + 0.8125 0.962454 0 + 0.285502 0.774954 0 + 0.1875 0.962454 0 + 0.1875 0.774954 0 + 1.0 0.0 0 + 1.4995 0.0 0 + 1.4995 0.5 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.0 0.5 0 + 0.500499 0.5 0 + 0.500499 0.0 0 + 0.500499 0.5 0 + 1.4995 0.0 0 + 1.4995 0.5 0 + 1.92108 0.0 0 + 1.92108 0.5 0 + 1.07492 0.0 0 + 1.07492 0.5 0 + 1.999 0.0 0 + 1.999 0.5 0 + 0.925075 0.0 0 + 0.925075 0.5 0 + 0.000999033 0.0 0 + 0.000999033 0.5 0 + 1.0 0.0 0 + 1.4995 0.0 0 + 1.4995 0.5 0 + 1.4995 0.5 0 + 1.0 0.5 0 + 1.0 0.0 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.0 0.5 0 + 1.0 0.5 0 + 0.500499 0.5 0 + 0.500499 0.0 0 + 0.500499 0.0 0 + 1.0 0.5 0 + 0.500499 0.5 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.4995 0.0 0 + 1.4995 0.5 0 + 1.4995 0.5 0 + 1.4995 0.0 0 + 1.92108 0.0 0 + 1.92108 0.5 0 + 1.92108 0.5 0 + 0.000999033 0.0 0 + 0.500499 0.5 0 + 0.000999033 0.5 0 + 0.000999033 0.0 0 + 0.925075 0.0 0 + 1.07492 0.5 0 + 0.925075 0.5 0 + 0.925075 0.0 0 + 1.92108 0.0 0 + 1.999 0.5 0 + 1.4995 0.0 0 + 1.999 0.0 0 + 1.999 0.5 0 + 1.999 0.5 0 + 0.925075 0.0 0 + 1.07492 0.0 0 + 1.07492 0.5 0 + 1.07492 0.5 0 + 0.000999033 0.0 0 + 0.500499 0.5 0 + 0.250749 0.0 0 + 0.688285 0.0 0 + 0.000999153 0.0 0 + 0.000998914 0.0 0 + 0.250749 0.5 0 + 0.688285 0.5 0 + 0.000999153 0.5 0 + 0.000998914 0.5 0 + 0.938035 0.0 0 + 0.000999093 0.0 0 + 0.688285 0.0 0 + 0.000999331 0.0 0 + 0.938035 0.5 0 + 0.000999093 0.5 0 + 0.688285 0.5 0 + 0.000999331 0.5 0 + 0.0936787 0.688285 0 + 0.343429 0.688285 0 + 0.343429 0.938035 0 + 0.343429 0.938035 0 + 0.0936787 0.938035 0 + 0.0936787 0.688285 0 + 0.688286 0.0 0 + 0.938036 0.0 0 + 0.938036 0.5 0 + 0.938036 0.5 0 + 0.688286 0.5 0 + 0.688286 0.0 0 + 0.688285 0.0 0 + 0.938035 0.0 0 + 0.938035 0.5 0 + 0.938035 0.5 0 + 0.000998914 0.0 0 + 0.250749 0.0 0 + 0.250749 0.5 0 + 0.250749 0.5 0 + 0.000999153 0.0 0 + 0.250749 0.5 0 + 0.256904 0.677219 0 + 0.506654 0.677219 0 + 0.506654 0.926969 0 + 0.506654 0.926969 0 + 0.256904 0.926969 0 + 0.256904 0.677219 0 + 0.688285 0.0 0 + 0.938035 0.0 0 + 0.938035 0.5 0 + 0.938035 0.5 0 + 0.688285 0.5 0 + 0.688285 0.0 0 + 0.000999093 0.0 0 + 0.250749 0.0 0 + 0.250749 0.5 0 + 0.250749 0.5 0 + 0.000999331 0.0 0 + 0.25075 0.0 0 + 0.25075 0.5 0 + 0.25075 0.5 0 + 0.688285 0.0 0 + 0.938035 0.5 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 0.500499 0.5 0 + 1.4995 0.0 0 + 0.688285 0.0 0 + 0.000998914 0.0 0 + 0.688285 0.5 0 + 0.000998914 0.5 0 + 0.688285 0.0 0 + 0.938035 0.0 0 + 0.938035 0.5 0 + 0.938035 0.5 0 + 0.000998914 0.0 0 + 0.250749 0.0 0 + 0.250749 0.5 0 + 0.250749 0.5 0 +endnode +endmodelgeom tin01_d08_01 +donemodel tin01_d08_01 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d08_02.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d08_02.mdl new file mode 100644 index 0000000..529eab8 --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d08_02.mdl @@ -0,0 +1,5033 @@ +# Exported from NWmax 0.8 b60 at 15.10.2012 22:39:39 +# mdl file +# +#NWmax MODEL ASCII +# model: tin01_d08_02 +#local file: Unknown +filedependancy Unknown +newmodel tin01_d08_02 +setsupermodel tin01_d08_02 NULL +classification Tile +#NWmax GEOM ASCII +beginmodelgeom tin01_d08_02 +node dummy tin01_d08_02 + parent NULL +endnode +#Tile trimesh node +node trimesh Line124 + parent tin01_d08_02 + position 4.74 -0.18 2.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center -474.0 18.0 2.0 + bitmap tin01_black + verts 12 + -0.24 2.61 0.02 + 0.26 5.18 0.02 + -0.24 5.18 0.02 + 0.26 -4.82 0.02 + -0.24 0.18 0.02 + -0.24 -0.6 0.02 + -0.24 -2.32 0.02 + -0.24 -4.82 0.02 + -9.24 4.68 0.02 + -9.24 5.18 0.02 + -9.74 5.18 0.02 + -9.74 4.68 0.02 + faces 8 + 0 1 2 1 0 1 2 1 + 3 1 0 1 3 1 0 1 + 3 0 4 1 3 0 4 1 + 3 5 6 1 3 5 6 1 + 3 6 7 1 3 6 7 1 + 3 4 5 1 3 4 5 1 + 8 9 10 1 8 9 10 1 + 8 10 11 1 8 10 11 1 + tverts 12 + -135.0 27.9336 0 + -134.5 30.5 0 + -135.0 30.5 0 + -134.5 20.5 0 + -135.0 25.5 0 + -135.0 24.716 0 + -135.0 23.0 0 + -135.0 20.5 0 + -144.002 30.0 0 + -144.0 30.5 0 + -144.5 30.5 0 + -144.5 30.0 0 +endnode +node light tin01_d08_02ml1 + parent tin01_d08_02 + position -3.95982 1.63006 5.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 14.0 + multiplier 1.0 + color 0.0 0.0 0.0 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +node light tin01_d08_02ml2 + parent tin01_d08_02 + position 0.0 0.0 4.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 5.0 + multiplier 1.0 + color 0.00392157 0.00392157 0.00392157 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +#Tile trimesh node +node trimesh blacky01 + parent tin01_d08_02 + position -3.37 -5.0 4.04 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 4 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 312.0 500.0 4.5 + bitmap tin01_black + verts 40 + -1.63 8.0 0.17 + -1.63 8.75 0.17 + -1.63 8.75 -1.04 + -1.63 8.0 -1.04 + 1.15 10.0 0.8 + 1.97 10.0 0.8 + 0.94 10.0 0.45 + 0.73 10.0 0.69 + 0.19 10.0 0.15 + 0.41 10.0 -0.09 + -0.03 10.0 -0.34 + -0.03 10.0 -1.04 + -0.38 10.0 1.13 + -0.03 10.0 0.8 + -0.38 10.0 -1.04 + 3.37 10.0 1.13 + 3.37 10.0 0.8 + 4.77 10.0 0.8 + 5.59 10.0 0.8 + 5.8 10.0 0.45 + 6.01 10.0 0.69 + 6.55 10.0 0.15 + 6.33 10.0 -0.09 + 6.77 10.0 -0.34 + 6.77 10.0 -1.04 + 6.77 10.0 0.8 + 7.12 10.0 1.13 + 7.12 10.0 -1.04 + 7.12 0.0 -1.04 + 6.37 0.0 -1.04 + 6.37 0.0 0.17 + 7.12 0.0 0.17 + 7.87 0.0 -1.04 + 7.12 0.0 -1.04 + 7.12 10.0 -1.04 + 7.87 10.0 -1.04 + 7.87 0.0 1.13 + 7.12 0.0 1.13 + 7.12 10.0 1.13 + 7.87 10.0 1.13 + faces 34 + 2 3 0 1 2 3 0 1 + 1 2 0 1 1 2 0 1 + 4 5 6 1 4 5 6 1 + 4 6 7 1 4 6 7 1 + 8 7 9 1 8 7 9 1 + 9 7 6 1 9 7 6 1 + 10 8 11 1 10 8 11 1 + 11 8 9 1 11 8 9 1 + 12 13 14 1 12 13 14 1 + 14 10 11 1 14 10 11 1 + 14 13 10 1 14 13 10 1 + 4 13 12 1 4 13 12 1 + 12 15 16 1 12 15 16 1 + 5 4 12 1 5 4 12 1 + 12 16 5 1 12 16 5 1 + 17 18 19 1 17 18 19 1 + 19 18 20 1 19 18 20 1 + 20 21 22 1 20 21 22 1 + 20 22 19 1 20 22 19 1 + 21 23 24 1 21 23 24 1 + 21 24 22 1 21 24 22 1 + 25 26 27 1 25 26 27 1 + 23 27 24 1 23 27 24 1 + 25 27 23 1 25 27 23 1 + 25 18 26 1 25 18 26 1 + 15 26 16 1 15 26 16 1 + 18 17 26 1 18 17 26 1 + 16 26 17 1 16 26 17 1 + 29 28 31 0 31 28 34 1 + 29 31 30 0 31 34 33 1 + 33 32 36 0 52 48 53 1 + 36 37 33 0 49 54 55 1 + 35 34 38 0 56 57 58 1 + 38 39 35 0 59 51 50 1 + tverts 72 + -163.0 800.0 0 + -163.0 875.0 0 + -163.0 875.0 0 + -163.0 800.0 0 + 115.0 1000.0 0 + 197.0 1000.0 0 + 94.0 1000.0 0 + 73.0 1000.0 0 + 19.0 1000.0 0 + 41.0 1000.0 0 + -3.00001 1000.0 0 + -3.00001 1000.0 0 + -38.0 1000.0 0 + -3.00001 1000.0 0 + -38.0 1000.0 0 + 337.0 1000.0 0 + 337.0 1000.0 0 + 477.0 1000.0 0 + 559.0 1000.0 0 + 580.0 1000.0 0 + 601.0 1000.0 0 + 655.0 1000.0 0 + 633.0 1000.0 0 + 677.0 1000.0 0 + 677.0 1000.0 0 + 677.0 1000.0 0 + 712.0 1000.0 0 + 712.0 1000.0 0 + 0.265279 0.653515 0 + 0.0692729 1.003 0 + 0.265279 1.003 0 + 0.215041 0.174409 0 + 0.215041 0.35 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.812499 0.830915 0 + 1.4375 0.642952 0 + 1.4375 0.830915 0 + 0.8125 0.774954 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 0.500499 0.5 0 + 1.4995 0.0 0 + 1.92108 0.0 0 + 1.92108 0.5 0 + 1.07492 0.0 0 + 1.07492 0.5 0 + 0.925075 0.0 0 + 0.925075 0.5 0 + 0.925075 0.0 0 + 1.07492 0.5 0 + 0.925075 0.5 0 + 0.925075 0.0 0 + 0.925075 0.0 0 + 1.07492 0.0 0 + 1.07492 0.5 0 + 1.07492 0.5 0 + 0.688285 0.0 0 + 0.000998914 0.0 0 + 0.688285 0.5 0 + 0.000998914 0.5 0 + 0.688285 0.0 0 + 0.938035 0.0 0 + 0.938035 0.5 0 + 0.938035 0.5 0 + 0.000998914 0.0 0 + 0.250749 0.0 0 + 0.250749 0.5 0 + 0.250749 0.5 0 +endnode +#Tile trimesh node +node trimesh bolt01 + parent tin01_d08_02 + position 5.0 -2.85 5.02 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.6 0.894118 0.721569 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10 + center -574.5 210.5 47.5 + bitmap tin01__metal01 + verts 66 + -9.67 5.41 0.16 + -9.67 5.35 0.16 + -9.67 5.39 0.22 + -9.67 5.46 0.2 + -9.67 5.46 0.12 + -9.67 5.39 0.1 + -9.95 5.35 0.16 + -9.95 5.39 0.22 + -9.95 5.46 0.2 + -9.95 5.46 0.12 + -9.95 5.39 0.1 + -9.67 4.06 1.86 + -9.67 4.0 1.86 + -9.67 4.04 1.92 + -9.67 4.11 1.9 + -9.67 4.11 1.82 + -9.67 4.04 1.8 + -9.95 4.0 1.86 + -9.95 4.04 1.92 + -9.95 4.11 1.9 + -9.95 4.11 1.82 + -9.95 4.04 1.8 + -9.67 6.26 -0.91 + -9.67 6.2 -0.91 + -9.67 6.24 -0.85 + -9.67 6.31 -0.87 + -9.67 6.31 -0.95 + -9.67 6.24 -0.97 + -9.95 6.2 -0.91 + -9.95 6.24 -0.85 + -9.95 6.31 -0.87 + -9.95 6.31 -0.95 + -9.95 6.24 -0.97 + -2.5 -2.1 0.16 + -2.46 -2.1 0.22 + -2.39 -2.1 0.2 + -2.39 -2.1 0.12 + -2.46 -2.1 0.1 + -2.5 -1.82 0.16 + -2.46 -1.82 0.22 + -2.39 -1.82 0.2 + -2.39 -1.82 0.12 + -2.46 -1.82 0.1 + -2.44 -1.82 0.16 + -3.85 -2.1 1.86 + -3.81 -2.1 1.92 + -3.74 -2.1 1.9 + -3.74 -2.1 1.82 + -3.81 -2.1 1.8 + -3.85 -1.82 1.86 + -3.81 -1.82 1.92 + -3.74 -1.82 1.9 + -3.74 -1.82 1.82 + -3.81 -1.82 1.8 + -3.79 -1.82 1.86 + -1.65 -2.1 -0.91 + -1.61 -2.1 -0.85 + -1.54 -2.1 -0.87 + -1.54 -2.1 -0.95 + -1.61 -2.1 -0.97 + -1.65 -1.82 -0.91 + -1.61 -1.82 -0.85 + -1.54 -1.82 -0.87 + -1.54 -1.82 -0.95 + -1.61 -1.82 -0.97 + -1.59 -1.82 -0.91 + faces 90 + 0 2 1 1 95 96 97 2 + 0 3 2 1 98 99 100 2 + 0 4 3 1 101 102 103 2 + 0 5 4 1 104 105 106 2 + 0 1 5 1 84 107 108 2 + 1 7 6 8 85 91 90 3 + 1 2 7 8 85 86 91 3 + 2 8 7 8 109 92 110 3 + 2 3 8 8 111 87 92 3 + 3 9 8 8 87 93 92 3 + 3 4 9 8 87 88 93 3 + 4 10 9 8 88 94 93 3 + 4 5 10 8 88 89 94 3 + 5 6 10 8 89 90 94 3 + 5 1 6 8 89 85 90 3 + 11 13 12 1 123 124 125 2 + 11 14 13 1 126 127 128 2 + 11 15 14 1 129 130 131 2 + 11 16 15 1 132 133 134 2 + 11 12 16 1 112 135 136 2 + 12 18 17 8 113 119 118 3 + 12 13 18 8 113 114 119 3 + 13 19 18 8 137 120 138 3 + 13 14 19 8 139 115 120 3 + 14 20 19 8 115 121 120 3 + 14 15 20 8 115 116 121 3 + 15 21 20 8 116 122 121 3 + 15 16 21 8 116 117 122 3 + 16 17 21 8 117 118 122 3 + 16 12 17 8 117 113 118 3 + 22 24 23 1 151 152 153 2 + 22 25 24 1 154 155 156 2 + 22 26 25 1 157 158 159 2 + 22 27 26 1 160 161 162 2 + 22 23 27 1 140 163 164 2 + 23 29 28 8 141 147 146 3 + 23 24 29 8 141 142 147 3 + 24 30 29 8 165 148 166 3 + 24 25 30 8 167 143 148 3 + 25 31 30 8 143 149 148 3 + 25 26 31 8 143 144 149 3 + 26 32 31 8 144 150 149 3 + 26 27 32 8 144 145 150 3 + 27 28 32 8 145 146 150 3 + 27 23 28 8 145 141 146 3 + 33 39 38 8 340 346 345 3 + 33 34 39 8 340 341 346 3 + 34 40 39 8 351 347 352 3 + 34 35 40 8 353 342 347 3 + 35 41 40 8 342 348 347 3 + 35 36 41 8 342 343 348 3 + 36 42 41 8 343 349 348 3 + 36 37 42 8 343 344 349 3 + 37 38 42 8 344 345 349 3 + 37 33 38 8 344 340 345 3 + 43 38 39 1 354 355 356 1 + 43 39 40 1 357 358 359 1 + 43 40 41 1 360 361 362 1 + 43 41 42 1 363 364 365 1 + 43 42 38 1 350 366 367 1 + 44 50 49 8 368 374 373 3 + 44 45 50 8 368 369 374 3 + 45 51 50 8 379 375 380 3 + 45 46 51 8 381 370 375 3 + 46 52 51 8 370 376 375 3 + 46 47 52 8 370 371 376 3 + 47 53 52 8 371 377 376 3 + 47 48 53 8 371 372 377 3 + 48 49 53 8 372 373 377 3 + 48 44 49 8 372 368 373 3 + 54 49 50 1 382 383 384 1 + 54 50 51 1 385 386 387 1 + 54 51 52 1 388 389 390 1 + 54 52 53 1 391 392 393 1 + 54 53 49 1 378 394 395 1 + 55 61 60 8 396 402 401 3 + 55 56 61 8 396 397 402 3 + 56 62 61 8 407 403 408 3 + 56 57 62 8 409 398 403 3 + 57 63 62 8 398 404 403 3 + 57 58 63 8 398 399 404 3 + 58 64 63 8 399 405 404 3 + 58 59 64 8 399 400 405 3 + 59 60 64 8 400 401 405 3 + 59 55 60 8 400 396 401 3 + 65 60 61 1 410 411 412 1 + 65 61 62 1 413 414 415 1 + 65 62 63 1 416 417 418 1 + 65 63 64 1 419 420 421 1 + 65 64 60 1 406 422 423 1 + tverts 424 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 +endnode +#Tile trimesh node +node trimesh Box2931 + parent tin01_d08_02 + position 3.4 5.09 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 17.5 -20.0 -218.0 + bitmap tin01_furnish2 + verts 8 + 0.0 -0.31 -3.68 + 0.35 -0.31 -3.68 + 0.0 -0.31 -1.26 + 0.35 -0.31 -0.68 + 0.0 -0.31 -0.68 + 0.0 -0.09 -3.68 + 0.0 -0.09 -1.26 + 0.0 -0.09 -0.68 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 5 0 2 2 5 6 7 3 + 2 6 5 2 7 8 5 3 + 4 7 6 2 9 10 8 3 + 6 2 4 2 8 7 9 3 + tverts 11 + 1.34658 -0.23919 0 + 1.44658 -0.23919 0 + 1.34658 0.452184 0 + 1.44658 0.617953 0 + 1.34658 0.617953 0 + 0.285126 -0.0988962 0 + 0.219389 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.219389 0.810195 0 + 0.285126 0.810195 0 +endnode +#Tile trimesh node +node trimesh Box2932 + parent tin01_d08_02 + position -3.41 5.09 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -16.5 -20.0 -219.0 + bitmap tin01_furnish2 + verts 8 + -0.34 -0.31 -3.69 + 0.01 -0.31 -3.69 + -0.34 -0.31 -0.69 + 0.01 -0.31 -1.27 + 0.01 -0.31 -0.69 + 0.01 -0.09 -3.69 + 0.01 -0.09 -1.27 + 0.01 -0.09 -0.69 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 1 5 3 2 5 6 7 3 + 6 3 5 2 8 7 6 3 + 7 4 6 2 9 10 8 3 + 3 6 4 2 7 8 10 3 + tverts 11 + -0.696282 -0.23919 0 + -0.596283 -0.23919 0 + -0.696282 0.617953 0 + -0.596281 0.452184 0 + -0.596281 0.617953 0 + 0.219389 -0.0988962 0 + 0.285126 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 +endnode +#Tile trimesh node +node trimesh Box3031 + parent tin01_d08_02 + position 3.37 -4.8 0.33 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -7.0 7.0 117.0 + bitmap tin01_door2 + verts 14 + -0.37 0.19 0.35 + 0.11 0.19 0.35 + 0.11 0.34 0.19 + -0.52 0.34 0.19 + -0.37 -0.2 0.35 + -0.52 -0.2 0.19 + 0.11 0.34 -0.33 + -0.52 0.34 -0.33 + -0.52 -0.2 -0.33 + -0.37 0.19 2.67 + -0.37 -0.2 2.67 + 0.38 0.19 2.67 + 0.38 0.19 1.16 + 0.11 0.19 1.16 + faces 14 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 0 5 2 4 5 6 1 + 3 5 0 2 7 6 5 1 + 3 2 6 4 3 2 8 1 + 6 7 3 4 8 9 3 1 + 5 3 7 8 6 7 10 1 + 7 8 5 8 10 11 6 1 + 0 4 9 4 12 13 14 3 + 10 9 4 4 15 14 13 3 + 0 9 11 8 16 17 18 5 + 11 12 13 8 18 19 20 5 + 13 1 0 8 20 21 16 5 + 11 13 0 8 18 20 16 5 + tverts 22 + 0.300601 1.05077 0 + 0.0546721 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.167227 1.04315 0 + 0.305378 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.357965 0.694046 0 + 0.173247 0.694046 0 + 0.395638 -0.497611 0 + 0.215041 -0.497611 0 + 0.395638 0.174409 0 + 0.215041 0.174409 0 + 0.047924 -0.502544 0 + 0.047924 0.174109 0 + 0.39879 0.174359 0 + 0.39879 -0.26474 0 + 0.276247 -0.265795 0 + 0.274456 -0.502544 0 +endnode +#Tile trimesh node +node trimesh Box3032 + parent tin01_d08_02 + position -4.81 3.38 0.33 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 8.0 -8.0 117.0 + bitmap tin01_door2 + verts 14 + 0.2 -0.38 0.35 + 0.2 0.1 0.35 + 0.2 0.1 1.16 + 0.35 0.1 0.19 + 0.35 -0.53 0.19 + -0.19 -0.38 0.35 + -0.19 -0.53 0.19 + 0.35 0.1 -0.33 + 0.35 -0.53 -0.33 + -0.19 -0.53 -0.33 + 0.2 -0.38 2.67 + -0.19 -0.38 2.67 + 0.2 0.37 2.67 + 0.2 0.37 1.16 + faces 14 + 0 1 2 1 0 1 2 5 + 1 0 3 2 3 4 5 1 + 4 3 0 2 6 5 4 1 + 0 5 6 4 7 8 9 1 + 6 4 0 4 9 10 7 1 + 3 4 7 1 5 6 11 1 + 8 7 4 1 12 11 6 1 + 4 6 8 8 10 9 13 1 + 9 8 6 8 14 13 9 1 + 5 0 10 8 15 16 17 3 + 10 11 5 8 17 18 15 3 + 10 0 12 1 19 0 20 5 + 13 12 2 1 21 20 2 5 + 2 12 0 1 2 20 0 5 + tverts 22 + 0.047924 -0.502544 0 + 0.274456 -0.502544 0 + 0.276247 -0.265795 0 + 0.0546721 1.05077 0 + 0.300601 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.305378 1.04315 0 + 0.167227 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.357965 0.694046 0 + 0.173247 0.694046 0 + 0.215041 -0.497611 0 + 0.395638 -0.497611 0 + 0.395638 0.174409 0 + 0.215041 0.174409 0 + 0.047924 0.174109 0 + 0.39879 0.174359 0 + 0.39879 -0.26474 0 +endnode +#Tile trimesh node +node trimesh Box3034 + parent tin01_d08_02 + position 3.3 -0.39 0.2 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 0.0 130.0 + bitmap tin01_door2 + verts 19 + -0.3 -0.39 0.48 + 0.18 -0.39 0.48 + 0.18 -0.39 1.29 + 0.18 -0.54 0.32 + -0.45 -0.54 0.32 + 0.18 -0.54 -0.2 + -0.45 -0.54 -0.2 + -0.3 0.39 0.48 + 0.45 0.39 0.48 + 0.45 0.54 0.32 + -0.45 0.54 0.32 + 0.45 0.54 -0.2 + -0.45 0.54 -0.2 + -0.45 0.39 -0.2 + -0.3 -0.39 2.8 + -0.3 0.39 2.8 + 0.45 -0.39 2.8 + 0.45 -0.39 1.29 + 0.45 0.39 2.8 + faces 21 + 0 1 2 1 0 1 2 5 + 1 0 3 1 3 4 5 1 + 4 3 0 1 6 5 4 1 + 3 4 5 2 5 6 7 1 + 6 5 4 2 8 7 6 1 + 7 8 9 1 4 3 5 1 + 9 10 7 1 5 6 4 1 + 0 7 4 4 9 10 11 1 + 10 4 7 4 12 11 10 1 + 10 9 11 2 6 5 7 1 + 11 12 10 2 7 8 6 1 + 13 6 4 8 13 14 11 1 + 4 10 12 8 11 12 15 1 + 12 13 4 8 15 13 11 1 + 7 0 14 2 16 17 18 3 + 14 15 7 2 18 19 16 3 + 14 0 16 1 20 0 21 5 + 17 16 2 1 22 21 2 5 + 2 16 0 1 2 21 0 5 + 7 15 18 1 0 20 23 5 + 18 8 7 1 23 24 0 5 + tverts 25 + 0.047924 -0.502544 0 + 0.274456 -0.502544 0 + 0.276247 -0.265795 0 + 0.0546721 1.05077 0 + 0.300601 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.167227 1.04315 0 + 0.305378 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.332951 0.694046 0 + 0.173247 0.694046 0 + 0.357965 0.694046 0 + 0.395638 -0.497611 0 + 0.0571567 -0.497611 0 + 0.0571567 0.174409 0 + 0.395638 0.174409 0 + 0.047924 0.174109 0 + 0.39879 0.174432 0 + 0.39879 -0.26474 0 + 0.399406 0.17412 0 + 0.400581 -0.50251 0 +endnode +#Tile trimesh node +node trimesh construction01 + parent tin01_d08_02 + position -4.0 -0.2 3.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.87451 0.556863 0.337255 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 339.5 20.0 245.0 + bitmap tin01_furnish2 + verts 228 + 7.76 -0.19 1.94 + 7.76 0.01 1.94 + 6.63 0.0 1.86 + 6.63 0.2 1.86 + 4.45 0.15 1.92 + 4.45 0.35 1.92 + 2.33 0.1 1.82 + 2.33 0.3 1.82 + -0.9 0.1 1.93 + -0.9 0.3 1.93 + 7.74 -0.19 2.11 + 7.74 0.01 2.11 + 6.63 0.0 2.06 + 6.63 0.2 2.06 + 4.45 0.15 2.12 + 4.45 0.35 2.12 + 2.33 0.1 2.02 + 2.33 0.3 2.02 + -0.9 0.1 2.11 + -0.9 0.3 2.11 + 3.89 -4.71 1.94 + 4.09 -4.71 1.94 + 3.93 -2.42 1.94 + 4.13 -2.42 1.94 + 3.89 -0.28 1.86 + 4.09 -0.28 1.86 + 3.89 1.87 1.92 + 4.09 1.87 1.92 + 3.89 4.98 1.88 + 4.09 4.98 1.88 + 3.89 -4.7 2.11 + 4.09 -4.7 2.11 + 3.93 -2.42 2.14 + 4.13 -2.42 2.14 + 3.89 -0.28 2.06 + 4.09 -0.28 2.06 + 3.89 1.87 2.12 + 4.09 1.87 2.12 + 3.89 4.98 2.08 + 4.09 4.98 2.08 + 4.1 5.2 3.76 + 3.9 5.2 3.76 + 4.11 1.65 3.74 + 3.91 1.65 3.74 + 4.06 -0.53 3.8 + 3.86 -0.53 3.8 + 4.11 -2.65 3.7 + 3.91 -2.65 3.7 + 4.1 -4.8 3.76 + 3.9 -4.8 3.76 + 4.1 5.2 3.96 + 3.9 5.2 3.96 + 4.11 1.65 3.94 + 3.91 1.65 3.94 + 4.06 -0.53 4.0 + 3.86 -0.53 4.0 + 4.11 -2.65 3.9 + 3.91 -2.65 3.9 + 4.1 -4.8 3.96 + 3.9 -4.8 3.96 + 6.85 0.05 3.82 + 6.85 0.25 3.82 + 4.7 0.02 3.74 + 4.7 0.22 3.74 + 2.55 0.02 3.8 + 2.55 0.22 3.8 + -1.0 0.1 3.76 + -1.0 0.3 3.76 + 6.85 0.05 4.02 + 6.85 0.25 4.02 + 4.7 0.02 3.94 + 4.7 0.22 3.94 + 2.55 0.02 4.0 + 2.55 0.22 4.0 + -1.0 0.1 3.96 + -1.0 0.3 3.96 + 6.08 0.06 2.07 + 6.08 0.22 2.07 + 5.92 0.06 2.07 + 5.92 0.22 2.07 + 6.06 0.06 3.82 + 6.06 0.22 3.82 + 5.92 0.06 3.82 + 5.92 0.22 3.82 + 2.09 0.12 2.0 + 2.09 0.28 2.0 + 1.93 0.12 2.0 + 1.93 0.28 2.0 + 2.07 0.06 3.82 + 2.07 0.22 3.82 + 1.93 0.06 3.82 + 1.93 0.22 3.82 + 4.06 2.16 2.04 + 4.06 2.32 2.04 + 3.9 2.16 2.04 + 3.9 2.32 2.04 + 4.06 2.08 3.82 + 4.06 2.24 3.82 + 3.92 2.08 3.82 + 3.92 2.24 3.82 + 4.1 -1.88 2.07 + 4.1 -1.72 2.07 + 3.94 -1.88 2.07 + 3.94 -1.72 2.07 + 4.08 -1.96 3.82 + 4.08 -1.8 3.82 + 3.94 -1.96 3.82 + 3.94 -1.8 3.82 + -1.0 -4.8 3.72 + -0.9 -4.7 3.72 + -1.0 -0.8 3.72 + -0.91 -1.25 3.69 + -1.0 1.2 3.72 + -0.9 1.13 3.75 + -1.0 3.0 3.72 + -0.91 3.0 3.7 + -1.0 -4.8 3.92 + -0.9 -4.7 3.92 + -1.0 -0.8 3.92 + -0.91 -1.25 3.94 + -1.0 1.2 3.92 + -0.9 1.13 4.0 + -1.0 3.0 3.92 + -0.91 3.0 3.94 + -1.0 0.3 2.07 + -1.0 0.1 2.07 + -0.92 0.28 2.07 + -0.92 0.12 2.07 + -1.0 0.3 3.72 + -1.0 0.1 3.72 + -0.92 0.28 3.77 + -0.92 0.12 3.77 + 6.9 -4.8 3.72 + 6.8 -4.7 3.72 + 5.0 -4.8 3.72 + 5.45 -4.71 3.69 + 3.0 -4.8 3.72 + 3.07 -4.7 3.75 + -1.0 -4.8 3.72 + -0.9 -4.7 3.72 + 6.9 -4.8 3.92 + 6.8 -4.7 3.92 + 5.0 -4.8 3.92 + 5.45 -4.71 3.94 + 3.0 -4.8 3.92 + 3.07 -4.7 4.0 + -1.0 -4.8 3.92 + -0.9 -4.7 3.92 + 3.9 -4.8 2.07 + 4.1 -4.8 2.07 + 3.92 -4.72 2.07 + 4.08 -4.72 2.07 + 3.9 -4.8 3.72 + 4.1 -4.8 3.72 + 3.92 -4.72 3.77 + 4.08 -4.72 3.77 + 1.2 5.2 3.72 + 1.2 5.11 3.71 + 3.0 5.2 3.72 + 2.55 5.11 3.69 + 5.0 5.2 3.72 + 4.93 5.1 3.75 + 6.8 5.2 3.72 + 6.8 5.11 3.7 + 1.2 5.2 3.92 + 1.2 5.11 3.96 + 3.0 5.2 3.92 + 2.55 5.11 3.94 + 5.0 5.2 3.92 + 4.93 5.1 4.0 + 6.8 5.2 3.92 + 6.8 5.11 3.94 + 4.1 5.2 2.07 + 3.9 5.2 2.07 + 4.08 5.12 2.07 + 3.92 5.12 2.07 + 4.1 5.2 3.72 + 3.9 5.2 3.72 + 4.08 5.12 3.77 + 3.92 5.12 3.77 + -1.0 -4.8 1.92 + -0.9 -4.7 1.92 + -1.0 -0.8 1.92 + -0.91 -1.25 1.89 + -1.0 1.2 1.92 + -0.9 1.13 1.95 + -1.0 3.95 1.92 + -0.91 3.95 1.9 + -1.0 -4.8 2.12 + -0.9 -4.7 2.12 + -1.0 -0.8 2.12 + -0.91 -1.25 2.14 + -1.0 1.2 2.12 + -0.9 1.13 2.2 + -1.0 3.95 2.12 + -0.91 3.95 2.14 + 7.79 -4.8 1.92 + 7.74 -4.7 1.92 + 5.0 -4.8 1.92 + 5.45 -4.71 1.89 + 3.0 -4.8 1.92 + 3.07 -4.7 1.95 + -1.0 -4.8 1.92 + -0.9 -4.7 1.92 + 7.79 -4.8 2.12 + 7.74 -4.7 2.12 + 5.0 -4.8 2.12 + 5.45 -4.71 2.14 + 3.0 -4.8 2.12 + 3.07 -4.7 2.2 + -1.0 -4.8 2.12 + -0.9 -4.7 2.12 + 7.36 -4.58 0.81 + 7.36 -4.7 0.81 + 7.64 -4.5 1.09 + 7.64 -4.7 1.09 + 4.94 -4.5 3.81 + 4.94 -4.7 3.81 + 5.22 -4.5 4.09 + 5.22 -4.7 4.09 + -0.9 3.56 0.81 + -0.7 3.56 0.81 + -0.9 3.84 1.09 + -0.7 3.84 1.09 + -0.9 1.14 3.81 + -0.7 1.14 3.81 + -0.9 1.42 4.09 + -0.7 1.42 4.09 + faces 342 + 0 2 3 2 435 437 447 2 + 3 1 0 2 448 449 435 2 + 2 4 5 2 437 439 450 2 + 5 3 2 2 451 452 437 2 + 4 6 7 2 111 113 123 2 + 7 5 4 2 124 125 111 2 + 6 8 9 2 113 115 126 2 + 9 7 6 2 127 128 113 2 + 10 11 13 4 441 442 444 1 + 13 12 10 4 444 443 441 1 + 12 13 15 4 443 444 446 1 + 15 14 12 4 446 445 443 1 + 14 15 17 4 117 118 120 1 + 17 16 14 4 120 119 117 1 + 16 17 19 4 119 120 122 1 + 19 18 16 4 122 121 119 1 + 1 3 13 16 436 438 444 4 + 13 11 1 16 444 442 436 4 + 3 5 15 16 438 440 446 4 + 15 13 3 16 446 444 438 4 + 5 7 17 16 112 114 120 4 + 17 15 5 16 120 118 112 4 + 7 9 19 16 114 116 122 4 + 19 17 7 16 122 120 114 4 + 9 8 18 32 4 0 2 6 + 18 19 9 32 2 3 1 6 + 8 6 16 64 115 113 119 3 + 16 18 8 64 119 121 115 3 + 6 4 14 64 113 111 117 3 + 14 16 6 64 117 119 113 3 + 4 2 12 64 439 437 443 3 + 12 14 4 64 443 445 439 3 + 2 0 10 64 437 435 441 3 + 10 12 2 64 441 443 437 3 + 20 22 23 2 5 7 21 2 + 23 21 20 2 22 23 5 2 + 22 24 25 2 7 9 24 2 + 25 23 22 2 25 26 7 2 + 24 26 27 2 194 196 206 2 + 27 25 24 2 207 208 194 2 + 26 28 29 2 196 198 209 2 + 29 27 26 2 210 211 196 2 + 30 31 33 4 13 14 16 1 + 33 32 30 4 16 15 13 1 + 32 33 35 4 15 16 18 1 + 35 34 32 4 18 17 15 1 + 34 35 37 4 200 201 203 1 + 37 36 34 4 203 202 200 1 + 36 37 39 4 202 203 205 1 + 39 38 36 4 205 204 202 1 + 20 21 31 8 5 27 14 5 + 31 30 20 8 14 13 5 5 + 21 23 33 16 6 8 16 4 + 33 31 21 16 16 14 6 4 + 23 25 35 16 8 10 18 4 + 35 33 23 16 18 16 8 4 + 25 27 37 16 195 197 203 4 + 37 35 25 16 203 201 195 4 + 27 29 39 16 197 199 205 4 + 39 37 27 16 205 203 197 4 + 29 28 38 32 28 11 19 6 + 38 39 29 32 19 20 12 6 + 28 26 36 64 198 196 202 3 + 36 38 28 64 202 204 198 3 + 26 24 34 64 196 194 200 3 + 34 36 26 64 200 202 196 3 + 24 22 32 64 9 7 15 3 + 32 34 24 64 15 17 9 3 + 22 20 30 64 7 5 13 3 + 30 32 22 64 13 15 7 3 + 40 42 43 2 212 214 224 2 + 43 41 40 2 225 226 212 2 + 42 44 45 2 214 216 227 2 + 45 43 42 2 228 229 214 2 + 44 46 47 2 30 32 44 2 + 47 45 44 2 45 46 30 2 + 46 48 49 2 32 34 47 2 + 49 47 46 2 48 49 32 2 + 50 51 53 4 218 219 221 1 + 53 52 50 4 221 220 218 1 + 52 53 55 4 220 221 223 1 + 55 54 52 4 223 222 220 1 + 54 55 57 4 38 39 41 1 + 57 56 54 4 41 40 38 1 + 56 57 59 4 40 41 43 1 + 59 58 56 4 43 42 40 1 + 40 41 51 8 29 50 37 5 + 51 50 40 8 37 36 29 5 + 41 43 53 16 213 215 221 4 + 53 51 41 16 221 219 213 4 + 43 45 55 16 215 217 223 4 + 55 53 43 16 223 221 215 4 + 45 47 57 16 31 33 41 4 + 57 55 45 16 41 39 31 4 + 47 49 59 16 33 35 43 4 + 59 57 47 16 43 41 33 4 + 48 46 56 64 34 32 40 3 + 56 58 48 64 40 42 34 3 + 46 44 54 64 32 30 38 3 + 54 56 46 64 38 40 32 3 + 44 42 52 64 216 214 220 3 + 52 54 44 64 220 222 216 3 + 42 40 50 64 214 212 218 3 + 50 52 42 64 218 220 214 3 + 60 62 63 2 51 53 63 2 + 63 61 60 2 64 65 51 2 + 62 64 65 2 129 131 141 2 + 65 63 62 2 142 143 129 2 + 64 66 67 2 131 133 144 2 + 67 65 64 2 145 146 131 2 + 68 69 71 4 57 58 60 1 + 71 70 68 4 60 59 57 1 + 70 71 73 4 135 136 138 1 + 73 72 70 4 138 137 135 1 + 72 73 75 4 137 138 140 1 + 75 74 72 4 140 139 137 1 + 61 63 71 16 52 54 60 4 + 71 69 61 16 60 58 52 4 + 63 65 73 16 130 132 138 4 + 73 71 63 16 138 136 130 4 + 65 67 75 16 132 134 140 4 + 75 73 65 16 140 138 132 4 + 67 66 74 32 66 55 61 6 + 74 75 67 32 61 62 56 6 + 66 64 72 64 133 131 137 3 + 72 74 66 64 137 139 133 3 + 64 62 70 64 131 129 135 3 + 70 72 64 64 135 137 131 3 + 62 60 68 64 53 51 57 3 + 68 70 62 64 57 59 53 3 + 76 77 81 8 67 68 72 5 + 81 80 76 8 72 71 67 5 + 77 79 83 16 68 70 74 4 + 83 81 77 16 74 72 68 4 + 79 78 82 32 75 69 73 6 + 82 83 79 32 73 76 77 6 + 78 76 80 64 69 67 71 3 + 80 82 78 64 71 73 69 3 + 84 85 89 8 78 79 83 5 + 89 88 84 8 83 82 78 5 + 85 87 91 16 79 81 85 4 + 91 89 85 16 85 83 79 4 + 87 86 90 32 86 80 84 6 + 90 91 87 32 84 87 88 6 + 86 84 88 64 80 78 82 3 + 88 90 86 64 82 84 80 3 + 92 93 97 8 89 90 94 5 + 97 96 92 8 94 93 89 5 + 93 95 99 16 90 92 96 4 + 99 97 93 16 96 94 90 4 + 95 94 98 32 97 91 95 6 + 98 99 95 32 95 98 99 6 + 94 92 96 64 91 89 93 3 + 96 98 94 64 93 95 91 3 + 100 101 105 8 100 101 105 5 + 105 104 100 8 105 104 100 5 + 101 103 107 16 101 103 107 4 + 107 105 101 16 107 105 101 4 + 103 102 106 32 108 102 106 6 + 106 107 103 32 106 109 110 6 + 102 100 104 64 102 100 104 3 + 104 106 102 64 104 106 102 3 + 108 110 111 2 312 313 314 2 + 111 109 108 2 314 315 312 2 + 110 112 113 2 164 166 167 2 + 113 111 110 2 167 165 164 2 + 112 114 115 2 166 168 169 2 + 115 113 112 2 169 167 166 2 + 116 117 119 4 343 344 345 1 + 119 118 116 4 345 346 343 1 + 118 119 121 4 171 170 172 1 + 121 120 118 4 172 173 171 1 + 120 121 123 4 173 172 174 1 + 123 122 120 4 174 175 173 1 + 108 109 117 8 176 177 178 5 + 117 116 108 8 179 180 181 5 + 109 111 119 16 315 314 318 4 + 119 117 109 16 319 320 315 4 + 111 113 121 16 165 167 182 4 + 121 119 111 16 183 184 165 4 + 113 115 123 16 167 169 185 4 + 123 121 113 16 186 187 167 4 + 114 112 120 64 168 166 173 3 + 120 122 114 64 173 175 168 3 + 112 110 118 64 166 164 171 3 + 118 120 112 64 171 173 166 3 + 110 108 116 64 313 312 316 3 + 116 118 110 64 316 317 313 3 + 124 125 129 8 147 148 151 5 + 129 128 124 8 151 150 147 5 + 125 127 131 16 157 159 163 4 + 131 129 125 16 163 161 157 4 + 127 126 130 32 153 149 152 6 + 130 131 127 32 152 154 155 6 + 126 124 128 64 158 156 160 3 + 128 130 126 64 160 162 158 3 + 123 114 122 0 188 189 190 1 + 115 114 123 0 191 192 193 1 + 132 134 135 2 330 331 332 2 + 135 133 132 2 332 333 330 2 + 134 136 137 2 247 249 250 2 + 137 135 134 2 250 248 247 2 + 136 138 139 2 321 323 324 2 + 139 137 136 2 324 322 321 2 + 140 141 143 4 347 348 349 1 + 143 142 140 4 349 350 347 1 + 142 143 145 4 252 251 253 1 + 145 144 142 4 253 254 252 1 + 144 145 147 4 340 339 341 1 + 147 146 144 4 341 342 340 1 + 133 135 143 16 333 332 336 4 + 143 141 133 16 337 338 333 4 + 135 137 145 16 248 250 255 4 + 145 143 135 16 256 257 248 4 + 137 139 147 16 322 324 327 4 + 147 145 137 16 328 329 322 4 + 138 136 144 64 323 321 325 3 + 144 146 138 64 325 326 323 3 + 136 134 142 64 249 247 252 3 + 142 144 136 64 252 254 249 3 + 134 132 140 64 331 330 334 3 + 140 142 134 64 334 335 331 3 + 148 149 153 8 230 231 234 5 + 153 152 148 8 234 233 230 5 + 149 151 155 16 240 242 246 4 + 155 153 149 16 246 244 240 4 + 151 150 154 32 236 232 235 6 + 154 155 151 32 235 237 238 6 + 150 148 152 64 241 239 243 3 + 152 154 150 64 243 245 241 3 + 156 158 159 2 275 276 277 2 + 159 157 156 2 277 278 275 2 + 158 160 161 2 276 279 280 2 + 161 159 158 2 280 277 276 2 + 160 162 163 2 279 281 282 2 + 163 161 160 2 282 280 279 2 + 164 165 167 4 283 284 285 1 + 167 166 164 4 285 286 283 1 + 166 167 169 4 286 285 287 1 + 169 168 166 4 287 288 286 1 + 168 169 171 4 288 287 289 1 + 171 170 168 4 289 290 288 1 + 156 157 165 8 291 292 293 5 + 165 164 156 8 294 295 296 5 + 157 159 167 16 278 277 297 4 + 167 165 157 16 298 299 278 4 + 159 161 169 16 277 280 300 4 + 169 167 159 16 301 302 277 4 + 161 163 171 16 280 282 303 4 + 171 169 161 16 304 305 280 4 + 162 160 168 64 281 279 288 3 + 168 170 162 64 288 290 281 3 + 160 158 166 64 279 276 286 3 + 166 168 160 64 286 288 279 3 + 158 156 164 64 276 275 283 3 + 164 166 158 64 283 286 276 3 + 172 173 177 8 258 259 262 5 + 177 176 172 8 262 261 258 5 + 173 175 179 16 268 270 274 4 + 179 177 173 16 274 272 268 4 + 175 174 178 32 264 260 263 6 + 178 179 175 32 263 265 266 6 + 174 172 176 64 269 267 271 3 + 176 178 174 64 271 273 269 3 + 171 162 170 0 306 307 308 1 + 163 162 171 0 309 310 311 1 + 180 182 183 2 385 386 387 2 + 183 181 180 2 387 388 385 2 + 182 184 185 2 351 353 354 2 + 185 183 182 2 354 352 351 2 + 184 186 187 2 411 413 414 2 + 187 185 184 2 414 412 411 2 + 188 189 191 4 407 408 409 1 + 191 190 188 4 409 410 407 1 + 190 191 193 4 356 355 357 1 + 193 192 190 4 357 358 356 1 + 192 193 195 4 416 415 417 1 + 195 194 192 4 417 418 416 1 + 180 181 189 8 359 360 361 5 + 189 188 180 8 362 363 364 5 + 181 183 191 16 388 387 391 4 + 191 189 181 16 392 393 388 4 + 183 185 193 16 352 354 365 4 + 193 191 183 16 366 367 352 4 + 185 187 195 16 412 414 419 4 + 195 193 185 16 420 421 412 4 + 186 184 192 64 413 411 416 3 + 192 194 186 64 416 418 413 3 + 184 182 190 64 353 351 356 3 + 190 192 184 64 356 358 353 3 + 182 180 188 64 386 385 389 3 + 188 190 182 64 389 390 386 3 + 195 186 194 0 368 369 370 1 + 187 186 195 0 371 372 373 1 + 196 198 199 2 422 423 424 2 + 199 197 196 2 424 425 422 2 + 198 200 201 2 374 376 377 2 + 201 199 198 2 377 375 374 2 + 200 202 203 2 394 396 397 2 + 203 201 200 2 397 395 394 2 + 204 205 207 4 431 432 433 1 + 207 206 204 4 433 434 431 1 + 206 207 209 4 379 378 380 1 + 209 208 206 4 380 381 379 1 + 208 209 211 4 404 403 405 1 + 211 210 208 4 405 406 404 1 + 197 199 207 16 425 424 428 4 + 207 205 197 16 429 430 425 4 + 199 201 209 16 375 377 382 4 + 209 207 199 16 383 384 375 4 + 201 203 211 16 395 397 400 4 + 211 209 201 16 401 402 395 4 + 202 200 208 64 396 394 398 3 + 208 210 202 64 398 399 396 3 + 200 198 206 64 376 374 379 3 + 206 208 200 64 379 381 376 3 + 198 196 204 64 423 422 426 3 + 204 206 198 64 426 427 423 3 + 212 214 215 2 511 512 513 2 + 215 213 212 2 514 515 516 2 + 216 217 219 4 517 518 519 1 + 219 218 216 4 520 521 522 1 + 212 213 217 8 503 504 508 5 + 217 216 212 8 508 507 503 5 + 213 215 219 16 504 506 510 4 + 219 217 213 16 510 508 504 4 + 215 214 218 32 523 505 509 6 + 218 219 215 32 509 524 525 6 + 214 212 216 64 505 503 507 3 + 216 218 214 64 507 509 505 3 + 220 222 223 2 534 535 536 2 + 223 221 220 2 537 538 539 2 + 224 225 227 4 540 541 542 1 + 227 226 224 4 543 544 545 1 + 220 221 225 8 526 527 531 5 + 225 224 220 8 531 530 526 5 + 221 223 227 16 527 529 533 4 + 227 225 221 16 533 531 527 4 + 223 222 226 32 546 528 532 6 + 226 227 223 32 532 547 548 6 + 222 220 224 64 528 526 530 3 + 224 226 222 64 530 532 528 3 + tverts 549 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 2.9985 0 + 0.344242 -1.04225 0 + 0.273035 -1.04225 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 1.95475 0 + 0.174465 0.00149864 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 2.9985 0 + 0.104128 2.9985 0 + 0.104128 2.24925 0 + 0.104128 0.00149864 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 1.95475 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 3.66842 0 + 0.104128 3.66842 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 3.66842 0 + 0.175144 3.66842 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 3.66842 0 + 0.104128 3.66842 0 + 0.104128 2.24925 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.348651 2.41652 0 + 0.277444 2.41652 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.419858 2.41652 0 + 0.349339 2.41652 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.277444 2.41652 0 + 0.277444 2.41652 0 + 0.273035 1.2055 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.326305 2.43905 0 + 0.255098 2.43905 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.397512 2.43905 0 + 0.326993 2.43905 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.255098 2.43905 0 + 0.255098 2.43905 0 + 0.273035 1.2055 0 + 0.159393 -0.654153 0 + 0.0890555 -0.654153 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.229729 -0.654153 0 + 0.160072 -0.654153 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.0890555 -0.654153 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.0337728 0.940718 0 + 0.0337728 -0.0582831 0 + 0.243649 -0.0582831 0 + 0.310278 -0.0582831 0 + 0.177022 -0.0582831 0 + 0.376905 -0.0582831 0 + 0.237631 0.940718 0 + 0.316296 0.940718 0 + 0.177022 0.940718 0 + 0.376905 0.940718 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 -0.0109385 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -0.0109385 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.37945 -0.0109385 0 + 0.404514 -0.0109386 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -0.0109386 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.320422 -1.13992 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -1.13992 0 + 0.37945 -1.13992 0 + 0.37945 0.674666 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -1.13992 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.35824 0 + 0.23974 2.35824 0 + 0.316414 0.879271 0 + 0.316414 2.35824 0 + 0.172541 2.35824 0 + 0.172541 2.35824 0 + 0.170192 0.852609 0 + 0.257387 -1.76798 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -1.76798 0 + 0.316414 -1.76798 0 + 0.316414 0.117489 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -1.76798 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.35824 0 + 0.316414 2.39498 0 + 0.37945 -1.19967 0 + 0.404514 -1.13992 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.316414 -1.82165 0 + 0.341479 -1.76798 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.164791 0.513932 0 + 0.147595 0.342531 0 + 0.164791 1.27572 0 + 0.141295 1.24906 0 + 0.250616 0.342531 0 + 0.223819 0.513932 0 + 0.248267 1.24906 0 + 0.223819 1.27572 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.0775959 1.24906 0 + 0.0775959 1.24906 0 + 0.079945 0.342531 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.164791 -1.30066 0 + 0.164791 0.513932 0 + 0.147595 0.342531 0 + 0.146631 -1.30066 0 + 0.223819 -1.30066 0 + 0.223819 0.513932 0 + 0.079945 0.342531 0 + 0.079945 0.342531 0 + 0.0782129 -1.30066 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.19751 0 + 0.0841089 2.19751 0 + 0.160783 0.718537 0 + 0.160783 2.19751 0 + 0.01691 2.19751 0 + 0.01691 2.19751 0 + 0.014561 0.691875 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.19751 0 + 0.160783 2.23425 0 + 0.223819 -1.3604 0 + 0.248883 -1.30066 0 + 0.250616 0.342531 0 + 0.223819 0.513932 0 + 0.164791 1.27572 0 + 0.141295 1.24906 0 + 0.164791 2.261 0 + 0.147144 2.261 0 + 0.248267 1.24906 0 + 0.223819 1.27572 0 + 0.250616 2.261 0 + 0.223819 2.261 0 + 0.079946 2.261 0 + 0.079946 2.261 0 + 0.0775959 1.24906 0 + 0.101756 -1.12541 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.12541 0 + 0.160783 -1.12541 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.12541 0 + 0.160783 -1.17908 0 + 0.185848 -1.12541 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.174465 0.521668 0 + 0.104128 0.521668 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.244801 0.521668 0 + 0.175144 0.521668 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.521668 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.00149864 0 + 0.104128 2.9985 0 + 0.251779 -1.21921 0 + 0.326839 -1.21921 0 + 0.0725431 -1.21921 0 + 0.506074 -1.21921 0 + 0.251779 -0.220206 0 + 0.326839 -0.220206 0 + 0.0725431 -0.220206 0 + 0.506074 -0.220206 0 + 0.323181 -0.753007 0 + 0.255437 -0.753007 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.323181 -0.686406 0 + 0.323181 -0.753007 0 + 0.323181 -0.753007 0 + 0.323181 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.753007 0 + 0.323181 -0.753007 0 + -0.00251664 -1.21921 0 + -0.00251664 -0.220206 0 + -0.00251664 -1.21921 0 + 0.251779 -1.70471 0 + 0.326839 -1.70471 0 + 0.0725431 -1.70471 0 + 0.506074 -1.70471 0 + 0.251779 -0.705713 0 + 0.326839 -0.705713 0 + 0.0725431 -0.705713 0 + 0.506074 -0.705713 0 + 0.323181 -1.23851 0 + 0.255437 -1.23851 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.323181 -1.17191 0 + 0.323181 -1.23851 0 + 0.323181 -1.23851 0 + 0.323181 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.23851 0 + 0.323181 -1.23851 0 + -0.00251664 -1.70471 0 + -0.00251664 -0.705713 0 + -0.00251664 -1.70471 0 + 0.249099 -0.975342 0 + 0.324159 -0.975342 0 + 0.0698632 -0.975342 0 + 0.503394 -0.975342 0 + 0.249099 0.0236625 0 + 0.324159 0.0236625 0 + 0.0698632 0.0236625 0 + 0.503394 0.0236625 0 + 0.320501 -0.509138 0 + 0.252757 -0.509138 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.320501 -0.442538 0 + 0.320501 -0.509138 0 + 0.320501 -0.509138 0 + 0.320501 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.509138 0 + 0.320501 -0.509138 0 + -0.00519651 -0.975342 0 + -0.00519651 0.0236625 0 + -0.00519651 -0.975342 0 + 0.249099 -1.46084 0 + 0.324159 -1.46084 0 + 0.0698632 -1.46084 0 + 0.503394 -1.46084 0 + 0.249099 -0.461844 0 + 0.324159 -0.461844 0 + 0.0698632 -0.461844 0 + 0.503394 -0.461844 0 + 0.320501 -0.994642 0 + 0.252757 -0.994642 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.320501 -0.928042 0 + 0.320501 -0.994642 0 + 0.320501 -0.994642 0 + 0.320501 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.994642 0 + 0.320501 -0.994642 0 + -0.00519651 -1.46084 0 + -0.00519651 -0.461844 0 + -0.00519651 -1.46084 0 +endnode +node aabb walkmesh + parent tin01_d08_02 + position 0.0 0.0 1.5 + orientation 1.0 0.0 0.0 0.0 + wirecolor 0.0 1.0 0.0 + multimaterial 20 + Dirt + Obscuring + Grass + Stone + Wood + Water + Nonwalk + Transparent + Carpet + Metal + Puddles + Swamp + Mud + Leaves + Lava + BottomlessPit + DeepWater + Door + Snow + Sand + ambient 0.0 0.0 0.0 + diffuse 0.6 0.34 0.16 + specular 0.0 0.0 0.0 + shininess 10.0 + bitmap Wood + verts 33 + -3.4 5.0 -1.5 + 0.03 0.41 -1.5 + 3.4 5.0 -1.5 + -4.46 2.85 -1.5 + -5.0 2.85 -1.5 + -5.0 -5.0 -1.5 + -3.48 3.48 -1.5 + -4.46 3.48 -1.5 + -5.0 2.85 1.5 + -4.46 3.48 1.5 + -3.48 5.0 1.5 + -3.48 3.48 1.5 + -5.0 5.0 1.5 + 3.4 4.78 -1.5 + 3.75 4.33 -1.5 + 3.75 0.54 -1.5 + 2.85 0.15 -1.5 + 3.75 0.15 -1.5 + 2.85 -5.0 -1.5 + 2.85 -4.46 -1.5 + 3.48 -4.46 -1.5 + 3.48 -0.93 -1.5 + 2.85 -0.93 -1.5 + 3.75 4.33 1.5 + 3.48 5.0 1.5 + 3.75 0.15 1.5 + 2.85 0.15 1.5 + 2.85 -0.93 1.5 + 3.48 -0.93 1.5 + 3.48 -4.46 1.5 + 2.85 -5.0 1.5 + 5.0 -5.0 1.5 + 5.0 5.0 1.5 + faces 52 + 0 1 2 0 0 0 0 5 + 3 4 5 0 0 0 0 5 + 3 5 1 0 0 0 0 5 + 3 1 6 0 0 0 0 5 + 3 6 7 0 0 0 0 5 + 4 3 8 0 0 0 0 2 + 3 7 9 0 0 0 0 2 + 3 9 8 0 0 0 0 2 + 6 10 11 0 0 0 0 2 + 8 9 12 0 0 0 0 2 + 9 11 12 0 0 0 0 2 + 11 10 12 0 0 0 0 2 + 6 0 10 0 0 0 0 2 + 1 13 2 0 0 0 0 5 + 16 17 15 0 0 0 0 5 + 1 5 18 0 0 0 0 5 + 19 20 21 0 0 0 0 5 + 16 15 1 0 0 0 0 5 + 1 18 19 0 0 0 0 5 + 19 21 22 0 0 0 0 5 + 22 16 1 0 0 0 0 5 + 1 19 22 0 0 0 0 5 + 13 14 23 0 0 0 0 2 + 2 13 24 0 0 0 0 2 + 14 25 23 0 0 0 0 2 + 17 16 26 0 0 0 0 2 + 17 26 25 0 0 0 0 2 + 16 22 27 0 0 0 0 2 + 16 27 26 0 0 0 0 2 + 22 21 28 0 0 0 0 2 + 22 28 27 0 0 0 0 2 + 21 20 29 0 0 0 0 2 + 21 29 28 0 0 0 0 2 + 20 19 30 0 0 0 0 2 + 20 30 29 0 0 0 0 2 + 19 18 30 0 0 0 0 2 + 28 25 26 0 0 0 0 2 + 26 27 28 0 0 0 0 2 + 31 29 30 0 0 0 0 2 + 24 23 32 0 0 0 0 2 + 23 25 32 0 0 0 0 2 + 28 29 31 0 0 0 0 2 + 25 28 31 0 0 0 0 2 + 25 31 32 0 0 0 0 2 + 24 13 23 0 0 0 0 2 + 7 6 9 0 0 0 0 2 + 9 6 11 0 0 0 0 2 + 1 14 13 0 0 0 0 5 + 1 15 14 0 0 0 0 5 + 15 17 25 0 0 0 0 2 + 14 15 25 0 0 0 0 2 + 1 0 6 0 0 0 0 5 + aabb -5.0 -5.0 -1.5 5.0 5.0 1.5 -1 + -5.0 -5.0 -1.5 3.4 5.0 1.5 -1 + -5.0 -5.0 -1.5 2.85 3.48 -1.5 -1 + -5.0 -5.0 -1.5 2.85 2.85 -1.5 -1 + -5.0 -5.0 -1.5 0.03 2.85 -1.5 2 + -5.0 -5.0 -1.5 2.85 0.41 -1.5 15 + -5.0 -5.0 -1.5 0.03 3.48 -1.5 -1 + -5.0 -5.0 -1.5 -4.46 2.85 -1.5 1 + -4.46 0.41 -1.5 0.03 3.48 -1.5 3 + -5.0 0.41 -1.5 3.4 5.0 1.5 -1 + -5.0 2.85 -1.5 -3.48 5.0 1.5 -1 + -5.0 2.85 -1.5 -3.48 3.48 1.5 -1 + -4.46 2.85 -1.5 -3.48 3.48 -1.5 4 + -5.0 2.85 -1.5 -3.48 3.48 1.5 -1 + -5.0 2.85 -1.5 -4.46 2.85 1.5 5 + -4.46 2.85 -1.5 -3.48 3.48 1.5 -1 + -4.46 2.85 -1.5 -4.46 3.48 1.5 6 + -4.46 3.48 -1.5 -3.48 3.48 1.5 45 + -5.0 2.85 -1.5 -3.48 5.0 1.5 -1 + -5.0 2.85 -1.5 -3.48 3.48 1.5 -1 + -5.0 2.85 -1.5 -4.46 3.48 1.5 7 + -4.46 3.48 -1.5 -3.48 3.48 1.5 46 + -5.0 2.85 1.5 -3.48 5.0 1.5 -1 + -5.0 2.85 1.5 -3.48 5.0 1.5 -1 + -5.0 2.85 1.5 -4.46 5.0 1.5 9 + -5.0 3.48 1.5 -3.48 5.0 1.5 10 + -5.0 3.48 1.5 -3.48 5.0 1.5 11 + -3.48 0.41 -1.5 3.4 5.0 1.5 -1 + -3.48 3.48 -1.5 -3.4 5.0 1.5 -1 + -3.48 3.48 -1.5 -3.4 5.0 1.5 12 + -3.48 3.48 -1.5 -3.48 5.0 1.5 8 + -3.48 0.41 -1.5 3.4 5.0 -1.5 -1 + -3.48 0.41 -1.5 0.03 5.0 -1.5 51 + -3.4 0.41 -1.5 3.4 5.0 -1.5 0 + 0.03 -5.0 -1.5 5.0 5.0 1.5 -1 + 0.03 -5.0 -1.5 5.0 0.41 1.5 -1 + 0.03 -5.0 -1.5 5.0 0.41 1.5 -1 + 2.85 -5.0 -1.5 5.0 -4.46 1.5 -1 + 2.85 -5.0 -1.5 3.48 -4.46 1.5 -1 + 2.85 -5.0 -1.5 2.85 -4.46 1.5 35 + 2.85 -5.0 -1.5 3.48 -4.46 1.5 33 + 2.85 -5.0 -1.5 5.0 -4.46 1.5 -1 + 2.85 -5.0 -1.5 3.48 -4.46 1.5 34 + 2.85 -5.0 1.5 5.0 -4.46 1.5 38 + 0.03 -5.0 -1.5 5.0 0.41 1.5 -1 + 2.85 -5.0 -1.5 5.0 -0.93 1.5 -1 + 3.48 -5.0 1.5 5.0 -0.93 1.5 41 + 2.85 -4.46 -1.5 3.48 -0.93 1.5 -1 + 2.85 -4.46 -1.5 3.48 -0.93 -1.5 16 + 3.48 -4.46 -1.5 3.48 -0.93 1.5 31 + 0.03 -5.0 -1.5 2.85 0.41 -1.5 18 + 0.03 -5.0 -1.5 5.0 0.41 1.5 -1 + 0.03 -5.0 -1.5 5.0 0.41 1.5 -1 + 2.85 -4.46 -1.5 3.48 -0.93 1.5 -1 + 2.85 -4.46 -1.5 3.48 -0.93 -1.5 19 + 3.48 -4.46 -1.5 3.48 -0.93 1.5 32 + 0.03 -5.0 -1.5 5.0 0.41 1.5 -1 + 3.48 -5.0 1.5 5.0 0.15 1.5 42 + 0.03 -4.46 -1.5 2.85 0.41 -1.5 21 + 2.85 -0.93 -1.5 3.75 0.15 1.5 -1 + 2.85 -0.93 -1.5 3.48 0.15 1.5 -1 + 2.85 -0.93 -1.5 2.85 0.15 1.5 27 + 2.85 -0.93 -1.5 3.48 -0.93 1.5 29 + 2.85 -0.93 -1.5 3.75 0.15 1.5 -1 + 2.85 -0.93 -1.5 3.48 0.15 1.5 -1 + 2.85 -0.93 -1.5 2.85 0.15 1.5 28 + 2.85 -0.93 -1.5 3.48 -0.93 1.5 30 + 2.85 -0.93 1.5 3.75 0.15 1.5 -1 + 2.85 -0.93 1.5 3.48 0.15 1.5 37 + 2.85 -0.93 1.5 3.75 0.15 1.5 36 + 0.03 -5.0 -1.5 5.0 5.0 1.5 -1 + 0.03 -5.0 -1.5 5.0 5.0 1.5 -1 + 0.03 -5.0 -1.5 5.0 5.0 1.5 -1 + 0.03 -5.0 -1.5 5.0 5.0 1.5 -1 + 0.03 -5.0 -1.5 5.0 5.0 1.5 -1 + 0.03 -0.93 -1.5 2.85 0.41 -1.5 20 + 3.75 -5.0 1.5 5.0 5.0 1.5 43 + 2.85 0.15 -1.5 3.75 0.15 1.5 -1 + 2.85 0.15 -1.5 3.75 0.15 1.5 25 + 2.85 0.15 -1.5 3.75 0.15 1.5 26 + 0.03 0.15 -1.5 3.75 0.54 1.5 -1 + 0.03 0.15 -1.5 3.75 0.54 -1.5 -1 + 0.03 0.15 -1.5 3.75 0.54 -1.5 17 + 2.85 0.15 -1.5 3.75 0.54 -1.5 14 + 3.75 0.15 -1.5 3.75 0.54 1.5 49 + 0.03 0.15 -1.5 3.75 4.33 1.5 -1 + 3.75 0.15 -1.5 3.75 4.33 1.5 50 + 0.03 0.41 -1.5 3.75 4.33 -1.5 48 + 0.03 0.15 -1.5 5.0 5.0 1.5 -1 + 0.03 0.41 -1.5 3.75 5.0 -1.5 -1 + 0.03 0.41 -1.5 3.75 4.78 -1.5 47 + 0.03 0.41 -1.5 3.4 5.0 -1.5 13 + 3.4 0.15 -1.5 5.0 5.0 1.5 -1 + 3.75 0.15 -1.5 5.0 5.0 1.5 -1 + 3.75 0.15 -1.5 3.75 4.33 1.5 24 + 3.75 0.15 1.5 5.0 5.0 1.5 40 + 3.4 4.33 -1.5 5.0 5.0 1.5 -1 + 3.4 4.33 -1.5 3.75 5.0 1.5 -1 + 3.4 4.78 -1.5 3.48 5.0 1.5 23 + 3.4 4.33 -1.5 3.75 4.78 1.5 22 + 3.4 4.33 -1.5 5.0 5.0 1.5 -1 + 3.4 4.33 -1.5 3.75 5.0 1.5 44 + 3.48 4.33 1.5 5.0 5.0 1.5 39 +endnode +#Tile trimesh node +node trimesh Line712 + parent tin01_d08_02 + position 2.21 5.0 4.31 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 4 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center -221.0 0.0 -22.5 + bitmap tin01_black + verts 24 + -0.82 0.0 0.53 + 0.01 0.0 0.53 + 0.22 0.0 0.18 + 0.43 0.0 0.42 + 0.96 0.0 -0.12 + 0.75 0.0 -0.36 + 1.19 0.0 -0.61 + 1.19 0.0 -1.31 + 1.19 0.0 0.53 + 1.54 0.0 0.86 + 1.54 0.0 -1.31 + -2.21 0.0 0.86 + -2.21 0.0 0.53 + -4.43 0.0 0.53 + -3.61 0.0 0.53 + -4.64 0.0 0.18 + -4.85 0.0 0.42 + -5.39 0.0 -0.12 + -5.18 0.0 -0.36 + -5.61 0.0 -0.61 + -5.61 0.0 -1.31 + -5.96 0.0 0.86 + -5.61 0.0 0.53 + -5.96 0.0 -1.31 + faces 26 + 0 1 2 1 0 0 0 1 + 2 1 3 1 0 0 0 1 + 3 4 5 1 0 0 0 1 + 3 5 2 1 0 0 0 1 + 4 6 7 1 0 0 0 1 + 4 7 5 1 0 0 0 1 + 8 9 10 1 0 0 0 1 + 6 10 7 1 0 0 0 1 + 8 10 6 1 0 0 0 1 + 8 1 9 1 0 0 0 1 + 11 9 12 1 0 0 0 1 + 1 0 9 1 0 0 0 1 + 12 9 0 1 0 0 0 1 + 13 14 15 1 0 0 0 1 + 13 15 16 1 0 0 0 1 + 17 16 18 1 0 0 0 1 + 18 16 15 1 0 0 0 1 + 19 17 20 1 0 0 0 1 + 20 17 18 1 0 0 0 1 + 21 22 23 1 0 0 0 1 + 23 19 20 1 0 0 0 1 + 23 22 19 1 0 0 0 1 + 13 22 21 1 0 0 0 1 + 21 11 12 1 0 0 0 1 + 14 13 21 1 0 0 0 1 + 21 12 14 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Mesh01 + parent tin01_d08_02 + position 3.4 4.88 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -31.0 1.0 40.5 + bitmap tin01_furnish2 + verts 20 + 0.35 0.12 1.49 + 0.35 -0.1 1.49 + 0.35 -0.1 -0.68 + 0.35 0.12 -0.68 + 0.0 -0.1 1.16 + 0.0 0.12 1.16 + 0.0 0.12 0.02 + 0.0 -0.1 0.02 + 0.0 -0.1 -0.68 + -0.97 -0.1 0.81 + -0.44 0.12 0.27 + -0.97 0.12 0.81 + 0.0 0.12 -0.68 + -0.44 -0.1 0.27 + -0.22 -0.1 0.51 + -0.22 0.12 0.51 + -0.97 -0.1 0.81 + -0.76 -0.1 1.05 + -0.76 0.12 1.05 + -0.97 0.12 0.81 + faces 20 + 0 1 2 1 0 1 2 4 + 0 2 3 1 0 2 3 4 + 4 5 6 1 4 5 6 3 + 6 7 4 1 6 7 4 3 + 9 11 10 1 24 25 26 3 + 7 8 2 2 28 29 30 6 + 2 1 4 2 30 31 32 6 + 2 4 7 2 30 32 28 6 + 13 8 7 8 35 33 45 5 + 7 14 13 8 45 36 35 5 + 13 14 17 8 35 36 40 5 + 17 16 13 8 40 39 35 5 + 7 6 15 16 45 46 37 4 + 15 14 7 16 37 36 45 4 + 14 15 18 16 36 37 41 4 + 18 17 14 16 41 40 36 4 + 12 8 13 64 34 33 35 3 + 13 10 12 64 35 38 34 3 + 10 13 16 64 38 35 39 3 + 16 19 10 64 39 42 38 3 + tverts 47 + 0.408666 0.891416 0 + 0.346688 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.219389 1.36765 0 + 0.285126 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + 0.46889 1.46063 0 + 0.540743 1.39726 0 + 0.618333 1.52891 0 + 0.829444 1.52891 0 + 0.36085 -0.460635 0 + 0.426587 -0.460635 0 + 0.426587 -0.528906 0 + 0.36085 -0.528906 0 + 0.30483 1.29827 0 + 0.377444 1.23509 0 + 0.36085 -0.298269 0 + 0.426587 -0.298269 0 + 0.219389 1.0989 0 + 0.285126 1.0989 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 + 0.414477 0.4225 0 + 0.476458 0.4225 0 + 0.476458 0.206945 0 + 0.414477 0.206945 0 + 0.328438 0.836212 0 + 0.328438 0.625102 0 + 0.434495 0.624996 0 + 0.434495 1.28399 0 + 0.328438 1.18256 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.170894 0.6665 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh02 + parent tin01_d08_02 + position -3.41 4.88 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 32.0 1.0 39.5 + bitmap tin01_furnish2 + verts 18 + -0.34 -0.1 1.48 + -0.34 0.12 1.48 + -0.34 -0.1 -0.69 + -0.34 0.12 -0.69 + 0.01 0.12 1.15 + 0.01 -0.1 1.15 + 0.01 0.12 0.01 + 0.01 -0.1 0.01 + 0.01 -0.1 -0.69 + 0.01 0.12 -0.69 + 0.23 0.12 0.5 + 0.23 -0.1 0.5 + 0.45 -0.1 0.26 + 0.45 0.12 0.26 + 0.77 0.12 1.04 + 0.77 -0.1 1.04 + 0.98 -0.1 0.8 + 0.98 0.12 0.8 + faces 19 + 0 1 2 1 0 1 2 4 + 2 1 3 1 2 1 3 4 + 4 5 6 1 4 5 6 3 + 7 6 5 1 7 6 5 3 + 0 2 8 2 8 9 10 6 + 7 5 0 2 11 12 8 6 + 8 7 0 2 10 11 8 6 + 10 6 7 16 57 86 87 4 + 7 11 10 16 87 58 57 4 + 10 11 15 16 57 58 64 4 + 15 14 10 16 64 73 57 4 + 7 8 12 32 88 74 59 6 + 12 11 7 32 59 67 88 6 + 11 12 16 32 68 59 65 6 + 16 15 11 32 65 75 68 6 + 8 9 13 64 51 50 60 3 + 13 12 8 64 60 59 51 3 + 12 13 17 64 59 60 66 3 + 17 16 12 64 66 65 59 3 + tverts 89 + 0.346688 0.891416 0 + 0.408666 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.285126 1.36765 0 + 0.219389 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + -0.696282 1.23919 0 + -0.696282 0.617953 0 + -0.596281 0.617953 0 + -0.596281 0.817 0 + -0.596281 1.14356 0 + 0.225624 0.266174 0 + 0.252833 0.305544 0 + 0.252357 0.150473 0 + 0.226784 -0.0348742 0 + 0.191477 0.305544 0 + 0.191001 0.150473 0 + 0.204708 0.471327 0 + 0.273749 0.510697 0 + 0.212393 0.510697 0 + 0.286295 0.267326 0 + 0.28814 -0.0348742 0 + 0.266064 0.471327 0 + 0.21826 0.266174 0 + 0.137861 0.305544 0 + 0.136086 0.150473 0 + 0.136086 0.150473 0 + 0.213931 -0.0348742 0 + 0.21826 0.266174 0 + 0.252833 0.305544 0 + 0.191477 0.305544 0 + 0.252357 0.150473 0 + 0.191477 0.305544 0 + 0.296319 0.471327 0 + 0.215919 0.510697 0 + 0.137861 0.305544 0 + 0.137861 0.305544 0 + 0.21826 0.266174 0 + 0.296319 0.471327 0 + 0.212393 0.510697 0 + 0.252833 0.305544 0 + 0.286295 0.267326 0 + 0.225624 0.266174 0 + 0.28814 -0.0348742 0 + 0.225624 0.266174 0 + 0.204708 0.471327 0 + 0.286295 0.267326 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.0952516 0.000499517 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.496536 0.3335 0 + 0.0952516 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + -0.0034642 0.3335 0 + -0.0034642 0.3335 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + 0.420894 0.6665 0 + 0.0876934 0.0625172 0 + -0.00129734 0.669749 0 + 0.345252 0.777547 0 + -0.00282295 0.777409 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 + 0.496536 0.192615 0 + -0.0034642 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh03 + parent tin01_d08_02 + position 1.65 4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 22.5 1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + -1.65 -0.1 0.19 + -1.65 -0.1 -0.14 + 2.1 -0.1 0.19 + 1.75 -0.1 -0.14 + 0.57 -0.1 -0.14 + -0.25 -0.1 -0.14 + 1.75 0.12 -0.14 + 0.57 0.12 -0.14 + 2.1 0.12 0.19 + -1.65 0.12 0.19 + -1.65 0.12 -0.14 + -0.25 0.12 -0.14 + 0.78 -0.1 -0.49 + 0.99 -0.1 -0.25 + 0.99 0.12 -0.25 + 0.78 0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 3 2 4 1 3 2 4 3 + 4 2 5 1 4 2 5 3 + 5 2 1 1 5 2 1 3 + 6 3 4 2 28 21 29 3 + 4 7 6 2 22 23 20 3 + 2 8 9 2 6 7 8 3 + 9 0 2 2 8 9 6 3 + 1 10 11 2 30 25 31 3 + 11 5 1 2 26 27 24 3 + 4 5 12 8 15 10 12 5 + 12 13 4 8 12 13 15 5 + 14 7 4 16 17 19 18 4 + 4 13 14 16 18 16 17 4 + 15 12 5 64 14 12 10 3 + 5 11 15 64 10 11 14 3 + tverts 32 + 0.496366 -0.196817 0 + 0.384796 -0.196817 0 + 0.496367 1.05318 0 + 0.384796 0.936516 0 + 0.384796 0.544462 0 + 0.384796 0.268566 0 + 0.426587 -0.634963 0 + 0.36085 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.170894 0.6665 0 + 0.345252 0.777547 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.326259 1.00025 0 + 0.261617 1.00025 0 + 0.261617 0.653536 0 + 0.326259 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.00124749 0 + 0.326259 0.412601 0 + 0.261617 0.412601 0 + 0.326259 1.00025 0 + 0.261617 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.412601 0 +endnode +#Tile trimesh node +node trimesh Mesh03 + parent tin01_d08_02 + position 0.0 0.0 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 29.0 250.0 0.0 + bitmap tin01_floortran4 + verts 23 + 3.4 5.0 0.0 + 2.5 5.0 0.0 + 3.4 4.78 0.0 + 2.5 2.5 0.0 + -3.48 3.48 0.0 + -3.4 4.78 0.0 + -3.48 4.78 0.0 + 0.0 2.5 0.0 + 0.0 5.0 0.0 + -2.5 2.5 0.0 + -2.5 5.0 0.0 + 3.75 0.54 0.0 + 4.06 0.54 0.0 + 4.06 2.5 0.0 + 0.0 0.0 0.0 + 2.5 0.0 0.0 + -3.4 5.0 0.0 + 3.75 4.33 0.0 + 3.75 4.78 0.0 + 4.06 4.33 0.0 + 2.85 0.15 0.0 + 3.75 0.15 0.0 + 2.85 0.0 0.0 + faces 27 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 5 6 1 4 5 6 1 + 3 1 7 1 3 1 7 1 + 8 7 1 1 8 7 1 1 + 7 8 9 1 9 10 11 1 + 10 9 8 1 12 11 10 1 + 11 12 13 1 13 14 15 1 + 13 3 11 1 15 16 13 1 + 14 15 7 1 17 18 19 1 + 3 7 15 1 20 19 18 1 + 7 9 14 1 21 22 23 1 + 9 10 4 1 24 25 4 1 + 4 10 5 1 4 25 5 1 + 10 16 5 1 25 26 5 1 + 2 17 18 1 2 27 28 1 + 13 19 17 1 29 30 27 1 + 17 3 13 1 27 3 29 1 + 3 20 11 1 16 31 13 1 + 11 20 21 1 13 31 32 1 + 20 21 20 1 33 32 31 1 + 15 20 3 1 34 35 16 1 + 15 22 20 1 34 36 35 1 + 20 20 22 1 33 35 36 1 + 20 20 3 1 35 31 16 1 + 20 20 20 1 35 33 31 1 + 17 2 3 1 27 2 3 1 + tverts 37 + 0.196003 0.440306 0 + 0.0157885 0.440306 0 + 0.196003 0.476046 0 + 0.0157886 0.852181 0 + 0.73029 0.801771 0 + 0.713716 0.568561 0 + 0.728238 0.568561 0 + 0.515789 0.852181 0 + 0.515789 0.440306 0 + 0.188869 0.852181 0 + 0.188869 0.440306 0 + 0.687488 0.852181 0 + 0.687488 0.440306 0 + 0.262284 0.892025 0 + 0.199297 0.892135 0 + 0.198611 0.499548 0 + 0.511599 0.499002 0 + 0.553782 0.999104 0 + 0.0294404 0.997685 0 + 0.552909 0.496813 0 + 0.0285676 0.497686 0 + 0.535345 0.534326 0 + 1.011 0.533454 0 + 0.536218 1.00453 0 + 0.557924 0.977785 0 + 0.553977 0.529678 0 + 0.713374 0.529678 0 + 0.266085 0.550663 0 + 0.266085 0.476047 0 + 0.329147 0.852181 0 + 0.329147 0.550664 0 + 0.442263 0.968981 0 + 0.26242 0.969594 0 + 0.442263 0.969281 0 + 0.512471 0.999001 0 + 0.442962 0.96928 0 + 0.442315 0.999124 0 +endnode +#Tile trimesh node +node trimesh Mesh04 + parent tin01_d08_02 + position -1.55 4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -32.5 1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + 1.55 -0.1 -0.14 + 1.55 -0.1 0.19 + -2.2 -0.1 0.19 + -1.85 -0.1 -0.14 + -0.67 -0.1 -0.14 + 0.15 -0.1 -0.14 + -1.85 0.12 -0.14 + -0.67 0.12 -0.14 + -2.2 0.12 0.19 + 1.55 0.12 0.19 + 1.55 0.12 -0.14 + 0.15 0.12 -0.14 + -1.09 0.12 -0.25 + -1.09 -0.1 -0.25 + -0.88 -0.1 -0.49 + -0.88 0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 4 1 2 3 4 3 + 2 4 5 1 2 4 5 3 + 2 5 0 1 2 5 0 3 + 3 6 4 2 24 32 33 3 + 7 4 6 2 27 26 25 3 + 8 2 9 2 6 7 8 3 + 1 9 2 2 9 8 7 3 + 10 0 11 2 28 34 35 3 + 5 11 0 2 31 30 29 3 + 13 14 5 32 15 16 14 6 + 14 15 11 64 12 13 10 3 + 11 5 14 64 10 11 12 3 + 13 5 4 0 15 17 18 1 + 12 13 4 0 20 21 23 1 + 12 4 7 0 19 23 22 1 + tverts 36 + 0.338345 1.40811 0 + 0.449916 1.40811 0 + 0.449916 0.158114 0 + 0.338345 0.274781 0 + 0.338345 0.666835 0 + 0.338345 0.942731 0 + 0.36085 -0.634963 0 + 0.426587 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + -0.00282295 0.777409 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.219023 0.00190346 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.280636 0.349166 0 + 0.274944 1.00143 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 + 0.213895 0.589529 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 +endnode +#Tile trimesh node +node trimesh Mesh181 + parent tin01_d08_02 + position 0.0 0.0 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.603922 0.584314 0.592157 + diffuse 0.603922 0.584314 0.592157 + specular 0.0 0.0 0.0 + shininess 1 + center -76.0 -76.0 0.0 + bitmap tin01_shpflr1 + verts 25 + 3.48 -2.5 0.0 + 2.5 -2.5 0.0 + 3.48 -4.46 0.0 + 2.85 -4.46 0.0 + 0.0 -5.0 0.0 + 2.5 -5.0 0.0 + 0.0 -2.5 0.0 + 0.0 0.0 0.0 + -2.5 -5.0 0.0 + -2.5 -2.5 0.0 + -2.5 0.0 0.0 + -2.5 2.5 0.0 + -5.0 -5.0 0.0 + -5.0 -2.5 0.0 + -5.0 0.0 0.0 + -5.0 2.5 0.0 + -4.46 2.85 0.0 + -5.0 2.85 0.0 + 2.85 -0.93 0.0 + 2.5 0.0 0.0 + 2.85 0.0 0.0 + -4.46 3.48 0.0 + -3.48 3.48 0.0 + 3.48 -0.93 0.0 + 2.85 -5.0 0.0 + faces 27 + 0 1 2 1 0 1 2 1 + 2 1 3 1 2 1 3 1 + 4 5 6 1 4 5 6 1 + 1 6 5 1 1 6 5 1 + 6 1 7 1 6 1 7 1 + 8 4 9 1 8 4 9 1 + 6 9 4 1 6 9 4 1 + 9 6 10 1 9 6 10 1 + 7 10 6 1 7 10 6 1 + 10 7 11 1 10 7 11 1 + 12 8 13 1 12 8 13 1 + 9 13 8 1 9 13 8 1 + 13 9 14 1 13 9 14 1 + 10 14 9 1 10 14 9 1 + 14 10 15 1 14 10 15 1 + 11 15 10 1 11 15 10 1 + 16 17 15 1 16 17 15 1 + 15 11 16 1 15 11 16 1 + 1 18 19 1 1 18 19 1 + 20 19 18 1 20 19 18 1 + 19 7 1 1 19 7 1 1 + 11 21 16 1 11 21 16 1 + 11 22 21 1 11 22 21 1 + 18 1 0 1 18 1 0 1 + 0 23 18 1 0 23 18 1 + 1 5 3 1 1 5 3 1 + 5 24 3 1 5 24 3 1 + tverts 25 + 13.6964 -15.5 0 + 13.5 -15.5 0 + 13.6964 -15.8918 0 + 13.5702 -15.8918 0 + 13.0 -16.0 0 + 13.5 -16.0 0 + 13.0 -15.5 0 + 13.0 -15.0 0 + 12.5 -16.0 0 + 12.5 -15.5 0 + 12.5 -15.0 0 + 12.5 -14.5 0 + 12.0 -16.0 0 + 12.0 -15.5 0 + 12.0 -15.0 0 + 12.0 -14.5 0 + 12.1082 -14.4298 0 + 12.0 -14.4298 0 + 13.5702 -15.1867 0 + 13.5 -15.0 0 + 13.5702 -15.0 0 + 12.1082 -14.3036 0 + 12.3036 -14.3036 0 + 13.6964 -15.1867 0 + 13.5702 -16.0 0 +endnode +#Tile trimesh node +node trimesh Mesh195 + parent tin01_d08_02 + position 4.37 4.82 2.83 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -24.5 -110.5 -133.0 + bitmap tin01_wallcord + verts 14 + 0.13 0.18 0.17 + -0.62 -2.39 0.17 + 0.13 -2.39 0.17 + -0.62 -0.49 -0.96 + -0.62 -0.04 0.17 + -0.62 -0.04 -2.83 + -0.62 -1.15 -0.49 + -0.62 -2.39 -0.31 + -0.62 0.18 0.17 + -0.62 -0.49 -2.83 + -0.31 -0.49 -0.96 + -0.31 -1.15 -0.49 + -0.31 -2.39 -0.31 + -0.31 -0.49 -2.83 + faces 14 + 0 1 2 1 0 1 2 1 + 3 4 5 2 3 4 5 4 + 4 3 6 2 4 3 6 4 + 4 6 7 2 4 6 7 4 + 0 8 4 1 0 8 9 1 + 9 3 5 2 10 3 5 4 + 0 4 1 1 0 9 1 1 + 1 4 7 2 11 4 7 4 + 10 11 6 1 3 6 12 4 + 6 3 10 1 12 13 3 4 + 11 12 7 4 6 7 14 4 + 7 6 11 4 7 6 15 4 + 13 10 3 4 10 3 13 4 + 3 9 13 4 13 16 10 4 + tverts 17 + 2.07285 1.1186 0 + 1.22305 0.870259 0 + 1.22305 1.1186 0 + 1.78415 0.623796 0 + 1.93412 0.996604 0 + 1.93412 0.0032268 0 + 1.56605 0.778557 0 + 1.15615 0.838108 0 + 2.07285 0.870258 0 + 2.00102 0.870258 0 + 1.78415 0.0032268 0 + 1.15615 0.996604 0 + 1.44242 0.778557 0 + 1.63305 0.623796 0 + 1.15615 0.838108 0 + 1.56605 0.778557 0 + 1.64679 0.0032268 0 +endnode +#Tile trimesh node +node trimesh Mesh583 + parent tin01_d08_02 + position 4.12 2.54 0.86 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -6.0 -10.5 40.0 + bitmap tin01_wallbrick + verts 8 + -0.06 -0.04 -0.86 + -0.06 -1.34 1.48 + -0.06 -0.11 1.66 + -0.06 1.13 1.48 + -0.06 1.79 1.01 + -0.06 -2.0 1.01 + -0.06 -2.0 -0.86 + -0.06 1.79 -0.86 + faces 6 + 0 1 2 1 0 1 2 3 + 0 3 4 1 0 3 4 3 + 0 2 3 1 0 2 3 3 + 5 1 0 1 5 1 0 3 + 0 6 5 1 0 6 5 3 + 7 0 4 1 7 0 4 3 + tverts 8 + 0.849447 -0.0003026 0 + 1.69567 0.775027 0 + 0.850303 0.834578 0 + 0.306033 0.775027 0 + -0.0557951 0.620267 0 + 2.02789 0.620267 0 + 2.02789 -0.0003027 0 + -0.0557952 -0.0003025 0 +endnode +#Tile trimesh node +node trimesh Mesh680 + parent tin01_d08_02 + position 4.37 4.59 0.01 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -24.5 -498.0 299.0 + bitmap tin01_wallcord + verts 4 + 0.13 -4.59 2.99 + -0.62 -5.37 2.99 + 0.13 -5.37 2.99 + -0.62 -4.59 2.99 + faces 2 + 0 1 2 1 0 1 2 1 + 0 3 1 1 3 4 1 1 + tverts 5 + 0.259262 0.0745779 0 + 0.0734802 0.272213 0 + 0.261253 0.293444 0 + 0.259263 0.0745784 0 + 0.0717698 0.0762147 0 +endnode +#Tile trimesh node +node trimesh Mesh949 + parent tin01_d08_02 + position -4.0 4.09 0.84 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -24.0 4.0 66.0 + bitmap tin01_lwalls + verts 17 + 0.25 0.69 0.65 + 0.25 0.69 2.16 + 0.25 -0.34 2.16 + 0.25 -0.34 0.65 + -0.61 -0.34 0.65 + -0.61 -0.61 0.65 + 0.52 -0.61 0.65 + -0.61 -0.34 2.16 + -0.5 0.41 2.16 + -1.0 0.41 2.16 + -1.0 -0.34 2.16 + 0.52 -0.61 -0.84 + 0.52 0.69 0.65 + 0.52 0.69 -0.84 + -0.61 -0.61 -0.16 + -0.46 -0.61 -0.84 + -0.46 -0.61 -0.32 + faces 17 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 3 4 5 2 4 5 6 1 + 5 6 3 2 6 7 4 1 + 7 2 8 4 8 9 10 1 + 7 8 9 4 8 10 11 1 + 7 9 10 4 8 11 12 1 + 6 11 12 1 13 14 15 1 + 11 13 12 1 14 16 15 1 + 7 4 3 2 17 18 19 1 + 3 2 7 2 19 20 17 1 + 5 14 6 2 21 22 23 1 + 11 6 15 2 24 23 25 1 + 14 16 6 2 22 26 23 1 + 15 6 16 2 25 23 26 1 + 3 6 12 4 27 28 29 1 + 12 0 3 4 29 30 27 1 + tverts 31 + 0.159906 0.483529 0 + 0.159906 0.858599 0 + 0.374404 0.858599 0 + 0.374404 0.483529 0 + 0.426252 0.45777 0 + 0.640749 0.45777 0 + 0.640749 0.390768 0 + 0.359251 0.390768 0 + 0.558247 0.677799 0 + 0.34375 0.677799 0 + 0.531713 0.865299 0 + 0.65625 0.8653 0 + 0.65625 0.677799 0 + 0.536235 0.46138 0 + 0.536235 0.0939666 0 + 0.321738 0.46138 0 + 0.323519 0.0932356 0 + 0.543447 0.858423 0 + 0.543447 0.483353 0 + 0.32895 0.483354 0 + 0.32895 0.858423 0 + 0.705278 0.461204 0 + 0.705278 0.264192 0 + 0.490781 0.461205 0 + 0.490781 0.0937908 0 + 0.667973 0.0937908 0 + 0.667973 0.223495 0 + 6.29438 1.3802 0 + 6.29438 1.44535 0 + 6.07989 1.44535 0 + 6.07989 1.3802 0 +endnode +#Tile trimesh node +node trimesh Mesh950 + parent tin01_d08_02 + position 4.89 -2.5 1.35 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -90.0 -39.0 15.0 + bitmap tin01_lwalls + verts 20 + -1.14 0.0 1.65 + -0.39 0.0 1.65 + -1.14 1.72 1.65 + -1.14 0.0 0.14 + -1.14 1.72 0.14 + -1.41 0.0 -1.35 + -1.41 0.0 0.14 + -1.41 1.57 -1.35 + -1.41 1.57 -0.83 + -1.41 1.72 0.14 + -1.41 -1.96 -1.35 + -1.41 -1.96 -0.83 + -0.39 -2.5 1.65 + -1.14 -2.5 1.65 + -1.14 -2.11 1.65 + -1.14 -2.11 0.14 + -1.41 -2.11 -0.67 + -1.41 -2.11 0.14 + -0.39 1.72 1.65 + -1.41 1.72 -0.67 + faces 21 + 0 1 2 1 0 1 2 1 + 3 0 4 2 3 4 5 1 + 2 4 0 2 6 5 4 1 + 5 6 7 1 7 8 9 1 + 8 7 6 1 10 9 8 1 + 6 3 9 4 11 12 13 1 + 4 9 3 4 14 13 12 1 + 5 10 11 1 15 16 17 3 + 12 1 13 1 18 19 20 1 + 0 14 1 1 21 22 19 1 + 14 13 1 1 22 20 19 1 + 14 0 3 2 23 24 25 3 + 3 15 14 2 25 26 23 3 + 16 17 6 1 27 28 29 3 + 11 16 6 1 17 27 29 3 + 6 5 11 1 29 15 17 3 + 15 3 17 4 30 31 32 3 + 6 17 3 4 33 32 31 3 + 18 2 1 1 34 35 36 1 + 9 19 6 1 37 38 8 1 + 19 8 6 1 38 10 8 1 + tverts 39 + 1.4375 0.642952 0 + 1.4375 0.830915 0 + 1.1297 0.642952 0 + 1.38199 0.483596 0 + 1.38199 0.86012 0 + 1.07419 0.483596 0 + 1.07419 0.86012 0 + 1.45501 0.0859648 0 + 1.45501 0.459441 0 + 1.09236 0.0859649 0 + 1.09236 0.201216 0 + 1.125 0.385727 0 + 1.125 0.452728 0 + 0.868918 0.385728 0 + 0.8172 0.452728 0 + 1.00826 0.0836864 0 + 0.518565 0.0836864 0 + 0.518565 0.21325 0 + 0.1875 0.962454 0 + 0.8125 0.962454 0 + 0.1875 0.774954 0 + 0.8125 0.774954 0 + 0.285502 0.774954 0 + 0.481259 0.861477 0 + 1.00826 0.861477 0 + 1.00826 0.484953 0 + 0.481259 0.484953 0 + 0.481259 0.253947 0 + 0.481259 0.457162 0 + 1.00826 0.457162 0 + 1.58916 0.458269 0 + 1.06216 0.458269 0 + 1.58916 0.391269 0 + 1.06216 0.391269 0 + 0.871488 0.585051 0 + 1.05907 0.58505 0 + 0.871338 1.01404 0 + 1.05756 0.459442 0 + 1.05756 0.258844 0 +endnode +#Tile trimesh node +node trimesh Mesh3649 + parent tin01_d08_02 + position -1.55 4.91 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -32.5 -2.0 -15.0 + bitmap tin01_furnish2 + verts 16 + 1.55 -0.13 -0.14 + 1.55 -0.13 0.19 + -2.2 -0.13 0.19 + -1.85 -0.13 -0.14 + -0.67 -0.13 -0.14 + 0.15 -0.13 -0.14 + -1.85 0.09 -0.14 + -0.67 0.09 -0.14 + -2.2 0.09 0.19 + 1.55 0.09 0.19 + 1.55 0.09 -0.14 + 0.16 0.09 -0.14 + -1.09 -0.13 -0.25 + -0.88 -0.13 -0.49 + -1.09 0.09 -0.25 + -0.88 0.09 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 4 1 2 3 4 3 + 2 4 5 1 2 4 5 3 + 2 5 0 1 2 5 0 3 + 3 6 4 2 6 7 8 3 + 7 4 6 2 8 9 6 3 + 8 2 9 2 10 11 12 3 + 1 9 2 2 13 12 11 3 + 10 0 11 2 14 15 16 3 + 5 11 0 2 16 17 14 3 + 5 4 12 1 16 8 18 6 + 12 13 5 1 18 19 16 6 + 4 7 12 4 20 21 22 3 + 14 12 7 4 23 22 21 3 + 11 5 15 4 16 17 19 3 + 13 15 5 4 19 24 16 3 + tverts 25 + 0.338345 1.40811 0 + 0.449916 1.40811 0 + 0.449916 0.158114 0 + 0.338345 0.274781 0 + 0.338345 0.666835 0 + 0.338345 0.942731 0 + 0.271984 1.52891 0 + 0.271984 1.52891 0 + 0.271984 1.17225 0 + -0.634963 0.641582 0 + 0.36085 -0.634963 0 + 0.426587 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.271984 0.5 0 + 0.271984 0.5 0 + 0.271984 0.921431 0 + 0.271984 0.921431 0 + 0.30483 1.29827 0 + 0.377444 1.23509 0 + 0.426587 -0.172246 0 + 0.36085 -0.172246 0 + 0.426587 -0.298269 0 + 0.36085 -0.298269 0 + 0.377444 1.23509 0 +endnode +#Tile trimesh node +node trimesh Mesh3650 + parent tin01_d08_02 + position 1.65 4.91 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 22.5 -2.0 -15.0 + bitmap tin01_furnish2 + verts 16 + -1.65 -0.13 0.19 + -1.65 -0.13 -0.14 + 2.1 -0.13 0.19 + 1.75 -0.13 -0.14 + 0.57 -0.13 -0.14 + -0.25 -0.13 -0.14 + 1.75 0.09 -0.14 + 0.57 0.09 -0.14 + 2.1 0.09 0.19 + -1.65 0.09 0.19 + -1.65 0.09 -0.14 + -0.26 0.09 -0.14 + 0.99 -0.13 -0.25 + 0.78 -0.13 -0.49 + 0.99 0.09 -0.25 + 0.78 0.09 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 3 2 4 1 3 2 4 3 + 4 2 5 1 4 2 5 3 + 5 2 1 1 5 2 1 3 + 6 3 4 2 6 7 8 3 + 4 7 6 2 9 8 6 3 + 2 8 9 2 10 11 12 3 + 9 0 2 2 12 13 10 3 + 1 10 11 2 14 15 16 3 + 11 5 1 2 16 17 14 3 + 4 5 12 1 8 16 18 6 + 13 12 5 1 19 18 16 6 + 7 4 12 4 20 21 22 3 + 12 14 7 4 22 23 20 3 + 5 11 15 4 16 17 19 3 + 15 13 5 4 19 24 16 3 + tverts 25 + 0.496366 -0.196817 0 + 0.384796 -0.196817 0 + 0.496367 1.05318 0 + 0.384796 0.936516 0 + 0.384796 0.544462 0 + 0.384796 0.268566 0 + 0.271984 1.52891 0 + 0.271984 1.52891 0 + 0.271984 1.17225 0 + -0.634963 0.641582 0 + 0.426587 -0.634963 0 + 0.36085 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.271984 0.5 0 + 0.271984 0.5 0 + 0.271984 0.921431 0 + 0.271984 0.921431 0 + 0.30483 1.29827 0 + 0.377444 1.23509 0 + 0.36085 -0.172246 0 + 0.426587 -0.172246 0 + 0.426587 -0.298269 0 + 0.36085 -0.298269 0 + 0.377444 1.23509 0 +endnode +#Tile trimesh node +node trimesh Mesh3651 + parent tin01_d08_02 + position 3.4 4.91 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -31.0 -2.0 40.5 + bitmap tin01_furnish2 + verts 18 + 0.35 0.09 1.49 + 0.35 -0.13 1.49 + 0.35 -0.13 -0.68 + 0.35 0.09 -0.68 + 0.0 -0.13 1.16 + 0.0 0.09 1.16 + 0.0 0.09 0.02 + 0.0 -0.13 0.02 + -0.22 -0.13 0.51 + -0.43 -0.13 0.27 + 0.0 -0.13 -0.68 + -0.22 0.09 0.51 + -0.76 -0.13 1.05 + -0.97 -0.13 0.81 + -0.76 0.09 1.05 + -0.44 0.09 0.27 + 0.0 0.09 -0.68 + -0.97 0.09 0.81 + faces 19 + 0 1 2 1 0 1 2 4 + 0 2 3 1 0 2 3 4 + 4 5 6 1 4 5 6 3 + 6 7 4 1 6 7 4 3 + 8 9 7 2 8 9 10 6 + 10 7 9 2 11 10 9 6 + 11 8 7 1 12 13 14 3 + 7 6 11 1 14 15 12 3 + 12 13 8 2 16 17 8 6 + 9 8 13 2 9 8 17 6 + 14 12 8 1 18 19 13 3 + 8 11 14 1 13 12 18 3 + 9 15 16 1 20 21 22 3 + 16 10 9 1 22 23 20 3 + 13 17 15 1 24 25 26 3 + 15 9 13 1 26 27 24 3 + 7 10 2 2 28 29 30 6 + 2 1 4 2 30 31 32 6 + 2 4 7 2 30 32 28 6 + tverts 33 + 0.408666 0.891416 0 + 0.346688 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.219389 1.36765 0 + 0.285126 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + 0.46889 1.46063 0 + 0.540743 1.39726 0 + 0.618333 1.52891 0 + 0.829444 1.52891 0 + 0.36085 -0.460635 0 + 0.426587 -0.460635 0 + 0.426587 -0.528906 0 + 0.36085 -0.528906 0 + 0.30483 1.29827 0 + 0.377444 1.23509 0 + 0.36085 -0.298269 0 + 0.426587 -0.298269 0 + 0.219389 1.0989 0 + 0.285126 1.0989 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 + 0.414477 0.4225 0 + 0.476458 0.4225 0 + 0.476458 0.206945 0 + 0.414477 0.206945 0 + 0.328438 0.836212 0 + 0.328438 0.625102 0 + 0.434495 -0.283989 0 + 0.434495 1.28399 0 + 0.328438 1.18256 0 +endnode +#Tile trimesh node +node trimesh Mesh3652 + parent tin01_d08_02 + position -3.41 4.91 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 32.0 -2.0 39.5 + bitmap tin01_furnish2 + verts 18 + -0.34 -0.13 1.48 + -0.34 0.09 1.48 + -0.34 -0.13 -0.69 + -0.34 0.09 -0.69 + 0.01 0.09 1.15 + 0.01 -0.13 1.15 + 0.01 0.09 0.01 + 0.01 -0.13 0.01 + 0.44 -0.13 0.26 + 0.23 -0.13 0.5 + 0.01 -0.13 -0.69 + 0.23 0.09 0.5 + 0.98 -0.13 0.8 + 0.77 -0.13 1.04 + 0.77 0.09 1.04 + 0.45 0.09 0.26 + 0.01 0.09 -0.69 + 0.98 0.09 0.8 + faces 19 + 0 1 2 1 0 1 2 4 + 2 1 3 1 2 1 3 4 + 4 5 6 1 4 5 6 3 + 7 6 5 1 7 6 5 3 + 8 9 7 2 8 9 10 6 + 7 10 8 2 10 11 8 6 + 9 11 7 1 12 13 14 3 + 6 7 11 1 15 14 13 3 + 12 13 9 2 16 17 9 6 + 9 8 12 2 9 8 16 6 + 13 14 9 1 18 19 12 3 + 11 9 14 1 13 12 19 3 + 15 8 16 1 20 21 22 3 + 10 16 8 1 23 22 21 3 + 17 12 15 1 24 25 26 3 + 8 15 12 1 27 26 25 3 + 0 2 10 2 28 29 30 6 + 7 5 0 2 31 32 28 6 + 10 7 0 2 30 31 28 6 + tverts 33 + 0.346688 0.891416 0 + 0.408666 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.285126 1.36765 0 + 0.219389 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + 0.540743 1.39726 0 + 0.46889 1.46063 0 + 0.618333 1.52891 0 + 0.829444 1.52891 0 + 0.426587 -0.460635 0 + 0.36085 -0.460635 0 + 0.426587 -0.528906 0 + 0.36085 -0.528906 0 + 0.377444 1.23509 0 + 0.30483 1.29827 0 + 0.426587 -0.298269 0 + 0.36085 -0.298269 0 + 0.285126 1.0989 0 + 0.219389 1.0989 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 + 0.476458 0.4225 0 + 0.414477 0.4225 0 + 0.476458 0.206945 0 + 0.414477 0.206945 0 + -0.696282 1.23919 0 + -0.696282 0.617953 0 + -0.596281 0.617953 0 + -0.596281 0.817 0 + -0.596281 1.14356 0 +endnode +#Tile trimesh node +node trimesh Mesh3819 + parent tin01_d08_02 + position 3.37 -0.39 4.34 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.5 0.0 31.5 + bitmap tin01_door2 + verts 8 + 0.38 -0.39 1.97 + -0.37 -0.39 1.97 + -0.37 -0.39 -1.34 + 0.38 -0.39 -1.34 + -0.37 0.39 1.97 + 0.38 0.39 1.97 + 0.38 0.39 -1.34 + -0.37 0.39 -1.34 + faces 10 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 4 5 6 1 1 0 4 5 + 6 7 4 1 4 2 1 5 + 3 6 5 2 5 6 7 1 + 5 0 3 2 7 8 5 1 + 4 7 2 2 9 10 11 3 + 2 1 4 2 11 12 9 3 + 1 0 4 0 13 14 15 1 + 4 0 5 0 15 14 16 1 + tverts 17 + 0.39879 0.927254 0 + 0.047924 0.927254 0 + 0.047924 0.174109 0 + 0.39879 0.174432 0 + 0.399406 0.17412 0 + 0.409348 0.653515 0 + 0.0692728 0.653515 0 + 0.0692729 1.40155 0 + 0.409348 1.40155 0 + 0.395638 0.925127 0 + 0.395638 0.174409 0 + 0.0571567 0.174409 0 + 0.0571567 0.925127 0 + 0.0205727 0.289626 0 + 0.372333 0.289626 0 + 0.0205728 0.641387 0 + 0.372334 0.641386 0 +endnode +#Tile trimesh node +node trimesh Object46 + parent tin01_d08_02 + position 4.37 0.31 2.83 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -24.5 90.5 -133.0 + bitmap tin01_wallcord + verts 15 + -0.62 -0.31 0.17 + 0.13 -0.31 0.17 + 0.13 2.12 0.17 + -0.62 0.89 -0.49 + -0.62 2.12 -0.31 + -0.62 2.12 0.17 + -0.62 0.23 -0.96 + -0.62 -0.31 -2.15 + -0.62 -0.16 -2.31 + -0.62 0.23 -2.83 + -0.62 -0.16 -2.83 + -0.31 0.89 -0.49 + -0.31 0.23 -0.96 + -0.31 2.12 -0.31 + -0.31 0.23 -2.83 + faces 15 + 0 1 2 1 0 1 2 1 + 3 0 4 2 3 4 5 4 + 0 5 4 2 4 6 5 4 + 3 6 0 2 3 7 4 4 + 6 7 0 2 7 8 4 4 + 0 2 5 1 0 2 9 1 + 6 8 7 2 7 10 8 4 + 8 6 9 2 10 7 11 4 + 10 8 9 2 12 10 11 4 + 6 11 12 1 13 14 15 3 + 3 11 6 1 16 14 13 3 + 4 13 11 4 5 17 3 3 + 4 11 3 4 5 3 18 3 + 14 9 6 4 19 20 13 3 + 6 12 14 4 13 15 19 3 + tverts 21 + 0.417219 0.870259 0 + 0.417219 1.1186 0 + 1.22305 1.1186 0 + 0.746259 0.778557 0 + 0.350321 0.996605 0 + 1.15615 0.838108 0 + 1.15615 0.996604 0 + 0.528158 0.623797 0 + 0.350321 0.230367 0 + 1.22305 0.870259 0 + 0.400203 0.177293 0 + 0.528158 0.0032271 0 + 0.400105 0.0032271 0 + 0.447858 0.620095 0 + 0.552142 0.774855 0 + 0.552142 0.620095 0 + 0.447858 0.774855 0 + 1.15615 0.838108 0 + 0.746259 0.778557 0 + 0.552142 -0.0004745 0 + 0.447858 -0.0004746 0 +endnode +#Tile trimesh node +node trimesh Object1514 + parent tin01_d08_02 + position 3.65 4.32 2.99 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -777.5 5.5 1.0 + bitmap tin01_wallcord + verts 5 + -8.15 0.68 0.01 + -8.15 0.18 0.01 + -7.4 -0.57 0.01 + -7.4 0.46 0.01 + -7.4 0.68 0.01 + faces 3 + 0 1 2 1 0 1 2 3 + 3 4 0 1 3 4 0 3 + 2 3 0 1 2 3 0 3 + tverts 5 + 0.33861 0.896304 0 + 0.339701 0.771309 0 + 0.52883 0.585452 0 + 0.526576 0.843711 0 + 0.526103 0.89794 0 +endnode +#Tile trimesh node +node trimesh pillprt01 + parent tin01_d08_02 + position -4.73 3.37 4.26 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -7.5 0.5 -65.5 + bitmap tin01_door2 + verts 13 + 0.12 -0.37 -0.55 + 0.12 0.38 -0.55 + -0.27 -0.37 -0.55 + 0.12 0.38 -1.26 + 0.12 -0.37 -1.26 + -0.27 -0.37 -1.26 + -0.27 -0.37 -0.05 + -0.27 0.38 -0.05 + -0.17 -0.37 -0.36 + -0.17 0.38 -0.36 + -0.17 -0.37 -0.05 + -0.17 0.38 -0.05 + -0.27 -0.37 -0.36 + faces 14 + 1 0 3 1 0 1 2 5 + 4 3 0 1 3 2 1 5 + 4 0 5 2 7 8 9 3 + 2 5 0 2 10 9 8 3 + 2 0 8 0 61 62 63 1 + 2 8 12 0 43 64 65 1 + 8 10 6 0 66 67 68 1 + 8 0 1 0 69 41 70 1 + 8 1 9 0 71 42 72 1 + 8 9 11 0 73 47 74 1 + 8 11 10 0 75 76 77 1 + 10 11 7 0 78 49 79 1 + 10 7 6 0 48 45 80 1 + 12 8 6 0 50 46 44 1 + tverts 101 + 0.39879 0.35 0 + 0.047924 0.35 0 + 0.39879 0.174359 0 + 0.047924 0.174109 0 + 0.0692728 0.653515 0 + 0.265279 0.653515 0 + 0.0692729 1.003 0 + 0.395638 0.174409 0 + 0.395638 0.35 0 + 0.215041 0.174409 0 + 0.215041 0.35 0 + 0.12013 0.470888 0 + 0.000249729 0.504188 0 + 0.18673 0.597428 0 + 0.12013 0.597428 0 + 0.000249773 0.697328 0 + 0.12013 0.797228 0 + 0.477454 0.504188 0 + 0.477454 0.597428 0 + 0.477454 0.697328 0 + 0.477454 0.763928 0 + 0.12013 0.470888 0 + 0.37987 0.470888 0 + 0.18673 0.597428 0 + 0.18673 0.597428 0 + 0.12013 0.597428 0 + 0.18673 0.597428 0 + 0.18673 0.797228 0 + 0.12013 0.797228 0 + 0.000249773 0.697328 0 + 0.477454 0.504188 0 + 0.000249773 0.697328 0 + 0.477454 0.697328 0 + 0.000249773 0.597428 0 + 0.477454 0.797228 0 + 0.000249773 0.597428 0 + 0.477454 0.797228 0 + 0.000249773 0.797228 0 + 0.000249773 0.697328 0 + 0.477454 0.763928 0 + 0.000249788 0.763928 0 + 0.0373349 0.154797 0 + 0.38537 0.154797 0 + 0.211353 0.219764 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.257757 0.307933 0 + 0.38537 0.307933 0 + 0.0373349 0.289371 0 + 0.38537 0.289371 0 + 0.211353 0.307933 0 + 0.037335 0.516754 0 + 0.38537 0.516754 0 + 0.211353 0.219764 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.164948 0.307933 0 + 0.0373349 0.307933 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.211353 0.307933 0 + 0.211353 0.219764 0 + 0.392331 0.219764 0 + 0.257757 0.307933 0 + 0.257757 0.307933 0 + 0.211353 0.307933 0 + 0.257757 0.307933 0 + 0.257757 0.451787 0 + 0.211353 0.451787 0 + 0.0373349 0.289371 0 + 0.38537 0.154797 0 + 0.0373349 0.289371 0 + 0.38537 0.289371 0 + 0.0373349 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.451787 0 + 0.0373349 0.289371 0 + 0.38537 0.335775 0 + 0.037335 0.335775 0 + 0.211353 0.219764 0 + 0.164948 0.307933 0 + 0.0303742 0.219764 0 + 0.211353 0.307933 0 + 0.164948 0.307933 0 + 0.164948 0.307933 0 + 0.211353 0.451787 0 + 0.164948 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.516754 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.38537 0.307933 0 + 0.0373349 0.451787 0 + 0.38537 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.335775 0 + 0.037335 0.335775 0 +endnode +#Tile trimesh node +node trimesh pillprt02 + parent tin01_d08_02 + position 3.37 -4.73 4.26 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.5 -7.5 -65.5 + bitmap tin01_door2 + verts 15 + 0.38 0.12 -0.55 + -0.37 0.12 -0.55 + 0.38 -0.27 -0.55 + -0.37 -0.27 -0.55 + -0.37 0.12 -1.26 + 0.38 0.12 -1.26 + 0.38 -0.27 -1.26 + -0.37 -0.27 -1.26 + -0.37 -0.27 -0.05 + 0.38 -0.27 -0.05 + -0.37 -0.17 -0.36 + 0.38 -0.17 -0.36 + -0.37 -0.17 -0.05 + 0.38 -0.17 -0.05 + -0.37 -0.27 -0.36 + faces 16 + 1 0 4 1 0 1 2 5 + 5 4 0 1 3 2 1 5 + 6 5 0 2 4 5 6 1 + 0 2 6 2 6 7 4 1 + 7 3 4 2 8 9 10 3 + 1 4 3 2 11 10 9 3 + 3 10 1 0 22 23 24 1 + 3 14 10 0 14 25 26 1 + 10 8 12 0 27 28 29 1 + 10 0 1 0 30 31 12 1 + 10 11 0 0 32 33 13 1 + 10 13 11 0 34 35 18 1 + 10 12 13 0 36 37 38 1 + 12 9 13 0 39 40 20 1 + 12 8 9 0 19 41 16 1 + 14 8 10 0 21 15 17 1 + tverts 42 + 0.047924 0.35 0 + 0.39879 0.35 0 + 0.047924 0.174109 0 + 0.39879 0.174359 0 + 0.265279 0.653515 0 + 0.0692728 0.653515 0 + 0.0692729 1.003 0 + 0.265279 1.003 0 + 0.215041 0.174409 0 + 0.215041 0.35 0 + 0.395638 0.174409 0 + 0.395638 0.35 0 + 0.037335 0.516754 0 + 0.38537 0.516754 0 + 0.211353 0.219764 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.164948 0.307933 0 + 0.0373349 0.307933 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.211353 0.307933 0 + 0.211353 0.219764 0 + 0.164948 0.307933 0 + 0.0303742 0.219764 0 + 0.211353 0.307933 0 + 0.164948 0.307933 0 + 0.164948 0.307933 0 + 0.211353 0.451787 0 + 0.164948 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.516754 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.38537 0.307933 0 + 0.0373349 0.451787 0 + 0.38537 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.335775 0 + 0.037335 0.335775 0 +endnode +#Tile trimesh node +node trimesh Rectangle106 + parent tin01_d08_02 + position 3.37 -4.8 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.5 230.0 0.0 + bitmap tin01_black + verts 8 + -0.37 -0.2 0.0 + 0.38 -0.2 0.0 + 0.38 0.19 0.0 + -0.37 0.19 0.0 + -0.37 4.02 0.0 + 0.38 4.02 0.0 + 0.38 4.8 0.0 + -0.37 4.8 0.0 + faces 4 + 0 1 2 1 0 0 0 1 + 0 2 3 1 0 0 0 1 + 4 5 6 1 0 0 0 1 + 4 6 7 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Rectangle108 + parent tin01_d08_02 + position -4.8 3.37 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center -0.5 0.5 0.0 + bitmap tin01_black + verts 4 + 0.19 0.38 0.0 + -0.2 0.38 0.0 + 0.19 -0.37 0.0 + -0.2 -0.37 0.0 + faces 2 + 0 1 2 1 0 0 0 1 + 1 3 2 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Rectangle201 + parent tin01_d08_02 + position 3.58 4.89 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center -358.0 0.0 0.0 + bitmap tin01_black + verts 8 + -0.18 -0.11 0.0 + 0.17 -0.11 0.0 + 0.17 0.11 0.0 + -0.18 0.11 0.0 + -7.33 -0.11 0.0 + -6.98 -0.11 0.0 + -6.98 0.11 0.0 + -7.33 0.11 0.0 + faces 4 + 0 1 2 1 0 0 0 1 + 0 2 3 1 0 0 0 1 + 4 5 6 1 0 0 0 1 + 4 6 7 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh roof01 + parent tin01_d08_02 + position -4.5 0.0 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 325.0 0.0 183.0 + bitmap tin01_plank + verts 11 + 7.0 -5.0 1.83 + 7.0 -2.5 1.83 + 2.0 -5.0 1.83 + -0.5 -2.5 1.83 + 2.0 -2.5 1.83 + -0.5 2.5 1.83 + 2.0 5.0 1.83 + 2.0 2.5 1.83 + 7.0 5.0 1.83 + 7.0 2.5 1.83 + -0.5 -5.0 1.83 + faces 10 + 3 5 7 0 4 6 8 1 + 3 7 4 0 4 8 5 1 + 4 7 9 0 5 8 11 1 + 7 6 8 0 8 7 9 1 + 7 8 9 0 8 9 11 1 + 4 9 1 0 5 11 2 1 + 4 1 0 0 5 2 1 1 + 4 0 2 0 5 1 3 1 + 3 4 2 0 4 5 3 1 + 3 2 10 0 4 3 13 1 + tverts 14 + 1.999 0.500499 0 + 1.4995 0.000999093 0 + 1.4995 0.500499 0 + 0.500499 0.000999331 0 + 0.000999212 0.5005 0 + 0.5005 0.5005 0 + 0.000999451 1.4995 0 + 0.5005 1.999 0 + 0.5005 1.4995 0 + 1.4995 1.999 0 + 1.999 1.4995 0 + 1.4995 1.4995 0 + 1.999 0.000998974 0 + 0.000999093 0.000999451 0 +endnode +#Tile trimesh node +node trimesh roofrim01 + parent tin01_d08_02 + position -4.5 0.0 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 387.5 0.0 91.5 + bitmap tin01_floor + verts 12 + -0.5 2.5 1.83 + -0.5 3.75 0.0 + 0.75 5.0 0.0 + 0.75 3.75 0.0 + 2.0 5.0 1.83 + 2.0 2.5 1.83 + 7.0 5.0 1.83 + 8.25 5.0 0.0 + 8.25 -5.0 0.0 + 7.0 -5.0 1.83 + 7.0 -2.5 1.83 + 7.0 2.5 1.83 + faces 8 + 1 3 5 0 12 13 14 1 + 1 5 0 0 1 15 0 1 + 3 2 4 0 16 2 17 1 + 3 4 5 0 3 4 5 1 + 7 8 9 0 18 8 19 1 + 7 11 6 0 20 21 6 1 + 7 9 10 0 22 9 23 1 + 7 10 11 0 7 10 11 1 + tverts 24 + 0.0 0.125981 0 + 0.5 0.125981 0 + 0.5 1.99911 0 + 0.5 1.74936 0 + 0.0 1.99911 0 + 0.0 1.49961 0 + 0.0 0.00110595 0 + 0.5 0.00110603 0 + 0.5 1.99911 0 + 0.0 1.99911 0 + 0.0 1.49961 0 + 0.0 0.500606 0 + 0.5 0.125981 0 + 0.5 0.375731 0 + 0.0 0.625481 0 + 0.0 0.625481 0 + 0.5 1.74936 0 + 0.0 1.99911 0 + 0.5 0.00110603 0 + 0.0 1.99911 0 + 0.5 0.00110603 0 + 0.0 0.500606 0 + 0.5 0.00110603 0 + 0.0 1.49961 0 +endnode +#Tile trimesh node +node trimesh topwall01 + parent tin01_d08_02 + position 4.37 -0.21 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -462.0 21.0 408.5 + bitmap tin01_wall2 + verts 27 + -0.62 0.21 3.0 + 0.13 0.21 3.0 + -0.62 -2.29 3.0 + 0.13 -2.29 3.0 + -0.62 -4.4 3.0 + 0.13 -4.79 3.0 + -0.62 -4.79 3.0 + -0.62 0.21 5.17 + 0.13 0.21 5.17 + -0.62 -2.29 5.17 + 0.13 -2.29 5.17 + -0.62 -4.4 5.17 + 0.13 -4.79 5.17 + -0.62 -4.79 5.17 + -8.12 3.96 3.0 + -8.12 5.21 3.0 + -9.37 3.96 3.0 + -8.12 3.96 5.17 + -8.12 5.21 5.17 + -9.37 3.96 5.17 + -9.37 5.21 5.17 + -8.12 5.21 3.0 + -9.37 3.96 3.0 + -9.37 5.21 3.0 + -8.12 5.21 5.17 + -9.37 3.96 5.17 + -9.37 5.21 5.17 + faces 25 + 9 10 8 2 8 9 7 1 + 8 7 9 2 7 4 8 1 + 9 11 10 2 10 12 11 1 + 12 10 13 2 13 11 14 1 + 11 13 10 2 12 14 11 1 + 3 1 8 0 49 15 50 1 + 8 10 3 0 18 51 52 1 + 0 2 9 0 53 54 55 1 + 9 7 0 0 56 21 20 1 + 2 4 11 0 57 58 59 1 + 11 9 2 0 60 26 25 1 + 5 3 10 0 61 23 62 1 + 10 12 5 0 24 63 64 1 + 4 6 13 0 69 31 70 1 + 13 11 4 0 32 28 27 1 + 17 18 20 4 97 98 99 1 + 20 19 17 4 100 101 102 1 + 14 15 18 8 103 104 105 5 + 18 17 14 8 106 107 108 5 + 16 14 17 64 117 81 118 3 + 17 19 16 64 85 87 83 3 + 21 23 26 16 151 152 153 4 + 26 24 21 16 154 149 147 4 + 23 22 25 32 155 156 157 6 + 25 26 23 32 158 150 148 6 + tverts 159 + 0.187499 0.642952 0 + 0.187499 0.830915 0 + 0.593953 0.669332 0 + 0.593953 0.806513 0 + 0.812499 0.642952 0 + 0.0944526 0.806513 0 + 0.0944526 0.669332 0 + 0.812499 0.830915 0 + 1.4375 0.642952 0 + 1.4375 0.830915 0 + 0.8125 0.774954 0 + 0.8125 0.962454 0 + 0.285502 0.774954 0 + 0.1875 0.962454 0 + 0.1875 0.774954 0 + 1.0 0.0 0 + 1.4995 0.0 0 + 1.4995 0.5 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.0 0.5 0 + 0.500499 0.5 0 + 0.500499 0.0 0 + 0.500499 0.5 0 + 1.4995 0.0 0 + 1.4995 0.5 0 + 1.92108 0.0 0 + 1.92108 0.5 0 + 1.07492 0.0 0 + 1.07492 0.5 0 + 1.999 0.0 0 + 1.999 0.5 0 + 0.925075 0.0 0 + 0.925075 0.5 0 + 0.000999033 0.0 0 + 0.000999033 0.5 0 + 1.0 0.0 0 + 1.4995 0.0 0 + 1.4995 0.5 0 + 1.4995 0.5 0 + 1.0 0.5 0 + 1.0 0.0 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.0 0.5 0 + 1.0 0.5 0 + 0.500499 0.5 0 + 0.500499 0.0 0 + 0.500499 0.0 0 + 1.0 0.5 0 + 0.500499 0.5 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.4995 0.0 0 + 1.4995 0.5 0 + 1.4995 0.5 0 + 1.4995 0.0 0 + 1.92108 0.0 0 + 1.92108 0.5 0 + 1.92108 0.5 0 + 0.000999033 0.0 0 + 0.500499 0.5 0 + 0.000999033 0.5 0 + 0.000999033 0.0 0 + 0.925075 0.0 0 + 1.07492 0.5 0 + 0.925075 0.5 0 + 0.925075 0.0 0 + 1.92108 0.0 0 + 1.999 0.5 0 + 1.4995 0.0 0 + 1.999 0.0 0 + 1.999 0.5 0 + 1.999 0.5 0 + 0.925075 0.0 0 + 1.07492 0.0 0 + 1.07492 0.5 0 + 1.07492 0.5 0 + 0.000999033 0.0 0 + 0.500499 0.5 0 + 0.250749 0.0 0 + 0.688285 0.0 0 + 0.000999153 0.0 0 + 0.000998914 0.0 0 + 0.250749 0.5 0 + 0.688285 0.5 0 + 0.000999153 0.5 0 + 0.000998914 0.5 0 + 0.938035 0.0 0 + 0.000999093 0.0 0 + 0.688285 0.0 0 + 0.000999331 0.0 0 + 0.938035 0.5 0 + 0.000999093 0.5 0 + 0.688285 0.5 0 + 0.000999331 0.5 0 + 0.0936787 0.688285 0 + 0.343429 0.688285 0 + 0.343429 0.938035 0 + 0.343429 0.938035 0 + 0.0936787 0.938035 0 + 0.0936787 0.688285 0 + 0.688286 0.0 0 + 0.938036 0.0 0 + 0.938036 0.5 0 + 0.938036 0.5 0 + 0.688286 0.5 0 + 0.688286 0.0 0 + 0.688285 0.0 0 + 0.938035 0.0 0 + 0.938035 0.5 0 + 0.938035 0.5 0 + 0.000998914 0.0 0 + 0.250749 0.0 0 + 0.250749 0.5 0 + 0.250749 0.5 0 + 0.000999153 0.0 0 + 0.250749 0.5 0 + 0.256904 0.677219 0 + 0.506654 0.677219 0 + 0.506654 0.926969 0 + 0.506654 0.926969 0 + 0.256904 0.926969 0 + 0.256904 0.677219 0 + 0.688285 0.0 0 + 0.938035 0.0 0 + 0.938035 0.5 0 + 0.938035 0.5 0 + 0.688285 0.5 0 + 0.688285 0.0 0 + 0.000999093 0.0 0 + 0.250749 0.0 0 + 0.250749 0.5 0 + 0.250749 0.5 0 + 0.000999331 0.0 0 + 0.25075 0.0 0 + 0.25075 0.5 0 + 0.25075 0.5 0 + 0.688285 0.0 0 + 0.938035 0.5 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 0.500499 0.5 0 + 1.4995 0.0 0 + 0.688285 0.0 0 + 0.000998914 0.0 0 + 0.688285 0.5 0 + 0.000998914 0.5 0 + 0.688285 0.0 0 + 0.938035 0.0 0 + 0.938035 0.5 0 + 0.938035 0.5 0 + 0.000998914 0.0 0 + 0.250749 0.0 0 + 0.250749 0.5 0 + 0.250749 0.5 0 +endnode +#Tile trimesh node +node trimesh topwall02 + parent tin01_d08_02 + position 4.37 -0.21 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -24.5 271.0 408.5 + bitmap tin01_wallbrick + verts 12 + -0.62 2.71 3.0 + -0.62 0.21 3.0 + 0.13 0.21 3.0 + 0.13 2.71 3.0 + -0.62 5.21 3.0 + 0.13 5.21 3.0 + -0.62 2.71 5.17 + -0.62 0.21 5.17 + 0.13 0.21 5.17 + 0.13 2.71 5.17 + -0.62 5.21 5.17 + 0.13 5.21 5.17 + faces 12 + 7 8 9 2 4 7 1 1 + 9 6 7 2 1 0 4 1 + 6 9 11 0 2 3 5 1 + 6 11 10 0 2 5 6 1 + 2 3 9 0 14 15 16 1 + 9 8 2 0 17 18 19 1 + 0 1 7 0 20 21 22 1 + 7 6 0 0 23 24 25 1 + 3 5 11 0 26 27 28 1 + 11 9 3 0 29 9 8 1 + 4 0 6 0 30 10 31 1 + 6 10 4 0 11 13 12 1 + tverts 32 + 0.245873 0.234331 0 + 0.245873 0.422294 0 + 0.652327 0.260711 0 + 0.652327 0.397892 0 + 0.870873 0.234331 0 + 0.152827 0.397892 0 + 0.152827 0.260711 0 + 0.870873 0.422294 0 + 1.4995 0.09 0 + 1.4995 0.99 0 + 0.500499 0.09 0 + 0.500499 0.99 0 + 0.000999033 0.09 0 + 0.000999033 0.99 0 + 1.0 0.09 0 + 1.4995 0.09 0 + 1.4995 0.99 0 + 1.4995 0.99 0 + 1.0 0.99 0 + 1.0 0.09 0 + 0.500499 0.09 0 + 1.0 0.09 0 + 1.0 0.99 0 + 1.0 0.99 0 + 0.500499 0.99 0 + 0.500499 0.09 0 + 1.4995 0.09 0 + 1.999 0.09 0 + 1.999 0.99 0 + 1.999 0.99 0 + 0.000999033 0.09 0 + 0.500499 0.99 0 +endnode +endmodelgeom tin01_d08_02 +donemodel tin01_d08_02 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d09_02.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d09_02.mdl new file mode 100644 index 0000000..e06888a --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d09_02.mdl @@ -0,0 +1,4563 @@ +# Exported from NWmax 0.8 b60 at 23.10.2012 22:17:09 +# mdl file +# +#NWmax MODEL ASCII +# model: tin01_d09_02 +#local file: Unknown +filedependancy Unknown +newmodel tin01_d09_02 +setsupermodel tin01_d09_02 NULL +classification Tile +#NWmax GEOM ASCII +beginmodelgeom tin01_d09_02 +node dummy tin01_d09_02 + parent NULL +endnode +#Tile trimesh node +node trimesh Mesh960 + parent tin01_d09_02 + position 4.89 2.89 1.35 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -90.0 0.0 15.0 + bitmap tin01_lwalls + verts 20 + -0.39 -0.39 1.65 + -1.14 -0.39 1.65 + -1.14 -2.11 1.65 + -1.14 -0.39 0.14 + -1.14 -2.11 0.14 + -1.41 -0.39 0.14 + -1.41 -0.39 -1.35 + -1.41 -1.96 -1.35 + -1.41 -1.96 -0.83 + -1.41 -2.11 0.14 + -1.41 1.57 -1.35 + -1.41 1.57 -0.83 + -0.39 2.11 1.65 + -1.14 2.11 1.65 + -1.14 1.72 1.65 + -1.14 1.72 0.14 + -1.41 1.72 0.14 + -1.41 1.72 -0.67 + -0.39 -2.11 1.65 + -1.41 -2.11 -0.67 + faces 21 + 0 1 2 1 0 1 2 1 + 1 3 4 2 3 4 5 1 + 4 2 1 2 5 6 3 1 + 5 6 7 1 7 8 9 1 + 7 8 5 1 9 10 7 1 + 3 5 9 4 11 12 13 1 + 9 4 3 4 13 14 11 1 + 10 6 11 1 15 16 17 3 + 0 12 13 1 18 19 20 1 + 14 1 0 1 21 22 18 1 + 13 14 0 1 20 21 18 1 + 1 14 3 2 23 24 25 3 + 15 3 14 2 26 25 24 3 + 16 17 5 1 27 28 29 3 + 17 11 5 1 28 17 29 3 + 6 5 11 1 16 29 17 3 + 3 15 16 4 30 31 32 3 + 16 5 3 4 32 33 30 3 + 2 18 0 1 34 35 36 1 + 19 9 5 1 37 38 7 1 + 8 19 5 1 10 37 7 1 + tverts 39 + 1.4375 0.830915 0 + 1.4375 0.642952 0 + 1.1297 0.642952 0 + 1.38199 0.86012 0 + 1.38199 0.483596 0 + 1.07419 0.483596 0 + 1.07419 0.86012 0 + 1.45501 0.459441 0 + 1.45501 0.0859648 0 + 1.0238 0.0859649 0 + 1.0238 0.201216 0 + 1.125 0.452728 0 + 1.125 0.385727 0 + 0.868918 0.385728 0 + 0.8172 0.452728 0 + 0.518565 0.0836864 0 + 1.00826 0.0836864 0 + 0.518565 0.21325 0 + 0.8125 0.962454 0 + 0.1875 0.962454 0 + 0.1875 0.774954 0 + 0.285502 0.774954 0 + 0.8125 0.774954 0 + 1.00826 0.861477 0 + 0.481259 0.861477 0 + 1.00826 0.484953 0 + 0.481259 0.484953 0 + 0.481259 0.457162 0 + 0.481259 0.253947 0 + 1.00826 0.457162 0 + 1.06216 0.458269 0 + 1.58916 0.458269 0 + 1.58916 0.391269 0 + 1.06216 0.391269 0 + 1.05907 0.58505 0 + 0.871488 0.585051 0 + 0.871338 1.01404 0 + 0.987739 0.258844 0 + 0.987739 0.459442 0 +endnode +#Tile trimesh node +node trimesh Mesh961 + parent tin01_d09_02 + position 0.0 0.0 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.603922 0.584314 0.592157 + diffuse 0.603922 0.584314 0.592157 + specular 0.0 0.0 0.0 + shininess 1 + center -76.0 76.0 0.0 + bitmap tin01_shpflr1 + verts 25 + 3.48 4.46 0.0 + 2.85 4.46 0.0 + 3.48 2.5 0.0 + 2.5 2.5 0.0 + 2.5 5.0 0.0 + 0.0 5.0 0.0 + 0.0 2.5 0.0 + 0.0 0.0 0.0 + -2.5 5.0 0.0 + -2.5 2.5 0.0 + -2.5 0.0 0.0 + -2.5 -2.5 0.0 + -5.0 5.0 0.0 + -5.0 2.5 0.0 + -5.0 0.0 0.0 + -5.0 -2.5 0.0 + -5.0 -2.85 0.0 + -4.46 -2.85 0.0 + 2.85 0.93 0.0 + 2.5 0.0 0.0 + 2.85 0.0 0.0 + -4.46 -3.48 0.0 + -3.48 -3.48 0.0 + 3.48 0.93 0.0 + 2.85 5.0 0.0 + faces 27 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 5 6 1 4 5 6 1 + 6 3 4 1 6 3 4 1 + 3 6 7 1 3 6 7 1 + 5 8 9 1 5 8 9 1 + 9 6 5 1 9 6 5 1 + 6 9 10 1 6 9 10 1 + 10 7 6 1 10 7 6 1 + 7 10 11 1 7 10 11 1 + 8 12 13 1 8 12 13 1 + 13 9 8 1 13 9 8 1 + 9 13 14 1 9 13 14 1 + 14 10 9 1 14 10 9 1 + 10 14 15 1 10 14 15 1 + 15 11 10 1 15 11 10 1 + 16 17 15 1 16 17 15 1 + 11 15 17 1 11 15 17 1 + 18 3 19 1 18 3 19 1 + 19 20 18 1 19 20 18 1 + 7 19 3 1 7 19 3 1 + 21 11 17 1 21 11 17 1 + 22 11 21 1 22 11 21 1 + 3 18 2 1 3 18 2 1 + 23 2 18 1 23 2 18 1 + 4 3 1 1 4 3 1 1 + 24 4 1 1 24 4 1 1 + tverts 25 + 13.6964 -16.1083 0 + 13.5702 -16.1083 0 + 13.6964 -16.5 0 + 13.5 -16.5 0 + 13.5 -16.0 0 + 13.0 -16.0 0 + 13.0 -16.5 0 + 13.0 -17.0 0 + 12.5 -16.0 0 + 12.5 -16.5 0 + 12.5 -17.0 0 + 12.5 -17.5 0 + 12.0 -16.0 0 + 12.0 -16.5 0 + 12.0 -17.0 0 + 12.0 -17.5 0 + 12.0 -17.5702 0 + 12.1082 -17.5702 0 + 13.5702 -16.8134 0 + 13.5 -17.0 0 + 13.5702 -17.0 0 + 12.1082 -17.6964 0 + 12.3036 -17.6964 0 + 13.6964 -16.8134 0 + 13.5702 -16.0 0 +endnode +#Tile trimesh node +node trimesh Box913 + parent tin01_d09_02 + position 3.37 0.32 0.34 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -7.0 7.0 116.0 + bitmap tin01_door2 + verts 19 + 0.11 0.46 0.34 + -0.37 0.46 0.34 + 0.11 0.46 1.15 + 0.11 0.61 0.18 + -0.52 0.61 0.18 + 0.11 0.61 -0.34 + -0.52 0.61 -0.34 + 0.38 -0.32 0.34 + -0.37 -0.32 0.34 + 0.38 -0.47 0.18 + -0.52 -0.47 0.18 + 0.38 -0.47 -0.34 + -0.52 -0.47 -0.34 + -0.52 -0.32 -0.34 + -0.37 0.46 2.66 + -0.37 -0.32 2.66 + 0.38 0.46 2.66 + 0.38 0.46 1.15 + 0.38 -0.32 2.66 + faces 21 + 0 1 2 1 0 1 2 5 + 1 0 3 1 3 4 5 1 + 3 4 1 1 5 6 3 1 + 4 3 5 2 6 5 7 1 + 5 6 4 2 7 8 6 1 + 7 8 9 1 4 3 5 1 + 10 9 8 1 6 5 3 1 + 8 1 4 4 9 10 11 1 + 4 10 8 4 11 12 9 1 + 9 10 11 2 5 6 7 1 + 12 11 10 2 8 7 6 1 + 6 13 4 8 13 14 11 1 + 10 4 12 8 12 11 15 1 + 13 12 4 8 14 15 11 1 + 1 8 14 2 16 17 18 3 + 15 14 8 2 19 18 17 3 + 1 14 16 1 1 20 21 5 + 16 17 2 1 21 22 2 5 + 16 2 1 1 21 2 1 5 + 15 8 18 1 20 1 23 5 + 7 18 8 1 24 23 1 5 + tverts 25 + 0.274456 -0.502544 0 + 0.047924 -0.502544 0 + 0.276247 -0.265795 0 + 0.300601 1.05077 0 + 0.0546721 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.305378 1.04315 0 + 0.167227 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.173247 0.694046 0 + 0.332951 0.694046 0 + 0.357965 0.694046 0 + 0.0571567 -0.497611 0 + 0.395638 -0.497611 0 + 0.0571567 0.174409 0 + 0.395638 0.174409 0 + 0.047924 0.174109 0 + 0.39879 0.174432 0 + 0.39879 -0.26474 0 + 0.399406 0.17412 0 + 0.400581 -0.50251 0 +endnode +#Tile trimesh node +node trimesh Mesh956 + parent tin01_d09_02 + position 0.0 0.0 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 29.0 -250.0 0.0 + bitmap tin01_floortran4 + verts 23 + 2.5 -5.0 0.0 + 3.4 -5.0 0.0 + 3.4 -4.78 0.0 + 2.5 -2.5 0.0 + -3.4 -4.78 0.0 + -3.48 -3.48 0.0 + -3.48 -4.78 0.0 + 0.0 -2.5 0.0 + 0.0 -5.0 0.0 + -2.5 -2.5 0.0 + -2.5 -5.0 0.0 + 4.06 -0.54 0.0 + 3.75 -0.54 0.0 + 4.06 -2.5 0.0 + 2.5 0.0 0.0 + 0.0 0.0 0.0 + -3.4 -5.0 0.0 + 3.75 -4.33 0.0 + 3.75 -4.78 0.0 + 4.06 -4.33 0.0 + 2.85 -0.15 0.0 + 3.75 -0.15 0.0 + 2.85 0.0 0.0 + faces 27 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 1 + 4 5 6 1 4 5 6 2 + 0 3 7 1 0 3 7 2 + 7 8 0 1 7 8 0 2 + 8 7 9 1 9 10 11 2 + 9 10 8 1 11 12 9 2 + 11 12 13 1 13 14 15 2 + 3 13 12 1 16 15 14 2 + 14 15 7 1 17 18 19 2 + 7 3 14 1 19 20 17 2 + 9 7 15 1 21 22 23 2 + 10 9 5 1 24 25 5 2 + 10 5 4 1 24 5 4 1 + 16 10 4 1 26 24 4 2 + 17 2 18 1 27 2 28 2 + 19 13 17 1 29 30 27 2 + 3 17 13 1 3 27 30 2 + 20 3 12 1 31 16 14 1 + 20 12 21 1 31 14 32 2 + 21 20 20 1 32 33 31 2 + 20 14 3 1 34 35 16 1 + 22 14 20 1 36 35 34 2 + 20 20 22 1 34 33 36 2 + 20 20 3 1 31 34 16 1 + 20 20 20 1 33 34 31 1 + 2 17 3 1 2 27 3 1 + tverts 37 + 0.0157885 0.440306 0 + 0.196003 0.440306 0 + 0.196003 0.476046 0 + 0.0157886 0.852181 0 + 0.713716 0.568561 0 + 0.73029 0.801771 0 + 0.728238 0.568561 0 + 0.515789 0.852181 0 + 0.515789 0.440306 0 + 0.188869 0.440306 0 + 0.188869 0.852181 0 + 0.687488 0.852181 0 + 0.687488 0.440306 0 + 0.199297 0.892135 0 + 0.262284 0.892025 0 + 0.198611 0.499548 0 + 0.511599 0.499002 0 + 0.0294404 0.997685 0 + 0.553782 0.999104 0 + 0.552909 0.496813 0 + 0.0285676 0.497686 0 + 1.011 0.533454 0 + 0.535345 0.534326 0 + 0.536218 1.00453 0 + 0.553977 0.529678 0 + 0.557924 0.977785 0 + 0.713374 0.529678 0 + 0.266085 0.550663 0 + 0.266085 0.476047 0 + 0.329147 0.550664 0 + 0.329147 0.852181 0 + 0.442263 0.968981 0 + 0.26242 0.969594 0 + 0.442263 0.969281 0 + 0.442962 0.96928 0 + 0.512471 0.999001 0 + 0.442315 0.999124 0 +endnode +#Tile trimesh node +node trimesh Mesh957 + parent tin01_d09_02 + position 4.08 -2.19 0.97 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -2.0 -24.5 29.0 + bitmap tin01_wallbrick + verts 8 + -0.02 0.99 1.37 + -0.02 -0.31 -0.97 + -0.02 -0.24 1.55 + -0.02 -1.48 1.37 + -0.02 -2.14 0.9 + -0.02 1.65 0.9 + -0.02 1.65 -0.97 + -0.02 -2.14 -0.97 + faces 6 + 0 1 2 1 0 1 2 3 + 3 1 4 1 3 1 4 3 + 2 1 3 1 2 1 3 3 + 0 5 1 1 0 5 1 3 + 6 1 5 1 6 1 5 3 + 1 7 4 1 1 7 4 3 + tverts 8 + 1.69567 0.775027 0 + 0.849447 -0.0003026 0 + 0.850303 0.834578 0 + 0.306033 0.775027 0 + -0.0557951 0.620267 0 + 2.02789 0.620267 0 + 2.02789 -0.0003027 0 + -0.0557952 -0.0003025 0 +endnode +#Tile trimesh node +node trimesh Object355 + parent tin01_d09_02 + position 4.06 -4.74 2.82 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 6.5 102.5 -132.0 + bitmap tin01_wallcord + verts 14 + -0.31 2.31 0.18 + 0.44 -0.26 0.18 + 0.44 2.31 0.18 + -0.31 -0.04 0.18 + -0.31 0.41 -0.95 + -0.31 -0.04 -2.82 + -0.31 1.07 -0.48 + -0.31 2.31 -0.3 + -0.31 -0.26 0.18 + -0.31 0.41 -2.82 + 0.0 1.07 -0.48 + 0.0 0.41 -0.95 + 0.0 2.31 -0.3 + 0.0 0.41 -2.82 + faces 14 + 0 1 2 1 0 1 2 1 + 3 4 5 2 3 4 5 4 + 4 3 6 2 4 3 6 4 + 6 3 7 2 6 3 7 4 + 8 1 3 1 8 1 9 1 + 4 9 5 2 4 10 5 4 + 3 1 0 1 9 1 0 1 + 3 0 7 2 3 11 7 4 + 10 11 6 1 6 4 12 4 + 4 6 11 1 13 12 4 4 + 12 10 7 4 7 6 14 4 + 6 7 10 4 6 7 15 4 + 11 13 4 4 4 10 13 4 + 9 4 13 4 16 13 10 4 + tverts 17 + 1.22305 0.870259 0 + 2.07285 1.1186 0 + 1.22305 1.1186 0 + 1.93412 0.996604 0 + 1.78415 0.623796 0 + 1.93412 0.0032268 0 + 1.56605 0.778557 0 + 1.15615 0.838108 0 + 2.07285 0.870258 0 + 2.00102 0.870258 0 + 1.78415 0.0032268 0 + 1.15615 0.996604 0 + 1.44242 0.778557 0 + 1.63305 0.623796 0 + 1.15615 0.838108 0 + 1.56605 0.778557 0 + 1.64679 0.0032268 0 +endnode +#Tile trimesh node +node trimesh Mesh955 + parent tin01_d09_02 + position 4.06 -0.16 2.82 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center 6.5 -66.5 -132.0 + bitmap tin01_wallcord + verts 17 + 0.44 0.16 0.18 + -0.31 0.16 0.18 + 0.44 -2.27 0.18 + -0.31 -1.04 -0.48 + -0.31 -2.27 -0.3 + -0.31 -2.27 0.18 + -0.31 -0.38 -0.95 + -0.31 0.16 -2.14 + -0.31 0.01 -2.3 + -0.31 -0.38 -2.82 + -0.31 0.01 -2.82 + 0.0 -1.04 -0.48 + 0.0 -0.38 -0.95 + 0.0 -2.27 -0.3 + 0.0 -0.38 -2.82 + -0.31 0.94 0.18 + 0.44 0.94 0.18 + faces 17 + 0 1 2 1 0 1 2 1 + 1 3 4 2 3 4 5 4 + 5 1 4 2 6 3 5 4 + 6 3 1 2 7 4 3 4 + 7 6 1 2 8 7 3 4 + 2 1 5 1 2 1 9 1 + 8 6 7 2 10 7 8 4 + 6 8 9 2 7 10 11 4 + 8 10 9 2 10 12 11 4 + 11 6 12 1 13 14 15 3 + 11 3 6 1 13 16 14 3 + 13 4 11 4 5 17 4 3 + 11 4 3 4 4 5 18 3 + 9 14 6 4 19 20 14 3 + 12 6 14 4 15 14 20 3 + 15 0 16 1 21 22 23 1 + 1 0 15 1 24 25 21 1 + tverts 26 + 0.417219 1.1186 0 + 0.417219 0.870259 0 + 1.22305 1.1186 0 + 0.350321 0.996605 0 + 0.746259 0.778557 0 + 1.15615 0.838108 0 + 1.15615 0.996604 0 + 0.528158 0.623797 0 + 0.350321 0.230367 0 + 1.22305 0.870259 0 + 0.400203 0.177293 0 + 0.528158 0.0032271 0 + 0.400105 0.0032271 0 + 0.552142 0.774855 0 + 0.447858 0.620095 0 + 0.552142 0.620095 0 + 0.447858 0.774855 0 + 1.15615 0.838108 0 + 0.746259 0.778557 0 + 0.447858 -0.0004746 0 + 0.552142 -0.0004745 0 + 0.0734802 0.272213 0 + 0.259262 0.0745779 0 + 0.261253 0.293444 0 + 0.0717698 0.0762147 0 + 0.259263 0.0745784 0 +endnode +node aabb wok + parent tin01_d09_02 + position 0.0 0.0 1.5 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 0.0 0.0 + multimaterial 20 + Dirt + Obscuring + Grass + Stone + Wood + Water + Nonwalk + Transparent + Carpet + Metal + Puddles + Swamp + Mud + Leaves + Lava + BottomlessPit + DeepWater + Door + Snow + Sand + ambient 0.0 0.0 0.0 + diffuse 0.6 0.34 0.16 + specular 0.0 0.0 0.0 + shininess 10.0 + bitmap Wood + verts 33 + 0.03 -0.41 -1.5 + -3.4 -5.0 -1.5 + 3.4 -5.0 -1.5 + -5.0 -2.85 -1.5 + -4.46 -2.85 -1.5 + -5.0 5.0 -1.5 + -3.48 -3.48 -1.5 + -4.46 -3.48 -1.5 + -5.0 -2.85 1.5 + -4.46 -3.48 1.5 + -3.4 -5.0 1.5 + -3.48 -3.48 1.5 + -5.0 -5.0 1.5 + 3.4 -4.78 -1.5 + 3.75 -4.33 -1.5 + 3.75 -0.54 -1.5 + 3.75 -0.15 -1.5 + 2.85 -0.15 -1.5 + 2.85 5.0 -1.5 + 3.48 4.46 -1.5 + 2.85 4.46 -1.5 + 3.48 0.93 -1.5 + 2.85 0.93 -1.5 + 3.8 -4.33 1.5 + 3.4 -5.0 1.5 + 3.8 -0.1 1.5 + 2.9 -0.1 1.5 + 2.9 0.9 1.5 + 3.5 0.9 1.5 + 3.5 4.46 1.5 + 2.85 5.0 1.5 + 5.0 5.0 1.5 + 5.0 -5.0 1.5 + faces 52 + 0 1 2 0 0 0 0 5 + 3 4 5 0 0 0 0 5 + 5 4 0 0 0 0 0 5 + 0 4 6 0 0 0 0 5 + 6 4 7 0 0 0 0 5 + 4 3 8 0 0 0 0 2 + 7 4 9 0 0 0 0 2 + 9 4 8 0 0 0 0 2 + 10 6 11 0 0 0 0 2 + 9 8 12 0 0 0 0 2 + 11 9 12 0 0 0 0 2 + 10 11 12 0 0 0 0 2 + 1 6 10 0 0 0 0 2 + 16 17 15 0 0 0 0 5 + 5 0 18 0 0 0 0 5 + 19 20 21 0 0 0 0 5 + 15 17 0 0 0 0 0 5 + 18 0 20 0 0 0 0 5 + 21 20 22 0 0 0 0 5 + 17 22 0 0 0 0 0 5 + 20 0 22 0 0 0 0 5 + 14 13 23 0 0 0 0 2 + 13 2 24 0 0 0 0 2 + 25 14 23 0 0 0 0 2 + 17 16 26 0 0 0 0 2 + 26 16 25 0 0 0 0 2 + 22 17 27 0 0 0 0 2 + 27 17 26 0 0 0 0 2 + 21 22 28 0 0 0 0 2 + 28 22 27 0 0 0 0 2 + 19 21 29 0 0 0 0 2 + 29 21 28 0 0 0 0 2 + 20 19 30 0 0 0 0 2 + 30 19 29 0 0 0 0 2 + 18 20 30 0 0 0 0 2 + 25 28 26 0 0 0 0 2 + 27 26 28 0 0 0 0 2 + 29 31 30 0 0 0 0 2 + 23 24 32 0 0 0 0 2 + 25 23 32 0 0 0 0 2 + 29 28 31 0 0 0 0 2 + 28 25 31 0 0 0 0 2 + 31 25 32 0 0 0 0 2 + 13 24 23 0 0 0 0 2 + 6 7 11 0 0 0 0 2 + 11 7 9 0 0 0 0 2 + 0 2 13 0 0 0 0 5 + 0 13 14 0 0 0 0 5 + 0 14 15 0 0 0 0 5 + 16 15 25 0 0 0 0 2 + 15 14 25 0 0 0 0 2 + 0 6 1 0 0 0 0 5 + aabb -5.0 -5.0 -1.5 5.0 5.0 1.5 -1 + -5.0 -5.0 -1.5 3.4 5.0 1.5 -1 + -5.0 -5.0 -1.5 3.4 -0.41 1.5 -1 + -5.0 -5.0 -1.5 -3.4 -2.85 1.5 -1 + -5.0 -3.48 -1.5 -3.48 -2.85 1.5 -1 + -4.46 -3.48 -1.5 -3.48 -2.85 -1.5 4 + -5.0 -3.48 -1.5 -3.48 -2.85 1.5 -1 + -5.0 -3.48 -1.5 -4.46 -2.85 1.5 -1 + -5.0 -2.85 -1.5 -4.46 -2.85 1.5 5 + -4.46 -3.48 -1.5 -4.46 -2.85 1.5 6 + -4.46 -3.48 -1.5 -3.48 -3.48 1.5 44 + -5.0 -5.0 -1.5 -3.4 -2.85 1.5 -1 + -5.0 -3.48 -1.5 -3.48 -2.85 1.5 -1 + -5.0 -3.48 -1.5 -4.46 -2.85 1.5 7 + -4.46 -3.48 -1.5 -3.48 -3.48 1.5 45 + -5.0 -5.0 1.5 -3.4 -2.85 1.5 -1 + -5.0 -5.0 1.5 -3.4 -3.48 1.5 11 + -5.0 -5.0 1.5 -3.48 -2.85 1.5 -1 + -5.0 -5.0 1.5 -3.48 -3.48 1.5 10 + -5.0 -5.0 1.5 -4.46 -2.85 1.5 9 + -3.48 -5.0 -1.5 3.4 -0.41 1.5 -1 + -3.48 -5.0 -1.5 -3.4 -3.48 1.5 -1 + -3.48 -5.0 -1.5 -3.4 -3.48 1.5 12 + -3.48 -5.0 -1.5 -3.4 -3.48 1.5 8 + -3.48 -5.0 -1.5 3.4 -0.41 -1.5 -1 + -3.48 -5.0 -1.5 0.03 -0.41 -1.5 51 + -3.4 -5.0 -1.5 3.4 -0.41 -1.5 0 + -5.0 -3.48 -1.5 2.85 5.0 -1.5 -1 + -5.0 -3.48 -1.5 0.03 5.0 -1.5 -1 + -4.46 -3.48 -1.5 0.03 -0.41 -1.5 3 + -5.0 -2.85 -1.5 -4.46 5.0 -1.5 1 + -5.0 -2.85 -1.5 2.85 5.0 -1.5 -1 + -5.0 -2.85 -1.5 0.03 5.0 -1.5 2 + -5.0 -0.41 -1.5 2.85 5.0 -1.5 14 + 0.03 -5.0 -1.5 5.0 5.0 1.5 -1 + 0.03 -5.0 -1.5 5.0 5.0 1.5 -1 + 0.03 -5.0 -1.5 5.0 -0.1 1.5 -1 + 0.03 -5.0 -1.5 3.75 -0.41 1.5 -1 + 3.4 -5.0 -1.5 3.4 -4.78 1.5 22 + 0.03 -5.0 -1.5 3.75 -0.41 -1.5 -1 + 0.03 -5.0 -1.5 3.4 -0.41 -1.5 46 + 0.03 -4.78 -1.5 3.75 -0.41 -1.5 47 + 3.4 -5.0 -1.5 5.0 -0.1 1.5 -1 + 3.4 -5.0 -1.5 5.0 -4.33 1.5 -1 + 3.4 -4.78 -1.5 3.8 -4.33 1.5 21 + 3.4 -5.0 -1.5 5.0 -4.33 1.5 -1 + 3.4 -5.0 -1.5 3.8 -4.33 1.5 43 + 3.4 -5.0 1.5 5.0 -4.33 1.5 38 + 3.75 -5.0 -1.5 5.0 -0.1 1.5 -1 + 3.8 -5.0 1.5 5.0 -0.1 1.5 39 + 3.75 -4.33 -1.5 3.8 -0.1 1.5 23 + 0.03 -5.0 -1.5 5.0 5.0 1.5 -1 + 0.03 -4.33 -1.5 3.8 -0.1 1.5 -1 + 0.03 -4.33 -1.5 3.75 -0.41 -1.5 48 + 3.75 -4.33 -1.5 3.8 -0.1 1.5 50 + 0.03 -5.0 -1.5 5.0 5.0 1.5 -1 + 0.03 -0.54 -1.5 3.8 -0.1 1.5 -1 + 0.03 -0.54 -1.5 3.75 -0.15 -1.5 -1 + 0.03 -0.54 -1.5 3.75 -0.15 -1.5 16 + 2.85 -0.54 -1.5 3.75 -0.15 -1.5 13 + 3.75 -0.54 -1.5 3.8 -0.1 1.5 49 + 0.03 -5.0 -1.5 5.0 5.0 1.5 -1 + 2.85 -0.15 -1.5 3.8 -0.1 1.5 -1 + 2.85 -0.15 -1.5 3.75 -0.1 1.5 24 + 2.9 -0.15 -1.5 3.8 -0.1 1.5 25 + 0.03 -5.0 -1.5 5.0 5.0 1.5 -1 + 3.8 -5.0 1.5 5.0 5.0 1.5 42 + 0.03 -0.41 -1.5 2.85 0.93 -1.5 19 + 0.03 -0.41 -1.5 5.0 5.0 1.5 -1 + 0.03 -0.41 -1.5 5.0 5.0 1.5 -1 + 2.85 -0.15 -1.5 3.8 0.93 1.5 -1 + 2.85 -0.15 -1.5 3.5 0.93 1.5 -1 + 2.85 -0.15 -1.5 2.9 0.93 1.5 26 + 2.85 0.9 -1.5 3.5 0.93 1.5 28 + 2.85 -0.15 -1.5 3.8 0.93 1.5 -1 + 2.85 -0.15 -1.5 3.5 0.93 1.5 -1 + 2.85 -0.15 -1.5 2.9 0.9 1.5 27 + 2.85 0.9 -1.5 3.5 0.93 1.5 29 + 2.9 -0.1 1.5 3.8 0.9 1.5 -1 + 2.9 -0.1 1.5 3.8 0.9 1.5 35 + 2.9 -0.1 1.5 3.5 0.9 1.5 36 + 0.03 -0.41 -1.5 5.0 5.0 1.5 -1 + 0.03 -0.41 -1.5 5.0 5.0 1.5 -1 + 0.03 -0.41 -1.5 2.85 4.46 -1.5 20 + 3.5 -0.1 1.5 5.0 5.0 1.5 41 + 2.85 0.9 -1.5 3.5 4.46 1.5 -1 + 3.48 0.9 -1.5 3.5 4.46 1.5 31 + 2.85 0.93 -1.5 3.48 4.46 -1.5 18 + 0.03 -0.41 -1.5 5.0 5.0 1.5 -1 + 0.03 -0.41 -1.5 5.0 5.0 1.5 -1 + 0.03 -0.41 -1.5 2.85 5.0 -1.5 17 + 2.85 0.9 -1.5 5.0 5.0 1.5 -1 + 2.85 0.93 -1.5 3.5 4.46 1.5 -1 + 2.85 0.93 -1.5 3.48 4.46 -1.5 15 + 3.48 0.93 -1.5 3.5 4.46 1.5 30 + 3.5 0.9 1.5 5.0 5.0 1.5 40 + 2.85 4.46 -1.5 5.0 5.0 1.5 -1 + 2.85 4.46 -1.5 3.48 5.0 1.5 -1 + 2.85 4.46 -1.5 2.85 5.0 1.5 34 + 2.85 4.46 -1.5 3.48 5.0 1.5 32 + 2.85 4.46 -1.5 5.0 5.0 1.5 -1 + 2.85 4.46 -1.5 3.5 5.0 1.5 33 + 2.85 4.46 1.5 5.0 5.0 1.5 37 +endnode +#Tile trimesh node +node trimesh Line126 + parent tin01_d09_02 + position 4.74 0.47 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center -474.0 -47.0 0.0 + bitmap tin01_black + verts 12 + 0.26 -5.47 0.0 + -0.24 -2.9 0.0 + -0.24 -5.47 0.0 + 0.26 4.53 0.0 + -0.24 -0.47 0.0 + -0.24 0.31 0.0 + -0.24 2.03 0.0 + -0.24 4.53 0.0 + -9.24 -5.47 0.0 + -9.24 -4.97 0.0 + -9.74 -5.47 0.0 + -9.74 -4.97 0.0 + faces 8 + 0 1 2 1 0 1 2 1 + 0 3 1 1 0 3 1 1 + 1 3 4 1 1 3 4 1 + 5 3 6 1 5 3 6 1 + 6 3 7 1 6 3 7 1 + 4 3 5 1 4 3 5 1 + 8 9 10 1 8 9 10 1 + 10 9 11 1 10 9 11 1 + tverts 12 + -134.5 10.5 0 + -135.0 13.0664 0 + -135.0 10.5 0 + -134.5 20.5 0 + -135.0 15.5 0 + -135.0 16.284 0 + -135.0 18.0 0 + -135.0 20.5 0 + -144.0 10.5 0 + -144.002 11.0 0 + -144.5 10.5 0 + -144.5 11.0 0 +endnode +#Tile trimesh node +node trimesh Rectangle54 + parent tin01_d09_02 + position 3.57 -4.89 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center -357.0 0.0 0.0 + bitmap tin01_black + verts 8 + 0.18 0.11 0.0 + -0.17 0.11 0.0 + -0.17 -0.11 0.0 + 0.18 -0.11 0.0 + -6.97 0.11 0.0 + -7.32 0.11 0.0 + -7.32 -0.11 0.0 + -6.97 -0.11 0.0 + faces 4 + 0 1 2 1 0 0 0 1 + 0 2 3 1 0 0 0 1 + 4 5 6 1 0 0 0 1 + 4 6 7 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Box2934 + parent tin01_d09_02 + position 3.41 -5.09 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 16.5 20.0 -219.0 + bitmap tin01_furnish2 + verts 8 + 0.34 0.31 -3.69 + -0.01 0.31 -3.69 + 0.34 0.31 -0.69 + -0.01 0.31 -1.27 + -0.01 0.31 -0.69 + -0.01 0.09 -3.69 + -0.01 0.09 -1.27 + -0.01 0.09 -0.69 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 1 5 3 2 5 6 7 3 + 6 3 5 2 8 7 6 3 + 7 4 6 2 9 10 8 3 + 3 6 4 2 7 8 10 3 + tverts 11 + -0.696282 -0.23919 0 + -0.596283 -0.23919 0 + -0.696282 0.617953 0 + -0.596281 0.452184 0 + -0.596281 0.617953 0 + 0.219389 -0.0988962 0 + 0.285126 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 +endnode +#Tile trimesh node +node trimesh Box3030 + parent tin01_d09_02 + position 3.37 4.81 0.33 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -7.0 -8.0 117.0 + bitmap tin01_door2 + verts 14 + 0.11 -0.2 0.35 + -0.37 -0.2 0.35 + 0.11 -0.35 0.19 + -0.52 -0.35 0.19 + -0.37 0.19 0.35 + -0.52 0.19 0.19 + 0.11 -0.35 -0.33 + -0.52 -0.35 -0.33 + -0.52 0.19 -0.33 + -0.37 0.19 2.67 + -0.37 -0.2 2.67 + 0.38 -0.2 1.16 + 0.38 -0.2 2.67 + 0.11 -0.2 1.16 + faces 14 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 1 4 5 2 4 5 6 1 + 5 3 1 2 6 7 4 1 + 2 3 6 4 2 3 8 1 + 7 6 3 4 9 8 3 1 + 3 5 7 8 7 6 10 1 + 8 7 5 8 11 10 6 1 + 4 1 9 4 12 13 14 3 + 10 9 1 4 15 14 13 3 + 11 12 10 8 16 17 18 5 + 10 1 0 8 18 19 20 5 + 13 11 10 8 21 16 18 5 + 10 0 13 8 18 20 21 5 + tverts 22 + 0.0546721 1.05077 0 + 0.300601 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.305378 1.04315 0 + 0.167227 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.357965 0.694046 0 + 0.173247 0.694046 0 + 0.215041 -0.497611 0 + 0.395638 -0.497611 0 + 0.215041 0.174409 0 + 0.395638 0.174409 0 + 0.39879 -0.26474 0 + 0.39879 0.174359 0 + 0.047924 0.174109 0 + 0.047924 -0.502544 0 + 0.274456 -0.502544 0 + 0.276247 -0.265795 0 +endnode +#Tile trimesh node +node trimesh Rectangle107 + parent tin01_d09_02 + position 3.37 4.8 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.5 -230.0 0.0 + bitmap tin01_black + verts 8 + -0.37 -0.19 0.0 + 0.38 -0.19 0.0 + 0.38 0.2 0.0 + -0.37 0.2 0.0 + 0.38 -4.02 0.0 + -0.37 -4.02 0.0 + -0.37 -4.8 0.0 + 0.38 -4.8 0.0 + faces 4 + 0 1 2 1 0 0 0 1 + 0 2 3 1 0 0 0 1 + 4 5 6 1 0 0 0 1 + 4 6 7 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Mesh703 + parent tin01_d09_02 + position 3.37 0.39 4.24 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.5 0.0 42.5 + bitmap tin01_door2 + verts 8 + -0.37 0.39 2.09 + 0.38 0.39 2.09 + -0.37 0.39 -1.24 + 0.38 0.39 -1.24 + 0.38 -0.39 2.09 + -0.37 -0.39 2.09 + 0.38 -0.39 -1.24 + -0.37 -0.39 -1.24 + faces 8 + 0 1 2 1 0 1 2 5 + 3 2 1 1 3 2 1 5 + 4 5 6 1 1 0 4 5 + 7 6 5 1 2 4 0 5 + 6 3 4 2 5 6 7 1 + 1 4 3 2 8 7 6 1 + 7 5 2 2 9 10 11 3 + 0 2 5 2 12 11 10 3 + tverts 13 + 0.047924 0.840297 0 + 0.39879 0.840297 0 + 0.047924 0.174109 0 + 0.39879 0.174432 0 + 0.399406 0.17412 0 + 0.0692728 0.653515 0 + 0.409348 0.653515 0 + 0.0692729 1.31459 0 + 0.409348 1.31459 0 + 0.395638 0.174409 0 + 0.395638 0.83817 0 + 0.0571567 0.174409 0 + 0.0571567 0.83817 0 +endnode +#Tile trimesh node +node trimesh Rectangle109 + parent tin01_d09_02 + position 3.37 4.8 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center -817.5 -817.5 0.0 + bitmap tin01_black + verts 4 + -8.37 -8.55 0.0 + -7.98 -8.55 0.0 + -7.98 -7.8 0.0 + -8.37 -7.8 0.0 + faces 2 + 0 1 2 1 0 0 0 1 + 3 0 2 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Mesh958 + parent tin01_d09_02 + position -3.74 -4.05 0.95 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -50.0 -8.0 55.0 + bitmap tin01_lwalls + verts 17 + -0.01 -0.73 2.05 + -0.01 -0.73 0.54 + -0.01 0.3 2.05 + -0.01 0.3 0.54 + -0.87 0.3 0.54 + -0.87 0.57 0.54 + 0.26 0.57 0.54 + -0.87 0.3 2.05 + -0.76 -0.45 2.05 + -1.26 -0.45 2.05 + -1.26 0.3 2.05 + 0.26 0.57 -0.95 + 0.26 -0.73 0.54 + 0.26 -0.73 -0.95 + -0.87 0.57 -0.27 + -0.72 0.57 -0.95 + -0.72 0.57 -0.43 + faces 17 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 3 5 2 4 5 6 1 + 6 5 3 2 7 6 5 1 + 2 7 8 4 8 9 10 1 + 8 7 9 4 10 9 11 1 + 9 7 10 4 11 9 12 1 + 11 6 12 1 13 14 15 1 + 13 11 12 1 16 13 15 1 + 4 7 3 2 17 18 19 1 + 2 3 7 2 20 19 18 1 + 14 5 6 2 21 22 23 1 + 6 11 15 2 23 24 25 1 + 16 14 6 2 26 21 23 1 + 6 15 16 2 23 25 26 1 + 6 3 12 4 27 28 29 1 + 1 12 3 4 30 29 28 1 + tverts 31 + 0.159906 0.858599 0 + 0.159906 0.483529 0 + 0.374404 0.858599 0 + 0.374404 0.483529 0 + 0.640749 0.45777 0 + 0.426252 0.45777 0 + 0.640749 0.390768 0 + 0.359251 0.390768 0 + 0.34375 0.677799 0 + 0.558247 0.677799 0 + 0.531713 0.865299 0 + 0.65625 0.8653 0 + 0.65625 0.677799 0 + 0.536235 0.0939666 0 + 0.536235 0.46138 0 + 0.321738 0.46138 0 + 0.323519 0.0932356 0 + 0.543447 0.483353 0 + 0.543447 0.858423 0 + 0.32895 0.483354 0 + 0.32895 0.858423 0 + 0.705278 0.264192 0 + 0.705278 0.461204 0 + 0.490781 0.461205 0 + 0.490781 0.0937908 0 + 0.667973 0.0937908 0 + 0.667973 0.223495 0 + 6.29438 1.44535 0 + 6.29438 1.3802 0 + 6.07989 1.44535 0 + 6.07989 1.3802 0 +endnode +#Tile trimesh node +node trimesh Box2933 + parent tin01_d09_02 + position -3.4 -5.09 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -17.5 20.0 -218.0 + bitmap tin01_furnish2 + verts 8 + 0.0 0.31 -3.68 + -0.35 0.31 -3.68 + 0.0 0.31 -1.26 + -0.35 0.31 -0.68 + 0.0 0.31 -0.68 + 0.0 0.09 -3.68 + 0.0 0.09 -1.26 + 0.0 0.09 -0.68 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 5 0 2 2 5 6 7 3 + 2 6 5 2 7 8 5 3 + 4 7 6 2 9 10 8 3 + 6 2 4 2 8 7 9 3 + tverts 11 + 1.34658 -0.23919 0 + 1.44658 -0.23919 0 + 1.34658 0.452184 0 + 1.44658 0.617953 0 + 1.34658 0.617953 0 + 0.285126 -0.0988962 0 + 0.219389 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.219389 0.810195 0 + 0.285126 0.810195 0 +endnode +#Tile trimesh node +node trimesh Box3033 + parent tin01_d09_02 + position -4.81 -3.37 0.33 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 8.0 7.0 117.0 + bitmap tin01_door2 + verts 14 + 0.2 -0.11 0.35 + 0.2 0.37 0.35 + 0.2 -0.11 1.16 + 0.35 -0.11 0.19 + 0.35 0.52 0.19 + -0.19 0.37 0.35 + -0.19 0.52 0.19 + 0.35 -0.11 -0.33 + 0.35 0.52 -0.33 + -0.19 0.52 -0.33 + 0.2 0.37 2.67 + -0.19 0.37 2.67 + 0.2 -0.38 2.67 + 0.2 -0.38 1.16 + faces 14 + 0 1 2 1 0 1 2 5 + 1 0 3 2 3 4 5 1 + 3 4 1 2 5 6 3 1 + 5 1 6 4 7 8 9 1 + 4 6 1 4 10 9 8 1 + 4 3 7 1 6 5 11 1 + 7 8 4 1 11 12 6 1 + 6 4 8 8 9 10 13 1 + 8 9 6 8 13 14 9 1 + 1 5 10 8 15 16 17 3 + 11 10 5 8 18 17 16 3 + 1 10 12 1 1 19 20 5 + 12 13 2 1 20 21 2 5 + 12 2 1 1 20 2 1 5 + tverts 22 + 0.274456 -0.502544 0 + 0.047924 -0.502544 0 + 0.276247 -0.265795 0 + 0.300601 1.05077 0 + 0.0546721 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.167227 1.04315 0 + 0.305378 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.357965 0.694046 0 + 0.173247 0.694046 0 + 0.395638 -0.497611 0 + 0.215041 -0.497611 0 + 0.395638 0.174409 0 + 0.215041 0.174409 0 + 0.047924 0.174109 0 + 0.39879 0.174359 0 + 0.39879 -0.26474 0 +endnode +node light tin01_d09_02ml1 + parent tin01_d09_02 + position 0.0 0.0 5.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 14.0 + multiplier 1.0 + color 0.0 0.0 0.0 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +node light tin01_d09_02ml2 + parent tin01_d09_02 + position 2.68367 -2.86961 4.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 5.0 + multiplier 1.0 + color 0.00392157 0.00392157 0.00392157 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +#Tile trimesh node +node trimesh Object958 + parent tin01_d09_02 + position -4.12 -4.38 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -0.5 0.5 0.0 + bitmap tin01_wallcord + verts 5 + -0.38 -0.12 0.0 + -0.38 -0.62 0.0 + 0.37 0.63 0.0 + 0.37 -0.62 0.0 + 0.37 -0.4 0.0 + faces 3 + 0 1 2 1 0 1 2 3 + 3 4 1 1 3 4 1 3 + 4 2 1 1 4 2 1 3 + tverts 5 + 0.339701 0.771309 0 + 0.33861 0.896304 0 + 0.52883 0.585452 0 + 0.526103 0.89794 0 + 0.526576 0.843711 0 +endnode +#Tile trimesh node +node trimesh blacky01 + parent tin01_d09_02 + position -3.37 5.0 4.04 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 4 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 312.0 -500.0 4.5 + bitmap tin01_black + verts 40 + -1.63 -8.0 0.17 + -1.63 -8.75 0.17 + -1.63 -8.75 -1.04 + -1.63 -8.0 -1.04 + 1.15 -10.0 0.8 + 1.97 -10.0 0.8 + 0.94 -10.0 0.45 + 0.73 -10.0 0.69 + 0.19 -10.0 0.15 + 0.41 -10.0 -0.09 + -0.03 -10.0 -0.34 + -0.03 -10.0 -1.04 + -0.38 -10.0 1.13 + -0.03 -10.0 0.8 + -0.38 -10.0 -1.04 + 3.37 -10.0 1.13 + 3.37 -10.0 0.8 + 4.77 -10.0 0.8 + 5.59 -10.0 0.8 + 5.8 -10.0 0.45 + 6.01 -10.0 0.69 + 6.55 -10.0 0.15 + 6.33 -10.0 -0.09 + 6.77 -10.0 -0.34 + 6.77 -10.0 -1.04 + 6.77 -10.0 0.8 + 7.12 -10.0 1.13 + 7.12 -10.0 -1.04 + 7.12 0.0 -1.04 + 6.37 0.0 -1.04 + 6.37 0.0 0.17 + 7.12 0.0 0.17 + 7.87 0.0 -1.04 + 7.12 0.0 -1.04 + 7.12 -10.0 -1.04 + 7.87 -10.0 -1.04 + 7.87 0.0 1.13 + 7.12 0.0 1.13 + 7.12 -10.0 1.13 + 7.87 -10.0 1.13 + faces 34 + 3 2 0 1 3 2 0 1 + 2 1 0 1 2 1 0 1 + 5 4 6 1 5 4 6 1 + 6 4 7 1 6 4 7 1 + 7 8 9 1 7 8 9 1 + 7 9 6 1 7 9 6 1 + 8 10 11 1 8 10 11 1 + 8 11 9 1 8 11 9 1 + 13 12 14 1 13 12 14 1 + 10 14 11 1 10 14 11 1 + 13 14 10 1 13 14 10 1 + 13 4 12 1 13 4 12 1 + 15 12 16 1 15 12 16 1 + 4 5 12 1 4 5 12 1 + 16 12 5 1 16 12 5 1 + 18 17 19 1 18 17 19 1 + 18 19 20 1 18 19 20 1 + 21 20 22 1 21 20 22 1 + 22 20 19 1 22 20 19 1 + 23 21 24 1 23 21 24 1 + 24 21 22 1 24 21 22 1 + 26 25 27 1 26 25 27 1 + 27 23 24 1 27 23 24 1 + 27 25 23 1 27 25 23 1 + 18 25 26 1 18 25 26 1 + 26 15 16 1 26 15 16 1 + 17 18 26 1 17 18 26 1 + 26 16 17 1 26 16 17 1 + 28 29 31 0 28 31 34 1 + 31 29 30 0 34 31 33 1 + 32 33 36 0 48 52 53 1 + 37 36 33 0 54 49 55 1 + 34 35 38 0 57 56 58 1 + 39 38 35 0 51 59 50 1 + tverts 72 + -163.0 800.0 0 + -163.0 875.0 0 + -163.0 875.0 0 + -163.0 800.0 0 + 115.0 1000.0 0 + 197.0 1000.0 0 + 94.0 1000.0 0 + 73.0 1000.0 0 + 19.0 1000.0 0 + 41.0 1000.0 0 + -3.00001 1000.0 0 + -3.00001 1000.0 0 + -38.0 1000.0 0 + -3.00001 1000.0 0 + -38.0 1000.0 0 + 337.0 1000.0 0 + 337.0 1000.0 0 + 477.0 1000.0 0 + 559.0 1000.0 0 + 580.0 1000.0 0 + 601.0 1000.0 0 + 655.0 1000.0 0 + 633.0 1000.0 0 + 677.0 1000.0 0 + 677.0 1000.0 0 + 677.0 1000.0 0 + 712.0 1000.0 0 + 712.0 1000.0 0 + 0.265279 0.653515 0 + 0.0692729 1.003 0 + 0.265279 1.003 0 + 0.215041 0.174409 0 + 0.215041 0.35 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.812499 0.830915 0 + 1.4375 0.642952 0 + 1.4375 0.830915 0 + 0.8125 0.774954 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 0.500499 0.5 0 + 1.4995 0.0 0 + 1.92108 0.0 0 + 1.92108 0.5 0 + 1.07492 0.0 0 + 1.07492 0.5 0 + 0.925075 0.0 0 + 0.925075 0.5 0 + 0.925075 0.0 0 + 1.07492 0.5 0 + 0.925075 0.5 0 + 0.925075 0.0 0 + 0.925075 0.0 0 + 1.07492 0.0 0 + 1.07492 0.5 0 + 1.07492 0.5 0 + 0.688285 0.0 0 + 0.000998914 0.0 0 + 0.688285 0.5 0 + 0.000998914 0.5 0 + 0.688285 0.0 0 + 0.938035 0.0 0 + 0.938035 0.5 0 + 0.938035 0.5 0 + 0.000998914 0.0 0 + 0.250749 0.0 0 + 0.250749 0.5 0 + 0.250749 0.5 0 +endnode +#Tile trimesh node +node trimesh bolt01 + parent tin01_d09_02 + position 5.0 2.85 5.02 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.6 0.894118 0.721569 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10 + center -574.5 -210.5 47.5 + bitmap tin01__metal01 + verts 66 + -9.67 -5.41 0.16 + -9.67 -5.35 0.16 + -9.67 -5.39 0.22 + -9.67 -5.46 0.2 + -9.67 -5.46 0.12 + -9.67 -5.39 0.1 + -9.95 -5.35 0.16 + -9.95 -5.39 0.22 + -9.95 -5.46 0.2 + -9.95 -5.46 0.12 + -9.95 -5.39 0.1 + -9.67 -4.06 1.86 + -9.67 -4.0 1.86 + -9.67 -4.04 1.92 + -9.67 -4.11 1.9 + -9.67 -4.11 1.82 + -9.67 -4.04 1.8 + -9.95 -4.0 1.86 + -9.95 -4.04 1.92 + -9.95 -4.11 1.9 + -9.95 -4.11 1.82 + -9.95 -4.04 1.8 + -9.67 -6.26 -0.91 + -9.67 -6.2 -0.91 + -9.67 -6.24 -0.85 + -9.67 -6.31 -0.87 + -9.67 -6.31 -0.95 + -9.67 -6.24 -0.97 + -9.95 -6.2 -0.91 + -9.95 -6.24 -0.85 + -9.95 -6.31 -0.87 + -9.95 -6.31 -0.95 + -9.95 -6.24 -0.97 + -2.5 2.1 0.16 + -2.46 2.1 0.22 + -2.39 2.1 0.2 + -2.39 2.1 0.12 + -2.46 2.1 0.1 + -2.5 1.82 0.16 + -2.46 1.82 0.22 + -2.39 1.82 0.2 + -2.39 1.82 0.12 + -2.46 1.82 0.1 + -2.44 1.82 0.16 + -3.85 2.1 1.86 + -3.81 2.1 1.92 + -3.74 2.1 1.9 + -3.74 2.1 1.82 + -3.81 2.1 1.8 + -3.85 1.82 1.86 + -3.81 1.82 1.92 + -3.74 1.82 1.9 + -3.74 1.82 1.82 + -3.81 1.82 1.8 + -3.79 1.82 1.86 + -1.65 2.1 -0.91 + -1.61 2.1 -0.85 + -1.54 2.1 -0.87 + -1.54 2.1 -0.95 + -1.61 2.1 -0.97 + -1.65 1.82 -0.91 + -1.61 1.82 -0.85 + -1.54 1.82 -0.87 + -1.54 1.82 -0.95 + -1.61 1.82 -0.97 + -1.59 1.82 -0.91 + faces 90 + 2 0 1 1 96 95 97 2 + 3 0 2 1 99 98 100 2 + 4 0 3 1 102 101 103 2 + 5 0 4 1 105 104 106 2 + 1 0 5 1 107 84 108 2 + 7 1 6 8 91 85 90 3 + 2 1 7 8 86 85 91 3 + 8 2 7 8 92 109 110 3 + 3 2 8 8 87 111 92 3 + 9 3 8 8 93 87 92 3 + 4 3 9 8 88 87 93 3 + 10 4 9 8 94 88 93 3 + 5 4 10 8 89 88 94 3 + 6 5 10 8 90 89 94 3 + 1 5 6 8 85 89 90 3 + 13 11 12 1 124 123 125 2 + 14 11 13 1 127 126 128 2 + 15 11 14 1 130 129 131 2 + 16 11 15 1 133 132 134 2 + 12 11 16 1 135 112 136 2 + 18 12 17 8 119 113 118 3 + 13 12 18 8 114 113 119 3 + 19 13 18 8 120 137 138 3 + 14 13 19 8 115 139 120 3 + 20 14 19 8 121 115 120 3 + 15 14 20 8 116 115 121 3 + 21 15 20 8 122 116 121 3 + 16 15 21 8 117 116 122 3 + 17 16 21 8 118 117 122 3 + 12 16 17 8 113 117 118 3 + 24 22 23 1 152 151 153 2 + 25 22 24 1 155 154 156 2 + 26 22 25 1 158 157 159 2 + 27 22 26 1 161 160 162 2 + 23 22 27 1 163 140 164 2 + 29 23 28 8 147 141 146 3 + 24 23 29 8 142 141 147 3 + 30 24 29 8 148 165 166 3 + 25 24 30 8 143 167 148 3 + 31 25 30 8 149 143 148 3 + 26 25 31 8 144 143 149 3 + 32 26 31 8 150 144 149 3 + 27 26 32 8 145 144 150 3 + 28 27 32 8 146 145 150 3 + 23 27 28 8 141 145 146 3 + 39 33 38 8 346 340 345 3 + 34 33 39 8 341 340 346 3 + 40 34 39 8 347 351 352 3 + 35 34 40 8 342 353 347 3 + 41 35 40 8 348 342 347 3 + 36 35 41 8 343 342 348 3 + 42 36 41 8 349 343 348 3 + 37 36 42 8 344 343 349 3 + 38 37 42 8 345 344 349 3 + 33 37 38 8 340 344 345 3 + 38 43 39 1 355 354 356 1 + 39 43 40 1 358 357 359 1 + 40 43 41 1 361 360 362 1 + 41 43 42 1 364 363 365 1 + 42 43 38 1 366 350 367 1 + 50 44 49 8 374 368 373 3 + 45 44 50 8 369 368 374 3 + 51 45 50 8 375 379 380 3 + 46 45 51 8 370 381 375 3 + 52 46 51 8 376 370 375 3 + 47 46 52 8 371 370 376 3 + 53 47 52 8 377 371 376 3 + 48 47 53 8 372 371 377 3 + 49 48 53 8 373 372 377 3 + 44 48 49 8 368 372 373 3 + 49 54 50 1 383 382 384 1 + 50 54 51 1 386 385 387 1 + 51 54 52 1 389 388 390 1 + 52 54 53 1 392 391 393 1 + 53 54 49 1 394 378 395 1 + 61 55 60 8 402 396 401 3 + 56 55 61 8 397 396 402 3 + 62 56 61 8 403 407 408 3 + 57 56 62 8 398 409 403 3 + 63 57 62 8 404 398 403 3 + 58 57 63 8 399 398 404 3 + 64 58 63 8 405 399 404 3 + 59 58 64 8 400 399 405 3 + 60 59 64 8 401 400 405 3 + 55 59 60 8 396 400 401 3 + 60 65 61 1 411 410 412 1 + 61 65 62 1 414 413 415 1 + 62 65 63 1 417 416 418 1 + 63 65 64 1 420 419 421 1 + 64 65 60 1 422 406 423 1 + tverts 424 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 +endnode +#Tile trimesh node +node trimesh construction01 + parent tin01_d09_02 + position -4.0 0.2 3.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.87451 0.556863 0.337255 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 339.5 -20.0 245.0 + bitmap tin01_furnish2 + verts 228 + 7.76 0.19 1.94 + 7.76 -0.01 1.94 + 6.63 0.0 1.86 + 6.63 -0.2 1.86 + 4.45 -0.15 1.92 + 4.45 -0.35 1.92 + 2.33 -0.1 1.82 + 2.33 -0.3 1.82 + -0.9 -0.1 1.93 + -0.9 -0.3 1.93 + 7.74 0.19 2.11 + 7.74 -0.01 2.11 + 6.63 0.0 2.06 + 6.63 -0.2 2.06 + 4.45 -0.15 2.12 + 4.45 -0.35 2.12 + 2.33 -0.1 2.02 + 2.33 -0.3 2.02 + -0.9 -0.1 2.11 + -0.9 -0.3 2.11 + 3.89 4.71 1.94 + 4.09 4.71 1.94 + 3.93 2.42 1.94 + 4.13 2.42 1.94 + 3.89 0.28 1.86 + 4.09 0.28 1.86 + 3.89 -1.87 1.92 + 4.09 -1.87 1.92 + 3.89 -4.98 1.88 + 4.09 -4.98 1.88 + 3.89 4.7 2.11 + 4.09 4.7 2.11 + 3.93 2.42 2.14 + 4.13 2.42 2.14 + 3.89 0.28 2.06 + 4.09 0.28 2.06 + 3.89 -1.87 2.12 + 4.09 -1.87 2.12 + 3.89 -4.98 2.08 + 4.09 -4.98 2.08 + 4.1 -5.2 3.76 + 3.9 -5.2 3.76 + 4.11 -1.65 3.74 + 3.91 -1.65 3.74 + 4.06 0.53 3.8 + 3.86 0.53 3.8 + 4.11 2.65 3.7 + 3.91 2.65 3.7 + 4.1 4.8 3.76 + 3.9 4.8 3.76 + 4.1 -5.2 3.96 + 3.9 -5.2 3.96 + 4.11 -1.65 3.94 + 3.91 -1.65 3.94 + 4.06 0.53 4.0 + 3.86 0.53 4.0 + 4.11 2.65 3.9 + 3.91 2.65 3.9 + 4.1 4.8 3.96 + 3.9 4.8 3.96 + 6.85 -0.05 3.82 + 6.85 -0.25 3.82 + 4.7 -0.02 3.74 + 4.7 -0.22 3.74 + 2.55 -0.02 3.8 + 2.55 -0.22 3.8 + -1.0 -0.1 3.76 + -1.0 -0.3 3.76 + 6.85 -0.05 4.02 + 6.85 -0.25 4.02 + 4.7 -0.02 3.94 + 4.7 -0.22 3.94 + 2.55 -0.02 4.0 + 2.55 -0.22 4.0 + -1.0 -0.1 3.96 + -1.0 -0.3 3.96 + 6.08 -0.06 2.07 + 6.08 -0.22 2.07 + 5.92 -0.06 2.07 + 5.92 -0.22 2.07 + 6.06 -0.06 3.82 + 6.06 -0.22 3.82 + 5.92 -0.06 3.82 + 5.92 -0.22 3.82 + 2.09 -0.12 2.0 + 2.09 -0.28 2.0 + 1.93 -0.12 2.0 + 1.93 -0.28 2.0 + 2.07 -0.06 3.82 + 2.07 -0.22 3.82 + 1.93 -0.06 3.82 + 1.93 -0.22 3.82 + 4.06 -2.16 2.04 + 4.06 -2.32 2.04 + 3.9 -2.16 2.04 + 3.9 -2.32 2.04 + 4.06 -2.08 3.82 + 4.06 -2.24 3.82 + 3.92 -2.08 3.82 + 3.92 -2.24 3.82 + 4.1 1.88 2.07 + 4.1 1.72 2.07 + 3.94 1.88 2.07 + 3.94 1.72 2.07 + 4.08 1.96 3.82 + 4.08 1.8 3.82 + 3.94 1.96 3.82 + 3.94 1.8 3.82 + -1.0 4.8 3.72 + -0.9 4.7 3.72 + -1.0 0.8 3.72 + -0.91 1.25 3.69 + -1.0 -1.2 3.72 + -0.9 -1.13 3.75 + -1.0 -3.0 3.72 + -0.91 -3.0 3.7 + -1.0 4.8 3.92 + -0.9 4.7 3.92 + -1.0 0.8 3.92 + -0.91 1.25 3.94 + -1.0 -1.2 3.92 + -0.9 -1.13 4.0 + -1.0 -3.0 3.92 + -0.91 -3.0 3.94 + -1.0 -0.3 2.07 + -1.0 -0.1 2.07 + -0.92 -0.28 2.07 + -0.92 -0.12 2.07 + -1.0 -0.3 3.72 + -1.0 -0.1 3.72 + -0.92 -0.28 3.77 + -0.92 -0.12 3.77 + 6.9 4.8 3.72 + 6.8 4.7 3.72 + 5.0 4.8 3.72 + 5.45 4.71 3.69 + 3.0 4.8 3.72 + 3.07 4.7 3.75 + -1.0 4.8 3.72 + -0.9 4.7 3.72 + 6.9 4.8 3.92 + 6.8 4.7 3.92 + 5.0 4.8 3.92 + 5.45 4.71 3.94 + 3.0 4.8 3.92 + 3.07 4.7 4.0 + -1.0 4.8 3.92 + -0.9 4.7 3.92 + 3.9 4.8 2.07 + 4.1 4.8 2.07 + 3.92 4.72 2.07 + 4.08 4.72 2.07 + 3.9 4.8 3.72 + 4.1 4.8 3.72 + 3.92 4.72 3.77 + 4.08 4.72 3.77 + 1.2 -5.2 3.72 + 1.2 -5.11 3.71 + 3.0 -5.2 3.72 + 2.55 -5.11 3.69 + 5.0 -5.2 3.72 + 4.93 -5.1 3.75 + 6.8 -5.2 3.72 + 6.8 -5.11 3.7 + 1.2 -5.2 3.92 + 1.2 -5.11 3.96 + 3.0 -5.2 3.92 + 2.55 -5.11 3.94 + 5.0 -5.2 3.92 + 4.93 -5.1 4.0 + 6.8 -5.2 3.92 + 6.8 -5.11 3.94 + 4.1 -5.2 2.07 + 3.9 -5.2 2.07 + 4.08 -5.12 2.07 + 3.92 -5.12 2.07 + 4.1 -5.2 3.72 + 3.9 -5.2 3.72 + 4.08 -5.12 3.77 + 3.92 -5.12 3.77 + -1.0 4.8 1.92 + -0.9 4.7 1.92 + -1.0 0.8 1.92 + -0.91 1.25 1.89 + -1.0 -1.2 1.92 + -0.9 -1.13 1.95 + -1.0 -3.95 1.92 + -0.91 -3.95 1.9 + -1.0 4.8 2.12 + -0.9 4.7 2.12 + -1.0 0.8 2.12 + -0.91 1.25 2.14 + -1.0 -1.2 2.12 + -0.9 -1.13 2.2 + -1.0 -3.95 2.12 + -0.91 -3.95 2.14 + 7.79 4.8 1.92 + 7.74 4.7 1.92 + 5.0 4.8 1.92 + 5.45 4.71 1.89 + 3.0 4.8 1.92 + 3.07 4.7 1.95 + -1.0 4.8 1.92 + -0.9 4.7 1.92 + 7.79 4.8 2.12 + 7.74 4.7 2.12 + 5.0 4.8 2.12 + 5.45 4.71 2.14 + 3.0 4.8 2.12 + 3.07 4.7 2.2 + -1.0 4.8 2.12 + -0.9 4.7 2.12 + 7.36 4.58 0.81 + 7.36 4.7 0.81 + 7.64 4.5 1.09 + 7.64 4.7 1.09 + 4.94 4.5 3.81 + 4.94 4.7 3.81 + 5.22 4.5 4.09 + 5.22 4.7 4.09 + -0.9 -3.56 0.81 + -0.7 -3.56 0.81 + -0.9 -3.84 1.09 + -0.7 -3.84 1.09 + -0.9 -1.14 3.81 + -0.7 -1.14 3.81 + -0.9 -1.42 4.09 + -0.7 -1.42 4.09 + faces 342 + 2 0 3 2 437 435 447 2 + 1 3 0 2 449 448 435 2 + 4 2 5 2 439 437 450 2 + 3 5 2 2 452 451 437 2 + 6 4 7 2 113 111 123 2 + 5 7 4 2 125 124 111 2 + 8 6 9 2 115 113 126 2 + 7 9 6 2 128 127 113 2 + 11 10 13 4 442 441 444 1 + 12 13 10 4 443 444 441 1 + 13 12 15 4 444 443 446 1 + 14 15 12 4 445 446 443 1 + 15 14 17 4 118 117 120 1 + 16 17 14 4 119 120 117 1 + 17 16 19 4 120 119 122 1 + 18 19 16 4 121 122 119 1 + 3 1 13 16 438 436 444 4 + 11 13 1 16 442 444 436 4 + 5 3 15 16 440 438 446 4 + 13 15 3 16 444 446 438 4 + 7 5 17 16 114 112 120 4 + 15 17 5 16 118 120 112 4 + 9 7 19 16 116 114 122 4 + 17 19 7 16 120 122 114 4 + 8 9 18 32 0 4 2 6 + 19 18 9 32 3 2 1 6 + 6 8 16 64 113 115 119 3 + 18 16 8 64 121 119 115 3 + 4 6 14 64 111 113 117 3 + 16 14 6 64 119 117 113 3 + 2 4 12 64 437 439 443 3 + 14 12 4 64 445 443 439 3 + 0 2 10 64 435 437 441 3 + 12 10 2 64 443 441 437 3 + 22 20 23 2 7 5 21 2 + 21 23 20 2 23 22 5 2 + 24 22 25 2 9 7 24 2 + 23 25 22 2 26 25 7 2 + 26 24 27 2 196 194 206 2 + 25 27 24 2 208 207 194 2 + 28 26 29 2 198 196 209 2 + 27 29 26 2 211 210 196 2 + 31 30 33 4 14 13 16 1 + 32 33 30 4 15 16 13 1 + 33 32 35 4 16 15 18 1 + 34 35 32 4 17 18 15 1 + 35 34 37 4 201 200 203 1 + 36 37 34 4 202 203 200 1 + 37 36 39 4 203 202 205 1 + 38 39 36 4 204 205 202 1 + 21 20 31 8 27 5 14 5 + 30 31 20 8 13 14 5 5 + 23 21 33 16 8 6 16 4 + 31 33 21 16 14 16 6 4 + 25 23 35 16 10 8 18 4 + 33 35 23 16 16 18 8 4 + 27 25 37 16 197 195 203 4 + 35 37 25 16 201 203 195 4 + 29 27 39 16 199 197 205 4 + 37 39 27 16 203 205 197 4 + 28 29 38 32 11 28 19 6 + 39 38 29 32 20 19 12 6 + 26 28 36 64 196 198 202 3 + 38 36 28 64 204 202 198 3 + 24 26 34 64 194 196 200 3 + 36 34 26 64 202 200 196 3 + 22 24 32 64 7 9 15 3 + 34 32 24 64 17 15 9 3 + 20 22 30 64 5 7 13 3 + 32 30 22 64 15 13 7 3 + 42 40 43 2 214 212 224 2 + 41 43 40 2 226 225 212 2 + 44 42 45 2 216 214 227 2 + 43 45 42 2 229 228 214 2 + 46 44 47 2 32 30 44 2 + 45 47 44 2 46 45 30 2 + 48 46 49 2 34 32 47 2 + 47 49 46 2 49 48 32 2 + 51 50 53 4 219 218 221 1 + 52 53 50 4 220 221 218 1 + 53 52 55 4 221 220 223 1 + 54 55 52 4 222 223 220 1 + 55 54 57 4 39 38 41 1 + 56 57 54 4 40 41 38 1 + 57 56 59 4 41 40 43 1 + 58 59 56 4 42 43 40 1 + 41 40 51 8 50 29 37 5 + 50 51 40 8 36 37 29 5 + 43 41 53 16 215 213 221 4 + 51 53 41 16 219 221 213 4 + 45 43 55 16 217 215 223 4 + 53 55 43 16 221 223 215 4 + 47 45 57 16 33 31 41 4 + 55 57 45 16 39 41 31 4 + 49 47 59 16 35 33 43 4 + 57 59 47 16 41 43 33 4 + 46 48 56 64 32 34 40 3 + 58 56 48 64 42 40 34 3 + 44 46 54 64 30 32 38 3 + 56 54 46 64 40 38 32 3 + 42 44 52 64 214 216 220 3 + 54 52 44 64 222 220 216 3 + 40 42 50 64 212 214 218 3 + 52 50 42 64 220 218 214 3 + 62 60 63 2 53 51 63 2 + 61 63 60 2 65 64 51 2 + 64 62 65 2 131 129 141 2 + 63 65 62 2 143 142 129 2 + 66 64 67 2 133 131 144 2 + 65 67 64 2 146 145 131 2 + 69 68 71 4 58 57 60 1 + 70 71 68 4 59 60 57 1 + 71 70 73 4 136 135 138 1 + 72 73 70 4 137 138 135 1 + 73 72 75 4 138 137 140 1 + 74 75 72 4 139 140 137 1 + 63 61 71 16 54 52 60 4 + 69 71 61 16 58 60 52 4 + 65 63 73 16 132 130 138 4 + 71 73 63 16 136 138 130 4 + 67 65 75 16 134 132 140 4 + 73 75 65 16 138 140 132 4 + 66 67 74 32 55 66 61 6 + 75 74 67 32 62 61 56 6 + 64 66 72 64 131 133 137 3 + 74 72 66 64 139 137 133 3 + 62 64 70 64 129 131 135 3 + 72 70 64 64 137 135 131 3 + 60 62 68 64 51 53 57 3 + 70 68 62 64 59 57 53 3 + 77 76 81 8 68 67 72 5 + 80 81 76 8 71 72 67 5 + 79 77 83 16 70 68 74 4 + 81 83 77 16 72 74 68 4 + 78 79 82 32 69 75 73 6 + 83 82 79 32 76 73 77 6 + 76 78 80 64 67 69 71 3 + 82 80 78 64 73 71 69 3 + 85 84 89 8 79 78 83 5 + 88 89 84 8 82 83 78 5 + 87 85 91 16 81 79 85 4 + 89 91 85 16 83 85 79 4 + 86 87 90 32 80 86 84 6 + 91 90 87 32 87 84 88 6 + 84 86 88 64 78 80 82 3 + 90 88 86 64 84 82 80 3 + 93 92 97 8 90 89 94 5 + 96 97 92 8 93 94 89 5 + 95 93 99 16 92 90 96 4 + 97 99 93 16 94 96 90 4 + 94 95 98 32 91 97 95 6 + 99 98 95 32 98 95 99 6 + 92 94 96 64 89 91 93 3 + 98 96 94 64 95 93 91 3 + 101 100 105 8 101 100 105 5 + 104 105 100 8 104 105 100 5 + 103 101 107 16 103 101 107 4 + 105 107 101 16 105 107 101 4 + 102 103 106 32 102 108 106 6 + 107 106 103 32 109 106 110 6 + 100 102 104 64 100 102 104 3 + 106 104 102 64 106 104 102 3 + 110 108 111 2 313 312 314 2 + 109 111 108 2 315 314 312 2 + 112 110 113 2 166 164 167 2 + 111 113 110 2 165 167 164 2 + 114 112 115 2 168 166 169 2 + 113 115 112 2 167 169 166 2 + 117 116 119 4 344 343 345 1 + 118 119 116 4 346 345 343 1 + 119 118 121 4 170 171 172 1 + 120 121 118 4 173 172 171 1 + 121 120 123 4 172 173 174 1 + 122 123 120 4 175 174 173 1 + 109 108 117 8 177 176 178 5 + 116 117 108 8 180 179 181 5 + 111 109 119 16 314 315 318 4 + 117 119 109 16 320 319 315 4 + 113 111 121 16 167 165 182 4 + 119 121 111 16 184 183 165 4 + 115 113 123 16 169 167 185 4 + 121 123 113 16 187 186 167 4 + 112 114 120 64 166 168 173 3 + 122 120 114 64 175 173 168 3 + 110 112 118 64 164 166 171 3 + 120 118 112 64 173 171 166 3 + 108 110 116 64 312 313 316 3 + 118 116 110 64 317 316 313 3 + 125 124 129 8 148 147 151 5 + 128 129 124 8 150 151 147 5 + 127 125 131 16 159 157 163 4 + 129 131 125 16 161 163 157 4 + 126 127 130 32 149 153 152 6 + 131 130 127 32 154 152 155 6 + 124 126 128 64 156 158 160 3 + 130 128 126 64 162 160 158 3 + 114 123 122 0 189 188 190 1 + 114 115 123 0 192 191 193 1 + 134 132 135 2 331 330 332 2 + 133 135 132 2 333 332 330 2 + 136 134 137 2 249 247 250 2 + 135 137 134 2 248 250 247 2 + 138 136 139 2 323 321 324 2 + 137 139 136 2 322 324 321 2 + 141 140 143 4 348 347 349 1 + 142 143 140 4 350 349 347 1 + 143 142 145 4 251 252 253 1 + 144 145 142 4 254 253 252 1 + 145 144 147 4 339 340 341 1 + 146 147 144 4 342 341 340 1 + 135 133 143 16 332 333 336 4 + 141 143 133 16 338 337 333 4 + 137 135 145 16 250 248 255 4 + 143 145 135 16 257 256 248 4 + 139 137 147 16 324 322 327 4 + 145 147 137 16 329 328 322 4 + 136 138 144 64 321 323 325 3 + 146 144 138 64 326 325 323 3 + 134 136 142 64 247 249 252 3 + 144 142 136 64 254 252 249 3 + 132 134 140 64 330 331 334 3 + 142 140 134 64 335 334 331 3 + 149 148 153 8 231 230 234 5 + 152 153 148 8 233 234 230 5 + 151 149 155 16 242 240 246 4 + 153 155 149 16 244 246 240 4 + 150 151 154 32 232 236 235 6 + 155 154 151 32 237 235 238 6 + 148 150 152 64 239 241 243 3 + 154 152 150 64 245 243 241 3 + 158 156 159 2 276 275 277 2 + 157 159 156 2 278 277 275 2 + 160 158 161 2 279 276 280 2 + 159 161 158 2 277 280 276 2 + 162 160 163 2 281 279 282 2 + 161 163 160 2 280 282 279 2 + 165 164 167 4 284 283 285 1 + 166 167 164 4 286 285 283 1 + 167 166 169 4 285 286 287 1 + 168 169 166 4 288 287 286 1 + 169 168 171 4 287 288 289 1 + 170 171 168 4 290 289 288 1 + 157 156 165 8 292 291 293 5 + 164 165 156 8 295 294 296 5 + 159 157 167 16 277 278 297 4 + 165 167 157 16 299 298 278 4 + 161 159 169 16 280 277 300 4 + 167 169 159 16 302 301 277 4 + 163 161 171 16 282 280 303 4 + 169 171 161 16 305 304 280 4 + 160 162 168 64 279 281 288 3 + 170 168 162 64 290 288 281 3 + 158 160 166 64 276 279 286 3 + 168 166 160 64 288 286 279 3 + 156 158 164 64 275 276 283 3 + 166 164 158 64 286 283 276 3 + 173 172 177 8 259 258 262 5 + 176 177 172 8 261 262 258 5 + 175 173 179 16 270 268 274 4 + 177 179 173 16 272 274 268 4 + 174 175 178 32 260 264 263 6 + 179 178 175 32 265 263 266 6 + 172 174 176 64 267 269 271 3 + 178 176 174 64 273 271 269 3 + 162 171 170 0 307 306 308 1 + 162 163 171 0 310 309 311 1 + 182 180 183 2 386 385 387 2 + 181 183 180 2 388 387 385 2 + 184 182 185 2 353 351 354 2 + 183 185 182 2 352 354 351 2 + 186 184 187 2 413 411 414 2 + 185 187 184 2 412 414 411 2 + 189 188 191 4 408 407 409 1 + 190 191 188 4 410 409 407 1 + 191 190 193 4 355 356 357 1 + 192 193 190 4 358 357 356 1 + 193 192 195 4 415 416 417 1 + 194 195 192 4 418 417 416 1 + 181 180 189 8 360 359 361 5 + 188 189 180 8 363 362 364 5 + 183 181 191 16 387 388 391 4 + 189 191 181 16 393 392 388 4 + 185 183 193 16 354 352 365 4 + 191 193 183 16 367 366 352 4 + 187 185 195 16 414 412 419 4 + 193 195 185 16 421 420 412 4 + 184 186 192 64 411 413 416 3 + 194 192 186 64 418 416 413 3 + 182 184 190 64 351 353 356 3 + 192 190 184 64 358 356 353 3 + 180 182 188 64 385 386 389 3 + 190 188 182 64 390 389 386 3 + 186 195 194 0 369 368 370 1 + 186 187 195 0 372 371 373 1 + 198 196 199 2 423 422 424 2 + 197 199 196 2 425 424 422 2 + 200 198 201 2 376 374 377 2 + 199 201 198 2 375 377 374 2 + 202 200 203 2 396 394 397 2 + 201 203 200 2 395 397 394 2 + 205 204 207 4 432 431 433 1 + 206 207 204 4 434 433 431 1 + 207 206 209 4 378 379 380 1 + 208 209 206 4 381 380 379 1 + 209 208 211 4 403 404 405 1 + 210 211 208 4 406 405 404 1 + 199 197 207 16 424 425 428 4 + 205 207 197 16 430 429 425 4 + 201 199 209 16 377 375 382 4 + 207 209 199 16 384 383 375 4 + 203 201 211 16 397 395 400 4 + 209 211 201 16 402 401 395 4 + 200 202 208 64 394 396 398 3 + 210 208 202 64 399 398 396 3 + 198 200 206 64 374 376 379 3 + 208 206 200 64 381 379 376 3 + 196 198 204 64 422 423 426 3 + 206 204 198 64 427 426 423 3 + 214 212 215 2 512 511 513 2 + 213 215 212 2 515 514 516 2 + 217 216 219 4 518 517 519 1 + 218 219 216 4 521 520 522 1 + 213 212 217 8 504 503 508 5 + 216 217 212 8 507 508 503 5 + 215 213 219 16 506 504 510 4 + 217 219 213 16 508 510 504 4 + 214 215 218 32 505 523 509 6 + 219 218 215 32 524 509 525 6 + 212 214 216 64 503 505 507 3 + 218 216 214 64 509 507 505 3 + 222 220 223 2 535 534 536 2 + 221 223 220 2 538 537 539 2 + 225 224 227 4 541 540 542 1 + 226 227 224 4 544 543 545 1 + 221 220 225 8 527 526 531 5 + 224 225 220 8 530 531 526 5 + 223 221 227 16 529 527 533 4 + 225 227 221 16 531 533 527 4 + 222 223 226 32 528 546 532 6 + 227 226 223 32 547 532 548 6 + 220 222 224 64 526 528 530 3 + 226 224 222 64 532 530 528 3 + tverts 549 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 2.9985 0 + 0.344242 -1.04225 0 + 0.273035 -1.04225 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 1.95475 0 + 0.174465 0.00149864 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 2.9985 0 + 0.104128 2.9985 0 + 0.104128 2.24925 0 + 0.104128 0.00149864 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 1.95475 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 3.66842 0 + 0.104128 3.66842 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 3.66842 0 + 0.175144 3.66842 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 3.66842 0 + 0.104128 3.66842 0 + 0.104128 2.24925 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.348651 2.41652 0 + 0.277444 2.41652 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.419858 2.41652 0 + 0.349339 2.41652 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.277444 2.41652 0 + 0.277444 2.41652 0 + 0.273035 1.2055 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.326305 2.43905 0 + 0.255098 2.43905 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.397512 2.43905 0 + 0.326993 2.43905 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.255098 2.43905 0 + 0.255098 2.43905 0 + 0.273035 1.2055 0 + 0.159393 -0.654153 0 + 0.0890555 -0.654153 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.229729 -0.654153 0 + 0.160072 -0.654153 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.0890555 -0.654153 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.0337728 0.940718 0 + 0.0337728 -0.0582831 0 + 0.243649 -0.0582831 0 + 0.310278 -0.0582831 0 + 0.177022 -0.0582831 0 + 0.376905 -0.0582831 0 + 0.237631 0.940718 0 + 0.316296 0.940718 0 + 0.177022 0.940718 0 + 0.376905 0.940718 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 -0.0109385 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -0.0109385 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.37945 -0.0109385 0 + 0.404514 -0.0109386 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -0.0109386 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.320422 -1.13992 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -1.13992 0 + 0.37945 -1.13992 0 + 0.37945 0.674666 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -1.13992 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.35824 0 + 0.23974 2.35824 0 + 0.316414 0.879271 0 + 0.316414 2.35824 0 + 0.172541 2.35824 0 + 0.172541 2.35824 0 + 0.170192 0.852609 0 + 0.257387 -1.76798 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -1.76798 0 + 0.316414 -1.76798 0 + 0.316414 0.117489 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -1.76798 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.35824 0 + 0.316414 2.39498 0 + 0.37945 -1.19967 0 + 0.404514 -1.13992 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.316414 -1.82165 0 + 0.341479 -1.76798 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.164791 0.513932 0 + 0.147595 0.342531 0 + 0.164791 1.27572 0 + 0.141295 1.24906 0 + 0.250616 0.342531 0 + 0.223819 0.513932 0 + 0.248267 1.24906 0 + 0.223819 1.27572 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.0775959 1.24906 0 + 0.0775959 1.24906 0 + 0.079945 0.342531 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.164791 -1.30066 0 + 0.164791 0.513932 0 + 0.147595 0.342531 0 + 0.146631 -1.30066 0 + 0.223819 -1.30066 0 + 0.223819 0.513932 0 + 0.079945 0.342531 0 + 0.079945 0.342531 0 + 0.0782129 -1.30066 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.19751 0 + 0.0841089 2.19751 0 + 0.160783 0.718537 0 + 0.160783 2.19751 0 + 0.01691 2.19751 0 + 0.01691 2.19751 0 + 0.014561 0.691875 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.19751 0 + 0.160783 2.23425 0 + 0.223819 -1.3604 0 + 0.248883 -1.30066 0 + 0.250616 0.342531 0 + 0.223819 0.513932 0 + 0.164791 1.27572 0 + 0.141295 1.24906 0 + 0.164791 2.261 0 + 0.147144 2.261 0 + 0.248267 1.24906 0 + 0.223819 1.27572 0 + 0.250616 2.261 0 + 0.223819 2.261 0 + 0.079946 2.261 0 + 0.079946 2.261 0 + 0.0775959 1.24906 0 + 0.101756 -1.12541 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.12541 0 + 0.160783 -1.12541 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.12541 0 + 0.160783 -1.17908 0 + 0.185848 -1.12541 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.174465 0.521668 0 + 0.104128 0.521668 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.244801 0.521668 0 + 0.175144 0.521668 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.521668 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.00149864 0 + 0.104128 2.9985 0 + 0.251779 -1.21921 0 + 0.326839 -1.21921 0 + 0.0725431 -1.21921 0 + 0.506074 -1.21921 0 + 0.251779 -0.220206 0 + 0.326839 -0.220206 0 + 0.0725431 -0.220206 0 + 0.506074 -0.220206 0 + 0.323181 -0.753007 0 + 0.255437 -0.753007 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.323181 -0.686406 0 + 0.323181 -0.753007 0 + 0.323181 -0.753007 0 + 0.323181 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.753007 0 + 0.323181 -0.753007 0 + -0.00251664 -1.21921 0 + -0.00251664 -0.220206 0 + -0.00251664 -1.21921 0 + 0.251779 -1.70471 0 + 0.326839 -1.70471 0 + 0.0725431 -1.70471 0 + 0.506074 -1.70471 0 + 0.251779 -0.705713 0 + 0.326839 -0.705713 0 + 0.0725431 -0.705713 0 + 0.506074 -0.705713 0 + 0.323181 -1.23851 0 + 0.255437 -1.23851 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.323181 -1.17191 0 + 0.323181 -1.23851 0 + 0.323181 -1.23851 0 + 0.323181 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.23851 0 + 0.323181 -1.23851 0 + -0.00251664 -1.70471 0 + -0.00251664 -0.705713 0 + -0.00251664 -1.70471 0 + 0.249099 -0.975342 0 + 0.324159 -0.975342 0 + 0.0698632 -0.975342 0 + 0.503394 -0.975342 0 + 0.249099 0.0236625 0 + 0.324159 0.0236625 0 + 0.0698632 0.0236625 0 + 0.503394 0.0236625 0 + 0.320501 -0.509138 0 + 0.252757 -0.509138 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.320501 -0.442538 0 + 0.320501 -0.509138 0 + 0.320501 -0.509138 0 + 0.320501 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.509138 0 + 0.320501 -0.509138 0 + -0.00519651 -0.975342 0 + -0.00519651 0.0236625 0 + -0.00519651 -0.975342 0 + 0.249099 -1.46084 0 + 0.324159 -1.46084 0 + 0.0698632 -1.46084 0 + 0.503394 -1.46084 0 + 0.249099 -0.461844 0 + 0.324159 -0.461844 0 + 0.0698632 -0.461844 0 + 0.503394 -0.461844 0 + 0.320501 -0.994642 0 + 0.252757 -0.994642 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.320501 -0.928042 0 + 0.320501 -0.994642 0 + 0.320501 -0.994642 0 + 0.320501 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.994642 0 + 0.320501 -0.994642 0 + -0.00519651 -1.46084 0 + -0.00519651 -0.461844 0 + -0.00519651 -1.46084 0 +endnode +#Tile trimesh node +node trimesh Mesh01 + parent tin01_d09_02 + position 3.4 -4.88 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -31.0 -1.0 40.5 + bitmap tin01_furnish2 + verts 20 + 0.35 -0.12 1.49 + 0.35 0.1 1.49 + 0.35 0.1 -0.68 + 0.35 -0.12 -0.68 + 0.0 0.1 1.16 + 0.0 -0.12 1.16 + 0.0 -0.12 0.02 + 0.0 0.1 0.02 + 0.0 0.1 -0.68 + -0.97 0.1 0.81 + -0.44 -0.12 0.27 + -0.97 -0.12 0.81 + 0.0 -0.12 -0.68 + -0.44 0.1 0.27 + -0.22 0.1 0.51 + -0.22 -0.12 0.51 + -0.97 0.1 0.81 + -0.76 0.1 1.05 + -0.76 -0.12 1.05 + -0.97 -0.12 0.81 + faces 20 + 1 0 2 1 1 0 2 4 + 2 0 3 1 2 0 3 4 + 5 4 6 1 5 4 6 3 + 7 6 4 1 7 6 4 3 + 11 9 10 1 25 24 26 3 + 8 7 2 2 29 28 30 6 + 1 2 4 2 31 30 32 6 + 4 2 7 2 32 30 28 6 + 8 13 7 8 33 35 45 5 + 14 7 13 8 36 45 35 5 + 14 13 17 8 36 35 40 5 + 16 17 13 8 39 40 35 5 + 6 7 15 16 46 45 37 4 + 14 15 7 16 36 37 45 4 + 15 14 18 16 37 36 41 4 + 17 18 14 16 40 41 36 4 + 8 12 13 64 33 34 35 3 + 10 13 12 64 38 35 34 3 + 13 10 16 64 35 38 39 3 + 19 16 10 64 42 39 38 3 + tverts 47 + 0.408666 0.891416 0 + 0.346688 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.219389 1.36765 0 + 0.285126 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + 0.46889 1.46063 0 + 0.540743 1.39726 0 + 0.618333 1.52891 0 + 0.829444 1.52891 0 + 0.36085 -0.460635 0 + 0.426587 -0.460635 0 + 0.426587 -0.528906 0 + 0.36085 -0.528906 0 + 0.30483 1.29827 0 + 0.377444 1.23509 0 + 0.36085 -0.298269 0 + 0.426587 -0.298269 0 + 0.219389 1.0989 0 + 0.285126 1.0989 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 + 0.414477 0.4225 0 + 0.476458 0.4225 0 + 0.476458 0.206945 0 + 0.414477 0.206945 0 + 0.328438 0.836212 0 + 0.328438 0.625102 0 + 0.434495 0.624996 0 + 0.434495 1.28399 0 + 0.328438 1.18256 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.170894 0.6665 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh02 + parent tin01_d09_02 + position -3.41 -4.88 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 32.0 -1.0 39.5 + bitmap tin01_furnish2 + verts 18 + -0.34 0.1 1.48 + -0.34 -0.12 1.48 + -0.34 0.1 -0.69 + -0.34 -0.12 -0.69 + 0.01 -0.12 1.15 + 0.01 0.1 1.15 + 0.01 -0.12 0.01 + 0.01 0.1 0.01 + 0.01 0.1 -0.69 + 0.01 -0.12 -0.69 + 0.23 -0.12 0.5 + 0.23 0.1 0.5 + 0.45 0.1 0.26 + 0.45 -0.12 0.26 + 0.77 -0.12 1.04 + 0.77 0.1 1.04 + 0.98 0.1 0.8 + 0.98 -0.12 0.8 + faces 19 + 1 0 2 1 1 0 2 4 + 1 2 3 1 1 2 3 4 + 5 4 6 1 5 4 6 3 + 6 7 5 1 6 7 5 3 + 2 0 8 2 9 8 10 6 + 5 7 0 2 12 11 8 6 + 7 8 0 2 11 10 8 6 + 6 10 7 16 86 57 87 4 + 11 7 10 16 58 87 57 4 + 11 10 15 16 58 57 64 4 + 14 15 10 16 73 64 57 4 + 8 7 12 32 74 88 59 6 + 11 12 7 32 67 59 88 6 + 12 11 16 32 59 68 65 6 + 15 16 11 32 75 65 68 6 + 9 8 13 64 50 51 60 3 + 12 13 8 64 59 60 51 3 + 13 12 17 64 60 59 66 3 + 16 17 12 64 65 66 59 3 + tverts 89 + 0.346688 0.891416 0 + 0.408666 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.285126 1.36765 0 + 0.219389 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + -0.696282 1.23919 0 + -0.696282 0.617953 0 + -0.596281 0.617953 0 + -0.596281 0.817 0 + -0.596281 1.14356 0 + 0.225624 0.266174 0 + 0.252833 0.305544 0 + 0.252357 0.150473 0 + 0.226784 -0.0348742 0 + 0.191477 0.305544 0 + 0.191001 0.150473 0 + 0.204708 0.471327 0 + 0.273749 0.510697 0 + 0.212393 0.510697 0 + 0.286295 0.267326 0 + 0.28814 -0.0348742 0 + 0.266064 0.471327 0 + 0.21826 0.266174 0 + 0.137861 0.305544 0 + 0.136086 0.150473 0 + 0.136086 0.150473 0 + 0.213931 -0.0348742 0 + 0.21826 0.266174 0 + 0.252833 0.305544 0 + 0.191477 0.305544 0 + 0.252357 0.150473 0 + 0.191477 0.305544 0 + 0.296319 0.471327 0 + 0.215919 0.510697 0 + 0.137861 0.305544 0 + 0.137861 0.305544 0 + 0.21826 0.266174 0 + 0.296319 0.471327 0 + 0.212393 0.510697 0 + 0.252833 0.305544 0 + 0.286295 0.267326 0 + 0.225624 0.266174 0 + 0.28814 -0.0348742 0 + 0.225624 0.266174 0 + 0.204708 0.471327 0 + 0.286295 0.267326 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.0952516 0.000499517 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.496536 0.3335 0 + 0.0952516 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + -0.0034642 0.3335 0 + -0.0034642 0.3335 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + 0.420894 0.6665 0 + 0.0876934 0.0625172 0 + -0.00129734 0.669749 0 + 0.345252 0.777547 0 + -0.00282295 0.777409 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 + 0.496536 0.192615 0 + -0.0034642 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh03 + parent tin01_d09_02 + position 1.65 -4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 22.5 -1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + -1.65 0.1 0.19 + -1.65 0.1 -0.14 + 2.1 0.1 0.19 + 1.75 0.1 -0.14 + 0.57 0.1 -0.14 + -0.25 0.1 -0.14 + 1.75 -0.12 -0.14 + 0.57 -0.12 -0.14 + 2.1 -0.12 0.19 + -1.65 -0.12 0.19 + -1.65 -0.12 -0.14 + -0.25 -0.12 -0.14 + 0.78 0.1 -0.49 + 0.99 0.1 -0.25 + 0.99 -0.12 -0.25 + 0.78 -0.12 -0.49 + faces 16 + 1 0 2 1 1 0 2 3 + 2 3 4 1 2 3 4 3 + 2 4 5 1 2 4 5 3 + 2 5 1 1 2 5 1 3 + 3 6 4 2 21 28 29 3 + 7 4 6 2 23 22 20 3 + 8 2 9 2 7 6 8 3 + 0 9 2 2 9 8 6 3 + 10 1 11 2 25 30 31 3 + 5 11 1 2 27 26 24 3 + 5 4 12 8 10 15 12 5 + 13 12 4 8 13 12 15 5 + 7 14 4 16 19 17 18 4 + 13 4 14 16 16 18 17 4 + 12 15 5 64 12 14 10 3 + 11 5 15 64 11 10 14 3 + tverts 32 + 0.496366 -0.196817 0 + 0.384796 -0.196817 0 + 0.496367 1.05318 0 + 0.384796 0.936516 0 + 0.384796 0.544462 0 + 0.384796 0.268566 0 + 0.426587 -0.634963 0 + 0.36085 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.170894 0.6665 0 + 0.345252 0.777547 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.326259 1.00025 0 + 0.261617 1.00025 0 + 0.261617 0.653536 0 + 0.326259 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.00124749 0 + 0.326259 0.412601 0 + 0.261617 0.412601 0 + 0.326259 1.00025 0 + 0.261617 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.412601 0 +endnode +#Tile trimesh node +node trimesh Mesh04 + parent tin01_d09_02 + position -1.55 -4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -32.5 -1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + 1.55 0.1 -0.14 + 1.55 0.1 0.19 + -2.2 0.1 0.19 + -1.85 0.1 -0.14 + -0.67 0.1 -0.14 + 0.15 0.1 -0.14 + -1.85 -0.12 -0.14 + -0.67 -0.12 -0.14 + -2.2 -0.12 0.19 + 1.55 -0.12 0.19 + 1.55 -0.12 -0.14 + 0.15 -0.12 -0.14 + -1.09 -0.12 -0.25 + -1.09 0.1 -0.25 + -0.88 0.1 -0.49 + -0.88 -0.12 -0.49 + faces 16 + 1 0 2 1 1 0 2 3 + 3 2 4 1 3 2 4 3 + 4 2 5 1 4 2 5 3 + 5 2 0 1 5 2 0 3 + 6 3 4 2 32 24 33 3 + 4 7 6 2 26 27 25 3 + 2 8 9 2 7 6 8 3 + 9 1 2 2 8 9 7 3 + 0 10 11 2 34 28 35 3 + 11 5 0 2 30 31 29 3 + 14 13 5 32 16 15 14 6 + 15 14 11 64 13 12 10 3 + 5 11 14 64 11 10 12 3 + 5 13 4 0 17 15 18 1 + 13 12 4 0 21 20 23 1 + 4 12 7 0 23 19 22 1 + tverts 36 + 0.338345 1.40811 0 + 0.449916 1.40811 0 + 0.449916 0.158114 0 + 0.338345 0.274781 0 + 0.338345 0.666835 0 + 0.338345 0.942731 0 + 0.36085 -0.634963 0 + 0.426587 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + -0.00282295 0.777409 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.219023 0.00190346 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.280636 0.349166 0 + 0.274944 1.00143 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 + 0.213895 0.589529 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 +endnode +#Tile trimesh node +node trimesh pillprt01 + parent tin01_d09_02 + position -4.73 -3.37 4.26 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -7.5 -0.5 -65.5 + bitmap tin01_door2 + verts 13 + 0.12 0.37 -0.55 + 0.12 -0.38 -0.55 + -0.27 0.37 -0.55 + 0.12 -0.38 -1.26 + 0.12 0.37 -1.26 + -0.27 0.37 -1.26 + -0.27 0.37 -0.05 + -0.27 -0.38 -0.05 + -0.17 0.37 -0.36 + -0.17 -0.38 -0.36 + -0.17 0.37 -0.05 + -0.17 -0.38 -0.05 + -0.27 0.37 -0.36 + faces 14 + 0 1 3 1 1 0 2 5 + 3 4 0 1 2 3 1 5 + 0 4 5 2 8 7 9 3 + 5 2 0 2 9 10 8 3 + 0 2 8 0 62 61 63 1 + 8 2 12 0 64 43 65 1 + 10 8 6 0 67 66 68 1 + 0 8 1 0 41 69 70 1 + 1 8 9 0 42 71 72 1 + 9 8 11 0 47 73 74 1 + 11 8 10 0 76 75 77 1 + 11 10 7 0 49 78 79 1 + 7 10 6 0 45 48 80 1 + 8 12 6 0 46 50 44 1 + tverts 101 + 0.39879 0.35 0 + 0.047924 0.35 0 + 0.39879 0.174359 0 + 0.047924 0.174109 0 + 0.0692728 0.653515 0 + 0.265279 0.653515 0 + 0.0692729 1.003 0 + 0.395638 0.174409 0 + 0.395638 0.35 0 + 0.215041 0.174409 0 + 0.215041 0.35 0 + 0.12013 0.470888 0 + 0.000249729 0.504188 0 + 0.18673 0.597428 0 + 0.12013 0.597428 0 + 0.000249773 0.697328 0 + 0.12013 0.797228 0 + 0.477454 0.504188 0 + 0.477454 0.597428 0 + 0.477454 0.697328 0 + 0.477454 0.763928 0 + 0.12013 0.470888 0 + 0.37987 0.470888 0 + 0.18673 0.597428 0 + 0.18673 0.597428 0 + 0.12013 0.597428 0 + 0.18673 0.597428 0 + 0.18673 0.797228 0 + 0.12013 0.797228 0 + 0.000249773 0.697328 0 + 0.477454 0.504188 0 + 0.000249773 0.697328 0 + 0.477454 0.697328 0 + 0.000249773 0.597428 0 + 0.477454 0.797228 0 + 0.000249773 0.597428 0 + 0.477454 0.797228 0 + 0.000249773 0.797228 0 + 0.000249773 0.697328 0 + 0.477454 0.763928 0 + 0.000249788 0.763928 0 + 0.0373349 0.154797 0 + 0.38537 0.154797 0 + 0.211353 0.219764 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.257757 0.307933 0 + 0.38537 0.307933 0 + 0.0373349 0.289371 0 + 0.38537 0.289371 0 + 0.211353 0.307933 0 + 0.037335 0.516754 0 + 0.38537 0.516754 0 + 0.211353 0.219764 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.164948 0.307933 0 + 0.0373349 0.307933 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.211353 0.307933 0 + 0.211353 0.219764 0 + 0.392331 0.219764 0 + 0.257757 0.307933 0 + 0.257757 0.307933 0 + 0.211353 0.307933 0 + 0.257757 0.307933 0 + 0.257757 0.451787 0 + 0.211353 0.451787 0 + 0.0373349 0.289371 0 + 0.38537 0.154797 0 + 0.0373349 0.289371 0 + 0.38537 0.289371 0 + 0.0373349 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.451787 0 + 0.0373349 0.289371 0 + 0.38537 0.335775 0 + 0.037335 0.335775 0 + 0.211353 0.219764 0 + 0.164948 0.307933 0 + 0.0303742 0.219764 0 + 0.211353 0.307933 0 + 0.164948 0.307933 0 + 0.164948 0.307933 0 + 0.211353 0.451787 0 + 0.164948 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.516754 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.38537 0.307933 0 + 0.0373349 0.451787 0 + 0.38537 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.335775 0 + 0.037335 0.335775 0 +endnode +#Tile trimesh node +node trimesh pillprt02 + parent tin01_d09_02 + position 3.37 4.73 4.26 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.5 7.5 -65.5 + bitmap tin01_door2 + verts 15 + 0.38 -0.12 -0.55 + -0.37 -0.12 -0.55 + 0.38 0.27 -0.55 + -0.37 0.27 -0.55 + -0.37 -0.12 -1.26 + 0.38 -0.12 -1.26 + 0.38 0.27 -1.26 + -0.37 0.27 -1.26 + -0.37 0.27 -0.05 + 0.38 0.27 -0.05 + -0.37 0.17 -0.36 + 0.38 0.17 -0.36 + -0.37 0.17 -0.05 + 0.38 0.17 -0.05 + -0.37 0.27 -0.36 + faces 16 + 0 1 4 1 1 0 2 5 + 4 5 0 1 2 3 1 5 + 5 6 0 2 5 4 6 1 + 2 0 6 2 7 6 4 1 + 3 7 4 2 9 8 10 3 + 4 1 3 2 10 11 9 3 + 10 3 1 0 23 22 24 1 + 14 3 10 0 25 14 26 1 + 8 10 12 0 28 27 29 1 + 0 10 1 0 31 30 12 1 + 11 10 0 0 33 32 13 1 + 13 10 11 0 35 34 18 1 + 12 10 13 0 37 36 38 1 + 9 12 13 0 40 39 20 1 + 8 12 9 0 41 19 16 1 + 8 14 10 0 15 21 17 1 + tverts 42 + 0.047924 0.35 0 + 0.39879 0.35 0 + 0.047924 0.174109 0 + 0.39879 0.174359 0 + 0.265279 0.653515 0 + 0.0692728 0.653515 0 + 0.0692729 1.003 0 + 0.265279 1.003 0 + 0.215041 0.174409 0 + 0.215041 0.35 0 + 0.395638 0.174409 0 + 0.395638 0.35 0 + 0.037335 0.516754 0 + 0.38537 0.516754 0 + 0.211353 0.219764 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.164948 0.307933 0 + 0.0373349 0.307933 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.211353 0.307933 0 + 0.211353 0.219764 0 + 0.164948 0.307933 0 + 0.0303742 0.219764 0 + 0.211353 0.307933 0 + 0.164948 0.307933 0 + 0.164948 0.307933 0 + 0.211353 0.451787 0 + 0.164948 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.516754 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.38537 0.307933 0 + 0.0373349 0.451787 0 + 0.38537 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.335775 0 + 0.037335 0.335775 0 +endnode +#Tile trimesh node +node trimesh roof01 + parent tin01_d09_02 + position -4.5 0.0 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 325.0 0.0 183.0 + bitmap tin01_plank + verts 11 + 7.0 5.0 1.83 + 7.0 2.5 1.83 + 2.0 5.0 1.83 + -0.5 2.5 1.83 + 2.0 2.5 1.83 + -0.5 -2.5 1.83 + 2.0 -5.0 1.83 + 2.0 -2.5 1.83 + 7.0 -5.0 1.83 + 7.0 -2.5 1.83 + -0.5 5.0 1.83 + faces 10 + 5 3 7 0 5 3 7 1 + 7 3 4 0 7 3 4 1 + 7 4 9 0 7 4 9 1 + 6 7 8 0 6 7 8 1 + 8 7 9 0 8 7 9 1 + 9 4 1 0 9 4 1 1 + 1 4 0 0 1 4 0 1 + 0 4 2 0 0 4 2 1 + 4 3 2 0 4 3 2 1 + 2 3 10 0 2 3 10 1 + tverts 11 + 1.999 1.999 0 + 1.999 1.4995 0 + 0.667 1.999 0 + 0.000999391 1.4995 0 + 0.667 1.4995 0 + 0.000999093 0.5005 0 + 0.666999 0.000999212 0 + 0.667 0.5005 0 + 1.999 0.000998974 0 + 1.999 0.500499 0 + 0.00099957 1.999 0 +endnode +#Tile trimesh node +node trimesh roofrim01 + parent tin01_d09_02 + position -4.5 0.0 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 387.5 0.0 91.5 + bitmap tin01_floor + verts 12 + -0.5 -2.5 1.83 + -0.5 -3.75 0.0 + 0.75 -5.0 0.0 + 0.75 -3.75 0.0 + 2.0 -5.0 1.83 + 2.0 -2.5 1.83 + 7.0 -5.0 1.83 + 8.25 -5.0 0.0 + 8.25 5.0 0.0 + 7.0 5.0 1.83 + 7.0 2.5 1.83 + 7.0 -2.5 1.83 + faces 8 + 3 1 5 0 13 12 14 1 + 5 1 0 0 15 1 0 1 + 2 3 4 0 2 16 17 1 + 4 3 5 0 4 3 5 1 + 8 7 9 0 8 18 19 1 + 11 7 6 0 21 20 6 1 + 9 7 10 0 9 22 23 1 + 10 7 11 0 10 7 11 1 + tverts 24 + 1.0 0.125981 0 + 0.5 0.125981 0 + 0.5 1.99911 0 + 0.5 1.74936 0 + 1.0 1.99911 0 + 1.0 1.49961 0 + 1.0 0.00110595 0 + 0.5 0.00110603 0 + 0.5 1.99911 0 + 1.0 1.99911 0 + 1.0 1.49961 0 + 1.0 0.500606 0 + 0.5 0.125981 0 + 0.5 0.375731 0 + 1.0 0.625481 0 + 1.0 0.625481 0 + 0.5 1.74936 0 + 1.0 1.99911 0 + 0.5 0.00110603 0 + 1.0 1.99911 0 + 0.5 0.00110603 0 + 1.0 0.500606 0 + 0.5 0.00110603 0 + 1.0 1.49961 0 +endnode +#Tile trimesh node +node trimesh topwall01 + parent tin01_d09_02 + position 4.37 0.21 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -462.0 -21.0 408.5 + bitmap tin01_wall2 + verts 27 + -0.62 -0.21 3.0 + 0.13 -0.21 3.0 + -0.62 2.29 3.0 + 0.13 2.29 3.0 + -0.62 4.4 3.0 + 0.13 4.79 3.0 + -0.62 4.79 3.0 + -0.62 -0.21 5.17 + 0.13 -0.21 5.17 + -0.62 2.29 5.17 + 0.13 2.29 5.17 + -0.62 4.4 5.17 + 0.13 4.79 5.17 + -0.62 4.79 5.17 + -8.12 -3.96 3.0 + -8.12 -5.21 3.0 + -9.37 -3.96 3.0 + -8.12 -3.96 5.17 + -8.12 -5.21 5.17 + -9.37 -3.96 5.17 + -9.37 -5.21 5.17 + -8.12 -5.21 3.0 + -9.37 -3.96 3.0 + -9.37 -5.21 3.0 + -8.12 -5.21 5.17 + -9.37 -3.96 5.17 + -9.37 -5.21 5.17 + faces 25 + 10 9 8 2 9 8 7 1 + 7 8 9 2 4 7 8 1 + 11 9 10 2 12 10 11 1 + 10 12 13 2 11 13 14 1 + 13 11 10 2 14 12 11 1 + 1 3 8 0 15 49 50 1 + 10 8 3 0 51 18 52 1 + 2 0 9 0 54 53 55 1 + 7 9 0 0 21 56 20 1 + 4 2 11 0 58 57 59 1 + 9 11 2 0 26 60 25 1 + 3 5 10 0 23 61 62 1 + 12 10 5 0 63 24 64 1 + 6 4 13 0 31 69 70 1 + 11 13 4 0 28 32 27 1 + 18 17 20 4 98 97 99 1 + 19 20 17 4 101 100 102 1 + 15 14 18 8 104 103 105 5 + 17 18 14 8 107 106 108 5 + 14 16 17 64 81 117 118 3 + 19 17 16 64 87 85 83 3 + 23 21 26 16 152 151 153 4 + 24 26 21 16 149 154 147 4 + 22 23 25 32 156 155 157 6 + 26 25 23 32 150 158 148 6 + tverts 159 + 0.812501 0.642952 0 + 0.812501 0.830915 0 + 0.406047 0.669332 0 + 0.406047 0.806513 0 + 0.187501 0.642952 0 + 0.905547 0.806513 0 + 0.905547 0.669332 0 + 0.187501 0.830915 0 + -0.4375 0.642952 0 + -0.4375 0.830915 0 + 0.1875 0.774954 0 + 0.1875 0.962454 0 + 0.714498 0.774954 0 + 0.8125 0.962454 0 + 0.8125 0.774954 0 + 0.0 0.0 0 + -0.4995 0.0 0 + -0.4995 0.5 0 + 0.0 0.5 0 + 0.499501 0.0 0 + 0.0 0.0 0 + 0.0 0.5 0 + 0.499501 0.5 0 + 0.499501 0.0 0 + 0.499501 0.5 0 + -0.4995 0.0 0 + -0.4995 0.5 0 + -0.92108 0.0 0 + -0.92108 0.5 0 + -0.0749201 0.0 0 + -0.0749201 0.5 0 + -0.999 0.0 0 + -0.999 0.5 0 + 0.074925 0.0 0 + 0.074925 0.5 0 + 0.999001 0.0 0 + 0.999001 0.5 0 + 0.0 0.0 0 + -0.4995 0.0 0 + -0.4995 0.5 0 + -0.4995 0.5 0 + 0.0 0.5 0 + 0.0 0.0 0 + 0.499501 0.0 0 + 0.0 0.0 0 + 0.0 0.5 0 + 0.0 0.5 0 + 0.499501 0.5 0 + 0.499501 0.0 0 + 0.499501 0.0 0 + 0.0 0.5 0 + 0.499501 0.5 0 + 0.499501 0.0 0 + 0.0 0.0 0 + -0.4995 0.0 0 + -0.4995 0.5 0 + -0.4995 0.5 0 + -0.4995 0.0 0 + -0.92108 0.0 0 + -0.92108 0.5 0 + -0.92108 0.5 0 + 0.999001 0.0 0 + 0.499501 0.5 0 + 0.999001 0.5 0 + 0.999001 0.0 0 + 0.074925 0.0 0 + -0.0749201 0.5 0 + 0.074925 0.5 0 + 0.074925 0.0 0 + -0.92108 0.0 0 + -0.999 0.5 0 + -0.4995 0.0 0 + -0.999 0.0 0 + -0.999 0.5 0 + -0.999 0.5 0 + 0.074925 0.0 0 + -0.0749201 0.0 0 + -0.0749201 0.5 0 + -0.0749201 0.5 0 + 0.999001 0.0 0 + 0.499501 0.5 0 + 0.749251 0.0 0 + 0.311715 0.0 0 + 0.999001 0.0 0 + 0.999001 0.0 0 + 0.749251 0.5 0 + 0.311715 0.5 0 + 0.999001 0.5 0 + 0.999001 0.5 0 + 0.061965 0.0 0 + 0.999001 0.0 0 + 0.311715 0.0 0 + 0.999001 0.0 0 + 0.061965 0.5 0 + 0.999001 0.5 0 + 0.311715 0.5 0 + 0.999001 0.5 0 + 0.906321 0.688285 0 + 0.656571 0.688285 0 + 0.656571 0.938035 0 + 0.656571 0.938035 0 + 0.906321 0.938035 0 + 0.906321 0.688285 0 + 0.311714 0.0 0 + 0.061964 0.0 0 + 0.061964 0.5 0 + 0.061964 0.5 0 + 0.311714 0.5 0 + 0.311714 0.0 0 + 0.311715 0.0 0 + 0.061965 0.0 0 + 0.061965 0.5 0 + 0.061965 0.5 0 + 0.999001 0.0 0 + 0.749251 0.0 0 + 0.749251 0.5 0 + 0.749251 0.5 0 + 0.999001 0.0 0 + 0.749251 0.5 0 + 0.743096 0.677219 0 + 0.493346 0.677219 0 + 0.493346 0.926969 0 + 0.493346 0.926969 0 + 0.743096 0.926969 0 + 0.743096 0.677219 0 + 0.311715 0.0 0 + 0.061965 0.0 0 + 0.061965 0.5 0 + 0.061965 0.5 0 + 0.311715 0.5 0 + 0.311715 0.0 0 + 0.999001 0.0 0 + 0.749251 0.0 0 + 0.749251 0.5 0 + 0.749251 0.5 0 + 0.999001 0.0 0 + 0.74925 0.0 0 + 0.74925 0.5 0 + 0.74925 0.5 0 + 0.311715 0.0 0 + 0.061965 0.5 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 0.500499 0.5 0 + 1.4995 0.0 0 + 0.688285 0.0 0 + 0.000998914 0.0 0 + 0.688285 0.5 0 + 0.000998914 0.5 0 + 0.688285 0.0 0 + 0.938035 0.0 0 + 0.938035 0.5 0 + 0.938035 0.5 0 + 0.000998914 0.0 0 + 0.250749 0.0 0 + 0.250749 0.5 0 + 0.250749 0.5 0 +endnode +#Tile trimesh node +node trimesh topwall02 + parent tin01_d09_02 + position 4.37 0.21 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -24.5 -271.0 408.5 + bitmap tin01_wallbrick + verts 12 + -0.62 -2.71 3.0 + -0.62 -0.21 3.0 + 0.13 -0.21 3.0 + 0.13 -2.71 3.0 + -0.62 -5.21 3.0 + 0.13 -5.21 3.0 + -0.62 -2.71 5.17 + -0.62 -0.21 5.17 + 0.13 -0.21 5.17 + 0.13 -2.71 5.17 + -0.62 -5.21 5.17 + 0.13 -5.21 5.17 + faces 12 + 8 7 9 2 7 4 1 1 + 6 9 7 2 0 1 4 1 + 9 6 11 0 3 2 5 1 + 11 6 10 0 5 2 6 1 + 3 2 9 0 15 14 16 1 + 8 9 2 0 18 17 19 1 + 1 0 7 0 21 20 22 1 + 6 7 0 0 24 23 25 1 + 5 3 11 0 27 26 28 1 + 9 11 3 0 9 29 8 1 + 0 4 6 0 10 30 31 1 + 10 6 4 0 13 11 12 1 + tverts 32 + 0.754127 0.234331 0 + 0.754127 0.422294 0 + 0.347673 0.260711 0 + 0.347673 0.397892 0 + 0.129127 0.234331 0 + 0.847173 0.397892 0 + 0.847173 0.260711 0 + 0.129127 0.422294 0 + -0.4995 0.09 0 + -0.4995 0.99 0 + 0.499501 0.09 0 + 0.499501 0.99 0 + 0.999001 0.09 0 + 0.999001 0.99 0 + 0.0 0.09 0 + -0.4995 0.09 0 + -0.4995 0.99 0 + -0.4995 0.99 0 + 0.0 0.99 0 + 0.0 0.09 0 + 0.499501 0.09 0 + 0.0 0.09 0 + 0.0 0.99 0 + 0.0 0.99 0 + 0.499501 0.99 0 + 0.499501 0.09 0 + -0.4995 0.09 0 + -0.999 0.09 0 + -0.999 0.99 0 + -0.999 0.99 0 + 0.999001 0.09 0 + 0.499501 0.99 0 +endnode +endmodelgeom tin01_d09_02 +donemodel tin01_d09_02 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d11_01.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d11_01.mdl new file mode 100644 index 0000000..454c313 --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d11_01.mdl @@ -0,0 +1,1947 @@ +# Exported from NWmax 0.8 b60 at 12.10.2012 21:49:42 +# mdl file +# +#NWmax MODEL ASCII +# model: tin01_d11_01 +#local file: Unknown +filedependancy Unknown +newmodel tin01_d11_01 +setsupermodel tin01_d11_01 NULL +classification Tile +#NWmax GEOM ASCII +beginmodelgeom tin01_d11_01 +node dummy tin01_d11_01 + parent NULL +endnode +#Tile trimesh node +node trimesh Plane333 + parent tin01_d11_01 + position 0.0 0.0 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.603922 0.584314 0.592157 + diffuse 0.603922 0.584314 0.592157 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 0.0 0.0 + bitmap tin01_shpflr1 + verts 25 + -5.0 -2.5 0.0 + -5.0 -5.0 0.0 + -2.5 -2.5 0.0 + -2.5 -5.0 0.0 + 0.0 -2.5 0.0 + 0.0 -5.0 0.0 + 2.5 -2.5 0.0 + 2.5 -5.0 0.0 + 5.0 -2.5 0.0 + 5.0 -5.0 0.0 + -5.0 0.0 0.0 + -2.5 0.0 0.0 + 0.0 0.0 0.0 + 2.5 0.0 0.0 + 5.0 0.0 0.0 + -5.0 2.5 0.0 + -2.5 2.5 0.0 + 0.0 2.5 0.0 + 2.5 2.5 0.0 + 5.0 2.5 0.0 + -5.0 5.0 0.0 + -2.5 5.0 0.0 + 0.0 5.0 0.0 + 2.5 5.0 0.0 + 5.0 5.0 0.0 + faces 32 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 2 3 4 1 2 3 4 1 + 5 4 3 1 5 4 3 1 + 4 5 6 1 4 5 6 1 + 7 6 5 1 7 6 5 1 + 6 7 8 1 6 7 8 1 + 9 8 7 1 9 8 7 1 + 10 0 11 1 10 0 11 1 + 2 11 0 1 2 11 0 1 + 11 2 12 1 11 2 12 1 + 4 12 2 1 4 12 2 1 + 12 4 13 1 12 4 13 1 + 6 13 4 1 6 13 4 1 + 13 6 14 1 13 6 14 1 + 8 14 6 1 8 14 6 1 + 15 10 16 1 15 10 16 1 + 11 16 10 1 11 16 10 1 + 16 11 17 1 16 11 17 1 + 12 17 11 1 12 17 11 1 + 17 12 18 1 17 12 18 1 + 13 18 12 1 13 18 12 1 + 18 13 19 1 18 13 19 1 + 14 19 13 1 14 19 13 1 + 20 15 21 1 20 15 21 1 + 16 21 15 1 16 21 15 1 + 21 16 22 1 21 16 22 1 + 17 22 16 1 17 22 16 1 + 22 17 23 1 22 17 23 1 + 18 23 17 1 18 23 17 1 + 23 18 24 1 23 18 24 1 + 19 24 18 1 19 24 18 1 + tverts 25 + 12.0 -21.5 0 + 12.0 -22.0 0 + 12.5 -21.5 0 + 12.5 -22.0 0 + 13.0 -21.5 0 + 13.0 -22.0 0 + 13.5 -21.5 0 + 13.5 -22.0 0 + 14.0 -21.5 0 + 14.0 -22.0 0 + 12.0 -21.0 0 + 12.5 -21.0 0 + 13.0 -21.0 0 + 13.5 -21.0 0 + 14.0 -21.0 0 + 12.0 -20.5 0 + 12.5 -20.5 0 + 13.0 -20.5 0 + 13.5 -20.5 0 + 14.0 -20.5 0 + 12.0 -20.0 0 + 12.5 -20.0 0 + 13.0 -20.0 0 + 13.5 -20.0 0 + 14.0 -20.0 0 +endnode +node aabb wok + parent tin01_d11_01 + position 0.0 0.0 0.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + bitmap NULL + verts 4 + 5.0 -5.0 0.0 + 5.0 5.0 0.0 + -5.0 -5.0 0.0 + -5.0 5.0 0.0 + faces 2 + 0 1 2 1 0 1 2 4 + 3 2 1 1 3 4 5 4 + tverts 6 + -31.1667 -2.83333 0 + -31.1667 -1.99999 0 + -32.0 -2.83333 0 + -34.5 0.500008 0 + -34.5 -0.333325 0 + -33.6667 0.500008 0 + aabb -5.0 -5.0 0.0 5.0 5.0 0.0 -1 + -5.0 -5.0 0.0 5.0 5.0 0.0 1 + -5.0 -5.0 0.0 5.0 5.0 0.0 0 +endnode +node light tin01_d11_01ml1 + parent tin01_d11_01 + position 0.0 0.0 5.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 14.0 + multiplier 1.0 + color 0.0 0.0 0.0 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +#Tile trimesh node +node trimesh construction01 + parent tin01_d11_01 + position -4.0 -0.2 3.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.87451 0.556863 0.337255 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 400.0 20.0 292.0 + bitmap tin01_furnish2 + verts 272 + 8.92 0.1 1.94 + 8.92 0.3 1.94 + 6.63 0.1 1.86 + 6.63 0.3 1.86 + 4.45 0.15 1.92 + 4.45 0.35 1.92 + 2.33 0.1 1.82 + 2.33 0.3 1.82 + -0.9 0.1 1.93 + -0.9 0.3 1.93 + 8.9 0.1 2.11 + 8.9 0.3 2.11 + 6.63 0.1 2.06 + 6.63 0.3 2.06 + 4.45 0.15 2.12 + 4.45 0.35 2.12 + 2.33 0.1 2.02 + 2.33 0.3 2.02 + -0.9 0.1 2.11 + -0.9 0.3 2.11 + 3.89 -4.71 1.94 + 4.09 -4.71 1.94 + 3.93 -2.42 1.94 + 4.13 -2.42 1.94 + 3.89 -0.28 1.86 + 4.09 -0.28 1.86 + 3.89 1.87 1.92 + 4.09 1.87 1.92 + 3.87 5.15 1.94 + 4.07 5.15 1.94 + 3.89 -4.7 2.11 + 4.09 -4.7 2.11 + 3.93 -2.42 2.14 + 4.13 -2.42 2.14 + 3.89 -0.28 2.06 + 4.09 -0.28 2.06 + 3.89 1.87 2.12 + 4.09 1.87 2.12 + 3.87 5.15 2.14 + 4.07 5.15 2.14 + 4.1 5.2 3.76 + 3.9 5.2 3.76 + 4.11 1.65 3.74 + 3.91 1.65 3.74 + 4.06 -0.53 3.8 + 3.86 -0.53 3.8 + 4.11 -2.65 3.7 + 3.91 -2.65 3.7 + 4.1 -4.8 3.76 + 3.9 -4.8 3.76 + 4.1 5.2 3.96 + 3.9 5.2 3.96 + 4.11 1.65 3.94 + 3.91 1.65 3.94 + 4.06 -0.53 4.0 + 3.86 -0.53 4.0 + 4.11 -2.65 3.9 + 3.91 -2.65 3.9 + 4.1 -4.8 3.96 + 3.9 -4.8 3.96 + 9.0 0.1 3.76 + 9.0 0.3 3.76 + 6.85 0.05 3.82 + 6.85 0.25 3.82 + 4.7 0.02 3.74 + 4.7 0.22 3.74 + 2.55 0.02 3.8 + 2.55 0.22 3.8 + -1.0 0.1 3.76 + -1.0 0.3 3.76 + 9.0 0.1 3.96 + 9.0 0.3 3.96 + 6.85 0.05 4.02 + 6.85 0.25 4.02 + 4.7 0.02 3.94 + 4.7 0.22 3.94 + 2.55 0.02 4.0 + 2.55 0.22 4.0 + -1.0 0.1 3.96 + -1.0 0.3 3.96 + 6.08 0.14 2.07 + 6.08 0.3 2.07 + 5.92 0.14 2.07 + 5.92 0.3 2.07 + 6.06 0.06 3.82 + 6.06 0.22 3.82 + 5.92 0.06 3.82 + 5.92 0.22 3.82 + 2.09 0.12 2.0 + 2.09 0.28 2.0 + 1.93 0.12 2.0 + 1.93 0.28 2.0 + 2.07 0.06 3.82 + 2.07 0.22 3.82 + 1.93 0.06 3.82 + 1.93 0.22 3.82 + 4.06 2.16 2.04 + 4.06 2.32 2.04 + 3.9 2.16 2.04 + 3.9 2.32 2.04 + 4.06 2.08 3.82 + 4.06 2.24 3.82 + 3.92 2.08 3.82 + 3.92 2.24 3.82 + 4.1 -1.88 2.07 + 4.1 -1.72 2.07 + 3.94 -1.88 2.07 + 3.94 -1.72 2.07 + 4.08 -1.96 3.82 + 4.08 -1.8 3.82 + 3.94 -1.96 3.82 + 3.94 -1.8 3.82 + 9.0 0.1 2.07 + 9.0 0.3 2.07 + 8.92 0.12 2.07 + 8.92 0.28 2.07 + 9.0 0.1 3.72 + 9.0 0.3 3.72 + 8.92 0.12 3.77 + 8.92 0.28 3.77 + -1.0 0.3 2.07 + -1.0 0.1 2.07 + -0.92 0.28 2.07 + -0.92 0.12 2.07 + -1.0 0.3 3.72 + -1.0 0.1 3.72 + -0.92 0.28 3.77 + -0.92 0.12 3.77 + 9.0 -4.8 3.72 + 8.9 -4.7 3.72 + 5.0 -4.8 3.72 + 5.45 -4.71 3.69 + 3.0 -4.8 3.72 + 3.07 -4.7 3.75 + -1.0 -4.8 3.72 + -0.9 -4.7 3.72 + 9.0 -4.8 3.92 + 8.9 -4.7 3.92 + 5.0 -4.8 3.92 + 5.45 -4.71 3.94 + 3.0 -4.8 3.92 + 3.07 -4.7 4.0 + -1.0 -4.8 3.92 + -0.9 -4.7 3.92 + 3.9 -4.8 2.07 + 4.1 -4.8 2.07 + 3.92 -4.72 2.07 + 4.08 -4.72 2.07 + 3.9 -4.8 3.72 + 4.1 -4.8 3.72 + 3.92 -4.72 3.77 + 4.08 -4.72 3.77 + 4.1 5.2 2.07 + 3.9 5.2 2.07 + 4.08 5.12 2.07 + 3.92 5.12 2.07 + 4.1 5.2 3.72 + 3.9 5.2 3.72 + 4.08 5.12 3.77 + 3.92 5.12 3.77 + 9.0 -4.8 1.92 + 8.9 -4.7 1.92 + 5.0 -4.8 1.92 + 5.45 -4.71 1.89 + 3.0 -4.8 1.92 + 3.07 -4.7 1.95 + -1.0 -4.8 1.92 + -0.9 -4.7 1.92 + 9.0 -4.8 2.12 + 8.9 -4.7 2.12 + 5.0 -4.8 2.12 + 5.45 -4.71 2.14 + 3.0 -4.8 2.12 + 3.07 -4.7 2.2 + -1.0 -4.8 2.12 + -0.9 -4.7 2.12 + 9.0 5.2 3.72 + 8.9 5.1 3.72 + 9.0 1.2 3.72 + 8.91 1.65 3.69 + 9.0 -0.8 3.72 + 8.9 -0.73 3.75 + 9.0 -4.8 3.72 + 8.9 -4.7 3.72 + 9.0 5.2 3.92 + 8.9 5.1 3.92 + 9.0 1.2 3.92 + 8.91 1.65 3.94 + 9.0 -0.8 3.92 + 8.9 -0.73 4.0 + 9.0 -4.8 3.92 + 8.9 -4.7 3.92 + 9.0 5.2 1.92 + 8.9 5.1 1.92 + 9.0 1.2 1.92 + 8.91 1.65 1.89 + 9.0 -0.8 1.92 + 8.9 -0.73 1.95 + 9.0 -4.8 1.92 + 8.9 -4.7 1.92 + 9.0 5.2 2.12 + 8.9 5.1 2.12 + 9.0 1.2 2.12 + 8.91 1.65 2.14 + 9.0 -0.8 2.12 + 8.9 -0.73 2.2 + 9.0 -4.8 2.12 + 8.9 -4.7 2.12 + -1.0 5.2 3.72 + -0.9 5.1 3.72 + 3.0 5.2 3.72 + 2.55 5.11 3.69 + 5.0 5.2 3.72 + 4.93 5.1 3.75 + 9.0 5.2 3.72 + 8.9 5.1 3.72 + -1.0 5.2 3.92 + -0.9 5.1 3.92 + 3.0 5.2 3.92 + 2.55 5.11 3.94 + 5.0 5.2 3.92 + 4.93 5.1 4.0 + 9.0 5.2 3.92 + 8.9 5.1 3.92 + -1.0 5.2 1.92 + -0.9 5.1 1.92 + 3.0 5.2 1.92 + 2.55 5.11 1.89 + 5.0 5.2 1.92 + 4.93 5.1 1.95 + 9.0 5.2 1.92 + 8.9 5.1 1.92 + -1.0 5.2 2.12 + -0.9 5.1 2.12 + 3.0 5.2 2.12 + 2.55 5.11 2.14 + 5.0 5.2 2.12 + 4.93 5.1 2.2 + 9.0 5.2 2.12 + 8.9 5.1 2.12 + -1.0 -4.8 3.72 + -0.9 -4.7 3.72 + -1.0 -0.8 3.72 + -0.91 -1.25 3.69 + -1.0 1.2 3.72 + -0.9 1.13 3.75 + -1.0 5.2 3.72 + -0.9 5.1 3.72 + -1.0 -4.8 3.92 + -0.9 -4.7 3.92 + -1.0 -0.8 3.92 + -0.91 -1.25 3.94 + -1.0 1.2 3.92 + -0.9 1.13 4.0 + -1.0 5.2 3.92 + -0.9 5.1 3.92 + -1.0 -4.8 1.92 + -0.9 -4.7 1.92 + -1.0 -0.8 1.92 + -0.91 -1.25 1.89 + -1.0 1.2 1.92 + -0.9 1.13 1.95 + -1.0 5.2 1.92 + -0.9 5.1 1.92 + -1.0 -4.8 2.12 + -0.9 -4.7 2.12 + -1.0 -0.8 2.12 + -0.91 -1.25 2.14 + -1.0 1.2 2.12 + -0.9 1.13 2.2 + -1.0 5.2 2.12 + -0.9 5.1 2.12 + faces 394 + 0 2 3 2 0 2 16 2 + 3 1 0 2 17 18 0 2 + 2 4 5 2 2 4 19 2 + 5 3 2 2 20 21 2 2 + 4 6 7 2 178 180 190 2 + 7 5 4 2 191 192 178 2 + 6 8 9 2 180 182 193 2 + 9 7 6 2 194 195 180 2 + 10 11 13 4 8 9 11 1 + 13 12 10 4 11 10 8 1 + 12 13 15 4 10 11 13 1 + 15 14 12 4 13 12 10 1 + 14 15 17 4 184 185 187 1 + 17 16 14 4 187 186 184 1 + 16 17 19 4 186 187 189 1 + 19 18 16 4 189 188 186 1 + 1 3 13 16 1 3 11 4 + 13 11 1 16 11 9 1 4 + 3 5 15 16 3 5 13 4 + 15 13 3 16 13 11 3 4 + 5 7 17 16 179 181 187 4 + 17 15 5 16 187 185 179 4 + 7 9 19 16 181 183 189 4 + 19 17 7 16 189 187 181 4 + 9 8 18 32 22 6 14 6 + 18 19 9 32 14 15 7 6 + 8 6 16 64 182 180 186 3 + 16 18 8 64 186 188 182 3 + 6 4 14 64 180 178 184 3 + 14 16 6 64 184 186 180 3 + 4 2 12 64 4 2 10 3 + 12 14 4 64 10 12 4 3 + 2 0 10 64 2 0 8 3 + 10 12 2 64 8 10 2 3 + 20 22 23 2 23 25 39 2 + 23 21 20 2 40 41 23 2 + 22 24 25 2 25 27 42 2 + 25 23 22 2 43 44 25 2 + 24 26 27 2 261 263 273 2 + 27 25 24 2 274 275 261 2 + 26 28 29 2 263 265 276 2 + 29 27 26 2 277 278 263 2 + 30 31 33 4 31 32 34 1 + 33 32 30 4 34 33 31 1 + 32 33 35 4 33 34 36 1 + 35 34 32 4 36 35 33 1 + 34 35 37 4 267 268 270 1 + 37 36 34 4 270 269 267 1 + 36 37 39 4 269 270 272 1 + 39 38 36 4 272 271 269 1 + 20 21 31 8 23 45 32 5 + 31 30 20 8 32 31 23 5 + 21 23 33 16 24 26 34 4 + 33 31 21 16 34 32 24 4 + 23 25 35 16 26 28 36 4 + 35 33 23 16 36 34 26 4 + 25 27 37 16 262 264 270 4 + 37 35 25 16 270 268 262 4 + 27 29 39 16 264 266 272 4 + 39 37 27 16 272 270 264 4 + 29 28 38 32 46 29 37 6 + 38 39 29 32 37 38 30 6 + 28 26 36 64 265 263 269 3 + 36 38 28 64 269 271 265 3 + 26 24 34 64 263 261 267 3 + 34 36 26 64 267 269 263 3 + 24 22 32 64 27 25 33 3 + 32 34 24 64 33 35 27 3 + 22 20 30 64 25 23 31 3 + 30 32 22 64 31 33 25 3 + 40 42 43 2 279 281 291 2 + 43 41 40 2 292 293 279 2 + 42 44 45 2 281 283 294 2 + 45 43 42 2 295 296 281 2 + 44 46 47 2 48 50 62 2 + 47 45 44 2 63 64 48 2 + 46 48 49 2 50 52 65 2 + 49 47 46 2 66 67 50 2 + 50 51 53 4 285 286 288 1 + 53 52 50 4 288 287 285 1 + 52 53 55 4 287 288 290 1 + 55 54 52 4 290 289 287 1 + 54 55 57 4 56 57 59 1 + 57 56 54 4 59 58 56 1 + 56 57 59 4 58 59 61 1 + 59 58 56 4 61 60 58 1 + 40 41 51 8 47 68 55 5 + 51 50 40 8 55 54 47 5 + 41 43 53 16 280 282 288 4 + 53 51 41 16 288 286 280 4 + 43 45 55 16 282 284 290 4 + 55 53 43 16 290 288 282 4 + 45 47 57 16 49 51 59 4 + 57 55 45 16 59 57 49 4 + 47 49 59 16 51 53 61 4 + 59 57 47 16 61 59 51 4 + 48 46 56 64 52 50 58 3 + 56 58 48 64 58 60 52 3 + 46 44 54 64 50 48 56 3 + 54 56 46 64 56 58 50 3 + 44 42 52 64 283 281 287 3 + 52 54 44 64 287 289 283 3 + 42 40 50 64 281 279 285 3 + 50 52 42 64 285 287 281 3 + 60 62 63 2 70 72 86 2 + 63 61 60 2 87 88 70 2 + 62 64 65 2 72 74 89 2 + 65 63 62 2 90 91 72 2 + 64 66 67 2 196 198 208 2 + 67 65 64 2 209 210 196 2 + 66 68 69 2 198 200 211 2 + 69 67 66 2 212 213 198 2 + 70 71 73 4 78 79 81 1 + 73 72 70 4 81 80 78 1 + 72 73 75 4 80 81 83 1 + 75 74 72 4 83 82 80 1 + 74 75 77 4 202 203 205 1 + 77 76 74 4 205 204 202 1 + 76 77 79 4 204 205 207 1 + 79 78 76 4 207 206 204 1 + 61 63 73 16 71 73 81 4 + 73 71 61 16 81 79 71 4 + 63 65 75 16 73 75 83 4 + 75 73 63 16 83 81 73 4 + 65 67 77 16 197 199 205 4 + 77 75 65 16 205 203 197 4 + 67 69 79 16 199 201 207 4 + 79 77 67 16 207 205 199 4 + 69 68 78 32 92 76 84 6 + 78 79 69 32 84 85 77 6 + 68 66 76 64 200 198 204 3 + 76 78 68 64 204 206 200 3 + 66 64 74 64 198 196 202 3 + 74 76 66 64 202 204 198 3 + 64 62 72 64 74 72 80 3 + 72 74 64 64 80 82 74 3 + 62 60 70 64 72 70 78 3 + 70 72 62 64 78 80 72 3 + 80 81 85 8 93 94 98 5 + 85 84 80 8 98 97 93 5 + 81 83 87 16 94 96 100 4 + 87 85 81 16 100 98 94 4 + 83 82 86 32 101 95 99 6 + 86 87 83 32 99 102 103 6 + 82 80 84 64 95 93 97 3 + 84 86 82 64 97 99 95 3 + 88 89 93 8 104 105 109 5 + 93 92 88 8 109 108 104 5 + 89 91 95 16 105 107 111 4 + 95 93 89 16 111 109 105 4 + 91 90 94 32 112 106 110 6 + 94 95 91 32 110 113 114 6 + 90 88 92 64 106 104 108 3 + 92 94 90 64 108 110 106 3 + 96 97 101 8 115 116 120 5 + 101 100 96 8 120 119 115 5 + 97 99 103 16 116 118 122 4 + 103 101 97 16 122 120 116 4 + 99 98 102 32 123 117 121 6 + 102 103 99 32 121 124 125 6 + 98 96 100 64 117 115 119 3 + 100 102 98 64 119 121 117 3 + 104 105 109 8 126 127 131 5 + 109 108 104 8 131 130 126 5 + 105 107 111 16 127 129 133 4 + 111 109 105 16 133 131 127 4 + 107 106 110 32 134 128 132 6 + 110 111 107 32 132 135 136 6 + 106 104 108 64 128 126 130 3 + 108 110 106 64 130 132 128 3 + 112 113 117 8 137 138 141 5 + 117 116 112 8 141 140 137 5 + 113 115 119 16 147 149 153 4 + 119 117 113 16 153 151 147 4 + 115 114 118 32 143 139 142 6 + 118 119 115 32 142 144 145 6 + 114 112 116 64 148 146 150 3 + 116 118 114 64 150 152 148 3 + 120 121 125 8 214 215 218 5 + 125 124 120 8 218 217 214 5 + 121 123 127 16 224 226 230 4 + 127 125 121 16 230 228 224 4 + 123 122 126 32 220 216 219 6 + 126 127 123 32 219 221 222 6 + 122 120 124 64 225 223 227 3 + 124 126 122 64 227 229 225 3 + 128 130 131 2 406 407 408 2 + 131 129 128 2 408 409 406 2 + 130 132 133 2 314 316 317 2 + 133 131 130 2 317 315 314 2 + 132 134 135 2 397 399 400 2 + 135 133 132 2 400 398 397 2 + 136 137 139 4 423 424 425 1 + 139 138 136 4 425 426 423 1 + 138 139 141 4 319 318 320 1 + 141 140 138 4 320 321 319 1 + 140 141 143 4 416 415 417 1 + 143 142 140 4 417 418 416 1 + 129 131 139 16 409 408 412 4 + 139 137 129 16 413 414 409 4 + 131 133 141 16 315 317 322 4 + 141 139 131 16 323 324 315 4 + 133 135 143 16 398 400 403 4 + 143 141 133 16 404 405 398 4 + 134 132 140 64 399 397 401 3 + 140 142 134 64 401 402 399 3 + 132 130 138 64 316 314 319 3 + 138 140 132 64 319 321 316 3 + 130 128 136 64 407 406 410 3 + 136 138 130 64 410 411 407 3 + 144 145 149 8 297 298 301 5 + 149 148 144 8 301 300 297 5 + 145 147 151 16 307 309 313 4 + 151 149 145 16 313 311 307 4 + 147 146 150 32 303 299 302 6 + 150 151 147 32 302 304 305 6 + 146 144 148 64 308 306 310 3 + 148 150 146 64 310 312 308 3 + 152 153 157 8 325 326 329 5 + 157 156 152 8 329 328 325 5 + 153 155 159 16 335 337 341 4 + 159 157 153 16 341 339 335 4 + 155 154 158 32 331 327 330 6 + 158 159 155 32 330 332 333 6 + 154 152 156 64 336 334 338 3 + 156 158 154 64 338 340 336 3 + 160 162 163 2 509 510 511 2 + 163 161 160 2 511 512 509 2 + 162 164 165 2 471 473 474 2 + 165 163 162 2 474 472 471 2 + 164 166 167 2 500 502 503 2 + 167 165 164 2 503 501 500 2 + 168 169 171 4 526 527 528 1 + 171 170 168 4 528 529 526 1 + 170 171 173 4 476 475 477 1 + 173 172 170 4 477 478 476 1 + 172 173 175 4 519 518 520 1 + 175 174 172 4 520 521 519 1 + 161 163 171 16 512 511 515 4 + 171 169 161 16 516 517 512 4 + 163 165 173 16 472 474 479 4 + 173 171 163 16 480 481 472 4 + 165 167 175 16 501 503 506 4 + 175 173 165 16 507 508 501 4 + 166 164 172 64 502 500 504 3 + 172 174 166 64 504 505 502 3 + 164 162 170 64 473 471 476 3 + 170 172 164 64 476 478 473 3 + 162 160 168 64 510 509 513 3 + 168 170 162 64 513 514 510 3 + 176 178 179 2 657 658 659 2 + 179 177 176 2 659 660 657 2 + 178 180 181 2 628 630 631 2 + 181 179 178 2 631 629 628 2 + 180 182 183 2 648 650 651 2 + 183 181 180 2 651 649 648 2 + 184 185 187 4 670 671 672 1 + 187 186 184 4 672 673 670 1 + 186 187 189 4 633 632 634 1 + 189 188 186 4 634 635 633 1 + 188 189 191 4 667 666 668 1 + 191 190 188 4 668 669 667 1 + 177 179 187 16 660 659 663 4 + 187 185 177 16 664 665 660 4 + 179 181 189 16 629 631 636 4 + 189 187 179 16 637 638 629 4 + 181 183 191 16 649 651 654 4 + 191 189 181 16 655 656 649 4 + 182 180 188 64 650 648 652 3 + 188 190 182 64 652 653 650 3 + 180 178 186 64 630 628 633 3 + 186 188 180 64 633 635 630 3 + 178 176 184 64 658 657 661 3 + 184 186 178 64 661 662 658 3 + 192 194 195 2 724 725 726 2 + 195 193 192 2 726 727 724 2 + 194 196 197 2 695 697 698 2 + 197 195 194 2 698 696 695 2 + 196 198 199 2 715 717 718 2 + 199 197 196 2 718 716 715 2 + 200 201 203 4 737 738 739 1 + 203 202 200 4 739 740 737 1 + 202 203 205 4 700 699 701 1 + 205 204 202 4 701 702 700 1 + 204 205 207 4 734 733 735 1 + 207 206 204 4 735 736 734 1 + 193 195 203 16 727 726 730 4 + 203 201 193 16 731 732 727 4 + 195 197 205 16 696 698 703 4 + 205 203 195 16 704 705 696 4 + 197 199 207 16 716 718 721 4 + 207 205 197 16 722 723 716 4 + 198 196 204 64 717 715 719 3 + 204 206 198 64 719 720 717 3 + 196 194 202 64 697 695 700 3 + 202 204 196 64 700 702 697 3 + 194 192 200 64 725 724 728 3 + 200 202 194 64 728 729 725 3 + 208 210 211 2 886 887 888 2 + 211 209 208 2 888 889 886 2 + 210 212 213 2 866 868 869 2 + 213 211 210 2 869 867 866 2 + 212 214 215 2 877 879 880 2 + 215 213 212 2 880 878 877 2 + 216 217 219 4 899 900 901 1 + 219 218 216 4 901 902 899 1 + 218 219 221 4 871 870 872 1 + 221 220 218 4 872 873 871 1 + 220 221 223 4 896 895 897 1 + 223 222 220 4 897 898 896 1 + 209 211 219 16 889 888 892 4 + 219 217 209 16 893 894 889 4 + 211 213 221 16 867 869 874 4 + 221 219 211 16 875 876 867 4 + 213 215 223 16 878 880 883 4 + 223 221 213 16 884 885 878 4 + 214 212 220 64 879 877 881 3 + 220 222 214 64 881 882 879 3 + 212 210 218 64 868 866 871 3 + 218 220 212 64 871 873 868 3 + 210 208 216 64 887 886 890 3 + 216 218 210 64 890 891 887 3 + 224 226 227 2 923 924 925 2 + 227 225 224 2 925 926 923 2 + 226 228 229 2 903 905 906 2 + 229 227 226 2 906 904 903 2 + 228 230 231 2 914 916 917 2 + 231 229 228 2 917 915 914 2 + 232 233 235 4 936 937 938 1 + 235 234 232 4 938 939 936 1 + 234 235 237 4 908 907 909 1 + 237 236 234 4 909 910 908 1 + 236 237 239 4 933 932 934 1 + 239 238 236 4 934 935 933 1 + 225 227 235 16 926 925 929 4 + 235 233 225 16 930 931 926 4 + 227 229 237 16 904 906 911 4 + 237 235 227 16 912 913 904 4 + 229 231 239 16 915 917 920 4 + 239 237 229 16 921 922 915 4 + 230 228 236 64 916 914 918 3 + 236 238 230 64 918 919 916 3 + 228 226 234 64 905 903 908 3 + 234 236 228 64 908 910 905 3 + 226 224 232 64 924 923 927 3 + 232 234 226 64 927 928 924 3 + 240 242 243 2 960 961 962 2 + 243 241 240 2 962 963 960 2 + 242 244 245 2 940 942 943 2 + 245 243 242 2 943 941 940 2 + 244 246 247 2 951 953 954 2 + 247 245 244 2 954 952 951 2 + 248 249 251 4 973 974 975 1 + 251 250 248 4 975 976 973 1 + 250 251 253 4 945 944 946 1 + 253 252 250 4 946 947 945 1 + 252 253 255 4 970 969 971 1 + 255 254 252 4 971 972 970 1 + 241 243 251 16 963 962 966 4 + 251 249 241 16 967 968 963 4 + 243 245 253 16 941 943 948 4 + 253 251 243 16 949 950 941 4 + 245 247 255 16 952 954 957 4 + 255 253 245 16 958 959 952 4 + 246 244 252 64 953 951 955 3 + 252 254 246 64 955 956 953 3 + 244 242 250 64 942 940 945 3 + 250 252 244 64 945 947 942 3 + 242 240 248 64 961 960 964 3 + 248 250 242 64 964 965 961 3 + 256 258 259 2 997 998 999 2 + 259 257 256 2 999 1000 997 2 + 258 260 261 2 977 979 980 2 + 261 259 258 2 980 978 977 2 + 260 262 263 2 988 990 991 2 + 263 261 260 2 991 989 988 2 + 264 265 267 4 1010 1011 1012 1 + 267 266 264 4 1012 1013 1010 1 + 266 267 269 4 982 981 983 1 + 269 268 266 4 983 984 982 1 + 268 269 271 4 1007 1006 1008 1 + 271 270 268 4 1008 1009 1007 1 + 257 259 267 16 1000 999 1003 4 + 267 265 257 16 1004 1005 1000 4 + 259 261 269 16 978 980 985 4 + 269 267 259 16 986 987 978 4 + 261 263 271 16 989 991 994 4 + 271 269 261 16 995 996 989 4 + 262 260 268 64 990 988 992 3 + 268 270 262 64 992 993 990 3 + 260 258 266 64 979 977 982 3 + 266 268 260 64 982 984 979 3 + 258 256 264 64 998 997 1001 3 + 264 266 258 64 1001 1002 998 3 + tverts 1014 + 0.174465 0.00149864 0 + 0.104128 0.00149864 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.00149864 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 2.9985 0 + 0.344242 -1.04225 0 + 0.273035 -1.04225 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 1.95475 0 + 0.174465 0.00149864 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 2.9985 0 + 0.104128 2.9985 0 + 0.104128 2.24925 0 + 0.104128 0.00149864 0 + 0.104128 2.9985 0 + 0.344242 -1.04225 0 + 0.273035 -1.04225 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 1.95475 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.0337728 0.940718 0 + 0.0337728 -0.0582831 0 + 0.243649 -0.0582831 0 + 0.310278 -0.0582831 0 + 0.177022 -0.0582831 0 + 0.376905 -0.0582831 0 + 0.237631 0.940718 0 + 0.316296 0.940718 0 + 0.177022 0.940718 0 + 0.376905 0.940718 0 + 0.257387 -0.568116 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -0.568116 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.316414 -0.568116 0 + 0.341479 -0.568116 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -0.568116 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 3.66842 0 + 0.104128 3.66842 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 3.66842 0 + 0.175144 3.66842 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 3.66842 0 + 0.104128 3.66842 0 + 0.104128 2.24925 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.348651 2.41652 0 + 0.277444 2.41652 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.419858 2.41652 0 + 0.349339 2.41652 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.277444 2.41652 0 + 0.277444 2.41652 0 + 0.273035 1.2055 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.326305 2.43905 0 + 0.255098 2.43905 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.397512 2.43905 0 + 0.326993 2.43905 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.255098 2.43905 0 + 0.255098 2.43905 0 + 0.273035 1.2055 0 + 0.159393 -0.654153 0 + 0.0890555 -0.654153 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.229729 -0.654153 0 + 0.160072 -0.654153 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.0890555 -0.654153 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.0337728 0.940718 0 + 0.0337728 -0.0582831 0 + 0.243649 -0.0582831 0 + 0.310278 -0.0582831 0 + 0.177022 -0.0582831 0 + 0.376905 -0.0582831 0 + 0.237631 0.940718 0 + 0.316296 0.940718 0 + 0.177022 0.940718 0 + 0.376905 0.940718 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 -0.0109385 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -0.0109385 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.37945 -0.0109385 0 + 0.404514 -0.0109386 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -0.0109386 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.32817 0 + 0.23974 2.32817 0 + 0.316414 0.879271 0 + 0.316414 2.32817 0 + 0.172541 2.32817 0 + 0.172541 2.32817 0 + 0.170192 0.852609 0 + 0.320422 -1.13992 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -1.13992 0 + 0.37945 -1.13992 0 + 0.37945 0.674666 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -1.13992 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.35824 0 + 0.23974 2.35824 0 + 0.316414 0.879271 0 + 0.316414 2.35824 0 + 0.172541 2.35824 0 + 0.172541 2.35824 0 + 0.170192 0.852609 0 + 0.257387 -1.76798 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -1.76798 0 + 0.316414 -1.76798 0 + 0.316414 0.117489 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -1.76798 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.35824 0 + 0.316414 2.39498 0 + 0.37945 -1.19967 0 + 0.404514 -1.13992 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.316414 -1.82165 0 + 0.341479 -1.76798 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.32817 0 + 0.316414 2.38131 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.164791 0.513932 0 + 0.147595 0.342531 0 + 0.164791 1.27572 0 + 0.141295 1.24906 0 + 0.250616 0.342531 0 + 0.223819 0.513932 0 + 0.248267 1.24906 0 + 0.223819 1.27572 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.0775959 1.24906 0 + 0.0775959 1.24906 0 + 0.079945 0.342531 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.16743 0 + 0.0841089 2.16743 0 + 0.160783 0.718537 0 + 0.160783 2.16743 0 + 0.01691 2.16743 0 + 0.01691 2.16743 0 + 0.014561 0.691875 0 + 0.164791 -1.30066 0 + 0.164791 0.513932 0 + 0.147595 0.342531 0 + 0.146631 -1.30066 0 + 0.223819 -1.30066 0 + 0.223819 0.513932 0 + 0.079945 0.342531 0 + 0.079945 0.342531 0 + 0.0782129 -1.30066 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.19751 0 + 0.0841089 2.19751 0 + 0.160783 0.718537 0 + 0.160783 2.19751 0 + 0.01691 2.19751 0 + 0.01691 2.19751 0 + 0.014561 0.691875 0 + 0.101756 -1.92871 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.92871 0 + 0.160783 -1.92871 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.92871 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.19751 0 + 0.160783 2.23425 0 + 0.223819 -1.3604 0 + 0.248883 -1.30066 0 + 0.250616 0.342531 0 + 0.223819 0.513932 0 + 0.160783 -1.98238 0 + 0.185848 -1.92871 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.16743 0 + 0.160783 2.22057 0 + 0.101756 -1.029 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.029 0 + 0.160783 -1.029 0 + 0.185848 -1.029 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.029 0 + 0.164791 1.27572 0 + 0.141295 1.24906 0 + 0.164791 2.261 0 + 0.147144 2.261 0 + 0.248267 1.24906 0 + 0.223819 1.27572 0 + 0.250616 2.261 0 + 0.223819 2.261 0 + 0.079946 2.261 0 + 0.079946 2.261 0 + 0.0775959 1.24906 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.257387 -0.568116 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -0.568116 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.316414 -0.568116 0 + 0.341479 -0.568116 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -0.568116 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.277444 2.41652 0 + 0.277444 2.41652 0 + 0.273035 1.2055 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.32817 0 + 0.23974 2.32817 0 + 0.316414 0.879271 0 + 0.316414 2.32817 0 + 0.172541 2.32817 0 + 0.172541 2.32817 0 + 0.170192 0.852609 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.35824 0 + 0.23974 2.35824 0 + 0.316414 0.879271 0 + 0.316414 2.35824 0 + 0.172541 2.35824 0 + 0.172541 2.35824 0 + 0.170192 0.852609 0 + 0.257387 -1.76798 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -1.76798 0 + 0.316414 -1.76798 0 + 0.316414 0.117489 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -1.76798 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.35824 0 + 0.316414 2.39498 0 + 0.316414 -1.82165 0 + 0.341479 -1.76798 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.32817 0 + 0.316414 2.38131 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.16743 0 + 0.0841089 2.16743 0 + 0.160783 0.718537 0 + 0.160783 2.16743 0 + 0.01691 2.16743 0 + 0.01691 2.16743 0 + 0.014561 0.691875 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.19751 0 + 0.0841089 2.19751 0 + 0.160783 0.718537 0 + 0.160783 2.19751 0 + 0.01691 2.19751 0 + 0.01691 2.19751 0 + 0.014561 0.691875 0 + 0.101756 -1.92871 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.92871 0 + 0.160783 -1.92871 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.92871 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.19751 0 + 0.160783 2.23425 0 + 0.160783 -1.98238 0 + 0.185848 -1.92871 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.16743 0 + 0.160783 2.22057 0 + 0.101756 -1.029 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.029 0 + 0.160783 -1.029 0 + 0.185848 -1.029 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.029 0 + 0.249099 -0.975342 0 + 0.324159 -0.975342 0 + 0.0698632 -0.975342 0 + 0.503394 -0.975342 0 + 0.249099 0.0236625 0 + 0.324159 0.0236625 0 + 0.0698632 0.0236625 0 + 0.503394 0.0236625 0 + 0.320501 -0.509138 0 + 0.252757 -0.509138 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.320501 -0.442538 0 + 0.320501 -0.509138 0 + 0.320501 -0.509138 0 + 0.320501 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.509138 0 + 0.320501 -0.509138 0 + -0.00519651 -0.975342 0 + -0.00519651 0.0236625 0 + -0.00519651 -0.975342 0 + 0.249099 -1.46084 0 + 0.324159 -1.46084 0 + 0.0698632 -1.46084 0 + 0.503394 -1.46084 0 + 0.249099 -0.461844 0 + 0.324159 -0.461844 0 + 0.0698632 -0.461844 0 + 0.503394 -0.461844 0 + 0.320501 -0.994642 0 + 0.252757 -0.994642 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.320501 -0.928042 0 + 0.320501 -0.994642 0 + 0.320501 -0.994642 0 + 0.320501 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.994642 0 + 0.320501 -0.994642 0 + -0.00519651 -1.46084 0 + -0.00519651 -0.461844 0 + -0.00519651 -1.46084 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.316414 -0.568116 0 + 0.341479 -0.568116 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -0.568116 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 3.66842 0 + 0.104128 3.66842 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 3.66842 0 + 0.175144 3.66842 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 3.66842 0 + 0.104128 3.66842 0 + 0.104128 2.24925 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.348651 2.41652 0 + 0.277444 2.41652 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.419858 2.41652 0 + 0.349339 2.41652 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.35824 0 + 0.23974 2.35824 0 + 0.316414 0.879271 0 + 0.316414 2.35824 0 + 0.172541 2.35824 0 + 0.172541 2.35824 0 + 0.170192 0.852609 0 + 0.257387 -1.76798 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -1.76798 0 + 0.316414 -1.76798 0 + 0.316414 0.117489 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -1.76798 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.35824 0 + 0.316414 2.39498 0 + 0.316414 -1.82165 0 + 0.341479 -1.76798 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.19751 0 + 0.0841089 2.19751 0 + 0.160783 0.718537 0 + 0.160783 2.19751 0 + 0.01691 2.19751 0 + 0.01691 2.19751 0 + 0.014561 0.691875 0 + 0.101756 -1.92871 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.92871 0 + 0.160783 -1.92871 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.92871 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.19751 0 + 0.160783 2.23425 0 + 0.160783 -1.98238 0 + 0.185848 -1.92871 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.35824 0 + 0.23974 2.35824 0 + 0.316414 0.879271 0 + 0.316414 2.35824 0 + 0.172541 2.35824 0 + 0.172541 2.35824 0 + 0.170192 0.852609 0 + 0.257387 -1.76798 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -1.76798 0 + 0.316414 -1.76798 0 + 0.316414 0.117489 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -1.76798 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.35824 0 + 0.316414 2.39498 0 + 0.316414 -1.82165 0 + 0.341479 -1.76798 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.19751 0 + 0.0841089 2.19751 0 + 0.160783 0.718537 0 + 0.160783 2.19751 0 + 0.01691 2.19751 0 + 0.01691 2.19751 0 + 0.014561 0.691875 0 + 0.101756 -1.92871 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.92871 0 + 0.160783 -1.92871 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.92871 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.19751 0 + 0.160783 2.23425 0 + 0.160783 -1.98238 0 + 0.185848 -1.92871 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 +endnode +#Tile trimesh node +node trimesh roof01 + parent tin01_d11_01 + position -4.5 0.0 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 450.0 0.0 183.0 + bitmap tin01_plank + verts 16 + 9.5 -2.5 1.83 + 7.0 -5.0 1.83 + 7.0 -2.5 1.83 + 2.0 -5.0 1.83 + -0.5 -2.5 1.83 + 2.0 -2.5 1.83 + -0.5 2.5 1.83 + 2.0 5.0 1.83 + 2.0 2.5 1.83 + 7.0 5.0 1.83 + 9.5 2.5 1.83 + 7.0 2.5 1.83 + 9.5 -5.0 1.83 + -0.5 -5.0 1.83 + 9.5 5.0 1.83 + -0.5 5.0 1.83 + faces 18 + 4 6 8 0 4 6 8 1 + 4 8 5 0 4 8 5 1 + 5 8 11 0 5 8 11 1 + 8 7 9 0 8 7 9 1 + 8 9 11 0 8 9 11 1 + 5 11 2 0 5 11 2 1 + 5 2 1 0 5 2 1 1 + 5 1 3 0 5 1 3 1 + 2 11 10 0 2 11 10 1 + 2 10 0 0 2 10 0 1 + 1 2 0 0 1 2 0 1 + 1 0 12 0 1 0 12 1 + 4 5 3 0 4 5 3 1 + 4 3 13 0 4 3 13 1 + 11 9 14 0 11 9 14 1 + 11 14 10 0 11 14 10 1 + 6 15 7 0 6 15 7 1 + 6 7 8 0 6 7 8 1 + tverts 16 + 1.999 0.500499 0 + 1.4995 0.000999153 0 + 1.4995 0.500499 0 + 0.500499 0.000999391 0 + 0.000999153 0.5005 0 + 0.500499 0.5005 0 + 0.000999391 1.4995 0 + 0.5005 1.999 0 + 0.5005 1.4995 0 + 1.4995 1.999 0 + 1.999 1.4995 0 + 1.4995 1.4995 0 + 1.999 0.000999033 0 + 0.000999033 0.00099951 0 + 1.999 1.999 0 + 0.00099951 1.999 0 +endnode +endmodelgeom tin01_d11_01 +donemodel tin01_d11_01 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d15_02.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d15_02.mdl new file mode 100644 index 0000000..98eb842 --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_d15_02.mdl @@ -0,0 +1,4818 @@ +# Exported from NWmax 0.8 b60 at 14.10.2012 14:17:29 +# mdl file +# +#NWmax MODEL ASCII +# model: tin01_d15_02 +#local file: Unknown +filedependancy Unknown +newmodel tin01_d15_02 +setsupermodel tin01_d15_02 NULL +classification Tile +#NWmax GEOM ASCII +beginmodelgeom tin01_d15_02 +node dummy tin01_d15_02 + parent NULL +endnode +#Tile trimesh node +node trimesh Cylinder71 + parent tin01_d15_02 + position -0.46 3.39 2.51 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 7.0 1.5 -5.5 + bitmap tin01_plates + verts 44 + 0.11 -0.06 -0.25 + 0.14 0.09 -0.25 + 0.15 0.01 -0.25 + 0.07 0.14 -0.25 + -0.01 0.13 -0.25 + -0.06 0.06 -0.25 + -0.04 -0.02 -0.25 + 0.02 -0.07 -0.25 + 0.13 0.15 -0.17 + 0.21 -0.02 -0.17 + -0.04 0.15 -0.17 + -0.1 -0.03 -0.17 + 0.05 -0.13 -0.17 + 0.13 0.15 -0.09 + 0.21 -0.02 -0.09 + -0.04 0.15 -0.09 + -0.1 -0.03 -0.09 + 0.05 -0.13 -0.09 + 0.29 0.07 -0.15 + 0.29 0.11 -0.14 + 0.31 0.09 -0.14 + 0.04 0.11 0.05 + 0.12 0.08 0.05 + -0.03 0.05 0.05 + -0.02 -0.01 0.05 + 0.06 -0.04 0.05 + 0.13 0.02 0.05 + 0.17 0.07 0.14 + 0.14 -0.05 0.14 + 0.07 0.14 0.14 + -0.03 0.16 0.14 + -0.18 0.09 0.14 + -0.1 -0.03 0.14 + 0.02 -0.08 0.14 + 0.05 0.04 0.03 + 0.15 0.08 0.0 + 0.15 0.04 0.0 + 0.14 0.05 0.02 + 0.24 0.05 0.04 + 0.22 0.06 0.06 + 0.23 0.09 0.04 + 0.3 0.07 0.01 + 0.32 0.09 0.04 + 0.31 0.11 0.03 + faces 84 + 0 1 2 1 0 1 2 2 + 0 3 1 1 0 3 1 2 + 0 4 3 1 0 4 3 2 + 0 5 4 1 0 5 4 2 + 0 6 5 1 6 7 5 2 + 0 7 6 1 6 8 7 2 + 2 8 9 1 2 9 10 3 + 2 1 8 1 2 1 9 3 + 1 3 8 1 1 3 9 3 + 3 10 8 1 3 11 9 3 + 3 4 10 1 3 4 11 3 + 4 5 10 1 4 5 11 3 + 5 11 10 1 5 12 11 3 + 5 6 11 1 5 7 12 3 + 6 12 11 1 7 13 12 3 + 6 7 12 1 7 8 13 3 + 7 0 12 1 8 6 13 3 + 0 9 12 1 6 14 13 3 + 0 2 9 1 6 15 14 3 + 9 13 14 1 10 16 17 3 + 9 8 13 1 10 9 16 3 + 8 15 13 1 9 18 16 3 + 8 10 15 1 9 11 18 3 + 10 16 15 1 11 19 18 3 + 10 11 16 1 11 12 19 3 + 11 17 16 1 12 20 19 3 + 11 12 17 1 12 13 20 3 + 12 14 17 1 13 21 20 3 + 12 9 14 1 13 14 21 3 + 18 19 20 1 22 23 24 3 + 13 21 22 1 16 25 26 3 + 13 15 21 1 16 18 25 3 + 15 23 21 1 18 27 25 3 + 15 24 23 1 18 28 27 3 + 15 16 24 1 18 19 28 3 + 16 25 24 1 19 29 28 3 + 16 17 25 1 19 20 29 3 + 17 26 25 2 20 30 29 3 + 17 14 26 2 20 21 30 3 + 26 27 28 2 30 31 32 3 + 26 22 27 1 33 26 34 3 + 22 29 27 1 26 35 34 3 + 22 21 29 1 26 25 35 3 + 21 30 29 1 25 36 35 3 + 21 31 30 1 25 37 36 3 + 21 23 31 1 25 27 37 3 + 23 32 31 1 27 38 37 3 + 23 24 32 1 27 28 38 3 + 24 33 32 1 28 39 38 3 + 24 25 33 1 28 29 39 3 + 25 28 33 1 29 32 39 3 + 25 26 28 1 29 30 32 3 + 34 28 27 4 40 41 42 1 + 32 33 34 4 43 44 40 1 + 31 34 30 4 45 40 46 1 + 32 34 31 4 43 40 45 1 + 34 33 28 4 40 44 41 1 + 14 13 35 1 17 16 47 3 + 35 36 14 1 47 48 17 3 + 22 26 37 1 26 33 49 3 + 26 14 36 1 30 21 50 3 + 36 37 26 1 50 51 30 3 + 13 22 37 1 16 26 49 3 + 37 35 13 1 49 47 16 3 + 37 36 38 1 51 50 52 3 + 38 39 37 1 52 53 51 3 + 36 35 40 1 54 55 56 3 + 40 38 36 1 56 57 54 3 + 35 37 39 1 58 59 60 3 + 39 40 35 1 60 61 58 3 + 39 38 41 1 62 63 64 3 + 41 42 39 1 64 65 62 3 + 38 40 43 1 63 66 67 3 + 43 41 38 1 67 64 63 3 + 40 39 42 1 66 62 65 3 + 42 43 40 1 65 67 66 3 + 42 41 18 1 65 64 22 3 + 18 20 42 1 22 24 65 3 + 41 43 19 1 64 67 23 3 + 19 18 41 1 23 22 64 3 + 43 42 20 1 67 65 24 3 + 20 19 43 1 24 23 67 3 + 34 27 29 2 40 68 69 1 + 30 34 29 2 46 40 69 1 + tverts 70 + -0.584454 0.533988 0 + 0.0542907 0.533988 0 + -0.224498 0.533988 0 + 0.352311 0.533988 0 + 0.74339 0.533988 0 + 1.12569 0.533988 0 + 2.17555 0.533988 0 + 1.43234 0.533988 0 + 1.76234 0.533988 0 + 0.195653 0.632707 0 + -0.277036 0.632707 0 + 0.810814 0.632707 0 + 1.38187 0.632707 0 + 1.87544 0.632707 0 + 2.48296 0.632707 0 + 2.5355 0.533988 0 + 0.195743 0.731426 0 + -0.276354 0.731426 0 + 0.813929 0.731426 0 + 1.38286 0.731426 0 + 1.87653 0.731426 0 + 2.48365 0.731426 0 + 0.348462 0.492452 0 + 0.356639 0.504538 0 + 0.354211 0.512409 0 + 0.527543 0.879105 0 + 0.0545885 0.879105 0 + 1.12011 0.879105 0 + 1.43196 0.879105 0 + 1.97475 0.879105 0 + 2.54014 0.879105 0 + 2.71501 0.935869 0 + 2.31823 0.935869 0 + -0.219857 0.879105 0 + -0.0449889 0.935869 0 + 0.352745 0.935869 0 + 0.750859 0.935869 0 + 1.13424 0.935869 0 + 1.38187 0.935869 0 + 1.76182 0.935869 0 + 0.350202 0.953981 0 + 0.272415 0.995041 0 + 0.159346 0.992625 0 + 0.592767 0.998664 0 + 0.439913 1.00108 0 + 0.399958 0.993833 0 + 0.285953 0.991418 0 + 0.0163343 0.830298 0 + -0.114038 0.830298 0 + -0.0794003 0.86058 0 + 2.64596 0.814888 0 + 2.6806 0.84517 0 + 2.65713 0.869314 0 + 2.67648 0.894631 0 + 0.610852 0.4777 0 + 0.610852 0.489094 0 + 0.687436 0.582789 0 + 0.687436 0.571395 0 + 0.474211 0.46952 0 + 0.516822 0.444287 0 + 0.586419 0.538049 0 + 0.550795 0.563215 0 + 0.466395 0.441579 0 + 0.454658 0.45005 0 + 0.439645 0.497971 0 + 0.452401 0.513546 0 + 0.454658 0.457059 0 + 0.447776 0.511137 0 + 0.108389 0.993833 0 + 0.222184 0.99021 0 +endnode +#Tile trimesh node +node trimesh Mesh346 + parent tin01_d15_02 + position 0.72 3.44 1.51 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 2.0 -28.0 37.0 + bitmap tin01_books + verts 4 + 1.77 -0.28 0.66 + -1.73 -0.28 0.66 + -1.73 -0.28 0.08 + 1.77 -0.28 0.08 + faces 2 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + tverts 4 + 1.19482 0.717916 0 + -0.194822 0.717916 0 + -0.194822 0.515969 0 + 1.19482 0.515969 0 +endnode +#Tile trimesh node +node trimesh Box677 + parent tin01_d15_02 + position 0.72 3.36 0.65 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -2.5 -13.5 4.0 + bitmap tin01_furnish2 + verts 8 + -1.56 -0.39 0.0 + -1.56 0.12 0.0 + 1.51 0.12 0.0 + 1.51 -0.39 0.0 + -1.56 -0.39 0.08 + 1.51 -0.39 0.08 + 1.51 0.12 0.08 + -1.56 0.12 0.08 + faces 6 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 4 5 6 1 0 3 2 1 + 6 7 4 1 2 1 0 1 + 0 3 5 2 4 5 6 5 + 5 4 0 2 6 7 4 5 + tverts 8 + 0.161444 1.12654 0 + 0.471117 1.12654 0 + 0.471117 -0.126542 0 + 0.161444 -0.126542 0 + 0.326672 -0.126542 0 + 0.326672 1.12654 0 + 0.29407 1.12654 0 + 0.29407 -0.126542 0 +endnode +#Tile trimesh node +node trimesh Box673 + parent tin01_d15_02 + position -2.01 5.25 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 25.0 -201.0 150.0 + bitmap tin01_lwalls + verts 17 + -0.66 -2.52 0.0 + -0.49 -2.52 0.0 + -0.66 -2.52 1.49 + 1.16 -2.52 1.49 + 1.16 -2.52 0.0 + 0.99 -2.29 3.0 + -0.49 -2.29 3.0 + 0.99 -2.29 1.49 + -0.49 -2.29 1.49 + -0.49 -1.5 1.49 + -0.66 -1.77 1.49 + -0.66 -1.77 0.0 + 1.16 -1.77 0.0 + 1.16 -1.77 1.49 + -0.49 -1.5 3.0 + 0.99 -1.5 1.49 + 0.99 -1.5 3.0 + faces 21 + 0 1 2 1 0 1 2 3 + 3 2 4 1 3 2 4 3 + 5 6 7 1 5 6 7 3 + 8 7 6 1 8 7 6 3 + 7 8 3 2 9 10 11 3 + 2 3 8 2 12 11 10 3 + 9 10 2 2 13 14 15 3 + 2 8 9 2 15 16 13 3 + 10 11 0 4 17 18 19 3 + 0 2 10 4 19 20 17 3 + 12 13 3 4 18 17 20 3 + 3 4 12 4 20 21 18 3 + 14 9 8 4 22 23 24 3 + 8 6 14 4 24 25 22 3 + 15 16 5 4 23 22 25 3 + 5 7 15 4 25 24 23 3 + 13 15 7 2 26 27 28 3 + 7 3 13 2 28 29 26 3 + 16 14 6 2 30 31 32 3 + 6 5 16 2 32 33 30 3 + 1 4 2 1 1 4 2 3 + tverts 34 + -1.04809 0.0908792 0 + -1.0139 0.0908792 0 + -1.04809 0.458293 0 + -0.677151 0.458293 0 + -0.677151 0.0908791 0 + -0.677151 0.850541 0 + -1.04809 0.850541 0 + -0.677151 0.475611 0 + -1.04809 0.475611 0 + 0.446939 0.460096 0 + 0.075999 0.460097 0 + 0.446939 0.393096 0 + 0.075999 0.393097 0 + 0.627251 1.40927 0 + 0.560251 1.45072 0 + 0.37275 1.45072 0 + 0.430911 1.40927 0 + 0.428247 0.465469 0 + 0.428247 0.091993 0 + 0.615748 0.091993 0 + 0.615748 0.465469 0 + 0.615748 0.0919929 0 + 0.361247 0.851655 0 + 0.361247 0.47513 0 + 0.557587 0.47513 0 + 0.557587 0.851655 0 + 0.56025 0.403323 0 + 0.62725 0.444127 0 + 0.43091 0.444127 0 + 0.372749 0.403324 0 + -0.0665597 0.793617 0 + -0.4375 0.793617 0 + -0.4375 0.597278 0 + -0.0665601 0.597277 0 +endnode +#Tile trimesh node +node trimesh Mesh323 + parent tin01_d15_02 + position 0.72 3.44 1.11 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -22.0 -3.0 1.5 + bitmap tin01_shelf2 + verts 8 + -1.35 -0.28 -0.37 + 0.91 -0.28 -0.37 + 0.91 -0.28 0.4 + -1.35 -0.28 0.4 + 0.91 0.22 -0.37 + 0.91 0.22 0.4 + -1.35 0.22 0.4 + -1.35 0.22 -0.37 + faces 6 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 5 2 2 4 5 6 1 + 2 1 4 2 6 7 4 1 + 6 7 0 2 8 9 7 1 + 0 3 6 2 7 6 8 1 + tverts 10 + -0.176698 0.436024 0 + 1.15894 0.436024 0 + 1.15894 0.799911 0 + -0.176698 0.799911 0 + 0.0030634 0.448702 0 + 0.0030634 0.754197 0 + 0.154229 0.756612 0 + 0.154229 0.451117 0 + 0.0030635 0.754197 0 + 0.0030635 0.448702 0 +endnode +#Tile trimesh node +node trimesh Object583 + parent tin01_d15_02 + position 4.93 0.0 1.5 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 0.0 0.0 + bitmap tin01_metaldoor + verts 8 + -0.07 0.99 -1.5 + 0.07 1.0 -1.5 + -0.07 0.99 1.5 + 0.07 1.0 1.5 + 0.07 -1.0 -1.5 + -0.07 -0.99 -1.5 + -0.07 -0.99 1.5 + 0.07 -1.0 1.5 + faces 4 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 5 6 1 1 0 2 1 + 6 7 4 1 2 3 1 1 + tverts 4 + 0.810805 0.87452 0 + 0.753632 0.87452 0 + 0.810805 0.107953 0 + 0.753632 0.107953 0 +endnode +#Tile trimesh node +node trimesh Object494 + parent tin01_d15_02 + position 4.66 -1.15 0.32 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -16.0 -9.0 118.0 + bitmap tin01_door2 + verts 17 + -0.3 -0.19 0.33 + -0.52 -0.34 0.16 + -0.3 -0.34 0.16 + -0.37 -0.19 0.33 + -0.37 0.15 0.33 + -0.52 0.15 0.16 + -0.52 -0.34 -0.32 + -0.3 -0.34 -0.32 + -0.52 0.15 -0.32 + -0.37 0.15 2.68 + -0.37 -0.19 2.68 + 0.2 0.16 -0.32 + 0.2 0.16 2.68 + -0.3 -0.19 1.17 + -0.02 -0.19 2.68 + -0.02 -0.19 1.79 + -0.02 -0.19 1.17 + faces 19 + 0 1 2 1 0 1 2 1 + 0 3 1 1 0 3 1 1 + 3 4 5 2 4 5 6 1 + 5 1 3 2 6 7 4 1 + 2 6 7 4 2 8 9 1 + 2 1 6 4 2 1 8 1 + 1 5 6 8 7 6 10 1 + 8 6 5 8 11 10 6 1 + 4 3 9 4 12 13 14 3 + 10 9 3 4 15 14 13 3 + 5 4 11 1 16 17 18 1 + 8 5 11 1 19 16 18 1 + 12 11 4 1 20 21 22 3 + 4 9 12 1 22 23 20 3 + 10 3 0 8 24 25 26 5 + 0 13 10 8 26 27 24 5 + 14 13 15 8 28 27 29 5 + 10 13 14 8 24 27 28 5 + 16 15 13 8 30 29 27 5 + tverts 31 + 0.262253 1.05077 0 + 0.349531 0.95261 0 + 0.243555 0.95261 0 + 0.300601 1.05077 0 + 0.305378 1.04315 0 + 0.167227 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.349531 0.639765 0 + 0.243555 0.661345 0 + 0.357965 0.694046 0 + 0.173247 0.694046 0 + 0.215041 -0.497611 0 + 0.395638 -0.497611 0 + 0.215041 0.526576 0 + 0.395638 0.526576 0 + 0.0948473 0.422256 0 + 0.132153 0.493777 0 + 0.319653 0.194315 0 + 0.0948473 0.194315 0 + 0.398595 1.52809 0 + 0.398595 0.194315 0 + 0.211095 0.493777 0 + 0.211095 1.52809 0 + 0.047924 0.528703 0 + 0.047924 -0.502544 0 + 0.0835266 -0.501859 0 + 0.0833608 -0.118924 0 + 0.211356 0.528703 0 + 0.21152 0.162398 0 + 0.212306 -0.118751 0 +endnode +#Tile trimesh node +node trimesh Object493 + parent tin01_d15_02 + position 4.66 1.15 0.32 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -16.0 9.0 118.0 + bitmap tin01_door2 + verts 16 + -0.37 0.19 0.33 + -0.3 0.19 0.33 + -0.52 0.34 0.16 + -0.3 0.34 0.16 + -0.37 -0.15 0.33 + -0.52 -0.15 0.16 + -0.3 0.34 -0.32 + -0.52 0.34 -0.32 + -0.52 -0.15 -0.32 + -0.37 -0.15 2.68 + -0.37 0.19 2.68 + 0.2 -0.16 -0.32 + 0.2 -0.16 2.68 + -0.02 0.19 2.68 + -0.02 0.19 1.17 + -0.3 0.19 1.17 + faces 18 + 0 1 2 1 0 1 2 1 + 1 3 2 1 1 3 2 1 + 4 0 5 2 4 5 6 1 + 2 5 0 2 7 6 5 1 + 2 3 6 4 2 3 8 1 + 6 7 2 4 8 9 2 1 + 5 2 7 8 6 7 10 1 + 7 8 5 8 10 11 6 1 + 0 4 9 4 12 13 14 3 + 9 10 0 4 14 15 12 3 + 4 5 11 1 16 17 18 1 + 5 8 11 1 17 19 18 1 + 11 12 9 1 20 21 22 3 + 9 4 11 1 22 23 20 3 + 13 14 15 8 24 25 26 5 + 10 13 15 8 27 24 26 5 + 0 15 1 8 28 26 29 5 + 15 0 10 8 26 28 27 5 + tverts 30 + 0.300601 1.05077 0 + 0.262253 1.05077 0 + 0.349531 0.95261 0 + 0.243555 0.95261 0 + 0.167227 1.04315 0 + 0.305378 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.243555 0.661345 0 + 0.349531 0.639765 0 + 0.357965 0.694046 0 + 0.173247 0.694046 0 + 0.395638 -0.497611 0 + 0.215041 -0.497611 0 + 0.215041 0.526576 0 + 0.395638 0.526576 0 + 0.132153 0.493777 0 + 0.0948474 0.422256 0 + 0.319653 0.194315 0 + 0.0948474 0.194315 0 + 0.400568 0.194315 0 + 0.400568 1.52809 0 + 0.213069 1.52809 0 + 0.213069 0.493777 0 + 0.30956 0.482805 0 + 0.30956 -0.119632 0 + 0.199885 -0.119632 0 + 0.169821 0.482805 0 + 0.169821 -0.458869 0 + 0.199885 -0.458869 0 +endnode +node dummy tin01_d15_02_D01 + parent tin01_d15_02 + position 5.0 0.0 0.0 + orientation 0.0 0.0 -1.0 -4.71239 + wirecolor 0.839216 0.894118 0.6 +endnode +#Tile trimesh node +node trimesh Object153 + parent tin01_d15_02 + position 5.59 5.25 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -577.0 -233.0 150.0 + bitmap tin01_lwalls + verts 63 + -3.09 -1.5 3.0 + -3.09 -2.25 3.0 + -2.59 -2.25 3.0 + -1.84 -2.25 3.0 + -2.31 -1.5 3.0 + -10.2 -1.5 1.49 + -10.2 -1.77 1.49 + -8.09 -1.5 1.49 + -8.26 -1.77 1.49 + -6.61 -1.5 3.0 + -5.59 -1.5 3.0 + -5.59 -0.75 3.0 + -5.59 -1.77 0.0 + -3.35 -1.77 0.0 + -5.59 -1.77 1.49 + -3.35 -1.77 1.49 + -10.2 -1.5 3.0 + -8.09 -1.5 3.0 + -8.09 -0.75 3.0 + -10.59 -0.75 3.0 + -10.59 -1.5 3.0 + -2.31 -0.75 3.0 + -3.09 -2.52 0.0 + -2.73 -2.52 0.0 + -2.73 -2.52 0.52 + -3.35 -2.52 1.49 + -3.35 -2.52 0.0 + -2.59 -2.52 0.68 + -2.59 -2.52 1.49 + -3.09 -1.5 1.49 + -5.59 -1.5 1.49 + -6.61 -1.5 1.49 + -2.59 -2.25 1.49 + -3.09 -2.25 1.49 + -10.05 -1.77 0.52 + -10.05 -1.77 0.0 + -8.26 -1.77 0.0 + -10.2 -1.77 0.68 + -6.44 -1.77 1.49 + -1.84 -3.0 3.0 + -1.09 -2.75 3.0 + -1.84 -3.45 3.0 + -1.09 -1.5 3.0 + -2.11 -3.15 0.52 + -2.11 -3.69 1.49 + -2.11 -3.0 1.49 + -2.11 -3.15 0.0 + -2.11 -3.69 0.0 + -2.11 -3.0 0.68 + -1.84 -3.45 1.49 + -1.84 -3.0 1.49 + -1.23 -3.69 0.0 + -1.23 -3.69 1.49 + -0.95 -3.45 1.49 + -1.23 -3.76 0.48 + -1.23 -3.76 0.0 + -1.23 -3.91 0.65 + -1.23 -3.91 1.49 + -0.95 -3.91 1.49 + -0.95 -3.45 3.0 + -0.95 -3.91 3.0 + -0.95 -2.75 3.0 + -6.44 -1.77 0.0 + faces 75 + 0 1 2 1 0 1 2 1 + 3 4 0 1 3 4 0 1 + 0 2 3 1 0 2 3 1 + 5 6 7 1 5 6 7 3 + 8 7 6 1 8 7 6 3 + 9 10 11 1 9 10 11 1 + 12 13 14 1 12 13 14 3 + 15 14 13 1 15 14 13 3 + 16 17 18 1 16 17 18 1 + 18 19 20 1 18 19 20 1 + 20 16 18 1 20 16 18 1 + 21 11 0 1 21 22 0 1 + 10 0 11 1 23 0 22 1 + 22 23 24 1 24 25 26 3 + 24 25 26 1 26 27 28 3 + 24 27 28 1 26 29 30 3 + 24 28 25 1 26 30 27 3 + 7 17 5 2 31 32 33 3 + 16 5 17 2 34 33 32 3 + 29 0 30 2 35 36 37 3 + 10 30 0 2 38 37 36 3 + 30 10 31 2 37 38 39 3 + 9 31 10 2 40 39 38 3 + 32 2 33 2 41 42 43 3 + 1 33 2 2 44 43 42 3 + 34 35 36 2 45 46 47 3 + 6 37 34 2 48 49 45 3 + 36 8 6 2 47 50 48 3 + 6 34 36 2 48 45 47 3 + 15 29 14 4 51 52 53 3 + 30 14 29 4 54 53 52 3 + 14 30 38 4 53 54 55 3 + 31 38 30 4 56 55 54 3 + 28 32 25 4 57 58 59 3 + 33 25 32 4 60 59 58 3 + 3 39 40 1 61 62 63 1 + 39 41 40 1 62 64 63 1 + 40 42 3 1 65 66 67 1 + 43 44 45 1 68 69 70 5 + 43 46 47 1 68 71 72 5 + 47 44 43 1 72 69 68 5 + 45 48 43 1 70 73 68 5 + 49 41 50 2 74 75 76 5 + 39 50 41 2 77 76 75 5 + 44 49 45 4 78 79 80 5 + 50 45 49 4 81 80 79 5 + 51 52 47 2 82 83 84 5 + 44 47 52 2 85 84 83 5 + 52 53 44 4 86 87 88 5 + 49 44 53 4 89 88 87 5 + 53 41 49 8 90 91 92 5 + 52 51 54 1 93 94 95 5 + 55 54 51 1 96 95 94 5 + 56 57 52 1 97 98 93 5 + 54 56 52 1 95 97 93 5 + 58 53 57 4 99 100 101 5 + 52 57 53 4 102 101 100 5 + 41 53 59 8 91 90 103 5 + 41 59 40 1 64 104 63 5 + 58 60 53 2 105 106 107 5 + 59 53 60 2 108 107 106 5 + 40 59 61 1 63 104 109 5 + 29 15 25 4 110 111 112 3 + 25 33 29 4 112 113 110 3 + 15 13 26 2 114 115 116 3 + 26 25 15 2 116 117 114 3 + 0 29 33 8 118 119 120 3 + 33 1 0 8 120 121 118 3 + 11 18 9 1 11 122 9 1 + 17 9 18 1 123 9 122 1 + 62 12 38 1 124 12 125 3 + 14 38 12 1 14 125 12 3 + 3 42 4 1 3 126 4 1 + 0 4 21 1 0 4 21 1 + 26 22 24 1 28 24 26 3 + tverts 127 + 0.8125 0.793616 0 + 0.8125 0.606116 0 + 0.9375 0.606116 0 + 1.125 0.606116 0 + 1.00697 0.793616 0 + -0.450999 0.457681 0 + -0.450999 0.390681 0 + 0.075999 0.457681 0 + 0.075999 0.390681 0 + 0.310337 2.71346 0 + 0.561882 2.71346 0 + 0.310337 2.90096 0 + -0.423091 0.0908791 0 + 0.201909 0.0908789 0 + -0.423091 0.458293 0 + 0.201909 0.458293 0 + 0.285502 0.774954 0 + 0.8125 0.774954 0 + 0.8125 0.962454 0 + 0.1875 0.962454 0 + 0.1875 0.774954 0 + 1.00697 0.981117 0 + 0.1875 0.981117 0 + 0.1875 0.793617 0 + 1.67709 0.0906924 0 + 1.72887 0.0906924 0 + 1.72887 0.220256 0 + 1.63984 0.458106 0 + 1.63984 0.0906924 0 + 1.76484 0.260953 0 + 1.76484 0.458106 0 + 1.00826 0.481716 0 + 1.00826 0.856646 0 + 0.481259 0.481716 0 + 0.481259 0.856646 0 + 0.201909 0.465949 0 + 0.201909 0.840879 0 + -0.423091 0.465949 0 + -0.423091 0.840879 0 + -0.677151 0.465949 0 + -0.677151 0.840879 0 + 1.76484 0.47784 0 + 1.76484 0.85277 0 + 1.63984 0.47784 0 + 1.63984 0.85277 0 + 0.518565 0.221717 0 + 0.518565 0.0921533 0 + 1.00826 0.0921533 0 + 0.481259 0.459567 0 + 0.481259 0.262414 0 + 1.00826 0.459567 0 + 1.326 0.397927 0 + 1.326 0.464927 0 + 0.700999 0.397927 0 + 0.700999 0.464927 0 + 0.446939 0.397927 0 + 0.446939 0.464927 0 + 1.451 0.390681 0 + 1.451 0.457681 0 + 1.326 0.390681 0 + 1.326 0.457681 0 + 1.125 0.903218 0 + 1.125 0.715717 0 + 1.3125 0.753221 0 + 1.125 0.603221 0 + 1.2158 0.622786 0 + 1.2158 0.960283 0 + 1.0283 0.772783 0 + 0.772529 0.21431 0 + 0.908807 0.458223 0 + 0.736245 0.458223 0 + 0.772529 0.0847465 0 + 0.90927 0.0847465 0 + 0.736245 0.255007 0 + 0.848741 0.477546 0 + 0.848741 0.85407 0 + 0.736245 0.477547 0 + 0.736245 0.85407 0 + 1.60688 1.44535 0 + 1.60688 1.3802 0 + 1.48188 1.44535 0 + 1.48188 1.3802 0 + 0.576072 0.0849021 0 + 0.576072 0.458378 0 + 0.35538 0.0849021 0 + 0.35538 0.458378 0 + 0.576073 0.459339 0 + 0.644619 0.399275 0 + 0.355381 0.459339 0 + 0.422381 0.399275 0 + 0.644619 0.477702 0 + 0.42238 0.854226 0 + 0.42238 0.477702 0 + -0.288744 0.456567 0 + -0.288744 0.0830904 0 + -0.27162 0.203847 0 + -0.271619 0.0830903 0 + -0.234313 0.244544 0 + -0.234313 0.456567 0 + 0.573826 0.384852 0 + 0.426174 0.384852 0 + 0.573826 0.453399 0 + 0.486238 0.453399 0 + 0.64462 0.854226 0 + 1.34724 0.603221 0 + -0.234312 0.480721 0 + -0.234313 0.857245 0 + -0.348808 0.480721 0 + -0.348809 0.857245 0 + 1.4375 0.753222 0 + 0.62725 0.391153 0 + 0.56025 0.457345 0 + 0.37275 0.457345 0 + 0.43975 0.391153 0 + 0.428245 0.458222 0 + 0.428245 0.0847466 0 + 0.615745 0.0847465 0 + 0.615745 0.458222 0 + 0.361245 0.85407 0 + 0.361245 0.477546 0 + 0.548745 0.477546 0 + 0.548745 0.85407 0 + -0.0569302 2.90096 0 + -0.0569302 2.71346 0 + -0.677151 0.0908791 0 + -0.677151 0.458293 0 + 1.3125 0.793616 0 +endnode +#Tile trimesh node +node trimesh Box66 + parent tin01_d15_02 + position 0.72 3.4 2.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 2.0 -2.5 4.0 + bitmap tin01_furnish2 + verts 8 + -1.73 -0.39 0.0 + -1.73 -0.24 0.0 + 1.77 -0.24 0.0 + 1.77 -0.39 0.0 + -1.73 -0.39 0.08 + 1.77 -0.39 0.08 + 1.77 0.34 0.08 + -1.73 0.34 0.08 + faces 6 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 4 5 6 1 4 5 6 1 + 6 7 4 1 6 7 4 1 + 0 3 5 2 8 9 10 5 + 5 4 0 2 10 11 8 5 + tverts 12 + 0.179671 1.21426 0 + 0.489344 1.21426 0 + 0.489343 -0.214258 0 + 0.17967 -0.214258 0 + 0.183618 0.837447 0 + 0.183617 -0.59107 0 + 0.49329 -0.59107 0 + 0.493291 0.837446 0 + 0.0781547 -0.214258 0 + 0.0781548 1.21426 0 + 0.0455528 1.21426 0 + 0.0455527 -0.214258 0 +endnode +#Tile trimesh node +node trimesh Plane351 + parent tin01_d15_02 + position 0.0 0.0 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.603922 0.584314 0.592157 + diffuse 0.603922 0.584314 0.592157 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -76.0 0.0 + bitmap tin01_shpflr1 + verts 49 + -5.0 -2.5 0.0 + -5.0 -5.0 0.0 + -2.5 -2.5 0.0 + -2.5 -5.0 0.0 + 0.0 -2.5 0.0 + 0.0 -5.0 0.0 + 2.5 -2.5 0.0 + 2.5 -5.0 0.0 + 2.85 -4.46 0.0 + 3.48 -2.5 0.0 + 3.48 -4.46 0.0 + -5.0 0.0 0.0 + -2.5 0.0 0.0 + 0.0 0.0 0.0 + 2.5 0.0 0.0 + 4.14 -1.0 0.0 + 5.0 -1.0 0.0 + -5.0 2.5 0.0 + -2.5 2.5 0.0 + 0.0 2.5 0.0 + 2.5 2.5 0.0 + 2.85 2.1 0.0 + 2.85 2.5 0.0 + -5.0 2.85 0.0 + -4.46 2.85 0.0 + -2.5 2.73 0.0 + -0.85 2.73 0.0 + 0.0 3.48 0.0 + 2.24 2.73 0.0 + 2.24 3.48 0.0 + 2.5 2.73 0.0 + 5.0 0.0 0.0 + 3.48 -1.56 0.0 + 4.36 -1.56 0.0 + 4.14 -1.49 0.0 + 4.36 -1.49 0.0 + 2.85 -5.0 0.0 + -2.67 2.73 0.0 + -2.67 3.48 0.0 + -4.46 3.48 0.0 + -0.85 3.48 0.0 + 3.48 1.56 0.0 + 2.86 2.73 0.0 + 3.48 2.1 0.0 + 4.14 1.0 0.0 + 4.14 1.49 0.0 + 5.0 1.0 0.0 + 4.36 1.56 0.0 + 4.36 1.49 0.0 + faces 56 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 2 3 4 1 2 3 4 1 + 5 4 3 1 5 4 3 1 + 4 5 6 1 4 5 6 1 + 7 6 5 1 7 6 5 1 + 6 8 9 1 6 8 9 1 + 10 9 8 1 10 9 8 1 + 11 0 12 1 11 0 12 1 + 2 12 0 1 2 12 0 1 + 12 2 13 1 12 2 13 1 + 4 13 2 1 4 13 2 1 + 13 4 14 1 13 4 14 1 + 6 14 4 1 6 14 4 1 + 14 15 16 1 14 15 16 1 + 17 11 18 1 17 11 18 1 + 12 18 11 1 12 18 11 1 + 18 12 19 1 18 12 19 1 + 13 19 12 1 13 19 12 1 + 19 13 20 1 19 13 20 1 + 14 20 13 1 14 20 13 1 + 20 14 21 1 20 14 21 1 + 21 22 20 1 21 22 20 1 + 23 17 24 1 23 17 24 1 + 18 24 17 1 18 24 17 1 + 25 18 26 1 25 18 26 1 + 19 26 18 1 19 26 18 1 + 27 19 28 1 27 19 28 1 + 28 29 27 1 28 29 27 1 + 30 20 22 1 30 20 22 1 + 31 14 16 1 31 14 16 1 + 32 33 34 1 32 33 34 1 + 34 33 35 1 34 33 35 1 + 14 6 32 1 14 6 32 1 + 9 32 6 1 9 32 6 1 + 6 7 8 1 6 7 8 1 + 7 36 8 1 7 36 8 1 + 24 37 38 1 24 37 38 1 + 38 39 24 1 38 39 24 1 + 24 18 37 1 24 18 37 1 + 18 25 37 1 18 25 37 1 + 19 27 26 1 19 27 26 1 + 27 40 26 1 27 40 26 1 + 19 20 28 1 19 20 28 1 + 20 30 28 1 20 30 28 1 + 14 31 41 1 14 31 41 1 + 22 42 30 1 22 42 30 1 + 21 41 43 1 21 41 43 1 + 21 14 41 1 21 14 41 1 + 41 44 45 1 41 44 45 1 + 31 46 44 1 31 46 44 1 + 41 31 44 1 41 31 44 1 + 34 15 14 1 34 15 14 1 + 14 32 34 1 14 32 34 1 + 45 47 41 1 45 47 41 1 + 45 48 47 1 45 48 47 1 + tverts 49 + 12.0 -29.5 0 + 12.0 -30.0 0 + 12.5 -29.5 0 + 12.5 -30.0 0 + 13.0 -29.5 0 + 13.0 -30.0 0 + 13.5 -29.5 0 + 13.5 -30.0 0 + 13.5701 -29.8918 0 + 13.6964 -29.5 0 + 13.6964 -29.8918 0 + 12.0 -29.0 0 + 12.5 -29.0 0 + 13.0 -29.0 0 + 13.5 -29.0 0 + 13.8281 -29.2 0 + 14.0 -29.2 0 + 12.0 -28.5 0 + 12.5 -28.5 0 + 13.0 -28.5 0 + 13.5 -28.5 0 + 13.5701 -28.5798 0 + 13.5708 -28.5 0 + 12.0 -28.4298 0 + 12.1082 -28.4298 0 + 12.5 -28.4536 0 + 12.8294 -28.4536 0 + 13.0 -28.3036 0 + 13.447 -28.4536 0 + 13.447 -28.3036 0 + 13.5 -28.4536 0 + 14.0 -29.0 0 + 13.6964 -29.3119 0 + 13.8729 -29.3119 0 + 13.8281 -29.2983 0 + 13.8729 -29.2983 0 + 13.5701 -30.0 0 + 12.4668 -28.4536 0 + 12.4668 -28.3036 0 + 12.1082 -28.3036 0 + 12.8294 -28.3036 0 + 13.6964 -28.6881 0 + 13.5712 -28.4536 0 + 13.6964 -28.579 0 + 13.8281 -28.8 0 + 13.8281 -28.7018 0 + 14.0 -28.8 0 + 13.8729 -28.6881 0 + 13.8729 -28.7018 0 +endnode +#Tile trimesh node +node trimesh Object152 + parent tin01_d15_02 + position 4.78 -2.03 1.28 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -72.0 -114.0 22.0 + bitmap tin01_lwalls + verts 28 + -0.28 -2.97 1.72 + -1.03 -2.58 1.72 + -1.03 -2.97 1.72 + -1.03 -0.47 1.72 + -0.28 -0.47 1.72 + -1.03 0.23 1.72 + -1.03 0.23 0.21 + -1.03 -0.47 0.21 + -1.3 -0.47 -1.28 + -1.3 -2.43 -1.28 + -1.3 -2.43 -0.76 + -1.3 -0.47 0.21 + -1.3 0.47 -1.28 + -1.3 -2.58 -0.6 + -1.3 -2.58 0.21 + -1.03 -2.58 0.21 + -1.3 0.47 0.21 + -0.42 0.47 0.21 + -0.42 0.47 -1.28 + -0.14 0.23 0.21 + -0.42 0.69 -0.63 + -0.42 0.69 0.21 + -0.42 0.54 -0.8 + -0.42 0.54 -1.28 + -0.14 0.69 0.21 + -0.14 0.23 1.72 + -0.14 0.69 1.72 + -0.14 -0.47 1.72 + faces 34 + 0 1 2 1 0 1 2 1 + 3 4 5 1 3 4 5 1 + 1 0 4 1 1 0 4 1 + 5 6 3 2 6 7 8 5 + 7 1 3 2 9 10 8 5 + 8 9 10 1 11 12 13 5 + 8 11 12 1 11 14 15 5 + 10 13 14 1 13 16 17 5 + 14 11 10 1 17 14 13 5 + 14 15 11 4 18 19 20 5 + 6 16 7 4 21 22 23 5 + 17 18 12 2 24 25 26 5 + 12 16 17 2 26 27 24 5 + 19 17 16 4 28 29 30 5 + 16 6 19 4 30 31 28 5 + 5 19 6 8 32 33 34 5 + 20 17 21 1 35 36 37 5 + 17 20 22 1 36 35 38 5 + 22 23 18 1 38 39 40 5 + 17 22 18 1 36 38 40 5 + 19 24 21 4 41 42 43 5 + 21 17 19 4 43 44 41 5 + 19 5 25 8 33 32 45 5 + 25 5 4 1 46 5 4 5 + 26 24 19 2 47 48 49 5 + 19 25 26 2 49 50 47 5 + 25 4 27 1 46 4 51 5 + 11 8 10 1 14 11 13 5 + 11 15 16 4 20 19 22 5 + 11 16 12 1 14 52 15 5 + 7 16 15 4 23 22 19 5 + 15 1 7 2 53 10 9 5 + 3 6 7 2 8 7 9 5 + 1 4 3 1 1 4 3 1 + tverts 54 + 0.0261747 0.803297 0 + 0.124177 0.990797 0 + 0.0261747 0.990797 0 + 0.616618 0.990797 0 + 0.676172 0.803297 0 + 0.826173 0.990797 0 + -0.0724325 0.858261 0 + -0.072433 0.481737 0 + 0.137123 0.858261 0 + 0.118448 0.481737 0 + 0.629564 0.858261 0 + 0.101419 0.0889372 0 + 0.592259 0.0889371 0 + 0.592258 0.218501 0 + 0.118273 0.462413 0 + -0.132498 0.0889372 0 + 0.629564 0.259198 0 + 0.629564 0.462413 0 + 1.652 0.394155 0 + 1.652 0.461155 0 + 1.29842 0.394155 0 + 1.125 0.461155 0 + 1.125 0.394155 0 + 1.2683 0.461155 0 + 0.576072 0.460794 0 + 0.576072 0.0873175 0 + 0.35538 0.0873175 0 + 0.35538 0.460794 0 + 0.644619 0.399275 0 + 0.576073 0.459339 0 + 0.355381 0.459339 0 + 0.422381 0.399275 0 + 0.42238 0.856641 0 + 0.644619 0.480117 0 + 0.42238 0.480117 0 + 0.436695 0.25179 0 + 0.491127 0.463813 0 + 0.436695 0.463813 0 + 0.474002 0.211093 0 + 0.474002 0.0903367 0 + 0.491126 0.0903366 0 + 0.426174 0.384852 0 + 0.573826 0.384852 0 + 0.573826 0.453399 0 + 0.486238 0.453399 0 + 0.64462 0.856641 0 + 0.826173 0.768558 0 + 0.436696 0.85966 0 + 0.436695 0.483137 0 + 0.551191 0.483137 0 + 0.551192 0.85966 0 + 0.676172 0.678297 0 + -0.132498 0.462413 0 + 0.629564 0.481737 0 +endnode +node aabb wok + parent tin01_d15_02 + position 0.0 0.0 1.5 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 0.0 0.0 + multimaterial 20 + Dirt + Obscuring + Grass + Stone + Wood + Water + Nonwalk + Transparent + Carpet + Metal + Puddles + Swamp + Mud + Leaves + Lava + BottomlessPit + DeepWater + Door + Snow + Sand + ambient 0.0 0.0 0.0 + diffuse 0.6 0.34 0.16 + specular 0.0 0.0 0.0 + shininess 10.0 + bitmap Wood + verts 34 + -4.46 2.85 -1.5 + -2.67 3.48 -1.5 + -4.46 3.48 -1.5 + 2.85 2.1 -1.5 + 2.86 2.73 -1.5 + -2.67 2.73 -1.5 + -5.0 -5.0 -1.5 + 2.85 -5.0 -1.5 + 2.85 -4.46 -1.5 + 3.48 -1.56 -1.5 + 4.14 1.0 -1.5 + 4.14 -1.0 -1.5 + 5.0 1.0 -1.5 + 5.0 -1.0 -1.5 + -5.0 2.85 -1.5 + -4.46 2.85 1.5 + -5.0 2.85 1.5 + -4.46 3.48 1.5 + 2.86 2.73 1.5 + -2.67 3.48 1.5 + -2.67 2.73 1.5 + 2.85 2.1 1.5 + 4.14 1.0 1.5 + 5.0 1.0 1.5 + 4.14 -1.0 1.5 + 5.0 -1.0 1.5 + 3.48 -1.56 1.5 + 3.48 -4.46 -1.5 + 3.48 -4.46 1.5 + 2.85 -4.46 1.5 + 2.85 -5.0 1.5 + -5.0 5.0 1.5 + 5.0 5.0 1.5 + 5.0 -5.0 1.5 + faces 54 + 0 1 2 0 0 0 0 5 + 3 4 5 0 0 0 0 5 + 6 7 8 0 0 0 0 5 + 9 5 0 0 0 0 0 5 + 9 3 5 0 0 0 0 5 + 10 3 9 0 0 0 0 5 + 10 9 11 0 0 0 0 5 + 12 10 11 0 0 0 0 5 + 13 12 11 0 0 0 0 5 + 14 0 15 0 0 0 0 2 + 14 15 16 0 0 0 0 2 + 0 2 17 0 0 0 0 2 + 0 17 15 0 0 0 0 2 + 5 4 18 0 0 0 0 2 + 19 1 20 0 0 0 0 2 + 4 3 21 0 0 0 0 2 + 4 21 18 0 0 0 0 2 + 3 10 22 0 0 0 0 2 + 3 22 21 0 0 0 0 2 + 10 12 23 0 0 0 0 2 + 10 23 22 0 0 0 0 2 + 13 11 24 0 0 0 0 2 + 13 24 25 0 0 0 0 2 + 11 9 26 0 0 0 0 2 + 11 26 24 0 0 0 0 2 + 9 27 28 0 0 0 0 2 + 9 28 26 0 0 0 0 2 + 27 8 29 0 0 0 0 2 + 27 29 28 0 0 0 0 2 + 8 7 30 0 0 0 0 2 + 8 30 29 0 0 0 0 2 + 16 15 31 0 0 0 0 2 + 15 17 31 0 0 0 0 2 + 19 18 31 0 0 0 0 2 + 18 21 22 0 0 0 0 2 + 18 22 32 0 0 0 0 2 + 22 23 32 0 0 0 0 2 + 31 18 32 0 0 0 0 2 + 25 24 33 0 0 0 0 2 + 24 26 33 0 0 0 0 2 + 26 28 33 0 0 0 0 2 + 28 29 30 0 0 0 0 2 + 28 30 33 0 0 0 0 2 + 6 0 14 0 0 0 0 5 + 20 1 5 0 0 0 0 2 + 20 5 18 0 0 0 0 2 + 17 19 31 0 0 0 0 2 + 2 19 17 0 0 0 0 2 + 19 20 18 0 0 0 0 2 + 2 1 19 0 0 0 0 2 + 0 5 1 0 0 0 0 5 + 0 6 8 0 0 0 0 5 + 0 8 9 0 0 0 0 5 + 9 8 27 0 0 0 0 5 + aabb -5.0 -5.0 -1.5 5.0 5.0 1.5 -1 + -5.0 -5.0 -1.5 3.48 5.0 1.5 -1 + -5.0 -5.0 -1.5 3.48 2.85 -1.5 -1 + -5.0 -5.0 -1.5 2.85 2.85 -1.5 -1 + -5.0 -5.0 -1.5 -4.46 2.85 -1.5 43 + -5.0 -5.0 -1.5 2.85 2.85 -1.5 51 + -5.0 -5.0 -1.5 3.48 2.85 -1.5 -1 + -4.46 -1.56 -1.5 3.48 2.85 -1.5 3 + -5.0 -5.0 -1.5 3.48 2.85 -1.5 -1 + -5.0 -5.0 -1.5 2.85 -4.46 -1.5 2 + -4.46 -4.46 -1.5 3.48 2.85 -1.5 52 + -5.0 2.73 -1.5 2.86 5.0 1.5 -1 + -5.0 2.73 -1.5 -2.67 3.48 1.5 -1 + -4.46 2.73 -1.5 -2.67 3.48 -1.5 -1 + -4.46 2.85 -1.5 -2.67 3.48 -1.5 0 + -4.46 2.73 -1.5 -2.67 3.48 -1.5 50 + -5.0 2.73 -1.5 -2.67 3.48 1.5 -1 + -5.0 2.85 -1.5 -4.46 3.48 1.5 -1 + -5.0 2.85 -1.5 -4.46 2.85 1.5 9 + -4.46 2.85 -1.5 -4.46 3.48 1.5 11 + -4.46 2.73 -1.5 -2.67 3.48 1.5 -1 + -4.46 3.48 -1.5 -2.67 3.48 1.5 49 + -2.67 2.73 -1.5 -2.67 3.48 1.5 44 + -5.0 2.73 -1.5 2.86 5.0 1.5 -1 + -5.0 2.73 -1.5 2.86 3.48 1.5 -1 + -5.0 2.85 -1.5 -2.67 3.48 1.5 -1 + -5.0 2.85 -1.5 -4.46 3.48 1.5 -1 + -5.0 2.85 -1.5 -4.46 2.85 1.5 10 + -4.46 2.85 -1.5 -4.46 3.48 1.5 12 + -4.46 3.48 -1.5 -2.67 3.48 1.5 47 + -2.67 2.73 -1.5 2.86 3.48 1.5 -1 + -2.67 2.73 -1.5 -2.67 3.48 1.5 14 + -2.67 2.73 -1.5 2.86 2.73 1.5 45 + -5.0 2.73 1.5 2.86 5.0 1.5 -1 + -5.0 2.85 1.5 -2.67 5.0 1.5 -1 + -5.0 2.85 1.5 -4.46 5.0 1.5 -1 + -5.0 2.85 1.5 -4.46 5.0 1.5 31 + -5.0 2.85 1.5 -4.46 5.0 1.5 32 + -5.0 3.48 1.5 -2.67 5.0 1.5 46 + -5.0 2.73 1.5 2.86 5.0 1.5 -1 + -5.0 2.73 1.5 2.86 5.0 1.5 33 + -2.67 2.73 1.5 2.86 3.48 1.5 48 + -5.0 -5.0 -1.5 5.0 5.0 1.5 -1 + -5.0 -5.0 -1.5 5.0 5.0 1.5 -1 + -5.0 -1.56 -1.5 5.0 5.0 1.5 -1 + -5.0 2.1 -1.5 5.0 5.0 1.5 -1 + -2.67 2.1 -1.5 2.86 2.73 1.5 -1 + -2.67 2.1 -1.5 2.86 2.73 -1.5 1 + -2.67 2.73 -1.5 2.86 2.73 1.5 13 + -5.0 2.73 1.5 5.0 5.0 1.5 37 + -2.67 -1.56 -1.5 3.48 2.73 -1.5 4 + 2.85 -5.0 -1.5 4.14 2.73 1.5 -1 + 2.85 -5.0 -1.5 3.48 -1.56 1.5 -1 + 2.85 -5.0 -1.5 3.48 -4.46 1.5 -1 + 2.85 -5.0 -1.5 3.48 -4.46 1.5 -1 + 2.85 -5.0 -1.5 2.85 -4.46 1.5 29 + 2.85 -4.46 -1.5 3.48 -4.46 1.5 27 + 2.85 -5.0 -1.5 3.48 -4.46 1.5 -1 + 2.85 -5.0 -1.5 3.48 -4.46 1.5 -1 + 2.85 -5.0 -1.5 2.85 -4.46 1.5 30 + 2.85 -4.46 -1.5 3.48 -4.46 1.5 28 + 2.85 -5.0 1.5 3.48 -4.46 1.5 41 + 2.85 -4.46 -1.5 3.48 -1.56 -1.5 53 + 2.85 1.0 -1.5 4.14 2.73 1.5 -1 + 2.85 2.1 -1.5 2.86 2.73 1.5 15 + 2.85 1.0 -1.5 4.14 2.73 1.5 -1 + 2.85 1.0 -1.5 4.14 2.73 1.5 -1 + 2.85 2.1 -1.5 2.86 2.73 1.5 16 + 2.85 1.0 -1.5 4.14 2.1 1.5 18 + 2.85 1.0 1.5 4.14 2.73 1.5 34 + 2.85 -5.0 -1.5 5.0 5.0 1.5 -1 + 2.85 -5.0 -1.5 5.0 -1.0 1.5 -1 + 2.85 -5.0 -1.5 5.0 -1.0 1.5 -1 + 2.85 -5.0 -1.5 5.0 -1.56 1.5 -1 + 2.85 -5.0 1.5 5.0 -4.46 1.5 42 + 3.48 -5.0 -1.5 5.0 -1.56 1.5 -1 + 3.48 -5.0 1.5 5.0 -1.56 1.5 40 + 3.48 -4.46 -1.5 3.48 -1.56 1.5 25 + 3.48 -5.0 -1.5 5.0 -1.0 1.5 -1 + 3.48 -4.46 -1.5 3.48 -1.56 1.5 26 + 3.48 -5.0 1.5 5.0 -1.0 1.5 39 + 3.48 -5.0 -1.5 5.0 -1.0 1.5 -1 + 4.14 -5.0 1.5 5.0 -1.0 1.5 38 + 3.48 -1.56 -1.5 5.0 -1.0 1.5 -1 + 3.48 -1.56 -1.5 5.0 -1.0 1.5 -1 + 3.48 -1.56 -1.5 4.14 -1.0 1.5 23 + 4.14 -1.0 -1.5 5.0 -1.0 1.5 21 + 3.48 -1.56 -1.5 5.0 -1.0 1.5 -1 + 3.48 -1.56 -1.5 4.14 -1.0 1.5 24 + 4.14 -1.0 -1.5 5.0 -1.0 1.5 22 + 2.85 -1.56 -1.5 5.0 5.0 1.5 -1 + 2.85 -1.56 -1.5 5.0 2.1 -1.5 -1 + 3.48 -1.56 -1.5 5.0 1.0 -1.5 -1 + 3.48 -1.56 -1.5 4.14 1.0 -1.5 6 + 4.14 -1.0 -1.5 5.0 1.0 -1.5 8 + 2.85 -1.56 -1.5 5.0 2.1 -1.5 -1 + 4.14 -1.0 -1.5 5.0 1.0 -1.5 7 + 2.85 -1.56 -1.5 4.14 2.1 -1.5 5 + 2.85 1.0 -1.5 5.0 5.0 1.5 -1 + 2.85 1.0 -1.5 5.0 2.1 1.5 -1 + 2.85 1.0 -1.5 5.0 2.1 1.5 -1 + 2.85 1.0 -1.5 4.14 2.1 1.5 17 + 4.14 1.0 -1.5 5.0 1.0 1.5 19 + 4.14 1.0 -1.5 5.0 1.0 1.5 20 + 2.86 1.0 1.5 5.0 5.0 1.5 -1 + 4.14 1.0 1.5 5.0 5.0 1.5 36 + 2.86 1.0 1.5 5.0 5.0 1.5 35 +endnode +#Tile trimesh node +node trimesh Box676 + parent tin01_d15_02 + position 0.72 3.44 1.51 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 2.0 -4.5 4.0 + bitmap tin01_furnish2 + verts 8 + -1.73 -0.39 0.0 + -1.73 0.3 0.0 + 1.77 0.3 0.0 + 1.77 -0.39 0.0 + -1.73 -0.39 0.08 + 1.77 -0.39 0.08 + -1.73 -0.28 0.08 + 1.77 -0.28 0.08 + faces 6 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 4 5 6 1 4 5 6 1 + 7 6 5 1 7 6 5 1 + 0 3 5 2 8 9 10 5 + 5 4 0 2 10 11 8 5 + tverts 12 + 0.194131 1.22052 0 + 0.503805 1.22052 0 + 0.503804 -0.220523 0 + 0.194131 -0.220523 0 + 0.0658505 1.80023 0 + 0.0658501 0.359187 0 + 0.11551 1.80023 0 + 0.11551 0.359187 0 + 0.339425 -0.220523 0 + 0.339425 1.22052 0 + 0.306823 1.22052 0 + 0.306823 -0.220523 0 +endnode +#Tile trimesh node +node trimesh Line81 + parent tin01_d15_02 + position 3.93 4.34 2.99 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center -393.0 -434.0 1.0 + bitmap tin01_black + verts 15 + 1.07 -9.34 0.01 + 1.07 -6.84 0.01 + 0.57 -9.34 0.01 + 0.57 -6.84 0.01 + 0.57 -1.84 0.01 + 0.71 -1.84 0.01 + 0.57 -0.59 0.01 + 1.07 0.66 0.01 + -0.65 -0.59 0.01 + -8.93 0.66 0.01 + -0.65 0.16 0.01 + -3.93 0.16 0.01 + -6.43 0.16 0.01 + -8.93 0.16 0.01 + 1.07 -1.84 0.01 + faces 11 + 0 1 2 1 0 1 2 1 + 2 1 3 1 2 1 3 1 + 4 5 6 1 4 5 6 1 + 6 7 8 1 6 7 8 1 + 7 9 10 1 7 9 10 1 + 10 9 11 1 10 9 11 1 + 11 9 12 1 11 9 12 1 + 12 9 13 1 12 9 13 1 + 7 10 8 1 7 10 8 1 + 6 5 7 1 6 5 7 1 + 14 7 5 1 14 7 5 1 + tverts 15 + -134.5 -49.5 0 + -134.5 -47.0 0 + -135.0 -49.5 0 + -135.0 -47.0 0 + -135.0 -42.0 0 + -134.861 -42.0 0 + -135.0 -40.7479 0 + -134.5 -39.5 0 + -136.222 -40.75 0 + -144.5 -39.5 0 + -136.215 -40.0 0 + -139.5 -40.0 0 + -142.0 -40.0 0 + -144.5 -40.0 0 + -134.5 -42.0 0 +endnode +#Tile trimesh node +node trimesh Line663 + parent tin01_d15_02 + position 4.64 1.63 3.01 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.5 -163.0 -1.0 + bitmap tin01_black + verts 14 + 0.36 0.87 -0.01 + 0.0 0.87 -0.01 + 0.0 0.17 -0.01 + 0.36 -0.63 -0.01 + 0.0 -0.29 -0.01 + -0.35 -0.63 -0.01 + -0.35 -0.29 -0.01 + 0.0 -3.43 -0.01 + 0.0 -4.13 -0.01 + 0.36 -4.13 -0.01 + 0.36 -2.63 -0.01 + 0.0 -2.97 -0.01 + -0.35 -2.63 -0.01 + -0.35 -2.97 -0.01 + faces 10 + 0 1 2 1 0 1 2 1 + 3 0 2 1 3 0 2 1 + 3 2 4 1 3 2 4 1 + 5 3 4 1 5 3 4 1 + 5 4 6 1 5 4 6 1 + 7 8 9 1 7 8 9 1 + 7 9 10 1 7 9 10 1 + 11 7 10 1 11 7 10 1 + 11 10 12 1 11 10 12 1 + 13 11 12 1 13 11 12 1 + tverts 14 + 0.0005035 0.999501 0 + 0.0004995 0.491779 0 + 0.140357 0.49178 0 + 0.300201 0.9995 0 + 0.231865 0.491777 0 + 0.300201 0.0005006 0 + 0.231865 0.0005005 0 + 0.859643 0.491779 0 + 0.999501 0.491777 0 + 0.999497 0.999499 0 + 0.699799 0.999499 0 + 0.768135 0.491777 0 + 0.699799 0.0004999 0 + 0.768135 0.0004996 0 +endnode +#Tile trimesh node +node trimesh Mesh509 + parent tin01_d15_02 + position 4.4 0.0 3.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 0.0 -0.5 + bitmap tin01_door2 + verts 23 + -0.11 1.34 -0.17 + -0.11 1.0 -0.17 + -0.26 0.95 -0.01 + -0.26 1.49 -0.01 + -0.26 0.95 0.16 + -0.26 1.49 0.16 + -0.11 -1.0 -0.17 + -0.26 -0.95 -0.01 + -0.11 0.0 -0.17 + -0.26 0.0 -0.01 + -0.26 -0.95 0.16 + -0.26 0.0 0.16 + -0.26 -1.49 0.16 + 0.24 -1.49 0.16 + 0.24 1.49 0.16 + -0.26 -1.49 -0.01 + -0.11 -1.34 -0.17 + 0.24 -1.34 -0.17 + 0.26 -1.34 -0.17 + 0.24 -1.49 -0.01 + 0.24 1.49 -0.01 + 0.26 1.34 -0.17 + 0.24 1.34 -0.17 + faces 31 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 3 2 4 2 3 2 4 1 + 4 5 3 2 4 5 3 1 + 6 7 8 1 6 7 8 1 + 9 8 7 1 9 8 7 1 + 7 10 9 2 7 10 9 1 + 11 9 10 2 11 9 10 1 + 10 12 13 1 12 13 14 1 + 13 14 11 1 14 15 16 1 + 13 11 10 1 14 16 12 1 + 15 16 17 4 17 18 19 1 + 17 18 19 4 19 20 21 1 + 17 19 15 4 19 21 17 1 + 15 19 12 8 17 21 22 1 + 13 12 19 8 23 22 21 1 + 6 16 7 1 1 0 2 1 + 15 7 16 1 3 2 0 1 + 7 15 10 2 2 3 4 1 + 12 10 15 2 24 4 3 1 + 9 2 8 1 25 26 27 1 + 1 8 2 1 28 27 26 1 + 11 4 9 2 29 30 25 1 + 2 9 4 2 26 25 30 1 + 14 5 4 1 15 31 32 1 + 14 4 11 1 15 32 16 1 + 3 20 21 4 17 21 20 1 + 22 0 3 4 19 18 17 1 + 21 22 3 4 20 19 17 1 + 20 3 14 8 21 17 23 1 + 5 14 3 8 22 23 17 1 + tverts 33 + 0.334277 0.317374 0 + 0.147514 0.317374 0 + 0.147514 0.414929 0 + 0.405369 0.414929 0 + 0.147514 0.517406 0 + 0.399739 0.584166 0 + 0.394983 0.372286 0 + 0.394983 0.437401 0 + 0.0149826 0.372286 0 + 0.0149826 0.437401 0 + 0.394983 0.505801 0 + 0.0149826 0.505801 0 + 0.0553935 0.190571 0 + 0.0553935 0.0142821 0 + 0.197842 0.0142824 0 + 0.197843 0.985718 0 + 0.0553936 0.500001 0 + 0.0517443 0.437877 0 + 0.099957 0.356483 0 + 0.21283 0.356483 0 + 0.218458 0.356483 0 + 0.25508 0.437877 0 + 0.0517443 0.523377 0 + 0.25508 0.523377 0 + 0.405369 0.517406 0 + 0.0165284 0.440258 0 + 0.396528 0.440258 0 + 0.0165284 0.375143 0 + 0.396528 0.375143 0 + 0.0165284 0.508658 0 + 0.396528 0.508658 0 + 0.0553937 0.985717 0 + 0.0553937 0.809429 0 +endnode +#Tile trimesh node +node trimesh Mesh3834 + parent tin01_d15_02 + position 3.37 2.62 4.28 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.499998 0.499998 -50.5 + bitmap tin01_door2 + verts 16 + -0.37 -0.37 -0.07 + -0.37 0.38 -0.07 + -0.37 -0.37 -1.28 + -0.37 0.38 -1.28 + -0.52 -0.52 0.1 + 0.53 -0.52 0.1 + 0.53 -0.52 0.27 + -0.52 -0.52 0.27 + 0.53 0.53 0.1 + 0.53 0.53 0.27 + -0.52 0.53 0.1 + -0.52 0.53 0.27 + 0.38 -0.37 -1.28 + 0.38 0.38 -1.28 + 0.38 0.38 -0.07 + 0.38 -0.37 -0.07 + faces 24 + 0 1 2 1 0 1 2 3 + 3 2 1 1 3 2 1 3 + 4 5 6 1 4 5 6 1 + 6 7 4 1 6 7 4 1 + 5 8 9 2 8 9 10 1 + 9 6 5 2 10 11 8 1 + 8 10 11 1 5 12 13 1 + 11 9 8 1 13 6 5 1 + 10 4 7 2 9 8 11 1 + 7 11 10 2 11 10 9 1 + 12 13 14 1 14 15 16 1 + 14 15 12 1 16 17 14 1 + 13 3 1 2 18 19 20 1 + 1 14 13 2 20 21 18 1 + 12 15 2 2 22 23 24 5 + 0 2 15 2 25 24 23 5 + 0 15 5 4 26 27 5 1 + 5 4 0 4 5 4 26 1 + 15 14 8 8 28 29 9 1 + 8 5 15 8 9 8 28 1 + 14 1 10 4 27 26 12 1 + 10 8 14 4 12 5 27 1 + 1 0 4 8 30 31 8 1 + 4 10 1 8 8 9 30 1 + tverts 32 + 0.395638 0.526576 0 + 0.0501187 0.526576 0 + 0.395638 0.174571 0 + 0.0501186 0.174704 0 + 0.062259 0.92544 0 + 0.3898 0.92544 0 + 0.3898 0.99029 0 + 0.062259 0.99029 0 + 0.388822 0.913771 0 + 0.0570302 0.913771 0 + 0.0570302 0.981379 0 + 0.388822 0.981379 0 + 0.0622591 0.92544 0 + 0.0622591 0.99029 0 + 0.0495125 0.659307 0 + 0.397992 0.659307 0 + 0.397992 0.991104 0 + 0.0495127 0.991104 0 + 0.0551109 0.131306 0 + 0.385624 0.131306 0 + 0.385624 0.533417 0 + 0.055111 0.533417 0 + 0.39879 0.174919 0 + 0.39879 0.528703 0 + 0.047924 0.174272 0 + 0.047924 0.528703 0 + 0.108877 0.863705 0 + 0.343182 0.863705 0 + 0.341599 0.849409 0 + 0.104253 0.849409 0 + 0.104253 0.84941 0 + 0.341599 0.84941 0 +endnode +#Tile trimesh node +node trimesh Object1442 + parent tin01_d15_02 + position -4.79 3.36 0.33 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 6.0 -6.0 117.0 + bitmap tin01_door2 + verts 14 + 0.18 -0.36 0.35 + 0.18 0.12 0.35 + 0.18 0.12 1.16 + 0.33 0.12 0.19 + 0.33 -0.51 0.19 + -0.21 -0.36 0.35 + -0.21 -0.51 0.19 + 0.33 0.12 -0.33 + 0.33 -0.51 -0.33 + -0.21 -0.51 -0.33 + -0.21 -0.36 2.67 + 0.18 -0.36 2.67 + 0.18 0.39 1.16 + 0.18 0.39 2.67 + faces 14 + 0 1 2 1 0 1 2 5 + 1 0 3 2 3 4 5 1 + 4 3 0 2 6 5 4 1 + 0 5 6 4 7 8 9 1 + 6 4 0 4 9 10 7 1 + 3 4 7 1 5 6 11 1 + 8 7 4 1 12 11 6 1 + 4 6 8 8 10 9 13 1 + 9 8 6 8 14 13 9 1 + 5 0 10 8 15 16 17 3 + 11 10 0 8 18 17 16 3 + 12 13 11 1 19 20 21 5 + 11 0 2 1 21 0 2 5 + 11 2 12 1 21 2 19 5 + tverts 22 + 0.047924 -0.502544 0 + 0.274456 -0.502544 0 + 0.276247 -0.265795 0 + 0.0546721 1.05077 0 + 0.300601 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.305378 1.04315 0 + 0.167227 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.357965 0.694046 0 + 0.173247 0.694046 0 + 0.215041 -0.497611 0 + 0.395638 -0.497611 0 + 0.215041 0.174409 0 + 0.395638 0.174409 0 + 0.39879 -0.26474 0 + 0.39879 0.174359 0 + 0.047924 0.174109 0 +endnode +#Tile trimesh node +node trimesh Box3055 + parent tin01_d15_02 + position 3.37 -4.8 0.33 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -7.0 7.0 117.0 + bitmap tin01_door2 + verts 14 + -0.37 0.19 0.35 + 0.11 0.19 0.35 + 0.11 0.34 0.19 + -0.52 0.34 0.19 + -0.37 -0.2 0.35 + -0.52 -0.2 0.19 + 0.11 0.34 -0.33 + -0.52 0.34 -0.33 + -0.52 -0.2 -0.33 + -0.37 0.19 2.67 + -0.37 -0.2 2.67 + 0.38 0.19 2.67 + 0.38 0.19 1.16 + 0.11 0.19 1.16 + faces 14 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 0 5 2 4 5 6 1 + 3 5 0 2 7 6 5 1 + 3 2 6 4 3 2 8 1 + 6 7 3 4 8 9 3 1 + 5 3 7 8 6 7 10 1 + 7 8 5 8 10 11 6 1 + 0 4 9 4 12 13 14 3 + 10 9 4 4 15 14 13 3 + 0 9 11 8 16 17 18 5 + 11 12 13 8 18 19 20 5 + 13 1 0 8 20 21 16 5 + 11 13 0 8 18 20 16 5 + tverts 22 + 0.300601 1.05077 0 + 0.0546721 1.05077 0 + 0.0514033 0.95261 0 + 0.349531 0.95261 0 + 0.167227 1.04315 0 + 0.305378 1.04315 0 + 0.173247 0.959772 0 + 0.357965 0.959772 0 + 0.0514033 0.639765 0 + 0.349531 0.639765 0 + 0.357965 0.694046 0 + 0.173247 0.694046 0 + 0.395638 -0.497611 0 + 0.215041 -0.497611 0 + 0.395638 0.174409 0 + 0.215041 0.174409 0 + 0.047924 -0.502544 0 + 0.047924 0.174109 0 + 0.39879 0.174359 0 + 0.39879 -0.26474 0 + 0.276247 -0.265795 0 + 0.274456 -0.502544 0 +endnode +#Tile trimesh node +node trimesh Box3056 + parent tin01_d15_02 + position 3.37 2.5 0.34 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -7.0 5.0 116.0 + bitmap tin01_door2 + verts 20 + 0.11 -0.25 0.34 + -0.37 -0.25 0.34 + 0.11 -0.4 0.18 + -0.52 -0.4 0.18 + -0.37 0.23 0.34 + -0.51 0.23 0.18 + 0.11 -0.4 0.0 + -0.52 -0.4 0.0 + -0.51 0.23 0.0 + 0.38 -0.25 2.66 + -0.37 -0.25 2.66 + 0.11 -0.25 1.15 + 0.38 -0.25 1.15 + -0.52 -0.4 -0.34 + 0.11 -0.4 -0.34 + -0.51 0.23 -0.34 + -0.52 0.0 -0.34 + -0.37 0.5 2.66 + -0.37 0.5 1.15 + -0.37 0.23 1.15 + faces 21 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 1 4 3 2 4 5 6 1 + 5 3 4 4 7 6 8 1 + 2 3 6 8 2 3 9 1 + 7 6 3 8 10 9 3 1 + 3 5 7 16 6 7 11 1 + 8 7 5 16 12 11 7 1 + 9 10 1 1 13 14 15 5 + 1 0 11 1 15 16 17 5 + 11 12 9 1 17 18 13 5 + 1 11 9 1 15 17 13 5 + 7 13 6 8 10 19 9 1 + 14 6 13 8 20 9 19 1 + 8 15 7 16 12 21 11 1 + 13 7 16 16 22 11 21 1 + 1 10 17 2 23 24 25 3 + 17 18 19 2 25 26 27 3 + 19 4 1 2 27 28 23 3 + 17 19 1 2 25 27 23 3 + 16 7 15 16 8 11 21 1 + tverts 29 + 0.0591759 1.05077 0 + 0.300601 1.05077 0 + 0.0559071 0.95261 0 + 0.349531 0.95261 0 + 0.305378 1.04315 0 + 0.045571 1.04315 0 + 0.357965 0.959772 0 + 0.0555729 0.959772 0 + 0.163018 0.694046 0 + 0.0559071 0.845122 0 + 0.349531 0.845122 0 + 0.357965 0.868473 0 + 0.0555728 0.868473 0 + 0.39879 0.174919 0 + 0.0534287 0.174272 0 + 0.0534287 -0.502544 0 + 0.272483 -0.502544 0 + 0.272414 -0.263925 0 + 0.39879 -0.263852 0 + 0.349531 0.639765 0 + 0.0559071 0.639765 0 + 0.0555728 0.694046 0 + 0.357965 0.694046 0 + 0.395638 -0.497611 0 + 0.395638 0.174571 0 + 0.0556233 0.174704 0 + 0.0556233 -0.261694 0 + 0.172152 -0.262098 0 + 0.170505 -0.497611 0 +endnode +node light tin01_d15_02ml1 + parent tin01_d15_02 + position 0.0 0.0 5.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 14.0 + multiplier 1.0 + color 0.0 0.0 0.0 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +node light tin01_d15_02ml2 + parent tin01_d15_02 + position -4.27787 1.11899 4.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 5.0 + multiplier 1.0 + color 0.00392157 0.00392157 0.00392157 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +#Tile trimesh node +node trimesh blacky01 + parent tin01_d15_02 + position -5.0 3.37 4.04 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 4 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 475.0 -362.0 4.5 + bitmap tin01_black + verts 16 + 8.75 -8.37 0.17 + 8.0 -8.37 0.17 + 8.0 -8.37 -1.04 + 8.75 -8.37 -1.04 + 0.0 -0.37 0.17 + 0.0 0.38 0.17 + 0.0 0.38 -1.04 + 0.0 -0.37 -1.04 + 0.0 1.13 -1.04 + 0.0 0.38 -1.04 + 9.5 -8.37 -1.04 + 8.75 -8.37 -1.04 + 0.0 1.13 1.13 + 0.0 0.38 1.13 + 9.5 -8.37 1.13 + 8.75 -8.37 1.13 + faces 8 + 2 3 0 1 2 3 0 1 + 1 2 0 1 1 2 0 1 + 6 7 4 1 6 7 4 1 + 5 6 4 1 5 6 4 1 + 11 10 14 0 21 23 14 1 + 11 14 15 0 21 14 15 1 + 8 9 13 0 20 22 13 1 + 8 13 12 0 20 13 12 1 + tverts 24 + 875.0 -837.0 0 + 800.0 -837.0 0 + 800.0 -837.0 0 + 875.0 -837.0 0 + 0.0 -37.0 0 + 0.0 38.0 0 + 0.0 38.0 0 + 0.0 -37.0 0 + 0.561882 2.71346 0 + -0.0569302 2.90096 0 + 0.440037 -0.0986032 0 + 0.235057 0.888933 0 + -0.451979 0.981082 0 + -0.451979 0.793582 0 + 0.1875 0.962454 0 + 0.1875 0.774954 0 + 1.68353 0.483769 0 + 1.60361 0.0 0 + 0.396393 0.483769 0 + 1.265 0.483769 0 + 1.999 0.0 0 + 1.999 0.0 0 + 0.000999212 0.0 0 + 0.000999033 0.0 0 +endnode +#Tile trimesh node +node trimesh pillprt01 + parent tin01_d15_02 + position -4.73 3.37 4.26 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -7.5 0.5 -65.5 + bitmap tin01_door2 + verts 13 + 0.12 -0.37 -0.55 + 0.12 0.38 -0.55 + -0.27 -0.37 -0.55 + 0.12 0.38 -1.26 + 0.12 -0.37 -1.26 + -0.27 -0.37 -1.26 + -0.27 -0.37 -0.05 + -0.27 0.38 -0.05 + -0.17 -0.37 -0.36 + -0.17 0.38 -0.36 + -0.17 -0.37 -0.05 + -0.17 0.38 -0.05 + -0.27 -0.37 -0.36 + faces 14 + 1 0 3 1 0 1 2 5 + 4 3 0 1 3 2 1 5 + 4 0 5 2 7 8 9 3 + 2 5 0 2 10 9 8 3 + 2 0 8 0 61 62 63 1 + 2 8 12 0 43 64 65 1 + 8 10 6 0 66 67 68 1 + 8 0 1 0 69 41 70 1 + 8 1 9 0 71 42 72 1 + 8 9 11 0 73 47 74 1 + 8 11 10 0 75 76 77 1 + 10 11 7 0 78 49 79 1 + 10 7 6 0 48 45 80 1 + 12 8 6 0 50 46 44 1 + tverts 101 + 0.39879 0.35 0 + 0.047924 0.35 0 + 0.39879 0.174359 0 + 0.047924 0.174109 0 + 0.0692728 0.653515 0 + 0.265279 0.653515 0 + 0.0692729 1.003 0 + 0.395638 0.174409 0 + 0.395638 0.35 0 + 0.215041 0.174409 0 + 0.215041 0.35 0 + 0.12013 0.470888 0 + 0.000249729 0.504188 0 + 0.18673 0.597428 0 + 0.12013 0.597428 0 + 0.000249773 0.697328 0 + 0.12013 0.797228 0 + 0.477454 0.504188 0 + 0.477454 0.597428 0 + 0.477454 0.697328 0 + 0.477454 0.763928 0 + 0.12013 0.470888 0 + 0.37987 0.470888 0 + 0.18673 0.597428 0 + 0.18673 0.597428 0 + 0.12013 0.597428 0 + 0.18673 0.597428 0 + 0.18673 0.797228 0 + 0.12013 0.797228 0 + 0.000249773 0.697328 0 + 0.477454 0.504188 0 + 0.000249773 0.697328 0 + 0.477454 0.697328 0 + 0.000249773 0.597428 0 + 0.477454 0.797228 0 + 0.000249773 0.597428 0 + 0.477454 0.797228 0 + 0.000249773 0.797228 0 + 0.000249773 0.697328 0 + 0.477454 0.763928 0 + 0.000249788 0.763928 0 + 0.0373349 0.154797 0 + 0.38537 0.154797 0 + 0.211353 0.219764 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.257757 0.307933 0 + 0.38537 0.307933 0 + 0.0373349 0.289371 0 + 0.38537 0.289371 0 + 0.211353 0.307933 0 + 0.037335 0.516754 0 + 0.38537 0.516754 0 + 0.211353 0.219764 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.164948 0.307933 0 + 0.0373349 0.307933 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.211353 0.307933 0 + 0.211353 0.219764 0 + 0.392331 0.219764 0 + 0.257757 0.307933 0 + 0.257757 0.307933 0 + 0.211353 0.307933 0 + 0.257757 0.307933 0 + 0.257757 0.451787 0 + 0.211353 0.451787 0 + 0.0373349 0.289371 0 + 0.38537 0.154797 0 + 0.0373349 0.289371 0 + 0.38537 0.289371 0 + 0.0373349 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.451787 0 + 0.0373349 0.289371 0 + 0.38537 0.335775 0 + 0.037335 0.335775 0 + 0.211353 0.219764 0 + 0.164948 0.307933 0 + 0.0303742 0.219764 0 + 0.211353 0.307933 0 + 0.164948 0.307933 0 + 0.164948 0.307933 0 + 0.211353 0.451787 0 + 0.164948 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.516754 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.38537 0.307933 0 + 0.0373349 0.451787 0 + 0.38537 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.335775 0 + 0.037335 0.335775 0 +endnode +#Tile trimesh node +node trimesh pillprt02 + parent tin01_d15_02 + position 3.37 -4.73 4.26 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.5 -7.5 -65.5 + bitmap tin01_door2 + verts 15 + 0.38 0.12 -0.55 + -0.37 0.12 -0.55 + 0.38 -0.27 -0.55 + -0.37 -0.27 -0.55 + -0.37 0.12 -1.26 + 0.38 0.12 -1.26 + 0.38 -0.27 -1.26 + -0.37 -0.27 -1.26 + -0.37 -0.27 -0.05 + 0.38 -0.27 -0.05 + -0.37 -0.17 -0.36 + 0.38 -0.17 -0.36 + -0.37 -0.17 -0.05 + 0.38 -0.17 -0.05 + -0.37 -0.27 -0.36 + faces 16 + 1 0 4 1 0 1 2 5 + 5 4 0 1 3 2 1 5 + 6 5 0 2 4 5 6 1 + 0 2 6 2 6 7 4 1 + 7 3 4 2 8 9 10 3 + 1 4 3 2 11 10 9 3 + 3 10 1 0 22 23 24 1 + 3 14 10 0 14 25 26 1 + 10 8 12 0 27 28 29 1 + 10 0 1 0 30 31 12 1 + 10 11 0 0 32 33 13 1 + 10 13 11 0 34 35 18 1 + 10 12 13 0 36 37 38 1 + 12 9 13 0 39 40 20 1 + 12 8 9 0 19 41 16 1 + 14 8 10 0 21 15 17 1 + tverts 42 + 0.047924 0.35 0 + 0.39879 0.35 0 + 0.047924 0.174109 0 + 0.39879 0.174359 0 + 0.265279 0.653515 0 + 0.0692728 0.653515 0 + 0.0692729 1.003 0 + 0.265279 1.003 0 + 0.215041 0.174409 0 + 0.215041 0.35 0 + 0.395638 0.174409 0 + 0.395638 0.35 0 + 0.037335 0.516754 0 + 0.38537 0.516754 0 + 0.211353 0.219764 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.164948 0.307933 0 + 0.0373349 0.307933 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.211353 0.307933 0 + 0.211353 0.219764 0 + 0.164948 0.307933 0 + 0.0303742 0.219764 0 + 0.211353 0.307933 0 + 0.164948 0.307933 0 + 0.164948 0.307933 0 + 0.211353 0.451787 0 + 0.164948 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.516754 0 + 0.037335 0.38218 0 + 0.38537 0.38218 0 + 0.38537 0.307933 0 + 0.0373349 0.451787 0 + 0.38537 0.307933 0 + 0.38537 0.451787 0 + 0.0373349 0.451787 0 + 0.037335 0.38218 0 + 0.38537 0.335775 0 + 0.037335 0.335775 0 +endnode +#Tile trimesh node +node trimesh roof01 + parent tin01_d15_02 + position 0.0 4.5 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -125.0 -575.0 183.0 + bitmap tin01_plank + verts 10 + -5.0 -2.0 1.83 + -4.78 -2.0 1.83 + -3.75 -2.8 1.83 + 2.5 -9.5 1.83 + 2.5 -9.28 1.83 + 2.5 -4.24 1.83 + 2.5 -7.0 1.83 + 2.5 -2.8 1.83 + -3.75 -2.0 1.83 + -5.0 -9.5 1.83 + faces 8 + 7 5 9 0 7 5 9 1 + 2 7 9 0 2 7 9 1 + 0 1 9 0 0 1 9 1 + 1 8 2 0 1 8 2 1 + 1 2 9 0 1 2 9 1 + 4 3 9 0 4 3 9 1 + 5 6 4 0 5 6 4 1 + 5 4 9 0 5 4 9 1 + tverts 10 + 0.000749588 1.49925 0 + 0.0447055 1.49925 0 + 0.2505 1.33941 0 + 1.49925 0.000749275 0 + 1.49925 0.0447053 0 + 1.49925 1.0517 0 + 1.49925 0.50025 0 + 1.49925 1.33941 0 + 0.2505 1.49925 0 + 0.00074923 0.000749633 0 +endnode +#Tile trimesh node +node trimesh roofrim01 + parent tin01_d15_02 + position 0.0 4.5 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -62.5 -512.5 91.5 + bitmap tin01_floor + verts 18 + -5.0 -0.75 0.0 + -5.0 -2.0 1.83 + -2.5 -1.54 0.0 + -2.5 -0.75 0.0 + -4.78 -0.75 0.0 + -4.78 -2.0 1.83 + -3.75 -2.8 1.83 + 3.75 -1.5 0.0 + 2.5 -2.8 1.83 + -3.75 -2.0 1.83 + 3.75 -9.5 0.0 + 2.5 -9.5 1.83 + 3.75 -4.24 0.0 + 3.75 -6.93 0.0 + 3.75 -9.28 0.0 + 2.5 -9.28 1.83 + 2.5 -4.24 1.83 + 2.5 -7.0 1.83 + faces 16 + 5 1 0 1 19 1 20 5 + 0 4 5 1 0 21 22 1 + 4 9 5 1 23 24 5 1 + 2 7 8 0 37 38 39 1 + 2 8 6 0 40 41 42 1 + 4 3 9 0 4 47 48 1 + 3 2 6 0 49 2 50 1 + 3 6 9 0 3 6 17 1 + 11 15 10 1 60 77 78 5 + 14 10 15 1 79 59 80 1 + 13 14 17 1 81 82 83 1 + 17 14 15 1 84 63 64 1 + 12 13 16 1 85 86 87 1 + 16 13 17 1 88 62 66 1 + 7 12 16 0 95 61 96 1 + 7 16 8 0 67 65 68 1 + tverts 97 + 0.5 -0.000875287 0 + 0.0 -0.000875361 0 + 0.5 0.179515 0 + 0.5 -0.000875644 0 + 0.5 0.0493601 0 + 0.0 0.04936 0 + 0.0 0.467227 0 + 0.5 1.99713 0 + 0.0 1.99713 0 + 0.5 1.42627 0 + 0.5 1.99713 0 + 0.5 1.94689 0 + 0.0 1.94689 0 + 0.0 1.7117 0 + 0.0 1.7117 0 + 0.5 0.179516 0 + 0.0 0.467228 0 + 0.0 0.284553 0 + 0.5 0.284553 0 + 0.0 0.04936 0 + 0.5 -0.000875287 0 + 0.5 0.0493601 0 + 0.0 0.04936 0 + 0.5 0.0493601 0 + 0.0 0.284553 0 + 0.0 1.94689 0 + 0.5 1.99713 0 + 0.5 1.94689 0 + 0.0 1.94689 0 + 0.5 1.41028 0 + 0.5 1.94689 0 + 0.0 1.7117 0 + 0.0 1.7117 0 + 0.5 1.71398 0 + 0.5 1.99713 0 + 0.0 1.42627 0 + 0.0 1.42627 0 + 0.5 0.562835 0 + 0.5 1.7117 0 + 0.0 1.42627 0 + 0.5 0.562835 0 + 0.0 1.42627 0 + 0.0 0.284553 0 + 0.5 0.284553 0 + 0.0 1.7117 0 + 0.5 0.179516 0 + 0.0 1.7117 0 + 0.5 0.569982 0 + 0.0 0.284553 0 + 0.5 -0.000875644 0 + 0.0 0.467227 0 + 0.5 0.5 0 + 0.5 0.000151828 0 + 0.0 0.00015175 0 + 0.5 0.815336 0 + 0.5 0.582427 0 + 0.5 0.0503872 0 + 0.0 0.0503871 0 + 0.0 0.815336 0 + 0.5 1.99815 0 + 0.0 1.99815 0 + 0.5 0.797069 0 + 0.5 1.41131 0 + 0.5 1.94792 0 + 0.0 1.94792 0 + 0.0 0.797069 0 + 0.0 1.4273 0 + 0.5 0.000152126 0 + 0.0 0.285581 0 + 0.0 0.0503871 0 + 0.5 0.000151828 0 + 0.5 0.0503872 0 + 0.0 0.0503871 0 + 0.5 0.0503872 0 + 0.5 0.582427 0 + 0.0 0.815336 0 + 0.0 0.815336 0 + 0.0 1.94792 0 + 0.5 1.99815 0 + 0.5 1.94792 0 + 0.0 1.94792 0 + 0.5 1.41131 0 + 0.5 1.94792 0 + 0.0 1.4273 0 + 0.0 1.4273 0 + 0.5 0.797069 0 + 0.5 1.41131 0 + 0.0 0.797069 0 + 0.0 0.797069 0 + 0.5 0.815336 0 + 0.0 0.815336 0 + 0.5 0.815336 0 + 0.5 1.99815 0 + 0.0 1.71272 0 + 0.0 1.71272 0 + 0.5 0.000152126 0 + 0.0 0.797069 0 +endnode +#Tile trimesh node +node trimesh topwall01 + parent tin01_d15_02 + position 4.37 4.21 1.39 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -455.0 -446.0 269.5 + bitmap tin01_wall2 + verts 54 + 0.13 -1.71 1.61 + 0.13 0.29 1.61 + -1.87 0.29 1.61 + -0.62 -1.21 1.61 + -4.37 0.29 1.61 + -6.87 0.29 1.61 + -6.87 -1.25 1.61 + -6.87 -0.46 1.61 + -9.37 0.29 1.61 + -9.37 -0.46 1.61 + -8.98 -0.46 1.61 + 0.13 -1.71 3.78 + 0.13 0.29 3.78 + -1.87 0.29 3.78 + -0.62 -1.21 3.78 + -4.37 0.29 3.78 + -6.87 0.29 3.78 + -6.87 -1.25 3.78 + -6.87 -0.46 3.78 + -9.37 0.29 3.78 + -9.37 -0.46 3.78 + -8.98 -0.46 3.78 + -5.39 -1.25 1.61 + -1.87 -0.46 1.61 + -4.37 -0.46 1.61 + -5.39 -0.46 1.61 + 0.13 0.29 1.61 + -0.62 -9.21 1.61 + -0.62 -9.21 3.78 + -0.62 -1.21 1.61 + -0.62 -6.64 1.61 + -0.62 -1.21 3.78 + -0.62 -4.21 3.78 + -0.62 -6.64 3.78 + -0.62 -2.99 2.61 + -0.62 -3.08 2.61 + -0.62 -4.21 2.61 + -0.62 -5.43 2.61 + -0.62 -6.01 1.61 + -0.62 -2.41 1.61 + 0.27 -6.01 1.61 + 0.27 -2.41 1.61 + 0.27 -2.99 1.61 + 0.27 -5.43 1.61 + 0.27 -5.43 2.61 + 0.27 -2.99 2.61 + 0.27 -2.99 2.31 + 0.27 -5.43 2.31 + 0.13 -9.21 1.61 + 0.13 -9.21 3.78 + 0.13 0.29 1.61 + 0.13 0.29 3.78 + -1.87 -1.21 1.61 + -1.37 -1.21 1.61 + faces 69 + 16 19 20 1 5 6 7 1 + 21 18 16 1 8 9 10 1 + 20 21 16 1 11 12 13 1 + 13 15 14 1 14 15 16 1 + 17 14 15 1 17 18 19 1 + 0 1 12 0 35 36 37 1 + 12 11 0 0 38 39 40 1 + 1 2 13 0 41 42 43 1 + 13 12 1 0 44 45 24 1 + 4 5 16 0 46 47 48 1 + 16 15 4 0 49 50 51 1 + 7 6 17 0 52 53 54 1 + 17 18 7 0 55 56 57 1 + 5 8 19 0 58 29 59 1 + 19 16 5 0 32 60 27 1 + 10 7 18 0 61 28 62 1 + 18 21 10 0 63 64 65 1 + 9 10 21 0 66 31 67 1 + 21 20 9 0 34 33 30 1 + 2 4 15 0 68 26 69 1 + 15 13 2 0 70 71 25 1 + 22 52 14 0 179 189 181 1 + 14 17 6 0 182 183 184 1 + 18 17 15 0 20 3 21 1 + 18 15 16 0 4 1 2 1 + 6 22 14 0 177 178 185 1 + 14 12 13 0 22 23 0 1 + 25 24 22 0 186 187 188 1 + 22 24 52 0 191 195 196 1 + 37 38 30 2 88 89 90 1 + 37 30 32 2 91 92 93 1 + 37 32 36 2 94 95 96 1 + 32 30 33 2 97 98 99 1 + 35 36 32 2 100 101 102 1 + 32 31 35 2 165 166 167 1 + 34 35 31 2 168 169 170 1 + 34 31 29 2 171 172 173 1 + 34 29 39 2 174 175 176 1 + 39 41 45 1 103 104 105 1 + 39 45 34 1 77 106 107 1 + 34 45 35 4 74 108 109 1 + 35 45 44 4 146 147 148 1 + 35 44 36 4 144 149 150 1 + 36 44 37 4 145 151 152 1 + 41 46 45 2 110 111 112 1 + 43 40 47 2 81 113 114 1 + 44 40 38 1 115 116 117 1 + 44 38 37 1 118 76 75 1 + 41 42 46 2 119 80 120 1 + 47 40 44 2 121 122 123 1 + 46 47 44 2 124 85 125 1 + 46 44 45 2 84 126 127 1 + 30 27 33 2 73 128 129 1 + 27 28 33 2 72 130 131 1 + 31 32 51 0 154 157 158 1 + 51 32 49 0 159 160 161 1 + 32 33 49 0 155 162 163 1 + 33 28 49 0 156 153 164 1 + 48 40 44 0 132 78 133 1 + 45 41 50 0 134 79 135 1 + 45 50 51 0 136 137 138 1 + 48 44 49 0 86 139 140 1 + 44 45 49 0 82 141 142 1 + 49 45 51 0 87 83 143 1 + 42 43 47 0 80 81 114 1 + 42 47 46 0 80 114 111 1 + 53 3 14 0 190 180 181 1 + 52 53 14 0 189 190 181 1 + 24 23 52 0 192 194 193 1 + tverts 197 + 0.540722 0.949694 0 + 0.0149317 0.949695 0 + -0.510858 0.949695 0 + -0.510858 0.625808 0 + -0.510858 0.791958 0 + -0.510858 0.949695 0 + -1.03665 0.949695 0 + -1.03665 0.791958 0 + -0.954625 0.791958 0 + -0.510858 0.791958 0 + -0.510858 0.949695 0 + -1.03665 0.791958 0 + -0.954625 0.791958 0 + -0.510858 0.949695 0 + 0.540722 0.949694 0 + 0.0149317 0.949695 0 + 0.540722 0.625808 0 + -0.510858 0.625808 0 + 0.540722 0.625808 0 + 0.0149317 0.949695 0 + -0.510858 0.791958 0 + 0.0149317 0.949695 0 + 0.540722 0.625808 0 + 0.961353 0.949694 0 + 0.000999153 0.0 0 + 0.421631 0.0 0 + 0.947421 0.0 0 + 1.47321 0.0 0 + 0.526789 0.0 0 + 1.999 0.0 0 + 0.000999153 0.0 0 + 0.0830225 0.0 0 + 1.999 0.5 0 + 0.000999153 0.5 0 + 0.0830225 0.5 0 + 1.57837 0.0 0 + 1.999 0.0 0 + 1.999 0.5 0 + 1.999 0.5 0 + 1.57837 0.5 0 + 1.57837 0.0 0 + 0.000999153 0.0 0 + 0.421631 0.0 0 + 0.421631 0.5 0 + 0.421631 0.5 0 + 0.000999153 0.5 0 + 0.947421 0.0 0 + 1.47321 0.0 0 + 1.47321 0.5 0 + 1.47321 0.5 0 + 0.947421 0.5 0 + 0.947421 0.0 0 + 0.158736 0.0 0 + 0.324886 0.0 0 + 0.324886 0.5 0 + 0.324886 0.5 0 + 0.158736 0.5 0 + 0.158736 0.0 0 + 1.47321 0.0 0 + 1.999 0.5 0 + 1.47321 0.5 0 + 0.0830225 0.0 0 + 0.526789 0.5 0 + 0.526789 0.5 0 + 0.0830225 0.5 0 + 0.0830225 0.0 0 + 0.000999153 0.0 0 + 0.0830225 0.5 0 + 0.421631 0.0 0 + 0.947421 0.5 0 + 0.947421 0.5 0 + 0.421631 0.5 0 + 1.999 0.00080335 0 + 1.46634 0.00080335 0 + 0.185462 0.57959 0 + 0.185462 0.235009 0 + 0.185462 0.00080335 0 + 1.81454 0.00080335 0 + 0.664236 0.00080335 0 + 1.41038 0.00080335 0 + 0.709834 0.00080335 0 + 1.21555 0.00080335 0 + 0.784448 0.235009 0 + 1.29017 0.235009 0 + 0.709834 0.164747 0 + 1.21555 0.164747 0 + 0.000998914 0.00080335 0 + 0.000998914 0.5 0 + 1.21555 0.235009 0 + 1.33576 0.00080335 0 + 1.46634 0.00080335 0 + 1.21555 0.235009 0 + 1.46634 0.00080335 0 + 0.962693 0.5 0 + 1.21555 0.235009 0 + 0.962693 0.5 0 + 0.962693 0.235009 0 + 0.962693 0.5 0 + 1.46634 0.00080335 0 + 1.46634 0.5 0 + 0.728487 0.235009 0 + 0.962693 0.235009 0 + 0.962693 0.5 0 + 1.81454 0.00080335 0 + 1.999 0.00080335 0 + 1.999 0.235009 0 + 1.999 0.235009 0 + 1.81454 0.235009 0 + 0.000999093 0.57959 0 + 0.185462 0.560937 0 + 0.589622 0.00080335 0 + 0.709834 0.164747 0 + 0.709834 0.235009 0 + 1.33576 0.00080335 0 + 1.21555 0.164747 0 + 0.000999212 0.235009 0 + 0.000999272 0.00080335 0 + 0.185462 0.00080335 0 + 0.000999212 0.235009 0 + 0.589622 0.00080335 0 + 0.709834 0.164747 0 + 1.21555 0.164747 0 + 1.33576 0.00080335 0 + 1.21555 0.235009 0 + 0.709834 0.164747 0 + 1.21555 0.235009 0 + 1.21555 0.235009 0 + 0.709834 0.235009 0 + 1.999 0.00080335 0 + 1.46634 0.5 0 + 1.999 0.5 0 + 1.46634 0.5 0 + 0.000998914 0.00080335 0 + 0.784448 0.235009 0 + 1.29017 0.235009 0 + 1.96998 0.00080335 0 + 1.29017 0.235009 0 + 1.96998 0.00080335 0 + 1.96998 0.5 0 + 0.784448 0.235009 0 + 0.000998914 0.5 0 + 1.29017 0.235009 0 + 0.000998914 0.5 0 + 1.96998 0.5 0 + 0.533288 0.795236 0 + 0.533288 0.531373 0 + 0.533288 0.795236 0 + 0.348825 0.81389 0 + 0.348825 0.245642 0 + 0.348825 0.245642 0 + 0.533288 0.531373 0 + 0.348825 0.245642 0 + 0.533288 0.245642 0 + 1.3366 0.821093 0 + -0.207502 0.821093 0 + 0.300288 0.821093 0 + 0.803934 0.821093 0 + 0.300288 0.821093 0 + -0.632389 0.97654 0 + -0.632389 0.97654 0 + 0.300288 0.821093 0 + 1.3366 0.976539 0 + 0.803934 0.821093 0 + 1.3366 0.976539 0 + 1.3366 0.976539 0 + 0.962693 0.5 0 + 0.254419 0.5 0 + 0.728487 0.235009 0 + 0.709834 0.235009 0 + 0.728487 0.235009 0 + 0.254419 0.5 0 + 0.709834 0.235009 0 + 0.254419 0.5 0 + 0.258564 0.00080335 0 + 0.709834 0.235009 0 + 0.258564 0.00080335 0 + 0.589622 0.00080335 0 + 0.526789 0.0 0 + 0.838057 0.0 0 + 0.838057 0.0 0 + 1.76615 0.0 0 + 1.76615 0.5 0 + 1.76615 0.5 0 + 0.526789 0.5 0 + 0.526789 0.0 0 + 1.76615 0.5 0 + 1.78328 0.712535 0 + 1.23446 0.712535 0 + 1.78328 0.287465 0 + 1.5234 0.0 0 + 1.61998 0.0 0 + 0.999501 0.387896 0 + 0.710017 0.612104 0 + 0.000499547 0.399248 0 + 0.000499517 0.612104 0 + 0.710017 0.612104 0 + 0.000499547 0.399248 0 +endnode +#Tile trimesh node +node trimesh fix01 + parent tin01_d15_02 + position 4.66 1.15 0.31 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -1.5 -115.0 269.0 + bitmap tin01_door2 + verts 4 + -0.37 -0.15 2.69 + 0.34 -0.15 2.69 + -0.37 -2.15 2.69 + 0.34 -2.15 2.69 + faces 2 + 0 1 3 0 8 1 9 1 + 0 3 2 0 0 3 2 1 + tverts 12 + 0.337907 0.824505 0 + 0.101477 0.824505 0 + 0.337907 0.158504 0 + 0.101477 0.158504 0 + 0.394799 0.145261 0 + 0.158369 0.145261 0 + 0.394799 0.811262 0 + 0.158368 0.811262 0 + 0.337907 0.824505 0 + 0.101477 0.158504 0 + 0.158368 0.811262 0 + 0.394799 0.145261 0 +endnode +#Tile trimesh node +node trimesh back02 + parent tin01_d15_02 + position 0.0 -4.5 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 482.0 450.0 50.0 + bitmap tin01_black + verts 7 + 5.0 2.7 0.0 + 5.0 6.3 0.0 + 5.0 3.28 0.0 + 4.64 3.28 1.0 + 4.64 5.72 1.0 + 4.64 2.7 0.0 + 4.64 6.3 0.0 + faces 5 + 2 1 4 0 12 18 19 1 + 0 2 3 0 20 12 21 1 + 2 4 3 0 12 19 21 1 + 1 6 4 0 18 22 19 1 + 5 0 3 0 23 20 21 1 + tverts 32 + 1.42103 0.09 0 + 0.864171 0.382586 0 + 1.42103 0.382586 0 + 0.446528 0.09 0 + 0.578896 0.09 0 + 1.13575 0.09 0 + 2.0589 0.09 0 + 2.0589 0.506955 0 + 1.5534 0.09 0 + 0.641148 0.244544 0 + 0.5 0.5 0 + 0.5 0.5 0 + 1.42103 0.09 0 + 0.864171 0.382586 0 + 1.42103 0.382586 0 + 0.446528 0.09 0 + 0.578896 0.09 0 + 1.13575 0.09 0 + 2.0589 0.09 0 + 2.0589 0.506955 0 + 1.5534 0.09 0 + 0.641148 0.244544 0 + 0.5 0.5 0 + 0.5 0.5 0 + 0.5 0.5 0 + 0.5 0.5 0 + 0.5 0.5 0 + 0.5 0.5 0 + 0.5 0.5 0 + 0.5 0.5 0 + 0.5 0.5 0 + 0.5 0.5 0 +endnode +#Tile trimesh node +node trimesh deckel01 + parent tin01_d15_02 + position 3.37 2.63 4.28 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.499998 -0.499998 58.0 + bitmap tin01_door2 + verts 4 + 0.53 -0.53 0.27 + -0.52 -0.53 0.27 + -0.52 0.52 0.27 + 0.38 0.38 0.89 + faces 2 + 2 1 3 0 7 8 9 1 + 1 0 3 0 4 6 5 1 + tverts 10 + 0.3898 0.99029 0 + 0.062259 0.99029 0 + 0.388822 0.981379 0 + 0.397992 0.991104 0 + 0.0268934 0.138005 0 + 0.358787 0.469898 0 + 0.414103 0.138004 0 + 0.0576491 0.187364 0 + 0.444859 0.187364 0 + 0.112965 0.519258 0 +endnode +#Tile trimesh node +node trimesh construction01 + parent tin01_d15_02 + position -0.2 4.0 3.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.87451 0.556863 0.337255 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -28.0 -450.0 253.0 + bitmap tin01_furnish2 + verts 216 + 0.1 -8.92 1.94 + 0.3 -8.92 1.94 + 0.1 -6.63 1.86 + 0.3 -6.63 1.86 + 0.15 -4.45 1.92 + 0.35 -4.45 1.92 + 0.1 -0.2 1.82 + 0.3 -0.2 1.82 + 0.1 -8.9 2.11 + 0.3 -8.9 2.11 + 0.1 -6.63 2.06 + 0.3 -6.63 2.06 + 0.15 -4.45 2.12 + 0.35 -4.45 2.12 + 0.1 -0.2 2.02 + 0.3 -0.2 2.02 + -4.71 -3.89 1.94 + -4.71 -4.09 1.94 + -2.42 -3.93 1.94 + -2.42 -4.13 1.94 + -0.28 -3.89 1.86 + -0.28 -4.09 1.86 + 1.87 -3.89 1.92 + 1.87 -4.09 1.92 + 3.95 -3.89 1.88 + 3.95 -4.09 1.88 + -4.7 -3.89 2.11 + -4.7 -4.09 2.11 + -2.42 -3.93 2.14 + -2.42 -4.13 2.14 + -0.28 -3.89 2.06 + -0.28 -4.09 2.06 + 1.87 -3.89 2.12 + 1.87 -4.09 2.12 + 3.95 -3.89 2.08 + 3.95 -4.09 2.08 + 2.9 -4.1 3.76 + 2.9 -3.9 3.76 + 1.65 -4.11 3.74 + 1.65 -3.91 3.74 + -0.53 -4.06 3.8 + -0.53 -3.86 3.8 + -2.65 -4.11 3.7 + -2.65 -3.91 3.7 + -4.8 -4.1 3.76 + -4.8 -3.9 3.76 + 2.9 -4.1 3.96 + 2.9 -3.9 3.96 + 1.65 -4.11 3.94 + 1.65 -3.91 3.94 + -0.53 -4.06 4.0 + -0.53 -3.86 4.0 + -2.65 -4.11 3.9 + -2.65 -3.91 3.9 + -4.8 -4.1 3.96 + -4.8 -3.9 3.96 + 0.1 -9.0 3.76 + 0.3 -9.0 3.76 + 0.05 -6.85 3.82 + 0.25 -6.85 3.82 + 0.02 -4.7 3.74 + 0.22 -4.7 3.74 + 0.02 -2.14 3.8 + 0.22 -2.14 3.8 + 0.1 -9.0 3.96 + 0.3 -9.0 3.96 + 0.05 -6.85 4.02 + 0.25 -6.85 4.02 + 0.02 -4.7 3.94 + 0.22 -4.7 3.94 + 0.02 -2.14 4.0 + 0.22 -2.14 4.0 + 0.14 -6.08 2.07 + 0.3 -6.08 2.07 + 0.14 -5.92 2.07 + 0.3 -5.92 2.07 + 0.06 -6.06 3.82 + 0.22 -6.06 3.82 + 0.06 -5.92 3.82 + 0.22 -5.92 3.82 + 0.14 -2.47 2.04 + 0.3 -2.47 2.04 + 0.14 -2.31 2.04 + 0.3 -2.31 2.04 + 0.04 -2.45 3.82 + 0.2 -2.45 3.82 + 0.04 -2.31 3.82 + 0.2 -2.31 3.82 + -1.88 -4.1 2.07 + -1.72 -4.1 2.07 + -1.88 -3.94 2.07 + -1.72 -3.94 2.07 + -1.96 -4.08 3.82 + -1.8 -4.08 3.82 + -1.96 -3.94 3.82 + -1.8 -3.94 3.82 + 3.0 -9.0 3.72 + 3.0 -8.91 3.71 + 1.2 -9.0 3.72 + 1.65 -8.91 3.69 + -0.8 -9.0 3.72 + -0.73 -8.9 3.75 + -4.8 -9.0 3.72 + -4.7 -8.9 3.72 + 3.0 -9.0 3.92 + 3.0 -8.91 3.96 + 1.2 -9.0 3.92 + 1.65 -8.91 3.94 + -0.8 -9.0 3.92 + -0.73 -8.9 4.0 + -4.8 -9.0 3.92 + -4.7 -8.9 3.92 + 0.1 -9.0 2.07 + 0.3 -9.0 2.07 + 0.12 -8.92 2.07 + 0.28 -8.92 2.07 + 0.1 -9.0 3.72 + 0.3 -9.0 3.72 + 0.12 -8.92 3.77 + 0.28 -8.92 3.77 + -4.8 -9.0 3.72 + -4.7 -8.9 3.72 + -4.8 -5.0 3.72 + -4.71 -5.45 3.69 + -4.8 -3.0 3.72 + -4.7 -3.07 3.75 + -4.8 -1.25 3.72 + -4.7 -1.35 3.72 + -4.8 -9.0 3.92 + -4.7 -8.9 3.92 + -4.8 -5.0 3.92 + -4.71 -5.45 3.94 + -4.8 -3.0 3.92 + -4.7 -3.07 4.0 + -4.8 -1.25 3.92 + -4.7 -1.35 3.92 + -4.8 -3.9 2.07 + -4.8 -4.1 2.07 + -4.72 -3.92 2.07 + -4.72 -4.08 2.07 + -4.8 -3.9 3.72 + -4.8 -4.1 3.72 + -4.72 -3.92 3.77 + -4.72 -4.08 3.77 + 3.95 -9.0 1.92 + 3.95 -8.91 1.91 + 1.2 -9.0 1.92 + 1.65 -8.91 1.89 + -0.8 -9.0 1.92 + -0.73 -8.9 1.95 + -4.8 -9.0 1.92 + -4.7 -8.9 1.92 + 3.95 -9.0 2.12 + 3.95 -8.91 2.16 + 1.2 -9.0 2.12 + 1.65 -8.91 2.14 + -0.8 -9.0 2.12 + -0.73 -8.9 2.2 + -4.8 -9.0 2.12 + -4.7 -8.9 2.12 + -4.8 -9.0 1.92 + -4.7 -8.9 1.92 + -4.8 -5.0 1.92 + -4.71 -5.45 1.89 + -4.8 -3.0 1.92 + -4.7 -3.07 1.95 + -4.8 0.0 1.92 + -4.7 -0.1 1.92 + -4.8 -9.0 2.12 + -4.7 -8.9 2.12 + -4.8 -5.0 2.12 + -4.71 -5.45 2.14 + -4.8 -3.0 2.12 + -4.7 -3.07 2.2 + -4.8 0.0 2.12 + -4.7 -0.1 2.12 + 3.56 -8.7 0.81 + 3.56 -8.9 0.81 + 3.84 -8.7 1.09 + 3.84 -8.9 1.09 + 1.14 -8.7 3.81 + 1.14 -8.9 3.81 + 1.42 -8.7 4.09 + 1.42 -8.9 4.09 + -4.7 -0.64 0.81 + -4.5 -0.64 0.81 + -4.7 -0.36 1.09 + -4.5 -0.36 1.09 + -4.7 -3.06 3.81 + -4.5 -3.06 3.81 + -4.7 -2.78 4.09 + -4.5 -2.78 4.09 + 3.96 -4.1 0.97 + 3.96 -4.3 0.97 + 4.24 -4.1 1.25 + 4.24 -4.3 1.25 + 1.14 -4.1 3.97 + 1.14 -4.3 3.97 + 1.42 -4.1 4.25 + 1.42 -4.3 4.25 + 3.96 -3.7 0.97 + 3.96 -3.9 0.97 + 4.24 -3.7 1.25 + 4.24 -3.9 1.25 + 1.14 -3.7 3.97 + 1.14 -3.9 3.97 + 1.42 -3.7 4.25 + 1.42 -3.9 4.25 + 2.16 -4.08 2.04 + 2.32 -4.08 2.04 + 2.16 -3.92 2.04 + 2.32 -3.92 2.04 + 2.08 -4.06 3.82 + 2.24 -4.06 3.82 + 2.08 -3.92 3.82 + 2.24 -3.92 3.82 + faces 314 + 0 2 3 2 0 2 8 2 + 3 1 0 2 9 10 0 2 + 2 4 5 2 437 439 445 2 + 5 3 2 2 446 447 437 2 + 4 6 7 2 448 450 456 2 + 7 5 4 2 457 458 448 2 + 8 9 11 4 4 5 7 1 + 11 10 8 4 7 6 4 1 + 10 11 13 4 441 442 444 1 + 13 12 10 4 444 443 441 1 + 12 13 15 4 452 453 455 1 + 15 14 12 4 455 454 452 1 + 1 3 11 16 1 3 7 4 + 11 9 1 16 7 5 1 4 + 3 5 13 16 438 440 444 4 + 13 11 3 16 444 442 438 4 + 5 7 15 16 449 451 455 4 + 15 13 5 16 455 453 449 4 + 6 4 12 64 450 448 452 3 + 12 14 6 64 452 454 450 3 + 4 2 10 64 439 437 441 3 + 10 12 4 64 441 443 439 3 + 2 0 8 64 2 0 4 3 + 8 10 2 64 4 6 2 3 + 16 18 19 2 11 13 27 2 + 19 17 16 2 28 29 11 2 + 18 20 21 2 13 15 30 2 + 21 19 18 2 31 32 13 2 + 20 22 23 2 274 276 286 2 + 23 21 20 2 287 288 274 2 + 22 24 25 2 276 278 289 2 + 25 23 22 2 290 291 276 2 + 26 27 29 4 19 20 22 1 + 29 28 26 4 22 21 19 1 + 28 29 31 4 21 22 24 1 + 31 30 28 4 24 23 21 1 + 30 31 33 4 280 281 283 1 + 33 32 30 4 283 282 280 1 + 32 33 35 4 282 283 285 1 + 35 34 32 4 285 284 282 1 + 16 17 27 8 11 33 20 5 + 27 26 16 8 20 19 11 5 + 17 19 29 16 12 14 22 4 + 29 27 17 16 22 20 12 4 + 19 21 31 16 14 16 24 4 + 31 29 19 16 24 22 14 4 + 21 23 33 16 275 277 283 4 + 33 31 21 16 283 281 275 4 + 23 25 35 16 277 279 285 4 + 35 33 23 16 285 283 277 4 + 25 24 34 32 34 17 25 6 + 34 35 25 32 25 26 18 6 + 24 22 32 64 278 276 282 3 + 32 34 24 64 282 284 278 3 + 22 20 30 64 276 274 280 3 + 30 32 22 64 280 282 276 3 + 20 18 28 64 15 13 21 3 + 28 30 20 64 21 23 15 3 + 18 16 26 64 13 11 19 3 + 26 28 18 64 19 21 13 3 + 36 38 39 2 292 294 304 2 + 39 37 36 2 305 306 292 2 + 38 40 41 2 294 296 307 2 + 41 39 38 2 308 309 294 2 + 40 42 43 2 36 38 50 2 + 43 41 40 2 51 52 36 2 + 42 44 45 2 38 40 53 2 + 45 43 42 2 54 55 38 2 + 46 47 49 4 298 299 301 1 + 49 48 46 4 301 300 298 1 + 48 49 51 4 300 301 303 1 + 51 50 48 4 303 302 300 1 + 50 51 53 4 44 45 47 1 + 53 52 50 4 47 46 44 1 + 52 53 55 4 46 47 49 1 + 55 54 52 4 49 48 46 1 + 36 37 47 8 35 56 43 5 + 47 46 36 8 43 42 35 5 + 37 39 49 16 293 295 301 4 + 49 47 37 16 301 299 293 4 + 39 41 51 16 295 297 303 4 + 51 49 39 16 303 301 295 4 + 41 43 53 16 37 39 47 4 + 53 51 41 16 47 45 37 4 + 43 45 55 16 39 41 49 4 + 55 53 43 16 49 47 39 4 + 44 42 52 64 40 38 46 3 + 52 54 44 64 46 48 40 3 + 42 40 50 64 38 36 44 3 + 50 52 42 64 44 46 38 3 + 40 38 48 64 296 294 300 3 + 48 50 40 64 300 302 296 3 + 38 36 46 64 294 292 298 3 + 46 48 38 64 298 300 294 3 + 56 58 59 2 57 59 65 2 + 59 57 56 2 66 67 57 2 + 58 60 61 2 415 417 423 2 + 61 59 58 2 424 425 415 2 + 60 62 63 2 426 428 434 2 + 63 61 60 2 435 436 426 2 + 64 65 67 4 61 62 64 1 + 67 66 64 4 64 63 61 1 + 66 67 69 4 419 420 422 1 + 69 68 66 4 422 421 419 1 + 68 69 71 4 430 431 433 1 + 71 70 68 4 433 432 430 1 + 57 59 67 16 58 60 64 4 + 67 65 57 16 64 62 58 4 + 59 61 69 16 416 418 422 4 + 69 67 59 16 422 420 416 4 + 61 63 71 16 427 429 433 4 + 71 69 61 16 433 431 427 4 + 62 60 68 64 428 426 430 3 + 68 70 62 64 430 432 428 3 + 60 58 66 64 417 415 419 3 + 66 68 60 64 419 421 417 3 + 58 56 64 64 59 57 61 3 + 64 66 58 64 61 63 59 3 + 72 73 77 8 68 69 73 5 + 77 76 72 8 73 72 68 5 + 73 75 79 16 69 71 75 4 + 79 77 73 16 75 73 69 4 + 75 74 78 32 76 70 74 6 + 78 79 75 32 74 77 78 6 + 74 72 76 64 70 68 72 3 + 76 78 74 64 72 74 70 3 + 80 81 85 8 79 80 84 5 + 85 84 80 8 84 83 79 5 + 81 83 87 16 80 82 86 4 + 87 85 81 16 86 84 80 4 + 83 82 86 32 87 81 85 6 + 86 87 83 32 85 88 89 6 + 82 80 84 64 81 79 83 3 + 84 86 82 64 83 85 81 3 + 88 89 93 8 90 91 95 5 + 93 92 88 8 95 94 90 5 + 89 91 95 16 91 93 97 4 + 95 93 89 16 97 95 91 4 + 91 90 94 32 98 92 96 6 + 94 95 91 32 96 99 100 6 + 90 88 92 64 92 90 94 3 + 92 94 90 64 94 96 92 3 + 96 98 99 2 118 119 120 2 + 99 97 96 2 120 121 118 2 + 98 100 101 2 119 122 123 2 + 101 99 98 2 123 120 119 2 + 100 102 103 2 170 172 173 2 + 103 101 100 2 173 171 170 2 + 104 105 107 4 124 125 126 1 + 107 106 104 4 126 127 124 1 + 106 107 109 4 127 126 128 1 + 109 108 106 4 128 129 127 1 + 108 109 111 4 193 192 194 1 + 111 110 108 4 194 195 193 1 + 96 97 105 8 130 131 132 5 + 105 104 96 8 133 134 135 5 + 97 99 107 16 121 120 136 4 + 107 105 97 16 137 138 121 4 + 99 101 109 16 120 123 139 4 + 109 107 99 16 140 141 120 4 + 101 103 111 16 171 173 176 4 + 111 109 101 16 177 178 171 4 + 102 100 108 64 172 170 174 3 + 108 110 102 64 174 175 172 3 + 100 98 106 64 122 119 127 3 + 106 108 100 64 127 129 122 3 + 98 96 104 64 119 118 124 3 + 104 106 98 64 124 127 119 3 + 112 113 117 8 101 102 105 5 + 117 116 112 8 105 104 101 5 + 113 115 119 16 111 113 117 4 + 119 117 113 16 117 115 111 4 + 115 114 118 32 107 103 106 6 + 118 119 115 32 106 108 109 6 + 114 112 116 64 112 110 114 3 + 116 118 114 64 114 116 112 3 + 120 122 123 2 179 180 181 2 + 123 121 120 2 181 182 179 2 + 122 124 125 2 159 161 162 2 + 125 123 122 2 162 160 159 2 + 124 126 127 2 310 312 313 2 + 127 125 124 2 313 311 310 2 + 128 129 131 4 188 189 190 1 + 131 130 128 4 190 191 188 1 + 130 131 133 4 164 163 165 1 + 133 132 130 4 165 166 164 1 + 132 133 135 4 320 319 321 1 + 135 134 132 4 321 322 320 1 + 121 123 131 16 182 181 185 4 + 131 129 121 16 186 187 182 4 + 123 125 133 16 160 162 167 4 + 133 131 123 16 168 169 160 4 + 125 127 135 16 311 313 316 4 + 135 133 125 16 317 318 311 4 + 126 124 132 64 312 310 314 3 + 132 134 126 64 314 315 312 3 + 124 122 130 64 161 159 164 3 + 130 132 124 64 164 166 161 3 + 122 120 128 64 180 179 183 3 + 128 130 122 64 183 184 180 3 + 136 137 141 8 142 143 146 5 + 141 140 136 8 146 145 142 5 + 137 139 143 16 152 154 158 4 + 143 141 137 16 158 156 152 4 + 139 138 142 32 148 144 147 6 + 142 143 139 32 147 149 150 6 + 138 136 140 64 153 151 155 3 + 140 142 138 64 155 157 153 3 + 144 146 147 2 263 264 265 2 + 147 145 144 2 265 266 263 2 + 146 148 149 2 196 198 199 2 + 149 147 146 2 199 197 196 2 + 148 150 151 2 224 226 227 2 + 151 149 148 2 227 225 224 2 + 152 153 155 4 267 268 269 1 + 155 154 152 4 269 270 267 1 + 154 155 157 4 201 200 202 1 + 157 156 154 4 202 203 201 1 + 156 157 159 4 260 259 261 1 + 159 158 156 4 261 262 260 1 + 144 145 153 8 204 205 206 5 + 153 152 144 8 207 208 209 5 + 145 147 155 16 266 265 271 4 + 155 153 145 16 272 273 266 4 + 147 149 157 16 197 199 210 4 + 157 155 147 16 211 212 197 4 + 149 151 159 16 225 227 230 4 + 159 157 149 16 231 232 225 4 + 150 148 156 64 226 224 228 3 + 156 158 150 64 228 229 226 3 + 148 146 154 64 198 196 201 3 + 154 156 148 64 201 203 198 3 + 146 144 152 64 264 263 267 3 + 152 154 146 64 267 270 264 3 + 160 162 163 2 242 243 244 2 + 163 161 160 2 244 245 242 2 + 162 164 165 2 213 215 216 2 + 165 163 162 2 216 214 213 2 + 164 166 167 2 233 235 236 2 + 167 165 164 2 236 234 233 2 + 168 169 171 4 255 256 257 1 + 171 170 168 4 257 258 255 1 + 170 171 173 4 218 217 219 1 + 173 172 170 4 219 220 218 1 + 172 173 175 4 252 251 253 1 + 175 174 172 4 253 254 252 1 + 161 163 171 16 245 244 248 4 + 171 169 161 16 249 250 245 4 + 163 165 173 16 214 216 221 4 + 173 171 163 16 222 223 214 4 + 165 167 175 16 234 236 239 4 + 175 173 165 16 240 241 234 4 + 166 164 172 64 235 233 237 3 + 172 174 166 64 237 238 235 3 + 164 162 170 64 215 213 218 3 + 170 172 164 64 218 220 215 3 + 162 160 168 64 243 242 246 3 + 168 170 162 64 246 247 243 3 + 176 178 179 2 331 332 333 2 + 179 177 176 2 334 335 336 2 + 180 181 183 4 337 338 339 1 + 183 182 180 4 340 341 342 1 + 176 177 181 8 323 324 328 5 + 181 180 176 8 328 327 323 5 + 177 179 183 16 324 326 330 4 + 183 181 177 16 330 328 324 4 + 179 178 182 32 343 325 329 6 + 182 183 179 32 329 344 345 6 + 178 176 180 64 325 323 327 3 + 180 182 178 64 327 329 325 3 + 184 186 187 2 354 355 356 2 + 187 185 184 2 357 358 359 2 + 188 189 191 4 360 361 362 1 + 191 190 188 4 363 364 365 1 + 184 185 189 8 346 347 351 5 + 189 188 184 8 351 350 346 5 + 185 187 191 16 347 349 353 4 + 191 189 185 16 353 351 347 4 + 187 186 190 32 366 348 352 6 + 190 191 187 32 352 367 368 6 + 186 184 188 64 348 346 350 3 + 188 190 186 64 350 352 348 3 + 192 194 195 2 377 378 379 2 + 195 193 192 2 380 381 382 2 + 196 197 199 4 383 384 385 1 + 199 198 196 4 386 387 388 1 + 192 193 197 8 369 370 374 5 + 197 196 192 8 374 373 369 5 + 193 195 199 16 370 372 376 4 + 199 197 193 16 376 374 370 4 + 195 194 198 32 389 371 375 6 + 198 199 195 32 375 390 391 6 + 194 192 196 64 371 369 373 3 + 196 198 194 64 373 375 371 3 + 200 202 203 2 400 401 402 2 + 203 201 200 2 403 404 405 2 + 204 205 207 4 406 407 408 1 + 207 206 204 4 409 410 411 1 + 200 201 205 8 392 393 397 5 + 205 204 200 8 397 396 392 5 + 201 203 207 16 393 395 399 4 + 207 205 201 16 399 397 393 4 + 203 202 206 32 412 394 398 6 + 206 207 203 32 398 413 414 6 + 202 200 204 64 394 392 396 3 + 204 206 202 64 396 398 394 3 + 208 209 213 8 459 460 464 5 + 213 212 208 8 464 463 459 5 + 209 211 215 16 460 462 466 4 + 215 213 209 16 466 464 460 4 + 211 210 214 32 467 461 465 6 + 214 215 211 32 465 468 469 6 + 210 208 212 64 461 459 463 3 + 212 214 210 64 463 465 461 3 + tverts 470 + 0.174465 0.00149864 0 + 0.104128 0.00149864 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.00149864 0 + 0.344242 -1.04225 0 + 0.273035 -1.04225 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 1.95475 0 + 0.174465 0.00149864 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 2.9985 0 + 0.104128 2.9985 0 + 0.104128 2.24925 0 + 0.104128 0.00149864 0 + 0.344242 -1.04225 0 + 0.273035 -1.04225 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.0337728 0.940718 0 + 0.0337728 -0.0582831 0 + 0.243649 -0.0582831 0 + 0.310278 -0.0582831 0 + 0.177022 -0.0582831 0 + 0.376905 -0.0582831 0 + 0.237631 0.940718 0 + 0.316296 0.940718 0 + 0.177022 0.940718 0 + 0.376905 0.940718 0 + 0.257387 -0.568116 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -0.568116 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.316414 -0.568116 0 + 0.341479 -0.568116 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -0.568116 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.0337728 0.940718 0 + 0.0337728 -0.0582831 0 + 0.243649 -0.0582831 0 + 0.310278 -0.0582831 0 + 0.177022 -0.0582831 0 + 0.376905 -0.0582831 0 + 0.237631 0.940718 0 + 0.316296 0.940718 0 + 0.177022 0.940718 0 + 0.376905 0.940718 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.32817 0 + 0.23974 2.32817 0 + 0.316414 0.879271 0 + 0.316414 2.32817 0 + 0.172541 2.32817 0 + 0.172541 2.32817 0 + 0.170192 0.852609 0 + 0.257387 -1.76798 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -1.76798 0 + 0.316414 -1.76798 0 + 0.316414 0.117489 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -1.76798 0 + 0.316414 -1.82165 0 + 0.341479 -1.76798 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.32817 0 + 0.316414 2.38131 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.727886 0.211864 0 + 0.620833 0.199969 0 + 0.620833 0.497337 0 + 0.620833 0.497337 0 + 0.727886 0.449758 0 + 0.727886 0.211864 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.16743 0 + 0.0841089 2.16743 0 + 0.160783 0.718537 0 + 0.160783 2.16743 0 + 0.01691 2.16743 0 + 0.01691 2.16743 0 + 0.014561 0.691875 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.19751 0 + 0.0841089 2.19751 0 + 0.160783 0.718537 0 + 0.160783 2.19751 0 + 0.01691 2.19751 0 + 0.01691 2.19751 0 + 0.014561 0.691875 0 + 0.101756 -1.92871 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.92871 0 + 0.160783 -1.92871 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.92871 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.19751 0 + 0.160783 2.23425 0 + 0.160783 -1.98238 0 + 0.185848 -1.92871 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.16743 0 + 0.160783 2.22057 0 + 0.101756 -1.029 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.029 0 + 0.160783 -1.029 0 + 0.185848 -1.029 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.029 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.326305 1.73054 0 + 0.255098 1.73054 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.397512 1.73054 0 + 0.326993 1.73054 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.255098 1.73054 0 + 0.255098 1.73054 0 + 0.273035 1.2055 0 + 0.170007 0.375359 0 + 0.099669 0.375359 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.240343 0.375359 0 + 0.170686 0.375359 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.099669 0.375359 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 1.42684 0 + 0.23974 1.42684 0 + 0.316414 0.879271 0 + 0.316414 1.42684 0 + 0.172541 1.42684 0 + 0.172541 1.42684 0 + 0.170192 0.852609 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 1.42684 0 + 0.316414 1.46358 0 + 0.249099 -0.975342 0 + 0.324159 -0.975342 0 + 0.0698632 -0.975342 0 + 0.503394 -0.975342 0 + 0.249099 0.0236625 0 + 0.324159 0.0236625 0 + 0.0698632 0.0236625 0 + 0.503394 0.0236625 0 + 0.320501 -0.509138 0 + 0.252757 -0.509138 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.320501 -0.442538 0 + 0.320501 -0.509138 0 + 0.320501 -0.509138 0 + 0.320501 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.509138 0 + 0.320501 -0.509138 0 + -0.00519651 -0.975342 0 + -0.00519651 0.0236625 0 + -0.00519651 -0.975342 0 + 0.249099 -1.46084 0 + 0.324159 -1.46084 0 + 0.0698632 -1.46084 0 + 0.503394 -1.46084 0 + 0.249099 -0.461844 0 + 0.324159 -0.461844 0 + 0.0698632 -0.461844 0 + 0.503394 -0.461844 0 + 0.320501 -0.994642 0 + 0.252757 -0.994642 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.320501 -0.928042 0 + 0.320501 -0.994642 0 + 0.320501 -0.994642 0 + 0.320501 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.994642 0 + 0.320501 -0.994642 0 + -0.00519651 -1.46084 0 + -0.00519651 -0.461844 0 + -0.00519651 -1.46084 0 + 0.249099 -1.46084 0 + 0.324159 -1.46084 0 + 0.0698632 -1.46084 0 + 0.503394 -1.46084 0 + 0.249099 -0.461844 0 + 0.324159 -0.461844 0 + 0.0698632 -0.461844 0 + 0.503394 -0.461844 0 + 0.320501 -0.994642 0 + 0.252757 -0.994642 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.320501 -0.928042 0 + 0.320501 -0.994642 0 + 0.320501 -0.994642 0 + 0.320501 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.994642 0 + 0.320501 -0.994642 0 + -0.00519651 -1.46084 0 + -0.00519651 -0.461844 0 + -0.00519651 -1.46084 0 + 0.249099 -0.975342 0 + 0.324159 -0.975342 0 + 0.0698632 -0.975342 0 + 0.503394 -0.975342 0 + 0.249099 0.0236625 0 + 0.324159 0.0236625 0 + 0.0698632 0.0236625 0 + 0.503394 0.0236625 0 + 0.320501 -0.509138 0 + 0.252757 -0.509138 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.320501 -0.442538 0 + 0.320501 -0.509138 0 + 0.320501 -0.509138 0 + 0.320501 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.509138 0 + 0.320501 -0.509138 0 + -0.00519651 -0.975342 0 + -0.00519651 0.0236625 0 + -0.00519651 -0.975342 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.80476 0 + 0.273035 1.80476 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.80476 0 + 0.34493 1.80476 0 + 0.273035 1.80476 0 + 0.273035 1.80476 0 + 0.273035 0.456251 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.9205 0 + 0.104128 2.9205 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.9205 0 + 0.175144 2.9205 0 + 0.104128 2.9205 0 + 0.104128 2.9205 0 + 0.104128 1.5 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 +endnode +#Tile trimesh node +node trimesh bolt01 + parent tin01_d15_02 + position -0.35 2.06 5.02 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.6 0.894118 0.721569 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10 + center -39.5 -280.5 48.0 + bitmap tin01__metal01 + verts 88 + 1.5 -7.01 1.86 + 1.54 -7.01 1.92 + 1.61 -7.01 1.9 + 1.61 -7.01 1.82 + 1.54 -7.01 1.8 + 1.5 -6.73 1.86 + 1.54 -6.73 1.92 + 1.61 -6.73 1.9 + 1.61 -6.73 1.82 + 1.54 -6.73 1.8 + 1.56 -6.73 1.86 + 2.85 -7.01 0.16 + 2.89 -7.01 0.22 + 2.96 -7.01 0.2 + 2.96 -7.01 0.12 + 2.89 -7.01 0.1 + 2.85 -6.73 0.16 + 2.89 -6.73 0.22 + 2.96 -6.73 0.2 + 2.96 -6.73 0.12 + 2.89 -6.73 0.1 + 2.91 -6.73 0.16 + 3.7 -7.01 -0.91 + 3.74 -7.01 -0.85 + 3.81 -7.01 -0.87 + 3.81 -7.01 -0.95 + 3.74 -7.01 -0.97 + 3.7 -6.73 -0.91 + 3.74 -6.73 -0.85 + 3.81 -6.73 -0.87 + 3.81 -6.73 -0.95 + 3.74 -6.73 -0.97 + 3.76 -6.73 -0.91 + -4.32 0.5 0.16 + -4.32 0.44 0.16 + -4.32 0.48 0.22 + -4.32 0.55 0.2 + -4.32 0.55 0.12 + -4.32 0.48 0.1 + -4.6 0.44 0.16 + -4.6 0.48 0.22 + -4.6 0.55 0.2 + -4.6 0.55 0.12 + -4.6 0.48 0.1 + -4.32 -0.85 1.86 + -4.32 -0.91 1.86 + -4.32 -0.87 1.92 + -4.32 -0.8 1.9 + -4.32 -0.8 1.82 + -4.32 -0.87 1.8 + -4.6 -0.91 1.86 + -4.6 -0.87 1.92 + -4.6 -0.8 1.9 + -4.6 -0.8 1.82 + -4.6 -0.87 1.8 + -4.32 1.35 -0.91 + -4.32 1.29 -0.91 + -4.32 1.33 -0.85 + -4.32 1.4 -0.87 + -4.32 1.4 -0.95 + -4.32 1.33 -0.97 + -4.6 1.29 -0.91 + -4.6 1.33 -0.85 + -4.6 1.4 -0.87 + -4.6 1.4 -0.95 + -4.6 1.33 -0.97 + 3.36 -2.39 0.11 + 3.3 -2.39 0.11 + 3.34 -2.39 0.17 + 3.41 -2.39 0.15 + 3.41 -2.39 0.07 + 3.34 -2.39 0.05 + 3.3 -1.73 0.11 + 3.34 -1.73 0.17 + 3.41 -1.73 0.15 + 3.41 -1.73 0.07 + 3.34 -1.73 0.05 + 1.75 -2.39 1.87 + 1.69 -2.39 1.87 + 1.73 -2.39 1.93 + 1.8 -2.39 1.91 + 1.8 -2.39 1.83 + 1.73 -2.39 1.81 + 1.69 -1.73 1.87 + 1.73 -1.73 1.93 + 1.8 -1.73 1.91 + 1.8 -1.73 1.83 + 1.73 -1.73 1.81 + faces 126 + 0 6 5 8 0 6 5 3 + 0 1 6 8 0 1 6 3 + 1 7 6 8 11 7 12 3 + 1 2 7 8 13 2 7 3 + 2 8 7 8 2 8 7 3 + 2 3 8 8 2 3 8 3 + 3 9 8 8 3 9 8 3 + 3 4 9 8 3 4 9 3 + 4 5 9 8 4 5 9 3 + 4 0 5 8 4 0 5 3 + 10 5 6 1 14 15 16 1 + 10 6 7 1 17 18 19 1 + 10 7 8 1 20 21 22 1 + 10 8 9 1 23 24 25 1 + 10 9 5 1 10 26 27 1 + 11 17 16 8 28 34 33 3 + 11 12 17 8 28 29 34 3 + 12 18 17 8 39 35 40 3 + 12 13 18 8 41 30 35 3 + 13 19 18 8 30 36 35 3 + 13 14 19 8 30 31 36 3 + 14 20 19 8 31 37 36 3 + 14 15 20 8 31 32 37 3 + 15 16 20 8 32 33 37 3 + 15 11 16 8 32 28 33 3 + 21 16 17 1 42 43 44 1 + 21 17 18 1 45 46 47 1 + 21 18 19 1 48 49 50 1 + 21 19 20 1 51 52 53 1 + 21 20 16 1 38 54 55 1 + 22 28 27 8 56 62 61 3 + 22 23 28 8 56 57 62 3 + 23 29 28 8 67 63 68 3 + 23 24 29 8 69 58 63 3 + 24 30 29 8 58 64 63 3 + 24 25 30 8 58 59 64 3 + 25 31 30 8 59 65 64 3 + 25 26 31 8 59 60 65 3 + 26 27 31 8 60 61 65 3 + 26 22 27 8 60 56 61 3 + 32 27 28 1 70 71 72 1 + 32 28 29 1 73 74 75 1 + 32 29 30 1 76 77 78 1 + 32 30 31 1 79 80 81 1 + 32 31 27 1 66 82 83 1 + 33 35 34 1 95 96 97 2 + 33 36 35 1 98 99 100 2 + 33 37 36 1 101 102 103 2 + 33 38 37 1 104 105 106 2 + 33 34 38 1 84 107 108 2 + 34 40 39 8 85 91 90 3 + 34 35 40 8 85 86 91 3 + 35 41 40 8 109 92 110 3 + 35 36 41 8 111 87 92 3 + 36 42 41 8 87 93 92 3 + 36 37 42 8 87 88 93 3 + 37 43 42 8 88 94 93 3 + 37 38 43 8 88 89 94 3 + 38 39 43 8 89 90 94 3 + 38 34 39 8 89 85 90 3 + 44 46 45 1 123 124 125 2 + 44 47 46 1 126 127 128 2 + 44 48 47 1 129 130 131 2 + 44 49 48 1 132 133 134 2 + 44 45 49 1 112 135 136 2 + 45 51 50 8 113 119 118 3 + 45 46 51 8 113 114 119 3 + 46 52 51 8 137 120 138 3 + 46 47 52 8 139 115 120 3 + 47 53 52 8 115 121 120 3 + 47 48 53 8 115 116 121 3 + 48 54 53 8 116 122 121 3 + 48 49 54 8 116 117 122 3 + 49 50 54 8 117 118 122 3 + 49 45 50 8 117 113 118 3 + 55 57 56 1 151 152 153 2 + 55 58 57 1 154 155 156 2 + 55 59 58 1 157 158 159 2 + 55 60 59 1 160 161 162 2 + 55 56 60 1 140 163 164 2 + 56 62 61 8 141 147 146 3 + 56 57 62 8 141 142 147 3 + 57 63 62 8 165 148 166 3 + 57 58 63 8 167 143 148 3 + 58 64 63 8 143 149 148 3 + 58 59 64 8 143 144 149 3 + 59 65 64 8 144 150 149 3 + 59 60 65 8 144 145 150 3 + 60 61 65 8 145 146 150 3 + 60 56 61 8 145 141 146 3 + 66 68 67 1 179 180 181 2 + 66 69 68 1 182 183 184 2 + 66 70 69 1 185 186 187 2 + 66 71 70 1 188 189 190 2 + 66 67 71 1 168 191 192 2 + 67 73 72 8 169 175 174 3 + 67 68 73 8 169 170 175 3 + 68 74 73 8 193 176 194 3 + 68 69 74 8 195 171 176 3 + 69 75 74 8 171 177 176 3 + 69 70 75 8 171 172 177 3 + 70 76 75 8 172 178 177 3 + 70 71 76 8 172 173 178 3 + 71 72 76 8 173 174 178 3 + 71 67 72 8 173 169 174 3 + 77 79 78 1 207 208 209 2 + 77 80 79 1 210 211 212 2 + 77 81 80 1 213 214 215 2 + 77 82 81 1 216 217 218 2 + 77 78 82 1 196 219 220 2 + 78 84 83 8 197 203 202 3 + 78 79 84 8 197 198 203 3 + 79 85 84 8 221 204 222 3 + 79 80 85 8 223 199 204 3 + 80 86 85 8 199 205 204 3 + 80 81 86 8 199 200 205 3 + 81 87 86 8 200 206 205 3 + 81 82 87 8 200 201 206 3 + 82 83 87 8 201 202 206 3 + 82 78 83 8 201 197 202 3 + 85 83 84 0 234 235 226 1 + 85 87 83 0 236 237 225 1 + 74 72 73 0 238 239 230 1 + 74 76 72 0 240 241 229 1 + 74 75 76 0 228 232 231 1 + 85 86 87 0 224 233 227 1 + tverts 242 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.91103 0.988522 0 + 0.971409 0.966566 0 + 0.949453 0.999501 0 + 0.949453 0.933632 0 + 0.0285906 0.0553897 0 + 0.0889699 0.0334336 0 + 0.0670138 0.0663677 0 + 0.0670138 0.000499487 0 + 0.0285906 0.0114775 0 + 0.91103 0.94461 0 + 0.91103 0.988522 0 + 0.971409 0.966566 0 + 0.91103 0.988522 0 + 0.949453 0.933632 0 + 0.0285906 0.0553897 0 + 0.0889699 0.0334336 0 + 0.0285906 0.0553897 0 + 0.0670138 0.000499487 0 +endnode +endmodelgeom tin01_d15_02 +donemodel tin01_d15_02 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/tin01_f08_02.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_f08_02.mdl new file mode 100644 index 0000000..4bb8cac --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_f08_02.mdl @@ -0,0 +1,5249 @@ +# Exported from NWmax 0.8 b60 at 20.10.2012 17:03:48 +# mdl file +# +#NWmax MODEL ASCII +# model: tin01_f08_02 +#local file: Unknown +filedependancy Unknown +newmodel tin01_f08_02 +setsupermodel tin01_f08_02 NULL +classification Tile +#NWmax GEOM ASCII +beginmodelgeom tin01_f08_02 +node dummy tin01_f08_02 + parent NULL +endnode +#Tile trimesh node +node trimesh Object196 + parent tin01_f08_02 + position -2.11 -1.23 1.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 0.0 18.0 + bitmap tin01_irony + verts 12 + 0.01 0.05 0.24 + 0.01 0.03 0.24 + 0.01 0.0 0.17 + 0.01 0.01 0.15 + -0.01 0.03 0.24 + -0.01 0.0 0.17 + -0.01 0.05 0.24 + -0.01 0.01 0.15 + 0.01 -0.05 0.14 + 0.01 -0.05 0.12 + -0.01 -0.05 0.14 + -0.01 -0.05 0.12 + faces 16 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 2 4 5 2 2 1 4 4 + 4 2 1 2 1 2 5 4 + 5 6 7 1 2 0 3 6 + 6 5 4 1 0 2 1 6 + 6 0 3 2 0 6 3 3 + 3 7 6 2 3 7 0 3 + 8 9 3 1 8 9 3 5 + 3 2 8 1 3 2 8 5 + 10 8 2 2 8 10 2 4 + 2 5 10 2 2 4 8 4 + 11 10 5 1 9 8 2 6 + 5 7 11 1 2 3 9 6 + 3 11 7 2 3 9 7 3 + 11 3 9 2 9 3 11 3 + tverts 12 + 0.511138 -0.14647 0 + 0.508369 -0.119673 0 + 0.418512 -0.0937307 0 + 0.404414 -0.109872 0 + 0.418512 -0.0937307 0 + 0.508369 -0.119673 0 + 0.511138 -0.14647 0 + 0.404414 -0.109872 0 + 0.38281 -0.0366347 0 + 0.361279 -0.0428132 0 + 0.38281 -0.0366347 0 + 0.361279 -0.0428132 0 +endnode +#Tile trimesh node +node trimesh Box925 + parent tin01_f08_02 + position -2.11 -1.32 2.44 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -9.5 -28.5 + bitmap tin01_irony + verts 11 + 0.01 -0.05 -0.25 + 0.01 -0.05 -0.27 + 0.01 0.04 -0.34 + 0.01 0.04 -0.32 + -0.01 -0.05 -0.25 + -0.01 0.04 -0.32 + -0.01 -0.05 -0.27 + -0.01 0.04 -0.34 + 0.01 -0.23 -0.23 + 0.01 -0.23 -0.25 + -0.01 -0.23 -0.25 + faces 12 + 0 1 2 1 0 1 2 5 + 2 3 0 1 2 3 0 5 + 4 0 3 2 0 4 3 4 + 3 5 4 2 3 5 0 4 + 6 4 5 1 1 0 3 6 + 5 7 6 1 3 2 1 6 + 1 6 7 2 1 6 2 3 + 7 2 1 2 2 7 1 3 + 1 0 8 1 1 0 4 5 + 8 9 1 1 0 1 6 5 + 6 1 9 4 8 1 6 5 + 9 10 6 4 1 8 9 5 + tverts 10 + 0.45408 0.0829809 0 + 0.433686 0.0829809 0 + 0.361279 -0.0428132 0 + 0.38281 -0.0366347 0 + 0.45408 0.0829809 0 + 0.38281 -0.0366347 0 + 0.433686 0.0829809 0 + 0.361279 -0.0428132 0 + 0.45408 1.07074 0 + 0.45408 1.07074 0 +endnode +#Tile trimesh node +node trimesh Mesh984 + parent tin01_f08_02 + position 3.42 -0.75 2.1 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -18.5 11.0 2.5 + bitmap tin01_creats + verts 8 + 0.09 -0.37 0.38 + 0.3 0.38 0.38 + -0.46 0.59 0.38 + -0.67 -0.16 0.38 + 0.3 0.38 -0.33 + 0.09 -0.37 -0.33 + -0.46 0.59 -0.33 + -0.67 -0.16 -0.33 + faces 12 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 1 5 2 4 5 6 5 + 0 5 1 2 7 6 5 5 + 6 2 4 4 8 9 10 4 + 1 4 2 4 11 10 9 4 + 7 3 2 2 12 13 14 6 + 2 6 7 2 14 15 12 6 + 5 0 7 4 16 11 17 3 + 3 7 0 4 18 17 11 3 + 4 7 6 0 19 20 21 1 + 7 4 5 0 20 19 22 1 + tverts 23 + 0.0139023 1.00334 0 + 0.499987 1.01267 0 + 0.492401 1.49596 0 + 0.0063167 1.48662 0 + 0.49969 -0.0095321 0 + 0.49969 0.505031 0 + 0.0009907 -0.009532 0 + 0.0009908 0.505031 0 + 0.0021571 -0.0137118 0 + 0.0021572 0.50445 0 + 0.500024 -0.0137118 0 + 0.500024 0.50445 0 + 0.001046 -0.009532 0 + 0.0010461 0.505031 0 + 0.497772 0.505031 0 + 0.497772 -0.0095321 0 + 0.500024 -0.0137117 0 + 0.0021572 -0.0137116 0 + 0.0021572 0.50445 0 + 0.487655 0.486478 0 + 0.0123448 0.0135221 0 + 0.012252 0.487303 0 + 0.487748 0.012697 0 +endnode +#Tile trimesh node +node trimesh Object195 + parent tin01_f08_02 + position -2.11 -1.76 2.23 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 50.0 4.5 + bitmap tin01_irony + verts 9 + 0.01 0.56 -0.01 + 0.01 0.58 -0.01 + 0.01 0.47 0.08 + 0.01 0.47 0.1 + 0.0 0.42 0.08 + -0.01 0.56 -0.01 + -0.01 0.47 0.08 + -0.01 0.58 -0.01 + -0.01 0.47 0.1 + faces 12 + 0 1 2 1 0 1 2 5 + 3 2 1 1 3 2 1 5 + 2 3 4 1 2 3 4 5 + 5 0 6 2 0 5 2 4 + 2 6 0 2 2 6 0 4 + 6 2 4 2 2 6 4 4 + 7 5 8 4 1 0 3 6 + 6 8 5 4 2 3 0 6 + 8 6 4 4 3 2 4 6 + 1 7 3 8 1 7 3 3 + 8 3 7 8 3 8 1 3 + 3 8 4 8 3 8 4 3 + tverts 9 + 0.508369 -0.119673 0 + 0.511138 -0.14647 0 + 0.610743 -0.0044886 0 + 0.638721 -0.0041238 0 + 0.603082 0.0649099 0 + 0.508369 -0.119673 0 + 0.610743 -0.0044886 0 + 0.511138 -0.14647 0 + 0.638721 -0.0041238 0 +endnode +#Tile trimesh node +node trimesh Box922 + parent tin01_f08_02 + position 3.39 -0.76 1.63 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.603922 0.584314 0.592157 + diffuse 0.603922 0.584314 0.592157 + specular 0.0 0.0 0.0 + shininess 1 + center -237.5 -33.5 5.5 + bitmap tin01_shpFLR1 + verts 12 + -0.37 0.76 -0.01 + -0.37 -0.62 -0.01 + -0.37 0.76 0.12 + -0.37 -0.62 0.12 + 0.36 -1.43 0.12 + -2.61 -0.62 0.12 + -5.11 -0.62 0.12 + -5.11 -1.43 0.12 + -2.61 -1.43 0.12 + -2.61 -0.62 -0.01 + -5.11 -0.62 -0.01 + 0.36 0.76 0.12 + faces 12 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 3 5 2 4 5 6 6 + 6 7 8 2 7 8 9 6 + 5 9 10 4 10 11 12 6 + 9 5 3 4 11 10 13 6 + 4 11 3 2 14 15 16 1 + 2 3 11 2 17 16 15 1 + 10 6 5 4 12 18 10 6 + 8 5 6 2 9 6 7 6 + 3 1 9 4 13 19 11 6 + 5 8 4 2 6 9 4 6 + tverts 20 + 0.324066 0.0975654 0 + 0.324066 -0.453176 0 + 0.272226 0.0975648 0 + 0.272226 -0.453176 0 + -0.616446 -0.595066 0 + -0.289899 -0.245597 0 + -0.289899 0.593752 0 + -0.289898 1.59506 0 + -0.616445 1.59506 0 + -0.616445 0.593754 0 + 0.727774 0.591918 0 + 0.675934 0.591919 0 + 0.675934 1.57359 0 + 0.727774 -0.230974 0 + 0.322199 1.61645 0 + 0.322199 0.739158 0 + 0.671668 1.2899 0 + 0.595781 0.739156 0 + 0.727774 1.57359 0 + 0.675934 -0.230974 0 +endnode +#Tile trimesh node +node trimesh Mesh987 + parent tin01_f08_02 + position 1.19 -1.66 2.02 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -21.0 -2.0 2.5 + bitmap tin01_creats + verts 8 + 0.18 -0.22 0.31 + -0.01 0.37 0.31 + -0.6 0.18 0.31 + -0.42 -0.41 0.31 + -0.01 0.37 -0.26 + 0.18 -0.22 -0.26 + -0.6 0.18 -0.26 + -0.42 -0.41 -0.26 + faces 12 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 1 5 2 4 5 6 5 + 0 5 1 2 7 6 5 5 + 6 2 4 4 8 9 10 4 + 1 4 2 4 11 10 9 4 + 7 3 2 2 12 13 14 6 + 2 6 7 2 14 15 12 6 + 5 0 7 4 10 11 16 3 + 3 7 0 4 17 16 11 3 + 4 7 6 0 18 19 20 1 + 7 4 5 0 19 18 21 1 + tverts 22 + 0.0139023 1.51058 0 + 0.499987 1.51992 0 + 0.492401 2.0032 0 + 0.0063167 1.99387 0 + 0.49969 0.497714 0 + 0.49969 1.01228 0 + 0.0009907 0.497714 0 + 0.0009908 1.01228 0 + 0.0021571 0.493535 0 + 0.0021572 1.0117 0 + 0.500024 0.493535 0 + 0.500024 1.0117 0 + 0.001046 0.497714 0 + 0.0010461 1.01228 0 + 0.497772 1.01228 0 + 0.497772 0.497714 0 + 0.0021572 0.493535 0 + 0.0021572 1.0117 0 + 0.484944 0.989459 0 + 0.00821986 0.516518 0 + 0.0125998 0.986571 0 + 0.487832 0.517114 0 +endnode +#Tile trimesh node +node trimesh Object47 + parent tin01_f08_02 + position 4.02 4.32 2.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -402.0 -57.0 2.0 + bitmap tin01_wall03 + verts 10 + -8.52 0.68 0.02 + -8.52 0.18 0.02 + -7.77 -0.57 0.02 + -7.77 0.46 0.02 + -7.77 0.68 0.02 + -0.27 0.68 0.02 + -0.27 0.46 0.02 + 0.48 0.68 0.02 + 0.48 -1.82 0.02 + -0.27 -1.82 0.02 + faces 6 + 0 1 2 1 10 1 11 3 + 3 4 0 1 12 4 13 3 + 2 3 0 1 2 3 0 3 + 5 6 7 1 5 14 15 3 + 8 7 9 1 8 16 17 3 + 6 9 7 1 6 9 7 3 + tverts 18 + 0.213628 0.698579 0 + 0.213628 0.598679 0 + 0.363479 0.448829 0 + 0.363479 0.654623 0 + 0.363479 0.698579 0 + 0.431736 0.461902 0 + 0.475665 0.460368 0 + 0.436966 0.611661 0 + 0.936162 0.594229 0 + 0.930932 0.44447 0 + 0.213628 0.698579 0 + 0.363479 0.448829 0 + 0.363479 0.654623 0 + 0.213628 0.698579 0 + 0.475665 0.460368 0 + 0.436966 0.611661 0 + 0.436966 0.611661 0 + 0.930932 0.44447 0 +endnode +#Tile trimesh node +node trimesh Box924 + parent tin01_f08_02 + position 3.19 1.18 1.97 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -3.5 11.0 -35.0 + bitmap tin01_furnish2 + verts 8 + -0.09 -0.54 1.28 + 0.44 -0.45 1.25 + 0.43 -0.38 1.28 + -0.1 -0.47 1.31 + -0.5 0.6 -1.97 + 0.04 0.69 -2.01 + 0.03 0.76 -1.98 + -0.51 0.67 -1.95 + faces 10 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 5 1 2 4 5 1 5 + 1 0 4 2 1 0 4 5 + 5 6 2 4 6 7 8 4 + 2 1 5 4 8 9 6 4 + 6 7 3 2 10 11 3 6 + 3 2 6 2 3 2 10 6 + 7 4 0 4 7 6 9 3 + 0 3 7 4 9 8 7 3 + tverts 12 + 0.490521 2.07912 0 + 0.285092 2.07534 0 + 0.285052 2.08297 0 + 0.490481 2.08674 0 + 0.466259 0.113542 0 + 0.26083 0.109765 0 + 0.512341 0.294755 0 + 0.493444 0.294755 0 + 0.493445 1.1631 0 + 0.512341 1.1631 0 + 0.26079 0.117391 0 + 0.466219 0.121168 0 +endnode +#Tile trimesh node +node trimesh Box926 + parent tin01_f08_02 + position -2.11 -1.26 1.33 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 6.5 8.0 2.5 + bitmap tin01_sac + verts 35 + -0.21 0.03 0.18 + -0.01 0.05 0.19 + 0.08 0.06 0.08 + -0.15 0.21 0.18 + -0.04 -0.02 -0.75 + 0.14 -0.08 -0.76 + 0.0 -0.11 -0.31 + -0.27 0.02 -0.31 + 0.27 -0.1 -0.65 + 0.33 0.06 -0.65 + 0.33 -0.1 -0.31 + 0.4 0.07 -0.31 + 0.2 0.1 -0.76 + 0.13 0.25 -0.31 + -0.15 0.21 -0.65 + -0.21 0.03 -0.65 + -0.2 0.25 -0.31 + 0.11 -0.03 0.01 + 0.03 -0.05 0.09 + 0.14 0.08 0.01 + -0.01 0.12 0.01 + 0.1 0.13 0.09 + -0.04 0.02 0.01 + 0.27 -0.12 0.18 + 0.33 0.06 0.18 + 0.13 0.28 0.32 + 0.03 0.15 -0.76 + -0.01 0.01 0.09 + 0.02 0.01 0.17 + 0.02 -0.02 0.13 + -0.01 -0.02 0.09 + -0.01 0.01 0.81 + -0.01 -0.02 0.81 + 0.02 -0.02 0.81 + 0.02 0.01 0.81 + faces 62 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 5 6 2 4 5 6 5 + 6 7 4 2 6 7 4 5 + 8 9 10 2 8 9 10 4 + 11 10 9 2 11 10 9 4 + 9 12 11 2 9 12 11 6 + 13 11 12 2 13 11 12 6 + 14 15 16 2 14 15 16 3 + 7 16 15 2 7 16 15 3 + 10 17 6 2 10 17 6 5 + 18 6 17 2 18 6 17 5 + 11 19 10 2 11 19 10 4 + 17 10 19 2 17 10 19 4 + 16 20 13 2 16 20 21 6 + 21 13 20 2 22 21 20 6 + 7 22 16 2 7 23 16 3 + 20 16 22 2 20 16 23 3 + 1 23 2 1 1 24 2 1 + 24 25 2 1 25 26 2 1 + 5 8 6 2 5 8 6 5 + 10 6 8 2 10 6 8 5 + 26 14 13 2 27 14 21 6 + 16 13 14 2 16 21 14 6 + 18 22 6 2 28 23 6 5 + 7 6 22 2 7 6 23 5 + 21 19 13 2 29 19 13 6 + 11 13 19 2 11 13 19 6 + 12 26 13 2 30 27 21 6 + 15 4 7 2 15 4 7 5 + 22 18 1 2 31 32 33 1 + 1 0 22 2 33 34 31 1 + 20 22 0 2 35 31 34 1 + 0 3 20 2 34 36 35 1 + 21 20 3 2 37 35 36 1 + 3 25 21 2 36 38 37 1 + 18 17 23 2 39 40 41 1 + 23 1 18 2 41 42 39 1 + 17 19 24 2 40 43 44 1 + 24 23 17 2 44 41 40 1 + 19 21 25 2 43 37 38 1 + 25 24 19 2 38 44 43 1 + 2 23 24 1 2 24 25 1 + 25 3 2 1 26 3 2 1 + 5 12 9 2 5 12 9 1 + 5 9 8 2 5 9 8 1 + 15 14 26 2 15 14 27 1 + 15 26 4 2 15 27 4 1 + 5 4 12 2 5 45 46 1 + 12 4 26 2 46 45 47 1 + 27 28 29 1 48 49 50 2 + 29 30 27 1 50 51 48 2 + 31 32 33 1 52 53 54 1 + 33 34 31 1 54 55 52 1 + 27 30 32 1 48 51 53 5 + 32 31 27 1 53 52 48 5 + 30 29 33 1 51 56 57 4 + 33 32 30 1 57 53 51 4 + 29 28 34 1 50 49 55 6 + 34 33 29 1 55 54 50 6 + 28 27 31 1 49 48 52 3 + 31 34 28 1 52 55 49 3 + tverts 58 + 0.485654 0.834964 0 + 0.295293 0.968882 0 + 0.298028 0.831849 0 + 0.48515 0.982307 0 + 0.0812675 0.106292 0 + 0.0146048 0.108233 0 + 0.0092304 0.416462 0 + 0.16087 0.416145 0 + 0.176986 0.205026 0 + 0.335018 0.205547 0 + 0.138852 0.422075 0 + 0.335406 0.420311 0 + 0.460885 0.0966587 0 + 0.479043 0.391027 0 + 0.364079 0.184861 0 + 0.227756 0.196417 0 + 0.351503 0.411965 0 + 0.177189 0.812562 0 + 0.0231577 0.822884 0 + 0.322098 0.817687 0 + 0.36114 0.812573 0 + 0.490884 0.415182 0 + 0.486106 0.82118 0 + 0.194522 0.809863 0 + 0.072891 0.844626 0 + 0.0348887 0.991969 0 + 0.296543 0.966467 0 + 0.428624 0.101355 0 + 0.0113163 0.822884 0 + 0.478212 0.816349 0 + 0.492462 0.0990741 0 + 0.147527 0.810217 0 + 0.0071473 0.826204 0 + 0.0010391 0.996811 0 + 0.187329 0.982253 0 + 0.362558 0.810217 0 + 0.310789 0.982253 0 + 0.483534 0.823788 0 + 0.498435 0.996811 0 + 0.0077394 0.823788 0 + 0.148846 0.810217 0 + 0.191908 0.984668 0 + 0.0016312 0.996811 0 + 0.362038 0.810217 0 + 0.309223 0.984668 0 + 0.140474 0.106292 0 + 0.370101 0.108736 0 + 0.38718 0.101355 0 + 0.996001 0.0065615 0 + 0.996001 0.0223639 0 + 0.995087 0.0015909 0 + 0.996001 0.0239797 0 + 0.0022212 0.0065615 0 + 0.0022211 0.0239797 0 + 0.0013075 0.0015909 0 + 0.0022212 0.0223639 0 + 0.996001 0.002847 0 + 0.0022211 0.002847 0 +endnode +#Tile trimesh node +node trimesh Cylinder81 + parent tin01_f08_02 + position 1.24 -0.85 0.34 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 3.0 1.0 13.0 + bitmap tin01_barel + verts 24 + 0.07 0.32 0.6 + -0.22 0.2 0.6 + -0.25 -0.11 0.6 + 0.28 -0.18 0.6 + 0.31 0.13 0.6 + -0.01 -0.3 0.6 + -0.31 0.27 0.29 + -0.36 -0.16 0.29 + 0.08 0.43 0.29 + 0.42 0.18 0.29 + 0.37 -0.25 0.29 + -0.02 -0.41 0.29 + -0.31 0.27 -0.02 + -0.36 -0.16 -0.02 + 0.08 0.43 -0.02 + 0.42 0.18 -0.02 + 0.37 -0.25 -0.02 + -0.02 -0.41 -0.02 + -0.22 0.2 -0.34 + -0.25 -0.11 -0.34 + 0.07 0.32 -0.34 + 0.31 0.13 -0.34 + 0.28 -0.18 -0.34 + -0.01 -0.3 -0.34 + faces 40 + 0 1 2 1 0 1 2 1 + 0 3 4 1 0 3 4 1 + 0 5 3 1 0 5 3 1 + 0 2 5 1 0 2 5 1 + 2 6 7 2 6 7 8 1 + 2 1 6 2 6 9 7 1 + 1 8 6 2 9 10 7 1 + 1 0 8 2 9 11 10 1 + 0 9 8 2 11 12 10 1 + 0 4 9 2 11 13 12 1 + 4 10 9 2 13 14 12 1 + 4 3 10 2 13 15 14 1 + 3 11 10 2 15 16 14 1 + 3 5 11 2 15 17 16 1 + 5 7 11 2 17 18 16 1 + 5 2 7 2 17 19 18 1 + 7 12 13 2 8 20 21 1 + 7 6 12 2 8 7 20 1 + 6 14 12 2 7 22 20 1 + 6 8 14 2 7 10 22 1 + 8 15 14 2 10 23 22 1 + 8 9 15 2 10 12 23 1 + 9 16 15 2 12 24 23 1 + 9 10 16 2 12 14 24 1 + 10 17 16 2 14 25 24 1 + 10 11 17 2 14 16 25 1 + 11 13 17 2 16 26 25 1 + 11 7 13 2 16 18 26 1 + 13 18 19 2 21 27 28 1 + 13 12 18 2 21 20 27 1 + 12 20 18 2 20 29 27 1 + 12 14 20 2 20 22 29 1 + 14 21 20 2 22 30 29 1 + 14 15 21 2 22 23 30 1 + 15 22 21 2 23 31 30 1 + 15 16 22 2 23 24 31 1 + 16 23 22 2 24 32 31 1 + 16 17 23 2 24 25 32 1 + 17 19 23 2 25 33 32 1 + 17 13 19 2 25 26 33 1 + tverts 34 + 0.58533 0.196457 0 + 0.58533 0.395333 0 + 0.360645 0.494772 0 + 0.135961 0.196457 0 + 0.360645 0.0970182 0 + 0.135961 0.395333 0 + 1.71 0.659638 0 + 1.425 0.432744 0 + 1.71 0.432744 0 + 1.425 0.659638 0 + 1.14 0.432744 0 + 1.14 0.659638 0 + 0.855 0.432744 0 + 0.855 0.659638 0 + 0.570001 0.432744 0 + 0.57 0.659638 0 + 0.284999 0.432744 0 + 0.285 0.659638 0 + 0.0 0.432744 0 + 0.0 0.659638 0 + 1.425 0.20585 0 + 1.71 0.20585 0 + 1.14 0.20585 0 + 0.855 0.20585 0 + 0.570001 0.20585 0 + 0.284999 0.20585 0 + 0.0 0.20585 0 + 1.425 -0.0210437 0 + 1.71 -0.0210436 0 + 1.14 -0.0210435 0 + 0.855 -0.0210435 0 + 0.57 -0.0210437 0 + 0.285 -0.0210436 0 + 0.0 -0.0210436 0 +endnode +#Tile trimesh node +node trimesh Mesh985 + parent tin01_f08_02 + position -1.24 -2.07 1.09 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 63.5 37.5 8.0 + bitmap tin01_creats + verts 15 + 0.66 0.73 0.49 + 0.66 0.02 0.49 + 0.66 0.02 0.34 + 0.66 0.45 0.34 + 0.66 0.73 -0.33 + 0.66 0.67 -0.33 + -0.23 0.73 0.49 + -0.23 0.02 0.49 + -0.23 0.73 -0.33 + -0.23 0.02 -0.33 + -0.23 0.67 -0.33 + 0.66 0.45 -0.33 + 1.5 0.45 0.34 + 1.5 0.45 -0.33 + 1.5 0.02 0.34 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 0 1 2 3 0 3 + 4 0 3 1 4 0 3 3 + 3 5 4 1 3 5 4 3 + 6 7 1 2 6 7 8 3 + 1 0 6 2 8 9 6 3 + 8 6 0 4 10 11 12 3 + 0 4 8 4 12 13 10 3 + 9 7 6 1 14 15 0 3 + 6 10 9 1 0 16 14 3 + 3 11 5 1 3 17 5 3 + 6 8 10 1 0 18 16 3 + 11 3 12 2 19 20 21 3 + 12 13 11 2 21 22 19 3 + 3 2 14 4 23 24 25 3 + 14 12 3 4 25 26 23 3 + tverts 27 + 0.499034 0.500361 0 + 0.998897 0.500361 0 + 0.998897 0.407677 0 + 0.698558 0.407677 0 + 0.499034 -0.0005852 0 + 0.538371 -0.0005852 0 + 0.492206 -0.0031323 0 + 1.06699 -0.0031325 0 + 1.06699 0.487123 0 + 0.492206 0.487123 0 + 0.990265 -0.0064353 0 + 0.990265 0.499894 0 + 0.499247 0.499894 0 + 0.499247 -0.0064352 0 + 0.998898 -0.0005854 0 + 0.998898 0.500361 0 + 0.538371 -0.0005853 0 + 0.698559 -0.0005852 0 + 0.499034 -0.0005853 0 + 0.501983 0.496358 0 + 0.501983 0.993583 0 + 0.0110326 0.993583 0 + 0.0110325 0.496358 0 + -0.0123578 0.493998 0 + 0.466455 0.493998 0 + 0.466455 0.994959 0 + -0.0123574 0.99496 0 +endnode +#Tile trimesh node +node trimesh Box923 + parent tin01_f08_02 + position 3.39 0.64 0.62 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.603922 0.584314 0.592157 + diffuse 0.603922 0.584314 0.592157 + specular 0.0 0.0 0.0 + shininess 1 + center -237.5 -119.5 5.5 + bitmap tin01_shpFLR1 + verts 19 + -0.53 -0.64 -0.01 + -0.53 -2.02 -0.01 + -0.53 -0.64 0.12 + -0.53 -2.02 0.12 + 0.36 -2.83 0.12 + 0.36 -0.64 0.12 + -0.32 -0.64 0.12 + -2.61 -2.02 0.12 + -5.11 -2.02 0.12 + -5.11 -2.83 0.12 + -2.61 -2.83 0.12 + -2.61 -2.02 -0.01 + -5.11 -2.02 -0.01 + -0.32 0.28 0.12 + 0.36 0.28 0.12 + 0.36 0.44 0.12 + -0.53 0.44 -0.01 + -0.53 0.44 0.12 + 0.36 0.44 -0.01 + faces 21 + 0 1 2 1 0 1 2 6 + 3 2 1 1 3 2 1 6 + 4 5 3 2 4 5 6 1 + 2 3 6 2 7 6 8 1 + 4 3 7 2 9 10 11 6 + 8 9 10 2 12 13 14 6 + 7 11 12 4 15 16 17 6 + 11 7 3 4 16 15 18 6 + 13 2 6 2 19 20 21 1 + 6 3 5 2 8 6 5 1 + 14 15 13 2 22 23 19 1 + 16 0 17 1 24 0 25 6 + 15 17 13 2 23 26 19 1 + 2 17 0 1 2 25 0 6 + 17 2 13 2 26 20 19 1 + 12 8 7 4 17 27 15 6 + 10 7 8 2 14 28 12 6 + 3 1 11 4 18 29 16 6 + 7 10 4 2 11 30 9 6 + 16 17 18 4 31 32 33 1 + 18 17 15 4 33 32 34 1 + tverts 35 + 0.727774 0.0975659 0 + 0.727774 -0.453176 0 + 0.675934 0.0975649 0 + 0.675934 -0.453176 0 + 0.322199 1.61645 0 + 0.322199 0.739156 0 + 0.677703 1.2899 0 + 0.677703 0.739158 0 + 0.59578 0.739157 0 + -0.616446 -0.595066 0 + -0.289899 -0.239562 0 + -0.289899 0.593755 0 + 0.663274 1.00065 0 + 0.336727 1.00065 0 + 0.336727 -0.0006536 0 + 0.324066 0.591921 0 + 0.272226 0.592041 0 + 0.272226 1.57359 0 + 0.324066 -0.225057 0 + 0.595831 0.347934 0 + 0.677752 0.71513 0 + 0.595829 0.715129 0 + 0.322248 0.347932 0 + 0.322248 0.28487 0 + 0.727774 1.09757 0 + 0.675934 1.09757 0 + 0.677752 0.284871 0 + 0.324066 1.57359 0 + 0.663273 -0.0006531 0 + 0.272226 -0.225057 0 + -0.616445 0.593755 0 + 0.47408 0.677752 0 + 0.52592 0.677752 0 + 0.47408 0.322249 0 + 0.52592 0.322248 0 +endnode +#Tile trimesh node +node trimesh Mesh982 + parent tin01_f08_02 + position 0.0 0.0 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 375.0 0.0 + bitmap tin01_floorTRAN2 + verts 14 + 3.4 4.78 0.0 + 3.4 5.0 0.0 + 2.5 5.0 0.0 + 2.5 2.5 0.0 + 0.0 2.5 0.0 + 0.0 5.0 0.0 + -2.5 2.5 0.0 + -2.5 5.0 0.0 + -3.4 4.78 0.0 + -3.75 4.78 0.0 + -3.75 3.75 0.0 + 3.75 4.78 0.0 + 3.75 3.75 0.0 + -3.4 5.0 0.0 + faces 12 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 3 5 1 4 5 6 1 + 2 5 3 1 7 6 5 1 + 6 4 7 1 8 4 9 1 + 5 7 4 1 6 9 4 1 + 8 9 10 1 10 11 12 1 + 3 11 0 1 3 13 0 1 + 3 12 11 1 3 14 13 1 + 6 7 10 1 15 16 12 1 + 10 7 8 1 12 16 10 1 + 7 13 8 1 16 17 10 1 + tverts 18 + 0.267172 0.84154 0 + 0.267172 0.884925 0 + 0.0871721 0.884926 0 + 0.087172 0.384926 0 + 0.501629 0.39392 0 + 0.0016292 0.39392 0 + 0.501629 0.89392 0 + 0.001629 0.89392 0 + 1.00163 0.39392 0 + 1.00163 0.89392 0 + 0.266715 0.84154 0 + 0.336715 0.841539 0 + 0.336714 0.634925 0 + 0.337172 0.84154 0 + 0.337334 0.635087 0 + 0.0867152 0.384926 0 + 0.086715 0.884926 0 + 0.266715 0.884926 0 +endnode +#Tile trimesh node +node trimesh Mesh981 + parent tin01_f08_02 + position 4.12 0.5 1.78 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -36.0 -61.0 -28.0 + bitmap tin01_wall03 + verts 33 + -0.37 4.28 1.22 + -0.37 4.28 -1.78 + -0.37 2.0 1.22 + -0.37 2.0 -1.78 + -0.37 3.25 -1.78 + -1.1 -0.5 -1.78 + -1.1 -0.5 -1.04 + -1.1 0.42 -1.78 + -1.1 0.42 -1.04 + -0.37 -5.5 -1.78 + -0.37 -5.5 1.22 + -0.37 -3.5 -1.78 + -0.37 -3.5 1.22 + 0.38 -0.5 1.22 + 0.38 2.0 1.22 + -0.37 -0.5 1.22 + 0.38 -2.69 1.22 + -0.37 -2.69 1.22 + 0.38 -5.5 1.22 + -0.37 -0.5 -1.78 + -0.37 -2.69 -1.78 + -0.37 -2.69 -1.04 + -0.37 -0.5 -1.04 + -0.37 0.42 -1.78 + -0.37 0.42 -1.04 + -0.37 -2.69 -0.03 + -0.37 -0.5 0.33 + -0.37 -0.5 -0.03 + -0.37 0.42 0.33 + -1.1 -0.5 -0.03 + -1.1 -0.5 0.33 + -1.1 0.42 0.33 + -1.1 -0.5 -0.16 + faces 43 + 0 1 2 1 0 27 28 3 + 3 2 4 1 29 30 31 3 + 5 6 7 1 32 33 34 3 + 8 7 6 1 35 36 37 3 + 9 10 11 1 9 38 39 3 + 12 11 10 1 40 10 41 3 + 13 14 15 2 114 115 116 3 + 2 15 14 2 117 118 111 3 + 16 13 15 2 119 110 120 3 + 15 17 16 2 121 122 123 3 + 18 16 10 2 113 124 125 3 + 12 10 16 2 126 108 127 3 + 19 20 21 1 42 14 43 3 + 21 22 19 1 44 45 46 3 + 17 12 16 2 128 109 112 3 + 3 23 24 1 47 48 49 3 + 25 26 27 1 50 51 52 3 + 17 15 26 1 53 54 55 3 + 26 25 17 1 56 57 12 3 + 26 15 28 1 58 59 60 3 + 15 2 28 1 11 61 62 3 + 24 28 3 1 63 64 65 3 + 28 2 3 1 66 67 3 3 + 29 30 31 1 68 69 70 3 + 27 26 30 2 71 72 73 3 + 29 27 30 2 74 75 76 3 + 6 5 19 2 77 5 78 3 + 22 6 19 2 79 80 13 3 + 26 28 31 4 81 82 83 3 + 31 30 26 4 84 24 20 3 + 24 23 7 2 85 17 86 3 + 8 24 7 2 87 88 7 3 + 22 29 32 2 89 90 91 3 + 29 22 27 2 92 93 94 3 + 24 8 31 2 95 96 97 3 + 31 28 24 2 98 22 18 3 + 31 8 29 1 25 99 100 3 + 32 29 8 1 101 23 102 3 + 25 27 22 1 103 21 104 3 + 22 21 25 1 105 15 19 3 + 6 32 8 1 106 107 8 3 + 22 32 6 2 16 26 6 3 + 4 2 1 1 4 2 1 3 + tverts 129 + 0.0449554 1.00043 0 + 0.0449554 0.0 0 + 0.5005 1.00043 0 + 0.5005 0.0 0 + 0.25075 0.0 0 + 1.65335 0.0 0 + 1.65335 0.250858 0 + 0.346653 0.0 0 + 0.816184 0.250858 0 + 1.999 0.0 0 + 1.5994 0.0 0 + 1.0 1.00043 0 + 1.43756 1.00043 0 + 1.7992 0.0 0 + 1.43756 0.0 0 + 1.43756 0.250858 0 + 1.7992 0.250858 0 + 0.200799 0.0 0 + 0.200799 0.250858 0 + 1.43756 0.585842 0 + 1.7992 0.502925 0 + 1.0 0.585842 0 + 0.200799 0.705243 0 + 1.0 0.585842 0 + 1.65335 0.502925 0 + 0.816184 0.705243 0 + 1.65335 0.542726 0 + 0.0449554 0.0 0 + 0.5005 1.00043 0 + 0.5005 0.0 0 + 0.5005 1.00043 0 + 0.25075 0.0 0 + 1.0 0.0 0 + 1.0 0.250858 0 + 0.816184 0.0 0 + 0.816184 0.250858 0 + 0.816184 0.0 0 + 1.0 0.250858 0 + 1.999 1.00043 0 + 1.5994 0.0 0 + 1.5994 1.00043 0 + 1.999 1.00043 0 + 1.0 0.0 0 + 1.43756 0.250858 0 + 1.43756 0.250858 0 + 1.0 0.250858 0 + 1.0 0.0 0 + 0.5005 0.0 0 + 0.816184 0.0 0 + 0.816184 0.250858 0 + 1.43756 0.585842 0 + 1.0 0.705243 0 + 1.0 0.585842 0 + 1.43756 1.00043 0 + 1.0 1.00043 0 + 1.0 0.705243 0 + 1.0 0.705243 0 + 1.43756 0.585842 0 + 1.0 0.705243 0 + 1.0 1.00043 0 + 0.816184 0.705243 0 + 0.5005 1.00043 0 + 0.816184 0.705243 0 + 0.816184 0.250858 0 + 0.816184 0.705243 0 + 0.5005 0.0 0 + 0.816184 0.705243 0 + 0.5005 1.00043 0 + 1.0 0.585842 0 + 1.0 0.705243 0 + 0.816184 0.705243 0 + 1.7992 0.585842 0 + 1.7992 0.705243 0 + 1.65335 0.705243 0 + 1.65335 0.585842 0 + 1.7992 0.585842 0 + 1.65335 0.705243 0 + 1.65335 0.250858 0 + 1.7992 0.0 0 + 1.7992 0.250858 0 + 1.65335 0.250858 0 + 1.7992 0.502925 0 + 1.7992 0.80806 0 + 1.65335 0.80806 0 + 1.65335 0.80806 0 + 0.200799 0.250858 0 + 0.346653 0.0 0 + 0.346653 0.250858 0 + 0.200799 0.250858 0 + 1.7992 0.250858 0 + 1.65335 0.585842 0 + 1.65335 0.542726 0 + 1.65335 0.585842 0 + 1.7992 0.250858 0 + 1.7992 0.585842 0 + 0.200799 0.250858 0 + 0.346653 0.250858 0 + 0.346653 0.705243 0 + 0.346653 0.705243 0 + 0.816184 0.250858 0 + 1.0 0.585842 0 + 1.0 0.542726 0 + 0.816184 0.250858 0 + 1.43756 0.585842 0 + 1.0 0.250858 0 + 1.0 0.250858 0 + 1.0 0.250858 0 + 1.0 0.542726 0 + 1.32541 0.529782 0 + 0.925871 0.536756 0 + 0.329177 0.697045 0 + -0.170247 0.705762 0 + 0.766673 0.689408 0 + 1.32803 0.67961 0 + 0.329177 0.697045 0 + -0.170247 0.705762 0 + 0.326562 0.547217 0 + -0.172862 0.555935 0 + 0.326562 0.547217 0 + 0.766673 0.689408 0 + 0.326562 0.547217 0 + 0.326562 0.547217 0 + 0.764058 0.539581 0 + 0.766673 0.689408 0 + 0.766673 0.689408 0 + 1.32541 0.529782 0 + 0.925871 0.536756 0 + 0.766673 0.689408 0 + 0.764058 0.539581 0 +endnode +#Tile trimesh node +node trimesh Cylinder82 + parent tin01_f08_02 + position 2.23 -0.85 0.46 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 3.0 0.0 13.0 + bitmap tin01_barel + verts 24 + 0.23 0.34 0.72 + -0.16 0.34 0.72 + -0.36 0.0 0.72 + 0.23 -0.34 0.72 + 0.42 0.0 0.72 + -0.16 -0.34 0.72 + -0.24 0.47 0.32 + -0.51 0.0 0.32 + 0.3 0.47 0.32 + 0.57 0.0 0.32 + 0.3 -0.47 0.32 + -0.24 -0.47 0.32 + -0.24 0.47 -0.07 + -0.51 0.0 -0.07 + 0.3 0.47 -0.07 + 0.57 0.0 -0.07 + 0.3 -0.47 -0.07 + -0.24 -0.47 -0.07 + -0.16 0.34 -0.46 + -0.36 0.0 -0.46 + 0.23 0.34 -0.46 + 0.42 0.0 -0.46 + 0.23 -0.34 -0.46 + -0.16 -0.34 -0.46 + faces 40 + 0 1 2 1 0 1 2 1 + 0 3 4 1 0 3 4 1 + 0 5 3 1 0 5 3 1 + 0 2 5 1 0 2 5 1 + 2 6 7 2 6 7 8 1 + 2 1 6 2 6 9 7 1 + 1 8 6 2 9 10 7 1 + 1 0 8 2 9 11 10 1 + 0 9 8 2 11 12 10 1 + 0 4 9 2 11 13 12 1 + 4 10 9 2 13 14 12 1 + 4 3 10 2 13 15 14 1 + 3 11 10 2 15 16 14 1 + 3 5 11 2 15 17 16 1 + 5 7 11 2 17 18 16 1 + 5 2 7 2 17 19 18 1 + 7 12 13 2 8 20 21 1 + 7 6 12 2 8 7 20 1 + 6 14 12 2 7 22 20 1 + 6 8 14 2 7 10 22 1 + 8 15 14 2 10 23 22 1 + 8 9 15 2 10 12 23 1 + 9 16 15 2 12 24 23 1 + 9 10 16 2 12 14 24 1 + 10 17 16 2 14 25 24 1 + 10 11 17 2 14 16 25 1 + 11 13 17 2 16 26 25 1 + 11 7 13 2 16 18 26 1 + 13 18 19 2 21 27 28 1 + 13 12 18 2 21 20 27 1 + 12 20 18 2 20 29 27 1 + 12 14 20 2 20 22 29 1 + 14 21 20 2 22 30 29 1 + 14 15 21 2 22 23 30 1 + 15 22 21 2 23 31 30 1 + 15 16 22 2 23 24 31 1 + 16 23 22 2 24 32 31 1 + 16 17 23 2 24 25 32 1 + 17 19 23 2 25 33 32 1 + 17 13 19 2 25 26 33 1 + tverts 34 + 0.58533 0.196457 0 + 0.58533 0.395333 0 + 0.360645 0.494772 0 + 0.135961 0.196457 0 + 0.360645 0.0970182 0 + 0.135961 0.395333 0 + 1.71 0.659638 0 + 1.425 0.432744 0 + 1.71 0.432744 0 + 1.425 0.659638 0 + 1.14 0.432744 0 + 1.14 0.659638 0 + 0.855 0.432744 0 + 0.855 0.659638 0 + 0.570001 0.432744 0 + 0.57 0.659638 0 + 0.284999 0.432744 0 + 0.285 0.659638 0 + 0.0 0.432744 0 + 0.0 0.659638 0 + 1.425 0.20585 0 + 1.71 0.20585 0 + 1.14 0.20585 0 + 0.855 0.20585 0 + 0.570001 0.20585 0 + 0.284999 0.20585 0 + 0.0 0.20585 0 + 1.425 -0.0210437 0 + 1.71 -0.0210436 0 + 1.14 -0.0210435 0 + 0.855 -0.0210435 0 + 0.57 -0.0210437 0 + 0.285 -0.0210436 0 + 0.0 -0.0210436 0 +endnode +#Tile trimesh node +node trimesh Box927 + parent tin01_f08_02 + position 2.91 1.64 1.81 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -10.0 17.0 -30.5 + bitmap tin01_furnish2 + verts 8 + 0.22 -0.79 1.13 + 0.71 -0.57 1.07 + 0.69 -0.51 1.11 + 0.2 -0.73 1.17 + -0.89 0.85 -1.72 + -0.4 1.07 -1.78 + -0.42 1.13 -1.74 + -0.91 0.91 -1.68 + faces 10 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 5 1 2 4 5 1 5 + 1 0 4 2 1 0 4 5 + 5 6 2 4 6 7 8 4 + 2 1 5 4 8 9 6 4 + 6 7 3 2 10 11 3 6 + 3 2 6 2 3 2 10 6 + 7 4 0 4 7 6 9 3 + 0 3 7 4 9 8 7 3 + tverts 12 + 0.490521 2.07912 0 + 0.285092 2.07534 0 + 0.285052 2.08297 0 + 0.490481 2.08674 0 + 0.466259 0.113542 0 + 0.26083 0.109765 0 + 0.512341 0.294755 0 + 0.493444 0.294755 0 + 0.493445 1.1631 0 + 0.512341 1.1631 0 + 0.26079 0.117391 0 + 0.466219 0.121168 0 +endnode +#Tile trimesh node +node trimesh Mesh209 + parent tin01_f08_02 + position -2.08 -2.6 2.46 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 270.5 41.0 -96.0 + bitmap tin01_wall03 + verts 31 + 5.83 -0.4 -2.46 + 5.83 -0.4 0.54 + 4.64 -0.4 -2.46 + 4.64 -0.4 0.54 + 5.83 0.41 -1.72 + 5.83 0.41 -2.46 + 4.64 0.41 -1.72 + 4.64 0.41 -2.46 + 2.14 -0.4 0.54 + 0.36 0.41 0.54 + -0.42 -0.4 0.54 + 4.64 0.41 0.54 + 5.83 0.41 0.54 + 2.14 0.41 0.54 + 0.36 1.22 -0.7 + -0.42 1.22 -2.46 + 0.36 1.22 0.54 + 0.36 1.22 -1.71 + -0.42 1.22 0.54 + 0.36 1.22 -2.46 + -0.42 -0.4 -2.46 + -0.42 0.1 -2.46 + 0.36 0.41 -0.71 + 5.83 0.41 -0.71 + 4.64 0.41 -0.71 + 0.36 0.41 -1.72 + 0.36 0.41 -2.46 + 2.14 -0.4 -2.46 + 2.14 0.41 -2.46 + 2.14 0.41 -1.72 + 2.14 0.41 -0.71 + faces 45 + 0 1 2 1 0 31 32 1 + 3 2 1 1 33 34 35 1 + 4 5 6 1 36 37 38 1 + 7 6 5 1 39 40 5 1 + 8 9 10 2 41 42 43 1 + 11 3 1 2 44 45 46 1 + 1 12 11 2 1 47 48 1 + 3 11 13 2 49 50 51 1 + 13 8 3 2 52 53 54 1 + 8 13 9 2 55 56 57 1 + 14 15 16 1 58 59 60 1 + 17 15 14 1 61 62 63 1 + 18 16 15 1 64 65 66 1 + 19 15 17 1 67 68 69 1 + 20 10 18 4 70 71 72 1 + 18 21 20 4 73 74 75 1 + 14 16 9 4 76 77 78 1 + 22 14 9 4 79 80 81 1 + 10 9 16 2 82 83 84 1 + 16 18 10 2 16 85 86 1 + 12 23 11 1 12 87 88 1 + 24 11 23 1 89 90 91 1 + 23 4 24 1 23 92 93 1 + 6 24 4 1 94 95 4 1 + 19 17 25 4 96 97 98 1 + 25 26 19 4 99 100 19 1 + 22 17 14 4 101 102 14 1 + 22 25 17 4 103 104 17 1 + 3 8 2 1 3 105 106 1 + 27 2 8 1 107 2 108 1 + 7 28 6 1 7 109 110 1 + 29 6 28 1 111 112 113 1 + 24 30 11 1 114 115 116 1 + 13 11 30 1 117 11 118 1 + 6 29 24 1 6 119 120 1 + 30 24 29 1 121 24 122 1 + 8 10 27 1 8 123 124 1 + 20 27 10 1 20 27 10 1 + 28 26 29 1 28 125 126 1 + 25 29 26 1 127 128 26 1 + 30 22 13 1 129 130 131 1 + 9 13 22 1 9 13 132 1 + 29 25 30 1 29 133 134 1 + 22 30 25 1 22 30 25 1 + 18 15 21 4 18 15 21 1 + tverts 135 + 1.7992 0.0 0 + 1.7992 0.400599 0 + 1.56144 0.0 0 + 1.56144 1.0 0 + 0.200799 0.260291 0 + 0.200799 0.0 0 + 0.438562 0.260291 0 + 0.438562 0.0 0 + 1.06194 1.0 0 + 1.29371 1.0 0 + 0.550449 1.0 0 + 0.438562 1.0 0 + 0.200799 1.0 0 + 0.938062 1.0 0 + 0.724276 0.595801 0 + 1.27572 0.0 0 + 0.706294 0.724276 0 + 0.724276 0.263581 0 + 1.27572 1.0 0 + 0.724276 0.0 0 + 0.550449 0.0 0 + 1.4995 0.0 0 + 1.29371 0.592512 0 + 0.200799 0.592512 0 + 0.438562 0.592512 0 + 1.29371 0.260291 0 + 1.29371 0.0 0 + 1.06194 0.0 0 + 0.938062 0.0 0 + 0.938062 0.260291 0 + 0.938062 0.592512 0 + 1.7992 1.0 0 + 1.56144 0.0 0 + 1.56144 1.0 0 + 1.56144 0.0 0 + 1.7992 1.0 0 + 0.200799 0.260291 0 + 0.200799 0.0 0 + 0.438562 0.260291 0 + 0.438562 0.0 0 + 0.438562 0.260291 0 + 1.06194 0.400599 0 + 0.706294 0.562438 0 + 0.550449 0.4006 0 + 1.56144 0.562438 0 + 1.56144 0.400599 0 + 1.7992 0.400599 0 + 1.7992 0.562437 0 + 1.56144 0.562438 0 + 1.56144 0.400599 0 + 1.56144 0.562438 0 + 1.06194 0.562438 0 + 1.06194 0.562438 0 + 1.06194 0.400599 0 + 1.56144 0.400599 0 + 1.06194 0.400599 0 + 1.06194 0.562438 0 + 0.706294 0.562438 0 + 1.29371 0.595801 0 + 1.44955 0.0 0 + 1.29371 1.0 0 + 1.29371 0.263581 0 + 1.44955 0.0 0 + 1.29371 0.595801 0 + 1.44955 1.0 0 + 1.29371 1.0 0 + 1.44955 0.0 0 + 1.29371 0.0 0 + 1.44955 0.0 0 + 1.29371 0.263581 0 + 1.5994 0.0 0 + 1.5994 1.0 0 + 1.27572 1.0 0 + 1.27572 1.0 0 + 1.4995 0.0 0 + 1.5994 0.0 0 + 0.724276 0.595801 0 + 0.724276 1.0 0 + 0.562438 1.0 0 + 0.562438 0.592512 0 + 0.724276 0.595801 0 + 0.562438 1.0 0 + 0.550449 0.4006 0 + 0.706294 0.562438 0 + 0.706294 0.724276 0 + 0.55045 0.724276 0 + 0.550449 0.4006 0 + 0.200799 0.592512 0 + 0.438562 1.0 0 + 0.438562 0.592512 0 + 0.438562 1.0 0 + 0.200799 0.592512 0 + 0.200799 0.260291 0 + 0.438562 0.592512 0 + 0.438562 0.260291 0 + 0.438562 0.592512 0 + 0.724276 0.0 0 + 0.724276 0.263581 0 + 0.562438 0.260291 0 + 0.562438 0.260291 0 + 0.562438 0.0 0 + 0.562438 0.592512 0 + 0.724276 0.263581 0 + 0.562438 0.592512 0 + 0.562438 0.260291 0 + 1.06194 1.0 0 + 1.56144 0.0 0 + 1.06194 0.0 0 + 1.06194 1.0 0 + 0.938062 0.0 0 + 0.438562 0.260291 0 + 0.938062 0.260291 0 + 0.438562 0.260291 0 + 0.938062 0.0 0 + 0.438562 0.592512 0 + 0.938062 0.592512 0 + 0.438562 1.0 0 + 0.938062 1.0 0 + 0.938062 0.592512 0 + 0.938062 0.260291 0 + 0.438562 0.592512 0 + 0.938062 0.592512 0 + 0.938062 0.260291 0 + 0.550449 1.0 0 + 1.06194 0.0 0 + 1.29371 0.0 0 + 0.938062 0.260291 0 + 1.29371 0.260291 0 + 0.938062 0.260291 0 + 0.938062 0.592512 0 + 1.29371 0.592512 0 + 0.938062 1.0 0 + 1.29371 0.592512 0 + 1.29371 0.260291 0 + 0.938062 0.592512 0 +endnode +#Tile trimesh node +node trimesh Mesh1651 + parent tin01_f08_02 + position -4.21 4.19 2.43 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -16.5 7.5 -93.0 + bitmap tin01_wall03 + verts 8 + -0.29 0.31 0.57 + -0.79 0.31 0.57 + 0.46 -0.44 0.57 + -0.79 -0.44 -2.43 + 0.46 -0.44 -2.43 + -0.79 -0.44 0.57 + 0.46 0.59 -2.43 + 0.46 0.59 0.57 + faces 6 + 0 1 2 1 0 8 9 1 + 3 4 5 2 3 10 11 3 + 4 2 5 2 12 13 14 3 + 1 5 2 1 1 5 15 1 + 6 7 2 4 16 7 17 3 + 2 4 6 4 2 4 6 3 + tverts 18 + 0.698821 0.593298 0 + 0.59892 0.593298 0 + 1.74925 1.0 0 + 0.0509493 0.0 0 + 1.74925 0.0 0 + 0.59892 0.443447 0 + 1.95504 0.0 0 + 1.95504 1.0 0 + 0.59892 0.593298 0 + 0.848671 0.443447 0 + 0.3007 0.0 0 + 0.0509493 1.0 0 + 0.3007 0.0 0 + 0.3007 1.0 0 + 0.0509493 1.0 0 + 0.848671 0.443447 0 + 1.95504 0.0 0 + 1.74925 1.0 0 +endnode +#Tile trimesh node +node trimesh Plane365 + parent tin01_f08_02 + position 0.0 0.0 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -62.5 -62.5 0.0 + bitmap tin01_floor + verts 33 + 2.5 -5.0 0.0 + 3.75 -5.0 0.0 + 2.5 -3.0 0.0 + 3.75 -3.0 0.0 + 3.02 0.92 0.0 + 3.75 0.92 0.0 + 3.75 2.5 0.0 + 2.5 2.5 0.0 + 3.75 3.75 0.0 + 0.0 -5.0 0.0 + 0.0 -3.0 0.0 + 2.5 -2.19 0.0 + 2.5 0.0 0.0 + 0.0 -2.19 0.0 + 0.0 0.0 0.0 + 0.0 2.5 0.0 + -2.5 -3.0 0.0 + -2.5 0.0 0.0 + -2.5 2.5 0.0 + -5.0 -5.0 0.0 + -5.0 -2.5 0.0 + -2.5 -2.5 0.0 + -2.5 -1.38 0.0 + -5.0 0.0 0.0 + -5.0 2.5 0.0 + -5.0 3.75 0.0 + -3.75 3.75 0.0 + 3.02 0.0 0.0 + 3.75 -2.19 0.0 + 3.75 0.0 0.0 + -1.72 -1.38 0.0 + -1.72 -2.19 0.0 + -2.5 -5.0 0.0 + faces 34 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 5 6 1 4 5 6 1 + 6 7 4 1 6 7 4 1 + 7 6 8 1 7 6 8 1 + 9 0 10 1 9 0 10 1 + 2 10 0 1 2 10 0 1 + 11 12 13 1 11 12 13 1 + 14 13 12 1 14 13 12 1 + 14 12 15 1 14 12 15 1 + 7 15 12 1 7 15 12 1 + 16 9 10 1 16 9 10 1 + 17 14 18 1 17 14 18 1 + 15 18 14 1 15 18 14 1 + 19 16 20 1 19 16 20 1 + 21 20 16 1 21 20 16 1 + 20 21 22 1 20 21 22 1 + 23 17 24 1 23 17 24 1 + 18 24 17 1 18 24 17 1 + 25 18 26 1 25 18 26 1 + 7 12 4 1 7 12 4 1 + 27 4 12 1 27 4 12 1 + 27 12 11 1 27 12 11 1 + 11 28 29 1 11 28 29 1 + 11 29 27 1 11 29 27 1 + 13 14 30 1 13 14 30 1 + 30 31 13 1 30 31 13 1 + 14 17 30 1 14 17 30 1 + 17 22 30 1 17 22 30 1 + 22 17 23 1 22 17 23 1 + 23 20 22 1 23 20 22 1 + 32 9 16 1 32 9 16 1 + 32 16 19 1 32 16 19 1 + 24 18 25 1 24 18 25 1 + tverts 33 + 21.5 -16.0 0 + 21.75 -16.0 0 + 21.5 -15.6 0 + 21.7506 -15.6 0 + 21.6039 -14.8164 0 + 21.7506 -14.8164 0 + 21.7504 -14.5 0 + 21.5 -14.5 0 + 21.7502 -14.2498 0 + 21.0 -16.0 0 + 21.0 -15.6 0 + 21.5 -15.4387 0 + 21.5 -15.0 0 + 21.0 -15.4387 0 + 21.0 -15.0 0 + 21.0 -14.5 0 + 20.5 -15.6 0 + 20.5 -15.0 0 + 20.5 -14.5 0 + 20.0 -16.0 0 + 20.0 -15.5 0 + 20.5 -15.5 0 + 20.5 -15.2754 0 + 20.0 -15.0 0 + 20.0 -14.5 0 + 20.0 -14.25 0 + 20.25 -14.25 0 + 21.6039 -15.0 0 + 21.7506 -15.4387 0 + 21.7506 -15.0 0 + 20.6555 -15.2754 0 + 20.6555 -15.4387 0 + 20.5 -16.0 0 +endnode +node aabb walkmesh + parent tin01_f08_02 + position 0.0 0.0 1.5 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + multimaterial 20 + Dirt + Obscuring + Grass + Stone + Wood + Water + Nonwalk + Transparent + Carpet + Metal + Puddles + Swamp + Mud + Leaves + Lava + BottomlessPit + DeepWater + Door + Snow + Sand + ambient 0.0 0.0 0.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10.0 + bitmap Obscuring + verts 35 + 3.75 4.78 -1.5 + 3.75 -5.0 -1.5 + 3.75 5.0 1.5 + 3.75 -5.0 1.5 + 3.4 5.0 -1.5 + 3.4 4.78 -1.5 + 5.0 5.0 1.5 + -3.75 3.75 -1.5 + -5.0 3.75 -1.5 + -5.0 -5.0 -1.5 + -3.4 5.0 -1.5 + 5.0 -5.0 1.5 + -1.71 -1.04 -1.5 + 0.78 -1.31 -1.5 + -2.49 -2.98 -1.5 + 3.75 1.61 -1.5 + -3.75 3.75 1.5 + -5.0 3.75 1.5 + -3.75 5.0 1.5 + -5.0 5.0 1.5 + 3.75 -2.99 -1.5 + -2.49 -1.03 1.5 + -2.49 -2.98 1.5 + -1.72 -1.38 1.5 + -2.49 -1.03 -1.5 + -1.72 -1.38 -1.5 + 3.75 -2.99 1.5 + 0.78 -1.31 1.5 + 0.92 -0.43 -1.5 + 2.86 -0.37 1.5 + 1.99 2.49 -1.5 + 3.75 1.61 1.5 + 2.86 -0.37 -1.5 + 2.87 1.07 -1.5 + 2.53 2.78 -1.5 + faces 56 + 4 5 2 2 0 0 0 2 + 7 8 9 1 0 0 0 5 + 7 5 4 1 0 0 0 5 + 7 4 10 1 0 0 0 5 + 5 0 2 1 0 0 0 2 + 6 3 11 1 0 0 0 2 + 7 12 13 1 0 0 0 5 + 9 1 14 1 0 0 0 5 + 15 0 5 1 0 0 0 5 + 16 17 8 1 0 0 0 2 + 8 7 16 1 0 0 0 2 + 18 16 7 1 0 0 0 2 + 7 10 18 1 0 0 0 2 + 17 16 19 1 0 0 0 2 + 16 18 19 1 0 0 0 2 + 14 1 20 1 0 0 0 5 + 9 14 7 1 0 0 0 5 + 21 22 23 1 0 0 0 2 + 14 24 7 1 0 0 0 5 + 12 25 13 1 0 0 0 5 + 24 12 7 1 0 0 0 5 + 23 22 26 1 0 0 0 2 + 27 23 26 1 0 0 0 2 + 7 13 28 1 0 0 0 5 + 29 27 26 1 0 0 0 2 + 7 28 30 1 0 0 0 5 + 31 29 26 1 0 0 0 2 + 28 32 33 1 0 0 0 5 + 28 33 30 1 0 0 0 5 + 30 34 5 1 0 0 0 5 + 7 30 5 1 0 0 0 5 + 34 15 5 1 0 0 0 5 + 14 20 26 2 0 0 0 2 + 26 22 14 2 0 0 0 2 + 24 14 22 4 0 0 0 2 + 22 21 24 4 0 0 0 2 + 25 12 23 2 0 0 0 2 + 13 25 23 4 0 0 0 2 + 23 27 13 4 0 0 0 2 + 12 24 21 8 0 0 0 2 + 21 23 12 16 0 0 0 2 + 28 13 27 2 0 0 0 2 + 27 29 28 8 0 0 0 2 + 33 32 29 2 0 0 0 2 + 29 31 33 4 0 0 0 2 + 32 28 29 16 0 0 0 2 + 30 33 31 8 0 0 0 2 + 34 30 31 2 0 0 0 2 + 15 34 31 16 0 0 0 2 + 6 2 31 0 0 0 0 2 + 31 26 6 0 0 0 0 2 + 26 3 6 0 0 0 0 2 + 0 15 2 0 0 0 0 2 + 31 2 15 0 0 0 0 2 + 20 1 3 0 0 0 0 2 + 26 20 3 0 0 0 0 2 + aabb -5.0 -5.0 -1.5 5.0 5.0 1.5 -1 + -5.0 -5.0 -1.5 3.75 5.0 1.5 -1 + -5.0 -5.0 -1.5 3.75 3.75 1.5 -1 + -5.0 -5.0 -1.5 -1.71 3.75 1.5 -1 + -5.0 -5.0 -1.5 -1.72 3.75 1.5 -1 + -2.49 -2.98 -1.5 -2.49 -1.03 1.5 34 + -5.0 -5.0 -1.5 -1.72 3.75 1.5 -1 + -2.49 -2.98 -1.5 -1.72 -1.03 1.5 -1 + -2.49 -2.98 -1.5 -2.49 -1.03 1.5 35 + -2.49 -2.98 1.5 -1.72 -1.03 1.5 17 + -5.0 -5.0 -1.5 -2.49 3.75 -1.5 16 + -3.75 -2.98 -1.5 -1.71 3.75 1.5 -1 + -2.49 -1.38 -1.5 -1.71 -1.03 1.5 -1 + -2.49 -1.38 -1.5 -1.71 -1.03 1.5 -1 + -2.49 -1.04 -1.5 -1.71 -1.03 1.5 39 + -1.72 -1.38 -1.5 -1.71 -1.04 1.5 36 + -2.49 -1.38 -1.5 -1.71 -1.03 1.5 40 + -3.75 -2.98 -1.5 -2.49 3.75 -1.5 18 + -5.0 -5.0 -1.5 3.75 -1.04 1.5 -1 + -5.0 -5.0 -1.5 3.75 -1.04 1.5 -1 + -5.0 -5.0 -1.5 3.75 -2.98 -1.5 7 + -1.72 -1.38 -1.5 0.78 -1.04 1.5 -1 + -1.72 -1.38 -1.5 0.78 -1.04 -1.5 19 + -1.72 -1.38 -1.5 0.78 -1.31 1.5 37 + -2.49 -2.99 -1.5 3.75 -1.31 1.5 -1 + -2.49 -2.99 -1.5 3.75 -1.31 1.5 -1 + -2.49 -2.99 -1.5 3.75 -2.98 1.5 33 + -1.72 -1.38 -1.5 0.78 -1.31 1.5 38 + -2.49 -2.99 1.5 3.75 -1.38 1.5 21 + -5.0 -5.0 -1.5 3.4 5.0 1.5 -1 + -5.0 -5.0 -1.5 1.99 3.75 -1.5 -1 + -5.0 -5.0 -1.5 0.92 3.75 -1.5 -1 + -3.75 -1.31 -1.5 0.78 3.75 -1.5 -1 + -3.75 -1.31 -1.5 0.78 3.75 -1.5 6 + -3.75 -1.04 -1.5 -1.71 3.75 -1.5 20 + -5.0 -5.0 -1.5 0.92 3.75 -1.5 -1 + -3.75 -1.31 -1.5 0.92 3.75 -1.5 23 + -5.0 -5.0 -1.5 -3.75 3.75 -1.5 1 + -3.75 -0.43 -1.5 1.99 3.75 -1.5 25 + -5.0 3.75 -1.5 3.4 5.0 1.5 -1 + -5.0 3.75 -1.5 3.4 5.0 1.5 -1 + -3.75 3.75 -1.5 3.4 5.0 -1.5 3 + -5.0 3.75 -1.5 -3.4 5.0 1.5 -1 + -5.0 3.75 -1.5 -3.75 3.75 1.5 10 + -3.75 3.75 -1.5 -3.4 5.0 1.5 12 + -5.0 3.75 -1.5 -3.75 5.0 1.5 -1 + -5.0 3.75 -1.5 -3.75 5.0 1.5 -1 + -5.0 3.75 -1.5 -3.75 3.75 1.5 9 + -3.75 3.75 -1.5 -3.75 5.0 1.5 11 + -5.0 3.75 1.5 -3.75 5.0 1.5 -1 + -5.0 3.75 1.5 -3.75 5.0 1.5 13 + -5.0 3.75 1.5 -3.75 5.0 1.5 14 + -3.75 -5.0 -1.5 5.0 5.0 1.5 -1 + -2.49 -5.0 -1.5 5.0 5.0 1.5 -1 + -2.49 -5.0 -1.5 5.0 5.0 1.5 -1 + -2.49 -5.0 -1.5 3.75 -2.98 1.5 -1 + -2.49 -5.0 -1.5 3.75 -2.98 -1.5 15 + -2.49 -5.0 -1.5 3.75 -2.98 1.5 -1 + -2.49 -5.0 -1.5 3.75 -2.98 1.5 -1 + -2.49 -2.99 -1.5 3.75 -2.98 1.5 32 + 3.75 -5.0 -1.5 3.75 -2.99 1.5 54 + 3.75 -5.0 -1.5 3.75 -2.99 1.5 55 + -1.72 -5.0 1.5 5.0 5.0 1.5 -1 + -1.72 -2.99 1.5 3.75 -1.31 1.5 22 + 0.78 -5.0 1.5 5.0 5.0 1.5 -1 + 3.75 -5.0 1.5 5.0 5.0 1.5 5 + 0.78 -2.99 1.5 3.75 -0.37 1.5 24 + 0.78 -5.0 -1.5 5.0 5.0 1.5 -1 + 0.78 -5.0 -1.5 5.0 5.0 1.5 -1 + 0.78 -5.0 -1.5 5.0 5.0 1.5 -1 + 0.78 -1.31 -1.5 0.92 -0.43 1.5 41 + 3.75 -5.0 1.5 5.0 5.0 1.5 51 + 0.78 -2.99 -1.5 3.75 1.61 1.5 -1 + 0.78 -2.99 -1.5 3.75 1.61 1.5 -1 + 0.78 -1.31 -1.5 2.86 -0.37 1.5 42 + 2.86 -2.99 1.5 3.75 1.61 1.5 26 + 0.92 -0.43 -1.5 2.86 -0.37 1.5 45 + 0.92 -0.43 -1.5 3.75 1.61 1.5 -1 + 0.92 -0.43 -1.5 2.87 1.07 -1.5 27 + 2.86 -0.37 -1.5 3.75 1.61 1.5 -1 + 2.86 -0.37 -1.5 2.87 1.07 1.5 43 + 2.86 -0.37 -1.5 3.75 1.61 1.5 44 + -3.75 -2.99 -1.5 5.0 5.0 1.5 -1 + -3.75 -0.43 -1.5 3.75 5.0 1.5 -1 + -3.75 -0.43 -1.5 3.4 5.0 -1.5 -1 + -3.75 2.49 -1.5 3.4 5.0 -1.5 -1 + -3.75 2.49 -1.5 3.4 4.78 -1.5 30 + -3.75 3.75 -1.5 3.4 5.0 -1.5 2 + 0.92 -0.43 -1.5 2.87 2.49 -1.5 28 + 1.99 1.07 -1.5 3.75 4.78 1.5 -1 + 1.99 1.07 -1.5 3.75 2.78 1.5 -1 + 1.99 1.61 -1.5 3.75 2.78 1.5 47 + 1.99 1.07 -1.5 3.75 2.49 1.5 46 + 1.99 2.49 -1.5 3.4 4.78 -1.5 29 + 2.53 -2.99 -1.5 5.0 5.0 1.5 -1 + 2.53 -2.99 -1.5 5.0 5.0 1.5 -1 + 2.53 -2.99 -1.5 5.0 5.0 1.5 -1 + 3.75 -2.99 1.5 5.0 5.0 1.5 50 + 2.53 1.61 -1.5 3.75 2.78 1.5 48 + 2.53 1.61 -1.5 3.75 5.0 1.5 -1 + 3.75 1.61 -1.5 3.75 5.0 1.5 53 + 2.53 1.61 -1.5 3.75 4.78 -1.5 31 + 3.4 1.61 -1.5 5.0 5.0 1.5 -1 + 3.4 1.61 -1.5 5.0 5.0 1.5 -1 + 3.4 1.61 -1.5 3.75 4.78 -1.5 8 + 3.75 1.61 -1.5 5.0 5.0 1.5 -1 + 3.75 1.61 -1.5 3.75 5.0 1.5 52 + 3.75 1.61 1.5 5.0 5.0 1.5 49 + 3.4 4.78 -1.5 3.75 5.0 1.5 -1 + 3.4 4.78 -1.5 3.75 5.0 1.5 0 + 3.4 4.78 -1.5 3.75 5.0 1.5 4 +endnode +#Tile trimesh node +node trimesh Line130 + parent tin01_f08_02 + position -4.75 4.75 2.94 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 475.0 -475.0 6.0 + bitmap tin01_black + verts 11 + 0.25 0.25 0.06 + -0.25 0.25 0.06 + -0.25 -0.25 0.06 + 0.25 -0.25 0.06 + 9.75 -9.75 0.06 + 9.75 0.25 0.06 + 9.25 0.25 0.06 + 9.25 -6.94 0.06 + 9.25 -9.75 0.06 + 9.25 -2.25 0.06 + 9.25 -4.75 0.06 + faces 7 + 0 1 2 1 0 1 2 1 + 3 0 2 1 3 0 2 1 + 4 5 6 1 4 5 6 1 + 4 7 8 1 4 7 8 1 + 4 6 9 1 4 6 9 1 + 4 9 10 1 4 9 10 1 + 4 10 7 1 4 10 7 1 + tverts 11 + -64.0 30.5 0 + -64.5 30.5 0 + -64.5 30.0 0 + -64.0 30.0 0 + -54.5 20.5 0 + -54.5 30.5 0 + -55.0 30.5 0 + -55.0 23.3068 0 + -55.0 20.5 0 + -55.0 28.0 0 + -55.0 25.5 0 +endnode +#Tile trimesh node +node trimesh Box2943 + parent tin01_f08_02 + position -3.41 5.09 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -16.5 -20.0 -219.0 + bitmap tin01_furnish2 + verts 8 + -0.34 -0.31 -3.69 + 0.01 -0.31 -3.69 + -0.34 -0.31 -0.69 + 0.01 -0.31 -1.27 + 0.01 -0.31 -0.69 + 0.01 -0.09 -3.69 + 0.01 -0.09 -1.27 + 0.01 -0.09 -0.69 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 1 5 3 2 5 6 7 3 + 6 3 5 2 8 7 6 3 + 7 4 6 2 9 10 8 3 + 3 6 4 2 7 8 10 3 + tverts 11 + -0.696282 -0.23919 0 + -0.596283 -0.23919 0 + -0.696282 0.617953 0 + -0.596281 0.452184 0 + -0.596281 0.617953 0 + 0.219389 -0.0988962 0 + 0.285126 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 +endnode +#Tile trimesh node +node trimesh Rectangle59 + parent tin01_f08_02 + position -3.58 4.89 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 358.0 0.0 0.0 + bitmap tin01_black + verts 8 + -0.17 -0.11 0.0 + 0.18 -0.11 0.0 + 0.18 0.11 0.0 + -0.17 0.11 0.0 + 6.98 -0.11 0.0 + 7.33 -0.11 0.0 + 7.33 0.11 0.0 + 6.98 0.11 0.0 + faces 4 + 0 1 2 1 0 0 0 1 + 0 2 3 1 0 0 0 1 + 4 5 6 1 0 0 0 1 + 4 6 7 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh Box2944 + parent tin01_f08_02 + position 3.4 5.09 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 17.5 -20.0 -218.0 + bitmap tin01_furnish2 + verts 8 + 0.0 -0.31 -3.68 + 0.35 -0.31 -3.68 + 0.0 -0.31 -1.26 + 0.35 -0.31 -0.68 + 0.0 -0.31 -0.68 + 0.0 -0.09 -3.68 + 0.0 -0.09 -1.26 + 0.0 -0.09 -0.68 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 5 0 2 2 5 6 7 3 + 2 6 5 2 7 8 5 3 + 4 7 6 2 9 10 8 3 + 6 2 4 2 8 7 9 3 + tverts 11 + 1.34658 -0.23919 0 + 1.44658 -0.23919 0 + 1.34658 0.452184 0 + 1.44658 0.617953 0 + 1.34658 0.617953 0 + 0.285126 -0.0988962 0 + 0.219389 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.219389 0.810195 0 + 0.285126 0.810195 0 +endnode +node light tin01_f08_02ml1 + parent tin01_f08_02 + position 0.0 0.0 5.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 14.0 + multiplier 1.0 + color 0.0 0.0 0.0 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +node light tin01_f08_02ml2 + parent tin01_f08_02 + position 1.50704 1.96584 4.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 5.0 + multiplier 1.0 + color 0.00392157 0.00392157 0.00392157 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +#Tile trimesh node +node trimesh Plane01 + parent tin01_f08_02 + position 0.0 2.5 0.01 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.219608 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 0 + center 0.0 67.5 0.0 + bitmap tin01_floorTRAN2 + verts 12 + -2.75 -0.2 0.0 + 2.75 -0.2 0.0 + -2.55 0.2 0.0 + 2.55 0.2 0.0 + -4.3 1.35 0.0 + -2.75 -0.2 0.0 + -3.9 1.55 0.0 + -2.55 0.2 0.0 + 2.75 -0.2 0.0 + 4.3 1.35 0.0 + 2.55 0.2 0.0 + 3.9 1.55 0.0 + faces 6 + 2 0 3 1 2 0 3 1 + 1 3 0 1 1 3 0 1 + 6 4 7 1 6 4 7 1 + 5 7 4 1 5 7 4 1 + 10 8 11 1 10 8 11 1 + 9 11 8 1 9 11 8 1 + tverts 12 + -0.434156 0.0579255 0 + 1.56385 0.0579222 0 + -0.356194 0.138854 0 + 1.4965 0.13885 0 + -0.00916232 0.0584724 0 + 0.989839 0.0584706 0 + 0.0601203 0.144429 0 + 0.930218 0.144426 0 + -0.00916232 0.0584724 0 + 0.989839 0.0584706 0 + 0.0601203 0.144429 0 + 0.930218 0.144426 0 +endnode +#Tile trimesh node +node trimesh blacky01 + parent tin01_f08_02 + position -3.37 -5.0 4.04 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 4 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 374.5 500.0 4.5 + bitmap tin01_black + verts 32 + 1.15 10.0 0.8 + 1.97 10.0 0.8 + 0.94 10.0 0.45 + 0.73 10.0 0.69 + 0.19 10.0 0.15 + 0.41 10.0 -0.09 + -0.03 10.0 -0.34 + -0.03 10.0 -1.04 + -0.38 10.0 1.13 + -0.03 10.0 0.8 + -0.38 10.0 -1.04 + 3.37 10.0 1.13 + 3.37 10.0 0.8 + 4.77 10.0 0.8 + 5.59 10.0 0.8 + 5.8 10.0 0.45 + 6.01 10.0 0.69 + 6.55 10.0 0.15 + 6.33 10.0 -0.09 + 6.77 10.0 -0.34 + 6.77 10.0 -1.04 + 6.77 10.0 0.8 + 7.12 10.0 1.13 + 7.12 10.0 -1.04 + 7.87 0.0 -1.04 + 7.12 0.0 -1.04 + 7.12 10.0 -1.04 + 7.87 10.0 -1.04 + 7.87 0.0 1.13 + 7.12 0.0 1.13 + 7.12 10.0 1.13 + 7.87 10.0 1.13 + faces 30 + 0 1 2 1 4 5 6 1 + 0 2 3 1 4 6 7 1 + 4 3 5 1 8 7 9 1 + 5 3 2 1 9 7 6 1 + 6 4 7 1 10 8 11 1 + 7 4 5 1 11 8 9 1 + 8 9 10 1 12 13 14 1 + 10 6 7 1 14 10 11 1 + 10 9 6 1 14 13 10 1 + 0 9 8 1 4 13 12 1 + 8 11 12 1 12 15 16 1 + 1 0 8 1 5 4 12 1 + 8 12 1 1 12 16 5 1 + 13 14 15 1 17 18 19 1 + 15 14 16 1 19 18 20 1 + 16 17 18 1 20 21 22 1 + 16 18 15 1 20 22 19 1 + 17 19 20 1 21 23 24 1 + 17 20 18 1 21 24 22 1 + 21 22 23 1 25 26 27 1 + 19 23 20 1 23 27 24 1 + 21 23 19 1 25 27 23 1 + 21 14 22 1 25 18 26 1 + 11 22 12 1 15 26 16 1 + 14 13 22 1 18 17 26 1 + 12 22 13 1 16 26 17 1 + 25 24 28 0 52 48 53 1 + 28 29 25 0 49 54 55 1 + 27 26 30 0 56 57 58 1 + 30 31 27 0 59 51 50 1 + tverts 72 + -163.0 800.0 0 + -163.0 875.0 0 + -163.0 875.0 0 + -163.0 800.0 0 + 115.0 1000.0 0 + 197.0 1000.0 0 + 94.0 1000.0 0 + 73.0 1000.0 0 + 19.0 1000.0 0 + 41.0 1000.0 0 + -3.00001 1000.0 0 + -3.00001 1000.0 0 + -38.0 1000.0 0 + -3.00001 1000.0 0 + -38.0 1000.0 0 + 337.0 1000.0 0 + 337.0 1000.0 0 + 477.0 1000.0 0 + 559.0 1000.0 0 + 580.0 1000.0 0 + 601.0 1000.0 0 + 655.0 1000.0 0 + 633.0 1000.0 0 + 677.0 1000.0 0 + 677.0 1000.0 0 + 677.0 1000.0 0 + 712.0 1000.0 0 + 712.0 1000.0 0 + 0.265279 0.653515 0 + 0.0692729 1.003 0 + 0.265279 1.003 0 + 0.215041 0.174409 0 + 0.215041 0.35 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.812499 0.830915 0 + 1.4375 0.642952 0 + 1.4375 0.830915 0 + 0.8125 0.774954 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 0.500499 0.5 0 + 1.4995 0.0 0 + 1.92108 0.0 0 + 1.92108 0.5 0 + 1.07492 0.0 0 + 1.07492 0.5 0 + 0.925075 0.0 0 + 0.925075 0.5 0 + 0.925075 0.0 0 + 1.07492 0.5 0 + 0.925075 0.5 0 + 0.925075 0.0 0 + 0.925075 0.0 0 + 1.07492 0.0 0 + 1.07492 0.5 0 + 1.07492 0.5 0 + 0.688285 0.0 0 + 0.000998914 0.0 0 + 0.688285 0.5 0 + 0.000998914 0.5 0 + 0.688285 0.0 0 + 0.938035 0.0 0 + 0.938035 0.5 0 + 0.938035 0.5 0 + 0.000998914 0.0 0 + 0.250749 0.0 0 + 0.250749 0.5 0 + 0.250749 0.5 0 +endnode +#Tile trimesh node +node trimesh bolt01 + parent tin01_f08_02 + position 5.0 -2.85 5.02 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.6 0.894118 0.721569 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10 + center -565.0 210.5 47.5 + bitmap tin01__metal01 + verts 90 + -9.67 5.41 0.16 + -9.67 5.35 0.16 + -9.67 5.39 0.22 + -9.67 5.46 0.2 + -9.67 5.46 0.12 + -9.67 5.39 0.1 + -9.95 5.35 0.16 + -9.95 5.39 0.22 + -9.95 5.46 0.2 + -9.95 5.46 0.12 + -9.95 5.39 0.1 + -9.67 4.06 1.86 + -9.67 4.0 1.86 + -9.67 4.04 1.92 + -9.67 4.11 1.9 + -9.67 4.11 1.82 + -9.67 4.04 1.8 + -9.95 4.0 1.86 + -9.95 4.04 1.92 + -9.95 4.11 1.9 + -9.95 4.11 1.82 + -9.95 4.04 1.8 + -9.67 6.26 -0.91 + -9.67 6.2 -0.91 + -9.67 6.24 -0.85 + -9.67 6.31 -0.87 + -9.67 6.31 -0.95 + -9.67 6.24 -0.97 + -9.95 6.2 -0.91 + -9.95 6.24 -0.85 + -9.95 6.31 -0.87 + -9.95 6.31 -0.95 + -9.95 6.24 -0.97 + -1.4 2.52 0.08 + -1.46 2.52 0.08 + -1.42 2.52 0.14 + -1.35 2.52 0.12 + -1.35 2.52 0.04 + -1.42 2.52 0.02 + -1.46 3.18 0.08 + -1.42 3.18 0.14 + -1.35 3.18 0.12 + -1.35 3.18 0.04 + -1.42 3.18 0.02 + -1.4 3.18 0.08 + -3.0 2.52 1.86 + -3.06 2.52 1.86 + -3.02 2.52 1.92 + -2.95 2.52 1.9 + -2.95 2.52 1.82 + -3.02 2.52 1.8 + -3.06 3.18 1.86 + -3.02 3.18 1.92 + -2.95 3.18 1.9 + -2.95 3.18 1.82 + -3.02 3.18 1.8 + -3.0 3.18 1.86 + -2.5 -2.1 0.16 + -2.46 -2.1 0.22 + -2.39 -2.1 0.2 + -2.39 -2.1 0.12 + -2.46 -2.1 0.1 + -2.5 -1.82 0.16 + -2.46 -1.82 0.22 + -2.39 -1.82 0.2 + -2.39 -1.82 0.12 + -2.46 -1.82 0.1 + -2.44 -1.82 0.16 + -3.85 -2.1 1.86 + -3.81 -2.1 1.92 + -3.74 -2.1 1.9 + -3.74 -2.1 1.82 + -3.81 -2.1 1.8 + -3.85 -1.82 1.86 + -3.81 -1.82 1.92 + -3.74 -1.82 1.9 + -3.74 -1.82 1.82 + -3.81 -1.82 1.8 + -3.79 -1.82 1.86 + -1.65 -2.1 -0.91 + -1.61 -2.1 -0.85 + -1.54 -2.1 -0.87 + -1.54 -2.1 -0.95 + -1.61 -2.1 -0.97 + -1.65 -1.82 -0.91 + -1.61 -1.82 -0.85 + -1.54 -1.82 -0.87 + -1.54 -1.82 -0.95 + -1.61 -1.82 -0.97 + -1.59 -1.82 -0.91 + faces 130 + 0 2 1 1 95 96 97 2 + 0 3 2 1 98 99 100 2 + 0 4 3 1 101 102 103 2 + 0 5 4 1 104 105 106 2 + 0 1 5 1 84 107 108 2 + 1 7 6 8 85 91 90 3 + 1 2 7 8 85 86 91 3 + 2 8 7 8 109 92 110 3 + 2 3 8 8 111 87 92 3 + 3 9 8 8 87 93 92 3 + 3 4 9 8 87 88 93 3 + 4 10 9 8 88 94 93 3 + 4 5 10 8 88 89 94 3 + 5 6 10 8 89 90 94 3 + 5 1 6 8 89 85 90 3 + 11 13 12 1 123 124 125 2 + 11 14 13 1 126 127 128 2 + 11 15 14 1 129 130 131 2 + 11 16 15 1 132 133 134 2 + 11 12 16 1 112 135 136 2 + 12 18 17 8 113 119 118 3 + 12 13 18 8 113 114 119 3 + 13 19 18 8 137 120 138 3 + 13 14 19 8 139 115 120 3 + 14 20 19 8 115 121 120 3 + 14 15 20 8 115 116 121 3 + 15 21 20 8 116 122 121 3 + 15 16 21 8 116 117 122 3 + 16 17 21 8 117 118 122 3 + 16 12 17 8 117 113 118 3 + 22 24 23 1 151 152 153 2 + 22 25 24 1 154 155 156 2 + 22 26 25 1 157 158 159 2 + 22 27 26 1 160 161 162 2 + 22 23 27 1 140 163 164 2 + 23 29 28 8 141 147 146 3 + 23 24 29 8 141 142 147 3 + 24 30 29 8 165 148 166 3 + 24 25 30 8 167 143 148 3 + 25 31 30 8 143 149 148 3 + 25 26 31 8 143 144 149 3 + 26 32 31 8 144 150 149 3 + 26 27 32 8 144 145 150 3 + 27 28 32 8 145 146 150 3 + 27 23 28 8 145 141 146 3 + 33 35 34 1 223 224 225 2 + 33 36 35 1 226 227 228 2 + 33 37 36 1 229 230 231 2 + 33 38 37 1 232 233 234 2 + 33 34 38 1 211 235 236 2 + 34 40 39 8 212 218 217 3 + 34 35 40 8 212 213 218 3 + 35 41 40 8 237 219 238 3 + 35 36 41 8 239 214 219 3 + 36 42 41 8 214 220 219 3 + 36 37 42 8 214 215 220 3 + 37 43 42 8 215 221 220 3 + 37 38 43 8 215 216 221 3 + 38 39 43 8 216 217 221 3 + 38 34 39 8 216 212 217 3 + 44 39 40 1 240 241 242 1 + 44 40 41 1 243 244 245 1 + 44 41 42 1 246 247 248 1 + 44 42 43 1 249 250 251 1 + 44 43 39 1 222 252 253 1 + 45 47 46 1 309 310 311 2 + 45 48 47 1 312 313 314 2 + 45 49 48 1 315 316 317 2 + 45 50 49 1 318 319 320 2 + 45 46 50 1 297 321 322 2 + 46 52 51 8 298 304 303 3 + 46 47 52 8 298 299 304 3 + 47 53 52 8 323 305 324 3 + 47 48 53 8 325 300 305 3 + 48 54 53 8 300 306 305 3 + 48 49 54 8 300 301 306 3 + 49 55 54 8 301 307 306 3 + 49 50 55 8 301 302 307 3 + 50 51 55 8 302 303 307 3 + 50 46 51 8 302 298 303 3 + 56 51 52 1 326 327 328 1 + 56 52 53 1 329 330 331 1 + 56 53 54 1 332 333 334 1 + 56 54 55 1 335 336 337 1 + 56 55 51 1 308 338 339 1 + 57 63 62 8 340 346 345 3 + 57 58 63 8 340 341 346 3 + 58 64 63 8 351 347 352 3 + 58 59 64 8 353 342 347 3 + 59 65 64 8 342 348 347 3 + 59 60 65 8 342 343 348 3 + 60 66 65 8 343 349 348 3 + 60 61 66 8 343 344 349 3 + 61 62 66 8 344 345 349 3 + 61 57 62 8 344 340 345 3 + 67 62 63 1 354 355 356 1 + 67 63 64 1 357 358 359 1 + 67 64 65 1 360 361 362 1 + 67 65 66 1 363 364 365 1 + 67 66 62 1 350 366 367 1 + 68 74 73 8 368 374 373 3 + 68 69 74 8 368 369 374 3 + 69 75 74 8 379 375 380 3 + 69 70 75 8 381 370 375 3 + 70 76 75 8 370 376 375 3 + 70 71 76 8 370 371 376 3 + 71 77 76 8 371 377 376 3 + 71 72 77 8 371 372 377 3 + 72 73 77 8 372 373 377 3 + 72 68 73 8 372 368 373 3 + 78 73 74 1 382 383 384 1 + 78 74 75 1 385 386 387 1 + 78 75 76 1 388 389 390 1 + 78 76 77 1 391 392 393 1 + 78 77 73 1 378 394 395 1 + 79 85 84 8 396 402 401 3 + 79 80 85 8 396 397 402 3 + 80 86 85 8 407 403 408 3 + 80 81 86 8 409 398 403 3 + 81 87 86 8 398 404 403 3 + 81 82 87 8 398 399 404 3 + 82 88 87 8 399 405 404 3 + 82 83 88 8 399 400 405 3 + 83 84 88 8 400 401 405 3 + 83 79 84 8 400 396 401 3 + 89 84 85 1 410 411 412 1 + 89 85 86 1 413 414 415 1 + 89 86 87 1 416 417 418 1 + 89 87 88 1 419 420 421 1 + 89 88 84 1 406 422 423 1 + tverts 424 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 +endnode +#Tile trimesh node +node trimesh construction01 + parent tin01_f08_02 + position -4.0 -0.2 3.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.87451 0.556863 0.337255 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 357.0 20.0 275.0 + bitmap tin01_furnish2 + verts 228 + 7.76 0.1 1.94 + 7.76 0.3 1.94 + 6.63 0.1 1.86 + 6.63 0.3 1.86 + 4.45 0.15 1.92 + 4.45 0.35 1.92 + 2.33 0.1 1.82 + 2.33 0.3 1.82 + -0.9 0.1 1.93 + -0.9 0.3 1.93 + 7.74 0.1 2.11 + 7.74 0.3 2.11 + 6.63 0.1 2.06 + 6.63 0.3 2.06 + 4.45 0.15 2.12 + 4.45 0.35 2.12 + 2.33 0.1 2.02 + 2.33 0.3 2.02 + -0.9 0.1 2.11 + -0.9 0.3 2.11 + 3.89 -4.71 1.94 + 4.09 -4.71 1.94 + 3.93 -2.42 1.94 + 4.13 -2.42 1.94 + 3.89 -0.28 1.86 + 4.09 -0.28 1.86 + 3.89 1.87 1.92 + 4.09 1.87 1.92 + 3.89 4.98 1.88 + 4.09 4.98 1.88 + 3.89 -4.7 2.11 + 4.09 -4.7 2.11 + 3.93 -2.42 2.14 + 4.13 -2.42 2.14 + 3.89 -0.28 2.06 + 4.09 -0.28 2.06 + 3.89 1.87 2.12 + 4.09 1.87 2.12 + 3.89 4.98 2.08 + 4.09 4.98 2.08 + 4.1 5.2 3.76 + 3.9 5.2 3.76 + 4.11 1.65 3.74 + 3.91 1.65 3.74 + 4.06 -0.53 3.8 + 3.86 -0.53 3.8 + 4.11 -2.65 3.7 + 3.91 -2.65 3.7 + 4.1 -4.8 3.76 + 3.9 -4.8 3.76 + 4.1 5.2 3.96 + 3.9 5.2 3.96 + 4.11 1.65 3.94 + 3.91 1.65 3.94 + 4.06 -0.53 4.0 + 3.86 -0.53 4.0 + 4.11 -2.65 3.9 + 3.91 -2.65 3.9 + 4.1 -4.8 3.96 + 3.9 -4.8 3.96 + 6.85 0.05 3.82 + 6.85 0.25 3.82 + 4.7 0.02 3.74 + 4.7 0.22 3.74 + 2.55 0.02 3.8 + 2.55 0.22 3.8 + -1.0 0.1 3.76 + -1.0 0.3 3.76 + 6.85 0.05 4.02 + 6.85 0.25 4.02 + 4.7 0.02 3.94 + 4.7 0.22 3.94 + 2.55 0.02 4.0 + 2.55 0.22 4.0 + -1.0 0.1 3.96 + -1.0 0.3 3.96 + 6.08 0.14 2.07 + 6.08 0.3 2.07 + 5.92 0.14 2.07 + 5.92 0.3 2.07 + 6.06 0.06 3.82 + 6.06 0.22 3.82 + 5.92 0.06 3.82 + 5.92 0.22 3.82 + 2.09 0.12 2.0 + 2.09 0.28 2.0 + 1.93 0.12 2.0 + 1.93 0.28 2.0 + 2.07 0.06 3.82 + 2.07 0.22 3.82 + 1.93 0.06 3.82 + 1.93 0.22 3.82 + 4.06 2.16 2.04 + 4.06 2.32 2.04 + 3.9 2.16 2.04 + 3.9 2.32 2.04 + 4.06 2.08 3.82 + 4.06 2.24 3.82 + 3.92 2.08 3.82 + 3.92 2.24 3.82 + 4.1 -1.88 2.07 + 4.1 -1.72 2.07 + 3.94 -1.88 2.07 + 3.94 -1.72 2.07 + 4.08 -1.96 3.82 + 4.08 -1.8 3.82 + 3.94 -1.96 3.82 + 3.94 -1.8 3.82 + -1.0 -4.8 3.72 + -0.9 -4.7 3.72 + -1.0 -0.8 3.72 + -0.91 -1.25 3.69 + -1.0 1.2 3.72 + -0.9 1.13 3.75 + -1.0 3.0 3.72 + -0.91 3.0 3.7 + -1.0 -4.8 3.92 + -0.9 -4.7 3.92 + -1.0 -0.8 3.92 + -0.91 -1.25 3.94 + -1.0 1.2 3.92 + -0.9 1.13 4.0 + -1.0 3.0 3.92 + -0.91 3.0 3.94 + -1.0 0.3 2.07 + -1.0 0.1 2.07 + -0.92 0.28 2.07 + -0.92 0.12 2.07 + -1.0 0.3 3.72 + -1.0 0.1 3.72 + -0.92 0.28 3.77 + -0.92 0.12 3.77 + 6.9 -4.8 3.72 + 6.8 -4.7 3.72 + 5.0 -4.8 3.72 + 5.45 -4.71 3.69 + 3.0 -4.8 3.72 + 3.07 -4.7 3.75 + -1.0 -4.8 3.72 + -0.9 -4.7 3.72 + 6.9 -4.8 3.92 + 6.8 -4.7 3.92 + 5.0 -4.8 3.92 + 5.45 -4.71 3.94 + 3.0 -4.8 3.92 + 3.07 -4.7 4.0 + -1.0 -4.8 3.92 + -0.9 -4.7 3.92 + 3.9 -4.8 2.07 + 4.1 -4.8 2.07 + 3.92 -4.72 2.07 + 4.08 -4.72 2.07 + 3.9 -4.8 3.72 + 4.1 -4.8 3.72 + 3.92 -4.72 3.77 + 4.08 -4.72 3.77 + 1.2 5.2 3.72 + 1.2 5.11 3.71 + 3.0 5.2 3.72 + 2.55 5.11 3.69 + 5.0 5.2 3.72 + 4.93 5.1 3.75 + 6.8 5.2 3.72 + 6.8 5.11 3.7 + 1.2 5.2 3.92 + 1.2 5.11 3.96 + 3.0 5.2 3.92 + 2.55 5.11 3.94 + 5.0 5.2 3.92 + 4.93 5.1 4.0 + 6.8 5.2 3.92 + 6.8 5.11 3.94 + 4.1 5.2 2.07 + 3.9 5.2 2.07 + 4.08 5.12 2.07 + 3.92 5.12 2.07 + 4.1 5.2 3.72 + 3.9 5.2 3.72 + 4.08 5.12 3.77 + 3.92 5.12 3.77 + -1.0 -4.8 1.92 + -0.9 -4.7 1.92 + -1.0 -0.8 1.92 + -0.91 -1.25 1.89 + -1.0 1.2 1.92 + -0.9 1.13 1.95 + -1.0 3.95 1.92 + -0.91 3.95 1.9 + -1.0 -4.8 2.12 + -0.9 -4.7 2.12 + -1.0 -0.8 2.12 + -0.91 -1.25 2.14 + -1.0 1.2 2.12 + -0.9 1.13 2.2 + -1.0 3.95 2.12 + -0.91 3.95 2.14 + 7.79 -4.8 1.92 + 7.74 -4.7 1.92 + 5.0 -4.8 1.92 + 5.45 -4.71 1.89 + 3.0 -4.8 1.92 + 3.07 -4.7 1.95 + -1.0 -4.8 1.92 + -0.9 -4.7 1.92 + 7.79 -4.8 2.12 + 7.74 -4.7 2.12 + 5.0 -4.8 2.12 + 5.45 -4.71 2.14 + 3.0 -4.8 2.12 + 3.07 -4.7 2.2 + -1.0 -4.8 2.12 + -0.9 -4.7 2.12 + 7.86 0.5 1.41 + 7.86 0.3 1.41 + 8.14 0.5 1.69 + 8.14 0.3 1.69 + 5.74 0.5 3.81 + 5.74 0.3 3.81 + 6.02 0.5 4.09 + 6.02 0.3 4.09 + 7.86 0.1 1.41 + 7.86 -0.1 1.41 + 8.14 0.1 1.69 + 8.14 -0.1 1.69 + 5.74 0.1 3.81 + 5.74 -0.1 3.81 + 6.02 0.1 4.09 + 6.02 -0.1 4.09 + faces 342 + 0 2 3 2 435 437 447 2 + 3 1 0 2 448 449 435 2 + 2 4 5 2 437 439 450 2 + 5 3 2 2 451 452 437 2 + 4 6 7 2 111 113 123 2 + 7 5 4 2 124 125 111 2 + 6 8 9 2 113 115 126 2 + 9 7 6 2 127 128 113 2 + 10 11 13 4 441 442 444 1 + 13 12 10 4 444 443 441 1 + 12 13 15 4 443 444 446 1 + 15 14 12 4 446 445 443 1 + 14 15 17 4 117 118 120 1 + 17 16 14 4 120 119 117 1 + 16 17 19 4 119 120 122 1 + 19 18 16 4 122 121 119 1 + 1 3 13 16 436 438 444 4 + 13 11 1 16 444 442 436 4 + 3 5 15 16 438 440 446 4 + 15 13 3 16 446 444 438 4 + 5 7 17 16 112 114 120 4 + 17 15 5 16 120 118 112 4 + 7 9 19 16 114 116 122 4 + 19 17 7 16 122 120 114 4 + 9 8 18 32 4 0 2 6 + 18 19 9 32 2 3 1 6 + 8 6 16 64 115 113 119 3 + 16 18 8 64 119 121 115 3 + 6 4 14 64 113 111 117 3 + 14 16 6 64 117 119 113 3 + 4 2 12 64 439 437 443 3 + 12 14 4 64 443 445 439 3 + 2 0 10 64 437 435 441 3 + 10 12 2 64 441 443 437 3 + 20 22 23 2 5 7 21 2 + 23 21 20 2 22 23 5 2 + 22 24 25 2 7 9 24 2 + 25 23 22 2 25 26 7 2 + 24 26 27 2 194 196 206 2 + 27 25 24 2 207 208 194 2 + 26 28 29 2 196 198 209 2 + 29 27 26 2 210 211 196 2 + 30 31 33 4 13 14 16 1 + 33 32 30 4 16 15 13 1 + 32 33 35 4 15 16 18 1 + 35 34 32 4 18 17 15 1 + 34 35 37 4 200 201 203 1 + 37 36 34 4 203 202 200 1 + 36 37 39 4 202 203 205 1 + 39 38 36 4 205 204 202 1 + 20 21 31 8 5 27 14 5 + 31 30 20 8 14 13 5 5 + 21 23 33 16 6 8 16 4 + 33 31 21 16 16 14 6 4 + 23 25 35 16 8 10 18 4 + 35 33 23 16 18 16 8 4 + 25 27 37 16 195 197 203 4 + 37 35 25 16 203 201 195 4 + 27 29 39 16 197 199 205 4 + 39 37 27 16 205 203 197 4 + 29 28 38 32 28 11 19 6 + 38 39 29 32 19 20 12 6 + 28 26 36 64 198 196 202 3 + 36 38 28 64 202 204 198 3 + 26 24 34 64 196 194 200 3 + 34 36 26 64 200 202 196 3 + 24 22 32 64 9 7 15 3 + 32 34 24 64 15 17 9 3 + 22 20 30 64 7 5 13 3 + 30 32 22 64 13 15 7 3 + 40 42 43 2 212 214 224 2 + 43 41 40 2 225 226 212 2 + 42 44 45 2 214 216 227 2 + 45 43 42 2 228 229 214 2 + 44 46 47 2 30 32 44 2 + 47 45 44 2 45 46 30 2 + 46 48 49 2 32 34 47 2 + 49 47 46 2 48 49 32 2 + 50 51 53 4 218 219 221 1 + 53 52 50 4 221 220 218 1 + 52 53 55 4 220 221 223 1 + 55 54 52 4 223 222 220 1 + 54 55 57 4 38 39 41 1 + 57 56 54 4 41 40 38 1 + 56 57 59 4 40 41 43 1 + 59 58 56 4 43 42 40 1 + 40 41 51 8 29 50 37 5 + 51 50 40 8 37 36 29 5 + 41 43 53 16 213 215 221 4 + 53 51 41 16 221 219 213 4 + 43 45 55 16 215 217 223 4 + 55 53 43 16 223 221 215 4 + 45 47 57 16 31 33 41 4 + 57 55 45 16 41 39 31 4 + 47 49 59 16 33 35 43 4 + 59 57 47 16 43 41 33 4 + 48 46 56 64 34 32 40 3 + 56 58 48 64 40 42 34 3 + 46 44 54 64 32 30 38 3 + 54 56 46 64 38 40 32 3 + 44 42 52 64 216 214 220 3 + 52 54 44 64 220 222 216 3 + 42 40 50 64 214 212 218 3 + 50 52 42 64 218 220 214 3 + 60 62 63 2 51 53 63 2 + 63 61 60 2 64 65 51 2 + 62 64 65 2 129 131 141 2 + 65 63 62 2 142 143 129 2 + 64 66 67 2 131 133 144 2 + 67 65 64 2 145 146 131 2 + 68 69 71 4 57 58 60 1 + 71 70 68 4 60 59 57 1 + 70 71 73 4 135 136 138 1 + 73 72 70 4 138 137 135 1 + 72 73 75 4 137 138 140 1 + 75 74 72 4 140 139 137 1 + 61 63 71 16 52 54 60 4 + 71 69 61 16 60 58 52 4 + 63 65 73 16 130 132 138 4 + 73 71 63 16 138 136 130 4 + 65 67 75 16 132 134 140 4 + 75 73 65 16 140 138 132 4 + 67 66 74 32 66 55 61 6 + 74 75 67 32 61 62 56 6 + 66 64 72 64 133 131 137 3 + 72 74 66 64 137 139 133 3 + 64 62 70 64 131 129 135 3 + 70 72 64 64 135 137 131 3 + 62 60 68 64 53 51 57 3 + 68 70 62 64 57 59 53 3 + 76 77 81 8 67 68 72 5 + 81 80 76 8 72 71 67 5 + 77 79 83 16 68 70 74 4 + 83 81 77 16 74 72 68 4 + 79 78 82 32 75 69 73 6 + 82 83 79 32 73 76 77 6 + 78 76 80 64 69 67 71 3 + 80 82 78 64 71 73 69 3 + 84 85 89 8 78 79 83 5 + 89 88 84 8 83 82 78 5 + 85 87 91 16 79 81 85 4 + 91 89 85 16 85 83 79 4 + 87 86 90 32 86 80 84 6 + 90 91 87 32 84 87 88 6 + 86 84 88 64 80 78 82 3 + 88 90 86 64 82 84 80 3 + 92 93 97 8 89 90 94 5 + 97 96 92 8 94 93 89 5 + 93 95 99 16 90 92 96 4 + 99 97 93 16 96 94 90 4 + 95 94 98 32 97 91 95 6 + 98 99 95 32 95 98 99 6 + 94 92 96 64 91 89 93 3 + 96 98 94 64 93 95 91 3 + 100 101 105 8 100 101 105 5 + 105 104 100 8 105 104 100 5 + 101 103 107 16 101 103 107 4 + 107 105 101 16 107 105 101 4 + 103 102 106 32 108 102 106 6 + 106 107 103 32 106 109 110 6 + 102 100 104 64 102 100 104 3 + 104 106 102 64 104 106 102 3 + 108 110 111 2 312 313 314 2 + 111 109 108 2 314 315 312 2 + 110 112 113 2 164 166 167 2 + 113 111 110 2 167 165 164 2 + 112 114 115 2 166 168 169 2 + 115 113 112 2 169 167 166 2 + 116 117 119 4 343 344 345 1 + 119 118 116 4 345 346 343 1 + 118 119 121 4 171 170 172 1 + 121 120 118 4 172 173 171 1 + 120 121 123 4 173 172 174 1 + 123 122 120 4 174 175 173 1 + 108 109 117 8 176 177 178 5 + 117 116 108 8 179 180 181 5 + 109 111 119 16 315 314 318 4 + 119 117 109 16 319 320 315 4 + 111 113 121 16 165 167 182 4 + 121 119 111 16 183 184 165 4 + 113 115 123 16 167 169 185 4 + 123 121 113 16 186 187 167 4 + 114 112 120 64 168 166 173 3 + 120 122 114 64 173 175 168 3 + 112 110 118 64 166 164 171 3 + 118 120 112 64 171 173 166 3 + 110 108 116 64 313 312 316 3 + 116 118 110 64 316 317 313 3 + 124 125 129 8 147 148 151 5 + 129 128 124 8 151 150 147 5 + 125 127 131 16 157 159 163 4 + 131 129 125 16 163 161 157 4 + 127 126 130 32 153 149 152 6 + 130 131 127 32 152 154 155 6 + 126 124 128 64 158 156 160 3 + 128 130 126 64 160 162 158 3 + 123 114 122 0 188 189 190 1 + 115 114 123 0 191 192 193 1 + 132 134 135 2 330 331 332 2 + 135 133 132 2 332 333 330 2 + 134 136 137 2 247 249 250 2 + 137 135 134 2 250 248 247 2 + 136 138 139 2 321 323 324 2 + 139 137 136 2 324 322 321 2 + 140 141 143 4 347 348 349 1 + 143 142 140 4 349 350 347 1 + 142 143 145 4 252 251 253 1 + 145 144 142 4 253 254 252 1 + 144 145 147 4 340 339 341 1 + 147 146 144 4 341 342 340 1 + 133 135 143 16 333 332 336 4 + 143 141 133 16 337 338 333 4 + 135 137 145 16 248 250 255 4 + 145 143 135 16 256 257 248 4 + 137 139 147 16 322 324 327 4 + 147 145 137 16 328 329 322 4 + 138 136 144 64 323 321 325 3 + 144 146 138 64 325 326 323 3 + 136 134 142 64 249 247 252 3 + 142 144 136 64 252 254 249 3 + 134 132 140 64 331 330 334 3 + 140 142 134 64 334 335 331 3 + 148 149 153 8 230 231 234 5 + 153 152 148 8 234 233 230 5 + 149 151 155 16 240 242 246 4 + 155 153 149 16 246 244 240 4 + 151 150 154 32 236 232 235 6 + 154 155 151 32 235 237 238 6 + 150 148 152 64 241 239 243 3 + 152 154 150 64 243 245 241 3 + 156 158 159 2 275 276 277 2 + 159 157 156 2 277 278 275 2 + 158 160 161 2 276 279 280 2 + 161 159 158 2 280 277 276 2 + 160 162 163 2 279 281 282 2 + 163 161 160 2 282 280 279 2 + 164 165 167 4 283 284 285 1 + 167 166 164 4 285 286 283 1 + 166 167 169 4 286 285 287 1 + 169 168 166 4 287 288 286 1 + 168 169 171 4 288 287 289 1 + 171 170 168 4 289 290 288 1 + 156 157 165 8 291 292 293 5 + 165 164 156 8 294 295 296 5 + 157 159 167 16 278 277 297 4 + 167 165 157 16 298 299 278 4 + 159 161 169 16 277 280 300 4 + 169 167 159 16 301 302 277 4 + 161 163 171 16 280 282 303 4 + 171 169 161 16 304 305 280 4 + 162 160 168 64 281 279 288 3 + 168 170 162 64 288 290 281 3 + 160 158 166 64 279 276 286 3 + 166 168 160 64 286 288 279 3 + 158 156 164 64 276 275 283 3 + 164 166 158 64 283 286 276 3 + 172 173 177 8 258 259 262 5 + 177 176 172 8 262 261 258 5 + 173 175 179 16 268 270 274 4 + 179 177 173 16 274 272 268 4 + 175 174 178 32 264 260 263 6 + 178 179 175 32 263 265 266 6 + 174 172 176 64 269 267 271 3 + 176 178 174 64 271 273 269 3 + 171 162 170 0 306 307 308 1 + 163 162 171 0 309 310 311 1 + 180 182 183 2 385 386 387 2 + 183 181 180 2 387 388 385 2 + 182 184 185 2 351 353 354 2 + 185 183 182 2 354 352 351 2 + 184 186 187 2 411 413 414 2 + 187 185 184 2 414 412 411 2 + 188 189 191 4 407 408 409 1 + 191 190 188 4 409 410 407 1 + 190 191 193 4 356 355 357 1 + 193 192 190 4 357 358 356 1 + 192 193 195 4 416 415 417 1 + 195 194 192 4 417 418 416 1 + 180 181 189 8 359 360 361 5 + 189 188 180 8 362 363 364 5 + 181 183 191 16 388 387 391 4 + 191 189 181 16 392 393 388 4 + 183 185 193 16 352 354 365 4 + 193 191 183 16 366 367 352 4 + 185 187 195 16 412 414 419 4 + 195 193 185 16 420 421 412 4 + 186 184 192 64 413 411 416 3 + 192 194 186 64 416 418 413 3 + 184 182 190 64 353 351 356 3 + 190 192 184 64 356 358 353 3 + 182 180 188 64 386 385 389 3 + 188 190 182 64 389 390 386 3 + 195 186 194 0 368 369 370 1 + 187 186 195 0 371 372 373 1 + 196 198 199 2 422 423 424 2 + 199 197 196 2 424 425 422 2 + 198 200 201 2 374 376 377 2 + 201 199 198 2 377 375 374 2 + 200 202 203 2 394 396 397 2 + 203 201 200 2 397 395 394 2 + 204 205 207 4 431 432 433 1 + 207 206 204 4 433 434 431 1 + 206 207 209 4 379 378 380 1 + 209 208 206 4 380 381 379 1 + 208 209 211 4 404 403 405 1 + 211 210 208 4 405 406 404 1 + 197 199 207 16 425 424 428 4 + 207 205 197 16 429 430 425 4 + 199 201 209 16 375 377 382 4 + 209 207 199 16 383 384 375 4 + 201 203 211 16 395 397 400 4 + 211 209 201 16 401 402 395 4 + 202 200 208 64 396 394 398 3 + 208 210 202 64 398 399 396 3 + 200 198 206 64 376 374 379 3 + 206 208 200 64 379 381 376 3 + 198 196 204 64 423 422 426 3 + 204 206 198 64 426 427 423 3 + 212 214 215 2 465 466 467 2 + 215 213 212 2 468 469 470 2 + 216 217 219 4 471 472 473 1 + 219 218 216 4 474 475 476 1 + 212 213 217 8 457 458 462 5 + 217 216 212 8 462 461 457 5 + 213 215 219 16 458 460 464 4 + 219 217 213 16 464 462 458 4 + 215 214 218 32 477 459 463 6 + 218 219 215 32 463 478 479 6 + 214 212 216 64 459 457 461 3 + 216 218 214 64 461 463 459 3 + 220 222 223 2 488 489 490 2 + 223 221 220 2 491 492 493 2 + 224 225 227 4 494 495 496 1 + 227 226 224 4 497 498 499 1 + 220 221 225 8 480 481 485 5 + 225 224 220 8 485 484 480 5 + 221 223 227 16 481 483 487 4 + 227 225 221 16 487 485 481 4 + 223 222 226 32 500 482 486 6 + 226 227 223 32 486 501 502 6 + 222 220 224 64 482 480 484 3 + 224 226 222 64 484 486 482 3 + tverts 503 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 2.9985 0 + 0.344242 -1.04225 0 + 0.273035 -1.04225 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 1.95475 0 + 0.174465 0.00149864 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 2.9985 0 + 0.104128 2.9985 0 + 0.104128 2.24925 0 + 0.104128 0.00149864 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 1.95475 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 3.66842 0 + 0.104128 3.66842 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 3.66842 0 + 0.175144 3.66842 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 3.66842 0 + 0.104128 3.66842 0 + 0.104128 2.24925 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.348651 2.41652 0 + 0.277444 2.41652 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.419858 2.41652 0 + 0.349339 2.41652 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.277444 2.41652 0 + 0.277444 2.41652 0 + 0.273035 1.2055 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.326305 2.43905 0 + 0.255098 2.43905 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.397512 2.43905 0 + 0.326993 2.43905 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.255098 2.43905 0 + 0.255098 2.43905 0 + 0.273035 1.2055 0 + 0.159393 -0.654153 0 + 0.0890555 -0.654153 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.229729 -0.654153 0 + 0.160072 -0.654153 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.0890555 -0.654153 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.0337728 0.940718 0 + 0.0337728 -0.0582831 0 + 0.243649 -0.0582831 0 + 0.310278 -0.0582831 0 + 0.177022 -0.0582831 0 + 0.376905 -0.0582831 0 + 0.237631 0.940718 0 + 0.316296 0.940718 0 + 0.177022 0.940718 0 + 0.376905 0.940718 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 -0.0109385 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -0.0109385 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.37945 -0.0109385 0 + 0.404514 -0.0109386 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -0.0109386 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.320422 -1.13992 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -1.13992 0 + 0.37945 -1.13992 0 + 0.37945 0.674666 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -1.13992 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.35824 0 + 0.23974 2.35824 0 + 0.316414 0.879271 0 + 0.316414 2.35824 0 + 0.172541 2.35824 0 + 0.172541 2.35824 0 + 0.170192 0.852609 0 + 0.257387 -1.76798 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -1.76798 0 + 0.316414 -1.76798 0 + 0.316414 0.117489 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -1.76798 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.35824 0 + 0.316414 2.39498 0 + 0.37945 -1.19967 0 + 0.404514 -1.13992 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.316414 -1.82165 0 + 0.341479 -1.76798 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.164791 0.513932 0 + 0.147595 0.342531 0 + 0.164791 1.27572 0 + 0.141295 1.24906 0 + 0.250616 0.342531 0 + 0.223819 0.513932 0 + 0.248267 1.24906 0 + 0.223819 1.27572 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.0775959 1.24906 0 + 0.0775959 1.24906 0 + 0.079945 0.342531 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.164791 -1.30066 0 + 0.164791 0.513932 0 + 0.147595 0.342531 0 + 0.146631 -1.30066 0 + 0.223819 -1.30066 0 + 0.223819 0.513932 0 + 0.079945 0.342531 0 + 0.079945 0.342531 0 + 0.0782129 -1.30066 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.19751 0 + 0.0841089 2.19751 0 + 0.160783 0.718537 0 + 0.160783 2.19751 0 + 0.01691 2.19751 0 + 0.01691 2.19751 0 + 0.014561 0.691875 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.19751 0 + 0.160783 2.23425 0 + 0.223819 -1.3604 0 + 0.248883 -1.30066 0 + 0.250616 0.342531 0 + 0.223819 0.513932 0 + 0.164791 1.27572 0 + 0.141295 1.24906 0 + 0.164791 2.261 0 + 0.147144 2.261 0 + 0.248267 1.24906 0 + 0.223819 1.27572 0 + 0.250616 2.261 0 + 0.223819 2.261 0 + 0.079946 2.261 0 + 0.079946 2.261 0 + 0.0775959 1.24906 0 + 0.101756 -1.12541 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.12541 0 + 0.160783 -1.12541 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.12541 0 + 0.160783 -1.17908 0 + 0.185848 -1.12541 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.174465 0.521668 0 + 0.104128 0.521668 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.244801 0.521668 0 + 0.175144 0.521668 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.521668 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.00149864 0 + 0.104128 2.9985 0 + 0.251779 -1.21921 0 + 0.326839 -1.21921 0 + 0.0725431 -1.21921 0 + 0.506074 -1.21921 0 + 0.251779 -0.220206 0 + 0.326839 -0.220206 0 + 0.0725431 -0.220206 0 + 0.506074 -0.220206 0 + 0.323181 -0.753007 0 + 0.255437 -0.753007 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.323181 -0.686406 0 + 0.323181 -0.753007 0 + 0.323181 -0.753007 0 + 0.323181 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.753007 0 + 0.323181 -0.753007 0 + -0.00251664 -1.21921 0 + -0.00251664 -0.220206 0 + -0.00251664 -1.21921 0 + 0.251779 -1.70471 0 + 0.326839 -1.70471 0 + 0.0725431 -1.70471 0 + 0.506074 -1.70471 0 + 0.251779 -0.705713 0 + 0.326839 -0.705713 0 + 0.0725431 -0.705713 0 + 0.506074 -0.705713 0 + 0.323181 -1.23851 0 + 0.255437 -1.23851 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.323181 -1.17191 0 + 0.323181 -1.23851 0 + 0.323181 -1.23851 0 + 0.323181 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.23851 0 + 0.323181 -1.23851 0 + -0.00251664 -1.70471 0 + -0.00251664 -0.705713 0 + -0.00251664 -1.70471 0 +endnode +#Tile trimesh node +node trimesh Mesh01 + parent tin01_f08_02 + position 3.4 4.88 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -31.0 1.0 40.5 + bitmap tin01_furnish2 + verts 20 + 0.35 0.12 1.49 + 0.35 -0.1 1.49 + 0.35 -0.1 -0.68 + 0.35 0.12 -0.68 + 0.0 -0.1 1.16 + 0.0 0.12 1.16 + 0.0 0.12 0.02 + 0.0 -0.1 0.02 + 0.0 -0.1 -0.68 + -0.97 -0.1 0.81 + -0.44 0.12 0.27 + -0.97 0.12 0.81 + 0.0 0.12 -0.68 + -0.44 -0.1 0.27 + -0.22 -0.1 0.51 + -0.22 0.12 0.51 + -0.97 -0.1 0.81 + -0.76 -0.1 1.05 + -0.76 0.12 1.05 + -0.97 0.12 0.81 + faces 20 + 0 1 2 1 0 1 2 4 + 0 2 3 1 0 2 3 4 + 4 5 6 1 4 5 6 3 + 6 7 4 1 6 7 4 3 + 9 11 10 1 24 25 26 3 + 7 8 2 2 28 29 30 6 + 2 1 4 2 30 31 32 6 + 2 4 7 2 30 32 28 6 + 13 8 7 8 35 33 45 5 + 7 14 13 8 45 36 35 5 + 13 14 17 8 35 36 40 5 + 17 16 13 8 40 39 35 5 + 7 6 15 16 45 46 37 4 + 15 14 7 16 37 36 45 4 + 14 15 18 16 36 37 41 4 + 18 17 14 16 41 40 36 4 + 12 8 13 64 34 33 35 3 + 13 10 12 64 35 38 34 3 + 10 13 16 64 38 35 39 3 + 16 19 10 64 39 42 38 3 + tverts 47 + 0.408666 0.891416 0 + 0.346688 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.219389 1.36765 0 + 0.285126 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + 0.46889 1.46063 0 + 0.540743 1.39726 0 + 0.618333 1.52891 0 + 0.829444 1.52891 0 + 0.36085 -0.460635 0 + 0.426587 -0.460635 0 + 0.426587 -0.528906 0 + 0.36085 -0.528906 0 + 0.30483 1.29827 0 + 0.377444 1.23509 0 + 0.36085 -0.298269 0 + 0.426587 -0.298269 0 + 0.219389 1.0989 0 + 0.285126 1.0989 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 + 0.414477 0.4225 0 + 0.476458 0.4225 0 + 0.476458 0.206945 0 + 0.414477 0.206945 0 + 0.328438 0.836212 0 + 0.328438 0.625102 0 + 0.434495 0.624996 0 + 0.434495 1.28399 0 + 0.328438 1.18256 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.170894 0.6665 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh02 + parent tin01_f08_02 + position -3.41 4.88 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 32.0 1.0 39.5 + bitmap tin01_furnish2 + verts 18 + -0.34 -0.1 1.48 + -0.34 0.12 1.48 + -0.34 -0.1 -0.69 + -0.34 0.12 -0.69 + 0.01 0.12 1.15 + 0.01 -0.1 1.15 + 0.01 0.12 0.01 + 0.01 -0.1 0.01 + 0.01 -0.1 -0.69 + 0.01 0.12 -0.69 + 0.23 0.12 0.5 + 0.23 -0.1 0.5 + 0.45 -0.1 0.26 + 0.45 0.12 0.26 + 0.77 0.12 1.04 + 0.77 -0.1 1.04 + 0.98 -0.1 0.8 + 0.98 0.12 0.8 + faces 19 + 0 1 2 1 0 1 2 4 + 2 1 3 1 2 1 3 4 + 4 5 6 1 4 5 6 3 + 7 6 5 1 7 6 5 3 + 0 2 8 2 8 9 10 6 + 7 5 0 2 11 12 8 6 + 8 7 0 2 10 11 8 6 + 10 6 7 16 57 86 87 4 + 7 11 10 16 87 58 57 4 + 10 11 15 16 57 58 64 4 + 15 14 10 16 64 73 57 4 + 7 8 12 32 88 74 59 6 + 12 11 7 32 59 67 88 6 + 11 12 16 32 68 59 65 6 + 16 15 11 32 65 75 68 6 + 8 9 13 64 51 50 60 3 + 13 12 8 64 60 59 51 3 + 12 13 17 64 59 60 66 3 + 17 16 12 64 66 65 59 3 + tverts 89 + 0.346688 0.891416 0 + 0.408666 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.285126 1.36765 0 + 0.219389 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + -0.696282 1.23919 0 + -0.696282 0.617953 0 + -0.596281 0.617953 0 + -0.596281 0.817 0 + -0.596281 1.14356 0 + 0.225624 0.266174 0 + 0.252833 0.305544 0 + 0.252357 0.150473 0 + 0.226784 -0.0348742 0 + 0.191477 0.305544 0 + 0.191001 0.150473 0 + 0.204708 0.471327 0 + 0.273749 0.510697 0 + 0.212393 0.510697 0 + 0.286295 0.267326 0 + 0.28814 -0.0348742 0 + 0.266064 0.471327 0 + 0.21826 0.266174 0 + 0.137861 0.305544 0 + 0.136086 0.150473 0 + 0.136086 0.150473 0 + 0.213931 -0.0348742 0 + 0.21826 0.266174 0 + 0.252833 0.305544 0 + 0.191477 0.305544 0 + 0.252357 0.150473 0 + 0.191477 0.305544 0 + 0.296319 0.471327 0 + 0.215919 0.510697 0 + 0.137861 0.305544 0 + 0.137861 0.305544 0 + 0.21826 0.266174 0 + 0.296319 0.471327 0 + 0.212393 0.510697 0 + 0.252833 0.305544 0 + 0.286295 0.267326 0 + 0.225624 0.266174 0 + 0.28814 -0.0348742 0 + 0.225624 0.266174 0 + 0.204708 0.471327 0 + 0.286295 0.267326 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.0952516 0.000499517 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.496536 0.3335 0 + 0.0952516 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + -0.0034642 0.3335 0 + -0.0034642 0.3335 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + 0.420894 0.6665 0 + 0.0876934 0.0625172 0 + -0.00129734 0.669749 0 + 0.345252 0.777547 0 + -0.00282295 0.777409 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 + 0.496536 0.192615 0 + -0.0034642 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh03 + parent tin01_f08_02 + position 1.65 4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 22.5 1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + -1.65 -0.1 0.19 + -1.65 -0.1 -0.14 + 2.1 -0.1 0.19 + 1.75 -0.1 -0.14 + 0.57 -0.1 -0.14 + -0.25 -0.1 -0.14 + 1.75 0.12 -0.14 + 0.57 0.12 -0.14 + 2.1 0.12 0.19 + -1.65 0.12 0.19 + -1.65 0.12 -0.14 + -0.25 0.12 -0.14 + 0.78 -0.1 -0.49 + 0.99 -0.1 -0.25 + 0.99 0.12 -0.25 + 0.78 0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 3 2 4 1 3 2 4 3 + 4 2 5 1 4 2 5 3 + 5 2 1 1 5 2 1 3 + 6 3 4 2 28 21 29 3 + 4 7 6 2 22 23 20 3 + 2 8 9 2 6 7 8 3 + 9 0 2 2 8 9 6 3 + 1 10 11 2 30 25 31 3 + 11 5 1 2 26 27 24 3 + 4 5 12 8 15 10 12 5 + 12 13 4 8 12 13 15 5 + 14 7 4 16 17 19 18 4 + 4 13 14 16 18 16 17 4 + 15 12 5 64 14 12 10 3 + 5 11 15 64 10 11 14 3 + tverts 32 + 0.496366 -0.196817 0 + 0.384796 -0.196817 0 + 0.496367 1.05318 0 + 0.384796 0.936516 0 + 0.384796 0.544462 0 + 0.384796 0.268566 0 + 0.426587 -0.634963 0 + 0.36085 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.170894 0.6665 0 + 0.345252 0.777547 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.326259 1.00025 0 + 0.261617 1.00025 0 + 0.261617 0.653536 0 + 0.326259 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.00124749 0 + 0.326259 0.412601 0 + 0.261617 0.412601 0 + 0.326259 1.00025 0 + 0.261617 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.412601 0 +endnode +#Tile trimesh node +node trimesh Mesh04 + parent tin01_f08_02 + position -1.55 4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -32.5 1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + 1.55 -0.1 -0.14 + 1.55 -0.1 0.19 + -2.2 -0.1 0.19 + -1.85 -0.1 -0.14 + -0.67 -0.1 -0.14 + 0.15 -0.1 -0.14 + -1.85 0.12 -0.14 + -0.67 0.12 -0.14 + -2.2 0.12 0.19 + 1.55 0.12 0.19 + 1.55 0.12 -0.14 + 0.15 0.12 -0.14 + -1.09 0.12 -0.25 + -1.09 -0.1 -0.25 + -0.88 -0.1 -0.49 + -0.88 0.12 -0.49 + faces 16 + 0 1 2 1 0 1 2 3 + 2 3 4 1 2 3 4 3 + 2 4 5 1 2 4 5 3 + 2 5 0 1 2 5 0 3 + 3 6 4 2 24 32 33 3 + 7 4 6 2 27 26 25 3 + 8 2 9 2 6 7 8 3 + 1 9 2 2 9 8 7 3 + 10 0 11 2 28 34 35 3 + 5 11 0 2 31 30 29 3 + 13 14 5 32 15 16 14 6 + 14 15 11 64 12 13 10 3 + 11 5 14 64 10 11 12 3 + 13 5 4 0 15 17 18 1 + 12 13 4 0 20 21 23 1 + 12 4 7 0 19 23 22 1 + tverts 36 + 0.338345 1.40811 0 + 0.449916 1.40811 0 + 0.449916 0.158114 0 + 0.338345 0.274781 0 + 0.338345 0.666835 0 + 0.338345 0.942731 0 + 0.36085 -0.634963 0 + 0.426587 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + -0.00282295 0.777409 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.219023 0.00190346 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.280636 0.349166 0 + 0.274944 1.00143 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 + 0.213895 0.589529 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 +endnode +#Tile trimesh node +node trimesh roof01 + parent tin01_f08_02 + position -4.5 0.0 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 325.0 0.0 183.0 + bitmap tin01_plank + verts 11 + 7.0 -5.0 1.83 + 7.0 -2.5 1.83 + 2.0 -5.0 1.83 + -0.5 -2.5 1.83 + 2.0 -2.5 1.83 + -0.5 2.5 1.83 + 2.0 5.0 1.83 + 2.0 2.5 1.83 + 7.0 5.0 1.83 + 7.0 2.5 1.83 + -0.5 -5.0 1.83 + faces 10 + 3 5 7 0 4 6 8 1 + 3 7 4 0 4 8 5 1 + 4 7 9 0 5 8 11 1 + 7 6 8 0 8 7 9 1 + 7 8 9 0 8 9 11 1 + 4 9 1 0 5 11 2 1 + 4 1 0 0 5 2 1 1 + 4 0 2 0 5 1 3 1 + 3 4 2 0 4 5 3 1 + 3 2 10 0 4 3 13 1 + tverts 14 + 1.999 0.500499 0 + 1.4995 0.000999093 0 + 1.4995 0.500499 0 + 0.500499 0.000999331 0 + 0.000999212 0.5005 0 + 0.5005 0.5005 0 + 0.000999451 1.4995 0 + 0.5005 1.999 0 + 0.5005 1.4995 0 + 1.4995 1.999 0 + 1.999 1.4995 0 + 1.4995 1.4995 0 + 1.999 0.000998974 0 + 0.000999093 0.000999451 0 +endnode +#Tile trimesh node +node trimesh roofrim01 + parent tin01_f08_02 + position -4.5 0.0 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 387.5 0.0 91.5 + bitmap tin01_floor + verts 12 + -0.5 2.5 1.83 + -0.5 3.75 0.0 + 0.75 5.0 0.0 + 0.75 3.75 0.0 + 2.0 5.0 1.83 + 2.0 2.5 1.83 + 7.0 5.0 1.83 + 8.25 5.0 0.0 + 8.25 -5.0 0.0 + 7.0 -5.0 1.83 + 7.0 -2.5 1.83 + 7.0 2.5 1.83 + faces 8 + 1 3 5 0 12 13 14 1 + 1 5 0 0 1 15 0 1 + 3 2 4 0 16 2 17 1 + 3 4 5 0 3 4 5 1 + 7 8 9 0 18 8 19 1 + 7 11 6 0 20 21 6 1 + 7 9 10 0 22 9 23 1 + 7 10 11 0 7 10 11 1 + tverts 24 + 0.0 0.125981 0 + 0.5 0.125981 0 + 0.5 1.99911 0 + 0.5 1.74936 0 + 0.0 1.99911 0 + 0.0 1.49961 0 + 0.0 0.00110595 0 + 0.5 0.00110603 0 + 0.5 1.99911 0 + 0.0 1.99911 0 + 0.0 1.49961 0 + 0.0 0.500606 0 + 0.5 0.125981 0 + 0.5 0.375731 0 + 0.0 0.625481 0 + 0.0 0.625481 0 + 0.5 1.74936 0 + 0.0 1.99911 0 + 0.5 0.00110603 0 + 0.0 1.99911 0 + 0.5 0.00110603 0 + 0.0 0.500606 0 + 0.5 0.00110603 0 + 0.0 1.49961 0 +endnode +#Tile trimesh node +node trimesh strut01 + parent tin01_f08_02 + position 1.0 -1.0 3.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.87451 0.556863 0.337255 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -138.0 62.0 215.0 + bitmap tin01_furnish2 + verts 16 + 2.86 -3.7 0.21 + 2.86 -3.9 0.21 + 3.14 -3.7 0.49 + 3.14 -3.9 0.49 + -0.06 -3.7 3.81 + -0.06 -3.9 3.81 + 0.22 -3.7 4.09 + 0.22 -3.9 4.09 + -5.9 4.86 0.21 + -5.7 4.86 0.21 + -5.9 5.14 0.49 + -5.7 5.14 0.49 + -5.9 1.94 3.81 + -5.7 1.94 3.81 + -5.9 2.22 4.09 + -5.7 2.22 4.09 + faces 24 + 0 2 3 2 8 9 10 2 + 3 1 0 2 11 12 13 2 + 4 5 7 4 14 15 16 1 + 7 6 4 4 17 18 19 1 + 0 1 5 8 0 1 5 5 + 5 4 0 8 5 4 0 5 + 1 3 7 16 1 3 7 4 + 7 5 1 16 7 5 1 4 + 3 2 6 32 20 2 6 6 + 6 7 3 32 6 21 22 6 + 2 0 4 64 2 0 4 3 + 4 6 2 64 4 6 2 3 + 8 10 11 2 31 32 33 2 + 11 9 8 2 34 35 36 2 + 12 13 15 4 37 38 39 1 + 15 14 12 4 40 41 42 1 + 8 9 13 8 23 24 28 5 + 13 12 8 8 28 27 23 5 + 9 11 15 16 24 26 30 4 + 15 13 9 16 30 28 24 4 + 11 10 14 32 43 25 29 6 + 14 15 11 32 29 44 45 6 + 10 8 12 64 25 23 27 3 + 12 14 10 64 27 29 25 3 + tverts 46 + 0.249099 -0.975342 0 + 0.324159 -0.975342 0 + 0.0698632 -0.975342 0 + 0.503394 -0.975342 0 + 0.249099 0.0236625 0 + 0.324159 0.0236625 0 + 0.0698632 0.0236625 0 + 0.503394 0.0236625 0 + 0.320501 -0.509138 0 + 0.252757 -0.509138 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.320501 -0.442538 0 + 0.320501 -0.509138 0 + 0.320501 -0.509138 0 + 0.320501 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.509138 0 + 0.320501 -0.509138 0 + -0.00519651 -0.975342 0 + -0.00519651 0.0236625 0 + -0.00519651 -0.975342 0 + 0.249099 -1.46084 0 + 0.324159 -1.46084 0 + 0.0698632 -1.46084 0 + 0.503394 -1.46084 0 + 0.249099 -0.461844 0 + 0.324159 -0.461844 0 + 0.0698632 -0.461844 0 + 0.503394 -0.461844 0 + 0.320501 -0.994642 0 + 0.252757 -0.994642 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.320501 -0.928042 0 + 0.320501 -0.994642 0 + 0.320501 -0.994642 0 + 0.320501 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.994642 0 + 0.320501 -0.994642 0 + -0.00519651 -1.46084 0 + -0.00519651 -0.461844 0 + -0.00519651 -1.46084 0 +endnode +#Tile trimesh node +node trimesh topwall01 + parent tin01_f08_02 + position 4.37 -0.21 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -462.0 21.0 408.5 + bitmap tin01_wall03 + verts 35 + -0.62 2.71 3.0 + -0.62 0.21 3.0 + 0.13 0.21 3.0 + 0.13 2.71 3.0 + -0.62 -2.29 3.0 + 0.13 -2.29 3.0 + -0.62 -4.4 3.0 + 0.13 -4.79 3.0 + -0.62 -4.79 3.0 + -0.62 5.21 3.0 + 0.13 5.21 3.0 + -0.62 2.71 5.17 + -0.62 0.21 5.17 + 0.13 0.21 5.17 + 0.13 2.71 5.17 + -0.62 -2.29 5.17 + 0.13 -2.29 5.17 + -0.62 -4.4 5.17 + 0.13 -4.79 5.17 + -0.62 -4.79 5.17 + -0.62 5.21 5.17 + 0.13 5.21 5.17 + -8.12 3.96 3.0 + -8.12 5.21 3.0 + -9.37 3.96 3.0 + -8.12 3.96 5.17 + -8.12 5.21 5.17 + -9.37 3.96 5.17 + -9.37 5.21 5.17 + -8.12 5.21 3.0 + -9.37 3.96 3.0 + -9.37 5.21 3.0 + -8.12 5.21 5.17 + -9.37 3.96 5.17 + -9.37 5.21 5.17 + faces 37 + 12 13 14 2 4 7 1 1 + 14 11 12 2 1 0 4 1 + 15 16 13 2 8 9 7 1 + 13 12 15 2 7 4 8 1 + 15 17 16 2 10 12 11 1 + 18 16 19 2 13 11 14 1 + 17 19 16 2 12 14 11 1 + 11 14 21 0 2 3 5 1 + 11 21 20 0 2 5 6 1 + 2 3 14 0 33 34 35 1 + 14 13 2 0 36 37 38 1 + 0 1 12 0 39 40 41 1 + 12 11 0 0 42 43 44 1 + 5 2 13 0 45 15 46 1 + 13 16 5 0 18 47 48 1 + 1 4 15 0 49 50 51 1 + 15 12 1 0 52 21 20 1 + 4 6 17 0 53 54 55 1 + 17 15 4 0 56 26 25 1 + 7 5 16 0 57 23 58 1 + 16 18 7 0 24 59 60 1 + 6 8 19 0 61 29 62 1 + 19 17 6 0 30 28 27 1 + 3 10 21 0 63 64 65 1 + 21 14 3 0 66 17 16 1 + 9 0 11 0 67 19 68 1 + 11 20 9 0 22 32 31 1 + 25 26 28 4 73 74 75 1 + 28 27 25 4 76 77 78 1 + 22 23 26 8 79 80 81 5 + 26 25 22 8 82 83 84 5 + 24 22 25 64 85 69 86 3 + 25 27 24 64 71 72 70 3 + 29 31 34 16 91 92 93 4 + 34 32 29 16 94 89 87 4 + 31 30 33 32 95 96 97 6 + 33 34 31 32 98 90 88 6 + tverts 99 + 0.187499 0.338409 0 + 0.187499 0.526372 0 + 0.593953 0.364789 0 + 0.593953 0.50197 0 + 0.812499 0.338409 0 + 0.0944526 0.50197 0 + 0.0944526 0.364789 0 + 0.812499 0.526372 0 + 1.4375 0.338409 0 + 1.4375 0.526372 0 + 0.8125 0.470411 0 + 0.8125 0.657911 0 + 0.285502 0.470411 0 + 0.1875 0.657911 0 + 0.1875 0.470411 0 + 1.0 0.0 0 + 1.4995 0.0 0 + 1.4995 0.457 0 + 1.0 0.457 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.0 0.457 0 + 0.500499 0.457 0 + 0.500499 0.0 0 + 0.500499 0.457 0 + 1.4995 0.0 0 + 1.4995 0.457 0 + 1.92108 0.0 0 + 1.92108 0.457 0 + 1.999 0.0 0 + 1.999 0.457 0 + 0.000999033 0.0 0 + 0.000999033 0.457 0 + 1.0 0.0 0 + 1.4995 0.0 0 + 1.4995 0.457 0 + 1.4995 0.457 0 + 1.0 0.457 0 + 1.0 0.0 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.0 0.457 0 + 1.0 0.457 0 + 0.500499 0.457 0 + 0.500499 0.0 0 + 0.500499 0.0 0 + 1.0 0.457 0 + 0.500499 0.457 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.4995 0.0 0 + 1.4995 0.457 0 + 1.4995 0.457 0 + 1.4995 0.0 0 + 1.92108 0.0 0 + 1.92108 0.457 0 + 1.92108 0.457 0 + 0.000999033 0.0 0 + 0.500499 0.457 0 + 0.000999033 0.457 0 + 0.000999033 0.0 0 + 1.92108 0.0 0 + 1.999 0.457 0 + 1.4995 0.0 0 + 1.999 0.0 0 + 1.999 0.457 0 + 1.999 0.457 0 + 0.000999033 0.0 0 + 0.500499 0.457 0 + 0.250749 0.0 0 + 0.000999153 0.0 0 + 0.250749 0.457 0 + 0.000999153 0.457 0 + 0.0936787 0.383742 0 + 0.343429 0.383742 0 + 0.343429 0.633492 0 + 0.343429 0.633492 0 + 0.0936787 0.633492 0 + 0.0936787 0.383742 0 + 0.688286 0.0 0 + 0.938036 0.0 0 + 0.938036 0.457 0 + 0.938036 0.457 0 + 0.688286 0.457 0 + 0.688286 0.0 0 + 0.000999153 0.0 0 + 0.250749 0.457 0 + 0.688285 0.0 0 + 0.000998914 0.0 0 + 0.688285 0.457 0 + 0.000998914 0.457 0 + 0.688285 0.0 0 + 0.938035 0.0 0 + 0.938035 0.457 0 + 0.938035 0.457 0 + 0.000998914 0.0 0 + 0.250749 0.0 0 + 0.250749 0.457 0 + 0.250749 0.457 0 +endnode +endmodelgeom tin01_f08_02 +donemodel tin01_f08_02 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/tin01_f09_02.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_f09_02.mdl new file mode 100644 index 0000000..495a6e4 --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/tin01_f09_02.mdl @@ -0,0 +1,4424 @@ +# Exported from NWmax 0.8 b60 at 18.10.2012 19:45:15 +# mdl file +# +#NWmax MODEL ASCII +# model: tin01_f09_02 +#local file: Unknown +filedependancy Unknown +newmodel tin01_f09_02 +setsupermodel tin01_f09_02 NULL +classification Tile +#NWmax GEOM ASCII +beginmodelgeom tin01_f09_02 +node dummy tin01_f09_02 + parent NULL +endnode +node aabb walkmesh + parent tin01_f09_02 + position 0.0 0.0 1.39 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + multimaterial 20 + Dirt + Obscuring + Grass + Stone + Wood + Water + Nonwalk + Transparent + Carpet + Metal + Puddles + Swamp + Mud + Leaves + Lava + BottomlessPit + DeepWater + Door + Snow + Sand + ambient 0.0 0.0 0.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10.0 + bitmap Obscuring + verts 29 + 3.75 -4.78 -1.39 + 3.75 -5.0 1.61 + 3.75 5.0 1.61 + 3.4 -4.78 -1.39 + 3.4 -5.0 -1.39 + 5.0 -5.0 1.61 + -5.0 -3.75 -1.39 + -3.75 -3.75 -1.39 + -5.0 5.0 -1.39 + -3.4 -5.0 -1.39 + 5.0 5.0 1.61 + -0.95 0.47 -1.39 + 2.51 2.37 -1.39 + -0.7 1.79 -1.39 + 3.75 5.0 -1.39 + -5.0 -3.75 1.61 + -3.75 -3.75 1.61 + -3.75 -5.0 1.61 + -5.0 -5.0 1.61 + 2.52 -2.09 -1.39 + 3.75 2.36 -1.39 + 1.38 -1.0 -1.39 + 2.51 -1.01 -1.39 + 3.75 -2.1 -1.39 + 1.38 0.11 -1.39 + 3.75 -0.52 -1.39 + 2.52 -0.52 -1.39 + 2.52 -0.52 1.61 + 3.77 -0.52 1.61 + faces 44 + 3 4 1 2 0 0 0 2 + 6 7 8 1 0 0 0 5 + 3 7 4 1 0 0 0 5 + 4 7 9 1 0 0 0 5 + 0 3 1 1 0 0 0 2 + 2 5 10 1 0 0 0 2 + 11 12 13 1 0 0 0 7 + 15 16 7 1 0 0 0 2 + 7 6 15 1 0 0 0 2 + 16 17 9 1 0 0 0 2 + 9 7 16 1 0 0 0 2 + 16 15 18 1 0 0 0 2 + 17 16 18 1 0 0 0 2 + 3 19 7 1 0 0 0 5 + 11 8 7 1 0 0 0 5 + 0 19 3 1 0 0 0 5 + 20 14 12 1 0 0 0 5 + 21 22 26 1 0 0 0 7 + 7 21 11 1 0 0 0 5 + 0 23 19 1 0 0 0 5 + 19 22 21 1 0 0 0 5 + 7 19 21 1 0 0 0 5 + 24 12 11 1 0 0 0 7 + 21 24 11 1 0 0 0 5 + 13 14 8 1 0 0 0 5 + 11 13 8 1 0 0 0 5 + 12 14 13 1 0 0 0 5 + 21 12 24 1 0 0 0 7 + 19 23 22 1 0 0 0 7 + 25 26 27 1 0 0 0 2 + 25 27 28 1 0 0 0 2 + 0 1 28 0 0 0 0 2 + 25 28 2 0 0 0 0 2 + 28 1 5 1 0 0 0 2 + 2 28 5 1 0 0 0 2 + 20 25 2 1 0 0 0 2 + 14 20 2 1 0 0 0 2 + 28 23 0 0 0 0 0 2 + 21 26 12 1 0 0 0 7 + 20 12 25 0 0 0 0 7 + 12 26 25 0 0 0 0 7 + 26 22 27 0 0 0 0 2 + 22 23 28 0 0 0 0 2 + 22 28 27 0 0 0 0 2 + aabb -5.0 -5.0 -1.39 5.0 5.0 1.61 -1 + -5.0 -5.0 -1.39 3.75 5.0 1.61 -1 + -5.0 -5.0 -1.39 3.4 -1.0 1.61 -1 + -5.0 -5.0 -1.39 -3.4 -3.75 1.61 -1 + -5.0 -5.0 -1.39 -3.4 -3.75 1.61 -1 + -5.0 -3.75 -1.39 -3.75 -3.75 1.61 8 + -3.75 -5.0 -1.39 -3.4 -3.75 1.61 10 + -5.0 -5.0 -1.39 -3.4 -3.75 1.61 -1 + -5.0 -5.0 -1.39 -3.4 -3.75 1.61 -1 + -5.0 -3.75 -1.39 -3.75 -3.75 1.61 7 + -3.75 -5.0 -1.39 -3.4 -3.75 1.61 9 + -5.0 -5.0 1.61 -3.75 -3.75 1.61 -1 + -5.0 -5.0 1.61 -3.75 -3.75 1.61 11 + -5.0 -5.0 1.61 -3.75 -3.75 1.61 12 + -3.75 -5.0 -1.39 3.4 -1.0 -1.39 -1 + -3.75 -5.0 -1.39 3.4 -1.0 -1.39 -1 + -3.75 -5.0 -1.39 3.4 -3.75 -1.39 3 + -3.75 -3.75 -1.39 2.52 -1.0 -1.39 21 + -3.75 -5.0 -1.39 3.4 -2.09 -1.39 -1 + -3.75 -4.78 -1.39 3.4 -2.09 -1.39 13 + -3.75 -5.0 -1.39 3.4 -3.75 -1.39 2 + -5.0 -3.75 -1.39 3.75 5.0 -1.39 -1 + -5.0 -3.75 -1.39 -0.7 5.0 -1.39 -1 + -5.0 -3.75 -1.39 -0.95 5.0 -1.39 -1 + -5.0 -3.75 -1.39 -3.75 5.0 -1.39 1 + -5.0 -3.75 -1.39 -0.95 5.0 -1.39 14 + -5.0 0.47 -1.39 -0.7 5.0 -1.39 25 + -5.0 -3.75 -1.39 3.75 5.0 -1.39 -1 + -5.0 -3.75 -1.39 3.75 5.0 -1.39 -1 + -3.75 -3.75 -1.39 1.38 0.47 -1.39 18 + -5.0 1.79 -1.39 3.75 5.0 -1.39 24 + -0.95 -1.0 -1.39 2.51 2.37 -1.39 -1 + -0.95 -1.0 -1.39 2.51 2.37 -1.39 -1 + -0.95 0.47 -1.39 2.51 2.37 -1.39 6 + -0.95 -1.0 -1.39 1.38 0.47 -1.39 23 + -0.95 0.11 -1.39 2.51 2.37 -1.39 22 + -0.7 -5.0 -1.39 5.0 5.0 1.61 -1 + 1.38 -5.0 -1.39 5.0 -0.52 1.61 -1 + 2.52 -5.0 -1.39 5.0 -0.52 1.61 -1 + 3.4 -5.0 -1.39 3.75 -4.78 1.61 -1 + 3.4 -5.0 -1.39 3.75 -4.78 1.61 0 + 3.4 -5.0 -1.39 3.75 -4.78 1.61 4 + 2.52 -5.0 -1.39 5.0 -0.52 1.61 -1 + 2.52 -5.0 -1.39 5.0 -0.52 1.61 -1 + 2.52 -4.78 -1.39 3.75 -2.09 -1.39 15 + 3.75 -5.0 1.61 5.0 -0.52 1.61 33 + 2.52 -5.0 -1.39 3.77 -0.52 1.61 -1 + 3.75 -5.0 -1.39 3.77 -0.52 1.61 31 + 2.52 -4.78 -1.39 3.75 -2.09 -1.39 19 + 1.38 -4.78 -1.39 3.77 -0.52 1.61 -1 + 1.38 -4.78 -1.39 3.77 -0.52 1.61 -1 + 3.75 -4.78 -1.39 3.77 -0.52 1.61 37 + 1.38 -2.1 -1.39 3.75 -1.0 -1.39 -1 + 1.38 -2.09 -1.39 2.52 -1.0 -1.39 20 + 2.51 -2.1 -1.39 3.75 -1.01 -1.39 28 + 1.38 -2.1 -1.39 3.77 -0.52 1.61 -1 + 1.38 -1.01 -1.39 2.52 -0.52 -1.39 17 + 2.51 -2.1 -1.39 3.77 -0.52 1.61 -1 + 2.51 -2.1 -1.39 3.77 -0.52 1.61 -1 + 2.51 -1.01 -1.39 2.52 -0.52 1.61 41 + 2.51 -2.1 -1.39 3.77 -0.52 1.61 42 + 2.51 -1.01 -1.39 3.77 -0.52 1.61 43 + -0.7 -5.0 -1.39 5.0 5.0 1.61 -1 + 1.38 -5.0 -1.39 5.0 5.0 1.61 -1 + 2.52 -5.0 -1.39 5.0 5.0 1.61 -1 + 2.52 -0.52 -1.39 3.77 -0.52 1.61 -1 + 2.52 -0.52 -1.39 3.75 -0.52 1.61 29 + 2.52 -0.52 -1.39 3.77 -0.52 1.61 30 + 3.75 -5.0 1.61 5.0 5.0 1.61 34 + 1.38 -1.0 -1.39 3.75 2.37 -1.39 -1 + 1.38 -1.0 -1.39 2.52 2.37 -1.39 38 + 1.38 -1.0 -1.39 3.75 2.37 -1.39 -1 + 2.51 -0.52 -1.39 3.75 2.37 -1.39 40 + 1.38 -1.0 -1.39 2.51 2.37 -1.39 27 + -0.7 -5.0 -1.39 5.0 5.0 1.61 -1 + 2.51 -5.0 -1.39 5.0 5.0 1.61 -1 + 2.51 -5.0 -1.39 5.0 5.0 1.61 -1 + 2.51 -0.52 -1.39 3.77 5.0 1.61 -1 + 3.75 -0.52 -1.39 3.77 5.0 1.61 32 + 2.51 -0.52 -1.39 3.75 2.37 -1.39 39 + 3.75 -5.0 1.61 5.0 5.0 1.61 5 + 3.75 -0.52 -1.39 3.75 5.0 1.61 35 + -0.7 1.79 -1.39 3.75 5.0 1.61 -1 + -0.7 1.79 -1.39 3.75 5.0 -1.39 26 + 2.51 2.36 -1.39 3.75 5.0 1.61 -1 + 2.51 2.36 -1.39 3.75 5.0 -1.39 16 + 3.75 2.36 -1.39 3.75 5.0 1.61 36 +endnode +node light tin01_f09_02ml1 + parent tin01_f09_02 + position 0.0 0.0 5.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 14.0 + multiplier 1.0 + color 0.0 0.0 0.0 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +node light tin01_f09_02ml2 + parent tin01_f09_02 + position 1.96104 -2.2775 4.0 + orientation 1.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + radius 5.0 + multiplier 1.0 + color 0.00392157 0.00392157 0.00392157 + ambientonly 0 + nDynamicType 0 + affectDynamic 1 + shadow 0 + lightpriority 5 + fadingLight 1 +endnode +#Tile trimesh node +node trimesh blacky01 + parent tin01_f09_02 + position -3.37 5.0 4.04 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 4 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 374.5 -500.0 4.5 + bitmap tin01_black + verts 32 + 1.15 -10.0 0.8 + 1.97 -10.0 0.8 + 0.94 -10.0 0.45 + 0.73 -10.0 0.69 + 0.19 -10.0 0.15 + 0.41 -10.0 -0.09 + -0.03 -10.0 -0.34 + -0.03 -10.0 -1.04 + -0.38 -10.0 1.13 + -0.03 -10.0 0.8 + -0.38 -10.0 -1.04 + 3.37 -10.0 1.13 + 3.37 -10.0 0.8 + 4.77 -10.0 0.8 + 5.59 -10.0 0.8 + 5.8 -10.0 0.45 + 6.01 -10.0 0.69 + 6.55 -10.0 0.15 + 6.33 -10.0 -0.09 + 6.77 -10.0 -0.34 + 6.77 -10.0 -1.04 + 6.77 -10.0 0.8 + 7.12 -10.0 1.13 + 7.12 -10.0 -1.04 + 7.87 0.0 -1.04 + 7.12 0.0 -1.04 + 7.12 -10.0 -1.04 + 7.87 -10.0 -1.04 + 7.87 0.0 1.13 + 7.12 0.0 1.13 + 7.12 -10.0 1.13 + 7.87 -10.0 1.13 + faces 30 + 1 0 2 1 5 4 6 1 + 2 0 3 1 6 4 7 1 + 3 4 5 1 7 8 9 1 + 3 5 2 1 7 9 6 1 + 4 6 7 1 8 10 11 1 + 4 7 5 1 8 11 9 1 + 9 8 10 1 13 12 14 1 + 6 10 7 1 10 14 11 1 + 9 10 6 1 13 14 10 1 + 9 0 8 1 13 4 12 1 + 11 8 12 1 15 12 16 1 + 0 1 8 1 4 5 12 1 + 12 8 1 1 16 12 5 1 + 14 13 15 1 18 17 19 1 + 14 15 16 1 18 19 20 1 + 17 16 18 1 21 20 22 1 + 18 16 15 1 22 20 19 1 + 19 17 20 1 23 21 24 1 + 20 17 18 1 24 21 22 1 + 22 21 23 1 26 25 27 1 + 23 19 20 1 27 23 24 1 + 23 21 19 1 27 25 23 1 + 14 21 22 1 18 25 26 1 + 22 11 12 1 26 15 16 1 + 13 14 22 1 17 18 26 1 + 22 12 13 1 26 16 17 1 + 24 25 28 0 48 52 53 1 + 29 28 25 0 54 49 55 1 + 26 27 30 0 57 56 58 1 + 31 30 27 0 51 59 50 1 + tverts 72 + -163.0 800.0 0 + -163.0 875.0 0 + -163.0 875.0 0 + -163.0 800.0 0 + 115.0 1000.0 0 + 197.0 1000.0 0 + 94.0 1000.0 0 + 73.0 1000.0 0 + 19.0 1000.0 0 + 41.0 1000.0 0 + -3.00001 1000.0 0 + -3.00001 1000.0 0 + -38.0 1000.0 0 + -3.00001 1000.0 0 + -38.0 1000.0 0 + 337.0 1000.0 0 + 337.0 1000.0 0 + 477.0 1000.0 0 + 559.0 1000.0 0 + 580.0 1000.0 0 + 601.0 1000.0 0 + 655.0 1000.0 0 + 633.0 1000.0 0 + 677.0 1000.0 0 + 677.0 1000.0 0 + 677.0 1000.0 0 + 712.0 1000.0 0 + 712.0 1000.0 0 + 0.265279 0.653515 0 + 0.0692729 1.003 0 + 0.265279 1.003 0 + 0.215041 0.174409 0 + 0.215041 0.35 0 + 0.211353 0.451787 0 + 0.38537 0.335775 0 + 0.812499 0.830915 0 + 1.4375 0.642952 0 + 1.4375 0.830915 0 + 0.8125 0.774954 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 1.0 0.0 0 + 1.0 0.5 0 + 0.500499 0.0 0 + 0.500499 0.5 0 + 1.4995 0.0 0 + 1.92108 0.0 0 + 1.92108 0.5 0 + 1.07492 0.0 0 + 1.07492 0.5 0 + 0.925075 0.0 0 + 0.925075 0.5 0 + 0.925075 0.0 0 + 1.07492 0.5 0 + 0.925075 0.5 0 + 0.925075 0.0 0 + 0.925075 0.0 0 + 1.07492 0.0 0 + 1.07492 0.5 0 + 1.07492 0.5 0 + 0.688285 0.0 0 + 0.000998914 0.0 0 + 0.688285 0.5 0 + 0.000998914 0.5 0 + 0.688285 0.0 0 + 0.938035 0.0 0 + 0.938035 0.5 0 + 0.938035 0.5 0 + 0.000998914 0.0 0 + 0.250749 0.0 0 + 0.250749 0.5 0 + 0.250749 0.5 0 +endnode +#Tile trimesh node +node trimesh bolt01 + parent tin01_f09_02 + position 5.0 2.85 5.02 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.6 0.894118 0.721569 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 10 + center -565.0 -210.5 47.5 + bitmap tin01__metal01 + verts 90 + -9.67 -5.41 0.16 + -9.67 -5.35 0.16 + -9.67 -5.39 0.22 + -9.67 -5.46 0.2 + -9.67 -5.46 0.12 + -9.67 -5.39 0.1 + -9.95 -5.35 0.16 + -9.95 -5.39 0.22 + -9.95 -5.46 0.2 + -9.95 -5.46 0.12 + -9.95 -5.39 0.1 + -9.67 -4.06 1.86 + -9.67 -4.0 1.86 + -9.67 -4.04 1.92 + -9.67 -4.11 1.9 + -9.67 -4.11 1.82 + -9.67 -4.04 1.8 + -9.95 -4.0 1.86 + -9.95 -4.04 1.92 + -9.95 -4.11 1.9 + -9.95 -4.11 1.82 + -9.95 -4.04 1.8 + -9.67 -6.26 -0.91 + -9.67 -6.2 -0.91 + -9.67 -6.24 -0.85 + -9.67 -6.31 -0.87 + -9.67 -6.31 -0.95 + -9.67 -6.24 -0.97 + -9.95 -6.2 -0.91 + -9.95 -6.24 -0.85 + -9.95 -6.31 -0.87 + -9.95 -6.31 -0.95 + -9.95 -6.24 -0.97 + -1.4 -2.52 0.08 + -1.46 -2.52 0.08 + -1.42 -2.52 0.14 + -1.35 -2.52 0.12 + -1.35 -2.52 0.04 + -1.42 -2.52 0.02 + -1.46 -3.18 0.08 + -1.42 -3.18 0.14 + -1.35 -3.18 0.12 + -1.35 -3.18 0.04 + -1.42 -3.18 0.02 + -1.4 -3.18 0.08 + -3.0 -2.52 1.86 + -3.06 -2.52 1.86 + -3.02 -2.52 1.92 + -2.95 -2.52 1.9 + -2.95 -2.52 1.82 + -3.02 -2.52 1.8 + -3.06 -3.18 1.86 + -3.02 -3.18 1.92 + -2.95 -3.18 1.9 + -2.95 -3.18 1.82 + -3.02 -3.18 1.8 + -3.0 -3.18 1.86 + -2.5 2.1 0.16 + -2.46 2.1 0.22 + -2.39 2.1 0.2 + -2.39 2.1 0.12 + -2.46 2.1 0.1 + -2.5 1.82 0.16 + -2.46 1.82 0.22 + -2.39 1.82 0.2 + -2.39 1.82 0.12 + -2.46 1.82 0.1 + -2.44 1.82 0.16 + -3.85 2.1 1.86 + -3.81 2.1 1.92 + -3.74 2.1 1.9 + -3.74 2.1 1.82 + -3.81 2.1 1.8 + -3.85 1.82 1.86 + -3.81 1.82 1.92 + -3.74 1.82 1.9 + -3.74 1.82 1.82 + -3.81 1.82 1.8 + -3.79 1.82 1.86 + -1.65 2.1 -0.91 + -1.61 2.1 -0.85 + -1.54 2.1 -0.87 + -1.54 2.1 -0.95 + -1.61 2.1 -0.97 + -1.65 1.82 -0.91 + -1.61 1.82 -0.85 + -1.54 1.82 -0.87 + -1.54 1.82 -0.95 + -1.61 1.82 -0.97 + -1.59 1.82 -0.91 + faces 130 + 2 0 1 1 96 95 97 2 + 3 0 2 1 99 98 100 2 + 4 0 3 1 102 101 103 2 + 5 0 4 1 105 104 106 2 + 1 0 5 1 107 84 108 2 + 7 1 6 8 91 85 90 3 + 2 1 7 8 86 85 91 3 + 8 2 7 8 92 109 110 3 + 3 2 8 8 87 111 92 3 + 9 3 8 8 93 87 92 3 + 4 3 9 8 88 87 93 3 + 10 4 9 8 94 88 93 3 + 5 4 10 8 89 88 94 3 + 6 5 10 8 90 89 94 3 + 1 5 6 8 85 89 90 3 + 13 11 12 1 124 123 125 2 + 14 11 13 1 127 126 128 2 + 15 11 14 1 130 129 131 2 + 16 11 15 1 133 132 134 2 + 12 11 16 1 135 112 136 2 + 18 12 17 8 119 113 118 3 + 13 12 18 8 114 113 119 3 + 19 13 18 8 120 137 138 3 + 14 13 19 8 115 139 120 3 + 20 14 19 8 121 115 120 3 + 15 14 20 8 116 115 121 3 + 21 15 20 8 122 116 121 3 + 16 15 21 8 117 116 122 3 + 17 16 21 8 118 117 122 3 + 12 16 17 8 113 117 118 3 + 24 22 23 1 152 151 153 2 + 25 22 24 1 155 154 156 2 + 26 22 25 1 158 157 159 2 + 27 22 26 1 161 160 162 2 + 23 22 27 1 163 140 164 2 + 29 23 28 8 147 141 146 3 + 24 23 29 8 142 141 147 3 + 30 24 29 8 148 165 166 3 + 25 24 30 8 143 167 148 3 + 31 25 30 8 149 143 148 3 + 26 25 31 8 144 143 149 3 + 32 26 31 8 150 144 149 3 + 27 26 32 8 145 144 150 3 + 28 27 32 8 146 145 150 3 + 23 27 28 8 141 145 146 3 + 35 33 34 1 224 223 225 2 + 36 33 35 1 227 226 228 2 + 37 33 36 1 230 229 231 2 + 38 33 37 1 233 232 234 2 + 34 33 38 1 235 211 236 2 + 40 34 39 8 218 212 217 3 + 35 34 40 8 213 212 218 3 + 41 35 40 8 219 237 238 3 + 36 35 41 8 214 239 219 3 + 42 36 41 8 220 214 219 3 + 37 36 42 8 215 214 220 3 + 43 37 42 8 221 215 220 3 + 38 37 43 8 216 215 221 3 + 39 38 43 8 217 216 221 3 + 34 38 39 8 212 216 217 3 + 39 44 40 1 241 240 242 1 + 40 44 41 1 244 243 245 1 + 41 44 42 1 247 246 248 1 + 42 44 43 1 250 249 251 1 + 43 44 39 1 252 222 253 1 + 47 45 46 1 310 309 311 2 + 48 45 47 1 313 312 314 2 + 49 45 48 1 316 315 317 2 + 50 45 49 1 319 318 320 2 + 46 45 50 1 321 297 322 2 + 52 46 51 8 304 298 303 3 + 47 46 52 8 299 298 304 3 + 53 47 52 8 305 323 324 3 + 48 47 53 8 300 325 305 3 + 54 48 53 8 306 300 305 3 + 49 48 54 8 301 300 306 3 + 55 49 54 8 307 301 306 3 + 50 49 55 8 302 301 307 3 + 51 50 55 8 303 302 307 3 + 46 50 51 8 298 302 303 3 + 51 56 52 1 327 326 328 1 + 52 56 53 1 330 329 331 1 + 53 56 54 1 333 332 334 1 + 54 56 55 1 336 335 337 1 + 55 56 51 1 338 308 339 1 + 63 57 62 8 346 340 345 3 + 58 57 63 8 341 340 346 3 + 64 58 63 8 347 351 352 3 + 59 58 64 8 342 353 347 3 + 65 59 64 8 348 342 347 3 + 60 59 65 8 343 342 348 3 + 66 60 65 8 349 343 348 3 + 61 60 66 8 344 343 349 3 + 62 61 66 8 345 344 349 3 + 57 61 62 8 340 344 345 3 + 62 67 63 1 355 354 356 1 + 63 67 64 1 358 357 359 1 + 64 67 65 1 361 360 362 1 + 65 67 66 1 364 363 365 1 + 66 67 62 1 366 350 367 1 + 74 68 73 8 374 368 373 3 + 69 68 74 8 369 368 374 3 + 75 69 74 8 375 379 380 3 + 70 69 75 8 370 381 375 3 + 76 70 75 8 376 370 375 3 + 71 70 76 8 371 370 376 3 + 77 71 76 8 377 371 376 3 + 72 71 77 8 372 371 377 3 + 73 72 77 8 373 372 377 3 + 68 72 73 8 368 372 373 3 + 73 78 74 1 383 382 384 1 + 74 78 75 1 386 385 387 1 + 75 78 76 1 389 388 390 1 + 76 78 77 1 392 391 393 1 + 77 78 73 1 394 378 395 1 + 85 79 84 8 402 396 401 3 + 80 79 85 8 397 396 402 3 + 86 80 85 8 403 407 408 3 + 81 80 86 8 398 409 403 3 + 87 81 86 8 404 398 403 3 + 82 81 87 8 399 398 404 3 + 88 82 87 8 405 399 404 3 + 83 82 88 8 400 399 405 3 + 84 83 88 8 401 400 405 3 + 79 83 84 8 396 400 401 3 + 84 89 85 1 411 410 412 1 + 85 89 86 1 414 413 415 1 + 86 89 87 1 417 416 418 1 + 87 89 88 1 420 419 421 1 + 88 89 84 1 422 406 423 1 + tverts 424 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.869024 0 + 0.582218 0.735026 0 + 0.646785 0.735026 0 + 0.404666 0.735026 0 + 0.461564 0.735026 0 + 0.517651 0.735026 0 + 0.582218 0.868682 0 + 0.646785 0.868682 0 + 0.404666 0.868682 0 + 0.461564 0.868682 0 + 0.517651 0.868682 0 + 0.507666 0.869024 0 + 0.422082 0.895471 0 + 0.507666 0.954608 0 + 0.507666 0.869024 0 + 0.454773 0.799785 0 + 0.422082 0.895471 0 + 0.507666 0.869024 0 + 0.56056 0.799785 0 + 0.454773 0.799785 0 + 0.507666 0.869024 0 + 0.593251 0.895471 0 + 0.56056 0.799785 0 + 0.507666 0.954608 0 + 0.593251 0.895471 0 + 0.34858 0.735026 0 + 0.34858 0.868682 0 + 0.34858 0.735026 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.582218 0.338891 0 + 0.646785 0.338891 0 + 0.404666 0.338891 0 + 0.461564 0.338891 0 + 0.517651 0.338891 0 + 0.582218 0.636798 0 + 0.646785 0.636798 0 + 0.404666 0.636798 0 + 0.461564 0.636798 0 + 0.517651 0.636798 0 + 0.507666 0.472889 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.507666 0.558473 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.593251 0.499336 0 + 0.56056 0.40365 0 + 0.507666 0.558473 0 + 0.593251 0.499336 0 + 0.34858 0.338891 0 + 0.34858 0.636798 0 + 0.34858 0.338891 0 + 0.507666 0.472889 0 + 0.507666 0.558473 0 + 0.422082 0.499336 0 + 0.507666 0.472889 0 + 0.422082 0.499336 0 + 0.454773 0.40365 0 + 0.507666 0.472889 0 + 0.454773 0.40365 0 + 0.56056 0.40365 0 + 0.507666 0.472889 0 + 0.56056 0.40365 0 + 0.593251 0.499336 0 + 0.593251 0.499336 0 + 0.507666 0.558473 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 + 0.582218 0.261596 0 + 0.646785 0.261596 0 + 0.404666 0.261596 0 + 0.461564 0.261596 0 + 0.517651 0.261596 0 + 0.582218 0.431484 0 + 0.646785 0.431484 0 + 0.404666 0.431484 0 + 0.461564 0.431484 0 + 0.517651 0.431484 0 + 0.507666 0.267575 0 + 0.34858 0.261596 0 + 0.34858 0.431484 0 + 0.34858 0.261596 0 + 0.507666 0.267575 0 + 0.507666 0.353159 0 + 0.422082 0.294022 0 + 0.507666 0.267575 0 + 0.422082 0.294022 0 + 0.454773 0.198336 0 + 0.507666 0.267575 0 + 0.454773 0.198336 0 + 0.56056 0.198336 0 + 0.507666 0.267575 0 + 0.56056 0.198336 0 + 0.593251 0.294022 0 + 0.593251 0.294022 0 + 0.507666 0.353159 0 +endnode +#Tile trimesh node +node trimesh Box939 + parent tin01_f09_02 + position 0.53 1.15 -0.05 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -1.0 31.0 + bitmap tin01_sac + verts 34 + -0.34 -0.83 0.08 + -0.49 -0.4 0.08 + 0.0 -0.4 0.08 + 0.0 -0.87 0.08 + -0.49 0.4 0.08 + 0.0 0.4 0.08 + -0.34 0.83 0.08 + 0.0 0.73 0.08 + -0.34 -0.83 0.3 + 0.0 -0.87 0.3 + 0.0 -0.4 0.54 + -0.49 -0.4 0.49 + -0.49 0.4 0.49 + 0.0 0.4 0.54 + -0.34 0.83 0.3 + 0.0 0.73 0.36 + 0.0 -0.97 0.19 + -0.45 -0.95 0.19 + -0.66 0.46 0.28 + -0.45 0.95 0.19 + -0.66 -0.46 0.28 + 0.0 0.83 0.19 + 0.5 -0.4 0.08 + 0.34 -0.83 0.08 + 0.5 0.4 0.08 + 0.34 0.83 0.08 + 0.34 -0.83 0.3 + 0.5 -0.4 0.49 + 0.5 0.4 0.49 + 0.34 0.83 0.3 + 0.46 -0.95 0.19 + 0.66 0.46 0.28 + 0.46 0.95 0.19 + 0.66 -0.46 0.28 + faces 64 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 1 4 2 1 1 4 2 2 + 5 2 4 1 5 2 4 2 + 4 6 5 1 4 6 5 2 + 7 5 6 1 7 5 6 2 + 8 9 10 1 8 9 10 1 + 10 11 8 1 10 11 8 1 + 11 10 12 1 11 10 12 1 + 13 12 10 1 13 12 10 1 + 12 13 14 1 12 13 14 1 + 15 14 13 1 15 14 13 1 + 0 3 16 1 16 3 17 5 + 16 17 0 1 17 18 16 5 + 17 16 8 1 18 17 19 5 + 9 8 16 1 20 19 17 5 + 6 4 18 1 6 4 21 3 + 18 19 6 1 21 22 6 3 + 4 1 20 1 4 1 23 3 + 20 18 4 1 23 21 4 3 + 1 0 17 1 1 0 24 3 + 17 20 1 1 24 23 1 3 + 19 18 12 1 22 21 12 3 + 12 14 19 1 12 14 22 3 + 18 20 11 1 21 23 11 3 + 11 12 18 1 11 12 21 3 + 20 17 8 1 23 24 8 3 + 8 11 20 1 8 11 23 3 + 7 6 21 1 7 6 25 6 + 19 21 6 1 26 25 6 6 + 21 19 14 1 25 26 27 6 + 14 15 21 1 27 15 25 6 + 22 23 2 1 28 29 30 2 + 3 2 23 1 31 30 29 2 + 24 22 2 1 32 28 30 2 + 2 5 24 1 30 33 32 2 + 25 24 5 1 34 32 33 2 + 5 7 25 1 33 35 34 2 + 9 26 10 1 36 37 38 1 + 27 10 26 1 39 38 37 1 + 10 27 28 1 38 39 40 1 + 28 13 10 1 40 41 38 1 + 13 28 29 1 41 40 42 1 + 29 15 13 1 42 43 41 1 + 3 23 16 1 44 45 46 5 + 30 16 23 1 47 46 45 5 + 16 30 26 1 46 47 48 5 + 26 9 16 1 48 49 46 5 + 24 25 31 1 32 34 50 3 + 32 31 25 1 51 50 34 3 + 22 24 33 1 28 32 52 3 + 31 33 24 1 50 52 32 3 + 23 22 30 1 29 28 53 3 + 33 30 22 1 52 53 28 3 + 31 32 28 1 50 51 40 3 + 29 28 32 1 42 40 51 3 + 33 31 27 1 52 50 39 3 + 28 27 31 1 40 39 50 3 + 30 33 26 1 53 52 54 3 + 27 26 33 1 39 54 52 3 + 25 7 21 1 34 35 55 6 + 21 32 25 1 55 56 34 6 + 32 21 29 1 56 55 57 6 + 15 29 21 1 43 57 55 6 + tverts 58 + 0.0550851 0.127734 0 + 0.126673 0.358598 0 + 0.0268425 0.358598 0 + 0.0267446 0.243372 0 + 0.126673 0.641402 0 + 0.0268424 0.641402 0 + 0.106397 0.765985 0 + 0.0267445 0.756628 0 + 0.33036 0.093918 0 + 0.47628 0.128041 0 + 0.473255 0.358598 0 + 0.296655 0.356183 0 + 0.322311 0.646233 0 + 0.473256 0.641402 0 + 0.306678 0.823956 0 + 0.492069 0.794664 0 + 0.268229 0.0987489 0 + 0.0588212 0.176044 0 + 0.334735 0.103685 0 + 0.332334 0.180875 0 + 0.300634 0.0990554 0 + 0.210756 0.661198 0 + 0.188692 0.845591 0 + 0.204835 0.336387 0 + 0.222243 0.1061 0 + 0.335119 0.910924 0 + 0.218295 0.946601 0 + 0.308651 0.81864 0 + 0.381173 0.358598 0 + 0.452762 0.127734 0 + 0.481004 0.358598 0 + 0.481102 0.243372 0 + 0.381174 0.641402 0 + 0.481004 0.641402 0 + 0.401449 0.765985 0 + 0.481102 0.756628 0 + 0.0315667 0.128041 0 + 0.177486 0.093918 0 + 0.0345912 0.358598 0 + 0.211192 0.356183 0 + 0.185536 0.646233 0 + 0.0345912 0.641402 0 + 0.201169 0.823956 0 + 0.0157779 0.794664 0 + 0.49097 0.125015 0 + 0.458682 0.108411 0 + 0.411528 0.122904 0 + 0.370467 0.20755 0 + 0.037364 0.113242 0 + 0.288129 0.217413 0 + 0.297091 0.661198 0 + 0.319155 0.845591 0 + 0.303012 0.336387 0 + 0.285604 0.1061 0 + 0.177486 0.166382 0 + 0.2793 0.913583 0 + 0.12772 0.935968 0 + 0.270243 0.81864 0 +endnode +#Tile trimesh node +node trimesh Box940 + parent tin01_f09_02 + position -0.21 1.15 0.35 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 1.5 0.0 13.0 + bitmap tin01_sac + verts 34 + -0.73 0.13 -0.28 + -0.3 0.39 -0.29 + -0.2 -0.09 -0.25 + -0.7 -0.2 -0.26 + 0.19 0.57 0.07 + 0.24 0.09 0.13 + 0.65 0.52 0.17 + 0.63 0.17 0.17 + -0.87 0.13 -0.04 + -0.83 -0.2 -0.01 + -0.34 -0.09 0.14 + -0.46 0.39 0.09 + 0.2 0.57 0.55 + 0.33 0.09 0.54 + 0.65 0.52 0.39 + 0.63 0.17 0.39 + -0.85 -0.23 -0.17 + -0.92 0.22 -0.23 + 0.21 0.75 0.34 + 0.73 0.66 0.21 + -0.48 0.54 -0.21 + 0.73 0.19 0.28 + -0.09 -0.58 -0.29 + -0.61 -0.52 -0.26 + 0.23 -0.39 0.12 + 0.81 -0.14 0.17 + -0.72 -0.52 -0.01 + -0.21 -0.58 0.11 + 0.45 -0.39 0.52 + 0.81 -0.14 0.39 + -0.74 -0.66 -0.16 + 0.31 -0.54 0.3 + 0.95 -0.22 0.19 + -0.17 -0.75 -0.16 + faces 64 + 0 1 2 1 0 1 2 2 + 2 3 0 1 2 3 0 2 + 1 4 2 1 1 4 2 2 + 5 2 4 1 5 2 4 2 + 4 6 5 1 4 6 5 2 + 7 5 6 1 7 5 6 2 + 8 9 10 1 8 9 10 1 + 10 11 8 1 10 11 8 1 + 11 10 12 1 11 10 12 1 + 13 12 10 1 13 12 10 1 + 12 13 14 1 12 13 14 1 + 15 14 13 1 15 14 13 1 + 0 3 16 1 16 3 17 5 + 16 17 0 1 17 18 16 5 + 17 16 8 1 18 17 19 5 + 9 8 16 1 20 19 17 5 + 6 4 18 1 6 4 21 3 + 18 19 6 1 21 22 6 3 + 4 1 20 1 4 1 23 3 + 20 18 4 1 23 21 4 3 + 1 0 17 1 1 0 24 3 + 17 20 1 1 24 23 1 3 + 19 18 12 1 22 21 12 3 + 12 14 19 1 12 14 22 3 + 18 20 11 1 21 23 11 3 + 11 12 18 1 11 12 21 3 + 20 17 8 1 23 24 8 3 + 8 11 20 1 8 11 23 3 + 7 6 21 1 7 6 25 6 + 19 21 6 1 26 25 6 6 + 21 19 14 1 25 26 27 6 + 14 15 21 1 27 15 25 6 + 22 23 2 2 28 29 30 2 + 3 2 23 2 31 30 29 2 + 24 22 2 2 32 28 30 2 + 2 5 24 2 30 33 32 2 + 25 24 5 2 34 32 33 2 + 5 7 25 2 33 35 34 2 + 9 26 10 2 36 37 38 1 + 27 10 26 2 39 38 37 1 + 10 27 28 2 38 39 40 1 + 28 13 10 2 40 41 38 1 + 13 28 29 2 41 40 42 1 + 29 15 13 2 42 43 41 1 + 3 23 16 2 44 45 46 5 + 30 16 23 2 47 46 45 5 + 16 30 26 2 46 47 48 5 + 26 9 16 2 48 49 46 5 + 24 25 31 2 32 34 50 3 + 32 31 25 2 51 50 34 3 + 22 24 33 2 28 32 52 3 + 31 33 24 2 50 52 32 3 + 23 22 30 2 29 28 53 3 + 33 30 22 2 52 53 28 3 + 31 32 28 2 50 51 40 3 + 29 28 32 2 42 40 51 3 + 33 31 27 2 52 50 39 3 + 28 27 31 2 40 39 50 3 + 30 33 26 2 53 52 54 3 + 27 26 33 2 39 54 52 3 + 25 7 21 2 34 35 55 6 + 21 32 25 2 55 56 34 6 + 32 21 29 2 56 55 57 6 + 15 29 21 2 43 57 55 6 + tverts 58 + 0.0550851 0.127734 0 + 0.126673 0.358598 0 + 0.0268425 0.358598 0 + 0.0267446 0.243372 0 + 0.126673 0.641402 0 + 0.0268424 0.641402 0 + 0.106397 0.765985 0 + 0.0267445 0.756628 0 + 0.33036 0.093918 0 + 0.47628 0.128041 0 + 0.473255 0.358598 0 + 0.296655 0.356183 0 + 0.322311 0.646233 0 + 0.473256 0.641402 0 + 0.306678 0.823956 0 + 0.492069 0.794664 0 + 0.268229 0.0987489 0 + 0.0588212 0.176044 0 + 0.334735 0.103685 0 + 0.332334 0.180875 0 + 0.300634 0.0990554 0 + 0.210756 0.661198 0 + 0.188692 0.845591 0 + 0.204835 0.336387 0 + 0.222243 0.1061 0 + 0.335119 0.910924 0 + 0.218295 0.946601 0 + 0.308651 0.81864 0 + 0.381173 0.358598 0 + 0.452762 0.127734 0 + 0.481004 0.358598 0 + 0.481102 0.243372 0 + 0.381174 0.641402 0 + 0.481004 0.641402 0 + 0.401449 0.765985 0 + 0.481102 0.756628 0 + 0.0315667 0.128041 0 + 0.177486 0.093918 0 + 0.0345912 0.358598 0 + 0.211192 0.356183 0 + 0.185536 0.646233 0 + 0.0345912 0.641402 0 + 0.201169 0.823956 0 + 0.0157779 0.794664 0 + 0.49097 0.125015 0 + 0.458682 0.108411 0 + 0.411528 0.122904 0 + 0.370467 0.20755 0 + 0.037364 0.113242 0 + 0.288129 0.217413 0 + 0.297091 0.661198 0 + 0.319155 0.845591 0 + 0.303012 0.336387 0 + 0.285604 0.1061 0 + 0.177486 0.166382 0 + 0.2793 0.913583 0 + 0.12772 0.935968 0 + 0.270243 0.81864 0 +endnode +#Tile trimesh node +node trimesh Box941 + parent tin01_f09_02 + position 2.84 0.0 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -28.0 13.0 137.5 + bitmap tin01_creats + verts 33 + -0.34 -1.02 2.75 + 0.91 -1.02 2.75 + 0.91 0.1 2.75 + -0.34 0.1 2.75 + -0.34 0.1 1.69 + 0.91 0.1 1.69 + 0.91 1.23 1.69 + -0.34 1.23 1.69 + -0.34 1.23 0.87 + 0.91 1.23 0.87 + 0.91 2.36 0.87 + -0.34 2.36 0.87 + -0.34 -2.1 0.0 + 0.91 -2.1 0.0 + 0.91 -2.1 0.87 + -0.34 -2.1 0.87 + 0.91 2.36 0.0 + -0.34 2.36 0.0 + -0.34 1.23 0.0 + -1.47 1.23 0.0 + -1.47 0.1 0.0 + -1.47 0.1 0.87 + -1.47 1.23 0.87 + -1.47 -1.02 0.0 + -1.47 -1.02 0.87 + -0.34 -1.02 0.87 + 0.91 -1.02 0.87 + 0.91 -1.02 1.69 + -0.34 -1.02 1.69 + -1.47 -1.02 1.69 + -1.47 0.1 1.69 + -0.34 0.1 0.87 + -0.34 -1.02 0.0 + faces 46 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 4 5 6 1 4 5 6 1 + 6 7 4 1 6 7 4 1 + 8 9 10 1 8 9 10 1 + 10 11 8 1 10 11 8 1 + 12 13 14 1 12 13 14 5 + 14 15 12 1 14 15 12 5 + 16 17 11 2 16 17 18 6 + 11 10 16 2 18 19 16 6 + 17 18 8 4 20 21 22 3 + 8 11 17 4 22 23 20 3 + 19 20 21 2 24 25 26 3 + 21 22 19 2 26 27 24 3 + 20 23 24 2 28 29 30 3 + 24 21 20 2 30 31 28 3 + 25 26 27 8 32 33 34 1 + 27 28 25 8 34 35 32 1 + 21 24 29 2 36 37 38 1 + 29 30 21 2 38 39 36 1 + 9 8 7 8 40 41 35 1 + 7 6 9 8 35 34 40 1 + 8 31 4 4 42 43 44 1 + 4 7 8 4 44 45 42 1 + 28 27 1 8 46 47 48 1 + 1 0 28 8 48 49 46 1 + 5 4 3 8 47 50 49 1 + 3 2 5 8 49 48 47 1 + 4 28 0 4 51 52 53 1 + 0 3 4 4 53 54 51 1 + 32 25 24 8 55 56 57 3 + 24 23 32 8 57 58 55 3 + 8 18 19 8 59 60 61 3 + 19 22 8 8 61 62 59 3 + 31 8 22 1 63 64 65 3 + 22 21 31 1 65 66 63 3 + 25 28 29 8 67 68 69 1 + 29 24 25 8 69 70 67 1 + 28 4 30 1 71 72 73 1 + 30 29 28 1 74 75 76 1 + 4 31 21 8 68 77 78 1 + 21 30 4 8 70 69 68 1 + 26 25 15 2 79 80 81 5 + 15 14 26 2 81 82 79 5 + 25 32 12 4 83 84 85 5 + 12 15 25 4 85 86 83 5 + tverts 87 + 0.0043749 0.0036823 0 + 0.496405 0.0036822 0 + 0.496405 0.495252 0 + 0.0043749 0.495252 0 + 0.0043749 0.0024984 0 + 0.494431 0.0024982 0 + 0.494431 0.481991 0 + 0.004375 0.481991 0 + 0.0024015 0.50373 0 + 0.496405 0.50373 0 + 0.496405 1.00013 0 + 0.0024016 1.00013 0 + 0.500197 -0.0013109 0 + 1.05175 -0.001311 0 + 1.05175 0.498302 0 + 0.500197 0.498302 0 + 0.495208 0.498689 0 + 0.0008881 0.498689 0 + 0.0008882 0.998302 0 + 0.495208 0.998302 0 + 0.0057927 0.497795 0 + 0.497744 0.497795 0 + 0.497744 0.996033 0 + 0.0057928 0.996033 0 + 0.0043555 0.497795 0 + 0.498281 0.497795 0 + 0.498281 0.996033 0 + 0.0043556 0.996033 0 + 0.0073542 0.0150723 0 + 0.495359 0.0150722 0 + 0.495359 0.489156 0 + 0.0073542 0.489156 0 + 0.0107292 0.0029931 0 + 0.48853 0.002993 0 + 0.48853 0.493087 0 + 0.0107292 0.493087 0 + 0.0073542 0.0084799 0 + 0.495359 0.0084798 0 + 0.495359 0.487438 0 + 0.0073543 0.487438 0 + 0.48853 0.0029931 0 + 0.0107292 0.0029931 0 + 0.0042419 0.0164577 0 + 0.488299 0.0164576 0 + 0.488299 0.490585 0 + 0.004242 0.490585 0 + 0.0127028 0.0075799 0 + 0.490503 0.0075798 0 + 0.490503 0.491574 0 + 0.0127029 0.491575 0 + 0.0127028 0.00758 0 + 0.0073543 0.0115929 0 + 0.495359 0.0115929 0 + 0.495359 0.492779 0 + 0.0073544 0.492779 0 + 0.492276 0.0026182 0 + 0.492276 0.495747 0 + 0.0040098 0.495747 0 + 0.0040098 0.0026183 0 + 0.500197 0.998302 0 + 0.500197 0.498689 0 + 0.0014376 0.498689 0 + 0.0014376 0.998302 0 + 0.497764 0.492837 0 + 0.497764 0.996483 0 + 0.0023124 0.996484 0 + 0.0023123 0.492837 0 + 0.492276 0.0029931 0 + 0.492277 0.495503 0 + 0.0040099 0.495503 0 + 0.0040098 0.0029932 0 + 0.450398 0.0399142 0 + 0.450398 0.490421 0 + 0.0240214 0.490421 0 + 0.0023123 0.48559 0 + 0.0023122 0.0085133 0 + 0.493816 0.0085132 0 + 0.492276 0.0078241 0 + 0.0040098 0.0078241 0 + 0.99374 0.501267 0 + 0.499737 0.501267 0 + 0.499737 0.0071162 0 + 0.99374 0.007116 0 + 0.505658 0.491605 0 + 0.989179 0.491605 0 + 0.989178 0.0119471 0 + 0.505658 0.0119471 0 +endnode +#Tile trimesh node +node trimesh Box2937 + parent tin01_f09_02 + position 3.41 -5.09 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 16.5 20.0 -219.0 + bitmap tin01_furnish2 + verts 8 + 0.34 0.31 -3.69 + -0.01 0.31 -3.69 + 0.34 0.31 -0.69 + -0.01 0.31 -1.27 + -0.01 0.31 -0.69 + -0.01 0.09 -3.69 + -0.01 0.09 -1.27 + -0.01 0.09 -0.69 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 1 5 3 2 5 6 7 3 + 6 3 5 2 8 7 6 3 + 7 4 6 2 9 10 8 3 + 3 6 4 2 7 8 10 3 + tverts 11 + -0.696282 -0.23919 0 + -0.596283 -0.23919 0 + -0.696282 0.617953 0 + -0.596281 0.452184 0 + -0.596281 0.617953 0 + 0.219389 -0.0988962 0 + 0.285126 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 +endnode +#Tile trimesh node +node trimesh Box2938 + parent tin01_f09_02 + position -3.4 -5.09 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -17.5 20.0 -218.0 + bitmap tin01_furnish2 + verts 8 + 0.0 0.31 -3.68 + -0.35 0.31 -3.68 + 0.0 0.31 -1.26 + -0.35 0.31 -0.68 + 0.0 0.31 -0.68 + 0.0 0.09 -3.68 + 0.0 0.09 -1.26 + 0.0 0.09 -0.68 + faces 7 + 0 1 2 1 0 1 2 6 + 1 3 2 1 1 3 2 6 + 4 2 3 1 4 2 3 6 + 5 0 2 2 5 6 7 3 + 2 6 5 2 7 8 5 3 + 4 7 6 2 9 10 8 3 + 6 2 4 2 8 7 9 3 + tverts 11 + 1.34658 -0.23919 0 + 1.44658 -0.23919 0 + 1.34658 0.452184 0 + 1.44658 0.617953 0 + 1.34658 0.617953 0 + 0.285126 -0.0988962 0 + 0.219389 -0.0988962 0 + 0.219389 0.634379 0 + 0.285126 0.634379 0 + 0.219389 0.810195 0 + 0.285126 0.810195 0 +endnode +#Tile trimesh node +node trimesh construction01 + parent tin01_f09_02 + position -4.0 0.2 3.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.87451 0.556863 0.337255 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 357.0 -20.0 275.0 + bitmap tin01_furnish2 + verts 228 + 7.76 -0.1 1.94 + 7.76 -0.3 1.94 + 6.63 -0.1 1.86 + 6.63 -0.3 1.86 + 4.45 -0.15 1.92 + 4.45 -0.35 1.92 + 2.33 -0.1 1.82 + 2.33 -0.3 1.82 + -0.9 -0.1 1.93 + -0.9 -0.3 1.93 + 7.74 -0.1 2.11 + 7.74 -0.3 2.11 + 6.63 -0.1 2.06 + 6.63 -0.3 2.06 + 4.45 -0.15 2.12 + 4.45 -0.35 2.12 + 2.33 -0.1 2.02 + 2.33 -0.3 2.02 + -0.9 -0.1 2.11 + -0.9 -0.3 2.11 + 3.89 4.71 1.94 + 4.09 4.71 1.94 + 3.93 2.42 1.94 + 4.13 2.42 1.94 + 3.89 0.28 1.86 + 4.09 0.28 1.86 + 3.89 -1.87 1.92 + 4.09 -1.87 1.92 + 3.89 -4.98 1.88 + 4.09 -4.98 1.88 + 3.89 4.7 2.11 + 4.09 4.7 2.11 + 3.93 2.42 2.14 + 4.13 2.42 2.14 + 3.89 0.28 2.06 + 4.09 0.28 2.06 + 3.89 -1.87 2.12 + 4.09 -1.87 2.12 + 3.89 -4.98 2.08 + 4.09 -4.98 2.08 + 4.1 -5.2 3.76 + 3.9 -5.2 3.76 + 4.11 -1.65 3.74 + 3.91 -1.65 3.74 + 4.06 0.53 3.8 + 3.86 0.53 3.8 + 4.11 2.65 3.7 + 3.91 2.65 3.7 + 4.1 4.8 3.76 + 3.9 4.8 3.76 + 4.1 -5.2 3.96 + 3.9 -5.2 3.96 + 4.11 -1.65 3.94 + 3.91 -1.65 3.94 + 4.06 0.53 4.0 + 3.86 0.53 4.0 + 4.11 2.65 3.9 + 3.91 2.65 3.9 + 4.1 4.8 3.96 + 3.9 4.8 3.96 + 6.85 -0.05 3.82 + 6.85 -0.25 3.82 + 4.7 -0.02 3.74 + 4.7 -0.22 3.74 + 2.55 -0.02 3.8 + 2.55 -0.22 3.8 + -1.0 -0.1 3.76 + -1.0 -0.3 3.76 + 6.85 -0.05 4.02 + 6.85 -0.25 4.02 + 4.7 -0.02 3.94 + 4.7 -0.22 3.94 + 2.55 -0.02 4.0 + 2.55 -0.22 4.0 + -1.0 -0.1 3.96 + -1.0 -0.3 3.96 + 6.08 -0.14 2.07 + 6.08 -0.3 2.07 + 5.92 -0.14 2.07 + 5.92 -0.3 2.07 + 6.06 -0.06 3.82 + 6.06 -0.22 3.82 + 5.92 -0.06 3.82 + 5.92 -0.22 3.82 + 2.09 -0.12 2.0 + 2.09 -0.28 2.0 + 1.93 -0.12 2.0 + 1.93 -0.28 2.0 + 2.07 -0.06 3.82 + 2.07 -0.22 3.82 + 1.93 -0.06 3.82 + 1.93 -0.22 3.82 + 4.06 -2.16 2.04 + 4.06 -2.32 2.04 + 3.9 -2.16 2.04 + 3.9 -2.32 2.04 + 4.06 -2.08 3.82 + 4.06 -2.24 3.82 + 3.92 -2.08 3.82 + 3.92 -2.24 3.82 + 4.1 1.88 2.07 + 4.1 1.72 2.07 + 3.94 1.88 2.07 + 3.94 1.72 2.07 + 4.08 1.96 3.82 + 4.08 1.8 3.82 + 3.94 1.96 3.82 + 3.94 1.8 3.82 + -1.0 4.8 3.72 + -0.9 4.7 3.72 + -1.0 0.8 3.72 + -0.91 1.25 3.69 + -1.0 -1.2 3.72 + -0.9 -1.13 3.75 + -1.0 -3.0 3.72 + -0.91 -3.0 3.7 + -1.0 4.8 3.92 + -0.9 4.7 3.92 + -1.0 0.8 3.92 + -0.91 1.25 3.94 + -1.0 -1.2 3.92 + -0.9 -1.13 4.0 + -1.0 -3.0 3.92 + -0.91 -3.0 3.94 + -1.0 -0.3 2.07 + -1.0 -0.1 2.07 + -0.92 -0.28 2.07 + -0.92 -0.12 2.07 + -1.0 -0.3 3.72 + -1.0 -0.1 3.72 + -0.92 -0.28 3.77 + -0.92 -0.12 3.77 + 6.9 4.8 3.72 + 6.8 4.7 3.72 + 5.0 4.8 3.72 + 5.45 4.71 3.69 + 3.0 4.8 3.72 + 3.07 4.7 3.75 + -1.0 4.8 3.72 + -0.9 4.7 3.72 + 6.9 4.8 3.92 + 6.8 4.7 3.92 + 5.0 4.8 3.92 + 5.45 4.71 3.94 + 3.0 4.8 3.92 + 3.07 4.7 4.0 + -1.0 4.8 3.92 + -0.9 4.7 3.92 + 3.9 4.8 2.07 + 4.1 4.8 2.07 + 3.92 4.72 2.07 + 4.08 4.72 2.07 + 3.9 4.8 3.72 + 4.1 4.8 3.72 + 3.92 4.72 3.77 + 4.08 4.72 3.77 + 1.2 -5.2 3.72 + 1.2 -5.11 3.71 + 3.0 -5.2 3.72 + 2.55 -5.11 3.69 + 5.0 -5.2 3.72 + 4.93 -5.1 3.75 + 6.8 -5.2 3.72 + 6.8 -5.11 3.7 + 1.2 -5.2 3.92 + 1.2 -5.11 3.96 + 3.0 -5.2 3.92 + 2.55 -5.11 3.94 + 5.0 -5.2 3.92 + 4.93 -5.1 4.0 + 6.8 -5.2 3.92 + 6.8 -5.11 3.94 + 4.1 -5.2 2.07 + 3.9 -5.2 2.07 + 4.08 -5.12 2.07 + 3.92 -5.12 2.07 + 4.1 -5.2 3.72 + 3.9 -5.2 3.72 + 4.08 -5.12 3.77 + 3.92 -5.12 3.77 + -1.0 4.8 1.92 + -0.9 4.7 1.92 + -1.0 0.8 1.92 + -0.91 1.25 1.89 + -1.0 -1.2 1.92 + -0.9 -1.13 1.95 + -1.0 -3.95 1.92 + -0.91 -3.95 1.9 + -1.0 4.8 2.12 + -0.9 4.7 2.12 + -1.0 0.8 2.12 + -0.91 1.25 2.14 + -1.0 -1.2 2.12 + -0.9 -1.13 2.2 + -1.0 -3.95 2.12 + -0.91 -3.95 2.14 + 7.79 4.8 1.92 + 7.74 4.7 1.92 + 5.0 4.8 1.92 + 5.45 4.71 1.89 + 3.0 4.8 1.92 + 3.07 4.7 1.95 + -1.0 4.8 1.92 + -0.9 4.7 1.92 + 7.79 4.8 2.12 + 7.74 4.7 2.12 + 5.0 4.8 2.12 + 5.45 4.71 2.14 + 3.0 4.8 2.12 + 3.07 4.7 2.2 + -1.0 4.8 2.12 + -0.9 4.7 2.12 + 7.86 -0.5 1.41 + 7.86 -0.3 1.41 + 8.14 -0.5 1.69 + 8.14 -0.3 1.69 + 5.74 -0.5 3.81 + 5.74 -0.3 3.81 + 6.02 -0.5 4.09 + 6.02 -0.3 4.09 + 7.86 -0.1 1.41 + 7.86 0.1 1.41 + 8.14 -0.1 1.69 + 8.14 0.1 1.69 + 5.74 -0.1 3.81 + 5.74 0.1 3.81 + 6.02 -0.1 4.09 + 6.02 0.1 4.09 + faces 342 + 2 0 3 2 437 435 447 2 + 1 3 0 2 449 448 435 2 + 4 2 5 2 439 437 450 2 + 3 5 2 2 452 451 437 2 + 6 4 7 2 113 111 123 2 + 5 7 4 2 125 124 111 2 + 8 6 9 2 115 113 126 2 + 7 9 6 2 128 127 113 2 + 11 10 13 4 442 441 444 1 + 12 13 10 4 443 444 441 1 + 13 12 15 4 444 443 446 1 + 14 15 12 4 445 446 443 1 + 15 14 17 4 118 117 120 1 + 16 17 14 4 119 120 117 1 + 17 16 19 4 120 119 122 1 + 18 19 16 4 121 122 119 1 + 3 1 13 16 438 436 444 4 + 11 13 1 16 442 444 436 4 + 5 3 15 16 440 438 446 4 + 13 15 3 16 444 446 438 4 + 7 5 17 16 114 112 120 4 + 15 17 5 16 118 120 112 4 + 9 7 19 16 116 114 122 4 + 17 19 7 16 120 122 114 4 + 8 9 18 32 0 4 2 6 + 19 18 9 32 3 2 1 6 + 6 8 16 64 113 115 119 3 + 18 16 8 64 121 119 115 3 + 4 6 14 64 111 113 117 3 + 16 14 6 64 119 117 113 3 + 2 4 12 64 437 439 443 3 + 14 12 4 64 445 443 439 3 + 0 2 10 64 435 437 441 3 + 12 10 2 64 443 441 437 3 + 22 20 23 2 7 5 21 2 + 21 23 20 2 23 22 5 2 + 24 22 25 2 9 7 24 2 + 23 25 22 2 26 25 7 2 + 26 24 27 2 196 194 206 2 + 25 27 24 2 208 207 194 2 + 28 26 29 2 198 196 209 2 + 27 29 26 2 211 210 196 2 + 31 30 33 4 14 13 16 1 + 32 33 30 4 15 16 13 1 + 33 32 35 4 16 15 18 1 + 34 35 32 4 17 18 15 1 + 35 34 37 4 201 200 203 1 + 36 37 34 4 202 203 200 1 + 37 36 39 4 203 202 205 1 + 38 39 36 4 204 205 202 1 + 21 20 31 8 27 5 14 5 + 30 31 20 8 13 14 5 5 + 23 21 33 16 8 6 16 4 + 31 33 21 16 14 16 6 4 + 25 23 35 16 10 8 18 4 + 33 35 23 16 16 18 8 4 + 27 25 37 16 197 195 203 4 + 35 37 25 16 201 203 195 4 + 29 27 39 16 199 197 205 4 + 37 39 27 16 203 205 197 4 + 28 29 38 32 11 28 19 6 + 39 38 29 32 20 19 12 6 + 26 28 36 64 196 198 202 3 + 38 36 28 64 204 202 198 3 + 24 26 34 64 194 196 200 3 + 36 34 26 64 202 200 196 3 + 22 24 32 64 7 9 15 3 + 34 32 24 64 17 15 9 3 + 20 22 30 64 5 7 13 3 + 32 30 22 64 15 13 7 3 + 42 40 43 2 214 212 224 2 + 41 43 40 2 226 225 212 2 + 44 42 45 2 216 214 227 2 + 43 45 42 2 229 228 214 2 + 46 44 47 2 32 30 44 2 + 45 47 44 2 46 45 30 2 + 48 46 49 2 34 32 47 2 + 47 49 46 2 49 48 32 2 + 51 50 53 4 219 218 221 1 + 52 53 50 4 220 221 218 1 + 53 52 55 4 221 220 223 1 + 54 55 52 4 222 223 220 1 + 55 54 57 4 39 38 41 1 + 56 57 54 4 40 41 38 1 + 57 56 59 4 41 40 43 1 + 58 59 56 4 42 43 40 1 + 41 40 51 8 50 29 37 5 + 50 51 40 8 36 37 29 5 + 43 41 53 16 215 213 221 4 + 51 53 41 16 219 221 213 4 + 45 43 55 16 217 215 223 4 + 53 55 43 16 221 223 215 4 + 47 45 57 16 33 31 41 4 + 55 57 45 16 39 41 31 4 + 49 47 59 16 35 33 43 4 + 57 59 47 16 41 43 33 4 + 46 48 56 64 32 34 40 3 + 58 56 48 64 42 40 34 3 + 44 46 54 64 30 32 38 3 + 56 54 46 64 40 38 32 3 + 42 44 52 64 214 216 220 3 + 54 52 44 64 222 220 216 3 + 40 42 50 64 212 214 218 3 + 52 50 42 64 220 218 214 3 + 62 60 63 2 53 51 63 2 + 61 63 60 2 65 64 51 2 + 64 62 65 2 131 129 141 2 + 63 65 62 2 143 142 129 2 + 66 64 67 2 133 131 144 2 + 65 67 64 2 146 145 131 2 + 69 68 71 4 58 57 60 1 + 70 71 68 4 59 60 57 1 + 71 70 73 4 136 135 138 1 + 72 73 70 4 137 138 135 1 + 73 72 75 4 138 137 140 1 + 74 75 72 4 139 140 137 1 + 63 61 71 16 54 52 60 4 + 69 71 61 16 58 60 52 4 + 65 63 73 16 132 130 138 4 + 71 73 63 16 136 138 130 4 + 67 65 75 16 134 132 140 4 + 73 75 65 16 138 140 132 4 + 66 67 74 32 55 66 61 6 + 75 74 67 32 62 61 56 6 + 64 66 72 64 131 133 137 3 + 74 72 66 64 139 137 133 3 + 62 64 70 64 129 131 135 3 + 72 70 64 64 137 135 131 3 + 60 62 68 64 51 53 57 3 + 70 68 62 64 59 57 53 3 + 77 76 81 8 68 67 72 5 + 80 81 76 8 71 72 67 5 + 79 77 83 16 70 68 74 4 + 81 83 77 16 72 74 68 4 + 78 79 82 32 69 75 73 6 + 83 82 79 32 76 73 77 6 + 76 78 80 64 67 69 71 3 + 82 80 78 64 73 71 69 3 + 85 84 89 8 79 78 83 5 + 88 89 84 8 82 83 78 5 + 87 85 91 16 81 79 85 4 + 89 91 85 16 83 85 79 4 + 86 87 90 32 80 86 84 6 + 91 90 87 32 87 84 88 6 + 84 86 88 64 78 80 82 3 + 90 88 86 64 84 82 80 3 + 93 92 97 8 90 89 94 5 + 96 97 92 8 93 94 89 5 + 95 93 99 16 92 90 96 4 + 97 99 93 16 94 96 90 4 + 94 95 98 32 91 97 95 6 + 99 98 95 32 98 95 99 6 + 92 94 96 64 89 91 93 3 + 98 96 94 64 95 93 91 3 + 101 100 105 8 101 100 105 5 + 104 105 100 8 104 105 100 5 + 103 101 107 16 103 101 107 4 + 105 107 101 16 105 107 101 4 + 102 103 106 32 102 108 106 6 + 107 106 103 32 109 106 110 6 + 100 102 104 64 100 102 104 3 + 106 104 102 64 106 104 102 3 + 110 108 111 2 313 312 314 2 + 109 111 108 2 315 314 312 2 + 112 110 113 2 166 164 167 2 + 111 113 110 2 165 167 164 2 + 114 112 115 2 168 166 169 2 + 113 115 112 2 167 169 166 2 + 117 116 119 4 344 343 345 1 + 118 119 116 4 346 345 343 1 + 119 118 121 4 170 171 172 1 + 120 121 118 4 173 172 171 1 + 121 120 123 4 172 173 174 1 + 122 123 120 4 175 174 173 1 + 109 108 117 8 177 176 178 5 + 116 117 108 8 180 179 181 5 + 111 109 119 16 314 315 318 4 + 117 119 109 16 320 319 315 4 + 113 111 121 16 167 165 182 4 + 119 121 111 16 184 183 165 4 + 115 113 123 16 169 167 185 4 + 121 123 113 16 187 186 167 4 + 112 114 120 64 166 168 173 3 + 122 120 114 64 175 173 168 3 + 110 112 118 64 164 166 171 3 + 120 118 112 64 173 171 166 3 + 108 110 116 64 312 313 316 3 + 118 116 110 64 317 316 313 3 + 125 124 129 8 148 147 151 5 + 128 129 124 8 150 151 147 5 + 127 125 131 16 159 157 163 4 + 129 131 125 16 161 163 157 4 + 126 127 130 32 149 153 152 6 + 131 130 127 32 154 152 155 6 + 124 126 128 64 156 158 160 3 + 130 128 126 64 162 160 158 3 + 114 123 122 0 189 188 190 1 + 114 115 123 0 192 191 193 1 + 134 132 135 2 331 330 332 2 + 133 135 132 2 333 332 330 2 + 136 134 137 2 249 247 250 2 + 135 137 134 2 248 250 247 2 + 138 136 139 2 323 321 324 2 + 137 139 136 2 322 324 321 2 + 141 140 143 4 348 347 349 1 + 142 143 140 4 350 349 347 1 + 143 142 145 4 251 252 253 1 + 144 145 142 4 254 253 252 1 + 145 144 147 4 339 340 341 1 + 146 147 144 4 342 341 340 1 + 135 133 143 16 332 333 336 4 + 141 143 133 16 338 337 333 4 + 137 135 145 16 250 248 255 4 + 143 145 135 16 257 256 248 4 + 139 137 147 16 324 322 327 4 + 145 147 137 16 329 328 322 4 + 136 138 144 64 321 323 325 3 + 146 144 138 64 326 325 323 3 + 134 136 142 64 247 249 252 3 + 144 142 136 64 254 252 249 3 + 132 134 140 64 330 331 334 3 + 142 140 134 64 335 334 331 3 + 149 148 153 8 231 230 234 5 + 152 153 148 8 233 234 230 5 + 151 149 155 16 242 240 246 4 + 153 155 149 16 244 246 240 4 + 150 151 154 32 232 236 235 6 + 155 154 151 32 237 235 238 6 + 148 150 152 64 239 241 243 3 + 154 152 150 64 245 243 241 3 + 158 156 159 2 276 275 277 2 + 157 159 156 2 278 277 275 2 + 160 158 161 2 279 276 280 2 + 159 161 158 2 277 280 276 2 + 162 160 163 2 281 279 282 2 + 161 163 160 2 280 282 279 2 + 165 164 167 4 284 283 285 1 + 166 167 164 4 286 285 283 1 + 167 166 169 4 285 286 287 1 + 168 169 166 4 288 287 286 1 + 169 168 171 4 287 288 289 1 + 170 171 168 4 290 289 288 1 + 157 156 165 8 292 291 293 5 + 164 165 156 8 295 294 296 5 + 159 157 167 16 277 278 297 4 + 165 167 157 16 299 298 278 4 + 161 159 169 16 280 277 300 4 + 167 169 159 16 302 301 277 4 + 163 161 171 16 282 280 303 4 + 169 171 161 16 305 304 280 4 + 160 162 168 64 279 281 288 3 + 170 168 162 64 290 288 281 3 + 158 160 166 64 276 279 286 3 + 168 166 160 64 288 286 279 3 + 156 158 164 64 275 276 283 3 + 166 164 158 64 286 283 276 3 + 173 172 177 8 259 258 262 5 + 176 177 172 8 261 262 258 5 + 175 173 179 16 270 268 274 4 + 177 179 173 16 272 274 268 4 + 174 175 178 32 260 264 263 6 + 179 178 175 32 265 263 266 6 + 172 174 176 64 267 269 271 3 + 178 176 174 64 273 271 269 3 + 162 171 170 0 307 306 308 1 + 162 163 171 0 310 309 311 1 + 182 180 183 2 386 385 387 2 + 181 183 180 2 388 387 385 2 + 184 182 185 2 353 351 354 2 + 183 185 182 2 352 354 351 2 + 186 184 187 2 413 411 414 2 + 185 187 184 2 412 414 411 2 + 189 188 191 4 408 407 409 1 + 190 191 188 4 410 409 407 1 + 191 190 193 4 355 356 357 1 + 192 193 190 4 358 357 356 1 + 193 192 195 4 415 416 417 1 + 194 195 192 4 418 417 416 1 + 181 180 189 8 360 359 361 5 + 188 189 180 8 363 362 364 5 + 183 181 191 16 387 388 391 4 + 189 191 181 16 393 392 388 4 + 185 183 193 16 354 352 365 4 + 191 193 183 16 367 366 352 4 + 187 185 195 16 414 412 419 4 + 193 195 185 16 421 420 412 4 + 184 186 192 64 411 413 416 3 + 194 192 186 64 418 416 413 3 + 182 184 190 64 351 353 356 3 + 192 190 184 64 358 356 353 3 + 180 182 188 64 385 386 389 3 + 190 188 182 64 390 389 386 3 + 186 195 194 0 369 368 370 1 + 186 187 195 0 372 371 373 1 + 198 196 199 2 423 422 424 2 + 197 199 196 2 425 424 422 2 + 200 198 201 2 376 374 377 2 + 199 201 198 2 375 377 374 2 + 202 200 203 2 396 394 397 2 + 201 203 200 2 395 397 394 2 + 205 204 207 4 432 431 433 1 + 206 207 204 4 434 433 431 1 + 207 206 209 4 378 379 380 1 + 208 209 206 4 381 380 379 1 + 209 208 211 4 403 404 405 1 + 210 211 208 4 406 405 404 1 + 199 197 207 16 424 425 428 4 + 205 207 197 16 430 429 425 4 + 201 199 209 16 377 375 382 4 + 207 209 199 16 384 383 375 4 + 203 201 211 16 397 395 400 4 + 209 211 201 16 402 401 395 4 + 200 202 208 64 394 396 398 3 + 210 208 202 64 399 398 396 3 + 198 200 206 64 374 376 379 3 + 208 206 200 64 381 379 376 3 + 196 198 204 64 422 423 426 3 + 206 204 198 64 427 426 423 3 + 214 212 215 2 466 465 467 2 + 213 215 212 2 469 468 470 2 + 217 216 219 4 472 471 473 1 + 218 219 216 4 475 474 476 1 + 213 212 217 8 458 457 462 5 + 216 217 212 8 461 462 457 5 + 215 213 219 16 460 458 464 4 + 217 219 213 16 462 464 458 4 + 214 215 218 32 459 477 463 6 + 219 218 215 32 478 463 479 6 + 212 214 216 64 457 459 461 3 + 218 216 214 64 463 461 459 3 + 222 220 223 2 489 488 490 2 + 221 223 220 2 492 491 493 2 + 225 224 227 4 495 494 496 1 + 226 227 224 4 498 497 499 1 + 221 220 225 8 481 480 485 5 + 224 225 220 8 484 485 480 5 + 223 221 227 16 483 481 487 4 + 225 227 221 16 485 487 481 4 + 222 223 226 32 482 500 486 6 + 227 226 223 32 501 486 502 6 + 220 222 224 64 480 482 484 3 + 226 224 222 64 486 484 482 3 + tverts 503 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 2.9985 0 + 0.344242 -1.04225 0 + 0.273035 -1.04225 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -1.04225 0 + 0.34493 -1.04225 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 -0.293 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 -1.04225 0 + 0.273035 1.95475 0 + 0.174465 0.00149864 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 2.9985 0 + 0.104128 2.9985 0 + 0.244801 0.00149864 0 + 0.175144 0.00149864 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 2.9985 0 + 0.175144 2.9985 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 2.9985 0 + 0.104128 2.9985 0 + 0.104128 2.24925 0 + 0.104128 0.00149864 0 + 0.344242 -0.293 0 + 0.273035 -0.293 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.95475 0 + 0.273035 1.95475 0 + 0.415449 -0.293 0 + 0.34493 -0.293 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.95475 0 + 0.34493 1.95475 0 + 0.273035 0.456251 0 + 0.273035 0.456251 0 + 0.273035 -0.293 0 + 0.273035 1.95475 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.2867 0.244202 0 + 0.383976 0.244202 0 + 0.189423 0.244202 0 + 0.481252 0.244202 0 + 0.277912 1.2432 0 + 0.392763 1.2432 0 + 0.189423 1.2432 0 + 0.481252 1.2432 0 + 0.0921472 0.244202 0 + 0.0921472 1.2432 0 + 0.0921472 0.244202 0 + 0.208229 -0.435095 0 + 0.305505 -0.435095 0 + 0.110952 -0.435095 0 + 0.402781 -0.435095 0 + 0.199441 0.563906 0 + 0.314292 0.563906 0 + 0.110952 0.563906 0 + 0.402781 0.563906 0 + 0.0136762 -0.435095 0 + 0.0136762 0.563906 0 + 0.0136762 -0.435095 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.174465 2.24925 0 + 0.104128 2.24925 0 + 0.174465 3.66842 0 + 0.104128 3.66842 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.244801 2.24925 0 + 0.175144 2.24925 0 + 0.244802 3.66842 0 + 0.175144 3.66842 0 + 0.104128 2.24925 0 + 0.104128 2.24925 0 + 0.104128 1.5 0 + 0.104128 3.66842 0 + 0.104128 3.66842 0 + 0.104128 2.24925 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.348651 2.41652 0 + 0.277444 2.41652 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.419858 2.41652 0 + 0.349339 2.41652 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.277444 2.41652 0 + 0.277444 2.41652 0 + 0.273035 1.2055 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.344242 0.456251 0 + 0.273035 0.456251 0 + 0.344242 1.2055 0 + 0.273035 1.2055 0 + 0.326305 2.43905 0 + 0.255098 2.43905 0 + 0.415449 0.456251 0 + 0.34493 0.456251 0 + 0.415449 1.2055 0 + 0.34493 1.2055 0 + 0.397512 2.43905 0 + 0.326993 2.43905 0 + 0.273035 1.2055 0 + 0.273035 1.2055 0 + 0.273035 0.456251 0 + 0.255098 2.43905 0 + 0.255098 2.43905 0 + 0.273035 1.2055 0 + 0.159393 -0.654153 0 + 0.0890555 -0.654153 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.229729 -0.654153 0 + 0.160072 -0.654153 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.0890555 -0.654153 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.228325 -0.0582831 0 + 0.325602 -0.0582831 0 + 0.131049 -0.0582831 0 + 0.219538 0.940718 0 + 0.334389 0.940718 0 + 0.131049 0.940718 0 + 0.0337728 -0.0582831 0 + 0.0337728 0.940718 0 + 0.0337728 -0.0582831 0 + 0.243649 -0.0582831 0 + 0.310278 -0.0582831 0 + 0.177022 -0.0582831 0 + 0.376905 -0.0582831 0 + 0.237631 0.940718 0 + 0.316296 0.940718 0 + 0.177022 0.940718 0 + 0.376905 0.940718 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.170192 0.852609 0 + 0.170192 0.852609 0 + 0.172541 -0.0539126 0 + 0.29136 0.498894 0 + 0.388637 0.498894 0 + 0.194084 0.498894 0 + 0.282573 1.4979 0 + 0.397424 1.4979 0 + 0.194084 1.4979 0 + 0.0968081 0.498894 0 + 0.0968081 1.4979 0 + 0.0968081 0.498894 0 + 0.306685 0.498894 0 + 0.373313 0.498894 0 + 0.240057 0.498894 0 + 0.43994 0.498894 0 + 0.300666 1.4979 0 + 0.379331 1.4979 0 + 0.240057 1.4979 0 + 0.43994 1.4979 0 + 0.320422 -0.0109385 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -0.0109385 0 + 0.320422 1.43645 0 + 0.296926 1.40979 0 + 0.320422 2.12205 0 + 0.302775 2.12205 0 + 0.37945 -0.0109385 0 + 0.404514 -0.0109386 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.403898 1.40979 0 + 0.37945 1.43645 0 + 0.406247 2.12205 0 + 0.37945 2.12205 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -0.0109386 0 + 0.233227 1.40979 0 + 0.233227 1.40979 0 + 0.235576 0.503265 0 + 0.235577 2.12205 0 + 0.235577 2.12205 0 + 0.233227 1.40979 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.320422 -1.13992 0 + 0.320422 0.674666 0 + 0.303226 0.503265 0 + 0.302262 -1.13992 0 + 0.37945 -1.13992 0 + 0.37945 0.674666 0 + 0.235576 0.503265 0 + 0.235576 0.503265 0 + 0.233844 -1.13992 0 + 0.257387 0.879271 0 + 0.233891 0.852609 0 + 0.257387 2.35824 0 + 0.23974 2.35824 0 + 0.316414 0.879271 0 + 0.316414 2.35824 0 + 0.172541 2.35824 0 + 0.172541 2.35824 0 + 0.170192 0.852609 0 + 0.257387 -1.76798 0 + 0.257387 0.117489 0 + 0.240191 -0.0539126 0 + 0.239227 -1.76798 0 + 0.316414 -1.76798 0 + 0.316414 0.117489 0 + 0.172541 -0.0539126 0 + 0.172541 -0.0539126 0 + 0.170808 -1.76798 0 + 0.340862 0.852609 0 + 0.316414 0.879271 0 + 0.343211 2.35824 0 + 0.316414 2.39498 0 + 0.37945 -1.19967 0 + 0.404514 -1.13992 0 + 0.406247 0.503265 0 + 0.37945 0.674666 0 + 0.316414 -1.82165 0 + 0.341479 -1.76798 0 + 0.343211 -0.0539126 0 + 0.316414 0.117489 0 + 0.164791 0.513932 0 + 0.147595 0.342531 0 + 0.164791 1.27572 0 + 0.141295 1.24906 0 + 0.250616 0.342531 0 + 0.223819 0.513932 0 + 0.248267 1.24906 0 + 0.223819 1.27572 0 + 0.664364 0.310554 0 + 0.557312 0.298659 0 + 0.557312 0.596027 0 + 0.557312 0.596027 0 + 0.664364 0.548448 0 + 0.664364 0.310554 0 + 0.0775959 1.24906 0 + 0.0775959 1.24906 0 + 0.079945 0.342531 0 + 0.557311 0.572238 0 + 0.664363 0.310554 0 + 0.664363 0.548449 0 + 0.557311 0.286765 0 + 0.664363 0.310554 0 + 0.557311 0.572238 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.014561 0.691875 0 + 0.014561 0.691875 0 + 0.01691 -0.214646 0 + 0.164791 -1.30066 0 + 0.164791 0.513932 0 + 0.147595 0.342531 0 + 0.146631 -1.30066 0 + 0.223819 -1.30066 0 + 0.223819 0.513932 0 + 0.079945 0.342531 0 + 0.079945 0.342531 0 + 0.0782129 -1.30066 0 + 0.101756 0.718537 0 + 0.0782599 0.691875 0 + 0.101756 2.19751 0 + 0.0841089 2.19751 0 + 0.160783 0.718537 0 + 0.160783 2.19751 0 + 0.01691 2.19751 0 + 0.01691 2.19751 0 + 0.014561 0.691875 0 + 0.185231 0.691875 0 + 0.160783 0.718537 0 + 0.18758 2.19751 0 + 0.160783 2.23425 0 + 0.223819 -1.3604 0 + 0.248883 -1.30066 0 + 0.250616 0.342531 0 + 0.223819 0.513932 0 + 0.164791 1.27572 0 + 0.141295 1.24906 0 + 0.164791 2.261 0 + 0.147144 2.261 0 + 0.248267 1.24906 0 + 0.223819 1.27572 0 + 0.250616 2.261 0 + 0.223819 2.261 0 + 0.079946 2.261 0 + 0.079946 2.261 0 + 0.0775959 1.24906 0 + 0.101756 -1.12541 0 + 0.101756 -0.0432447 0 + 0.0845599 -0.214646 0 + 0.0835959 -1.12541 0 + 0.160783 -1.12541 0 + 0.160783 -0.0432447 0 + 0.01691 -0.214646 0 + 0.01691 -0.214646 0 + 0.015177 -1.12541 0 + 0.160783 -1.17908 0 + 0.185848 -1.12541 0 + 0.18758 -0.214646 0 + 0.160783 -0.0432447 0 + 0.174465 0.521668 0 + 0.104128 0.521668 0 + 0.174465 0.750749 0 + 0.104128 0.750749 0 + 0.174465 1.5 0 + 0.104128 1.5 0 + 0.244801 0.521668 0 + 0.175144 0.521668 0 + 0.244801 0.750749 0 + 0.175144 0.750749 0 + 0.244801 1.5 0 + 0.175144 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.750749 0 + 0.104128 0.521668 0 + 0.104128 1.5 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 1.5 0 + 0.104128 0.750749 0 + 0.104128 0.00149864 0 + 0.104128 2.9985 0 + 0.251779 -1.21921 0 + 0.326839 -1.21921 0 + 0.0725431 -1.21921 0 + 0.506074 -1.21921 0 + 0.251779 -0.220206 0 + 0.326839 -0.220206 0 + 0.0725431 -0.220206 0 + 0.506074 -0.220206 0 + 0.323181 -0.753007 0 + 0.255437 -0.753007 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.323181 -0.686406 0 + 0.323181 -0.753007 0 + 0.323181 -0.753007 0 + 0.323181 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.686406 0 + 0.255437 -0.753007 0 + 0.323181 -0.753007 0 + -0.00251664 -1.21921 0 + -0.00251664 -0.220206 0 + -0.00251664 -1.21921 0 + 0.251779 -1.70471 0 + 0.326839 -1.70471 0 + 0.0725431 -1.70471 0 + 0.506074 -1.70471 0 + 0.251779 -0.705713 0 + 0.326839 -0.705713 0 + 0.0725431 -0.705713 0 + 0.506074 -0.705713 0 + 0.323181 -1.23851 0 + 0.255437 -1.23851 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.323181 -1.17191 0 + 0.323181 -1.23851 0 + 0.323181 -1.23851 0 + 0.323181 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.17191 0 + 0.255437 -1.23851 0 + 0.323181 -1.23851 0 + -0.00251664 -1.70471 0 + -0.00251664 -0.705713 0 + -0.00251664 -1.70471 0 +endnode +#Tile trimesh node +node trimesh Cylinder84 + parent tin01_f09_02 + position 1.82 1.79 0.34 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 3.5 0.5 13.0 + bitmap tin01_barel + verts 24 + 0.07 0.31 0.6 + -0.21 0.19 0.6 + -0.25 -0.12 0.6 + 0.28 -0.18 0.6 + 0.32 0.12 0.6 + -0.01 -0.31 0.6 + -0.31 0.26 0.29 + -0.36 -0.17 0.29 + 0.08 0.43 0.29 + 0.43 0.17 0.29 + 0.37 -0.26 0.29 + -0.02 -0.42 0.29 + -0.31 0.26 -0.02 + -0.36 -0.17 -0.02 + 0.08 0.43 -0.02 + 0.43 0.17 -0.02 + 0.37 -0.26 -0.02 + -0.02 -0.42 -0.02 + -0.21 0.19 -0.34 + -0.25 -0.12 -0.34 + 0.07 0.31 -0.34 + 0.32 0.12 -0.34 + 0.28 -0.18 -0.34 + -0.01 -0.31 -0.34 + faces 40 + 0 1 2 1 0 1 2 1 + 0 3 4 1 0 3 4 1 + 0 5 3 1 0 5 3 1 + 0 2 5 1 0 2 5 1 + 2 6 7 2 6 7 8 1 + 2 1 6 2 6 9 7 1 + 1 8 6 2 9 10 7 1 + 1 0 8 2 9 11 10 1 + 0 9 8 2 11 12 10 1 + 0 4 9 2 11 13 12 1 + 4 10 9 2 13 14 12 1 + 4 3 10 2 13 15 14 1 + 3 11 10 2 15 16 14 1 + 3 5 11 2 15 17 16 1 + 5 7 11 2 17 18 16 1 + 5 2 7 2 17 19 18 1 + 7 12 13 2 8 20 21 1 + 7 6 12 2 8 7 20 1 + 6 14 12 2 7 22 20 1 + 6 8 14 2 7 10 22 1 + 8 15 14 2 10 23 22 1 + 8 9 15 2 10 12 23 1 + 9 16 15 2 12 24 23 1 + 9 10 16 2 12 14 24 1 + 10 17 16 2 14 25 24 1 + 10 11 17 2 14 16 25 1 + 11 13 17 2 16 26 25 1 + 11 7 13 2 16 18 26 1 + 13 18 19 2 21 27 28 1 + 13 12 18 2 21 20 27 1 + 12 20 18 2 20 29 27 1 + 12 14 20 2 20 22 29 1 + 14 21 20 2 22 30 29 1 + 14 15 21 2 22 23 30 1 + 15 22 21 2 23 31 30 1 + 15 16 22 2 23 24 31 1 + 16 23 22 2 24 32 31 1 + 16 17 23 2 24 25 32 1 + 17 19 23 2 25 33 32 1 + 17 13 19 2 25 26 33 1 + tverts 34 + 0.58533 0.196457 0 + 0.58533 0.395333 0 + 0.360645 0.494772 0 + 0.135961 0.196457 0 + 0.360645 0.0970182 0 + 0.135961 0.395333 0 + 1.71 0.659638 0 + 1.425 0.432744 0 + 1.71 0.432744 0 + 1.425 0.659638 0 + 1.14 0.432744 0 + 1.14 0.659638 0 + 0.855 0.432744 0 + 0.855 0.659638 0 + 0.570001 0.432744 0 + 0.57 0.659638 0 + 0.284999 0.432744 0 + 0.285 0.659638 0 + 0.0 0.432744 0 + 0.0 0.659638 0 + 1.425 0.20585 0 + 1.71 0.20585 0 + 1.14 0.20585 0 + 0.855 0.20585 0 + 0.570001 0.20585 0 + 0.284999 0.20585 0 + 0.0 0.20585 0 + 1.425 -0.0210437 0 + 1.71 -0.0210436 0 + 1.14 -0.0210435 0 + 0.855 -0.0210435 0 + 0.57 -0.0210437 0 + 0.285 -0.0210436 0 + 0.0 -0.0210436 0 +endnode +#Tile trimesh node +node trimesh Line133 + parent tin01_f09_02 + position -4.75 -4.74 2.26 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center 475.0 474.0 74.0 + bitmap tin01_black + verts 8 + -0.25 0.24 0.74 + -0.25 -0.26 0.74 + 0.25 -0.26 0.74 + 0.25 0.24 0.74 + 9.25 -0.26 0.74 + 9.75 -0.26 0.74 + 9.75 9.74 0.74 + 9.25 9.74 0.74 + faces 4 + 0 1 2 1 0 1 2 1 + 3 0 2 1 3 0 2 1 + 4 5 6 1 4 5 6 1 + 7 4 6 1 7 4 6 1 + tverts 8 + -64.5 11.0 0 + -64.5 10.5 0 + -64.0 10.5 0 + -64.0 11.0 0 + -55.0 10.5 0 + -54.5 10.5 0 + -54.5 20.5 0 + -55.0 20.5 0 +endnode +#Tile trimesh node +node trimesh Mesh01 + parent tin01_f09_02 + position 3.4 -4.88 3.68 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -31.0 -1.0 40.5 + bitmap tin01_furnish2 + verts 20 + 0.35 -0.12 1.49 + 0.35 0.1 1.49 + 0.35 0.1 -0.68 + 0.35 -0.12 -0.68 + 0.0 0.1 1.16 + 0.0 -0.12 1.16 + 0.0 -0.12 0.02 + 0.0 0.1 0.02 + 0.0 0.1 -0.68 + -0.97 0.1 0.81 + -0.44 -0.12 0.27 + -0.97 -0.12 0.81 + 0.0 -0.12 -0.68 + -0.44 0.1 0.27 + -0.22 0.1 0.51 + -0.22 -0.12 0.51 + -0.97 0.1 0.81 + -0.76 0.1 1.05 + -0.76 -0.12 1.05 + -0.97 -0.12 0.81 + faces 20 + 1 0 2 1 1 0 2 4 + 2 0 3 1 2 0 3 4 + 5 4 6 1 5 4 6 3 + 7 6 4 1 7 6 4 3 + 11 9 10 1 25 24 26 3 + 8 7 2 2 29 28 30 6 + 1 2 4 2 31 30 32 6 + 4 2 7 2 32 30 28 6 + 8 13 7 8 33 35 45 5 + 14 7 13 8 36 45 35 5 + 14 13 17 8 36 35 40 5 + 16 17 13 8 39 40 35 5 + 6 7 15 16 46 45 37 4 + 14 15 7 16 36 37 45 4 + 15 14 18 16 37 36 41 4 + 17 18 14 16 40 41 36 4 + 8 12 13 64 33 34 35 3 + 10 13 12 64 38 35 34 3 + 13 10 16 64 35 38 39 3 + 19 16 10 64 42 39 38 3 + tverts 47 + 0.408666 0.891416 0 + 0.346688 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.219389 1.36765 0 + 0.285126 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + 0.46889 1.46063 0 + 0.540743 1.39726 0 + 0.618333 1.52891 0 + 0.829444 1.52891 0 + 0.36085 -0.460635 0 + 0.426587 -0.460635 0 + 0.426587 -0.528906 0 + 0.36085 -0.528906 0 + 0.30483 1.29827 0 + 0.377444 1.23509 0 + 0.36085 -0.298269 0 + 0.426587 -0.298269 0 + 0.219389 1.0989 0 + 0.285126 1.0989 0 + 0.285126 0.810195 0 + 0.219389 0.810195 0 + 0.414477 0.4225 0 + 0.476458 0.4225 0 + 0.476458 0.206945 0 + 0.414477 0.206945 0 + 0.328438 0.836212 0 + 0.328438 0.625102 0 + 0.434495 0.624996 0 + 0.434495 1.28399 0 + 0.328438 1.18256 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.170894 0.6665 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh02 + parent tin01_f09_02 + position -3.41 -4.88 3.69 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 32.0 -1.0 39.5 + bitmap tin01_furnish2 + verts 18 + -0.34 0.1 1.48 + -0.34 -0.12 1.48 + -0.34 0.1 -0.69 + -0.34 -0.12 -0.69 + 0.01 -0.12 1.15 + 0.01 0.1 1.15 + 0.01 -0.12 0.01 + 0.01 0.1 0.01 + 0.01 0.1 -0.69 + 0.01 -0.12 -0.69 + 0.23 -0.12 0.5 + 0.23 0.1 0.5 + 0.45 0.1 0.26 + 0.45 -0.12 0.26 + 0.77 -0.12 1.04 + 0.77 0.1 1.04 + 0.98 0.1 0.8 + 0.98 -0.12 0.8 + faces 19 + 1 0 2 1 1 0 2 4 + 1 2 3 1 1 2 3 4 + 5 4 6 1 5 4 6 3 + 6 7 5 1 6 7 5 3 + 2 0 8 2 9 8 10 6 + 5 7 0 2 12 11 8 6 + 7 8 0 2 11 10 8 6 + 6 10 7 16 86 57 87 4 + 11 7 10 16 58 87 57 4 + 11 10 15 16 58 57 64 4 + 14 15 10 16 73 64 57 4 + 8 7 12 32 74 88 59 6 + 11 12 7 32 67 59 88 6 + 12 11 16 32 59 68 65 6 + 15 16 11 32 75 65 68 6 + 9 8 13 64 50 51 60 3 + 12 13 8 64 59 60 51 3 + 13 12 17 64 60 59 66 3 + 16 17 12 64 65 66 59 3 + tverts 89 + 0.346688 0.891416 0 + 0.408666 0.891416 0 + 0.346685 0.270179 0 + 0.408666 0.270179 0 + 0.285126 1.36765 0 + 0.219389 1.36765 0 + 0.285126 1.02131 0 + 0.219389 1.02131 0 + -0.696282 1.23919 0 + -0.696282 0.617953 0 + -0.596281 0.617953 0 + -0.596281 0.817 0 + -0.596281 1.14356 0 + 0.225624 0.266174 0 + 0.252833 0.305544 0 + 0.252357 0.150473 0 + 0.226784 -0.0348742 0 + 0.191477 0.305544 0 + 0.191001 0.150473 0 + 0.204708 0.471327 0 + 0.273749 0.510697 0 + 0.212393 0.510697 0 + 0.286295 0.267326 0 + 0.28814 -0.0348742 0 + 0.266064 0.471327 0 + 0.21826 0.266174 0 + 0.137861 0.305544 0 + 0.136086 0.150473 0 + 0.136086 0.150473 0 + 0.213931 -0.0348742 0 + 0.21826 0.266174 0 + 0.252833 0.305544 0 + 0.191477 0.305544 0 + 0.252357 0.150473 0 + 0.191477 0.305544 0 + 0.296319 0.471327 0 + 0.215919 0.510697 0 + 0.137861 0.305544 0 + 0.137861 0.305544 0 + 0.21826 0.266174 0 + 0.296319 0.471327 0 + 0.212393 0.510697 0 + 0.252833 0.305544 0 + 0.286295 0.267326 0 + 0.225624 0.266174 0 + 0.28814 -0.0348742 0 + 0.225624 0.266174 0 + 0.204708 0.471327 0 + 0.286295 0.267326 0 + 0.246536 0.000499517 0 + 0.170894 0.000499517 0 + 0.0952516 0.000499517 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.246536 0.3335 0 + 0.345252 0.3335 0 + 0.420894 0.3335 0 + 0.496536 0.3335 0 + 0.0952516 0.3335 0 + 0.170894 0.3335 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + -0.0034642 0.3335 0 + -0.0034642 0.3335 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + 0.420894 0.6665 0 + 0.0876934 0.0625172 0 + -0.00129734 0.669749 0 + 0.345252 0.777547 0 + -0.00282295 0.777409 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.345252 0.192615 0 + 0.420894 0.192615 0 + 0.496536 0.192615 0 + -0.0034642 0.192615 0 +endnode +#Tile trimesh node +node trimesh Mesh03 + parent tin01_f09_02 + position 1.65 -4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 22.5 -1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + -1.65 0.1 0.19 + -1.65 0.1 -0.14 + 2.1 0.1 0.19 + 1.75 0.1 -0.14 + 0.57 0.1 -0.14 + -0.25 0.1 -0.14 + 1.75 -0.12 -0.14 + 0.57 -0.12 -0.14 + 2.1 -0.12 0.19 + -1.65 -0.12 0.19 + -1.65 -0.12 -0.14 + -0.25 -0.12 -0.14 + 0.78 0.1 -0.49 + 0.99 0.1 -0.25 + 0.99 -0.12 -0.25 + 0.78 -0.12 -0.49 + faces 16 + 1 0 2 1 1 0 2 3 + 2 3 4 1 2 3 4 3 + 2 4 5 1 2 4 5 3 + 2 5 1 1 2 5 1 3 + 3 6 4 2 21 28 29 3 + 7 4 6 2 23 22 20 3 + 8 2 9 2 7 6 8 3 + 0 9 2 2 9 8 6 3 + 10 1 11 2 25 30 31 3 + 5 11 1 2 27 26 24 3 + 5 4 12 8 10 15 12 5 + 13 12 4 8 13 12 15 5 + 7 14 4 16 19 17 18 4 + 13 4 14 16 16 18 17 4 + 12 15 5 64 12 14 10 3 + 11 5 15 64 11 10 14 3 + tverts 32 + 0.496366 -0.196817 0 + 0.384796 -0.196817 0 + 0.496367 1.05318 0 + 0.384796 0.936516 0 + 0.384796 0.544462 0 + 0.384796 0.268566 0 + 0.426587 -0.634963 0 + 0.36085 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.246536 0.999501 0 + 0.170894 0.999501 0 + 0.246536 0.6665 0 + 0.345252 0.6665 0 + 0.170894 0.6665 0 + 0.345252 0.777547 0 + 0.345252 0.6665 0 + 0.420894 0.6665 0 + 0.345252 0.777547 0 + 0.420894 0.777547 0 + 0.326259 1.00025 0 + 0.261617 1.00025 0 + 0.261617 0.653536 0 + 0.326259 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.00124749 0 + 0.326259 0.412601 0 + 0.261617 0.412601 0 + 0.326259 1.00025 0 + 0.261617 0.653536 0 + 0.261618 0.00124749 0 + 0.326259 0.412601 0 +endnode +#Tile trimesh node +node trimesh Mesh04 + parent tin01_f09_02 + position -1.55 -4.88 4.98 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -32.5 -1.0 -15.0 + bitmap tin01_furnish2 + verts 16 + 1.55 0.1 -0.14 + 1.55 0.1 0.19 + -2.2 0.1 0.19 + -1.85 0.1 -0.14 + -0.67 0.1 -0.14 + 0.15 0.1 -0.14 + -1.85 -0.12 -0.14 + -0.67 -0.12 -0.14 + -2.2 -0.12 0.19 + 1.55 -0.12 0.19 + 1.55 -0.12 -0.14 + 0.15 -0.12 -0.14 + -1.09 -0.12 -0.25 + -1.09 0.1 -0.25 + -0.88 0.1 -0.49 + -0.88 -0.12 -0.49 + faces 16 + 1 0 2 1 1 0 2 3 + 3 2 4 1 3 2 4 3 + 4 2 5 1 4 2 5 3 + 5 2 0 1 5 2 0 3 + 6 3 4 2 32 24 33 3 + 4 7 6 2 26 27 25 3 + 2 8 9 2 7 6 8 3 + 9 1 2 2 8 9 7 3 + 0 10 11 2 34 28 35 3 + 11 5 0 2 30 31 29 3 + 14 13 5 32 16 15 14 6 + 15 14 11 64 13 12 10 3 + 5 11 14 64 11 10 12 3 + 5 13 4 0 17 15 18 1 + 13 12 4 0 21 20 23 1 + 4 12 7 0 23 19 22 1 + tverts 36 + 0.338345 1.40811 0 + 0.449916 1.40811 0 + 0.449916 0.158114 0 + 0.338345 0.274781 0 + 0.338345 0.666835 0 + 0.338345 0.942731 0 + 0.36085 -0.634963 0 + 0.426587 -0.634963 0 + 0.36085 0.5 0 + 0.426587 0.5 0 + 0.170894 0.999501 0 + 0.0952516 0.999501 0 + 0.0952516 0.6665 0 + 0.170894 0.6665 0 + 0.0952516 0.999501 0 + -0.00319766 0.66593 0 + 0.0952516 0.6665 0 + 0.0951884 0.999599 0 + -0.00282295 0.777409 0 + 0.420894 0.6665 0 + 0.420894 0.6665 0 + 0.496536 0.6665 0 + 0.420894 0.777547 0 + 0.496093 0.777433 0 + 0.219023 0.00190346 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.280636 0.349166 0 + 0.274944 1.00143 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 + 0.213895 0.589529 0 + 0.283662 0.00246755 0 + 0.215998 0.348602 0 + 0.210305 1.00087 0 + 0.278534 0.590093 0 +endnode +#Tile trimesh node +node trimesh Mesh999 + parent tin01_f09_02 + position 0.0 0.0 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 0.0 -375.0 0.0 + bitmap tin01_floorTRAN2 + verts 14 + 3.4 -4.78 0.0 + 3.75 -4.78 0.0 + 3.75 -3.75 0.0 + 2.5 -2.5 0.0 + 0.0 -2.5 0.0 + 0.0 -5.0 0.0 + 2.5 -5.0 0.0 + -2.5 -2.5 0.0 + -2.5 -5.0 0.0 + -3.4 -5.0 0.0 + -3.4 -4.78 0.0 + 3.4 -5.0 0.0 + -3.75 -3.75 0.0 + -3.75 -4.78 0.0 + faces 12 + 0 1 2 1 0 1 2 1 + 2 3 0 1 2 3 0 1 + 3 4 5 1 4 5 6 1 + 5 6 3 1 6 7 4 1 + 4 7 8 1 5 8 9 1 + 8 5 4 1 9 6 5 1 + 9 8 10 1 10 11 12 1 + 7 10 8 1 13 12 11 1 + 3 6 0 1 3 14 0 1 + 6 11 0 1 14 15 0 1 + 7 12 10 1 13 16 12 1 + 10 12 13 1 12 16 17 1 + tverts 18 + 0.267172 0.841537 0 + 0.337172 0.841537 0 + 0.337172 0.634926 0 + 0.087172 0.384926 0 + 0.0016292 0.39392 0 + 0.501629 0.39392 0 + 0.501629 0.89392 0 + 0.001629 0.89392 0 + 1.00163 0.39392 0 + 1.00163 0.89392 0 + 0.266715 0.884926 0 + 0.086715 0.884926 0 + 0.266715 0.841537 0 + 0.0867152 0.384926 0 + 0.0871721 0.884926 0 + 0.267172 0.884925 0 + 0.336715 0.634926 0 + 0.336715 0.841539 0 +endnode +#Tile trimesh node +node trimesh Mesh1001 + parent tin01_f09_02 + position -4.21 -4.18 2.43 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -16.5 -8.5 -93.0 + bitmap tin01_wall03 + verts 8 + -0.79 -0.32 0.57 + -0.29 -0.32 0.57 + 0.46 0.43 0.57 + 0.46 0.43 -2.43 + -0.79 0.43 -2.43 + -0.79 0.43 0.57 + 0.46 -0.6 0.57 + 0.46 -0.6 -2.43 + faces 6 + 0 1 2 1 8 1 9 1 + 3 4 5 2 10 4 11 3 + 2 3 5 2 12 13 14 3 + 5 0 2 1 5 0 15 1 + 6 7 2 4 6 16 17 3 + 3 2 7 4 3 2 7 3 + tverts 18 + 0.291875 0.421745 0 + 0.458375 0.421745 0 + 0.671495 0.999501 0 + 0.671495 0.000499517 0 + 1.0 0.000499517 0 + 0.291875 0.671495 0 + 0.328505 0.999501 0 + 0.328505 0.000499517 0 + 0.291875 0.421745 0 + 0.708125 0.671495 0 + 0.576899 0.000499517 0 + 1.0 0.999501 0 + 0.576899 0.999501 0 + 0.576899 0.000499517 0 + 1.0 0.999501 0 + 0.708125 0.671495 0 + 0.328505 0.000499517 0 + 0.671495 0.999501 0 +endnode +#Tile trimesh node +node trimesh Mesh1003 + parent tin01_f09_02 + position 4.2 -4.24 2.95 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 0.980392 0.980392 0.980392 + specular 0.0 0.0 0.0 + shininess 1 + center -420.0 49.0 5.0 + bitmap tin01_wall03 + verts 10 + -0.45 -0.54 0.05 + -0.45 -0.76 0.05 + 0.3 -0.76 0.05 + 0.3 1.74 0.05 + -0.45 1.74 0.05 + -8.7 -0.26 0.05 + -8.7 -0.76 0.05 + -7.95 0.49 0.05 + -7.95 -0.76 0.05 + -7.95 -0.54 0.05 + faces 6 + 0 1 2 1 0 1 2 3 + 2 3 4 1 2 3 4 3 + 4 0 2 1 4 0 2 3 + 5 6 7 1 5 6 7 3 + 8 9 6 1 8 9 6 3 + 9 7 6 1 9 7 6 3 + tverts 10 + 0.38415 0.48137 0 + 0.329919 0.48137 0 + 0.329919 0.29387 0 + 0.954919 0.29387 0 + 0.954918 0.48137 0 + 0.460022 0.54184 0 + 0.461113 0.666835 0 + 0.270893 0.355984 0 + 0.27362 0.668471 0 + 0.273147 0.614243 0 +endnode +#Tile trimesh node +node trimesh Mesh1004 + parent tin01_f09_02 + position 4.2 4.32 1.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -7.5 -421.0 50.0 + bitmap tin01_wall03 + verts 24 + -0.45 -9.1 -1.0 + -0.45 -9.1 2.0 + -0.45 -6.82 2.0 + -0.45 -6.82 -1.0 + 0.3 -4.32 2.0 + -0.45 -4.32 2.0 + 0.3 -6.82 2.0 + -0.45 -6.42 -0.13 + -0.45 -6.42 -1.0 + 0.3 -1.82 2.0 + -0.45 -1.82 2.0 + -0.45 -1.96 -0.13 + -0.45 -3.09 -0.13 + 0.3 0.68 2.0 + -0.45 0.68 2.0 + -0.45 0.68 -1.0 + -0.45 -1.82 -1.0 + -0.45 -1.96 -1.0 + -0.45 -3.09 0.69 + -0.45 -4.22 0.69 + -0.45 -4.22 1.75 + -0.45 -5.34 1.75 + -0.45 -5.34 -0.13 + -0.45 -5.34 0.69 + faces 24 + 0 1 2 1 24 1 25 3 + 2 3 0 1 26 27 0 3 + 4 5 2 2 28 29 30 3 + 2 6 4 2 31 6 32 3 + 7 8 3 1 33 8 34 3 + 3 2 7 1 3 35 36 3 + 9 10 5 2 37 38 39 3 + 5 4 9 2 40 4 41 3 + 10 11 12 1 42 43 44 3 + 13 14 10 2 45 46 47 3 + 10 9 13 2 48 9 13 3 + 14 15 16 1 49 15 50 3 + 16 10 14 1 51 52 14 3 + 10 16 11 1 53 54 55 3 + 11 16 17 1 11 16 17 3 + 18 5 10 1 56 57 58 3 + 12 18 10 1 12 59 10 3 + 19 20 18 1 19 60 61 3 + 21 2 5 1 62 63 64 3 + 7 2 21 1 65 2 66 3 + 22 7 23 1 22 67 68 3 + 20 21 5 1 69 70 71 3 + 20 5 18 1 20 5 18 3 + 23 7 21 1 23 7 21 3 + tverts 72 + 2.0 0.0 0 + 2.0 0.999678 0 + 1.53321 0.999678 0 + 1.53321 0.00429305 0 + 1.25537 0.63215 0 + 1.02247 0.999678 0 + 1.7661 0.63215 0 + 1.45149 0.292955 0 + 1.45149 0.00429305 0 + 0.744631 0.63215 0 + 0.511736 0.999678 0 + 0.540337 0.292955 0 + 0.77119 0.292955 0 + 0.233895 0.63215 0 + 0.0 1.0 0 + 0.0 0.0 0 + 0.511736 0.00429305 0 + 0.540337 0.00429305 0 + 0.77119 0.565027 0 + 1.00204 0.565027 0 + 1.00204 0.916729 0 + 1.23085 0.916729 0 + 1.23085 0.292955 0 + 1.23085 0.565027 0 + 2.0 0.0 0 + 1.53321 0.999678 0 + 1.53321 0.999678 0 + 1.53321 0.00429305 0 + 1.25537 0.63215 0 + 1.25537 0.478929 0 + 1.7661 0.478929 0 + 1.7661 0.478929 0 + 1.25537 0.63215 0 + 1.45149 0.292955 0 + 1.53321 0.00429305 0 + 1.53321 0.999678 0 + 1.45149 0.292955 0 + 0.744631 0.63215 0 + 0.744631 0.478929 0 + 1.25537 0.478929 0 + 1.25537 0.478929 0 + 0.744631 0.63215 0 + 0.511736 0.999678 0 + 0.540337 0.292955 0 + 0.77119 0.292955 0 + 0.233895 0.63215 0 + 0.233895 0.478929 0 + 0.744631 0.478929 0 + 0.744631 0.478929 0 + 0.0 1.0 0 + 0.511736 0.00429305 0 + 0.511736 0.00429305 0 + 0.511736 0.999678 0 + 0.511736 0.999678 0 + 0.511736 0.00429305 0 + 0.540337 0.292955 0 + 0.77119 0.565027 0 + 1.02247 0.999678 0 + 0.511736 0.999678 0 + 0.77119 0.565027 0 + 1.00204 0.916729 0 + 0.77119 0.565027 0 + 1.23085 0.916729 0 + 1.53321 0.999678 0 + 1.02247 0.999678 0 + 1.45149 0.292955 0 + 1.23085 0.916729 0 + 1.45149 0.292955 0 + 1.23085 0.565027 0 + 1.00204 0.916729 0 + 1.23085 0.916729 0 + 1.02247 0.999678 0 +endnode +#Tile trimesh node +node trimesh Plane01 + parent tin01_f09_02 + position 0.0 -2.5 0.01 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.219608 0.0313726 0.529412 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 0 + center 0.0 -67.5 0.0 + bitmap tin01_floorTRAN2 + verts 12 + 2.75 0.2 0.0 + -2.75 0.2 0.0 + 2.55 -0.2 0.0 + -2.55 -0.2 0.0 + 4.3 -1.35 0.0 + 2.75 0.2 0.0 + 3.9 -1.55 0.0 + 2.55 -0.2 0.0 + -2.75 0.2 0.0 + -4.3 -1.35 0.0 + -2.55 -0.2 0.0 + -3.9 -1.55 0.0 + faces 6 + 2 0 3 1 2 0 3 1 + 1 3 0 1 1 3 0 1 + 6 4 7 1 6 4 7 1 + 5 7 4 1 5 7 4 1 + 10 8 11 1 10 8 11 1 + 9 11 8 1 9 11 8 1 + tverts 12 + -0.434156 0.0579255 0 + 1.56385 0.0579222 0 + -0.356194 0.138854 0 + 1.4965 0.13885 0 + -0.00916232 0.0584724 0 + 0.989839 0.0584706 0 + 0.0601203 0.144429 0 + 0.930218 0.144426 0 + -0.00916232 0.0584724 0 + 0.989839 0.0584706 0 + 0.0601203 0.144429 0 + 0.930218 0.144426 0 +endnode +#Tile trimesh node +node trimesh Plane368 + parent tin01_f09_02 + position 0.0 0.0 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 0 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -62.5 62.5 0.0 + bitmap tin01_floor + verts 30 + 3.75 5.0 0.0 + 2.5 5.0 0.0 + 3.75 2.5 0.0 + 2.5 2.5 0.0 + 3.75 -2.1 0.0 + 2.5 -2.1 0.0 + 3.75 -2.5 0.0 + 2.5 -2.5 0.0 + 0.0 5.0 0.0 + 0.0 2.5 0.0 + 2.5 2.36 0.0 + 1.37 0.1 0.0 + 0.0 0.0 0.0 + 1.37 -1.02 0.0 + 0.0 -2.5 0.0 + -2.5 5.0 0.0 + -2.5 2.5 0.0 + -2.5 0.0 0.0 + -2.5 -2.5 0.0 + -5.0 5.0 0.0 + -5.0 2.5 0.0 + -5.0 0.0 0.0 + -5.0 -2.5 0.0 + -3.75 -3.75 0.0 + 3.75 2.36 0.0 + 1.37 1.23 0.0 + 2.5 1.23 0.0 + 2.5 -1.02 0.0 + 3.75 -3.75 0.0 + -5.0 -3.75 0.0 + faces 33 + 0 1 2 1 0 1 2 1 + 3 2 1 1 3 2 1 1 + 4 5 6 1 4 5 6 1 + 7 6 5 1 7 6 5 1 + 1 8 9 1 1 8 9 1 + 9 3 1 1 9 3 1 1 + 3 9 10 1 3 9 10 1 + 11 12 13 1 11 12 13 1 + 14 13 12 1 14 13 12 1 + 8 15 16 1 8 15 16 1 + 16 9 8 1 16 9 8 1 + 9 16 17 1 9 16 17 1 + 17 12 9 1 17 12 9 1 + 12 17 18 1 12 17 18 1 + 18 14 12 1 18 14 12 1 + 15 19 20 1 15 19 20 1 + 20 16 15 1 20 16 15 1 + 16 20 21 1 16 20 21 1 + 21 17 16 1 21 17 16 1 + 17 21 22 1 17 21 22 1 + 22 18 17 1 22 18 17 1 + 18 22 23 1 18 22 23 1 + 2 3 10 1 2 3 10 1 + 9 12 10 1 9 12 10 1 + 10 24 2 1 10 24 2 1 + 10 25 26 1 10 25 26 1 + 10 12 25 1 10 12 25 1 + 12 11 25 1 12 11 25 1 + 14 7 13 1 14 7 13 1 + 13 5 27 1 13 5 27 1 + 13 7 5 1 13 7 5 1 + 6 7 28 1 6 7 28 1 + 23 22 29 1 23 22 29 1 + tverts 30 + 21.75 -16.0 0 + 21.5 -16.0 0 + 21.75 -16.5 0 + 21.5 -16.5 0 + 21.75 -17.4202 0 + 21.5 -17.4202 0 + 21.75 -17.5 0 + 21.5 -17.5 0 + 21.0 -16.0 0 + 21.0 -16.5 0 + 21.5 -16.5288 0 + 21.274 -16.9793 0 + 21.0 -17.0 0 + 21.274 -17.2045 0 + 21.0 -17.5 0 + 20.5 -16.0 0 + 20.5 -16.5 0 + 20.5 -17.0 0 + 20.5 -17.5 0 + 20.0 -16.0 0 + 20.0 -16.5 0 + 20.0 -17.0 0 + 20.0 -17.5 0 + 20.25 -17.75 0 + 21.75 -16.5288 0 + 21.274 -16.754 0 + 21.5 -16.754 0 + 21.5 -17.2045 0 + 21.75 -17.75 0 + 20.0 -17.75 0 +endnode +#Tile trimesh node +node trimesh Rectangle56 + parent tin01_f09_02 + position 3.57 -4.89 3.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 2 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 0.0 0.0 0.0 + diffuse 0.0 0.0 0.0 + specular 0.0 0.0 0.0 + shininess 1 + center -357.0 0.0 0.0 + bitmap tin01_black + verts 8 + 0.18 0.11 0.0 + -0.17 0.11 0.0 + -0.17 -0.11 0.0 + 0.18 -0.11 0.0 + -6.97 0.11 0.0 + -7.32 0.11 0.0 + -7.32 -0.11 0.0 + -6.97 -0.11 0.0 + faces 4 + 0 1 2 1 0 0 0 1 + 0 2 3 1 0 0 0 1 + 4 5 6 1 0 0 0 1 + 4 6 7 1 0 0 0 1 +endnode +#Tile trimesh node +node trimesh roof01 + parent tin01_f09_02 + position -4.5 0.0 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 325.0 0.0 183.0 + bitmap tin01_plank + verts 11 + 7.0 5.0 1.83 + 7.0 2.5 1.83 + 2.0 5.0 1.83 + -0.5 2.5 1.83 + 2.0 2.5 1.83 + -0.5 -2.5 1.83 + 2.0 -5.0 1.83 + 2.0 -2.5 1.83 + 7.0 -5.0 1.83 + 7.0 -2.5 1.83 + -0.5 5.0 1.83 + faces 10 + 5 3 7 0 5 3 7 1 + 7 3 4 0 7 3 4 1 + 7 4 9 0 7 4 9 1 + 6 7 8 0 6 7 8 1 + 8 7 9 0 8 7 9 1 + 9 4 1 0 9 4 1 1 + 1 4 0 0 1 4 0 1 + 0 4 2 0 0 4 2 1 + 4 3 2 0 4 3 2 1 + 2 3 10 0 2 3 10 1 + tverts 11 + 1.74925 1.999 0 + 1.74925 1.4995 0 + 0.75025 1.999 0 + 0.250749 1.4995 0 + 0.75025 1.4995 0 + 0.250749 0.5005 0 + 0.75025 0.000999212 0 + 0.75025 0.5005 0 + 1.74925 0.000998974 0 + 1.74925 0.500499 0 + 0.25075 1.999 0 +endnode +#Tile trimesh node +node trimesh roofrim01 + parent tin01_f09_02 + position -4.5 0.0 5.17 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.109804 0.34902 0.694118 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center 387.5 0.0 91.5 + bitmap tin01_floor + verts 12 + -0.5 -2.5 1.83 + -0.5 -3.75 0.0 + 0.75 -5.0 0.0 + 0.75 -3.75 0.0 + 2.0 -5.0 1.83 + 2.0 -2.5 1.83 + 7.0 -5.0 1.83 + 8.25 -5.0 0.0 + 8.25 5.0 0.0 + 7.0 5.0 1.83 + 7.0 2.5 1.83 + 7.0 -2.5 1.83 + faces 8 + 3 1 5 0 13 12 14 1 + 5 1 0 0 15 1 0 1 + 2 3 4 0 2 16 17 1 + 4 3 5 0 4 3 5 1 + 8 7 9 0 8 18 19 1 + 11 7 6 0 21 20 6 1 + 9 7 10 0 9 22 23 1 + 10 7 11 0 10 7 11 1 + tverts 24 + 1.0 0.125981 0 + 0.5 0.125981 0 + 0.5 1.99911 0 + 0.5 1.74936 0 + 1.0 1.99911 0 + 1.0 1.49961 0 + 1.0 0.00110595 0 + 0.5 0.00110603 0 + 0.5 1.99911 0 + 1.0 1.99911 0 + 1.0 1.49961 0 + 1.0 0.500606 0 + 0.5 0.125981 0 + 0.5 0.375731 0 + 1.0 0.625481 0 + 1.0 0.625481 0 + 0.5 1.74936 0 + 1.0 1.99911 0 + 0.5 0.00110603 0 + 1.0 1.99911 0 + 0.5 0.00110603 0 + 1.0 0.500606 0 + 0.5 0.00110603 0 + 1.0 1.49961 0 +endnode +#Tile trimesh node +node trimesh strut01 + parent tin01_f09_02 + position 1.0 1.0 3.08 + orientation 0.0 0.0 0.0 0.0 + wirecolor 0.87451 0.556863 0.337255 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -138.0 -62.0 215.0 + bitmap tin01_furnish2 + verts 16 + 2.86 3.7 0.21 + 2.86 3.9 0.21 + 3.14 3.7 0.49 + 3.14 3.9 0.49 + -0.06 3.7 3.81 + -0.06 3.9 3.81 + 0.22 3.7 4.09 + 0.22 3.9 4.09 + -5.9 -4.86 0.21 + -5.7 -4.86 0.21 + -5.9 -5.14 0.49 + -5.7 -5.14 0.49 + -5.9 -1.94 3.81 + -5.7 -1.94 3.81 + -5.9 -2.22 4.09 + -5.7 -2.22 4.09 + faces 24 + 2 0 3 2 9 8 10 2 + 1 3 0 2 12 11 13 2 + 5 4 7 4 15 14 16 1 + 6 7 4 4 18 17 19 1 + 1 0 5 8 1 0 5 5 + 4 5 0 8 4 5 0 5 + 3 1 7 16 3 1 7 4 + 5 7 1 16 5 7 1 4 + 2 3 6 32 2 20 6 6 + 7 6 3 32 21 6 22 6 + 0 2 4 64 0 2 4 3 + 6 4 2 64 6 4 2 3 + 10 8 11 2 32 31 33 2 + 9 11 8 2 35 34 36 2 + 13 12 15 4 38 37 39 1 + 14 15 12 4 41 40 42 1 + 9 8 13 8 24 23 28 5 + 12 13 8 8 27 28 23 5 + 11 9 15 16 26 24 30 4 + 13 15 9 16 28 30 24 4 + 10 11 14 32 25 43 29 6 + 15 14 11 32 44 29 45 6 + 8 10 12 64 23 25 27 3 + 14 12 10 64 29 27 25 3 + tverts 46 + 0.249099 -0.975342 0 + 0.324159 -0.975342 0 + 0.0698632 -0.975342 0 + 0.503394 -0.975342 0 + 0.249099 0.0236625 0 + 0.324159 0.0236625 0 + 0.0698632 0.0236625 0 + 0.503394 0.0236625 0 + 0.320501 -0.509138 0 + 0.252757 -0.509138 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.320501 -0.442538 0 + 0.320501 -0.509138 0 + 0.320501 -0.509138 0 + 0.320501 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.442538 0 + 0.252757 -0.509138 0 + 0.320501 -0.509138 0 + -0.00519651 -0.975342 0 + -0.00519651 0.0236625 0 + -0.00519651 -0.975342 0 + 0.249099 -1.46084 0 + 0.324159 -1.46084 0 + 0.0698632 -1.46084 0 + 0.503394 -1.46084 0 + 0.249099 -0.461844 0 + 0.324159 -0.461844 0 + 0.0698632 -0.461844 0 + 0.503394 -0.461844 0 + 0.320501 -0.994642 0 + 0.252757 -0.994642 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.320501 -0.928042 0 + 0.320501 -0.994642 0 + 0.320501 -0.994642 0 + 0.320501 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.928042 0 + 0.252757 -0.994642 0 + 0.320501 -0.994642 0 + -0.00519651 -1.46084 0 + -0.00519651 -0.461844 0 + -0.00519651 -1.46084 0 +endnode +#Tile trimesh node +node trimesh topwall01 + parent tin01_f09_02 + position 4.37 0.21 0.0 + orientation 0.0 0.0 0.0 0.0 + wirecolor 1.0 1.0 1.0 + tilefade 1 + scale 1.0 + render 1 + Shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1.0 + transparencyhint 0 + selfillumcolor 0.0 0.0 0.0 + ambient 1.0 1.0 1.0 + diffuse 1.0 1.0 1.0 + specular 0.0 0.0 0.0 + shininess 1 + center -462.0 -21.0 408.5 + bitmap tin01_wall03 + verts 35 + -0.62 -2.71 3.0 + -0.62 -0.21 3.0 + 0.13 -0.21 3.0 + 0.13 -2.71 3.0 + -0.62 2.29 3.0 + 0.13 2.29 3.0 + -0.62 4.4 3.0 + 0.13 4.79 3.0 + -0.62 4.79 3.0 + -0.62 -5.21 3.0 + 0.13 -5.21 3.0 + -0.62 -2.71 5.17 + -0.62 -0.21 5.17 + 0.13 -0.21 5.17 + 0.13 -2.71 5.17 + -0.62 2.29 5.17 + 0.13 2.29 5.17 + -0.62 4.4 5.17 + 0.13 4.79 5.17 + -0.62 4.79 5.17 + -0.62 -5.21 5.17 + 0.13 -5.21 5.17 + -8.12 -3.96 3.0 + -8.12 -5.21 3.0 + -9.37 -3.96 3.0 + -8.12 -3.96 5.17 + -8.12 -5.21 5.17 + -9.37 -3.96 5.17 + -9.37 -5.21 5.17 + -8.12 -5.21 3.0 + -9.37 -3.96 3.0 + -9.37 -5.21 3.0 + -8.12 -5.21 5.17 + -9.37 -3.96 5.17 + -9.37 -5.21 5.17 + faces 37 + 13 12 14 2 7 4 1 1 + 11 14 12 2 0 1 4 1 + 16 15 13 2 9 8 7 1 + 12 13 15 2 4 7 8 1 + 17 15 16 2 12 10 11 1 + 16 18 19 2 11 13 14 1 + 19 17 16 2 14 12 11 1 + 14 11 21 0 3 2 5 1 + 21 11 20 0 5 2 6 1 + 3 2 14 0 34 33 35 1 + 13 14 2 0 37 36 38 1 + 1 0 12 0 40 39 41 1 + 11 12 0 0 43 42 44 1 + 2 5 13 0 15 45 46 1 + 16 13 5 0 47 18 48 1 + 4 1 15 0 50 49 51 1 + 12 15 1 0 21 52 20 1 + 6 4 17 0 54 53 55 1 + 15 17 4 0 26 56 25 1 + 5 7 16 0 23 57 58 1 + 18 16 7 0 59 24 60 1 + 8 6 19 0 29 61 62 1 + 17 19 6 0 28 30 27 1 + 10 3 21 0 64 63 65 1 + 14 21 3 0 17 66 16 1 + 0 9 11 0 19 67 68 1 + 20 11 9 0 32 22 31 1 + 26 25 28 4 74 73 75 1 + 27 28 25 4 77 76 78 1 + 23 22 26 8 80 79 81 5 + 25 26 22 8 83 82 84 5 + 22 24 25 64 69 85 86 3 + 27 25 24 64 72 71 70 3 + 31 29 34 16 92 91 93 4 + 32 34 29 16 89 94 87 4 + 30 31 33 32 96 95 97 6 + 34 33 31 32 90 98 88 6 + tverts 99 + 1.10087 0.859854 0 + 1.10087 0.988595 0 + 0.406047 0.858453 0 + 0.406047 0.997005 0 + 0.47587 0.859854 0 + 0.905547 0.997005 0 + 0.905547 0.858453 0 + 0.47587 0.988595 0 + -0.149131 0.859854 0 + -0.149131 0.988595 0 + 0.1875 0.856938 0 + 0.1875 0.993839 0 + 0.714498 0.856938 0 + 0.8125 0.993839 0 + 0.8125 0.856938 0 + 0.0 0.0 0 + -0.4995 0.0 0 + -0.4995 0.457 0 + 0.0 0.457 0 + 0.499501 0.0 0 + 0.0 0.0 0 + 0.0 0.457 0 + 0.499501 0.457 0 + 0.499501 0.0 0 + 0.499501 0.457 0 + -0.4995 0.0 0 + -0.4995 0.457 0 + -0.92108 0.0 0 + -0.92108 0.457 0 + -0.999 0.0 0 + -0.999 0.457 0 + 0.999001 0.0 0 + 0.999001 0.457 0 + 0.0 0.0 0 + -0.4995 0.0 0 + -0.4995 0.457 0 + -0.4995 0.457 0 + 0.0 0.457 0 + 0.0 0.0 0 + 0.499501 0.0 0 + 0.0 0.0 0 + 0.0 0.457 0 + 0.0 0.457 0 + 0.499501 0.457 0 + 0.499501 0.0 0 + 0.499501 0.0 0 + 0.0 0.457 0 + 0.499501 0.457 0 + 0.499501 0.0 0 + 0.0 0.0 0 + -0.4995 0.0 0 + -0.4995 0.457 0 + -0.4995 0.457 0 + -0.4995 0.0 0 + -0.92108 0.0 0 + -0.92108 0.457 0 + -0.92108 0.457 0 + 0.999001 0.0 0 + 0.499501 0.457 0 + 0.999001 0.457 0 + 0.999001 0.0 0 + -0.92108 0.0 0 + -0.999 0.457 0 + -0.4995 0.0 0 + -0.999 0.0 0 + -0.999 0.457 0 + -0.999 0.457 0 + 0.999001 0.0 0 + 0.499501 0.457 0 + 0.749251 0.0 0 + 0.999001 0.0 0 + 0.749251 0.457 0 + 0.999001 0.457 0 + 0.844834 0.857252 0 + 0.718058 0.857252 0 + 0.718058 0.984029 0 + 0.718058 0.984029 0 + 0.844834 0.984029 0 + 0.844834 0.857252 0 + 0.311714 0.0 0 + 0.061964 0.0 0 + 0.061964 0.457 0 + 0.061964 0.457 0 + 0.311714 0.457 0 + 0.311714 0.0 0 + 0.999001 0.0 0 + 0.749251 0.457 0 + 0.688285 0.0 0 + 0.000998914 0.0 0 + 0.688285 0.457 0 + 0.000998914 0.457 0 + 0.688285 0.0 0 + 0.938035 0.0 0 + 0.938035 0.457 0 + 0.938035 0.457 0 + 0.000998914 0.0 0 + 0.250749 0.0 0 + 0.250749 0.457 0 + 0.250749 0.457 0 +endnode +endmodelgeom tin01_f09_02 +donemodel tin01_f09_02 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/wsf10_p01_01.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/wsf10_p01_01.mdl new file mode 100644 index 0000000..0e7b39f --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/wsf10_p01_01.mdl @@ -0,0 +1,5185 @@ +# Rewritten by CleanModels 3 Version 3.5.2d Wed Jun 17 08:18:30 2020 +#MAXMODEL ASCII +filedependency Unknown +newmodel wsf10_p01_01 + classification TILE + setsupermodel wsf10_p01_01 NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom wsf10_p01_01 +node dummy wsf10_p01_01 + parent NULL +endnode +node trimesh node14 + parent wsf10_p01_01 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.564706 0.564706 0.564706 + tilefade 1 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + center 60.5 46.5 438 + bitmap wtf_2_leaves + verts 1248 + -0.46 2.65 8.85 + -1.98 0.78 9.77 + 0.52 0.38 8.08 + -3.07 3.1 9.88 + -4.83 1.16 9.57 + -7.58 1.54 8.93 + -6.46 -0.69 9.49 + -1.06 -1.46 8.92 + -5.93 3.4 8.75 + -3.83 -1.1 8.54 + -4.38 -0.1 8.08 + -2.65 0.43 9.1 + -4.7 -1.85 9.4 + -4.21 -0.66 8.08 + -5.46 0.63 9.4 + -2.49 -0.14 9.1 + -2.74 -1.44 8.5 + -3.93 1.39 8.55 + -5.88 -1 8.83 + -4.01 0.08 9.62 + -5.86 -0.68 8.62 + -2.72 -1.13 8.29 + -4.37 -0.37 9.67 + -3.08 -1.59 8.34 + -4.28 1.24 8.39 + -3.79 -0.46 9.61 + -3.69 1.16 8.33 + -5.64 -1.22 8.61 + -1.57 2.47 9.56 + -4.55 3.24 9.86 + -3.62 0.19 9.85 + -2.97 2.04 8.7 + -3.29 0.29 10.01 + -4.22 3.34 10.02 + -3.53 2.18 8.76 + -1.81 2.71 9.77 + -3.85 0.43 10.07 + -3.36 1.62 8.75 + -4.61 2.91 10.08 + -1.64 2.14 9.77 + -1.89 0.83 9.18 + -3.09 3.66 9.22 + -5.03 1.28 9.51 + -3.17 2.36 10.29 + -5.01 1.6 9.29 + -1.87 1.15 8.96 + -3.53 1.91 10.35 + -2.23 0.69 9.02 + -3.43 3.52 9.06 + -2.95 1.82 10.29 + -2.85 3.44 9 + -4.79 1.06 9.29 + 0.42 3.14 8.48 + -2.55 3.91 8.78 + -1.62 0.86 8.77 + -0.97 2.72 7.62 + -1.29 0.97 8.94 + -2.22 4.02 8.94 + -1.53 2.86 7.68 + 0.19 3.38 8.7 + -1.85 1.1 8.99 + -1.36 2.29 7.68 + -2.62 3.59 9 + 0.36 2.82 8.7 + 0.11 1.51 8.1 + -1.09 4.34 8.14 + -3.03 1.96 8.43 + -1.17 3.04 9.22 + -3.02 2.27 8.22 + 0.13 1.82 7.89 + -1.53 2.58 9.27 + -0.23 1.37 7.94 + -1.43 4.2 7.98 + -0.95 2.5 9.21 + -0.85 4.11 7.92 + -2.79 1.73 8.21 + -2.9 4.66 8.79 + -5.88 5.43 9.1 + -4.94 2.38 9.09 + -4.3 4.24 7.94 + -4.62 2.48 9.25 + -5.55 5.53 9.26 + -4.86 4.38 7.99 + -3.14 4.9 9.01 + -5.18 2.62 9.31 + -4.69 3.81 7.99 + -5.94 5.11 9.32 + -2.97 4.33 9.01 + -3.22 3.03 8.42 + -4.42 5.86 8.46 + -6.36 3.48 8.75 + -4.49 4.55 9.53 + -6.34 3.79 8.53 + -3.2 3.34 8.2 + -4.85 4.1 9.59 + -3.56 2.89 8.26 + -4.76 5.72 8.3 + -4.27 4.01 9.52 + -4.18 5.63 8.24 + -6.12 3.25 8.53 + 2.07 1.97 7.99 + -0.9 2.74 8.29 + 0.03 -0.31 8.29 + 0.68 1.55 7.13 + 0.36 -0.21 8.45 + -0.57 2.85 8.46 + 0.12 1.69 7.19 + 1.84 2.21 8.21 + -0.2 -0.07 8.51 + 0.29 1.12 7.19 + -0.97 2.42 8.51 + 2.01 1.65 8.21 + 1.76 0.34 7.61 + 0.56 3.17 7.66 + -1.38 0.79 7.94 + 0.48 1.87 8.73 + -1.37 1.1 7.73 + 1.78 0.65 7.4 + 0.12 1.41 8.78 + 1.42 0.2 7.45 + 0.22 3.03 7.5 + 0.7 1.32 8.72 + 0.8 2.94 7.44 + -1.14 0.56 7.72 + -4.56 2.07 8.72 + -7.53 2.84 9.02 + -6.6 -0.21 9.01 + -5.96 1.65 7.86 + -6.28 -0.11 9.17 + -7.21 2.95 9.18 + -6.52 1.79 7.92 + -4.8 2.31 8.93 + -6.84 0.03 9.23 + -6.35 1.22 7.91 + -7.6 2.52 9.24 + -4.63 1.74 8.93 + -4.88 0.44 8.34 + -6.08 3.27 8.38 + -8.02 0.89 8.67 + -6.15 1.96 9.45 + -8 1.2 8.45 + -4.86 0.75 8.12 + -6.51 1.51 9.51 + -5.22 0.3 8.18 + -6.42 3.13 8.22 + -5.93 1.42 9.45 + -5.84 3.04 8.16 + -7.78 0.66 8.45 + -3.49 4.79 9.94 + -1.53 3.2 10.48 + -1.34 5.82 8.95 + -3.83 2.11 10.83 + -1.97 0.38 10.12 + -2.47 -2.31 9.32 + -0.17 -1.24 9.65 + 0.58 4.18 9.4 + -4.32 -0.65 9.54 + 0.13 1.45 8.86 + -6.09 1.03 10.41 + -5.79 3.72 9.62 + -1.02 2.85 9.99 + -1.78 -0.14 10.17 + 1.25 0.79 9.81 + -0.74 1.52 8.98 + 1.18 1.1 10.01 + -1.85 0.17 10.37 + -0.87 0.96 9.01 + -1.23 2.59 10.23 + 1.04 0.53 10.04 + -0.31 1.12 8.95 + -1.43 -0.22 10.34 + -0.67 2.76 10.16 + 0.54 2.56 9.37 + -2.27 1.36 9.71 + 0.1 -0.6 9.51 + -0.83 1.2 10.58 + -0.24 -0.56 9.35 + 0.2 2.59 9.2 + -0.38 0.84 10.55 + 0.65 2.23 9.16 + -2.16 1.04 9.51 + -0.29 1.42 10.52 + -2.07 1.62 9.48 + 0.3 -0.34 9.28 + -3.17 3.64 11.04 + -3.93 0.65 11.22 + -0.9 1.58 10.86 + -2.89 2.31 10.03 + -0.97 1.89 11.06 + -4.01 0.96 11.42 + -3.03 1.75 10.06 + -3.38 3.39 11.27 + -1.11 1.33 11.09 + -2.46 1.92 9.99 + -3.58 0.57 11.38 + -2.82 3.56 11.21 + -1.61 3.35 10.42 + -4.42 2.16 10.76 + -2.05 0.19 10.56 + -2.98 1.99 11.63 + -2.39 0.23 10.4 + -1.95 3.39 10.25 + -2.53 1.63 11.59 + -1.5 3.02 10.21 + -4.31 1.83 10.56 + -2.45 2.21 11.57 + -4.23 2.41 10.53 + -1.85 0.45 10.33 + -3.97 5.72 10.23 + -4.73 2.73 10.4 + -1.69 3.66 10.04 + -3.69 4.39 9.21 + -1.77 3.97 10.24 + -4.8 3.04 10.6 + -3.82 3.83 9.25 + -4.18 5.46 10.46 + -1.9 3.4 10.27 + -3.26 3.99 9.18 + -4.37 2.64 10.57 + -3.62 5.63 10.39 + -2.41 5.43 9.6 + -5.22 4.23 9.95 + -2.85 2.27 9.75 + -3.78 4.07 10.82 + -3.18 2.31 9.58 + -2.75 5.46 9.43 + -3.33 3.71 10.78 + -2.3 5.1 9.4 + -5.11 3.91 9.74 + -3.24 4.29 10.75 + -5.02 4.49 9.71 + -2.65 2.53 9.52 + -5.47 2.38 10.49 + -6.22 -0.61 10.67 + -3.19 0.32 10.31 + -5.19 1.05 9.48 + -3.27 0.63 10.51 + -6.3 -0.3 10.87 + -5.32 0.49 9.51 + -5.68 2.13 10.73 + -3.4 0.07 10.54 + -4.76 0.65 9.45 + -5.87 -0.69 10.84 + -5.11 2.29 10.66 + -3.91 2.09 9.87 + -6.72 0.89 10.21 + -4.34 -1.07 10.02 + -5.28 0.73 11.09 + -4.68 -1.03 9.85 + -4.25 2.12 9.7 + -4.83 0.37 11.05 + -3.79 1.76 9.67 + -6.6 0.57 10.01 + -4.74 0.95 11.02 + -6.52 1.15 9.98 + -4.15 -0.81 9.79 + -2.29 6.99 9.32 + -3.04 4 9.5 + -0.01 4.93 9.13 + -2 5.66 8.31 + -0.09 5.24 9.33 + -3.12 4.31 9.7 + -2.14 5.1 8.34 + -2.5 6.74 9.55 + -0.22 4.68 9.37 + -1.58 5.27 8.27 + -2.69 3.92 9.66 + -1.93 6.91 9.48 + -0.73 6.7 8.69 + -3.54 5.51 9.04 + -1.16 3.54 8.84 + -2.1 5.34 9.91 + -1.5 3.58 8.67 + -1.06 6.74 8.53 + -1.64 4.98 9.87 + -0.61 6.37 8.49 + -3.42 5.18 8.84 + -1.56 5.56 9.84 + -3.34 5.76 8.81 + -0.96 3.8 8.61 + -3.64 0.56 9.67 + -4.4 -2.42 9.85 + -1.37 -1.5 9.48 + -3.36 -0.76 8.66 + -1.44 -1.18 9.68 + -4.48 -2.11 10.05 + -3.5 -1.33 8.69 + -3.85 0.31 9.9 + -1.58 -1.75 9.72 + -2.93 -1.16 8.62 + -4.05 -2.51 10.01 + -3.29 0.48 9.83 + -2.08 0.28 9.04 + -4.89 -0.92 9.39 + -2.52 -2.88 9.19 + -3.45 -1.08 10.26 + -2.86 -2.85 9.03 + -2.42 0.31 8.88 + -3 -1.45 10.22 + -1.97 -0.05 8.84 + -4.78 -1.25 9.19 + -2.92 -0.86 10.19 + -4.7 -0.66 9.16 + -2.32 -2.63 8.96 + -4.2 5.28 9.23 + -1.58 4.88 8.29 + -2.42 0.19 8.88 + -5.39 0.96 9.18 + -4.46 -2.09 9.18 + -3.82 -0.23 8.03 + -4.13 -1.99 9.34 + -5.07 1.06 9.35 + -3.54 -0.11 6.64 + -4.97 0.8 7.11 + -4.95 -1.03 6.15 + -3.51 1.75 7.15 + -4.97 2.72 6.77 + -4.95 4.54 6.15 + -6.36 3.62 6.56 + -6.36 -0.09 6.56 + -3.54 3.61 6.19 + -6.36 1.76 6.1 + -5.72 2.19 5.78 + -5.24 1.17 6.6 + -6.97 2.33 6.6 + -6.09 2.03 5.78 + -5.37 3.08 6.6 + -5.61 1 6.6 + -6.49 1 6.15 + -4.7 2.07 6.15 + -6.49 3.16 6.15 + -5.62 2.07 6.84 + -6.27 3.16 6.02 + -6.27 1 6.02 + -5.96 2.27 6.84 + -6.61 1.2 6.02 + -4.82 2.27 6.02 + -5.96 1.87 6.84 + -4.83 1.87 6.02 + -6.61 2.96 6.02 + -3.79 0.67 7.03 + -3.56 2.75 7.03 + -5.52 1.84 7.03 + -4.18 1.5 6.34 + -5.42 1.64 7.16 + -3.46 2.55 7.16 + -4.14 1.89 6.34 + -3.66 0.87 7.16 + -5.38 2.03 7.16 + -4.5 1.73 6.34 + -3.79 2.78 7.16 + -4.02 0.7 7.16 + -4.9 0.7 6.72 + -3.12 1.77 6.72 + -4.9 2.86 6.72 + -4.03 1.77 7.4 + -4.68 2.86 6.58 + -4.68 0.7 6.58 + -4.37 1.98 7.4 + -5.02 0.9 6.58 + -3.24 1.98 6.58 + -4.37 1.58 7.4 + -3.24 1.58 6.58 + -5.03 2.66 6.58 + -3.12 -0.67 6.46 + -2.89 1.41 6.46 + -4.85 0.49 6.46 + -3.5 0.16 5.78 + -4.75 0.3 6.6 + -2.79 1.21 6.6 + -3.47 0.55 5.78 + -2.99 -0.48 6.6 + -4.71 0.69 6.6 + -3.83 0.38 5.78 + -3.12 1.43 6.6 + -3.35 -0.64 6.6 + -4.23 -0.64 6.15 + -2.45 0.43 6.15 + -4.23 1.52 6.15 + -3.36 0.43 6.84 + -4.01 1.52 6.02 + -4.01 -0.64 6.02 + -3.7 0.63 6.84 + -4.35 -0.44 6.02 + -2.57 0.63 6.02 + -3.7 0.23 6.84 + -2.57 0.23 6.02 + -4.35 1.32 6.02 + -2.42 1.71 6.46 + -2.19 3.79 6.46 + -4.15 2.88 6.46 + -2.81 2.54 5.78 + -4.05 2.68 6.6 + -2.09 3.59 6.6 + -2.77 2.93 5.78 + -2.29 1.91 6.6 + -4.01 3.07 6.6 + -3.13 2.77 5.78 + -2.42 3.82 6.6 + -2.65 1.74 6.6 + -3.53 1.74 6.15 + -1.75 2.81 6.15 + -3.53 3.9 6.15 + -2.66 2.82 6.84 + -3.31 3.9 6.02 + -3.31 1.74 6.02 + -3 3.02 6.84 + -3.65 1.94 6.02 + -1.87 3.02 6.02 + -3 2.62 6.84 + -1.87 2.62 6.02 + -3.65 3.71 6.02 + -3.74 -1.92 6.23 + -3.5 0.16 6.23 + -5.46 -0.75 6.23 + -4.12 -1.09 5.55 + -5.37 -0.95 6.37 + -3.41 -0.04 6.37 + -4.08 -0.7 5.55 + -3.6 -1.72 6.37 + -5.33 -0.56 6.37 + -4.45 -0.86 5.55 + -3.73 0.19 6.37 + -3.97 -1.89 6.37 + -4.85 -1.89 5.92 + -3.06 -0.82 5.92 + -4.85 0.27 5.92 + -3.98 -0.81 6.61 + -4.63 0.27 5.79 + -4.63 -1.89 5.79 + -4.32 -0.61 6.61 + -4.97 -1.69 5.79 + -3.18 -0.61 5.79 + -4.32 -1.01 6.61 + -3.19 -1.01 5.79 + -4.97 0.08 5.79 + -4.31 2.57 6.23 + -4.07 4.64 6.23 + -6.03 3.73 6.23 + -4.69 3.4 5.55 + -5.94 3.53 6.37 + -3.98 4.45 6.37 + -4.65 3.79 5.55 + -4.17 2.76 6.37 + -5.9 3.93 6.37 + -5.02 3.62 5.55 + -4.3 4.67 6.37 + -4.54 2.6 6.37 + -5.42 2.6 5.92 + -3.63 3.67 5.92 + -5.42 4.76 5.92 + -4.55 3.67 6.61 + -5.2 4.76 5.79 + -5.2 2.6 5.79 + -4.89 3.87 6.61 + -5.54 2.8 5.79 + -3.75 3.87 5.79 + -4.89 3.47 6.61 + -3.76 3.47 5.79 + -5.54 4.56 5.79 + -2.42 2.2 7.2 + -3.33 0.78 7.67 + -1.5 0.79 6.71 + -4.28 2.23 7.71 + -5.24 0.78 7.33 + -7.07 0.79 6.71 + -6.15 -0.61 7.12 + -2.44 -0.61 7.12 + -6.13 2.2 6.75 + -4.29 -0.61 6.66 + -5.2 3.61 7.24 + -3.34 3.61 6.79 + -3.5 0.37 7.37 + -5.58 0.6 7.37 + -4.66 -1.36 7.37 + -4.33 -0.02 6.68 + -4.47 -1.26 7.51 + -5.38 0.7 7.51 + -4.72 0.02 6.68 + -3.69 0.5 7.51 + -4.86 -1.22 7.51 + -4.55 -0.34 6.68 + -5.6 0.37 7.51 + -3.53 0.14 7.51 + -3.53 -0.74 7.06 + -4.6 1.04 7.06 + -5.69 -0.74 7.06 + -4.6 0.13 7.75 + -5.69 -0.52 6.92 + -3.53 -0.52 6.92 + -4.8 -0.21 7.75 + -3.73 -0.86 6.92 + -4.8 0.92 6.92 + -4.4 -0.21 7.75 + -4.4 0.92 6.92 + -5.49 -0.87 6.92 + -3.2 1.95 7.93 + -5.28 2.19 7.93 + -4.36 0.23 7.93 + -4.03 1.57 7.25 + -4.17 0.32 8.07 + -5.08 2.28 8.07 + -4.42 1.61 7.25 + -3.39 2.09 8.07 + -4.56 0.36 8.07 + -4.26 1.24 7.25 + -5.31 1.96 8.07 + -3.23 1.72 8.07 + -3.23 0.84 7.62 + -4.3 2.63 7.62 + -5.39 0.84 7.62 + -4.3 1.71 8.31 + -5.39 1.06 7.49 + -3.23 1.06 7.49 + -4.5 1.37 8.31 + -3.43 0.72 7.49 + -4.5 2.51 7.49 + -4.1 1.37 8.31 + -4.1 2.5 7.49 + -5.19 0.72 7.49 + -1.86 2.62 7.37 + -3.93 2.86 7.37 + -3.02 0.9 7.37 + -2.69 2.24 6.68 + -2.82 0.99 7.51 + -3.74 2.95 7.51 + -3.08 2.28 6.68 + -2.05 2.76 7.51 + -3.22 1.03 7.51 + -2.91 1.91 6.68 + -3.96 2.63 7.51 + -1.89 2.39 7.51 + -1.89 1.51 7.06 + -2.96 3.3 7.06 + -4.05 1.51 7.06 + -2.96 2.38 7.75 + -4.05 1.73 6.92 + -1.89 1.73 6.92 + -3.16 2.04 7.75 + -2.09 1.39 6.92 + -3.16 3.18 6.92 + -2.76 2.04 7.75 + -2.76 3.17 6.92 + -3.85 1.39 6.92 + -4.24 3.32 7.37 + -6.32 3.56 7.37 + -5.4 1.6 7.37 + -5.07 2.94 6.68 + -5.21 1.69 7.51 + -6.12 3.65 7.51 + -5.46 2.98 6.68 + -4.44 3.46 7.51 + -5.6 1.73 7.51 + -5.3 2.61 6.68 + -6.35 3.33 7.51 + -4.27 3.09 7.51 + -4.27 2.21 7.06 + -5.34 4 7.06 + -6.43 2.21 7.06 + -5.34 3.08 7.75 + -6.43 2.43 6.92 + -4.27 2.43 6.92 + -5.54 2.74 7.75 + -4.47 2.09 6.92 + -5.54 3.88 6.92 + -5.14 2.74 7.75 + -5.14 3.87 6.92 + -6.23 2.09 6.92 + -0.82 1.56 6.91 + -2.9 1.79 6.91 + -1.98 -0.17 6.91 + -1.65 1.18 6.22 + -1.79 -0.07 7.05 + -2.7 1.89 7.05 + -2.04 1.21 6.22 + -1.01 1.69 7.05 + -2.18 -0.03 7.05 + -1.87 0.85 6.22 + -2.93 1.56 7.05 + -0.85 1.33 7.05 + -0.85 0.45 6.6 + -1.92 2.23 6.6 + -3.01 0.45 6.6 + -1.92 1.32 7.29 + -3.01 0.67 6.46 + -0.85 0.67 6.46 + -2.12 0.98 7.29 + -1.05 0.33 6.46 + -2.12 2.11 6.46 + -1.72 0.98 7.29 + -1.72 2.11 6.46 + -2.81 0.33 6.46 + -5.26 1.88 6.91 + -7.34 2.11 6.91 + -6.43 0.15 6.91 + -6.09 1.49 6.22 + -6.23 0.25 7.05 + -7.14 2.2 7.05 + -6.48 1.53 6.22 + -5.46 2.01 7.05 + -6.62 0.28 7.05 + -6.32 1.17 6.22 + -7.37 1.88 7.05 + -5.29 1.65 7.05 + -5.29 0.77 6.6 + -6.36 2.55 6.6 + -7.45 0.77 6.6 + -6.36 1.64 7.29 + -7.45 0.98 6.46 + -5.29 0.98 6.46 + -6.56 1.3 7.29 + -5.49 0.65 6.46 + -6.56 2.43 6.46 + -6.16 1.29 7.29 + -6.16 2.43 6.46 + -7.25 0.64 6.46 + -2.14 2.67 6.68 + -2.14 0.82 6.23 + -5.38 0.97 6.46 + -5.14 3.05 6.46 + -7.1 2.14 6.46 + -5.76 1.8 5.78 + -7.01 1.94 6.6 + -5.05 2.85 6.6 + -2.99 3.07 4.66 + -3.62 1.52 5.13 + -1.84 1.86 4.18 + -4.81 2.77 5.17 + -5.5 1.17 4.8 + -7.28 0.86 4.18 + -6.13 -0.35 4.58 + -2.5 0.32 4.58 + -6.62 2.4 4.22 + -4.31 -0.02 4.13 + -4.85 0.53 3.81 + -3.93 1.18 4.63 + -4.75 -0.72 4.63 + -4.62 0.2 3.81 + -5.77 0.71 4.63 + -3.7 0.86 4.63 + -3.54 0 4.18 + -4.91 1.55 4.18 + -5.65 -0.4 4.18 + -4.75 0.65 4.87 + -5.7 -0.18 4.05 + -3.58 0.21 4.05 + -4.88 0.28 4.87 + -3.72 -0.16 4.05 + -5.09 1.39 4.05 + -4.49 0.35 4.87 + -4.7 1.46 4.05 + -5.44 -0.48 4.05 + -3.71 2.69 5.05 + -5.78 2.54 5.05 + -4.53 0.79 5.05 + -4.45 2.16 4.37 + -4.36 0.92 5.19 + -5.61 2.67 5.19 + -4.84 2.13 4.37 + -3.92 2.78 5.19 + -4.75 0.89 5.19 + -4.61 1.8 4.37 + -5.77 2.31 5.19 + -3.69 2.46 5.19 + -3.54 1.6 4.74 + -4.91 3.15 4.74 + -5.65 1.21 4.74 + -4.74 2.25 5.43 + -5.69 1.42 4.61 + -3.58 1.81 4.61 + -4.88 1.89 5.43 + -3.71 1.44 4.61 + -5.08 2.99 4.61 + -4.49 1.96 5.43 + -4.69 3.06 4.61 + -5.43 1.12 4.61 + -2.52 3.59 4.49 + -4.59 3.44 4.49 + -3.34 1.69 4.49 + -3.26 3.06 3.81 + -3.17 1.82 4.63 + -4.41 3.57 4.63 + -3.65 3.03 3.81 + -2.73 3.68 4.63 + -3.56 1.79 4.63 + -3.42 2.7 3.81 + -4.58 3.21 4.63 + -2.5 3.36 4.63 + -2.34 2.5 4.18 + -3.71 4.05 4.18 + -4.46 2.11 4.18 + -3.55 3.15 4.87 + -4.5 2.32 4.05 + -2.38 2.71 4.05 + -3.69 2.79 4.87 + -2.52 2.34 4.05 + -3.89 3.89 4.05 + -3.29 2.86 4.87 + -3.5 3.96 4.05 + -4.24 2.02 4.05 + -4.97 3.84 4.49 + -7.05 3.69 4.49 + -5.8 1.94 4.49 + -5.72 3.32 3.81 + -5.63 2.07 4.63 + -6.87 3.82 4.63 + -6.11 3.28 3.81 + -5.19 3.94 4.63 + -6.02 2.04 4.63 + -5.88 2.96 3.81 + -7.03 3.46 4.63 + -4.96 3.61 4.63 + -4.8 2.75 4.18 + -6.17 4.3 4.18 + -6.91 2.36 4.18 + -6.01 3.41 4.87 + -6.96 2.57 4.05 + -4.84 2.96 4.05 + -6.14 3.04 4.87 + -4.98 2.6 4.05 + -6.35 4.15 4.05 + -5.75 3.11 4.87 + -5.96 4.22 4.05 + -6.7 2.27 4.05 + -1.19 3.21 4.26 + -3.26 3.06 4.26 + -2.01 1.32 4.26 + -1.93 2.69 3.58 + -1.84 1.44 4.4 + -3.08 3.19 4.4 + -2.32 2.65 3.58 + -1.4 3.31 4.4 + -2.23 1.41 4.4 + -2.09 2.33 3.58 + -3.25 2.83 4.4 + -1.17 2.98 4.4 + -1.01 2.12 3.95 + -2.38 3.67 3.95 + -3.13 1.73 3.95 + -2.22 2.78 4.64 + -3.17 1.94 3.82 + -1.05 2.33 3.82 + -2.36 2.41 4.64 + -1.19 1.97 3.82 + -2.56 3.52 3.82 + -1.96 2.48 4.64 + -2.17 3.59 3.82 + -2.91 1.65 3.82 + -5.47 1.84 4.26 + -7.54 1.69 4.26 + -6.29 -0.06 4.26 + -6.21 1.32 3.58 + -6.12 0.07 4.4 + -7.37 1.82 4.4 + -6.6 1.28 3.58 + -5.68 1.94 4.4 + -6.51 0.04 4.4 + -6.37 0.96 3.58 + -7.53 1.46 4.4 + -5.45 1.61 4.4 + -5.29 0.75 3.95 + -6.67 2.3 3.95 + -7.41 0.36 3.95 + -6.5 1.41 4.64 + -7.45 0.57 3.82 + -5.34 0.96 3.82 + -6.64 1.04 4.64 + -5.47 0.6 3.82 + -6.84 2.15 3.82 + -6.25 1.11 4.64 + -6.45 2.22 3.82 + -7.19 0.27 3.82 + -5.45 3.75 5.22 + -3.9 3.13 5.69 + -4.24 4.91 4.73 + -5.15 1.93 5.73 + -3.55 1.25 5.36 + -3.23 -0.54 4.73 + -2.03 0.62 5.14 + -2.7 4.25 5.14 + -4.78 0.12 4.77 + -2.36 2.43 4.69 + -6.32 0.78 5.26 + -6.66 2.6 4.81 + -3.47 3.03 5.39 + -3.32 0.96 5.39 + -1.57 2.21 5.39 + -2.94 2.29 4.71 + -1.69 2.38 5.53 + -3.44 1.13 5.53 + -2.91 1.9 4.71 + -3.56 2.82 5.53 + -1.66 1.99 5.53 + -2.58 2.13 4.71 + -3.09 0.97 5.53 + -3.23 3.04 5.53 + -2.37 3.2 5.08 + -3.92 1.83 5.08 + -1.98 1.09 5.08 + -3.03 2 5.77 + -2.19 1.05 4.95 + -2.59 3.16 4.95 + -2.66 1.86 5.77 + -2.22 3.03 4.95 + -3.77 1.66 4.95 + -2.73 2.25 5.77 + -3.84 2.05 4.95 + -1.9 1.31 4.95 + -5.07 3.04 5.95 + -4.92 0.96 5.95 + -3.17 2.21 5.95 + -4.54 2.29 5.27 + -3.3 2.39 6.09 + -5.05 1.14 6.09 + -4.51 1.9 5.27 + -5.16 2.82 6.09 + -3.26 2 6.09 + -4.18 2.13 5.27 + -4.69 0.98 6.09 + -4.84 3.05 6.09 + -3.98 3.21 5.64 + -5.53 1.84 5.64 + -3.59 1.1 5.64 + -4.63 2 6.33 + -3.8 1.05 5.51 + -4.19 3.17 5.51 + -4.26 1.87 6.33 + -3.82 3.03 5.51 + -5.37 1.66 5.51 + -4.33 2.26 6.33 + -5.44 2.05 5.51 + -3.5 1.31 5.51 + -5.97 4.23 5.39 + -5.82 2.15 5.39 + -4.07 3.4 5.39 + -5.44 3.49 4.71 + -4.2 3.58 5.53 + -5.95 2.33 5.53 + -5.41 3.1 4.71 + -6.06 4.01 5.53 + -4.16 3.19 5.53 + -5.08 3.32 4.71 + -5.59 2.17 5.53 + -5.74 4.24 5.53 + -4.88 4.4 5.08 + -6.43 3.03 5.08 + -4.49 2.29 5.08 + -5.53 3.19 5.77 + -4.7 2.25 4.95 + -5.09 4.36 4.95 + -5.16 3.06 5.77 + -4.72 4.22 4.95 + -6.27 2.85 4.95 + -5.23 3.45 5.77 + -6.34 3.24 4.95 + -4.4 2.5 4.95 + -6.22 1.77 5.39 + -6.07 -0.3 5.39 + -4.32 0.94 5.39 + -5.69 1.03 4.71 + -4.45 1.12 5.53 + -6.2 -0.13 5.53 + -5.66 0.64 4.71 + -6.31 1.55 5.53 + -4.42 0.73 5.53 + -5.33 0.87 4.71 + -5.84 -0.29 5.53 + -5.99 1.78 5.53 + -5.13 1.94 5.08 + -6.68 0.57 5.08 + -4.74 -0.17 5.08 + -5.78 0.74 5.77 + -4.95 -0.21 4.95 + -5.34 1.9 4.95 + -5.42 0.6 5.77 + -4.97 1.77 4.95 + -6.52 0.4 4.95 + -5.49 0.99 5.77 + -6.59 0.79 4.95 + -4.65 0.05 4.95 + -5.12 5.44 4.94 + -4.97 3.36 4.94 + -3.22 4.61 4.94 + -4.59 4.69 4.25 + -3.34 4.78 5.07 + -5.09 3.54 5.07 + -4.56 4.3 4.25 + -5.21 5.22 5.07 + -3.31 4.39 5.07 + -4.23 4.53 4.25 + -4.74 3.38 5.07 + -4.88 5.45 5.07 + -4.02 5.61 4.63 + -5.57 4.24 4.63 + -3.63 3.5 4.63 + -4.68 4.4 5.31 + -3.84 3.45 4.49 + -4.24 5.57 4.49 + -4.31 4.27 5.31 + -3.87 5.43 4.49 + -5.42 4.06 4.49 + -4.38 4.66 5.31 + -5.49 4.45 4.49 + -3.55 3.71 4.49 + -4.62 1.03 4.94 + -4.47 -1.04 4.94 + -2.72 0.21 4.94 + -4.09 0.29 4.25 + -2.85 0.38 5.07 + -4.6 -0.86 5.07 + -4.06 -0.1 4.25 + -4.71 0.82 5.07 + -2.82 -0.01 5.07 + -3.74 0.13 4.25 + -4.24 -1.03 5.07 + -4.39 1.05 5.07 + -3.53 1.21 4.63 + -5.08 -0.16 4.63 + -3.14 -0.91 4.63 + -4.18 0 5.31 + -3.35 -0.95 4.49 + -3.74 1.17 4.49 + -3.82 -0.14 5.31 + -3.37 1.03 4.49 + -4.92 -0.34 4.49 + -3.89 0.26 5.31 + -4.99 0.05 4.49 + -3.05 -0.69 4.49 + -5.96 3.95 4.71 + -4.15 4.28 4.26 + -3.71 1.09 4.49 + -5.79 0.94 4.49 + -4.54 -0.81 4.49 + -4.46 0.56 3.81 + -4.36 -0.68 4.63 + -5.61 1.07 4.63 + -5.29 4.03 6.4 + -3.08 2.81 6.89 + -3.37 5.45 5.42 + -5.13 1.33 7.22 + -3 -0.02 6.48 + -3 -2.72 5.63 + -0.95 -1.27 5.97 + -1.19 4.18 5.83 + -5.11 -1.43 5.88 + -1.14 1.44 5.24 + -2.09 0.75 4.88 + -2.73 2.27 6.12 + -0.13 0.67 5.89 + -1.57 1.02 4.81 + -2.41 -0.53 6.17 + -2.21 2.53 6.05 + -1 2.57 5.26 + -3.53 0.89 5.59 + -0.85 -0.6 5.34 + -2.08 0.97 6.45 + -1.19 -0.62 5.18 + -1.34 2.55 5.1 + -1.58 0.7 6.4 + -0.83 2.27 5.05 + -3.36 0.59 5.38 + -1.6 1.28 6.38 + -3.38 1.18 5.36 + -0.71 -0.31 5.12 + -4.81 2.92 6.96 + -5.01 -0.14 7.08 + -2.22 1.32 6.73 + -4.3 1.7 5.92 + -2.35 1.61 6.93 + -5.14 0.15 7.28 + -4.33 1.12 5.95 + -4.97 2.64 7.19 + -2.38 1.03 6.95 + -3.82 1.39 5.88 + -4.65 -0.16 7.24 + -4.45 2.9 7.12 + -3.24 2.93 6.33 + -5.77 1.25 6.66 + -3.09 -0.23 6.41 + -4.32 1.34 7.51 + -3.43 -0.26 6.25 + -3.58 2.91 6.16 + -3.82 1.06 7.47 + -3.07 2.64 6.12 + -5.6 0.96 6.45 + -3.84 1.65 7.45 + -5.62 1.54 6.43 + -2.95 0.06 6.18 + -5.97 4.83 6.19 + -6.17 1.77 6.31 + -3.37 3.23 5.96 + -5.46 3.6 5.16 + -3.5 3.51 6.17 + -6.3 2.05 6.52 + -5.49 3.02 5.18 + -6.13 4.54 6.42 + -3.53 2.94 6.19 + -4.97 3.29 5.12 + -5.81 1.74 6.47 + -5.61 4.81 6.36 + -4.4 4.84 5.56 + -6.93 3.16 5.89 + -4.25 1.67 5.64 + -5.48 3.24 6.75 + -4.59 1.65 5.48 + -4.74 4.82 5.4 + -4.98 2.97 6.7 + -4.23 4.54 5.35 + -6.76 2.86 5.68 + -5 3.55 6.68 + -6.78 3.45 5.67 + -4.11 1.96 5.42 + -6.83 1.29 6.4 + -7.03 -1.78 6.52 + -4.24 -0.32 6.17 + -6.32 0.06 5.37 + -4.37 -0.03 6.37 + -7.16 -1.49 6.72 + -6.35 -0.52 5.39 + -6.99 1 6.63 + -4.4 -0.6 6.39 + -5.84 -0.25 5.32 + -6.67 -1.8 6.68 + -6.47 1.26 6.56 + -5.26 1.3 5.77 + -7.79 -0.38 6.1 + -5.12 -1.87 5.85 + -6.34 -0.3 6.95 + -5.45 -1.89 5.69 + -5.6 1.27 5.6 + -5.84 -0.57 6.91 + -5.09 1 5.56 + -7.62 -0.68 5.89 + -5.86 0.01 6.89 + -7.64 -0.09 5.87 + -4.97 -1.58 5.62 + -5.19 6.68 5.71 + -5.39 3.62 5.83 + -2.6 5.08 5.48 + -4.68 5.46 4.68 + -2.72 5.37 5.68 + -5.52 3.91 6.03 + -4.71 4.88 4.7 + -5.35 6.39 5.94 + -2.75 4.79 5.7 + -4.19 5.15 4.63 + -5.03 3.6 5.99 + -4.83 6.66 5.87 + -3.62 6.69 5.08 + -6.15 5.01 5.41 + -3.47 3.52 5.16 + -4.7 5.1 6.26 + -3.81 3.5 5 + -3.96 6.67 4.91 + -4.2 4.82 6.22 + -3.45 6.4 4.87 + -5.98 4.72 5.2 + -4.22 5.41 6.2 + -6 5.3 5.18 + -3.33 3.81 4.93 + -4.06 0.14 5.79 + -4.26 -2.92 5.91 + -1.47 -1.46 5.56 + -3.55 -1.09 4.76 + -1.59 -1.17 5.76 + -4.39 -2.63 6.12 + -3.58 -1.66 4.78 + -4.22 -0.15 6.02 + -1.62 -1.75 5.78 + -3.06 -1.4 4.71 + -3.9 -2.94 6.07 + -3.7 0.12 5.95 + -2.49 0.15 5.16 + -5.02 -1.53 5.49 + -2.34 -3.02 5.24 + -3.57 -1.45 6.34 + -2.68 -3.04 5.08 + -2.83 0.13 5 + -3.07 -1.72 6.3 + -2.32 -0.14 4.95 + -4.85 -1.83 5.28 + -3.09 -1.13 6.28 + -4.87 -1.24 5.26 + -2.2 -2.73 5.02 + -6.68 0.6 7.49 + -5.38 2.77 7.97 + -8.19 2.59 6.86 + -3.89 0.7 7.93 + -2.63 2.87 7.18 + -0.07 2.93 5.96 + -1.44 4.96 6.66 + -6.86 4.73 7.26 + -1.34 0.81 6.23 + -4.22 4.82 6.3 + -2.53 -1.29 7.15 + -5.31 -1.42 6.8 + -5.2 3.37 7.5 + -2.16 3.15 7.17 + -3.62 5.97 7.24 + -4.13 3.95 6.34 + -3.88 5.82 7.47 + -2.42 3.01 7.4 + -3.55 3.92 6.28 + -4.89 3.19 7.67 + -3.3 5.79 7.41 + -3.82 4.44 6.29 + -2.11 3.5 7.35 + -5.15 3.71 7.68 + -5.28 4.98 6.99 + -3.6 2.43 6.89 + -2.13 5.12 6.64 + -3.55 3.81 7.86 + -2.14 4.79 6.45 + -5.29 4.66 6.8 + -3.28 4.31 7.81 + -5.02 5.17 6.76 + -3.34 2.61 6.65 + -3.86 4.29 7.88 + -3.92 2.59 6.72 + -2.45 5.28 6.47 + -5.44 1.05 8.43 + -2.4 0.84 8.1 + -3.86 3.65 8.17 + -4.37 1.63 7.27 + -4.12 3.51 8.41 + -2.66 0.69 8.33 + -3.79 1.6 7.21 + -5.13 0.87 8.6 + -3.54 3.48 8.34 + -4.06 2.12 7.22 + -2.35 1.18 8.28 + -5.4 1.4 8.61 + -5.52 2.67 7.92 + -3.84 0.11 7.82 + -2.37 2.8 7.58 + -3.79 1.49 8.79 + -2.38 2.47 7.39 + -5.53 2.34 7.73 + -3.52 2 8.74 + -5.26 2.85 7.69 + -3.58 0.3 7.59 + -4.1 1.98 8.81 + -4.16 0.28 7.65 + -2.69 2.96 7.4 + -7.45 -0.04 7.85 + -4.4 -0.26 7.52 + -5.86 2.56 7.59 + -6.37 0.54 6.7 + -6.12 2.41 7.83 + -4.66 -0.4 7.76 + -5.8 0.51 6.63 + -7.13 -0.22 8.02 + -5.55 2.38 7.77 + -6.07 1.03 6.65 + -4.35 0.09 7.71 + -7.4 0.3 8.03 + -7.53 1.57 7.35 + -5.85 -0.98 7.24 + -4.38 1.71 7 + -5.8 0.4 8.21 + -4.38 1.38 6.81 + -7.53 1.25 7.16 + -5.53 0.9 8.17 + -7.26 1.76 7.11 + -5.58 -0.79 7.01 + -6.11 0.88 8.23 + -6.17 -0.82 7.07 + -4.7 1.87 6.83 + -3.92 -0.92 7.49 + -0.88 -1.14 7.16 + -2.34 1.68 7.24 + -2.85 -0.34 6.34 + -2.6 1.54 7.47 + -1.14 -1.28 7.4 + -2.27 -0.37 6.28 + -3.61 -1.1 7.66 + -2.03 1.5 7.41 + -2.54 0.15 6.29 + -0.83 -0.79 7.35 + -3.88 -0.58 7.67 + -4 0.69 6.99 + -2.32 -1.86 6.88 + -0.85 0.83 6.64 + -2.27 -0.48 7.85 + -0.86 0.5 6.45 + -4.01 0.37 6.8 + -2 0.03 7.81 + -3.74 0.88 6.75 + -2.06 -1.67 6.65 + -2.58 0 7.87 + -2.64 -1.69 6.71 + -1.17 0.99 6.47 + -9.1 1.43 7.31 + -6.06 1.22 6.98 + -7.52 4.03 7.05 + -8.03 2.02 6.15 + -7.78 3.89 7.28 + -6.32 1.07 7.21 + -7.46 1.98 6.09 + -8.79 1.26 7.48 + -7.21 3.86 7.22 + -7.72 2.51 6.1 + -6.01 1.57 7.16 + -9.06 1.78 7.49 + -9.19 3.05 6.8 + -7.5 0.5 6.7 + -6.03 3.18 6.45 + -7.45 1.87 7.67 + -6.04 2.86 6.26 + -9.19 2.72 6.61 + -7.18 2.38 7.62 + -8.92 3.23 6.57 + -7.24 0.68 6.46 + -7.77 2.36 7.69 + -7.82 0.66 6.53 + -6.35 3.35 6.28 + -2.6 1.24 6.6 + 0.44 1.03 6.27 + -1.02 3.84 6.34 + -1.53 1.82 5.45 + -1.28 3.7 6.58 + 0.18 0.88 6.51 + -0.96 1.79 5.38 + -2.29 1.06 6.77 + -0.71 3.67 6.52 + -1.22 2.31 5.4 + 0.49 1.37 6.46 + -2.56 1.59 6.78 + -2.69 2.86 6.1 + -1 0.31 5.99 + 0.47 2.99 5.75 + -0.95 1.68 6.96 + 0.46 2.66 5.56 + -2.69 2.53 5.91 + -0.68 2.19 6.92 + -2.42 3.04 5.86 + -0.74 0.49 5.76 + -1.27 2.17 6.98 + -1.32 0.47 5.82 + 0.15 3.15 5.58 + -7.15 -0.13 6.79 + -7.34 2.57 6.06 + -2.57 2.56 5.89 + -2.77 -0.5 6.01 + 0.02 0.96 5.66 + -2.06 1.33 4.86 + -0.1 1.24 5.86 + -2.9 -0.22 6.22 + faces 488 + 0 1 2 1 0 1 2 1 + 3 1 0 1 2 1 0 1 + 4 1 3 1 0 1 2 1 + 5 6 4 1 2 1 0 1 + 1 7 2 1 0 1 2 1 + 8 4 3 1 0 1 2 1 + 4 9 1 1 0 1 2 1 + 1 9 7 1 0 1 2 1 + 8 5 4 1 2 1 0 1 + 10 11 12 1 0 2 3 1 + 13 14 15 1 2 0 1 1 + 16 17 18 1 1 2 0 1 + 19 20 21 1 0 3 2 1 + 22 23 24 1 0 3 2 1 + 25 26 27 1 2 1 0 1 + 28 29 30 1 2 0 1 1 + 31 32 33 1 0 2 3 1 + 34 35 36 1 0 2 3 1 + 37 38 39 1 2 0 1 1 + 40 41 42 1 1 2 0 1 + 43 44 45 1 0 3 2 1 + 46 47 48 1 0 3 2 1 + 49 50 51 1 2 1 0 1 + 52 53 54 1 2 0 1 1 + 55 56 57 1 0 2 3 1 + 58 59 60 1 0 2 3 1 + 61 62 63 1 2 0 1 1 + 64 65 66 1 1 2 0 1 + 67 68 69 1 0 3 2 1 + 70 71 72 1 0 3 2 1 + 73 74 75 1 2 1 0 1 + 76 77 78 1 2 0 1 1 + 79 80 81 1 0 2 3 1 + 82 83 84 1 0 2 3 1 + 85 86 87 1 2 0 1 1 + 88 89 90 1 1 2 0 1 + 91 92 93 1 0 3 2 1 + 94 95 96 1 0 3 2 1 + 97 98 99 1 2 1 0 1 + 100 101 102 1 2 0 1 1 + 103 104 105 1 0 2 3 1 + 106 107 108 1 0 2 3 1 + 109 110 111 1 2 0 1 1 + 112 113 114 1 1 2 0 1 + 115 116 117 1 0 3 2 1 + 118 119 120 1 0 3 2 1 + 121 122 123 1 2 1 0 1 + 124 125 126 1 2 0 1 1 + 127 128 129 1 0 2 3 1 + 130 131 132 1 0 2 3 1 + 133 134 135 1 2 0 1 1 + 136 137 138 1 1 2 0 1 + 139 140 141 1 0 3 2 1 + 142 143 144 1 0 3 2 1 + 145 146 147 1 2 1 0 1 + 148 149 150 1 0 1 2 1 + 151 149 148 1 2 1 0 1 + 152 149 151 1 0 1 2 1 + 153 154 152 1 2 1 0 1 + 149 155 150 1 0 1 2 1 + 156 152 151 1 0 1 2 1 + 152 157 149 1 0 1 2 1 + 149 157 155 1 0 1 2 1 + 156 153 152 1 2 1 0 1 + 158 151 159 1 0 1 2 1 + 159 151 148 1 2 1 0 1 + 158 156 151 1 0 1 2 1 + 152 154 157 1 2 1 0 1 + 160 161 162 1 2 0 1 1 + 163 164 165 1 0 2 3 1 + 166 167 168 1 0 2 3 1 + 169 170 171 1 2 0 1 1 + 172 173 174 1 1 2 0 1 + 175 176 177 1 0 3 2 1 + 178 179 180 1 0 3 2 1 + 181 182 183 1 2 1 0 1 + 184 185 186 1 2 0 1 1 + 187 188 189 1 0 2 3 1 + 190 191 192 1 0 2 3 1 + 193 194 195 1 2 0 1 1 + 196 197 198 1 1 2 0 1 + 199 200 201 1 0 3 2 1 + 202 203 204 1 0 3 2 1 + 205 206 207 1 2 1 0 1 + 208 209 210 1 2 0 1 1 + 211 212 213 1 0 2 3 1 + 214 215 216 1 0 2 3 1 + 217 218 219 1 2 0 1 1 + 220 221 222 1 1 2 0 1 + 223 224 225 1 0 3 2 1 + 226 227 228 1 0 3 2 1 + 229 230 231 1 2 1 0 1 + 232 233 234 1 2 0 1 1 + 235 236 237 1 0 2 3 1 + 238 239 240 1 0 2 3 1 + 241 242 243 1 2 0 1 1 + 244 245 246 1 1 2 0 1 + 247 248 249 1 0 3 2 1 + 250 251 252 1 0 3 2 1 + 253 254 255 1 2 1 0 1 + 256 257 258 1 2 0 1 1 + 259 260 261 1 0 2 3 1 + 262 263 264 1 0 2 3 1 + 265 266 267 1 2 0 1 1 + 268 269 270 1 1 2 0 1 + 271 272 273 1 0 3 2 1 + 274 275 276 1 0 3 2 1 + 277 278 279 1 2 1 0 1 + 280 281 282 1 2 0 1 1 + 283 284 285 1 0 2 3 1 + 286 287 288 1 0 2 3 1 + 289 290 291 1 2 0 1 1 + 292 293 294 1 1 2 0 1 + 295 296 297 1 0 3 2 1 + 298 299 300 1 0 3 2 1 + 301 302 303 1 2 1 0 1 + 304 3 305 1 0 1 2 1 + 305 3 0 1 2 1 0 1 + 304 8 3 1 0 1 2 1 + 4 6 9 1 2 1 0 1 + 306 307 308 1 2 0 1 1 + 309 310 311 1 0 2 3 1 + 312 313 314 1 0 1 2 1 + 315 313 312 1 2 1 0 1 + 316 313 315 1 0 1 2 1 + 317 318 316 1 2 1 0 1 + 313 319 314 1 0 1 2 1 + 320 316 315 1 0 1 2 1 + 316 321 313 1 0 1 2 1 + 313 321 319 1 0 1 2 1 + 320 317 316 1 2 1 0 1 + 322 323 324 1 0 2 3 1 + 325 326 327 1 2 0 1 1 + 328 329 330 1 1 2 0 1 + 331 332 333 1 0 3 2 1 + 334 335 336 1 0 3 2 1 + 337 338 339 1 2 1 0 1 + 340 341 342 1 2 0 1 1 + 343 344 345 1 0 2 3 1 + 346 347 348 1 0 2 3 1 + 349 350 351 1 2 0 1 1 + 352 353 354 1 1 2 0 1 + 355 356 357 1 0 3 2 1 + 358 359 360 1 0 3 2 1 + 361 362 363 1 2 1 0 1 + 364 365 366 1 2 0 1 1 + 367 368 369 1 0 2 3 1 + 370 371 372 1 0 2 3 1 + 373 374 375 1 2 0 1 1 + 376 377 378 1 1 2 0 1 + 379 380 381 1 0 3 2 1 + 382 383 384 1 0 3 2 1 + 385 386 387 1 2 1 0 1 + 388 389 390 1 2 0 1 1 + 391 392 393 1 0 2 3 1 + 394 395 396 1 0 2 3 1 + 397 398 399 1 2 0 1 1 + 400 401 402 1 1 2 0 1 + 403 404 405 1 0 3 2 1 + 406 407 408 1 0 3 2 1 + 409 410 411 1 2 1 0 1 + 412 413 414 1 2 0 1 1 + 415 416 417 1 0 2 3 1 + 418 419 420 1 0 2 3 1 + 421 422 423 1 2 0 1 1 + 424 425 426 1 1 2 0 1 + 427 428 429 1 0 3 2 1 + 430 431 432 1 0 3 2 1 + 433 434 435 1 2 1 0 1 + 436 437 438 1 2 0 1 1 + 439 440 441 1 0 2 3 1 + 442 443 444 1 0 2 3 1 + 445 446 447 1 2 0 1 1 + 448 449 450 1 1 2 0 1 + 451 452 453 1 0 3 2 1 + 454 455 456 1 0 3 2 1 + 457 458 459 1 2 1 0 1 + 460 461 462 1 0 1 2 1 + 463 461 460 1 2 1 0 1 + 464 461 463 1 0 1 2 1 + 465 466 464 1 2 1 0 1 + 461 467 462 1 0 1 2 1 + 468 464 463 1 0 1 2 1 + 464 469 461 1 0 1 2 1 + 461 469 467 1 0 1 2 1 + 468 465 464 1 2 1 0 1 + 470 463 471 1 0 1 2 1 + 471 463 460 1 2 1 0 1 + 470 468 463 1 0 1 2 1 + 464 466 469 1 2 1 0 1 + 472 473 474 1 2 0 1 1 + 475 476 477 1 0 2 3 1 + 478 479 480 1 0 2 3 1 + 481 482 483 1 2 0 1 1 + 484 485 486 1 1 2 0 1 + 487 488 489 1 0 3 2 1 + 490 491 492 1 0 3 2 1 + 493 494 495 1 2 1 0 1 + 496 497 498 1 2 0 1 1 + 499 500 501 1 0 2 3 1 + 502 503 504 1 0 2 3 1 + 505 506 507 1 2 0 1 1 + 508 509 510 1 1 2 0 1 + 511 512 513 1 0 3 2 1 + 514 515 516 1 0 3 2 1 + 517 518 519 1 2 1 0 1 + 520 521 522 1 2 0 1 1 + 523 524 525 1 0 2 3 1 + 526 527 528 1 0 2 3 1 + 529 530 531 1 2 0 1 1 + 532 533 534 1 1 2 0 1 + 535 536 537 1 0 3 2 1 + 538 539 540 1 0 3 2 1 + 541 542 543 1 2 1 0 1 + 544 545 546 1 2 0 1 1 + 547 548 549 1 0 2 3 1 + 550 551 552 1 0 2 3 1 + 553 554 555 1 2 0 1 1 + 556 557 558 1 1 2 0 1 + 559 560 561 1 0 3 2 1 + 562 563 564 1 0 3 2 1 + 565 566 567 1 2 1 0 1 + 568 569 570 1 2 0 1 1 + 571 572 573 1 0 2 3 1 + 574 575 576 1 0 2 3 1 + 577 578 579 1 2 0 1 1 + 580 581 582 1 1 2 0 1 + 583 584 585 1 0 3 2 1 + 586 587 588 1 0 3 2 1 + 589 590 591 1 2 1 0 1 + 592 593 594 1 2 0 1 1 + 595 596 597 1 0 2 3 1 + 598 599 600 1 0 2 3 1 + 601 602 603 1 2 0 1 1 + 604 605 606 1 1 2 0 1 + 607 608 609 1 0 3 2 1 + 610 611 612 1 0 3 2 1 + 613 614 615 1 2 1 0 1 + 616 315 617 1 0 1 2 1 + 617 315 312 1 2 1 0 1 + 616 320 315 1 0 1 2 1 + 316 318 321 1 2 1 0 1 + 618 619 620 1 2 0 1 1 + 621 622 623 1 0 2 3 1 + 624 625 626 1 0 1 2 1 + 627 625 624 1 2 1 0 1 + 628 625 627 1 0 1 2 1 + 629 630 628 1 2 1 0 1 + 625 631 626 1 0 1 2 1 + 632 628 627 1 0 1 2 1 + 628 633 625 1 0 1 2 1 + 625 633 631 1 0 1 2 1 + 632 629 628 1 2 1 0 1 + 634 635 636 1 0 2 3 1 + 637 638 639 1 2 0 1 1 + 640 641 642 1 1 2 0 1 + 643 644 645 1 0 3 2 1 + 646 647 648 1 0 3 2 1 + 649 650 651 1 2 1 0 1 + 652 653 654 1 2 0 1 1 + 655 656 657 1 0 2 3 1 + 658 659 660 1 0 2 3 1 + 661 662 663 1 2 0 1 1 + 664 665 666 1 1 2 0 1 + 667 668 669 1 0 3 2 1 + 670 671 672 1 0 3 2 1 + 673 674 675 1 2 1 0 1 + 676 677 678 1 2 0 1 1 + 679 680 681 1 0 2 3 1 + 682 683 684 1 0 2 3 1 + 685 686 687 1 2 0 1 1 + 688 689 690 1 1 2 0 1 + 691 692 693 1 0 3 2 1 + 694 695 696 1 0 3 2 1 + 697 698 699 1 2 1 0 1 + 700 701 702 1 2 0 1 1 + 703 704 705 1 0 2 3 1 + 706 707 708 1 0 2 3 1 + 709 710 711 1 2 0 1 1 + 712 713 714 1 1 2 0 1 + 715 716 717 1 0 3 2 1 + 718 719 720 1 0 3 2 1 + 721 722 723 1 2 1 0 1 + 724 725 726 1 2 0 1 1 + 727 728 729 1 0 2 3 1 + 730 731 732 1 0 2 3 1 + 733 734 735 1 2 0 1 1 + 736 737 738 1 1 2 0 1 + 739 740 741 1 0 3 2 1 + 742 743 744 1 0 3 2 1 + 745 746 747 1 2 1 0 1 + 748 749 750 1 2 0 1 1 + 751 752 753 1 0 2 3 1 + 754 755 756 1 0 2 3 1 + 757 758 759 1 2 0 1 1 + 760 761 762 1 1 2 0 1 + 763 764 765 1 0 3 2 1 + 766 767 768 1 0 3 2 1 + 769 770 771 1 2 1 0 1 + 772 773 774 1 0 1 2 1 + 775 773 772 1 2 1 0 1 + 776 773 775 1 0 1 2 1 + 777 778 776 1 2 1 0 1 + 773 779 774 1 0 1 2 1 + 780 776 775 1 0 1 2 1 + 776 781 773 1 0 1 2 1 + 773 781 779 1 0 1 2 1 + 780 777 776 1 2 1 0 1 + 782 775 783 1 0 1 2 1 + 783 775 772 1 2 1 0 1 + 782 780 775 1 0 1 2 1 + 776 778 781 1 2 1 0 1 + 784 785 786 1 2 0 1 1 + 787 788 789 1 0 2 3 1 + 790 791 792 1 0 2 3 1 + 793 794 795 1 2 0 1 1 + 796 797 798 1 1 2 0 1 + 799 800 801 1 0 3 2 1 + 802 803 804 1 0 3 2 1 + 805 806 807 1 2 1 0 1 + 808 809 810 1 2 0 1 1 + 811 812 813 1 0 2 3 1 + 814 815 816 1 0 2 3 1 + 817 818 819 1 2 0 1 1 + 820 821 822 1 1 2 0 1 + 823 824 825 1 0 3 2 1 + 826 827 828 1 0 3 2 1 + 829 830 831 1 2 1 0 1 + 832 833 834 1 2 0 1 1 + 835 836 837 1 0 2 3 1 + 838 839 840 1 0 2 3 1 + 841 842 843 1 2 0 1 1 + 844 845 846 1 1 2 0 1 + 847 848 849 1 0 3 2 1 + 850 851 852 1 0 3 2 1 + 853 854 855 1 2 1 0 1 + 856 857 858 1 2 0 1 1 + 859 860 861 1 0 2 3 1 + 862 863 864 1 0 2 3 1 + 865 866 867 1 2 0 1 1 + 868 869 870 1 1 2 0 1 + 871 872 873 1 0 3 2 1 + 874 875 876 1 0 3 2 1 + 877 878 879 1 2 1 0 1 + 880 881 882 1 2 0 1 1 + 883 884 885 1 0 2 3 1 + 886 887 888 1 0 2 3 1 + 889 890 891 1 2 0 1 1 + 892 893 894 1 1 2 0 1 + 895 896 897 1 0 3 2 1 + 898 899 900 1 0 3 2 1 + 901 902 903 1 2 1 0 1 + 904 905 906 1 2 0 1 1 + 907 908 909 1 0 2 3 1 + 910 911 912 1 0 2 3 1 + 913 914 915 1 2 0 1 1 + 916 917 918 1 1 2 0 1 + 919 920 921 1 0 3 2 1 + 922 923 924 1 0 3 2 1 + 925 926 927 1 2 1 0 1 + 928 627 929 1 0 1 2 1 + 929 627 624 1 2 1 0 1 + 928 632 627 1 0 1 2 1 + 628 630 633 1 2 1 0 1 + 930 931 932 1 2 0 1 1 + 933 934 935 1 0 2 3 1 + 936 937 938 1 0 1 2 1 + 939 937 936 1 2 1 0 1 + 940 937 939 1 0 1 2 1 + 941 942 940 1 2 1 0 1 + 937 943 938 1 0 1 2 1 + 944 940 939 1 0 1 2 1 + 940 945 937 1 0 1 2 1 + 937 945 943 1 0 1 2 1 + 944 941 940 1 2 1 0 1 + 946 947 948 1 0 2 3 1 + 949 950 951 1 2 0 1 1 + 952 953 954 1 1 2 0 1 + 955 956 957 1 0 3 2 1 + 958 959 960 1 0 3 2 1 + 961 962 963 1 2 1 0 1 + 964 965 966 1 2 0 1 1 + 967 968 969 1 0 2 3 1 + 970 971 972 1 0 2 3 1 + 973 974 975 1 2 0 1 1 + 976 977 978 1 1 2 0 1 + 979 980 981 1 0 3 2 1 + 982 983 984 1 0 3 2 1 + 985 986 987 1 2 1 0 1 + 988 989 990 1 2 0 1 1 + 991 992 993 1 0 2 3 1 + 994 995 996 1 0 2 3 1 + 997 998 999 1 2 0 1 1 + 1000 1001 1002 1 1 2 0 1 + 1003 1004 1005 1 0 3 2 1 + 1006 1007 1008 1 0 3 2 1 + 1009 1010 1011 1 2 1 0 1 + 1012 1013 1014 1 2 0 1 1 + 1015 1016 1017 1 0 2 3 1 + 1018 1019 1020 1 0 2 3 1 + 1021 1022 1023 1 2 0 1 1 + 1024 1025 1026 1 1 2 0 1 + 1027 1028 1029 1 0 3 2 1 + 1030 1031 1032 1 0 3 2 1 + 1033 1034 1035 1 2 1 0 1 + 1036 1037 1038 1 2 0 1 1 + 1039 1040 1041 1 0 2 3 1 + 1042 1043 1044 1 0 2 3 1 + 1045 1046 1047 1 2 0 1 1 + 1048 1049 1050 1 1 2 0 1 + 1051 1052 1053 1 0 3 2 1 + 1054 1055 1056 1 0 3 2 1 + 1057 1058 1059 1 2 1 0 1 + 1060 1061 1062 1 2 0 1 1 + 1063 1064 1065 1 0 2 3 1 + 1066 1067 1068 1 0 2 3 1 + 1069 1070 1071 1 2 0 1 1 + 1072 1073 1074 1 1 2 0 1 + 1075 1076 1077 1 0 3 2 1 + 1078 1079 1080 1 0 3 2 1 + 1081 1082 1083 1 2 1 0 1 + 1084 1085 1086 1 0 1 2 1 + 1087 1085 1084 1 2 1 0 1 + 1088 1085 1087 1 0 1 2 1 + 1089 1090 1088 1 2 1 0 1 + 1085 1091 1086 1 0 1 2 1 + 1092 1088 1087 1 0 1 2 1 + 1088 1093 1085 1 0 1 2 1 + 1085 1093 1091 1 0 1 2 1 + 1092 1089 1088 1 2 1 0 1 + 1094 1087 1095 1 0 1 2 1 + 1095 1087 1084 1 2 1 0 1 + 1094 1092 1087 1 0 1 2 1 + 1088 1090 1093 1 2 1 0 1 + 1096 1097 1098 1 2 0 1 1 + 1099 1100 1101 1 0 2 3 1 + 1102 1103 1104 1 0 2 3 1 + 1105 1106 1107 1 2 0 1 1 + 1108 1109 1110 1 1 2 0 1 + 1111 1112 1113 1 0 3 2 1 + 1114 1115 1116 1 0 3 2 1 + 1117 1118 1119 1 2 1 0 1 + 1120 1121 1122 1 2 0 1 1 + 1123 1124 1125 1 0 2 3 1 + 1126 1127 1128 1 0 2 3 1 + 1129 1130 1131 1 2 0 1 1 + 1132 1133 1134 1 1 2 0 1 + 1135 1136 1137 1 0 3 2 1 + 1138 1139 1140 1 0 3 2 1 + 1141 1142 1143 1 2 1 0 1 + 1144 1145 1146 1 2 0 1 1 + 1147 1148 1149 1 0 2 3 1 + 1150 1151 1152 1 0 2 3 1 + 1153 1154 1155 1 2 0 1 1 + 1156 1157 1158 1 1 2 0 1 + 1159 1160 1161 1 0 3 2 1 + 1162 1163 1164 1 0 3 2 1 + 1165 1166 1167 1 2 1 0 1 + 1168 1169 1170 1 2 0 1 1 + 1171 1172 1173 1 0 2 3 1 + 1174 1175 1176 1 0 2 3 1 + 1177 1178 1179 1 2 0 1 1 + 1180 1181 1182 1 1 2 0 1 + 1183 1184 1185 1 0 3 2 1 + 1186 1187 1188 1 0 3 2 1 + 1189 1190 1191 1 2 1 0 1 + 1192 1193 1194 1 2 0 1 1 + 1195 1196 1197 1 0 2 3 1 + 1198 1199 1200 1 0 2 3 1 + 1201 1202 1203 1 2 0 1 1 + 1204 1205 1206 1 1 2 0 1 + 1207 1208 1209 1 0 3 2 1 + 1210 1211 1212 1 0 3 2 1 + 1213 1214 1215 1 2 1 0 1 + 1216 1217 1218 1 2 0 1 1 + 1219 1220 1221 1 0 2 3 1 + 1222 1223 1224 1 0 2 3 1 + 1225 1226 1227 1 2 0 1 1 + 1228 1229 1230 1 1 2 0 1 + 1231 1232 1233 1 0 3 2 1 + 1234 1235 1236 1 0 3 2 1 + 1237 1238 1239 1 2 1 0 1 + 1240 939 1241 1 0 1 2 1 + 1241 939 936 1 2 1 0 1 + 1240 944 939 1 0 1 2 1 + 940 942 945 1 2 1 0 1 + 1242 1243 1244 1 2 0 1 1 + 1245 1246 1247 1 0 2 3 1 + tverts 4 + 0.0078125 0.0078125 0 + 0.505859 0.992188 0 + 0.998047 0.0078125 0 + 0.505859 0.994141 0 +endnode +node trimesh terrain + parent wsf10_p01_01 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.419608 0.419608 0.419608 + tilefade 0 + scale 1 + render 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + center 0 0 -19 + bitmap wtf_1_streama2 + shadow 0 + verts 121 + -5 -5 0 + -4 -5 0 + -3 -5 0 + -2 -5 -0.3 + -1 -5 -0.64 + 0 -5 -0.64 + 1 -5 -0.64 + 2 -5 -0.3 + 3 -5 0 + 4 -5 0 + 5 -5 0 + -5 -4 0 + -4 -4 0 + -3 -4 0 + -2 -4 -0.45 + -1 -4 -0.64 + 0 -4 -0.64 + 1 -4 -0.76 + 2 -4 -0.3 + 3 -4 0 + 4 -4 0 + 5 -4 0 + -5 -3 0 + -4 -3 0 + -3 -3 0 + -2 -3 -0.64 + -1 -3 -0.64 + 0 -3 -0.64 + 1 -3 -0.64 + 2.31 -2.72 -0.64 + 3.31 -2.68 0 + 4 -3 0 + 5 -3 0 + -5 -2 0 + -4 -2 0.07 + -3 -2 0.21 + -1.8 -2 -0.64 + -1 -2 -0.64 + 0 -2 -0.64 + 1 -2 -0.64 + 2 -2 -0.64 + 2.73 -2 -0.19 + 4 -2 0.03 + 5 -2 0 + -5 -1 0 + -4 -1 0.17 + -2.7 -1 0.1 + -1.9 -1 -0.64 + -1 -1 -0.64 + 0 -1 -0.64 + 1 -1 -0.64 + 1.73 -1 -0.64 + 2.63 -1 -0.12 + 4.21 -1 0.03 + 5 -1 0 + -5 0 0 + -4 0 0.16 + -2.76 0 0.07 + -2.35 0 -0.64 + -1 0 -0.64 + 0 0 -0.64 + 1 0 -0.64 + 1.78 -0.11 -0.46 + 3 0 0.01 + 4 0 -0.05 + 5 0 0 + -5 1 0 + -4 1 0.38 + -3.01 0.72 0.19 + -2.56 1 -0.64 + -1 1 -0.64 + 0 1 -0.64 + 1 1 -0.64 + 2.35 1 -0.42 + 3 1 -0.24 + 4 1 0.12 + 5 1 0 + -5 2 0 + -4 2 0 + -3.09 2 -0.19 + -2.19 2 -0.56 + -1 2 -0.64 + 0 2 -0.64 + 1 2 -0.64 + 2 2 -0.52 + 2.58 2 -0.31 + 4 2 0.12 + 5 2 0 + -5 3 0 + -4 3 0 + -2.62 3 -0.23 + -1.57 3 -0.64 + -1 3 -0.64 + 0 3 -0.64 + 1 3 -0.64 + 2 3.26 -0.37 + 3 3 -0.15 + 4 3 0.03 + 5 3 0 + -5 4 0 + -4 4 0 + -2.92 4 0 + -1.91 4 -0.42 + -1 4 -0.53 + 0 4 -0.59 + 1 4 -0.67 + 1.78 4 -0.37 + 2.81 4 -0.08 + 4 4 0.13 + 5 4 0 + -5 5 0 + -4 5 0 + -3 5 0 + -2 5 -0.3 + -1 5 -0.64 + 0 5 -0.64 + 1 5 -0.64 + 2 5 -0.3 + 3 5 0 + 4 5 0 + 5 5 0 + faces 200 + 11 0 12 1 11 0 12 65536 + 1 12 0 1 1 12 0 65536 + 12 1 13 1 12 1 13 65536 + 2 13 1 1 2 13 1 65536 + 13 2 14 1 13 2 14 65536 + 3 14 2 1 3 14 2 65536 + 14 3 15 1 14 3 15 65536 + 4 15 3 1 4 15 3 65536 + 15 4 16 1 15 4 16 65536 + 5 16 4 1 5 16 4 65536 + 16 5 17 1 16 5 17 65536 + 6 17 5 1 6 17 5 65536 + 17 6 18 1 17 6 18 65536 + 7 18 6 1 7 18 6 65536 + 18 7 19 1 18 7 19 65536 + 8 19 7 1 8 19 7 65536 + 19 8 20 1 19 8 20 65536 + 9 20 8 1 9 20 8 65536 + 20 9 21 1 20 9 21 65536 + 10 21 9 1 10 21 9 65536 + 22 11 23 1 22 11 23 65536 + 12 23 11 1 12 23 11 65536 + 23 12 24 1 23 12 24 65536 + 13 24 12 1 13 24 12 65536 + 24 13 25 1 24 13 25 65536 + 14 25 13 1 14 25 13 65536 + 25 14 26 1 25 14 26 65536 + 15 26 14 1 15 26 14 65536 + 26 15 27 1 26 15 27 65536 + 16 27 15 1 16 27 15 65536 + 27 16 28 1 27 16 28 65536 + 17 28 16 1 17 28 16 65536 + 28 17 29 1 28 17 29 65536 + 18 29 17 1 18 29 17 65536 + 29 18 30 1 29 18 30 65536 + 19 30 18 1 19 30 18 65536 + 30 19 31 1 30 19 31 65536 + 20 31 19 1 20 31 19 65536 + 31 20 32 1 31 20 32 65536 + 21 32 20 1 21 32 20 65536 + 33 22 34 1 33 22 34 65536 + 23 34 22 1 23 34 22 65536 + 34 23 35 1 34 23 35 65536 + 24 35 23 1 24 35 23 65536 + 35 24 36 1 35 24 36 65536 + 25 36 24 1 25 36 24 65536 + 36 25 37 1 36 25 37 65536 + 26 37 25 1 26 37 25 65536 + 37 26 38 1 37 26 38 65536 + 27 38 26 1 27 38 26 65536 + 38 27 39 1 38 27 39 65536 + 28 39 27 1 28 39 27 65536 + 39 28 40 1 39 28 40 65536 + 29 40 28 1 29 40 28 65536 + 40 29 41 1 40 29 41 65536 + 30 41 29 1 30 41 29 65536 + 41 30 42 1 41 30 42 65536 + 31 42 30 1 31 42 30 65536 + 42 31 43 1 42 31 43 65536 + 32 43 31 1 32 43 31 65536 + 44 33 45 1 44 33 45 65536 + 34 45 33 1 34 45 33 65536 + 45 34 46 1 45 34 46 65536 + 35 46 34 1 35 46 34 65536 + 46 35 47 1 46 35 47 65536 + 36 47 35 1 36 47 35 65536 + 47 36 48 1 47 36 48 65536 + 37 48 36 1 37 48 36 65536 + 48 37 49 1 48 37 49 65536 + 38 49 37 1 38 49 37 65536 + 49 38 50 1 49 38 50 65536 + 39 50 38 1 39 50 38 65536 + 50 39 51 1 50 39 51 65536 + 40 51 39 1 40 51 39 65536 + 51 40 52 1 51 40 52 65536 + 41 52 40 1 41 52 40 65536 + 52 41 53 1 52 41 53 65536 + 42 53 41 1 42 53 41 65536 + 53 42 54 1 53 42 54 65536 + 43 54 42 1 43 54 42 65536 + 55 44 56 1 55 44 56 65536 + 45 56 44 1 45 56 44 65536 + 56 45 57 1 56 45 57 65536 + 46 57 45 1 46 57 45 65536 + 57 46 58 1 57 46 58 65536 + 47 58 46 1 47 58 46 65536 + 58 47 59 1 58 47 59 65536 + 48 59 47 1 48 59 47 65536 + 59 48 60 1 59 48 60 65536 + 49 60 48 1 49 60 48 65536 + 60 49 61 1 60 49 61 65536 + 50 61 49 1 50 61 49 65536 + 61 50 62 1 61 50 62 65536 + 51 62 50 1 51 62 50 65536 + 62 51 63 1 62 51 63 65536 + 52 63 51 1 52 63 51 65536 + 63 52 64 1 63 52 64 65536 + 53 64 52 1 53 64 52 65536 + 64 53 65 1 64 53 65 65536 + 54 65 53 1 54 65 53 65536 + 66 55 67 1 66 55 67 65536 + 56 67 55 1 56 67 55 65536 + 67 56 68 1 67 56 68 65536 + 57 68 56 1 57 68 56 65536 + 68 57 69 1 68 57 69 65536 + 58 69 57 1 58 69 57 65536 + 69 58 70 1 69 58 70 65536 + 59 70 58 1 59 70 58 65536 + 70 59 71 1 70 59 71 65536 + 60 71 59 1 60 71 59 65536 + 71 60 72 1 71 60 72 65536 + 61 72 60 1 61 72 60 65536 + 72 61 73 1 72 61 73 65536 + 62 73 61 1 62 73 61 65536 + 73 62 74 1 73 62 74 65536 + 63 74 62 1 63 74 62 65536 + 74 63 75 1 74 63 75 65536 + 64 75 63 1 64 75 63 65536 + 75 64 76 1 75 64 76 65536 + 65 76 64 1 65 76 64 65536 + 77 66 78 1 77 66 78 65536 + 67 78 66 1 67 78 66 65536 + 78 67 79 1 78 67 79 65536 + 68 79 67 1 68 79 67 65536 + 79 68 80 1 79 68 80 65536 + 69 80 68 1 69 80 68 65536 + 80 69 81 1 80 69 81 65536 + 70 81 69 1 70 81 69 65536 + 81 70 82 1 81 70 82 65536 + 71 82 70 1 71 82 70 65536 + 82 71 83 1 82 71 83 65536 + 72 83 71 1 72 83 71 65536 + 83 72 84 1 83 72 84 65536 + 73 84 72 1 73 84 72 65536 + 84 73 85 1 84 73 85 65536 + 74 85 73 1 74 85 73 65536 + 85 74 86 1 85 74 86 65536 + 75 86 74 1 75 86 74 65536 + 86 75 87 1 86 75 87 65536 + 76 87 75 1 76 87 75 65536 + 88 77 89 1 88 77 89 65536 + 78 89 77 1 78 89 77 65536 + 89 78 90 1 89 78 90 65536 + 79 90 78 1 79 90 78 65536 + 90 79 91 1 90 79 91 65536 + 80 91 79 1 80 91 79 65536 + 91 80 92 1 91 80 92 65536 + 81 92 80 1 81 92 80 65536 + 92 81 93 1 92 81 93 65536 + 82 93 81 1 82 93 81 65536 + 93 82 94 1 93 82 94 65536 + 83 94 82 1 83 94 82 65536 + 94 83 95 1 94 83 95 65536 + 84 95 83 1 84 95 83 65536 + 95 84 96 1 95 84 96 65536 + 85 96 84 1 85 96 84 65536 + 96 85 97 1 96 85 97 65536 + 86 97 85 1 86 97 85 65536 + 97 86 98 1 97 86 98 65536 + 87 98 86 1 87 98 86 65536 + 99 88 100 1 99 88 100 65536 + 89 100 88 1 89 100 88 65536 + 100 89 101 1 100 89 101 65536 + 90 101 89 1 90 101 89 65536 + 101 90 102 1 101 90 102 65536 + 91 102 90 1 91 102 90 65536 + 102 91 103 1 102 91 103 65536 + 92 103 91 1 92 103 91 65536 + 103 92 104 1 103 92 104 65536 + 93 104 92 1 93 104 92 65536 + 104 93 105 1 104 93 105 65536 + 94 105 93 1 94 105 93 65536 + 105 94 106 1 105 94 106 65536 + 95 106 94 1 95 106 94 65536 + 106 95 107 1 106 95 107 65536 + 96 107 95 1 96 107 95 65536 + 107 96 108 1 107 96 108 65536 + 97 108 96 1 97 108 96 65536 + 108 97 109 1 108 97 109 65536 + 98 109 97 1 98 109 97 65536 + 110 99 111 1 110 99 111 65536 + 100 111 99 1 100 111 99 65536 + 111 100 112 1 111 100 112 65536 + 101 112 100 1 101 112 100 65536 + 112 101 113 1 112 101 113 65536 + 102 113 101 1 102 113 101 65536 + 113 102 114 1 113 102 114 65536 + 103 114 102 1 103 114 102 65536 + 114 103 115 1 114 103 115 65536 + 104 115 103 1 104 115 103 65536 + 115 104 116 1 115 104 116 65536 + 105 116 104 1 105 116 104 65536 + 116 105 117 1 116 105 117 65536 + 106 117 105 1 106 117 105 65536 + 117 106 118 1 117 106 118 65536 + 107 118 106 1 107 118 106 65536 + 118 107 119 1 118 107 119 65536 + 108 119 107 1 108 119 107 65536 + 119 108 120 1 119 108 120 65536 + 109 120 108 1 109 120 108 65536 + tverts 121 + 0 0 0 + 0.0996094 0 0 + 0.201172 0 0 + 0.300781 0 0 + 0.400391 0 0 + 0.5 0 0 + 0.599609 0 0 + 0.699219 0 0 + 0.798828 0 0 + 0.900391 0 0 + 1 0 0 + 0 0.0996094 0 + 0.0996094 0.0996094 0 + 0.201172 0.0996094 0 + 0.300781 0.0996094 0 + 0.400391 0.0996094 0 + 0.5 0.0996094 0 + 0.599609 0.0996094 0 + 0.699219 0.0996094 0 + 0.798828 0.0996094 0 + 0.900391 0.0996094 0 + 1 0.0996094 0 + 0 0.201172 0 + 0.0996094 0.201172 0 + 0.201172 0.201172 0 + 0.300781 0.201172 0 + 0.400391 0.201172 0 + 0.5 0.201172 0 + 0.599609 0.201172 0 + 0.730469 0.228516 0 + 0.830078 0.232422 0 + 0.900391 0.201172 0 + 1 0.201172 0 + 0 0.300781 0 + 0.0996094 0.300781 0 + 0.201172 0.300781 0 + 0.320313 0.300781 0 + 0.400391 0.300781 0 + 0.5 0.300781 0 + 0.599609 0.300781 0 + 0.699219 0.300781 0 + 0.773438 0.300781 0 + 0.900391 0.300781 0 + 1 0.300781 0 + 0 0.400391 0 + 0.0996094 0.400391 0 + 0.230469 0.400391 0 + 0.310547 0.400391 0 + 0.400391 0.400391 0 + 0.5 0.400391 0 + 0.599609 0.400391 0 + 0.671875 0.400391 0 + 0.763672 0.400391 0 + 0.919922 0.400391 0 + 1 0.400391 0 + 0 0.5 0 + 0.0996094 0.5 0 + 0.224609 0.5 0 + 0.265625 0.5 0 + 0.400391 0.5 0 + 0.5 0.5 0 + 0.599609 0.5 0 + 0.677734 0.488281 0 + 0.798828 0.5 0 + 0.900391 0.5 0 + 1 0.5 0 + 0 0.599609 0 + 0.0996094 0.599609 0 + 0.199219 0.572266 0 + 0.244141 0.599609 0 + 0.400391 0.599609 0 + 0.5 0.599609 0 + 0.599609 0.599609 0 + 0.734375 0.599609 0 + 0.798828 0.599609 0 + 0.900391 0.599609 0 + 1 0.599609 0 + 0 0.699219 0 + 0.0996094 0.699219 0 + 0.191406 0.699219 0 + 0.28125 0.699219 0 + 0.400391 0.699219 0 + 0.5 0.699219 0 + 0.599609 0.699219 0 + 0.699219 0.699219 0 + 0.757813 0.699219 0 + 0.900391 0.699219 0 + 1 0.699219 0 + 0 0.798828 0 + 0.0996094 0.798828 0 + 0.238281 0.798828 0 + 0.34375 0.798828 0 + 0.400391 0.798828 0 + 0.5 0.798828 0 + 0.599609 0.798828 0 + 0.699219 0.826172 0 + 0.798828 0.798828 0 + 0.900391 0.798828 0 + 1 0.798828 0 + 0 0.900391 0 + 0.0996094 0.900391 0 + 0.208984 0.900391 0 + 0.308594 0.900391 0 + 0.400391 0.900391 0 + 0.5 0.900391 0 + 0.599609 0.900391 0 + 0.677734 0.900391 0 + 0.78125 0.900391 0 + 0.900391 0.900391 0 + 1 0.900391 0 + 0 1 0 + 0.0996094 1 0 + 0.201172 1 0 + 0.300781 1 0 + 0.400391 1 0 + 0.5 1 0 + 0.599609 1 0 + 0.699219 1 0 + 0.798828 1 0 + 0.900391 1 0 + 1 1 0 +endnode +node light wsf10_p01_01ml1 + parent wsf10_p01_01 + position -2.59481 0.812168 5.00325 + wirecolor 0.419608 0.419608 0.419608 + radius 500 + multiplier 1 + color 0 0 0 + ambientonly 0 + nDynamicType 0 + affectdynamic 1 + shadow 0 + lightpriority 5 + fadinglight 1 + orientation 0 0 0 0 +endnode +node light wsf10_p01_01ml2 + parent wsf10_p01_01 + position 3.48059 -2.81609 6.3088 + wirecolor 0.419608 0.419608 0.419608 + radius 500 + multiplier 1 + color 0 0 0 + ambientonly 0 + nDynamicType 0 + affectdynamic 1 + shadow 0 + lightpriority 5 + fadinglight 1 + orientation 0 0 0 0 +endnode +node trimesh loft02 + parent wsf10_p01_01 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.882353 0.882353 0.882353 + tilefade 0 + scale 1 + render 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + center 61.5 232 651.5 + bitmap tno01_bark02 + shadow 0 + verts 435 + -3.92 0.99 -0.8 + -3.45 0.63 -0.84 + -2.85 0.79 -0.92 + -2.61 1.34 -0.96 + -2.17 1.91 -1.03 + -2.39 2.58 -1.03 + -2.9 2.48 -0.96 + -3.54 2.99 -0.91 + -4.19 2.41 -0.82 + -3.8 1.64 -0.84 + -3.12 1.3 0.74 + -2.9 1.24 0.44 + -2.68 1.19 0.15 + -2.57 1.5 0.06 + -2.45 1.81 -0.02 + -2.56 2.08 0.18 + -2.67 2.36 0.38 + -2.9 2.16 0.63 + -3.12 1.96 0.88 + -3.12 1.63 0.81 + -2.94 1.52 1.34 + -2.64 1.32 1.28 + -2.3 1.39 1.2 + -2.13 1.77 1.16 + -2.29 2 1.19 + -2.45 2.24 1.23 + -2.72 2.08 1.29 + -2.99 1.93 1.35 + -2.95 1.6 1.89 + -2.74 1.46 2.04 + -2.49 1.53 2.18 + -2.42 1.94 2.15 + -2.58 2.22 2.01 + -2.78 2.08 1.91 + -2.97 1.93 1.82 + -3.1 1.75 3.07 + -2.92 1.63 3.05 + -2.71 1.68 3.03 + -2.65 1.99 3.01 + -2.79 2.22 3.02 + -2.96 2.12 3.04 + -3.13 2.01 3.06 + -2.46 1.73 4.8 + -2.27 1.72 4.63 + -2.23 1.95 4.62 + -2.31 2.11 4.7 + -2.4 2.03 4.78 + -2.5 1.96 4.86 + -1.78 1.69 6.14 + -1.58 1.67 6.14 + -1.55 1.85 6.13 + -1.7 1.94 6.12 + -1.84 1.86 6.13 + -2.39 1.92 7.48 + -2.25 1.92 7.59 + -2.22 2.07 7.58 + -2.31 2.14 7.49 + -2.41 2.06 7.42 + -2.52 2.28 8.85 + -2.44 2.23 8.8 + -2.35 2.25 8.75 + -2.33 2.36 8.75 + -2.43 2.42 8.81 + -2.54 2.38 8.86 + -1.19 1.65 10.43 + -1.17 1.61 10.33 + -1.13 1.67 10.3 + -1.13 1.73 10.36 + -1.17 1.72 10.44 + -0.3 0.23 11.44 + -2.95 2.04 2.9 + -2.91 1.84 3.14 + -2.72 1.79 3.06 + -2.67 1.92 2.83 + -2.8 2.08 2.71 + -2.65 2.95 3.71 + -2.65 2.77 3.86 + -2.49 2.74 3.84 + -2.42 2.87 3.72 + -2.51 3 3.63 + -2.39 3.24 5.41 + -2.38 3.12 5.57 + -2.27 3.1 5.55 + -2.22 3.17 5.43 + -2.29 3.26 5.33 + -2.1 4.3 6.14 + -2.08 4.23 6.3 + -1.98 4.21 6.28 + -1.95 4.25 6.15 + -2.01 4.31 6.06 + -1.85 5.01 7.12 + -1.83 4.98 7.27 + -1.74 4.96 7.26 + -1.72 4.98 7.13 + -1.78 5.01 7.04 + -1.63 6.01 7.04 + -1.59 6 7.17 + -1.54 5.99 7.06 + -1.32 7.09 7.72 + -2.73 1.99 2.71 + -2.92 1.89 2.5 + -2.89 1.64 2.55 + -2.72 1.59 2.76 + -2.6 1.79 2.89 + -3.49 1.85 3.91 + -3.63 1.79 3.75 + -3.62 1.61 3.78 + -3.5 1.57 3.93 + -3.41 1.72 4.02 + -3.83 2.06 5.39 + -3.94 2.01 5.23 + -3.92 1.86 5.26 + -3.83 1.83 5.39 + -3.77 1.95 5.48 + -4.44 2.18 6.4 + -4.53 2.13 6.23 + -4.52 1.98 6.26 + -4.44 1.96 6.41 + -4.39 2.07 6.5 + -5.39 2.06 6.96 + -5.46 2.02 6.79 + -5.45 1.89 6.81 + -5.39 1.86 6.96 + -5.36 1.96 7.06 + -6.04 2.04 7.89 + -6.06 2.02 7.8 + -6.06 1.96 7.82 + -6.04 1.94 7.89 + -6.03 1.99 7.94 + -6.22 2.36 8.96 + -1.75 1.74 6.12 + -1.68 1.76 5.96 + -1.66 1.89 5.98 + -1.76 1.85 6.2 + -0.97 1.51 6.98 + -0.93 1.52 6.84 + -0.91 1.63 6.85 + -0.94 1.67 6.98 + -0.98 1.6 7.06 + 0.12 1.52 7.18 + 0.13 1.53 7.07 + 0.15 1.61 7.08 + 0.14 1.64 7.17 + 0.12 1.59 7.24 + 0.99 1.47 8.09 + 0.99 1.49 8 + 1 1.55 8.01 + 1 1.56 8.08 + 1 1.52 8.13 + 1.33 1.14 9.13 + -4.41 2.07 6.31 + -4.48 2.09 6.22 + -4.5 2.02 6.31 + -4.69 2.48 6.84 + -4.75 2.52 6.79 + -4.77 2.44 6.86 + -5.04 2.88 7.69 + -5.1 2.91 7.62 + -5.12 2.84 7.7 + -5.28 3.53 8.61 + -2.39 2.41 8.82 + -2.48 2.37 8.68 + -2.47 2.24 8.71 + -2.4 2.21 8.83 + -2.34 2.31 8.9 + -3.01 2.52 9.83 + -3.08 2.48 9.7 + -3.06 2.37 9.72 + -3.01 2.35 9.83 + -2.96 2.43 9.9 + -3.96 2.39 10.38 + -4 2.36 10.27 + -3.99 2.28 10.29 + -3.96 2.27 10.38 + -3.94 2.33 10.44 + -4.6 2.4 11.32 + -4.62 2.38 11.23 + -4.62 2.32 11.25 + -4.6 2.31 11.32 + -4.59 2.36 11.37 + -4.78 2.73 12.4 + -1.63 5.2 7.17 + -1.66 5.25 7.07 + -1.72 5.18 7.14 + -1.74 5.73 7.68 + -1.78 5.79 7.62 + -1.83 5.72 7.67 + -2.11 6.23 7.83 + -2.14 6.28 7.75 + -2.19 6.21 7.8 + -2.34 6.92 8.53 + -2.22 1.81 -0.69 + -2.12 2.06 -0.75 + -2.11 2.13 -0.66 + -2.03 2.35 -0.8 + -2.3 1.59 -0.43 + -2.22 1.86 -0.58 + -2.21 2.19 -0.7 + -2.5 1.43 -0.31 + -2.3 1.65 -0.35 + -2.32 1.71 -0.34 + -2.3 1.96 -0.61 + -2.52 1.28 -0.3 + -2.51 1.43 -0.15 + -2.5 1.57 -0.16 + -2.39 1.76 -0.42 + -2.6 1.42 -0.06 + -2.59 1.65 -0.26 + -2.41 1.07 -0.34 + -2.52 1.24 -0.15 + -2.73 1.32 0.13 + -2.68 1.54 -0.18 + -3.77 1.3 0.19 + -3.28 1.29 0.29 + -3.2 1.36 0.45 + -2.94 1.26 0.34 + -2.93 1.36 0.34 + -2.83 1.42 0.01 + -3 1.17 0.2 + -4.02 1.2 0.16 + -3.57 1.39 0.39 + -3.22 1.52 0.46 + -3 1.45 0.2 + -3.84 1.37 0.42 + -3.61 1.57 0.41 + -3.3 1.62 0.3 + -4.12 1.38 0.22 + -3.87 1.46 0.44 + -3.76 1.64 0.18 + -4.02 1.53 0.16 + -2.38 1.03 -0.22 + -2.26 0.93 -0.66 + -2.13 0.84 -0.63 + -1.82 0.88 -0.91 + -1.83 0.77 -0.91 + -2.22 0.75 -0.69 + -2.38 0.8 -0.44 + -2.31 0.84 -0.34 + -2.42 0.98 -0.2 + -2.6 1.21 -0.06 + -2.76 1.2 0.15 + -2.51 0.96 -0.28 + -2.72 1.15 -0.21 + -2.83 1.14 0.01 + -4.68 1.37 -0.14 + -4.87 1.02 -0.14 + -4.71 0.62 -0.15 + -4.32 0.52 -0.15 + -3.89 0.27 -0.15 + -3.47 0.48 -0.15 + -3.58 0.81 -0.14 + -3.3 1.29 -0.14 + -3.75 1.68 -0.14 + -4.23 1.35 -0.14 + -4.45 0.97 0.96 + -4.45 0.8 0.78 + -4.46 0.62 0.59 + -4.24 0.57 0.55 + -4.02 0.52 0.51 + -3.85 0.63 0.64 + -3.68 0.74 0.77 + -3.85 0.89 0.92 + -4.01 1.04 1.07 + -4.23 1 1.01 + -4.3 0.91 1.38 + -4.4 0.69 1.36 + -4.32 0.47 1.33 + -4.05 0.38 1.33 + -3.91 0.51 1.34 + -3.77 0.65 1.36 + -3.9 0.81 1.37 + -4.03 0.98 1.39 + -4.27 0.97 1.75 + -4.35 0.82 1.87 + -4.28 0.67 1.98 + -3.99 0.66 1.97 + -3.82 0.79 1.87 + -3.93 0.9 1.79 + -4.04 1.01 1.71 + -4.21 1.16 2.54 + -4.28 1.03 2.54 + -4.22 0.89 2.54 + -4.01 0.88 2.54 + -3.87 1 2.54 + -3.96 1.1 2.54 + -4.04 1.21 2.54 + -4.22 0.86 3.75 + -4.21 0.72 3.65 + -4.05 0.71 3.65 + -3.95 0.78 3.7 + -4.02 0.84 3.75 + -4.08 0.91 3.79 + -4.23 0.49 4.7 + -4.22 0.36 4.72 + -4.1 0.35 4.72 + -4.05 0.46 4.7 + -4.12 0.54 4.69 + -4.17 1.01 5.56 + -4.16 0.93 5.64 + -4.06 0.92 5.64 + -4.02 0.98 5.58 + -4.08 1.04 5.52 + -3.98 1.23 6.48 + -4.01 1.17 6.45 + -3.99 1.11 6.43 + -3.91 1.1 6.43 + -3.88 1.18 6.46 + -3.92 1.25 6.49 + -4.33 0.39 7.63 + -4.36 0.37 7.56 + -4.31 0.35 7.55 + -4.27 0.36 7.58 + -4.28 0.39 7.63 + -5.23 -0.26 8.34 + -4 1.08 2.44 + -4.14 1.05 2.6 + -4.15 0.91 2.56 + -4.05 0.87 2.41 + -3.95 0.97 2.33 + -3.39 1.02 3.02 + -3.51 1.01 3.12 + -3.52 0.91 3.12 + -3.42 0.86 3.05 + -3.34 0.93 2.98 + -3.23 1 4.2 + -3.31 0.99 4.3 + -3.31 0.91 4.3 + -3.25 0.87 4.22 + -3.2 0.93 4.15 + -2.51 0.95 4.73 + -2.56 0.95 4.84 + -2.56 0.87 4.84 + -2.53 0.85 4.75 + -2.49 0.89 4.68 + -2.04 0.92 5.42 + -2.06 0.91 5.52 + -2.07 0.86 5.52 + -2.05 0.83 5.44 + -2.03 0.87 5.37 + -1.35 0.87 5.41 + -1.36 0.85 5.5 + -1.36 0.81 5.43 + -0.62 0.81 5.91 + -4.01 0.91 2.33 + -4.08 1.01 2.17 + -4.25 0.98 2.2 + -4.28 0.87 2.35 + -4.14 0.82 2.45 + -4.21 1.49 3.08 + -4.26 1.57 2.96 + -4.38 1.54 2.98 + -4.4 1.47 3.08 + -4.3 1.43 3.15 + -4.15 1.84 4.05 + -4.19 1.89 3.93 + -4.29 1.87 3.95 + -4.3 1.82 4.05 + -4.22 1.8 4.12 + -4.16 2.33 4.69 + -4.19 2.37 4.57 + -4.29 2.35 4.59 + -4.3 2.31 4.69 + -4.23 2.29 4.76 + -4.34 2.99 4.99 + -4.37 3.02 4.87 + -4.46 3 4.88 + -4.47 2.97 4.99 + -4.41 2.97 5.06 + -4.44 3.49 5.57 + -4.46 3.49 5.51 + -4.5 3.49 5.52 + -4.51 3.48 5.57 + -4.48 3.48 5.6 + -4.28 3.71 6.29 + -4.19 0.47 4.69 + -4.17 0.42 4.59 + -4.08 0.42 4.6 + -4.12 0.5 4.75 + -4.3 -0.01 5.32 + -4.29 -0.05 5.23 + -4.21 -0.05 5.24 + -4.19 -0.02 5.32 + -4.24 0.01 5.38 + -4.2 -0.72 5.54 + -4.19 -0.74 5.46 + -4.13 -0.74 5.47 + -4.12 -0.72 5.53 + -4.16 -0.71 5.58 + -4.18 -1.24 6.21 + -4.17 -1.24 6.15 + -4.13 -1.24 6.16 + -4.12 -1.24 6.21 + -4.15 -1.24 6.24 + -4.4 -1.42 6.93 + -4.22 2.3 4.63 + -4.21 2.33 4.56 + -4.27 2.35 4.62 + -3.99 2.56 4.97 + -3.97 2.6 4.93 + -4.02 2.61 4.98 + -3.78 2.89 5.53 + -3.77 2.92 5.48 + -3.82 2.94 5.53 + -3.4 3.17 6.14 + -3.89 1.15 6.47 + -3.92 1.2 6.37 + -4.01 1.19 6.39 + -4.02 1.14 6.47 + -3.95 1.12 6.53 + -3.9 1.65 7.11 + -3.93 1.68 7.01 + -4 1.66 7.03 + -4.02 1.63 7.11 + -3.96 1.62 7.16 + -4.1 2.31 7.4 + -4.11 2.32 7.33 + -4.17 2.31 7.34 + -4.18 2.3 7.4 + -4.14 2.29 7.45 + -4.17 2.8 7.99 + -4.19 2.81 7.93 + -4.23 2.8 7.94 + -4.23 2.79 7.99 + -4.2 2.8 8.03 + -4.01 3.02 8.71 + -1.89 0.8 5.48 + -1.86 0.82 5.41 + -1.92 0.86 5.45 + -1.57 0.96 5.82 + -1.53 0.99 5.78 + -1.58 1.02 5.81 + -1.27 1.26 5.91 + -1.24 1.28 5.85 + -1.29 1.31 5.88 + -0.85 1.53 6.37 + faces 770 + 0 1 11 1 191 192 11 2 + 11 10 0 1 11 193 191 2 + 1 2 12 1 192 194 195 2 + 12 11 1 1 195 11 192 2 + 2 3 13 1 196 197 13 2 + 13 12 2 1 13 12 196 2 + 3 4 14 1 197 198 199 2 + 14 13 3 1 199 13 197 2 + 4 5 15 1 198 200 201 2 + 15 14 4 1 201 199 198 2 + 5 6 16 1 202 203 16 2 + 16 15 5 1 204 201 200 2 + 6 7 17 1 203 205 17 2 + 17 16 6 1 17 16 203 2 + 7 8 18 1 205 206 207 2 + 18 17 7 1 207 17 205 2 + 8 9 19 1 208 209 210 2 + 19 18 8 1 19 18 211 2 + 9 0 10 1 212 213 10 2 + 10 19 9 1 10 19 212 2 + 10 11 21 1 193 11 21 2 + 21 20 10 1 21 214 193 2 + 11 12 22 1 11 195 215 2 + 22 21 11 1 215 21 11 2 + 12 13 22 1 12 13 22 2 + 13 14 23 1 13 199 216 2 + 23 22 13 1 216 22 13 2 + 14 15 24 1 14 15 24 2 + 24 23 14 1 24 23 14 2 + 15 16 25 1 15 16 25 2 + 25 24 15 1 25 24 15 2 + 16 17 26 1 16 17 26 2 + 26 25 16 1 26 25 16 2 + 17 18 27 1 17 207 217 2 + 27 26 17 1 217 26 17 2 + 18 19 20 1 18 19 20 2 + 20 27 18 1 20 27 18 2 + 19 10 20 1 19 10 20 2 + 20 21 29 1 214 21 29 2 + 29 28 20 1 29 218 214 2 + 21 22 30 1 21 215 219 2 + 30 29 21 1 219 29 21 2 + 22 23 31 1 22 216 220 2 + 31 30 22 1 220 30 22 2 + 23 24 31 1 23 24 31 2 + 24 25 32 1 24 25 32 2 + 32 31 24 1 32 31 24 2 + 25 26 33 1 25 26 33 2 + 33 32 25 1 33 32 25 2 + 26 27 34 1 26 217 221 2 + 34 33 26 1 221 33 26 2 + 27 20 28 1 27 20 28 2 + 28 34 27 1 28 34 27 2 + 28 29 36 1 218 29 36 2 + 36 35 28 1 36 222 218 2 + 29 30 37 1 29 219 223 2 + 37 36 29 1 223 36 29 2 + 30 31 38 1 30 220 36 2 + 38 37 30 1 36 37 30 2 + 31 32 39 1 31 32 39 2 + 39 38 31 1 39 38 31 2 + 32 33 40 1 32 33 40 2 + 40 39 32 1 40 39 32 2 + 33 34 41 1 33 221 224 2 + 41 40 33 1 224 40 33 2 + 34 28 35 1 34 28 35 2 + 35 41 34 1 35 41 34 2 + 35 36 42 1 222 36 225 2 + 36 37 43 1 36 223 226 2 + 43 42 36 1 226 225 36 2 + 37 38 44 1 37 36 227 2 + 44 43 37 1 227 43 37 2 + 38 39 45 1 38 39 45 2 + 45 44 38 1 45 44 38 2 + 39 40 46 1 39 40 46 2 + 46 45 39 1 46 45 39 2 + 40 41 47 1 40 224 228 2 + 47 46 40 1 228 46 40 2 + 41 35 42 1 41 35 42 2 + 42 47 41 1 42 47 41 2 + 42 43 49 1 225 226 229 2 + 49 48 42 1 229 230 225 2 + 43 44 50 1 43 227 231 2 + 50 49 43 1 231 49 43 2 + 44 45 51 1 44 45 51 2 + 51 50 44 1 51 50 44 2 + 45 46 51 1 45 46 51 2 + 46 47 52 1 46 228 232 2 + 52 51 46 1 232 51 46 2 + 47 42 48 1 47 42 48 2 + 48 52 47 1 48 52 47 2 + 48 49 54 1 230 229 233 2 + 54 53 48 1 233 234 230 2 + 49 50 55 1 49 231 235 2 + 55 54 49 1 235 54 49 2 + 50 51 56 1 50 51 56 2 + 56 55 50 1 56 55 50 2 + 51 52 57 1 51 232 236 2 + 57 56 51 1 236 56 51 2 + 52 48 53 1 52 48 53 2 + 53 57 52 1 53 57 52 2 + 59 58 53 1 59 237 234 2 + 53 54 60 1 234 233 60 2 + 60 59 53 1 60 59 234 2 + 54 55 61 1 54 235 238 2 + 61 60 54 1 238 239 54 2 + 55 56 62 1 55 56 62 2 + 62 61 55 1 62 61 55 2 + 56 57 63 1 56 236 240 2 + 63 62 56 1 240 62 56 2 + 57 53 58 1 57 53 58 2 + 58 63 57 1 58 241 57 2 + 58 59 64 1 237 59 242 2 + 59 60 65 1 59 60 243 2 + 65 64 59 1 243 242 59 2 + 60 61 66 1 239 238 66 2 + 66 65 60 1 244 243 60 2 + 61 62 67 1 61 62 67 2 + 67 66 61 1 67 245 61 2 + 62 63 68 1 62 240 246 2 + 68 67 62 1 246 67 62 2 + 63 58 64 1 241 58 247 2 + 64 68 63 1 64 68 63 2 + 64 65 69 1 242 243 248 2 + 65 66 69 1 65 249 250 2 + 66 67 69 1 66 251 252 2 + 67 68 69 1 67 246 253 2 + 68 64 69 1 68 64 69 2 + 5 7 6 1 254 255 6 1 + 1 3 2 1 1 3 2 1 + 9 1 0 1 9 1 0 1 + 9 3 1 1 9 3 1 1 + 8 3 9 1 8 3 9 1 + 7 3 8 1 7 3 8 1 + 5 3 7 1 5 3 7 1 + 4 3 5 1 4 3 5 1 + 70 71 76 1 256 257 258 2 + 76 75 70 1 258 259 256 2 + 71 72 77 1 260 261 262 2 + 77 76 71 1 262 263 260 2 + 72 73 78 1 264 265 266 2 + 78 77 72 1 266 77 264 2 + 73 74 79 1 265 267 268 2 + 79 78 73 1 268 266 265 2 + 74 70 75 1 269 270 75 2 + 75 79 74 1 75 79 269 2 + 75 76 81 1 259 258 271 2 + 81 80 75 1 271 272 259 2 + 76 77 82 1 76 273 274 2 + 82 81 76 1 274 275 76 2 + 77 78 83 1 77 266 83 2 + 83 82 77 1 83 82 77 2 + 78 79 84 1 78 79 276 2 + 84 83 78 1 276 277 78 2 + 79 75 80 1 79 75 278 2 + 80 84 79 1 278 276 79 2 + 80 81 86 1 272 271 279 2 + 86 85 80 1 279 280 272 2 + 81 82 87 1 81 281 282 2 + 87 86 81 1 282 283 81 2 + 82 83 88 1 82 83 88 2 + 88 87 82 1 88 87 82 2 + 83 84 89 1 83 284 285 2 + 89 88 83 1 285 88 83 2 + 84 80 85 1 84 80 286 2 + 85 89 84 1 286 287 84 2 + 85 86 91 1 280 279 288 2 + 91 90 85 1 288 289 280 2 + 86 87 92 1 86 290 291 2 + 92 91 86 1 291 292 86 2 + 87 88 93 1 87 88 293 2 + 93 92 87 1 293 92 87 2 + 88 89 94 1 88 285 294 2 + 94 93 88 1 294 293 88 2 + 89 85 90 1 89 85 295 2 + 90 94 89 1 295 296 89 2 + 90 91 96 1 289 288 297 2 + 96 95 90 1 297 298 289 2 + 91 92 96 1 91 299 300 2 + 92 93 97 1 92 293 301 2 + 97 96 92 1 301 96 92 2 + 93 94 95 1 293 294 302 2 + 95 97 93 1 95 97 93 2 + 94 90 95 1 94 90 95 2 + 95 96 98 1 298 297 303 2 + 96 97 98 1 96 301 304 2 + 97 95 98 1 97 95 98 2 + 74 71 70 1 74 71 70 1 + 73 71 74 1 73 71 74 1 + 72 71 73 1 72 71 73 1 + 99 100 105 1 305 306 307 2 + 105 104 99 1 307 104 305 2 + 100 101 106 1 308 309 310 2 + 106 105 100 1 310 311 308 2 + 101 102 107 1 312 313 107 2 + 107 106 101 1 107 106 312 2 + 102 103 108 1 313 314 315 2 + 108 107 102 1 315 107 313 2 + 103 99 104 1 316 305 104 2 + 104 108 103 1 104 108 316 2 + 104 105 110 1 104 307 317 2 + 110 109 104 1 317 109 104 2 + 105 106 111 1 105 318 319 2 + 111 110 105 1 319 320 105 2 + 106 107 112 1 106 107 112 2 + 112 111 106 1 112 111 106 2 + 107 108 113 1 107 315 321 2 + 113 112 107 1 321 112 107 2 + 108 104 109 1 108 104 109 2 + 109 113 108 1 109 113 108 2 + 109 110 115 1 109 317 322 2 + 115 114 109 1 322 114 109 2 + 110 111 116 1 110 323 324 2 + 116 115 110 1 324 115 110 2 + 111 112 117 1 111 112 117 2 + 117 116 111 1 117 116 111 2 + 112 113 118 1 112 321 325 2 + 118 117 112 1 325 117 112 2 + 113 109 114 1 113 109 114 2 + 114 118 113 1 114 118 113 2 + 114 115 120 1 114 322 326 2 + 120 119 114 1 326 119 114 2 + 115 116 121 1 115 324 327 2 + 121 120 115 1 327 120 115 2 + 116 117 122 1 116 117 122 2 + 122 121 116 1 122 121 116 2 + 117 118 123 1 117 325 328 2 + 123 122 117 1 328 122 117 2 + 118 114 119 1 118 114 119 2 + 119 123 118 1 119 123 118 2 + 119 120 125 1 119 326 329 2 + 125 124 119 1 329 330 119 2 + 120 121 126 1 120 327 331 2 + 126 125 120 1 331 332 120 2 + 121 122 127 1 121 122 333 2 + 127 126 121 1 333 126 121 2 + 122 123 128 1 122 328 334 2 + 128 127 122 1 334 333 122 2 + 123 119 124 1 123 119 330 2 + 124 128 123 1 330 335 123 2 + 124 125 129 1 330 329 336 2 + 125 126 129 1 125 337 338 2 + 126 127 129 1 126 333 339 2 + 127 128 129 1 127 128 129 2 + 128 124 129 1 128 124 129 2 + 103 100 99 1 103 100 99 1 + 102 100 103 1 102 100 103 1 + 101 100 102 1 101 100 102 1 + 130 131 135 1 130 340 341 2 + 135 134 130 1 341 134 130 2 + 131 132 136 1 131 342 343 2 + 136 135 131 1 343 135 131 2 + 132 51 137 1 132 51 137 2 + 137 136 132 1 137 136 132 2 + 51 133 138 1 51 344 345 2 + 138 137 51 1 345 137 51 2 + 133 130 134 1 133 130 134 2 + 134 138 133 1 134 138 133 2 + 134 135 140 1 134 341 346 2 + 140 139 134 1 346 139 134 2 + 135 136 141 1 135 343 347 2 + 141 140 135 1 347 140 135 2 + 136 137 142 1 136 137 142 2 + 142 141 136 1 142 141 136 2 + 137 138 143 1 137 345 348 2 + 143 142 137 1 348 142 137 2 + 138 134 139 1 138 134 139 2 + 139 143 138 1 139 143 138 2 + 139 140 145 1 139 346 349 2 + 145 144 139 1 349 350 139 2 + 140 141 146 1 140 347 351 2 + 146 145 140 1 351 352 140 2 + 141 142 147 1 141 142 147 2 + 147 146 141 1 147 353 141 2 + 142 143 148 1 142 348 354 2 + 148 147 142 1 354 147 142 2 + 143 139 144 1 143 139 350 2 + 144 148 143 1 350 355 143 2 + 144 145 149 1 350 349 356 2 + 145 146 149 1 145 146 357 2 + 146 147 149 1 146 358 357 2 + 147 148 149 1 147 354 359 2 + 148 144 149 1 148 144 149 2 + 150 151 154 1 360 361 362 2 + 154 153 150 1 362 363 360 2 + 151 152 155 1 151 364 365 2 + 155 154 151 1 365 154 151 2 + 152 150 153 1 152 150 366 2 + 153 155 152 1 366 367 152 2 + 153 154 157 1 363 362 368 2 + 157 156 153 1 368 369 363 2 + 154 155 158 1 154 365 370 2 + 158 157 154 1 370 157 154 2 + 155 153 156 1 155 153 156 2 + 156 158 155 1 156 158 155 2 + 156 157 159 1 369 368 371 2 + 157 158 159 1 157 370 372 2 + 158 156 159 1 158 156 159 2 + 160 161 166 1 160 373 374 2 + 166 165 160 1 374 165 160 2 + 161 162 167 1 161 375 376 2 + 167 166 161 1 376 166 161 2 + 162 163 168 1 162 163 168 2 + 168 167 162 1 168 167 162 2 + 163 164 169 1 163 377 378 2 + 169 168 163 1 378 168 163 2 + 164 160 165 1 164 160 165 2 + 165 169 164 1 165 169 164 2 + 165 166 171 1 165 374 379 2 + 171 170 165 1 379 170 165 2 + 166 167 172 1 166 376 380 2 + 172 171 166 1 380 171 166 2 + 167 168 173 1 167 168 173 2 + 173 172 167 1 173 172 167 2 + 168 169 174 1 168 378 381 2 + 174 173 168 1 381 173 168 2 + 169 165 170 1 169 165 170 2 + 170 174 169 1 170 174 169 2 + 170 171 176 1 170 379 382 2 + 176 175 170 1 382 383 170 2 + 171 172 177 1 171 380 384 2 + 177 176 171 1 384 385 171 2 + 172 173 178 1 172 173 386 2 + 178 177 172 1 386 177 172 2 + 173 174 179 1 173 381 387 2 + 179 178 173 1 387 386 173 2 + 174 170 175 1 174 170 383 2 + 175 179 174 1 383 388 174 2 + 175 176 180 1 383 382 389 2 + 176 177 180 1 176 390 391 2 + 177 178 180 1 177 386 392 2 + 178 179 180 1 178 179 180 2 + 179 175 180 1 179 175 180 2 + 181 182 185 1 393 394 395 2 + 185 184 181 1 395 396 393 2 + 182 183 186 1 182 397 398 2 + 186 185 182 1 398 399 182 2 + 183 181 184 1 183 181 400 2 + 184 186 183 1 400 401 183 2 + 184 185 188 1 402 403 404 2 + 188 187 184 1 404 405 402 2 + 185 186 189 1 185 406 407 2 + 189 188 185 1 407 408 185 2 + 186 184 187 1 186 184 409 2 + 187 189 186 1 409 410 186 2 + 187 188 190 1 411 412 413 2 + 188 189 190 1 188 414 415 2 + 189 187 190 1 189 187 190 2 + 191 192 193 1 416 417 418 1 + 192 194 193 1 417 419 418 1 + 195 191 196 1 420 416 421 1 + 193 196 191 1 418 421 416 1 + 196 193 197 1 421 418 422 1 + 194 197 193 1 419 422 418 1 + 198 195 199 1 423 420 424 1 + 196 199 195 1 421 424 420 1 + 200 199 196 1 425 424 421 1 + 200 196 201 1 425 421 426 1 + 197 201 196 1 422 426 421 1 + 202 198 203 1 427 423 428 1 + 199 203 198 1 424 428 423 1 + 204 203 199 1 429 428 424 1 + 200 204 199 1 425 429 424 1 + 204 200 205 1 429 425 430 1 + 201 205 200 1 426 430 425 1 + 204 206 203 1 429 431 428 1 + 206 204 207 1 431 429 432 1 + 205 207 204 1 430 432 429 1 + 208 202 209 1 433 427 434 1 + 203 209 202 1 428 434 427 1 + 203 210 209 1 428 435 434 1 + 206 210 203 1 431 435 428 1 + 210 206 211 1 435 431 436 1 + 207 211 206 1 432 436 431 1 + 212 213 214 1 437 438 439 1 + 215 214 213 1 440 439 438 1 + 216 214 215 1 441 439 440 1 + 210 216 215 1 435 441 440 1 + 216 210 217 1 441 435 442 1 + 211 217 210 1 436 442 435 1 + 213 218 215 1 438 443 440 1 + 219 212 220 1 444 437 445 1 + 214 220 212 1 439 445 437 1 + 221 220 214 1 446 445 439 1 + 216 221 214 1 441 446 439 1 + 221 216 222 1 446 441 447 1 + 217 222 216 1 442 447 441 1 + 220 223 219 1 445 448 444 1 + 224 223 220 1 449 448 445 1 + 221 224 220 1 446 449 445 1 + 224 221 225 1 449 446 450 1 + 222 225 221 1 447 450 446 1 + 226 219 223 1 451 444 448 1 + 223 227 226 1 448 452 451 1 + 224 227 223 1 449 452 448 1 + 227 224 228 1 452 449 453 1 + 225 228 224 1 450 453 449 1 + 229 226 227 1 454 451 452 1 + 228 229 227 1 453 454 452 1 + 209 230 208 1 434 455 433 1 + 231 208 230 1 456 433 455 1 + 230 232 231 1 455 457 456 1 + 233 231 232 1 458 456 457 1 + 234 233 232 1 459 458 457 1 + 235 234 232 1 460 459 457 1 + 236 235 232 1 461 460 457 1 + 232 237 236 1 457 462 461 1 + 237 232 230 1 462 457 455 1 + 238 237 230 1 463 462 455 1 + 238 230 209 1 463 455 434 1 + 239 238 209 1 464 463 434 1 + 209 210 239 1 434 435 464 1 + 210 240 239 1 435 465 464 1 + 210 215 240 1 435 440 465 1 + 240 215 218 1 465 440 443 1 + 241 236 237 1 466 461 462 1 + 237 238 241 1 462 463 466 1 + 242 241 238 1 467 466 463 1 + 238 239 242 1 463 464 467 1 + 243 242 239 1 468 467 464 1 + 239 240 243 1 464 465 468 1 + 218 243 240 1 443 468 465 1 + 244 245 255 1 191 192 11 2 + 255 254 244 1 11 193 191 2 + 245 246 256 1 192 194 195 2 + 256 255 245 1 195 11 192 2 + 246 247 257 1 196 197 13 2 + 257 256 246 1 13 12 196 2 + 247 248 258 1 197 198 199 2 + 258 257 247 1 199 13 197 2 + 248 249 259 1 198 200 201 2 + 259 258 248 1 201 199 198 2 + 249 250 260 1 202 203 16 2 + 260 259 249 1 204 201 200 2 + 250 251 261 1 203 205 17 2 + 261 260 250 1 17 16 203 2 + 251 252 262 1 205 206 207 2 + 262 261 251 1 207 17 205 2 + 252 253 263 1 208 209 210 2 + 263 262 252 1 19 18 211 2 + 253 244 254 1 212 213 10 2 + 254 263 253 1 10 19 212 2 + 254 255 265 1 193 11 21 2 + 265 264 254 1 21 214 193 2 + 255 256 266 1 11 195 215 2 + 266 265 255 1 215 21 11 2 + 256 257 266 1 12 13 22 2 + 257 258 267 1 13 199 216 2 + 267 266 257 1 216 22 13 2 + 258 259 268 1 14 15 24 2 + 268 267 258 1 24 23 14 2 + 259 260 269 1 15 16 25 2 + 269 268 259 1 25 24 15 2 + 260 261 270 1 16 17 26 2 + 270 269 260 1 26 25 16 2 + 261 262 271 1 17 207 217 2 + 271 270 261 1 217 26 17 2 + 262 263 264 1 18 19 20 2 + 264 271 262 1 20 27 18 2 + 263 254 264 1 19 10 20 2 + 264 265 273 1 214 21 29 2 + 273 272 264 1 29 218 214 2 + 265 266 274 1 21 215 219 2 + 274 273 265 1 219 29 21 2 + 266 267 275 1 22 216 220 2 + 275 274 266 1 220 30 22 2 + 267 268 275 1 23 24 31 2 + 268 269 276 1 24 25 32 2 + 276 275 268 1 32 31 24 2 + 269 270 277 1 25 26 33 2 + 277 276 269 1 33 32 25 2 + 270 271 278 1 26 217 221 2 + 278 277 270 1 221 33 26 2 + 271 264 272 1 27 20 28 2 + 272 278 271 1 28 34 27 2 + 272 273 280 1 218 29 36 2 + 280 279 272 1 36 222 218 2 + 273 274 281 1 29 219 223 2 + 281 280 273 1 223 36 29 2 + 274 275 282 1 30 220 36 2 + 282 281 274 1 36 37 30 2 + 275 276 283 1 31 32 39 2 + 283 282 275 1 39 38 31 2 + 276 277 284 1 32 33 40 2 + 284 283 276 1 40 39 32 2 + 277 278 285 1 33 221 224 2 + 285 284 277 1 224 40 33 2 + 278 272 279 1 34 28 35 2 + 279 285 278 1 35 41 34 2 + 279 280 286 1 222 36 225 2 + 280 281 287 1 36 223 226 2 + 287 286 280 1 226 225 36 2 + 281 282 288 1 37 36 227 2 + 288 287 281 1 227 43 37 2 + 282 283 289 1 38 39 45 2 + 289 288 282 1 45 44 38 2 + 283 284 290 1 39 40 46 2 + 290 289 283 1 46 45 39 2 + 284 285 291 1 40 224 228 2 + 291 290 284 1 228 46 40 2 + 285 279 286 1 41 35 42 2 + 286 291 285 1 42 47 41 2 + 286 287 293 1 225 226 229 2 + 293 292 286 1 229 230 225 2 + 287 288 294 1 43 227 231 2 + 294 293 287 1 231 49 43 2 + 288 289 295 1 44 45 51 2 + 295 294 288 1 51 50 44 2 + 289 290 295 1 45 46 51 2 + 290 291 296 1 46 228 232 2 + 296 295 290 1 232 51 46 2 + 291 286 292 1 47 42 48 2 + 292 296 291 1 48 52 47 2 + 292 293 298 1 230 229 233 2 + 298 297 292 1 233 234 230 2 + 293 294 299 1 49 231 235 2 + 299 298 293 1 235 54 49 2 + 294 295 300 1 50 51 56 2 + 300 299 294 1 56 55 50 2 + 295 296 301 1 51 232 236 2 + 301 300 295 1 236 56 51 2 + 296 292 297 1 52 48 53 2 + 297 301 296 1 53 57 52 2 + 303 302 297 1 59 237 234 2 + 297 298 304 1 234 233 60 2 + 304 303 297 1 60 59 234 2 + 298 299 305 1 54 235 238 2 + 305 304 298 1 238 239 54 2 + 299 300 306 1 55 56 62 2 + 306 305 299 1 62 61 55 2 + 300 301 307 1 56 236 240 2 + 307 306 300 1 240 62 56 2 + 301 297 302 1 57 53 58 2 + 302 307 301 1 58 241 57 2 + 302 303 308 1 237 59 242 2 + 303 304 309 1 59 60 243 2 + 309 308 303 1 243 242 59 2 + 304 305 310 1 239 238 66 2 + 310 309 304 1 244 243 60 2 + 305 306 311 1 61 62 67 2 + 311 310 305 1 67 245 61 2 + 306 307 312 1 62 240 246 2 + 312 311 306 1 246 67 62 2 + 307 302 308 1 241 58 247 2 + 308 312 307 1 64 68 63 2 + 308 309 313 1 242 243 248 2 + 309 310 313 1 65 249 250 2 + 310 311 313 1 66 251 252 2 + 311 312 313 1 67 246 253 2 + 312 308 313 1 68 64 69 2 + 249 251 250 1 254 255 6 1 + 245 247 246 1 1 3 2 1 + 253 245 244 1 9 1 0 1 + 253 247 245 1 9 3 1 1 + 252 247 253 1 8 3 9 1 + 251 247 252 1 7 3 8 1 + 249 247 251 1 5 3 7 1 + 248 247 249 1 4 3 5 1 + 314 315 320 1 256 257 258 2 + 320 319 314 1 258 259 256 2 + 315 316 321 1 260 261 262 2 + 321 320 315 1 262 263 260 2 + 316 317 322 1 264 265 266 2 + 322 321 316 1 266 77 264 2 + 317 318 323 1 265 267 268 2 + 323 322 317 1 268 266 265 2 + 318 314 319 1 269 270 75 2 + 319 323 318 1 75 79 269 2 + 319 320 325 1 259 258 271 2 + 325 324 319 1 271 272 259 2 + 320 321 326 1 76 273 274 2 + 326 325 320 1 274 275 76 2 + 321 322 327 1 77 266 83 2 + 327 326 321 1 83 82 77 2 + 322 323 328 1 78 79 276 2 + 328 327 322 1 276 277 78 2 + 323 319 324 1 79 75 278 2 + 324 328 323 1 278 276 79 2 + 324 325 330 1 272 271 279 2 + 330 329 324 1 279 280 272 2 + 325 326 331 1 81 281 282 2 + 331 330 325 1 282 283 81 2 + 326 327 332 1 82 83 88 2 + 332 331 326 1 88 87 82 2 + 327 328 333 1 83 284 285 2 + 333 332 327 1 285 88 83 2 + 328 324 329 1 84 80 286 2 + 329 333 328 1 286 287 84 2 + 329 330 335 1 280 279 288 2 + 335 334 329 1 288 289 280 2 + 330 331 336 1 86 290 291 2 + 336 335 330 1 291 292 86 2 + 331 332 337 1 87 88 293 2 + 337 336 331 1 293 92 87 2 + 332 333 338 1 88 285 294 2 + 338 337 332 1 294 293 88 2 + 333 329 334 1 89 85 295 2 + 334 338 333 1 295 296 89 2 + 334 335 340 1 289 288 297 2 + 340 339 334 1 297 298 289 2 + 335 336 340 1 91 299 300 2 + 336 337 341 1 92 293 301 2 + 341 340 336 1 301 96 92 2 + 337 338 339 1 293 294 302 2 + 339 341 337 1 95 97 93 2 + 338 334 339 1 94 90 95 2 + 339 340 342 1 298 297 303 2 + 340 341 342 1 96 301 304 2 + 341 339 342 1 97 95 98 2 + 318 315 314 1 74 71 70 1 + 317 315 318 1 73 71 74 1 + 316 315 317 1 72 71 73 1 + 343 344 349 1 305 306 307 2 + 349 348 343 1 307 104 305 2 + 344 345 350 1 308 309 310 2 + 350 349 344 1 310 311 308 2 + 345 346 351 1 312 313 107 2 + 351 350 345 1 107 106 312 2 + 346 347 352 1 313 314 315 2 + 352 351 346 1 315 107 313 2 + 347 343 348 1 316 305 104 2 + 348 352 347 1 104 108 316 2 + 348 349 354 1 104 307 317 2 + 354 353 348 1 317 109 104 2 + 349 350 355 1 105 318 319 2 + 355 354 349 1 319 320 105 2 + 350 351 356 1 106 107 112 2 + 356 355 350 1 112 111 106 2 + 351 352 357 1 107 315 321 2 + 357 356 351 1 321 112 107 2 + 352 348 353 1 108 104 109 2 + 353 357 352 1 109 113 108 2 + 353 354 359 1 109 317 322 2 + 359 358 353 1 322 114 109 2 + 354 355 360 1 110 323 324 2 + 360 359 354 1 324 115 110 2 + 355 356 361 1 111 112 117 2 + 361 360 355 1 117 116 111 2 + 356 357 362 1 112 321 325 2 + 362 361 356 1 325 117 112 2 + 357 353 358 1 113 109 114 2 + 358 362 357 1 114 118 113 2 + 358 359 364 1 114 322 326 2 + 364 363 358 1 326 119 114 2 + 359 360 365 1 115 324 327 2 + 365 364 359 1 327 120 115 2 + 360 361 366 1 116 117 122 2 + 366 365 360 1 122 121 116 2 + 361 362 367 1 117 325 328 2 + 367 366 361 1 328 122 117 2 + 362 358 363 1 118 114 119 2 + 363 367 362 1 119 123 118 2 + 363 364 369 1 119 326 329 2 + 369 368 363 1 329 330 119 2 + 364 365 370 1 120 327 331 2 + 370 369 364 1 331 332 120 2 + 365 366 371 1 121 122 333 2 + 371 370 365 1 333 126 121 2 + 366 367 372 1 122 328 334 2 + 372 371 366 1 334 333 122 2 + 367 363 368 1 123 119 330 2 + 368 372 367 1 330 335 123 2 + 368 369 373 1 330 329 336 2 + 369 370 373 1 125 337 338 2 + 370 371 373 1 126 333 339 2 + 371 372 373 1 127 128 129 2 + 372 368 373 1 128 124 129 2 + 347 344 343 1 103 100 99 1 + 346 344 347 1 102 100 103 1 + 345 344 346 1 101 100 102 1 + 374 375 379 1 130 340 341 2 + 379 378 374 1 341 134 130 2 + 375 376 380 1 131 342 343 2 + 380 379 375 1 343 135 131 2 + 376 295 381 1 132 51 137 2 + 381 380 376 1 137 136 132 2 + 295 377 382 1 51 344 345 2 + 382 381 295 1 345 137 51 2 + 377 374 378 1 133 130 134 2 + 378 382 377 1 134 138 133 2 + 378 379 384 1 134 341 346 2 + 384 383 378 1 346 139 134 2 + 379 380 385 1 135 343 347 2 + 385 384 379 1 347 140 135 2 + 380 381 386 1 136 137 142 2 + 386 385 380 1 142 141 136 2 + 381 382 387 1 137 345 348 2 + 387 386 381 1 348 142 137 2 + 382 378 383 1 138 134 139 2 + 383 387 382 1 139 143 138 2 + 383 384 389 1 139 346 349 2 + 389 388 383 1 349 350 139 2 + 384 385 390 1 140 347 351 2 + 390 389 384 1 351 352 140 2 + 385 386 391 1 141 142 147 2 + 391 390 385 1 147 353 141 2 + 386 387 392 1 142 348 354 2 + 392 391 386 1 354 147 142 2 + 387 383 388 1 143 139 350 2 + 388 392 387 1 350 355 143 2 + 388 389 393 1 350 349 356 2 + 389 390 393 1 145 146 357 2 + 390 391 393 1 146 358 357 2 + 391 392 393 1 147 354 359 2 + 392 388 393 1 148 144 149 2 + 394 395 398 1 360 361 362 2 + 398 397 394 1 362 363 360 2 + 395 396 399 1 151 364 365 2 + 399 398 395 1 365 154 151 2 + 396 394 397 1 152 150 366 2 + 397 399 396 1 366 367 152 2 + 397 398 401 1 363 362 368 2 + 401 400 397 1 368 369 363 2 + 398 399 402 1 154 365 370 2 + 402 401 398 1 370 157 154 2 + 399 397 400 1 155 153 156 2 + 400 402 399 1 156 158 155 2 + 400 401 403 1 369 368 371 2 + 401 402 403 1 157 370 372 2 + 402 400 403 1 158 156 159 2 + 404 405 410 1 160 373 374 2 + 410 409 404 1 374 165 160 2 + 405 406 411 1 161 375 376 2 + 411 410 405 1 376 166 161 2 + 406 407 412 1 162 163 168 2 + 412 411 406 1 168 167 162 2 + 407 408 413 1 163 377 378 2 + 413 412 407 1 378 168 163 2 + 408 404 409 1 164 160 165 2 + 409 413 408 1 165 169 164 2 + 409 410 415 1 165 374 379 2 + 415 414 409 1 379 170 165 2 + 410 411 416 1 166 376 380 2 + 416 415 410 1 380 171 166 2 + 411 412 417 1 167 168 173 2 + 417 416 411 1 173 172 167 2 + 412 413 418 1 168 378 381 2 + 418 417 412 1 381 173 168 2 + 413 409 414 1 169 165 170 2 + 414 418 413 1 170 174 169 2 + 414 415 420 1 170 379 382 2 + 420 419 414 1 382 383 170 2 + 415 416 421 1 171 380 384 2 + 421 420 415 1 384 385 171 2 + 416 417 422 1 172 173 386 2 + 422 421 416 1 386 177 172 2 + 417 418 423 1 173 381 387 2 + 423 422 417 1 387 386 173 2 + 418 414 419 1 174 170 383 2 + 419 423 418 1 383 388 174 2 + 419 420 424 1 383 382 389 2 + 420 421 424 1 176 390 391 2 + 421 422 424 1 177 386 392 2 + 422 423 424 1 178 179 180 2 + 423 419 424 1 179 175 180 2 + 425 426 429 1 393 394 395 2 + 429 428 425 1 395 396 393 2 + 426 427 430 1 182 397 398 2 + 430 429 426 1 398 399 182 2 + 427 425 428 1 183 181 400 2 + 428 430 427 1 400 401 183 2 + 428 429 432 1 402 403 404 2 + 432 431 428 1 404 405 402 2 + 429 430 433 1 185 406 407 2 + 433 432 429 1 407 408 185 2 + 430 428 431 1 186 184 409 2 + 431 433 430 1 409 410 186 2 + 431 432 434 1 411 412 413 2 + 432 433 434 1 188 414 415 2 + 433 431 434 1 189 187 190 2 + tverts 469 + 0.972656 0.667969 0 + 1.13867 0.402344 0 + 1.00195 0.105469 0 + 0.673828 0.0253906 0 + 0.314453 -0.160156 0 + -0.0449219 -0.00390625 0 + -0.0527344 0.248047 0 + -0.183594 0.611328 0 + 0.193359 0.90625 0 + 0.599609 0.652344 0 + 0.779297 -0.955078 0 + 0.763672 -1.03711 0 + 0.208984 -1.11719 0 + 0.394531 -1.13672 0 + 1.02734 -1.1543 0 + 1.11133 -1.0957 0 + 1.19727 -1.03906 0 + 1.31055 -0.974609 0 + 0.412109 -0.908203 0 + 0.59375 -0.931641 0 + 0.658203 -0.771484 0 + 0.84375 -0.78125 0 + 0.324219 -0.792969 0 + 0.921875 -0.794922 0 + 1.02148 -0.789063 0 + 1.12305 -0.78125 0 + 1.24805 -0.773438 0 + 0.429688 -0.767578 0 + 0.628906 -0.609375 0 + 0.744141 -0.558594 0 + 0.363281 -0.509766 0 + 1.13281 -0.511719 0 + 1.23047 -0.556641 0 + 1.3125 -0.591797 0 + 0.439453 -0.626953 0 + 0.583984 -0.263672 0 + 0.587891 -0.263672 0 + 0.408203 -0.263672 0 + 1.29883 -0.263672 0 + 1.39063 -0.263672 0 + 1.46875 -0.263672 0 + 0.4375 -0.263672 0 + 0.587891 0.265625 0 + 0.419922 0.222656 0 + 1.16992 0.222656 0 + 1.22461 0.246094 0 + 1.27148 0.265625 0 + 0.46875 0.285156 0 + 0.59375 0.685547 0 + 0.408203 0.691406 0 + 0.900391 0.691406 0 + 0.980469 0.681641 0 + 0.501953 0.681641 0 + 0.546875 1.06055 0 + 0.458984 1.09766 0 + 1.33203 1.09766 0 + 1.37695 1.06836 0 + 0.470703 1.04297 0 + 0.388672 1.46484 0 + 0.482422 1.45313 0 + 0.529297 1.44141 0 + 1.4668 1.44141 0 + 1.5293 1.45703 0 + 0.660156 0.582031 0 + 0.316406 -0.0683594 0 + -0.296875 0.916016 0 + 0.332031 1.93164 0 + 0.90625 1.94922 0 + 0.357422 -0.0742188 0 + -0.441406 -0.5625 0 + 0.550781 0.693359 0 + 0.572266 0.763672 0 + 0.673828 0.744141 0 + 0.707031 0.681641 0 + 0.634766 0.644531 0 + 0.40625 -0.0507813 0 + 0.599609 -0.0078125 0 + 0 -0.0078125 0 + 0.285156 -0.0410156 0 + 0.333984 -0.0683594 0 + 0.751953 0.388672 0 + 0.179688 0.382813 0 + 0.173828 0.507813 0 + 0.224609 0.472656 0 + 0.726563 0.333984 0 + 0.355469 0.697266 0 + 0.650391 0.744141 0 + 0.806641 0.744141 0 + 0.835938 0.707031 0 + 0.306641 0.677734 0 + 0.753906 0.330078 0 + 0.226563 0.326172 0 + 1.2207 1.04492 0 + 0.761719 0.263672 0 + 0.748047 0.291016 0 + 0.171875 0.289063 0 + 1.82227 1.0332 0 + 0.177734 0.244141 0 + -0.441406 0.246094 0 + 0.587891 0.644531 0 + 0.525391 0.576172 0 + 0.382813 0.589844 0 + 0.363281 0.65625 0 + 0.480469 0.699219 0 + -0.238281 -0.0273438 0 + 0.623047 -0.0800781 0 + 1.19727 -0.0722656 0 + 1.25391 -0.0253906 0 + -0.28125 0.00585938 0 + 0.0253906 0.398438 0 + 0.560547 0.0683594 0 + 0.947266 0.355469 0 + 0.988281 0.398438 0 + -0.0078125 0.427734 0 + 0.396484 0.679688 0 + 0.566406 0.427734 0 + 0.585938 0.634766 0 + 0.619141 0.679688 0 + 0.367188 0.710938 0 + 0.898438 0.8125 0 + 0.714844 0.917969 0 + 0.09375 0.763672 0 + 0.115234 0.810547 0 + 0.878906 0.841797 0 + 0.222656 0.0644531 0 + 0.787109 0.0390625 0 + -0.271484 1.04297 0 + 0.169922 0.0644531 0 + 0.195313 0.0800781 0 + 0.361328 0.378906 0 + 0.0078125 -0.320313 0 + 0.546875 0.951172 0 + 0.951172 0.642578 0 + -0.00976563 -0.294922 0 + 0.371094 -0.0429688 0 + 0.644531 0.599609 0 + 0.599609 0.921875 0 + 0.623047 0.957031 0 + 0.357422 -0.0195313 0 + 0.910156 0.0507813 0 + 0.560547 0.078125 0 + 0.078125 1.02148 0 + 0.0878906 1.04883 0 + 0.902344 0.0683594 0 + 0.554688 0.345703 0 + 0.457031 0.318359 0 + 0.490234 0.322266 0 + -0.302734 1.34375 0 + 0.527344 0.359375 0 + 0.740234 0.660156 0 + 0.412109 0.371094 0 + 0.580078 0.623047 0 + 0.371094 0.412109 0 + 0.429688 -0.197266 0 + 0.375 0.785156 0 + 0.392578 -0.195313 0 + 0.179688 0.046875 0 + 0.207031 1.02539 0 + 0.144531 0.046875 0 + -0.0332031 0.316406 0 + -0.492188 0.460938 0 + 0.335938 -0.457031 0 + 1.46875 0.423828 0 + 1.50391 0.460938 0 + -0.519531 0.486328 0 + -0.121094 0.740234 0 + 0.34375 -0.0957031 0 + 1.10742 0.705078 0 + 1.13281 0.740234 0 + -0.144531 0.763672 0 + 0.380859 0.869141 0 + 0.498047 0.392578 0 + 0.617188 0.839844 0 + 0.628906 0.869141 0 + 0.369141 0.888672 0 + 0.451172 0.128906 0 + 0.560547 0.101563 0 + 0.246094 1.10547 0 + 0.400391 0.126953 0 + 0.425781 0.142578 0 + 0.591797 0.441406 0 + 0.763672 0.0253906 0 + 0.605469 -0.00585938 0 + 0.71875 0.0117188 0 + 0.644531 0.359375 0 + 0.322266 0.380859 0 + 0.632813 0.402344 0 + 0.414063 0.214844 0 + 1.07813 0.189453 0 + 0.375 0.203125 0 + 0.208984 0.417969 0 + 0.332031 -1.43945 0 + 0.597656 -1.43945 0 + 0.632813 -0.955078 0 + 0.894531 -1.44141 0 + 0.894531 -1.11719 0 + -0.00195313 -1.44141 0 + 0.326172 -1.44141 0 + 0.685547 -1.44141 0 + 0.580078 -1.1543 0 + 1.04492 -1.44141 0 + 0.720703 -1.0957 0 + 0.996094 -1.44141 0 + 1.24805 -1.43945 0 + 0.863281 -1.03906 0 + 1.61133 -1.43945 0 + 1.90625 -1.43945 0 + 1.42383 -0.908203 0 + 0.09375 0.560547 0 + 0.347656 0.560547 0 + 0.605469 1.06836 0 + 0.193359 -1.43945 0 + 0.599609 -1.43945 0 + 0.972656 -1.43945 0 + 0.675781 -0.771484 0 + 1.01367 -0.792969 0 + 0.550781 -0.794922 0 + 1.37695 -0.767578 0 + 0.634766 -0.609375 0 + 0.855469 -0.509766 0 + 0.601563 -0.511719 0 + 1.39648 -0.626953 0 + 0.486328 -0.263672 0 + 0.693359 -0.263672 0 + 1.54688 -0.263672 0 + 0.71875 0.265625 0 + 0.824219 0.222656 0 + 0.554688 0.222656 0 + 1.32031 0.285156 0 + 1.0957 0.691406 0 + 0.992188 0.685547 0 + 0.511719 0.691406 0 + 1.04492 0.681641 0 + 0.664063 1.09766 0 + 0.601563 1.06055 0 + 0.546875 1.09766 0 + 1.41992 1.04297 0 + 0.433594 1.46484 0 + 0.669922 1.44141 0 + 0.605469 1.44141 0 + 1.58203 1.46875 0 + 0.339844 1.46875 0 + 1.06836 1.9668 0 + 1.08398 1.93945 0 + 1.10156 1.93164 0 + 0.898438 1.93164 0 + 0.925781 1.9707 0 + 0.683594 1.9668 0 + 1.5625 2.28125 0 + -0.332031 0.898438 0 + 0.441406 0.4375 0 + 0.365234 1.94922 0 + -0.441406 2.28125 0 + 0.4375 2.28125 0 + 0.0449219 -0.00390625 0 + 0.183594 0.611328 0 + 1.4043 -0.306641 0 + 1.51953 -0.236328 0 + 0.994141 -0.0078125 0 + 0.886719 -0.0507813 0 + 0.480469 0.427734 0 + 0.470703 0.326172 0 + 1 0.320313 0 + 1.00586 0.400391 0 + -0.529297 -0.255859 0 + -0.445313 -0.318359 0 + 0.0820313 -0.0410156 0 + -0.363281 -0.355469 0 + 0.152344 -0.0683594 0 + 0.365234 -0.355469 0 + 0.449219 -0.306641 0 + 0.820313 0.509766 0 + 0.751953 0.462891 0 + 0.679688 -0.0078125 0 + 0.677734 0.507813 0 + 0.617188 0.509766 0 + 0.333984 0.443359 0 + 0.294922 0.472656 0 + 0.388672 0.462891 0 + 0.191406 0.744141 0 + 0.148438 0.697266 0 + 0.173828 0.322266 0 + 0.806641 0.294922 0 + 0.808594 0.349609 0 + 0.273438 0.443359 0 + 0.865234 0.677734 0 + 0.148438 0.355469 0 + 0.134766 0.306641 0 + -0.226563 1.04492 0 + -0.246094 1 0 + 0.705078 0.744141 0 + 0.71875 1.04492 0 + 0.673828 1.04492 0 + 1.23828 1.00781 0 + 1.25195 0.978516 0 + 0.330078 1 0 + 0.291016 0.978516 0 + -0.822266 1.0332 0 + -0.828125 0.994141 0 + 0.220703 0.28125 0 + 0.822266 0.275391 0 + 1.82227 1.00391 0 + 1.82813 0.994141 0 + -1.44141 1.21484 0 + 2.44141 1.21484 0 + -0.673828 -0.355469 0 + -0.599609 -0.423828 0 + -0.179688 -0.0800781 0 + 0.474609 0.400391 0 + 0.617188 0.373047 0 + 0.722656 0.802734 0 + 0.623047 0.820313 0 + 1.62695 -0.410156 0 + 1.70508 -0.34375 0 + 1.74414 -0.300781 0 + 1.28125 0.00585938 0 + -0.744141 -0.300781 0 + 0.0683594 0.347656 0 + 0.722656 -0.0722656 0 + 0.644531 0.355469 0 + 0.560547 0.347656 0 + 1.00781 0.427734 0 + 0.427734 0.626953 0 + 0.644531 0.0527344 0 + 0.648438 0.414063 0 + 0.632813 0.710938 0 + 0.917969 0.757813 0 + 0.787109 0.90625 0 + 0.121094 0.841797 0 + 1.27734 1.03906 0 + 1.27344 1.06445 0 + 0.822266 1.27148 0 + 0.787109 1.27734 0 + -0.263672 1.06445 0 + -0.265625 1.08008 0 + 1.26563 1.08008 0 + 1.44141 1.37891 0 + 0.822266 0.0429688 0 + 0.638672 0.378906 0 + -0.441406 1.37891 0 + 0.0488281 -0.365234 0 + 0.400391 -0.0839844 0 + 0.470703 0.951172 0 + 0.580078 0.599609 0 + 1.00977 0.705078 0 + 0.642578 0.980469 0 + 0.921875 0.0175781 0 + 0.513672 0.078125 0 + 0.0976563 1.06836 0 + 1.30664 0.318359 0 + 1.30273 0.345703 0 + 0.509766 -0.306641 0 + 0.542969 -0.306641 0 + -0.306641 1.32227 0 + -0.300781 1.35938 0 + 1.30078 0.359375 0 + 1.44141 0.660156 0 + 0.259766 0.660156 0 + 0.498047 0.34375 0 + -0.441406 1.66016 0 + 0.371094 0.652344 0 + 0.398438 0.623047 0 + 0.599609 0.785156 0 + 0.570313 0.802734 0 + 0.628906 0.650391 0 + 0.423828 0.804688 0 + 0.605469 0.570313 0 + 0.576172 0.607422 0 + 0.845703 1.02539 0 + 0.820313 1.04688 0 + 0.25 1.04688 0 + 1.0332 1.31641 0 + -0.103516 1.31641 0 + -0.457031 0.416016 0 + -0.0957031 0.699219 0 + 0.408203 -0.46875 0 + 0.40625 -0.107422 0 + 1.51953 0.486328 0 + 1.14453 0.763672 0 + 0.392578 0.835938 0 + 0.542969 0.382813 0 + 0.630859 0.888672 0 + 0.757813 1.10156 0 + 0.755859 1.12891 0 + 0.59375 0.753906 0 + 0.560547 0.757813 0 + 0.251953 1.12695 0 + 0.25 1.14258 0 + 0.75 1.14258 0 + 0.921875 1.44141 0 + 0.59375 0.105469 0 + 0.408203 0.441406 0 + 0.078125 1.44141 0 + 0.369141 0.0253906 0 + 0.394531 -0.00585938 0 + 0.677734 0.158203 0 + 0.644531 0.177734 0 + 0.650391 0.0117188 0 + 0.367188 0.169922 0 + 0.322266 0.158203 0 + 0.640625 0.177734 0 + 0.597656 0.169922 0 + 0.359375 0.177734 0 + 0.380859 0.158203 0 + 0.601563 0.189453 0 + 0.585938 0.214844 0 + 0.367188 0.402344 0 + 0.119141 0.625 0 + 0.078125 0.601563 0 + 0.894531 0.585938 0 + 0.880859 0.625 0 + -0.105469 0.214844 0 + -0.078125 0.189453 0 + 0.246094 0.417969 0 + 1.11914 0.203125 0 + 0.753906 0.417969 0 + 0.710938 0.5625 0 + 0.861328 0.507813 0 + 0.902344 0.519531 0 + 1.03125 0.455078 0 + 0.585938 0.648438 0 + 0.746094 0.582031 0 + 0.943359 0.541016 0 + 0.505859 0.748047 0 + 0.625 0.662109 0 + 0.667969 0.667969 0 + 0.808594 0.599609 0 + 0.412109 0.763672 0 + 0.507813 0.779297 0 + 0.59375 0.769531 0 + 0.701172 0.673828 0 + 0.511719 0.830078 0 + 0.650391 0.779297 0 + 0.273438 0.726563 0 + 0.388672 0.792969 0 + 0.464844 0.916016 0 + 0.585938 0.830078 0 + 0.513672 1.2793 0 + 0.482422 1.13672 0 + 0.529297 1.13281 0 + 0.443359 1.0293 0 + 0.509766 1.01953 0 + 0.529297 0.921875 0 + 0.390625 1.02734 0 + 0.505859 1.38867 0 + 0.566406 1.25 0 + 0.626953 1.13672 0 + 0.560547 1.01563 0 + 0.572266 1.3457 0 + 0.679688 1.25586 0 + 0.691406 1.12695 0 + 0.625 1.42383 0 + 0.630859 1.35352 0 + 0.730469 1.26172 0 + 0.705078 1.37305 0 + 0.251953 0.742188 0 + 0.164063 0.621094 0 + 0.103516 0.587891 0 + 0.101563 0.425781 0 + 0.03125 0.433594 0 + 0.0507813 0.609375 0 + 0.0976563 0.708984 0 + 0.123047 0.705078 0 + 0.222656 0.761719 0 + 0.382813 0.839844 0 + 0.392578 0.935547 0 + 0.212891 0.777344 0 + 0.347656 0.853516 0 + 0.355469 0.935547 0 +endnode +node aabb wok + parent wsf10_p01_01 + position 0 0 0 + wirecolor 0.882353 0.882353 0.882353 + bitmap NULL + orientation 0 0 0 0 + render 0 + shadow 0 + verts 121 + -5 -5 0 + -4 -5 0 + -3 -5 0 + -2 -5 -0.3 + -1 -5 -0.64 + 0 -5 -0.64 + 1 -5 -0.64 + 2 -5 -0.3 + 3 -5 0 + 4 -5 0 + 5 -5 0 + -5 -4 0 + -4 -4 0 + -3 -4 0 + -2 -4 -0.45 + -1 -4 -0.64 + 0 -4 -0.64 + 1 -4 -0.76 + 2 -4 -0.3 + 3 -4 0 + 4 -4 0 + 5 -4 0 + -5 -3 0 + -4 -3 0 + -3 -3 0 + -2 -3 -0.64 + -1 -3 -0.64 + 0 -3 -0.64 + 1 -3 -0.64 + 2.31 -2.72 -0.64 + 3.31 -2.68 0 + 4 -3 0 + 5 -3 0 + -5 -2 0 + -4 -2 0.07 + -3 -2 0.21 + -1.8 -2 -0.64 + -1 -2 -0.64 + 0 -2 -0.64 + 1 -2 -0.64 + 2 -2 -0.64 + 2.73 -2 -0.19 + 4 -2 0.03 + 5 -2 0 + -5 -1 0 + -4 -1 0.17 + -2.7 -1 0.1 + -1.9 -1 -0.64 + -1 -1 -0.64 + 0 -1 -0.64 + 1 -1 -0.64 + 1.73 -1 -0.64 + 2.63 -1 -0.12 + 4.21 -1 0.03 + 5 -1 0 + -5 0 0 + -4 0 0.16 + -2.76 0 0.07 + -2.35 0 -0.64 + -1 0 -0.64 + 0 0 -0.64 + 1 0 -0.64 + 1.78 -0.11 -0.46 + 3 0 0.01 + 4 0 -0.05 + 5 0 0 + -5 1 0 + -4 1 0.38 + -3.01 0.72 0.19 + -2.56 1 -0.64 + -1 1 -0.64 + 0 1 -0.64 + 1 1 -0.64 + 2.35 1 -0.42 + 3 1 -0.24 + 4 1 0.12 + 5 1 0 + -5 2 0 + -4 2 0 + -3.09 2 -0.19 + -2.19 2 -0.56 + -1 2 -0.64 + 0 2 -0.64 + 1 2 -0.64 + 2 2 -0.52 + 2.58 2 -0.31 + 4 2 0.12 + 5 2 0 + -5 3 0 + -4 3 0 + -2.62 3 -0.23 + -1.57 3 -0.64 + -1 3 -0.64 + 0 3 -0.64 + 1 3 -0.64 + 2 3.26 -0.37 + 3 3 -0.15 + 4 3 0.03 + 5 3 0 + -5 4 0 + -4 4 0 + -2.92 4 0 + -1.91 4 -0.42 + -1 4 -0.53 + 0 4 -0.59 + 1 4 -0.67 + 1.78 4 -0.37 + 2.81 4 -0.08 + 4 4 0.13 + 5 4 0 + -5 5 0 + -4 5 0 + -3 5 0 + -2 5 -0.3 + -1 5 -0.64 + 0 5 -0.64 + 1 5 -0.64 + 2 5 -0.3 + 3 5 0 + 4 5 0 + 5 5 0 + faces 200 + 11 0 12 1 0 0 0 3 + 1 12 0 1 0 0 0 3 + 12 1 13 1 0 0 0 3 + 2 13 1 1 0 0 0 3 + 13 2 14 2 0 0 0 3 + 3 14 2 4 0 0 0 3 + 14 3 15 4 0 0 0 6 + 4 15 3 1 0 0 0 6 + 15 4 16 8 0 0 0 6 + 5 16 4 8 0 0 0 6 + 16 5 17 8 0 0 0 6 + 6 17 5 8 0 0 0 6 + 17 6 18 1 0 0 0 6 + 7 18 6 1 0 0 0 6 + 18 7 19 1 0 0 0 3 + 8 19 7 1 0 0 0 3 + 19 8 20 2 0 0 0 3 + 9 20 8 2 0 0 0 3 + 20 9 21 2 0 0 0 3 + 10 21 9 2 0 0 0 3 + 22 11 23 1 0 0 0 3 + 12 23 11 1 0 0 0 3 + 23 12 24 1 0 0 0 3 + 13 24 12 1 0 0 0 3 + 24 13 25 4 0 0 0 3 + 14 25 13 2 0 0 0 3 + 25 14 26 1 0 0 0 6 + 15 26 14 4 0 0 0 6 + 26 15 27 8 0 0 0 6 + 16 27 15 8 0 0 0 6 + 27 16 28 8 0 0 0 6 + 17 28 16 8 0 0 0 6 + 28 17 29 8 0 0 0 6 + 18 29 17 4 0 0 0 6 + 29 18 30 4 0 0 0 3 + 19 30 18 1 0 0 0 3 + 30 19 31 2 0 0 0 3 + 20 31 19 2 0 0 0 3 + 31 20 32 2 0 0 0 3 + 21 32 20 2 0 0 0 3 + 33 22 34 1 0 0 0 3 + 23 34 22 1 0 0 0 3 + 34 23 35 1 0 0 0 3 + 24 35 23 2 0 0 0 3 + 35 24 36 4 0 0 0 3 + 25 36 24 4 0 0 0 3 + 36 25 37 8 0 0 0 6 + 26 37 25 8 0 0 0 6 + 37 26 38 8 0 0 0 6 + 27 38 26 8 0 0 0 6 + 38 27 39 8 0 0 0 6 + 28 39 27 8 0 0 0 6 + 39 28 40 8 0 0 0 6 + 29 40 28 8 0 0 0 6 + 40 29 41 16 0 0 0 3 + 30 41 29 16 0 0 0 3 + 41 30 42 2 0 0 0 3 + 31 42 30 2 0 0 0 3 + 42 31 43 2 0 0 0 3 + 32 43 31 2 0 0 0 3 + 44 33 45 1 0 0 0 3 + 34 45 33 1 0 0 0 3 + 45 34 46 1 0 0 0 3 + 35 46 34 8 0 0 0 3 + 46 35 47 16 0 0 0 3 + 36 47 35 32 0 0 0 3 + 47 36 48 8 0 0 0 6 + 37 48 36 8 0 0 0 6 + 48 37 49 8 0 0 0 6 + 38 49 37 8 0 0 0 6 + 49 38 50 8 0 0 0 6 + 39 50 38 8 0 0 0 6 + 50 39 51 8 0 0 0 6 + 40 51 39 8 0 0 0 6 + 51 40 52 16 0 0 0 3 + 41 52 40 16 0 0 0 3 + 52 41 53 2 0 0 0 3 + 42 53 41 2 0 0 0 3 + 53 42 54 2 0 0 0 3 + 43 54 42 2 0 0 0 3 + 55 44 56 1 0 0 0 3 + 45 56 44 1 0 0 0 3 + 56 45 57 1 0 0 0 3 + 46 57 45 1 0 0 0 3 + 57 46 58 2 0 0 0 3 + 47 58 46 4 0 0 0 3 + 58 47 59 8 0 0 0 6 + 48 59 47 8 0 0 0 6 + 59 48 60 8 0 0 0 6 + 49 60 48 8 0 0 0 6 + 60 49 61 8 0 0 0 6 + 50 61 49 8 0 0 0 6 + 61 50 62 8 0 0 0 6 + 51 62 50 1 0 0 0 6 + 62 51 63 2 0 0 0 3 + 52 63 51 4 0 0 0 3 + 63 52 64 1 0 0 0 3 + 53 64 52 2 0 0 0 3 + 64 53 65 2 0 0 0 3 + 54 65 53 2 0 0 0 3 + 66 55 67 2 0 0 0 7 + 56 67 55 4 0 0 0 7 + 67 56 68 1 0 0 0 7 + 57 68 56 1 0 0 0 3 + 68 57 69 2 0 0 0 3 + 58 69 57 2 0 0 0 3 + 69 58 70 8 0 0 0 6 + 59 70 58 8 0 0 0 6 + 70 59 71 8 0 0 0 6 + 60 71 59 8 0 0 0 6 + 71 60 72 8 0 0 0 6 + 61 72 60 8 0 0 0 6 + 72 61 73 8 0 0 0 6 + 62 73 61 8 0 0 0 6 + 73 62 74 8 0 0 0 3 + 63 74 62 8 0 0 0 3 + 74 63 75 8 0 0 0 3 + 64 75 63 1 0 0 0 3 + 75 64 76 1 0 0 0 3 + 65 76 64 2 0 0 0 3 + 77 66 78 1 0 0 0 3 + 67 78 66 8 0 0 0 7 + 78 67 79 16 0 0 0 7 + 68 79 67 16 0 0 0 7 + 79 68 80 16 0 0 0 7 + 69 80 68 4 0 0 0 3 + 80 69 81 8 0 0 0 6 + 70 81 69 8 0 0 0 6 + 81 70 82 8 0 0 0 6 + 71 82 70 8 0 0 0 6 + 82 71 83 8 0 0 0 6 + 72 83 71 8 0 0 0 6 + 83 72 84 8 0 0 0 6 + 73 84 72 8 0 0 0 6 + 84 73 85 8 0 0 0 3 + 74 85 73 8 0 0 0 3 + 85 74 86 8 0 0 0 3 + 75 86 74 8 0 0 0 3 + 86 75 87 1 0 0 0 3 + 76 87 75 1 0 0 0 3 + 88 77 89 1 0 0 0 3 + 78 89 77 1 0 0 0 3 + 89 78 90 1 0 0 0 3 + 79 90 78 1 0 0 0 7 + 90 79 91 2 0 0 0 7 + 80 91 79 2 0 0 0 7 + 91 80 92 8 0 0 0 6 + 81 92 80 8 0 0 0 6 + 92 81 93 8 0 0 0 6 + 82 93 81 8 0 0 0 6 + 93 82 94 8 0 0 0 6 + 83 94 82 8 0 0 0 6 + 94 83 95 8 0 0 0 6 + 84 95 83 8 0 0 0 6 + 95 84 96 8 0 0 0 3 + 85 96 84 8 0 0 0 3 + 96 85 97 8 0 0 0 3 + 86 97 85 8 0 0 0 3 + 97 86 98 1 0 0 0 3 + 87 98 86 1 0 0 0 3 + 99 88 100 1 0 0 0 3 + 89 100 88 1 0 0 0 3 + 100 89 101 1 0 0 0 3 + 90 101 89 1 0 0 0 3 + 101 90 102 2 0 0 0 3 + 91 102 90 2 0 0 0 6 + 102 91 103 8 0 0 0 6 + 92 103 91 8 0 0 0 6 + 103 92 104 8 0 0 0 6 + 93 104 92 8 0 0 0 6 + 104 93 105 8 0 0 0 6 + 94 105 93 8 0 0 0 6 + 105 94 106 8 0 0 0 6 + 95 106 94 8 0 0 0 6 + 106 95 107 8 0 0 0 3 + 96 107 95 8 0 0 0 3 + 107 96 108 8 0 0 0 3 + 97 108 96 8 0 0 0 3 + 108 97 109 1 0 0 0 3 + 98 109 97 1 0 0 0 3 + 110 99 111 1 0 0 0 3 + 100 111 99 1 0 0 0 3 + 111 100 112 1 0 0 0 3 + 101 112 100 1 0 0 0 3 + 112 101 113 2 0 0 0 3 + 102 113 101 2 0 0 0 3 + 113 102 114 2 0 0 0 6 + 103 114 102 8 0 0 0 6 + 114 103 115 8 0 0 0 6 + 104 115 103 8 0 0 0 6 + 115 104 116 8 0 0 0 6 + 105 116 104 8 0 0 0 6 + 116 105 117 8 0 0 0 6 + 106 117 105 8 0 0 0 6 + 117 106 118 8 0 0 0 3 + 107 118 106 8 0 0 0 3 + 118 107 119 1 0 0 0 3 + 108 119 107 2 0 0 0 3 + 119 108 120 2 0 0 0 3 + 109 120 108 1 0 0 0 3 + aabb -5 -5 -0.76 5 5 0.38 -1 + -5 -5 -0.64 0 5 0.38 -1 + -5 -5 -0.64 0 0 0.21 -1 + -5 -5 -0.64 -1.8 0 0.21 -1 + -5 -5 -0.64 -2 -2 0.21 -1 + -5 -5 0 -4 -2 0.07 -1 + -5 -5 0 -4 -4 0 -1 + -5 -5 0 -4 -4 0 0 + -5 -5 0 -4 -4 0 1 + -5 -4 0 -4 -2 0.07 -1 + -5 -4 0 -4 -3 0 -1 + -5 -4 0 -4 -3 0 20 + -5 -4 0 -4 -3 0 21 + -5 -3 0 -4 -2 0.07 41 + -4 -5 -0.64 -2 -2 0.21 -1 + -4 -5 -0.45 -2 -4 0 -1 + -4 -5 0 -3 -4 0 -1 + -4 -5 0 -3 -4 0 2 + -4 -5 0 -3 -4 0 3 + -3 -5 -0.45 -2 -4 0 4 + -4 -4 -0.64 -2 -2 0.21 -1 + -4 -4 0 -3 -2 0.21 -1 + -4 -4 0 -3 -3 0 -1 + -4 -4 0 -3 -3 0 22 + -4 -4 0 -3 -3 0 23 + -4 -3 0 -3 -2 0.21 43 + -3 -4 -0.64 -2 -3 0 24 + -5 -3 -0.64 -1.8 0 0.21 -1 + -5 -3 0 -3 0 0.21 -1 + -5 -3 0 -3 -1 0.21 -1 + -5 -3 0 -4 -1 0.17 -1 + -5 -3 0 -4 -2 0.07 40 + -5 -2 0 -4 -1 0.17 61 + -4 -3 0 -3 -2 0.21 42 + -5 -2 0 -4 0 0.17 -1 + -5 -2 0 -4 -1 0.17 60 + -5 -1 0 -4 0 0.17 -1 + -5 -1 0 -4 0 0.16 80 + -5 -1 0 -4 0 0.17 81 + -4 -3 -0.64 -1.8 0 0.21 -1 + -4 -3 -0.64 -1.8 -1 0.21 -1 + -4 -2 0.07 -2.7 -1 0.21 -1 + -4 -2 0.07 -2.7 -1 0.17 62 + -4 -2 0.07 -2.7 -1 0.21 63 + -3 -3 -0.64 -1.8 -1 0.21 -1 + -3 -3 -0.64 -1.8 -2 0.21 44 + -3 -2 -0.64 -1.9 -1 0.21 64 + -4 -1 -0.64 -2.35 0 0.17 -1 + -4 -1 0.07 -2.7 0 0.17 -1 + -4 -1 0.07 -2.76 0 0.17 82 + -4 -1 0.07 -2.7 0 0.17 83 + -2.76 -1 -0.64 -2.35 0 0.1 84 + -3 -5 -0.64 0 0 0.21 -1 + -3 -5 -0.64 0 -2 0 -1 + -3 -5 -0.64 -1 -2 0 -1 + -3 -5 -0.64 -1 -4 0 -1 + -3 -5 -0.45 -2 -4 0 5 + -2 -5 -0.64 -1 -4 -0.3 -1 + -2 -5 -0.64 -1 -4 -0.3 6 + -2 -5 -0.64 -1 -4 -0.3 7 + -3 -4 -0.64 -1 -2 0 -1 + -3 -4 -0.64 -1.8 -2 0 -1 + -3 -4 -0.64 -2 -3 0 25 + -3 -3 -0.64 -1.8 -2 0 45 + -2 -4 -0.64 -1 -2 -0.45 -1 + -2 -4 -0.64 -1 -3 -0.45 -1 + -2 -4 -0.64 -1 -3 -0.45 26 + -2 -4 -0.64 -1 -3 -0.45 27 + -2 -3 -0.64 -1 -2 -0.64 47 + -1 -5 -0.64 0 -2 -0.64 -1 + -1 -5 -0.64 0 -4 -0.64 -1 + -1 -5 -0.64 0 -4 -0.64 8 + -1 -5 -0.64 0 -4 -0.64 9 + -1 -4 -0.64 0 -2 -0.64 -1 + -1 -4 -0.64 0 -3 -0.64 -1 + -1 -4 -0.64 0 -3 -0.64 28 + -1 -4 -0.64 0 -3 -0.64 29 + -1 -3 -0.64 0 -2 -0.64 49 + -3 -3 -0.64 0 0 0.21 -1 + -3 -3 -0.64 -1 0 0.21 -1 + -3 -3 -0.64 -1 -1 0.21 -1 + -3 -2 -0.64 -1.8 -1 0.21 65 + -2 -3 -0.64 -1 -1 -0.64 -1 + -2 -3 -0.64 -1 -2 -0.64 46 + -1.9 -2 -0.64 -1 -1 -0.64 -1 + -1.8 -2 -0.64 -1 -1 -0.64 67 + -1.9 -2 -0.64 -1 -1 -0.64 66 + -2.7 -1 -0.64 -1 0 0.1 -1 + -2.7 -1 -0.64 -1.9 0 0.1 85 + -2.35 -1 -0.64 -1 0 -0.64 -1 + -2.35 -1 -0.64 -1 0 -0.64 86 + -1.9 -1 -0.64 -1 0 -0.64 87 + -1 -3 -0.64 0 0 -0.64 -1 + -1 -3 -0.64 0 -1 -0.64 -1 + -1 -3 -0.64 0 -2 -0.64 48 + -1 -2 -0.64 0 -1 -0.64 -1 + -1 -2 -0.64 0 -1 -0.64 68 + -1 -2 -0.64 0 -1 -0.64 69 + -1 -1 -0.64 0 0 -0.64 -1 + -1 -1 -0.64 0 0 -0.64 88 + -1 -1 -0.64 0 0 -0.64 89 + -5 0 -0.64 0 5 0.38 -1 + -5 0 -0.64 -2 5 0.38 -1 + -5 0 -0.64 -2.19 2 0.38 -1 + -5 0 -0.19 -3.01 2 0.38 -1 + -5 0 0 -3.01 1 0.38 -1 + -5 0 0 -4 1 0.38 -1 + -5 0 0 -4 1 0.38 100 + -5 0 0 -4 1 0.38 101 + -4 0 0.16 -3.01 1 0.38 102 + -5 1 -0.19 -3.09 2 0.38 -1 + -5 1 0 -4 2 0.38 -1 + -5 1 0 -4 2 0 120 + -5 1 0 -4 2 0.38 121 + -4 1 -0.19 -3.09 2 0.38 122 + -4 0 -0.64 -2.19 2 0.38 -1 + -4 0 -0.64 -2.35 1 0.19 -1 + -4 0 0.07 -2.76 0.72 0.19 103 + -3.01 0 -0.64 -2.35 1 0.19 -1 + -2.76 0 -0.64 -2.35 1 0.07 105 + -3.01 0 -0.64 -2.56 1 0.19 104 + -4 0.72 -0.64 -2.19 2 0.38 -1 + -4 0.72 -0.19 -3.01 2 0.38 123 + -3.09 0.72 -0.64 -2.19 2 0.19 -1 + -3.01 0.72 -0.64 -2.19 2 0.19 125 + -3.09 0.72 -0.56 -2.19 2 0.19 124 + -5 2 -0.3 -2 5 0 -1 + -5 2 0 -4 5 0 -1 + -5 2 0 -4 4 0 -1 + -5 2 0 -4 3 0 -1 + -5 2 0 -4 3 0 140 + -5 2 0 -4 3 0 141 + -5 3 0 -4 4 0 161 + -5 3 0 -4 5 0 -1 + -5 3 0 -4 4 0 160 + -5 4 0 -4 5 0 -1 + -5 4 0 -4 5 0 180 + -5 4 0 -4 5 0 181 + -4 2 -0.3 -2 5 0 -1 + -4 2 -0.23 -2.62 4 0 -1 + -4 2 -0.23 -2.62 3 0 -1 + -4 2 -0.23 -2.62 3 0 142 + -4 2 -0.23 -2.62 3 0 143 + -4 3 -0.23 -2.62 4 0 -1 + -4 3 0 -2.92 4 0 162 + -4 3 -0.23 -2.62 4 0 163 + -4 4 -0.3 -2 5 0 -1 + -4 4 0 -2.92 5 0 -1 + -4 4 0 -3 5 0 182 + -4 4 0 -2.92 5 0 183 + -3 4 -0.3 -2 5 0 184 + -3.09 0 -0.64 0 5 0 -1 + -3.09 0 -0.64 0 3 -0.19 -1 + -3.09 0 -0.64 -1 3 -0.19 -1 + -2.56 0 -0.64 -1 2 -0.64 -1 + -2.56 0 -0.64 -1 1 -0.64 -1 + -2.56 0 -0.64 -1 1 -0.64 106 + -2.35 0 -0.64 -1 1 -0.64 107 + -2.56 1 -0.64 -1 2 -0.64 127 + -3.09 1 -0.64 -1 3 -0.19 -1 + -3.09 1 -0.64 -1 3 -0.19 -1 + -3.09 2 -0.64 -1.57 3 -0.19 145 + -2.56 1 -0.64 -1 2 -0.56 126 + -2.19 2 -0.64 -1 3 -0.56 147 + -1 0 -0.64 0 3 -0.64 -1 + -1 0 -0.64 0 1 -0.64 -1 + -1 0 -0.64 0 1 -0.64 108 + -1 0 -0.64 0 1 -0.64 109 + -1 1 -0.64 0 3 -0.64 -1 + -1 1 -0.64 0 2 -0.64 -1 + -1 1 -0.64 0 2 -0.64 128 + -1 1 -0.64 0 2 -0.64 129 + -1 2 -0.64 0 3 -0.64 149 + -3.09 2 -0.64 0 5 0 -1 + -3.09 2 -0.64 -1 5 0 -1 + -3.09 2 -0.64 -1 4 -0.19 -1 + -3.09 2 -0.64 -1.57 4 -0.19 -1 + -3.09 2 -0.64 -1.57 3 -0.19 144 + -2.62 3 -0.64 -1.57 4 -0.23 165 + -2.19 2 -0.64 -1 3 -0.56 146 + -2.92 3 -0.64 -1 5 0 -1 + -2.92 3 -0.64 -1 4 0 -1 + -2.92 3 -0.42 -1.91 4 0 164 + -1.91 3 -0.64 -1 4 -0.42 166 + -2.92 4 -0.64 -1 5 0 -1 + -2.92 4 -0.42 -1.91 5 0 185 + -2 4 -0.64 -1 5 -0.3 186 + -1.91 2 -0.64 0 5 -0.42 -1 + -1.57 2 -0.64 0 4 -0.53 -1 + -1 2 -0.64 0 3 -0.64 148 + -1.57 3 -0.64 0 4 -0.53 -1 + -1.57 3 -0.64 -1 4 -0.53 167 + -1 3 -0.64 0 4 -0.53 -1 + -1 3 -0.64 0 4 -0.53 168 + -1 3 -0.64 0 4 -0.59 169 + -1.91 4 -0.64 0 5 -0.42 -1 + -1.91 4 -0.64 -1 5 -0.42 187 + -1 4 -0.64 0 5 -0.53 -1 + -1 4 -0.64 0 5 -0.53 188 + -1 4 -0.64 0 5 -0.53 189 + 0 -5 -0.76 5 5 0.13 -1 + 0 -5 -0.76 5 0 0.03 -1 + 0 -5 -0.76 3 0 0.01 -1 + 0 -5 -0.76 3 -2 0 -1 + 0 -5 -0.76 1 -2 -0.64 -1 + 0 -5 -0.76 1 -3 -0.64 -1 + 0 -5 -0.76 1 -4 -0.64 -1 + 0 -5 -0.76 1 -4 -0.64 10 + 0 -5 -0.76 1 -4 -0.64 11 + 0 -4 -0.76 1 -3 -0.64 31 + 0 -4 -0.64 1 -2 -0.64 -1 + 0 -4 -0.64 1 -3 -0.64 30 + 0 -3 -0.64 1 -2 -0.64 -1 + 0 -3 -0.64 1 -2 -0.64 50 + 0 -3 -0.64 1 -2 -0.64 51 + 1 -5 -0.76 3 -2 0 -1 + 1 -5 -0.76 3 -4 0 -1 + 1 -5 -0.76 2 -4 -0.3 -1 + 1 -5 -0.76 2 -4 -0.3 12 + 1 -5 -0.64 2 -4 -0.3 13 + 2 -5 -0.3 3 -4 0 14 + 1 -4 -0.76 2.31 -2 -0.3 -1 + 1 -4 -0.76 2.31 -2.72 -0.3 -1 + 1 -4 -0.76 2.31 -2.72 -0.64 32 + 1 -4 -0.76 2.31 -2.72 -0.3 33 + 1 -3 -0.64 2.31 -2 -0.64 -1 + 1 -3 -0.64 2 -2 -0.64 52 + 1 -3 -0.64 2.31 -2 -0.64 53 + 0 -2.72 -0.64 3 0 0.01 -1 + 0 -2 -0.64 1.78 0 -0.46 -1 + 0 -2 -0.64 1.73 -1 -0.64 -1 + 0 -2 -0.64 1 -1 -0.64 -1 + 0 -2 -0.64 1 -1 -0.64 70 + 0 -2 -0.64 1 -1 -0.64 71 + 1 -2 -0.64 1.73 -1 -0.64 72 + 0 -1 -0.64 1.78 0 -0.46 -1 + 0 -1 -0.64 1 0 -0.64 -1 + 0 -1 -0.64 1 0 -0.64 90 + 0 -1 -0.64 1 0 -0.64 91 + 1 -1 -0.64 1.78 0 -0.46 92 + 1 -2.72 -0.64 3 0 0.01 -1 + 1 -2.72 -0.64 2.73 -1 -0.12 -1 + 1 -2 -0.64 2.63 -1 -0.12 -1 + 1 -2 -0.64 2 -1 -0.64 73 + 1.73 -2 -0.64 2.63 -1 -0.12 74 + 2 -2.72 -0.64 2.73 -1 -0.12 -1 + 2 -2.72 -0.64 2.73 -2 -0.19 54 + 2 -2 -0.64 2.73 -1 -0.12 75 + 1 -1 -0.64 3 0 0.01 -1 + 1 -1 -0.64 1.78 -0.11 -0.46 93 + 1.73 -1 -0.64 3 0 0.01 -1 + 1.73 -1 -0.64 3 0 0.01 94 + 1.73 -1 -0.64 3 0 0.01 95 + 2 -5 -0.64 5 0 0.03 -1 + 2 -5 -0.64 5 -2 0 -1 + 2 -5 -0.64 4 -2.68 0 -1 + 2 -5 -0.3 4 -4 0 -1 + 2 -5 -0.3 3 -4 0 15 + 3 -5 0 4 -4 0 -1 + 3 -5 0 4 -4 0 16 + 3 -5 0 4 -4 0 17 + 2 -4 -0.64 4 -2.68 0 -1 + 2 -4 -0.64 3.31 -2.68 0 -1 + 2 -4 -0.3 3.31 -2.68 0 35 + 2 -4 -0.64 3.31 -2.68 0 34 + 3 -4 0 4 -2.68 0 -1 + 3 -4 0 4 -3 0 37 + 3 -4 0 4 -2.68 0 36 + 4 -5 0 5 -2 0 -1 + 4 -5 0 5 -4 0 -1 + 4 -5 0 5 -4 0 18 + 4 -5 0 5 -4 0 19 + 4 -4 0 5 -2 0 -1 + 4 -4 0 5 -3 0 -1 + 4 -4 0 5 -3 0 38 + 4 -4 0 5 -3 0 39 + 4 -3 0 5 -2 0 59 + 2.31 -3 -0.64 5 0 0.03 -1 + 2.31 -3 -0.64 5 -1 0.03 -1 + 2.31 -2.72 -0.64 4.21 -1 0.03 -1 + 2.31 -2.72 -0.64 3.31 -2 0 55 + 2.73 -2.68 -0.19 4.21 -1 0.03 -1 + 2.73 -2.68 -0.19 4 -2 0.03 56 + 2.73 -2 -0.19 4.21 -1 0.03 77 + 3.31 -3 0 5 -1 0.03 -1 + 3.31 -3 0 5 -2 0.03 -1 + 3.31 -3 0 4 -2 0.03 57 + 4 -3 0 5 -2 0.03 58 + 4 -2 0 5 -1 0.03 79 + 2.63 -2 -0.19 5 0 0.03 -1 + 2.63 -2 -0.19 4.21 0 0.03 -1 + 2.63 -2 -0.19 4.21 -1 0.03 76 + 2.63 -1 -0.12 4.21 0 0.03 -1 + 2.63 -1 -0.12 4 0 0.01 96 + 2.63 -1 -0.12 4.21 0 0.03 97 + 4 -2 -0.05 5 0 0.03 -1 + 4 -2 0 5 -1 0.03 78 + 4 -1 -0.05 5 0 0.03 -1 + 4 -1 -0.05 5 0 0.03 98 + 4.21 -1 0 5 0 0.03 99 + 0 -0.11 -0.67 5 5 0.13 -1 + 0 -0.11 -0.64 5 3.26 0.12 -1 + 0 -0.11 -0.64 3 3.26 -0.24 -1 + 0 -0.11 -0.64 3 1 -0.24 -1 + 0 0 -0.64 1 1 -0.64 -1 + 0 0 -0.64 1 1 -0.64 110 + 0 0 -0.64 1 1 -0.64 111 + 1 -0.11 -0.64 3 1 -0.24 -1 + 1 -0.11 -0.64 2.35 1 -0.42 -1 + 1 0 -0.64 2.35 1 -0.42 112 + 1 -0.11 -0.64 2.35 1 -0.42 113 + 1.78 -0.11 -0.46 3 1 -0.24 114 + 0 1 -0.64 2.58 3.26 -0.31 -1 + 0 1 -0.64 1 3 -0.64 -1 + 0 1 -0.64 1 2 -0.64 -1 + 0 1 -0.64 1 2 -0.64 130 + 0 1 -0.64 1 2 -0.64 131 + 0 2 -0.64 1 3 -0.64 151 + 1 1 -0.64 2.58 3.26 -0.31 -1 + 1 1 -0.64 2.58 2 -0.31 -1 + 1 1 -0.64 2.35 2 -0.42 -1 + 1 1 -0.64 2 2 -0.52 132 + 1 1 -0.64 2.35 2 -0.42 133 + 2 1 -0.52 2.58 2 -0.31 134 + 1 2 -0.64 2 3.26 -0.37 153 + 1.78 -0.11 -0.52 5 3 0.12 -1 + 1.78 -0.11 -0.52 4 3 0.12 -1 + 1.78 -0.11 -0.46 4 1 0.12 -1 + 1.78 -0.11 -0.46 3 1 0.01 115 + 3 0 -0.24 4 1 0.12 -1 + 3 0 -0.24 4 1 0.12 116 + 3 0 -0.05 4 1 0.12 117 + 2 1 -0.52 4 3 0.12 -1 + 2 1 -0.52 3 3 -0.15 -1 + 2.35 1 -0.42 3 2 -0.24 135 + 2 2 -0.52 3 3 -0.15 155 + 2.58 1 -0.31 4 3 0.12 -1 + 2.58 1 -0.31 4 2 0.12 -1 + 2.58 1 -0.31 4 2 0.12 136 + 3 1 -0.24 4 2 0.12 137 + 2.58 2 -0.31 4 3 0.12 157 + 4 0 -0.05 5 3 0.12 -1 + 4 0 -0.05 5 1 0.12 -1 + 4 0 -0.05 5 1 0.12 118 + 4 0 -0.05 5 1 0 119 + 4 1 0 5 3 0.12 -1 + 4 1 0 5 2 0.12 -1 + 4 1 0 5 2 0.12 138 + 4 1 0 5 2 0.12 139 + 4 2 0 5 3 0.12 159 + 0 2 -0.67 5 5 0.13 -1 + 0 2 -0.67 3 5 0 -1 + 0 2 -0.67 1 5 -0.59 -1 + 0 2 -0.67 1 4 -0.59 -1 + 0 2 -0.64 1 3 -0.64 150 + 0 3 -0.67 1 4 -0.59 -1 + 0 3 -0.67 1 4 -0.59 170 + 0 3 -0.67 1 4 -0.64 171 + 0 4 -0.67 1 5 -0.59 -1 + 0 4 -0.64 1 5 -0.59 190 + 0 4 -0.67 1 5 -0.59 191 + 1 2 -0.67 3 5 0 -1 + 1 2 -0.67 3 4 -0.15 -1 + 1 2 -0.67 2 4 -0.37 -1 + 1 2 -0.64 2 3.26 -0.37 152 + 1 3 -0.67 2 4 -0.37 -1 + 1 3 -0.67 1.78 4 -0.37 172 + 1 3 -0.64 2 4 -0.37 173 + 2 2 -0.52 3 3.26 -0.15 154 + 1 3.26 -0.67 3 5 0 -1 + 1 4 -0.67 2 5 -0.3 -1 + 1 4 -0.67 2 5 -0.3 192 + 1 4 -0.67 2 5 -0.3 193 + 1.78 3.26 -0.37 3 5 0 -1 + 1.78 3.26 -0.37 2.81 4 -0.08 174 + 1.78 4 -0.37 3 5 0 194 + 1.78 2 -0.37 5 5 0.13 -1 + 1.78 2 -0.37 4 5 0.13 -1 + 2 2 -0.37 4 4 0.13 -1 + 2 3 -0.37 3 4 -0.08 175 + 2.58 2 -0.31 4 4 0.13 -1 + 2.58 2 -0.31 4 3 0.03 156 + 2.81 3 -0.15 4 4 0.13 -1 + 2.81 3 -0.15 4 4 0.13 176 + 3 3 -0.15 4 4 0.13 177 + 1.78 4 -0.37 4 5 0.13 -1 + 1.78 4 -0.37 3 5 0 195 + 2.81 4 -0.08 4 5 0.13 -1 + 2.81 4 -0.08 4 5 0 196 + 2.81 4 -0.08 4 5 0.13 197 + 4 2 0 5 5 0.13 -1 + 4 2 0 5 4 0.13 -1 + 4 2 0 5 3 0.12 158 + 4 3 0 5 4 0.13 -1 + 4 3 0 5 4 0.13 178 + 4 3 0 5 4 0.03 179 + 4 4 0 5 5 0.13 -1 + 4 4 0 5 5 0.13 198 + 4 4 0 5 5 0.13 199 +endnode +node dummy wsf10_p01_01a + parent wsf10_p01_01 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 1 0 0 +endnode +node dummy cm3_repair_1 + parent wsf10_p01_01a + position 0 0 0 + orientation 0 0 -1 -3.14159 + wirecolor 0.603922 0.603922 0.898039 +endnode +node trimesh water + parent cm3_repair_1 + position 5.49674e-07 4.1391e-06 -0.4 + orientation 0 0 -1 -3.14159 + wirecolor 0.109804 0.109804 0.109804 + tilefade 0 + scale 1 + render 1 + beaming 0 + inheritcolor 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + center 0 0 0 + bitmap nwr_sfwater01 + rotatetexture 1 + shadow 0 + verts 121 + -5 -5 0 + -4 -5 0 + -3 -5 0 + -2 -5 0 + -1 -5 0 + 0 -5 0 + 1 -5 0 + 2 -5 0 + 3 -5 0 + 4 -5 0 + 5 -5 0 + -5 -4 0 + -4 -4 0 + -3 -4 0 + -2 -4 0 + -1 -4 0 + 0 -4 0 + 1 -4 0 + 2 -4 0 + 3 -4 0 + 4 -4 0 + 5 -4 0 + -5 -3 0 + -4 -3 0 + -3 -3 0 + -2 -3 0 + -1 -3 0 + 0 -3 0 + 1 -3 0 + 2 -3 0 + 3 -3 0 + 4 -3 0 + 5 -3 0 + -5 -2 0 + -4 -2 0 + -3 -2 0 + -2 -2 0 + -1 -2 0 + 0 -2 0 + 1 -2 0 + 2 -2 0 + 3 -2 0 + 4 -2 0 + 5 -2 0 + -5 -1 0 + -4 -1 0 + -3 -1 0 + -2 -1 0 + -1 -1 0 + 0 -1 0 + 1 -1 0 + 2 -1 0 + 3 -1 0 + 4 -1 0 + 5 -1 0 + -5 0 0 + -4 0 0 + -3 0 0 + -2 0 0 + -1 0 0 + 0 0 0 + 1 0 0 + 2 0 0 + 3 0 0 + 4 0 0 + 5 0 0 + -5 1 0 + -4 1 0 + -3 1 0 + -2 1 0 + -1 1 0 + 0 1 0 + 1 1 0 + 2 1 0 + 3 1 0 + 4 1 0 + 5 1 0 + -5 2 0 + -4 2 0 + -3 2 0 + -2 2 0 + -1 2 0 + 0 2 0 + 1 2 0 + 2 2 0 + 3 2 0 + 4 2 0 + 5 2 0 + -5 3 0 + -4 3 0 + -3 3 0 + -2 3 0 + -1 3 0 + 0 3 0 + 1 3 0 + 2 3 0 + 3 3 0 + 4 3 0 + 5 3 0 + -5 4 0 + -4 4 0 + -3 4 0 + -2 4 0 + -1 4 0 + 0 4 0 + 1 4 0 + 2 4 0 + 3 4 0 + 4 4 0 + 5 4 0 + -5 5 0 + -4 5 0 + -3 5 0 + -2 5 0 + -1 5 0 + 0 5 0 + 1 5 0 + 2 5 0 + 3 5 0 + 4 5 0 + 5 5 0 + faces 200 + 11 0 12 1 11 0 12 0 + 1 12 0 1 1 12 0 0 + 12 1 13 1 12 1 13 0 + 2 13 1 1 2 13 1 0 + 13 2 14 1 13 2 14 0 + 3 14 2 1 3 14 2 0 + 14 3 15 1 14 3 15 0 + 4 15 3 1 4 15 3 0 + 15 4 16 1 15 4 16 0 + 5 16 4 1 5 16 4 0 + 16 5 17 1 16 5 17 0 + 6 17 5 1 6 17 5 0 + 17 6 18 1 17 6 18 0 + 7 18 6 1 7 18 6 0 + 18 7 19 1 18 7 19 0 + 8 19 7 1 8 19 7 0 + 19 8 20 1 19 8 20 0 + 9 20 8 1 9 20 8 0 + 20 9 21 1 20 9 21 0 + 10 21 9 1 10 21 9 0 + 22 11 23 1 22 11 23 0 + 12 23 11 1 12 23 11 0 + 23 12 24 1 23 12 24 0 + 13 24 12 1 13 24 12 0 + 24 13 25 1 24 13 25 0 + 14 25 13 1 14 25 13 0 + 25 14 26 1 25 14 26 0 + 15 26 14 1 15 26 14 0 + 26 15 27 1 26 15 27 0 + 16 27 15 1 16 27 15 0 + 27 16 28 1 27 16 28 0 + 17 28 16 1 17 28 16 0 + 28 17 29 1 28 17 29 0 + 18 29 17 1 18 29 17 0 + 29 18 30 1 29 18 30 0 + 19 30 18 1 19 30 18 0 + 30 19 31 1 30 19 31 0 + 20 31 19 1 20 31 19 0 + 31 20 32 1 31 20 32 0 + 21 32 20 1 21 32 20 0 + 33 22 34 1 33 22 34 0 + 23 34 22 1 23 34 22 0 + 34 23 35 1 34 23 35 0 + 24 35 23 1 24 35 23 0 + 35 24 36 1 35 24 36 0 + 25 36 24 1 25 36 24 0 + 36 25 37 1 36 25 37 0 + 26 37 25 1 26 37 25 0 + 37 26 38 1 37 26 38 0 + 27 38 26 1 27 38 26 0 + 38 27 39 1 38 27 39 0 + 28 39 27 1 28 39 27 0 + 39 28 40 1 39 28 40 0 + 29 40 28 1 29 40 28 0 + 40 29 41 1 40 29 41 0 + 30 41 29 1 30 41 29 0 + 41 30 42 1 41 30 42 0 + 31 42 30 1 31 42 30 0 + 42 31 43 1 42 31 43 0 + 32 43 31 1 32 43 31 0 + 44 33 45 1 44 33 45 0 + 34 45 33 1 34 45 33 0 + 45 34 46 1 45 34 46 0 + 35 46 34 1 35 46 34 0 + 46 35 47 1 46 35 47 0 + 36 47 35 1 36 47 35 0 + 47 36 48 1 47 36 48 0 + 37 48 36 1 37 48 36 0 + 48 37 49 1 48 37 49 0 + 38 49 37 1 38 49 37 0 + 49 38 50 1 49 38 50 0 + 39 50 38 1 39 50 38 0 + 50 39 51 1 50 39 51 0 + 40 51 39 1 40 51 39 0 + 51 40 52 1 51 40 52 0 + 41 52 40 1 41 52 40 0 + 52 41 53 1 52 41 53 0 + 42 53 41 1 42 53 41 0 + 53 42 54 1 53 42 54 0 + 43 54 42 1 43 54 42 0 + 55 44 56 1 55 44 56 0 + 45 56 44 1 45 56 44 0 + 56 45 57 1 56 45 57 0 + 46 57 45 1 46 57 45 0 + 57 46 58 1 57 46 58 0 + 47 58 46 1 47 58 46 0 + 58 47 59 1 58 47 59 0 + 48 59 47 1 48 59 47 0 + 59 48 60 1 59 48 60 0 + 49 60 48 1 49 60 48 0 + 60 49 61 1 60 49 61 0 + 50 61 49 1 50 61 49 0 + 61 50 62 1 61 50 62 0 + 51 62 50 1 51 62 50 0 + 62 51 63 1 62 51 63 0 + 52 63 51 1 52 63 51 0 + 63 52 64 1 63 52 64 0 + 53 64 52 1 53 64 52 0 + 64 53 65 1 64 53 65 0 + 54 65 53 1 54 65 53 0 + 66 55 67 1 66 55 67 0 + 56 67 55 1 56 67 55 0 + 67 56 68 1 67 56 68 0 + 57 68 56 1 57 68 56 0 + 68 57 69 1 68 57 69 0 + 58 69 57 1 58 69 57 0 + 69 58 70 1 69 58 70 0 + 59 70 58 1 59 70 58 0 + 70 59 71 1 70 59 71 0 + 60 71 59 1 60 71 59 0 + 71 60 72 1 71 60 72 0 + 61 72 60 1 61 72 60 0 + 72 61 73 1 72 61 73 0 + 62 73 61 1 62 73 61 0 + 73 62 74 1 73 62 74 0 + 63 74 62 1 63 74 62 0 + 74 63 75 1 74 63 75 0 + 64 75 63 1 64 75 63 0 + 75 64 76 1 75 64 76 0 + 65 76 64 1 65 76 64 0 + 77 66 78 1 77 66 78 0 + 67 78 66 1 67 78 66 0 + 78 67 79 1 78 67 79 0 + 68 79 67 1 68 79 67 0 + 79 68 80 1 79 68 80 0 + 69 80 68 1 69 80 68 0 + 80 69 81 1 80 69 81 0 + 70 81 69 1 70 81 69 0 + 81 70 82 1 81 70 82 0 + 71 82 70 1 71 82 70 0 + 82 71 83 1 82 71 83 0 + 72 83 71 1 72 83 71 0 + 83 72 84 1 83 72 84 0 + 73 84 72 1 73 84 72 0 + 84 73 85 1 84 73 85 0 + 74 85 73 1 74 85 73 0 + 85 74 86 1 85 74 86 0 + 75 86 74 1 75 86 74 0 + 86 75 87 1 86 75 87 0 + 76 87 75 1 76 87 75 0 + 88 77 89 1 88 77 89 0 + 78 89 77 1 78 89 77 0 + 89 78 90 1 89 78 90 0 + 79 90 78 1 79 90 78 0 + 90 79 91 1 90 79 91 0 + 80 91 79 1 80 91 79 0 + 91 80 92 1 91 80 92 0 + 81 92 80 1 81 92 80 0 + 92 81 93 1 92 81 93 0 + 82 93 81 1 82 93 81 0 + 93 82 94 1 93 82 94 0 + 83 94 82 1 83 94 82 0 + 94 83 95 1 94 83 95 0 + 84 95 83 1 84 95 83 0 + 95 84 96 1 95 84 96 0 + 85 96 84 1 85 96 84 0 + 96 85 97 1 96 85 97 0 + 86 97 85 1 86 97 85 0 + 97 86 98 1 97 86 98 0 + 87 98 86 1 87 98 86 0 + 99 88 100 1 99 88 100 0 + 89 100 88 1 89 100 88 0 + 100 89 101 1 100 89 101 0 + 90 101 89 1 90 101 89 0 + 101 90 102 1 101 90 102 0 + 91 102 90 1 91 102 90 0 + 102 91 103 1 102 91 103 0 + 92 103 91 1 92 103 91 0 + 103 92 104 1 103 92 104 0 + 93 104 92 1 93 104 92 0 + 104 93 105 1 104 93 105 0 + 94 105 93 1 94 105 93 0 + 105 94 106 1 105 94 106 0 + 95 106 94 1 95 106 94 0 + 106 95 107 1 106 95 107 0 + 96 107 95 1 96 107 95 0 + 107 96 108 1 107 96 108 0 + 97 108 96 1 97 108 96 0 + 108 97 109 1 108 97 109 0 + 98 109 97 1 98 109 97 0 + 110 99 111 1 110 99 111 0 + 100 111 99 1 100 111 99 0 + 111 100 112 1 111 100 112 0 + 101 112 100 1 101 112 100 0 + 112 101 113 1 112 101 113 0 + 102 113 101 1 102 113 101 0 + 113 102 114 1 113 102 114 0 + 103 114 102 1 103 114 102 0 + 114 103 115 1 114 103 115 0 + 104 115 103 1 104 115 103 0 + 115 104 116 1 115 104 116 0 + 105 116 104 1 105 116 104 0 + 116 105 117 1 116 105 117 0 + 106 117 105 1 106 117 105 0 + 117 106 118 1 117 106 118 0 + 107 118 106 1 107 118 106 0 + 118 107 119 1 118 107 119 0 + 108 119 107 1 108 119 107 0 + 119 108 120 1 119 108 120 0 + 109 120 108 1 109 120 108 0 + tverts 121 + -1.09935e-07 -8.2782e-07 0 + 0.199219 0 0 + 0.400391 0 0 + 0.599609 0 0 + 0.800781 0 0 + 1 -8.2782e-07 0 + 1.19922 0 0 + 1.40039 0 0 + 1.59961 0 0 + 1.80078 0 0 + 2 -8.2782e-07 0 + 0 0.199219 0 + 0.199219 0.199219 0 + 0.400391 0.199219 0 + 0.599609 0.199219 0 + 0.800781 0.199219 0 + 1 0.199219 0 + 1.19922 0.199219 0 + 1.40039 0.199219 0 + 1.59961 0.199219 0 + 1.80078 0.199219 0 + 2 0.199219 0 + 0 0.400391 0 + 0.199219 0.400391 0 + 0.400391 0.400391 0 + 0.599609 0.400391 0 + 0.800781 0.400391 0 + 1 0.400391 0 + 1.19922 0.400391 0 + 1.40039 0.400391 0 + 1.59961 0.400391 0 + 1.80078 0.400391 0 + 2 0.400391 0 + 0 0.599609 0 + 0.199219 0.599609 0 + 0.400391 0.599609 0 + 0.599609 0.599609 0 + 0.800781 0.599609 0 + 1 0.599609 0 + 1.19922 0.599609 0 + 1.40039 0.599609 0 + 1.59961 0.599609 0 + 1.80078 0.599609 0 + 2 0.599609 0 + 0 0.800781 0 + 0.199219 0.800781 0 + 0.400391 0.800781 0 + 0.599609 0.800781 0 + 0.800781 0.800781 0 + 1 0.800781 0 + 1.19922 0.800781 0 + 1.40039 0.800781 0 + 1.59961 0.800781 0 + 1.80078 0.800781 0 + 2 0.800781 0 + -1.09935e-07 0.999999 0 + 0.199219 1 0 + 0.400391 1 0 + 0.599609 1 0 + 0.800781 1 0 + 1 0.999999 0 + 1.19922 1 0 + 1.40039 1 0 + 1.59961 1 0 + 1.80078 1 0 + 2 0.999999 0 + 0 1.19922 0 + 0.199219 1.19922 0 + 0.400391 1.19922 0 + 0.599609 1.19922 0 + 0.800781 1.19922 0 + 1 1.19922 0 + 1.19922 1.19922 0 + 1.40039 1.19922 0 + 1.59961 1.19922 0 + 1.80078 1.19922 0 + 2 1.19922 0 + 0 1.40039 0 + 0.199219 1.40039 0 + 0.400391 1.40039 0 + 0.599609 1.40039 0 + 0.800781 1.40039 0 + 1 1.40039 0 + 1.19922 1.40039 0 + 1.40039 1.40039 0 + 1.59961 1.40039 0 + 1.80078 1.40039 0 + 2 1.40039 0 + 0 1.59961 0 + 0.199219 1.59961 0 + 0.400391 1.59961 0 + 0.599609 1.59961 0 + 0.800781 1.59961 0 + 1 1.59961 0 + 1.19922 1.59961 0 + 1.40039 1.59961 0 + 1.59961 1.59961 0 + 1.80078 1.59961 0 + 2 1.59961 0 + 0 1.80078 0 + 0.199219 1.80078 0 + 0.400391 1.80078 0 + 0.599609 1.80078 0 + 0.800781 1.80078 0 + 1 1.80078 0 + 1.19922 1.80078 0 + 1.40039 1.80078 0 + 1.59961 1.80078 0 + 1.80078 1.80078 0 + 2 1.80078 0 + -1.09935e-07 2 0 + 0.199219 2 0 + 0.400391 2 0 + 0.599609 2 0 + 0.800781 2 0 + 1 2 0 + 1.19922 2 0 + 1.40039 2 0 + 1.59961 2 0 + 1.80078 2 0 + 2 2 0 +endnode +endmodelgeom wsf10_p01_01 +donemodel wsf10_p01_01 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/wsf10_s01_02.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/wsf10_s01_02.mdl new file mode 100644 index 0000000..add11eb --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/wsf10_s01_02.mdl @@ -0,0 +1,3224 @@ +# Rewritten by CleanModels 3 Version 3.5.2d Wed Jun 17 08:24:18 2020 +#MAXMODEL ASCII +filedependency Unknown +newmodel wsf10_s01_02 + classification TILE + setsupermodel wsf10_s01_02 NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom wsf10_s01_02 +node dummy wsf10_s01_02 + parent NULL +endnode +node light wsf10_s01_02ml1 + parent wsf10_s01_02 + position -0.399248 8.28709 12.9272 + wirecolor 0.694118 0.694118 0.694118 + radius 0 + multiplier 1 + color 1 1 1 + ambientonly 0 + nDynamicType 0 + affectdynamic 0 + shadow 0 + lightpriority 3 + fadinglight 1 + orientation 0 0 0 0 +endnode +node light wsf10_s01_02ml2 + parent wsf10_s01_02 + position 2.69891 -4.57932 7.52584 + wirecolor 0.694118 0.694118 0.694118 + radius 0 + multiplier 1 + color 1 1 1 + ambientonly 0 + nDynamicType 0 + affectdynamic 0 + shadow 0 + lightpriority 3 + fadinglight 1 + orientation 0 0 0 0 +endnode +node trimesh terrain + parent wsf10_s01_02 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.337255 0.337255 0.337255 + tilefade 0 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + center undefined + bitmap wtf_2_grnd2 + verts 121 + -5 -5 0 + -4 -5 0 + -3 -5 0 + -2 -5 0 + -1 -5 0 + 0 -5 0 + 1 -5 0 + 2 -5 0 + 3 -5 0 + 4 -5 0 + 5 -5 0 + -5 -4 0 + -4 -4 0 + -3 -4 0 + -2 -4 0 + -1 -4 0 + 0 -4 0.08 + 1 -4 0 + 2 -4 0 + 3 -4 0 + 4 -4 0 + 5 -4 0 + -5 -3 0 + -4 -3 0 + -3 -3 0 + -2 -3 0 + -1 -3 0.08 + 0 -3 0.42 + 1 -3 0.17 + 2 -3 0 + 3 -3 0 + 4 -3 0 + 5 -3 0 + -5 -2 0 + -4 -2 0 + -3 -2 0 + -2 -2 0 + -1 -2 0.16 + 0 -2 0.59 + 1 -2 0.42 + 2 -2 0.17 + 3 -2 0 + 4 -2 0 + 5 -2 0 + -5 -1 0 + -4 -1 0 + -3 -1 0 + -2 -1 0.16 + -1 -1 0.48 + 0 -1 0.58 + 1 -1 0.33 + 2 -1 0.42 + 3 -1 0.17 + 4 -1 0 + 5 -1 0 + -5 0 0 + -4 0 0 + -3 0 0.08 + -2 0 0.47 + -1 0 0.63 + 0 0 0.64 + 1 0 0.56 + 2 0 0.58 + 3 0 0.42 + 4 0 0.08 + 5 0 0 + -5 1 0 + -4 1 0 + -3 1 0.08 + -2 1 0.55 + -1 1 0.63 + 0 1 0.63 + 1 1 0.55 + 2 1 0.16 + 3 1 0.08 + 4 1 0 + 5 1 0 + -5 2 0 + -4 2 0 + -3 2 0.08 + -2 2 0.47 + -1 2 0.63 + 0 2 0.63 + 1 2 0.47 + 2 2 0.08 + 3 2 0 + 4 2 0 + 5 2 0 + -5 3 0 + -4 3 0 + -3 3 0 + -2 3 0.16 + -1 3 0.47 + 0 3 0.47 + 1 3 0.16 + 2 3 0 + 3 3 0 + 4 3 0 + 5 3 0 + -5 4 0 + -4 4 0 + -3 4 0 + -2 4 0 + -1 4 0.08 + 0 4 0.08 + 1 4 0 + 2 4 0 + 3 4 0 + 4 4 0 + 5 4 0 + -5 5 0 + -4 5 0 + -3 5 0 + -2 5 0 + -1 5 0 + 0 5 0 + 1 5 0 + 2 5 0 + 3 5 0 + 4 5 0 + 5 5 0 + faces 200 + 11 0 12 1 11 0 12 65536 + 1 12 0 1 1 12 0 65536 + 12 1 13 1 12 1 13 65536 + 2 13 1 1 2 13 1 65536 + 13 2 14 1 13 2 14 65536 + 3 14 2 1 3 14 2 65536 + 14 3 15 1 14 3 15 65536 + 4 15 3 1 4 15 3 65536 + 15 4 16 1 15 4 16 65536 + 5 16 4 1 5 16 4 65536 + 16 5 17 1 16 5 17 65536 + 6 17 5 1 6 17 5 65536 + 17 6 18 1 17 6 18 65536 + 7 18 6 1 7 18 6 65536 + 18 7 19 1 18 7 19 65536 + 8 19 7 1 8 19 7 65536 + 19 8 20 1 19 8 20 65536 + 9 20 8 1 9 20 8 65536 + 20 9 21 1 20 9 21 65536 + 10 21 9 1 10 21 9 65536 + 22 11 23 1 22 11 23 65536 + 12 23 11 1 12 23 11 65536 + 23 12 24 1 23 12 24 65536 + 13 24 12 1 13 24 12 65536 + 24 13 25 1 24 13 25 65536 + 14 25 13 1 14 25 13 65536 + 25 14 26 1 25 14 26 65536 + 15 26 14 1 15 26 14 65536 + 26 15 27 1 26 15 27 65536 + 16 27 15 1 16 27 15 65536 + 27 16 28 1 27 16 28 65536 + 17 28 16 1 17 28 16 65536 + 28 17 29 1 28 17 29 65536 + 18 29 17 1 18 29 17 65536 + 29 18 30 1 29 18 30 65536 + 19 30 18 1 19 30 18 65536 + 30 19 31 1 30 19 31 65536 + 20 31 19 1 20 31 19 65536 + 31 20 32 1 31 20 32 65536 + 21 32 20 1 21 32 20 65536 + 33 22 34 1 33 22 34 65536 + 23 34 22 1 23 34 22 65536 + 34 23 35 1 34 23 35 65536 + 24 35 23 1 24 35 23 65536 + 35 24 36 1 35 24 36 65536 + 25 36 24 1 25 36 24 65536 + 36 25 37 1 36 25 37 65536 + 26 37 25 1 26 37 25 65536 + 37 26 38 1 37 26 38 65536 + 27 38 26 1 27 38 26 65536 + 38 27 39 1 38 27 39 65536 + 28 39 27 1 28 39 27 65536 + 39 28 40 1 39 28 40 65536 + 29 40 28 1 29 40 28 65536 + 40 29 41 1 40 29 41 65536 + 30 41 29 1 30 41 29 65536 + 41 30 42 1 41 30 42 65536 + 31 42 30 1 31 42 30 65536 + 42 31 43 1 42 31 43 65536 + 32 43 31 1 32 43 31 65536 + 44 33 45 1 44 33 45 65536 + 34 45 33 1 34 45 33 65536 + 45 34 46 1 45 34 46 65536 + 35 46 34 1 35 46 34 65536 + 46 35 47 1 46 35 47 65536 + 36 47 35 1 36 47 35 65536 + 47 36 48 1 47 36 48 65536 + 37 48 36 1 37 48 36 65536 + 48 37 49 1 48 37 49 65536 + 38 49 37 1 38 49 37 65536 + 49 38 50 1 49 38 50 65536 + 39 50 38 1 39 50 38 65536 + 50 39 51 1 50 39 51 65536 + 40 51 39 1 40 51 39 65536 + 51 40 52 1 51 40 52 65536 + 41 52 40 1 41 52 40 65536 + 52 41 53 1 52 41 53 65536 + 42 53 41 1 42 53 41 65536 + 53 42 54 1 53 42 54 65536 + 43 54 42 1 43 54 42 65536 + 55 44 56 1 55 44 56 65536 + 45 56 44 1 45 56 44 65536 + 56 45 57 1 56 45 57 65536 + 46 57 45 1 46 57 45 65536 + 57 46 58 1 57 46 58 65536 + 47 58 46 1 47 58 46 65536 + 58 47 59 1 58 47 59 65536 + 48 59 47 1 48 59 47 65536 + 59 48 60 1 59 48 60 65536 + 49 60 48 1 49 60 48 65536 + 60 49 61 1 60 49 61 65536 + 50 61 49 1 50 61 49 65536 + 61 50 62 1 61 50 62 65536 + 51 62 50 1 51 62 50 65536 + 62 51 63 1 62 51 63 65536 + 52 63 51 1 52 63 51 65536 + 63 52 64 1 63 52 64 65536 + 53 64 52 1 53 64 52 65536 + 64 53 65 1 64 53 65 65536 + 54 65 53 1 54 65 53 65536 + 66 55 67 1 66 55 67 65536 + 56 67 55 1 56 67 55 65536 + 67 56 68 1 67 56 68 65536 + 57 68 56 1 57 68 56 65536 + 68 57 69 1 68 57 69 65536 + 58 69 57 1 58 69 57 65536 + 69 58 70 1 69 58 70 65536 + 59 70 58 1 59 70 58 65536 + 70 59 71 1 70 59 71 65536 + 60 71 59 1 60 71 59 65536 + 71 60 72 1 71 60 72 65536 + 61 72 60 1 61 72 60 65536 + 72 61 73 1 72 61 73 65536 + 62 73 61 1 62 73 61 65536 + 73 62 74 1 73 62 74 65536 + 63 74 62 1 63 74 62 65536 + 74 63 75 1 74 63 75 65536 + 64 75 63 1 64 75 63 65536 + 75 64 76 1 75 64 76 65536 + 65 76 64 1 65 76 64 65536 + 77 66 78 1 77 66 78 65536 + 67 78 66 1 67 78 66 65536 + 78 67 79 1 78 67 79 65536 + 68 79 67 1 68 79 67 65536 + 79 68 80 1 79 68 80 65536 + 69 80 68 1 69 80 68 65536 + 80 69 81 1 80 69 81 65536 + 70 81 69 1 70 81 69 65536 + 81 70 82 1 81 70 82 65536 + 71 82 70 1 71 82 70 65536 + 82 71 83 1 82 71 83 65536 + 72 83 71 1 72 83 71 65536 + 83 72 84 1 83 72 84 65536 + 73 84 72 1 73 84 72 65536 + 84 73 85 1 84 73 85 65536 + 74 85 73 1 74 85 73 65536 + 85 74 86 1 85 74 86 65536 + 75 86 74 1 75 86 74 65536 + 86 75 87 1 86 75 87 65536 + 76 87 75 1 76 87 75 65536 + 88 77 89 1 88 77 89 65536 + 78 89 77 1 78 89 77 65536 + 89 78 90 1 89 78 90 65536 + 79 90 78 1 79 90 78 65536 + 90 79 91 1 90 79 91 65536 + 80 91 79 1 80 91 79 65536 + 91 80 92 1 91 80 92 65536 + 81 92 80 1 81 92 80 65536 + 92 81 93 1 92 81 93 65536 + 82 93 81 1 82 93 81 65536 + 93 82 94 1 93 82 94 65536 + 83 94 82 1 83 94 82 65536 + 94 83 95 1 94 83 95 65536 + 84 95 83 1 84 95 83 65536 + 95 84 96 1 95 84 96 65536 + 85 96 84 1 85 96 84 65536 + 96 85 97 1 96 85 97 65536 + 86 97 85 1 86 97 85 65536 + 97 86 98 1 97 86 98 65536 + 87 98 86 1 87 98 86 65536 + 99 88 100 1 99 88 100 65536 + 89 100 88 1 89 100 88 65536 + 100 89 101 1 100 89 101 65536 + 90 101 89 1 90 101 89 65536 + 101 90 102 1 101 90 102 65536 + 91 102 90 1 91 102 90 65536 + 102 91 103 1 102 91 103 65536 + 92 103 91 1 92 103 91 65536 + 103 92 104 1 103 92 104 65536 + 93 104 92 1 93 104 92 65536 + 104 93 105 1 104 93 105 65536 + 94 105 93 1 94 105 93 65536 + 105 94 106 1 105 94 106 65536 + 95 106 94 1 95 106 94 65536 + 106 95 107 1 106 95 107 65536 + 96 107 95 1 96 107 95 65536 + 107 96 108 1 107 96 108 65536 + 97 108 96 1 97 108 96 65536 + 108 97 109 1 108 97 109 65536 + 98 109 97 1 98 109 97 65536 + 110 99 111 1 110 99 111 65536 + 100 111 99 1 100 111 99 65536 + 111 100 112 1 111 100 112 65536 + 101 112 100 1 101 112 100 65536 + 112 101 113 1 112 101 113 65536 + 102 113 101 1 102 113 101 65536 + 113 102 114 1 113 102 114 65536 + 103 114 102 1 103 114 102 65536 + 114 103 115 1 114 103 115 65536 + 104 115 103 1 104 115 103 65536 + 115 104 116 1 115 104 116 65536 + 105 116 104 1 105 116 104 65536 + 116 105 117 1 116 105 117 65536 + 106 117 105 1 106 117 105 65536 + 117 106 118 1 117 106 118 65536 + 107 118 106 1 107 118 106 65536 + 118 107 119 1 118 107 119 65536 + 108 119 107 1 108 119 107 65536 + 119 108 120 1 119 108 120 65536 + 109 120 108 1 109 120 108 65536 + tverts 121 + -1.19209e-07 0 0 + 0.0996094 0 0 + 0.199219 0 0 + 0.300781 0 0 + 0.400391 0 0 + 0.5 0 0 + 0.599609 0 0 + 0.699219 0 0 + 0.800781 0 0 + 0.900391 0 0 + 1 -1.19209e-07 0 + 0 0.0996094 0 + 0.0996094 0.0996094 0 + 0.199219 0.0996094 0 + 0.300781 0.0996094 0 + 0.400391 0.0996094 0 + 0.5 0.0996094 0 + 0.599609 0.0996094 0 + 0.699219 0.0996094 0 + 0.800781 0.0996094 0 + 0.900391 0.0996094 0 + 1 0.0996094 0 + 0 0.199219 0 + 0.0996094 0.199219 0 + 0.199219 0.199219 0 + 0.300781 0.199219 0 + 0.400391 0.199219 0 + 0.5 0.199219 0 + 0.599609 0.199219 0 + 0.699219 0.199219 0 + 0.800781 0.199219 0 + 0.900391 0.199219 0 + 1 0.199219 0 + 0 0.300781 0 + 0.0996094 0.300781 0 + 0.199219 0.300781 0 + 0.300781 0.300781 0 + 0.400391 0.300781 0 + 0.5 0.300781 0 + 0.599609 0.300781 0 + 0.699219 0.300781 0 + 0.800781 0.300781 0 + 0.900391 0.300781 0 + 1 0.300781 0 + 0 0.400391 0 + 0.0996094 0.400391 0 + 0.199219 0.400391 0 + 0.300781 0.400391 0 + 0.400391 0.400391 0 + 0.5 0.400391 0 + 0.599609 0.400391 0 + 0.699219 0.400391 0 + 0.800781 0.400391 0 + 0.900391 0.400391 0 + 1 0.400391 0 + 0 0.5 0 + 0.0996094 0.5 0 + 0.199219 0.5 0 + 0.300781 0.5 0 + 0.400391 0.5 0 + 0.5 0.5 0 + 0.599609 0.5 0 + 0.699219 0.5 0 + 0.800781 0.5 0 + 0.900391 0.5 0 + 1 0.5 0 + 0 0.599609 0 + 0.0996094 0.599609 0 + 0.199219 0.599609 0 + 0.300781 0.599609 0 + 0.400391 0.599609 0 + 0.5 0.599609 0 + 0.599609 0.599609 0 + 0.699219 0.599609 0 + 0.800781 0.599609 0 + 0.900391 0.599609 0 + 1 0.599609 0 + 0 0.699219 0 + 0.0996094 0.699219 0 + 0.199219 0.699219 0 + 0.300781 0.699219 0 + 0.400391 0.699219 0 + 0.5 0.699219 0 + 0.599609 0.699219 0 + 0.699219 0.699219 0 + 0.800781 0.699219 0 + 0.900391 0.699219 0 + 1 0.699219 0 + 0 0.800781 0 + 0.0996094 0.800781 0 + 0.199219 0.800781 0 + 0.300781 0.800781 0 + 0.400391 0.800781 0 + 0.5 0.800781 0 + 0.599609 0.800781 0 + 0.699219 0.800781 0 + 0.800781 0.800781 0 + 0.900391 0.800781 0 + 1 0.800781 0 + 0 0.900391 0 + 0.0996094 0.900391 0 + 0.199219 0.900391 0 + 0.300781 0.900391 0 + 0.400391 0.900391 0 + 0.5 0.900391 0 + 0.599609 0.900391 0 + 0.699219 0.900391 0 + 0.800781 0.900391 0 + 0.900391 0.900391 0 + 1 0.900391 0 + 0 1 0 + 0.0996094 1 0 + 0.199219 1 0 + 0.300781 1 0 + 0.400391 1 0 + 0.5 1 0 + 0.599609 1 0 + 0.699219 1 0 + 0.800781 1 0 + 0.900391 1 0 + 1 1 0 +endnode +node aabb wok + parent wsf10_s01_02 + position 0 0 0 + wirecolor 0.337255 0.337255 0.337255 + ambient 0.588 0.588 0.588 + diffuse 0 0.501961 0 + specular 0 0 0 + shininess 10 + orientation 0 0 0 0 + bitmap NULL + render 0 + shadow 0 + verts 121 + -5 -5 0 + -4 -5 0 + -3 -5 0 + -2 -5 0 + -1 -5 0 + 0 -5 0 + 1 -5 0 + 2 -5 0 + 3 -5 0 + 4 -5 0 + 5 -5 0 + -5 -4 0 + -4 -4 0 + -3 -4 0 + -2 -4 0 + -1 -4 0 + 0 -4 0.08 + 1 -4 0 + 2 -4 0 + 3 -4 0 + 4 -4 0 + 5 -4 0 + -5 -3 0 + -4 -3 0 + -3 -3 0 + -2 -3 0 + -1 -3 0.08 + 0 -3 0.42 + 1 -3 0.17 + 2 -3 0 + 3 -3 0 + 4 -3 0 + 5 -3 0 + -5 -2 0 + -4 -2 0 + -3 -1.82 0 + -2 -2 0 + -1 -2.22 0.16 + 0 -2 0.59 + 1 -2 0.42 + 2 -2 0.17 + 3 -2 0 + 4 -2 0 + 5 -2 0 + -5 -1 0 + -3.87 -0.7 0 + -3.45 -1.37 0 + -2 -1 0.16 + -1 -1 0.48 + 0.24 -1.33 0.58 + 1 -1 0.33 + 2 -1 0.42 + 3 -1 0.17 + 4 -1 0 + 5 -1 0 + -5 0 0 + -4 0 0 + -3 0 0.08 + -2 0 0.47 + -1 0 0.63 + -0.01 0 0.64 + 1 0 0.56 + 2 0 0.58 + 3 0 0.42 + 4 0 0.08 + 5 0 0 + -5 1 0 + -3.78 1 0 + -3 1 0.08 + -2 1 0.55 + -1 1 0.63 + 0.2 1 0.63 + 1 1 0.55 + 2 1 0.16 + 3 1 0.08 + 4 1 0 + 5 1 0 + -5 2 0 + -4 2 0 + -3 1.63 0.09 + -2 1.56 0.54 + -1 2.01 0.63 + -0.45 1.7 0.63 + 1 2 0.47 + 2 2 0.08 + 3 2 0 + 4 2 0 + 5 2 0 + -5 3 0 + -4 3 0 + -3 3 0 + -2 3 0.16 + -1 3 0.47 + 0 3 0.47 + 1 3 0.16 + 2 3 0 + 3 3 0 + 4 3 0 + 5 3 0 + -5 4 0 + -4 4 0 + -3 4 0 + -2 4 0 + -1 4 0.08 + 0 4 0.08 + 1 4 0 + 2 4 0 + 3 4 0 + 4 4 0 + 5 4 0 + -5 5 0 + -4 5 0 + -3 5 0 + -2 5 0 + -1 5 0 + 0 5 0 + 1 5 0 + 2 5 0 + 3 5 0 + 4 5 0 + 5 5 0 + faces 200 + 11 0 12 1 0 0 0 3 + 1 12 0 1 0 0 0 3 + 12 1 13 1 0 0 0 3 + 2 13 1 1 0 0 0 3 + 13 2 14 1 0 0 0 1 + 3 14 2 1 0 0 0 3 + 14 3 15 1 0 0 0 3 + 4 15 3 1 0 0 0 3 + 15 4 16 1 0 0 0 3 + 5 16 4 1 0 0 0 3 + 16 5 17 1 0 0 0 3 + 6 17 5 1 0 0 0 3 + 17 6 18 1 0 0 0 3 + 7 18 6 1 0 0 0 3 + 18 7 19 1 0 0 0 4 + 8 19 7 1 0 0 0 3 + 19 8 20 1 0 0 0 4 + 9 20 8 1 0 0 0 3 + 20 9 21 1 0 0 0 3 + 10 21 9 1 0 0 0 3 + 22 11 23 1 0 0 0 3 + 12 23 11 1 0 0 0 3 + 23 12 24 1 0 0 0 1 + 13 24 12 1 0 0 0 3 + 24 13 25 1 0 0 0 1 + 14 25 13 1 0 0 0 3 + 25 14 26 1 0 0 0 3 + 15 26 14 1 0 0 0 3 + 26 15 27 2 0 0 0 3 + 16 27 15 4 0 0 0 3 + 27 16 28 1 0 0 0 4 + 17 28 16 1 0 0 0 3 + 28 17 29 1 0 0 0 4 + 18 29 17 1 0 0 0 4 + 29 18 30 1 0 0 0 4 + 19 30 18 1 0 0 0 4 + 30 19 31 1 0 0 0 4 + 20 31 19 1 0 0 0 3 + 31 20 32 1 0 0 0 3 + 21 32 20 1 0 0 0 3 + 33 22 34 1 0 0 0 3 + 23 34 22 1 0 0 0 1 + 34 23 35 1 0 0 0 3 + 24 35 23 1 0 0 0 1 + 35 24 36 1 0 0 0 3 + 25 36 24 1 0 0 0 3 + 36 25 37 1 0 0 0 3 + 26 37 25 1 0 0 0 3 + 37 26 38 2 0 0 0 3 + 27 38 26 2 0 0 0 3 + 38 27 39 1 0 0 0 3 + 28 39 27 1 0 0 0 4 + 39 28 40 1 0 0 0 3 + 29 40 28 1 0 0 0 4 + 40 29 41 1 0 0 0 4 + 30 41 29 1 0 0 0 4 + 41 30 42 1 0 0 0 3 + 31 42 30 1 0 0 0 3 + 42 31 43 1 0 0 0 3 + 32 43 31 1 0 0 0 3 + 44 33 45 1 0 0 0 3 + 34 45 33 1 0 0 0 3 + 45 34 46 1 0 0 0 3 + 35 46 34 1 0 0 0 3 + 46 35 47 1 0 0 0 7 + 36 47 35 1 0 0 0 7 + 47 36 48 4 0 0 0 7 + 37 48 36 4 0 0 0 7 + 48 37 49 4 0 0 0 7 + 38 49 37 8 0 0 0 3 + 49 38 50 16 0 0 0 3 + 39 50 38 4 0 0 0 3 + 50 39 51 2 0 0 0 3 + 40 51 39 1 0 0 0 3 + 51 40 52 1 0 0 0 3 + 41 52 40 1 0 0 0 3 + 52 41 53 1 0 0 0 1 + 42 53 41 1 0 0 0 1 + 53 42 54 1 0 0 0 1 + 43 54 42 1 0 0 0 3 + 55 44 56 1 0 0 0 3 + 45 56 44 1 0 0 0 3 + 56 45 57 1 0 0 0 7 + 46 57 45 1 0 0 0 7 + 57 46 58 2 0 0 0 7 + 47 58 46 8 0 0 0 7 + 58 47 59 8 0 0 0 7 + 48 59 47 4 0 0 0 7 + 59 48 60 32 0 0 0 7 + 49 60 48 32 0 0 0 7 + 60 49 61 32 0 0 0 3 + 50 61 49 16 0 0 0 3 + 61 50 62 8 0 0 0 3 + 51 62 50 8 0 0 0 3 + 62 51 63 1 0 0 0 3 + 52 63 51 1 0 0 0 3 + 63 52 64 1 0 0 0 3 + 53 64 52 1 0 0 0 1 + 64 53 65 1 0 0 0 3 + 54 65 53 1 0 0 0 3 + 66 55 67 1 0 0 0 3 + 56 67 55 1 0 0 0 3 + 67 56 68 1 0 0 0 7 + 57 68 56 1 0 0 0 7 + 68 57 69 2 0 0 0 7 + 58 69 57 2 0 0 0 7 + 69 58 70 32 0 0 0 7 + 59 70 58 32 0 0 0 7 + 70 59 71 32 0 0 0 7 + 60 71 59 32 0 0 0 7 + 71 60 72 32 0 0 0 3 + 61 72 60 32 0 0 0 3 + 72 61 73 2 0 0 0 3 + 62 73 61 4 0 0 0 1 + 73 62 74 4 0 0 0 3 + 63 74 62 4 0 0 0 1 + 74 63 75 4 0 0 0 3 + 64 75 63 2 0 0 0 3 + 75 64 76 1 0 0 0 3 + 65 76 64 1 0 0 0 3 + 77 66 78 1 0 0 0 3 + 67 78 66 1 0 0 0 3 + 78 67 79 1 0 0 0 3 + 68 79 67 1 0 0 0 7 + 79 68 80 2 0 0 0 7 + 69 80 68 2 0 0 0 7 + 80 69 81 32 0 0 0 7 + 70 81 69 32 0 0 0 7 + 81 70 82 32 0 0 0 7 + 71 82 70 32 0 0 0 7 + 82 71 83 32 0 0 0 3 + 72 83 71 32 0 0 0 3 + 83 72 84 2 0 0 0 1 + 73 84 72 2 0 0 0 3 + 84 73 85 1 0 0 0 3 + 74 85 73 1 0 0 0 3 + 85 74 86 1 0 0 0 3 + 75 86 74 1 0 0 0 3 + 86 75 87 1 0 0 0 1 + 76 87 75 1 0 0 0 3 + 88 77 89 1 0 0 0 3 + 78 89 77 1 0 0 0 3 + 89 78 90 1 0 0 0 3 + 79 90 78 1 0 0 0 3 + 90 79 91 1 0 0 0 3 + 80 91 79 32 0 0 0 3 + 91 80 92 32 0 0 0 3 + 81 92 80 32 0 0 0 3 + 92 81 93 32 0 0 0 1 + 82 93 81 32 0 0 0 3 + 93 82 94 2 0 0 0 3 + 83 94 82 4 0 0 0 3 + 94 83 95 4 0 0 0 3 + 84 95 83 2 0 0 0 1 + 95 84 96 1 0 0 0 3 + 85 96 84 1 0 0 0 1 + 96 85 97 1 0 0 0 3 + 86 97 85 1 0 0 0 3 + 97 86 98 1 0 0 0 3 + 87 98 86 1 0 0 0 3 + 99 88 100 1 0 0 0 3 + 89 100 88 1 0 0 0 3 + 100 89 101 1 0 0 0 3 + 90 101 89 1 0 0 0 3 + 101 90 102 1 0 0 0 3 + 91 102 90 1 0 0 0 3 + 102 91 103 1 0 0 0 3 + 92 103 91 32 0 0 0 1 + 103 92 104 4 0 0 0 3 + 93 104 92 4 0 0 0 3 + 104 93 105 4 0 0 0 3 + 94 105 93 2 0 0 0 3 + 105 94 106 1 0 0 0 1 + 95 106 94 1 0 0 0 1 + 106 95 107 1 0 0 0 3 + 96 107 95 1 0 0 0 3 + 107 96 108 1 0 0 0 3 + 97 108 96 1 0 0 0 3 + 108 97 109 1 0 0 0 3 + 98 109 97 1 0 0 0 3 + 110 99 111 1 0 0 0 3 + 100 111 99 1 0 0 0 3 + 111 100 112 1 0 0 0 3 + 101 112 100 1 0 0 0 3 + 112 101 113 1 0 0 0 3 + 102 113 101 1 0 0 0 3 + 113 102 114 1 0 0 0 3 + 103 114 102 1 0 0 0 1 + 114 103 115 1 0 0 0 3 + 104 115 103 1 0 0 0 3 + 115 104 116 1 0 0 0 3 + 105 116 104 1 0 0 0 3 + 116 105 117 1 0 0 0 3 + 106 117 105 1 0 0 0 3 + 117 106 118 1 0 0 0 3 + 107 118 106 1 0 0 0 3 + 118 107 119 1 0 0 0 3 + 108 119 107 1 0 0 0 3 + 119 108 120 1 0 0 0 3 + 109 120 108 1 0 0 0 3 + aabb -5 -5 0 5 5 0.64 -1 + -5 -5 0 0.24 5 0.64 -1 + -5 -5 0 0.24 0 0.64 -1 + -5 -5 0 -2 0 0.47 -1 + -5 -5 0 -2 -1.82 0 -1 + -5 -5 0 -2 -4 0 -1 + -5 -5 0 -4 -4 0 -1 + -5 -5 0 -4 -4 0 0 + -5 -5 0 -4 -4 0 1 + -4 -5 0 -2 -4 0 -1 + -4 -5 0 -3 -4 0 -1 + -4 -5 0 -3 -4 0 2 + -4 -5 0 -3 -4 0 3 + -3 -5 0 -2 -4 0 4 + -5 -4 0 -2 -1.82 0 -1 + -5 -4 0 -4 -2 0 -1 + -5 -4 0 -4 -3 0 -1 + -5 -4 0 -4 -3 0 20 + -5 -4 0 -4 -3 0 21 + -5 -3 0 -4 -2 0 41 + -4 -4 0 -2 -1.82 0 -1 + -4 -4 0 -2 -3 0 -1 + -4 -4 0 -3 -3 0 -1 + -4 -4 0 -3 -3 0 22 + -4 -4 0 -3 -3 0 23 + -3 -4 0 -2 -3 0 24 + -4 -3 0 -3 -1.82 0 43 + -5 -3 0 -2 0 0.47 -1 + -5 -3 0 -3.45 0 0 -1 + -5 -3 0 -3.45 -0.7 0 -1 + -5 -3 0 -4 -2 0 40 + -5 -2 0 -3.45 -0.7 0 -1 + -5 -2 0 -3.87 -0.7 0 -1 + -5 -2 0 -3.87 -0.7 0 61 + -5 -2 0 -3.87 -0.7 0 60 + -4 -2 0 -3.45 -0.7 0 62 + -5 -1 0 -3.87 0 0 -1 + -5 -1 0 -4 0 0 80 + -5 -1 0 -3.87 0 0 81 + -4 -3 0 -2 0 0.47 -1 + -4 -3 0 -2 -1 0.16 -1 + -4 -3 0 -3 -1.37 0 -1 + -4 -3 0 -3 -1.82 0 42 + -4 -2 0 -3 -1.37 0 63 + -3.45 -3 0 -2 -1 0.16 -1 + -3 -3 0 -2 -1.82 0 44 + -3.45 -1.82 0 -2 -1 0.16 64 + -4 -1.37 0 -2 0 0.47 -1 + -4 -1.37 0 -3 0 0.08 -1 + -3.87 -1.37 0 -3 0 0.08 83 + -4 -0.7 0 -3 0 0.08 82 + -3.45 -1.37 0 -2 0 0.47 84 + -3.45 -5 0 0.24 0 0.64 -1 + -3 -5 0 0 -2 0.59 -1 + -3 -5 0 -1 -2 0.16 -1 + -3 -5 0 -1 -4 0 -1 + -3 -5 0 -2 -4 0 5 + -2 -5 0 -1 -4 0 -1 + -2 -5 0 -1 -4 0 6 + -2 -5 0 -1 -4 0 7 + -3 -4 0 -1 -2 0.16 -1 + -3 -4 0 -2 -2 0 -1 + -3 -4 0 -2 -3 0 25 + -3 -3 0 -2 -2 0 45 + -2 -4 0 -1 -2.22 0.16 -1 + -2 -4 0 -1 -3 0.08 -1 + -2 -4 0 -1 -3 0.08 26 + -2 -4 0 -1 -3 0.08 27 + -2 -3 0 -1 -2.22 0.16 47 + -1 -5 0 0 -2 0.59 -1 + -1 -5 0 0 -4 0.08 -1 + -1 -5 0 0 -4 0.08 8 + -1 -5 0 0 -4 0.08 9 + -1 -4 0 0 -2 0.59 -1 + -1 -4 0 0 -3 0.42 -1 + -1 -4 0 0 -3 0.42 28 + -1 -4 0 0 -3 0.42 29 + -1 -3 0.08 0 -2 0.59 49 + -3.45 -3 0 0.24 0 0.64 -1 + -3.45 -3 0 -1 0 0.63 -1 + -3 -3 0 -1 -1 0.48 -1 + -3 -2 0 -2 -1 0.16 65 + -2 -3 0 -1 -1 0.48 -1 + -2 -3 0 -1 -2 0.16 46 + -2 -2.22 0 -1 -1 0.48 -1 + -2 -2.22 0 -1 -1 0.48 67 + -2 -2 0 -1 -1 0.48 66 + -3.45 -1.37 0 -1 0 0.63 -1 + -3.45 -1.37 0 -2 0 0.47 85 + -2 -1 0.16 -1 0 0.63 -1 + -2 -1 0.16 -1 0 0.63 86 + -2 -1 0.16 -1 0 0.63 87 + -1 -3 0.08 0.24 0 0.64 -1 + -1 -3 0.08 0.24 -1 0.59 -1 + -1 -3 0.08 0 -2 0.59 48 + -1 -2.22 0.16 0.24 -1 0.59 -1 + -1 -2.22 0.16 0.24 -1 0.58 68 + -1 -2.22 0.16 0.24 -1.33 0.59 69 + -1 -1.33 0.48 0.24 0 0.64 -1 + -1 -1.33 0.48 0.24 0 0.64 89 + -1 -1 0.48 -0.01 0 0.64 88 + -5 0 0 0.2 5 0.64 -1 + -5 0 0 -2 5 0.55 -1 + -5 0 0 -2 3 0.55 -1 + -5 0 0 -3.78 3 0 -1 + -5 0 0 -3.78 1 0 -1 + -5 0 0 -3.78 1 0 100 + -5 0 0 -3.78 1 0 101 + -5 1 0 -3.78 3 0 -1 + -5 1 0 -3.78 2 0 -1 + -5 1 0 -4 2 0 120 + -5 1 0 -3.78 2 0 121 + -5 2 0 -4 3 0 141 + -4 0 0 -2 3 0.55 -1 + -4 0 0 -2 1 0.55 -1 + -4 0 0 -3 1 0.08 -1 + -4 0 0 -3 1 0.08 102 + -4 0 0 -3 1 0.08 103 + -3 0 0.08 -2 1 0.55 104 + -4 1 0 -2 3 0.54 -1 + -4 1 0 -3 3 0.09 -1 + -4 1 0 -3 2 0.09 -1 + -4 1 0 -3 2 0.09 122 + -3.78 1 0 -3 1.63 0.09 123 + -4 1.63 0 -3 3 0.09 143 + -3 1 0.08 -2 1.63 0.54 124 + -5 1.63 0 -2 5 0.16 -1 + -5 1.63 0 -2 4 0.16 -1 + -5 2 0 -4 4 0 -1 + -5 2 0 -4 3 0 140 + -5 3 0 -4 4 0 -1 + -5 3 0 -4 4 0 160 + -5 3 0 -4 4 0 161 + -4 1.63 0 -2 4 0.16 -1 + -4 1.63 0 -2 3 0.16 -1 + -4 2 0 -3 3 0 142 + -3 1.63 0 -2 3 0.16 144 + -4 3 0 -2 4 0 -1 + -4 3 0 -3 4 0 -1 + -4 3 0 -3 4 0 162 + -4 3 0 -3 4 0 163 + -3 3 0 -2 4 0 164 + -5 4 0 -2 5 0 -1 + -5 4 0 -4 5 0 -1 + -5 4 0 -4 5 0 180 + -5 4 0 -4 5 0 181 + -4 4 0 -2 5 0 -1 + -4 4 0 -3 5 0 -1 + -4 4 0 -3 5 0 182 + -4 4 0 -3 5 0 183 + -3 4 0 -2 5 0 184 + -3 0 0 0.2 5 0.64 -1 + -3 0 0.08 0.2 3 0.64 -1 + -3 0 0.08 -1 3 0.63 -1 + -3 0 0.08 -1 1.56 0.63 -1 + -3 0 0.08 -2 1.56 0.55 -1 + -3 0 0.08 -2 1 0.55 105 + -3 1 0.08 -2 1.56 0.55 125 + -2 0 0.47 -1 1 0.63 -1 + -2 0 0.47 -1 1 0.63 106 + -2 0 0.47 -1 1 0.63 107 + -3 1 0.09 -1 3 0.63 -1 + -3 1.56 0.09 -2 3 0.54 145 + -2 1 0.47 -1 3 0.63 -1 + -2 1 0.54 -1 2.01 0.63 -1 + -2 1 0.55 -1 2.01 0.63 127 + -2 1 0.54 -1 2.01 0.63 126 + -2 1.56 0.47 -1 3 0.63 147 + -1 0 0.47 0.2 3 0.64 -1 + -1 0 0.63 0.2 1 0.64 -1 + -1 0 0.63 0.2 1 0.63 108 + -1 0 0.63 0.2 1 0.64 109 + -1 1 0.47 0.2 3 0.63 -1 + -1 1 0.63 0.2 2.01 0.63 -1 + -1 1 0.63 -0.45 2.01 0.63 128 + -1 1 0.63 0.2 1.7 0.63 129 + -1 1.7 0.47 0 3 0.63 149 + -3 1.56 0 0 5 0.63 -1 + -3 1.56 0 0 4 0.63 -1 + -3 1.56 0 -1 4 0.54 -1 + -2 1.56 0.16 -1 3 0.54 146 + -3 3 0 -1 4 0.47 -1 + -3 3 0 -2 4 0.16 165 + -2 3 0 -1 4 0.47 -1 + -2 3 0 -1 4 0.16 166 + -2 3 0.08 -1 4 0.47 167 + -1 2.01 0.08 0 4 0.63 -1 + -1 2.01 0.47 0 3 0.63 148 + -1 3 0.08 0 4 0.47 -1 + -1 3 0.08 0 4 0.47 168 + -1 3 0.08 0 4 0.47 169 + -3 4 0 0 5 0.08 -1 + -3 4 0 -1 5 0.08 -1 + -3 4 0 -2 5 0 185 + -2 4 0 -1 5 0.08 -1 + -2 4 0 -1 5 0 186 + -2 4 0 -1 5 0.08 187 + -1 4 0 0 5 0.08 -1 + -1 4 0 0 5 0.08 188 + -1 4 0 0 5 0.08 189 + -0.45 -5 0 5 5 0.64 -1 + -0.01 -5 0 5 0 0.64 -1 + -0.01 -5 0 3 0 0.64 -1 + 0 -5 0 3 -2 0.42 -1 + 0 -5 0 1 -2 0.42 -1 + 0 -5 0 1 -4 0.08 -1 + 0 -5 0 1 -4 0.08 10 + 0 -5 0 1 -4 0 11 + 0 -4 0 1 -2 0.42 -1 + 0 -4 0 1 -3 0.42 -1 + 0 -4 0.08 1 -3 0.42 30 + 0 -4 0 1 -3 0.17 31 + 0 -3 0.17 1 -2 0.42 51 + 1 -5 0 3 -2 0.17 -1 + 1 -5 0 3 -4 0 -1 + 1 -5 0 2 -4 0 -1 + 1 -5 0 2 -4 0 12 + 1 -5 0 2 -4 0 13 + 2 -5 0 3 -4 0 14 + 1 -4 0 3 -2 0.17 -1 + 1 -4 0 2 -2 0.17 -1 + 1 -4 0 2 -3 0.17 -1 + 1 -4 0 2 -3 0.17 32 + 1 -4 0 2 -3 0 33 + 1 -3 0 2 -2 0.17 53 + 2 -4 0 3 -3 0 34 + -0.01 -3 0 3 0 0.64 -1 + -0.01 -3 0.33 1 0 0.64 -1 + 0 -3 0.33 1 -1 0.59 -1 + 0 -3 0.42 1 -2 0.59 50 + 0 -2 0.33 1 -1 0.59 -1 + 0 -2 0.33 1 -1 0.59 70 + 0 -2 0.33 1 -1 0.59 71 + -0.01 -1.33 0.33 1 0 0.64 -1 + 0.24 -1.33 0.33 1 0 0.58 91 + -0.01 -1.33 0.56 1 0 0.64 90 + 1 -3 0 3 0 0.58 -1 + 1 -3 0 3 -1 0.42 -1 + 1 -3 0.17 2 -1 0.42 -1 + 1 -3 0.17 2 -2 0.42 52 + 1 -2 0.17 2 -1 0.42 -1 + 1 -2 0.33 2 -1 0.42 72 + 1 -2 0.17 2 -1 0.42 73 + 2 -3 0 3 -1 0.42 -1 + 2 -3 0 3 -2 0.17 54 + 2 -2 0.17 3 -1 0.42 74 + 1 -1 0.33 3 0 0.58 -1 + 1 -1 0.33 2 0 0.58 -1 + 1 -1 0.33 2 0 0.58 92 + 1 -1 0.33 2 0 0.58 93 + 2 -1 0.42 3 0 0.58 94 + 2 -5 0 5 0 0.42 -1 + 2 -5 0 5 -2 0 -1 + 2 -5 0 4 -2 0 -1 + 2 -5 0 4 -4 0 -1 + 2 -5 0 3 -4 0 15 + 3 -5 0 4 -4 0 -1 + 3 -5 0 4 -4 0 16 + 3 -5 0 4 -4 0 17 + 2 -4 0 4 -2 0 -1 + 2 -4 0 3 -2 0 -1 + 2 -4 0 3 -3 0 35 + 2 -3 0 3 -2 0 55 + 3 -4 0 4 -2 0 -1 + 3 -4 0 4 -3 0 -1 + 3 -4 0 4 -3 0 36 + 3 -4 0 4 -3 0 37 + 3 -3 0 4 -2 0 57 + 4 -5 0 5 -2 0 -1 + 4 -5 0 5 -4 0 -1 + 4 -5 0 5 -4 0 18 + 4 -5 0 5 -4 0 19 + 4 -4 0 5 -2 0 -1 + 4 -4 0 5 -3 0 -1 + 4 -4 0 5 -3 0 38 + 4 -4 0 5 -3 0 39 + 4 -3 0 5 -2 0 59 + 2 -3 0 5 0 0.42 -1 + 2 -3 0 4 0 0.42 -1 + 2 -3 0 4 -1 0.17 -1 + 2 -2 0 3 -1 0.17 75 + 3 -3 0 4 -1 0.17 -1 + 3 -3 0 4 -2 0 56 + 3 -2 0 4 -1 0.17 -1 + 3 -2 0 4 -1 0.17 76 + 3 -2 0 4 -1 0 77 + 2 -1 0 4 0 0.42 -1 + 2 -1 0.17 3 0 0.42 95 + 3 -1 0 4 0 0.42 -1 + 3 -1 0.08 4 0 0.42 96 + 3 -1 0 4 0 0.17 97 + 4 -3 0 5 0 0.08 -1 + 4 -3 0 5 -1 0 -1 + 4 -3 0 5 -2 0 58 + 4 -2 0 5 -1 0 -1 + 4 -2 0 5 -1 0 78 + 4 -2 0 5 -1 0 79 + 4 -1 0 5 0 0.08 -1 + 4 -1 0 5 0 0.08 98 + 4 -1 0 5 0 0 99 + -0.45 0 0 5 5 0.64 -1 + -0.45 0 0 3 5 0.64 -1 + -0.45 0 0 3 3 0.64 -1 + -0.45 0 0.16 1 3 0.64 -1 + -0.01 0 0.55 1 1 0.64 -1 + -0.01 0 0.55 1 1 0.64 110 + -0.01 0 0.55 1 1 0.64 111 + -0.45 1 0.16 1 3 0.63 -1 + -0.45 1 0.47 1 2 0.63 -1 + -0.45 1 0.47 1 2 0.63 130 + 0.2 1 0.47 1 2 0.63 131 + -0.45 1.7 0.16 1 3 0.63 151 + 1 0 0 3 3 0.58 -1 + 1 0 0.08 3 1 0.58 -1 + 1 0 0.16 2 1 0.58 -1 + 1 0 0.16 2 1 0.56 112 + 1 0 0.16 2 1 0.58 113 + 2 0 0.08 3 1 0.58 114 + 1 1 0 3 3 0.55 -1 + 1 1 0 2 3 0.55 -1 + 1 1 0.08 2 2 0.55 -1 + 1 1 0.08 2 2 0.55 132 + 1 1 0.08 2 2 0.55 133 + 1 2 0 2 3 0.47 153 + 2 1 0 3 2 0.16 134 + -0.45 1.7 0 3 5 0.63 -1 + -0.45 1.7 0 1 5 0.63 -1 + -0.45 1.7 0 1 4 0.63 -1 + -0.45 1.7 0.16 1 3 0.63 150 + 0 3 0 1 4 0.47 -1 + 0 3 0 1 4 0.47 170 + 0 3 0 1 4 0.47 171 + 0 4 0 1 5 0.08 -1 + 0 4 0 1 5 0.08 190 + 0 4 0 1 5 0.08 191 + 1 2 0 3 5 0.47 -1 + 1 2 0 3 4 0.47 -1 + 1 2 0 2 4 0.47 -1 + 1 2 0 2 3 0.47 152 + 1 3 0 2 4 0.16 -1 + 1 3 0 2 4 0.16 172 + 1 3 0 2 4 0.16 173 + 2 2 0 3 4 0.08 -1 + 2 2 0 3 3 0.08 154 + 2 3 0 3 4 0 174 + 1 4 0 3 5 0 -1 + 1 4 0 2 5 0 -1 + 1 4 0 2 5 0 192 + 1 4 0 2 5 0 193 + 2 4 0 3 5 0 194 + 2 0 0 5 5 0.58 -1 + 2 0 0 5 3 0.58 -1 + 2 0 0 4 3 0.58 -1 + 2 0 0 4 1 0.58 -1 + 2 0 0.08 3 1 0.58 115 + 3 0 0 4 1 0.42 -1 + 3 0 0 4 1 0.42 116 + 3 0 0 4 1 0.42 117 + 2 1 0 4 3 0.16 -1 + 2 1 0 3 3 0.16 -1 + 2 1 0 3 2 0.16 135 + 2 2 0 3 3 0.08 155 + 3 1 0 4 3 0.08 -1 + 3 1 0 4 2 0.08 -1 + 3 1 0 4 2 0.08 136 + 3 1 0 4 2 0.08 137 + 3 2 0 4 3 0 157 + 4 0 0 5 3 0.08 -1 + 4 0 0 5 1 0.08 -1 + 4 0 0 5 1 0.08 118 + 4 0 0 5 1 0.08 119 + 4 1 0 5 3 0 -1 + 4 1 0 5 2 0 -1 + 4 1 0 5 2 0 138 + 4 1 0 5 2 0 139 + 4 2 0 5 3 0 159 + 2 2 0 5 5 0 -1 + 2 2 0 4 5 0 -1 + 2 2 0 4 4 0 -1 + 2 3 0 3 4 0 175 + 3 2 0 4 4 0 -1 + 3 2 0 4 3 0 156 + 3 3 0 4 4 0 -1 + 3 3 0 4 4 0 176 + 3 3 0 4 4 0 177 + 2 4 0 4 5 0 -1 + 2 4 0 3 5 0 195 + 3 4 0 4 5 0 -1 + 3 4 0 4 5 0 196 + 3 4 0 4 5 0 197 + 4 2 0 5 5 0 -1 + 4 2 0 5 4 0 -1 + 4 2 0 5 3 0 158 + 4 3 0 5 4 0 -1 + 4 3 0 5 4 0 178 + 4 3 0 5 4 0 179 + 4 4 0 5 5 0 -1 + 4 4 0 5 5 0 198 + 4 4 0 5 5 0 199 +endnode +node trimesh node0 + parent wsf10_s01_02 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.894118 0.894118 0.894118 + tilefade 1 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + center undefined + bitmap wtf_2_leaves + verts 624 + 3.21 -3.79 9.74 + -1.98 -0.5 11.44 + -1.92 -7.15 7.94 + 3.33 2.98 11.6 + -1.98 6.5 10.23 + -1.92 13.16 7.94 + -7.05 9.8 9.44 + -7.05 -3.74 9.44 + 3.21 9.75 8.09 + -7.05 3.03 7.79 + -4.73 4.59 6.6 + -2.99 0.85 9.6 + -9.28 5.09 9.6 + -6.06 3.98 6.6 + -3.46 7.82 9.6 + -4.31 0.24 9.6 + -7.52 0.24 7.97 + -1.01 4.15 7.97 + -7.52 8.12 7.97 + -4.35 4.16 10.48 + -6.73 8.13 7.47 + -6.73 0.25 7.47 + -5.59 4.89 10.48 + -7.96 0.98 7.47 + -1.46 4.89 7.47 + -5.6 3.43 10.48 + -1.47 3.43 7.47 + -7.97 7.4 7.47 + 2.31 -0.96 11.16 + 3.16 6.62 11.16 + -3.99 3.29 11.16 + 0.91 2.07 8.65 + -3.64 2.57 11.65 + 3.5 5.9 11.65 + 1.05 3.5 8.65 + 2.79 -0.25 11.65 + -3.5 4 11.65 + -0.28 2.89 8.65 + 2.32 6.72 11.65 + 1.47 -0.85 11.65 + -1.74 -0.85 10.02 + 4.76 3.06 10.02 + -1.74 7.03 10.02 + 1.43 3.07 12.53 + -0.95 7.04 9.53 + -0.95 -0.84 9.53 + 0.19 3.8 12.53 + -2.18 -0.11 9.53 + 4.32 3.8 9.53 + 0.18 2.34 12.53 + 4.31 2.34 9.53 + -2.19 6.31 9.53 + 4.76 -5.86 9.11 + 5.61 1.72 9.11 + -1.54 -1.61 9.11 + 3.35 -2.83 6.6 + -1.19 -2.33 9.6 + 5.95 1 9.6 + 3.49 -1.4 6.6 + 5.24 -5.15 9.6 + -1.05 -0.9 9.6 + 2.17 -2.01 6.6 + 4.76 1.82 9.6 + 3.92 -5.75 9.6 + 0.71 -5.75 7.97 + 7.21 -1.84 7.97 + 0.71 2.13 7.97 + 3.88 -1.83 10.48 + 1.5 2.14 7.47 + 1.5 -5.74 7.47 + 2.64 -1.1 10.48 + 0.26 -5.01 7.47 + 6.77 -1.1 7.47 + 2.63 -2.56 10.48 + 6.76 -2.56 7.47 + 0.25 1.41 7.47 + 7.31 2.84 9.11 + 8.16 10.42 9.11 + 1.01 7.09 9.11 + 5.91 5.87 6.6 + 1.36 6.37 9.6 + 8.5 9.7 9.6 + 6.05 7.3 6.6 + 7.79 3.55 9.6 + 1.5 7.8 9.6 + 4.72 6.69 6.6 + 7.32 10.52 9.6 + 6.47 2.95 9.6 + 3.26 2.95 7.97 + 9.77 6.86 7.97 + 3.26 10.83 7.97 + 6.43 6.86 10.48 + 4.05 10.84 7.47 + 4.05 2.95 7.47 + 5.19 7.6 10.48 + 2.82 3.69 7.47 + 9.32 7.6 7.47 + 5.18 6.14 10.48 + 9.31 6.14 7.47 + 2.81 10.11 7.47 + 2.51 -10.4 8.27 + 3.36 -2.82 8.27 + -3.78 -6.16 8.27 + 1.11 -7.37 5.75 + -3.44 -6.87 8.76 + 3.7 -3.54 8.76 + 1.25 -5.95 5.75 + 2.99 -9.69 8.76 + -3.3 -5.44 8.76 + -0.08 -6.55 5.75 + 2.52 -2.72 8.76 + 1.67 -10.3 8.76 + -1.54 -10.3 7.13 + 4.97 -6.39 7.13 + -1.54 -2.41 7.13 + 1.63 -6.38 9.64 + -0.75 -2.41 6.63 + -0.75 -10.29 6.63 + 0.39 -5.65 9.64 + -1.98 -9.56 6.63 + 4.52 -5.65 6.63 + 0.38 -7.11 9.64 + 4.51 -7.11 6.63 + -1.99 -3.13 6.63 + 0.43 5.95 8.27 + 1.28 13.53 8.27 + -5.87 10.2 8.27 + -0.98 8.98 5.75 + -5.52 9.48 8.76 + 1.62 12.82 8.76 + -0.84 10.41 5.75 + 0.91 6.67 8.76 + -5.38 10.91 8.76 + -2.16 9.8 5.75 + 0.43 13.64 8.76 + -0.42 6.06 8.76 + -3.63 6.06 7.13 + 2.88 9.97 7.13 + -3.63 13.94 7.13 + -0.45 9.98 9.64 + -2.83 13.95 6.63 + -2.83 6.07 6.63 + -1.69 10.71 9.64 + -4.07 6.8 6.63 + 2.44 10.71 6.63 + -1.7 9.25 9.64 + 2.43 9.25 6.63 + -4.08 13.22 6.63 + 7.3 4.62 11.78 + 4 -0.57 13.49 + 10.66 -0.51 9.98 + 0.53 4.74 13.64 + -2.99 -0.57 12.28 + -9.65 -0.51 9.98 + -6.29 -5.64 11.48 + 7.25 -5.64 11.48 + -6.24 4.62 10.13 + 0.48 -5.64 9.84 + -2.83 9.75 11.93 + 3.94 9.75 10.28 + 3.37 -2.06 12.41 + -4.2 -1.21 12.41 + -0.87 -8.36 12.41 + 0.35 -3.47 9.9 + -0.16 -8.01 12.91 + -3.49 -0.87 12.91 + -1.08 -3.33 9.9 + 2.66 -1.58 12.91 + -1.58 -7.87 12.91 + -0.48 -4.65 9.9 + -4.31 -2.06 12.91 + 3.27 -2.9 12.91 + 3.27 -6.11 11.27 + -0.64 0.39 11.27 + -4.61 -6.11 11.27 + -0.65 -2.94 13.79 + -4.62 -5.32 10.78 + 3.26 -5.32 10.78 + -1.38 -4.18 13.79 + 2.53 -6.56 10.78 + -1.38 -0.05 10.78 + 0.08 -4.19 13.79 + 0.08 -0.06 10.78 + -3.89 -6.57 10.78 + 4.47 3.72 14.47 + -3.11 4.57 14.47 + 0.22 -2.58 14.47 + 1.44 2.31 11.96 + 0.94 -2.23 14.96 + -2.39 4.91 14.96 + 0.01 2.45 11.96 + 3.75 4.2 14.96 + -0.49 -2.09 14.96 + 0.62 1.13 11.96 + -3.22 3.72 14.96 + 4.36 2.88 14.96 + 4.36 -0.33 13.33 + 0.45 6.17 13.33 + -3.52 -0.33 13.33 + 0.44 2.84 15.84 + -3.53 0.46 12.83 + 4.35 0.46 12.83 + -0.29 1.6 15.84 + 3.62 -0.78 12.83 + -0.29 5.73 12.83 + 1.17 1.59 15.84 + 1.17 5.72 12.83 + -2.8 -0.79 12.83 + 9.37 6.17 12.41 + 1.79 7.02 12.41 + 5.12 -0.13 12.41 + 6.34 4.76 9.9 + 5.84 0.22 12.91 + 2.51 7.36 12.91 + 4.91 4.9 9.9 + 8.65 6.65 12.91 + 4.41 0.36 12.91 + 5.52 3.58 9.9 + 1.68 6.17 12.91 + 9.26 5.32 12.91 + 9.26 2.11 11.27 + 5.35 8.62 11.27 + 1.38 2.11 11.27 + 5.34 5.28 13.79 + 1.37 2.91 10.78 + 9.25 2.91 10.78 + 4.61 4.05 13.79 + 8.52 1.67 10.78 + 4.61 8.18 10.78 + 6.07 4.04 13.79 + 6.07 8.17 10.78 + 2.1 1.66 10.78 + 0.67 8.72 12.41 + -6.91 9.57 12.41 + -3.58 2.42 12.41 + -2.36 7.31 9.9 + -2.86 2.77 12.91 + -6.19 9.91 12.91 + -3.79 7.45 9.9 + -0.04 9.2 12.91 + -4.29 2.91 12.91 + -3.18 6.13 9.9 + -7.01 8.72 12.91 + 0.56 7.88 12.91 + 0.56 4.67 11.27 + -3.35 11.17 11.27 + -7.32 4.67 11.27 + -3.36 7.84 13.79 + -7.33 5.46 10.78 + 0.55 5.46 10.78 + -4.09 6.6 13.79 + -0.18 4.22 10.78 + -4.09 10.73 10.78 + -2.63 6.59 13.79 + -2.63 10.72 10.78 + -6.6 4.21 10.78 + 13.15 2.28 10.74 + 5.57 3.13 10.74 + 8.9 -4.01 10.74 + 10.12 0.88 8.23 + 9.62 -3.67 11.23 + 6.29 3.48 11.23 + 8.69 1.02 8.23 + 12.44 2.77 11.23 + 8.19 -3.53 11.23 + 9.3 -0.31 8.23 + 5.47 2.29 11.23 + 13.05 1.44 11.23 + 13.04 -1.77 9.6 + 9.13 4.74 9.6 + 5.16 -1.77 9.6 + 9.13 1.4 12.11 + 5.15 -0.97 9.11 + 13.04 -0.97 9.11 + 8.4 0.17 12.11 + 12.31 -2.21 9.11 + 8.4 4.3 9.11 + 9.85 0.16 12.11 + 9.85 4.29 9.11 + 5.88 -2.22 9.11 + -3.05 3.44 10.74 + -10.63 4.29 10.74 + -7.3 -2.85 10.74 + -6.08 2.04 8.23 + -6.58 -2.51 11.23 + -9.92 4.63 11.23 + -7.51 2.18 8.23 + -3.77 3.92 11.23 + -8.01 -2.37 11.23 + -6.9 0.85 8.23 + -10.74 3.45 11.23 + -3.16 2.6 11.23 + -3.16 -0.61 9.6 + -7.07 5.9 9.6 + -11.04 -0.61 9.6 + -7.08 2.56 12.11 + -11.05 0.18 9.11 + -3.17 0.18 9.11 + -7.81 1.32 12.11 + -3.9 -1.05 9.11 + -7.81 5.46 9.11 + -6.35 1.31 12.11 + -6.35 5.45 9.11 + -10.32 -1.06 9.11 + 8.34 6.34 9.88 + 8.34 -0.43 8.24 + -3.47 0.13 9.11 + -2.62 7.71 9.11 + -9.77 4.38 9.11 + -4.87 3.16 6.6 + -9.42 3.66 9.6 + -2.28 7 9.6 + 4.25 2.02 14.64 + 2.43 -2.51 15.99 + 7.62 -1.5 13.21 + -1.05 1.13 16.12 + -3.03 -3.52 15.03 + -8.23 -4.44 13.21 + -4.87 -7.96 14.4 + 5.7 -6 14.4 + -6.31 0.06 13.33 + 0.41 -6.98 13.09 + -1.14 -5.39 12.14 + 1.53 -3.49 14.53 + -0.87 -9.02 14.53 + -0.48 -6.34 12.14 + -3.84 -4.87 14.53 + 2.19 -4.44 14.53 + 2.66 -6.94 13.23 + -1.34 -2.43 13.23 + -3.49 -8.08 13.23 + -0.86 -5.03 15.23 + -3.61 -7.46 12.84 + 2.54 -6.32 12.84 + -1.25 -6.1 15.23 + 2.14 -7.39 12.84 + -1.85 -2.88 12.84 + -0.11 -5.9 15.23 + -0.71 -2.68 12.84 + -2.87 -8.33 12.84 + 2.17 0.9 15.77 + -3.87 0.47 15.77 + -0.23 -4.62 15.77 + 0.01 -0.63 13.77 + 0.28 -4.25 16.16 + -3.36 0.84 16.16 + -1.13 -0.73 13.77 + 1.54 1.18 16.16 + -0.86 -4.35 16.16 + -0.46 -1.67 13.77 + -3.83 -0.2 16.16 + 2.21 0.23 16.16 + 2.67 -2.27 14.86 + -1.32 2.24 14.86 + -3.48 -3.41 14.86 + -0.84 -0.37 16.86 + -3.6 -2.8 14.47 + 2.55 -1.66 14.47 + -1.23 -1.44 16.86 + 2.16 -2.72 14.47 + -1.83 1.79 14.47 + -0.09 -1.23 16.86 + -0.69 1.99 14.47 + -2.85 -3.66 14.47 + 5.64 3.52 14.14 + -0.4 3.09 14.14 + 3.24 -2 14.14 + 3.48 1.99 12.14 + 3.75 -1.63 14.53 + 0.11 3.46 14.53 + 2.34 1.89 12.14 + 5.01 3.8 14.53 + 2.61 -1.73 14.53 + 3.01 0.95 12.14 + -0.36 2.42 14.53 + 5.68 2.85 14.53 + 6.14 0.35 13.23 + 2.15 4.86 13.23 + -0.01 -0.79 13.23 + 2.63 2.25 15.23 + -0.13 -0.18 12.84 + 6.02 0.96 12.84 + 2.24 1.18 15.23 + 5.63 -0.11 12.84 + 1.64 4.41 12.84 + 3.37 1.39 15.23 + 2.78 4.61 12.84 + 0.62 -1.04 12.84 + -1.52 4.26 14.14 + -7.55 3.82 14.14 + -3.92 -1.27 14.14 + -3.68 2.72 12.14 + -3.41 -0.9 14.53 + -7.04 4.19 14.53 + -4.81 2.63 12.14 + -2.14 4.53 14.53 + -4.55 -1 14.53 + -4.15 1.68 12.14 + -7.51 3.15 14.53 + -1.48 3.58 14.53 + -1.01 1.08 13.23 + -5.01 5.59 13.23 + -7.17 -0.06 13.23 + -4.53 2.99 15.23 + -7.29 0.56 12.84 + -1.13 1.7 12.84 + -4.92 1.92 15.23 + -1.53 0.63 12.84 + -5.52 5.14 12.84 + -3.78 2.12 15.23 + -4.38 5.34 12.84 + -6.54 -0.31 12.84 + 9.51 2.43 13.47 + 3.48 1.99 13.47 + 7.11 -3.1 13.47 + 7.35 0.89 11.48 + 7.62 -2.73 13.86 + 3.99 2.36 13.86 + 6.22 0.8 11.48 + 8.89 2.7 13.86 + 6.48 -2.83 13.86 + 6.88 -0.15 11.48 + 3.52 1.32 13.86 + 9.55 1.75 13.86 + 10.01 -0.75 12.57 + 6.02 3.76 12.57 + 3.86 -1.89 12.57 + 6.5 1.16 14.56 + 3.74 -1.27 12.18 + 9.89 -0.13 12.18 + 6.11 0.09 14.56 + 9.5 -1.2 12.18 + 5.51 3.31 12.18 + 7.25 0.29 14.56 + 6.65 3.51 12.18 + 4.49 -2.14 12.18 + -2.95 -1.56 13.47 + -8.99 -2 13.47 + -5.36 -7.09 13.47 + -5.11 -3.1 11.48 + -4.85 -6.72 13.86 + -8.48 -1.63 13.86 + -6.25 -3.19 11.48 + -3.58 -1.29 13.86 + -5.98 -6.82 13.86 + -5.58 -4.14 11.48 + -8.95 -2.67 13.86 + -2.91 -2.24 13.86 + -2.45 -4.74 12.57 + -6.44 -0.23 12.57 + -8.6 -5.88 12.57 + -5.96 -2.83 14.56 + -8.72 -5.26 12.18 + -2.57 -4.12 12.18 + -6.36 -3.9 14.56 + -2.96 -5.19 12.18 + -6.95 -0.68 12.18 + -5.22 -3.7 14.56 + -5.81 -0.48 12.18 + -7.97 -6.13 12.18 + -2.91 3.99 16.26 + 1.62 2.17 17.62 + 0.61 7.36 14.83 + -2.02 -1.31 17.74 + 2.63 -3.29 16.65 + 3.55 -8.49 14.83 + 7.07 -5.13 16.02 + 5.11 5.44 16.02 + -0.95 -6.57 14.95 + 6.09 0.15 14.72 + -5.44 -4.65 16.38 + -6.42 0.63 15.07 + 2.88 1.9 16.76 + 3.31 -4.14 16.76 + 8.4 -0.51 16.76 + 4.41 -0.27 14.77 + 8.03 0 17.15 + 2.94 -3.63 17.15 + 4.51 -1.4 14.77 + 2.6 1.27 17.15 + 8.13 -1.13 17.15 + 5.45 -0.73 14.77 + 3.98 -4.1 17.15 + 3.55 1.94 17.15 + 6.06 2.4 15.86 + 1.54 -1.59 15.86 + 7.2 -3.75 15.86 + 4.15 -1.12 17.85 + 6.58 -3.87 15.47 + 5.44 2.28 15.47 + 5.22 -1.51 17.85 + 6.51 1.89 15.47 + 1.99 -2.11 15.47 + 5.01 -0.37 17.85 + 1.79 -0.97 15.47 + 7.44 -3.13 15.47 + -1.79 1.91 18.39 + -1.36 -4.13 18.39 + 3.74 -0.49 18.39 + -0.26 -0.25 16.4 + 3.36 0.02 18.78 + -1.73 -3.62 18.78 + -0.16 -1.38 16.4 + -2.06 1.29 18.78 + 3.46 -1.12 18.78 + 0.79 -0.72 16.4 + -0.68 -4.08 18.78 + -1.12 1.95 18.78 + 1.39 2.41 17.49 + -3.13 -1.58 17.49 + 2.53 -3.74 17.49 + -0.52 -1.1 19.48 + 1.91 -3.86 17.1 + 0.77 2.29 17.1 + 0.55 -1.49 19.48 + 1.84 1.9 17.1 + -2.68 -2.09 17.1 + 0.35 -0.35 19.48 + -2.88 -0.95 17.1 + 2.78 -3.11 17.1 + -4.41 5.38 16.76 + -3.98 -0.66 16.76 + 1.12 2.98 16.76 + -2.88 3.22 14.77 + 0.74 3.49 17.15 + -4.35 -0.15 17.15 + -2.78 2.09 14.77 + -4.68 4.76 17.15 + 0.84 2.35 17.15 + -1.83 2.75 14.77 + -3.3 -0.62 17.15 + -3.74 5.42 17.15 + -1.23 5.88 15.86 + -5.75 1.89 15.86 + -0.09 -0.27 15.86 + -3.14 2.37 17.85 + -0.71 -0.39 15.47 + -1.85 5.76 15.47 + -2.07 1.98 17.85 + -0.78 5.37 15.47 + -5.3 1.38 15.47 + -2.27 3.12 17.85 + -5.5 2.52 15.47 + 0.16 0.36 15.47 + -5.14 -1.78 16.76 + -4.71 -7.81 16.76 + 0.38 -4.18 16.76 + -3.61 -3.94 14.77 + 0.01 -3.67 17.15 + -5.08 -7.3 17.15 + -3.51 -5.07 14.77 + -5.42 -2.4 17.15 + 0.11 -4.8 17.15 + -2.57 -4.41 14.77 + -4.04 -7.77 17.15 + -4.47 -1.74 17.15 + -1.97 -1.27 15.86 + -6.48 -5.27 15.86 + -0.83 -7.42 15.86 + -3.87 -4.79 17.85 + -1.44 -7.54 15.47 + -2.58 -1.39 15.47 + -2.8 -5.18 17.85 + -1.51 -1.79 15.47 + -6.03 -5.78 15.47 + -3.01 -4.04 17.85 + -6.23 -4.64 15.47 + -0.58 -6.8 15.47 + -1.93 8.89 15.43 + -1.49 2.86 15.43 + 3.6 6.49 15.43 + -0.39 6.73 13.44 + 3.23 7 15.82 + -1.87 3.37 15.82 + -0.3 5.6 13.44 + -2.2 8.27 15.82 + 3.32 5.87 15.82 + 0.65 6.27 13.44 + -0.82 2.9 15.82 + -1.25 8.94 15.82 + 1.25 9.4 14.53 + -3.26 5.41 14.53 + 2.39 3.25 14.53 + -0.66 5.88 16.52 + 1.77 3.13 14.14 + 0.63 9.28 14.14 + 0.41 5.49 16.52 + 1.7 8.89 14.14 + -2.81 4.89 14.14 + 0.21 6.63 16.52 + -3.02 6.03 14.14 + 2.64 3.87 14.14 + -0.49 -3.92 15.43 + -0.05 -9.95 15.43 + 5.04 -6.32 15.43 + 1.05 -6.08 13.44 + 4.67 -5.81 15.82 + -0.42 -9.44 15.82 + 1.14 -7.21 13.44 + -0.76 -4.54 15.82 + 4.77 -6.95 15.82 + 2.09 -6.55 13.44 + 0.62 -9.91 15.82 + 0.19 -3.88 15.82 + 2.69 -3.41 14.53 + -1.82 -7.41 14.53 + 3.83 -9.57 14.53 + 0.78 -6.93 16.52 + 3.21 -9.69 14.14 + 2.07 -3.53 14.14 + 1.85 -7.32 16.52 + 3.14 -3.93 14.14 + -1.37 -7.92 14.14 + 1.65 -6.18 16.52 + -1.57 -6.78 14.14 + 4.08 -8.94 14.14 + -4.39 4.56 14.76 + 0.89 5.54 13.45 + 2.15 -3.76 14.14 + -3.88 -4.2 14.14 + -0.25 -9.29 14.14 + -0.01 -5.3 12.14 + 0.26 -8.92 14.53 + -3.37 -3.83 14.53 + faces 244 + 0 1 2 1 0 1 2 1 + 3 1 0 1 2 1 0 1 + 4 1 3 1 0 1 2 1 + 5 6 4 1 2 1 0 1 + 1 7 2 1 0 1 2 1 + 8 4 3 1 0 1 2 1 + 4 9 1 1 0 1 2 1 + 1 9 7 1 0 1 2 1 + 8 5 4 1 2 1 0 1 + 10 11 12 1 0 2 3 1 + 13 14 15 1 2 0 1 1 + 16 17 18 1 1 2 0 1 + 19 20 21 1 0 3 2 1 + 22 23 24 1 0 3 2 1 + 25 26 27 1 2 1 0 1 + 28 29 30 1 2 0 1 1 + 31 32 33 1 0 2 3 1 + 34 35 36 1 0 2 3 1 + 37 38 39 1 2 0 1 1 + 40 41 42 1 1 2 0 1 + 43 44 45 1 0 3 2 1 + 46 47 48 1 0 3 2 1 + 49 50 51 1 2 1 0 1 + 52 53 54 1 2 0 1 1 + 55 56 57 1 0 2 3 1 + 58 59 60 1 0 2 3 1 + 61 62 63 1 2 0 1 1 + 64 65 66 1 1 2 0 1 + 67 68 69 1 0 3 2 1 + 70 71 72 1 0 3 2 1 + 73 74 75 1 2 1 0 1 + 76 77 78 1 2 0 1 1 + 79 80 81 1 0 2 3 1 + 82 83 84 1 0 2 3 1 + 85 86 87 1 2 0 1 1 + 88 89 90 1 1 2 0 1 + 91 92 93 1 0 3 2 1 + 94 95 96 1 0 3 2 1 + 97 98 99 1 2 1 0 1 + 100 101 102 1 2 0 1 1 + 103 104 105 1 0 2 3 1 + 106 107 108 1 0 2 3 1 + 109 110 111 1 2 0 1 1 + 112 113 114 1 1 2 0 1 + 115 116 117 1 0 3 2 1 + 118 119 120 1 0 3 2 1 + 121 122 123 1 2 1 0 1 + 124 125 126 1 2 0 1 1 + 127 128 129 1 0 2 3 1 + 130 131 132 1 0 2 3 1 + 133 134 135 1 2 0 1 1 + 136 137 138 1 1 2 0 1 + 139 140 141 1 0 3 2 1 + 142 143 144 1 0 3 2 1 + 145 146 147 1 2 1 0 1 + 148 149 150 1 0 1 2 1 + 151 149 148 1 2 1 0 1 + 152 149 151 1 0 1 2 1 + 153 154 152 1 2 1 0 1 + 149 155 150 1 0 1 2 1 + 156 152 151 1 0 1 2 1 + 152 157 149 1 0 1 2 1 + 149 157 155 1 0 1 2 1 + 156 153 152 1 2 1 0 1 + 158 151 159 1 0 1 2 1 + 159 151 148 1 2 1 0 1 + 158 156 151 1 0 1 2 1 + 152 154 157 1 2 1 0 1 + 160 161 162 1 2 0 1 1 + 163 164 165 1 0 2 3 1 + 166 167 168 1 0 2 3 1 + 169 170 171 1 2 0 1 1 + 172 173 174 1 1 2 0 1 + 175 176 177 1 0 3 2 1 + 178 179 180 1 0 3 2 1 + 181 182 183 1 2 1 0 1 + 184 185 186 1 2 0 1 1 + 187 188 189 1 0 2 3 1 + 190 191 192 1 0 2 3 1 + 193 194 195 1 2 0 1 1 + 196 197 198 1 1 2 0 1 + 199 200 201 1 0 3 2 1 + 202 203 204 1 0 3 2 1 + 205 206 207 1 2 1 0 1 + 208 209 210 1 2 0 1 1 + 211 212 213 1 0 2 3 1 + 214 215 216 1 0 2 3 1 + 217 218 219 1 2 0 1 1 + 220 221 222 1 1 2 0 1 + 223 224 225 1 0 3 2 1 + 226 227 228 1 0 3 2 1 + 229 230 231 1 2 1 0 1 + 232 233 234 1 2 0 1 1 + 235 236 237 1 0 2 3 1 + 238 239 240 1 0 2 3 1 + 241 242 243 1 2 0 1 1 + 244 245 246 1 1 2 0 1 + 247 248 249 1 0 3 2 1 + 250 251 252 1 0 3 2 1 + 253 254 255 1 2 1 0 1 + 256 257 258 1 2 0 1 1 + 259 260 261 1 0 2 3 1 + 262 263 264 1 0 2 3 1 + 265 266 267 1 2 0 1 1 + 268 269 270 1 1 2 0 1 + 271 272 273 1 0 3 2 1 + 274 275 276 1 0 3 2 1 + 277 278 279 1 2 1 0 1 + 280 281 282 1 2 0 1 1 + 283 284 285 1 0 2 3 1 + 286 287 288 1 0 2 3 1 + 289 290 291 1 2 0 1 1 + 292 293 294 1 1 2 0 1 + 295 296 297 1 0 3 2 1 + 298 299 300 1 0 3 2 1 + 301 302 303 1 2 1 0 1 + 304 3 305 1 0 1 2 1 + 305 3 0 1 2 1 0 1 + 304 8 3 1 0 1 2 1 + 4 6 9 1 2 1 0 1 + 306 307 308 1 2 0 1 1 + 309 310 311 1 0 2 3 1 + 312 313 314 1 0 1 2 1 + 315 313 312 1 2 1 0 1 + 316 313 315 1 0 1 2 1 + 317 318 316 1 2 1 0 1 + 313 319 314 1 0 1 2 1 + 320 316 315 1 0 1 2 1 + 316 321 313 1 0 1 2 1 + 313 321 319 1 0 1 2 1 + 320 317 316 1 2 1 0 1 + 322 323 324 1 0 2 3 1 + 325 326 327 1 2 0 1 1 + 328 329 330 1 1 2 0 1 + 331 332 333 1 0 3 2 1 + 334 335 336 1 0 3 2 1 + 337 338 339 1 2 1 0 1 + 340 341 342 1 2 0 1 1 + 343 344 345 1 0 2 3 1 + 346 347 348 1 0 2 3 1 + 349 350 351 1 2 0 1 1 + 352 353 354 1 1 2 0 1 + 355 356 357 1 0 3 2 1 + 358 359 360 1 0 3 2 1 + 361 362 363 1 2 1 0 1 + 364 365 366 1 2 0 1 1 + 367 368 369 1 0 2 3 1 + 370 371 372 1 0 2 3 1 + 373 374 375 1 2 0 1 1 + 376 377 378 1 1 2 0 1 + 379 380 381 1 0 3 2 1 + 382 383 384 1 0 3 2 1 + 385 386 387 1 2 1 0 1 + 388 389 390 1 2 0 1 1 + 391 392 393 1 0 2 3 1 + 394 395 396 1 0 2 3 1 + 397 398 399 1 2 0 1 1 + 400 401 402 1 1 2 0 1 + 403 404 405 1 0 3 2 1 + 406 407 408 1 0 3 2 1 + 409 410 411 1 2 1 0 1 + 412 413 414 1 2 0 1 1 + 415 416 417 1 0 2 3 1 + 418 419 420 1 0 2 3 1 + 421 422 423 1 2 0 1 1 + 424 425 426 1 1 2 0 1 + 427 428 429 1 0 3 2 1 + 430 431 432 1 0 3 2 1 + 433 434 435 1 2 1 0 1 + 436 437 438 1 2 0 1 1 + 439 440 441 1 0 2 3 1 + 442 443 444 1 0 2 3 1 + 445 446 447 1 2 0 1 1 + 448 449 450 1 1 2 0 1 + 451 452 453 1 0 3 2 1 + 454 455 456 1 0 3 2 1 + 457 458 459 1 2 1 0 1 + 460 461 462 1 0 1 2 1 + 463 461 460 1 2 1 0 1 + 464 461 463 1 0 1 2 1 + 465 466 464 1 2 1 0 1 + 461 467 462 1 0 1 2 1 + 468 464 463 1 0 1 2 1 + 464 469 461 1 0 1 2 1 + 461 469 467 1 0 1 2 1 + 468 465 464 1 2 1 0 1 + 470 463 471 1 0 1 2 1 + 471 463 460 1 2 1 0 1 + 470 468 463 1 0 1 2 1 + 464 466 469 1 2 1 0 1 + 472 473 474 1 2 0 1 1 + 475 476 477 1 0 2 3 1 + 478 479 480 1 0 2 3 1 + 481 482 483 1 2 0 1 1 + 484 485 486 1 1 2 0 1 + 487 488 489 1 0 3 2 1 + 490 491 492 1 0 3 2 1 + 493 494 495 1 2 1 0 1 + 496 497 498 1 2 0 1 1 + 499 500 501 1 0 2 3 1 + 502 503 504 1 0 2 3 1 + 505 506 507 1 2 0 1 1 + 508 509 510 1 1 2 0 1 + 511 512 513 1 0 3 2 1 + 514 515 516 1 0 3 2 1 + 517 518 519 1 2 1 0 1 + 520 521 522 1 2 0 1 1 + 523 524 525 1 0 2 3 1 + 526 527 528 1 0 2 3 1 + 529 530 531 1 2 0 1 1 + 532 533 534 1 1 2 0 1 + 535 536 537 1 0 3 2 1 + 538 539 540 1 0 3 2 1 + 541 542 543 1 2 1 0 1 + 544 545 546 1 2 0 1 1 + 547 548 549 1 0 2 3 1 + 550 551 552 1 0 2 3 1 + 553 554 555 1 2 0 1 1 + 556 557 558 1 1 2 0 1 + 559 560 561 1 0 3 2 1 + 562 563 564 1 0 3 2 1 + 565 566 567 1 2 1 0 1 + 568 569 570 1 2 0 1 1 + 571 572 573 1 0 2 3 1 + 574 575 576 1 0 2 3 1 + 577 578 579 1 2 0 1 1 + 580 581 582 1 1 2 0 1 + 583 584 585 1 0 3 2 1 + 586 587 588 1 0 3 2 1 + 589 590 591 1 2 1 0 1 + 592 593 594 1 2 0 1 1 + 595 596 597 1 0 2 3 1 + 598 599 600 1 0 2 3 1 + 601 602 603 1 2 0 1 1 + 604 605 606 1 1 2 0 1 + 607 608 609 1 0 3 2 1 + 610 611 612 1 0 3 2 1 + 613 614 615 1 2 1 0 1 + 616 315 617 1 0 1 2 1 + 617 315 312 1 2 1 0 1 + 616 320 315 1 0 1 2 1 + 316 318 321 1 2 1 0 1 + 618 619 620 1 2 0 1 1 + 621 622 623 1 0 2 3 1 + tverts 4 + 0.0078125 0.0078125 0 + 0.505859 0.992188 0 + 0.998047 0.0078125 0 + 0.505859 0.994141 0 +endnode +node trimesh loft01 + parent wsf10_s01_02 + position -2.52 -0.42 -0.27 + orientation 0 0 0 0 + wirecolor 0.839216 0.839216 0.839216 + tilefade 0 + scale 1 + render 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + center undefined + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + bitmap tno01_bark02 + shadow 0 + verts 228 + -0.26 0.51 2.37 + -0.28 -0.1 1.95 + -0.3 -0.71 1.54 + 0.36 -0.89 1.44 + 1.02 -1.08 1.35 + 1.52 -0.68 1.65 + 2.03 -0.28 1.94 + 1.54 0.25 2.27 + 1.05 0.78 2.61 + 0.4 0.64 2.49 + 0.17 0.31 3.32 + -0.13 -0.47 3.26 + 0.11 -1.27 3.2 + 0.92 -1.57 3.19 + 1.34 -1.1 3.22 + 1.77 -0.63 3.26 + 1.38 -0.04 3.3 + 0.99 0.56 3.34 + 0.28 0.5 4.15 + 0.04 -0.01 4.41 + 0.25 -0.53 4.66 + 1.1 -0.58 4.65 + 1.62 -0.13 4.42 + 1.29 0.26 4.24 + 0.95 0.65 4.06 + 0.44 1.2 5.92 + 0.25 0.72 5.92 + 0.41 0.23 5.92 + 1.05 0.19 5.92 + 1.46 0.62 5.92 + 1.21 0.99 5.92 + 0.96 1.35 5.92 + 0.42 0.11 8.65 + 0.45 -0.38 8.42 + 0.93 -0.41 8.42 + 1.22 -0.15 8.55 + 1.03 0.07 8.65 + 0.85 0.29 8.75 + 0.4 -1.17 10.8 + 0.41 -1.65 10.83 + 0.78 -1.67 10.83 + 0.92 -1.3 10.78 + 0.73 -0.99 10.78 + 0.57 0.66 12.73 + 0.59 0.37 12.92 + 0.9 0.35 12.92 + 1.03 0.56 12.77 + 0.84 0.76 12.64 + 1.13 1.45 14.81 + 1.05 1.22 14.75 + 1.11 1 14.69 + 1.34 0.98 14.69 + 1.44 1.27 14.77 + 1.31 1.52 14.83 + 0.08 -1.52 17.39 + 0.01 -1.6 17.25 + 0.14 -1.68 17.21 + 0.25 -1.65 17.29 + 0.23 -1.55 17.41 + -2.62 -3.84 19.01 + 1.08 0.9 5.7 + 0.67 0.8 6.07 + 0.63 0.32 5.97 + 0.93 0.17 5.64 + 1.22 0.5 5.45 + 2.92 0.7 7.02 + 2.54 0.67 7.24 + 2.52 0.29 7.24 + 2.81 0.13 7.07 + 3.06 0.36 6.93 + 3.4 0.61 9.66 + 3.16 0.59 9.9 + 3.14 0.3 9.89 + 3.32 0.18 9.71 + 3.49 0.36 9.56 + 5.55 0.46 10.86 + 5.4 0.43 11.1 + 5.39 0.18 11.1 + 5.5 0.08 10.91 + 5.6 0.23 10.76 + 6.96 0.34 12.42 + 6.89 0.32 12.65 + 6.87 0.11 12.65 + 6.93 0.03 12.46 + 6.98 0.16 12.31 + 9.03 0.15 12.39 + 9.01 0.08 12.59 + 9.01 -0.06 12.44 + 11.22 -0.05 13.52 + 1.05 0.32 5.45 + 0.83 0.67 5.1 + 0.32 0.54 5.17 + 0.25 0.18 5.51 + 0.67 -0.01 5.73 + 0.45 2.36 7.14 + 0.3 2.63 6.87 + -0.06 2.55 6.91 + -0.11 2.29 7.15 + 0.19 2.16 7.31 + 0.64 3.59 9.33 + 0.52 3.79 9.07 + 0.22 3.72 9.11 + 0.18 3.53 9.33 + 0.42 3.44 9.48 + 0.61 5.33 10.77 + 0.5 5.48 10.5 + 0.21 5.41 10.54 + 0.17 5.26 10.77 + 0.4 5.19 10.93 + 0.06 7.68 11.46 + -0.03 7.77 11.18 + -0.29 7.71 11.21 + -0.34 7.61 11.45 + -0.14 7.59 11.61 + -0.25 9.43 12.75 + -0.29 9.45 12.62 + -0.41 9.42 12.64 + -0.44 9.39 12.75 + -0.35 9.4 12.83 + 0.24 10.22 14.37 + 0.51 -1.24 10.77 + 0.57 -1.43 10.54 + 0.84 -1.43 10.58 + 0.72 -1.16 10.9 + 0.17 -2.94 12.2 + 0.22 -3.08 11.99 + 0.45 -3.08 12.02 + 0.51 -2.97 12.2 + 0.35 -2.88 12.32 + 0.48 -5.46 12.68 + 0.52 -5.52 12.51 + 0.69 -5.52 12.53 + 0.73 -5.47 12.67 + 0.61 -5.43 12.77 + 0.54 -7.3 14.2 + 0.58 -7.32 14.06 + 0.7 -7.32 14.08 + 0.73 -7.3 14.19 + 0.64 -7.29 14.27 + -0.12 -7.95 15.81 + 0.42 5.21 10.63 + 0.45 5.34 10.48 + 0.28 5.4 10.62 + 1.11 6.14 11.41 + 1.18 6.28 11.32 + 1.01 6.32 11.42 + 1.74 7.31 12.66 + 1.78 7.43 12.55 + 1.63 7.48 12.66 + 2.89 8.31 14.05 + 1.42 1.17 14.79 + 1.32 1.34 14.56 + 1.06 1.28 14.6 + 1.02 1.12 14.79 + 1.23 1.04 14.92 + 1.37 2.91 16.22 + 1.29 3.03 16.01 + 1.07 2.97 16.04 + 1.03 2.85 16.22 + 1.21 2.8 16.34 + 0.79 5.26 16.89 + 0.74 5.31 16.72 + 0.58 5.27 16.74 + 0.55 5.21 16.89 + 0.67 5.2 16.99 + 0.56 7.01 18.22 + 0.52 7.02 18.08 + 0.4 7 18.1 + 0.38 6.97 18.21 + 0.47 6.98 18.29 + 1.06 7.79 19.83 + 7.4 -0.1 12.55 + 7.49 -0.02 12.39 + 7.33 0.11 12.48 + 8.38 0.48 13.33 + 8.5 0.58 13.23 + 8.34 0.68 13.29 + 9.27 1.54 13.52 + 9.37 1.61 13.39 + 9.22 1.72 13.46 + 10.52 2.5 14.57 + 1.16 -1.58 0.37 + 1.27 -1.64 0.39 + 1.4 -1.58 0.41 + -0.92 -0.58 0.27 + -0.87 -0.71 0.27 + -0.69 -0.76 0.27 + -0.66 -0.76 0.27 + -0.48 -0.82 0.27 + 0.1 -1 0.36 + 0.19 -1.03 0.36 + 0.41 -1.09 0.35 + 0.52 -1.17 0.34 + 0.6 -1.21 0.35 + 0.78 -1.32 0.4 + 1.44 -1.55 0.43 + 1.52 -1.48 0.46 + 2.37 -0.73 0.79 + 2.32 -0.58 0.83 + 2.04 -1.06 0.65 + 2.14 -0.97 0.69 + 2.39 -0.8 0.8 + -1.26 0.42 0.29 + -1.23 0.34 0.29 + -1.05 -0.15 0.3 + 2.01 0.08 0.85 + 2.16 0.42 0.91 + 2.08 -0.02 0.84 + 2.19 -0.15 0.84 + -0.84 1.42 0.32 + -1.21 0.69 0.29 + -1.29 0.53 0.28 + 2.38 1.33 0.9 + 2.29 1.42 0.9 + 2.39 1.29 0.9 + 2.47 1.06 0.9 + -0.83 1.67 0.32 + -0.81 1.49 0.32 + -0.48 1.64 0.35 + -0.31 1.59 0.42 + 0.52 1.53 0.81 + 0.39 1.44 0.76 + 0.18 1.43 0.66 + 1 1.9 0.86 + 1.52 2.19 0.9 + 1.28 2.12 0.88 + 1.91 1.81 0.9 + 1.54 2.2 0.9 + faces 380 + 210 211 1 1 419 420 1 1 + 1 217 209 1 1 427 418 1 + 210 1 209 1 419 1 418 1 + 0 216 217 1 181 425 427 1 + 217 1 0 1 427 1 181 1 + 1 211 202 1 1 420 411 1 + 2 1 202 1 182 1 411 1 + 2 202 203 1 182 411 412 1 + 189 190 3 1 397 398 3 1 + 188 189 3 1 396 397 3 1 + 187 188 3 1 395 396 3 1 + 187 3 186 1 395 3 394 1 + 185 186 3 1 393 394 3 1 + 3 2 185 1 3 2 393 1 + 3 190 191 1 3 398 399 1 + 191 4 3 1 399 183 3 1 + 199 200 5 1 407 408 184 1 + 196 199 5 1 404 407 184 1 + 196 5 195 1 404 184 403 1 + 5 4 182 1 184 183 389 1 + 5 182 183 1 184 389 390 1 + 5 183 195 1 184 390 403 1 + 198 208 6 1 406 417 6 1 + 6 201 197 1 6 409 405 1 + 198 6 197 1 406 6 405 1 + 5 200 201 1 184 408 410 1 + 201 6 5 1 410 185 184 1 + 206 215 7 1 415 424 7 1 + 7 205 206 1 7 414 415 1 + 6 208 207 1 6 417 416 1 + 6 207 205 1 6 416 414 1 + 6 205 7 1 6 414 7 1 + 7 215 214 1 7 424 423 1 + 7 214 212 1 7 423 421 1 + 7 212 8 1 7 421 186 1 + 9 225 223 1 187 436 434 1 + 9 223 220 1 187 434 430 1 + 221 9 220 1 431 187 430 1 + 8 227 224 1 8 440 435 1 + 8 224 225 1 8 435 437 1 + 9 8 225 1 9 8 437 1 + 221 222 0 1 432 433 0 1 + 0 9 221 1 0 9 432 1 + 0 1 11 1 181 1 11 1 + 11 10 0 1 11 188 181 1 + 1 2 12 1 1 182 189 1 + 12 11 1 1 189 11 1 1 + 2 3 12 1 2 3 12 1 + 3 4 13 1 3 183 190 1 + 13 12 3 1 190 12 3 1 + 4 5 14 1 4 5 14 1 + 14 13 4 1 14 13 4 1 + 5 6 15 1 5 6 15 1 + 15 14 5 1 15 14 5 1 + 6 7 16 1 6 7 16 1 + 16 15 6 1 16 15 6 1 + 7 8 17 1 7 186 191 1 + 17 16 7 1 191 16 7 1 + 8 9 10 1 8 9 10 1 + 10 17 8 1 10 17 8 1 + 9 0 10 1 9 0 10 1 + 10 11 19 1 188 11 19 1 + 19 18 10 1 19 192 188 1 + 11 12 20 1 11 189 193 1 + 20 19 11 1 193 19 11 1 + 12 13 21 1 12 190 194 1 + 21 20 12 1 194 20 12 1 + 13 14 21 1 13 14 21 1 + 14 15 22 1 14 15 22 1 + 22 21 14 1 22 21 14 1 + 15 16 23 1 15 16 23 1 + 23 22 15 1 23 22 15 1 + 16 17 24 1 16 191 195 1 + 24 23 16 1 195 23 16 1 + 17 10 18 1 17 10 18 1 + 18 24 17 1 18 24 17 1 + 18 19 26 1 192 19 26 1 + 26 25 18 1 26 196 192 1 + 19 20 27 1 19 193 197 1 + 27 26 19 1 197 26 19 1 + 20 21 28 1 20 194 26 1 + 28 27 20 1 26 27 20 1 + 21 22 29 1 21 22 29 1 + 29 28 21 1 29 28 21 1 + 22 23 30 1 22 23 30 1 + 30 29 22 1 30 29 22 1 + 23 24 31 1 23 195 198 1 + 31 30 23 1 198 30 23 1 + 24 18 25 1 24 18 25 1 + 25 31 24 1 25 31 24 1 + 25 26 32 1 196 26 199 1 + 26 27 33 1 26 197 200 1 + 33 32 26 1 200 199 26 1 + 27 28 34 1 27 26 201 1 + 34 33 27 1 201 33 27 1 + 28 29 35 1 28 29 35 1 + 35 34 28 1 35 34 28 1 + 29 30 36 1 29 30 36 1 + 36 35 29 1 36 35 29 1 + 30 31 37 1 30 198 202 1 + 37 36 30 1 202 36 30 1 + 31 25 32 1 31 25 32 1 + 32 37 31 1 32 37 31 1 + 32 33 39 1 199 200 203 1 + 39 38 32 1 203 204 199 1 + 33 34 40 1 33 201 205 1 + 40 39 33 1 205 39 33 1 + 34 35 41 1 34 35 41 1 + 41 40 34 1 41 40 34 1 + 35 36 41 1 35 36 41 1 + 36 37 42 1 36 202 206 1 + 42 41 36 1 206 41 36 1 + 37 32 38 1 37 32 38 1 + 38 42 37 1 38 42 37 1 + 38 39 44 1 204 203 207 1 + 44 43 38 1 207 208 204 1 + 39 40 45 1 39 205 209 1 + 45 44 39 1 209 44 39 1 + 40 41 46 1 40 41 46 1 + 46 45 40 1 46 45 40 1 + 41 42 47 1 41 206 210 1 + 47 46 41 1 210 46 41 1 + 42 38 43 1 42 38 43 1 + 43 47 42 1 43 47 42 1 + 49 48 43 1 49 211 208 1 + 43 44 50 1 208 207 50 1 + 50 49 43 1 50 49 208 1 + 44 45 51 1 44 209 212 1 + 51 50 44 1 212 213 44 1 + 45 46 52 1 45 46 52 1 + 52 51 45 1 52 51 45 1 + 46 47 53 1 46 210 214 1 + 53 52 46 1 214 52 46 1 + 47 43 48 1 47 43 48 1 + 48 53 47 1 48 215 47 1 + 48 49 54 1 211 49 216 1 + 49 50 55 1 49 50 217 1 + 55 54 49 1 217 216 49 1 + 50 51 56 1 213 212 56 1 + 56 55 50 1 218 217 50 1 + 51 52 57 1 51 52 57 1 + 57 56 51 1 57 219 51 1 + 52 53 58 1 52 214 220 1 + 58 57 52 1 220 57 52 1 + 53 48 54 1 215 48 221 1 + 54 58 53 1 54 58 53 1 + 54 55 59 1 216 217 222 1 + 55 56 59 1 55 223 224 1 + 56 57 59 1 56 225 226 1 + 57 58 59 1 57 220 227 1 + 58 54 59 1 58 54 59 1 + 60 61 66 1 228 229 230 1 + 66 65 60 1 230 231 228 1 + 61 62 67 1 232 233 234 1 + 67 66 61 1 234 235 232 1 + 62 63 68 1 236 237 238 1 + 68 67 62 1 238 67 236 1 + 63 64 69 1 237 239 240 1 + 69 68 63 1 240 238 237 1 + 64 60 65 1 241 242 65 1 + 65 69 64 1 65 69 241 1 + 65 66 71 1 231 230 243 1 + 71 70 65 1 243 244 231 1 + 66 67 72 1 66 245 246 1 + 72 71 66 1 246 247 66 1 + 67 68 73 1 67 238 73 1 + 73 72 67 1 73 72 67 1 + 68 69 74 1 68 69 248 1 + 74 73 68 1 248 249 68 1 + 69 65 70 1 69 65 250 1 + 70 74 69 1 250 248 69 1 + 70 71 76 1 244 243 251 1 + 76 75 70 1 251 252 244 1 + 71 72 77 1 71 253 254 1 + 77 76 71 1 254 255 71 1 + 72 73 78 1 72 73 78 1 + 78 77 72 1 78 77 72 1 + 73 74 79 1 73 256 257 1 + 79 78 73 1 257 78 73 1 + 74 70 75 1 74 70 258 1 + 75 79 74 1 258 259 74 1 + 75 76 81 1 252 251 260 1 + 81 80 75 1 260 261 252 1 + 76 77 82 1 76 262 263 1 + 82 81 76 1 263 264 76 1 + 77 78 83 1 77 78 265 1 + 83 82 77 1 265 82 77 1 + 78 79 84 1 78 257 266 1 + 84 83 78 1 266 265 78 1 + 79 75 80 1 79 75 267 1 + 80 84 79 1 267 268 79 1 + 80 81 86 1 261 260 269 1 + 86 85 80 1 269 270 261 1 + 81 82 86 1 81 271 272 1 + 82 83 87 1 82 265 273 1 + 87 86 82 1 273 86 82 1 + 83 84 85 1 265 266 274 1 + 85 87 83 1 85 87 83 1 + 84 80 85 1 84 80 85 1 + 85 86 88 1 270 269 275 1 + 86 87 88 1 86 273 276 1 + 87 85 88 1 87 85 88 1 + 64 61 60 1 64 61 60 1 + 63 61 64 1 63 61 64 1 + 62 61 63 1 62 61 63 1 + 89 90 95 1 277 278 279 1 + 95 94 89 1 279 94 277 1 + 90 91 96 1 280 281 282 1 + 96 95 90 1 282 283 280 1 + 91 92 97 1 284 285 97 1 + 97 96 91 1 97 96 284 1 + 92 93 98 1 285 286 287 1 + 98 97 92 1 287 97 285 1 + 93 89 94 1 288 277 94 1 + 94 98 93 1 94 98 288 1 + 94 95 100 1 94 279 289 1 + 100 99 94 1 289 99 94 1 + 95 96 101 1 95 290 291 1 + 101 100 95 1 291 292 95 1 + 96 97 102 1 96 97 102 1 + 102 101 96 1 102 101 96 1 + 97 98 103 1 97 287 293 1 + 103 102 97 1 293 102 97 1 + 98 94 99 1 98 94 99 1 + 99 103 98 1 99 103 98 1 + 99 100 105 1 99 289 294 1 + 105 104 99 1 294 104 99 1 + 100 101 106 1 100 295 296 1 + 106 105 100 1 296 105 100 1 + 101 102 107 1 101 102 107 1 + 107 106 101 1 107 106 101 1 + 102 103 108 1 102 293 297 1 + 108 107 102 1 297 107 102 1 + 103 99 104 1 103 99 104 1 + 104 108 103 1 104 108 103 1 + 104 105 110 1 104 294 298 1 + 110 109 104 1 298 109 104 1 + 105 106 111 1 105 296 299 1 + 111 110 105 1 299 110 105 1 + 106 107 112 1 106 107 112 1 + 112 111 106 1 112 111 106 1 + 107 108 113 1 107 297 300 1 + 113 112 107 1 300 112 107 1 + 108 104 109 1 108 104 109 1 + 109 113 108 1 109 113 108 1 + 109 110 115 1 109 298 301 1 + 115 114 109 1 301 302 109 1 + 110 111 116 1 110 299 303 1 + 116 115 110 1 303 304 110 1 + 111 112 117 1 111 112 305 1 + 117 116 111 1 305 116 111 1 + 112 113 118 1 112 300 306 1 + 118 117 112 1 306 305 112 1 + 113 109 114 1 113 109 302 1 + 114 118 113 1 302 307 113 1 + 114 115 119 1 302 301 308 1 + 115 116 119 1 115 309 310 1 + 116 117 119 1 116 305 311 1 + 117 118 119 1 117 118 119 1 + 118 114 119 1 118 114 119 1 + 93 90 89 1 93 90 89 1 + 92 90 93 1 92 90 93 1 + 91 90 92 1 91 90 92 1 + 120 121 125 1 120 312 313 1 + 125 124 120 1 313 124 120 1 + 121 122 126 1 121 314 315 1 + 126 125 121 1 315 125 121 1 + 122 41 127 1 122 41 127 1 + 127 126 122 1 127 126 122 1 + 41 123 128 1 41 316 317 1 + 128 127 41 1 317 127 41 1 + 123 120 124 1 123 120 124 1 + 124 128 123 1 124 128 123 1 + 124 125 130 1 124 313 318 1 + 130 129 124 1 318 129 124 1 + 125 126 131 1 125 315 319 1 + 131 130 125 1 319 130 125 1 + 126 127 132 1 126 127 132 1 + 132 131 126 1 132 131 126 1 + 127 128 133 1 127 317 320 1 + 133 132 127 1 320 132 127 1 + 128 124 129 1 128 124 129 1 + 129 133 128 1 129 133 128 1 + 129 130 135 1 129 318 321 1 + 135 134 129 1 321 322 129 1 + 130 131 136 1 130 319 323 1 + 136 135 130 1 323 324 130 1 + 131 132 137 1 131 132 137 1 + 137 136 131 1 137 325 131 1 + 132 133 138 1 132 320 326 1 + 138 137 132 1 326 137 132 1 + 133 129 134 1 133 129 322 1 + 134 138 133 1 322 327 133 1 + 134 135 139 1 322 321 328 1 + 135 136 139 1 135 136 329 1 + 136 137 139 1 136 330 329 1 + 137 138 139 1 137 326 331 1 + 138 134 139 1 138 134 139 1 + 140 141 144 1 332 333 334 1 + 144 143 140 1 334 335 332 1 + 141 142 145 1 141 336 337 1 + 145 144 141 1 337 144 141 1 + 142 140 143 1 142 140 338 1 + 143 145 142 1 338 339 142 1 + 143 144 147 1 335 334 340 1 + 147 146 143 1 340 341 335 1 + 144 145 148 1 144 337 342 1 + 148 147 144 1 342 147 144 1 + 145 143 146 1 145 143 146 1 + 146 148 145 1 146 148 145 1 + 146 147 149 1 341 340 343 1 + 147 148 149 1 147 342 344 1 + 148 146 149 1 148 146 149 1 + 150 151 156 1 150 345 346 1 + 156 155 150 1 346 155 150 1 + 151 152 157 1 151 347 348 1 + 157 156 151 1 348 156 151 1 + 152 153 158 1 152 153 158 1 + 158 157 152 1 158 157 152 1 + 153 154 159 1 153 349 350 1 + 159 158 153 1 350 158 153 1 + 154 150 155 1 154 150 155 1 + 155 159 154 1 155 159 154 1 + 155 156 161 1 155 346 351 1 + 161 160 155 1 351 160 155 1 + 156 157 162 1 156 348 352 1 + 162 161 156 1 352 161 156 1 + 157 158 163 1 157 158 163 1 + 163 162 157 1 163 162 157 1 + 158 159 164 1 158 350 353 1 + 164 163 158 1 353 163 158 1 + 159 155 160 1 159 155 160 1 + 160 164 159 1 160 164 159 1 + 160 161 166 1 160 351 354 1 + 166 165 160 1 354 355 160 1 + 161 162 167 1 161 352 356 1 + 167 166 161 1 356 357 161 1 + 162 163 168 1 162 163 358 1 + 168 167 162 1 358 167 162 1 + 163 164 169 1 163 353 359 1 + 169 168 163 1 359 358 163 1 + 164 160 165 1 164 160 355 1 + 165 169 164 1 355 360 164 1 + 165 166 170 1 355 354 361 1 + 166 167 170 1 166 362 363 1 + 167 168 170 1 167 358 364 1 + 168 169 170 1 168 169 170 1 + 169 165 170 1 169 165 170 1 + 171 172 175 1 365 366 367 1 + 175 174 171 1 367 368 365 1 + 172 173 176 1 172 369 370 1 + 176 175 172 1 370 371 172 1 + 173 171 174 1 173 171 372 1 + 174 176 173 1 372 373 173 1 + 174 175 178 1 374 375 376 1 + 178 177 174 1 376 377 374 1 + 175 176 179 1 175 378 379 1 + 179 178 175 1 379 380 175 1 + 176 174 177 1 176 174 381 1 + 177 179 176 1 381 382 176 1 + 177 178 180 1 383 384 385 1 + 178 179 180 1 178 386 387 1 + 179 177 180 1 179 177 180 1 + 191 192 193 1 399 400 401 1 + 191 193 194 1 399 401 402 1 + 4 191 194 1 183 399 402 1 + 4 194 181 1 183 402 388 1 + 4 181 182 1 183 388 389 1 + 2 203 204 1 182 412 413 1 + 2 204 184 1 182 413 391 1 + 2 184 185 1 182 391 392 1 + 8 212 213 1 186 421 422 1 + 8 213 226 1 186 422 438 1 + 227 8 226 1 439 186 438 1 + 0 222 219 1 0 433 429 1 + 0 219 218 1 0 429 428 1 + 216 0 218 1 426 0 428 1 + 200 199 197 1 444 443 446 2 + 197 201 200 1 446 447 444 2 + 183 182 181 1 445 441 442 2 + tverts 448 + 0.779297 -0.955078 0 + 0.763672 -1.03711 0 + 0.208984 -1.11719 0 + 0.394531 -1.13672 0 + 1.02734 -1.1543 0 + 1.11133 -1.0957 0 + 1.19727 -1.03906 0 + 1.31055 -0.974609 0 + 0.412109 -0.908203 0 + 0.59375 -0.931641 0 + 0.658203 -0.771484 0 + 0.84375 -0.78125 0 + 0.324219 -0.792969 0 + 0.921875 -0.794922 0 + 1.02148 -0.789063 0 + 1.12305 -0.78125 0 + 1.24805 -0.773438 0 + 0.429688 -0.767578 0 + 0.628906 -0.609375 0 + 0.744141 -0.558594 0 + 0.363281 -0.509766 0 + 1.13281 -0.511719 0 + 1.23047 -0.556641 0 + 1.3125 -0.591797 0 + 0.439453 -0.626953 0 + 0.583984 -0.263672 0 + 0.587891 -0.263672 0 + 0.408203 -0.263672 0 + 1.29883 -0.263672 0 + 1.39063 -0.263672 0 + 1.46875 -0.263672 0 + 0.4375 -0.263672 0 + 0.587891 0.265625 0 + 0.419922 0.222656 0 + 1.16992 0.222656 0 + 1.22461 0.246094 0 + 1.27148 0.265625 0 + 0.46875 0.285156 0 + 0.59375 0.685547 0 + 0.408203 0.691406 0 + 0.900391 0.691406 0 + 0.980469 0.681641 0 + 0.501953 0.681641 0 + 0.546875 1.06055 0 + 0.458984 1.09766 0 + 1.33203 1.09766 0 + 1.37695 1.06836 0 + 0.470703 1.04297 0 + 0.388672 1.46484 0 + 0.482422 1.45313 0 + 0.529297 1.44141 0 + 1.4668 1.44141 0 + 1.5293 1.45703 0 + 0.660156 0.582031 0 + 0.316406 -0.0683594 0 + -0.296875 0.916016 0 + 0.332031 1.93164 0 + 0.90625 1.94922 0 + 0.357422 -0.0742188 0 + -0.441406 -0.5625 0 + 0.550781 0.693359 0 + 0.572266 0.763672 0 + 0.673828 0.744141 0 + 0.707031 0.681641 0 + 0.634766 0.644531 0 + 0.40625 -0.0507813 0 + 0.599609 -0.0078125 0 + 0 -0.0078125 0 + 0.285156 -0.0410156 0 + 0.333984 -0.0683594 0 + 0.751953 0.388672 0 + 0.179688 0.382813 0 + 0.173828 0.507813 0 + 0.224609 0.472656 0 + 0.726563 0.333984 0 + 0.355469 0.697266 0 + 0.650391 0.744141 0 + 0.806641 0.744141 0 + 0.835938 0.707031 0 + 0.306641 0.677734 0 + 0.753906 0.330078 0 + 0.226563 0.326172 0 + 1.2207 1.04492 0 + 0.761719 0.263672 0 + 0.748047 0.291016 0 + 0.171875 0.289063 0 + 1.82227 1.0332 0 + 0.177734 0.244141 0 + -0.441406 0.246094 0 + 0.587891 0.644531 0 + 0.525391 0.576172 0 + 0.382813 0.589844 0 + 0.363281 0.65625 0 + 0.480469 0.699219 0 + -0.238281 -0.0273438 0 + 0.623047 -0.0800781 0 + 1.19727 -0.0722656 0 + 1.25391 -0.0253906 0 + -0.28125 0.00585938 0 + 0.0253906 0.398438 0 + 0.560547 0.0683594 0 + 0.947266 0.355469 0 + 0.988281 0.398438 0 + -0.0078125 0.427734 0 + 0.396484 0.679688 0 + 0.566406 0.427734 0 + 0.585938 0.634766 0 + 0.619141 0.679688 0 + 0.367188 0.710938 0 + 0.898438 0.8125 0 + 0.714844 0.917969 0 + 0.09375 0.763672 0 + 0.115234 0.810547 0 + 0.878906 0.841797 0 + 0.222656 0.0644531 0 + 0.787109 0.0390625 0 + -0.271484 1.04297 0 + 0.169922 0.0644531 0 + 0.195313 0.0800781 0 + 0.361328 0.378906 0 + 0.0078125 -0.320313 0 + 0.546875 0.951172 0 + 0.951172 0.642578 0 + -0.00976563 -0.294922 0 + 0.371094 -0.0429688 0 + 0.644531 0.599609 0 + 0.599609 0.921875 0 + 0.623047 0.957031 0 + 0.357422 -0.0195313 0 + 0.910156 0.0507813 0 + 0.560547 0.078125 0 + 0.078125 1.02148 0 + 0.0878906 1.04883 0 + 0.902344 0.0683594 0 + 0.554688 0.345703 0 + 0.457031 0.318359 0 + 0.490234 0.322266 0 + -0.302734 1.34375 0 + 0.527344 0.359375 0 + 0.740234 0.660156 0 + 0.412109 0.371094 0 + 0.580078 0.623047 0 + 0.371094 0.412109 0 + 0.429688 -0.197266 0 + 0.375 0.785156 0 + 0.392578 -0.195313 0 + 0.179688 0.046875 0 + 0.207031 1.02539 0 + 0.144531 0.046875 0 + -0.0332031 0.316406 0 + -0.492188 0.460938 0 + 0.335938 -0.457031 0 + 1.46875 0.423828 0 + 1.50391 0.460938 0 + -0.519531 0.486328 0 + -0.121094 0.740234 0 + 0.34375 -0.0957031 0 + 1.10742 0.705078 0 + 1.13281 0.740234 0 + -0.144531 0.763672 0 + 0.380859 0.869141 0 + 0.498047 0.392578 0 + 0.617188 0.839844 0 + 0.628906 0.869141 0 + 0.369141 0.888672 0 + 0.451172 0.128906 0 + 0.560547 0.101563 0 + 0.246094 1.10547 0 + 0.400391 0.126953 0 + 0.425781 0.142578 0 + 0.591797 0.441406 0 + 0.763672 0.0253906 0 + 0.605469 -0.00585938 0 + 0.71875 0.0117188 0 + 0.644531 0.359375 0 + 0.322266 0.380859 0 + 0.632813 0.402344 0 + 0.414063 0.214844 0 + 1.07813 0.189453 0 + 0.375 0.203125 0 + 0.208984 0.417969 0 + 0.632813 -0.955078 0 + 0.894531 -1.11719 0 + 0.580078 -1.1543 0 + 0.720703 -1.0957 0 + 0.863281 -1.03906 0 + 1.42383 -0.908203 0 + 0.605469 1.06836 0 + 0.675781 -0.771484 0 + 1.01367 -0.792969 0 + 0.550781 -0.794922 0 + 1.37695 -0.767578 0 + 0.634766 -0.609375 0 + 0.855469 -0.509766 0 + 0.601563 -0.511719 0 + 1.39648 -0.626953 0 + 0.486328 -0.263672 0 + 0.693359 -0.263672 0 + 1.54688 -0.263672 0 + 0.71875 0.265625 0 + 0.824219 0.222656 0 + 0.554688 0.222656 0 + 1.32031 0.285156 0 + 1.0957 0.691406 0 + 0.992188 0.685547 0 + 0.511719 0.691406 0 + 1.04492 0.681641 0 + 0.664063 1.09766 0 + 0.601563 1.06055 0 + 0.546875 1.09766 0 + 1.41992 1.04297 0 + 0.433594 1.46484 0 + 0.669922 1.44141 0 + 0.605469 1.44141 0 + 1.58203 1.46875 0 + 0.339844 1.46875 0 + 1.06836 1.9668 0 + 1.08398 1.93945 0 + 1.10156 1.93164 0 + 0.898438 1.93164 0 + 0.925781 1.9707 0 + 0.683594 1.9668 0 + 1.5625 2.28125 0 + -0.332031 0.898438 0 + 0.441406 0.4375 0 + 0.365234 1.94922 0 + -0.441406 2.28125 0 + 0.4375 2.28125 0 + 1.4043 -0.306641 0 + 1.51953 -0.236328 0 + 0.994141 -0.0078125 0 + 0.886719 -0.0507813 0 + 0.480469 0.427734 0 + 0.470703 0.326172 0 + 1 0.320313 0 + 1.00586 0.400391 0 + -0.529297 -0.255859 0 + -0.445313 -0.318359 0 + 0.0820313 -0.0410156 0 + -0.363281 -0.355469 0 + 0.152344 -0.0683594 0 + 0.365234 -0.355469 0 + 0.449219 -0.306641 0 + 0.820313 0.509766 0 + 0.751953 0.462891 0 + 0.679688 -0.0078125 0 + 0.677734 0.507813 0 + 0.617188 0.509766 0 + 0.333984 0.443359 0 + 0.294922 0.472656 0 + 0.388672 0.462891 0 + 0.191406 0.744141 0 + 0.148438 0.697266 0 + 0.173828 0.322266 0 + 0.806641 0.294922 0 + 0.808594 0.349609 0 + 0.273438 0.443359 0 + 0.865234 0.677734 0 + 0.148438 0.355469 0 + 0.134766 0.306641 0 + -0.226563 1.04492 0 + -0.246094 1 0 + 0.705078 0.744141 0 + 0.71875 1.04492 0 + 0.673828 1.04492 0 + 1.23828 1.00781 0 + 1.25195 0.978516 0 + 0.330078 1 0 + 0.291016 0.978516 0 + -0.822266 1.0332 0 + -0.828125 0.994141 0 + 0.220703 0.28125 0 + 0.822266 0.275391 0 + 1.82227 1.00391 0 + 1.82813 0.994141 0 + -1.44141 1.21484 0 + 2.44141 1.21484 0 + -0.673828 -0.355469 0 + -0.599609 -0.423828 0 + -0.179688 -0.0800781 0 + 0.474609 0.400391 0 + 0.617188 0.373047 0 + 0.722656 0.802734 0 + 0.623047 0.820313 0 + 1.62695 -0.410156 0 + 1.70508 -0.34375 0 + 1.74414 -0.300781 0 + 1.28125 0.00585938 0 + -0.744141 -0.300781 0 + 0.0683594 0.347656 0 + 0.722656 -0.0722656 0 + 0.644531 0.355469 0 + 0.560547 0.347656 0 + 1.00781 0.427734 0 + 0.427734 0.626953 0 + 0.644531 0.0527344 0 + 0.648438 0.414063 0 + 0.632813 0.710938 0 + 0.917969 0.757813 0 + 0.787109 0.90625 0 + 0.121094 0.841797 0 + 1.27734 1.03906 0 + 1.27344 1.06445 0 + 0.822266 1.27148 0 + 0.787109 1.27734 0 + -0.263672 1.06445 0 + -0.265625 1.08008 0 + 1.26563 1.08008 0 + 1.44141 1.37891 0 + 0.822266 0.0429688 0 + 0.638672 0.378906 0 + -0.441406 1.37891 0 + 0.0488281 -0.365234 0 + 0.400391 -0.0839844 0 + 0.470703 0.951172 0 + 0.580078 0.599609 0 + 1.00977 0.705078 0 + 0.642578 0.980469 0 + 0.921875 0.0175781 0 + 0.513672 0.078125 0 + 0.0976563 1.06836 0 + 1.30664 0.318359 0 + 1.30273 0.345703 0 + 0.509766 -0.306641 0 + 0.542969 -0.306641 0 + -0.306641 1.32227 0 + -0.300781 1.35938 0 + 1.30078 0.359375 0 + 1.44141 0.660156 0 + 0.259766 0.660156 0 + 0.498047 0.34375 0 + -0.441406 1.66016 0 + 0.371094 0.652344 0 + 0.398438 0.623047 0 + 0.599609 0.785156 0 + 0.570313 0.802734 0 + 0.628906 0.650391 0 + 0.423828 0.804688 0 + 0.605469 0.570313 0 + 0.576172 0.607422 0 + 0.845703 1.02539 0 + 0.820313 1.04688 0 + 0.25 1.04688 0 + 1.0332 1.31641 0 + -0.103516 1.31641 0 + -0.457031 0.416016 0 + -0.0957031 0.699219 0 + 0.408203 -0.46875 0 + 0.40625 -0.107422 0 + 1.51953 0.486328 0 + 1.14453 0.763672 0 + 0.392578 0.835938 0 + 0.542969 0.382813 0 + 0.630859 0.888672 0 + 0.757813 1.10156 0 + 0.755859 1.12891 0 + 0.59375 0.753906 0 + 0.560547 0.757813 0 + 0.251953 1.12695 0 + 0.25 1.14258 0 + 0.75 1.14258 0 + 0.921875 1.44141 0 + 0.59375 0.105469 0 + 0.408203 0.441406 0 + 0.078125 1.44141 0 + 0.369141 0.0253906 0 + 0.394531 -0.00585938 0 + 0.677734 0.158203 0 + 0.644531 0.177734 0 + 0.650391 0.0117188 0 + 0.367188 0.169922 0 + 0.322266 0.158203 0 + 0.640625 0.177734 0 + 0.597656 0.169922 0 + 0.359375 0.177734 0 + 0.380859 0.158203 0 + 0.601563 0.189453 0 + 0.585938 0.214844 0 + 0.367188 0.402344 0 + 0.119141 0.625 0 + 0.078125 0.601563 0 + 0.894531 0.585938 0 + 0.880859 0.625 0 + -0.105469 0.214844 0 + -0.078125 0.189453 0 + 0.246094 0.417969 0 + 1.11914 0.203125 0 + 0.753906 0.417969 0 + 0.619141 -1.34375 0 + 0.648438 -1.33984 0 + 0.685547 -1.33594 0 + 0.867188 -1.36328 0 + 0.894531 -1.36328 0 + 0.0488281 -1.36328 0 + 0.0996094 -1.36328 0 + 0.107422 -1.36328 0 + 0.158203 -1.36328 0 + 0.322266 -1.3457 0 + 0.347656 -1.34766 0 + 0.408203 -1.34766 0 + 0.439453 -1.35156 0 + 0.462891 -1.34766 0 + 0.513672 -1.33984 0 + 0.697266 -1.33398 0 + 0.720703 -1.32617 0 + 1.10156 -1.26367 0 + 1.13281 -1.25586 0 + 0.867188 -1.29102 0 + 0.894531 -1.28125 0 + 1.08594 -1.26172 0 + 0.962891 -1.26172 0 + 0.652344 -1.36133 0 + 0.669922 -1.35938 0 + 0.775391 -1.35742 0 + 1.27344 -1.25 0 + 1.34766 -1.24023 0 + 1.25391 -1.25391 0 + 1.22461 -1.25195 0 + 0.439453 -1.35352 0 + 0.595703 -1.35938 0 + 0.628906 -1.36133 0 + 1.54102 -1.24219 0 + 1.56055 -1.24219 0 + 1.5332 -1.24219 0 + 1.48242 -1.24023 0 + 0.384766 -1.35352 0 + 0.939453 -1.35352 0 + 0.425781 -1.35352 0 + 0.841797 -1.34766 0 + 0.792969 -1.33594 0 + 0.416016 0.742188 0 + 0.433594 0.730469 0 + 0.597656 -1.26953 0 + 0.65625 -1.28906 0 + 0.337891 0.75 0 + 0.279297 -1.24219 0 + 0.289063 0.755859 0 + 0.347656 -1.24414 0 + 1.64453 -1.24219 0 + 1.72656 -1.24219 0 + 0.275391 -1.24219 0 + 0.375 0.292969 0 + 0.363281 0.300781 0 + 0.453125 0.351563 0 + 0.462891 0.361328 0 + 0.388672 0.300781 0 + 0.484375 0.384766 0 + 0.486328 0.378906 0 +endnode +endmodelgeom wsf10_s01_02 +donemodel wsf10_s01_02 diff --git a/tests/fixtures/oracle/tangent_pairs/ascii/wsf10_s11_04.mdl b/tests/fixtures/oracle/tangent_pairs/ascii/wsf10_s11_04.mdl new file mode 100644 index 0000000..c0b726d --- /dev/null +++ b/tests/fixtures/oracle/tangent_pairs/ascii/wsf10_s11_04.mdl @@ -0,0 +1,5099 @@ +# Rewritten by CleanModels 3 Version 3.5.2d Wed Jun 17 08:25:55 2020 +#MAXMODEL ASCII +filedependency Unknown +newmodel wsf10_s11_04 + classification TILE + setsupermodel wsf10_s11_04 NULL + setanimationscale 1 +#MAXGEOM ASCII +beginmodelgeom wsf10_s11_04 +node dummy wsf10_s11_04 + parent NULL +endnode +node trimesh alpha + parent wsf10_s11_04 + position 0 0 0.01 + orientation 0 0 0 0 + wirecolor 0.54902 0.54902 0.54902 + tilefade 0 + scale 1 + render 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + center 50 0 190.5 + bitmap wsf10_cliffsxtra + shadow 0 + verts 54 + -2 -4 3.1 + -1 -4 3 + 0 -4 2.25 + 1.19 -4 1.64 + -3 -3 3.24 + -2 -3 3.52 + -1 -3 3.26 + 0 -3 2.5 + 1 -3 1.68 + 1.82 -3 0.81 + 3 -3 0.36 + -2.14 -2 3.66 + 0.05 -1.71 3.61 + 0.52 -1.7 3.32 + 0.92 -1.69 2.52 + 1.1 -1.69 1.52 + 0.99 -1.69 0.26 + 2.17 -2 -0.1 + -2.14 -1 3.7 + 0.5 -0.45 3.9 + 0.8 -0.85 3.07 + 0.82 -0.83 2.45 + 1.19 -0.82 1.62 + 1.35 -0.82 0.6 + 2.28 -0.82 -0.19 + -0.02 0.01 4.03 + 0.29 0.02 3.15 + 0.69 0.03 2.36 + 1.11 0.04 1.57 + 1.38 0.04 0.65 + 2.41 0.04 0.2 + 4 0 0.11 + -2 1 3.42 + 0.25 0.88 3.13 + 0.49 0.89 2.19 + 0.82 0.89 1.33 + 1.05 0.9 0.37 + 2.12 0.91 -0.06 + 4 1 0.28 + -1 2 3.02 + 0.43 1.75 2.16 + 0.42 1.74 0.99 + 0.76 1.75 0.13 + 2 1.76 0 + 4 2 0.22 + 0 3 2.41 + 0.48 2.61 1.06 + 0.77 2.61 0.03 + 1.69 2.62 -0.22 + 4 3 0.09 + 1 4 1.72 + 2 4 0.97 + 3 4 0.26 + 4 4 0.03 + faces 82 + 5 0 6 1 5 0 6 65536 + 1 6 0 1 1 6 0 65536 + 6 1 7 1 6 1 7 65536 + 2 7 1 1 2 7 1 65536 + 7 2 8 1 7 2 8 65536 + 3 8 2 1 3 8 2 65536 + 8 3 9 1 8 3 9 65536 + 11 4 12 1 11 4 12 65536 + 5 12 4 1 5 12 4 65536 + 12 5 13 1 12 5 13 65536 + 6 13 5 1 6 13 5 65536 + 13 6 14 1 13 6 14 65536 + 7 14 6 1 7 14 6 65536 + 14 7 15 1 14 7 15 65536 + 8 15 7 1 8 15 7 65536 + 15 8 16 1 15 8 16 65536 + 9 16 8 1 9 16 8 65536 + 16 9 17 1 16 9 17 65536 + 10 17 9 1 10 17 9 65536 + 18 11 19 1 18 11 19 65536 + 12 19 11 1 12 19 11 65536 + 19 12 20 1 19 12 20 65536 + 13 20 12 1 13 20 12 65536 + 20 13 21 1 20 13 21 65536 + 14 21 13 1 14 21 13 65536 + 21 14 22 1 21 14 22 65536 + 15 22 14 1 15 22 14 65536 + 22 15 23 1 22 15 23 65536 + 16 23 15 1 16 23 15 65536 + 23 16 24 1 23 16 24 65536 + 17 24 16 1 17 24 16 65536 + 19 25 18 1 19 25 18 65536 + 25 19 26 1 25 19 26 65536 + 20 26 19 1 20 26 19 65536 + 26 20 27 1 26 20 27 65536 + 21 27 20 1 21 27 20 65536 + 27 21 28 1 27 21 28 65536 + 22 28 21 1 22 28 21 65536 + 28 22 29 1 28 22 29 65536 + 23 29 22 1 23 29 22 65536 + 29 23 30 1 29 23 30 65536 + 24 30 23 1 24 30 23 65536 + 30 24 31 1 30 24 31 65536 + 32 25 33 1 32 25 33 65536 + 26 33 25 1 26 33 25 65536 + 33 26 34 1 33 26 34 65536 + 27 34 26 1 27 34 26 65536 + 34 27 35 1 34 27 35 65536 + 28 35 27 1 28 35 27 65536 + 35 28 36 1 35 28 36 65536 + 29 36 28 1 29 36 28 65536 + 36 29 37 1 36 29 37 65536 + 30 37 29 1 30 37 29 65536 + 37 30 38 1 37 30 38 65536 + 31 38 30 1 31 38 30 65536 + 33 39 32 1 33 39 32 65536 + 39 33 40 1 39 33 40 65536 + 34 40 33 1 34 40 33 65536 + 40 34 41 1 40 34 41 65536 + 35 41 34 1 35 41 34 65536 + 41 35 42 1 41 35 42 65536 + 36 42 35 1 36 42 35 65536 + 42 36 43 1 42 36 43 65536 + 37 43 36 1 37 43 36 65536 + 43 37 44 1 43 37 44 65536 + 38 44 37 1 38 44 37 65536 + 40 45 39 1 40 45 39 65536 + 45 40 46 1 45 40 46 65536 + 41 46 40 1 41 46 40 65536 + 46 41 47 1 46 41 47 65536 + 42 47 41 1 42 47 41 65536 + 47 42 48 1 47 42 48 65536 + 43 48 42 1 43 48 42 65536 + 48 43 49 1 48 43 49 65536 + 44 49 43 1 44 49 43 65536 + 46 50 45 1 46 50 45 65536 + 50 46 51 1 50 46 51 65536 + 47 51 46 1 47 51 46 65536 + 51 47 52 1 51 47 52 65536 + 48 52 47 1 48 52 47 65536 + 52 48 53 1 52 48 53 65536 + 49 53 48 1 49 53 48 65536 + tverts 54 + -0.0390625 0.103516 0 + 0.105469 0.0605469 0 + 0.251953 0.0175781 0 + 0.423828 -0.03125 0 + -0.142578 0.289063 0 + 0.00195313 0.248047 0 + 0.146484 0.207031 0 + 0.292969 0.164063 0 + 0.4375 0.121094 0 + 0.558594 0.0859375 0 + 0.730469 0.0351563 0 + 0.0234375 0.398438 0 + 0.351563 0.349609 0 + 0.419922 0.330078 0 + 0.480469 0.314453 0 + 0.507813 0.304688 0 + 0.494141 0.308594 0 + 0.652344 0.212891 0 + 0.0644531 0.542969 0 + 0.46875 0.513672 0 + 0.496094 0.441406 0 + 0.501953 0.443359 0 + 0.556641 0.427734 0 + 0.582031 0.419922 0 + 0.716797 0.378906 0 + 0.412109 0.601563 0 + 0.458984 0.587891 0 + 0.519531 0.572266 0 + 0.582031 0.554688 0 + 0.621094 0.542969 0 + 0.771484 0.498047 0 + 1 0.425781 0 + 0.167969 0.826172 0 + 0.490234 0.714844 0 + 0.525391 0.705078 0 + 0.576172 0.689453 0 + 0.611328 0.679688 0 + 0.765625 0.636719 0 + 1.04102 0.570313 0 + 0.355469 0.927734 0 + 0.552734 0.832031 0 + 0.552734 0.828125 0 + 0.605469 0.814453 0 + 0.785156 0.763672 0 + 1.08398 0.714844 0 + 0.542969 1.0293 0 + 0.597656 0.951172 0 + 0.642578 0.9375 0 + 0.775391 0.900391 0 + 1.125 0.859375 0 + 0.730469 1.13281 0 + 0.876953 1.08984 0 + 1.02148 1.04688 0 + 1.16602 1.00391 0 +endnode +node trimesh loft01 + parent wsf10_s11_04 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.564706 0.564706 0.564706 + tilefade 0 + scale 1 + render 1 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + center 572 -132.5 1179.5 + bitmap tno01_bark02 + shadow 0 + verts 488 + -1.85 3.22 -0.41 + -3.02 1.84 -0.41 + -2.87 -0.1 -0.43 + -1.51 -0.98 -0.43 + -0.17 -2.52 -0.43 + 1.71 -2.03 -0.43 + 1.66 -0.4 -0.41 + 3.32 1.48 -0.41 + 2.08 3.7 -0.41 + -0.18 2.68 -0.41 + -1.45 1.19 2.87 + -1.68 0.41 2.32 + -1.92 -0.36 1.78 + -1.14 -0.81 1.65 + -0.36 -1.28 1.53 + 0.41 -0.94 1.92 + 1.2 -0.6 2.31 + 0.76 0.24 2.74 + 0.31 1.08 3.19 + -0.56 1.13 3.03 + -0.97 0.78 4.13 + -1.62 -0.11 4.05 + -1.59 -1.21 3.97 + -0.66 -1.87 3.96 + 0.04 -1.41 4 + 0.75 -0.96 4.05 + 0.45 -0.08 4.1 + 0.16 0.82 4.16 + -0.76 0.99 5.22 + -1.25 0.42 5.57 + -1.16 -0.32 5.9 + -0.09 -0.67 5.88 + 0.73 -0.27 5.58 + 0.44 0.34 5.34 + 0.14 0.95 5.11 + -0.32 1.83 7.56 + -0.73 1.28 7.56 + -0.69 0.6 7.56 + 0.11 0.33 7.56 + 0.78 0.74 7.56 + 0.59 1.29 7.56 + 0.39 1.84 7.56 + -0.72 0.44 11.16 + -0.85 -0.19 10.86 + -0.25 -0.39 10.86 + 0.21 -0.16 11.03 + 0.04 0.18 11.16 + -0.11 0.53 11.3 + -1.18 -1.18 14 + -1.33 -1.8 14.04 + -0.87 -1.95 14.04 + -0.56 -1.52 13.98 + -0.7 -1.07 13.98 + -0.34 1.09 16.55 + -0.41 0.72 16.8 + -0.03 0.58 16.8 + 0.21 0.81 16.6 + 0.04 1.13 16.43 + 0.64 1.91 19.3 + 0.46 1.64 19.22 + 0.46 1.34 19.14 + 0.75 1.24 19.14 + 0.98 1.57 19.24 + 0.9 1.94 19.32 + -1.79 -1.63 22.72 + -1.86 -1.68 22.61 + -1.78 -1.77 22.58 + -1.69 -1.76 22.65 + -1.69 -1.69 22.73 + -2.65 -2.26 23.18 + 0.39 1.22 7.27 + -0.17 1.24 7.76 + -0.38 0.64 7.63 + -0.05 0.35 7.19 + 0.43 0.67 6.94 + 2.67 0.34 9.01 + 2.17 0.43 9.3 + 2.02 -0.05 9.3 + 2.33 -0.35 9.08 + 2.73 -0.14 8.89 + 3.25 0.06 12.5 + 2.94 0.12 12.81 + 2.81 -0.24 12.8 + 3 -0.46 12.56 + 3.28 -0.29 12.37 + 5.94 -0.86 14.08 + 5.74 -0.85 14.4 + 5.64 -1.17 14.4 + 5.75 -1.33 14.15 + 5.93 -1.17 13.95 + 7.7 -1.5 16.14 + 7.6 -1.5 16.44 + 7.5 -1.76 16.44 + 7.55 -1.88 16.19 + 7.66 -1.73 16 + 10.27 -2.45 16.1 + 10.22 -2.53 16.37 + 10.17 -2.71 16.17 + 13 -3.45 17.59 + 0.16 0.5 6.94 + -0.01 1.02 6.48 + -0.7 1.03 6.57 + -0.91 0.59 7.02 + -0.44 0.2 7.31 + 0.36 2.74 9.23 + 0.28 3.04 8.96 + -0.09 3.06 9 + -0.21 2.82 9.24 + 0.05 2.61 9.41 + 1.09 3.55 11.01 + 1.05 3.7 10.83 + 0.84 3.71 10.86 + 0.78 3.59 11.01 + 0.92 3.49 11.11 + 1.37 4.68 11.97 + 1.33 4.8 11.79 + 1.13 4.8 11.82 + 1.07 4.71 11.97 + 1.21 4.63 12.08 + 1.42 6.29 12.43 + 1.38 6.37 12.24 + 1.2 6.37 12.26 + 1.15 6.32 12.42 + 1.28 6.27 12.53 + 1.53 7.48 13.29 + 1.5 7.5 13.21 + 1.42 7.5 13.22 + 1.4 7.48 13.29 + 1.46 7.48 13.35 + 1.98 7.9 14.38 + -1.07 -1.31 13.96 + -1.05 -1.57 13.66 + -0.71 -1.66 13.71 + -0.77 -1.28 14.13 + -2.08 -3.36 15.85 + -2.06 -3.56 15.57 + -1.77 -3.63 15.61 + -1.66 -3.51 15.85 + -1.83 -3.35 16.01 + -2.55 -6.68 16.48 + -2.52 -6.77 16.26 + -2.3 -6.83 16.29 + -2.23 -6.78 16.47 + -2.37 -6.69 16.6 + -3.1 -9.05 18.49 + -3.05 -9.09 18.31 + -2.9 -9.13 18.33 + -2.86 -9.11 18.48 + -2.97 -9.07 18.58 + -4.16 -9.65 20.62 + 1.23 4.64 11.88 + 1.27 4.71 11.78 + 1.17 4.78 11.87 + 1.83 5.12 12.4 + 1.9 5.19 12.34 + 1.8 5.25 12.4 + 2.44 5.76 13.23 + 2.49 5.83 13.16 + 2.4 5.89 13.23 + 3.36 6.21 14.16 + 0.92 1.45 19.27 + 0.85 1.7 18.97 + 0.5 1.72 19.02 + 0.39 1.53 19.27 + 0.63 1.35 19.44 + 2.34 3.76 22.1 + 2.32 3.82 22.01 + 2.23 3.81 22.03 + 2.2 3.77 22.1 + 2.26 3.74 22.14 + 2.36 4.72 22.36 + 2.34 4.74 22.29 + 2.28 4.74 22.3 + 2.26 4.72 22.36 + 2.3 4.71 22.4 + 2.45 5.41 22.89 + 2.43 5.42 22.83 + 2.38 5.42 22.84 + 2.37 5.41 22.88 + 2.41 5.41 22.92 + 2.72 5.66 23.52 + 8.11 -2.21 16.31 + 8.25 -2.14 16.1 + 8.09 -1.92 16.22 + 9.56 -1.8 17.34 + 9.74 -1.72 17.21 + 9.57 -1.54 17.29 + 11.05 -0.76 17.59 + 11.2 -0.7 17.42 + 11.05 -0.51 17.51 + 12.97 0.04 18.98 + -1.64 0.57 1.64 + -2.1 -0.24 1.27 + -1.65 -1.13 0.89 + -0.67 -1.36 0.84 + 0.42 -1.9 0.67 + -0.17 -1.41 0.94 + 1.14 -0.65 1.26 + 0.47 0.46 1.77 + 0.64 1.34 2.09 + -0.53 0.55 1.69 + -1.16 -1.42 3.81 + -1.14 -1.64 3.22 + -1.12 -1.85 2.63 + -0.56 -1.92 2.51 + 0 -1.99 2.4 + 0.39 -1.86 2.84 + 0.78 -1.72 3.27 + 0.35 -1.53 3.73 + -0.1 -1.34 4.2 + -0.63 -1.38 4.01 + -0.85 -1.97 4.75 + -1.08 -2.45 4.45 + -0.85 -2.94 4.18 + -0.17 -3.12 4.13 + 0.16 -2.82 4.31 + 0.51 -2.53 4.5 + 0.16 -2.17 4.69 + -0.18 -1.8 4.88 + -0.81 -2.21 5.65 + -1.01 -2.65 5.76 + -0.84 -3.1 5.88 + -0.13 -3.11 5.9 + 0.31 -2.71 5.82 + 0.03 -2.39 5.72 + -0.25 -2.06 5.63 + -0.79 -2.53 7.65 + -0.94 -2.84 7.51 + -0.79 -3.16 7.38 + -0.26 -3.17 7.4 + 0.07 -2.89 7.54 + -0.15 -2.65 7.63 + -0.36 -2.42 7.72 + -0.93 -4.43 10.13 + -0.88 -4.65 9.76 + -0.48 -4.66 9.77 + -0.25 -4.55 9.99 + -0.42 -4.45 10.15 + -0.58 -4.35 10.3 + -1.02 -6.21 11.96 + -1 -6.53 11.85 + -0.7 -6.54 11.87 + -0.58 -6.27 11.93 + -0.75 -6.08 12 + -1.04 -5.86 14.44 + -1.02 -6.13 14.55 + -0.76 -6.14 14.56 + -0.65 -5.94 14.47 + -0.81 -5.76 14.39 + -0.7 -6.26 16.8 + -0.76 -6.38 16.67 + -0.7 -6.5 16.55 + -0.51 -6.51 16.56 + -0.44 -6.35 16.73 + -0.56 -6.22 16.85 + -1.64 -9.33 18.55 + -1.68 -9.32 18.38 + -1.57 -9.35 18.32 + -1.48 -9.37 18.42 + -1.51 -9.35 18.57 + -3.91 -11.58 19.42 + -0.24 -2.62 7.38 + -0.6 -2.85 7.71 + -0.61 -3.12 7.47 + -0.34 -3.06 7.11 + -0.1 -2.76 7.02 + 1.23 -3.3 8.76 + 0.9 -3.42 8.95 + 0.89 -3.67 8.85 + 1.15 -3.69 8.64 + 1.36 -3.48 8.58 + 1.48 -4.51 11.44 + 1.27 -4.63 11.67 + 1.26 -4.82 11.58 + 1.43 -4.81 11.37 + 1.57 -4.63 11.27 + 3.21 -5.11 12.73 + 3.08 -5.23 12.96 + 3.07 -5.4 12.89 + 3.18 -5.38 12.67 + 3.27 -5.21 12.56 + 4.3 -5.85 14.35 + 4.23 -5.96 14.58 + 4.22 -6.1 14.52 + 4.29 -6.07 14.3 + 4.33 -5.92 14.19 + 6.03 -5.93 14.37 + 6.01 -6.07 14.55 + 6.02 -6.09 14.36 + 7.8 -6.53 15.57 + -0.24 -2.88 6.96 + -0.41 -2.5 6.69 + -0.83 -2.63 6.7 + -0.9 -3.01 6.94 + -0.56 -3.22 7.13 + -0.88 -2.31 9.22 + -1 -2.02 9.01 + -1.3 -2.09 9.01 + -1.35 -2.37 9.18 + -1.1 -2.52 9.32 + -0.87 -2.47 11.8 + -0.96 -2.23 11.58 + -1.21 -2.29 11.59 + -1.25 -2.51 11.76 + -1.06 -2.64 11.9 + -1.02 -1.97 13.75 + -1.1 -1.76 13.51 + -1.35 -1.83 13.51 + -1.39 -2.02 13.7 + -1.2 -2.14 13.86 + -1.58 -0.76 15.07 + -1.64 -0.58 14.81 + -1.86 -0.63 14.81 + -1.91 -0.81 15.02 + -1.75 -0.89 15.19 + -1.96 -0.19 16.86 + -1.98 -0.12 16.73 + -2.08 -0.15 16.74 + -2.11 -0.22 16.84 + -2.04 -0.25 16.93 + -1.66 -0.39 18.75 + -0.93 -6.24 11.91 + -0.86 -6.26 11.63 + -0.64 -6.27 11.68 + -0.76 -6.24 12.08 + -1.24 -7.97 12.88 + -1.19 -7.97 12.63 + -1 -7.98 12.67 + -0.96 -7.99 12.89 + -1.1 -7.98 13.02 + -0.94 -9.81 12.68 + -0.9 -9.78 12.49 + -0.76 -9.78 12.52 + -0.73 -9.81 12.68 + -0.84 -9.83 12.79 + -0.93 -11.67 13.72 + -0.88 -11.62 13.57 + -0.79 -11.63 13.6 + -0.77 -11.66 13.72 + -0.85 -11.69 13.79 + -1.54 -12.81 15.14 + -1.17 -1.99 13.56 + -1.14 -1.84 13.45 + -1.29 -1.87 13.6 + -0.66 -1.72 14.65 + -0.6 -1.59 14.6 + -0.75 -1.61 14.7 + -0.24 -1.5 16.28 + -0.2 -1.38 16.2 + -0.33 -1.39 16.32 + 0.62 -1.45 18.03 + -0.45 -6.43 16.72 + -0.53 -6.22 16.53 + -0.75 -6.28 16.54 + -0.79 -6.46 16.68 + -0.62 -6.57 16.8 + -0.62 -5.92 18.65 + -0.68 -5.76 18.47 + -0.86 -5.81 18.47 + -0.9 -5.97 18.62 + -0.76 -6.05 18.74 + -1.2 -4.7 19.96 + -1.23 -4.6 19.8 + -1.37 -4.63 19.8 + -1.4 -4.74 19.94 + -1.3 -4.79 20.04 + -1.51 -4.15 21.79 + -1.54 -4.09 21.65 + -1.64 -4.11 21.66 + -1.66 -4.18 21.76 + -1.59 -4.21 21.85 + -1.2 -4.35 23.67 + 4.68 -6.19 14.38 + 4.76 -6.06 14.25 + 4.61 -6.02 14.37 + 5.43 -6.14 15.39 + 5.54 -6.03 15.32 + 5.4 -5.99 15.4 + 6.13 -5.52 15.92 + 6.22 -5.42 15.81 + 6.09 -5.38 15.91 + 7.09 -5.35 17.32 + 2.82 -2.42 -0.15 + 3.39 -2.45 -0.09 + 3.45 -2.39 0.12 + 4 -2.44 -0.01 + 2.2 -2.34 0.2 + 2.85 -2.35 0.09 + 3.54 -2.19 0.01 + 1.72 -2.03 0.27 + 2.26 -2.27 0.39 + 2.37 -2.18 0.43 + 3 -2.14 0.03 + 1.41 -2.09 0.21 + 1.61 -1.96 0.56 + 1.88 -1.89 0.62 + 2.47 -2.05 0.26 + 1.48 -1.76 0.69 + 2.05 -1.68 0.42 + 1.1 -2.46 0.08 + 1.24 -2.08 0.48 + 1.1 -1.51 0.95 + 1.72 -1.56 0.47 + 0.41 0.46 0.5 + 0.62 -0.43 0.96 + 0.71 -0.48 1.33 + 0.73 -1.09 1.22 + 0.94 -1.04 1.26 + 1.31 -1.29 0.71 + 0.62 -1.08 0.88 + 0.1 0.87 0.27 + 0.57 0.23 1.04 + 0.98 -0.32 1.42 + 1.13 -0.89 1 + 0.37 0.73 0.95 + 0.88 0.43 1.14 + 1.23 -0.16 1.12 + 0.35 1.2 0.41 + 0.51 0.86 1.01 + 1.07 0.7 0.66 + 0.72 1.09 0.42 + 0.98 -2.5 0.31 + 1.12 -2.96 -0.53 + 1.01 -3.25 -0.44 + 1.44 -3.91 -0.8 + 1.23 -3.98 -0.85 + 0.82 -3.17 -0.63 + 0.67 -2.75 -0.21 + 0.72 -2.81 0.03 + 0.84 -2.46 0.31 + 1.09 -1.9 0.6 + 0.84 -1.53 0.91 + 0.8 -2.33 0.1 + 1 -1.77 0.21 + 0.78 -1.49 0.58 + 3.22 -0.73 -0.47 + 3.75 -0.52 -0.42 + 3.79 -0.44 -0.21 + 4.31 -0.26 -0.34 + 2.62 -0.9 -0.13 + 3.22 -0.65 -0.24 + 3.78 -0.22 -0.31 + 2.05 -0.81 -0.06 + 2.64 -0.82 0.06 + 2.71 -0.69 0.11 + 3.27 -0.4 -0.3 + 1.8 -0.99 -0.12 + 1.93 -0.8 0.23 + 2.14 -0.62 0.29 + 2.75 -0.52 -0.07 + 1.72 -0.66 0.36 + 2.21 -0.36 0.09 + 1.67 -1.46 -0.25 + 1.63 -1.05 0.15 + 1.28 -0.59 0.62 + 1.86 -0.38 0.15 + -0.16 0.93 0.17 + 0.39 0.2 0.63 + 0.51 0.19 1.01 + 0.77 -0.36 0.9 + 0.94 -0.22 0.94 + 1.38 -0.31 0.38 + 0.66 -0.39 0.55 + -0.6 1.18 -0.05 + 0.09 0.79 0.72 + 0.69 0.45 1.09 + 1.05 -0.01 0.67 + -0.31 1.16 0.62 + 0.29 1.09 0.82 + 0.85 0.69 0.79 + -0.51 1.58 0.08 + -0.22 1.34 0.68 + 0.35 1.42 0.33 + -0.13 1.63 0.09 + 1.56 -1.54 -0.02 + 1.88 -1.9 -0.86 + 1.9 -2.22 -0.76 + 2.57 -2.65 -1.13 + 2.4 -2.79 -1.18 + 1.7 -2.22 -0.96 + 1.39 -1.9 -0.53 + 1.46 -1.93 -0.3 + 1.43 -1.56 -0.02 + 1.42 -0.95 0.27 + 1.05 -0.71 0.58 + 1.33 -1.46 -0.22 + 1.29 -0.86 -0.12 + 0.97 -0.7 0.25 + faces 844 + 0 1 11 1 191 192 11 2 + 11 10 0 1 11 193 191 2 + 1 2 12 1 192 194 195 2 + 12 11 1 1 195 11 192 2 + 2 3 13 1 196 197 13 2 + 13 12 2 1 13 12 196 2 + 3 4 14 1 197 198 199 2 + 14 13 3 1 199 13 197 2 + 4 5 15 1 198 200 201 2 + 15 14 4 1 201 199 198 2 + 5 6 16 1 202 203 16 2 + 16 15 5 1 204 201 200 2 + 6 7 17 1 203 205 17 2 + 17 16 6 1 17 16 203 2 + 7 8 18 1 205 206 207 2 + 18 17 7 1 207 17 205 2 + 8 9 19 1 208 209 210 2 + 19 18 8 1 19 18 211 2 + 9 0 10 1 212 213 10 2 + 10 19 9 1 10 19 212 2 + 10 11 21 1 193 11 21 2 + 21 20 10 1 21 214 193 2 + 11 12 22 1 11 195 215 2 + 22 21 11 1 215 21 11 2 + 12 13 22 1 12 13 22 2 + 13 14 23 1 13 199 216 2 + 23 22 13 1 216 22 13 2 + 14 15 24 1 14 15 24 2 + 24 23 14 1 24 23 14 2 + 15 16 25 1 15 16 25 2 + 25 24 15 1 25 24 15 2 + 16 17 26 1 16 17 26 2 + 26 25 16 1 26 25 16 2 + 17 18 27 1 17 207 217 2 + 27 26 17 1 217 26 17 2 + 18 19 20 1 18 19 20 2 + 20 27 18 1 20 27 18 2 + 19 10 20 1 19 10 20 2 + 20 21 29 1 214 21 29 2 + 29 28 20 1 29 218 214 2 + 21 22 30 1 21 215 219 2 + 30 29 21 1 219 29 21 2 + 22 23 31 1 22 216 220 2 + 31 30 22 1 220 30 22 2 + 23 24 31 1 23 24 31 2 + 24 25 32 1 24 25 32 2 + 32 31 24 1 32 31 24 2 + 25 26 33 1 25 26 33 2 + 33 32 25 1 33 32 25 2 + 26 27 34 1 26 217 221 2 + 34 33 26 1 221 33 26 2 + 27 20 28 1 27 20 28 2 + 28 34 27 1 28 34 27 2 + 28 29 36 1 218 29 36 2 + 36 35 28 1 36 222 218 2 + 29 30 37 1 29 219 223 2 + 37 36 29 1 223 36 29 2 + 30 31 38 1 30 220 36 2 + 38 37 30 1 36 37 30 2 + 31 32 39 1 31 32 39 2 + 39 38 31 1 39 38 31 2 + 32 33 40 1 32 33 40 2 + 40 39 32 1 40 39 32 2 + 33 34 41 1 33 221 224 2 + 41 40 33 1 224 40 33 2 + 34 28 35 1 34 28 35 2 + 35 41 34 1 35 41 34 2 + 35 36 42 1 222 36 225 2 + 36 37 43 1 36 223 226 2 + 43 42 36 1 226 225 36 2 + 37 38 44 1 37 36 227 2 + 44 43 37 1 227 43 37 2 + 38 39 45 1 38 39 45 2 + 45 44 38 1 45 44 38 2 + 39 40 46 1 39 40 46 2 + 46 45 39 1 46 45 39 2 + 40 41 47 1 40 224 228 2 + 47 46 40 1 228 46 40 2 + 41 35 42 1 41 35 42 2 + 42 47 41 1 42 47 41 2 + 42 43 49 1 225 226 229 2 + 49 48 42 1 229 230 225 2 + 43 44 50 1 43 227 231 2 + 50 49 43 1 231 49 43 2 + 44 45 51 1 44 45 51 2 + 51 50 44 1 51 50 44 2 + 45 46 51 1 45 46 51 2 + 46 47 52 1 46 228 232 2 + 52 51 46 1 232 51 46 2 + 47 42 48 1 47 42 48 2 + 48 52 47 1 48 52 47 2 + 48 49 54 1 230 229 233 2 + 54 53 48 1 233 234 230 2 + 49 50 55 1 49 231 235 2 + 55 54 49 1 235 54 49 2 + 50 51 56 1 50 51 56 2 + 56 55 50 1 56 55 50 2 + 51 52 57 1 51 232 236 2 + 57 56 51 1 236 56 51 2 + 52 48 53 1 52 48 53 2 + 53 57 52 1 53 57 52 2 + 59 58 53 1 59 237 234 2 + 53 54 60 1 234 233 60 2 + 60 59 53 1 60 59 234 2 + 54 55 61 1 54 235 238 2 + 61 60 54 1 238 239 54 2 + 55 56 62 1 55 56 62 2 + 62 61 55 1 62 61 55 2 + 56 57 63 1 56 236 240 2 + 63 62 56 1 240 62 56 2 + 57 53 58 1 57 53 58 2 + 58 63 57 1 58 241 57 2 + 58 59 64 1 237 59 242 2 + 59 60 65 1 59 60 243 2 + 65 64 59 1 243 242 59 2 + 60 61 66 1 239 238 66 2 + 66 65 60 1 244 243 60 2 + 61 62 67 1 61 62 67 2 + 67 66 61 1 67 245 61 2 + 62 63 68 1 62 240 246 2 + 68 67 62 1 246 67 62 2 + 63 58 64 1 241 58 247 2 + 64 68 63 1 64 68 63 2 + 64 65 69 1 242 243 248 2 + 65 66 69 1 65 249 250 2 + 66 67 69 1 66 251 252 2 + 67 68 69 1 67 246 253 2 + 68 64 69 1 68 64 69 2 + 5 7 6 1 254 255 6 1 + 1 3 2 1 1 3 2 1 + 9 1 0 1 9 1 0 1 + 9 3 1 1 9 3 1 1 + 8 3 9 1 8 3 9 1 + 7 3 8 1 7 3 8 1 + 5 3 7 1 5 3 7 1 + 4 3 5 1 4 3 5 1 + 70 71 76 1 256 257 258 2 + 76 75 70 1 258 259 256 2 + 71 72 77 1 260 261 262 2 + 77 76 71 1 262 263 260 2 + 72 73 78 1 264 265 266 2 + 78 77 72 1 266 77 264 2 + 73 74 79 1 265 267 268 2 + 79 78 73 1 268 266 265 2 + 74 70 75 1 269 270 75 2 + 75 79 74 1 75 79 269 2 + 75 76 81 1 259 258 271 2 + 81 80 75 1 271 272 259 2 + 76 77 82 1 76 273 274 2 + 82 81 76 1 274 275 76 2 + 77 78 83 1 77 266 83 2 + 83 82 77 1 83 82 77 2 + 78 79 84 1 78 79 276 2 + 84 83 78 1 276 277 78 2 + 79 75 80 1 79 75 278 2 + 80 84 79 1 278 276 79 2 + 80 81 86 1 272 271 279 2 + 86 85 80 1 279 280 272 2 + 81 82 87 1 81 281 282 2 + 87 86 81 1 282 283 81 2 + 82 83 88 1 82 83 88 2 + 88 87 82 1 88 87 82 2 + 83 84 89 1 83 284 285 2 + 89 88 83 1 285 88 83 2 + 84 80 85 1 84 80 286 2 + 85 89 84 1 286 287 84 2 + 85 86 91 1 280 279 288 2 + 91 90 85 1 288 289 280 2 + 86 87 92 1 86 290 291 2 + 92 91 86 1 291 292 86 2 + 87 88 93 1 87 88 293 2 + 93 92 87 1 293 92 87 2 + 88 89 94 1 88 285 294 2 + 94 93 88 1 294 293 88 2 + 89 85 90 1 89 85 295 2 + 90 94 89 1 295 296 89 2 + 90 91 96 1 289 288 297 2 + 96 95 90 1 297 298 289 2 + 91 92 96 1 91 299 300 2 + 92 93 97 1 92 293 301 2 + 97 96 92 1 301 96 92 2 + 93 94 95 1 293 294 302 2 + 95 97 93 1 95 97 93 2 + 94 90 95 1 94 90 95 2 + 95 96 98 1 298 297 303 2 + 96 97 98 1 96 301 304 2 + 97 95 98 1 97 95 98 2 + 74 71 70 1 74 71 70 1 + 73 71 74 1 73 71 74 1 + 72 71 73 1 72 71 73 1 + 99 100 105 1 305 306 307 2 + 105 104 99 1 307 104 305 2 + 100 101 106 1 308 309 310 2 + 106 105 100 1 310 311 308 2 + 101 102 107 1 312 313 107 2 + 107 106 101 1 107 106 312 2 + 102 103 108 1 313 314 315 2 + 108 107 102 1 315 107 313 2 + 103 99 104 1 316 305 104 2 + 104 108 103 1 104 108 316 2 + 104 105 110 1 104 307 317 2 + 110 109 104 1 317 109 104 2 + 105 106 111 1 105 318 319 2 + 111 110 105 1 319 320 105 2 + 106 107 112 1 106 107 112 2 + 112 111 106 1 112 111 106 2 + 107 108 113 1 107 315 321 2 + 113 112 107 1 321 112 107 2 + 108 104 109 1 108 104 109 2 + 109 113 108 1 109 113 108 2 + 109 110 115 1 109 317 322 2 + 115 114 109 1 322 114 109 2 + 110 111 116 1 110 323 324 2 + 116 115 110 1 324 115 110 2 + 111 112 117 1 111 112 117 2 + 117 116 111 1 117 116 111 2 + 112 113 118 1 112 321 325 2 + 118 117 112 1 325 117 112 2 + 113 109 114 1 113 109 114 2 + 114 118 113 1 114 118 113 2 + 114 115 120 1 114 322 326 2 + 120 119 114 1 326 119 114 2 + 115 116 121 1 115 324 327 2 + 121 120 115 1 327 120 115 2 + 116 117 122 1 116 117 122 2 + 122 121 116 1 122 121 116 2 + 117 118 123 1 117 325 328 2 + 123 122 117 1 328 122 117 2 + 118 114 119 1 118 114 119 2 + 119 123 118 1 119 123 118 2 + 119 120 125 1 119 326 329 2 + 125 124 119 1 329 330 119 2 + 120 121 126 1 120 327 331 2 + 126 125 120 1 331 332 120 2 + 121 122 127 1 121 122 333 2 + 127 126 121 1 333 126 121 2 + 122 123 128 1 122 328 334 2 + 128 127 122 1 334 333 122 2 + 123 119 124 1 123 119 330 2 + 124 128 123 1 330 335 123 2 + 124 125 129 1 330 329 336 2 + 125 126 129 1 125 337 338 2 + 126 127 129 1 126 333 339 2 + 127 128 129 1 127 128 129 2 + 128 124 129 1 128 124 129 2 + 103 100 99 1 103 100 99 1 + 102 100 103 1 102 100 103 1 + 101 100 102 1 101 100 102 1 + 130 131 135 1 130 340 341 2 + 135 134 130 1 341 134 130 2 + 131 132 136 1 131 342 343 2 + 136 135 131 1 343 135 131 2 + 132 51 137 1 132 51 137 2 + 137 136 132 1 137 136 132 2 + 51 133 138 1 51 344 345 2 + 138 137 51 1 345 137 51 2 + 133 130 134 1 133 130 134 2 + 134 138 133 1 134 138 133 2 + 134 135 140 1 134 341 346 2 + 140 139 134 1 346 139 134 2 + 135 136 141 1 135 343 347 2 + 141 140 135 1 347 140 135 2 + 136 137 142 1 136 137 142 2 + 142 141 136 1 142 141 136 2 + 137 138 143 1 137 345 348 2 + 143 142 137 1 348 142 137 2 + 138 134 139 1 138 134 139 2 + 139 143 138 1 139 143 138 2 + 139 140 145 1 139 346 349 2 + 145 144 139 1 349 350 139 2 + 140 141 146 1 140 347 351 2 + 146 145 140 1 351 352 140 2 + 141 142 147 1 141 142 147 2 + 147 146 141 1 147 353 141 2 + 142 143 148 1 142 348 354 2 + 148 147 142 1 354 147 142 2 + 143 139 144 1 143 139 350 2 + 144 148 143 1 350 355 143 2 + 144 145 149 1 350 349 356 2 + 145 146 149 1 145 146 357 2 + 146 147 149 1 146 358 357 2 + 147 148 149 1 147 354 359 2 + 148 144 149 1 148 144 149 2 + 150 151 154 1 360 361 362 2 + 154 153 150 1 362 363 360 2 + 151 152 155 1 151 364 365 2 + 155 154 151 1 365 154 151 2 + 152 150 153 1 152 150 366 2 + 153 155 152 1 366 367 152 2 + 153 154 157 1 363 362 368 2 + 157 156 153 1 368 369 363 2 + 154 155 158 1 154 365 370 2 + 158 157 154 1 370 157 154 2 + 155 153 156 1 155 153 156 2 + 156 158 155 1 156 158 155 2 + 156 157 159 1 369 368 371 2 + 157 158 159 1 157 370 372 2 + 158 156 159 1 158 156 159 2 + 160 161 166 1 160 373 374 2 + 166 165 160 1 374 165 160 2 + 161 162 167 1 161 375 376 2 + 167 166 161 1 376 166 161 2 + 162 163 168 1 162 163 168 2 + 168 167 162 1 168 167 162 2 + 163 164 169 1 163 377 378 2 + 169 168 163 1 378 168 163 2 + 164 160 165 1 164 160 165 2 + 165 169 164 1 165 169 164 2 + 165 166 171 1 165 374 379 2 + 171 170 165 1 379 170 165 2 + 166 167 172 1 166 376 380 2 + 172 171 166 1 380 171 166 2 + 167 168 173 1 167 168 173 2 + 173 172 167 1 173 172 167 2 + 168 169 174 1 168 378 381 2 + 174 173 168 1 381 173 168 2 + 169 165 170 1 169 165 170 2 + 170 174 169 1 170 174 169 2 + 170 171 176 1 170 379 382 2 + 176 175 170 1 382 383 170 2 + 171 172 177 1 171 380 384 2 + 177 176 171 1 384 385 171 2 + 172 173 178 1 172 173 386 2 + 178 177 172 1 386 177 172 2 + 173 174 179 1 173 381 387 2 + 179 178 173 1 387 386 173 2 + 174 170 175 1 174 170 383 2 + 175 179 174 1 383 388 174 2 + 175 176 180 1 383 382 389 2 + 176 177 180 1 176 390 391 2 + 177 178 180 1 177 386 392 2 + 178 179 180 1 178 179 180 2 + 179 175 180 1 179 175 180 2 + 181 182 185 1 393 394 395 2 + 185 184 181 1 395 396 393 2 + 182 183 186 1 182 397 398 2 + 186 185 182 1 398 399 182 2 + 183 181 184 1 183 181 400 2 + 184 186 183 1 400 401 183 2 + 184 185 188 1 402 403 404 2 + 188 187 184 1 404 405 402 2 + 185 186 189 1 185 406 407 2 + 189 188 185 1 407 408 185 2 + 186 184 187 1 186 184 409 2 + 187 189 186 1 409 410 186 2 + 187 188 190 1 411 412 413 2 + 188 189 190 1 188 414 415 2 + 189 187 190 1 189 187 190 2 + 191 192 202 1 191 192 11 2 + 202 201 191 1 11 193 191 2 + 192 193 203 1 192 194 195 2 + 203 202 192 1 195 11 192 2 + 193 194 204 1 196 197 13 2 + 204 203 193 1 13 12 196 2 + 194 195 205 1 197 198 199 2 + 205 204 194 1 199 13 197 2 + 195 196 206 1 198 200 201 2 + 206 205 195 1 201 199 198 2 + 196 197 207 1 202 203 16 2 + 207 206 196 1 204 201 200 2 + 197 198 208 1 203 205 17 2 + 208 207 197 1 17 16 203 2 + 198 199 209 1 205 206 207 2 + 209 208 198 1 207 17 205 2 + 199 200 210 1 208 209 210 2 + 210 209 199 1 19 18 211 2 + 200 191 201 1 212 213 10 2 + 201 210 200 1 10 19 212 2 + 201 202 212 1 193 11 21 2 + 212 211 201 1 21 214 193 2 + 202 203 213 1 11 195 215 2 + 213 212 202 1 215 21 11 2 + 203 204 213 1 12 13 22 2 + 204 205 214 1 13 199 216 2 + 214 213 204 1 216 22 13 2 + 205 206 215 1 14 15 24 2 + 215 214 205 1 24 23 14 2 + 206 207 216 1 15 16 25 2 + 216 215 206 1 25 24 15 2 + 207 208 217 1 16 17 26 2 + 217 216 207 1 26 25 16 2 + 208 209 218 1 17 207 217 2 + 218 217 208 1 217 26 17 2 + 209 210 211 1 18 19 20 2 + 211 218 209 1 20 27 18 2 + 210 201 211 1 19 10 20 2 + 211 212 220 1 214 21 29 2 + 220 219 211 1 29 218 214 2 + 212 213 221 1 21 215 219 2 + 221 220 212 1 219 29 21 2 + 213 214 222 1 22 216 220 2 + 222 221 213 1 220 30 22 2 + 214 215 222 1 23 24 31 2 + 215 216 223 1 24 25 32 2 + 223 222 215 1 32 31 24 2 + 216 217 224 1 25 26 33 2 + 224 223 216 1 33 32 25 2 + 217 218 225 1 26 217 221 2 + 225 224 217 1 221 33 26 2 + 218 211 219 1 27 20 28 2 + 219 225 218 1 28 34 27 2 + 219 220 227 1 218 29 36 2 + 227 226 219 1 36 222 218 2 + 220 221 228 1 29 219 223 2 + 228 227 220 1 223 36 29 2 + 221 222 229 1 30 220 36 2 + 229 228 221 1 36 37 30 2 + 222 223 230 1 31 32 39 2 + 230 229 222 1 39 38 31 2 + 223 224 231 1 32 33 40 2 + 231 230 223 1 40 39 32 2 + 224 225 232 1 33 221 224 2 + 232 231 224 1 224 40 33 2 + 225 219 226 1 34 28 35 2 + 226 232 225 1 35 41 34 2 + 226 227 233 1 222 36 225 2 + 227 228 234 1 36 223 226 2 + 234 233 227 1 226 225 36 2 + 228 229 235 1 37 36 227 2 + 235 234 228 1 227 43 37 2 + 229 230 236 1 38 39 45 2 + 236 235 229 1 45 44 38 2 + 230 231 237 1 39 40 46 2 + 237 236 230 1 46 45 39 2 + 231 232 238 1 40 224 228 2 + 238 237 231 1 228 46 40 2 + 232 226 233 1 41 35 42 2 + 233 238 232 1 42 47 41 2 + 233 234 240 1 225 226 229 2 + 240 239 233 1 229 230 225 2 + 234 235 241 1 43 227 231 2 + 241 240 234 1 231 49 43 2 + 235 236 242 1 44 45 51 2 + 242 241 235 1 51 50 44 2 + 236 237 242 1 45 46 51 2 + 237 238 243 1 46 228 232 2 + 243 242 237 1 232 51 46 2 + 238 233 239 1 47 42 48 2 + 239 243 238 1 48 52 47 2 + 239 240 245 1 230 229 233 2 + 245 244 239 1 233 234 230 2 + 240 241 246 1 49 231 235 2 + 246 245 240 1 235 54 49 2 + 241 242 247 1 50 51 56 2 + 247 246 241 1 56 55 50 2 + 242 243 248 1 51 232 236 2 + 248 247 242 1 236 56 51 2 + 243 239 244 1 52 48 53 2 + 244 248 243 1 53 57 52 2 + 250 249 244 1 59 237 234 2 + 244 245 251 1 234 233 60 2 + 251 250 244 1 60 59 234 2 + 245 246 252 1 54 235 238 2 + 252 251 245 1 238 239 54 2 + 246 247 253 1 55 56 62 2 + 253 252 246 1 62 61 55 2 + 247 248 254 1 56 236 240 2 + 254 253 247 1 240 62 56 2 + 248 244 249 1 57 53 58 2 + 249 254 248 1 58 241 57 2 + 249 250 255 1 237 59 242 2 + 250 251 256 1 59 60 243 2 + 256 255 250 1 243 242 59 2 + 251 252 257 1 239 238 66 2 + 257 256 251 1 244 243 60 2 + 252 253 258 1 61 62 67 2 + 258 257 252 1 67 245 61 2 + 253 254 259 1 62 240 246 2 + 259 258 253 1 246 67 62 2 + 254 249 255 1 241 58 247 2 + 255 259 254 1 64 68 63 2 + 255 256 260 1 242 243 248 2 + 256 257 260 1 65 249 250 2 + 257 258 260 1 66 251 252 2 + 258 259 260 1 67 246 253 2 + 259 255 260 1 68 64 69 2 + 196 198 197 1 254 255 6 1 + 192 194 193 1 1 3 2 1 + 200 192 191 1 9 1 0 1 + 200 194 192 1 9 3 1 1 + 199 194 200 1 8 3 9 1 + 198 194 199 1 7 3 8 1 + 196 194 198 1 5 3 7 1 + 195 194 196 1 4 3 5 1 + 261 262 267 1 256 257 258 2 + 267 266 261 1 258 259 256 2 + 262 263 268 1 260 261 262 2 + 268 267 262 1 262 263 260 2 + 263 264 269 1 264 265 266 2 + 269 268 263 1 266 77 264 2 + 264 265 270 1 265 267 268 2 + 270 269 264 1 268 266 265 2 + 265 261 266 1 269 270 75 2 + 266 270 265 1 75 79 269 2 + 266 267 272 1 259 258 271 2 + 272 271 266 1 271 272 259 2 + 267 268 273 1 76 273 274 2 + 273 272 267 1 274 275 76 2 + 268 269 274 1 77 266 83 2 + 274 273 268 1 83 82 77 2 + 269 270 275 1 78 79 276 2 + 275 274 269 1 276 277 78 2 + 270 266 271 1 79 75 278 2 + 271 275 270 1 278 276 79 2 + 271 272 277 1 272 271 279 2 + 277 276 271 1 279 280 272 2 + 272 273 278 1 81 281 282 2 + 278 277 272 1 282 283 81 2 + 273 274 279 1 82 83 88 2 + 279 278 273 1 88 87 82 2 + 274 275 280 1 83 284 285 2 + 280 279 274 1 285 88 83 2 + 275 271 276 1 84 80 286 2 + 276 280 275 1 286 287 84 2 + 276 277 282 1 280 279 288 2 + 282 281 276 1 288 289 280 2 + 277 278 283 1 86 290 291 2 + 283 282 277 1 291 292 86 2 + 278 279 284 1 87 88 293 2 + 284 283 278 1 293 92 87 2 + 279 280 285 1 88 285 294 2 + 285 284 279 1 294 293 88 2 + 280 276 281 1 89 85 295 2 + 281 285 280 1 295 296 89 2 + 281 282 287 1 289 288 297 2 + 287 286 281 1 297 298 289 2 + 282 283 287 1 91 299 300 2 + 283 284 288 1 92 293 301 2 + 288 287 283 1 301 96 92 2 + 284 285 286 1 293 294 302 2 + 286 288 284 1 95 97 93 2 + 285 281 286 1 94 90 95 2 + 286 287 289 1 298 297 303 2 + 287 288 289 1 96 301 304 2 + 288 286 289 1 97 95 98 2 + 265 262 261 1 74 71 70 1 + 264 262 265 1 73 71 74 1 + 263 262 264 1 72 71 73 1 + 290 291 296 1 305 306 307 2 + 296 295 290 1 307 104 305 2 + 291 292 297 1 308 309 310 2 + 297 296 291 1 310 311 308 2 + 292 293 298 1 312 313 107 2 + 298 297 292 1 107 106 312 2 + 293 294 299 1 313 314 315 2 + 299 298 293 1 315 107 313 2 + 294 290 295 1 316 305 104 2 + 295 299 294 1 104 108 316 2 + 295 296 301 1 104 307 317 2 + 301 300 295 1 317 109 104 2 + 296 297 302 1 105 318 319 2 + 302 301 296 1 319 320 105 2 + 297 298 303 1 106 107 112 2 + 303 302 297 1 112 111 106 2 + 298 299 304 1 107 315 321 2 + 304 303 298 1 321 112 107 2 + 299 295 300 1 108 104 109 2 + 300 304 299 1 109 113 108 2 + 300 301 306 1 109 317 322 2 + 306 305 300 1 322 114 109 2 + 301 302 307 1 110 323 324 2 + 307 306 301 1 324 115 110 2 + 302 303 308 1 111 112 117 2 + 308 307 302 1 117 116 111 2 + 303 304 309 1 112 321 325 2 + 309 308 303 1 325 117 112 2 + 304 300 305 1 113 109 114 2 + 305 309 304 1 114 118 113 2 + 305 306 311 1 114 322 326 2 + 311 310 305 1 326 119 114 2 + 306 307 312 1 115 324 327 2 + 312 311 306 1 327 120 115 2 + 307 308 313 1 116 117 122 2 + 313 312 307 1 122 121 116 2 + 308 309 314 1 117 325 328 2 + 314 313 308 1 328 122 117 2 + 309 305 310 1 118 114 119 2 + 310 314 309 1 119 123 118 2 + 310 311 316 1 119 326 329 2 + 316 315 310 1 329 330 119 2 + 311 312 317 1 120 327 331 2 + 317 316 311 1 331 332 120 2 + 312 313 318 1 121 122 333 2 + 318 317 312 1 333 126 121 2 + 313 314 319 1 122 328 334 2 + 319 318 313 1 334 333 122 2 + 314 310 315 1 123 119 330 2 + 315 319 314 1 330 335 123 2 + 315 316 320 1 330 329 336 2 + 316 317 320 1 125 337 338 2 + 317 318 320 1 126 333 339 2 + 318 319 320 1 127 128 129 2 + 319 315 320 1 128 124 129 2 + 294 291 290 1 103 100 99 1 + 293 291 294 1 102 100 103 1 + 292 291 293 1 101 100 102 1 + 321 322 326 1 130 340 341 2 + 326 325 321 1 341 134 130 2 + 322 323 327 1 131 342 343 2 + 327 326 322 1 343 135 131 2 + 323 242 328 1 132 51 137 2 + 328 327 323 1 137 136 132 2 + 242 324 329 1 51 344 345 2 + 329 328 242 1 345 137 51 2 + 324 321 325 1 133 130 134 2 + 325 329 324 1 134 138 133 2 + 325 326 331 1 134 341 346 2 + 331 330 325 1 346 139 134 2 + 326 327 332 1 135 343 347 2 + 332 331 326 1 347 140 135 2 + 327 328 333 1 136 137 142 2 + 333 332 327 1 142 141 136 2 + 328 329 334 1 137 345 348 2 + 334 333 328 1 348 142 137 2 + 329 325 330 1 138 134 139 2 + 330 334 329 1 139 143 138 2 + 330 331 336 1 139 346 349 2 + 336 335 330 1 349 350 139 2 + 331 332 337 1 140 347 351 2 + 337 336 331 1 351 352 140 2 + 332 333 338 1 141 142 147 2 + 338 337 332 1 147 353 141 2 + 333 334 339 1 142 348 354 2 + 339 338 333 1 354 147 142 2 + 334 330 335 1 143 139 350 2 + 335 339 334 1 350 355 143 2 + 335 336 340 1 350 349 356 2 + 336 337 340 1 145 146 357 2 + 337 338 340 1 146 358 357 2 + 338 339 340 1 147 354 359 2 + 339 335 340 1 148 144 149 2 + 341 342 345 1 360 361 362 2 + 345 344 341 1 362 363 360 2 + 342 343 346 1 151 364 365 2 + 346 345 342 1 365 154 151 2 + 343 341 344 1 152 150 366 2 + 344 346 343 1 366 367 152 2 + 344 345 348 1 363 362 368 2 + 348 347 344 1 368 369 363 2 + 345 346 349 1 154 365 370 2 + 349 348 345 1 370 157 154 2 + 346 344 347 1 155 153 156 2 + 347 349 346 1 156 158 155 2 + 347 348 350 1 369 368 371 2 + 348 349 350 1 157 370 372 2 + 349 347 350 1 158 156 159 2 + 351 352 357 1 160 373 374 2 + 357 356 351 1 374 165 160 2 + 352 353 358 1 161 375 376 2 + 358 357 352 1 376 166 161 2 + 353 354 359 1 162 163 168 2 + 359 358 353 1 168 167 162 2 + 354 355 360 1 163 377 378 2 + 360 359 354 1 378 168 163 2 + 355 351 356 1 164 160 165 2 + 356 360 355 1 165 169 164 2 + 356 357 362 1 165 374 379 2 + 362 361 356 1 379 170 165 2 + 357 358 363 1 166 376 380 2 + 363 362 357 1 380 171 166 2 + 358 359 364 1 167 168 173 2 + 364 363 358 1 173 172 167 2 + 359 360 365 1 168 378 381 2 + 365 364 359 1 381 173 168 2 + 360 356 361 1 169 165 170 2 + 361 365 360 1 170 174 169 2 + 361 362 367 1 170 379 382 2 + 367 366 361 1 382 383 170 2 + 362 363 368 1 171 380 384 2 + 368 367 362 1 384 385 171 2 + 363 364 369 1 172 173 386 2 + 369 368 363 1 386 177 172 2 + 364 365 370 1 173 381 387 2 + 370 369 364 1 387 386 173 2 + 365 361 366 1 174 170 383 2 + 366 370 365 1 383 388 174 2 + 366 367 371 1 383 382 389 2 + 367 368 371 1 176 390 391 2 + 368 369 371 1 177 386 392 2 + 369 370 371 1 178 179 180 2 + 370 366 371 1 179 175 180 2 + 372 373 376 1 393 394 395 2 + 376 375 372 1 395 396 393 2 + 373 374 377 1 182 397 398 2 + 377 376 373 1 398 399 182 2 + 374 372 375 1 183 181 400 2 + 375 377 374 1 400 401 183 2 + 375 376 379 1 402 403 404 2 + 379 378 375 1 404 405 402 2 + 376 377 380 1 185 406 407 2 + 380 379 376 1 407 408 185 2 + 377 375 378 1 186 184 409 2 + 378 380 377 1 409 410 186 2 + 378 379 381 1 411 412 413 2 + 379 380 381 1 188 414 415 2 + 380 378 381 1 189 187 190 2 + 382 383 384 1 416 417 418 1 + 383 385 384 1 417 419 418 1 + 386 382 387 1 420 416 421 1 + 384 387 382 1 418 421 416 1 + 387 384 388 1 421 418 422 1 + 385 388 384 1 419 422 418 1 + 389 386 390 1 423 420 424 1 + 387 390 386 1 421 424 420 1 + 391 390 387 1 425 424 421 1 + 391 387 392 1 425 421 426 1 + 388 392 387 1 422 426 421 1 + 393 389 394 1 427 423 428 1 + 390 394 389 1 424 428 423 1 + 395 394 390 1 429 428 424 1 + 391 395 390 1 425 429 424 1 + 395 391 396 1 429 425 430 1 + 392 396 391 1 426 430 425 1 + 395 397 394 1 429 431 428 1 + 397 395 398 1 431 429 432 1 + 396 398 395 1 430 432 429 1 + 399 393 400 1 433 427 434 1 + 394 400 393 1 428 434 427 1 + 394 401 400 1 428 435 434 1 + 397 401 394 1 431 435 428 1 + 401 397 402 1 435 431 436 1 + 398 402 397 1 432 436 431 1 + 403 404 405 1 437 438 439 1 + 406 405 404 1 440 439 438 1 + 407 405 406 1 441 439 440 1 + 401 407 406 1 435 441 440 1 + 407 401 408 1 441 435 442 1 + 402 408 401 1 436 442 435 1 + 404 409 406 1 438 443 440 1 + 410 403 411 1 444 437 445 1 + 405 411 403 1 439 445 437 1 + 412 411 405 1 446 445 439 1 + 407 412 405 1 441 446 439 1 + 412 407 413 1 446 441 447 1 + 408 413 407 1 442 447 441 1 + 411 414 410 1 445 448 444 1 + 415 414 411 1 449 448 445 1 + 412 415 411 1 446 449 445 1 + 415 412 416 1 449 446 450 1 + 413 416 412 1 447 450 446 1 + 417 410 414 1 451 444 448 1 + 414 418 417 1 448 452 451 1 + 415 418 414 1 449 452 448 1 + 418 415 419 1 452 449 453 1 + 416 419 415 1 450 453 449 1 + 420 417 418 1 454 451 452 1 + 419 420 418 1 453 454 452 1 + 400 421 399 1 434 455 433 1 + 422 399 421 1 456 433 455 1 + 421 423 422 1 455 457 456 1 + 424 422 423 1 458 456 457 1 + 425 424 423 1 459 458 457 1 + 426 425 423 1 460 459 457 1 + 427 426 423 1 461 460 457 1 + 423 428 427 1 457 462 461 1 + 428 423 421 1 462 457 455 1 + 429 428 421 1 463 462 455 1 + 429 421 400 1 463 455 434 1 + 430 429 400 1 464 463 434 1 + 400 401 430 1 434 435 464 1 + 401 431 430 1 435 465 464 1 + 401 406 431 1 435 440 465 1 + 431 406 409 1 465 440 443 1 + 432 427 428 1 466 461 462 1 + 428 429 432 1 462 463 466 1 + 433 432 429 1 467 466 463 1 + 429 430 433 1 463 464 467 1 + 434 433 430 1 468 467 464 1 + 430 431 434 1 464 465 468 1 + 409 434 431 1 443 468 465 1 + 435 436 437 1 416 417 418 1 + 436 438 437 1 417 419 418 1 + 439 435 440 1 420 416 421 1 + 437 440 435 1 418 421 416 1 + 440 437 441 1 421 418 422 1 + 438 441 437 1 419 422 418 1 + 442 439 443 1 423 420 424 1 + 440 443 439 1 421 424 420 1 + 444 443 440 1 425 424 421 1 + 444 440 445 1 425 421 426 1 + 441 445 440 1 422 426 421 1 + 446 442 447 1 427 423 428 1 + 443 447 442 1 424 428 423 1 + 448 447 443 1 429 428 424 1 + 444 448 443 1 425 429 424 1 + 448 444 449 1 429 425 430 1 + 445 449 444 1 426 430 425 1 + 448 450 447 1 429 431 428 1 + 450 448 451 1 431 429 432 1 + 449 451 448 1 430 432 429 1 + 452 446 453 1 433 427 434 1 + 447 453 446 1 428 434 427 1 + 447 454 453 1 428 435 434 1 + 450 454 447 1 431 435 428 1 + 454 450 455 1 435 431 436 1 + 451 455 450 1 432 436 431 1 + 456 457 458 1 437 438 439 1 + 459 458 457 1 440 439 438 1 + 460 458 459 1 441 439 440 1 + 454 460 459 1 435 441 440 1 + 460 454 461 1 441 435 442 1 + 455 461 454 1 436 442 435 1 + 457 462 459 1 438 443 440 1 + 463 456 464 1 444 437 445 1 + 458 464 456 1 439 445 437 1 + 465 464 458 1 446 445 439 1 + 460 465 458 1 441 446 439 1 + 465 460 466 1 446 441 447 1 + 461 466 460 1 442 447 441 1 + 464 467 463 1 445 448 444 1 + 468 467 464 1 449 448 445 1 + 465 468 464 1 446 449 445 1 + 468 465 469 1 449 446 450 1 + 466 469 465 1 447 450 446 1 + 470 463 467 1 451 444 448 1 + 467 471 470 1 448 452 451 1 + 468 471 467 1 449 452 448 1 + 471 468 472 1 452 449 453 1 + 469 472 468 1 450 453 449 1 + 473 470 471 1 454 451 452 1 + 472 473 471 1 453 454 452 1 + 453 474 452 1 434 455 433 1 + 475 452 474 1 456 433 455 1 + 474 476 475 1 455 457 456 1 + 477 475 476 1 458 456 457 1 + 478 477 476 1 459 458 457 1 + 479 478 476 1 460 459 457 1 + 480 479 476 1 461 460 457 1 + 476 481 480 1 457 462 461 1 + 481 476 474 1 462 457 455 1 + 482 481 474 1 463 462 455 1 + 482 474 453 1 463 455 434 1 + 483 482 453 1 464 463 434 1 + 453 454 483 1 434 435 464 1 + 454 484 483 1 435 465 464 1 + 454 459 484 1 435 440 465 1 + 484 459 462 1 465 440 443 1 + 485 480 481 1 466 461 462 1 + 481 482 485 1 462 463 466 1 + 486 485 482 1 467 466 463 1 + 482 483 486 1 463 464 467 1 + 487 486 483 1 468 467 464 1 + 483 484 487 1 464 465 468 1 + 462 487 484 1 443 468 465 1 + tverts 469 + 0.972656 0.667969 0 + 1.13867 0.402344 0 + 1.00195 0.105469 0 + 0.673828 0.0253906 0 + 0.314453 -0.160156 0 + -0.0449219 -0.00390625 0 + -0.0527344 0.248047 0 + -0.183594 0.611328 0 + 0.193359 0.90625 0 + 0.599609 0.652344 0 + 0.779297 -0.955078 0 + 0.763672 -1.03711 0 + 0.208984 -1.11719 0 + 0.394531 -1.13672 0 + 1.02734 -1.1543 0 + 1.11133 -1.0957 0 + 1.19727 -1.03906 0 + 1.31055 -0.974609 0 + 0.412109 -0.908203 0 + 0.59375 -0.931641 0 + 0.658203 -0.771484 0 + 0.84375 -0.78125 0 + 0.324219 -0.792969 0 + 0.921875 -0.794922 0 + 1.02148 -0.789063 0 + 1.12305 -0.78125 0 + 1.24805 -0.773438 0 + 0.429688 -0.767578 0 + 0.628906 -0.609375 0 + 0.744141 -0.558594 0 + 0.363281 -0.509766 0 + 1.13281 -0.511719 0 + 1.23047 -0.556641 0 + 1.3125 -0.591797 0 + 0.439453 -0.626953 0 + 0.583984 -0.263672 0 + 0.587891 -0.263672 0 + 0.408203 -0.263672 0 + 1.29883 -0.263672 0 + 1.39063 -0.263672 0 + 1.46875 -0.263672 0 + 0.4375 -0.263672 0 + 0.587891 0.265625 0 + 0.419922 0.222656 0 + 1.16992 0.222656 0 + 1.22461 0.246094 0 + 1.27148 0.265625 0 + 0.46875 0.285156 0 + 0.59375 0.685547 0 + 0.408203 0.691406 0 + 0.900391 0.691406 0 + 0.980469 0.681641 0 + 0.501953 0.681641 0 + 0.546875 1.06055 0 + 0.458984 1.09766 0 + 1.33203 1.09766 0 + 1.37695 1.06836 0 + 0.470703 1.04297 0 + 0.388672 1.46484 0 + 0.482422 1.45313 0 + 0.529297 1.44141 0 + 1.4668 1.44141 0 + 1.5293 1.45703 0 + 0.660156 0.582031 0 + 0.316406 -0.0683594 0 + -0.296875 0.916016 0 + 0.332031 1.93164 0 + 0.90625 1.94922 0 + 0.357422 -0.0742188 0 + -0.441406 -0.5625 0 + 0.550781 0.693359 0 + 0.572266 0.763672 0 + 0.673828 0.744141 0 + 0.707031 0.681641 0 + 0.634766 0.644531 0 + 0.40625 -0.0507813 0 + 0.599609 -0.0078125 0 + 0 -0.0078125 0 + 0.285156 -0.0410156 0 + 0.333984 -0.0683594 0 + 0.751953 0.388672 0 + 0.179688 0.382813 0 + 0.173828 0.507813 0 + 0.224609 0.472656 0 + 0.726563 0.333984 0 + 0.355469 0.697266 0 + 0.650391 0.744141 0 + 0.806641 0.744141 0 + 0.835938 0.707031 0 + 0.306641 0.677734 0 + 0.753906 0.330078 0 + 0.226563 0.326172 0 + 1.2207 1.04492 0 + 0.761719 0.263672 0 + 0.748047 0.291016 0 + 0.171875 0.289063 0 + 1.82227 1.0332 0 + 0.177734 0.244141 0 + -0.441406 0.246094 0 + 0.587891 0.644531 0 + 0.525391 0.576172 0 + 0.382813 0.589844 0 + 0.363281 0.65625 0 + 0.480469 0.699219 0 + -0.238281 -0.0273438 0 + 0.623047 -0.0800781 0 + 1.19727 -0.0722656 0 + 1.25391 -0.0253906 0 + -0.28125 0.00585938 0 + 0.0253906 0.398438 0 + 0.560547 0.0683594 0 + 0.947266 0.355469 0 + 0.988281 0.398438 0 + -0.0078125 0.427734 0 + 0.396484 0.679688 0 + 0.566406 0.427734 0 + 0.585938 0.634766 0 + 0.619141 0.679688 0 + 0.367188 0.710938 0 + 0.898438 0.8125 0 + 0.714844 0.917969 0 + 0.09375 0.763672 0 + 0.115234 0.810547 0 + 0.878906 0.841797 0 + 0.222656 0.0644531 0 + 0.787109 0.0390625 0 + -0.271484 1.04297 0 + 0.169922 0.0644531 0 + 0.195313 0.0800781 0 + 0.361328 0.378906 0 + 0.0078125 -0.320313 0 + 0.546875 0.951172 0 + 0.951172 0.642578 0 + -0.00976563 -0.294922 0 + 0.371094 -0.0429688 0 + 0.644531 0.599609 0 + 0.599609 0.921875 0 + 0.623047 0.957031 0 + 0.357422 -0.0195313 0 + 0.910156 0.0507813 0 + 0.560547 0.078125 0 + 0.078125 1.02148 0 + 0.0878906 1.04883 0 + 0.902344 0.0683594 0 + 0.554688 0.345703 0 + 0.457031 0.318359 0 + 0.490234 0.322266 0 + -0.302734 1.34375 0 + 0.527344 0.359375 0 + 0.740234 0.660156 0 + 0.412109 0.371094 0 + 0.580078 0.623047 0 + 0.371094 0.412109 0 + 0.429688 -0.197266 0 + 0.375 0.785156 0 + 0.392578 -0.195313 0 + 0.179688 0.046875 0 + 0.207031 1.02539 0 + 0.144531 0.046875 0 + -0.0332031 0.316406 0 + -0.492188 0.460938 0 + 0.335938 -0.457031 0 + 1.46875 0.423828 0 + 1.50391 0.460938 0 + -0.519531 0.486328 0 + -0.121094 0.740234 0 + 0.34375 -0.0957031 0 + 1.10742 0.705078 0 + 1.13281 0.740234 0 + -0.144531 0.763672 0 + 0.380859 0.869141 0 + 0.498047 0.392578 0 + 0.617188 0.839844 0 + 0.628906 0.869141 0 + 0.369141 0.888672 0 + 0.451172 0.128906 0 + 0.560547 0.101563 0 + 0.246094 1.10547 0 + 0.400391 0.126953 0 + 0.425781 0.142578 0 + 0.591797 0.441406 0 + 0.763672 0.0253906 0 + 0.605469 -0.00585938 0 + 0.71875 0.0117188 0 + 0.644531 0.359375 0 + 0.322266 0.380859 0 + 0.632813 0.402344 0 + 0.414063 0.214844 0 + 1.07813 0.189453 0 + 0.375 0.203125 0 + 0.208984 0.417969 0 + 0.332031 -1.43945 0 + 0.597656 -1.43945 0 + 0.632813 -0.955078 0 + 0.894531 -1.44141 0 + 0.894531 -1.11719 0 + -0.00195313 -1.44141 0 + 0.326172 -1.44141 0 + 0.685547 -1.44141 0 + 0.580078 -1.1543 0 + 1.04492 -1.44141 0 + 0.720703 -1.0957 0 + 0.996094 -1.44141 0 + 1.24805 -1.43945 0 + 0.863281 -1.03906 0 + 1.61133 -1.43945 0 + 1.90625 -1.43945 0 + 1.42383 -0.908203 0 + 0.09375 0.560547 0 + 0.347656 0.560547 0 + 0.605469 1.06836 0 + 0.193359 -1.43945 0 + 0.599609 -1.43945 0 + 0.972656 -1.43945 0 + 0.675781 -0.771484 0 + 1.01367 -0.792969 0 + 0.550781 -0.794922 0 + 1.37695 -0.767578 0 + 0.634766 -0.609375 0 + 0.855469 -0.509766 0 + 0.601563 -0.511719 0 + 1.39648 -0.626953 0 + 0.486328 -0.263672 0 + 0.693359 -0.263672 0 + 1.54688 -0.263672 0 + 0.71875 0.265625 0 + 0.824219 0.222656 0 + 0.554688 0.222656 0 + 1.32031 0.285156 0 + 1.0957 0.691406 0 + 0.992188 0.685547 0 + 0.511719 0.691406 0 + 1.04492 0.681641 0 + 0.664063 1.09766 0 + 0.601563 1.06055 0 + 0.546875 1.09766 0 + 1.41992 1.04297 0 + 0.433594 1.46484 0 + 0.669922 1.44141 0 + 0.605469 1.44141 0 + 1.58203 1.46875 0 + 0.339844 1.46875 0 + 1.06836 1.9668 0 + 1.08398 1.93945 0 + 1.10156 1.93164 0 + 0.898438 1.93164 0 + 0.925781 1.9707 0 + 0.683594 1.9668 0 + 1.5625 2.28125 0 + -0.332031 0.898438 0 + 0.441406 0.4375 0 + 0.365234 1.94922 0 + -0.441406 2.28125 0 + 0.4375 2.28125 0 + 0.0449219 -0.00390625 0 + 0.183594 0.611328 0 + 1.4043 -0.306641 0 + 1.51953 -0.236328 0 + 0.994141 -0.0078125 0 + 0.886719 -0.0507813 0 + 0.480469 0.427734 0 + 0.470703 0.326172 0 + 1 0.320313 0 + 1.00586 0.400391 0 + -0.529297 -0.255859 0 + -0.445313 -0.318359 0 + 0.0820313 -0.0410156 0 + -0.363281 -0.355469 0 + 0.152344 -0.0683594 0 + 0.365234 -0.355469 0 + 0.449219 -0.306641 0 + 0.820313 0.509766 0 + 0.751953 0.462891 0 + 0.679688 -0.0078125 0 + 0.677734 0.507813 0 + 0.617188 0.509766 0 + 0.333984 0.443359 0 + 0.294922 0.472656 0 + 0.388672 0.462891 0 + 0.191406 0.744141 0 + 0.148438 0.697266 0 + 0.173828 0.322266 0 + 0.806641 0.294922 0 + 0.808594 0.349609 0 + 0.273438 0.443359 0 + 0.865234 0.677734 0 + 0.148438 0.355469 0 + 0.134766 0.306641 0 + -0.226563 1.04492 0 + -0.246094 1 0 + 0.705078 0.744141 0 + 0.71875 1.04492 0 + 0.673828 1.04492 0 + 1.23828 1.00781 0 + 1.25195 0.978516 0 + 0.330078 1 0 + 0.291016 0.978516 0 + -0.822266 1.0332 0 + -0.828125 0.994141 0 + 0.220703 0.28125 0 + 0.822266 0.275391 0 + 1.82227 1.00391 0 + 1.82813 0.994141 0 + -1.44141 1.21484 0 + 2.44141 1.21484 0 + -0.673828 -0.355469 0 + -0.599609 -0.423828 0 + -0.179688 -0.0800781 0 + 0.474609 0.400391 0 + 0.617188 0.373047 0 + 0.722656 0.802734 0 + 0.623047 0.820313 0 + 1.62695 -0.410156 0 + 1.70508 -0.34375 0 + 1.74414 -0.300781 0 + 1.28125 0.00585938 0 + -0.744141 -0.300781 0 + 0.0683594 0.347656 0 + 0.722656 -0.0722656 0 + 0.644531 0.355469 0 + 0.560547 0.347656 0 + 1.00781 0.427734 0 + 0.427734 0.626953 0 + 0.644531 0.0527344 0 + 0.648438 0.414063 0 + 0.632813 0.710938 0 + 0.917969 0.757813 0 + 0.787109 0.90625 0 + 0.121094 0.841797 0 + 1.27734 1.03906 0 + 1.27344 1.06445 0 + 0.822266 1.27148 0 + 0.787109 1.27734 0 + -0.263672 1.06445 0 + -0.265625 1.08008 0 + 1.26563 1.08008 0 + 1.44141 1.37891 0 + 0.822266 0.0429688 0 + 0.638672 0.378906 0 + -0.441406 1.37891 0 + 0.0488281 -0.365234 0 + 0.400391 -0.0839844 0 + 0.470703 0.951172 0 + 0.580078 0.599609 0 + 1.00977 0.705078 0 + 0.642578 0.980469 0 + 0.921875 0.0175781 0 + 0.513672 0.078125 0 + 0.0976563 1.06836 0 + 1.30664 0.318359 0 + 1.30273 0.345703 0 + 0.509766 -0.306641 0 + 0.542969 -0.306641 0 + -0.306641 1.32227 0 + -0.300781 1.35938 0 + 1.30078 0.359375 0 + 1.44141 0.660156 0 + 0.259766 0.660156 0 + 0.498047 0.34375 0 + -0.441406 1.66016 0 + 0.371094 0.652344 0 + 0.398438 0.623047 0 + 0.599609 0.785156 0 + 0.570313 0.802734 0 + 0.628906 0.650391 0 + 0.423828 0.804688 0 + 0.605469 0.570313 0 + 0.576172 0.607422 0 + 0.845703 1.02539 0 + 0.820313 1.04688 0 + 0.25 1.04688 0 + 1.0332 1.31641 0 + -0.103516 1.31641 0 + -0.457031 0.416016 0 + -0.0957031 0.699219 0 + 0.408203 -0.46875 0 + 0.40625 -0.107422 0 + 1.51953 0.486328 0 + 1.14453 0.763672 0 + 0.392578 0.835938 0 + 0.542969 0.382813 0 + 0.630859 0.888672 0 + 0.757813 1.10156 0 + 0.755859 1.12891 0 + 0.59375 0.753906 0 + 0.560547 0.757813 0 + 0.251953 1.12695 0 + 0.25 1.14258 0 + 0.75 1.14258 0 + 0.921875 1.44141 0 + 0.59375 0.105469 0 + 0.408203 0.441406 0 + 0.078125 1.44141 0 + 0.369141 0.0253906 0 + 0.394531 -0.00585938 0 + 0.677734 0.158203 0 + 0.644531 0.177734 0 + 0.650391 0.0117188 0 + 0.367188 0.169922 0 + 0.322266 0.158203 0 + 0.640625 0.177734 0 + 0.597656 0.169922 0 + 0.359375 0.177734 0 + 0.380859 0.158203 0 + 0.601563 0.189453 0 + 0.585938 0.214844 0 + 0.367188 0.402344 0 + 0.119141 0.625 0 + 0.078125 0.601563 0 + 0.894531 0.585938 0 + 0.880859 0.625 0 + -0.105469 0.214844 0 + -0.078125 0.189453 0 + 0.246094 0.417969 0 + 1.11914 0.203125 0 + 0.753906 0.417969 0 + 0.710938 0.5625 0 + 0.861328 0.507813 0 + 0.902344 0.519531 0 + 1.03125 0.455078 0 + 0.585938 0.648438 0 + 0.746094 0.582031 0 + 0.943359 0.541016 0 + 0.505859 0.748047 0 + 0.625 0.662109 0 + 0.667969 0.667969 0 + 0.808594 0.599609 0 + 0.412109 0.763672 0 + 0.507813 0.779297 0 + 0.59375 0.769531 0 + 0.701172 0.673828 0 + 0.511719 0.830078 0 + 0.650391 0.779297 0 + 0.273438 0.726563 0 + 0.388672 0.792969 0 + 0.464844 0.916016 0 + 0.585938 0.830078 0 + 0.513672 1.2793 0 + 0.482422 1.13672 0 + 0.529297 1.13281 0 + 0.443359 1.0293 0 + 0.509766 1.01953 0 + 0.529297 0.921875 0 + 0.390625 1.02734 0 + 0.505859 1.38867 0 + 0.566406 1.25 0 + 0.626953 1.13672 0 + 0.560547 1.01563 0 + 0.572266 1.3457 0 + 0.679688 1.25586 0 + 0.691406 1.12695 0 + 0.625 1.42383 0 + 0.630859 1.35352 0 + 0.730469 1.26172 0 + 0.705078 1.37305 0 + 0.251953 0.742188 0 + 0.164063 0.621094 0 + 0.103516 0.587891 0 + 0.101563 0.425781 0 + 0.03125 0.433594 0 + 0.0507813 0.609375 0 + 0.0976563 0.708984 0 + 0.123047 0.705078 0 + 0.222656 0.761719 0 + 0.382813 0.839844 0 + 0.392578 0.935547 0 + 0.212891 0.777344 0 + 0.347656 0.853516 0 + 0.355469 0.935547 0 +endnode +node trimesh node06 + parent wsf10_s11_04 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.721569 0.721569 0.721569 + tilefade 1 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 0 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + center 41 58.5 721 + bitmap wtf_2_leaves + verts 1248 + 5.47 0.12 19.94 + 3.14 -2.98 21.02 + 7.32 -3.27 18.81 + 1.22 0.53 21.11 + -1.26 -2.63 20.25 + -5.43 -2.26 18.81 + -3.58 -5.65 19.75 + 4.93 -6.32 19.75 + -3.04 0.79 18.9 + 0.68 -5.99 18.71 + -0.19 -4.46 17.96 + 2.25 -3.54 19.85 + -0.73 -7.29 19.85 + 0.12 -5.32 17.96 + -2.15 -3.5 19.85 + 2.56 -4.41 19.85 + 2.4 -6.42 18.83 + 0.27 -2.14 18.83 + -2.55 -6.03 18.83 + 0.1 -4.24 20.41 + -2.51 -5.53 18.51 + 2.44 -5.92 18.51 + -0.42 -4.98 20.41 + 1.92 -6.66 18.51 + -0.22 -2.38 18.51 + 0.5 -5.06 20.41 + 0.7 -2.46 18.51 + -2.12 -6.35 18.51 + 3.64 -0.31 20.84 + -1.08 0.6 20.84 + 0.66 -4.05 20.84 + 1.67 -1.04 19.25 + 1.13 -3.87 21.15 + -0.61 0.78 21.15 + 0.78 -0.88 19.25 + 3.22 0.03 21.15 + 0.24 -3.71 21.15 + 1.1 -1.74 19.25 + -1.18 0.08 21.15 + 3.54 -0.83 21.15 + 3.38 -2.85 20.12 + 1.24 1.44 20.12 + -1.58 -2.46 20.12 + 1.07 -0.66 21.7 + -1.54 -1.96 19.81 + 3.41 -2.35 19.81 + 0.55 -1.4 21.7 + 2.89 -3.09 19.81 + 0.76 1.2 19.81 + 1.47 -1.48 21.7 + 1.67 1.12 19.81 + -1.15 -2.78 19.81 + 6.84 0.99 19.54 + 2.12 1.9 19.54 + 3.86 -2.75 19.54 + 4.87 0.26 17.96 + 4.33 -2.57 19.85 + 2.59 2.08 19.85 + 3.98 0.42 17.96 + 6.42 1.33 19.85 + 3.44 -2.41 19.85 + 4.3 -0.45 17.96 + 2.02 1.37 19.85 + 6.73 0.47 19.85 + 6.57 -1.55 18.83 + 4.44 2.73 18.83 + 1.62 -1.16 18.83 + 4.27 0.64 20.41 + 1.66 -0.66 18.51 + 6.61 -1.05 18.51 + 3.75 -0.1 20.41 + 6.09 -1.79 18.51 + 3.95 2.49 18.51 + 4.67 -0.18 20.41 + 4.87 2.41 18.51 + 2.05 -1.48 18.51 + 1.5 3.02 19.54 + -3.21 3.93 19.54 + -1.48 -0.72 19.54 + -0.47 2.29 17.96 + -1.01 -0.54 19.85 + -2.75 4.11 19.85 + -1.36 2.45 17.96 + 1.08 3.36 19.85 + -1.9 -0.38 19.85 + -1.04 1.59 17.96 + -3.32 3.41 19.85 + 1.4 2.5 19.85 + 1.24 0.48 18.83 + -0.9 4.77 18.83 + -3.72 0.87 18.83 + -1.07 2.67 20.41 + -3.68 1.37 18.51 + 1.27 0.98 18.51 + -1.59 1.93 20.41 + 0.75 0.24 18.51 + -1.38 4.52 18.51 + -0.67 1.85 20.41 + -0.47 4.45 18.51 + -3.28 0.55 18.51 + 9.59 -0.65 19.01 + 4.87 0.26 19.01 + 6.61 -4.39 19.01 + 7.61 -1.38 17.43 + 7.07 -4.21 19.32 + 5.33 0.44 19.32 + 6.72 -1.22 17.43 + 9.16 -0.31 19.32 + 6.18 -4.05 19.32 + 7.04 -2.08 17.43 + 4.76 -0.26 19.32 + 9.48 -1.17 19.32 + 9.32 -3.19 18.3 + 7.18 1.1 18.3 + 4.37 -2.8 18.3 + 7.01 -1 19.88 + 4.4 -2.3 17.98 + 9.35 -2.69 17.98 + 6.49 -1.74 19.88 + 8.83 -3.43 17.98 + 6.7 0.85 17.98 + 7.41 -1.82 19.88 + 7.61 0.78 17.98 + 4.8 -3.12 17.98 + -0.79 -1.15 19.01 + -5.51 -0.24 19.01 + -3.77 -4.89 19.01 + -2.76 -1.88 17.43 + -3.3 -4.71 19.32 + -5.04 -0.06 19.32 + -3.66 -1.72 17.43 + -1.22 -0.81 19.32 + -4.19 -4.55 19.32 + -3.34 -2.58 17.43 + -5.62 -0.76 19.32 + -0.9 -1.67 19.32 + -1.06 -3.69 18.3 + -3.19 0.6 18.3 + -6.01 -3.3 18.3 + -3.36 -1.5 19.88 + -5.98 -2.8 17.98 + -1.03 -3.19 17.98 + -3.88 -2.24 19.88 + -1.55 -3.93 17.98 + -3.68 0.36 17.98 + -2.97 -2.32 19.88 + -2.76 0.28 17.98 + -5.58 -3.62 17.98 + 0.39 3.11 21.23 + 3.48 0.78 22.3 + 3.77 4.96 20.1 + -0.02 -1.14 22.4 + 3.14 -3.62 21.54 + 2.77 -7.8 20.1 + 6.16 -5.94 21.04 + 6.83 2.57 21.04 + -0.28 -5.4 20.19 + 6.49 -1.69 20 + -3.34 -3 21.32 + -3 1.25 20.28 + 4.39 0.31 21.63 + 3.48 -4.41 21.63 + 8.13 -2.67 21.63 + 5.12 -1.66 20.04 + 7.95 -2.2 21.94 + 3.3 -3.94 21.94 + 4.96 -2.55 20.04 + 4.05 -0.11 21.94 + 7.79 -3.09 21.94 + 5.83 -2.24 20.04 + 4.01 -4.52 21.94 + 4.91 0.2 21.94 + 6.93 0.04 20.91 + 2.65 -2.09 20.91 + 6.54 -4.91 20.91 + 4.74 -2.26 22.49 + 6.04 -4.87 20.6 + 6.43 0.08 20.6 + 5.48 -2.78 22.49 + 7.17 -0.44 20.6 + 2.89 -2.58 20.6 + 5.56 -1.87 22.49 + 2.97 -1.66 20.6 + 6.86 -4.48 20.6 + 0.81 1.28 22.92 + -0.1 -3.44 22.92 + 4.56 -1.7 22.92 + 1.54 -0.69 21.34 + 4.38 -1.23 23.23 + -0.28 -2.97 23.23 + 1.39 -1.58 21.34 + 0.47 0.86 23.23 + 4.22 -2.12 23.23 + 2.25 -1.27 21.34 + 0.43 -3.54 23.23 + 1.34 1.17 23.23 + 3.35 1.01 22.2 + -0.93 -1.12 22.2 + 2.96 -3.94 22.2 + 1.17 -1.29 23.79 + 2.46 -3.9 21.89 + 2.85 1.05 21.89 + 1.91 -1.81 23.79 + 3.59 0.53 21.89 + -0.69 -1.61 21.89 + 1.99 -0.89 23.79 + -0.61 -0.69 21.89 + 3.28 -3.51 21.89 + -0.48 4.48 21.63 + -1.39 -0.24 21.63 + 3.26 1.5 21.63 + 0.25 2.51 20.04 + 3.08 1.97 21.94 + -1.57 0.23 21.94 + 0.09 1.62 20.04 + -0.82 4.06 21.94 + 2.92 1.08 21.94 + 0.95 1.93 20.04 + -0.87 -0.35 21.94 + 0.04 4.37 21.94 + 2.06 4.21 20.91 + -2.23 2.08 20.91 + 1.67 -0.74 20.91 + -0.13 1.91 22.49 + 1.17 -0.7 20.6 + 1.56 4.25 20.6 + 0.61 1.39 22.49 + 2.3 3.73 20.6 + -1.99 1.59 20.6 + 0.69 2.3 22.49 + -1.91 2.51 20.6 + 1.99 -0.31 20.6 + -2.52 -0.86 21.63 + -3.43 -5.58 21.63 + 1.23 -3.84 21.63 + -1.78 -2.83 20.04 + 1.05 -3.37 21.94 + -3.6 -5.11 21.94 + -1.94 -3.72 20.04 + -2.86 -1.28 21.94 + 0.89 -4.26 21.94 + -1.08 -3.4 20.04 + -2.9 -5.68 21.94 + -1.99 -0.97 21.94 + 0.02 -1.12 20.91 + -4.26 -3.26 20.91 + -0.37 -6.08 20.91 + -2.16 -3.43 22.49 + -0.87 -6.04 20.6 + -0.48 -1.09 20.6 + -1.42 -3.95 22.49 + 0.26 -1.61 20.6 + -4.02 -3.75 20.6 + -1.34 -3.03 22.49 + -3.94 -2.83 20.6 + -0.05 -5.65 20.6 + 2.14 6.67 20.57 + 1.23 1.95 20.57 + 5.89 3.69 20.57 + 2.87 4.69 18.99 + 5.71 4.15 20.88 + 1.05 2.41 20.88 + 2.72 3.8 18.99 + 1.8 6.24 20.88 + 5.55 3.26 20.88 + 3.58 4.12 18.99 + 1.76 1.84 20.88 + 2.67 6.56 20.88 + 4.68 6.4 19.85 + 0.4 4.26 19.85 + 4.29 1.45 19.85 + 2.5 4.09 21.44 + 3.79 1.48 19.54 + 4.18 6.43 19.54 + 3.24 3.57 21.44 + 4.92 5.91 19.54 + 0.64 3.78 19.54 + 3.32 4.49 21.44 + 0.72 4.69 19.54 + 4.61 1.88 19.54 + 0.61 -3.46 20.57 + -0.29 -8.18 20.57 + 4.36 -6.44 20.57 + 1.35 -5.43 18.99 + 4.18 -5.97 20.88 + -0.47 -7.71 20.88 + 1.19 -6.32 18.99 + 0.28 -3.88 20.88 + 4.02 -6.86 20.88 + 2.05 -6 18.99 + 0.23 -8.28 20.88 + 1.14 -3.56 20.88 + 3.16 -3.72 19.85 + -1.13 -5.86 19.85 + 2.77 -8.68 19.85 + 0.97 -6.03 21.44 + 2.27 -8.64 19.54 + 2.66 -3.69 19.54 + 1.71 -6.55 21.44 + 3.4 -4.21 19.54 + -0.89 -6.34 19.54 + 1.79 -5.63 21.44 + -0.81 -5.43 19.54 + 3.08 -8.25 19.54 + -0.64 3.85 20.03 + 3.61 3.51 19 + 2.67 -3.88 19.54 + -2.05 -2.97 19.54 + -0.31 -7.63 19.54 + 0.7 -4.61 17.96 + 0.16 -7.45 19.85 + -1.58 -2.79 19.85 + 3.96 1.35 16 + 1 4.56 17.22 + -0.18 -0.01 14.73 + 5.28 5.97 17.33 + 2.29 9.36 16.36 + 3.55 13.92 14.73 + -0.58 12.56 15.79 + -3.07 3.27 15.79 + 6.44 10.63 14.83 + -1.83 7.91 14.62 + 0.05 8.56 13.77 + 0.56 5.67 15.91 + -2.98 9.74 15.91 + -0.97 8.39 13.77 + 1.51 10.54 15.91 + -0.46 5.5 15.91 + -2.67 6.09 14.75 + 2.52 7.57 14.75 + -1.22 11.49 14.75 + 0.23 8.19 16.53 + -0.67 11.35 14.4 + -2.12 5.95 14.4 + -0.48 8.92 16.53 + -2.83 6.68 14.4 + 2.35 8.16 14.4 + -0.76 7.92 16.53 + 2.08 7.16 14.4 + -1.66 11.08 14.4 + 3.86 3.46 17.01 + 5.83 8.5 17.01 + 0.32 7.53 17.01 + 3.45 5.79 15.23 + 0.42 6.97 17.37 + 5.94 7.95 17.37 + 3.81 6.75 15.23 + 4.32 3.86 17.37 + 0.78 7.93 17.37 + 2.79 6.58 15.23 + 5.27 8.73 17.37 + 3.3 3.69 17.37 + 1.1 4.28 16.21 + 6.28 5.76 16.21 + 2.55 9.68 16.21 + 3.99 6.38 17.99 + 3.09 9.54 15.86 + 1.64 4.14 15.86 + 3.28 7.11 17.99 + 0.93 4.86 15.86 + 6.11 6.35 15.86 + 3 6.11 17.99 + 5.84 5.35 15.86 + 2.11 9.27 15.86 + 4.64 -0.35 15.56 + 6.61 4.69 15.56 + 1.1 3.72 15.56 + 4.23 1.98 13.77 + 1.2 3.16 15.91 + 6.72 4.14 15.91 + 4.59 2.94 13.77 + 5.1 0.05 15.91 + 1.56 4.12 15.91 + 3.57 2.76 13.77 + 6.05 4.92 15.91 + 4.08 -0.12 15.91 + 1.88 0.47 14.75 + 7.06 1.95 14.75 + 3.33 5.87 14.75 + 4.77 2.57 16.53 + 3.87 5.73 14.4 + 2.42 0.33 14.4 + 4.06 3.3 16.53 + 1.71 1.05 14.4 + 6.89 2.54 14.4 + 3.78 2.3 16.53 + 6.62 1.54 14.4 + 2.88 5.46 14.4 + 7.99 5.15 15.56 + 9.96 10.19 15.56 + 4.45 9.21 15.56 + 7.58 7.48 13.77 + 4.55 8.66 15.91 + 10.06 9.63 15.91 + 7.94 8.43 13.77 + 8.45 5.54 15.91 + 4.91 9.61 15.91 + 6.92 8.26 13.77 + 9.4 10.41 15.91 + 7.43 5.37 15.91 + 5.23 5.96 14.75 + 10.41 7.45 14.75 + 6.67 11.37 14.75 + 8.12 8.07 16.53 + 7.22 11.23 14.4 + 5.77 5.82 14.4 + 7.41 8.8 16.53 + 5.06 6.55 14.4 + 10.24 8.04 14.4 + 7.13 7.8 16.53 + 9.97 7.04 14.4 + 6.23 10.96 14.4 + 2.26 -3.06 14.96 + 4.24 1.99 14.96 + -1.28 1.01 14.96 + 1.85 -0.72 13.18 + -1.17 0.46 15.31 + 4.34 1.43 15.31 + 2.21 0.23 13.18 + 2.72 -2.66 15.31 + -0.81 1.41 15.31 + 1.19 0.06 13.18 + 3.68 2.21 15.31 + 1.7 -2.83 15.31 + -0.5 -2.24 14.15 + 4.68 -0.75 14.15 + 0.95 3.17 14.15 + 2.39 -0.13 15.93 + 1.49 3.03 13.8 + 0.05 -2.38 13.8 + 1.68 0.59 15.93 + -0.67 -1.65 13.8 + 4.52 -0.17 13.8 + 1.41 -0.4 15.93 + 4.24 -1.16 13.8 + 0.51 2.76 13.8 + 3.84 8.55 14.96 + 5.81 13.59 14.96 + 0.3 12.62 14.96 + 3.43 10.88 13.18 + 0.4 12.06 15.31 + 5.92 13.03 15.31 + 3.79 11.83 13.18 + 4.3 8.95 15.31 + 0.76 13.01 15.31 + 2.77 11.66 13.18 + 5.25 13.81 15.31 + 3.28 8.77 15.31 + 1.08 9.36 14.15 + 6.26 10.85 14.15 + 2.53 14.77 14.15 + 3.97 11.47 15.93 + 3.07 14.63 13.8 + 1.62 9.22 13.8 + 3.26 12.2 15.93 + 0.91 9.95 13.8 + 6.09 11.44 13.8 + 2.98 11.2 15.93 + 5.82 10.44 13.8 + 2.09 14.36 13.8 + 8.31 6.37 17.45 + 5.09 3.41 18.67 + 9.67 2.23 16.18 + 3.69 7.69 18.78 + 0.29 4.7 17.81 + -4.26 5.96 16.18 + -2.9 1.83 17.24 + 6.39 -0.66 17.24 + -0.98 8.86 16.29 + 1.74 0.58 16.07 + 2.3 11.75 17.56 + 6.95 10.5 16.39 + 4.39 2.51 17.9 + -0.65 4.48 17.9 + 0.32 -1.03 17.9 + 2.05 2.1 16.12 + 0.87 -0.93 18.26 + -0.1 4.58 18.26 + 1.1 2.46 16.12 + 3.99 2.97 18.26 + -0.08 -0.57 18.26 + 1.27 1.44 16.12 + -0.88 3.92 18.26 + 4.16 1.95 18.26 + 3.57 -0.25 17.1 + 2.08 4.93 17.1 + -1.84 1.19 17.1 + 1.46 2.64 18.88 + -1.7 1.74 16.75 + 3.71 0.29 16.75 + 0.74 1.93 18.88 + 2.98 -0.42 16.75 + 1.5 4.76 16.75 + 1.73 1.65 18.88 + 2.49 4.49 16.75 + -1.43 0.75 16.75 + 6.2 6.27 19.36 + 1.16 8.24 19.36 + 2.13 2.73 19.36 + 3.86 5.86 17.58 + 2.68 2.84 19.71 + 1.71 8.35 19.71 + 2.91 6.22 17.58 + 5.8 6.73 19.71 + 1.73 3.19 19.71 + 3.08 5.2 17.58 + 0.93 7.69 19.71 + 5.97 5.71 19.71 + 5.38 3.51 18.55 + 3.89 8.69 18.55 + -0.03 4.96 18.55 + 3.28 6.4 20.34 + 0.11 5.5 18.2 + 5.52 4.06 18.2 + 2.55 5.69 20.34 + 4.79 3.34 18.2 + 3.31 8.53 18.2 + 3.55 5.42 20.34 + 4.3 8.25 18.2 + 0.38 4.52 18.2 + 10.01 7.05 17.9 + 4.97 9.02 17.9 + 5.94 3.51 17.9 + 7.67 6.64 16.12 + 6.49 3.62 18.26 + 5.52 9.13 18.26 + 6.72 7 16.12 + 9.61 7.51 18.26 + 5.54 3.97 18.26 + 6.89 5.98 16.12 + 4.74 8.46 18.26 + 9.78 6.49 18.26 + 9.19 4.29 17.1 + 7.7 9.47 17.1 + 3.78 5.74 17.1 + 7.09 7.18 18.88 + 3.93 6.28 16.75 + 9.33 4.83 16.75 + 6.36 6.47 18.88 + 8.6 4.12 16.75 + 7.12 9.3 16.75 + 7.36 6.2 18.88 + 8.12 9.03 16.75 + 4.2 5.3 16.75 + 4.51 10.4 17.9 + -0.53 12.37 17.9 + 0.44 6.86 17.9 + 2.18 9.99 16.12 + 1 6.96 18.26 + 0.02 12.48 18.26 + 1.22 10.35 16.12 + 4.11 10.86 18.26 + 0.04 7.32 18.26 + 1.39 9.33 16.12 + -0.76 11.81 18.26 + 4.28 9.84 18.26 + 3.69 7.64 17.1 + 2.21 12.82 17.1 + -1.71 9.09 17.1 + 1.59 10.53 18.88 + -1.57 9.63 16.75 + 3.83 8.18 16.75 + 0.86 9.82 18.88 + 3.11 7.47 16.75 + 1.62 12.65 16.75 + 1.86 9.54 18.88 + 2.62 12.38 16.75 + -1.3 8.64 16.75 + 11.89 3.69 16.71 + 6.85 5.67 16.71 + 7.82 0.15 16.71 + 9.55 3.28 14.93 + 8.37 0.26 17.07 + 7.4 5.77 17.07 + 8.6 3.64 14.93 + 11.49 4.15 17.07 + 7.42 0.62 17.07 + 8.77 2.62 14.93 + 6.62 5.11 17.07 + 11.66 3.13 17.07 + 11.07 0.93 15.91 + 9.59 6.11 15.91 + 5.67 2.38 15.91 + 8.97 3.82 17.69 + 5.81 2.92 15.56 + 11.21 1.48 15.56 + 8.24 3.11 17.69 + 10.48 0.76 15.56 + 9 5.95 15.56 + 9.24 2.84 17.69 + 10 5.67 15.56 + 6.08 1.94 15.56 + 0.99 7.46 16.71 + -4.05 9.44 16.71 + -3.08 3.92 16.71 + -1.35 7.06 14.93 + -2.53 4.03 17.07 + -3.5 9.54 17.07 + -2.3 7.41 14.93 + 0.59 7.92 17.07 + -3.48 4.39 17.07 + -2.13 6.39 14.93 + -4.28 8.88 17.07 + 0.76 6.9 17.07 + 0.17 4.7 15.91 + -1.32 9.88 15.91 + -5.24 6.15 15.91 + -1.93 7.6 17.69 + -5.09 6.7 15.56 + 0.31 5.25 15.56 + -2.66 6.88 17.69 + -0.42 4.53 15.56 + -1.9 9.72 15.56 + -1.66 6.61 17.69 + -0.9 9.44 15.56 + -4.82 5.71 15.56 + 9.34 7.35 16.11 + 8.09 2.71 14.94 + 0.1 5.27 15.56 + 2.07 10.31 15.56 + -3.44 9.34 15.56 + -0.31 7.61 13.77 + -3.34 8.78 15.91 + 2.17 9.76 15.91 + 2.32 -1.18 1.52 + 1.13 -2.18 1.95 + 2.73 -2.67 1.07 + 0.71 -0.63 1.99 + -0.55 -1.64 1.65 + -2.14 -1.11 1.07 + -1.73 -2.6 1.45 + 1.52 -3.64 1.45 + -0.92 -0.14 1.1 + -0.1 -3.12 1.03 + -0.3 -2.44 0.73 + 0.73 -2.31 1.49 + -0.77 -3.5 1.49 + -0.26 -2.81 0.73 + -0.98 -1.89 1.49 + 0.77 -2.68 1.49 + 0.53 -3.45 1.08 + 0.09 -1.59 1.08 + -1.36 -2.84 1.08 + -0.17 -2.39 1.71 + -1.3 -2.65 0.95 + 0.59 -3.26 0.95 + -0.44 -2.62 1.71 + 0.32 -3.5 0.95 + -0.12 -1.64 0.95 + -0.09 -2.74 1.71 + 0.23 -1.75 0.95 + -1.22 -3.01 0.95 + 1.57 -1.18 1.88 + -0.18 -0.4 1.88 + 0.07 -2.37 1.88 + 0.74 -1.29 1.25 + 0.27 -2.34 2.01 + 0.02 -0.37 2.01 + 0.41 -1.14 1.25 + 1.44 -1.01 2.01 + -0.07 -2.2 2.01 + 0.45 -1.51 1.25 + -0.27 -0.59 2.01 + 1.48 -1.38 2.01 + 1.23 -2.15 1.59 + 0.8 -0.28 1.59 + -0.65 -1.54 1.59 + 0.54 -1.08 2.23 + -0.6 -1.35 1.47 + 1.29 -1.96 1.47 + 0.27 -1.32 2.23 + 1.03 -2.2 1.47 + 0.59 -0.33 1.47 + 0.62 -1.44 2.23 + 0.94 -0.45 1.47 + -0.52 -1.7 1.47 + 2.94 -0.97 1.36 + 1.18 -0.19 1.36 + 1.43 -2.15 1.36 + 2.1 -1.08 0.73 + 1.63 -2.13 1.49 + 1.38 -0.16 1.49 + 1.77 -0.93 0.73 + 2.8 -0.8 1.49 + 1.3 -1.98 1.49 + 1.81 -1.3 0.73 + 1.09 -0.38 1.49 + 2.84 -1.17 1.49 + 2.6 -1.93 1.08 + 2.16 -0.07 1.08 + 0.71 -1.33 1.08 + 1.9 -0.87 1.71 + 0.77 -1.14 0.95 + 2.66 -1.75 0.95 + 1.63 -1.11 1.71 + 2.39 -1.98 0.95 + 1.95 -0.12 0.95 + 1.98 -1.23 1.71 + 2.3 -0.24 0.95 + 0.85 -1.49 0.95 + 1.04 0.31 1.36 + -0.71 1.1 1.36 + -0.46 -0.87 1.36 + 0.21 0.21 0.73 + -0.26 -0.85 1.49 + -0.51 1.12 1.49 + -0.12 0.35 0.73 + 0.91 0.48 1.49 + -0.59 -0.7 1.49 + -0.08 -0.01 0.73 + -0.8 0.9 1.49 + 0.96 0.12 1.49 + 0.71 -0.65 1.08 + 0.27 1.21 1.08 + -1.18 -0.05 1.08 + 0.01 0.41 1.71 + -1.12 0.14 0.95 + 0.77 -0.46 0.95 + -0.26 0.17 1.71 + 0.5 -0.7 0.95 + 0.06 1.16 0.95 + 0.09 0.05 1.71 + 0.41 1.05 0.95 + -1.04 -0.21 0.95 + 3.85 -1.86 1.15 + 2.1 -1.07 1.15 + 2.35 -3.04 1.15 + 3.02 -1.97 0.52 + 2.55 -3.02 1.27 + 2.3 -1.05 1.27 + 2.69 -1.82 0.52 + 3.72 -1.69 1.27 + 2.22 -2.87 1.27 + 2.73 -2.19 0.52 + 2.01 -1.27 1.27 + 3.76 -2.06 1.27 + 3.52 -2.82 0.86 + 3.08 -0.96 0.86 + 1.62 -2.22 0.86 + 2.82 -1.76 1.49 + 1.68 -2.03 0.74 + 3.58 -2.63 0.74 + 2.55 -2 1.49 + 3.3 -2.87 0.74 + 2.87 -1.01 0.74 + 2.9 -2.12 1.49 + 3.22 -1.13 0.74 + 1.76 -2.38 0.74 + -0.23 -1.1 1.15 + -1.98 -0.32 1.15 + -1.74 -2.28 1.15 + -1.06 -1.21 0.52 + -1.54 -2.26 1.27 + -1.78 -0.29 1.27 + -1.4 -1.06 0.52 + -0.37 -0.93 1.27 + -1.87 -2.12 1.27 + -1.35 -1.43 0.52 + -2.07 -0.51 1.27 + -0.32 -1.3 1.27 + -0.57 -2.06 0.86 + -1.01 -0.2 0.86 + -2.46 -1.46 0.86 + -1.26 -1 1.49 + -2.4 -1.27 0.74 + -0.51 -1.88 0.74 + -1.54 -1.24 1.49 + -0.78 -2.11 0.74 + -1.22 -0.25 0.74 + -1.19 -1.36 1.49 + -0.87 -0.37 0.74 + -2.32 -1.62 0.74 + 0.62 0.45 2.03 + 1.61 -0.75 2.47 + 2.11 0.86 1.58 + 0.07 -1.17 2.51 + 1.07 -2.42 2.16 + 0.55 -4.02 1.58 + 2.03 -3.6 1.96 + 3.08 -0.36 1.96 + -0.43 -2.8 1.62 + 2.56 -1.98 1.54 + -1.39 -1.59 2.07 + -0.87 0.03 1.66 + 1.92 -1.01 2.19 + 1.13 -2.76 2.19 + 3.1 -2.51 2.19 + 2.02 -1.85 1.56 + 3.08 -2.32 2.32 + 1.11 -2.57 2.32 + 1.88 -2.18 1.56 + 1.75 -1.14 2.32 + 2.93 -2.65 2.32 + 2.24 -2.13 1.56 + 1.33 -2.85 2.32 + 2.11 -1.1 2.32 + 2.88 -1.35 1.91 + 1.02 -1.79 1.91 + 2.28 -3.24 1.91 + 1.82 -2.05 2.54 + 2.09 -3.18 1.79 + 2.69 -1.29 1.79 + 2.06 -2.31 2.54 + 2.93 -1.56 1.79 + 1.07 -2 1.79 + 2.18 -1.97 2.54 + 1.18 -1.65 1.79 + 2.44 -3.1 1.79 + 0.62 -0.3 2.71 + -0.17 -2.06 2.71 + 1.8 -1.81 2.71 + 0.72 -1.14 2.08 + 1.77 -1.61 2.84 + -0.2 -1.86 2.84 + 0.58 -1.47 2.08 + 0.45 -0.44 2.84 + 1.63 -1.94 2.84 + 0.94 -1.43 2.08 + 0.02 -2.15 2.84 + 0.81 -0.39 2.84 + 1.58 -0.64 2.42 + -0.28 -1.08 2.42 + 0.97 -2.53 2.42 + 0.52 -1.34 3.06 + 0.78 -2.47 2.3 + 1.39 -0.58 2.3 + 0.76 -1.61 3.06 + 1.63 -0.85 2.3 + -0.23 -1.29 2.3 + 0.87 -1.26 3.06 + -0.12 -0.94 2.3 + 1.14 -2.4 2.3 + 0.41 1.06 2.19 + -0.38 -0.69 2.19 + 1.59 -0.44 2.19 + 0.51 0.22 1.56 + 1.56 -0.25 2.32 + -0.41 -0.5 2.32 + 0.37 -0.11 1.56 + 0.24 0.93 2.32 + 1.42 -0.58 2.32 + 0.73 -0.06 1.56 + -0.18 -0.78 2.32 + 0.6 0.97 2.32 + 1.37 0.72 1.91 + -0.49 0.28 1.91 + 0.76 -1.17 1.91 + 0.31 0.03 2.54 + 0.57 -1.11 1.79 + 1.18 0.78 1.79 + 0.55 -0.24 2.54 + 1.42 0.51 1.79 + -0.44 0.07 1.79 + 0.66 0.11 2.54 + -0.33 0.42 1.79 + 0.93 -1.03 1.79 + -0.88 -0.83 2.19 + -1.66 -2.58 2.19 + 0.31 -2.33 2.19 + -0.77 -1.66 1.56 + 0.28 -2.13 2.32 + -1.69 -2.39 2.32 + -0.92 -2 1.56 + -1.05 -0.97 2.32 + 0.14 -2.47 2.32 + -0.55 -1.96 1.56 + -1.47 -2.67 2.32 + -0.68 -0.92 2.32 + 0.09 -1.17 1.91 + -1.77 -1.6 1.91 + -0.52 -3.06 1.91 + -0.97 -1.86 2.54 + -0.71 -3 1.79 + -0.1 -1.11 1.79 + -0.73 -2.13 2.54 + 0.14 -1.38 1.79 + -1.72 -1.82 1.79 + -0.62 -1.79 2.54 + -1.61 -1.47 1.79 + -0.35 -2.92 1.79 + 1.63 1.67 1.77 + 0.84 -0.08 1.77 + 2.81 0.16 1.77 + 1.73 0.83 1.14 + 2.78 0.36 1.9 + 0.81 0.11 1.9 + 1.59 0.5 1.14 + 1.46 1.53 1.9 + 2.64 0.03 1.9 + 1.95 0.54 1.14 + 1.03 -0.17 1.9 + 1.82 1.58 1.9 + 2.59 1.33 1.49 + 0.73 0.89 1.49 + 1.99 -0.56 1.49 + 1.53 0.64 2.12 + 1.8 -0.5 1.36 + 2.4 1.39 1.36 + 1.77 0.36 2.12 + 2.64 1.12 1.36 + 0.78 0.68 1.36 + 1.88 0.71 2.12 + 0.89 1.03 1.36 + 2.15 -0.42 1.36 + 0.1 -2.13 1.77 + -0.68 -3.88 1.77 + 1.29 -3.63 1.77 + 0.21 -2.97 1.14 + 1.26 -3.44 1.9 + -0.71 -3.68 1.9 + 0.07 -3.3 1.14 + -0.06 -2.26 1.9 + 1.12 -3.77 1.9 + 0.43 -3.25 1.14 + -0.49 -3.97 1.9 + 0.3 -2.22 1.9 + 1.07 -2.47 1.49 + -0.79 -2.91 1.49 + 0.46 -4.36 1.49 + 0 -3.16 2.12 + 0.27 -4.3 1.36 + 0.88 -2.41 1.36 + 0.25 -3.43 2.12 + 1.12 -2.68 1.36 + -0.75 -3.11 1.36 + 0.36 -3.08 2.12 + -0.63 -2.76 1.36 + 0.62 -4.22 1.36 + 0.29 0.83 1.56 + 1.91 0.3 1.14 + 0.87 -2.48 1.36 + -0.89 -1.7 1.36 + -0.64 -3.67 1.36 + 0.03 -2.59 0.73 + -0.44 -3.64 1.49 + -0.69 -1.67 1.49 + 5.6 -7.14 14.21 + 2.88 -8.53 15.06 + 5.74 -10.18 13.32 + 2.73 -5.39 15.14 + -0.11 -6.77 14.46 + -2.95 -5.07 13.32 + -2.8 -8.11 14.06 + 2.99 -11.52 14.06 + -0.19 -3.73 13.39 + 0.09 -9.81 13.25 + 0.01 -8.43 12.65 + 2.05 -8.62 14.14 + -1.35 -10.25 14.14 + -0.07 -9.15 12.65 + -1.05 -7.07 14.14 + 1.98 -9.34 14.14 + 1.17 -10.72 13.33 + 1.13 -6.95 13.33 + -2.2 -8.73 13.33 + 0.29 -8.37 14.58 + -2.01 -8.39 13.09 + 1.36 -10.37 13.09 + -0.33 -8.72 14.58 + 0.74 -10.72 13.09 + 0.71 -6.95 13.09 + 0.29 -9.09 14.58 + 1.33 -7.32 13.09 + -2.01 -9.1 13.09 + 4.16 -6.81 14.92 + 1.13 -4.54 14.92 + 0.75 -8.44 14.92 + 2.51 -6.65 13.67 + 1.15 -8.47 15.16 + 1.52 -4.58 15.16 + 1.93 -6.23 13.67 + 3.97 -6.43 15.16 + 0.57 -8.05 15.16 + 1.86 -6.95 13.67 + 0.87 -4.88 15.16 + 3.9 -7.15 15.16 + 3.09 -8.52 14.35 + 3.06 -4.75 14.35 + -0.28 -6.53 14.35 + 2.21 -6.18 15.6 + -0.08 -6.19 14.11 + 3.29 -8.18 14.11 + 1.59 -6.52 15.6 + 2.66 -8.52 14.11 + 2.63 -4.75 14.11 + 2.21 -6.89 15.6 + 3.25 -5.13 14.11 + -0.09 -6.91 14.11 + 6.87 -7 13.9 + 3.84 -4.73 13.9 + 3.47 -8.62 13.9 + 5.22 -6.84 12.65 + 3.86 -8.66 14.14 + 4.23 -4.76 14.14 + 4.64 -6.42 12.65 + 6.68 -6.61 14.14 + 3.28 -8.24 14.14 + 4.57 -7.14 12.65 + 3.58 -5.06 14.14 + 6.61 -7.33 14.14 + 5.8 -8.71 13.33 + 5.77 -4.94 13.33 + 2.43 -6.72 13.33 + 4.92 -6.36 14.58 + 2.63 -6.38 13.09 + 6 -8.37 13.09 + 4.3 -6.71 14.58 + 5.37 -8.71 13.09 + 5.34 -4.94 13.09 + 4.92 -7.08 14.58 + 5.96 -5.31 13.09 + 2.63 -7.1 13.09 + 3.79 -3.72 13.9 + 0.76 -1.45 13.9 + 0.39 -5.34 13.9 + 2.14 -3.56 12.65 + 0.78 -5.37 14.14 + 1.16 -1.48 14.14 + 1.57 -3.14 12.65 + 3.61 -3.33 14.14 + 0.21 -4.95 14.14 + 1.49 -3.86 12.65 + 0.51 -1.78 14.14 + 3.53 -4.05 14.14 + 2.72 -5.42 13.33 + 2.69 -1.66 13.33 + -0.65 -3.44 13.33 + 1.85 -3.08 14.58 + -0.45 -3.1 13.09 + 2.92 -5.08 13.09 + 1.22 -3.43 14.58 + 2.3 -5.43 13.09 + 2.27 -1.66 13.09 + 1.85 -3.8 14.58 + 2.89 -2.03 13.09 + -0.45 -3.81 13.09 + 8.24 -9.11 13.48 + 5.22 -6.83 13.48 + 4.84 -10.73 13.48 + 6.6 -8.94 12.24 + 5.24 -10.76 13.73 + 5.61 -6.87 13.73 + 6.02 -8.52 12.24 + 8.06 -8.72 13.73 + 4.66 -10.34 13.73 + 5.95 -9.24 12.24 + 4.96 -7.17 13.73 + 7.99 -9.44 13.73 + 7.18 -10.81 12.92 + 7.15 -7.04 12.92 + 3.81 -8.83 12.92 + 6.3 -8.47 14.16 + 4.01 -8.49 12.67 + 7.38 -10.47 12.67 + 5.68 -8.81 14.16 + 6.75 -10.82 12.67 + 6.72 -7.05 12.67 + 6.3 -9.19 14.16 + 7.34 -7.42 12.67 + 4 -9.2 12.67 + 0.73 -5.88 13.48 + -2.3 -3.6 13.48 + -2.68 -7.5 13.48 + -0.92 -5.71 12.24 + -2.28 -7.53 13.73 + -1.91 -3.64 13.73 + -1.5 -5.29 12.24 + 0.54 -5.49 13.73 + -2.86 -7.11 13.73 + -1.57 -6.01 12.24 + -2.56 -3.94 13.73 + 0.47 -6.21 13.73 + -0.34 -7.58 12.92 + -0.37 -3.81 12.92 + -3.71 -5.6 12.92 + -1.22 -5.24 14.16 + -3.51 -5.26 12.67 + -0.14 -7.24 12.67 + -1.84 -5.58 14.16 + -0.77 -7.59 12.67 + -0.8 -3.82 12.67 + -1.22 -5.96 14.16 + -0.18 -4.19 12.67 + -3.52 -5.97 12.67 + 3.03 -3.27 15.23 + 4.42 -5.99 16.07 + 6.07 -3.13 14.33 + 1.27 -6.14 16.15 + 2.65 -8.98 15.47 + 0.95 -11.81 14.33 + 3.99 -11.67 15.08 + 7.4 -5.88 15.08 + -0.38 -9.06 14.41 + 5.7 -8.78 14.26 + -1.72 -6.31 15.3 + -0.01 -3.42 14.48 + 4.9 -6.64 15.54 + 2.62 -9.66 15.54 + 6.52 -10.04 15.54 + 4.73 -8.28 14.29 + 6.55 -9.64 15.78 + 2.66 -9.27 15.78 + 4.31 -8.86 14.29 + 4.51 -6.82 15.78 + 6.13 -10.22 15.78 + 5.03 -8.93 14.29 + 2.96 -9.92 15.78 + 5.23 -6.89 15.78 + 6.6 -7.7 14.97 + 2.83 -7.73 14.97 + 4.62 -11.07 14.97 + 4.26 -8.58 16.22 + 4.28 -10.88 14.73 + 6.26 -7.51 14.73 + 4.6 -9.2 16.22 + 6.6 -8.13 14.73 + 2.84 -8.16 14.73 + 4.98 -8.58 16.22 + 3.21 -7.54 14.73 + 4.99 -10.88 14.73 + 2.7 -4.71 16.56 + 0.43 -7.74 16.56 + 4.32 -8.11 16.56 + 2.54 -6.36 15.31 + 4.36 -7.72 16.8 + 0.46 -7.35 16.8 + 2.12 -6.94 15.31 + 2.31 -4.9 16.8 + 3.94 -8.3 16.8 + 2.84 -7.01 15.31 + 0.76 -8 16.8 + 3.03 -4.97 16.8 + 4.41 -5.78 15.99 + 0.64 -5.81 15.99 + 2.42 -9.15 15.99 + 2.06 -6.66 17.24 + 2.08 -8.95 15.75 + 4.06 -5.58 15.75 + 2.41 -7.28 17.24 + 4.41 -6.21 15.75 + 0.64 -6.24 15.75 + 2.78 -6.66 17.24 + 1.01 -5.62 15.75 + 2.79 -8.96 15.75 + 2.89 -2 15.54 + 0.61 -5.03 15.54 + 4.51 -5.4 15.54 + 2.72 -3.65 14.29 + 4.54 -5.01 15.78 + 0.65 -4.63 15.78 + 2.3 -4.23 14.29 + 2.5 -2.18 15.78 + 4.12 -5.59 15.78 + 3.02 -4.3 14.29 + 0.95 -5.28 15.78 + 3.22 -2.26 15.78 + 4.59 -3.07 14.97 + 0.82 -3.1 14.97 + 2.61 -6.44 14.97 + 2.25 -3.94 16.22 + 2.27 -6.24 14.73 + 4.25 -2.87 14.73 + 2.59 -4.57 16.22 + 4.6 -3.49 14.73 + 0.83 -3.53 14.73 + 2.97 -3.95 16.22 + 1.2 -2.91 14.73 + 2.98 -6.24 14.73 + -0.4 -5.08 15.54 + -2.67 -8.1 15.54 + 1.23 -8.48 15.54 + -0.56 -6.73 14.29 + 1.26 -8.09 15.78 + -2.63 -7.71 15.78 + -0.98 -7.3 14.29 + -0.78 -5.26 15.78 + 0.84 -8.66 15.78 + -0.26 -7.38 14.29 + -2.33 -8.36 15.78 + -0.06 -5.33 15.78 + 1.31 -6.14 14.97 + -2.46 -6.18 14.97 + -0.67 -9.51 14.97 + -1.03 -7.02 16.22 + -1.02 -9.32 14.73 + 0.97 -5.95 14.73 + -0.69 -7.64 16.22 + 1.31 -6.57 14.73 + -2.45 -6.6 14.73 + -0.32 -7.02 16.22 + -2.08 -5.98 14.73 + -0.3 -9.32 14.73 + 5.5 -1.36 14.71 + 3.23 -4.39 14.71 + 7.12 -4.76 14.71 + 5.34 -3.01 13.46 + 7.16 -4.37 14.95 + 3.26 -3.99 14.95 + 4.92 -3.59 13.46 + 5.11 -1.54 14.95 + 6.74 -4.95 14.95 + 5.64 -3.66 13.46 + 3.56 -4.64 14.95 + 5.83 -1.62 14.95 + 7.21 -2.43 14.14 + 3.44 -2.46 14.14 + 5.22 -5.8 14.14 + 4.86 -3.3 15.39 + 4.88 -5.6 13.9 + 6.86 -2.23 13.9 + 5.21 -3.93 15.39 + 7.21 -2.85 13.9 + 3.44 -2.89 13.9 + 5.58 -3.31 15.39 + 3.81 -2.27 13.9 + 5.6 -5.6 13.9 + 0.92 -8 14.71 + -1.35 -11.03 14.71 + 2.55 -11.4 14.71 + 0.76 -9.65 13.46 + 2.58 -11.01 14.95 + -1.31 -10.63 14.95 + 0.34 -10.22 13.46 + 0.54 -8.18 14.95 + 2.16 -11.58 14.95 + 1.06 -10.3 13.46 + -1.01 -11.28 14.95 + 1.26 -8.26 14.95 + 2.63 -9.07 14.14 + -1.14 -9.1 14.14 + 0.64 -12.44 14.14 + 0.29 -9.94 15.39 + 0.3 -12.24 13.9 + 2.29 -8.87 13.9 + 0.63 -10.57 15.39 + 2.63 -9.49 13.9 + -1.14 -9.52 13.9 + 1 -9.94 15.39 + -0.76 -8.9 13.9 + 1.02 -12.24 13.9 + 2.56 -2.4 14.28 + 5.45 -4.1 13.47 + 2.23 -9.01 13.9 + -0.79 -6.74 13.9 + -1.17 -10.63 13.9 + 0.58 -8.85 12.65 + -0.78 -10.67 14.14 + -0.4 -6.77 14.14 + faces 488 + 0 1 2 1 0 1 2 1 + 3 1 0 1 2 1 0 1 + 4 1 3 1 0 1 2 1 + 5 6 4 1 2 1 0 1 + 1 7 2 1 0 1 2 1 + 8 4 3 1 0 1 2 1 + 4 9 1 1 0 1 2 1 + 1 9 7 1 0 1 2 1 + 8 5 4 1 2 1 0 1 + 10 11 12 1 0 2 3 1 + 13 14 15 1 2 0 1 1 + 16 17 18 1 1 2 0 1 + 19 20 21 1 0 3 2 1 + 22 23 24 1 0 3 2 1 + 25 26 27 1 2 1 0 1 + 28 29 30 1 2 0 1 1 + 31 32 33 1 0 2 3 1 + 34 35 36 1 0 2 3 1 + 37 38 39 1 2 0 1 1 + 40 41 42 1 1 2 0 1 + 43 44 45 1 0 3 2 1 + 46 47 48 1 0 3 2 1 + 49 50 51 1 2 1 0 1 + 52 53 54 1 2 0 1 1 + 55 56 57 1 0 2 3 1 + 58 59 60 1 0 2 3 1 + 61 62 63 1 2 0 1 1 + 64 65 66 1 1 2 0 1 + 67 68 69 1 0 3 2 1 + 70 71 72 1 0 3 2 1 + 73 74 75 1 2 1 0 1 + 76 77 78 1 2 0 1 1 + 79 80 81 1 0 2 3 1 + 82 83 84 1 0 2 3 1 + 85 86 87 1 2 0 1 1 + 88 89 90 1 1 2 0 1 + 91 92 93 1 0 3 2 1 + 94 95 96 1 0 3 2 1 + 97 98 99 1 2 1 0 1 + 100 101 102 1 2 0 1 1 + 103 104 105 1 0 2 3 1 + 106 107 108 1 0 2 3 1 + 109 110 111 1 2 0 1 1 + 112 113 114 1 1 2 0 1 + 115 116 117 1 0 3 2 1 + 118 119 120 1 0 3 2 1 + 121 122 123 1 2 1 0 1 + 124 125 126 1 2 0 1 1 + 127 128 129 1 0 2 3 1 + 130 131 132 1 0 2 3 1 + 133 134 135 1 2 0 1 1 + 136 137 138 1 1 2 0 1 + 139 140 141 1 0 3 2 1 + 142 143 144 1 0 3 2 1 + 145 146 147 1 2 1 0 1 + 148 149 150 1 0 1 2 1 + 151 149 148 1 2 1 0 1 + 152 149 151 1 0 1 2 1 + 153 154 152 1 2 1 0 1 + 149 155 150 1 0 1 2 1 + 156 152 151 1 0 1 2 1 + 152 157 149 1 0 1 2 1 + 149 157 155 1 0 1 2 1 + 156 153 152 1 2 1 0 1 + 158 151 159 1 0 1 2 1 + 159 151 148 1 2 1 0 1 + 158 156 151 1 0 1 2 1 + 152 154 157 1 2 1 0 1 + 160 161 162 1 2 0 1 1 + 163 164 165 1 0 2 3 1 + 166 167 168 1 0 2 3 1 + 169 170 171 1 2 0 1 1 + 172 173 174 1 1 2 0 1 + 175 176 177 1 0 3 2 1 + 178 179 180 1 0 3 2 1 + 181 182 183 1 2 1 0 1 + 184 185 186 1 2 0 1 1 + 187 188 189 1 0 2 3 1 + 190 191 192 1 0 2 3 1 + 193 194 195 1 2 0 1 1 + 196 197 198 1 1 2 0 1 + 199 200 201 1 0 3 2 1 + 202 203 204 1 0 3 2 1 + 205 206 207 1 2 1 0 1 + 208 209 210 1 2 0 1 1 + 211 212 213 1 0 2 3 1 + 214 215 216 1 0 2 3 1 + 217 218 219 1 2 0 1 1 + 220 221 222 1 1 2 0 1 + 223 224 225 1 0 3 2 1 + 226 227 228 1 0 3 2 1 + 229 230 231 1 2 1 0 1 + 232 233 234 1 2 0 1 1 + 235 236 237 1 0 2 3 1 + 238 239 240 1 0 2 3 1 + 241 242 243 1 2 0 1 1 + 244 245 246 1 1 2 0 1 + 247 248 249 1 0 3 2 1 + 250 251 252 1 0 3 2 1 + 253 254 255 1 2 1 0 1 + 256 257 258 1 2 0 1 1 + 259 260 261 1 0 2 3 1 + 262 263 264 1 0 2 3 1 + 265 266 267 1 2 0 1 1 + 268 269 270 1 1 2 0 1 + 271 272 273 1 0 3 2 1 + 274 275 276 1 0 3 2 1 + 277 278 279 1 2 1 0 1 + 280 281 282 1 2 0 1 1 + 283 284 285 1 0 2 3 1 + 286 287 288 1 0 2 3 1 + 289 290 291 1 2 0 1 1 + 292 293 294 1 1 2 0 1 + 295 296 297 1 0 3 2 1 + 298 299 300 1 0 3 2 1 + 301 302 303 1 2 1 0 1 + 304 3 305 1 0 1 2 1 + 305 3 0 1 2 1 0 1 + 304 8 3 1 0 1 2 1 + 4 6 9 1 2 1 0 1 + 306 307 308 1 2 0 1 1 + 309 310 311 1 0 2 3 1 + 312 313 314 1 0 1 2 1 + 315 313 312 1 2 1 0 1 + 316 313 315 1 0 1 2 1 + 317 318 316 1 2 1 0 1 + 313 319 314 1 0 1 2 1 + 320 316 315 1 0 1 2 1 + 316 321 313 1 0 1 2 1 + 313 321 319 1 0 1 2 1 + 320 317 316 1 2 1 0 1 + 322 323 324 1 0 2 3 1 + 325 326 327 1 2 0 1 1 + 328 329 330 1 1 2 0 1 + 331 332 333 1 0 3 2 1 + 334 335 336 1 0 3 2 1 + 337 338 339 1 2 1 0 1 + 340 341 342 1 2 0 1 1 + 343 344 345 1 0 2 3 1 + 346 347 348 1 0 2 3 1 + 349 350 351 1 2 0 1 1 + 352 353 354 1 1 2 0 1 + 355 356 357 1 0 3 2 1 + 358 359 360 1 0 3 2 1 + 361 362 363 1 2 1 0 1 + 364 365 366 1 2 0 1 1 + 367 368 369 1 0 2 3 1 + 370 371 372 1 0 2 3 1 + 373 374 375 1 2 0 1 1 + 376 377 378 1 1 2 0 1 + 379 380 381 1 0 3 2 1 + 382 383 384 1 0 3 2 1 + 385 386 387 1 2 1 0 1 + 388 389 390 1 2 0 1 1 + 391 392 393 1 0 2 3 1 + 394 395 396 1 0 2 3 1 + 397 398 399 1 2 0 1 1 + 400 401 402 1 1 2 0 1 + 403 404 405 1 0 3 2 1 + 406 407 408 1 0 3 2 1 + 409 410 411 1 2 1 0 1 + 412 413 414 1 2 0 1 1 + 415 416 417 1 0 2 3 1 + 418 419 420 1 0 2 3 1 + 421 422 423 1 2 0 1 1 + 424 425 426 1 1 2 0 1 + 427 428 429 1 0 3 2 1 + 430 431 432 1 0 3 2 1 + 433 434 435 1 2 1 0 1 + 436 437 438 1 2 0 1 1 + 439 440 441 1 0 2 3 1 + 442 443 444 1 0 2 3 1 + 445 446 447 1 2 0 1 1 + 448 449 450 1 1 2 0 1 + 451 452 453 1 0 3 2 1 + 454 455 456 1 0 3 2 1 + 457 458 459 1 2 1 0 1 + 460 461 462 1 0 1 2 1 + 463 461 460 1 2 1 0 1 + 464 461 463 1 0 1 2 1 + 465 466 464 1 2 1 0 1 + 461 467 462 1 0 1 2 1 + 468 464 463 1 0 1 2 1 + 464 469 461 1 0 1 2 1 + 461 469 467 1 0 1 2 1 + 468 465 464 1 2 1 0 1 + 470 463 471 1 0 1 2 1 + 471 463 460 1 2 1 0 1 + 470 468 463 1 0 1 2 1 + 464 466 469 1 2 1 0 1 + 472 473 474 1 2 0 1 1 + 475 476 477 1 0 2 3 1 + 478 479 480 1 0 2 3 1 + 481 482 483 1 2 0 1 1 + 484 485 486 1 1 2 0 1 + 487 488 489 1 0 3 2 1 + 490 491 492 1 0 3 2 1 + 493 494 495 1 2 1 0 1 + 496 497 498 1 2 0 1 1 + 499 500 501 1 0 2 3 1 + 502 503 504 1 0 2 3 1 + 505 506 507 1 2 0 1 1 + 508 509 510 1 1 2 0 1 + 511 512 513 1 0 3 2 1 + 514 515 516 1 0 3 2 1 + 517 518 519 1 2 1 0 1 + 520 521 522 1 2 0 1 1 + 523 524 525 1 0 2 3 1 + 526 527 528 1 0 2 3 1 + 529 530 531 1 2 0 1 1 + 532 533 534 1 1 2 0 1 + 535 536 537 1 0 3 2 1 + 538 539 540 1 0 3 2 1 + 541 542 543 1 2 1 0 1 + 544 545 546 1 2 0 1 1 + 547 548 549 1 0 2 3 1 + 550 551 552 1 0 2 3 1 + 553 554 555 1 2 0 1 1 + 556 557 558 1 1 2 0 1 + 559 560 561 1 0 3 2 1 + 562 563 564 1 0 3 2 1 + 565 566 567 1 2 1 0 1 + 568 569 570 1 2 0 1 1 + 571 572 573 1 0 2 3 1 + 574 575 576 1 0 2 3 1 + 577 578 579 1 2 0 1 1 + 580 581 582 1 1 2 0 1 + 583 584 585 1 0 3 2 1 + 586 587 588 1 0 3 2 1 + 589 590 591 1 2 1 0 1 + 592 593 594 1 2 0 1 1 + 595 596 597 1 0 2 3 1 + 598 599 600 1 0 2 3 1 + 601 602 603 1 2 0 1 1 + 604 605 606 1 1 2 0 1 + 607 608 609 1 0 3 2 1 + 610 611 612 1 0 3 2 1 + 613 614 615 1 2 1 0 1 + 616 315 617 1 0 1 2 1 + 617 315 312 1 2 1 0 1 + 616 320 315 1 0 1 2 1 + 316 318 321 1 2 1 0 1 + 618 619 620 1 2 0 1 1 + 621 622 623 1 0 2 3 1 + 624 625 626 1 0 1 2 1 + 627 625 624 1 2 1 0 1 + 628 625 627 1 0 1 2 1 + 629 630 628 1 2 1 0 1 + 625 631 626 1 0 1 2 1 + 632 628 627 1 0 1 2 1 + 628 633 625 1 0 1 2 1 + 625 633 631 1 0 1 2 1 + 632 629 628 1 2 1 0 1 + 634 635 636 1 0 2 3 1 + 637 638 639 1 2 0 1 1 + 640 641 642 1 1 2 0 1 + 643 644 645 1 0 3 2 1 + 646 647 648 1 0 3 2 1 + 649 650 651 1 2 1 0 1 + 652 653 654 1 2 0 1 1 + 655 656 657 1 0 2 3 1 + 658 659 660 1 0 2 3 1 + 661 662 663 1 2 0 1 1 + 664 665 666 1 1 2 0 1 + 667 668 669 1 0 3 2 1 + 670 671 672 1 0 3 2 1 + 673 674 675 1 2 1 0 1 + 676 677 678 1 2 0 1 1 + 679 680 681 1 0 2 3 1 + 682 683 684 1 0 2 3 1 + 685 686 687 1 2 0 1 1 + 688 689 690 1 1 2 0 1 + 691 692 693 1 0 3 2 1 + 694 695 696 1 0 3 2 1 + 697 698 699 1 2 1 0 1 + 700 701 702 1 2 0 1 1 + 703 704 705 1 0 2 3 1 + 706 707 708 1 0 2 3 1 + 709 710 711 1 2 0 1 1 + 712 713 714 1 1 2 0 1 + 715 716 717 1 0 3 2 1 + 718 719 720 1 0 3 2 1 + 721 722 723 1 2 1 0 1 + 724 725 726 1 2 0 1 1 + 727 728 729 1 0 2 3 1 + 730 731 732 1 0 2 3 1 + 733 734 735 1 2 0 1 1 + 736 737 738 1 1 2 0 1 + 739 740 741 1 0 3 2 1 + 742 743 744 1 0 3 2 1 + 745 746 747 1 2 1 0 1 + 748 749 750 1 2 0 1 1 + 751 752 753 1 0 2 3 1 + 754 755 756 1 0 2 3 1 + 757 758 759 1 2 0 1 1 + 760 761 762 1 1 2 0 1 + 763 764 765 1 0 3 2 1 + 766 767 768 1 0 3 2 1 + 769 770 771 1 2 1 0 1 + 772 773 774 1 0 1 2 1 + 775 773 772 1 2 1 0 1 + 776 773 775 1 0 1 2 1 + 777 778 776 1 2 1 0 1 + 773 779 774 1 0 1 2 1 + 780 776 775 1 0 1 2 1 + 776 781 773 1 0 1 2 1 + 773 781 779 1 0 1 2 1 + 780 777 776 1 2 1 0 1 + 782 775 783 1 0 1 2 1 + 783 775 772 1 2 1 0 1 + 782 780 775 1 0 1 2 1 + 776 778 781 1 2 1 0 1 + 784 785 786 1 2 0 1 1 + 787 788 789 1 0 2 3 1 + 790 791 792 1 0 2 3 1 + 793 794 795 1 2 0 1 1 + 796 797 798 1 1 2 0 1 + 799 800 801 1 0 3 2 1 + 802 803 804 1 0 3 2 1 + 805 806 807 1 2 1 0 1 + 808 809 810 1 2 0 1 1 + 811 812 813 1 0 2 3 1 + 814 815 816 1 0 2 3 1 + 817 818 819 1 2 0 1 1 + 820 821 822 1 1 2 0 1 + 823 824 825 1 0 3 2 1 + 826 827 828 1 0 3 2 1 + 829 830 831 1 2 1 0 1 + 832 833 834 1 2 0 1 1 + 835 836 837 1 0 2 3 1 + 838 839 840 1 0 2 3 1 + 841 842 843 1 2 0 1 1 + 844 845 846 1 1 2 0 1 + 847 848 849 1 0 3 2 1 + 850 851 852 1 0 3 2 1 + 853 854 855 1 2 1 0 1 + 856 857 858 1 2 0 1 1 + 859 860 861 1 0 2 3 1 + 862 863 864 1 0 2 3 1 + 865 866 867 1 2 0 1 1 + 868 869 870 1 1 2 0 1 + 871 872 873 1 0 3 2 1 + 874 875 876 1 0 3 2 1 + 877 878 879 1 2 1 0 1 + 880 881 882 1 2 0 1 1 + 883 884 885 1 0 2 3 1 + 886 887 888 1 0 2 3 1 + 889 890 891 1 2 0 1 1 + 892 893 894 1 1 2 0 1 + 895 896 897 1 0 3 2 1 + 898 899 900 1 0 3 2 1 + 901 902 903 1 2 1 0 1 + 904 905 906 1 2 0 1 1 + 907 908 909 1 0 2 3 1 + 910 911 912 1 0 2 3 1 + 913 914 915 1 2 0 1 1 + 916 917 918 1 1 2 0 1 + 919 920 921 1 0 3 2 1 + 922 923 924 1 0 3 2 1 + 925 926 927 1 2 1 0 1 + 928 627 929 1 0 1 2 1 + 929 627 624 1 2 1 0 1 + 928 632 627 1 0 1 2 1 + 628 630 633 1 2 1 0 1 + 930 931 932 1 2 0 1 1 + 933 934 935 1 0 2 3 1 + 936 937 938 1 0 1 2 1 + 939 937 936 1 2 1 0 1 + 940 937 939 1 0 1 2 1 + 941 942 940 1 2 1 0 1 + 937 943 938 1 0 1 2 1 + 944 940 939 1 0 1 2 1 + 940 945 937 1 0 1 2 1 + 937 945 943 1 0 1 2 1 + 944 941 940 1 2 1 0 1 + 946 947 948 1 0 2 3 1 + 949 950 951 1 2 0 1 1 + 952 953 954 1 1 2 0 1 + 955 956 957 1 0 3 2 1 + 958 959 960 1 0 3 2 1 + 961 962 963 1 2 1 0 1 + 964 965 966 1 2 0 1 1 + 967 968 969 1 0 2 3 1 + 970 971 972 1 0 2 3 1 + 973 974 975 1 2 0 1 1 + 976 977 978 1 1 2 0 1 + 979 980 981 1 0 3 2 1 + 982 983 984 1 0 3 2 1 + 985 986 987 1 2 1 0 1 + 988 989 990 1 2 0 1 1 + 991 992 993 1 0 2 3 1 + 994 995 996 1 0 2 3 1 + 997 998 999 1 2 0 1 1 + 1000 1001 1002 1 1 2 0 1 + 1003 1004 1005 1 0 3 2 1 + 1006 1007 1008 1 0 3 2 1 + 1009 1010 1011 1 2 1 0 1 + 1012 1013 1014 1 2 0 1 1 + 1015 1016 1017 1 0 2 3 1 + 1018 1019 1020 1 0 2 3 1 + 1021 1022 1023 1 2 0 1 1 + 1024 1025 1026 1 1 2 0 1 + 1027 1028 1029 1 0 3 2 1 + 1030 1031 1032 1 0 3 2 1 + 1033 1034 1035 1 2 1 0 1 + 1036 1037 1038 1 2 0 1 1 + 1039 1040 1041 1 0 2 3 1 + 1042 1043 1044 1 0 2 3 1 + 1045 1046 1047 1 2 0 1 1 + 1048 1049 1050 1 1 2 0 1 + 1051 1052 1053 1 0 3 2 1 + 1054 1055 1056 1 0 3 2 1 + 1057 1058 1059 1 2 1 0 1 + 1060 1061 1062 1 2 0 1 1 + 1063 1064 1065 1 0 2 3 1 + 1066 1067 1068 1 0 2 3 1 + 1069 1070 1071 1 2 0 1 1 + 1072 1073 1074 1 1 2 0 1 + 1075 1076 1077 1 0 3 2 1 + 1078 1079 1080 1 0 3 2 1 + 1081 1082 1083 1 2 1 0 1 + 1084 1085 1086 1 0 1 2 1 + 1087 1085 1084 1 2 1 0 1 + 1088 1085 1087 1 0 1 2 1 + 1089 1090 1088 1 2 1 0 1 + 1085 1091 1086 1 0 1 2 1 + 1092 1088 1087 1 0 1 2 1 + 1088 1093 1085 1 0 1 2 1 + 1085 1093 1091 1 0 1 2 1 + 1092 1089 1088 1 2 1 0 1 + 1094 1087 1095 1 0 1 2 1 + 1095 1087 1084 1 2 1 0 1 + 1094 1092 1087 1 0 1 2 1 + 1088 1090 1093 1 2 1 0 1 + 1096 1097 1098 1 2 0 1 1 + 1099 1100 1101 1 0 2 3 1 + 1102 1103 1104 1 0 2 3 1 + 1105 1106 1107 1 2 0 1 1 + 1108 1109 1110 1 1 2 0 1 + 1111 1112 1113 1 0 3 2 1 + 1114 1115 1116 1 0 3 2 1 + 1117 1118 1119 1 2 1 0 1 + 1120 1121 1122 1 2 0 1 1 + 1123 1124 1125 1 0 2 3 1 + 1126 1127 1128 1 0 2 3 1 + 1129 1130 1131 1 2 0 1 1 + 1132 1133 1134 1 1 2 0 1 + 1135 1136 1137 1 0 3 2 1 + 1138 1139 1140 1 0 3 2 1 + 1141 1142 1143 1 2 1 0 1 + 1144 1145 1146 1 2 0 1 1 + 1147 1148 1149 1 0 2 3 1 + 1150 1151 1152 1 0 2 3 1 + 1153 1154 1155 1 2 0 1 1 + 1156 1157 1158 1 1 2 0 1 + 1159 1160 1161 1 0 3 2 1 + 1162 1163 1164 1 0 3 2 1 + 1165 1166 1167 1 2 1 0 1 + 1168 1169 1170 1 2 0 1 1 + 1171 1172 1173 1 0 2 3 1 + 1174 1175 1176 1 0 2 3 1 + 1177 1178 1179 1 2 0 1 1 + 1180 1181 1182 1 1 2 0 1 + 1183 1184 1185 1 0 3 2 1 + 1186 1187 1188 1 0 3 2 1 + 1189 1190 1191 1 2 1 0 1 + 1192 1193 1194 1 2 0 1 1 + 1195 1196 1197 1 0 2 3 1 + 1198 1199 1200 1 0 2 3 1 + 1201 1202 1203 1 2 0 1 1 + 1204 1205 1206 1 1 2 0 1 + 1207 1208 1209 1 0 3 2 1 + 1210 1211 1212 1 0 3 2 1 + 1213 1214 1215 1 2 1 0 1 + 1216 1217 1218 1 2 0 1 1 + 1219 1220 1221 1 0 2 3 1 + 1222 1223 1224 1 0 2 3 1 + 1225 1226 1227 1 2 0 1 1 + 1228 1229 1230 1 1 2 0 1 + 1231 1232 1233 1 0 3 2 1 + 1234 1235 1236 1 0 3 2 1 + 1237 1238 1239 1 2 1 0 1 + 1240 939 1241 1 0 1 2 1 + 1241 939 936 1 2 1 0 1 + 1240 944 939 1 0 1 2 1 + 940 942 945 1 2 1 0 1 + 1242 1243 1244 1 2 0 1 1 + 1245 1246 1247 1 0 2 3 1 + tverts 4 + 0.0078125 0.0078125 0 + 0.505859 0.992188 0 + 0.998047 0.0078125 0 + 0.505859 0.994141 0 +endnode +node trimesh terrain + parent wsf10_s11_04 + position 0 0 0 + orientation 0 0 0 0 + wirecolor 0.54902 0.54902 0.54902 + tilefade 0 + scale 1 + render 1 + shadow 0 + beaming 0 + inheritcolor 0 + rotatetexture 1 + alpha 1 + transparencyhint 0 + selfillumcolor 0 0 0 + ambient 1 1 1 + diffuse 1 1 1 + specular 0 0 0 + shininess 10 + center 0 0 146 + bitmap wtf_2_grnd1 + verts 121 + -5 -5 3 + -4 -5 3 + -3 -5 3 + -2 -5 3 + -1 -5 3 + 0 -5 2 + 1 -5 2 + 2 -5 1 + 3 -5 0 + 4 -5 0 + 5 -5 0 + -5 -4 3 + -4 -4 2.99 + -3 -4 3.04 + -2 -4 3.1 + -1 -4 3 + 0 -4 2.25 + 1.19 -4 1.64 + 2 -4 0.98 + 3 -4 0.34 + 4 -4 0.06 + 5 -4 0 + -5 -3 3 + -4 -3 3.1 + -3 -3 3.24 + -2 -3 3.52 + -1 -3 3.26 + 0 -3 2.5 + 1 -3 0.9 + 1.82 -3 0.81 + 3 -3 0.36 + 4 -3 0.09 + 5 -3 0 + -5 -2 3 + -3.47 -2 3.06 + -2.14 -2 3.66 + 0.05 -1.71 3.61 + 0.52 -1.7 3.32 + 0.92 -1.69 2.52 + 0.86 -1.69 0.15 + 0.75 -1.69 -1.11 + 2.17 -2 -0.1 + 4 -2 0.07 + 5 -2 0 + -5 -1 3 + -3.48 -1 3.12 + -2.14 -1 3.7 + 0.5 -0.45 3.9 + 0.8 -0.85 3.07 + 0.82 -0.83 2.45 + 1.19 -0.82 1.62 + 1.35 -0.82 0.6 + 2.28 -0.82 -0.19 + 4 -1 0.11 + 5 -1 0 + -5 0 3 + -4 0 3.1 + -2.14 0 3.79 + -0.02 0.01 4.03 + 0.29 0.02 3.15 + 0.69 0.03 2.36 + 0.84 0.04 1.57 + 1.17 0.04 0.65 + 2.41 0.04 0.2 + 4 0 0.11 + 5 0 0 + -5 1 3 + -4 1 3.07 + -3 1 3.59 + -2 1 3.42 + 0.25 0.88 3.13 + 0.49 0.89 2.19 + 0.82 0.89 1.33 + 1.05 0.9 0.37 + 2.12 0.91 -0.06 + 4 1 0.28 + 5 1 0 + -5 2 3 + -4 2 2.95 + -3 2 3.55 + -2 2 3.59 + -1 2 3.02 + 0.43 1.75 2.16 + 0.42 1.74 0.99 + 0.76 1.75 0.13 + 2 1.76 0 + 4 2 0.22 + 5 2 0 + -5 3 3 + -4 3 3.04 + -3 3 3.24 + -2 3 3.53 + -1 3 3.08 + 0 3 2.41 + 0.48 2.61 1.06 + 0.77 2.61 0.03 + 1.69 2.62 -0.22 + 4 3 0.09 + 5 3 0 + -5 4 3 + -4 4 3 + -3 4 3.03 + -2 4 2.94 + -1 4 2.92 + 0 4 2.51 + 1 4 1.72 + 2 4 0.97 + 3 4 0.26 + 4 4 0.03 + 5 4 0 + -5 5 3 + -4 5 3 + -3 5 3 + -2 5 3 + -1 5 3 + 0 5 2 + 1 5 2 + 2 5 1 + 3 5 0 + 4 5 0 + 5 5 0 + faces 200 + 11 0 12 1 11 0 12 65536 + 1 12 0 1 1 12 0 65536 + 12 1 13 1 12 1 13 65536 + 2 13 1 1 2 13 1 65536 + 13 2 14 1 13 2 14 65536 + 3 14 2 1 3 14 2 65536 + 14 3 15 1 14 3 15 65536 + 4 15 3 1 121 15 3 65536 + 15 4 16 1 15 121 16 65536 + 5 16 4 1 6 122 4 65536 + 16 5 17 1 16 5 17 65536 + 6 17 5 1 123 17 5 65536 + 17 6 18 1 17 123 18 65536 + 7 18 6 1 124 125 6 65536 + 18 7 19 1 18 7 19 65536 + 8 19 7 1 8 19 7 65536 + 19 8 20 1 19 8 20 65536 + 9 20 8 1 9 20 8 65536 + 20 9 21 1 20 9 21 65536 + 10 21 9 1 10 21 9 65536 + 22 11 23 1 22 11 23 65536 + 12 23 11 1 12 23 11 65536 + 23 12 24 1 23 12 24 65536 + 13 24 12 1 13 24 12 65536 + 24 13 25 1 24 13 25 65536 + 14 25 13 1 14 25 13 65536 + 25 14 26 1 25 14 26 65536 + 15 26 14 1 15 26 14 65536 + 26 15 27 1 26 15 27 65536 + 16 27 15 1 16 27 15 65536 + 27 16 28 1 27 16 126 65536 + 17 28 16 1 17 126 16 65536 + 28 17 29 1 127 128 129 65536 + 18 29 17 1 18 29 17 65536 + 29 18 30 1 29 18 30 65536 + 19 30 18 1 19 30 18 65536 + 30 19 31 1 30 19 31 65536 + 20 31 19 1 20 31 19 65536 + 31 20 32 1 31 20 32 65536 + 21 32 20 1 21 32 20 65536 + 33 22 34 1 33 22 34 65536 + 23 34 22 1 23 34 22 65536 + 34 23 35 1 34 23 35 65536 + 24 35 23 1 24 35 23 65536 + 35 24 36 1 35 24 36 65536 + 25 36 24 1 25 36 24 65536 + 36 25 37 1 130 131 132 65536 + 26 37 25 1 26 133 25 65536 + 37 26 38 1 132 134 135 65536 + 27 38 26 1 27 136 26 65536 + 38 27 39 1 38 137 39 65536 + 28 39 27 1 126 138 27 65536 + 39 28 40 1 39 127 139 65536 + 29 40 28 1 140 141 28 65536 + 40 29 41 1 40 29 41 65536 + 30 41 29 1 30 41 29 65536 + 41 30 42 1 41 30 42 65536 + 31 42 30 1 31 42 30 65536 + 42 31 43 1 42 31 43 65536 + 32 43 31 1 32 43 31 65536 + 44 33 45 1 44 33 45 65536 + 34 45 33 1 34 45 33 65536 + 45 34 46 1 45 34 46 65536 + 35 46 34 1 35 46 34 65536 + 46 35 47 1 46 35 142 65536 + 36 47 35 1 36 142 35 65536 + 47 36 48 1 47 143 48 65536 + 37 48 36 1 133 144 36 65536 + 48 37 49 1 48 37 49 65536 + 38 49 37 1 38 49 37 65536 + 49 38 50 1 49 38 50 65536 + 39 50 38 1 39 50 38 65536 + 50 39 51 1 50 39 145 65536 + 40 51 39 1 139 145 39 65536 + 51 40 52 1 51 40 52 65536 + 41 52 40 1 41 52 40 65536 + 52 41 53 1 52 41 53 65536 + 42 53 41 1 42 53 41 65536 + 53 42 54 1 53 42 54 65536 + 43 54 42 1 43 54 42 65536 + 55 44 56 1 55 44 56 65536 + 45 56 44 1 45 56 44 65536 + 56 45 57 1 56 45 57 65536 + 46 57 45 1 46 57 45 65536 + 57 46 58 1 57 46 146 65536 + 47 58 46 1 142 146 46 65536 + 58 47 59 1 58 147 148 65536 + 48 59 47 1 48 59 47 65536 + 59 48 60 1 59 48 60 65536 + 49 60 48 1 49 60 48 65536 + 60 49 61 1 60 49 61 65536 + 50 61 49 1 50 61 49 65536 + 61 50 62 1 61 50 149 65536 + 51 62 50 1 145 149 50 65536 + 62 51 63 1 62 51 63 65536 + 52 63 51 1 52 63 51 65536 + 63 52 64 1 63 52 64 65536 + 53 64 52 1 53 64 52 65536 + 64 53 65 1 64 53 65 65536 + 54 65 53 1 54 65 53 65536 + 66 55 67 1 66 55 67 65536 + 56 67 55 1 56 67 55 65536 + 67 56 68 1 67 56 68 65536 + 57 68 56 1 57 68 56 65536 + 68 57 69 1 68 57 69 65536 + 58 69 57 1 146 69 57 65536 + 69 58 70 1 69 146 150 65536 + 59 70 58 1 59 70 58 65536 + 70 59 71 1 70 59 71 65536 + 60 71 59 1 60 71 59 65536 + 71 60 72 1 71 60 72 65536 + 61 72 60 1 61 72 60 65536 + 72 61 73 1 72 61 151 65536 + 62 73 61 1 149 151 61 65536 + 73 62 74 1 73 62 74 65536 + 63 74 62 1 63 74 62 65536 + 74 63 75 1 74 63 75 65536 + 64 75 63 1 64 75 63 65536 + 75 64 76 1 75 64 76 65536 + 65 76 64 1 65 76 64 65536 + 77 66 78 1 77 66 78 65536 + 67 78 66 1 67 78 66 65536 + 78 67 79 1 78 67 79 65536 + 68 79 67 1 68 79 67 65536 + 79 68 80 1 79 68 80 65536 + 69 80 68 1 69 80 68 65536 + 80 69 81 1 80 69 81 65536 + 70 81 69 1 150 81 69 65536 + 81 70 82 1 81 150 152 65536 + 71 82 70 1 71 82 70 65536 + 82 71 83 1 82 71 83 65536 + 72 83 71 1 72 83 71 65536 + 83 72 84 1 83 72 153 65536 + 73 84 72 1 151 153 72 65536 + 84 73 85 1 84 73 85 65536 + 74 85 73 1 74 85 73 65536 + 85 74 86 1 85 74 86 65536 + 75 86 74 1 75 86 74 65536 + 86 75 87 1 86 75 87 65536 + 76 87 75 1 76 87 75 65536 + 88 77 89 1 88 77 89 65536 + 78 89 77 1 78 89 77 65536 + 89 78 90 1 89 78 90 65536 + 79 90 78 1 79 90 78 65536 + 90 79 91 1 90 79 91 65536 + 80 91 79 1 80 91 79 65536 + 91 80 92 1 91 80 92 65536 + 81 92 80 1 81 92 80 65536 + 92 81 93 1 92 81 154 65536 + 82 93 81 1 152 154 81 65536 + 93 82 94 1 93 82 155 65536 + 83 94 82 1 83 155 82 65536 + 94 83 95 1 155 83 156 65536 + 84 95 83 1 153 156 83 65536 + 95 84 96 1 95 84 96 65536 + 85 96 84 1 85 96 84 65536 + 96 85 97 1 96 85 97 65536 + 86 97 85 1 86 97 85 65536 + 97 86 98 1 97 86 98 65536 + 87 98 86 1 87 98 86 65536 + 99 88 100 1 99 88 100 65536 + 89 100 88 1 89 100 88 65536 + 100 89 101 1 100 89 101 65536 + 90 101 89 1 90 101 89 65536 + 101 90 102 1 101 90 102 65536 + 91 102 90 1 91 102 90 65536 + 102 91 103 1 102 91 103 65536 + 92 103 91 1 92 103 91 65536 + 103 92 104 1 103 92 104 65536 + 93 104 92 1 154 104 92 65536 + 104 93 105 1 104 154 105 65536 + 94 105 93 1 155 157 93 65536 + 105 94 106 1 105 158 106 65536 + 95 106 94 1 159 160 94 65536 + 106 95 107 1 160 159 161 65536 + 96 107 95 1 96 107 95 65536 + 107 96 108 1 107 96 108 65536 + 97 108 96 1 97 108 96 65536 + 108 97 109 1 108 97 109 65536 + 98 109 97 1 98 109 97 65536 + 110 99 111 1 110 99 111 65536 + 100 111 99 1 100 111 99 65536 + 111 100 112 1 111 100 112 65536 + 101 112 100 1 101 112 100 65536 + 112 101 113 1 112 101 113 65536 + 102 113 101 1 102 113 101 65536 + 113 102 114 1 113 102 162 65536 + 103 114 102 1 103 162 102 65536 + 114 103 115 1 114 163 164 65536 + 104 115 103 1 104 115 103 65536 + 115 104 116 1 115 104 116 65536 + 105 116 104 1 105 116 104 65536 + 116 105 117 1 116 105 165 65536 + 106 117 105 1 106 165 105 65536 + 117 106 118 1 117 166 167 65536 + 107 118 106 1 107 118 106 65536 + 118 107 119 1 118 107 119 65536 + 108 119 107 1 108 119 107 65536 + 119 108 120 1 119 108 120 65536 + 109 120 108 1 109 120 108 65536 + tverts 168 + 0 0 0 + 0.0996094 0 0 + 0.199219 0 0 + 0.300781 0 0 + 0 0.609375 0 + 0.5 0 0 + 0 0.509766 0 + 0.699219 0 0 + 0.800781 0 0 + 0.900391 0 0 + 1 0 0 + 0 0.0996094 0 + 0.0996094 0.0996094 0 + 0.199219 0.0996094 0 + 0.300781 0.0996094 0 + 0.400391 0.0996094 0 + 0.5 0.0996094 0 + 0.619141 0.0996094 0 + 0.699219 0.0996094 0 + 0.800781 0.0996094 0 + 0.900391 0.0996094 0 + 1 0.0996094 0 + 0 0.199219 0 + 0.0996094 0.199219 0 + 0.199219 0.199219 0 + 0.300781 0.199219 0 + 0.400391 0.199219 0 + 0.5 0.199219 0 + 0.400391 0.476563 0 + 0.681641 0.199219 0 + 0.800781 0.199219 0 + 0.900391 0.199219 0 + 1 0.199219 0 + 0 0.300781 0 + 0.152344 0.300781 0 + 0.285156 0.300781 0 + 0.505859 0.328125 0 + 0.330078 0.640625 0 + 0.330078 0.560547 0 + 0.330078 0.460938 0 + 0.599609 0.330078 0 + 0.716797 0.300781 0 + 0.900391 0.300781 0 + 1 0.300781 0 + 0 0.400391 0 + 0.152344 0.400391 0 + 0.285156 0.400391 0 + 0.455078 0.699219 0 + 0.414063 0.617188 0 + 0.417969 0.554688 0 + 0.417969 0.470703 0 + 0.634766 0.417969 0 + 0.728516 0.417969 0 + 0.900391 0.400391 0 + 1 0.400391 0 + 0 0.5 0 + 0.0996094 0.5 0 + 0.285156 0.5 0 + 0.501953 0.712891 0 + 0.501953 0.625 0 + 0.503906 0.544922 0 + 0.503906 0.466797 0 + 0.638672 0.503906 0 + 0.740234 0.503906 0 + 0.900391 0.5 0 + 1 0.5 0 + 0 0.599609 0 + 0.0996094 0.599609 0 + 0.199219 0.599609 0 + 0.300781 0.599609 0 + 0.587891 0.623047 0 + 0.589844 0.529297 0 + 0.589844 0.443359 0 + 0.605469 0.589844 0 + 0.712891 0.591797 0 + 0.900391 0.599609 0 + 1 0.599609 0 + 0 0.699219 0 + 0.0996094 0.699219 0 + 0.199219 0.699219 0 + 0.300781 0.699219 0 + 0.400391 0.699219 0 + 0.675781 0.525391 0 + 0.673828 0.408203 0 + 0.576172 0.675781 0 + 0.699219 0.675781 0 + 0.900391 0.699219 0 + 1 0.699219 0 + 0 0.800781 0 + 0.0996094 0.800781 0 + 0.199219 0.800781 0 + 0.300781 0.800781 0 + 0.400391 0.800781 0 + 0.800781 0.550781 0 + 0.548828 0.416016 0 + 0.576172 0.761719 0 + 0.669922 0.761719 0 + 0.900391 0.800781 0 + 1 0.800781 0 + 0 0.900391 0 + 0.0996094 0.900391 0 + 0.199219 0.900391 0 + 0.300781 0.900391 0 + 0.400391 0.900391 0 + 0.5 0.900391 0 + 0.599609 0.900391 0 + 0.699219 0.900391 0 + 0.800781 0.900391 0 + 0.900391 0.900391 0 + 1 0.900391 0 + 0 1 0 + 0.0996094 1 0 + 0.199219 1 0 + 0.300781 1 0 + 1 0.609375 0 + 0.5 1 0 + 0.599609 1 0 + 1 0.410156 0 + 0.800781 1 0 + 0.900391 1 0 + 1 1 0 + 0.400391 0 0 + 0.0996094 0.535156 0 + 0.599609 0 0 + 0 0.410156 0 + 0.0996094 0.408203 0 + 0.599609 0.199219 0 + 0.199219 0.476563 0 + 0.0996094 0.472656 0 + 0.199219 0.390625 0 + 0.505859 0.669922 0 + 0.300781 0.662109 0 + 0.552734 0.640625 0 + 0.552734 0.330078 0 + 0.400391 0.634766 0 + 0.591797 0.560547 0 + 0.591797 0.330078 0 + 0.199219 0.558594 0 + 0.609375 0.330078 0 + 0.330078 0.335938 0 + 0.318359 0.390625 0 + 0.400391 0.335938 0 + 0.550781 0.455078 0 + 0.328125 0.669922 0 + 0.580078 0.414063 0 + 0.417969 0.369141 0 + 0.498047 0.501953 0 + 0.449219 0.699219 0 + 0.470703 0.625 0 + 0.503906 0.375 0 + 0.525391 0.587891 0 + 0.589844 0.345703 0 + 0.542969 0.675781 0 + 0.675781 0.322266 0 + 0.5 0.800781 0 + 0.761719 0.416016 0 + 0.761719 0.3125 0 + 0.900391 0.482422 0 + 0.548828 0.761719 0 + 0.576172 0.3125 0 + 0.699219 0.40625 0 + 0.800781 0.335938 0 + 0.400391 1 0 + 0.900391 0.601563 0 + 1 0.509766 0 + 0.699219 1 0 + 0.900391 0.40625 0 + 1 0.308594 0 +endnode +node light wsf10_s11_04ml1 + parent wsf10_s11_04 + position 3.95873 -3.03574 8.18507 + wirecolor 0.54902 0.54902 0.54902 + radius 0 + multiplier 1 + color 1 1 1 + ambientonly 0 + nDynamicType 0 + affectdynamic 0 + shadow 0 + lightpriority 3 + fadinglight 1 + orientation 0 0 0 0 +endnode +node light wsf10_s11_04ml2 + parent wsf10_s11_04 + position -2.31414 2.63113 7.19187 + wirecolor 0.54902 0.54902 0.54902 + radius 0 + multiplier 1 + color 1 1 1 + ambientonly 0 + nDynamicType 0 + affectdynamic 0 + shadow 0 + lightpriority 3 + fadinglight 1 + orientation 0 0 0 0 +endnode +node aabb wok + parent wsf10_s11_04 + position 0 0 0 + wirecolor 0.54902 0.54902 0.54902 + ambient 0.588235 0.588235 0.588235 + diffuse 0.588235 0.588235 0.588235 + specular 0 0 0 + shininess 10 + orientation 0 0 0 0 + bitmap NULL + render 0 + shadow 0 + verts 121 + -5 -5 3 + -4 -5 3 + -3 -5 3 + -2 -5 3 + -1 -5 3 + 0 -5 2 + 1 -5 2 + 2 -5 1 + 3 -5 0 + 4 -5 0 + 5 -5 0 + -5 -4 3 + -4 -4 2.99 + -3 -4 3.04 + -2 -4 3.1 + -1 -4 3 + 0 -4 2.25 + 1.19 -4 1.64 + 2 -4 0.98 + 3 -4 0.34 + 4 -4 0.06 + 5 -4 0 + -5 -3 3 + -4 -3 3.1 + -3 -3 3.24 + -2 -3 3.52 + -1 -3 3.26 + -0.0224682 -2.97979 2.5 + 0.933226 -3.00269 0.9 + 1.82 -3 0.81 + 3 -3 0.36 + 4 -3 0.09 + 5 -3 0 + -5 -2 3 + -3.47 -2 3.06 + -2.14 -2 3.66 + 0.05 -1.71 3.61 + 0.52 -1.7 3.32 + 0.865873 -1.66565 2.52 + 0.86 -1.69 0.15 + 0.861419 -1.71297 -1.11 + 2.17 -2 -0.1 + 4 -2 0.07 + 5 -2 0 + -5 -1 3 + -3.48 -1 3.12 + -2.14 -1 3.7 + 0.5 -0.45 3.9 + 0.8 -0.85 3.07 + 0.82 -0.83 2.45 + 1.168 -0.819301 1.62 + 1.31973 -0.796891 0.6 + 2.28 -0.82 -0.19 + 4 -1 0.11 + 5 -1 0 + -5 0 3 + -4 0 3.1 + -2.14 0 3.79 + -0.02 0.01 4.03 + 0.29 0.02 3.15 + 0.69 0.03 2.36 + 1.11 0.04 1.57 + 1.38 0.04 0.65 + 2.41 0.04 0.2 + 4 0 0.11 + 5 0 0 + -5 1 3 + -4 1 3.07 + -3 1 3.59 + -2 1 3.42 + 0.25 0.88 3.13 + 0.483769 0.889915 2.19 + 0.82 0.89 1.33 + 1.05 0.9 0.37 + 2.12 0.91 -0.06 + 4 1 0.28 + 5 1 0 + -5 2 3 + -4 2 2.95 + -3 2 3.55 + -2 2 3.59 + -1 2 3.02 + 0.423859 1.74992 2.16 + 0.427372 1.74016 0.99 + 0.76 1.75 0.13 + 2 1.76 0 + 4 2 0.22 + 5 2 0 + -5 3 3 + -4 3 3.04 + -3 3 3.24 + -2 3 3.53 + -1 3 3.08 + 0 3 2.41 + 0.48 2.61 1.06 + 0.77 2.61 0.03 + 1.69 2.62 -0.22 + 4 3 0.09 + 5 3 0 + -5 4 3 + -4 4 3 + -3 4 3.03 + -2 4 2.94 + -1 4 2.92 + 0 4 2.51 + 1 4 1.72 + 2 4 0.97 + 3 4 0.26 + 4 4 0.03 + 5 4 0 + -5 5 3 + -4 5 3 + -3 5 3 + -2 5 3 + -1 5 3 + 0 5 2 + 1 5 2 + 2 5 1 + 3 5 0 + 4 5 0 + 5 5 0 + faces 200 + 11 0 12 1 0 0 0 3 + 1 12 0 1 0 0 0 3 + 12 1 13 1 0 0 0 3 + 2 13 1 1 0 0 0 3 + 13 2 14 1 0 0 0 3 + 3 14 2 1 0 0 0 3 + 14 3 15 1 0 0 0 3 + 4 15 3 1 0 0 0 3 + 15 4 16 1 0 0 0 3 + 5 16 4 1 0 0 0 3 + 16 5 17 1 0 0 0 1 + 6 17 5 1 0 0 0 3 + 17 6 18 1 0 0 0 3 + 7 18 6 1 0 0 0 1 + 18 7 19 1 0 0 0 3 + 8 19 7 1 0 0 0 3 + 19 8 20 1 0 0 0 3 + 9 20 8 1 0 0 0 3 + 20 9 21 1 0 0 0 3 + 10 21 9 1 0 0 0 3 + 22 11 23 1 0 0 0 3 + 12 23 11 1 0 0 0 3 + 23 12 24 1 0 0 0 3 + 13 24 12 1 0 0 0 3 + 24 13 25 1 0 0 0 3 + 14 25 13 1 0 0 0 3 + 25 14 26 1 0 0 0 3 + 15 26 14 1 0 0 0 3 + 26 15 27 1 0 0 0 3 + 16 27 15 1 0 0 0 3 + 27 16 28 1 0 0 0 7 + 17 28 16 1 0 0 0 7 + 28 17 29 1 0 0 0 7 + 18 29 17 1 0 0 0 1 + 29 18 30 1 0 0 0 1 + 19 30 18 1 0 0 0 1 + 30 19 31 1 0 0 0 1 + 20 31 19 1 0 0 0 3 + 31 20 32 1 0 0 0 3 + 21 32 20 1 0 0 0 3 + 33 22 34 1 0 0 0 3 + 23 34 22 1 0 0 0 3 + 34 23 35 1 0 0 0 3 + 24 35 23 1 0 0 0 3 + 35 24 36 1 0 0 0 3 + 25 36 24 1 0 0 0 3 + 36 25 37 1 0 0 0 3 + 26 37 25 1 0 0 0 3 + 37 26 38 1 0 0 0 7 + 27 38 26 1 0 0 0 7 + 38 27 39 1 0 0 0 7 + 28 39 27 1 0 0 0 7 + 39 28 40 1 0 0 0 7 + 29 40 28 1 0 0 0 7 + 40 29 41 1 0 0 0 7 + 30 41 29 1 0 0 0 7 + 41 30 42 1 0 0 0 1 + 31 42 30 1 0 0 0 3 + 42 31 43 1 0 0 0 3 + 32 43 31 1 0 0 0 3 + 44 33 45 1 0 0 0 3 + 34 45 33 1 0 0 0 3 + 45 34 46 1 0 0 0 3 + 35 46 34 1 0 0 0 3 + 46 35 47 1 0 0 0 3 + 36 47 35 1 0 0 0 3 + 47 36 48 1 0 0 0 7 + 37 48 36 1 0 0 0 7 + 48 37 49 1 0 0 0 7 + 38 49 37 1 0 0 0 7 + 49 38 50 1 0 0 0 7 + 39 50 38 1 0 0 0 7 + 50 39 51 1 0 0 0 7 + 40 51 39 1 0 0 0 7 + 51 40 52 1 0 0 0 7 + 41 52 40 1 0 0 0 7 + 52 41 53 1 0 0 0 3 + 42 53 41 1 0 0 0 3 + 53 42 54 1 0 0 0 3 + 43 54 42 1 0 0 0 3 + 55 44 56 1 0 0 0 3 + 45 56 44 1 0 0 0 3 + 56 45 57 1 0 0 0 3 + 46 57 45 1 0 0 0 3 + 57 46 58 1 0 0 0 3 + 47 58 46 1 0 0 0 3 + 58 47 59 1 0 0 0 7 + 48 59 47 1 0 0 0 7 + 59 48 60 1 0 0 0 7 + 49 60 48 1 0 0 0 7 + 60 49 61 1 0 0 0 7 + 50 61 49 1 0 0 0 7 + 61 50 62 1 0 0 0 7 + 51 62 50 1 0 0 0 7 + 62 51 63 1 0 0 0 7 + 52 63 51 1 0 0 0 7 + 63 52 64 1 0 0 0 3 + 53 64 52 1 0 0 0 3 + 64 53 65 1 0 0 0 3 + 54 65 53 1 0 0 0 3 + 66 55 67 1 0 0 0 3 + 56 67 55 1 0 0 0 3 + 67 56 68 1 0 0 0 3 + 57 68 56 1 0 0 0 3 + 68 57 69 1 0 0 0 3 + 58 69 57 1 0 0 0 3 + 69 58 70 1 0 0 0 7 + 59 70 58 1 0 0 0 7 + 70 59 71 1 0 0 0 7 + 60 71 59 1 0 0 0 7 + 71 60 72 1 0 0 0 7 + 61 72 60 1 0 0 0 7 + 72 61 73 1 0 0 0 7 + 62 73 61 1 0 0 0 7 + 73 62 74 1 0 0 0 7 + 63 74 62 1 0 0 0 7 + 74 63 75 1 0 0 0 3 + 64 75 63 1 0 0 0 3 + 75 64 76 1 0 0 0 3 + 65 76 64 1 0 0 0 3 + 77 66 78 1 0 0 0 3 + 67 78 66 1 0 0 0 3 + 78 67 79 1 0 0 0 3 + 68 79 67 1 0 0 0 3 + 79 68 80 1 0 0 0 3 + 69 80 68 1 0 0 0 3 + 80 69 81 1 0 0 0 3 + 70 81 69 1 0 0 0 7 + 81 70 82 1 0 0 0 7 + 71 82 70 1 0 0 0 7 + 82 71 83 1 0 0 0 7 + 72 83 71 1 0 0 0 7 + 83 72 84 1 0 0 0 7 + 73 84 72 1 0 0 0 7 + 84 73 85 1 0 0 0 7 + 74 85 73 1 0 0 0 7 + 85 74 86 1 0 0 0 3 + 75 86 74 1 0 0 0 3 + 86 75 87 1 0 0 0 3 + 76 87 75 1 0 0 0 3 + 88 77 89 1 0 0 0 3 + 78 89 77 1 0 0 0 3 + 89 78 90 1 0 0 0 1 + 79 90 78 1 0 0 0 3 + 90 79 91 1 0 0 0 1 + 80 91 79 1 0 0 0 3 + 91 80 92 1 0 0 0 3 + 81 92 80 1 0 0 0 1 + 92 81 93 1 0 0 0 3 + 82 93 81 1 0 0 0 7 + 93 82 94 1 0 0 0 7 + 83 94 82 1 0 0 0 7 + 94 83 95 1 0 0 0 7 + 84 95 83 1 0 0 0 7 + 95 84 96 1 0 0 0 7 + 85 96 84 1 0 0 0 7 + 96 85 97 1 0 0 0 3 + 86 97 85 1 0 0 0 3 + 97 86 98 1 0 0 0 3 + 87 98 86 1 0 0 0 3 + 99 88 100 1 0 0 0 3 + 89 100 88 1 0 0 0 3 + 100 89 101 1 0 0 0 3 + 90 101 89 1 0 0 0 3 + 101 90 102 1 0 0 0 3 + 91 102 90 1 0 0 0 3 + 102 91 103 1 0 0 0 1 + 92 103 91 1 0 0 0 1 + 103 92 104 1 0 0 0 3 + 93 104 92 1 0 0 0 1 + 104 93 105 1 0 0 0 1 + 94 105 93 1 0 0 0 3 + 105 94 106 1 0 0 0 3 + 95 106 94 1 0 0 0 3 + 106 95 107 1 0 0 0 3 + 96 107 95 1 0 0 0 3 + 107 96 108 1 0 0 0 3 + 97 108 96 1 0 0 0 3 + 108 97 109 1 0 0 0 3 + 98 109 97 1 0 0 0 3 + 110 99 111 1 0 0 0 3 + 100 111 99 1 0 0 0 3 + 111 100 112 1 0 0 0 3 + 101 112 100 1 0 0 0 3 + 112 101 113 1 0 0 0 1 + 102 113 101 1 0 0 0 3 + 113 102 114 1 0 0 0 3 + 103 114 102 1 0 0 0 3 + 114 103 115 1 0 0 0 3 + 104 115 103 1 0 0 0 3 + 115 104 116 1 0 0 0 3 + 105 116 104 1 0 0 0 1 + 116 105 117 1 0 0 0 3 + 106 117 105 1 0 0 0 1 + 117 106 118 1 0 0 0 3 + 107 118 106 1 0 0 0 3 + 118 107 119 1 0 0 0 3 + 108 119 107 1 0 0 0 3 + 119 108 120 1 0 0 0 3 + 109 120 108 1 0 0 0 3 + aabb -5 -5 -1.11 5 5 4.03 -1 + -5 -5 2 0.865873 5 4.03 -1 + -5 -5 2 0.865873 0.01 4.03 -1 + -5 -5 2.99 -2 0 3.79 -1 + -5 -5 2.99 -2 -2 3.66 -1 + -5 -5 2.99 -3.47 -2 3.1 -1 + -5 -5 2.99 -4 -4 3 -1 + -5 -5 2.99 -4 -4 3 0 + -5 -5 2.99 -4 -4 3 1 + -5 -4 2.99 -3.47 -2 3.1 -1 + -5 -4 2.99 -4 -3 3.1 -1 + -5 -4 3 -4 -3 3.1 20 + -5 -4 2.99 -4 -3 3.1 21 + -5 -3 3 -3.47 -2 3.1 41 + -4 -5 2.99 -2 -2 3.66 -1 + -4 -5 2.99 -2 -4 3.1 -1 + -4 -5 2.99 -3 -4 3.04 -1 + -4 -5 2.99 -3 -4 3.04 2 + -4 -5 3 -3 -4 3.04 3 + -3 -5 3 -2 -4 3.1 4 + -4 -4 2.99 -2 -2 3.66 -1 + -4 -4 2.99 -3 -3 3.24 -1 + -4 -4 2.99 -3 -3 3.24 22 + -4 -4 2.99 -3 -3 3.24 23 + -4 -4 3.04 -2 -2 3.66 -1 + -4 -3 3.1 -2.14 -2 3.66 43 + -3 -4 3.04 -2 -3 3.52 24 + -5 -3 3 -2.14 0 3.79 -1 + -5 -3 3 -2.14 -1 3.7 -1 + -5 -3 3 -3.47 -1 3.12 -1 + -5 -3 3 -3.47 -2 3.06 40 + -5 -2 3 -3.47 -1 3.12 -1 + -5 -2 3 -3.48 -1 3.12 60 + -5 -2 3 -3.47 -1 3.12 61 + -4 -3 3.06 -2.14 -1 3.7 -1 + -4 -3 3.06 -2.14 -2 3.66 42 + -3.48 -2 3.06 -2.14 -1 3.7 -1 + -3.48 -2 3.06 -2.14 -1 3.7 62 + -3.47 -2 3.06 -2.14 -1 3.7 63 + -5 -1 3 -2.14 0 3.79 -1 + -5 -1 3 -3.48 0 3.12 -1 + -5 -1 3 -4 0 3.1 80 + -5 -1 3 -3.48 0 3.12 81 + -4 -1 3.1 -2.14 0 3.79 -1 + -4 -1 3.1 -2.14 0 3.79 82 + -3.48 -1 3.12 -2.14 0 3.79 83 + -3 -5 2 0.865873 0.01 4.03 -1 + -3 -5 2 0 -2.97979 3.52 -1 + -3 -5 3 -1 -3 3.52 -1 + -3 -5 3 -2 -3 3.52 -1 + -3 -5 3 -2 -4 3.1 5 + -3 -4 3.04 -2 -3 3.52 25 + -2 -5 3 -1 -3 3.52 -1 + -2 -5 3 -1 -4 3.1 -1 + -2 -5 3 -1 -4 3.1 6 + -2 -5 3 -1 -4 3 7 + -2 -4 3 -1 -3 3.52 -1 + -2 -4 3.1 -1 -3 3.52 26 + -2 -4 3 -1 -3 3.26 27 + -1 -5 2 0 -2.97979 3.26 -1 + -1 -5 2 0 -4 3 -1 + -1 -5 2.25 0 -4 3 8 + -1 -5 2 0 -4 3 9 + -1 -4 2.25 0 -2.97979 3.26 -1 + -1 -4 2.25 0 -2.97979 3 29 + -1 -4 2.5 -0.0224682 -2.97979 3.26 28 + -3 -3 2.5 0.865873 0.01 4.03 -1 + -3 -3 3.24 0.5 0.01 4.03 -1 + -3 -3 3.24 0.05 -1.71 3.66 -1 + -3 -3 3.24 0.05 -1.71 3.66 44 + -3 -3 3.24 0.05 -1.71 3.61 45 + -2.14 -2 3.66 0.5 0.01 4.03 -1 + -2.14 -1 3.7 -0.02 0.01 4.03 84 + -2.14 -2 3.66 0.5 -0.45 3.9 64 + -2.14 -3 2.5 0.865873 0.01 4.03 -1 + -2 -3 2.5 0.865873 -1.66565 3.61 -1 + -2 -3 3.26 0.52 -1.7 3.61 -1 + -2 -3 3.26 0.52 -1.7 3.52 47 + -2 -3 3.32 0.52 -1.7 3.61 46 + -1 -3 2.5 0.865873 -1.66565 3.26 49 + -2.14 -2 3.61 0.5 0.01 4.03 -1 + -2.14 -1 3.7 0.5 0.01 4.03 85 + -2.14 -2 3.61 0.5 -0.45 3.9 65 + -5 0 2 0.423859 5 4.03 -1 + -5 0 2.94 -2 5 3.79 -1 + -5 0 2.95 -2 3 3.79 -1 + -5 0 2.95 -4 3 3.1 -1 + -5 0 3 -4 1 3.1 -1 + -5 0 3 -4 1 3.07 100 + -5 0 3 -4 1 3.1 101 + -5 1 2.95 -4 3 3.07 -1 + -5 1 2.95 -4 2 3.07 -1 + -5 1 2.95 -4 2 3 120 + -5 1 2.95 -4 2 3.07 121 + -5 2 2.95 -4 3 3.04 141 + -4 0 2.95 -2 3 3.79 -1 + -4 0 3.07 -2.14 1 3.79 -1 + -4 0 3.07 -3 1 3.59 102 + -4 0 3.1 -2.14 1 3.79 103 + -4 1 2.95 -2 3 3.59 -1 + -4 1 2.95 -3 3 3.59 -1 + -4 1 2.95 -3 2 3.59 -1 + -4 1 2.95 -3 2 3.55 122 + -4 1 3.07 -3 2 3.59 123 + -4 2 2.95 -3 3 3.55 143 + -3 1 3.55 -2 2 3.59 124 + -5 2 2.94 -2 5 3.55 -1 + -5 2 3 -4 5 3.04 -1 + -5 2 3 -4 4 3.04 -1 + -5 2 3 -4 3 3.04 140 + -5 3 3 -4 4 3.04 -1 + -5 3 3 -4 4 3 160 + -5 3 3 -4 4 3.04 161 + -5 4 3 -4 5 3 -1 + -5 4 3 -4 5 3 180 + -5 4 3 -4 5 3 181 + -4 2 2.94 -2 5 3.55 -1 + -4 2 2.94 -2 4 3.55 -1 + -4 2 2.95 -3 4 3.24 -1 + -4 2 2.95 -3 3 3.24 142 + -4 3 3 -3 4 3.24 -1 + -4 3 3 -3 4 3.04 162 + -4 3 3.03 -3 4 3.24 163 + -3 2 2.94 -2 4 3.55 -1 + -3 2 3.24 -2 3 3.55 144 + -3 3 2.94 -2 4 3.24 164 + -4 4 3 -2 5 3.03 -1 + -4 4 3 -3 5 3.03 -1 + -4 4 3 -3 5 3 182 + -4 4 3 -3 5 3.03 183 + -3 4 3 -2 5 3.03 184 + -3 0 2 0.423859 5 4.03 -1 + -3 0 2.16 0.423859 3 4.03 -1 + -3 0 3.02 -0.02 3 4.03 -1 + -3 0 3.42 -0.02 2 4.03 -1 + -3 0 3.42 -2 2 3.79 -1 + -3 0 3.42 -2 1 3.79 104 + -3 1 3.42 -2 2 3.59 125 + -2.14 0 3.42 -0.02 1 4.03 105 + -3 1 3.02 -1 3 3.59 -1 + -3 2 3.53 -2 3 3.59 145 + -2 1 3.02 -1 3 3.59 -1 + -2 1 3.02 -1 2 3.59 126 + -2 2 3.02 -1 3 3.59 -1 + -2 2 3.08 -1 3 3.59 146 + -2 2 3.02 -1 3 3.59 147 + -2 0.01 2.16 0.423859 3 4.03 -1 + -2 0.01 2.16 0.423859 2 4.03 -1 + -2 0.01 3.02 0.25 2 4.03 -1 + -2 0.88 3.02 0.25 2 3.42 127 + -2 0.01 3.13 0.25 1 4.03 106 + -1 0.88 2.16 0.423859 2 3.13 128 + -1 1.74992 2.16 0.423859 3 3.08 -1 + -1 2 2.41 0 3 3.08 148 + -1 1.74992 2.16 0.423859 3 3.02 149 + -3 3 2 0 5 3.53 -1 + -3 3 2.92 -1 5 3.53 -1 + -3 3 2.94 -2 5 3.53 -1 + -3 3 2.94 -2 4 3.53 165 + -3 4 2.94 -2 5 3.03 185 + -2 3 2.92 -1 5 3.53 -1 + -2 3 2.92 -1 4 3.53 -1 + -2 3 2.92 -1 4 3.53 166 + -2 3 2.92 -1 4 3.53 167 + -2 4 2.92 -1 5 3 -1 + -2 4 2.94 -1 5 3 186 + -2 4 2.92 -1 5 3 187 + -1 3 2 0 5 3.08 -1 + -1 3 2.41 0 4 3.08 -1 + -1 3 2.51 0 4 3.08 168 + -1 3 2.41 0 4 3.08 169 + -1 4 2 0 5 3 -1 + -1 4 2 0 5 3 188 + -1 4 2 0 5 2.92 189 + -1 -5 -1.11 5 5 4.03 -1 + -1 -5 -1.11 5 0.04 4.03 -1 + -1 -5 -1.11 2.41 0.04 4.03 -1 + -0.0224682 -5 -1.11 2.41 0.04 2.52 -1 + -0.0224682 -5 -1.11 2.17 -1.69 2.5 -1 + 0.86 -3.00269 -1.11 2.17 -1.69 0.9 -1 + 0.86 -3.00269 -1.11 2.17 -1.69 0.9 -1 + 0.861419 -3 -1.11 2.17 -1.71297 0.81 54 + 0.86 -3.00269 -1.11 0.933226 -1.69 0.9 52 + 0.861419 -3.00269 -1.11 1.82 -1.71297 0.9 53 + -0.0224682 -5 0.15 2 -1.69 2.5 -1 + 1 -5 0.98 2 -4 2 -1 + 1 -5 0.98 2 -4 2 13 + 1 -5 0.98 2 -4 2 12 + -0.0224682 -4 0.15 2 -1.69 2.5 -1 + 0.933226 -4 0.81 2 -3 1.64 -1 + 0.933226 -4 0.81 1.82 -3 1.64 32 + 1.19 -4 0.81 2 -3 1.64 33 + -0.0224682 -3.00269 0.15 0.933226 -1.69 2.5 51 + 0.86 -2 -1.11 2.41 0.04 2.52 -1 + 0.86 -2 -1.11 2.41 0.04 0.6 -1 + 0.86 -2 -1.11 2.28 -0.796891 0.6 -1 + 0.861419 -2 -1.11 2.28 -0.82 -0.1 75 + 0.86 -1.71297 -1.11 1.31973 -0.796891 0.6 73 + 0.861419 -1.71297 -1.11 2.41 0.04 0.6 -1 + 0.861419 -1.71297 -1.11 2.28 -0.796891 0.6 74 + 1.31973 -0.82 -0.19 2.41 0.04 0.6 95 + 0.86 -1.69 0.15 2.41 0.04 2.52 -1 + 0.86 -1.69 0.15 2.41 0.04 1.62 -1 + 0.86 -1.69 0.15 1.31973 -0.796891 1.62 72 + 1.168 -0.819301 0.2 2.41 0.04 1.62 -1 + 1.31973 -0.796891 0.2 2.41 0.04 0.65 94 + 1.168 -0.819301 0.6 1.38 0.04 1.62 93 + 0.86 -1.69 0.15 1.38 0.04 2.52 -1 + 1.11 -0.819301 0.65 1.38 0.04 1.62 92 + 0.86 -1.69 0.15 1.168 -0.819301 2.52 71 + -1 -5 0.15 1.19 0.04 4.03 -1 + -1 -5 0.15 1.19 -1.66565 3.32 -1 + 0 -5 0.9 1.19 -3.00269 2.25 -1 + 0 -5 1.64 1.19 -4 2.25 -1 + 0 -5 1.64 1.19 -4 2.25 10 + 0 -5 1.64 1.19 -4 2 11 + 0 -4 0.9 1.19 -3.00269 2.25 31 + -1 -4 0.15 0.933226 -1.66565 3.32 -1 + -0.0224682 -4 0.15 0.933226 -1.66565 2.52 -1 + -0.0224682 -2.97979 0.15 0.865873 -1.66565 2.52 50 + -0.0224682 -4 0.9 0.933226 -2.97979 2.5 30 + -1 -3 2.52 0.865873 -1.66565 3.32 48 + -0.02 -1.71 1.57 1.168 0.04 4.03 -1 + 0.52 -1.7 1.57 1.168 0.04 3.32 -1 + 0.69 -1.66565 1.57 1.168 0.04 2.52 -1 + 0.82 -1.66565 1.62 1.168 -0.819301 2.52 70 + 0.69 -0.83 1.57 1.168 0.04 2.45 -1 + 0.82 -0.83 1.57 1.168 0.04 2.45 91 + 0.69 -0.83 1.57 1.11 0.04 2.45 90 + 0.52 -1.7 2.36 0.865873 0.03 3.32 -1 + 0.52 -1.7 2.45 0.865873 -0.83 3.32 69 + 0.69 -0.85 2.36 0.82 0.03 3.07 89 + -0.02 -1.71 2.36 0.82 0.03 4.03 -1 + 0.05 -1.71 2.45 0.82 -0.45 3.9 -1 + 0.52 -1.7 2.45 0.82 -0.83 3.32 68 + 0.05 -1.71 3.07 0.8 -0.45 3.9 -1 + 0.05 -1.71 3.07 0.8 -0.85 3.61 67 + 0.05 -1.71 3.07 0.8 -0.45 3.9 66 + -0.02 -0.85 2.36 0.8 0.03 4.03 -1 + 0.29 -0.85 2.36 0.8 0.03 3.15 88 + -0.02 -0.85 3.07 0.8 0.02 4.03 -1 + 0.29 -0.85 3.07 0.8 0.02 3.9 87 + -0.02 -0.45 3.15 0.5 0.02 4.03 86 + 1.82 -5 -0.19 5 0.04 1 -1 + 1.82 -5 0 5 -3 1 -1 + 1.82 -5 0 4 -3 1 -1 + 1.82 -5 0 3 -3 1 -1 + 2 -5 0 3 -4 1 -1 + 2 -5 0.34 3 -4 1 14 + 2 -5 0 3 -4 1 15 + 1.82 -4 0.34 3 -3 0.98 -1 + 1.82 -4 0.36 3 -3 0.98 34 + 2 -4 0.34 3 -3 0.98 35 + 3 -5 0 4 -3 0.36 -1 + 3 -5 0 4 -4 0.34 16 + 3 -4 0.09 4 -3 0.36 36 + 3 -5 0 5 -3 0.34 -1 + 3 -5 0 4 -3 0.34 -1 + 3 -5 0 4 -4 0.06 17 + 3 -4 0.06 4 -3 0.34 37 + 4 -5 0 5 -3 0.09 -1 + 4 -5 0 5 -4 0.06 -1 + 4 -5 0 5 -4 0.06 18 + 4 -5 0 5 -4 0 19 + 4 -4 0 5 -3 0.09 -1 + 4 -4 0 5 -3 0.09 38 + 4 -4 0 5 -3 0.06 39 + 1.82 -3 -0.19 5 0.04 0.81 -1 + 1.82 -3 -0.19 4 0.04 0.81 -1 + 1.82 -3 -0.1 4 -1 0.81 -1 + 1.82 -3 -0.1 4 -2 0.81 -1 + 1.82 -3 -0.1 3 -2 0.81 55 + 2.17 -3 -0.1 4 -2 0.36 56 + 2.17 -3 -0.1 4 -1 0.36 -1 + 3 -3 0.07 4 -2 0.36 57 + 2.17 -2 -0.1 4 -1 0.11 77 + 2.17 -2 -0.19 4 0.04 0.2 -1 + 2.17 -2 -0.19 4 -0.82 0.11 76 + 2.28 -1 -0.19 4 0.04 0.2 -1 + 2.28 -0.82 -0.19 4 0.04 0.2 96 + 2.28 -1 -0.19 4 0 0.11 97 + 4 -3 0 5 0 0.11 -1 + 4 -3 0 5 -1 0.09 -1 + 4 -3 0 5 -2 0.09 -1 + 4 -3 0 5 -2 0.09 58 + 4 -3 0 5 -2 0.09 59 + 4 -2 0 5 -1 0.07 79 + 4 -2 0 5 0 0.11 -1 + 4 -2 0 5 -1 0.11 78 + 4 -1 0 5 0 0.11 -1 + 4 -1 0 5 0 0.11 98 + 4 -1 0 5 0 0.11 99 + -0.02 0 -0.22 5 5 4.03 -1 + -0.02 0.01 -0.22 3 5 4.03 -1 + -0.02 0.01 -0.06 2.41 1.76 4.03 -1 + 0.427372 0.04 -0.06 2.41 1.76 1.57 -1 + 0.427372 0.04 0 2 1.76 1.57 -1 + 0.82 0.04 0.37 1.38 0.9 1.57 -1 + 1.05 0.04 0.37 1.38 0.9 1.57 113 + 0.82 0.04 0.37 1.11 0.9 1.57 112 + 0.427372 0.89 0 2 1.76 1.33 -1 + 0.427372 0.89 0.13 1.05 1.75 1.33 -1 + 0.76 0.89 0.13 1.05 1.75 1.33 133 + 0.427372 0.89 0.13 0.82 1.75 1.33 132 + 0.76 0.9 0 2 1.76 0.37 134 + 1.05 0.04 -0.06 2.41 1.76 0.65 -1 + 1.05 0.04 -0.06 2.41 0.91 0.65 -1 + 1.05 0.04 -0.06 2.12 0.91 0.65 114 + 1.38 0.04 -0.06 2.41 0.91 0.65 115 + 1.05 0.9 -0.06 2.12 1.76 0.37 135 + -0.02 0.01 0.99 1.11 1.74992 4.03 -1 + 0.423859 0.03 0.99 1.11 1.74992 2.36 -1 + 0.483769 0.03 1.33 1.11 0.89 2.36 -1 + 0.69 0.03 1.33 1.11 0.89 2.36 111 + 0.483769 0.03 1.33 0.82 0.89 2.36 110 + 0.423859 0.889915 0.99 0.82 1.74992 2.19 -1 + 0.427372 0.889915 0.99 0.82 1.74016 2.19 131 + 0.423859 0.889915 0.99 0.483769 1.74992 2.19 130 + -0.02 0.01 2.16 0.69 1.74992 4.03 -1 + 0.25 0.02 2.16 0.69 1.74992 3.15 -1 + 0.25 0.02 2.19 0.69 0.889915 3.15 -1 + 0.29 0.02 2.19 0.69 0.889915 3.15 109 + 0.25 0.02 2.19 0.483769 0.889915 3.15 108 + 0.25 0.88 2.16 0.483769 1.74992 3.13 129 + -0.02 0.01 3.13 0.29 0.88 4.03 107 + 0 1.74016 -0.22 3 5 2.51 -1 + 0 1.74016 -0.22 3 4 2.41 -1 + 0 1.74016 0.03 1 4 2.41 -1 + 0.427372 1.74016 0.03 0.77 2.61 1.06 -1 + 0.427372 1.74016 0.03 0.77 2.61 0.99 153 + 0.427372 1.74016 0.03 0.77 2.61 1.06 152 + 0 1.74016 0.99 1 4 2.41 -1 + 0 1.74016 0.99 0.48 3 2.41 -1 + 0.423859 1.74016 0.99 0.48 2.61 2.16 151 + 0 1.74992 1.06 0.48 3 2.41 150 + 0 2.61 1.06 1 4 2.41 171 + 0.48 1.75 -0.22 3 4 1.06 -1 + 0.48 1.75 -0.22 2 4 1.06 -1 + 0.76 1.75 -0.22 1.69 2.62 0.13 154 + 0.48 2.61 0.03 2 4 1.06 173 + 0.76 1.75 -0.22 3 4 0.26 -1 + 0.76 1.75 -0.22 2 2.62 0.13 155 + 0.77 2.61 -0.22 3 4 0.26 175 + 0 2.61 0.03 3 5 2.51 -1 + 0 3 1.72 1 5 2.51 -1 + 0 3 1.72 1 4 2.51 170 + 0 4 1.72 1 5 2.51 -1 + 0 4 2 1 5 2.51 190 + 0 4 1.72 1 5 2.51 191 + 0.48 2.61 0.03 3 5 2 -1 + 0.48 2.61 0.97 2 5 2 -1 + 0.48 2.61 0.97 2 4 1.72 172 + 1 4 1 2 5 2 192 + 0.77 2.61 0.03 3 5 1.72 -1 + 0.77 2.61 0.03 3 4 0.97 174 + 1 4 0.97 2 5 1.72 193 + 1.69 0 -0.22 5 5 1 -1 + 1.69 0 -0.22 5 3 0.28 -1 + 1.69 0 -0.22 4 3 0.28 -1 + 2.12 0 -0.06 4 2 0.28 -1 + 2.12 0 -0.06 4 1 0.28 -1 + 2.12 0.04 -0.06 4 1 0.28 116 + 2.41 0 0.11 4 1 0.28 117 + 2.12 0.91 -0.06 4 2 0.28 137 + 1.69 0.91 -0.22 4 3 0.22 -1 + 1.69 0.91 -0.22 4 3 0.22 -1 + 1.69 1.76 -0.22 4 3 0.09 156 + 2 0.91 -0.06 4 2 0.22 136 + 2 1.76 0 4 3 0.22 157 + 4 0 0 5 3 0.28 -1 + 4 0 0 5 1 0.28 -1 + 4 0 0 5 1 0.28 118 + 4 0 0 5 1 0.11 119 + 4 1 0 5 3 0.28 -1 + 4 1 0 5 2 0.28 -1 + 4 1 0 5 2 0.28 138 + 4 1 0 5 2 0.28 139 + 4 2 0 5 3 0.22 159 + 1.69 2 -0.22 5 5 1 -1 + 1.69 2.62 -0.22 4 5 1 -1 + 1.69 2.62 -0.22 4 4 0.26 -1 + 1.69 2.62 -0.22 4 4 0.26 176 + 1.69 2.62 -0.22 4 4 0.09 177 + 2 4 0 4 5 1 -1 + 2 4 0 3 5 1 -1 + 2 4 0 3 5 1 194 + 2 4 0 3 5 0.97 195 + 3 4 0 4 5 0.26 -1 + 3 4 0 4 5 0.26 196 + 3 4 0 4 5 0.26 197 + 4 2 0 5 5 0.22 -1 + 4 2 0 5 4 0.22 -1 + 4 2 0 5 3 0.22 158 + 4 3 0 5 4 0.09 -1 + 4 3 0 5 4 0.09 178 + 4 3 0 5 4 0.09 179 + 4 4 0 5 5 0.03 -1 + 4 4 0 5 5 0.03 198 + 4 4 0 5 5 0.03 199 +endnode +endmodelgeom wsf10_s11_04 +donemodel wsf10_s11_04 diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/TIN01_D01_09.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/TIN01_D01_09.mdl new file mode 100644 index 0000000..0aa6e3b Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/TIN01_D01_09.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/TTR01_G02_02.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/TTR01_G02_02.mdl new file mode 100644 index 0000000..4e3b82a Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/TTR01_G02_02.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/tdc01_g02_01.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/tdc01_g02_01.mdl new file mode 100644 index 0000000..e7b74b1 Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/tdc01_g02_01.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/tdc01_g02_03.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/tdc01_g02_03.mdl new file mode 100644 index 0000000..00f98db Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/tdc01_g02_03.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_D02_04.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_D02_04.mdl new file mode 100644 index 0000000..e8fd3d2 Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_D02_04.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_a02_02.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_a02_02.mdl new file mode 100644 index 0000000..2f8487a Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_a02_02.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_a02_03.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_a02_03.mdl new file mode 100644 index 0000000..95a2dba Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_a02_03.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_a16_02.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_a16_02.mdl new file mode 100644 index 0000000..3b1edad Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_a16_02.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d08_01.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d08_01.mdl new file mode 100644 index 0000000..2904cf1 Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d08_01.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d08_02.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d08_02.mdl new file mode 100644 index 0000000..e2e1b59 Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d08_02.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d09_02.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d09_02.mdl new file mode 100644 index 0000000..e12a824 Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d09_02.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d11_01.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d11_01.mdl new file mode 100644 index 0000000..6531e2c Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d11_01.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d15_02.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d15_02.mdl new file mode 100644 index 0000000..abfa38d Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_d15_02.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_f08_02.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_f08_02.mdl new file mode 100644 index 0000000..d54a954 Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_f08_02.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_f09_02.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_f09_02.mdl new file mode 100644 index 0000000..2231fec Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/tin01_f09_02.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/wsf10_p01_01.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/wsf10_p01_01.mdl new file mode 100644 index 0000000..3acaac2 Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/wsf10_p01_01.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/wsf10_s01_02.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/wsf10_s01_02.mdl new file mode 100644 index 0000000..60eb59b Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/wsf10_s01_02.mdl differ diff --git a/tests/fixtures/oracle/tangent_pairs/game_binary/wsf10_s11_04.mdl b/tests/fixtures/oracle/tangent_pairs/game_binary/wsf10_s11_04.mdl new file mode 100644 index 0000000..d2b97a0 Binary files /dev/null and b/tests/fixtures/oracle/tangent_pairs/game_binary/wsf10_s11_04.mdl differ diff --git a/tests/fixtures/types/CTL_BTN_PRE_116.mdl b/tests/fixtures/types/CTL_BTN_PRE_116.mdl new file mode 100644 index 0000000..9d3307f Binary files /dev/null and b/tests/fixtures/types/CTL_BTN_PRE_116.mdl differ diff --git a/tests/fixtures/types/PLC_Log.mdl b/tests/fixtures/types/PLC_Log.mdl new file mode 100644 index 0000000..157de47 Binary files /dev/null and b/tests/fixtures/types/PLC_Log.mdl differ diff --git a/tests/fixtures/types/a_ba.mdl b/tests/fixtures/types/a_ba.mdl new file mode 100644 index 0000000..ec9bc30 Binary files /dev/null and b/tests/fixtures/types/a_ba.mdl differ diff --git a/tests/fixtures/types/c_beardire.mdl b/tests/fixtures/types/c_beardire.mdl new file mode 100644 index 0000000..d4a70fd Binary files /dev/null and b/tests/fixtures/types/c_beardire.mdl differ diff --git a/tests/fixtures/types/gidy_sun.mdl b/tests/fixtures/types/gidy_sun.mdl new file mode 100644 index 0000000..331cbd4 Binary files /dev/null and b/tests/fixtures/types/gidy_sun.mdl differ diff --git a/tests/fixtures/types/plc_a01.mdl b/tests/fixtures/types/plc_a01.mdl new file mode 100644 index 0000000..f8aa94f Binary files /dev/null and b/tests/fixtures/types/plc_a01.mdl differ diff --git a/tests/fixtures/types/plc_a02.mdl b/tests/fixtures/types/plc_a02.mdl new file mode 100644 index 0000000..9a063dc Binary files /dev/null and b/tests/fixtures/types/plc_a02.mdl differ diff --git a/tests/fixtures/types/plc_a03.mdl b/tests/fixtures/types/plc_a03.mdl new file mode 100644 index 0000000..35db9a0 Binary files /dev/null and b/tests/fixtures/types/plc_a03.mdl differ diff --git a/tests/fixtures/types/plc_maptr02.mdl b/tests/fixtures/types/plc_maptr02.mdl new file mode 100644 index 0000000..df60217 Binary files /dev/null and b/tests/fixtures/types/plc_maptr02.mdl differ diff --git a/tests/fixtures/types/pmh0_chest050.mdl b/tests/fixtures/types/pmh0_chest050.mdl new file mode 100644 index 0000000..e45c6a3 Binary files /dev/null and b/tests/fixtures/types/pmh0_chest050.mdl differ diff --git a/tests/fixtures/types/ttw01_a04_04.mdl b/tests/fixtures/types/ttw01_a04_04.mdl new file mode 100644 index 0000000..6014599 Binary files /dev/null and b/tests/fixtures/types/ttw01_a04_04.mdl differ diff --git a/tests/fixtures/types/wmgfs_t_011.mdl b/tests/fixtures/types/wmgfs_t_011.mdl new file mode 100644 index 0000000..c17314a Binary files /dev/null and b/tests/fixtures/types/wmgfs_t_011.mdl differ
.mdl
Drop an .mdl here
or click to choose a file
+ Binary MDL → decompiled ASCII + ASCII MDL → linted (warnings only) +
No file loaded yet.