diff --git a/public/ghost-visual.js b/public/ghost-visual.js new file mode 100644 index 0000000..3cfd9bd --- /dev/null +++ b/public/ghost-visual.js @@ -0,0 +1,188 @@ +/** + * ghost-visual.js — Newbury Nights shared ghost visual (Phase 2) + * + * Replicates the original's architecture: ONE shared base body, recoloured by a + * per-colour gradient (recovered from GhostType_* assets). No per-ghost models. + * + * Tier 0 (always): procedural wisp mesh + vertical gradient material. + * Tier 1 (progressive enhancement): FX billboards (trail / glow / smoke) + * layered on top when textures + GPU budget allow. + * Special: two roster ghosts can use real meshes (Ghost_Baseball/Bat) via + * the `meshLoader` hook. + * + * Engine-agnostic about your spawn/capture logic — this only produces the + * Object3D you place in the scene. Drop into your Three.js r160 app. + * + * Usage: + * import { createGhostVisual, GHOST_GRADIENTS } from './ghost-visual.js'; + * const g = createGhostVisual(THREE, { color: 'Red', fx: true }); + * scene.add(g.object3d); + * // each frame: + * g.update(dt, elapsed); + */ + +export const GHOST_GRADIENTS = { + Red: { top: '#F65151', bottom: '#FF2678' }, // GhostType_Angry + Yellow: { top: '#B57F0B', bottom: '#FFF35D' }, // GhostType_Crazy + Blue: { top: '#529EFF', bottom: '#51EAF1' }, // GhostType_Sad +}; + +const WISP_VERT = ` + varying float vY; + varying vec2 vUv; + uniform float uTime; + void main() { + vUv = uv; + vec3 p = position; + // gentle billow so the wisp breathes + float w = sin(uTime * 1.6 + position.y * 3.0) * 0.04; + p.x += w * (0.5 + uv.y); + vY = uv.y; + gl_Position = projectionMatrix * modelViewMatrix * vec4(p, 1.0); + } +`; + +const WISP_FRAG = ` + precision mediump float; + varying float vY; + varying vec2 vUv; + uniform vec3 uTop; + uniform vec3 uBottom; + uniform float uAlpha; + uniform float uTime; + void main() { + vec3 col = mix(uBottom, uTop, vY); // vertical gradient + // soft radial falloff around the body centreline for a wispy edge + float edge = smoothstep(0.5, 0.05, abs(vUv.x - 0.5)); + float fade = edge * (0.65 + 0.35 * sin(uTime * 2.0 + vY * 6.2831)); + float a = uAlpha * mix(0.45, 1.0, vY) * fade; // thinner at the tail + gl_FragColor = vec4(col, a); + } +`; + +function hexToRGB(THREE, hex) { return new THREE.Color(hex); } + +/** + * Build the shared wisp body (a tapered, double-sided plane-ish blob). + * Kept cheap: a subdivided cone/teardrop so the gradient + billow read well. + */ +function buildWispGeometry(THREE) { + // teardrop: radius shrinks toward the tail (top in UV space = head) + const geo = new THREE.CylinderGeometry(0.0, 0.5, 1.2, 18, 8, true); + geo.translate(0, 0.1, 0); + return geo; +} + +export function createGhostVisual(THREE, opts = {}) { + const color = opts.color && GHOST_GRADIENTS[opts.color] ? opts.color : 'Blue'; + const grad = GHOST_GRADIENTS[color]; + const wantFx = opts.fx !== false; + + const group = new THREE.Group(); + group.name = `ghost-${color}`; + + // --- Tier 0: wisp body + gradient material --- + const uniforms = { + uTime: { value: 0 }, + uTop: { value: hexToRGB(THREE, grad.top) }, + uBottom: { value: hexToRGB(THREE, grad.bottom) }, + uAlpha: { value: 1.0 }, + }; + const mat = new THREE.ShaderMaterial({ + vertexShader: WISP_VERT, + fragmentShader: WISP_FRAG, + uniforms, + transparent: true, + depthWrite: false, + side: THREE.DoubleSide, + blending: THREE.NormalBlending, + }); + const body = new THREE.Mesh(buildWispGeometry(THREE), mat); + group.add(body); + + // --- Tier 1: FX billboards (progressive enhancement) --- + const fxSprites = []; + function addFxBillboard(texture, scale, yOffset, opacity, blend) { + const m = new THREE.SpriteMaterial({ + map: texture, + color: new THREE.Color(grad.top), + transparent: true, + opacity, + depthWrite: false, + blending: blend ?? THREE.AdditiveBlending, + }); + const s = new THREE.Sprite(m); + s.scale.setScalar(scale); + s.position.y = yOffset; + group.add(s); + fxSprites.push(s); + return s; + } + + // caller passes a loaded-texture map when fx enabled; see attachFx() + let fxAttached = false; + function attachFx(textures) { + if (!wantFx || fxAttached || !textures) return; + if (textures.glow) addFxBillboard(textures.glow, 1.6, 0.1, 0.5); + if (textures.trail) addFxBillboard(textures.trail, 1.2, -0.4, 0.35); + fxAttached = true; + } + + // --- optional special mesh override (Ghost_Baseball / Ghost_Bat) --- + function useSpecialMesh(mesh) { + if (!mesh) return; + body.visible = false; + mesh.traverse?.(o => { + if (o.isMesh && o.material) { + o.material.color = new THREE.Color(grad.top); + } + }); + group.add(mesh); + } + + // --- spawn / capture animation helpers --- + let state = 'idle'; + let stateT = 0; + function setState(s) { state = s; stateT = 0; } + + function update(dt, elapsed) { + uniforms.uTime.value = elapsed; + stateT += dt; + // bob + group.position.y += Math.sin(elapsed * 1.8) * dt * 0.15; + // billboard FX face camera handled by Sprite automatically + if (state === 'spawn') { + const k = Math.min(stateT / 0.6, 1); + group.scale.setScalar(k); + uniforms.uAlpha.value = k; + if (k >= 1) setState('idle'); + } else if (state === 'capture') { + const k = Math.min(stateT / 0.5, 1); + group.scale.setScalar(1 - k); + uniforms.uAlpha.value = 1 - k; + } + } + + // start hidden, play spawn + group.scale.setScalar(0); + setState('spawn'); + + return { + object3d: group, + color, + update, + setState, // 'idle' | 'spawn' | 'capture' + attachFx, // call with {glow, trail, smoke} THREE.Textures + useSpecialMesh, // call with a loaded Ghost_Baseball/Bat mesh + setColor(next) { + const g2 = GHOST_GRADIENTS[next]; if (!g2) return; + uniforms.uTop.value.set(g2.top); + uniforms.uBottom.value.set(g2.bottom); + fxSprites.forEach(s => s.material.color.set(g2.top)); + }, + dispose() { + body.geometry?.dispose?.(); mat.dispose?.(); + fxSprites.forEach(s => s.material?.map?.dispose?.()); + }, + }; +} diff --git a/public/ghosts.enriched.json b/public/ghosts.enriched.json new file mode 100644 index 0000000..14a3964 --- /dev/null +++ b/public/ghosts.enriched.json @@ -0,0 +1,2666 @@ +[ + { + "id": "air-marshall-brooks", + "name": "Air Marshall Brooks", + "color": "Red", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 4, + "rangePips": 1, + "chargePips": 3, + "healthMax": 263, + "damageMax": 161, + "abilityId": "sentry", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SentryIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "barney-mcphly", + "name": "Barney McPhly", + "color": "Red", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 4, + "rangePips": 1, + "chargePips": 3, + "healthMax": 263, + "damageMax": 161, + "abilityId": "sentry", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SentryIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "hilary-delivery", + "name": "Hilary Delivery", + "color": "Red", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 4, + "rangePips": 1, + "chargePips": 2, + "healthMax": 300, + "damageMax": 192, + "abilityId": "speed-boost", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SpeedBoostIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "lumberjack-leroy", + "name": "Lumberjack Leroy", + "color": "Red", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 4, + "rangePips": 1, + "chargePips": 3, + "healthMax": 263, + "damageMax": 161, + "abilityId": "jump", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "JumpIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "nagging-nathan", + "name": "Nagging Nathan", + "color": "Red", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 3, + "rangePips": 3, + "chargePips": 2, + "healthMax": 300, + "damageMax": 192, + "abilityId": "speed-boost", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SpeedBoostIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "poor-thaddeus", + "name": "Poor Thaddeus", + "color": "Red", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 2, + "rangePips": 1, + "chargePips": 3, + "healthMax": 338, + "damageMax": 212, + "abilityId": "flight", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "FlightIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "vito-andale", + "name": "Vito Andale", + "color": "Red", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 4, + "rangePips": 1, + "chargePips": 3, + "healthMax": 263, + "damageMax": 161, + "abilityId": "ghost-gang", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SmokeDecoyIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "ben-batter-jackson", + "name": "Ben \"Batter\" Jackson", + "color": "Red", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 3, + "rangePips": 5, + "chargePips": 1, + "healthMax": 263, + "damageMax": 212, + "abilityId": "tracking-gloom", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HomingShotIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "doctor-julius", + "name": "Doctor Julius", + "color": "Red", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 3, + "rangePips": 4, + "chargePips": 2, + "healthMax": null, + "damageMax": null, + "abilityId": "healing-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HealPadIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "janick", + "name": "Janick", + "color": "Red", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": null, + "damageMax": null, + "abilityId": "gloombrella", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "GloomCeilingIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "jenny", + "name": "Jenny", + "color": "Red", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 3, + "rangePips": 4, + "chargePips": 2, + "healthMax": 338, + "damageMax": 192, + "abilityId": "healing-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HealPadIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "jeremy-jones", + "name": "Jeremy Jones", + "color": "Red", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": 300, + "damageMax": 176, + "abilityId": "gloombrella", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "GloomCeilingIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "jimothy", + "name": "Jimothy", + "color": "Red", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 3, + "rangePips": 4, + "chargePips": 2, + "healthMax": null, + "damageMax": null, + "abilityId": "ghost-gang", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SmokeDecoyIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "mad-fenton", + "name": "Mad Fenton", + "color": "Red", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 3, + "rangePips": 2, + "chargePips": 1, + "healthMax": 300, + "damageMax": 176, + "abilityId": "jump-blink", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "BlinkForwardIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "sir-kane-the-insane", + "name": "Sir Kane The Insane", + "color": "Red", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 2, + "rangePips": 1, + "chargePips": 2, + "healthMax": 413, + "damageMax": 225, + "abilityId": "random-blink", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "BlinkRandomIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "bobby-big-cheese-marchese", + "name": "Bobby \"Big Cheese\" Marchese", + "color": "Red", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": 263, + "damageMax": 225, + "abilityId": "invisibility", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "InvisibilityIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "chef-brennan", + "name": "Chef Brennan", + "color": "Red", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 3, + "rangePips": 3, + "chargePips": 1, + "healthMax": 300, + "damageMax": 212, + "abilityId": "heal", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HealIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "don-hernando", + "name": "Don Hernando", + "color": "Red", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 212, + "abilityId": "shifting-bait", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "MatchingDecoyIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "joe-rotten", + "name": "Joe Rotten", + "color": "Red", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": 300, + "damageMax": 192, + "abilityId": "jump-blink", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "BlinkForwardIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "lil-bo-pumpkins", + "name": "Lil' Bo Pumpkins", + "color": "Red", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 212, + "abilityId": "shifting-bait", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "MatchingDecoyIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "murray-andreeves", + "name": "Murray Andreeves", + "color": "Red", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 212, + "abilityId": "shifting-bait", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "MatchingDecoyIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "old-leon", + "name": "Old Leon", + "color": "Red", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": null, + "damageMax": null, + "abilityId": "gloom-wall", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "GloomWallIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "ugha", + "name": "Ugha", + "color": "Red", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 212, + "abilityId": "heal", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HealIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "blaze-m-barr", + "name": "Blaze M. Barr", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 3, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 212, + "abilityId": "firestarter", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "FireIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "butch-lindenburger", + "name": "Butch Lindenburger", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 3, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 212, + "abilityId": "healing-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HealPadIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "captain-archibald", + "name": "Captain Archibald", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 212, + "abilityId": "kraken-call", + "faceSprite": "ArchibaldIcon.png", + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": true, + "locations": [], + "abilityIcon": "ArchibaldIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "cassius-blackeye-sockem", + "name": "Cassius 'Blackeye' Sockem", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 3, + "rangePips": 1, + "chargePips": 1, + "healthMax": 338, + "damageMax": 192, + "abilityId": "jump-blink", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "BlinkForwardIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "crooked-sven-robin", + "name": "Crooked Sven Robin", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 3, + "rangePips": 2, + "chargePips": 2, + "healthMax": 313, + "damageMax": 212, + "abilityId": "speed-boost-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SpeedBoostPadIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "dr-drewell", + "name": "Dr. Drewell", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 3, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 212, + "abilityId": "powerful-potions", + "faceSprite": "DrewellIcon.png", + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": true, + "locations": [], + "abilityIcon": "DrewellIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "drew-jockstrap-jones", + "name": "Drew \"Jockstrap\" Jones", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 2, + "rangePips": 1, + "chargePips": 2, + "healthMax": 375, + "damageMax": 225, + "abilityId": "gloom-wall", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "GloomWallIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "graak", + "name": "Graak", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 2, + "rangePips": 2, + "chargePips": 1, + "healthMax": null, + "damageMax": null, + "abilityId": "jump-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "JumpPadIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "lady-e", + "name": "Lady E", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 3, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 178, + "abilityId": "hidden-portal", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HiddenPortalIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "lumber-zack", + "name": "Lumber Zack", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": null, + "damageMax": null, + "abilityId": "invisibility", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "InvisibilityIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "madame-digamberetto", + "name": "Madame Digamberetto", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 3, + "rangePips": 4, + "chargePips": 2, + "healthMax": 338, + "damageMax": 192, + "abilityId": "flight", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "FlightIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "maxine-turbo", + "name": "Maxine Turbo", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 212, + "abilityId": "drag-race", + "faceSprite": "HotrodIcon.png", + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": true, + "locations": [], + "abilityIcon": "HotrodIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "monsieur-forte", + "name": "Monsieur Forte", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 3, + "rangePips": 2, + "chargePips": 3, + "healthMax": 313, + "damageMax": 192, + "abilityId": "gloombrella", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "GloomCeilingIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "samuel-mason", + "name": "Samuel Mason", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 2, + "rangePips": 4, + "chargePips": 1, + "healthMax": 338, + "damageMax": 225, + "abilityId": "soul-shot", + "faceSprite": "SamuelMasonIcon.png", + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": true, + "locations": [], + "abilityIcon": "SamuelMasonIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "tragico", + "name": "Tragico", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 3, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 212, + "abilityId": "clown-car", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "ClownCar.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "trucker-dale", + "name": "Trucker Dale", + "color": "Red", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 2, + "rangePips": 4, + "chargePips": 1, + "healthMax": 338, + "damageMax": 225, + "abilityId": "gloom-engine", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "GloomEngine.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "alice", + "name": "Alice", + "color": "Yellow", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 5, + "rangePips": 1, + "chargePips": 3, + "healthMax": 263, + "damageMax": 161, + "abilityId": "speed-boost-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SpeedBoostPadIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "diana", + "name": "Diana", + "color": "Yellow", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 4, + "rangePips": 4, + "chargePips": 3, + "healthMax": 263, + "damageMax": 161, + "abilityId": "jump-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "JumpPadIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "james", + "name": "James", + "color": "Yellow", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 4, + "rangePips": 3, + "chargePips": 2, + "healthMax": 375, + "damageMax": 161, + "abilityId": "flight", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "FlightIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "luis-piedrecita", + "name": "Luis Piedrecita", + "color": "Yellow", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 3, + "rangePips": 5, + "chargePips": 3, + "healthMax": 300, + "damageMax": 135, + "abilityId": "ghost-gang", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SmokeDecoyIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "mr-mueller", + "name": "Mr. Mueller", + "color": "Yellow", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 4, + "rangePips": 4, + "chargePips": 3, + "healthMax": 300, + "damageMax": 176, + "abilityId": "random-blink", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "BlinkRandomIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "ms-sandri", + "name": "Ms. Sandri", + "color": "Yellow", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 3, + "rangePips": 3, + "chargePips": 2, + "healthMax": 375, + "damageMax": 161, + "abilityId": "jump", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "JumpIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "rufus", + "name": "Rufus", + "color": "Yellow", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 3, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 212, + "abilityId": "flight", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "FlightIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "wild-thomas", + "name": "Wild Thomas", + "color": "Yellow", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 4, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 161, + "abilityId": "jump", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "JumpIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "zeb-jackson", + "name": "Zeb Jackson", + "color": "Yellow", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 3, + "rangePips": 3, + "chargePips": 2, + "healthMax": 375, + "damageMax": 161, + "abilityId": "shifting-bait", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "MatchingDecoyIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "archibald-the-1st", + "name": "Archibald The 1st", + "color": "Yellow", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 3, + "rangePips": 2, + "chargePips": 2, + "healthMax": 375, + "damageMax": 176, + "abilityId": "heal", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HealIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "don-janko", + "name": "Don Janko", + "color": "Yellow", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 4, + "rangePips": 2, + "chargePips": 2, + "healthMax": 338, + "damageMax": 161, + "abilityId": "jump", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "JumpIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "doug", + "name": "Doug", + "color": "Yellow", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 4, + "rangePips": 2, + "chargePips": 1, + "healthMax": 375, + "damageMax": 161, + "abilityId": "healing-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HealPadIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "everett", + "name": "Everett", + "color": "Yellow", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 3, + "rangePips": 2, + "chargePips": 2, + "healthMax": 375, + "damageMax": 176, + "abilityId": "tracking-gloom", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HomingShotIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "garfield-gonzalez", + "name": "Garfield Gonzalez", + "color": "Yellow", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 4, + "rangePips": 5, + "chargePips": 1, + "healthMax": 338, + "damageMax": 161, + "abilityId": "jump-blink", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "BlinkForwardIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "nanna-borom", + "name": "Nanna Borom", + "color": "Yellow", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 3, + "rangePips": 3, + "chargePips": 3, + "healthMax": 338, + "damageMax": 161, + "abilityId": "teleportal", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "TeleportToPortalIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "phil", + "name": "Phil", + "color": "Yellow", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 3, + "rangePips": 2, + "chargePips": 2, + "healthMax": 375, + "damageMax": 176, + "abilityId": "tracking-gloom", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HomingShotIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "summer", + "name": "Summer", + "color": "Yellow", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 3, + "rangePips": 2, + "chargePips": 3, + "healthMax": 300, + "damageMax": 150, + "abilityId": "random-blink", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "BlinkRandomIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "timothy", + "name": "Timothy", + "color": "Yellow", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 3, + "rangePips": 2, + "chargePips": 2, + "healthMax": 413, + "damageMax": 176, + "abilityId": "speed-boost", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SpeedBoostIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "dave", + "name": "Dave", + "color": "Yellow", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 3, + "rangePips": 3, + "chargePips": 2, + "healthMax": 413, + "damageMax": 150, + "abilityId": "invisibility", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "InvisibilityIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "ivan-monroe", + "name": "Ivan Monroe", + "color": "Yellow", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 3, + "rangePips": 5, + "chargePips": 3, + "healthMax": 300, + "damageMax": 135, + "abilityId": "speed-boost", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SpeedBoostIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "jake-rosebud", + "name": "Jake Rosebud", + "color": "Yellow", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 4, + "rangePips": 4, + "chargePips": 2, + "healthMax": 263, + "damageMax": 176, + "abilityId": "invisibility", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "InvisibilityIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "matt-with-the-propeller-hat", + "name": "Matt with the propeller hat", + "color": "Yellow", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 4, + "rangePips": 4, + "chargePips": 2, + "healthMax": 263, + "damageMax": 176, + "abilityId": "invisibility", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "InvisibilityIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "ollie", + "name": "Ollie", + "color": "Yellow", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 5, + "rangePips": 1, + "chargePips": 2, + "healthMax": 338, + "damageMax": 150, + "abilityId": "speed-boost", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SpeedBoostIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "percy", + "name": "Percy", + "color": "Yellow", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 4, + "rangePips": 4, + "chargePips": 2, + "healthMax": null, + "damageMax": null, + "abilityId": "invisibility", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "InvisibilityIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "pickles", + "name": "Pickles", + "color": "Yellow", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 3, + "rangePips": 3, + "chargePips": 2, + "healthMax": 300, + "damageMax": 150, + "abilityId": "flight", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "FlightIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "professor-iken", + "name": "Professor Iken", + "color": "Yellow", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 3, + "rangePips": 5, + "chargePips": 3, + "healthMax": 300, + "damageMax": 135, + "abilityId": "jump-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "JumpPadIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "anomolo", + "name": "Anomolo", + "color": "Yellow", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 4, + "rangePips": 3, + "chargePips": 2, + "healthMax": 375, + "damageMax": 176, + "abilityId": "spew", + "faceSprite": "AnomoloIcon.png", + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": true, + "locations": [], + "abilityIcon": "AnomoloIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "chester-the-jester", + "name": "Chester The Jester", + "color": "Yellow", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 3, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 212, + "abilityId": "heal", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HealIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "daisy", + "name": "Daisy", + "color": "Yellow", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 4, + "rangePips": 3, + "chargePips": 2, + "healthMax": 375, + "damageMax": 176, + "abilityId": "speed-boost-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SpeedBoostPadIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "harry-cane", + "name": "Harry Cane", + "color": "Yellow", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 5, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 176, + "abilityId": "sonic-boom", + "faceSprite": "AirShowIcon.png", + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": true, + "locations": [], + "abilityIcon": "AirShowIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "kreatoru", + "name": "Kreatoru", + "color": "Yellow", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 4, + "rangePips": 3, + "chargePips": 2, + "healthMax": 375, + "damageMax": 176, + "abilityId": "bubble-curtain", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "BubbleShieldIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "old-niek", + "name": "Old Niek", + "color": "Yellow", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 3, + "rangePips": 3, + "chargePips": 3, + "healthMax": 338, + "damageMax": 161, + "abilityId": "sentry", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SentryIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "rat-shaun", + "name": "Rat Shaun", + "color": "Yellow", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 4, + "rangePips": 3, + "chargePips": 2, + "healthMax": 375, + "damageMax": 176, + "abilityId": "rat-king", + "faceSprite": "RatkingIcon.png", + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": true, + "locations": [], + "abilityIcon": "RatkingIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "the-bawa", + "name": "The Bawa", + "color": "Yellow", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 4, + "rangePips": 4, + "chargePips": 1, + "healthMax": 375, + "damageMax": 176, + "abilityId": "shadowflight", + "faceSprite": "BawaIcon.png", + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": true, + "locations": [], + "abilityIcon": "BawaIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "the-duke", + "name": "The Duke", + "color": "Yellow", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 4, + "rangePips": 3, + "chargePips": 2, + "healthMax": 338, + "damageMax": 176, + "abilityId": "random-blink", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "BlinkRandomIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "andy-lasky", + "name": "Andy Lasky", + "color": "Blue", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 1, + "rangePips": 5, + "chargePips": 2, + "healthMax": 375, + "damageMax": 176, + "abilityId": "tracking-gloom", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HomingShotIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "annie-bonnie", + "name": "Annie Bonnie", + "color": "Blue", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 2, + "rangePips": 4, + "chargePips": 2, + "healthMax": null, + "damageMax": null, + "abilityId": "tracking-gloom", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HomingShotIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "gary-attric", + "name": "Gary Attric", + "color": "Blue", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 2, + "rangePips": 4, + "chargePips": 2, + "healthMax": 375, + "damageMax": 176, + "abilityId": "tracking-gloom", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HomingShotIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "maiken-hill", + "name": "Maiken Hill", + "color": "Blue", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 1, + "rangePips": 2, + "chargePips": 3, + "healthMax": 413, + "damageMax": 192, + "abilityId": "shifting-bait", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "MatchingDecoyIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "molly-jones", + "name": "Molly Jones", + "color": "Blue", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": 413, + "damageMax": 176, + "abilityId": "healing-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HealPadIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "ol-elinor", + "name": "Ol' Elinor", + "color": "Blue", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": 413, + "damageMax": 176, + "abilityId": "teleportal", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "TeleportToPortalIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "ted-big-bun-bixby", + "name": "Ted \"Big Bun\" Bixby", + "color": "Blue", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": 413, + "damageMax": 176, + "abilityId": "heal", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HealIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "wendy-batt", + "name": "Wendy Batt", + "color": "Blue", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 2, + "rangePips": 4, + "chargePips": 1, + "healthMax": 375, + "damageMax": 176, + "abilityId": "gloom-wall", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "GloomWallIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "xiao-wen", + "name": "Xiao Wen", + "color": "Blue", + "rarity": "Common", + "rarityTier": 1, + "speedPips": 1, + "rangePips": 3, + "chargePips": 2, + "healthMax": null, + "damageMax": null, + "abilityId": "gloombrella", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "GloomCeilingIcon.png", + "rarityIcon": null, + "baseVisual": "wisp" + }, + { + "id": "barry-the-bomber", + "name": "Barry The Bomber", + "color": "Blue", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 2, + "rangePips": 5, + "chargePips": 2, + "healthMax": 313, + "damageMax": 225, + "abilityId": "ghost-gang", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SmokeDecoyIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "grandma-winnie", + "name": "Grandma Winnie", + "color": "Blue", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 1, + "rangePips": 4, + "chargePips": 2, + "healthMax": 338, + "damageMax": 212, + "abilityId": "jump-blink", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "BlinkForwardIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "grandpa-sam", + "name": "Grandpa Sam", + "color": "Blue", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 1, + "rangePips": 5, + "chargePips": 3, + "healthMax": 338, + "damageMax": 192, + "abilityId": "random-blink", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "BlinkRandomIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "mr-tucker", + "name": "Mr. Tucker", + "color": "Blue", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 2, + "rangePips": 2, + "chargePips": 1, + "healthMax": 313, + "damageMax": 161, + "abilityId": "speed-boost-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SpeedBoostPadIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "mr-white", + "name": "Mr. White", + "color": "Blue", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 2, + "rangePips": 3, + "chargePips": 1, + "healthMax": 450, + "damageMax": 176, + "abilityId": "jump", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "JumpIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "nurse-nellie", + "name": "Nurse Nellie", + "color": "Blue", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 1, + "rangePips": 4, + "chargePips": 2, + "healthMax": 338, + "damageMax": 212, + "abilityId": "healing-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "HealPadIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "old-fuller", + "name": "Old Fuller", + "color": "Blue", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 1, + "rangePips": 3, + "chargePips": 2, + "healthMax": 313, + "damageMax": 176, + "abilityId": "sentry", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SentryIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "ron-duke", + "name": "Ron Duke", + "color": "Blue", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 2, + "rangePips": 4, + "chargePips": 3, + "healthMax": 375, + "damageMax": 161, + "abilityId": "shifting-bait", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "MatchingDecoyIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "t-e-anderson", + "name": "T.E. Anderson", + "color": "Blue", + "rarity": "Rare", + "rarityTier": 2, + "speedPips": 2, + "rangePips": 4, + "chargePips": 3, + "healthMax": 375, + "damageMax": 161, + "abilityId": "gloom-wall", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "GloomWallIcon.png", + "rarityIcon": "GhostRarity_Tier2.png", + "baseVisual": "wisp" + }, + { + "id": "alex-boudoun", + "name": "Alex Boudoun", + "color": "Blue", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 2, + "rangePips": 3, + "chargePips": 2, + "healthMax": 375, + "damageMax": 192, + "abilityId": "jump-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "JumpPadIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "belulah-demonay", + "name": "Belulah Demonay", + "color": "Blue", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 3, + "rangePips": 3, + "chargePips": 1, + "healthMax": 450, + "damageMax": 192, + "abilityId": "random-blink", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "BlinkRandomIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "joe-snow", + "name": "Joe Snow", + "color": "Blue", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 3, + "rangePips": 3, + "chargePips": 3, + "healthMax": 338, + "damageMax": 161, + "abilityId": "sentry", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SentryIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "judge-higgins", + "name": "Judge Higgins", + "color": "Blue", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 3, + "rangePips": 3, + "chargePips": 3, + "healthMax": null, + "damageMax": null, + "abilityId": "gloom-wall", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "GloomWallIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "luigi-gelato", + "name": "Luigi Gelato", + "color": "Blue", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 3, + "rangePips": 3, + "chargePips": 3, + "healthMax": 338, + "damageMax": 161, + "abilityId": "speed-boost-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SpeedBoostPadIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "morgan-walken", + "name": "Morgan Walken", + "color": "Blue", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 1, + "rangePips": 4, + "chargePips": 2, + "healthMax": 413, + "damageMax": 176, + "abilityId": "teleportal", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "TeleportToPortalIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "roy", + "name": "Roy", + "color": "Blue", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 1, + "rangePips": 3, + "chargePips": 2, + "healthMax": 313, + "damageMax": 176, + "abilityId": "ghost-gang", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SmokeDecoyIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "trudy-joy", + "name": "Trudy Joy", + "color": "Blue", + "rarity": "Epic", + "rarityTier": 3, + "speedPips": 3, + "rangePips": 2, + "chargePips": 2, + "healthMax": 450, + "damageMax": 150, + "abilityId": "speed-boost-pad", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SpeedBoostPadIcon.png", + "rarityIcon": "GhostRarity_Tier3.png", + "baseVisual": "wisp" + }, + { + "id": "bart-chaney", + "name": "Bart Chaney", + "color": "Blue", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 2, + "rangePips": 4, + "chargePips": 2, + "healthMax": 413, + "damageMax": 192, + "abilityId": "prison-break", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "PrisonbreakIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "beau", + "name": "Beau", + "color": "Blue", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 1, + "rangePips": 1, + "chargePips": 2, + "healthMax": 413, + "damageMax": 176, + "abilityId": "shifting-bait", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "MatchingDecoyIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "flavio", + "name": "Flavio", + "color": "Blue", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 1, + "rangePips": 3, + "chargePips": 2, + "healthMax": 375, + "damageMax": 176, + "abilityId": "teleportal", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "TeleportToPortalIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "gary-linemann", + "name": "Gary Linemann", + "color": "Blue", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 1, + "rangePips": 2, + "chargePips": 2, + "healthMax": 450, + "damageMax": 161, + "abilityId": "gloombrella", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "GloomCeilingIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "giacomo", + "name": "Giacomo", + "color": "Blue", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 1, + "rangePips": 3, + "chargePips": 2, + "healthMax": null, + "damageMax": null, + "abilityId": "teleportal", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "TeleportToPortalIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "joe-ishmael", + "name": "Joe Ishmael", + "color": "Blue", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 1, + "rangePips": 4, + "chargePips": 2, + "healthMax": 413, + "damageMax": 176, + "abilityId": "gloom-seeker", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "GloomSeeker.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "magnus-gornason", + "name": "Magnus Gornason", + "color": "Blue", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 1, + "rangePips": 2, + "chargePips": 3, + "healthMax": 375, + "damageMax": 161, + "abilityId": "ghost-gang", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "SmokeDecoyIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "mamali", + "name": "Mamali", + "color": "Blue", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 2, + "rangePips": 5, + "chargePips": 1, + "healthMax": 413, + "damageMax": 192, + "abilityId": "root-roof", + "faceSprite": "MamaliIcon.png", + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": true, + "locations": [], + "abilityIcon": "MamaliIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "mr-nibs", + "name": "Mr. Nibs", + "color": "Blue", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 2, + "rangePips": 4, + "chargePips": 2, + "healthMax": 413, + "damageMax": 192, + "abilityId": "shadow-bears", + "faceSprite": "MrNibsIcon.png", + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": true, + "locations": [], + "abilityIcon": "MrNibsIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "spewer", + "name": "Spewer", + "color": "Blue", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 2, + "rangePips": 5, + "chargePips": 1, + "healthMax": 413, + "damageMax": 192, + "abilityId": "recall", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "TempAbilityIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + }, + { + "id": "the-maw", + "name": "The Maw", + "color": "Blue", + "rarity": "Legendary", + "rarityTier": 4, + "speedPips": 2, + "rangePips": 5, + "chargePips": 1, + "healthMax": 413, + "damageMax": 192, + "abilityId": "gloom-snack", + "faceSprite": null, + "fullBodySprite": null, + "webmPath": null, + "webpPath": null, + "arHealth": null, + "hauntValue": null, + "isBoss": null, + "locations": [], + "abilityIcon": "GloomSnackIcon.png", + "rarityIcon": "GhostRarity_Tier4.png", + "baseVisual": "wisp" + } +] diff --git a/public/ghosts/fx/FX_GhostTrail.png b/public/ghosts/fx/FX_GhostTrail.png new file mode 100644 index 0000000..5bcd359 Binary files /dev/null and b/public/ghosts/fx/FX_GhostTrail.png differ diff --git a/public/ghosts/fx/FX_Glow.png b/public/ghosts/fx/FX_Glow.png new file mode 100644 index 0000000..731670f Binary files /dev/null and b/public/ghosts/fx/FX_Glow.png differ diff --git a/public/ghosts/fx/FX_GlowDot.png b/public/ghosts/fx/FX_GlowDot.png new file mode 100644 index 0000000..77d8803 Binary files /dev/null and b/public/ghosts/fx/FX_GlowDot.png differ diff --git a/public/ghosts/fx/FX_WispyTrail2.png b/public/ghosts/fx/FX_WispyTrail2.png new file mode 100644 index 0000000..5b0e157 Binary files /dev/null and b/public/ghosts/fx/FX_WispyTrail2.png differ diff --git a/public/ghosts/fx/smokepuff1.png b/public/ghosts/fx/smokepuff1.png new file mode 100644 index 0000000..2a53f9c Binary files /dev/null and b/public/ghosts/fx/smokepuff1.png differ diff --git a/public/ghosts/icons/abilities/BlinkForwardIcon.png b/public/ghosts/icons/abilities/BlinkForwardIcon.png new file mode 100644 index 0000000..30b47c1 Binary files /dev/null and b/public/ghosts/icons/abilities/BlinkForwardIcon.png differ diff --git a/public/ghosts/icons/abilities/BlinkRandomIcon.png b/public/ghosts/icons/abilities/BlinkRandomIcon.png new file mode 100644 index 0000000..a014d27 Binary files /dev/null and b/public/ghosts/icons/abilities/BlinkRandomIcon.png differ diff --git a/public/ghosts/icons/abilities/BubbleShieldIcon.png b/public/ghosts/icons/abilities/BubbleShieldIcon.png new file mode 100644 index 0000000..15b090d Binary files /dev/null and b/public/ghosts/icons/abilities/BubbleShieldIcon.png differ diff --git a/public/ghosts/icons/abilities/ClownCar.png b/public/ghosts/icons/abilities/ClownCar.png new file mode 100644 index 0000000..f9a3fc5 Binary files /dev/null and b/public/ghosts/icons/abilities/ClownCar.png differ diff --git a/public/ghosts/icons/abilities/FireIcon.png b/public/ghosts/icons/abilities/FireIcon.png new file mode 100644 index 0000000..d6b5f22 Binary files /dev/null and b/public/ghosts/icons/abilities/FireIcon.png differ diff --git a/public/ghosts/icons/abilities/FlightIcon.png b/public/ghosts/icons/abilities/FlightIcon.png new file mode 100644 index 0000000..b38044c Binary files /dev/null and b/public/ghosts/icons/abilities/FlightIcon.png differ diff --git a/public/ghosts/icons/abilities/GloomCeilingIcon.png b/public/ghosts/icons/abilities/GloomCeilingIcon.png new file mode 100644 index 0000000..9cb68fb Binary files /dev/null and b/public/ghosts/icons/abilities/GloomCeilingIcon.png differ diff --git a/public/ghosts/icons/abilities/GloomEngine.png b/public/ghosts/icons/abilities/GloomEngine.png new file mode 100644 index 0000000..8ef926f Binary files /dev/null and b/public/ghosts/icons/abilities/GloomEngine.png differ diff --git a/public/ghosts/icons/abilities/GloomSeeker.png b/public/ghosts/icons/abilities/GloomSeeker.png new file mode 100644 index 0000000..fd0ed4e Binary files /dev/null and b/public/ghosts/icons/abilities/GloomSeeker.png differ diff --git a/public/ghosts/icons/abilities/GloomSnackIcon.png b/public/ghosts/icons/abilities/GloomSnackIcon.png new file mode 100644 index 0000000..e523c71 Binary files /dev/null and b/public/ghosts/icons/abilities/GloomSnackIcon.png differ diff --git a/public/ghosts/icons/abilities/GloomWallIcon.png b/public/ghosts/icons/abilities/GloomWallIcon.png new file mode 100644 index 0000000..3eb6f94 Binary files /dev/null and b/public/ghosts/icons/abilities/GloomWallIcon.png differ diff --git a/public/ghosts/icons/abilities/HealIcon.png b/public/ghosts/icons/abilities/HealIcon.png new file mode 100644 index 0000000..3018b11 Binary files /dev/null and b/public/ghosts/icons/abilities/HealIcon.png differ diff --git a/public/ghosts/icons/abilities/HealPadIcon.png b/public/ghosts/icons/abilities/HealPadIcon.png new file mode 100644 index 0000000..08b004d Binary files /dev/null and b/public/ghosts/icons/abilities/HealPadIcon.png differ diff --git a/public/ghosts/icons/abilities/HiddenPortalIcon.png b/public/ghosts/icons/abilities/HiddenPortalIcon.png new file mode 100644 index 0000000..4325015 Binary files /dev/null and b/public/ghosts/icons/abilities/HiddenPortalIcon.png differ diff --git a/public/ghosts/icons/abilities/HomingShotIcon.png b/public/ghosts/icons/abilities/HomingShotIcon.png new file mode 100644 index 0000000..270df50 Binary files /dev/null and b/public/ghosts/icons/abilities/HomingShotIcon.png differ diff --git a/public/ghosts/icons/abilities/InvisibilityIcon.png b/public/ghosts/icons/abilities/InvisibilityIcon.png new file mode 100644 index 0000000..bee8ccb Binary files /dev/null and b/public/ghosts/icons/abilities/InvisibilityIcon.png differ diff --git a/public/ghosts/icons/abilities/JumpIcon.png b/public/ghosts/icons/abilities/JumpIcon.png new file mode 100644 index 0000000..3c1f6a2 Binary files /dev/null and b/public/ghosts/icons/abilities/JumpIcon.png differ diff --git a/public/ghosts/icons/abilities/JumpPadIcon.png b/public/ghosts/icons/abilities/JumpPadIcon.png new file mode 100644 index 0000000..21c0207 Binary files /dev/null and b/public/ghosts/icons/abilities/JumpPadIcon.png differ diff --git a/public/ghosts/icons/abilities/MatchingDecoyIcon.png b/public/ghosts/icons/abilities/MatchingDecoyIcon.png new file mode 100644 index 0000000..cf06257 Binary files /dev/null and b/public/ghosts/icons/abilities/MatchingDecoyIcon.png differ diff --git a/public/ghosts/icons/abilities/PrisonbreakIcon.png b/public/ghosts/icons/abilities/PrisonbreakIcon.png new file mode 100644 index 0000000..227ee3d Binary files /dev/null and b/public/ghosts/icons/abilities/PrisonbreakIcon.png differ diff --git a/public/ghosts/icons/abilities/SentryIcon.png b/public/ghosts/icons/abilities/SentryIcon.png new file mode 100644 index 0000000..56e806c Binary files /dev/null and b/public/ghosts/icons/abilities/SentryIcon.png differ diff --git a/public/ghosts/icons/abilities/SmokeDecoyIcon.png b/public/ghosts/icons/abilities/SmokeDecoyIcon.png new file mode 100644 index 0000000..9e21834 Binary files /dev/null and b/public/ghosts/icons/abilities/SmokeDecoyIcon.png differ diff --git a/public/ghosts/icons/abilities/SpeedBoostIcon.png b/public/ghosts/icons/abilities/SpeedBoostIcon.png new file mode 100644 index 0000000..30f0a8c Binary files /dev/null and b/public/ghosts/icons/abilities/SpeedBoostIcon.png differ diff --git a/public/ghosts/icons/abilities/SpeedBoostPadIcon.png b/public/ghosts/icons/abilities/SpeedBoostPadIcon.png new file mode 100644 index 0000000..b9e27dc Binary files /dev/null and b/public/ghosts/icons/abilities/SpeedBoostPadIcon.png differ diff --git a/public/ghosts/icons/abilities/TeleportToPortalIcon.png b/public/ghosts/icons/abilities/TeleportToPortalIcon.png new file mode 100644 index 0000000..6c04148 Binary files /dev/null and b/public/ghosts/icons/abilities/TeleportToPortalIcon.png differ diff --git a/public/ghosts/icons/abilities/TempAbilityIcon.png b/public/ghosts/icons/abilities/TempAbilityIcon.png new file mode 100644 index 0000000..1540fd0 Binary files /dev/null and b/public/ghosts/icons/abilities/TempAbilityIcon.png differ diff --git a/public/ghosts/icons/portraits/AirShowIcon.png b/public/ghosts/icons/portraits/AirShowIcon.png new file mode 100644 index 0000000..7f6f44d Binary files /dev/null and b/public/ghosts/icons/portraits/AirShowIcon.png differ diff --git a/public/ghosts/icons/portraits/AnomoloIcon.png b/public/ghosts/icons/portraits/AnomoloIcon.png new file mode 100644 index 0000000..9a2e321 Binary files /dev/null and b/public/ghosts/icons/portraits/AnomoloIcon.png differ diff --git a/public/ghosts/icons/portraits/ArchibaldIcon.png b/public/ghosts/icons/portraits/ArchibaldIcon.png new file mode 100644 index 0000000..737ae58 Binary files /dev/null and b/public/ghosts/icons/portraits/ArchibaldIcon.png differ diff --git a/public/ghosts/icons/portraits/BawaIcon.png b/public/ghosts/icons/portraits/BawaIcon.png new file mode 100644 index 0000000..2537290 Binary files /dev/null and b/public/ghosts/icons/portraits/BawaIcon.png differ diff --git a/public/ghosts/icons/portraits/DrewellIcon.png b/public/ghosts/icons/portraits/DrewellIcon.png new file mode 100644 index 0000000..c8c8657 Binary files /dev/null and b/public/ghosts/icons/portraits/DrewellIcon.png differ diff --git a/public/ghosts/icons/portraits/HotrodIcon.png b/public/ghosts/icons/portraits/HotrodIcon.png new file mode 100644 index 0000000..9733335 Binary files /dev/null and b/public/ghosts/icons/portraits/HotrodIcon.png differ diff --git a/public/ghosts/icons/portraits/MamaliIcon.png b/public/ghosts/icons/portraits/MamaliIcon.png new file mode 100644 index 0000000..b87f497 Binary files /dev/null and b/public/ghosts/icons/portraits/MamaliIcon.png differ diff --git a/public/ghosts/icons/portraits/MrNibsIcon.png b/public/ghosts/icons/portraits/MrNibsIcon.png new file mode 100644 index 0000000..33231b7 Binary files /dev/null and b/public/ghosts/icons/portraits/MrNibsIcon.png differ diff --git a/public/ghosts/icons/portraits/RatkingIcon.png b/public/ghosts/icons/portraits/RatkingIcon.png new file mode 100644 index 0000000..3b602c2 Binary files /dev/null and b/public/ghosts/icons/portraits/RatkingIcon.png differ diff --git a/public/ghosts/icons/portraits/SamuelMasonIcon.png b/public/ghosts/icons/portraits/SamuelMasonIcon.png new file mode 100644 index 0000000..ac0f89a Binary files /dev/null and b/public/ghosts/icons/portraits/SamuelMasonIcon.png differ diff --git a/public/ghosts/icons/rarity/GhostRarity_Tier2.png b/public/ghosts/icons/rarity/GhostRarity_Tier2.png new file mode 100644 index 0000000..b7caa3b Binary files /dev/null and b/public/ghosts/icons/rarity/GhostRarity_Tier2.png differ diff --git a/public/ghosts/icons/rarity/GhostRarity_Tier3.png b/public/ghosts/icons/rarity/GhostRarity_Tier3.png new file mode 100644 index 0000000..4f785cf Binary files /dev/null and b/public/ghosts/icons/rarity/GhostRarity_Tier3.png differ diff --git a/public/ghosts/icons/rarity/GhostRarity_Tier4.png b/public/ghosts/icons/rarity/GhostRarity_Tier4.png new file mode 100644 index 0000000..c4074d2 Binary files /dev/null and b/public/ghosts/icons/rarity/GhostRarity_Tier4.png differ diff --git a/public/ghosts/mesh/Ghost_Baseball.obj b/public/ghosts/mesh/Ghost_Baseball.obj new file mode 100644 index 0000000..38555b7 --- /dev/null +++ b/public/ghosts/mesh/Ghost_Baseball.obj @@ -0,0 +1,5464 @@ +g Ghost_Baseball +v -1.2589457 1.3876382 0.22149304 +v -1.1621952 1.3732425 0.19784766 +v -1.1415621 1.355592 0.10455452 +v 1.1554954 1.3663071 0.19249885 +v 1.1415621 1.355592 0.10455452 +v 1.2690431 1.2800952 0.23657568 +v 1.2037127 0.9888164 0.062314413 +v 1.047 1.1378454 -0.096359864 +v 1.075589 0.97472113 -0.0077962494 +v 1.2704605 1.3864279 0.2084425 +v 1.1415621 1.355592 0.10455452 +v 1.1554954 1.3663071 0.19249885 +v 1.075589 0.97472113 -0.0077962494 +v 1.047 1.1378454 -0.096359864 +v 1.2002723 0.96038467 -0.059085045 +v 1.0341562 1.4679589 -0.39608824 +v 1.0153595 1.3568954 -0.39449868 +v 1.050805 1.488471 -0.32980332 +v -1.1595834 0.99163884 0.09227379 +v -1.0355232 0.9783136 -0.05388519 +v -1.22121 0.97031254 -0.06874592 +v -1.0760607 1.0057172 0.08393514 +v -0.7913778 1.0237489 -0.0281818 +v -0.777203 1.0512589 0.1311891 +v -1.0981843 1.0454302 0.15004222 +v -1.2294364 1.0511953 0.16945185 +v -0.77438736 1.1581969 0.24592856 +v -1.241811 1.140043 0.24348861 +v -1.1326681 1.1419939 0.22972456 +v -1.159578 1.2965667 0.23852696 +v -1.2578865 1.284617 0.25352895 +v -0.7625733 1.3154123 0.24492967 +v -1.1621952 1.3732425 0.19784766 +v -0.77354306 1.4867783 0.15810642 +v -1.1701902 1.5044068 0.12616989 +v -1.2589457 1.3876382 0.22149304 +v -1.2709355 1.4893379 0.15197365 +v -1.1329632 1.5968821 -0.032469712 +v -1.3009869 1.56837 -0.016162414 +v -0.78314483 1.593047 -0.017222099 +v -1.3127944 1.581948 -0.22541721 +v -1.0880524 1.6153526 -0.21609654 +v -0.7833743 1.619726 -0.19290406 +v -1.1228114 1.570377 -0.26685 +v -1.0606251 1.5689136 -0.30183873 +v -0.76991695 1.5440965 -0.32386154 +v -1.3176193 1.4891261 -0.38643298 +v -1.0328145 1.5218256 -0.3755145 +v -0.76247257 1.3568221 -0.3799424 +v -1.0002862 1.3041421 -0.4421646 +v -1.3037099 1.278301 -0.471812 +v -0.7622534 1.12547 -0.3597454 +v -1.2073324 1.1524584 -0.43705204 +v -0.9969649 1.0924383 -0.395837 +v -1.2659702 1.0931295 -0.42663133 +v -1.2330596 0.97472066 -0.26917586 +v -0.78343266 1.030778 -0.21957833 +v -0.9901175 0.9839214 -0.24825718 +v -1.22121 0.97031254 -0.06874592 +v -1.0355232 0.9783136 -0.05388519 +v -0.7913778 1.0237489 -0.0281818 +v -1.1621952 1.3732425 0.19784766 +v -1.2578865 1.284617 0.25352895 +v -1.1415621 1.355592 0.10455452 +v -1.1256896 1.261228 0.09210769 +v -1.241811 1.140043 0.24348861 +v -1.0896771 1.1764619 0.031562615 +v -1.2294364 1.0511953 0.16945185 +v -1.1595834 0.99163884 0.09227379 +v -1.22121 0.97031254 -0.06874592 +v -1.0110996 1.1515902 -0.22403568 +v -1.047 1.1378454 -0.096359864 +v -1.2330596 0.97472066 -0.26917586 +v -1.0164093 1.2273831 -0.34984842 +v -1.2659702 1.0931295 -0.42663133 +v -1.2073324 1.1524584 -0.43705204 +v -1.0153595 1.3568954 -0.39449868 +v -1.3037099 1.278301 -0.471812 +v -1.3176193 1.4891261 -0.38643298 +v -1.050805 1.488471 -0.32980332 +v -1.1228114 1.570377 -0.26685 +v -1.1065534 1.5904927 -0.18622462 +v -1.3127944 1.581948 -0.22541721 +v -1.3009869 1.56837 -0.016162414 +v -1.1395242 1.5638498 -0.028661652 +v -1.2709355 1.4893379 0.15197365 +v -1.1498704 1.4827783 0.06485706 +v -1.2589457 1.3876382 0.22149304 +v -1.1415621 1.355592 0.10455452 +v -1.22121 0.97031254 -0.06874592 +v -1.047 1.1378454 -0.096359864 +v -1.0896771 1.1764619 0.031562615 +v -1.1595834 0.99163884 0.09227379 +v 0.7178262 1.6195314 -0.20389839 +v 0.7658682 1.5440964 -0.33107865 +v 0.77932554 1.619726 -0.20012122 +v 0.7140732 1.552933 -0.32884783 +v 0.61961013 1.6346684 -0.20832099 +v 0.6964171 1.3679234 -0.3800219 +v 0.7584238 1.3568221 -0.3871595 +v 0.56189877 1.5952113 -0.32488376 +v 0.51835686 1.6466557 -0.20284995 +v 0.593095 1.3744638 -0.3917188 +v 0.61811155 1.1203457 -0.38493696 +v 0.70405066 1.1324134 -0.36292008 +v 0.75820595 1.126881 -0.36708573 +v 0.7398884 1.038196 -0.2195782 +v 0.7793839 1.030778 -0.22679546 +v 0.3057855 1.3811836 -0.44815248 +v 0.28533342 1.6109883 -0.35221922 +v 0.752473 1.0081654 -0.033565674 +v 0.787329 1.023749 -0.03539894 +v 0.71470517 0.925637 -0.20818087 +v 0.73115927 0.9069578 -0.02274704 +v 0.7278578 0.6777507 -0.1903983 +v 0.7578324 0.6747739 0.0014260291 +v 0.8164749 0.3423503 0.02674549 +v 0.6395191 0.6877304 -0.3788232 +v 0.79113317 0.3423503 -0.1848473 +v 0.8528508 0.1066532 -0.17521274 +v 0.87129056 0.09956136 0.039927453 +v 0.76137465 -0.13038091 0.020423913 +v 0.74614257 -0.123836026 -0.17948474 +v 0.70806706 -0.124492735 -0.34359032 +v 0.70632476 0.34235027 -0.39075935 +v 0.75844616 0.10563774 -0.41437307 +v 0.68693066 -0.12451686 -0.39284873 +v 0.6380094 -0.12454098 -0.42017603 +v 0.41569397 0.10685574 -0.551583 +v 0.36881652 -0.12364906 -0.4624915 +v -0 0.107328355 -0.5669658 +v -0 -0.123212904 -0.4819948 +v -0.36881652 -0.12364906 -0.4624915 +v 0.38237497 0.3423503 -0.51003224 +v 0.33440924 0.69305676 -0.4725533 +v -0.41569397 0.10685574 -0.551583 +v -0.6380094 -0.12454098 -0.42017603 +v 0.3174859 1.0999014 -0.45812666 +v -0 1.099312 -0.48894018 +v -0 0.6941235 -0.49978462 +v -0 0.3423503 -0.53886276 +v -0.38237503 0.34235027 -0.51003224 +v -0.33440924 0.69305676 -0.4725533 +v -0.75844616 0.10563774 -0.41437316 +v -0.68693066 -0.12451686 -0.39284873 +v -0.70806706 -0.124492735 -0.34359032 +v -0.70632476 0.3423503 -0.39075938 +v -0.8490982 0.1066532 -0.18247448 +v -0.74614257 -0.123836026 -0.17948474 +v -0.76137465 -0.13038091 0.020423913 +v -0.87504315 0.09956136 0.04250893 +v -0.8176865 0.3423503 0.02674549 +v -0.78985333 0.3423503 -0.1848473 +v -0.7578324 0.6747739 0.0014260291 +v -0.7278578 0.6777507 -0.1903983 +v -0.73115927 0.9069578 -0.02274704 +v -0.6395191 0.6877304 -0.3788232 +v -0.71470517 0.925637 -0.20818087 +v -0.752473 1.0081654 -0.033565674 +v -0.3272637 1.1118596 -0.47349665 +v -0.61811155 1.1203457 -0.38493696 +v -0.7398884 1.038196 -0.2195782 +v -0.78343266 1.030778 -0.21957833 +v -0.7913778 1.0237489 -0.0281818 +v -0.7622534 1.12547 -0.3597454 +v -0.70405066 1.1324134 -0.36292008 +v -0.76247257 1.3568221 -0.3799424 +v -0.6964171 1.3679234 -0.3800219 +v -0.76991695 1.5440965 -0.32386154 +v -0.593095 1.3744638 -0.3917188 +v -0.3057855 1.3811836 -0.44815248 +v -0.7140732 1.552933 -0.32884783 +v -0.7178262 1.6195314 -0.20389839 +v -0.7833743 1.619726 -0.19290406 +v -0.61961013 1.6346684 -0.22310585 +v -0.56189877 1.5952113 -0.32488376 +v -0.51835686 1.6466557 -0.21763481 +v -0 1.3828607 -0.4706645 +v -0.28533342 1.6109883 -0.35221922 +v -0 1.6134448 -0.36409882 +v -0.28904945 1.6610769 -0.28973272 +v -0.29627827 1.6763872 -0.17433289 +v -0 1.6862907 -0.23104858 +v -0.21643084 1.6707104 -0.13040107 +v -0 1.6824199 -0.17403571 +v 0.21643084 1.6707104 -0.13040107 +v 0.29627827 1.6763872 -0.17433289 +v -0 1.6669036 -0.31118554 +v 0.28904945 1.6610769 -0.28973272 +v 0.27430218 1.6375227 -0.018529281 +v 0.21643084 1.6707104 -0.13040107 +v 0.29627827 1.6763872 -0.17433289 +v 0.3700424 1.6376699 -0.021038817 +v 0.28921455 1.5833751 0.09486645 +v 0.51835686 1.6466557 -0.20284995 +v 0.3738829 1.5810407 0.08978901 +v 0.34214053 1.5167228 0.20591526 +v 0.23142013 1.5136834 0.22728764 +v 0.20977351 1.3339267 0.38716206 +v 0.12928851 1.4590228 0.3236415 +v -0 1.4314891 0.3473016 +v 0.48275492 1.5814497 0.10535919 +v 0.54407334 1.6184999 -0.020193633 +v 0.62520826 1.6095624 -0.019799575 +v 0.61961013 1.6346684 -0.20832099 +v 0.7178262 1.6195314 -0.20389839 +v 0.5584291 1.5214092 0.17156936 +v 0.7140715 1.5917696 -0.020059546 +v 0.77932554 1.619726 -0.20012122 +v 0.77909607 1.593047 -0.024439277 +v 0.7124907 1.4975163 0.14957333 +v 0.7694943 1.4867784 0.15088928 +v 0.70867956 1.3179722 0.24492961 +v 0.75852454 1.3154122 0.23771252 +v 0.7181362 1.1547227 0.24889737 +v 0.7703386 1.1581969 0.23871139 +v 0.77315426 1.0512589 0.12397194 +v 0.5830697 1.3130275 0.29970983 +v 0.7395889 1.0375735 0.12806131 +v 0.787329 1.023749 -0.03539894 +v 0.752473 1.0081654 -0.033565674 +v 0.73115927 0.9069578 -0.02274704 +v 0.7093229 0.9485376 0.20553817 +v 0.58724034 1.1171199 0.35031933 +v 0.72951895 0.6865188 0.23436663 +v 0.7578324 0.6747739 0.0014260291 +v 0.33187133 1.0499521 0.4708652 +v 0.6231565 0.6924294 0.40324947 +v 0.7931422 0.34235027 0.26850784 +v 0.8164749 0.3423503 0.02674549 +v 0.87129056 0.09956136 0.039927453 +v 0.6690269 0.3423503 0.46019363 +v 0.85539657 0.09947418 0.29329085 +v 0.7498723 -0.13046135 0.25191626 +v 0.76137465 -0.13038091 0.020423913 +v 0.7181321 -0.13168989 0.4154079 +v 0.72065735 0.09757251 0.5261438 +v 0.68693066 -0.13191307 0.46466625 +v 0.62724113 -0.13213621 0.49459955 +v 0.43236387 0.09797479 0.63849527 +v 0.38363668 -0.13184512 0.5420614 +v 0.39695868 0.3423503 0.568992 +v -0 0.10252082 0.6729409 +v -0 -0.12764965 0.5677377 +v -0.38363668 -0.13184512 0.5420614 +v 0.35652503 0.6905828 0.50653094 +v -0.43236387 0.09797479 0.63849527 +v -0.62724113 -0.13213621 0.49459955 +v -0 0.3423503 0.6232886 +v -0 1.0279483 0.5281219 +v -0.72065735 0.09757251 0.5261438 +v -0.68693066 -0.13191307 0.46466625 +v -0.7181321 -0.13168989 0.4154079 +v -0 0.69356996 0.5662692 +v -0.35652503 0.6905828 0.50653094 +v -0.39695868 0.3423503 0.568992 +v -0 1.2848997 0.43932092 +v -0.8526801 0.09947418 0.29329085 +v -0.7498723 -0.13046135 0.25191626 +v -0.6690269 0.3423503 0.46019363 +v -0.34549445 1.0499521 0.45718566 +v -0.20977351 1.3339267 0.38716206 +v -0.12928851 1.4590228 0.3236415 +v -0.23142013 1.5136834 0.22728764 +v -0.87504315 0.09956136 0.04250893 +v -0.76137465 -0.13038091 0.020423913 +v -0.7922659 0.3423503 0.26850784 +v -0.8176865 0.3423503 0.02674549 +v -0.6231565 0.6924294 0.40324947 +v -0.72951895 0.6865188 0.23436663 +v -0.7578324 0.6747739 0.0014260291 +v -0.73115927 0.9069578 -0.02274704 +v -0.34214053 1.5167228 0.20591526 +v -0.28921455 1.5833751 0.09486645 +v -0.5912669 1.1343746 0.35031936 +v -0.7093229 0.9485376 0.20553817 +v -0.7181362 1.1547227 0.24889737 +v -0.5830697 1.3130276 0.2997098 +v -0.7395889 1.0375735 0.12806131 +v -0.752473 1.0081654 -0.033565674 +v -0.7913778 1.0237489 -0.0281818 +v -0.777203 1.0512589 0.1311891 +v -0.77438736 1.1581969 0.24592856 +v -0.7625733 1.3154123 0.24492967 +v -0.70867956 1.3179722 0.24302976 +v -0.77354306 1.4867783 0.15810642 +v -0.5584291 1.5214092 0.17156936 +v -0.7124907 1.4975163 0.14957333 +v -0.78314483 1.593047 -0.017222099 +v -0.7140715 1.5917696 -0.020059546 +v -0.7833743 1.619726 -0.19290406 +v -0.7178262 1.6195314 -0.20389839 +v -0.62520826 1.6095624 -0.019799575 +v -0.61961013 1.6346684 -0.22310585 +v -0.48275492 1.5814497 0.10535919 +v -0.5471998 1.6208701 -0.019799652 +v -0.51835686 1.6466557 -0.21763481 +v -0.3700424 1.6376699 -0.021038817 +v -0.29627827 1.6763872 -0.17433289 +v -0.3738829 1.5810407 0.08978901 +v -0.27430218 1.6375227 -0.018529281 +v -0.21643084 1.6707104 -0.13040107 +v 1.2690431 1.2800952 0.23657568 +v 1.1415621 1.355592 0.10455452 +v 1.1256899 1.261228 0.09210769 +v 1.24789 1.131627 0.22667104 +v 1.0896772 1.1764619 0.031562615 +v 1.2275324 1.0411057 0.15877998 +v 1.2037127 0.9888164 0.062314413 +v 1.047 1.1378454 -0.096359864 +v 1.2002723 0.96038467 -0.059085045 +v 1.047 1.1378454 -0.096359864 +v 1.0110996 1.1515902 -0.22403568 +v 1.1988412 0.9667871 -0.24263164 +v 1.0164093 1.2273831 -0.34984836 +v 1.2251422 1.0984309 -0.3902858 +v 1.2638028 1.2803894 -0.44376504 +v 1.0153595 1.3568954 -0.39449868 +v 1.2601733 1.3195199 -0.4396295 +v 1.1839379 1.3514508 -0.42418686 +v 1.2538476 1.3877217 -0.43242183 +v 1.0341562 1.4679589 -0.39608824 +v 1.0341562 1.4679589 -0.39608824 +v 1.050805 1.488471 -0.32980332 +v 1.2826414 1.4954365 -0.387687 +v 1.3006309 1.5901898 -0.2154196 +v 1.1065534 1.5904928 -0.18622455 +v 1.302496 1.5742605 -0.008766746 +v 1.1395242 1.5638498 -0.028661652 +v 1.2807121 1.4916317 0.14547378 +v 1.1498705 1.4827783 0.06485706 +v 1.2720813 1.4489155 0.18497188 +v 1.2416687 1.4319279 0.18737613 +v 1.1415621 1.355592 0.10455452 +v 1.2704605 1.3864279 0.2084425 +v 1.075589 0.97472113 -0.0077962494 +v 1.2002723 0.96038467 -0.059085045 +v 1.0395486 0.9749689 -0.056452177 +v 1.0524026 0.9756719 -0.0025825119 +v 0.787329 1.023749 -0.03539894 +v 0.77315426 1.0512589 0.12397194 +v 1.0782079 1.0018743 0.07107361 +v 1.2037127 0.9888164 0.062314413 +v 1.0983818 1.0399915 0.1363709 +v 1.2275324 1.0411057 0.15877998 +v 0.7703386 1.1581969 0.23871139 +v 1.1374123 1.1369917 0.21465302 +v 1.24789 1.131627 0.22667104 +v 1.2690431 1.2800952 0.23657568 +v 1.1615208 1.2890369 0.22408846 +v 0.75852454 1.3154122 0.23771252 +v 1.1554954 1.3663071 0.19249885 +v 0.7694943 1.4867784 0.15088928 +v 1.1642927 1.4947635 0.130134 +v 1.2416687 1.4319279 0.18737613 +v 1.2704605 1.3864279 0.2084425 +v 1.2720813 1.4489155 0.18497188 +v 1.2807121 1.4916317 0.14547378 +v 1.1499329 1.589137 -0.028293151 +v 1.302496 1.5742605 -0.008766746 +v 0.77909607 1.593047 -0.024439277 +v 1.3006309 1.5901898 -0.2154196 +v 1.1042545 1.6112617 -0.22254013 +v 0.77932554 1.619726 -0.20012122 +v 1.2826414 1.4954365 -0.387687 +v 1.0638423 1.5263826 -0.36084005 +v 0.7658682 1.5440964 -0.33107865 +v 1.0341562 1.4679589 -0.39608824 +v 1.0080813 1.3540733 -0.4287702 +v 0.7584238 1.3568221 -0.3871595 +v 1.2538476 1.3877217 -0.43242183 +v 1.1839379 1.3514508 -0.42418686 +v 1.2601733 1.3195199 -0.4396295 +v 1.2638028 1.2803894 -0.44376504 +v 0.75820595 1.126881 -0.36708573 +v 1.2251422 1.0984309 -0.3902858 +v 0.9791821 1.110854 -0.39195767 +v 0.7793839 1.030778 -0.22679546 +v 1.1988412 0.9667871 -0.24263164 +v 0.9902378 0.9830847 -0.23884521 +v 0.787329 1.023749 -0.03539894 +v 1.2002723 0.96038467 -0.059085045 +v 1.0395486 0.9749689 -0.056452177 +v 2.06598 1.0375366 0.098618045 +v 2.0900238 1.0766704 0.14575028 +v 2.0728939 1.079246 0.09908538 +v 2.022894 1.086871 0.044587173 +v 2.0101612 1.0041686 0.044698905 +v 1.9588302 1.0949813 0.02922779 +v 1.9804431 0.9898431 0.038254928 +v 1.8931128 1.0905668 0.013952217 +v 1.8768134 0.98474014 0.014094467 +v 1.7795086 1.0207219 -0.010121917 +v 1.8339639 1.1124387 -0.00076709746 +v 1.7033416 1.0923091 -0.030708617 +v 1.7876672 1.1559514 -0.0132816695 +v 1.6599153 1.1886032 -0.04452873 +v 1.7612716 1.2144831 -0.021683998 +v 1.6570477 1.2947549 -0.05003292 +v 1.7587874 1.2791187 -0.02469387 +v 1.7806036 1.3400253 -0.021851616 +v 1.6917212 1.3951406 -0.04480812 +v 1.7621146 1.4739416 -0.031226767 +v 1.8233922 1.3879244 -0.013596611 +v 1.8562979 1.5193492 -0.010797539 +v 1.8806415 1.4155267 -0.0011785507 +v 1.95993 1.5244496 0.013362923 +v 1.9436332 1.4186255 0.013507728 +v 2.0572348 1.4884704 0.037579305 +v 2.0049846 1.3946809 0.028821371 +v 2.06853 1.3831825 0.04418583 +v 2.081266 1.4658848 0.044074096 +v 2.1244838 1.4174113 0.09810241 +v 2.1185303 1.3755572 0.098681524 +v 2.13566 1.3729818 0.14534897 +v 2.0468614 1.3871676 0.5232222 +v 2.13566 1.3729818 0.14534897 +v 2.1185303 1.3755572 0.098681524 +v 1.9776262 1.3978077 0.5065547 +v 2.06853 1.3831825 0.04418583 +v 2.0049846 1.3946809 0.028821371 +v 1.8972833 1.4118897 0.48714912 +v 1.9436332 1.4186255 0.013507728 +v 1.8359323 1.435834 0.4718304 +v 1.8806415 1.4155267 -0.0011785507 +v 1.7729402 1.4327327 0.4571441 +v 1.8233922 1.3879244 -0.013596611 +v 1.7156912 1.4051304 0.4447286 +v 1.7806036 1.3400253 -0.021851616 +v 1.672905 1.3572338 0.4364711 +v 1.7587874 1.2791187 -0.02469387 +v 1.6510861 1.2963296 0.4336313 +v 1.7612716 1.2144831 -0.021683998 +v 1.6535704 1.2316891 0.43664122 +v 1.7876672 1.1559514 -0.0132816695 +v 1.6799661 1.1731575 0.44504356 +v 1.8339639 1.1124387 -0.00076709746 +v 1.7262626 1.1296448 0.45755306 +v 1.8931128 1.0905668 0.013952217 +v 1.7854089 1.1077753 0.47227487 +v 1.9588302 1.0949813 0.02922779 +v 1.851129 1.1121897 0.48755297 +v 2.022894 1.086871 0.044587173 +v 1.9319924 1.1014963 0.50695604 +v 2.0728939 1.079246 0.09908538 +v 2.0900238 1.0766704 0.14575028 +v 2.0012305 1.0908563 0.5236261 +v 2.0468614 1.3871676 0.5232222 +v 2.1244838 1.4174113 0.09810241 +v 2.13566 1.3729818 0.14534897 +v 2.0256982 1.4340916 0.5164887 +v 2.081266 1.4658848 0.044074096 +v 1.9495337 1.505679 0.49590454 +v 2.0572348 1.4884704 0.037579305 +v 1.95993 1.5244496 0.013362923 +v 1.852229 1.5416605 0.47168815 +v 1.8562979 1.5193492 -0.010797539 +v 1.7485969 1.5365553 0.44752517 +v 1.7621146 1.4739416 -0.031226767 +v 1.6544137 1.4911501 0.42709845 +v 1.6917212 1.3951406 -0.04480812 +v 1.5840203 1.4123466 0.41351706 +v 1.5481324 1.3121487 0.4088435 +v 1.6570477 1.2947549 -0.05003292 +v 1.6599153 1.1886032 -0.04452873 +v 1.5522143 1.2058091 0.41379648 +v 1.7033416 1.0923091 -0.030708617 +v 1.5956408 1.1095177 0.4276166 +v 1.7795086 1.0207219 -0.010121917 +v 1.6718075 1.0379304 0.4482033 +v 1.8768134 0.98474014 0.014094467 +v 1.7691101 1.0019487 0.47241715 +v 1.9804431 0.9898431 0.038254928 +v 1.8727419 1.007049 0.49657762 +v 2.0101612 1.0041686 0.044698905 +v 1.966925 1.0524591 0.5170069 +v 2.06598 1.0375366 0.098618045 +v 2.0012305 1.0908563 0.5236261 +v 2.0900238 1.0766704 0.14575028 +v 2.0468614 1.3871676 0.5232222 +v 1.9776262 1.3978077 0.5065547 +v 2.0256982 1.4340916 0.5164887 +v 1.9495337 1.505679 0.49590454 +v 1.8972833 1.4118897 0.48714912 +v 1.8359323 1.435834 0.4718304 +v 1.852229 1.5416605 0.47168815 +v 1.7485969 1.5365553 0.44752517 +v 1.7729402 1.4327327 0.4571441 +v 1.6544137 1.4911501 0.42709845 +v 1.7156912 1.4051304 0.4447286 +v 1.5840203 1.4123466 0.41351706 +v 1.672905 1.3572338 0.4364711 +v 1.5481324 1.3121487 0.4088435 +v 1.6510861 1.2963296 0.4336313 +v 1.5522143 1.2058091 0.41379648 +v 1.6535704 1.2316891 0.43664122 +v 1.5956408 1.1095177 0.4276166 +v 1.6799661 1.1731575 0.44504356 +v 1.6718075 1.0379304 0.4482033 +v 1.7262626 1.1296448 0.45755306 +v 1.7691101 1.0019487 0.47241715 +v 1.7854089 1.1077753 0.47227487 +v 1.8727419 1.007049 0.49657762 +v 1.851129 1.1121897 0.48755297 +v 1.966925 1.0524591 0.5170069 +v 1.9319924 1.1014963 0.50695604 +v 2.0012305 1.0908563 0.5236261 +v 1.5649368 1.3261061 -0.17068386 +v 1.6577073 1.3663479 -0.13370194 +v 1.6443635 1.4270641 -0.10539181 +v 1.5319268 1.4260668 -0.14261317 +v 1.5538989 1.2891046 -0.18774234 +v 1.6690353 1.2811767 -0.15143475 +v 1.4737222 1.5061772 -0.02640709 +v 1.5905627 1.5251323 0.047089994 +v 1.5008186 1.5122699 0.14153388 +v 1.5327777 1.1734735 -0.14832619 +v 1.6463013 1.1522369 -0.10968349 +v 1.4850136 1.1152196 -0.054113045 +v 1.5999767 1.0898355 0.01873764 +v 1.4892056 1.1036472 0.08262573 +v 1.4377937 1.1103106 0.041431084 +v 1.2430433 1.1197281 -0.055019185 +v 1.2545435 1.124272 -0.16920593 +v 1.1292646 1.1320727 -0.0790123 +v 1.2728655 1.1895424 -0.28443775 +v 1.1299495 1.1403823 -0.19726768 +v 1.047 1.1378454 -0.096359864 +v 1.0110996 1.1515902 -0.22403568 +v 1.1319172 1.2123038 -0.3246617 +v 1.0164093 1.2273831 -0.34984836 +v 1.2908953 1.3166744 -0.32554698 +v 1.1353834 1.3412744 -0.36885247 +v 1.0153595 1.3568954 -0.39449868 +v 1.3014001 1.4677732 -0.26098317 +v 1.1490093 1.4820688 -0.30283383 +v 1.050805 1.488471 -0.32980332 +v 1.296758 1.5460593 -0.12282062 +v 1.1800357 1.5750117 -0.16172954 +v 1.1065534 1.5904928 -0.18622455 +v 1.4195641 1.5040954 0.084120974 +v 1.1962444 1.5555454 -0.014670067 +v 1.1395242 1.5638498 -0.028661652 +v 1.2834396 1.5384783 0.006753311 +v 1.3727883 1.4360682 0.17738323 +v 1.4951065 1.4402417 0.25860378 +v 1.1981184 1.4773965 0.0841745 +v 1.1498705 1.4827783 0.06485706 +v 1.2653192 1.4655402 0.11108013 +v 1.3555917 1.3398399 0.21055618 +v 1.4832938 1.3341086 0.30317864 +v 1.485908 1.2952331 0.30206004 +v 1.3607814 1.2203872 0.20224833 +v 1.2477311 1.3396941 0.14908324 +v 1.1855624 1.3508105 0.12300888 +v 1.1415621 1.355592 0.10455452 +v 1.2378477 1.2389579 0.13594006 +v 1.3918337 1.1395866 0.13590181 +v 1.493563 1.1957042 0.28245258 +v 1.5291014 1.112402 0.21571238 +v 1.1704278 1.254084 0.10959171 +v 1.1256899 1.261228 0.09210769 +v 1.4892056 1.1036472 0.08262573 +v 1.560924 1.0888677 0.13034289 +v 1.4377937 1.1103106 0.041431084 +v 1.2430433 1.1197281 -0.055019185 +v 1.2355516 1.1525991 0.060542792 +v 1.1500579 1.1683894 0.043558158 +v 1.0896772 1.1764619 0.031562615 +v 1.1292646 1.1320727 -0.0790123 +v 1.047 1.1378454 -0.096359864 +v -2.0702322 1.0375366 0.098618045 +v -2.077146 1.079246 0.09908538 +v -2.0942757 1.0766704 0.14575028 +v -2.014413 1.004169 0.044698905 +v -2.0271459 1.086871 0.044587173 +v -1.9630822 1.0949817 0.02922779 +v -1.9846951 0.9898434 0.038254928 +v -1.8973624 1.0905668 0.013952217 +v -1.8810656 0.98474014 0.014094467 +v -1.7837607 1.0207219 -0.010121917 +v -1.838216 1.1124387 -0.00076709746 +v -1.7075938 1.0923091 -0.030708617 +v -1.7919192 1.1559514 -0.0132816695 +v -1.6641674 1.1886032 -0.04452873 +v -1.7655237 1.2144831 -0.021683998 +v -1.6613021 1.2947549 -0.05003292 +v -1.7630395 1.2791187 -0.02469387 +v -1.7848556 1.3400253 -0.021851616 +v -1.6959732 1.3951406 -0.04480812 +v -1.7663668 1.4739416 -0.031226767 +v -1.8276443 1.3879244 -0.013596611 +v -1.8605499 1.5193492 -0.010797539 +v -1.8848934 1.4155267 -0.0011785507 +v -1.9641821 1.5244496 0.013362923 +v -1.9478854 1.4186255 0.013507728 +v -2.061487 1.4884704 0.037579305 +v -2.0092368 1.3946809 0.028821371 +v -2.0727823 1.3831825 0.04418583 +v -2.085518 1.4658848 0.044074096 +v -2.128736 1.4174113 0.09810241 +v -2.1227822 1.3755572 0.098681524 +v -2.139912 1.3729818 0.14534897 +v -2.1227822 1.3755572 0.098681524 +v -2.139912 1.3729818 0.14534897 +v -2.0511136 1.3871676 0.5232222 +v -1.9818783 1.3978077 0.5065547 +v -2.0727823 1.3831825 0.04418583 +v -1.9015354 1.4118897 0.48714912 +v -2.0092368 1.3946809 0.028821371 +v -1.9478854 1.4186255 0.013507728 +v -1.8401843 1.435834 0.4718304 +v -1.8848934 1.4155267 -0.0011785507 +v -1.7771924 1.4327327 0.4571441 +v -1.8276443 1.3879244 -0.013596611 +v -1.7199432 1.4051304 0.4447286 +v -1.7848556 1.3400253 -0.021851616 +v -1.6771569 1.3572338 0.4364711 +v -1.7630395 1.2791187 -0.02469387 +v -1.6553383 1.2963296 0.4336313 +v -1.7655237 1.2144831 -0.021683998 +v -1.6578224 1.2316891 0.43664122 +v -1.7919192 1.1559514 -0.0132816695 +v -1.684218 1.1731575 0.44504356 +v -1.838216 1.1124387 -0.00076709746 +v -1.7305148 1.1296448 0.45755306 +v -1.8973624 1.0905668 0.013952217 +v -1.789661 1.1077753 0.47227487 +v -1.9630822 1.0949817 0.02922779 +v -1.8553811 1.1121901 0.48755297 +v -1.9362471 1.1014968 0.50695604 +v -2.0271459 1.086871 0.044587173 +v -2.077146 1.079246 0.09908538 +v -2.0054824 1.0908563 0.5236261 +v -2.0942757 1.0766704 0.14575028 +v -2.128736 1.4174113 0.09810241 +v -2.0511136 1.3871676 0.5232222 +v -2.139912 1.3729818 0.14534897 +v -2.0299501 1.4340916 0.5164887 +v -2.085518 1.4658848 0.044074096 +v -1.9537883 1.505679 0.49590454 +v -2.061487 1.4884704 0.037579305 +v -1.9641821 1.5244496 0.013362923 +v -1.856481 1.5416605 0.47168815 +v -1.8605499 1.5193492 -0.010797539 +v -1.7528491 1.5365553 0.44752517 +v -1.7663668 1.4739416 -0.031226767 +v -1.6586658 1.4911501 0.42709845 +v -1.6959732 1.3951406 -0.04480812 +v -1.5882721 1.4123466 0.41351706 +v -1.5523843 1.3121487 0.4088435 +v -1.6613021 1.2947549 -0.05003292 +v -1.6641674 1.1886032 -0.04452873 +v -1.5564662 1.2058091 0.41379648 +v -1.7075938 1.0923091 -0.030708617 +v -1.5998925 1.1095177 0.4276166 +v -1.7837607 1.0207219 -0.010121917 +v -1.6760597 1.0379304 0.4482033 +v -1.8810656 0.98474014 0.014094467 +v -1.773362 1.0019487 0.47241715 +v -1.9846951 0.9898434 0.038254928 +v -1.876994 1.007049 0.49657762 +v -2.014413 1.004169 0.044698905 +v -2.0702322 1.0375366 0.098618045 +v -1.971177 1.0524591 0.5170069 +v -2.0054824 1.0908563 0.5236261 +v -2.0942757 1.0766704 0.14575028 +v -2.0511136 1.3871676 0.5232222 +v -2.0299501 1.4340916 0.5164887 +v -1.9818783 1.3978077 0.5065547 +v -1.9537883 1.505679 0.49590454 +v -1.9015354 1.4118897 0.48714912 +v -1.8401843 1.435834 0.4718304 +v -1.856481 1.5416605 0.47168815 +v -1.7528491 1.5365553 0.44752517 +v -1.7771924 1.4327327 0.4571441 +v -1.6586658 1.4911501 0.42709845 +v -1.7199432 1.4051304 0.4447286 +v -1.5882721 1.4123466 0.41351706 +v -1.6771569 1.3572338 0.4364711 +v -1.5523843 1.3121487 0.4088435 +v -1.6553383 1.2963296 0.4336313 +v -1.5564662 1.2058091 0.41379648 +v -1.6578224 1.2316891 0.43664122 +v -1.5998925 1.1095177 0.4276166 +v -1.684218 1.1731575 0.44504356 +v -1.6760597 1.0379304 0.4482033 +v -1.7305148 1.1296448 0.45755306 +v -1.773362 1.0019487 0.47241715 +v -1.789661 1.1077753 0.47227487 +v -1.876994 1.007049 0.49657762 +v -1.8553811 1.1121901 0.48755297 +v -1.971177 1.0524591 0.5170069 +v -1.9362471 1.1014968 0.50695604 +v -2.0054824 1.0908563 0.5236261 +v -1.5649368 1.3261061 -0.17068386 +v -1.6443635 1.4270641 -0.10539181 +v -1.6577073 1.3663479 -0.13370194 +v -1.5319268 1.4260668 -0.14261317 +v -1.5538989 1.2891046 -0.18774234 +v -1.6690353 1.2811767 -0.15143475 +v -1.4737222 1.5061772 -0.02640709 +v -1.5905627 1.5251323 0.047089994 +v -1.5008186 1.5122699 0.14153388 +v -1.5327777 1.1734735 -0.14832619 +v -1.6463013 1.1522369 -0.10968349 +v -1.4850136 1.1152196 -0.054113045 +v -1.5999767 1.0898355 0.01873764 +v -1.4892056 1.1036472 0.08262573 +v -1.4377937 1.1103106 0.041431084 +v -1.2430433 1.1197281 -0.055019185 +v -1.2545435 1.124272 -0.16920593 +v -1.1292646 1.1320727 -0.0790123 +v -1.2728655 1.1895424 -0.28443775 +v -1.1299495 1.1403823 -0.19726768 +v -1.047 1.1378454 -0.096359864 +v -1.0110996 1.1515902 -0.22403568 +v -1.1319172 1.2123038 -0.3246617 +v -1.0164093 1.2273831 -0.34984842 +v -1.2908953 1.3166744 -0.32554698 +v -1.1353834 1.3412744 -0.36885247 +v -1.0153595 1.3568954 -0.39449868 +v -1.3014001 1.4677732 -0.26098317 +v -1.1490093 1.4820688 -0.30283383 +v -1.050805 1.488471 -0.32980332 +v -1.296758 1.5460593 -0.12282062 +v -1.1800357 1.5750117 -0.16172954 +v -1.1065534 1.5904927 -0.18622462 +v -1.4195641 1.5040954 0.084120974 +v -1.1962444 1.5555454 -0.014670067 +v -1.1395242 1.5638498 -0.028661652 +v -1.2834396 1.5384783 0.006753311 +v -1.3727883 1.4360682 0.17738323 +v -1.4951065 1.4402417 0.25860378 +v -1.1981184 1.4773965 0.0841745 +v -1.1498704 1.4827783 0.06485706 +v -1.2653192 1.4655402 0.11108013 +v -1.3555917 1.3398399 0.21055618 +v -1.4832938 1.3341086 0.30317864 +v -1.485908 1.2952331 0.30206004 +v -1.3607814 1.2203872 0.20224833 +v -1.2477311 1.3396941 0.14908324 +v -1.1855624 1.3508105 0.12300888 +v -1.1415621 1.355592 0.10455452 +v -1.2378477 1.2389579 0.13594006 +v -1.3918337 1.1395866 0.13590181 +v -1.493563 1.1957042 0.28245258 +v -1.5291014 1.112402 0.21571238 +v -1.1704278 1.254084 0.10959171 +v -1.1256896 1.261228 0.09210769 +v -1.4892056 1.1036472 0.08262573 +v -1.560924 1.0888677 0.13034289 +v -1.4377937 1.1103106 0.041431084 +v -1.2430433 1.1197281 -0.055019185 +v -1.2355516 1.1525991 0.060542792 +v -1.1500579 1.1683894 0.043558158 +v -1.0896771 1.1764619 0.031562615 +v -1.1292646 1.1320727 -0.0790123 +v -1.047 1.1378454 -0.096359864 +v -0 -0.34043875 -0.48199478 +v -0 -0.00372797 0.026359282 +v 0.366172 -0.34043875 -0.46249148 +v 0.68693066 -0.34043872 -0.39284864 +v 0.70806706 -0.34043872 -0.34359026 +v 0.6380094 -0.34043872 -0.420176 +v 0.74614257 -0.34043875 -0.17828867 +v 0.76137465 -0.34043872 0.020404177 +v 0.7498723 -0.34043875 0.25085598 +v 0.6869306 -0.34043872 0.46466622 +v 0.718132 -0.34043875 0.4154079 +v 0.627241 -0.34043872 0.49459952 +v 0.38088784 -0.34043872 0.5420614 +v -0 -0.34043875 0.5677378 +v 0.38088784 -0.34043872 0.5420614 +v -0 -0.34043875 0.5677378 +v -0 -0.12764965 0.5677377 +v 0.38363668 -0.13184512 0.5420614 +v 0.627241 -0.34043872 0.49459952 +v 0.62724113 -0.13213621 0.49459955 +v 0.68693066 -0.13191307 0.46466625 +v 0.6869306 -0.34043872 0.46466622 +v 0.718132 -0.34043875 0.4154079 +v 0.7181321 -0.13168989 0.4154079 +v 0.7498723 -0.34043875 0.25085598 +v 0.7498723 -0.13046135 0.25191626 +v 0.76137465 -0.13038091 0.020423913 +v 0.76137465 -0.34043872 0.020404177 +v 0.74614257 -0.34043875 -0.17828867 +v 0.74614257 -0.123836026 -0.17948474 +v 0.70806706 -0.34043872 -0.34359026 +v 0.70806706 -0.124492735 -0.34359032 +v 0.68693066 -0.12451686 -0.39284873 +v 0.68693066 -0.34043872 -0.39284864 +v 0.6380094 -0.34043872 -0.420176 +v 0.6380094 -0.12454098 -0.42017603 +v 0.36881652 -0.12364906 -0.4624915 +v 0.366172 -0.34043875 -0.46249148 +v -0 -0.123212904 -0.4819948 +v -0 -0.34043875 -0.48199478 +v -0 -0.34043875 -0.48199478 +v -0.366172 -0.34043875 -0.46249148 +v -0 -0.00372797 0.026359282 +v -0.68693066 -0.34043872 -0.39284864 +v -0.6380094 -0.34043872 -0.420176 +v -0.74614257 -0.34043875 -0.17828867 +v -0.70806706 -0.34043872 -0.34359026 +v -0.76137465 -0.34043872 0.020404177 +v -0.7498723 -0.34043875 0.25085598 +v -0.6869306 -0.34043872 0.46466622 +v -0.718132 -0.34043875 0.4154079 +v -0.38088784 -0.34043872 0.5420614 +v -0.627241 -0.34043872 0.49459952 +v -0 -0.34043875 0.5677378 +v -0.38088784 -0.34043872 0.5420614 +v -0 -0.12764965 0.5677377 +v -0 -0.34043875 0.5677378 +v -0.38363668 -0.13184512 0.5420614 +v -0.627241 -0.34043872 0.49459952 +v -0.62724113 -0.13213621 0.49459955 +v -0.68693066 -0.13191307 0.46466625 +v -0.6869306 -0.34043872 0.46466622 +v -0.718132 -0.34043875 0.4154079 +v -0.7181321 -0.13168989 0.4154079 +v -0.7498723 -0.34043875 0.25085598 +v -0.7498723 -0.13046135 0.25191626 +v -0.76137465 -0.13038091 0.020423913 +v -0.76137465 -0.34043872 0.020404177 +v -0.74614257 -0.34043875 -0.17828867 +v -0.74614257 -0.123836026 -0.17948474 +v -0.70806706 -0.34043872 -0.34359026 +v -0.70806706 -0.124492735 -0.34359032 +v -0.68693066 -0.12451686 -0.39284873 +v -0.68693066 -0.34043872 -0.39284864 +v -0.6380094 -0.34043872 -0.420176 +v -0.6380094 -0.12454098 -0.42017603 +v -0.36881652 -0.12364906 -0.4624915 +v -0.366172 -0.34043875 -0.46249148 +v -0 -0.123212904 -0.4819948 +v -0 -0.34043875 -0.48199478 +v 0.594152 2.5503466 0.33019555 +v 0.5237787 2.4709878 0.6915351 +v 0.54514074 2.5310984 0.6915348 +v 0.5079031 2.4808533 0.29131567 +v 0.54514074 2.5310984 0.6915348 +v 0.47750267 2.594169 0.47175708 +v 0.594152 2.5503466 0.33019555 +v 0.330946 2.6673083 0.5734779 +v 0.41400462 2.5716183 0.75377613 +v 0.37673807 2.6032894 1.1274108 +v 0.17369848 2.7293215 0.6210539 +v 0.19759175 2.655654 1.1961364 +v 0.0021293582 2.753248 0.6372887 +v 0.0021293582 2.6808639 1.2223907 +v -0.19333304 2.655654 1.1961364 +v -0.16943973 2.7293215 0.6210539 +v -0.37247938 2.6032894 1.1274108 +v -0.3266873 2.6673083 0.5734779 +v -0.4465881 2.5633972 1.0769778 +v -0.5058702 2.5299926 0.9780212 +v -0.47324386 2.594169 0.47175708 +v -0.58989316 2.5503466 0.33019555 +v 0.45084685 2.5633972 1.0769778 +v 0.43942425 2.561531 0.8011124 +v 0.4514956 2.5562415 0.76849043 +v 0.46443594 2.5506728 0.8395326 +v 0.5101289 2.5299926 0.9780212 +v 0.5296703 2.525333 0.83916646 +v 0.5237787 2.4709878 0.6915351 +v 0.5079031 2.4808533 0.29131567 +v 0.4171028 2.5030599 0.4101454 +v 0.29676166 2.5464432 0.50308067 +v 0.40562692 2.505113 0.7540921 +v 0.3691155 2.540296 1.129076 +v 0.15273646 2.5806317 0.5657641 +v 0.19358924 2.5919461 1.1985785 +v 0.0020343622 2.5909975 0.5847718 +v 0.0021293582 2.616958 1.2252079 +v -0.1893305 2.5919461 1.1985785 +v -0.14869475 2.5805523 0.56561965 +v -0.36485684 2.540296 1.129076 +v -0.29241183 2.5465214 0.50322384 +v -0.43504995 2.5017512 1.0778989 +v -0.49239334 2.4691777 0.9786001 +v -0.41427094 2.5033028 0.41123924 +v -0.5037445 2.480852 0.2911399 +v 0.44124746 2.50092 1.0782412 +v 0.4294385 2.4948595 0.80194396 +v 0.44252485 2.49148 0.7692989 +v 0.45290607 2.4887228 0.84007293 +v 0.49665207 2.4691777 0.9786001 +v 0.5136205 2.470089 0.8398539 +v -0.56305367 1.9107658 -0.0013792419 +v -0.4718575 1.8164326 0.12563603 +v -0.48855543 1.8164327 -0.0013665009 +v -0.54382324 1.9107658 0.14490443 +v -0.5831527 1.9995742 -0.0013842774 +v -0.46050593 1.8714732 0.26571408 +v -0.42285836 1.8164327 0.24398474 +v -0.56323904 1.9995741 0.15010384 +v -0.59572566 2.3048391 -0.001699295 +v -0.57538277 2.3080902 0.1530426 +v -0.58484155 2.486601 -0.0014912414 +v -0.56444097 2.482454 0.15032639 +v -0.5047935 2.0289164 0.29127192 +v -0.5092971 2.319467 0.29546294 +v -0.5037445 2.480852 0.2911399 +v -0.48738196 1.9107656 0.28122628 +v -0.36680132 1.8556488 0.3675212 +v -0.34489813 1.8164327 0.3456254 +v -0.39758536 1.9107658 0.39829487 +v -0.41287613 1.9621118 0.41404033 +v -0.41895422 2.0867116 0.42297602 +v -0.42647785 2.3340924 0.41775888 +v -0.25576746 1.8478492 0.44551814 +v -0.24328546 1.8164326 0.42361864 +v -0.2805498 1.9102249 0.48899826 +v -0.29078853 2.0176642 0.5098872 +v -0.13040702 1.8431005 0.49300358 +v -0.124951914 1.8164326 0.47266096 +v -0.1442483 1.9107658 0.54461914 +v 0.002032838 1.9107656 0.5639028 +v 0.00204216 1.8414825 0.50918555 +v 0.002045538 1.8164327 0.4894021 +v 0.12904555 1.8164326 0.47270668 +v 0.13449185 1.8430964 0.4930474 +v 0.24739681 1.8164326 0.42370498 +v -0.2949692 2.160407 0.51184046 +v -0.14937656 2.0411313 0.5650636 +v 0.259867 1.8478408 0.44560203 +v 0.3490349 1.8164327 0.34574482 +v 0.14831397 1.9107658 0.54467005 +v 0.3709251 1.8556368 0.36764133 +v 0.4270307 1.8164326 0.24413463 +v 0.28463575 1.9102249 0.48909476 +v 0.46286583 1.8688316 0.26483235 +v 0.47607046 1.8164327 0.12579857 +v 0.40170687 1.9107658 0.39843205 +v 0.5480287 1.9107656 0.14509495 +v 0.49281415 1.8164327 -0.0011963653 +v 0.4915442 1.9107656 0.28139645 +v 0.41699013 1.9621118 0.4141851 +v 0.294872 2.0176642 0.5099888 +v 0.15343715 2.041131 0.56511694 +v 0.50895077 2.0289164 0.29144973 +v 0.56731236 1.9107656 -0.0011836243 +v 0.47611624 1.8164326 -0.12819885 +v 0.42307112 2.0867116 0.42311823 +v 0.0020277582 2.050697 0.584233 +v 0.29905307 2.160407 0.511942 +v 0.56744444 1.9995742 0.15030196 +v 0.54808205 1.9107656 -0.14746734 +v 0.42711708 1.8164326 -0.24655022 +v -0.15194418 2.2030916 0.569915 +v 0.15600525 2.2030919 0.5699684 +v 0.58741647 1.9995742 -0.0011785888 +v 0.49164322 1.9107658 -0.28378913 +v 0.34915683 1.8164326 -0.34818572 +v 0.5674978 1.9995742 -0.1526667 +v 0.5999895 2.3048391 -0.0014884186 +v 0.40184408 1.9107656 -0.4008577 +v 0.24754669 1.8164327 -0.42618406 +v 0.0020278345 2.230237 0.5930696 +v 0.57958823 2.3080902 0.15324585 +v 0.5090524 1.9995742 -0.29383484 +v 0.2848085 1.9107656 -0.49069753 +v 0.12921064 1.8164326 -0.47522384 +v 0.41606045 1.9995742 -0.41506895 +v 0.51994133 2.2934625 -0.3004287 +v 0.14850447 1.9107656 -0.5471821 +v 0.0022157184 1.8164326 -0.49196494 +v 0.29486173 1.9995742 -0.50810415 +v 0.0022284181 1.9107658 -0.5664657 +v -0.124786824 1.8164327 -0.47526702 +v 0.5796416 2.3048391 -0.15623032 +v 0.42495304 2.2934625 -0.42426887 +v 0.15371147 1.9995742 -0.5665952 +v -0.14405526 1.9107656 -0.54723287 +v -0.24313813 1.8164327 -0.42627043 +v 0.30115086 2.2934625 -0.519303 +v 0.002233498 1.9995742 -0.5865647 +v -0.28037706 1.9107656 -0.49079397 +v -0.3447762 1.8164327 -0.34830764 +v 0.15697029 2.2934625 -0.57905143 +v -0.14925465 1.9995742 -0.5666486 +v -0.39744568 1.9107656 -0.40099737 +v -0.422772 1.8164326 -0.24669746 +v 0.002233498 2.2934625 -0.5994501 +v -0.29042533 1.9995742 -0.5082032 +v -0.48728547 1.9107658 -0.28395927 +v -0.47181174 1.8164326 -0.12836395 +v -0.1525084 2.2934625 -0.5791073 +v 0.0022320757 2.4539516 -0.59004647 +v 0.15456146 2.455069 -0.56989866 +v 0.296408 2.4583414 -0.5109117 +v 0.41803488 2.4635417 -0.4171684 +v 0.51113373 2.4703102 -0.29515502 +v 0.56961536 2.478177 -0.15334946 +v 0.5891029 2.4866128 -0.0012854766 +v -0.1501039 2.4550662 -0.5699532 +v 0.5686458 2.4824557 0.1505259 +v -0.29670927 2.2934625 -0.5194071 +v -0.29196948 2.4583354 -0.5110147 +v 0.5134542 2.3194668 0.29564074 +v 0.5079031 2.4808533 0.29131567 +v -0.4205444 2.2934625 -0.42441872 +v -0.4136311 2.4635336 -0.41731566 +v 0.41951743 2.4436169 0.4104259 +v 0.4171028 2.5030599 0.4101454 +v 0.43059683 2.3340924 0.41789854 +v 0.29849654 2.353597 0.50971955 +v 0.2983012 2.4760756 0.50452524 +v 0.29676166 2.5464432 0.50308067 +v 0.15273646 2.5806317 0.5657641 +v 0.15642928 2.3535972 0.5721223 +v 0.15373212 2.4173687 0.57487816 +v 0.0021852383 2.3535972 0.5960389 +v 0.002027809 2.4100282 0.5957519 +v 0.0020343622 2.5909975 0.5847718 +v -0.14869475 2.5805523 0.56561965 +v -0.15236107 2.3535972 0.5720689 +v -0.14966832 2.4173687 0.5748248 +v -0.29421496 2.476076 0.50442624 +v -0.29241183 2.5465214 0.50322384 +v -0.29440802 2.3535972 0.50962055 +v -0.41540053 2.443617 0.41028365 +v -0.41427094 2.5033028 0.41123924 +v -0.59572566 2.3048391 -0.001699295 +v -0.5650697 2.4781697 -0.1534806 +v -0.58484155 2.486601 -0.0014912414 +v -0.5753294 2.2934625 -0.15643348 +v -0.5831527 1.9995742 -0.0013842774 +v -0.50677294 2.4703004 -0.29533347 +v -0.5631857 1.9995742 -0.15286483 +v -0.56305367 1.9107658 -0.0013792419 +v -0.5155785 2.2934625 -0.30061156 +v -0.54376996 1.9107656 -0.14765784 +v -0.48855543 1.8164327 -0.0013665009 +v -0.5046921 1.9995742 -0.2940126 +v -0.41165695 1.9995742 -0.41521376 +v -0.5037445 2.480852 0.2911399 +v -0.6649625 2.5415642 0.1655542 +v -0.58989316 2.5503466 0.33019555 +v -0.56444097 2.482454 0.15032639 +v -0.6890859 2.5321734 -0.013496552 +v -0.58484155 2.486601 -0.0014912414 +v -0.6661833 2.522911 -0.19260749 +v -0.5650697 2.4781697 -0.1534806 +v -0.59688604 2.5144217 -0.35935614 +v -0.50677294 2.4703004 -0.29533347 +v -0.48735893 2.5072513 -0.50293976 +v -0.4136311 2.4635336 -0.41731566 +v -0.34421948 2.5019054 -0.61327946 +v -0.29196948 2.4583354 -0.5110147 +v -0.17727418 2.498757 -0.6826958 +v -0.1501039 2.4550662 -0.5699532 +v 0.0021293582 2.4980242 -0.7063814 +v 0.0022320757 2.4539516 -0.59004647 +v 0.18153289 2.498757 -0.6826958 +v 0.15456146 2.455069 -0.56989866 +v 0.296408 2.4583414 -0.5109117 +v 0.34847817 2.5019054 -0.61327946 +v 0.41803488 2.4635417 -0.4171684 +v 0.49161765 2.5072513 -0.50293976 +v 0.51113373 2.4703102 -0.29515502 +v 0.6011448 2.5144217 -0.35935614 +v 0.56961536 2.478177 -0.15334946 +v 0.6704421 2.522911 -0.19260749 +v 0.5891029 2.4866128 -0.0012854766 +v 0.69334465 2.5321734 -0.013496552 +v 0.5686458 2.4824557 0.1505259 +v 0.66922116 2.5415642 0.1655542 +v 0.5079031 2.4808533 0.29131567 +v 0.594152 2.5503466 0.33019555 +v 0.5101289 2.5299926 0.9780212 +v 0.5296703 2.525333 0.83916646 +v 0.5136205 2.470089 0.8398539 +v 0.49665207 2.4691777 0.9786001 +v 0.44124746 2.50092 1.0782412 +v 0.45084685 2.5633972 1.0769778 +v 0.3691155 2.540296 1.129076 +v 0.37673807 2.6032894 1.1274108 +v 0.19358924 2.5919461 1.1985785 +v 0.19759175 2.655654 1.1961364 +v 0.0021293582 2.616958 1.2252079 +v 0.0021293582 2.6808639 1.2223907 +v -0.19333304 2.655654 1.1961364 +v -0.1893305 2.5919461 1.1985785 +v -0.37247938 2.6032894 1.1274108 +v -0.36485684 2.540296 1.129076 +v -0.4465881 2.5633972 1.0769778 +v -0.43504995 2.5017512 1.0778989 +v -0.5058702 2.5299926 0.9780212 +v -0.49239334 2.4691777 0.9786001 +v -0.58989316 2.5503466 0.33019555 +v -0.5037445 2.480852 0.2911399 +v 0.5237787 2.4709878 0.6915351 +v 0.40562692 2.505113 0.7540921 +v 0.41400462 2.5716183 0.75377613 +v 0.54514074 2.5310984 0.6915348 +v 0.46443594 2.5506728 0.8395326 +v 0.45290607 2.4887228 0.84007293 +v 0.5136205 2.470089 0.8398539 +v 0.5296703 2.525333 0.83916646 +v 0.40562692 2.505113 0.7540921 +v 0.44252485 2.49148 0.7692989 +v 0.4514956 2.5562415 0.76849043 +v 0.41400462 2.5716183 0.75377613 +v 0.4514956 2.5562415 0.76849043 +v 0.44252485 2.49148 0.7692989 +v 0.4294385 2.4948595 0.80194396 +v 0.43942425 2.561531 0.8011124 +v 0.4294385 2.4948595 0.80194396 +v 0.45290607 2.4887228 0.84007293 +v 0.46443594 2.5506728 0.8395326 +v 0.43942425 2.561531 0.8011124 +v 1.5905627 1.5251323 0.047089994 +v 1.6443635 1.4270641 -0.10539181 +v 1.4581746 1.2639954 0.023391226 +v 1.5008186 1.5122699 0.14153388 +v 1.6577073 1.3663479 -0.13370194 +v 1.4951065 1.4402417 0.25860378 +v 1.5649368 1.3261061 -0.17068386 +v 1.4832938 1.3341086 0.30317864 +v 1.6690353 1.2811767 -0.15143475 +v 1.485908 1.2952331 0.30206004 +v 1.6463013 1.1522369 -0.10968349 +v 1.3607814 1.2203872 0.20224833 +v 1.5999767 1.0898355 0.01873764 +v 1.493563 1.1957042 0.28245258 +v 1.4892056 1.1036472 0.08262573 +v 1.5291014 1.112402 0.21571238 +v 1.560924 1.0888677 0.13034289 +v -1.5905627 1.5251323 0.047089994 +v -1.4581746 1.2639954 0.023391226 +v -1.6443635 1.4270641 -0.10539181 +v -1.5008186 1.5122699 0.14153388 +v -1.6577073 1.3663479 -0.13370194 +v -1.4951065 1.4402417 0.25860378 +v -1.5649368 1.3261061 -0.17068386 +v -1.4832938 1.3341086 0.30317864 +v -1.6690353 1.2811767 -0.15143475 +v -1.485908 1.2952331 0.30206004 +v -1.6463013 1.1522369 -0.10968349 +v -1.3607814 1.2203872 0.20224833 +v -1.5999767 1.0898355 0.01873764 +v -1.493563 1.1957042 0.28245258 +v -1.4892056 1.1036472 0.08262573 +v -1.5291014 1.112402 0.21571238 +v -1.560924 1.0888677 0.13034289 +v 0.49281415 1.8164327 -0.0011963653 +v 0.40410212 1.776298 0.051711883 +v 0.47607046 1.8164327 0.12579857 +v 0.4270307 1.8164326 0.24413463 +v 0.37674376 1.7762982 -0.15637764 +v 0.47611624 1.8164326 -0.12819885 +v 0.42711708 1.8164326 -0.24655022 +v 0.3237543 1.776298 0.24559768 +v 0.3490349 1.8164327 0.34574482 +v 0.24739681 1.8164326 0.42370498 +v 0.24900971 1.7762982 -0.32290512 +v 0.34915683 1.8164326 -0.34818572 +v 0.24754669 1.8164327 -0.42618406 +v 0.0021293582 1.7572024 -0.00128273 +v 0.15722428 1.7762982 0.37333426 +v 0.055123918 1.7762982 -0.40325546 +v 0.12904555 1.8164326 0.47270668 +v 0.12921064 1.8164326 -0.47522384 +v 0.002045538 1.8164327 0.4894021 +v 0.0022157184 1.8164326 -0.49196494 +v -0.05086266 1.7762982 0.40069258 +v -0.124951914 1.8164326 0.47266096 +v -0.24328546 1.8164326 0.42361864 +v -0.15296558 1.7762982 -0.37589714 +v -0.124786824 1.8164327 -0.47526702 +v -0.24313813 1.8164327 -0.42627043 +v -0.244751 1.7762982 0.32034224 +v -0.34489813 1.8164327 0.3456254 +v -0.42285836 1.8164327 0.24398474 +v -0.31949306 1.776298 -0.24816054 +v -0.3447762 1.8164327 -0.34830764 +v -0.422772 1.8164326 -0.24669746 +v -0.37248763 1.776298 0.15381226 +v -0.4718575 1.8164326 0.12563603 +v -0.48855543 1.8164327 -0.0013665009 +v -0.39984342 1.7762982 -0.054272156 +v -0.47181174 1.8164326 -0.12836395 +v 0.0021293582 2.7768886 -0.64672333 +v -0.17727418 2.498757 -0.6826958 +v 0.0021293582 2.4980242 -0.7063814 +v 0.18153289 2.498757 -0.6826958 +v -0.16074836 2.7768877 -0.6252643 +v -0.34421948 2.5019054 -0.61327946 +v 0.16500711 2.7768877 -0.6252643 +v 0.34847817 2.5019054 -0.61327946 +v -0.31241858 2.7768855 -0.5624117 +v -0.48735893 2.5072513 -0.50293976 +v 0.31667727 2.7768855 -0.5624117 +v 0.49161765 2.5072513 -0.50293976 +v -0.44264916 2.776871 -0.46244416 +v -0.59688604 2.5144217 -0.35935614 +v 0.44690788 2.776871 -0.46244416 +v 0.6011448 2.5144217 -0.35935614 +v -0.5425654 2.776881 -0.33219445 +v -0.6661833 2.522911 -0.19260749 +v 0.54682416 2.776881 -0.33219445 +v 0.6704421 2.522911 -0.19260749 +v -0.6053646 2.7769055 -0.18050475 +v -0.6890859 2.5321734 -0.013496552 +v 0.6096233 2.7769055 -0.18050475 +v 0.69334465 2.5321734 -0.013496552 +v -0.62677276 2.7769196 -0.01771759 +v -0.6649625 2.5415642 0.1655542 +v 0.63103145 2.7769196 -0.01771759 +v 0.66922116 2.5415642 0.1655542 +v -0.6052644 2.7767966 0.14518242 +v -0.58989316 2.5503466 0.33019555 +v 0.60952324 2.7767966 0.14518242 +v 0.594152 2.5503466 0.33019555 +v -0.5423622 2.775487 0.2973957 +v -0.47324386 2.594169 0.47175708 +v -0.44437945 2.7765496 0.4267993 +v -0.3266873 2.6673083 0.5734779 +v -0.45074272 2.9669168 0.2496022 +v -0.5030016 2.9668703 0.120642774 +v -0.2847948 3.1245396 0.21785705 +v -0.31593964 2.7769356 0.52677524 +v -0.16943973 2.7293215 0.6210539 +v -0.36761138 2.9669745 0.36031967 +v -0.5208476 2.9669003 -0.01778656 +v -0.16073081 2.7776177 0.59449196 +v 0.0021293582 2.753248 0.6372887 +v -0.25931337 2.9671147 0.44525108 +v -0.35647666 3.12454 0.032727737 +v -0.5030487 2.966931 -0.15622108 +v -0.45082778 2.9669597 -0.28522947 +v -0.33207026 3.12454 -0.16595855 +v -0.36773497 2.966985 -0.3960166 +v -0.25943717 2.9670205 -0.48103583 +v -0.21811432 3.1245396 -0.32496384 +v -0.13331547 2.9670205 -0.5344915 +v 0.0021293582 3.12454 -0.39946508 +v 0.0021293582 2.9670205 -0.5527407 +v 0.1375742 2.9670205 -0.5344915 +v 0.26369587 2.9670205 -0.48103583 +v 0.22237302 3.1245396 -0.32496384 +v 0.37199366 2.966985 -0.3960166 +v 0.4550865 2.9669597 -0.28522947 +v 0.33632895 3.12454 -0.16595855 +v 0.5073074 2.966931 -0.15622108 +v 0.5251064 2.9669003 -0.01778656 +v 0.36073536 3.12454 0.032727737 +v 0.5072603 2.9668703 0.120642774 +v 0.28905353 3.1245396 0.21785705 +v 0.45500147 2.9669168 0.2496022 +v 0.54662097 2.775487 0.2973957 +v 0.47750267 2.594169 0.47175708 +v 0.44863823 2.7765496 0.4267993 +v 0.330946 2.6673083 0.5734779 +v 0.3718701 2.9669745 0.36031967 +v 0.32019836 2.7769356 0.52677524 +v 0.17369848 2.7293215 0.6210539 +v 0.26357207 2.9671147 0.44525108 +v 0.16498953 2.7776177 0.59449196 +v 0.0021293582 2.7778857 0.61520505 +v 0.0021293582 2.9674046 0.51680297 +v 0.13740778 2.967304 0.49861068 +v -0.13314904 2.967304 0.49861068 +v 0.14049058 3.12454 0.33982247 +v 0.0021293582 3.1245396 0.37260094 +v -0.13623184 3.12454 0.33982247 +v 0.0021293582 3.199826 0.20209083 +v 0.07936189 3.199752 0.18711144 +v -0.07510318 3.199752 0.18711144 +v 0.16227087 3.1998305 0.117209315 +v 0.0021293582 3.227098 -0.022284545 +v -0.15801215 3.1998305 0.117209315 +v 0.2022702 3.1999407 0.0111122895 +v -0.19801146 3.1999407 0.0111122895 +v 0.18864061 3.2000592 -0.10275116 +v -0.1843819 3.2000592 -0.10275116 +v 0.12503706 3.2001553 -0.19386955 +v -0.120778345 3.2001553 -0.19386955 +v 0.0021293582 3.2002907 -0.23782997 +v -0 1.4314891 0.3473016 +v -0 1.4704198 0.06252716 +v 0.12928851 1.4590228 0.3236415 +v -0.12928851 1.4590228 0.3236415 +v 0.23142013 1.5136834 0.22728764 +v -0.23142013 1.5136834 0.22728764 +v 0.28921455 1.5833751 0.09486645 +v -0.28921455 1.5833751 0.09486645 +v 0.27430218 1.6375227 -0.018529281 +v -0.27430218 1.6375227 -0.018529281 +v 0.21643084 1.6707104 -0.13040107 +v -0.21643084 1.6707104 -0.13040107 +v -0 1.6824199 -0.17403571 +vt 0.419168 0.417904 +vt 0.434358 0.393409 +vt 0.435015 0.370617 +vt 0.950029 0.354996 +vt 0.938819 0.35349 +vt 0.993649 0.367667 +vt 0.993649 0.435162 +vt 0.938819 0.468181 +vt 0.983027 0.457133 +vt 0.993649 0.345809 +vt 0.938819 0.35349 +vt 0.950029 0.354996 +vt 0.983027 0.457133 +vt 0.938819 0.468181 +vt 0.993649 0.470277 +vt 0.950197 0.162997 +vt 0.938819 0.124538 +vt 0.938819 0.186632 +vt 0.036051 0.98096 +vt 0.013056 0.963949 +vt 0.013056 0.990399 +vt 0.034133 0.96866 +vt 0.013056 0.928064 +vt 0.03778 0.924798 +vt 0.045754 0.971043 +vt 0.051148 0.990399 +vt 0.060846 0.922096 +vt 0.066956 0.990399 +vt 0.064376 0.974291 +vt 0.086935 0.975909 +vt 0.086957 0.990399 +vt 0.083469 0.918149 +vt 0.099187 0.975155 +vt 0.111469 0.917025 +vt 0.120339 0.974578 +vt 0.10072 0.990399 +vt 0.117895 0.990399 +vt 0.145727 0.966085 +vt 0.144214 0.990399 +vt 0.141808 0.915873 +vt 0.173709 0.990399 +vt 0.171251 0.957926 +vt 0.169006 0.914834 +vt 0.180201 0.962994 +vt 0.185108 0.954021 +vt 0.193112 0.913484 +vt 0.196616 0.990399 +vt 0.197555 0.950815 +vt 0.224533 0.914267 +vt 0.229956 0.949623 +vt 0.2289 0.990399 +vt 0.261351 0.918966 +vt 0.248761 0.981327 +vt 0.260654 0.953457 +vt 0.257014 0.990399 +vt 0.28509 0.990399 +vt 0.286897 0.924355 +vt 0.286133 0.955143 +vt 0.313223 0.990399 +vt 0.313223 0.96168 +vt 0.313223 0.924042 +vt 0.434358 0.393409 +vt 0.454735 0.417904 +vt 0.435015 0.370617 +vt 0.484747 0.370617 +vt 0.482568 0.417904 +vt 0.527143 0.370617 +vt 0.50753 0.417904 +vt 0.531097 0.417904 +vt 0.014464 0.417904 +vt 0.053938 0.370617 +vt 0.014464 0.370617 +vt 0.057121 0.417904 +vt 0.102664 0.370617 +vt 0.106287 0.417904 +vt 0.114014 0.412606 +vt 0.169079 0.370617 +vt 0.157075 0.417904 +vt 0.224178 0.417904 +vt 0.230773 0.370617 +vt 0.267347 0.380728 +vt 0.293176 0.370617 +vt 0.297154 0.417904 +vt 0.349791 0.417904 +vt 0.34155 0.370617 +vt 0.397609 0.398546 +vt 0.388912 0.370617 +vt 0.419168 0.417904 +vt 0.435015 0.370617 +vt 0.566161 0.417904 +vt 0.566161 0.370617 +vt 0.527143 0.370617 +vt 0.531097 0.417904 +vt 0.086697 0.342796 +vt 0.077901 0.318827 +vt 0.076314 0.344834 +vt 0.086805 0.318587 +vt 0.103539 0.34091 +vt 0.085392 0.285351 +vt 0.074777 0.285786 +vt 0.113058 0.322363 +vt 0.120618 0.342895 +vt 0.102721 0.282579 +vt 0.08777 0.238273 +vt 0.073086 0.24546 +vt 0.064361 0.248889 +vt 0.045253 0.226006 +vt 0.041466 0.231636 +vt 0.153714 0.277689 +vt 0.160375 0.320321 +vt 0.003381 0.219718 +vt 0.003381 0.225711 +vt 0.044483 0.206103 +vt 0.003381 0.203556 +vt 0.04132 0.163891 +vt 0.003381 0.166937 +vt 0.003381 0.109245 +vt 0.081326 0.162202 +vt 0.039814 0.103723 +vt 0.036309 0.059499 +vt 0.003381 0.065176 +vt 0.003381 0.009197 +vt 0.039898 0.009197 +vt 0.070327 0.009197 +vt 0.07805 0.09924 +vt 0.076702 0.054579 +vt 0.083882 0.009197 +vt 0.095306 0.009197 +vt 0.135824 0.056429 +vt 0.143569 0.009197 +vt 0.206075 0.05749 +vt 0.207561 0.009197 +vt 0.271393 0.009197 +vt 0.137795 0.099026 +vt 0.142119 0.160503 +vt 0.276001 0.055802 +vt 0.316417 0.009197 +vt 0.146489 0.229917 +vt 0.20585 0.226958 +vt 0.20507 0.15883 +vt 0.205341 0.098667 +vt 0.272563 0.097869 +vt 0.267866 0.158667 +vt 0.333592 0.053433 +vt 0.33073 0.009197 +vt 0.342381 0.009197 +vt 0.331307 0.096932 +vt 0.370761 0.056903 +vt 0.370096 0.009197 +vt 0.404012 0.009197 +vt 0.404012 0.059307 +vt 0.404012 0.102534 +vt 0.368455 0.099779 +vt 0.404012 0.159381 +vt 0.367201 0.15863 +vt 0.404012 0.196815 +vt 0.328005 0.158594 +vt 0.365276 0.200673 +vt 0.404012 0.213091 +vt 0.26647 0.229363 +vt 0.323546 0.233401 +vt 0.364824 0.220204 +vt 0.369003 0.226331 +vt 0.404012 0.219537 +vt 0.348099 0.242782 +vt 0.338551 0.239699 +vt 0.340794 0.278023 +vt 0.329546 0.278247 +vt 0.34027 0.310217 +vt 0.312012 0.276983 +vt 0.260983 0.274719 +vt 0.330725 0.310794 +vt 0.333029 0.334724 +vt 0.344275 0.335635 +vt 0.315942 0.334143 +vt 0.304888 0.316312 +vt 0.298969 0.337122 +vt 0.207325 0.274916 +vt 0.257707 0.316901 +vt 0.209069 0.317827 +vt 0.258759 0.330433 +vt 0.261817 0.349939 +vt 0.210126 0.344413 +vt 0.248723 0.358601 +vt 0.210536 0.354013 +vt 0.17276 0.361312 +vt 0.158899 0.353606 +vt 0.209559 0.330467 +vt 0.160379 0.333898 +vt 0.671484 0.331034 +vt 0.664426 0.350248 +vt 0.677707 0.355757 +vt 0.686474 0.329782 +vt 0.671816 0.311234 +vt 0.713597 0.357323 +vt 0.685044 0.310297 +vt 0.677801 0.290029 +vt 0.659607 0.289576 +vt 0.651723 0.25292 +vt 0.639534 0.275482 +vt 0.615991 0.271524 +vt 0.701826 0.306408 +vt 0.713668 0.325611 +vt 0.726346 0.323666 +vt 0.729581 0.355792 +vt 0.744548 0.350466 +vt 0.712781 0.291576 +vt 0.740363 0.321309 +vt 0.753895 0.347641 +vt 0.750498 0.319972 +vt 0.737517 0.290466 +vt 0.746421 0.288193 +vt 0.737705 0.257761 +vt 0.745458 0.258454 +vt 0.746569 0.231758 +vt 0.753703 0.236453 +vt 0.773749 0.22005 +vt 0.716467 0.252507 +vt 0.772611 0.214439 +vt 0.805068 0.217466 +vt 0.805068 0.21163 +vt 0.805068 0.196167 +vt 0.759798 0.198391 +vt 0.720061 0.220681 +vt 0.762196 0.155957 +vt 0.805068 0.160002 +vt 0.672052 0.206211 +vt 0.727103 0.152808 +vt 0.764593 0.098713 +vt 0.805068 0.106559 +vt 0.805068 0.066559 +vt 0.72766 0.094252 +vt 0.766427 0.057402 +vt 0.7683 0.010363 +vt 0.805068 0.010363 +vt 0.74096 0.010363 +vt 0.727007 0.051065 +vt 0.729381 0.010363 +vt 0.718065 0.010363 +vt 0.681196 0.053829 +vt 0.675509 0.010363 +vt 0.679937 0.094339 +vt 0.613611 0.05671 +vt 0.613448 0.010363 +vt 0.551289 0.010363 +vt 0.67684 0.150159 +vt 0.545996 0.053967 +vt 0.511132 0.010363 +vt 0.613819 0.094509 +vt 0.614278 0.201677 +vt 0.50025 0.051498 +vt 0.497688 0.010363 +vt 0.486624 0.010363 +vt 0.614196 0.149439 +vt 0.551356 0.150414 +vt 0.547643 0.094567 +vt 0.615098 0.243921 +vt 0.46109 0.058346 +vt 0.459372 0.010363 +vt 0.499878 0.094771 +vt 0.553546 0.208004 +vt 0.578667 0.25466 +vt 0.592292 0.277449 +vt 0.571609 0.292592 +vt 0.422549 0.068224 +vt 0.422549 0.010363 +vt 0.463013 0.099689 +vt 0.422549 0.108094 +vt 0.500739 0.153245 +vt 0.465461 0.156907 +vt 0.422549 0.161361 +vt 0.422549 0.197624 +vt 0.553062 0.293307 +vt 0.558687 0.31461 +vt 0.508798 0.225105 +vt 0.467269 0.199637 +vt 0.482669 0.233438 +vt 0.513541 0.255065 +vt 0.455185 0.216059 +vt 0.422549 0.21315 +vt 0.422549 0.21954 +vt 0.453896 0.222249 +vt 0.475021 0.238642 +vt 0.483864 0.261084 +vt 0.492253 0.260378 +vt 0.483185 0.290837 +vt 0.517537 0.294488 +vt 0.492726 0.293139 +vt 0.479 0.322456 +vt 0.489754 0.323942 +vt 0.475327 0.350025 +vt 0.485267 0.353023 +vt 0.50378 0.326432 +vt 0.50017 0.358497 +vt 0.528519 0.309392 +vt 0.516014 0.328526 +vt 0.51613 0.360195 +vt 0.543637 0.33297 +vt 0.552023 0.359088 +vt 0.545379 0.313495 +vt 0.558618 0.334464 +vt 0.565383 0.353788 +vt 0.993649 0.367667 +vt 0.938819 0.35349 +vt 0.938819 0.395543 +vt 0.993649 0.395589 +vt 0.938819 0.431427 +vt 0.993649 0.417067 +vt 0.993649 0.435162 +vt 0.938819 0.468181 +vt 0.993649 0.008802 +vt 0.938819 0.008802 +vt 0.938819 0.040158 +vt 0.993649 0.03609 +vt 0.938819 0.081321 +vt 0.993649 0.071589 +vt 0.993649 0.111849 +vt 0.938819 0.124538 +vt 0.993649 0.120581 +vt 0.977764 0.126485 +vt 0.993649 0.13608 +vt 0.950197 0.162997 +vt 0.950197 0.162997 +vt 0.938819 0.186632 +vt 0.993649 0.194182 +vt 0.993649 0.24258 +vt 0.938819 0.23707 +vt 0.993649 0.288503 +vt 0.938819 0.27786 +vt 0.993649 0.324877 +vt 0.938819 0.316177 +vt 0.993649 0.335437 +vt 0.982528 0.339533 +vt 0.938819 0.35349 +vt 0.993649 0.345809 +vt 0.626726 0.972413 +vt 0.634148 0.991381 +vt 0.634148 0.967498 +vt 0.626176 0.968856 +vt 0.634148 0.928964 +vt 0.609639 0.924491 +vt 0.614311 0.971488 +vt 0.614572 0.991381 +vt 0.602789 0.972779 +vt 0.598159 0.991381 +vt 0.58592 0.920701 +vt 0.583317 0.975474 +vt 0.581553 0.991381 +vt 0.559536 0.991381 +vt 0.559955 0.976375 +vt 0.562104 0.91638 +vt 0.547065 0.975093 +vt 0.532694 0.915532 +vt 0.526004 0.974516 +vt 0.537888 0.991381 +vt 0.545294 0.991381 +vt 0.535356 0.991381 +vt 0.526758 0.991381 +vt 0.498508 0.969708 +vt 0.500617 0.991381 +vt 0.500983 0.914837 +vt 0.471664 0.991381 +vt 0.470928 0.962916 +vt 0.47284 0.914894 +vt 0.441906 0.991381 +vt 0.44723 0.958723 +vt 0.448629 0.914633 +vt 0.437288 0.955289 +vt 0.419851 0.954166 +vt 0.417315 0.916703 +vt 0.429796 0.991381 +vt 0.423107 0.980185 +vt 0.41912 0.991381 +vt 0.413311 0.991381 +vt 0.381406 0.921535 +vt 0.384547 0.991381 +vt 0.383619 0.954733 +vt 0.355926 0.927083 +vt 0.356055 0.991381 +vt 0.355189 0.959705 +vt 0.328335 0.927688 +vt 0.328335 0.991381 +vt 0.328335 0.966468 +vt 0.364386 0.607121 +vt 0.358193 0.611304 +vt 0.360525 0.604548 +vt 0.367362 0.596666 +vt 0.373796 0.603663 +vt 0.379104 0.590714 +vt 0.376209 0.6031 +vt 0.389721 0.590714 +vt 0.387388 0.6031 +vt 0.398487 0.6031 +vt 0.400257 0.590714 +vt 0.409667 0.6031 +vt 0.410793 0.590714 +vt 0.420766 0.6031 +vt 0.421329 0.590714 +vt 0.431865 0.6031 +vt 0.431865 0.590714 +vt 0.442401 0.590714 +vt 0.443045 0.6031 +vt 0.453742 0.6031 +vt 0.452535 0.590714 +vt 0.46476 0.6031 +vt 0.462991 0.590714 +vt 0.475698 0.6031 +vt 0.473446 0.590714 +vt 0.487602 0.6031 +vt 0.484626 0.590714 +vt 0.498621 0.596022 +vt 0.489613 0.6031 +vt 0.498621 0.60688 +vt 0.502401 0.604548 +vt 0.505537 0.611143 +vt 0.347026 0.606857 +vt 0.347026 0.660101 +vt 0.343487 0.665811 +vt 0.336892 0.606857 +vt 0.334962 0.671763 +vt 0.325873 0.671763 +vt 0.32531 0.606857 +vt 0.316544 0.671763 +vt 0.316061 0.606857 +vt 0.307536 0.671763 +vt 0.307134 0.606857 +vt 0.298608 0.671763 +vt 0.298287 0.606857 +vt 0.289681 0.671763 +vt 0.289359 0.606857 +vt 0.280753 0.671763 +vt 0.280431 0.606857 +vt 0.271745 0.671763 +vt 0.271584 0.606857 +vt 0.262818 0.671763 +vt 0.262657 0.606857 +vt 0.25389 0.671763 +vt 0.253729 0.606857 +vt 0.244963 0.671763 +vt 0.244802 0.606857 +vt 0.235633 0.671763 +vt 0.235472 0.606857 +vt 0.226464 0.671763 +vt 0.223971 0.606857 +vt 0.217939 0.666374 +vt 0.214078 0.660664 +vt 0.214078 0.606857 +vt 0.505537 0.659239 +vt 0.498621 0.60688 +vt 0.505537 0.611143 +vt 0.498621 0.659239 +vt 0.489613 0.6031 +vt 0.487602 0.659239 +vt 0.487602 0.6031 +vt 0.475698 0.6031 +vt 0.476985 0.659239 +vt 0.46476 0.6031 +vt 0.465645 0.659239 +vt 0.453742 0.6031 +vt 0.454465 0.659239 +vt 0.443045 0.6031 +vt 0.443045 0.659239 +vt 0.431865 0.659239 +vt 0.431865 0.6031 +vt 0.420766 0.6031 +vt 0.420766 0.659239 +vt 0.409667 0.6031 +vt 0.409667 0.659239 +vt 0.398487 0.6031 +vt 0.398487 0.659239 +vt 0.387388 0.6031 +vt 0.387388 0.659239 +vt 0.376209 0.6031 +vt 0.376209 0.659239 +vt 0.373796 0.603663 +vt 0.364386 0.659239 +vt 0.364386 0.607121 +vt 0.358193 0.659239 +vt 0.358193 0.611304 +vt 0.505537 0.659239 +vt 0.499264 0.666397 +vt 0.498621 0.659239 +vt 0.487602 0.659239 +vt 0.484787 0.672027 +vt 0.474572 0.672027 +vt 0.476985 0.659239 +vt 0.465645 0.659239 +vt 0.464036 0.672027 +vt 0.454465 0.659239 +vt 0.45342 0.672027 +vt 0.443045 0.659239 +vt 0.442482 0.672027 +vt 0.431865 0.659239 +vt 0.431865 0.672027 +vt 0.420766 0.659239 +vt 0.421329 0.672027 +vt 0.409667 0.659239 +vt 0.410793 0.672027 +vt 0.398487 0.659239 +vt 0.400176 0.672027 +vt 0.387388 0.659239 +vt 0.38964 0.672027 +vt 0.376209 0.659239 +vt 0.379024 0.672027 +vt 0.364386 0.659239 +vt 0.365512 0.665995 +vt 0.358193 0.659239 +vt 0.904406 0.193959 +vt 0.921741 0.187936 +vt 0.920615 0.175817 +vt 0.900447 0.173358 +vt 0.9019 0.201667 +vt 0.922432 0.200404 +vt 0.898143 0.144085 +vt 0.921647 0.141585 +vt 0.912382 0.1201 +vt 0.90246 0.225723 +vt 0.923615 0.224672 +vt 0.901721 0.248986 +vt 0.92508 0.251448 +vt 0.910895 0.269494 +vt 0.901149 0.269494 +vt 0.857379 0.269494 +vt 0.85206 0.249203 +vt 0.836508 0.269494 +vt 0.848203 0.225625 +vt 0.836377 0.249272 +vt 0.821418 0.269494 +vt 0.821417 0.249337 +vt 0.833482 0.225598 +vt 0.821417 0.225576 +vt 0.84778 0.201592 +vt 0.832901 0.201571 +vt 0.821418 0.201555 +vt 0.852076 0.172535 +vt 0.833432 0.172217 +vt 0.821417 0.172013 +vt 0.858943 0.144479 +vt 0.835914 0.144711 +vt 0.821417 0.144857 +vt 0.896405 0.120435 +vt 0.838588 0.118288 +vt 0.821418 0.116466 +vt 0.864989 0.121109 +vt 0.895524 0.09657 +vt 0.920252 0.096851 +vt 0.8416 0.095999 +vt 0.821417 0.094846 +vt 0.86971 0.097604 +vt 0.895717 0.076822 +vt 0.92247 0.076273 +vt 0.922923 0.069345 +vt 0.897084 0.053843 +vt 0.869954 0.072767 +vt 0.841533 0.071756 +vt 0.821417 0.07104 +vt 0.867762 0.054077 +vt 0.898785 0.032902 +vt 0.92444 0.050688 +vt 0.926755 0.030034 +vt 0.839903 0.054299 +vt 0.821417 0.054447 +vt 0.910149 0.011851 +vt 0.925607 0.011852 +vt 0.90009 0.011851 +vt 0.856901 0.011851 +vt 0.862877 0.033354 +vt 0.838578 0.033659 +vt 0.821417 0.033875 +vt 0.836307 0.011851 +vt 0.821417 0.011851 +vt 0.364386 0.607121 +vt 0.360525 0.604548 +vt 0.358193 0.611304 +vt 0.373796 0.603663 +vt 0.367362 0.596666 +vt 0.379104 0.590714 +vt 0.376209 0.6031 +vt 0.389721 0.590714 +vt 0.387388 0.6031 +vt 0.398487 0.6031 +vt 0.400257 0.590714 +vt 0.409667 0.6031 +vt 0.410793 0.590714 +vt 0.420766 0.6031 +vt 0.421329 0.590714 +vt 0.431865 0.6031 +vt 0.431865 0.590714 +vt 0.442401 0.590714 +vt 0.443045 0.6031 +vt 0.453742 0.6031 +vt 0.452535 0.590714 +vt 0.46476 0.6031 +vt 0.462991 0.590714 +vt 0.475698 0.6031 +vt 0.473446 0.590714 +vt 0.487602 0.6031 +vt 0.484626 0.590714 +vt 0.498621 0.596022 +vt 0.489613 0.6031 +vt 0.498621 0.60688 +vt 0.502401 0.604548 +vt 0.505537 0.611143 +vt 0.343487 0.665811 +vt 0.347026 0.660101 +vt 0.347026 0.606857 +vt 0.336892 0.606857 +vt 0.334962 0.671763 +vt 0.32531 0.606857 +vt 0.325873 0.671763 +vt 0.316544 0.671763 +vt 0.316061 0.606857 +vt 0.307536 0.671763 +vt 0.307134 0.606857 +vt 0.298608 0.671763 +vt 0.298287 0.606857 +vt 0.289681 0.671763 +vt 0.289359 0.606857 +vt 0.280753 0.671763 +vt 0.280431 0.606857 +vt 0.271745 0.671763 +vt 0.271584 0.606857 +vt 0.262818 0.671763 +vt 0.262657 0.606857 +vt 0.25389 0.671763 +vt 0.253729 0.606857 +vt 0.244963 0.671763 +vt 0.244802 0.606857 +vt 0.235633 0.671763 +vt 0.235472 0.606857 +vt 0.223971 0.606857 +vt 0.226464 0.671763 +vt 0.217939 0.666374 +vt 0.214078 0.606857 +vt 0.214078 0.660664 +vt 0.498621 0.60688 +vt 0.505537 0.659239 +vt 0.505537 0.611143 +vt 0.498621 0.659239 +vt 0.489613 0.6031 +vt 0.487602 0.659239 +vt 0.487602 0.6031 +vt 0.475698 0.6031 +vt 0.476985 0.659239 +vt 0.46476 0.6031 +vt 0.465645 0.659239 +vt 0.453742 0.6031 +vt 0.454465 0.659239 +vt 0.443045 0.6031 +vt 0.443045 0.659239 +vt 0.431865 0.659239 +vt 0.431865 0.6031 +vt 0.420766 0.6031 +vt 0.420766 0.659239 +vt 0.409667 0.6031 +vt 0.409667 0.659239 +vt 0.398487 0.6031 +vt 0.398487 0.659239 +vt 0.387388 0.6031 +vt 0.387388 0.659239 +vt 0.376209 0.6031 +vt 0.376209 0.659239 +vt 0.373796 0.603663 +vt 0.364386 0.607121 +vt 0.364386 0.659239 +vt 0.358193 0.659239 +vt 0.358193 0.611304 +vt 0.505537 0.659239 +vt 0.498621 0.659239 +vt 0.499264 0.666397 +vt 0.487602 0.659239 +vt 0.484787 0.672027 +vt 0.474572 0.672027 +vt 0.476985 0.659239 +vt 0.465645 0.659239 +vt 0.464036 0.672027 +vt 0.454465 0.659239 +vt 0.45342 0.672027 +vt 0.443045 0.659239 +vt 0.442482 0.672027 +vt 0.431865 0.659239 +vt 0.431865 0.672027 +vt 0.420766 0.659239 +vt 0.421329 0.672027 +vt 0.409667 0.659239 +vt 0.410793 0.672027 +vt 0.398487 0.659239 +vt 0.400176 0.672027 +vt 0.387388 0.659239 +vt 0.38964 0.672027 +vt 0.376209 0.659239 +vt 0.379024 0.672027 +vt 0.364386 0.659239 +vt 0.365512 0.665995 +vt 0.358193 0.659239 +vt 0.904406 0.193959 +vt 0.920615 0.175817 +vt 0.921741 0.187936 +vt 0.900447 0.173358 +vt 0.9019 0.201667 +vt 0.922432 0.200404 +vt 0.898143 0.144085 +vt 0.921647 0.141585 +vt 0.912382 0.1201 +vt 0.90246 0.225723 +vt 0.923615 0.224672 +vt 0.901721 0.248986 +vt 0.92508 0.251448 +vt 0.910895 0.269494 +vt 0.901149 0.269494 +vt 0.857379 0.269494 +vt 0.85206 0.249203 +vt 0.836508 0.269494 +vt 0.848203 0.225625 +vt 0.836377 0.249272 +vt 0.821418 0.269494 +vt 0.821417 0.249337 +vt 0.833482 0.225598 +vt 0.821417 0.225576 +vt 0.84778 0.201592 +vt 0.832901 0.201571 +vt 0.821418 0.201555 +vt 0.852076 0.172535 +vt 0.833432 0.172217 +vt 0.821417 0.172013 +vt 0.858943 0.144479 +vt 0.835914 0.144711 +vt 0.821417 0.144857 +vt 0.896405 0.120435 +vt 0.838588 0.118288 +vt 0.821418 0.116466 +vt 0.864989 0.121109 +vt 0.895524 0.09657 +vt 0.920252 0.096851 +vt 0.8416 0.095999 +vt 0.821417 0.094846 +vt 0.86971 0.097604 +vt 0.895717 0.076822 +vt 0.92247 0.076273 +vt 0.922923 0.069345 +vt 0.897084 0.053843 +vt 0.869954 0.072767 +vt 0.841533 0.071756 +vt 0.821417 0.07104 +vt 0.867762 0.054077 +vt 0.898785 0.032902 +vt 0.92444 0.050688 +vt 0.926755 0.030034 +vt 0.839903 0.054299 +vt 0.821417 0.054447 +vt 0.910149 0.011851 +vt 0.925607 0.011852 +vt 0.90009 0.011851 +vt 0.856901 0.011851 +vt 0.862877 0.033354 +vt 0.838578 0.033659 +vt 0.821417 0.033875 +vt 0.836307 0.011851 +vt 0.821417 0.011851 +vt 0.59867996 0.67197037 +vt 0.59800595 0.60299534 +vt 0.571014 0.668697 +vt 0.53163487 0.659566 +vt 0.5286329 0.65287 +vt 0.53828484 0.663224 +vt 0.52329487 0.630435 +vt 0.5210749 0.603411 +vt 0.52241486 0.572048 +vt 0.53079885 0.542928 +vt 0.52657086 0.549663 +vt 0.53884584 0.538809 +vt 0.56808 0.532094 +vt 0.597736 0.5295504 +vt 0.53138 0.723039 +vt 0.595041 0.723039 +vt 0.595041 0.68723 +vt 0.53138 0.68723 +vt 0.488679 0.723039 +vt 0.488757 0.687259 +vt 0.47731 0.687259 +vt 0.477291 0.723039 +vt 0.467343 0.723039 +vt 0.467319 0.687259 +vt 0.438724 0.723039 +vt 0.438812 0.687259 +vt 0.399164 0.687259 +vt 0.399299 0.723039 +vt 0.365252 0.723039 +vt 0.364876 0.687259 +vt 0.336292 0.723039 +vt 0.336056 0.687259 +vt 0.326867 0.687259 +vt 0.32716 0.723039 +vt 0.317618 0.723039 +vt 0.317255 0.687259 +vt 0.270646 0.687259 +vt 0.270646 0.723039 +vt 0.20944 0.68723 +vt 0.20944 0.723039 +vt 0.59867996 0.67197037 +vt 0.571014 0.668697 +vt 0.59800595 0.60299534 +vt 0.53163487 0.659566 +vt 0.53828484 0.663224 +vt 0.52329487 0.630435 +vt 0.5286329 0.65287 +vt 0.5210749 0.603411 +vt 0.52241486 0.572048 +vt 0.53079885 0.542928 +vt 0.52657086 0.549663 +vt 0.56808 0.532094 +vt 0.53884584 0.538809 +vt 0.597736 0.5295504 +vt 0.53138 0.723039 +vt 0.595041 0.68723 +vt 0.595041 0.723039 +vt 0.53138 0.68723 +vt 0.488679 0.723039 +vt 0.488757 0.687259 +vt 0.47731 0.687259 +vt 0.477291 0.723039 +vt 0.467343 0.723039 +vt 0.467319 0.687259 +vt 0.438724 0.723039 +vt 0.438812 0.687259 +vt 0.399164 0.687259 +vt 0.399299 0.723039 +vt 0.365252 0.723039 +vt 0.364876 0.687259 +vt 0.336292 0.723039 +vt 0.336056 0.687259 +vt 0.326867 0.687259 +vt 0.32716 0.723039 +vt 0.317618 0.723039 +vt 0.317255 0.687259 +vt 0.270646 0.687259 +vt 0.270646 0.723039 +vt 0.20944 0.68723 +vt 0.20944 0.723039 +vt 0.945014 0.665318 +vt 0.947828 0.579119 +vt 0.93361 0.582538 +vt 0.971829 0.667627 +vt 0.93361 0.582538 +vt 0.915226 0.633954 +vt 0.945014 0.665318 +vt 0.876392 0.612035 +vt 0.902402 0.568442 +vt 0.884415 0.474589 +vt 0.836803 0.603387 +vt 0.841667 0.460894 +vt 0.796679 0.600591 +vt 0.797236 0.455916 +vt 0.752771 0.460558 +vt 0.756533 0.603097 +vt 0.709951 0.473952 +vt 0.716863 0.61143 +vt 0.690337 0.483636 +vt 0.673458 0.504715 +vt 0.67734 0.631654 +vt 0.646469 0.661882 +vt 0.903989 0.484064 +vt 0.9078 0.557025 +vt 0.911412 0.564262 +vt 0.91336 0.547603 +vt 0.920949 0.504895 +vt 0.929731 0.545682 +vt 0.919809 0.340519 +vt 0.924662 0.285983 +vt 0.909208 0.301899 +vt 0.889489 0.315304 +vt 0.903344 0.348917 +vt 0.898475 0.408187 +vt 0.867612 0.325167 +vt 0.873228 0.418655 +vt 0.844854 0.328334 +vt 0.84638 0.423067 +vt 0.819435 0.419403 +vt 0.821976 0.325827 +vt 0.793945 0.409659 +vt 0.799748 0.316838 +vt 0.782798 0.40307 +vt 0.773668 0.388482 +vt 0.780754 0.30357 +vt 0.766173 0.286646 +vt 0.909795 0.401186 +vt 0.907263 0.355531 +vt 0.908985 0.350857 +vt 0.910853 0.360812 +vt 0.918226 0.386198 +vt 0.919789 0.360393 +vt 0.589255 0.871373 +vt 0.567379 0.89896 +vt 0.589255 0.89896 +vt 0.567379 0.871373 +vt 0.589255 0.847888 +vt 0.543331 0.882864 +vt 0.543331 0.89896 +vt 0.567379 0.847888 +vt 0.589738 0.784109 +vt 0.567781 0.783224 +vt 0.589419 0.750436 +vt 0.567505 0.748787 +vt 0.543391 0.841008 +vt 0.543492 0.7848448 +vt 0.543379 0.7511318 +vt 0.543331 0.871373 +vt 0.510918 0.887492 +vt 0.510918 0.89896 +vt 0.510918 0.871373 +vt 0.510677 0.856816 +vt 0.510767 0.83000946 +vt 0.51132 0.790287 +vt 0.479873 0.88972 +vt 0.479873 0.89896 +vt 0.479873 0.871373 +vt 0.479712 0.843786 +vt 0.453493 0.891161 +vt 0.453493 0.89896 +vt 0.453493 0.871373 +vt 0.42486 0.871373 +vt 0.42486 0.891634 +vt 0.42486 0.89896 +vt 0.395825 0.89896 +vt 0.395825 0.891163 +vt 0.367273 0.89896 +vt 0.479803 0.81592846 +vt 0.453493 0.839122 +vt 0.367273 0.889722 +vt 0.331161 0.89896 +vt 0.395825 0.871373 +vt 0.331161 0.887495 +vt 0.298025 0.89896 +vt 0.367273 0.871373 +vt 0.298025 0.883636 +vt 0.268427 0.89896 +vt 0.331161 0.871373 +vt 0.268427 0.871373 +vt 0.239955 0.89896 +vt 0.298025 0.871373 +vt 0.331 0.856816 +vt 0.367515 0.843786 +vt 0.395825 0.839122 +vt 0.298025 0.841008 +vt 0.239955 0.871373 +vt 0.223307 0.89896 +vt 0.331136 0.83000946 +vt 0.42486 0.837111 +vt 0.367379 0.81592816 +vt 0.268427 0.847888 +vt 0.223307 0.871373 +vt 0.200787 0.89896 +vt 0.453493 0.809679 +vt 0.395825 0.80910873 +vt 0.239955 0.847888 +vt 0.200787 0.871373 +vt 0.17891 0.89896 +vt 0.223307 0.847888 +vt 0.238749 0.784028 +vt 0.17891 0.871373 +vt 0.160331 0.89896 +vt 0.42486 0.80637264 +vt 0.268105 0.783224 +vt 0.200787 0.847888 +vt 0.160331 0.871373 +vt 0.14135 0.89896 +vt 0.17891 0.847888 +vt 0.200707 0.786521 +vt 0.14135 0.871373 +vt 0.121404 0.89896 +vt 0.160331 0.847888 +vt 0.121404 0.871373 +vt 0.101458 0.89896 +vt 0.223709 0.784109 +vt 0.178589 0.786521 +vt 0.14135 0.847888 +vt 0.101458 0.871373 +vt 0.081431 0.89896 +vt 0.160331 0.786521 +vt 0.121404 0.847888 +vt 0.081431 0.871373 +vt 0.061405 0.89896 +vt 0.141431 0.786521 +vt 0.101458 0.847888 +vt 0.061405 0.871373 +vt 0.044193 0.89896 +vt 0.121404 0.786521 +vt 0.081431 0.847888 +vt 0.044193 0.871373 +vt 0.027625 0.89896 +vt 0.101458 0.786521 +vt 0.121404 0.756618 +vt 0.141386 0.75641 +vt 0.160331 0.755801 +vt 0.17878 0.754832 +vt 0.200756 0.75357 +vt 0.223456 0.751996 +vt 0.239546 0.750406 +vt 0.101458 0.756411 +vt 0.268326 0.751494 +vt 0.081431 0.786521 +vt 0.081431 0.755802 +vt 0.298025 0.7844532 +vt 0.298025 0.7509294 +vt 0.061164 0.786521 +vt 0.061307 0.754833 +vt 0.331694 0.7659344 +vt 0.33211 0.75282055 +vt 0.331322 0.790287 +vt 0.366952 0.786185 +vt 0.364684 0.7591046 +vt 0.365517 0.7425875 +vt 0.396481 0.7382047 +vt 0.395684 0.78456306 +vt 0.396042 0.7737461 +vt 0.42478 0.786185 +vt 0.424606 0.776166 +vt 0.42518 0.73606217 +vt 0.452883 0.73945814 +vt 0.453653 0.786185 +vt 0.452689 0.775008 +vt 0.482048 0.76014274 +vt 0.48152 0.743687 +vt 0.480114 0.786185 +vt 0.512025 0.766343 +vt 0.511635 0.7530491 +vt 0.0117 0.784189 +vt 0.027596 0.752106 +vt 0.0117 0.750463 +vt 0.027545 0.786521 +vt 0.0117 0.847888 +vt 0.044162 0.753572 +vt 0.027625 0.847888 +vt 0.0117 0.871373 +vt 0.044113 0.786521 +vt 0.027625 0.871373 +vt 0.0117 0.89896 +vt 0.044193 0.847888 +vt 0.061405 0.847888 +vt 0.609675 0.728018 +vt 0.622171 0.766484 +vt 0.631546 0.724822 +vt 0.604907 0.766974 +vt 0.619982 0.809114 +vt 0.605148 0.811974 +vt 0.627779 0.851958 +vt 0.614225 0.858121 +vt 0.645888 0.892191 +vt 0.63437 0.901147 +vt 0.673514 0.927047 +vt 0.66445 0.938264 +vt 0.709075 0.954051 +vt 0.702841 0.966905 +vt 0.75051 0.971165 +vt 0.747069 0.98507 +vt 0.794788 0.979071 +vt 0.79449 0.992506 +vt 0.839407 0.973391 +vt 0.842211 0.987434 +vt 0.887286 0.971496 +vt 0.881647 0.958375 +vt 0.927052 0.944805 +vt 0.918516 0.933189 +vt 0.958941 0.90924 +vt 0.947855 0.899763 +vt 0.981178 0.867245 +vt 0.967964 0.860485 +vt 0.992573 0.821609 +vt 0.977893 0.818077 +vt 0.995053 0.776687 +vt 0.977839 0.775392 +vt 0.992239 0.737552 +vt 0.970562 0.733317 +vt 0.920949 0.504895 +vt 0.929731 0.545682 +vt 0.942795 0.54233 +vt 0.933899 0.499871 +vt 0.915489 0.475585 +vt 0.903989 0.484064 +vt 0.892586 0.46267 +vt 0.884415 0.474589 +vt 0.846403 0.447255 +vt 0.841667 0.460894 +vt 0.797284 0.441281 +vt 0.797236 0.455916 +vt 0.752771 0.460558 +vt 0.748109 0.44688 +vt 0.709951 0.473952 +vt 0.701692 0.462087 +vt 0.690337 0.483636 +vt 0.678843 0.475203 +vt 0.673458 0.504715 +vt 0.659862 0.500677 +vt 0.646469 0.661882 +vt 0.619632 0.663872 +vt 0.497391 0.559264 +vt 0.448348 0.559264 +vt 0.448348 0.576796 +vt 0.497391 0.576796 +vt 0.386488 0.576796 +vt 0.386488 0.559264 +vt 0.359771 0.559264 +vt 0.359771 0.576796 +vt 0.448348 0.559264 +vt 0.427107 0.559264 +vt 0.427107 0.576796 +vt 0.448348 0.576796 +vt 0.427107 0.576796 +vt 0.427107 0.559264 +vt 0.409527 0.559264 +vt 0.409527 0.576796 +vt 0.409527 0.559264 +vt 0.386488 0.559264 +vt 0.386488 0.576796 +vt 0.409527 0.576796 +vt 0.575994 0.326757 +vt 0.582054 0.351384 +vt 0.620328 0.330182 +vt 0.583784 0.311066 +vt 0.587621 0.35864 +vt 0.594221 0.295992 +vt 0.601673 0.359972 +vt 0.608562 0.290278 +vt 0.610485 0.372808 +vt 0.613765 0.290326 +vt 0.628697 0.370037 +vt 0.633137 0.300876 +vt 0.643199 0.356436 +vt 0.651735 0.307081 +vt 0.644681 0.339817 +vt 0.656558 0.321094 +vt 0.65459 0.333251 +vt 0.575994 0.326757 +vt 0.620328 0.330182 +vt 0.582054 0.351384 +vt 0.583784 0.311066 +vt 0.587621 0.35864 +vt 0.594221 0.295992 +vt 0.601673 0.359972 +vt 0.608562 0.290278 +vt 0.610485 0.372808 +vt 0.613765 0.290326 +vt 0.628697 0.370037 +vt 0.633137 0.300876 +vt 0.643199 0.356436 +vt 0.651735 0.307081 +vt 0.644681 0.339817 +vt 0.656558 0.321094 +vt 0.65459 0.333251 +vt 0.190846 0.652151 +vt 0.17746 0.662571 +vt 0.187576 0.676033 +vt 0.17822 0.69809 +vt 0.172212 0.621728 +vt 0.187652 0.628345 +vt 0.178449 0.606136 +vt 0.161564 0.700448 +vt 0.163617 0.717104 +vt 0.144679 0.731707 +vt 0.147113 0.5891 +vt 0.163846 0.587046 +vt 0.144755 0.572367 +vt 0.09874 0.651999 +vt 0.129011 0.725471 +vt 0.10916 0.573356 +vt 0.12247 0.74091 +vt 0.122622 0.563164 +vt 0.098664 0.744029 +vt 0.098816 0.560046 +vt 0.088321 0.730719 +vt 0.074858 0.740834 +vt 0.052726 0.731631 +vt 0.06847 0.578604 +vt 0.075011 0.563164 +vt 0.052802 0.572367 +vt 0.050368 0.714975 +vt 0.033635 0.717028 +vt 0.019032 0.697938 +vt 0.035841 0.603627 +vt 0.033787 0.58697 +vt 0.019184 0.605984 +vt 0.025345 0.682346 +vt 0.009829 0.675729 +vt 0.006635 0.651923 +vt 0.020021 0.641579 +vt 0.009905 0.628041 +vt 0.796059 0.928403 +vt 0.75051 0.971165 +vt 0.794788 0.979071 +vt 0.839407 0.973391 +vt 0.763048 0.924256 +vt 0.709075 0.954051 +vt 0.829235 0.925914 +vt 0.881647 0.958375 +vt 0.732476 0.910835 +vt 0.673514 0.927047 +vt 0.860441 0.914042 +vt 0.918516 0.933189 +vt 0.705862 0.890735 +vt 0.645888 0.892191 +vt 0.88803 0.8953 +vt 0.947855 0.899763 +vt 0.685006 0.86477 +vt 0.627779 0.851958 +vt 0.910162 0.870414 +vt 0.967964 0.860485 +vt 0.670986 0.834412 +vt 0.619982 0.809114 +vt 0.925686 0.840796 +vt 0.977893 0.818077 +vt 0.664864 0.801324 +vt 0.622171 0.766484 +vt 0.933457 0.808055 +vt 0.977839 0.775392 +vt 0.666195 0.767001 +vt 0.631546 0.724822 +vt 0.933844 0.773708 +vt 0.970562 0.733317 +vt 0.675044 0.732931 +vt 0.660865 0.68433 +vt 0.693276 0.701489 +vt 0.704895 0.657 +vt 0.711104 0.744048 +vt 0.702897 0.769582 +vt 0.74955 0.750612 +vt 0.720451 0.674387 +vt 0.752891 0.644758 +vt 0.726089 0.721086 +vt 0.700755 0.796039 +vt 0.758613 0.654436 +vt 0.80326 0.641059 +vt 0.746791 0.702391 +vt 0.737489 0.783565 +vt 0.70506 0.821568 +vt 0.715546 0.844926 +vt 0.742563 0.817824 +vt 0.730768 0.864756 +vt 0.750514 0.879816 +vt 0.761936 0.844332 +vt 0.772804 0.889506 +vt 0.79785 0.856966 +vt 0.796957 0.892553 +vt 0.821233 0.890719 +vt 0.843981 0.882159 +vt 0.834351 0.846147 +vt 0.864457 0.868106 +vt 0.880654 0.849064 +vt 0.855028 0.820643 +vt 0.892298 0.826261 +vt 0.897875 0.800979 +vt 0.861812 0.78668 +vt 0.89706 0.774448 +vt 0.851416 0.753164 +vt 0.890142 0.748534 +vt 0.926713 0.739237 +vt 0.943309 0.691408 +vt 0.910079 0.706922 +vt 0.900703 0.661907 +vt 0.876325 0.724851 +vt 0.884296 0.678493 +vt 0.85338 0.647276 +vt 0.856586 0.705143 +vt 0.847181 0.656655 +vt 0.803097 0.647591 +vt 0.802098 0.68744 +vt 0.831025 0.691789 +vt 0.772989 0.690335 +vt 0.826118 0.729717 +vt 0.801211 0.722813 +vt 0.77599 0.728461 +vt 0.800431 0.753938 +vt 0.813432 0.757078 +vt 0.78729 0.756423 +vt 0.826905 0.769686 +vt 0.799489 0.791553 +vt 0.773203 0.76834 +vt 0.832591 0.787947 +vt 0.766609 0.786293 +vt 0.829494 0.806683 +vt 0.768764 0.805161 +vt 0.818527 0.821105 +vt 0.778995 0.820114 +vt 0.798586 0.827588 +vt 0.460915 0.31004 +vt 0.410306 0.299554 +vt 0.450305 0.333488 +vt 0.460495 0.284306 +vt 0.425886 0.348911 +vt 0.444214 0.260451 +vt 0.395631 0.353944 +vt 0.418451 0.243811 +vt 0.372789 0.346222 +vt 0.394421 0.241821 +vt 0.354193 0.329893 +vt 0.370867 0.249417 +vt 0.353939 0.287875 +vn -0.10635723 -0.98102874 0.16208296 +vn -0.10635725 -0.98102874 0.16208299 +vn -0.10635725 -0.98102874 0.16208299 +vn 0.6396507 0.7442933 -0.19202717 +vn 0.6396507 0.7442933 -0.19202717 +vn 0.6396507 0.74429333 -0.19202718 +vn 0.47876135 -0.35261318 -0.80402213 +vn 0.47876137 -0.35261318 -0.804022 +vn 0.47876135 -0.3526132 -0.80402213 +vn 0.1588828 -0.98275787 0.09456817 +vn 0.15888281 -0.982758 0.09456815 +vn 0.15888281 -0.982758 0.094568156 +vn 0.3789854 0.49196213 0.7838006 +vn 0.37898532 0.49196208 0.78380066 +vn 0.37898538 0.49196213 0.78380054 +vn 0.96728677 -0.1664465 -0.19144651 +vn 0.96728677 -0.1664465 -0.1914465 +vn 0.96728677 -0.16644654 -0.19144653 +vn 0.09755342 -0.9048693 0.41436073 +vn 0.11314396 -0.990339 0.080169566 +vn 0.056055043 -0.99724376 0.04860945 +vn 0.09191305 -0.9274739 0.36241433 +vn -0.02509892 -0.9962598 0.082683876 +vn -0.07625443 -0.8686538 0.48951584 +vn 0.06534751 -0.736642 0.6731183 +vn 0.10180477 -0.6745603 0.73116636 +vn -0.03605566 -0.3770745 0.9254809 +vn 0.12679246 -0.32115898 0.9384991 +vn 0.054119483 -0.3575762 0.9323145 +vn 0.04278258 0.23354773 0.97140366 +vn 0.12525415 0.11089129 0.985908 +vn -0.012406156 0.23304191 0.9723876 +vn 0.0629669 0.47478724 0.8778452 +vn -0.010175601 0.6665228 0.7454151 +vn 0.0057169106 0.7385017 0.67422736 +vn 0.21760784 0.51263136 0.8305757 +vn 0.036018517 0.73654026 0.67543405 +vn -0.06672701 0.95581347 0.2863008 +vn -0.11438313 0.95490384 0.27399835 +vn -0.0022822646 0.9429959 0.33279654 +vn -0.14836024 0.9870682 -0.06070966 +vn -0.084716596 0.96897024 -0.23220615 +vn -0.013897016 0.986566 -0.16277067 +vn -0.17532323 0.84959793 -0.49743867 +vn -0.06481851 0.8648441 -0.49783862 +vn -0.0065849735 0.6325039 -0.77452916 +vn -0.0058537275 0.49729818 -0.86755997 +vn 0.04595448 0.60933936 -0.79157674 +vn 0.07590812 0.0970309 -0.99238247 +vn 0.14406963 0.06679259 -0.98731077 +vn 0.06516749 0.13507123 -0.9886905 +vn 0.15169498 -0.5262905 -0.8366642 +vn 0.113964766 -0.2304826 -0.9663797 +vn 0.17212266 -0.5378882 -0.8252576 +vn 0.09180053 -0.6245511 -0.7755698 +vn 0.06271514 -0.93048054 -0.3609329 +vn 0.113451704 -0.94558567 -0.3049532 +vn 0.1472713 -0.93962497 -0.30889493 +vn 0.056055043 -0.99724376 0.04860945 +vn 0.11314396 -0.990339 0.080169566 +vn -0.02509892 -0.9962598 0.082683876 +vn -0.73490083 0.6179262 -0.27944243 +vn -0.8050457 0.09304352 -0.5858705 +vn -0.8148435 0.18580957 -0.54909474 +vn -0.79954684 0.06984622 -0.5965286 +vn -0.8031899 0.0952575 -0.5880579 +vn -0.7918451 0.15875039 -0.5897284 +vn -0.78055817 0.13818797 -0.60961705 +vn -0.7224371 0.04664235 -0.68986166 +vn -0.7547776 0.65596944 0.0038485958 +vn -0.62743723 0.7227265 0.28980842 +vn -0.6748348 0.71524394 -0.18172579 +vn -0.63061255 0.7263435 0.27340972 +vn -0.5373456 0.47855985 0.6944353 +vn -0.5494923 0.6385844 0.53876543 +vn -0.45738187 0.4174547 0.7851964 +vn -0.2956164 -0.18688811 0.93684775 +vn -0.20881191 -0.17956308 0.9613297 +vn -0.1565561 -0.46839198 0.86953956 +vn -0.23134857 -0.6069695 0.7603065 +vn -0.31505713 -0.82300746 0.47264963 +vn -0.10946025 -0.98940736 0.095350064 +vn 0.040209398 -0.99917173 0.00624418 +vn -0.09688359 -0.9460505 -0.3091959 +vn -0.11708525 -0.9389466 -0.32352805 +vn -0.4916594 -0.5939829 -0.63675374 +vn -0.40985194 -0.6836046 -0.6039091 +vn -0.6366255 -0.37736806 -0.6725335 +vn -0.6366256 -0.37736794 -0.6725335 +vn -0.7547776 0.65596944 0.0038485958 +vn -0.6748348 0.71524394 -0.18172579 +vn -0.79600126 0.5844725 -0.1573978 +vn -0.86553556 0.41800326 0.27590117 +vn 0.11505786 0.97824156 -0.17264181 +vn -0.026114367 0.6241025 -0.78090596 +vn 0.019002376 0.98390055 -0.17770357 +vn 0.0859851 0.6217491 -0.77848226 +vn 0.15727057 0.9760897 -0.15004885 +vn 0.048075844 0.113925084 -0.9923254 +vn -0.112101525 0.08866359 -0.9897333 +vn 0.14846732 0.68113464 -0.716947 +vn 0.12978132 0.98376715 -0.12393115 +vn 0.16144426 0.15613544 -0.9744523 +vn 0.3642974 -0.117342554 -0.9238604 +vn 0.059782878 -0.48129582 -0.8745172 +vn -0.1656337 -0.5066412 -0.84609705 +vn 0.47173446 -0.7396974 -0.47991064 +vn -0.124407314 -0.93580025 -0.32984957 +vn 0.12871456 0.2098388 -0.9692266 +vn 0.10481504 0.6215737 -0.77631164 +vn 0.7455969 -0.665719 0.030056482 +vn 0.016896361 -0.9983311 0.05522289 +vn 0.94631517 -0.065073304 -0.3166276 +vn 0.9986864 -0.051220722 -0.0014398554 +vn 0.95660067 0.113232166 -0.26850274 +vn 0.990595 0.13623556 -0.012709601 +vn 0.9779156 0.20870583 -0.011085691 +vn 0.6490009 0.09369623 -0.75499594 +vn 0.9464387 0.2043753 -0.24996907 +vn 0.97375315 -0.075977 -0.21455112 +vn 0.9946726 -0.10249903 -0.010975329 +vn 0.9758177 -0.21784854 -0.017936576 +vn 0.9639848 -0.21695474 -0.1538313 +vn 0.9315264 -0.17179674 -0.3205375 +vn 0.6779577 0.19654204 -0.7083392 +vn 0.7261629 -0.018631134 -0.68727016 +vn 0.7252005 -0.14451225 -0.6732017 +vn 0.34248748 -0.12564914 -0.93108255 +vn 0.19036397 -0.07480962 -0.97885907 +vn 0.09735097 -0.18919437 -0.977102 +vn -0 -0.106039785 -0.9943619 +vn -0 -0.18283139 -0.9831443 +vn -0.09735096 -0.18919437 -0.977102 +vn 0.20279035 0.14457688 -0.9684904 +vn 0.1855248 0.07215109 -0.9799872 +vn -0.19036397 -0.074809656 -0.97885907 +vn -0.34248745 -0.12564917 -0.9310825 +vn 0.16427565 0.031643096 -0.98590684 +vn 0.012851406 0.04409737 -0.9989446 +vn 0.0061469176 0.06831471 -0.99764484 +vn -0 0.1320543 -0.9912424 +vn -0.20279033 0.14457688 -0.9684904 +vn -0.18633342 0.06215608 -0.98051846 +vn -0.7273738 -0.018187765 -0.6860004 +vn -0.7252005 -0.14451225 -0.6732017 +vn -0.9319554 -0.17097113 -0.319731 +vn -0.67918 0.19656232 -0.70716166 +vn -0.9716049 -0.074984536 -0.2244132 +vn -0.96393704 -0.21497385 -0.15688096 +vn -0.97561127 -0.21869083 -0.018897917 +vn -0.9947364 -0.10190645 -0.010703386 +vn -0.97768617 0.20968245 -0.012767892 +vn -0.9456816 0.2038711 -0.253225 +vn -0.9905738 0.13633703 -0.01325858 +vn -0.95516545 0.1155944 -0.27257454 +vn -0.9986864 -0.051220726 -0.001439858 +vn -0.6537521 0.08909424 -0.75144553 +vn -0.9465031 -0.065617144 -0.31595317 +vn -0.7285378 -0.6846875 0.020871846 +vn -0.16687554 0.03783942 -0.98525167 +vn -0.37908903 -0.11471584 -0.91822207 +vn -0.4868221 -0.723335 -0.48968434 +vn 0.113451704 -0.94558567 -0.3049532 +vn -0.02509892 -0.9962598 0.082683876 +vn 0.15169498 -0.5262905 -0.8366642 +vn -0.11607262 -0.46693805 -0.876639 +vn 0.07590812 0.0970309 -0.99238247 +vn -0.09452263 0.1177587 -0.98853344 +vn -0.0065849735 0.6325039 -0.77452916 +vn -0.16490369 0.16842395 -0.9718231 +vn -0.1274373 0.22581516 -0.96579874 +vn -0.13684507 0.60045326 -0.7878638 +vn -0.13053155 0.97532415 -0.17805716 +vn -0.013897016 0.986566 -0.16277067 +vn -0.16851676 0.9676261 -0.18788771 +vn -0.15395269 0.6651163 -0.7306976 +vn -0.1301092 0.9792311 -0.15549245 +vn 0.0069122436 0.23789081 -0.97126734 +vn -0.102496825 0.615507 -0.7814382 +vn -0 0.5853132 -0.81080717 +vn -0.0914184 0.91786844 -0.38621283 +vn -0.07276355 0.99680734 0.032875802 +vn -0 0.99872655 -0.05045101 +vn 0.074085854 0.94650084 0.31408197 +vn -0 0.92836964 0.37165824 +vn -0.07408587 0.94650084 0.31408197 +vn 0.075193726 0.9966365 0.032579996 +vn -0 0.89400554 -0.4480557 +vn 0.0957243 0.9203876 -0.37910882 +vn -0.150338 0.90975124 0.38697687 +vn -0.07408587 0.94650084 0.31408197 +vn 0.075193726 0.9966365 0.032579996 +vn 0.06633333 0.95184416 0.29932046 +vn -0.1337096 0.8875067 0.4409689 +vn 0.12978132 0.98376715 -0.12393115 +vn 0.036630005 0.8835052 0.46698692 +vn 0.12372665 0.7401516 0.66095936 +vn -0.052230023 0.8520433 0.52085906 +vn 0.18381329 0.4682455 0.86426777 +vn -0.014406425 0.80753934 0.58963776 +vn -0 0.7913419 0.61137384 +vn 0.08381326 0.880187 0.46716833 +vn 0.13473082 0.9506331 0.2795432 +vn 0.17246911 0.93892443 0.29778397 +vn 0.15727057 0.9760897 -0.15004885 +vn 0.11505786 0.97824156 -0.17264181 +vn 0.17010026 0.7170099 0.6759901 +vn 0.11167257 0.9377755 0.3287951 +vn 0.019002376 0.98390055 -0.17770357 +vn 0.024759958 0.9446751 0.32707188 +vn 0.16693357 0.7035111 0.69080055 +vn 0.063621454 0.66900814 0.74052715 +vn 0.26927373 0.30115676 0.91476566 +vn 0.09696973 0.2336891 0.96746385 +vn 0.49071336 -0.15709421 0.85704255 +vn 0.12175926 -0.38462818 0.9150059 +vn 0.12990126 -0.8741219 0.46801338 +vn 0.31279472 0.38528076 0.8681695 +vn 0.7882422 -0.5092028 0.3455238 +vn 0.016896361 -0.9983311 0.05522289 +vn 0.7455969 -0.665719 0.030056482 +vn 0.9986864 -0.051220722 -0.0014398554 +vn 0.9295313 0.002741459 0.3687332 +vn 0.49338543 0.150544 0.85668385 +vn 0.931559 0.16035374 0.3263197 +vn 0.990595 0.13623556 -0.012709601 +vn 0.2516321 0.21968167 0.942561 +vn 0.62759745 0.17508546 0.7585951 +vn 0.9213332 0.23449396 0.31009322 +vn 0.9779156 0.20870583 -0.011085691 +vn 0.9946726 -0.10249903 -0.010975329 +vn 0.6184373 0.26288685 0.74055773 +vn 0.9603445 -0.056109518 0.27311197 +vn 0.9674596 -0.22495668 0.11582912 +vn 0.9758177 -0.21784854 -0.017936576 +vn 0.90610784 -0.16317767 0.3903097 +vn 0.6441211 0.018383602 0.7647026 +vn 0.6686063 -0.14712079 0.72891784 +vn 0.33432883 -0.16324471 0.92821085 +vn 0.21442851 -0.04971468 0.97547364 +vn 0.12413323 -0.2109614 0.96958053 +vn 0.24158391 0.23428759 0.9416722 +vn -0 -0.081639186 0.996662 +vn -0 -0.21151343 0.9773751 +vn -0.12413323 -0.21096142 0.96958053 +vn 0.26229018 0.15588346 0.95231515 +vn -0.21442848 -0.04971468 0.97547376 +vn -0.33432883 -0.16324471 0.92821085 +vn -0 0.21226025 0.9772132 +vn -0.008934846 0.21796727 0.9759152 +vn -0.6465389 0.018281667 0.7626619 +vn -0.6686063 -0.14712079 0.72891784 +vn -0.9070318 -0.16105093 0.38904497 +vn -0.0036827486 0.14865942 0.9888815 +vn -0.25921366 0.16057587 0.95237786 +vn -0.24158394 0.23428762 0.9416722 +vn -0.006517559 0.40469468 0.91442865 +vn -0.95906174 -0.05573122 0.2776592 +vn -0.9673564 -0.22356589 0.119330764 +vn -0.6201925 0.26195884 0.73941797 +vn -0.25113544 0.217717 0.94314915 +vn -0.18487076 0.46301812 0.86685467 +vn 0.014406419 0.80753934 0.58963776 +vn 0.052230027 0.85204333 0.520859 +vn -0.9947364 -0.10190645 -0.010703386 +vn -0.97561127 -0.21869083 -0.018897917 +vn -0.92034096 0.2338571 0.31350163 +vn -0.97768617 0.20968245 -0.012767892 +vn -0.62564707 0.17419267 0.7604096 +vn -0.9325669 0.1579322 0.32461736 +vn -0.9905738 0.13633703 -0.01325858 +vn -0.9986864 -0.051220726 -0.001439858 +vn -0.12372667 0.7401516 0.66095936 +vn 0.1337096 0.8875067 0.44096887 +vn -0.4828339 0.1555434 0.86178756 +vn -0.93173504 0.0023446246 0.36313125 +vn -0.43654057 -0.17734933 0.8820315 +vn -0.3123886 0.3870388 0.8675335 +vn -0.76122594 -0.5477527 0.34713417 +vn -0.7285378 -0.6846875 0.020871846 +vn -0.02509892 -0.9962598 0.082683876 +vn -0.07625443 -0.8686538 0.48951584 +vn -0.03605566 -0.3770745 0.9254809 +vn -0.012406156 0.23304191 0.9723876 +vn -0.20382513 0.31059253 0.9284328 +vn -0.010175601 0.6665228 0.7454151 +vn -0.1732114 0.7146334 0.67771447 +vn -0.1209889 0.712179 0.69149315 +vn -0.0022822646 0.9429959 0.33279654 +vn -0.088705435 0.9424989 0.32222217 +vn -0.013897016 0.986566 -0.16277067 +vn -0.13053155 0.97532415 -0.17805716 +vn -0.1760903 0.9391352 0.29498717 +vn -0.16851676 0.9676261 -0.18788771 +vn -0.08397761 0.87731975 0.47250155 +vn -0.14079536 0.950564 0.27677545 +vn -0.1301092 0.9792311 -0.15549245 +vn -0.06337744 0.95278513 0.2969575 +vn -0.07276355 0.99680734 0.032875802 +vn -0.034093786 0.8826267 0.46883664 +vn 0.150338 0.90975124 0.38697687 +vn 0.074085854 0.94650084 0.31408197 +vn 0.7120215 -0.044061743 -0.70077384 +vn 0.7120215 -0.044061735 -0.70077384 +vn 0.75080395 0.058977403 -0.65788686 +vn 0.7606139 0.090462625 -0.6428708 +vn 0.806606 0.32644245 -0.49276972 +vn 0.80348545 0.293384 -0.5180126 +vn 0.8074553 0.42337984 -0.41081077 +vn 0.8074553 0.42337984 -0.41081077 +vn 0.72857136 0.68361 -0.043139312 +vn 0.72857136 0.68361014 -0.043139312 +vn 0.66884744 0.67857903 0.30360103 +vn 0.68975174 0.68716276 0.2281448 +vn 0.43036598 0.42756894 0.7949654 +vn 0.47250634 0.4834079 0.73692226 +vn 0.24548681 0.11197503 0.96291107 +vn 0.22345454 0.09641045 0.9699346 +vn 0.16794164 -0.08579501 0.98205644 +vn 0.17014931 -0.08499457 0.98174596 +vn 0.1633262 -0.051530294 0.9852254 +vn 0.15863225 -0.012717211 0.9872558 +vn 0.096676104 -0.95743 0.27199546 +vn 0.10713598 -0.915903 0.38683802 +vn 0.11390973 -0.8758436 0.468959 +vn 0.077718034 -0.97150886 0.22389829 +vn 0.07838888 -0.97038394 0.22849543 +vn 0.1366208 -0.9307091 -0.33928642 +vn 0.119251095 -0.944787 -0.3052156 +vn 0.33537564 -0.7452681 -0.57628006 +vn 0.42450616 -0.64884007 -0.63150704 +vn 0.40312508 -0.68752533 -0.60398597 +vn 0.60120463 -0.4047952 -0.68898016 +vn 0.69942814 -0.16197786 -0.6961061 +vn 0.69942814 -0.16197781 -0.69610596 +vn -0.07182991 -0.9812573 0.17881422 +vn -0.08342182 -0.99644226 -0.011981461 +vn -0.14015232 -0.98943675 0.037045456 +vn -0.109821685 -0.9712114 0.21139446 +vn 0.016896361 -0.9983311 0.05522289 +vn 0.12990126 -0.8741219 0.46801338 +vn -0.06592342 -0.88756007 0.45595098 +vn -0.06512502 -0.88749546 0.4561914 +vn -0.057172585 -0.74702144 0.6623369 +vn -0.10455256 -0.70873314 0.6976862 +vn 0.12175926 -0.38462818 0.9150059 +vn -0.050625104 -0.34371635 0.93770784 +vn -0.12000899 -0.2983445 0.94688356 +vn -0.10590878 0.07165052 0.991791 +vn -0.027941823 0.17614642 0.98396736 +vn 0.09696973 0.2336891 0.96746385 +vn -0.046839923 0.40508562 0.9130782 +vn 0.063621454 0.66900814 0.74052715 +vn -0.04313209 0.71096563 0.70190275 +vn -0.22502513 0.425334 0.87661546 +vn -0.18419583 0.3145798 0.9311882 +vn -0.14270009 0.6031498 0.7847593 +vn -0.041378226 0.78798985 0.61429626 +vn 0.0373102 0.9530854 0.30039322 +vn 0.04324665 0.95070916 0.30705318 +vn 0.024759958 0.9446751 0.32707188 +vn 0.09413569 0.97268337 -0.21219262 +vn 0.05129049 0.974037 -0.22050254 +vn 0.019002376 0.98390055 -0.17770357 +vn 0.06546483 0.81493133 -0.5758483 +vn -0.0009921719 0.7188145 -0.6952012 +vn -0.026114367 0.6241025 -0.78090596 +vn -0.07752455 0.40697986 -0.91014147 +vn -0.100754 0.076590925 -0.991959 +vn -0.112101525 0.08866359 -0.9897333 +vn -0.02354073 0.06366919 -0.99769336 +vn 0.027784346 0.13119851 -0.99096674 +vn -0.020739876 0.15890156 -0.9870766 +vn -0.04730866 -0.07161304 -0.99630994 +vn -0.1656337 -0.5066412 -0.84609705 +vn -0.058848023 -0.48085752 -0.87482166 +vn -0.11510285 -0.49382338 -0.8619105 +vn -0.124407314 -0.93580025 -0.32984957 +vn -0.070850804 -0.9254355 -0.37222216 +vn -0.13637874 -0.93147606 -0.33727318 +vn 0.016896361 -0.9983311 0.05522289 +vn -0.08342182 -0.99644226 -0.011981461 +vn -0.14015232 -0.98943675 0.037045456 +vn 0.79520947 -0.12516586 -0.5932751 +vn 0.9255005 -0.14951558 -0.3479855 +vn 0.84212464 -0.1337376 -0.5224369 +vn 0.50003415 -0.078160316 -0.8624713 +vn 0.4070869 -0.06391806 -0.91115016 +vn 0.22859716 -0.036525145 -0.97283566 +vn 0.22859702 -0.03652506 -0.9728358 +vn 0.2286003 -0.03651789 -0.9728352 +vn 0.2286003 -0.036517847 -0.9728352 +vn 0.22861278 -0.03651713 -0.9728324 +vn 0.22861275 -0.03651713 -0.9728324 +vn 0.22861587 -0.036530368 -0.972831 +vn 0.22861588 -0.03653037 -0.97283113 +vn 0.2306023 -0.03883621 -0.97227275 +vn 0.23060943 -0.038844477 -0.9722707 +vn 0.23322158 -0.0372238 -0.97171086 +vn 0.23322152 -0.037223972 -0.97171086 +vn 0.23121658 -0.03492004 -0.9722754 +vn 0.2312072 -0.03492587 -0.9722774 +vn 0.22861262 -0.03653403 -0.97283167 +vn 0.22861259 -0.036534026 -0.97283167 +vn 0.22861509 -0.036528107 -0.97283137 +vn 0.22861509 -0.036528107 -0.97283137 +vn 0.2285989 -0.036527194 -0.9728352 +vn 0.22859882 -0.036527164 -0.9728352 +vn 0.22860079 -0.036519635 -0.97283494 +vn 0.22859968 -0.036519915 -0.9728353 +vn 0.50003064 -0.07816406 -0.8624731 +vn 0.40708095 -0.06391678 -0.91115296 +vn 0.7957833 -0.12141479 -0.59328526 +vn 0.84313464 -0.12716839 -0.5224482 +vn 0.92747307 -0.136747 -0.34798557 +vn -0.15221436 -0.98834664 0.001333283 +vn -0.15221438 -0.98834664 0.0013332831 +vn -0.15219465 -0.9883497 0.001339646 +vn -0.16296043 -0.98663205 -0.0010414222 +vn -0.16606736 -0.9861129 -0.001727975 +vn -0.26469874 -0.96398634 -0.025789367 +vn -0.26469916 -0.9639862 -0.025789464 +vn -0.16061318 -0.9870172 -0.00068442576 +vn -0.16061406 -0.9870171 -0.00068464834 +vn 0.22734374 -0.9696628 0.08982688 +vn 0.2273433 -0.9696629 0.08982678 +vn 0.5722921 -0.80335236 0.1646409 +vn 0.5722921 -0.80335236 0.16464087 +vn 0.8300957 -0.5147608 0.21438818 +vn 0.8300944 -0.514763 0.21438791 +vn 0.9615485 -0.1477569 0.23150012 +vn 0.96154773 -0.14776139 0.23150013 +vn 0.94659793 0.24171789 0.21336523 +vn 0.9465972 0.2417214 0.21336491 +vn 0.78755045 0.5943702 0.16275242 +vn 0.7875486 0.5943727 0.16275191 +vn 0.50858164 0.8565711 0.08735394 +vn 0.5085823 0.8565707 0.08735412 +vn 0.14380962 0.9895997 -0.003360583 +vn 0.14381154 0.98959935 -0.003360114 +vn 0.037605174 0.9988877 -0.02844881 +vn 0.0376048 0.9988877 -0.028448895 +vn 0.13830107 0.9903804 -0.0044097095 +vn 0.14143951 0.98993987 -0.0037162951 +vn 0.15219381 0.9883498 -0.0013410406 +vn 0.15221265 0.9883469 -0.0013353908 +vn 0.15221265 0.9883469 -0.0013353908 +vn 0.88404906 0.42625347 0.19174244 +vn 0.74231946 0.65321714 0.14922825 +vn 0.88404906 0.42625356 0.19174248 +vn 0.78754556 0.5943905 0.16270168 +vn 0.6623354 0.73826313 0.12759063 +vn 0.5085889 0.8565671 0.087350756 +vn 0.50859004 0.85656637 0.08735106 +vn 0.15220203 0.9883485 -0.0013447808 +vn 0.15220295 0.9883483 -0.0013445615 +vn -0.22734107 0.9696632 -0.089828916 +vn -0.22733957 0.96966356 -0.08982857 +vn -0.5722843 0.803358 -0.16464117 +vn -0.572285 0.8033575 -0.1646413 +vn -0.83147556 0.5121887 -0.21519995 +vn -0.831226 0.5126123 -0.21515572 +vn -0.9612887 0.14771919 -0.23260058 +vn -0.9612887 0.14771885 -0.23260061 +vn -0.9471384 -0.23886111 -0.21418272 +vn -0.9470271 -0.23934256 -0.21413702 +vn -0.7875461 -0.5943772 -0.16274779 +vn -0.7875458 -0.5943777 -0.1627477 +vn -0.5085913 -0.8565655 -0.087352425 +vn -0.50859183 -0.8565651 -0.08735255 +vn -0.15221334 -0.98834676 0.0013388635 +vn -0.152216 -0.9883463 0.0013382162 +vn 0.22732078 -0.9696686 0.08982197 +vn 0.22845392 -0.9693953 0.08989796 +vn 0.40855858 -0.90346056 0.12976456 +vn 0.57301056 -0.8028482 0.16460136 +vn 0.5091884 -0.84727 0.15119736 +vn 0.7149089 -0.6719903 0.19322102 +vn 0.7149089 -0.6719903 0.193221 +vn -0.22858788 0.03650581 0.9728386 +vn -0.2285844 0.036516596 0.972839 +vn -0.22858554 0.03651302 0.9728388 +vn -0.22860171 0.036525406 0.97283465 +vn -0.22860435 0.036526155 0.97283393 +vn -0.22861932 0.03652527 0.9728305 +vn -0.22861934 0.03652525 0.9728305 +vn -0.2286097 0.0365279 0.9728326 +vn -0.22860964 0.03652789 0.9728326 +vn -0.2286007 0.036528964 0.97283465 +vn -0.22860067 0.036528967 0.9728347 +vn -0.22860223 0.036518686 0.9728347 +vn -0.22860223 0.036518686 0.9728347 +vn -0.22860368 0.036521543 0.9728343 +vn -0.22860366 0.036521547 0.9728343 +vn -0.22860654 0.03653259 0.97283316 +vn -0.22860654 0.03653259 0.97283316 +vn -0.22859773 0.03652981 0.9728354 +vn -0.22859775 0.03652981 0.9728354 +vn -0.22859392 0.036528446 0.9728363 +vn -0.22859395 0.036528446 0.9728363 +vn -0.22860295 0.03652385 0.9728344 +vn -0.22860296 0.036523793 0.9728344 +vn -0.22860865 0.036515307 0.9728334 +vn -0.22860807 0.036514983 0.9728335 +vn -0.22861046 0.03652922 0.9728324 +vn -0.2286117 0.0365234 0.9728324 +vn -0.22860812 0.036540955 0.9728326 +vn 0.26849738 0.3460325 -0.8989832 +vn 0.24502772 0.38318864 -0.8905773 +vn 0.21658891 0.6448488 -0.7329798 +vn 0.33701715 0.63062024 -0.6990977 +vn 0.37937245 -0.012189405 -0.9251638 +vn 0.27134922 -0.22947112 -0.93472594 +vn 0.16802128 0.95812 -0.23189414 +vn 0.017996447 0.9647294 -0.26262748 +vn -0.26066038 0.93360907 0.24582562 +vn 0.23840855 -0.6577033 -0.7145543 +vn 0.1533903 -0.67624605 -0.72052944 +vn 0.02329602 -0.9605392 -0.2771671 +vn -0.038279377 -0.9547053 -0.29508048 +vn -0.22296545 -0.9725051 0.06723313 +vn -0.14581868 -0.9873767 0.06184123 +vn -0.11715189 -0.9887057 0.0934693 +vn 0.024357589 -0.9579843 -0.2857844 +vn -0.1318438 -0.98387766 0.12083878 +vn 0.2144127 -0.64450794 -0.7339187 +vn -0.039586063 -0.9554545 -0.29247144 +vn -0.09950688 -0.9932654 0.059347898 +vn -0.01624192 -0.9356784 -0.35247973 +vn 0.10609207 -0.63192695 -0.7677321 +vn 0.103071176 -0.59519064 -0.79694694 +vn 0.36333638 0.0023546675 -0.93165505 +vn 0.24194437 0.030724525 -0.9698036 +vn 0.22030519 0.02981658 -0.9749751 +vn 0.3759587 0.6056027 -0.7013561 +vn 0.28591564 0.595167 -0.7510182 +vn 0.26823428 0.53230363 -0.80293417 +vn 0.2823917 0.9360784 -0.2097906 +vn 0.2360009 0.94343776 -0.23287062 +vn 0.24732243 0.89153796 -0.37946242 +vn -0.10883175 0.95248014 0.28449476 +vn 0.051805463 0.9234965 0.38009274 +vn 0.05295166 0.94185436 0.33182317 +vn 0.0738544 0.94147754 0.3288853 +vn -0.39194283 0.60496336 0.6931091 +vn -0.47912794 0.57279724 0.6650863 +vn -0.20003693 0.57967603 0.789912 +vn -0.20634587 0.59700656 0.77524483 +vn -0.2317958 0.6149992 0.7536887 +vn -0.5267719 0.14594129 0.83738434 +vn -0.5770913 0.1311277 0.80608374 +vn -0.5904533 -0.07693535 0.80339646 +vn -0.5059287 -0.41118565 0.75826293 +vn -0.42208174 0.118248895 0.8988127 +vn -0.35896835 0.125265 0.9249057 +vn -0.36296812 0.12526232 0.9233437 +vn -0.42191675 -0.36434853 0.83020264 +vn -0.3467788 -0.83613056 0.42500606 +vn -0.4717914 -0.66291314 0.5813424 +vn -0.3917993 -0.83783966 0.38015512 +vn -0.3629041 -0.31231937 0.8779279 +vn -0.34484792 -0.3196592 0.8825519 +vn -0.22296545 -0.9725051 0.06723313 +vn -0.27979895 -0.94884706 0.14629324 +vn -0.14581868 -0.9873767 0.06184123 +vn -0.11715189 -0.9887057 0.0934693 +vn -0.27952456 -0.82664937 0.48838183 +vn -0.25963145 -0.77631503 0.57439226 +vn -0.22317886 -0.8146991 0.5352164 +vn -0.1318438 -0.98387766 0.12083878 +vn -0.09950688 -0.9932654 0.059347898 +vn -0.79520935 -0.12516612 -0.5932751 +vn -0.84212464 -0.13373776 -0.52243704 +vn -0.9255005 -0.14951558 -0.3479855 +vn -0.407087 -0.06391827 -0.91115016 +vn -0.5000336 -0.07816049 -0.86247164 +vn -0.22859523 -0.03652365 -0.9728362 +vn -0.22859532 -0.036523763 -0.9728362 +vn -0.22860068 -0.03651585 -0.9728352 +vn -0.22860071 -0.036515817 -0.9728352 +vn -0.22861476 -0.036516402 -0.9728319 +vn -0.22861476 -0.036516402 -0.9728319 +vn -0.22861587 -0.036530368 -0.972831 +vn -0.22861587 -0.036530375 -0.972831 +vn -0.23060371 -0.03883784 -0.97227234 +vn -0.23061088 -0.03884614 -0.9722703 +vn -0.23322491 -0.037224296 -0.9717101 +vn -0.23322485 -0.03722448 -0.9717101 +vn -0.23121846 -0.03491889 -0.972275 +vn -0.23120908 -0.034924734 -0.97227705 +vn -0.22861262 -0.03653403 -0.97283167 +vn -0.22861259 -0.036534026 -0.97283167 +vn -0.22861508 -0.036528118 -0.97283137 +vn -0.22861508 -0.036528107 -0.97283137 +vn -0.22859885 -0.0365272 -0.9728352 +vn -0.22859882 -0.036527168 -0.9728352 +vn -0.22860077 -0.036519635 -0.97283494 +vn -0.22859968 -0.036519915 -0.9728353 +vn -0.50003064 -0.07816406 -0.8624731 +vn -0.40708095 -0.06391678 -0.91115296 +vn -0.7957833 -0.12141479 -0.59328526 +vn -0.84313464 -0.12716839 -0.5224482 +vn -0.92747307 -0.136747 -0.34798557 +vn 0.15219465 -0.9883497 0.001339646 +vn 0.15221438 -0.98834664 0.0013332834 +vn 0.15221438 -0.98834664 0.0013332834 +vn 0.16188903 -0.9868088 -0.0006157361 +vn 0.16746788 -0.98587483 -0.0022848519 +vn 0.2638449 -0.9642295 -0.025442164 +vn 0.2660498 -0.96359944 -0.026338743 +vn 0.16061318 -0.9870172 -0.00068443065 +vn 0.1606141 -0.9870171 -0.0006846532 +vn -0.22734374 -0.9696628 0.089826874 +vn -0.22734335 -0.9696629 0.08982678 +vn -0.5722921 -0.80335236 0.1646409 +vn -0.5722921 -0.80335236 0.16464087 +vn -0.8300957 -0.51476085 0.21438818 +vn -0.8300944 -0.514763 0.21438791 +vn -0.9615485 -0.14775692 0.23150015 +vn -0.96154773 -0.14776139 0.23150013 +vn -0.94659793 0.24171789 0.21336518 +vn -0.9465972 0.2417214 0.21336491 +vn -0.78755045 0.5943701 0.16275242 +vn -0.7875487 0.5943727 0.16275191 +vn -0.50858486 0.8565692 0.087354325 +vn -0.50858516 0.856569 0.087354384 +vn -0.14381129 0.98959947 -0.0033605758 +vn -0.14381187 0.98959935 -0.0033604295 +vn -0.0376034 0.9988877 -0.02844954 +vn -0.037602585 0.9988877 -0.028449733 +vn -0.14144352 0.9899394 -0.0037160444 +vn -0.13830194 0.9903803 -0.0044106366 +vn -0.15219682 0.9883493 -0.001341727 +vn -0.15222034 0.98834574 -0.0013340578 +vn -0.15222037 0.98834574 -0.0013340579 +vn -0.74231946 0.65321714 0.14922825 +vn -0.88404906 0.42625362 0.19174246 +vn -0.88404906 0.42625356 0.19174246 +vn -0.78754914 0.59438586 0.16270144 +vn -0.6623413 0.7382578 0.12759042 +vn -0.508593 0.8565647 0.08734994 +vn -0.50859326 0.8565645 0.08734998 +vn -0.1522002 0.9883487 -0.0013456868 +vn -0.15220076 0.9883486 -0.0013455496 +vn 0.22734107 0.9696632 -0.089828916 +vn 0.22733955 0.9696637 -0.08982858 +vn 0.5722839 0.80335814 -0.16464117 +vn 0.5722846 0.8033578 -0.16464132 +vn 0.831478 0.5121841 -0.2152019 +vn 0.8312282 0.51260793 -0.21515766 +vn 0.96128803 0.14771931 -0.23260352 +vn 0.96128803 0.14771919 -0.23260352 +vn 0.9471394 -0.23885526 -0.21418492 +vn 0.9470281 -0.23933709 -0.21413922 +vn 0.78754586 -0.5943775 -0.162748 +vn 0.78754556 -0.5943779 -0.1627479 +vn 0.508591 -0.85656565 -0.08735243 +vn 0.5085916 -0.8565653 -0.08735258 +vn 0.15221243 -0.9883469 0.0013388688 +vn 0.1522151 -0.9883465 0.001338224 +vn -0.22732179 -0.9696684 0.08982159 +vn -0.22771806 -0.96960384 0.08951532 +vn -0.40961996 -0.90289956 0.13032241 +vn -0.5104742 -0.8463708 0.15189658 +vn -0.5721503 -0.8035606 0.16411686 +vn -0.7149089 -0.6719903 0.19322102 +vn -0.7149089 -0.6719903 0.193221 +vn 0.22858788 0.03650581 0.9728386 +vn 0.22858597 0.03651557 0.9728387 +vn 0.22858499 0.036520418 0.9728387 +vn 0.22860008 0.036528654 0.9728348 +vn 0.22860235 0.036529135 0.9728343 +vn 0.22861733 0.036526017 0.9728309 +vn 0.22861734 0.03652599 0.9728309 +vn 0.2286097 0.0365279 0.9728326 +vn 0.22860964 0.0365279 0.9728326 +vn 0.22860055 0.036528997 0.9728347 +vn 0.22860055 0.036528993 0.9728347 +vn 0.22860184 0.03651864 0.9728348 +vn 0.22860184 0.036518637 0.9728348 +vn 0.22860327 0.036521476 0.9728344 +vn 0.22860327 0.036521476 0.9728344 +vn 0.22860615 0.03653269 0.9728333 +vn 0.22860613 0.03653268 0.9728333 +vn 0.22859736 0.036529876 0.9728354 +vn 0.22859736 0.036529884 0.9728354 +vn 0.22859378 0.03652843 0.9728363 +vn 0.22859375 0.036528435 0.97283643 +vn 0.22860299 0.036523808 0.9728344 +vn 0.22860299 0.03652375 0.9728344 +vn 0.22861122 0.03651006 0.9728329 +vn 0.2286068 0.036517445 0.9728337 +vn 0.2286113 0.036537454 0.9728319 +vn 0.22859468 0.036562454 0.9728348 +vn 0.2286148 0.036547273 0.97283065 +vn -0.26849738 0.3460325 -0.8989832 +vn -0.21658891 0.6448488 -0.7329798 +vn -0.24502772 0.38318858 -0.8905773 +vn -0.33701715 0.63062024 -0.6990977 +vn -0.37937245 -0.012189405 -0.9251638 +vn -0.27134922 -0.22947112 -0.93472594 +vn -0.16802128 0.95812 -0.23189418 +vn -0.017996447 0.9647294 -0.26262748 +vn 0.26066038 0.93360907 0.24582562 +vn -0.23840855 -0.6577033 -0.7145543 +vn -0.1533903 -0.67624605 -0.72052944 +vn -0.023296019 -0.9605392 -0.2771671 +vn 0.038279377 -0.9547053 -0.29508048 +vn 0.22296545 -0.9725051 0.06723311 +vn 0.14581868 -0.9873767 0.06184123 +vn 0.11715189 -0.9887057 0.09346929 +vn -0.024357582 -0.9579843 -0.2857844 +vn 0.13184375 -0.98387766 0.12083874 +vn -0.21441273 -0.644508 -0.7339187 +vn 0.039586063 -0.9554545 -0.29247138 +vn 0.09950687 -0.9932654 0.05934797 +vn 0.016241897 -0.93567854 -0.35247973 +vn -0.106092095 -0.63192695 -0.7677321 +vn -0.10307129 -0.5951904 -0.79694706 +vn -0.36333638 0.0023546675 -0.93165505 +vn -0.24194437 0.030724587 -0.9698036 +vn -0.22030516 0.029816685 -0.9749751 +vn -0.3759587 0.6056027 -0.7013561 +vn -0.2859157 0.595167 -0.7510182 +vn -0.26823413 0.5323037 -0.80293405 +vn -0.2823917 0.9360784 -0.2097906 +vn -0.2360009 0.94343776 -0.23287062 +vn -0.24732243 0.89153796 -0.37946254 +vn 0.10883175 0.95248014 0.28449476 +vn -0.051805492 0.9234965 0.38009274 +vn -0.052951638 0.94185424 0.33182323 +vn -0.07385442 0.94147754 0.3288853 +vn 0.39194283 0.60496336 0.6931091 +vn 0.47912788 0.57279724 0.6650863 +vn 0.20003676 0.5796761 0.789912 +vn 0.20634569 0.59700644 0.77524495 +vn 0.2317958 0.6149992 0.7536887 +vn 0.5267719 0.14594129 0.83738434 +vn 0.5770913 0.13112772 0.8060838 +vn 0.59045327 -0.07693535 0.8033965 +vn 0.5059286 -0.41118568 0.75826293 +vn 0.42208168 0.11824887 0.8988127 +vn 0.3589682 0.12526497 0.9249057 +vn 0.3629677 0.12526228 0.9233438 +vn 0.42191678 -0.36434847 0.8302027 +vn 0.3467788 -0.83613056 0.42500597 +vn 0.47179142 -0.6629132 0.58134234 +vn 0.39179933 -0.8378397 0.38015512 +vn 0.3629039 -0.3123193 0.8779279 +vn 0.3448475 -0.3196594 0.88255197 +vn 0.22296545 -0.9725051 0.06723311 +vn 0.27979895 -0.94884706 0.14629322 +vn 0.14581868 -0.9873767 0.06184123 +vn 0.11715189 -0.9887057 0.09346929 +vn 0.27952448 -0.82664937 0.48838183 +vn 0.25963122 -0.7763151 0.57439226 +vn 0.2231786 -0.8146993 0.53521633 +vn 0.13184375 -0.98387766 0.12083874 +vn 0.09950687 -0.9932654 0.05934797 +vn -0 -0.83370566 0.5522091 +vn -0 -0.99992895 0.011917475 +vn -0.080562726 -0.85280424 0.51597935 +vn -0.27071592 -0.9202156 0.28269467 +vn -0.38164866 -0.9182871 0.105323166 +vn -0.10767087 -0.8616746 0.4959072 +vn -0.39235416 -0.9170824 0.07083812 +vn -0.4044143 -0.91456056 0.005309694 +vn -0.387343 -0.9192993 -0.06967269 +vn -0.27586144 -0.92460525 -0.26268896 +vn -0.37262568 -0.9214756 -0.10969405 +vn -0.1188184 -0.8747174 -0.46984217 +vn -0.08949502 -0.86657643 -0.4909542 +vn -0 -0.84916 -0.5281358 +vn 0.12834492 -0.00084390293 0.9917292 +vn -0 -0.00043805045 0.9999999 +vn -0 -0.21151343 0.9773751 +vn 0.12413323 -0.2109614 0.96958053 +vn 0.32224524 -0.0006331984 0.94665605 +vn 0.33432883 -0.16324471 0.92821085 +vn 0.6686063 -0.14712079 0.72891784 +vn 0.6709563 -3.2624504E-07 0.7414969 +vn 0.9294447 -0.0002450295 0.3689614 +vn 0.90610784 -0.16317767 0.3903097 +vn 0.99278134 -0.00030475445 0.119938426 +vn 0.9674596 -0.22495668 0.11582912 +vn 0.9758177 -0.21784854 -0.017936576 +vn 0.999912 -0.00016934253 -0.013265393 +vn 0.9885501 -0.00041695358 -0.15089267 +vn 0.9639848 -0.21695474 -0.1538313 +vn 0.95040596 -0.00031270809 -0.3110118 +vn 0.9315264 -0.17179674 -0.3205375 +vn 0.7252005 -0.14451225 -0.6732017 +vn 0.7429337 -1.4890104E-07 -0.66936487 +vn 0.32621175 -0.00047999693 -0.9452966 +vn 0.34248748 -0.12564914 -0.93108255 +vn 0.09735097 -0.18919437 -0.977102 +vn 0.103513725 -0.0006323857 -0.9946278 +vn -0 -0.18283139 -0.9831443 +vn -0 -0.0003235924 -1 +vn -0 -0.83370566 0.5522091 +vn 0.080562726 -0.85280424 0.51597935 +vn -0 -0.99992895 0.011917475 +vn 0.27071598 -0.9202156 0.28269467 +vn 0.10767087 -0.8616746 0.4959072 +vn 0.39235416 -0.9170824 0.07083812 +vn 0.38164866 -0.9182871 0.105323166 +vn 0.4044143 -0.91456056 0.005309694 +vn 0.387343 -0.9192993 -0.06967269 +vn 0.27586144 -0.92460525 -0.26268896 +vn 0.37262568 -0.9214756 -0.10969405 +vn 0.08949502 -0.86657643 -0.4909542 +vn 0.1188184 -0.8747174 -0.46984217 +vn -0 -0.84916 -0.5281358 +vn -0.12834495 -0.00084390317 0.9917292 +vn -0 -0.21151343 0.9773751 +vn -0 -0.00043805045 0.9999999 +vn -0.12413323 -0.21096142 0.96958053 +vn -0.32224524 -0.00063320127 0.94665605 +vn -0.33432883 -0.16324471 0.92821085 +vn -0.6686063 -0.14712079 0.72891784 +vn -0.6709563 -3.2911268E-07 0.7414969 +vn -0.9294447 -0.00024502954 0.3689614 +vn -0.9070318 -0.16105093 0.38904497 +vn -0.99278134 -0.00030475445 0.119938426 +vn -0.9673564 -0.22356589 0.119330764 +vn -0.97561127 -0.21869083 -0.018897917 +vn -0.999912 -0.00016934254 -0.013265393 +vn -0.9885501 -0.0004169536 -0.15089267 +vn -0.96393704 -0.21497385 -0.15688096 +vn -0.95040596 -0.0003127081 -0.31101182 +vn -0.9319554 -0.17097113 -0.319731 +vn -0.7252005 -0.14451225 -0.6732017 +vn -0.7429337 -1.5057977E-07 -0.6693649 +vn -0.32621175 -0.00047999853 -0.9452966 +vn -0.34248745 -0.12564917 -0.9310825 +vn -0.09735096 -0.18919437 -0.977102 +vn -0.10351372 -0.0006323857 -0.9946278 +vn -0 -0.18283139 -0.9831443 +vn -0 -0.0003235924 -1 +vn 0.6756854 -0.7365723 -0.030174522 +vn 0.9022568 -0.42317846 0.08278048 +vn 0.93662065 -0.33285585 0.10931007 +vn 0.90004766 -0.18753284 0.39337713 +vn 0.46006173 0.8735833 0.15873042 +vn 0.46181756 0.8765635 0.13550317 +vn 0.46346426 0.8792987 0.1097027 +vn 0.45805657 0.8808102 0.11982332 +vn 0.58379704 0.80985326 0.057608493 +vn 0.41851175 0.90686715 0.04939625 +vn 0.2554871 0.9609796 0.1060405 +vn 0.23639646 0.9655574 0.10869951 +vn -0 0.9925398 0.121920325 +vn -0 0.9925398 0.121920355 +vn -0.23639646 0.9655574 0.10869951 +vn -0.25548705 0.9609796 0.10604049 +vn -0.4107245 0.9083186 0.0791383 +vn -0.44395873 0.8927521 0.0767745 +vn -0.5052432 0.8608409 0.060681466 +vn -0.5031649 0.86154103 0.06761695 +vn -0.46237534 0.88316905 0.07887615 +vn -0.43921822 0.8943439 0.08506622 +vn 0.4489466 0.89315623 -0.02681416 +vn 0.43435925 0.90044457 -0.023059074 +vn 0.38227594 0.9240103 -0.00837578 +vn 0.42587513 0.90473276 -0.009434847 +vn 0.4363284 0.8996736 -0.014311618 +vn 0.36210993 0.93192744 0.019688835 +vn -0.30239633 -0.9531619 -0.006234615 +vn -0.25447556 -0.9669816 -0.013741479 +vn -0.27674577 -0.9608883 -0.010269776 +vn -0.3005913 -0.9536824 0.011602393 +vn -0.3918673 -0.91984034 0.018268177 +vn -0.32909277 -0.9437704 0.031550072 +vn -0.18325566 -0.9826354 0.029068602 +vn -0.16444433 -0.9859359 0.02980597 +vn 0.00013759203 -0.99947304 0.032460928 +vn 9.150989E-05 -0.99947304 0.032460924 +vn 0.1644573 -0.9859337 0.02980711 +vn 0.18326186 -0.9826346 0.029058961 +vn 0.329263 -0.9436545 0.03319799 +vn 0.3344651 -0.94224423 0.017576462 +vn 0.4333055 -0.90062535 0.03347123 +vn 0.37397066 -0.92740756 0.007826045 +vn 0.3055871 -0.95210004 -0.011050228 +vn 0.26950288 -0.96277493 -0.0207993 +vn -0.44221458 -0.89637625 0.030916428 +vn -0.41229796 -0.9107821 0.02205548 +vn -0.3332466 -0.9421505 -0.0360446 +vn -0.34238997 -0.93935794 0.019387214 +vn -0.40012312 -0.91645664 -0.0029473712 +vn -0.40012312 -0.91645664 -0.0029473712 +vn -0.90569246 -0.42393532 -0.00016171046 +vn -0.60554343 -0.78065354 0.15458739 +vn -0.6249236 -0.7806528 0.007186083 +vn -0.8754673 -0.41875806 0.24124415 +vn -0.99142796 -0.13065434 0.00036668143 +vn -0.67970467 -0.6197776 0.39227185 +vn -0.53760415 -0.7806537 0.31868738 +vn -0.9527295 -0.13342893 0.27295268 +vn -0.9999471 0.010293418 -0.00015320821 +vn -0.9623942 0.010497294 0.2714539 +vn -0.9981713 0.06044745 0.0004861267 +vn -0.961006 0.05808656 0.27035806 +vn -0.8733177 -0.09025324 0.4787176 +vn -0.8714788 0.01978585 0.49003395 +vn -0.8630778 0.05664587 0.5018844 +vn -0.79962796 -0.40249193 0.44564044 +vn -0.5553973 -0.62109745 0.55296636 +vn -0.44694737 -0.78117186 0.4358997 +vn -0.613076 -0.478669 0.62850124 +vn -0.6923877 -0.20850182 0.6907432 +vn -0.71434736 -0.046444952 0.6982483 +vn -0.71668524 0.03398116 0.6965684 +vn -0.3911765 -0.62297535 0.6774087 +vn -0.30558994 -0.7819294 0.5433243 +vn -0.4353238 -0.42984164 0.7910305 +vn -0.46802938 -0.12658253 0.8746001 +vn -0.2014063 -0.62131137 0.7572368 +vn -0.16827902 -0.7813623 0.6009619 +vn -0.2272075 -0.39954153 0.88811225 +vn -0.0001588148 -0.3912354 0.9202906 +vn -0.00013704716 -0.61978036 0.78477526 +vn 0.0071896086 -0.78065485 0.6249209 +vn 0.15397254 -0.78135425 0.60479593 +vn 0.20114669 -0.6213008 0.75731444 +vn 0.31804463 -0.7819227 0.5361385 +vn -0.48064277 -0.016949017 0.87675273 +vn -0.24453656 -0.09833771 0.9646407 +vn 0.3909477 -0.62296444 0.6775509 +vn 0.43647453 -0.78117734 0.4463764 +vn 0.22689979 -0.3995408 0.8881912 +vn 0.5552016 -0.621098 0.5531622 +vn 0.5447949 -0.7806544 0.3062308 +vn 0.43504447 -0.42984605 0.7911818 +vn 0.6795651 -0.6197854 0.3925015 +vn 0.6017087 -0.7806539 0.16889669 +vn 0.61285245 -0.47867498 0.6287147 +vn 0.8753767 -0.41877076 0.24155048 +vn 0.62492234 -0.78065383 -0.007186484 +vn 0.79947627 -0.4024959 0.44590896 +vn 0.6921398 -0.20850974 0.6909892 +vn 0.4677262 -0.12659106 0.8747611 +vn 0.24420169 -0.098341644 0.96472514 +vn 0.8731521 -0.09025679 0.47901878 +vn 0.90568644 -0.42394823 0.0001619338 +vn 0.60554093 -0.78065616 -0.15458398 +vn 0.7141103 -0.046442978 0.69849086 +vn -0.00017359346 -0.09380599 0.99559045 +vn 0.4803473 -0.016946478 0.8769147 +vn 0.95262843 -0.13344565 0.27329698 +vn 0.87487 -0.4239418 -0.23425595 +vn 0.53760046 -0.7806553 -0.3186896 +vn -0.2618116 -0.021440143 0.96488076 +vn 0.26150772 -0.021480802 0.96496224 +vn 0.9914511 -0.13047846 0.00032734626 +vn 0.78442806 -0.4239395 -0.45271164 +vn 0.4471247 -0.7806553 -0.43664268 +vn 0.9577775 -0.13084343 -0.25601217 +vn 0.9999536 0.00961732 0.00058331864 +vn 0.64053285 -0.4239436 -0.6403042 +vn 0.30623448 -0.78065485 -0.54479206 +vn -0.00019650611 -0.02875436 0.9995865 +vn 0.9615834 0.012929612 0.27420846 +vn 0.8588224 -0.1313739 -0.49514136 +vn 0.4529805 -0.42394346 -0.7842707 +vn 0.16889414 -0.7806545 -0.6017087 +vn 0.7011 -0.13168658 -0.70079774 +vn 0.86590695 0.0066414257 -0.50016093 +vn 0.23455478 -0.423938 -0.87479174 +vn -0.007192011 -0.78065455 -0.6249213 +vn 0.49580646 -0.13177198 -0.8583776 +vn 0.00015717257 -0.42393544 -0.9056924 +vn -0.15458348 -0.7806541 -0.6055436 +vn 0.9657936 0.009981042 -0.25911993 +vn 0.70717514 0.007324343 -0.7070005 +vn 0.2567297 -0.1318195 -0.9574515 +vn -0.2342558 -0.42393702 -0.8748724 +vn -0.31868774 -0.7806526 -0.53760546 +vn 0.50009793 0.007327518 -0.8659379 +vn 0.00017661216 -0.1318353 -0.99127156 +vn -0.45270583 -0.42394015 -0.7844311 +vn -0.43664652 -0.780655 -0.4471214 +vn 0.25895107 0.007326893 -0.96586263 +vn -0.2564014 -0.13182186 -0.95753926 +vn -0.64030474 -0.42394385 -0.6405321 +vn -0.5447915 -0.7806564 -0.30623147 +vn 0.00017837914 0.007325404 -0.9999732 +vn -0.4955079 -0.13177365 -0.8585498 +vn -0.7842697 -0.42394614 -0.45297983 +vn -0.60170686 -0.7806549 -0.16889848 +vn -0.25861672 0.0073249624 -0.9659523 +vn 0.00017967401 0.05849746 -0.9982875 +vn 0.25970528 0.05846256 -0.96391666 +vn 0.5013201 0.05835607 -0.8632917 +vn 0.70837116 0.05817694 -0.70343846 +vn 0.8658797 0.058541995 -0.49681512 +vn 0.96504897 0.05949208 -0.25522745 +vn 0.99813336 0.061031125 0.0022692683 +vn -0.25936973 0.058463085 -0.9640069 +vn 0.9610322 0.05772212 0.27034283 +vn -0.49979553 0.0073244534 -0.86611253 +vn -0.50101686 0.0583542 -0.86346793 +vn 0.8712607 0.01987657 0.49041787 +vn 0.90004766 -0.18753284 0.39337713 +vn -0.70691997 0.0073226346 -0.70725566 +vn -0.7081191 0.058175433 -0.7036924 +vn 0.7133661 0.056759845 0.6984892 +vn 0.700127 0.032071166 0.7132977 +vn 0.7164503 0.03398462 0.6968099 +vn 0.4990002 0.025275236 0.8662332 +vn 0.5171646 0.041989718 0.8548554 +vn 0.5031022 0.03902793 0.86334527 +vn 0.26345766 0.052987833 0.9632146 +vn 0.27992144 -0.0039817137 0.96001464 +vn 0.2774386 0.025329404 0.96040946 +vn 8.4026404E-05 -0.018088069 0.9998363 +vn -0.00034230988 0.019555522 0.9998087 +vn -0.00030207162 0.05879095 0.9982703 +vn -0.26370984 0.053058412 0.96314174 +vn -0.28017694 -0.0040326 0.95993996 +vn -0.2776838 0.025268717 0.9603401 +vn -0.51531875 0.03791014 0.8561597 +vn -0.49967325 0.033077843 0.86558217 +vn -0.49928293 0.025271453 0.8660704 +vn -0.71371 0.04737856 0.69883704 +vn -0.6992242 0.011252609 0.714814 +vn -0.9999471 0.010293418 -0.00015320821 +vn -0.96501553 0.05828556 -0.25563192 +vn -0.9981713 0.06044745 0.0004861267 +vn -0.9657651 0.0066433866 -0.2593332 +vn -0.99142796 -0.13065434 0.00036668143 +vn -0.86649907 0.05794781 -0.4958038 +vn -0.95763886 -0.1312544 -0.25632027 +vn -0.90569246 -0.42393532 -0.00016171046 +vn -0.8658767 0.0073203864 -0.500204 +vn -0.8747888 -0.4239423 -0.23455794 +vn -0.6249236 -0.7806528 0.007186083 +vn -0.85842884 -0.13158034 -0.49576858 +vn -0.7008471 -0.13168961 -0.70105004 +vn -0.5633709 -0.81506896 0.1351882 +vn -0.47784156 -0.8647756 0.15437181 +vn -0.58956903 -0.7994324 0.115395844 +vn -0.4809427 -0.8610755 0.16505489 +vn -0.42644414 -0.90388286 0.03378052 +vn -0.42949373 -0.9022515 0.038439006 +vn -0.38669097 -0.92045623 -0.056836493 +vn -0.3882477 -0.9201126 -0.051539574 +vn -0.34475628 -0.92624724 -0.15234554 +vn -0.34718302 -0.9260116 -0.14821026 +vn -0.28063393 -0.9309094 -0.23377831 +vn -0.2834245 -0.93075335 -0.23101711 +vn -0.1978758 -0.9341916 -0.29686916 +vn -0.20022261 -0.9341289 -0.29548976 +vn -0.10195476 -0.9356605 -0.33785325 +vn -0.103258 -0.9356538 -0.3374756 +vn 3.414938E-06 -0.93585724 -0.35237947 +vn 6.309627E-05 -0.93585724 -0.3523795 +vn 0.101958364 -0.9356607 -0.3378514 +vn 0.1033795 -0.9356534 -0.33743933 +vn 0.20033227 -0.9341261 -0.29542428 +vn 0.19787866 -0.9341917 -0.29686686 +vn 0.28351456 -0.9307486 -0.23092547 +vn 0.28063574 -0.9309097 -0.23377503 +vn 0.34734833 -0.9259299 -0.14833428 +vn 0.34485933 -0.92617685 -0.15253972 +vn 0.38863268 -0.9199526 -0.05149581 +vn 0.38702652 -0.92030776 -0.056955867 +vn 0.42973754 -0.9021256 0.03866612 +vn 0.4266429 -0.9037842 0.033908077 +vn 0.48096877 -0.86102664 0.16523361 +vn 0.47780624 -0.8648002 0.15434277 +vn 0.50161207 -0.8303901 0.24256463 +vn 0.50161207 -0.8303901 0.24256463 +vn 0.9165188 -0.19819233 0.34743795 +vn 0.96127856 -0.24314427 0.12970933 +vn 0.96127856 -0.24314427 0.12970933 +vn 0.9219484 -0.20224959 0.33031246 +vn 0.7294574 -0.111538336 0.67487115 +vn 0.6861799 -0.097560205 0.72086006 +vn 0.4704627 -0.033160668 0.88179654 +vn 0.4436817 -0.02555672 0.89581996 +vn 0.2616199 0.015241688 0.96505064 +vn 0.24341564 0.018468289 0.9697462 +vn -0 0.036751874 0.99932444 +vn -0 0.036751863 0.99932444 +vn -0.24341561 0.018468246 0.9697462 +vn -0.26161978 0.01524165 0.96505064 +vn -0.44463494 -0.03048929 0.8951928 +vn -0.4716684 -0.039748218 0.88087964 +vn -0.6841059 -0.11074369 0.7209265 +vn -0.7224709 -0.123925574 0.6802046 +vn -0.91918147 -0.19210356 0.34380475 +vn -0.91779834 -0.23017454 0.3235213 +vn -0.58956903 -0.7994324 0.115395844 +vn -0.5633709 -0.81506896 0.1351882 +vn 0.42219397 -0.09691444 0.90131 +vn 0.42219394 -0.09691444 0.90131 +vn 0.42219397 -0.096914455 0.90131 +vn 0.42219397 -0.09691444 0.90131 +vn -0.007672928 -0.008668855 -0.999933 +vn -0.007672929 -0.008668855 -0.999933 +vn -0.007672928 -0.008668853 -0.999933 +vn -0.007672928 -0.008668855 -0.999933 +vn 0.35414058 -0.05480043 -0.9335852 +vn 0.35414058 -0.054800436 -0.9335852 +vn 0.35414058 -0.054800436 -0.9335852 +vn 0.35414058 -0.054800436 -0.9335852 +vn 0.91958266 -0.12799582 0.37146306 +vn 0.91958266 -0.1279958 0.37146303 +vn 0.91958266 -0.1279958 0.37146303 +vn 0.91958266 -0.1279958 0.37146303 +vn 0.8214216 -0.14329362 -0.5520266 +vn 0.8214217 -0.14329362 -0.5520266 +vn 0.8214216 -0.1432936 -0.5520266 +vn 0.8214216 -0.14329362 -0.5520266 +vn 0.7128449 -0.4128405 0.5669346 +vn 0.70831716 -0.30659577 0.63583475 +vn 0.8954241 -0.28581235 0.34136042 +vn 0.9058167 -0.29860392 0.30055255 +vn 0.66567284 -0.19016688 0.7216068 +vn 0.98878086 -0.14086026 -0.04970608 +vn 0.28877574 0.85426396 0.43225178 +vn 0.996101 -0.036660116 -0.08024273 +vn 0.62541413 0.13838671 0.7679234 +vn 0.9918588 0.06976504 -0.10653145 +vn 0.66586524 0.3162695 0.6757197 +vn 0.48307157 -0.8741571 0.049913503 +vn 0.61816925 0.48682705 0.6171435 +vn 0.8770123 0.47753868 0.052973706 +vn 0.49680865 0.3837048 0.77842903 +vn 0.87701225 0.4775387 0.052973703 +vn 0.87701225 0.4775387 0.052973695 +vn -0.7128449 -0.4128405 0.5669346 +vn -0.8954241 -0.28581235 0.34136042 +vn -0.70831716 -0.30659577 0.63583475 +vn -0.9058167 -0.29860392 0.30055255 +vn -0.66567284 -0.19016688 0.7216068 +vn -0.98878086 -0.14086026 -0.04970608 +vn -0.28877574 0.85426396 0.43225178 +vn -0.996101 -0.036660116 -0.08024273 +vn -0.62541413 0.13838671 0.7679234 +vn -0.9918588 0.06976504 -0.10653145 +vn -0.66586524 0.3162695 0.6757197 +vn -0.48307157 -0.8741571 0.049913503 +vn -0.61816925 0.48682705 0.6171435 +vn -0.8770123 0.47753868 0.052973706 +vn -0.49680865 0.3837048 0.77842903 +vn -0.8770123 0.47753868 0.052973706 +vn -0.8770123 0.47753865 0.0529737 +vn 0.62492234 -0.78065383 -0.007186484 +vn 0.25398648 -0.96662796 0.03348454 +vn 0.6017087 -0.7806539 0.16889669 +vn 0.5447949 -0.7806544 0.3062308 +vn 0.23669916 -0.96662825 -0.097996555 +vn 0.60554093 -0.78065616 -0.15458398 +vn 0.53760046 -0.7806553 -0.3186896 +vn 0.20322171 -0.9666268 0.15599245 +vn 0.43647453 -0.78117734 0.4463764 +vn 0.31804463 -0.7819227 0.5361385 +vn 0.15599248 -0.96662736 -0.20321837 +vn 0.4471247 -0.7806553 -0.43664268 +vn 0.30623448 -0.78065485 -0.54479206 +vn -0 -1 -1.8422566E-07 +vn 0.097998284 -0.9666275 0.23670144 +vn 0.033483423 -0.9666273 -0.25398934 +vn 0.15397254 -0.78135425 0.60479593 +vn 0.16889414 -0.7806545 -0.6017087 +vn 0.0071896086 -0.78065485 0.6249209 +vn -0.007192011 -0.78065455 -0.6249213 +vn -0.03348405 -0.9666273 0.25398898 +vn -0.16827902 -0.7813623 0.6009619 +vn -0.30558994 -0.7819294 0.5433243 +vn -0.09799629 -0.9666275 -0.23670222 +vn -0.15458348 -0.7806541 -0.6055436 +vn -0.31868774 -0.7806526 -0.53760546 +vn -0.15599161 -0.96662706 0.20322125 +vn -0.44694737 -0.78117186 0.4358997 +vn -0.53760415 -0.7806537 0.31868738 +vn -0.20321769 -0.9666281 -0.15598951 +vn -0.43664652 -0.780655 -0.4471214 +vn -0.5447915 -0.7806564 -0.30623147 +vn -0.23670273 -0.96662736 0.09799669 +vn -0.60554343 -0.78065354 0.15458739 +vn -0.6249236 -0.7806528 0.007186083 +vn -0.2539856 -0.96662825 -0.033483952 +vn -0.60170686 -0.7806549 -0.16889848 +vn -0 0.32604018 -0.9453559 +vn -0.2518004 0.21031816 -0.9446496 +vn -0 0.20937073 -0.9778364 +vn 0.25180042 0.21031813 -0.9446496 +vn -0.24553739 0.32800925 -0.91220677 +vn -0.48590153 0.21327022 -0.84759396 +vn 0.24553743 0.32800925 -0.91220677 +vn 0.4859014 0.21327023 -0.8475941 +vn -0.4727231 0.33352697 -0.8156547 +vn -0.6867813 0.21826687 -0.6933189 +vn 0.4727231 0.33352694 -0.81565475 +vn 0.6867811 0.21826686 -0.6933191 +vn -0.6655266 0.3414152 -0.6637092 +vn -0.8400614 0.22584206 -0.49324656 +vn 0.66552657 0.3414153 -0.6637094 +vn 0.8400614 0.22584207 -0.49324656 +vn -0.8109217 0.35045668 -0.46860024 +vn -0.9364838 0.23597407 -0.25945008 +vn 0.8109216 0.35045666 -0.4686002 +vn 0.9364838 0.23597407 -0.25945008 +vn -0.90092885 0.3592749 -0.24341059 +vn -0.96902645 0.24683495 -0.0077677257 +vn 0.90092885 0.3592749 -0.24341053 +vn 0.96902645 0.24683495 -0.0077677146 +vn -0.93061334 0.365991 -0.0030775748 +vn -0.93440723 0.25311705 0.250629 +vn 0.93061334 0.365991 -0.0030775676 +vn 0.9344073 0.25311702 0.25062898 +vn -0.89823395 0.36769098 0.24078836 +vn -0.8438589 0.25470546 0.47225767 +vn 0.89823395 0.36769098 0.24078836 +vn 0.8438589 0.25470546 0.47225764 +vn -0.80924493 0.36438122 0.4608133 +vn -0.71501744 0.28015515 0.6405179 +vn -0.6725236 0.37597254 0.637461 +vn -0.52489316 0.36236757 0.77017987 +vn -0.70080847 0.5974581 0.38975793 +vn -0.7702736 0.60275835 0.20823254 +vn -0.46635655 0.8148795 0.3442137 +vn -0.4860517 0.41510573 0.769052 +vn -0.28384316 0.48738 0.8257686 +vn -0.57413864 0.5898015 0.56789 +vn -0.795857 0.6054673 -0.004582658 +vn -0.24859127 0.4824296 0.8399191 +vn -0 0.56574583 0.82457966 +vn -0.41994998 0.5840836 0.6946137 +vn -0.5710858 0.8176845 0.072477974 +vn -0.7724974 0.60344195 -0.19775122 +vn -0.6957754 0.5966868 -0.39982685 +vn -0.5364534 0.8165259 -0.21331474 +vn -0.5811056 0.58876467 -0.5618474 +vn -0.406696 0.5801715 -0.7056906 +vn -0.3477373 0.8149658 -0.4635834 +vn -0.21623375 0.5828284 -0.78329694 +vn -0 0.816849 -0.5768515 +vn -0 0.5715209 -0.8205876 +vn 0.21623375 0.5828284 -0.7832969 +vn 0.40669602 0.58017164 -0.70569056 +vn 0.34773734 0.81496567 -0.46358344 +vn 0.5811055 0.58876467 -0.5618475 +vn 0.6957754 0.5966868 -0.39982685 +vn 0.5364535 0.8165259 -0.21331482 +vn 0.77249736 0.6034421 -0.19775118 +vn 0.7958569 0.6054673 -0.004582653 +vn 0.5710858 0.8176845 0.07247797 +vn 0.7702737 0.6027584 0.20823248 +vn 0.46635658 0.8148794 0.34421366 +vn 0.70080847 0.5974582 0.389758 +vn 0.8092449 0.3643813 0.46081337 +vn 0.7150174 0.28015524 0.640518 +vn 0.67252344 0.3759727 0.6374612 +vn 0.5248931 0.36236766 0.7701798 +vn 0.5741386 0.5898015 0.56789005 +vn 0.4860516 0.41510573 0.769052 +vn 0.28384322 0.4873801 0.8257686 +vn 0.41995004 0.5840836 0.6946138 +vn 0.24859133 0.48242968 0.83991903 +vn -0 0.51736504 0.8557648 +vn -0 0.57810944 0.8159593 +vn 0.22070937 0.57410884 0.788471 +vn -0.22070937 0.57410884 0.788471 +vn 0.24590747 0.80968297 0.53286296 +vn -0 0.8048885 0.5934261 +vn -0.24590741 0.8096831 0.5328629 +vn -0 0.958845 0.28392982 +vn 0.13082395 0.95588285 0.26300776 +vn -0.13082394 0.95588285 0.26300773 +vn 0.2454318 0.953595 0.17441283 +vn -0 0.999997 -0.0024603477 +vn -0.2454318 0.953595 0.1744128 +vn 0.30240482 0.9524425 0.03747789 +vn -0.30240476 0.9524425 0.037477877 +vn 0.28451744 0.9525797 -0.107897095 +vn -0.28451747 0.9525797 -0.107897066 +vn 0.18321194 0.9525563 -0.24304278 +vn -0.18321191 0.9525563 -0.24304278 +vn -0 0.95204115 -0.3059699 +vn -0 0.7913419 0.61137384 +vn -0 0.9171543 0.39853224 +vn -0.014406425 0.80753934 0.58963776 +vn 0.014406419 0.80753934 0.58963776 +vn -0.052230023 0.8520433 0.52085906 +vn 0.052230027 0.85204333 0.520859 +vn -0.1337096 0.8875067 0.4409689 +vn 0.1337096 0.8875067 0.44096887 +vn -0.150338 0.90975124 0.38697687 +vn 0.150338 0.90975124 0.38697687 +vn -0.07408587 0.94650084 0.31408197 +vn 0.074085854 0.94650084 0.31408197 +vn -0 0.92836964 0.37165824 +g Ghost_Baseball_0 +f 3/3/3 2/2/2 1/1/1 +f 6/6/6 5/5/5 4/4/4 +f 9/9/9 8/8/8 7/7/7 +f 12/12/12 11/11/11 10/10/10 +f 15/15/15 14/14/14 13/13/13 +f 18/18/18 17/17/17 16/16/16 +f 21/21/21 20/20/20 19/19/19 +f 20/20/20 22/22/22 19/19/19 +f 22/22/22 20/20/20 23/23/23 +f 24/24/24 22/22/22 23/23/23 +f 22/22/22 25/25/25 19/19/19 +f 22/22/22 24/24/24 25/25/25 +f 25/25/25 26/26/26 19/19/19 +f 25/25/25 24/24/24 27/27/27 +f 26/26/26 25/25/25 28/28/28 +f 25/25/25 27/27/27 29/29/29 +f 25/25/25 29/29/29 28/28/28 +f 30/30/30 29/29/29 27/27/27 +f 29/29/29 30/30/30 28/28/28 +f 30/30/30 31/31/31 28/28/28 +f 32/32/32 30/30/30 27/27/27 +f 33/33/33 31/31/31 30/30/30 +f 30/30/30 32/32/32 33/33/33 +f 32/32/32 34/34/34 33/33/33 +f 33/33/33 34/34/34 35/35/35 +f 36/36/36 33/33/33 35/35/35 +f 36/36/36 35/35/35 37/37/37 +f 35/35/35 34/34/34 38/38/38 +f 35/35/35 38/38/38 37/37/37 +f 38/38/38 39/39/39 37/37/37 +f 34/34/34 40/40/40 38/38/38 +f 41/41/41 39/39/39 38/38/38 +f 42/42/42 38/38/38 40/40/40 +f 42/42/42 41/41/41 38/38/38 +f 43/43/43 42/42/42 40/40/40 +f 42/42/42 44/44/44 41/41/41 +f 43/43/43 45/45/45 42/42/42 +f 45/45/45 44/44/44 42/42/42 +f 45/45/45 43/43/43 46/46/46 +f 47/47/47 44/44/44 45/45/45 +f 48/48/48 45/45/45 46/46/46 +f 48/48/48 47/47/47 45/45/45 +f 46/46/46 49/49/49 48/48/48 +f 47/47/47 48/48/48 50/50/50 +f 49/49/49 50/50/50 48/48/48 +f 51/51/51 47/47/47 50/50/50 +f 49/49/49 52/52/52 50/50/50 +f 51/51/51 50/50/50 53/53/53 +f 52/52/52 54/54/54 50/50/50 +f 50/50/50 54/54/54 53/53/53 +f 54/54/54 55/55/55 53/53/53 +f 56/56/56 55/55/55 54/54/54 +f 54/54/54 52/52/52 57/57/57 +f 58/58/58 56/56/56 54/54/54 +f 58/58/58 54/54/54 57/57/57 +f 56/56/56 58/58/58 59/59/59 +f 58/58/58 60/60/60 59/59/59 +f 58/58/58 57/57/57 60/60/60 +f 57/57/57 61/61/61 60/60/60 +f 64/64/64 63/63/63 62/62/62 +f 63/63/63 64/64/64 65/65/65 +f 66/66/66 63/63/63 65/65/65 +f 65/65/65 67/67/67 66/66/66 +f 67/67/67 68/68/68 66/66/66 +f 67/67/67 69/69/69 68/68/68 +f 72/72/72 71/71/71 70/70/70 +f 71/71/71 73/73/73 70/70/70 +f 73/73/73 71/71/71 74/74/74 +f 75/75/75 73/73/73 74/74/74 +f 74/74/74 76/76/76 75/75/75 +f 77/77/77 76/76/76 74/74/74 +f 76/76/76 77/77/77 78/78/78 +f 77/77/77 79/79/79 78/78/78 +f 77/77/77 80/80/80 79/79/79 +f 80/80/80 81/81/81 79/79/79 +f 80/80/80 82/82/82 81/81/81 +f 83/83/83 81/81/81 82/82/82 +f 84/84/84 83/83/83 82/82/82 +f 82/82/82 85/85/85 84/84/84 +f 84/84/84 85/85/85 86/86/86 +f 85/85/85 87/87/87 86/86/86 +f 86/86/86 87/87/87 88/88/88 +f 87/87/87 89/89/89 88/88/88 +f 92/92/92 91/91/91 90/90/90 +f 92/92/92 90/90/90 93/93/93 +f 96/96/96 95/95/95 94/94/94 +f 95/95/95 97/97/97 94/94/94 +f 94/94/94 97/97/97 98/98/98 +f 99/99/99 97/97/97 95/95/95 +f 100/100/100 99/99/99 95/95/95 +f 97/97/97 101/101/101 98/98/98 +f 98/98/98 101/101/101 102/102/102 +f 99/99/99 103/103/103 97/97/97 +f 97/97/97 103/103/103 101/101/101 +f 103/103/103 99/99/99 104/104/104 +f 105/105/105 99/99/99 100/100/100 +f 99/99/99 105/105/105 104/104/104 +f 106/106/106 105/105/105 100/100/100 +f 107/107/107 105/105/105 106/106/106 +f 104/104/104 105/105/105 107/107/107 +f 108/108/108 107/107/107 106/106/106 +f 101/101/101 103/103/103 109/109/109 +f 103/103/103 104/104/104 109/109/109 +f 102/102/102 101/101/101 110/110/110 +f 110/110/110 101/101/101 109/109/109 +f 107/107/107 108/108/108 111/111/111 +f 108/108/108 112/112/112 111/111/111 +f 107/107/107 111/111/111 113/113/113 +f 104/104/104 107/107/107 113/113/113 +f 111/111/111 114/114/114 113/113/113 +f 113/113/113 114/114/114 115/115/115 +f 114/114/114 116/116/116 115/115/115 +f 116/116/116 117/117/117 115/115/115 +f 104/104/104 113/113/113 118/118/118 +f 115/115/115 118/118/118 113/113/113 +f 117/117/117 119/119/119 115/115/115 +f 115/115/115 119/119/119 118/118/118 +f 119/119/119 117/117/117 120/120/120 +f 117/117/117 121/121/121 120/120/120 +f 121/121/121 122/122/122 120/120/120 +f 122/122/122 123/123/123 120/120/120 +f 120/120/120 123/123/123 124/124/124 +f 125/125/125 119/119/119 120/120/120 +f 119/119/119 125/125/125 118/118/118 +f 126/126/126 120/120/120 124/124/124 +f 126/126/126 125/125/125 120/120/120 +f 127/127/127 126/126/126 124/124/124 +f 127/127/127 128/128/128 126/126/126 +f 128/128/128 129/129/129 126/126/126 +f 125/125/125 126/126/126 129/129/129 +f 128/128/128 130/130/130 129/129/129 +f 129/129/129 130/130/130 131/131/131 +f 130/130/130 132/132/132 131/131/131 +f 132/132/132 133/133/133 131/131/131 +f 134/134/134 125/125/125 129/129/129 +f 134/134/134 129/129/129 131/131/131 +f 118/118/118 125/125/125 135/135/135 +f 125/125/125 134/134/134 135/135/135 +f 133/133/133 136/136/136 131/131/131 +f 133/133/133 137/137/137 136/136/136 +f 118/118/118 135/135/135 138/138/138 +f 138/138/138 135/135/135 139/139/139 +f 104/104/104 118/118/118 138/138/138 +f 104/104/104 138/138/138 109/109/109 +f 109/109/109 138/138/138 139/139/139 +f 135/135/135 134/134/134 140/140/140 +f 135/135/135 140/140/140 139/139/139 +f 141/141/141 134/134/134 131/131/131 +f 134/134/134 141/141/141 140/140/140 +f 141/141/141 131/131/131 142/142/142 +f 131/131/131 136/136/136 142/142/142 +f 140/140/140 141/141/141 143/143/143 +f 141/141/141 142/142/142 143/143/143 +f 140/140/140 143/143/143 139/139/139 +f 137/137/137 144/144/144 136/136/136 +f 144/144/144 137/137/137 145/145/145 +f 144/144/144 145/145/145 146/146/146 +f 142/142/142 136/136/136 147/147/147 +f 143/143/143 142/142/142 147/147/147 +f 136/136/136 144/144/144 147/147/147 +f 144/144/144 146/146/146 148/148/148 +f 146/146/146 149/149/149 148/148/148 +f 149/149/149 150/150/150 148/148/148 +f 150/150/150 151/151/151 148/148/148 +f 148/148/148 151/151/151 152/152/152 +f 144/144/144 148/148/148 153/153/153 +f 153/153/153 148/148/148 152/152/152 +f 147/147/147 144/144/144 153/153/153 +f 153/153/153 152/152/152 154/154/154 +f 155/155/155 153/153/153 154/154/154 +f 147/147/147 153/153/153 155/155/155 +f 154/154/154 156/156/156 155/155/155 +f 157/157/157 143/143/143 147/147/147 +f 157/157/157 147/147/147 155/155/155 +f 156/156/156 158/158/158 155/155/155 +f 155/155/155 158/158/158 157/157/157 +f 156/156/156 159/159/159 158/158/158 +f 160/160/160 143/143/143 157/157/157 +f 143/143/143 160/160/160 139/139/139 +f 158/158/158 161/161/161 157/157/157 +f 161/161/161 160/160/160 157/157/157 +f 159/159/159 162/162/162 158/158/158 +f 161/161/161 158/158/158 162/162/162 +f 162/162/162 159/159/159 163/163/163 +f 159/159/159 164/164/164 163/163/163 +f 163/163/163 165/165/165 162/162/162 +f 165/165/165 166/166/166 162/162/162 +f 161/161/161 162/162/162 166/166/166 +f 165/165/165 167/167/167 166/166/166 +f 167/167/167 168/168/168 166/166/166 +f 166/166/166 168/168/168 161/161/161 +f 168/168/168 167/167/167 169/169/169 +f 161/161/161 170/170/170 160/160/160 +f 168/168/168 170/170/170 161/161/161 +f 160/160/160 171/171/171 139/139/139 +f 170/170/170 171/171/171 160/160/160 +f 172/172/172 168/168/168 169/169/169 +f 168/168/168 172/172/172 170/170/170 +f 173/173/173 172/172/172 169/169/169 +f 174/174/174 173/173/173 169/169/169 +f 172/172/172 173/173/173 175/175/175 +f 172/172/172 176/176/176 170/170/170 +f 176/176/176 172/172/172 175/175/175 +f 170/170/170 176/176/176 171/171/171 +f 175/175/175 177/177/177 176/176/176 +f 171/171/171 178/178/178 139/139/139 +f 178/178/178 109/109/109 139/139/139 +f 110/110/110 109/109/109 178/178/178 +f 176/176/176 179/179/179 171/171/171 +f 176/176/176 177/177/177 179/179/179 +f 171/171/171 179/179/179 178/178/178 +f 180/180/180 110/110/110 178/178/178 +f 179/179/179 180/180/180 178/178/178 +f 177/177/177 181/181/181 179/179/179 +f 181/181/181 177/177/177 182/182/182 +f 181/181/181 182/182/182 183/183/183 +f 182/182/182 184/184/184 183/183/183 +f 184/184/184 185/185/185 183/183/183 +f 185/185/185 186/186/186 183/183/183 +f 186/186/186 187/187/187 183/183/183 +f 188/188/188 180/180/180 179/179/179 +f 181/181/181 188/188/188 179/179/179 +f 180/180/180 188/188/188 110/110/110 +f 188/188/188 181/181/181 183/183/183 +f 187/187/187 189/189/189 183/183/183 +f 189/189/189 188/188/188 183/183/183 +f 188/188/188 189/189/189 110/110/110 +f 102/102/102 189/189/189 187/187/187 +f 189/189/189 102/102/102 110/110/110 +f 192/192/192 191/191/191 190/190/190 +f 193/193/193 192/192/192 190/190/190 +f 190/190/190 194/194/194 193/193/193 +f 192/192/192 193/193/193 195/195/195 +f 194/194/194 196/196/196 193/193/193 +f 196/196/196 194/194/194 197/197/197 +f 194/194/194 198/198/198 197/197/197 +f 197/197/197 198/198/198 199/199/199 +f 198/198/198 200/200/200 199/199/199 +f 199/199/199 200/200/200 201/201/201 +f 196/196/196 202/202/202 193/193/193 +f 202/202/202 196/196/196 197/197/197 +f 193/193/193 203/203/203 195/195/195 +f 202/202/202 203/203/203 193/193/193 +f 195/195/195 203/203/203 204/204/204 +f 204/204/204 203/203/203 202/202/202 +f 205/205/205 195/195/195 204/204/204 +f 205/205/205 204/204/204 206/206/206 +f 207/207/207 202/202/202 197/197/197 +f 207/207/207 204/204/204 202/202/202 +f 204/204/204 208/208/208 206/206/206 +f 209/209/209 206/206/206 208/208/208 +f 210/210/210 209/209/209 208/208/208 +f 211/211/211 208/208/208 204/204/204 +f 210/210/210 208/208/208 211/211/211 +f 207/207/207 211/211/211 204/204/204 +f 212/212/212 210/210/210 211/211/211 +f 212/212/212 211/211/211 213/213/213 +f 213/213/213 211/211/211 207/207/207 +f 214/214/214 212/212/212 213/213/213 +f 214/214/214 213/213/213 215/215/215 +f 216/216/216 214/214/214 215/215/215 +f 217/217/217 216/216/216 215/215/215 +f 218/218/218 207/207/207 197/197/197 +f 218/218/218 213/213/213 207/207/207 +f 215/215/215 213/213/213 218/218/218 +f 218/218/218 197/197/197 199/199/199 +f 219/219/219 217/217/217 215/215/215 +f 220/220/220 217/217/217 219/219/219 +f 221/221/221 220/220/220 219/219/219 +f 222/222/222 221/221/221 219/219/219 +f 219/219/219 215/215/215 223/223/223 +f 223/223/223 222/222/222 219/219/219 +f 224/224/224 215/215/215 218/218/218 +f 215/215/215 224/224/224 223/223/223 +f 222/222/222 223/223/223 225/225/225 +f 226/226/226 222/222/222 225/225/225 +f 227/227/227 224/224/224 218/218/218 +f 199/199/199 227/227/227 218/218/218 +f 223/223/223 224/224/224 228/228/228 +f 225/225/225 223/223/223 228/228/228 +f 228/228/228 224/224/224 227/227/227 +f 225/225/225 229/229/229 226/226/226 +f 229/229/229 230/230/230 226/226/226 +f 230/230/230 229/229/229 231/231/231 +f 232/232/232 229/229/229 225/225/225 +f 228/228/228 232/232/232 225/225/225 +f 229/229/229 233/233/233 231/231/231 +f 229/229/229 232/232/232 233/233/233 +f 233/233/233 234/234/234 231/231/231 +f 234/234/234 235/235/235 231/231/231 +f 236/236/236 234/234/234 233/233/233 +f 237/237/237 236/236/236 233/233/233 +f 232/232/232 237/237/237 233/233/233 +f 237/237/237 238/238/238 236/236/236 +f 237/237/237 239/239/239 238/238/238 +f 237/237/237 240/240/240 239/239/239 +f 240/240/240 237/237/237 232/232/232 +f 241/241/241 239/239/239 240/240/240 +f 242/242/242 232/232/232 228/228/228 +f 242/242/242 240/240/240 232/232/232 +f 240/240/240 243/243/243 241/241/241 +f 243/243/243 240/240/240 242/242/242 +f 243/243/243 244/244/244 241/241/241 +f 245/245/245 244/244/244 243/243/243 +f 246/246/246 242/242/242 228/228/228 +f 246/246/246 228/228/228 227/227/227 +f 247/247/247 245/245/245 243/243/243 +f 247/247/247 248/248/248 245/245/245 +f 249/249/249 243/243/243 242/242/242 +f 249/249/249 242/242/242 246/246/246 +f 247/247/247 243/243/243 249/249/249 +f 227/227/227 250/250/250 246/246/246 +f 250/250/250 227/227/227 199/199/199 +f 248/248/248 247/247/247 251/251/251 +f 252/252/252 248/248/248 251/251/251 +f 252/252/252 251/251/251 253/253/253 +f 254/254/254 249/249/249 246/246/246 +f 250/250/250 254/254/254 246/246/246 +f 254/254/254 255/255/255 249/249/249 +f 254/254/254 250/250/250 255/255/255 +f 256/256/256 247/247/247 249/249/249 +f 251/251/251 247/247/247 256/256/256 +f 255/255/255 256/256/256 249/249/249 +f 257/257/257 250/250/250 199/199/199 +f 257/257/257 199/199/199 201/201/201 +f 251/251/251 258/258/258 253/253/253 +f 259/259/259 253/253/253 258/258/258 +f 260/260/260 251/251/251 256/256/256 +f 260/260/260 256/256/256 255/255/255 +f 258/258/258 251/251/251 260/260/260 +f 261/261/261 250/250/250 257/257/257 +f 250/250/250 261/261/261 255/255/255 +f 257/257/257 201/201/201 262/262/262 +f 262/262/262 261/261/261 257/257/257 +f 201/201/201 263/263/263 262/262/262 +f 263/263/263 264/264/264 262/262/262 +f 259/259/259 258/258/258 265/265/265 +f 266/266/266 259/259/259 265/265/265 +f 265/265/265 258/258/258 267/267/267 +f 267/267/267 258/258/258 260/260/260 +f 268/268/268 265/265/265 267/267/267 +f 269/269/269 260/260/260 255/255/255 +f 267/267/267 260/260/260 269/269/269 +f 268/268/268 267/267/267 270/270/270 +f 270/270/270 267/267/267 269/269/269 +f 271/271/271 268/268/268 270/270/270 +f 271/271/271 270/270/270 272/272/272 +f 264/264/264 273/273/273 262/262/262 +f 264/264/264 274/274/274 273/273/273 +f 269/269/269 255/255/255 275/275/275 +f 255/255/255 261/261/261 275/275/275 +f 270/270/270 269/269/269 276/276/276 +f 270/270/270 276/276/276 272/272/272 +f 269/269/269 275/275/275 276/276/276 +f 277/277/277 276/276/276 275/275/275 +f 262/262/262 278/278/278 261/261/261 +f 278/278/278 275/275/275 261/261/261 +f 273/273/273 278/278/278 262/262/262 +f 277/277/277 275/275/275 278/278/278 +f 272/272/272 276/276/276 279/279/279 +f 279/279/279 276/276/276 277/277/277 +f 280/280/280 272/272/272 279/279/279 +f 280/280/280 279/279/279 281/281/281 +f 279/279/279 282/282/282 281/281/281 +f 282/282/282 279/279/279 277/277/277 +f 283/283/283 282/282/282 277/277/277 +f 283/283/283 277/277/277 284/284/284 +f 277/277/277 285/285/285 284/284/284 +f 285/285/285 277/277/277 278/278/278 +f 284/284/284 285/285/285 286/286/286 +f 285/285/285 278/278/278 287/287/287 +f 273/273/273 287/287/287 278/278/278 +f 285/285/285 288/288/288 286/286/286 +f 288/288/288 285/285/285 287/287/287 +f 286/286/286 288/288/288 289/289/289 +f 288/288/288 290/290/290 289/289/289 +f 289/289/289 290/290/290 291/291/291 +f 290/290/290 292/292/292 291/291/291 +f 290/290/290 288/288/288 293/293/293 +f 292/292/292 290/290/290 293/293/293 +f 288/288/288 287/287/287 293/293/293 +f 294/294/294 292/292/292 293/293/293 +f 295/295/295 287/287/287 273/273/273 +f 293/293/293 287/287/287 295/295/295 +f 294/294/294 293/293/293 296/296/296 +f 296/296/296 293/293/293 295/295/295 +f 297/297/297 294/294/294 296/296/296 +f 297/297/297 296/296/296 298/298/298 +f 296/296/296 295/295/295 298/298/298 +f 299/299/299 297/297/297 298/298/298 +f 300/300/300 295/295/295 273/273/273 +f 295/295/295 300/300/300 298/298/298 +f 274/274/274 300/300/300 273/273/273 +f 300/300/300 274/274/274 298/298/298 +f 274/274/274 301/301/301 298/298/298 +f 299/299/299 298/298/298 301/301/301 +f 302/302/302 299/299/299 301/301/301 +f 305/305/305 304/304/304 303/303/303 +f 306/306/306 305/305/305 303/303/303 +f 307/307/307 305/305/305 306/306/306 +f 308/308/308 307/307/307 306/306/306 +f 308/308/308 309/309/309 307/307/307 +f 309/309/309 310/310/310 307/307/307 +f 313/313/313 312/312/312 311/311/311 +f 314/314/314 313/313/313 311/311/311 +f 313/313/313 314/314/314 315/315/315 +f 314/314/314 316/316/316 315/315/315 +f 316/316/316 317/317/317 315/315/315 +f 317/317/317 318/318/318 315/315/315 +f 319/319/319 318/318/318 317/317/317 +f 319/319/319 320/320/320 318/318/318 +f 320/320/320 321/321/321 318/318/318 +f 322/322/322 318/318/318 321/321/321 +f 325/325/325 324/324/324 323/323/323 +f 325/325/325 326/326/326 324/324/324 +f 326/326/326 327/327/327 324/324/324 +f 326/326/326 328/328/328 327/327/327 +f 328/328/328 329/329/329 327/327/327 +f 328/328/328 330/330/330 329/329/329 +f 330/330/330 331/331/331 329/329/329 +f 330/330/330 332/332/332 331/331/331 +f 332/332/332 333/333/333 331/331/331 +f 334/334/334 331/331/331 333/333/333 +f 335/335/335 334/334/334 333/333/333 +f 338/338/338 337/337/337 336/336/336 +f 339/339/339 338/338/338 336/336/336 +f 340/340/340 338/338/338 339/339/339 +f 341/341/341 340/340/340 339/339/339 +f 342/342/342 339/339/339 336/336/336 +f 342/342/342 341/341/341 339/339/339 +f 343/343/343 342/342/342 336/336/336 +f 341/341/341 342/342/342 344/344/344 +f 344/344/344 342/342/342 343/343/343 +f 345/345/345 344/344/344 343/343/343 +f 346/346/346 341/341/341 344/344/344 +f 344/344/344 345/345/345 347/347/347 +f 346/346/346 344/344/344 347/347/347 +f 345/345/345 348/348/348 347/347/347 +f 347/347/347 348/348/348 349/349/349 +f 346/346/346 347/347/347 350/350/350 +f 350/350/350 347/347/347 349/349/349 +f 351/351/351 346/346/346 350/350/350 +f 350/350/350 349/349/349 352/352/352 +f 350/350/350 352/352/352 351/351/351 +f 352/352/352 353/353/353 351/351/351 +f 352/352/352 354/354/354 353/353/353 +f 355/355/355 354/354/354 352/352/352 +f 356/356/356 355/355/355 352/352/352 +f 355/355/355 357/357/357 354/354/354 +f 357/357/357 358/358/358 354/354/354 +f 354/354/354 359/359/359 353/353/353 +f 359/359/359 354/354/354 358/358/358 +f 360/360/360 359/359/359 358/358/358 +f 359/359/359 361/361/361 353/353/353 +f 359/359/359 360/360/360 362/362/362 +f 361/361/361 359/359/359 363/363/363 +f 363/363/363 359/359/359 362/362/362 +f 364/364/364 361/361/361 363/363/363 +f 363/363/363 362/362/362 365/365/365 +f 364/364/364 363/363/363 366/366/366 +f 366/366/366 363/363/363 365/365/365 +f 367/367/367 364/364/364 366/366/366 +f 366/366/366 365/365/365 368/368/368 +f 366/366/366 368/368/368 367/367/367 +f 368/368/368 369/369/369 367/367/367 +f 369/369/369 370/370/370 367/367/367 +f 368/368/368 371/371/371 369/369/369 +f 369/369/369 371/371/371 372/372/372 +f 369/369/369 372/372/372 373/373/373 +f 369/369/369 373/373/373 374/374/374 +f 375/375/375 370/370/370 369/369/369 +f 374/374/374 376/376/376 369/369/369 +f 377/377/377 375/375/375 369/369/369 +f 376/376/376 377/377/377 369/369/369 +f 378/378/378 375/375/375 377/377/377 +f 376/376/376 379/379/379 377/377/377 +f 380/380/380 378/378/378 377/377/377 +f 379/379/379 380/380/380 377/377/377 +f 378/378/378 380/380/380 381/381/381 +f 380/380/380 379/379/379 382/382/382 +f 380/380/380 383/383/383 381/381/381 +f 383/383/383 380/380/380 382/382/382 +f 386/386/386 385/385/385 384/384/384 +f 386/386/386 384/384/384 387/387/387 +f 384/384/384 388/388/388 387/387/387 +f 387/387/387 388/388/388 389/389/389 +f 388/388/388 390/390/390 389/389/389 +f 391/391/391 389/389/389 390/390/390 +f 392/392/392 391/391/391 390/390/390 +f 391/391/391 392/392/392 393/393/393 +f 394/394/394 391/391/391 393/393/393 +f 394/394/394 393/393/393 395/395/395 +f 396/396/396 394/394/394 395/395/395 +f 396/396/396 395/395/395 397/397/397 +f 398/398/398 396/396/396 397/397/397 +f 397/397/397 399/399/399 398/398/398 +f 399/399/399 400/400/400 398/398/398 +f 400/400/400 399/399/399 401/401/401 +f 399/399/399 402/402/402 401/401/401 +f 401/401/401 402/402/402 403/403/403 +f 404/404/404 401/401/401 403/403/403 +f 404/404/404 403/403/403 405/405/405 +f 406/406/406 404/404/404 405/405/405 +f 406/406/406 405/405/405 407/407/407 +f 408/408/408 406/406/406 407/407/407 +f 407/407/407 409/409/409 408/408/408 +f 409/409/409 410/410/410 408/408/408 +f 411/411/411 410/410/410 409/409/409 +f 412/412/412 411/411/411 409/409/409 +f 411/411/411 412/412/412 413/413/413 +f 414/414/414 411/411/411 413/413/413 +f 414/414/414 413/413/413 415/415/415 +f 418/418/418 417/417/417 416/416/416 +f 419/419/419 418/418/418 416/416/416 +f 418/418/418 419/419/419 420/420/420 +f 420/420/420 419/419/419 421/421/421 +f 419/419/419 422/422/422 421/421/421 +f 423/423/423 421/421/421 422/422/422 +f 424/424/424 423/423/423 422/422/422 +f 425/425/425 423/423/423 424/424/424 +f 426/426/426 425/425/425 424/424/424 +f 427/427/427 425/425/425 426/426/426 +f 428/428/428 427/427/427 426/426/426 +f 429/429/429 427/427/427 428/428/428 +f 430/430/430 429/429/429 428/428/428 +f 431/431/431 429/429/429 430/430/430 +f 432/432/432 431/431/431 430/430/430 +f 433/433/433 431/431/431 432/432/432 +f 434/434/434 433/433/433 432/432/432 +f 435/435/435 433/433/433 434/434/434 +f 436/436/436 435/435/435 434/434/434 +f 437/437/437 435/435/435 436/436/436 +f 438/438/438 437/437/437 436/436/436 +f 439/439/439 437/437/437 438/438/438 +f 440/440/440 439/439/439 438/438/438 +f 441/441/441 439/439/439 440/440/440 +f 442/442/442 441/441/441 440/440/440 +f 443/443/443 441/441/441 442/442/442 +f 444/444/444 443/443/443 442/442/442 +f 445/445/445 443/443/443 444/444/444 +f 445/445/445 444/444/444 446/446/446 +f 444/444/444 447/447/447 446/446/446 +f 450/450/450 449/449/449 448/448/448 +f 449/449/449 451/451/451 448/448/448 +f 451/451/451 449/449/449 452/452/452 +f 451/451/451 452/452/452 453/453/453 +f 452/452/452 454/454/454 453/453/453 +f 453/453/453 454/454/454 455/455/455 +f 456/456/456 453/453/453 455/455/455 +f 456/456/456 455/455/455 457/457/457 +f 458/458/458 456/456/456 457/457/457 +f 458/458/458 457/457/457 459/459/459 +f 460/460/460 458/458/458 459/459/459 +f 459/459/459 461/461/461 460/460/460 +f 461/461/461 462/462/462 460/460/460 +f 462/462/462 461/461/461 463/463/463 +f 461/461/461 464/464/464 463/463/463 +f 464/464/464 465/465/465 463/463/463 +f 465/465/465 466/466/466 463/463/463 +f 466/466/466 465/465/465 467/467/467 +f 468/468/468 466/466/466 467/467/467 +f 468/468/468 467/467/467 469/469/469 +f 470/470/470 468/468/468 469/469/469 +f 470/470/470 469/469/469 471/471/471 +f 472/472/472 470/470/470 471/471/471 +f 472/472/472 471/471/471 473/473/473 +f 474/474/474 472/472/472 473/473/473 +f 475/475/475 474/474/474 473/473/473 +f 476/476/476 474/474/474 475/475/475 +f 477/477/477 476/476/476 475/475/475 +f 476/476/476 477/477/477 478/478/478 +f 477/477/477 479/479/479 478/478/478 +f 482/482/482 481/481/481 480/480/480 +f 481/481/481 482/482/482 483/483/483 +f 484/484/484 481/481/481 483/483/483 +f 485/485/485 484/484/484 483/483/483 +f 486/486/486 485/485/485 483/483/483 +f 485/485/485 486/486/486 487/487/487 +f 488/488/488 485/485/485 487/487/487 +f 488/488/488 487/487/487 489/489/489 +f 490/490/490 488/488/488 489/489/489 +f 490/490/490 489/489/489 491/491/491 +f 492/492/492 490/490/490 491/491/491 +f 492/492/492 491/491/491 493/493/493 +f 494/494/494 492/492/492 493/493/493 +f 494/494/494 493/493/493 495/495/495 +f 496/496/496 494/494/494 495/495/495 +f 496/496/496 495/495/495 497/497/497 +f 498/498/498 496/496/496 497/497/497 +f 498/498/498 497/497/497 499/499/499 +f 500/500/500 498/498/498 499/499/499 +f 500/500/500 499/499/499 501/501/501 +f 502/502/502 500/500/500 501/501/501 +f 501/501/501 503/503/503 502/502/502 +f 503/503/503 504/504/504 502/502/502 +f 504/504/504 503/503/503 505/505/505 +f 506/506/506 504/504/504 505/505/505 +f 505/505/505 507/507/507 506/506/506 +f 510/510/510 509/509/509 508/508/508 +f 511/511/511 510/510/510 508/508/508 +f 508/508/508 512/512/512 511/511/511 +f 508/508/508 513/513/513 512/512/512 +f 511/511/511 514/514/514 510/510/510 +f 514/514/514 515/515/515 510/510/510 +f 515/515/515 514/514/514 516/516/516 +f 512/512/512 513/513/513 517/517/517 +f 513/513/513 518/518/518 517/517/517 +f 517/517/517 518/518/518 519/519/519 +f 518/518/518 520/520/520 519/519/519 +f 520/520/520 521/521/521 519/519/519 +f 521/521/521 522/522/522 519/519/519 +f 519/519/519 522/522/522 523/523/523 +f 524/524/524 519/519/519 523/523/523 +f 517/517/517 519/519/519 524/524/524 +f 524/524/524 523/523/523 525/525/525 +f 517/517/517 526/526/526 512/512/512 +f 526/526/526 517/517/517 524/524/524 +f 527/527/527 524/524/524 525/525/525 +f 526/526/526 524/524/524 527/527/527 +f 527/527/527 525/525/525 528/528/528 +f 529/529/529 527/527/527 528/528/528 +f 530/530/530 527/527/527 529/529/529 +f 530/530/530 526/526/526 527/527/527 +f 531/531/531 530/530/530 529/529/529 +f 526/526/526 532/532/532 512/512/512 +f 526/526/526 530/530/530 532/532/532 +f 512/512/512 532/532/532 511/511/511 +f 530/530/530 531/531/531 533/533/533 +f 530/530/530 533/533/533 532/532/532 +f 531/531/531 534/534/534 533/533/533 +f 532/532/532 535/535/535 511/511/511 +f 532/532/532 533/533/533 535/535/535 +f 511/511/511 535/535/535 514/514/514 +f 533/533/533 534/534/534 536/536/536 +f 533/533/533 536/536/536 535/535/535 +f 534/534/534 537/537/537 536/536/536 +f 535/535/535 538/538/538 514/514/514 +f 535/535/535 536/536/536 538/538/538 +f 536/536/536 537/537/537 539/539/539 +f 536/536/536 539/539/539 538/538/538 +f 537/537/537 540/540/540 539/539/539 +f 541/541/541 514/514/514 538/538/538 +f 514/514/514 541/541/541 516/516/516 +f 542/542/542 539/539/539 540/540/540 +f 543/543/543 542/542/542 540/540/540 +f 544/544/544 538/538/538 539/539/539 +f 544/544/544 541/541/541 538/538/538 +f 542/542/542 544/544/544 539/539/539 +f 516/516/516 541/541/541 545/545/545 +f 545/545/545 541/541/541 544/544/544 +f 546/546/546 516/516/516 545/545/545 +f 547/547/547 542/542/542 543/543/543 +f 548/548/548 547/547/547 543/543/543 +f 549/549/549 544/544/544 542/542/542 +f 549/549/549 545/545/545 544/544/544 +f 547/547/547 549/549/549 542/542/542 +f 545/545/545 550/550/550 546/546/546 +f 550/550/550 551/551/551 546/546/546 +f 551/551/551 550/550/550 552/552/552 +f 550/550/550 553/553/553 552/552/552 +f 545/545/545 549/549/549 554/554/554 +f 554/554/554 549/549/549 547/547/547 +f 550/550/550 545/545/545 554/554/554 +f 555/555/555 547/547/547 548/548/548 +f 555/555/555 554/554/554 547/547/547 +f 556/556/556 555/555/555 548/548/548 +f 554/554/554 557/557/557 550/550/550 +f 557/557/557 553/553/553 550/550/550 +f 554/554/554 555/555/555 557/557/557 +f 553/553/553 557/557/557 558/558/558 +f 553/553/553 558/558/558 559/559/559 +f 558/558/558 560/560/560 559/559/559 +f 555/555/555 556/556/556 561/561/561 +f 555/555/555 561/561/561 557/557/557 +f 556/556/556 562/562/562 561/561/561 +f 558/558/558 563/563/563 560/560/560 +f 563/563/563 564/564/564 560/560/560 +f 565/565/565 563/563/563 558/558/558 +f 566/566/566 565/565/565 558/558/558 +f 557/557/557 567/567/567 558/558/558 +f 557/557/557 561/561/561 567/567/567 +f 567/567/567 566/566/566 558/558/558 +f 561/561/561 562/562/562 568/568/568 +f 561/561/561 568/568/568 567/567/567 +f 567/567/567 568/568/568 566/566/566 +f 562/562/562 569/569/569 568/568/568 +f 568/568/568 570/570/570 566/566/566 +f 568/568/568 569/569/569 570/570/570 +f 569/569/569 571/571/571 570/570/570 +f 574/574/574 573/573/573 572/572/572 +f 572/572/572 573/573/573 575/575/575 +f 573/573/573 576/576/576 575/575/575 +f 575/575/575 576/576/576 577/577/577 +f 578/578/578 575/575/575 577/577/577 +f 578/578/578 577/577/577 579/579/579 +f 580/580/580 578/578/578 579/579/579 +f 580/580/580 579/579/579 581/581/581 +f 579/579/579 582/582/582 581/581/581 +f 581/581/581 582/582/582 583/583/583 +f 582/582/582 584/584/584 583/583/583 +f 583/583/583 584/584/584 585/585/585 +f 584/584/584 586/586/586 585/585/585 +f 587/587/587 585/585/585 586/586/586 +f 588/588/588 587/587/587 586/586/586 +f 587/587/587 588/588/588 589/589/589 +f 590/590/590 587/587/587 589/589/589 +f 590/590/590 589/589/589 591/591/591 +f 589/589/589 592/592/592 591/591/591 +f 591/591/591 592/592/592 593/593/593 +f 592/592/592 594/594/594 593/593/593 +f 593/593/593 594/594/594 595/595/595 +f 594/594/594 596/596/596 595/595/595 +f 597/597/597 595/595/595 596/596/596 +f 598/598/598 597/597/597 596/596/596 +f 597/597/597 598/598/598 599/599/599 +f 600/600/600 597/597/597 599/599/599 +f 601/601/601 600/600/600 599/599/599 +f 602/602/602 601/601/601 599/599/599 +f 601/601/601 602/602/602 603/603/603 +f 606/606/606 605/605/605 604/604/604 +f 607/607/607 606/606/606 604/604/604 +f 608/608/608 607/607/607 604/604/604 +f 608/608/608 609/609/609 607/607/607 +f 608/608/608 610/610/610 609/609/609 +f 610/610/610 611/611/611 609/609/609 +f 611/611/611 612/612/612 609/609/609 +f 611/611/611 613/613/613 612/612/612 +f 613/613/613 614/614/614 612/612/612 +f 613/613/613 615/615/615 614/614/614 +f 615/615/615 616/616/616 614/614/614 +f 615/615/615 617/617/617 616/616/616 +f 617/617/617 618/618/618 616/616/616 +f 617/617/617 619/619/619 618/618/618 +f 619/619/619 620/620/620 618/618/618 +f 619/619/619 621/621/621 620/620/620 +f 621/621/621 622/622/622 620/620/620 +f 621/621/621 623/623/623 622/622/622 +f 623/623/623 624/624/624 622/622/622 +f 623/623/623 625/625/625 624/624/624 +f 625/625/625 626/626/626 624/624/624 +f 625/625/625 627/627/627 626/626/626 +f 627/627/627 628/628/628 626/626/626 +f 627/627/627 629/629/629 628/628/628 +f 629/629/629 630/630/630 628/628/628 +f 630/630/630 629/629/629 631/631/631 +f 629/629/629 632/632/632 631/631/631 +f 632/632/632 633/633/633 631/631/631 +f 631/631/631 633/633/633 634/634/634 +f 633/633/633 635/635/635 634/634/634 +f 638/638/638 637/637/637 636/636/636 +f 637/637/637 639/639/639 636/636/636 +f 636/636/636 639/639/639 640/640/640 +f 639/639/639 641/641/641 640/640/640 +f 641/641/641 642/642/642 640/640/640 +f 642/642/642 641/641/641 643/643/643 +f 641/641/641 644/644/644 643/643/643 +f 643/643/643 644/644/644 645/645/645 +f 644/644/644 646/646/646 645/645/645 +f 645/645/645 646/646/646 647/647/647 +f 646/646/646 648/648/648 647/647/647 +f 649/649/649 647/647/647 648/648/648 +f 650/650/650 649/649/649 648/648/648 +f 650/650/650 651/651/651 649/649/649 +f 651/651/651 652/652/652 649/649/649 +f 653/653/653 652/652/652 651/651/651 +f 654/654/654 653/653/653 651/651/651 +f 653/653/653 654/654/654 655/655/655 +f 654/654/654 656/656/656 655/655/655 +f 655/655/655 656/656/656 657/657/657 +f 656/656/656 658/658/658 657/657/657 +f 657/657/657 658/658/658 659/659/659 +f 658/658/658 660/660/660 659/659/659 +f 659/659/659 660/660/660 661/661/661 +f 660/660/660 662/662/662 661/661/661 +f 663/663/663 661/661/661 662/662/662 +f 663/663/663 662/662/662 664/664/664 +f 662/662/662 665/665/665 664/664/664 +f 665/665/665 666/666/666 664/664/664 +f 666/666/666 667/667/667 664/664/664 +f 670/670/670 669/669/669 668/668/668 +f 671/671/671 669/669/669 670/670/670 +f 672/672/672 671/671/671 670/670/670 +f 671/671/671 672/672/672 673/673/673 +f 674/674/674 671/671/671 673/673/673 +f 674/674/674 673/673/673 675/675/675 +f 673/673/673 676/676/676 675/675/675 +f 675/675/675 676/676/676 677/677/677 +f 676/676/676 678/678/678 677/677/677 +f 677/677/677 678/678/678 679/679/679 +f 678/678/678 680/680/680 679/679/679 +f 679/679/679 680/680/680 681/681/681 +f 680/680/680 682/682/682 681/681/681 +f 681/681/681 682/682/682 683/683/683 +f 682/682/682 684/684/684 683/683/683 +f 683/683/683 684/684/684 685/685/685 +f 684/684/684 686/686/686 685/685/685 +f 685/685/685 686/686/686 687/687/687 +f 686/686/686 688/688/688 687/687/687 +f 687/687/687 688/688/688 689/689/689 +f 688/688/688 690/690/690 689/689/689 +f 691/691/691 689/689/689 690/690/690 +f 692/692/692 691/691/691 690/690/690 +f 693/693/693 691/691/691 692/692/692 +f 694/694/694 693/693/693 692/692/692 +f 695/695/695 693/693/693 694/694/694 +f 698/698/698 697/697/697 696/696/696 +f 697/697/697 699/699/699 696/696/696 +f 700/700/700 696/696/696 699/699/699 +f 701/701/701 696/696/696 700/700/700 +f 702/702/702 699/699/699 697/697/697 +f 703/703/703 702/702/702 697/697/697 +f 702/702/702 703/703/703 704/704/704 +f 701/701/701 700/700/700 705/705/705 +f 706/706/706 701/701/701 705/705/705 +f 706/706/706 705/705/705 707/707/707 +f 708/708/708 706/706/706 707/707/707 +f 709/709/709 708/708/708 707/707/707 +f 710/710/710 709/709/709 707/707/707 +f 710/710/710 707/707/707 711/711/711 +f 707/707/707 712/712/712 711/711/711 +f 707/707/707 705/705/705 712/712/712 +f 711/711/711 712/712/712 713/713/713 +f 714/714/714 705/705/705 700/700/700 +f 705/705/705 714/714/714 712/712/712 +f 712/712/712 715/715/715 713/713/713 +f 712/712/712 714/714/714 715/715/715 +f 713/713/713 715/715/715 716/716/716 +f 715/715/715 717/717/717 716/716/716 +f 715/715/715 718/718/718 717/717/717 +f 714/714/714 718/718/718 715/715/715 +f 718/718/718 719/719/719 717/717/717 +f 720/720/720 714/714/714 700/700/700 +f 718/718/718 714/714/714 720/720/720 +f 720/720/720 700/700/700 699/699/699 +f 719/719/719 718/718/718 721/721/721 +f 721/721/721 718/718/718 720/720/720 +f 722/722/722 719/719/719 721/721/721 +f 723/723/723 720/720/720 699/699/699 +f 721/721/721 720/720/720 723/723/723 +f 723/723/723 699/699/699 702/702/702 +f 722/722/722 721/721/721 724/724/724 +f 724/724/724 721/721/721 723/723/723 +f 725/725/725 722/722/722 724/724/724 +f 726/726/726 723/723/723 702/702/702 +f 724/724/724 723/723/723 726/726/726 +f 725/725/725 724/724/724 727/727/727 +f 727/727/727 724/724/724 726/726/726 +f 728/728/728 725/725/725 727/727/727 +f 702/702/702 729/729/729 726/726/726 +f 729/729/729 702/702/702 704/704/704 +f 727/727/727 730/730/730 728/728/728 +f 730/730/730 731/731/731 728/728/728 +f 726/726/726 732/732/732 727/727/727 +f 729/729/729 732/732/732 726/726/726 +f 732/732/732 730/730/730 727/727/727 +f 729/729/729 704/704/704 733/733/733 +f 729/729/729 733/733/733 732/732/732 +f 704/704/704 734/734/734 733/733/733 +f 730/730/730 735/735/735 731/731/731 +f 735/735/735 736/736/736 731/731/731 +f 732/732/732 737/737/737 730/730/730 +f 733/733/733 737/737/737 732/732/732 +f 737/737/737 735/735/735 730/730/730 +f 738/738/738 733/733/733 734/734/734 +f 739/739/739 738/738/738 734/734/734 +f 738/738/738 739/739/739 740/740/740 +f 741/741/741 738/738/738 740/740/740 +f 737/737/737 733/733/733 742/742/742 +f 737/737/737 742/742/742 735/735/735 +f 733/733/733 738/738/738 742/742/742 +f 735/735/735 743/743/743 736/736/736 +f 742/742/742 743/743/743 735/735/735 +f 743/743/743 744/744/744 736/736/736 +f 745/745/745 742/742/742 738/738/738 +f 741/741/741 745/745/745 738/738/738 +f 743/743/743 742/742/742 745/745/745 +f 745/745/745 741/741/741 746/746/746 +f 746/746/746 741/741/741 747/747/747 +f 748/748/748 746/746/746 747/747/747 +f 744/744/744 743/743/743 749/749/749 +f 749/749/749 743/743/743 745/745/745 +f 750/750/750 744/744/744 749/749/749 +f 751/751/751 746/746/746 748/748/748 +f 752/752/752 751/751/751 748/748/748 +f 751/751/751 753/753/753 746/746/746 +f 753/753/753 754/754/754 746/746/746 +f 755/755/755 745/745/745 746/746/746 +f 749/749/749 745/745/745 755/755/755 +f 754/754/754 755/755/755 746/746/746 +f 750/750/750 749/749/749 756/756/756 +f 756/756/756 749/749/749 755/755/755 +f 756/756/756 755/755/755 754/754/754 +f 757/757/757 750/750/750 756/756/756 +f 758/758/758 756/756/756 754/754/754 +f 757/757/757 756/756/756 758/758/758 +f 759/759/759 757/757/757 758/758/758 +f 762/762/762 761/761/761 760/760/760 +f 763/763/763 761/761/761 762/762/762 +f 763/763/763 764/764/764 761/761/761 +f 765/765/765 763/763/763 762/762/762 +f 764/764/764 766/766/766 761/761/761 +f 767/767/767 761/761/761 766/766/766 +f 761/761/761 767/767/767 768/768/768 +f 769/769/769 761/761/761 768/768/768 +f 770/770/770 769/769/769 768/768/768 +f 769/769/769 771/771/771 761/761/761 +f 771/771/771 772/772/772 761/761/761 +f 773/773/773 761/761/761 772/772/772 +f 776/776/776 775/775/775 774/774/774 +f 777/777/777 776/776/776 774/774/774 +f 777/777/777 774/774/774 778/778/778 +f 779/779/779 777/777/777 778/778/778 +f 780/780/780 779/779/779 778/778/778 +f 781/781/781 780/780/780 778/778/778 +f 781/781/781 782/782/782 780/780/780 +f 782/782/782 783/783/783 780/780/780 +f 783/783/783 782/782/782 784/784/784 +f 785/785/785 783/783/783 784/784/784 +f 785/785/785 784/784/784 786/786/786 +f 784/784/784 787/787/787 786/786/786 +f 786/786/786 787/787/787 788/788/788 +f 789/789/789 786/786/786 788/788/788 +f 789/789/789 788/788/788 790/790/790 +f 791/791/791 789/789/789 790/790/790 +f 792/792/792 791/791/791 790/790/790 +f 793/793/793 792/792/792 790/790/790 +f 793/793/793 794/794/794 792/792/792 +f 794/794/794 795/795/795 792/792/792 +f 795/795/795 794/794/794 796/796/796 +f 794/794/794 797/797/797 796/796/796 +f 796/796/796 797/797/797 798/798/798 +f 797/797/797 799/799/799 798/798/798 +f 802/802/802 801/801/801 800/800/800 +f 802/802/802 803/803/803 801/801/801 +f 803/803/803 804/804/804 801/801/801 +f 802/802/802 805/805/805 803/803/803 +f 805/805/805 806/806/806 803/803/803 +f 802/802/802 807/807/807 805/805/805 +f 807/807/807 802/802/802 808/808/808 +f 802/802/802 809/809/809 808/808/808 +f 809/809/809 810/810/810 808/808/808 +f 802/802/802 811/811/811 809/809/809 +f 811/811/811 812/812/812 809/809/809 +f 802/802/802 813/813/813 811/811/811 +f 816/816/816 815/815/815 814/814/814 +f 815/815/815 817/817/817 814/814/814 +f 814/814/814 817/817/817 818/818/818 +f 817/817/817 819/819/819 818/818/818 +f 819/819/819 820/820/820 818/818/818 +f 820/820/820 821/821/821 818/818/818 +f 822/822/822 821/821/821 820/820/820 +f 823/823/823 822/822/822 820/820/820 +f 822/822/822 823/823/823 824/824/824 +f 823/823/823 825/825/825 824/824/824 +f 824/824/824 825/825/825 826/826/826 +f 827/827/827 824/824/824 826/826/826 +f 827/827/827 826/826/826 828/828/828 +f 826/826/826 829/829/829 828/828/828 +f 828/828/828 829/829/829 830/830/830 +f 829/829/829 831/831/831 830/830/830 +f 831/831/831 832/832/832 830/830/830 +f 832/832/832 833/833/833 830/830/830 +f 834/834/834 833/833/833 832/832/832 +f 835/835/835 834/834/834 832/832/832 +f 834/834/834 835/835/835 836/836/836 +f 837/837/837 834/834/834 836/836/836 +f 837/837/837 836/836/836 838/838/838 +f 839/839/839 837/837/837 838/838/838 +f 842/842/842 841/841/841 840/840/840 +f 841/841/841 843/843/843 840/840/840 +f 846/846/846 845/845/845 844/844/844 +f 845/845/845 847/847/847 844/844/844 +f 847/847/847 848/848/848 844/844/844 +f 849/849/849 848/848/848 847/847/847 +f 847/847/847 850/850/850 849/849/849 +f 850/850/850 851/851/851 849/849/849 +f 850/850/850 852/852/852 851/851/851 +f 852/852/852 853/853/853 851/851/851 +f 854/854/854 853/853/853 852/852/852 +f 855/855/855 854/854/854 852/852/852 +f 856/856/856 854/854/854 855/855/855 +f 857/857/857 856/856/856 855/855/855 +f 858/858/858 856/856/856 857/857/857 +f 859/859/859 858/858/858 857/857/857 +f 860/860/860 859/859/859 857/857/857 +f 860/860/860 861/861/861 859/859/859 +f 849/849/849 862/862/862 848/848/848 +f 862/862/862 863/863/863 848/848/848 +f 863/863/863 864/864/864 848/848/848 +f 863/863/863 862/862/862 865/865/865 +f 862/862/862 866/866/866 865/865/865 +f 867/867/867 865/865/865 866/866/866 +f 870/870/870 869/869/869 868/868/868 +f 870/870/870 868/868/868 871/871/871 +f 868/868/868 872/872/872 871/871/871 +f 872/872/872 873/873/873 871/871/871 +f 871/871/871 873/873/873 874/874/874 +f 873/873/873 875/875/875 874/874/874 +f 874/874/874 875/875/875 876/876/876 +f 875/875/875 877/877/877 876/876/876 +f 877/877/877 878/878/878 876/876/876 +f 878/878/878 879/879/879 876/876/876 +f 878/878/878 880/880/880 879/879/879 +f 880/880/880 881/881/881 879/879/879 +f 880/880/880 882/882/882 881/881/881 +f 881/881/881 882/882/882 883/883/883 +f 884/884/884 881/881/881 883/883/883 +f 883/883/883 885/885/885 884/884/884 +f 886/886/886 873/873/873 872/872/872 +f 887/887/887 886/886/886 872/872/872 +f 888/888/888 887/887/887 872/872/872 +f 889/889/889 886/886/886 887/887/887 +f 890/890/890 886/886/886 889/889/889 +f 891/891/891 890/890/890 889/889/889 +f 894/894/894 893/893/893 892/892/892 +f 893/893/893 895/895/895 892/892/892 +f 896/896/896 892/892/892 895/895/895 +f 897/897/897 895/895/895 893/893/893 +f 898/898/898 897/897/897 893/893/893 +f 899/899/899 896/896/896 895/895/895 +f 896/896/896 899/899/899 900/900/900 +f 899/899/899 901/901/901 900/900/900 +f 902/902/902 900/900/900 901/901/901 +f 903/903/903 902/902/902 901/901/901 +f 904/904/904 899/899/899 895/895/895 +f 899/899/899 904/904/904 901/901/901 +f 903/903/903 901/901/901 905/905/905 +f 904/904/904 905/905/905 901/901/901 +f 906/906/906 903/903/903 905/905/905 +f 897/897/897 907/907/907 895/895/895 +f 907/907/907 904/904/904 895/895/895 +f 908/908/908 897/897/897 898/898/898 +f 909/909/909 908/908/908 898/898/898 +f 910/910/910 907/907/907 897/897/897 +f 908/908/908 910/910/910 897/897/897 +f 904/904/904 907/907/907 911/911/911 +f 910/910/910 911/911/911 907/907/907 +f 904/904/904 912/912/912 905/905/905 +f 912/912/912 904/904/904 911/911/911 +f 905/905/905 913/913/913 906/906/906 +f 912/912/912 913/913/913 905/905/905 +f 914/914/914 908/908/908 909/909/909 +f 915/915/915 914/914/914 909/909/909 +f 916/916/916 910/910/910 908/908/908 +f 910/910/910 916/916/916 911/911/911 +f 914/914/914 916/916/916 908/908/908 +f 912/912/912 911/911/911 917/917/917 +f 916/916/916 917/917/917 911/911/911 +f 918/918/918 914/914/914 915/915/915 +f 919/919/919 918/918/918 915/915/915 +f 920/920/920 916/916/916 914/914/914 +f 917/917/917 916/916/916 920/920/920 +f 918/918/918 920/920/920 914/914/914 +f 921/921/921 920/920/920 918/918/918 +f 922/922/922 918/918/918 919/919/919 +f 922/922/922 921/921/921 918/918/918 +f 923/923/923 922/922/922 919/919/919 +f 923/923/923 924/924/924 922/922/922 +f 924/924/924 925/925/925 922/922/922 +f 922/922/922 925/925/925 921/921/921 +f 924/924/924 926/926/926 925/925/925 +f 927/927/927 912/912/912 917/917/917 +f 912/912/912 927/927/927 913/913/913 +f 928/928/928 917/917/917 920/920/920 +f 928/928/928 920/920/920 921/921/921 +f 927/927/927 917/917/917 928/928/928 +f 926/926/926 929/929/929 925/925/925 +f 926/926/926 930/930/930 929/929/929 +f 925/925/925 931/931/931 921/921/921 +f 925/925/925 929/929/929 931/931/931 +f 930/930/930 932/932/932 929/929/929 +f 930/930/930 933/933/933 932/932/932 +f 929/929/929 934/934/934 931/931/931 +f 929/929/929 932/932/932 934/934/934 +f 933/933/933 935/935/935 932/932/932 +f 933/933/933 936/936/936 935/935/935 +f 932/932/932 937/937/937 934/934/934 +f 932/932/932 935/935/935 937/937/937 +f 936/936/936 938/938/938 935/935/935 +f 936/936/936 939/939/939 938/938/938 +f 935/935/935 940/940/940 937/937/937 +f 938/938/938 940/940/940 935/935/935 +f 937/937/937 941/941/941 934/934/934 +f 940/940/940 941/941/941 937/937/937 +f 934/934/934 942/942/942 931/931/931 +f 941/941/941 942/942/942 934/934/934 +f 931/931/931 943/943/943 921/921/921 +f 942/942/942 943/943/943 931/931/931 +f 940/940/940 944/944/944 941/941/941 +f 944/944/944 940/940/940 938/938/938 +f 939/939/939 945/945/945 938/938/938 +f 939/939/939 946/946/946 945/945/945 +f 942/942/942 941/941/941 947/947/947 +f 944/944/944 947/947/947 941/941/941 +f 943/943/943 948/948/948 921/921/921 +f 948/948/948 928/928/928 921/921/921 +f 943/943/943 942/942/942 949/949/949 +f 949/949/949 942/942/942 947/947/947 +f 950/950/950 938/938/938 945/945/945 +f 950/950/950 944/944/944 938/938/938 +f 946/946/946 951/951/951 945/945/945 +f 946/946/946 952/952/952 951/951/951 +f 953/953/953 928/928/928 948/948/948 +f 953/953/953 927/927/927 928/928/928 +f 948/948/948 943/943/943 954/954/954 +f 954/954/954 943/943/943 949/949/949 +f 955/955/955 950/950/950 945/945/945 +f 955/955/955 945/945/945 951/951/951 +f 952/952/952 956/956/956 951/951/951 +f 952/952/952 957/957/957 956/956/956 +f 958/958/958 955/955/955 951/951/951 +f 958/958/958 951/951/951 956/956/956 +f 950/950/950 955/955/955 959/959/959 +f 955/955/955 958/958/958 959/959/959 +f 957/957/957 960/960/960 956/956/956 +f 957/957/957 961/961/961 960/960/960 +f 962/962/962 953/953/953 948/948/948 +f 962/962/962 948/948/948 954/954/954 +f 963/963/963 950/950/950 959/959/959 +f 944/944/944 950/950/950 963/963/963 +f 964/964/964 958/958/958 956/956/956 +f 964/964/964 956/956/956 960/960/960 +f 961/961/961 965/965/965 960/960/960 +f 961/961/961 966/966/966 965/965/965 +f 967/967/967 964/964/964 960/960/960 +f 967/967/967 960/960/960 965/965/965 +f 958/958/958 964/964/964 968/968/968 +f 964/964/964 967/967/967 968/968/968 +f 966/966/966 969/969/969 965/965/965 +f 966/966/966 970/970/970 969/969/969 +f 971/971/971 967/967/967 965/965/965 +f 971/971/971 965/965/965 969/969/969 +f 970/970/970 972/972/972 969/969/969 +f 970/970/970 973/973/973 972/972/972 +f 974/974/974 958/958/958 968/968/968 +f 958/958/958 974/974/974 959/959/959 +f 967/967/967 975/975/975 968/968/968 +f 967/967/967 971/971/971 975/975/975 +f 976/976/976 971/971/971 969/969/969 +f 976/976/976 969/969/969 972/972/972 +f 973/973/973 977/977/977 972/972/972 +f 973/973/973 978/978/978 977/977/977 +f 971/971/971 979/979/979 975/975/975 +f 971/971/971 976/976/976 979/979/979 +f 980/980/980 976/976/976 972/972/972 +f 980/980/980 972/972/972 977/977/977 +f 978/978/978 981/981/981 977/977/977 +f 978/978/978 982/982/982 981/981/981 +f 976/976/976 983/983/983 979/979/979 +f 976/976/976 980/980/980 983/983/983 +f 984/984/984 980/980/980 977/977/977 +f 984/984/984 977/977/977 981/981/981 +f 982/982/982 985/985/985 981/981/981 +f 982/982/982 986/986/986 985/985/985 +f 980/980/980 987/987/987 983/983/983 +f 980/980/980 984/984/984 987/987/987 +f 988/988/988 984/984/984 981/981/981 +f 988/988/988 981/981/981 985/985/985 +f 986/986/986 989/989/989 985/985/985 +f 986/986/986 990/990/990 989/989/989 +f 984/984/984 991/991/991 987/987/987 +f 984/984/984 988/988/988 991/991/991 +f 987/987/987 992/992/992 983/983/983 +f 992/992/992 987/987/987 991/991/991 +f 992/992/992 993/993/993 983/983/983 +f 983/983/983 993/993/993 979/979/979 +f 993/993/993 994/994/994 979/979/979 +f 979/979/979 994/994/994 975/975/975 +f 994/994/994 995/995/995 975/975/975 +f 975/975/975 995/995/995 968/968/968 +f 995/995/995 996/996/996 968/968/968 +f 968/968/968 996/996/996 974/974/974 +f 996/996/996 997/997/997 974/974/974 +f 974/974/974 997/997/997 959/959/959 +f 997/997/997 998/998/998 959/959/959 +f 959/959/959 998/998/998 963/963/963 +f 999/999/999 992/992/992 991/991/991 +f 998/998/998 1000/1000/1000 963/963/963 +f 999/999/999 991/991/991 1001/1001/1001 +f 1002/1002/1002 999/999/999 1001/1001/1001 +f 988/988/988 1001/1001/1001 991/991/991 +f 963/963/963 1000/1000/1000 1003/1003/1003 +f 1003/1003/1003 944/944/944 963/963/963 +f 1000/1000/1000 1004/1004/1004 1003/1003/1003 +f 947/947/947 944/944/944 1003/1003/1003 +f 1002/1002/1002 1001/1001/1001 1005/1005/1005 +f 1005/1005/1005 1001/1001/1001 988/988/988 +f 1006/1006/1006 1002/1002/1002 1005/1005/1005 +f 1003/1003/1003 1004/1004/1004 1007/1007/1007 +f 1008/1008/1008 1007/1007/1007 1004/1004/1004 +f 1009/1009/1009 947/947/947 1003/1003/1003 +f 1009/1009/1009 1003/1003/1003 1007/1007/1007 +f 949/949/949 947/947/947 1009/1009/1009 +f 1010/1010/1010 949/949/949 1009/1009/1009 +f 1010/1010/1010 1009/1009/1009 1007/1007/1007 +f 954/954/954 949/949/949 1010/1010/1010 +f 1007/1007/1007 1008/1008/1008 1011/1011/1011 +f 1011/1011/1011 1010/1010/1010 1007/1007/1007 +f 1008/1008/1008 1012/1012/1012 1011/1011/1011 +f 1011/1011/1011 1012/1012/1012 1013/1013/1013 +f 1014/1014/1014 954/954/954 1010/1010/1010 +f 1014/1014/1014 1010/1010/1010 1011/1011/1011 +f 962/962/962 954/954/954 1014/1014/1014 +f 1015/1015/1015 1011/1011/1011 1013/1013/1013 +f 1015/1015/1015 1014/1014/1014 1011/1011/1011 +f 1016/1016/1016 962/962/962 1014/1014/1014 +f 1014/1014/1014 1015/1015/1015 1016/1016/1016 +f 953/953/953 962/962/962 1016/1016/1016 +f 1015/1015/1015 1013/1013/1013 1017/1017/1017 +f 1015/1015/1015 1017/1017/1017 1016/1016/1016 +f 1013/1013/1013 1018/1018/1018 1017/1017/1017 +f 1017/1017/1017 1018/1018/1018 1019/1019/1019 +f 1020/1020/1020 953/953/953 1016/1016/1016 +f 1020/1020/1020 1016/1016/1016 1017/1017/1017 +f 1021/1021/1021 1017/1017/1017 1019/1019/1019 +f 1021/1021/1021 1020/1020/1020 1017/1017/1017 +f 1021/1021/1021 1019/1019/1019 1022/1022/1022 +f 1021/1021/1021 1022/1022/1022 1020/1020/1020 +f 1019/1019/1019 1023/1023/1023 1022/1022/1022 +f 953/953/953 1020/1020/1020 1024/1024/1024 +f 1022/1022/1022 1024/1024/1024 1020/1020/1020 +f 927/927/927 953/953/953 1024/1024/1024 +f 927/927/927 1024/1024/1024 913/913/913 +f 1024/1024/1024 1022/1022/1022 913/913/913 +f 1022/1022/1022 1023/1023/1023 1025/1025/1025 +f 1022/1022/1022 1025/1025/1025 913/913/913 +f 1023/1023/1023 1026/1026/1026 1025/1025/1025 +f 913/913/913 1025/1025/1025 906/906/906 +f 1025/1025/1025 1026/1026/1026 906/906/906 +f 1029/1029/1029 1028/1028/1028 1027/1027/1027 +f 1028/1028/1028 1030/1030/1030 1027/1027/1027 +f 1031/1031/1031 1027/1027/1027 1030/1030/1030 +f 1028/1028/1028 1032/1032/1032 1030/1030/1030 +f 1033/1033/1033 1031/1031/1031 1030/1030/1030 +f 1031/1031/1031 1033/1033/1033 1034/1034/1034 +f 1032/1032/1032 1035/1035/1035 1030/1030/1030 +f 1032/1032/1032 1006/1006/1006 1035/1035/1035 +f 1006/1006/1006 1005/1005/1005 1035/1035/1035 +f 1033/1033/1033 1036/1036/1036 1034/1034/1034 +f 1037/1037/1037 1034/1034/1034 1036/1036/1036 +f 990/990/990 1037/1037/1037 1036/1036/1036 +f 990/990/990 1036/1036/1036 989/989/989 +f 1033/1033/1033 1030/1030/1030 1038/1038/1038 +f 1033/1033/1033 1038/1038/1038 1036/1036/1036 +f 1030/1030/1030 1035/1035/1035 1038/1038/1038 +f 1038/1038/1038 989/989/989 1036/1036/1036 +f 1035/1035/1035 1005/1005/1005 1039/1039/1039 +f 1038/1038/1038 1035/1035/1035 1039/1039/1039 +f 1038/1038/1038 1039/1039/1039 989/989/989 +f 1039/1039/1039 1005/1005/1005 988/988/988 +f 1039/1039/1039 985/985/985 989/989/989 +f 1039/1039/1039 988/988/988 985/985/985 +f 1042/1042/1042 1041/1041/1041 1040/1040/1040 +f 1041/1041/1041 1043/1043/1043 1040/1040/1040 +f 1041/1041/1041 1044/1044/1044 1043/1043/1043 +f 1044/1044/1044 1045/1045/1045 1043/1043/1043 +f 1044/1044/1044 1046/1046/1046 1045/1045/1045 +f 1046/1046/1046 1047/1047/1047 1045/1045/1045 +f 1046/1046/1046 1048/1048/1048 1047/1047/1047 +f 1048/1048/1048 1049/1049/1049 1047/1047/1047 +f 1048/1048/1048 1050/1050/1050 1049/1049/1049 +f 1050/1050/1050 1051/1051/1051 1049/1049/1049 +f 1050/1050/1050 1052/1052/1052 1051/1051/1051 +f 1052/1052/1052 1053/1053/1053 1051/1051/1051 +f 1052/1052/1052 1054/1054/1054 1053/1053/1053 +f 1054/1054/1054 1055/1055/1055 1053/1053/1053 +f 1054/1054/1054 1056/1056/1056 1055/1055/1055 +f 1056/1056/1056 1057/1057/1057 1055/1055/1055 +f 1056/1056/1056 1058/1058/1058 1057/1057/1057 +f 1058/1058/1058 1059/1059/1059 1057/1057/1057 +f 1060/1060/1060 1059/1059/1059 1058/1058/1058 +f 1061/1061/1061 1060/1060/1060 1058/1058/1058 +f 1062/1062/1062 1060/1060/1060 1061/1061/1061 +f 1063/1063/1063 1062/1062/1062 1061/1061/1061 +f 1064/1064/1064 1062/1062/1062 1063/1063/1063 +f 1065/1065/1065 1064/1064/1064 1063/1063/1063 +f 1066/1066/1066 1064/1064/1064 1065/1065/1065 +f 1067/1067/1067 1066/1066/1066 1065/1065/1065 +f 1068/1068/1068 1066/1066/1066 1067/1067/1067 +f 1069/1069/1069 1068/1068/1068 1067/1067/1067 +f 1070/1070/1070 1068/1068/1068 1069/1069/1069 +f 1071/1071/1071 1070/1070/1070 1069/1069/1069 +f 1072/1072/1072 1070/1070/1070 1071/1071/1071 +f 1073/1073/1073 1072/1072/1072 1071/1071/1071 +f 1076/1076/1076 1075/1075/1075 1074/1074/1074 +f 1077/1077/1077 1076/1076/1076 1074/1074/1074 +f 1078/1078/1078 1077/1077/1077 1074/1074/1074 +f 1079/1079/1079 1078/1078/1078 1074/1074/1074 +f 1080/1080/1080 1078/1078/1078 1079/1079/1079 +f 1081/1081/1081 1080/1080/1080 1079/1079/1079 +f 1082/1082/1082 1080/1080/1080 1081/1081/1081 +f 1083/1083/1083 1082/1082/1082 1081/1081/1081 +f 1084/1084/1084 1082/1082/1082 1083/1083/1083 +f 1085/1085/1085 1084/1084/1084 1083/1083/1083 +f 1085/1085/1085 1086/1086/1086 1084/1084/1084 +f 1086/1086/1086 1087/1087/1087 1084/1084/1084 +f 1086/1086/1086 1088/1088/1088 1087/1087/1087 +f 1088/1088/1088 1089/1089/1089 1087/1087/1087 +f 1088/1088/1088 1090/1090/1090 1089/1089/1089 +f 1090/1090/1090 1091/1091/1091 1089/1089/1089 +f 1090/1090/1090 1092/1092/1092 1091/1091/1091 +f 1092/1092/1092 1093/1093/1093 1091/1091/1091 +f 1093/1093/1093 1092/1092/1092 1094/1094/1094 +f 1093/1093/1093 1094/1094/1094 1095/1095/1095 +f 1098/1098/1098 1097/1097/1097 1096/1096/1096 +f 1099/1099/1099 1098/1098/1098 1096/1096/1096 +f 1102/1102/1102 1101/1101/1101 1100/1100/1100 +f 1103/1103/1103 1102/1102/1102 1100/1100/1100 +f 1106/1106/1106 1105/1105/1105 1104/1104/1104 +f 1107/1107/1107 1106/1106/1106 1104/1104/1104 +f 1110/1110/1110 1109/1109/1109 1108/1108/1108 +f 1111/1111/1111 1110/1110/1110 1108/1108/1108 +f 1114/1114/1114 1113/1113/1113 1112/1112/1112 +f 1115/1115/1115 1114/1114/1114 1112/1112/1112 +f 1118/1118/1118 1117/1117/1117 1116/1116/1116 +f 1119/1119/1119 1118/1118/1118 1116/1116/1116 +f 1117/1117/1117 1118/1118/1118 1120/1120/1120 +f 1119/1119/1119 1121/1121/1121 1118/1118/1118 +f 1120/1120/1120 1118/1118/1118 1122/1122/1122 +f 1121/1121/1121 1123/1123/1123 1118/1118/1118 +f 1122/1122/1122 1118/1118/1118 1124/1124/1124 +f 1125/1125/1125 1118/1118/1118 1123/1123/1123 +f 1124/1124/1124 1118/1118/1118 1126/1126/1126 +f 1127/1127/1127 1118/1118/1118 1125/1125/1125 +f 1128/1128/1128 1126/1126/1126 1118/1118/1118 +f 1129/1129/1129 1118/1118/1118 1127/1127/1127 +f 1130/1130/1130 1128/1128/1128 1118/1118/1118 +f 1129/1129/1129 1131/1131/1131 1118/1118/1118 +f 1130/1130/1130 1118/1118/1118 1132/1132/1132 +f 1131/1131/1131 1132/1132/1132 1118/1118/1118 +f 1135/1135/1135 1134/1134/1134 1133/1133/1133 +f 1134/1134/1134 1136/1136/1136 1133/1133/1133 +f 1134/1134/1134 1135/1135/1135 1137/1137/1137 +f 1138/1138/1138 1136/1136/1136 1134/1134/1134 +f 1134/1134/1134 1137/1137/1137 1139/1139/1139 +f 1140/1140/1140 1138/1138/1138 1134/1134/1134 +f 1134/1134/1134 1139/1139/1139 1141/1141/1141 +f 1134/1134/1134 1142/1142/1142 1140/1140/1140 +f 1134/1134/1134 1141/1141/1141 1143/1143/1143 +f 1134/1134/1134 1144/1144/1144 1142/1142/1142 +f 1143/1143/1143 1145/1145/1145 1134/1134/1134 +f 1134/1134/1134 1146/1146/1146 1144/1144/1144 +f 1145/1145/1145 1147/1147/1147 1134/1134/1134 +f 1148/1148/1148 1146/1146/1146 1134/1134/1134 +f 1134/1134/1134 1147/1147/1147 1149/1149/1149 +f 1149/1149/1149 1148/1148/1148 1134/1134/1134 +f 1152/1152/1152 1151/1151/1151 1150/1150/1150 +f 1151/1151/1151 1152/1152/1152 1153/1153/1153 +f 1151/1151/1151 1154/1154/1154 1150/1150/1150 +f 1154/1154/1154 1155/1155/1155 1150/1150/1150 +f 1155/1155/1155 1154/1154/1154 1156/1156/1156 +f 1157/1157/1157 1151/1151/1151 1153/1153/1153 +f 1158/1158/1158 1157/1157/1157 1153/1153/1153 +f 1157/1157/1157 1158/1158/1158 1159/1159/1159 +f 1154/1154/1154 1160/1160/1160 1156/1156/1156 +f 1160/1160/1160 1161/1161/1161 1156/1156/1156 +f 1161/1161/1161 1160/1160/1160 1162/1162/1162 +f 1163/1163/1163 1154/1154/1154 1151/1151/1151 +f 1151/1151/1151 1157/1157/1157 1163/1163/1163 +f 1160/1160/1160 1154/1154/1154 1163/1163/1163 +f 1157/1157/1157 1164/1164/1164 1163/1163/1163 +f 1164/1164/1164 1157/1157/1157 1159/1159/1159 +f 1165/1165/1165 1160/1160/1160 1163/1163/1163 +f 1160/1160/1160 1165/1165/1165 1162/1162/1162 +f 1166/1166/1166 1164/1164/1164 1159/1159/1159 +f 1165/1165/1165 1167/1167/1167 1162/1162/1162 +f 1164/1164/1164 1166/1166/1166 1168/1168/1168 +f 1167/1167/1167 1165/1165/1165 1169/1169/1169 +f 1170/1170/1170 1164/1164/1164 1168/1168/1168 +f 1164/1164/1164 1170/1170/1170 1163/1163/1163 +f 1171/1171/1171 1170/1170/1170 1168/1168/1168 +f 1170/1170/1170 1171/1171/1171 1172/1172/1172 +f 1165/1165/1165 1173/1173/1173 1169/1169/1169 +f 1173/1173/1173 1165/1165/1165 1163/1163/1163 +f 1173/1173/1173 1174/1174/1174 1169/1169/1169 +f 1174/1174/1174 1173/1173/1173 1175/1175/1175 +f 1176/1176/1176 1170/1170/1170 1172/1172/1172 +f 1170/1170/1170 1176/1176/1176 1163/1163/1163 +f 1177/1177/1177 1176/1176/1176 1172/1172/1172 +f 1176/1176/1176 1177/1177/1177 1178/1178/1178 +f 1173/1173/1173 1179/1179/1179 1175/1175/1175 +f 1179/1179/1179 1173/1173/1173 1163/1163/1163 +f 1179/1179/1179 1180/1180/1180 1175/1175/1175 +f 1180/1180/1180 1179/1179/1179 1181/1181/1181 +f 1182/1182/1182 1176/1176/1176 1178/1178/1178 +f 1176/1176/1176 1182/1182/1182 1163/1163/1163 +f 1183/1183/1183 1182/1182/1182 1178/1178/1178 +f 1182/1182/1182 1183/1183/1183 1184/1184/1184 +f 1179/1179/1179 1185/1185/1185 1181/1181/1181 +f 1163/1163/1163 1185/1185/1185 1179/1179/1179 +f 1182/1182/1182 1185/1185/1185 1163/1163/1163 +f 1185/1185/1185 1182/1182/1182 1184/1184/1184 +f 1185/1185/1185 1186/1186/1186 1181/1181/1181 +f 1186/1186/1186 1185/1185/1185 1184/1184/1184 +f 1189/1189/1189 1188/1188/1188 1187/1187/1187 +f 1189/1189/1189 1187/1187/1187 1190/1190/1190 +f 1188/1188/1188 1191/1191/1191 1187/1187/1187 +f 1191/1191/1191 1188/1188/1188 1192/1192/1192 +f 1187/1187/1187 1193/1193/1193 1190/1190/1190 +f 1190/1190/1190 1193/1193/1193 1194/1194/1194 +f 1195/1195/1195 1191/1191/1191 1192/1192/1192 +f 1195/1195/1195 1192/1192/1192 1196/1196/1196 +f 1193/1193/1193 1197/1197/1197 1194/1194/1194 +f 1194/1194/1194 1197/1197/1197 1198/1198/1198 +f 1199/1199/1199 1195/1195/1195 1196/1196/1196 +f 1199/1199/1199 1196/1196/1196 1200/1200/1200 +f 1197/1197/1197 1201/1201/1201 1198/1198/1198 +f 1198/1198/1198 1201/1201/1201 1202/1202/1202 +f 1203/1203/1203 1199/1199/1199 1200/1200/1200 +f 1203/1203/1203 1200/1200/1200 1204/1204/1204 +f 1201/1201/1201 1205/1205/1205 1202/1202/1202 +f 1202/1202/1202 1205/1205/1205 1206/1206/1206 +f 1207/1207/1207 1203/1203/1203 1204/1204/1204 +f 1207/1207/1207 1204/1204/1204 1208/1208/1208 +f 1205/1205/1205 1209/1209/1209 1206/1206/1206 +f 1206/1206/1206 1209/1209/1209 1210/1210/1210 +f 1211/1211/1211 1207/1207/1207 1208/1208/1208 +f 1211/1211/1211 1208/1208/1208 1212/1212/1212 +f 1209/1209/1209 1213/1213/1213 1210/1210/1210 +f 1210/1210/1210 1213/1213/1213 1214/1214/1214 +f 1215/1215/1215 1211/1211/1211 1212/1212/1212 +f 1215/1215/1215 1212/1212/1212 1216/1216/1216 +f 1213/1213/1213 1217/1217/1217 1214/1214/1214 +f 1214/1214/1214 1217/1217/1217 1218/1218/1218 +f 1219/1219/1219 1215/1215/1215 1216/1216/1216 +f 1216/1216/1216 1220/1220/1220 1219/1219/1219 +f 1220/1220/1220 1221/1221/1221 1219/1219/1219 +f 1220/1220/1220 1222/1222/1222 1221/1221/1221 +f 1215/1215/1215 1219/1219/1219 1223/1223/1223 +f 1219/1219/1219 1221/1221/1221 1223/1223/1223 +f 1211/1211/1211 1215/1215/1215 1224/1224/1224 +f 1224/1224/1224 1215/1215/1215 1223/1223/1223 +f 1224/1224/1224 1223/1223/1223 1225/1225/1225 +f 1222/1222/1222 1226/1226/1226 1221/1221/1221 +f 1226/1226/1226 1222/1222/1222 1227/1227/1227 +f 1221/1221/1221 1228/1228/1228 1223/1223/1223 +f 1223/1223/1223 1228/1228/1228 1225/1225/1225 +f 1228/1228/1228 1221/1221/1221 1226/1226/1226 +f 1229/1229/1229 1211/1211/1211 1224/1224/1224 +f 1207/1207/1207 1211/1211/1211 1229/1229/1229 +f 1230/1230/1230 1226/1226/1226 1227/1227/1227 +f 1230/1230/1230 1227/1227/1227 1231/1231/1231 +f 1232/1232/1232 1228/1228/1228 1226/1226/1226 +f 1228/1228/1228 1232/1232/1232 1225/1225/1225 +f 1226/1226/1226 1230/1230/1230 1232/1232/1232 +f 1229/1229/1229 1224/1224/1224 1233/1233/1233 +f 1233/1233/1233 1224/1224/1224 1225/1225/1225 +f 1234/1234/1234 1207/1207/1207 1229/1229/1229 +f 1234/1234/1234 1229/1229/1229 1233/1233/1233 +f 1203/1203/1203 1207/1207/1207 1234/1234/1234 +f 1235/1235/1235 1203/1203/1203 1234/1234/1234 +f 1199/1199/1199 1203/1203/1203 1235/1235/1235 +f 1235/1235/1235 1234/1234/1234 1236/1236/1236 +f 1236/1236/1236 1234/1234/1234 1233/1233/1233 +f 1237/1237/1237 1199/1199/1199 1235/1235/1235 +f 1237/1237/1237 1235/1235/1235 1236/1236/1236 +f 1195/1195/1195 1199/1199/1199 1237/1237/1237 +f 1238/1238/1238 1195/1195/1195 1237/1237/1237 +f 1191/1191/1191 1195/1195/1195 1238/1238/1238 +f 1238/1238/1238 1237/1237/1237 1239/1239/1239 +f 1239/1239/1239 1237/1237/1237 1236/1236/1236 +f 1240/1240/1240 1191/1191/1191 1238/1238/1238 +f 1240/1240/1240 1238/1238/1238 1239/1239/1239 +f 1241/1241/1241 1240/1240/1240 1239/1239/1239 +f 1187/1187/1187 1191/1191/1191 1240/1240/1240 +f 1242/1242/1242 1187/1187/1187 1240/1240/1240 +f 1242/1242/1242 1240/1240/1240 1241/1241/1241 +f 1242/1242/1242 1243/1243/1243 1187/1187/1187 +f 1241/1241/1241 1243/1243/1243 1242/1242/1242 +f 1243/1243/1243 1193/1193/1193 1187/1187/1187 +f 1243/1243/1243 1244/1244/1244 1193/1193/1193 +f 1244/1244/1244 1197/1197/1197 1193/1193/1193 +f 1245/1245/1245 1244/1244/1244 1243/1243/1243 +f 1241/1241/1241 1245/1245/1245 1243/1243/1243 +f 1244/1244/1244 1246/1246/1246 1197/1197/1197 +f 1245/1245/1245 1246/1246/1246 1244/1244/1244 +f 1246/1246/1246 1201/1201/1201 1197/1197/1197 +f 1246/1246/1246 1247/1247/1247 1201/1201/1201 +f 1247/1247/1247 1205/1205/1205 1201/1201/1201 +f 1248/1248/1248 1247/1247/1247 1246/1246/1246 +f 1245/1245/1245 1248/1248/1248 1246/1246/1246 +f 1247/1247/1247 1249/1249/1249 1205/1205/1205 +f 1248/1248/1248 1249/1249/1249 1247/1247/1247 +f 1249/1249/1249 1209/1209/1209 1205/1205/1205 +f 1249/1249/1249 1250/1250/1250 1209/1209/1209 +f 1250/1250/1250 1213/1213/1213 1209/1209/1209 +f 1251/1251/1251 1250/1250/1250 1249/1249/1249 +f 1248/1248/1248 1251/1251/1251 1249/1249/1249 +f 1250/1250/1250 1252/1252/1252 1213/1213/1213 +f 1251/1251/1251 1252/1252/1252 1250/1250/1250 +f 1251/1251/1251 1253/1253/1253 1252/1252/1252 +f 1252/1252/1252 1217/1217/1217 1213/1213/1213 +f 1252/1252/1252 1254/1254/1254 1217/1217/1217 +f 1253/1253/1253 1254/1254/1254 1252/1252/1252 +f 1254/1254/1254 1255/1255/1255 1217/1217/1217 +f 1217/1217/1217 1255/1255/1255 1218/1218/1218 +f 1256/1256/1256 1218/1218/1218 1255/1255/1255 +f 1257/1257/1257 1256/1256/1256 1255/1255/1255 +f 1257/1257/1257 1255/1255/1255 1254/1254/1254 +f 1258/1258/1258 1256/1256/1256 1257/1257/1257 +f 1259/1259/1259 1257/1257/1257 1254/1254/1254 +f 1253/1253/1253 1259/1259/1259 1254/1254/1254 +f 1260/1260/1260 1258/1258/1258 1257/1257/1257 +f 1257/1257/1257 1259/1259/1259 1260/1260/1260 +f 1258/1258/1258 1260/1260/1260 1261/1261/1261 +f 1259/1259/1259 1262/1262/1262 1260/1260/1260 +f 1262/1262/1262 1259/1259/1259 1253/1253/1253 +f 1260/1260/1260 1263/1263/1263 1261/1261/1261 +f 1263/1263/1263 1260/1260/1260 1262/1262/1262 +f 1231/1231/1231 1261/1261/1261 1263/1263/1263 +f 1264/1264/1264 1231/1231/1231 1263/1263/1263 +f 1264/1264/1264 1230/1230/1230 1231/1231/1231 +f 1265/1265/1265 1264/1264/1264 1263/1263/1263 +f 1230/1230/1230 1264/1264/1264 1265/1265/1265 +f 1266/1266/1266 1263/1263/1263 1262/1262/1262 +f 1266/1266/1266 1265/1265/1265 1263/1263/1263 +f 1267/1267/1267 1230/1230/1230 1265/1265/1265 +f 1230/1230/1230 1267/1267/1267 1232/1232/1232 +f 1266/1266/1266 1262/1262/1262 1268/1268/1268 +f 1268/1268/1268 1262/1262/1262 1253/1253/1253 +f 1269/1269/1269 1265/1265/1265 1266/1266/1266 +f 1267/1267/1267 1265/1265/1265 1269/1269/1269 +f 1268/1268/1268 1269/1269/1269 1266/1266/1266 +f 1232/1232/1232 1267/1267/1267 1270/1270/1270 +f 1270/1270/1270 1267/1267/1267 1269/1269/1269 +f 1232/1232/1232 1270/1270/1270 1225/1225/1225 +f 1271/1271/1271 1269/1269/1269 1268/1268/1268 +f 1270/1270/1270 1269/1269/1269 1271/1271/1271 +f 1272/1272/1272 1268/1268/1268 1253/1253/1253 +f 1272/1272/1272 1271/1271/1271 1268/1268/1268 +f 1225/1225/1225 1270/1270/1270 1273/1273/1273 +f 1273/1273/1273 1270/1270/1270 1271/1271/1271 +f 1274/1274/1274 1272/1272/1272 1253/1253/1253 +f 1274/1274/1274 1253/1253/1253 1251/1251/1251 +f 1275/1275/1275 1271/1271/1271 1272/1272/1272 +f 1273/1273/1273 1271/1271/1271 1275/1275/1275 +f 1274/1274/1274 1275/1275/1275 1272/1272/1272 +f 1276/1276/1276 1273/1273/1273 1275/1275/1275 +f 1276/1276/1276 1225/1225/1225 1273/1273/1273 +f 1274/1274/1274 1277/1277/1277 1275/1275/1275 +f 1277/1277/1277 1274/1274/1274 1251/1251/1251 +f 1233/1233/1233 1225/1225/1225 1276/1276/1276 +f 1277/1277/1277 1251/1251/1251 1248/1248/1248 +f 1278/1278/1278 1233/1233/1233 1276/1276/1276 +f 1276/1276/1276 1275/1275/1275 1278/1278/1278 +f 1236/1236/1236 1233/1233/1233 1278/1278/1278 +f 1279/1279/1279 1277/1277/1277 1248/1248/1248 +f 1277/1277/1277 1279/1279/1279 1275/1275/1275 +f 1279/1279/1279 1248/1248/1248 1245/1245/1245 +f 1280/1280/1280 1236/1236/1236 1278/1278/1278 +f 1275/1275/1275 1280/1280/1280 1278/1278/1278 +f 1239/1239/1239 1236/1236/1236 1280/1280/1280 +f 1281/1281/1281 1279/1279/1279 1245/1245/1245 +f 1275/1275/1275 1279/1279/1279 1281/1281/1281 +f 1281/1281/1281 1245/1245/1245 1241/1241/1241 +f 1282/1282/1282 1239/1239/1239 1280/1280/1280 +f 1282/1282/1282 1280/1280/1280 1275/1275/1275 +f 1241/1241/1241 1239/1239/1239 1282/1282/1282 +f 1283/1283/1283 1281/1281/1281 1241/1241/1241 +f 1283/1283/1283 1275/1275/1275 1281/1281/1281 +f 1283/1283/1283 1241/1241/1241 1282/1282/1282 +f 1283/1283/1283 1282/1282/1282 1275/1275/1275 +f 1286/1286/1286 1285/1285/1285 1284/1284/1284 +f 1285/1285/1285 1287/1287/1287 1284/1284/1284 +f 1285/1285/1285 1286/1286/1286 1288/1288/1288 +f 1289/1289/1289 1287/1287/1287 1285/1285/1285 +f 1290/1290/1290 1285/1285/1285 1288/1288/1288 +f 1291/1291/1291 1289/1289/1289 1285/1285/1285 +f 1285/1285/1285 1290/1290/1290 1292/1292/1292 +f 1293/1293/1293 1291/1291/1291 1285/1285/1285 +f 1294/1294/1294 1285/1285/1285 1292/1292/1292 +f 1295/1295/1295 1293/1293/1293 1285/1285/1285 +f 1294/1294/1294 1296/1296/1296 1285/1285/1285 +f 1296/1296/1296 1295/1295/1295 1285/1285/1285 diff --git a/public/ghosts/mesh/Ghost_Bat.obj b/public/ghosts/mesh/Ghost_Bat.obj new file mode 100644 index 0000000..b56f05a --- /dev/null +++ b/public/ghosts/mesh/Ghost_Bat.obj @@ -0,0 +1,767 @@ +g Ghost_Bat +v 0.23093598 1.6888598 9.536743E-09 +v 0.16428131 1.7850729 9.536743E-09 +v 0.14227325 1.7850726 -0.08214095 +v 0.19999602 1.6888598 -0.115468964 +v 0.23055358 0.080041505 9.536743E-09 +v 0.0821405 1.7850729 -0.14227232 +v 0.19966583 0.080041505 -0.11527636 +v 0.21243744 -0.14647491 9.536743E-09 +v 0.11546661 1.6888598 -0.19999824 +v -0 1.7850729 -0.16428192 +v 0.18397796 -0.14647491 -0.10621962 +v 0.14700073 -0.6485732 9.536743E-09 +v 3.0517577E-07 1.6888598 -0.23093818 +v -0.0821405 1.7850729 -0.14227232 +v 0.11527374 0.080041505 -0.19966449 +v 0.12730224 -0.6485732 -0.07349921 +v 0.116545714 -1.1276284 9.536743E-09 +v -0.115467526 1.6888598 -0.19999824 +v -0.14227447 1.7850726 -0.08214095 +v 0.106221005 -0.14647491 -0.18397777 +v 3.0517577E-07 0.080041505 -0.2305527 +v 0.100928344 -1.1276284 -0.058271825 +v 0.138067 -1.6819524 9.536743E-09 +v 0.11956604 -1.6819524 -0.06903267 +v -0.19999634 1.6888598 -0.115468964 +v -0.16428192 1.7850729 9.536743E-09 +v -0.23093536 1.6888598 9.536743E-09 +v 0.073499754 -0.64857316 -0.12730438 +v 0.058272704 -1.1276284 -0.100929715 +v 0.06903198 -1.6819524 -0.119568124 +v 3.0517577E-07 -0.14647491 -0.21243922 +v -0.11527435 0.080041505 -0.19966449 +v -0.19966644 0.080041505 -0.11527636 +v -0.23055267 0.080041505 9.536743E-09 +v 3.0517577E-07 -1.1276284 -0.11654369 +v 3.0517577E-07 -1.6819524 -0.13806534 +v 3.0517577E-07 -0.6485732 -0.14699839 +v -0.10622131 -0.14647491 -0.18397777 +v -0.18397857 -0.14647491 -0.10621962 +v -0.21243712 -0.14647491 9.536743E-09 +v -0.073500365 -0.64857316 -0.12730438 +v -0.058272704 -1.1276284 -0.100929715 +v -0.06903137 -1.6819524 -0.119568124 +v -0.12730254 -0.6485732 -0.07349921 +v -0.14700073 -0.6485732 9.536743E-09 +v -0.100928344 -1.1276284 -0.058271825 +v -0.11956573 -1.6819524 -0.06903267 +v -0.116545714 -1.1276284 9.536743E-09 +v -0.13806671 -1.6819524 9.536743E-09 +v -0.13806671 -1.6819524 9.536743E-09 +v -0.23737335 -1.7254586 9.536743E-09 +v -0.20557372 -1.7254586 -0.11868828 +v -0.11956573 -1.6819524 -0.06903267 +v -0.1186911 -1.7254586 -0.20557404 +v -0.06903137 -1.6819524 -0.119568124 +v 3.0517577E-07 -1.7254586 -0.23737656 +v 3.0517577E-07 -1.6819524 -0.13806534 +v 0.11868805 -1.7254586 -0.20557404 +v 0.06903198 -1.6819524 -0.119568124 +v 0.20557372 -1.7254586 -0.118688464 +v 0.11956604 -1.6819524 -0.06903267 +v 0.23737335 -1.7254586 9.536743E-09 +v 0.138067 -1.6819524 9.536743E-09 +v -0.23737335 -1.7254586 9.536743E-09 +v -0.23737335 -1.8253057 9.536743E-09 +v -0.20557372 -1.8253057 -0.11868828 +v -0.20557372 -1.7254586 -0.11868828 +v -0.1186911 -1.8253057 -0.20557404 +v -0.1186911 -1.7254586 -0.20557404 +v 3.0517577E-07 -1.8253057 -0.23737656 +v 3.0517577E-07 -1.7254586 -0.23737656 +v 0.11868805 -1.8253057 -0.20557404 +v 0.11868805 -1.7254586 -0.20557404 +v 0.20557372 -1.8253057 -0.118688464 +v 0.20557372 -1.7254586 -0.118688464 +v 0.23737335 -1.8253057 9.536743E-09 +v 0.23737335 -1.7254586 9.536743E-09 +v -0.14227447 1.7850726 -0.08214095 +v 3.0517577E-07 1.825306 9.536743E-09 +v -0.16428192 1.7850729 9.536743E-09 +v -0.0821405 1.7850729 -0.14227232 +v -0 1.7850729 -0.16428192 +v 0.0821405 1.7850729 -0.14227232 +v 0.14227325 1.7850726 -0.08214095 +v 0.16428131 1.7850729 9.536743E-09 +v 0.14227325 1.7850729 0.08214097 +v 0.16428131 1.7850729 9.536743E-09 +v 0.23093598 1.6888598 9.536743E-09 +v 0.19999602 1.6888598 0.11546906 +v 0.0821405 1.7850726 0.14227243 +v 0.23055358 0.080041505 9.536743E-09 +v 0.11546661 1.6888598 0.19999824 +v -0 1.7850726 0.164282 +v 0.19966583 0.080041505 0.115276344 +v 0.21243744 -0.14647491 9.536743E-09 +v 3.0517577E-07 1.6888598 0.2309381 +v -0.0821405 1.7850726 0.14227243 +v 0.18397796 -0.14647476 0.10621964 +v 0.14700073 -0.6485732 9.536743E-09 +v 0.11527374 0.080041505 0.19966446 +v -0.115467526 1.6888598 0.19999824 +v -0.14227447 1.7850729 0.08214097 +v 0.12730224 -0.6485732 0.07349923 +v 0.116545714 -1.1276284 9.536743E-09 +v 0.106221005 -0.14647491 0.18397777 +v 3.0517577E-07 0.080041505 0.23055267 +v -0.19999634 1.6888598 0.11546906 +v -0.16428192 1.7850729 9.536743E-09 +v -0.23093536 1.6888598 9.536743E-09 +v 0.100928344 -1.1276284 0.05827185 +v 0.138067 -1.6819524 9.536743E-09 +v 0.11956604 -1.6819524 0.069032684 +v -0.11527435 0.080041505 0.19966446 +v -0.19966644 0.080041505 0.115276344 +v -0.23055267 0.080041505 9.536743E-09 +v 3.0517577E-07 -0.14647491 0.21243927 +v 0.073499754 -0.6485732 0.12730438 +v 0.058272704 -1.1276284 0.10092972 +v 0.06903198 -1.6819524 0.11956815 +v -0.10622131 -0.14647491 0.18397777 +v -0.18397857 -0.14647476 0.10621964 +v -0.21243712 -0.14647491 9.536743E-09 +v 3.0517577E-07 -0.6485732 0.14699844 +v 3.0517577E-07 -1.1276283 0.11654372 +v 3.0517577E-07 -1.6819524 0.13806537 +v -0.073500365 -0.6485732 0.12730438 +v -0.12730254 -0.6485732 0.07349923 +v -0.14700073 -0.6485732 9.536743E-09 +v -0.058272704 -1.1276284 0.10092972 +v -0.06903137 -1.6819524 0.11956815 +v -0.100928344 -1.1276284 0.05827185 +v -0.116545714 -1.1276284 9.536743E-09 +v -0.11956573 -1.6819524 0.069032684 +v -0.13806671 -1.6819524 9.536743E-09 +v -0.20557372 -1.7254586 0.11868829 +v -0.23737335 -1.7254586 9.536743E-09 +v -0.13806671 -1.6819524 9.536743E-09 +v -0.11956573 -1.6819524 0.069032684 +v -0.1186911 -1.7254586 0.20557404 +v -0.06903137 -1.6819524 0.11956815 +v 3.0517577E-07 -1.7254586 0.23737656 +v 3.0517577E-07 -1.6819524 0.13806537 +v 0.11868805 -1.7254586 0.20557404 +v 0.06903198 -1.6819524 0.11956815 +v 0.20557372 -1.7254586 0.11868849 +v 0.11956604 -1.6819524 0.069032684 +v 0.23737335 -1.7254586 9.536743E-09 +v 0.138067 -1.6819524 9.536743E-09 +v -0.20557372 -1.8253057 0.118688285 +v -0.23737335 -1.8253057 9.536743E-09 +v -0.23737335 -1.7254586 9.536743E-09 +v -0.20557372 -1.7254586 0.11868829 +v -0.1186911 -1.8253057 0.20557404 +v -0.1186911 -1.7254586 0.20557404 +v 3.0517577E-07 -1.8253057 0.23737656 +v 3.0517577E-07 -1.7254586 0.23737656 +v 0.11868805 -1.8253057 0.20557404 +v 0.11868805 -1.7254586 0.20557404 +v 0.20557372 -1.8253057 0.118688494 +v 0.20557372 -1.7254586 0.11868849 +v 0.23737335 -1.8253057 9.536743E-09 +v 0.23737335 -1.7254586 9.536743E-09 +v 3.0517577E-07 1.825306 9.536743E-09 +v -0.14227447 1.7850729 0.08214097 +v -0.16428192 1.7850729 9.536743E-09 +v -0.0821405 1.7850726 0.14227243 +v -0 1.7850726 0.164282 +v 0.0821405 1.7850726 0.14227243 +v 0.14227325 1.7850729 0.08214097 +v 0.16428131 1.7850729 9.536743E-09 +v -9.155273E-07 -1.825306 9.536743E-09 +v 0.20557372 -1.8253057 0.118688494 +v 0.23737335 -1.8253057 9.536743E-09 +v 0.20557372 -1.8253057 -0.118688464 +v 0.11868805 -1.8253057 0.20557404 +v 0.11868805 -1.8253057 -0.20557404 +v 3.0517577E-07 -1.8253057 0.23737656 +v 3.0517577E-07 -1.8253057 -0.23737656 +v -0.1186911 -1.8253057 0.20557404 +v -0.1186911 -1.8253057 -0.20557404 +v -0.20557372 -1.8253057 0.118688285 +v -0.20557372 -1.8253057 -0.11868828 +v -0.23737335 -1.8253057 9.536743E-09 +vt 0.033712 0.545644 +vt 0.020241 0.536712 +vt 0.020241 0.521679 +vt 0.033712 0.526721 +vt 0.292339 0.546247 +vt 0.020241 0.505521 +vt 0.292339 0.527201 +vt 0.331103 0.541357 +vt 0.033712 0.507875 +vt 0.020241 0.489027 +vt 0.331103 0.52395 +vt 0.41101 0.518695 +vt 0.033712 0.489051 +vt 0.020241 0.472557 +vt 0.292339 0.508151 +vt 0.41101 0.508839 +vt 0.48663 0.510622 +vt 0.033712 0.470215 +vt 0.020241 0.456432 +vt 0.331103 0.506483 +vt 0.292339 0.489101 +vt 0.48663 0.503249 +vt 0.577956 0.515712 +vt 0.577956 0.506448 +vt 0.033712 0.451342 +vt 0.020241 0.440988 +vt 0.033712 0.432426 +vt 0.41101 0.498874 +vt 0.48663 0.495866 +vt 0.577956 0.49719 +vt 0.331103 0.489005 +vt 0.292339 0.47005 +vt 0.292339 0.450989 +vt 0.292339 0.431904 +vt 0.48663 0.488476 +vt 0.577956 0.487934 +vt 0.41101 0.488858 +vt 0.331103 0.471548 +vt 0.331103 0.454152 +vt 0.331103 0.436904 +vt 0.41101 0.478845 +vt 0.48663 0.481084 +vt 0.577956 0.478676 +vt 0.41101 0.468891 +vt 0.41101 0.459045 +vt 0.48663 0.473692 +vt 0.577956 0.469409 +vt 0.48663 0.466304 +vt 0.577956 0.460131 +vt 0.321383 0.559963 +vt 0.32882 0.574769 +vt 0.312915 0.574769 +vt 0.309785 0.559963 +vt 0.297487 0.574769 +vt 0.296334 0.559963 +vt 0.282349 0.574769 +vt 0.282115 0.559963 +vt 0.267131 0.574769 +vt 0.267854 0.559963 +vt 0.251542 0.574769 +vt 0.254327 0.559962 +vt 0.235757 0.574769 +vt 0.243116 0.559963 +vt 0.32882 0.574769 +vt 0.32882 0.589843 +vt 0.312671 0.589843 +vt 0.312915 0.574769 +vt 0.297284 0.589843 +vt 0.297487 0.574769 +vt 0.282726 0.589843 +vt 0.282349 0.574769 +vt 0.26791 0.589843 +vt 0.267131 0.574769 +vt 0.252166 0.589843 +vt 0.251542 0.574769 +vt 0.235757 0.589843 +vt 0.235757 0.574769 +vt 0.037127 0.260495 +vt 0.011751 0.297588 +vt 0.011751 0.253695 +vt 0.05252 0.277233 +vt 0.057481 0.299426 +vt 0.050682 0.321125 +vt 0.033943 0.336518 +vt 0.011751 0.34148 +vt 0.020241 0.521679 +vt 0.020241 0.536712 +vt 0.033712 0.545644 +vt 0.033712 0.526721 +vt 0.020241 0.505521 +vt 0.292339 0.546247 +vt 0.033712 0.507875 +vt 0.020241 0.489027 +vt 0.292339 0.527201 +vt 0.331103 0.541357 +vt 0.033712 0.489051 +vt 0.020241 0.472557 +vt 0.331103 0.52395 +vt 0.41101 0.518695 +vt 0.292339 0.508151 +vt 0.033712 0.470215 +vt 0.020241 0.456432 +vt 0.41101 0.508839 +vt 0.48663 0.510622 +vt 0.331103 0.506483 +vt 0.292339 0.489101 +vt 0.033712 0.451342 +vt 0.020241 0.440988 +vt 0.033712 0.432426 +vt 0.48663 0.503249 +vt 0.577956 0.515712 +vt 0.577956 0.506448 +vt 0.292339 0.47005 +vt 0.292339 0.450989 +vt 0.292339 0.431904 +vt 0.331103 0.489005 +vt 0.41101 0.498874 +vt 0.48663 0.495866 +vt 0.577956 0.49719 +vt 0.331103 0.471548 +vt 0.331103 0.454152 +vt 0.331103 0.436904 +vt 0.41101 0.488858 +vt 0.48663 0.488476 +vt 0.577956 0.487934 +vt 0.41101 0.478845 +vt 0.41101 0.468891 +vt 0.41101 0.459045 +vt 0.48663 0.481084 +vt 0.577956 0.478676 +vt 0.48663 0.473692 +vt 0.48663 0.466304 +vt 0.577956 0.469409 +vt 0.577956 0.460131 +vt 0.312913 0.574766 +vt 0.328818 0.574766 +vt 0.321381 0.559959 +vt 0.309783 0.559959 +vt 0.297486 0.574766 +vt 0.296332 0.559959 +vt 0.282347 0.574766 +vt 0.282113 0.559959 +vt 0.267129 0.574766 +vt 0.267852 0.559959 +vt 0.25154 0.574766 +vt 0.254325 0.559959 +vt 0.235755 0.574766 +vt 0.243114 0.559959 +vt 0.312669 0.589839 +vt 0.328818 0.589839 +vt 0.328818 0.574766 +vt 0.312913 0.574766 +vt 0.297282 0.589839 +vt 0.297486 0.574766 +vt 0.282724 0.589839 +vt 0.282347 0.574766 +vt 0.267908 0.589839 +vt 0.267129 0.574766 +vt 0.252164 0.58984 +vt 0.25154 0.574766 +vt 0.235755 0.589839 +vt 0.235755 0.574766 +vt 0.011751 0.297588 +vt 0.037127 0.260495 +vt 0.011751 0.253695 +vt 0.05252 0.277233 +vt 0.057481 0.299426 +vt 0.050682 0.321125 +vt 0.033943 0.336518 +vt 0.011751 0.34148 +vt 0.649191 0.419149 +vt 0.665469 0.390954 +vt 0.649191 0.386592 +vt 0.632912 0.390954 +vt 0.677386 0.402871 +vt 0.620995 0.402871 +vt 0.681748 0.419149 +vt 0.616634 0.419149 +vt 0.677386 0.435428 +vt 0.620995 0.435428 +vt 0.665469 0.447344 +vt 0.632912 0.447344 +vt 0.649191 0.451706 +vn 0.9585068 0.28506985 0 +vn 0.6041495 0.79687095 0 +vn 0.5232121 0.79686904 -0.30207404 +vn 0.8300891 0.28507143 -0.479256 +vn 0.99920964 -0.0397502 0 +vn 0.30207363 0.79687333 -0.52320594 +vn 0.8653401 -0.039747465 -0.49960646 +vn 0.9945681 -0.10408779 0 +vn 0.4792509 0.2850737 -0.83009124 +vn 4.3355183E-07 0.79687506 -0.6041442 +vn 0.8613218 -0.10408532 -0.4972835 +vn 0.99529195 -0.09692217 0 +vn 1.2513581E-06 0.2850765 -0.95850474 +vn -0.30207178 0.7968739 -0.5232061 +vn 0.49960172 -0.039745323 -0.865343 +vn 0.8619444 -0.09692138 -0.4976526 +vn 0.9999225 -0.012446101 0 +vn -0.47925013 0.28507364 -0.8300918 +vn -0.5232138 0.7968682 -0.30207342 +vn 0.49728736 -0.1040834 -0.8613199 +vn 1.2316204E-06 -0.03974624 -0.99920976 +vn 0.86595005 -0.012445819 -0.49997568 +vn 0.9992472 0.038795333 0 +vn 0.86536473 0.038794216 -0.4996387 +vn -0.83009106 0.28507048 -0.47925323 +vn -0.6041511 0.79686975 0 +vn -0.95850754 0.2850673 0 +vn 0.49765417 -0.09692319 -0.8619433 +vn 0.49997118 -0.012445979 -0.86595255 +vn 0.49963182 0.03879506 -0.86536866 +vn 1.2029865E-06 -0.10408348 -0.9945686 +vn -0.49960047 -0.03974562 -0.8653437 +vn -0.86534244 -0.039747626 -0.49960238 +vn -0.99920964 -0.039749898 0 +vn 1.1310963E-06 -0.012445888 -0.9999225 +vn 5.5348755E-07 0.03879548 -0.9992472 +vn 1.514343E-06 -0.09692247 -0.99529195 +vn -0.4972856 -0.10408365 -0.86132085 +vn -0.8613239 -0.104085565 -0.49727997 +vn -0.9945682 -0.10408735 0 +vn -0.49765322 -0.09692343 -0.86194384 +vn -0.4999705 -0.012446378 -0.865953 +vn -0.49963075 0.038794797 -0.8653693 +vn -0.86194605 -0.09692179 -0.4976497 +vn -0.99529195 -0.096922286 0 +vn -0.8659506 -0.012446293 -0.49997464 +vn -0.8653645 0.03879403 -0.4996392 +vn -0.9999225 -0.012446395 0 +vn -0.9992472 0.038795333 0 +vn -0.40126997 0.9159598 0 +vn -0.40126997 0.9159598 0 +vn -0.34750712 0.915962 -0.20063005 +vn -0.3475068 0.915962 -0.20063078 +vn -0.20063345 0.91596407 -0.3474998 +vn -0.2006302 0.91596407 -0.34750158 +vn 8.6672554E-07 0.9159622 -0.40126446 +vn 1.1384262E-06 0.9159622 -0.4012645 +vn 0.20063318 0.9159625 -0.34750405 +vn 0.2006331 0.9159625 -0.34750408 +vn 0.34750792 0.91596097 -0.20063308 +vn 0.3475075 0.91596097 -0.20063396 +vn 0.4012704 0.9159596 0 +vn 0.4012704 0.9159596 0 +vn -1 0 0 +vn -1 0 0 +vn -0.8660355 0 -0.49998257 +vn -0.8660355 0 -0.49998257 +vn -0.5000049 0 -0.86602265 +vn -0.5000049 0 -0.86602265 +vn 3.6730592E-06 0 -1 +vn 3.6730592E-06 0 -1 +vn 0.5000007 0 -0.866025 +vn 0.5000007 0 -0.866025 +vn 0.86603063 0 -0.49999094 +vn 0.86603063 0 -0.49999094 +vn 1 0 0 +vn 1 0 0 +vn -0.5232138 0.7968682 -0.30207342 +vn 9.2884443E-07 1 0 +vn -0.6041511 0.79686975 0 +vn -0.30207178 0.7968739 -0.5232061 +vn 4.3355183E-07 0.79687506 -0.6041442 +vn 0.30207363 0.79687333 -0.52320594 +vn 0.5232121 0.79686904 -0.30207404 +vn 0.6041495 0.79687095 0 +vn 0.52321213 0.79686916 0.30207407 +vn 0.6041495 0.79687095 0 +vn 0.9585068 0.28506985 0 +vn 0.8300891 0.28507143 0.47925606 +vn 0.3020736 0.7968734 0.52320594 +vn 0.99920964 -0.0397502 0 +vn 0.4792509 0.28507373 0.8300913 +vn 4.3222195E-07 0.79687506 0.6041442 +vn 0.8653401 -0.03974747 0.49960646 +vn 0.9945681 -0.10408779 0 +vn 1.2406169E-06 0.2850765 0.95850474 +vn -0.30207178 0.7968739 0.5232061 +vn 0.8613218 -0.10408533 0.4972835 +vn 0.99529195 -0.09692217 0 +vn 0.49960172 -0.039745323 0.865343 +vn -0.47925013 0.28507364 0.8300918 +vn -0.5232138 0.7968682 0.30207345 +vn 0.8619444 -0.09692139 0.49765265 +vn 0.9999225 -0.012446101 0 +vn 0.49728736 -0.1040834 0.8613199 +vn 1.2217279E-06 -0.03974624 0.99920976 +vn -0.83009106 0.28507048 0.47925323 +vn -0.6041511 0.79686975 0 +vn -0.95850754 0.2850673 0 +vn 0.86595005 -0.012445819 0.49997568 +vn 0.9992472 0.038795333 0 +vn 0.8653647 0.038794212 0.49963874 +vn -0.49960047 -0.03974562 0.8653437 +vn -0.86534244 -0.039747626 0.49960238 +vn -0.99920964 -0.039749898 0 +vn 1.2029865E-06 -0.10408348 0.9945686 +vn 0.49765417 -0.09692319 0.8619433 +vn 0.49997118 -0.012445979 0.86595255 +vn 0.49963182 0.03879506 0.86536866 +vn -0.4972856 -0.10408365 0.86132085 +vn -0.8613239 -0.104085565 0.49727997 +vn -0.9945682 -0.10408735 0 +vn 1.5045731E-06 -0.09692247 0.99529195 +vn 1.1213455E-06 -0.012445888 0.9999225 +vn 5.5348755E-07 0.03879548 0.9992472 +vn -0.49765322 -0.09692343 0.86194384 +vn -0.86194605 -0.09692179 0.4976497 +vn -0.99529195 -0.096922286 0 +vn -0.4999705 -0.0124463765 0.865953 +vn -0.49963075 0.038794797 0.8653693 +vn -0.8659506 -0.012446293 0.4999747 +vn -0.9999225 -0.012446395 0 +vn -0.8653645 0.038794033 0.4996392 +vn -0.9992472 0.038795333 0 +vn -0.34750712 0.915962 0.20063005 +vn -0.40126997 0.9159598 0 +vn -0.40126997 0.9159598 0 +vn -0.3475068 0.915962 0.20063078 +vn -0.20063345 0.91596407 0.3474998 +vn -0.2006302 0.91596407 0.34750158 +vn 8.7235355E-07 0.9159622 0.4012645 +vn 1.1425659E-06 0.9159622 0.4012645 +vn 0.20063315 0.9159625 0.34750405 +vn 0.2006331 0.9159625 0.34750414 +vn 0.34750792 0.91596097 0.20063308 +vn 0.34750748 0.9159611 0.20063396 +vn 0.4012704 0.9159596 0 +vn 0.4012704 0.9159596 0 +vn -0.8660355 0 0.49998257 +vn -1 0 0 +vn -1 0 0 +vn -0.8660355 0 0.49998257 +vn -0.5000049 0 0.86602265 +vn -0.5000049 0 0.86602265 +vn 3.6730592E-06 0 1 +vn 3.6730592E-06 0 1 +vn 0.5000007 0 0.866025 +vn 0.5000007 0 0.866025 +vn 0.86603063 0 0.49999094 +vn 0.86603063 0 0.49999094 +vn 1 0 0 +vn 1 0 0 +vn 9.2884443E-07 1 0 +vn -0.5232138 0.7968682 0.30207345 +vn -0.6041511 0.79686975 0 +vn -0.30207178 0.7968739 0.5232061 +vn 4.3222195E-07 0.79687506 0.6041442 +vn 0.3020736 0.7968734 0.52320594 +vn 0.52321213 0.79686916 0.30207407 +vn 0.6041495 0.79687095 0 +vn -0 -1 0 +vn 1.2372466E-06 -1 5.2292353E-07 +vn 1.4286578E-06 -1 0 +vn 1.2372466E-06 -1 -5.2292353E-07 +vn 5.2291966E-07 -1 1.2372409E-06 +vn 5.2291966E-07 -1 -1.2372409E-06 +vn -0 -1 1.4286439E-06 +vn -0 -1 -1.4286439E-06 +vn -6.1863193E-07 -1 1.0714709E-06 +vn -6.1863193E-07 -1 -1.0714709E-06 +vn -1.2372628E-06 -1 7.142983E-07 +vn -1.2372628E-06 -1 -7.142983E-07 +vn -1.2372628E-06 -1 0 +g Ghost_Bat_0 +f 3/3/3 2/2/2 1/1/1 +f 4/4/4 3/3/3 1/1/1 +f 4/4/4 1/1/1 5/5/5 +f 6/6/6 3/3/3 4/4/4 +f 7/7/7 4/4/4 5/5/5 +f 7/7/7 5/5/5 8/8/8 +f 9/9/9 6/6/6 4/4/4 +f 9/9/9 4/4/4 7/7/7 +f 10/10/10 6/6/6 9/9/9 +f 11/11/11 7/7/7 8/8/8 +f 11/11/11 8/8/8 12/12/12 +f 13/13/13 10/10/10 9/9/9 +f 14/14/14 10/10/10 13/13/13 +f 15/15/15 9/9/9 7/7/7 +f 15/15/15 7/7/7 11/11/11 +f 13/13/13 9/9/9 15/15/15 +f 16/16/16 11/11/11 12/12/12 +f 16/16/16 12/12/12 17/17/17 +f 18/18/18 14/14/14 13/13/13 +f 19/19/19 14/14/14 18/18/18 +f 20/20/20 15/15/15 11/11/11 +f 20/20/20 11/11/11 16/16/16 +f 21/21/21 13/13/13 15/15/15 +f 18/18/18 13/13/13 21/21/21 +f 21/21/21 15/15/15 20/20/20 +f 22/22/22 16/16/16 17/17/17 +f 22/22/22 17/17/17 23/23/23 +f 24/24/24 22/22/22 23/23/23 +f 25/25/25 19/19/19 18/18/18 +f 26/26/26 19/19/19 25/25/25 +f 27/27/27 26/26/26 25/25/25 +f 28/28/28 20/20/20 16/16/16 +f 28/28/28 16/16/16 22/22/22 +f 29/29/29 22/22/22 24/24/24 +f 29/29/29 28/28/28 22/22/22 +f 30/30/30 29/29/29 24/24/24 +f 31/31/31 21/21/21 20/20/20 +f 31/31/31 20/20/20 28/28/28 +f 32/32/32 18/18/18 21/21/21 +f 25/25/25 18/18/18 32/32/32 +f 32/32/32 21/21/21 31/31/31 +f 27/27/27 25/25/25 33/33/33 +f 33/33/33 25/25/25 32/32/32 +f 34/34/34 27/27/27 33/33/33 +f 35/35/35 29/29/29 30/30/30 +f 36/36/36 35/35/35 30/30/30 +f 37/37/37 28/28/28 29/29/29 +f 37/37/37 31/31/31 28/28/28 +f 35/35/35 37/37/37 29/29/29 +f 38/38/38 32/32/32 31/31/31 +f 33/33/33 32/32/32 38/38/38 +f 38/38/38 31/31/31 37/37/37 +f 34/34/34 33/33/33 39/39/39 +f 39/39/39 33/33/33 38/38/38 +f 40/40/40 34/34/34 39/39/39 +f 41/41/41 38/38/38 37/37/37 +f 41/41/41 37/37/37 35/35/35 +f 39/39/39 38/38/38 41/41/41 +f 42/42/42 35/35/35 36/36/36 +f 42/42/42 41/41/41 35/35/35 +f 43/43/43 42/42/42 36/36/36 +f 40/40/40 39/39/39 44/44/44 +f 44/44/44 39/39/39 41/41/41 +f 44/44/44 41/41/41 42/42/42 +f 45/45/45 40/40/40 44/44/44 +f 46/46/46 42/42/42 43/43/43 +f 46/46/46 44/44/44 42/42/42 +f 45/45/45 44/44/44 46/46/46 +f 47/47/47 46/46/46 43/43/43 +f 48/48/48 45/45/45 46/46/46 +f 48/48/48 46/46/46 47/47/47 +f 49/49/49 48/48/48 47/47/47 +f 52/52/52 51/51/51 50/50/50 +f 53/53/53 52/52/52 50/50/50 +f 54/54/54 52/52/52 53/53/53 +f 55/55/55 54/54/54 53/53/53 +f 56/56/56 54/54/54 55/55/55 +f 57/57/57 56/56/56 55/55/55 +f 58/58/58 56/56/56 57/57/57 +f 59/59/59 58/58/58 57/57/57 +f 60/60/60 58/58/58 59/59/59 +f 61/61/61 60/60/60 59/59/59 +f 62/62/62 60/60/60 61/61/61 +f 63/63/63 62/62/62 61/61/61 +f 66/66/66 65/65/65 64/64/64 +f 67/67/67 66/66/66 64/64/64 +f 68/68/68 66/66/66 67/67/67 +f 69/69/69 68/68/68 67/67/67 +f 70/70/70 68/68/68 69/69/69 +f 71/71/71 70/70/70 69/69/69 +f 72/72/72 70/70/70 71/71/71 +f 73/73/73 72/72/72 71/71/71 +f 74/74/74 72/72/72 73/73/73 +f 75/75/75 74/74/74 73/73/73 +f 76/76/76 74/74/74 75/75/75 +f 77/77/77 76/76/76 75/75/75 +f 80/80/80 79/79/79 78/78/78 +f 79/79/79 81/81/81 78/78/78 +f 81/81/81 79/79/79 82/82/82 +f 79/79/79 83/83/83 82/82/82 +f 83/83/83 79/79/79 84/84/84 +f 79/79/79 85/85/85 84/84/84 +f 88/88/88 87/87/87 86/86/86 +f 89/89/89 88/88/88 86/86/86 +f 89/89/89 86/86/86 90/90/90 +f 91/91/91 88/88/88 89/89/89 +f 92/92/92 89/89/89 90/90/90 +f 92/92/92 90/90/90 93/93/93 +f 94/94/94 91/91/91 89/89/89 +f 94/94/94 89/89/89 92/92/92 +f 95/95/95 91/91/91 94/94/94 +f 96/96/96 92/92/92 93/93/93 +f 96/96/96 93/93/93 97/97/97 +f 98/98/98 95/95/95 94/94/94 +f 99/99/99 95/95/95 98/98/98 +f 100/100/100 94/94/94 92/92/92 +f 100/100/100 92/92/92 96/96/96 +f 98/98/98 94/94/94 100/100/100 +f 101/101/101 96/96/96 97/97/97 +f 101/101/101 97/97/97 102/102/102 +f 103/103/103 99/99/99 98/98/98 +f 104/104/104 99/99/99 103/103/103 +f 105/105/105 98/98/98 100/100/100 +f 103/103/103 98/98/98 105/105/105 +f 106/106/106 100/100/100 96/96/96 +f 106/106/106 96/96/96 101/101/101 +f 105/105/105 100/100/100 106/106/106 +f 107/107/107 101/101/101 102/102/102 +f 107/107/107 102/102/102 108/108/108 +f 109/109/109 107/107/107 108/108/108 +f 110/110/110 104/104/104 103/103/103 +f 111/111/111 104/104/104 110/110/110 +f 112/112/112 111/111/111 110/110/110 +f 113/113/113 106/106/106 101/101/101 +f 113/113/113 101/101/101 107/107/107 +f 114/114/114 107/107/107 109/109/109 +f 114/114/114 113/113/113 107/107/107 +f 115/115/115 114/114/114 109/109/109 +f 116/116/116 105/105/105 106/106/106 +f 116/116/116 106/106/106 113/113/113 +f 117/117/117 103/103/103 105/105/105 +f 110/110/110 103/103/103 117/117/117 +f 117/117/117 105/105/105 116/116/116 +f 112/112/112 110/110/110 118/118/118 +f 118/118/118 110/110/110 117/117/117 +f 119/119/119 112/112/112 118/118/118 +f 120/120/120 113/113/113 114/114/114 +f 120/120/120 116/116/116 113/113/113 +f 121/121/121 114/114/114 115/115/115 +f 121/121/121 120/120/120 114/114/114 +f 122/122/122 121/121/121 115/115/115 +f 123/123/123 117/117/117 116/116/116 +f 118/118/118 117/117/117 123/123/123 +f 123/123/123 116/116/116 120/120/120 +f 119/119/119 118/118/118 124/124/124 +f 124/124/124 118/118/118 123/123/123 +f 125/125/125 119/119/119 124/124/124 +f 126/126/126 123/123/123 120/120/120 +f 126/126/126 120/120/120 121/121/121 +f 124/124/124 123/123/123 126/126/126 +f 127/127/127 121/121/121 122/122/122 +f 127/127/127 126/126/126 121/121/121 +f 128/128/128 127/127/127 122/122/122 +f 125/125/125 124/124/124 129/129/129 +f 129/129/129 124/124/124 126/126/126 +f 129/129/129 126/126/126 127/127/127 +f 130/130/130 125/125/125 129/129/129 +f 131/131/131 127/127/127 128/128/128 +f 131/131/131 129/129/129 127/127/127 +f 130/130/130 129/129/129 131/131/131 +f 132/132/132 131/131/131 128/128/128 +f 133/133/133 130/130/130 131/131/131 +f 133/133/133 131/131/131 132/132/132 +f 134/134/134 133/133/133 132/132/132 +f 137/137/137 136/136/136 135/135/135 +f 138/138/138 137/137/137 135/135/135 +f 138/138/138 135/135/135 139/139/139 +f 140/140/140 138/138/138 139/139/139 +f 140/140/140 139/139/139 141/141/141 +f 142/142/142 140/140/140 141/141/141 +f 142/142/142 141/141/141 143/143/143 +f 144/144/144 142/142/142 143/143/143 +f 144/144/144 143/143/143 145/145/145 +f 146/146/146 144/144/144 145/145/145 +f 146/146/146 145/145/145 147/147/147 +f 148/148/148 146/146/146 147/147/147 +f 151/151/151 150/150/150 149/149/149 +f 152/152/152 151/151/151 149/149/149 +f 152/152/152 149/149/149 153/153/153 +f 154/154/154 152/152/152 153/153/153 +f 154/154/154 153/153/153 155/155/155 +f 156/156/156 154/154/154 155/155/155 +f 156/156/156 155/155/155 157/157/157 +f 158/158/158 156/156/156 157/157/157 +f 158/158/158 157/157/157 159/159/159 +f 160/160/160 158/158/158 159/159/159 +f 160/160/160 159/159/159 161/161/161 +f 162/162/162 160/160/160 161/161/161 +f 165/165/165 164/164/164 163/163/163 +f 164/164/164 166/166/166 163/163/163 +f 166/166/166 167/167/167 163/163/163 +f 167/167/167 168/168/168 163/163/163 +f 168/168/168 169/169/169 163/163/163 +f 169/169/169 170/170/170 163/163/163 +f 173/173/173 172/172/172 171/171/171 +f 174/174/174 173/173/173 171/171/171 +f 175/175/175 171/171/171 172/172/172 +f 171/171/171 176/176/176 174/174/174 +f 171/171/171 175/175/175 177/177/177 +f 178/178/178 176/176/176 171/171/171 +f 179/179/179 171/171/171 177/177/177 +f 180/180/180 178/178/178 171/171/171 +f 171/171/171 179/179/179 181/181/181 +f 182/182/182 180/180/180 171/171/171 +f 183/183/183 171/171/171 181/181/181 +f 183/183/183 182/182/182 171/171/171 diff --git a/public/ghosts/mugshot/GhostMugshot_Angry.png b/public/ghosts/mugshot/GhostMugshot_Angry.png new file mode 100644 index 0000000..b1f5de2 Binary files /dev/null and b/public/ghosts/mugshot/GhostMugshot_Angry.png differ diff --git a/public/ghosts/mugshot/GhostMugshot_Background.png b/public/ghosts/mugshot/GhostMugshot_Background.png new file mode 100644 index 0000000..a55b83c Binary files /dev/null and b/public/ghosts/mugshot/GhostMugshot_Background.png differ diff --git a/public/hunt.html b/public/hunt.html new file mode 100644 index 0000000..a2e6c88 --- /dev/null +++ b/public/hunt.html @@ -0,0 +1,332 @@ + + + + + +Newbury Nights - Hunt + + + + +
+ +
+
+
Haunt 0%
+
0
caught · 0 pts
+ +
+ +
Lure
+
+
+
+
+
+ +
+
+ +
+
A spiritual successor - fan tribute
+

NewburyNights

+

Raise your phone to the room. Spirits gather in the dark - pick a lure colour, + aim, and charge your shot to catch them before the haunt overtakes the night.

+ + +
+
Fan-made tribute. Not affiliated with or endorsed by the LEGO Group.
+ + + + + diff --git a/public/hunt.js b/public/hunt.js new file mode 100644 index 0000000..cb92354 --- /dev/null +++ b/public/hunt.js @@ -0,0 +1,155 @@ +/** + * hunt.js — Newbury Nights hunt loop (Phase 3, standalone demo) + * + * Core v1 mechanics: + * - Spawn: rarity-weighted draw from the roster, placed in a forward arc. + * - Colour lure: the wheel sets the "lured" colour; matching ghosts spawn more + * often and are worth more, mirroring the original's GhostColor mechanic. + * - Capture: aim the reticle, hold to charge, release to fire. Charge time + * scales with the ghost's chargePips; misses let it flee (escape timing). + * - Hauntometer: every active/escaped ghost raises the meter; captures lower + * it. As the meter climbs, spawn rate and rarity bias escalate — the session + * gets harder the longer the haunt goes unchecked. + * + * Engine-agnostic: takes a THREE instance + a scene + the createGhostVisual + * factory. No AR/session code here — the page wires camera/anchor. + */ + +import { createGhostVisual } from './ghost-visual.js'; + +const RARITY_BASE_WEIGHT = { Common: 50, Rare: 30, Epic: 15, Legendary: 5 }; +const RARITY_SCORE = { Common: 10, Rare: 25, Epic: 60, Legendary: 150 }; +const COLORS = ['Red', 'Blue', 'Yellow']; + +export function createHunt(THREE, scene, opts = {}) { + const roster = opts.roster || []; + const maxActive = opts.maxActive ?? 4; + const spawnArcDeg = opts.spawnArcDeg ?? 120; // ±60° + const onEvent = opts.onEvent || (() => {}); + + let luredColor = null; // set by the colour wheel + let haunt = 0; // 0..100 hauntometer + let captured = []; // captured ghost ids this session + const active = new Map(); // id -> { ghost, visual, hp, state, fleeAt } + let nextId = 1; + let spawnTimer = 0; + + // --- weighted roster draw, biased by lure + haunt escalation --- + function pickGhost() { + // haunt escalation: higher haunt tilts the draw toward rarer ghosts + const escal = 1 + (haunt / 100) * 1.5; // up to 2.5x rare bias + const pool = []; + for (const g of roster) { + let w = RARITY_BASE_WEIGHT[g.rarity] || 1; + // rarer ghosts get heavier as haunt climbs + if (g.rarity !== 'Common') w *= escal; + // lure: matching colour spawns ~2x more often + if (luredColor && g.color === luredColor) w *= 2; + pool.push([g, w]); + } + const total = pool.reduce((s, [, w]) => s + w, 0); + let r = Math.random() * total; + for (const [g, w] of pool) { r -= w; if (r <= 0) return g; } + return pool[pool.length - 1][0]; + } + + function placeInArc(obj) { + const half = (spawnArcDeg * Math.PI / 180) / 2; + const yaw = (Math.random() * 2 - 1) * half; // forward-facing arc + const pitch = (Math.random() * 0.5 - 0.15); // slightly varied height + const dist = 2.2 + Math.random() * 1.8; // 2.2-4m out + obj.position.set( + Math.sin(yaw) * dist, + 0.2 + Math.sin(pitch) * 1.2, + -Math.cos(yaw) * dist + ); + } + + function spawn() { + if (active.size >= maxActive) return; + const g = pickGhost(); + const visual = createGhostVisual(THREE, { color: g.color, fx: opts.fx !== false }); + placeInArc(visual.object3d); + scene.add(visual.object3d); + const id = nextId++; + // hp derived from health pips/stat; charge to capture scales with chargePips + const hp = (g.healthMax || 300) / 100; // ~2.6-4.5 + active.set(id, { + ghost: g, visual, hp, maxHp: hp, + state: 'idle', + fleeAt: performance.now() + (6000 + Math.random() * 4000), // escapes if ignored + }); + haunt = Math.min(100, haunt + 4); // presence raises the meter + onEvent({ type: 'spawn', id, ghost: g, haunt }); + } + + // --- capture attempt: called by the page with a charge level 0..1 --- + function fireAt(id, charge) { + const a = active.get(id); + if (!a) return { hit: false }; + // damage = charge, but the ghost needs enough charge relative to chargePips + const needed = 0.4 + (a.ghost.chargePips || 2) * 0.12; // 0.5-1.0 + const dmg = charge >= needed ? charge * 1.6 : charge * 0.4; + a.hp -= dmg; + if (a.hp <= 0) return capture(id); + a.state = 'hit'; + onEvent({ type: 'hit', id, ghost: a.ghost, hpFrac: Math.max(0, a.hp / a.maxHp) }); + return { hit: true, captured: false }; + } + + function capture(id) { + const a = active.get(id); + if (!a) return { hit: false }; + a.visual.setState('capture'); + const colorBonus = luredColor && a.ghost.color === luredColor ? 1.5 : 1; + const score = Math.round((RARITY_SCORE[a.ghost.rarity] || 10) * colorBonus); + captured.push(a.ghost.id); + haunt = Math.max(0, haunt - 10); // captures calm the haunt + setTimeout(() => { scene.remove(a.visual.object3d); a.visual.dispose(); }, 500); + active.delete(id); + onEvent({ type: 'capture', id, ghost: a.ghost, score, captured: captured.length, haunt }); + return { hit: true, captured: true, score }; + } + + function flee(id) { + const a = active.get(id); + if (!a) return; + a.visual.setState('capture'); // reuse shrink-out + setTimeout(() => { scene.remove(a.visual.object3d); a.visual.dispose(); }, 400); + active.delete(id); + haunt = Math.min(100, haunt + 8); // an escape feeds the haunt + onEvent({ type: 'flee', id, ghost: a.ghost, haunt }); + } + + function setLure(color) { + luredColor = COLORS.includes(color) ? color : null; + onEvent({ type: 'lure', color: luredColor }); + } + + function update(dt, elapsed) { + // spawn cadence accelerates with haunt + const interval = Math.max(1.2, 4.5 - (haunt / 100) * 3.0); + spawnTimer += dt; + if (spawnTimer >= interval) { spawnTimer = 0; spawn(); } + + const now = performance.now(); + for (const [id, a] of active) { + a.visual.update(dt, elapsed); + if (now >= a.fleeAt) flee(id); + } + } + + function listActive() { + return [...active.entries()].map(([id, a]) => ({ + id, ghost: a.ghost, object3d: a.visual.object3d, + hpFrac: Math.max(0, a.hp / a.maxHp), + })); + } + + return { + update, spawn, fireAt, capture, flee, setLure, listActive, + get haunt() { return haunt; }, + get captured() { return captured.slice(); }, + get luredColor() { return luredColor; }, + }; +} diff --git a/public/play.html b/public/play.html new file mode 100644 index 0000000..fb8c644 --- /dev/null +++ b/public/play.html @@ -0,0 +1,47 @@ + + + + + +Newbury Nights + + + +
A spiritual successor · fan tribute
+

NewburyNights

+
+

The town doesn't sleep after dark. Raise your phone, lure the spirits by colour, + and catch them before the haunt takes hold.

+
+ Begin the hunt + About this tribute +
+ + + diff --git a/server.js b/server.js index f0b5241..222ef89 100644 --- a/server.js +++ b/server.js @@ -41,6 +41,17 @@ app.get('/preview', (_req, res) => { }); // JSON error handler (multer + thrown errors). + +// Hunt page (Phase 3 AR ghost hunt; standalone, no auth). +app.get('/hunt', (_req, res) => { + res.sendFile(join(__dirname, 'public', 'hunt.html')); +}); + +// Landing / launch page. +app.get('/play', (_req, res) => { + res.sendFile(join(__dirname, 'public', 'play.html')); +}); + app.use((err, _req, res, _next) => { console.error(err); res.status(err.status || 500).json({ error: err.message || 'server error' });