diff --git a/plant-eyes/logic.ss b/plant-eyes/logic.ss index 4f5774b..65d63dc 100644 --- a/plant-eyes/logic.ss +++ b/plant-eyes/logic.ss @@ -6,7 +6,7 @@ (define branch-width-reduction 0.5) (define twig-jitter 0.1) (define branch-jitter 0.5) -(define max-twig-points 15) +(define max-twig-points 10) (define start-twig-dist 0.05) (define start-twig-width 0.1) (define default-max-twigs 10) @@ -43,11 +43,12 @@ (else (cons (car l) (flatten (cdr l)))))) (define/pubment (update) ; need to augement this if we have child logic objects, - (let ((m messages)) ; and call update on them too. + (let ((l (inner '() update)) ; and call update on them too. + (m messages)) (set! messages '()) (append m - (flatten (inner '() update))))) ; the augmented method gets called here + (flatten l)))) ; the augmented method gets called here (super-new))) @@ -85,6 +86,9 @@ (define/public (set-id! s) (set! id s)) + + (define/public (get-energy-level) + energy-level) (define/public (get-type) type) @@ -248,14 +252,22 @@ ; returns true if it's succeded (define/public (check-nutrient nutrient) ; check each point in our twig - (let* ((found (foldl + (let* ((i -1) (found (foldl (lambda (point found) + (set! i (+ i 1)) ; if we havent found anything yet and it's intersecting (cond ((and (not found) (< (vdist (vadd (send plant get-pos) point) (send nutrient get-pos)) (+ width (send nutrient get-size)))) (set! energy-level (+ energy-level 1)) (send nutrient deplete) + (send-message 'deplete-nutrient + (list + (list 'plant-id (send plant get-id)) + (list 'nutrient-id (send nutrient get-id)) + (list 'amount nutrient-field-deplete-loss) + (list 'twig-id id) + (list 'twig-point i))) #t) (else #f))) #f @@ -273,6 +285,13 @@ (define/augment (update) (set! energy-level (- energy-level twig-energy-loss)) + (printf "~a~n" energy-level) + (when (< energy-level 0) + (printf "sending~n") + (send-message 'shrink-twig + (list (list 'plant-id (send plant get-id)) + (list 'twig-id id)))) + (append (map (lambda (ornament) @@ -345,13 +364,17 @@ ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ; nutrient fields are areas where nutrients exist -(define nutrient-field-logic% +(define nutrient-logic% (class game-logic-object% (init-field + (id #f) (pos (vector 0 0 0)) (size 0)) - (define/public (get-pos) + (define/public (get-id) + id) + + (define/public (get-pos) pos) (define/public (deplete) @@ -428,26 +451,19 @@ (foldl (lambda (twig found) (if (not found) - (send twig check-pickup pickup) + (send (cadr twig) check-pickup pickup) #f)) #f twigs)) - - (define/public (destroy-twig twig) - (send-message 'destroy-branch-twig (list - (list 'plant-id id) - (list 'twig-id (send twig get-id)) - ))) - - ; a util to keep a fixed size list of twigs, calling destroy twig when needed. - (define (cons-twig thing in count out) - (cond - ((null? in) - (cons thing out)) - ((zero? count) - (destroy-twig (car in)) - (cons thing out)) - (else (cons-twig thing (cdr in) (- count 1) (append out (list (car in))))))) + + (define/public (check-nutrient nutrient) + (foldl + (lambda (twig found) + (if (not found) + (send (cadr twig) check-nutrient nutrient) + #f)) + #f + twigs)) (define/public (add-twig twig) (send twig set-id! (get-next-twig-id)) @@ -458,7 +474,7 @@ (list 'plant-id id) (list 'amount grow-amount))) (send-message 'new-twig (send twig get-desc-list)) - (set! twigs (cons-twig twig twigs max-twigs '()))) + (set! twigs (cons (list (send twig get-id) twig) twigs))) (define/public (add-sub-twig ptwig point-index dir) (set! leader-twig (send ptwig add-twig point-index dir)) @@ -466,16 +482,16 @@ (define/public (get-random-twig) (if (not (null? twigs)) - (send (choose twigs) get-random-twig) + (send (cadr (choose twigs)) get-random-twig) #f)) (define/public (get-twig-from-dir dir) (let ((dir (vnormalise dir))) (cadr (foldl (lambda (twig l) - (let ((d (vdot (vnormalise (send twig get-dir)) dir))) + (let ((d (vdot (vnormalise (send (cadr twig) get-dir)) dir))) (if (> d (car l)) - (list d twig) + (list d (cadr twig)) l))) (list -99 #f) twigs)))) @@ -491,7 +507,7 @@ (append (map (lambda (twig) - (send twig serialise)) + (send (cadr twig) serialise)) twigs)))) (define/augment (update) @@ -519,9 +535,17 @@ point-index)) (else (error "property not understood " property))))))))) + + + (for-each + (lambda (twig) + (when (< (send (cadr twig) get-energy-level) 0) + (set! twigs (assoc-remove (car twig) twigs)))) + twigs) + (map (lambda (twig) - (send twig update)) + (send (cadr twig) update)) twigs)) (super-new))) @@ -533,6 +557,7 @@ (field (plants '()) (pickups '()) + (nutrients '()) (player #f)) (inherit send-message) @@ -545,7 +570,15 @@ (add-pickup (make-object pickup-logic% i (list-ref pickup 0) (list-ref pickup 2))) (set! i (+ i 1))) - pickups)))) + pickups))) + + (let ((i 0)) + (for-each + (lambda (nutrient) + (add-nutrient (make-object nutrient-logic% i (list-ref nutrient 2) + (list-ref nutrient 3))) + (set! i (+ i 1))) + (list-ref world-list 2)))) (define/public (add-player plant) (printf "new player plant added ~a~n" (send plant get-id)) @@ -574,6 +607,14 @@ (list 'type (send pickup get-type)) (list 'pos (send pickup get-pos)))) (set! pickups (cons pickup pickups))) + + (define/public (add-nutrient nutrient) + (send-message 'new-nutrient + (list + (list 'nutrient-id (send nutrient get-id)) + (list 'pos (send nutrient get-pos)) + (list 'size (send nutrient get-size)))) + (set! nutrients (cons nutrient nutrients))) (define/public (serialise) (send player serialise)) @@ -588,7 +629,15 @@ (lambda (plant) (send plant check-pickup pickup)) plants)) - pickups) + pickups) + + (for-each + (lambda (nutrient) + (for-each + (lambda (plant) + (send plant check-nutrient nutrient)) + plants)) + nutrients) ; remove the pickups that have been 'picked up' (set! pickups (filter @@ -596,9 +645,14 @@ (not (send pickup picked-up?))) pickups)) - (map + (append + (map (lambda (plant) (send plant update)) - plants)) + plants) + (map + (lambda (nutrient) + (send nutrient update)) + nutrients))) (super-new))) diff --git a/plant-eyes/plant-eyes.scm b/plant-eyes/plant-eyes.scm index 9953bf5..abf5a78 100644 --- a/plant-eyes/plant-eyes.scm +++ b/plant-eyes/plant-eyes.scm @@ -36,10 +36,12 @@ ; side - eg. lsystem, or different methods per plant (or per twig even) (define world-list (let* ((f (open-input-file "world.txt")) - (o (list (read f)(read f)(read f)))) + (o (list (read f)(read f)(read f)(read f)))) (close-input-port f) o)) +(printf "~a~n" (length world-list)) + (clear) (clear-shader-cache) diff --git a/plant-eyes/view.ss b/plant-eyes/view.ss index 5ff410b..2cf7ea2 100644 --- a/plant-eyes/view.ss +++ b/plant-eyes/view.ss @@ -4,7 +4,7 @@ ; the fluxus code to make things look the way they do -(define debug-messages #f) ; prints out all the messages sent to the renderer +(define debug-messages #t) ; prints out all the messages sent to the renderer (define audio-on #t) (define (ornament-colour) (vector 0.5 1 0.4)) @@ -245,6 +245,34 @@ ;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +(define nutrient-view% + (class object% + (init-field + (id -1) + (pos (vector 0 0 0)) + (size 0)) + + (field + (root (with-state + (translate pos) + (scale size) + (build-sphere 10 10)))) + + (define/public (deplete amount) + (when (> size 0) + (set! size (- size amount)) + (with-primitive root + (identity) + (translate pos) + (scale size)))) + + (define/public (update t d) + 0) + + (super-new))) + +;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + (define twig-view% (class object% (init-field @@ -265,11 +293,16 @@ (markers '()) (grow-t -1) (marker-destroy-t 0) - (grow-speed default-grow-speed)) + (grow-speed default-grow-speed) + (shrink-t 0) + (delme #f)) (define/public (get-id) id) + (define/public (delme?) + delme) + (define/public (get-dir) dir) @@ -315,6 +348,9 @@ (define/public (start-growing) (set! grow-t 0) (set! markers (cons (build-locator) markers))) + + (define/public (start-shrinking) + (set! shrink-t (if (growing?) grow-t grow-overshoot))) (define/pubment (add-point point width) (play-sound "snd/event01.wav" point (+ 0.1 (rndf)) 0.3) @@ -355,7 +391,13 @@ (lambda (ornament) (send (cadr ornament) update t d)) ornaments) - + + (when (> shrink-t 0) + (set! shrink-t (- shrink-t (* d grow-speed)))) + + (when (< shrink-t 0) + (set! delme #t)) + (inner (void) update t d) (when (and (not (eq? grow-t -1)) (< grow-t (+ num-points grow-overshoot))) @@ -434,7 +476,7 @@ (class twig-view% (inherit growing?) - (inherit-field index radius num-points pos dir col tex grow-t) + (inherit-field index radius num-points pos dir col tex grow-t shrink-t) (field (profile '()) @@ -483,6 +525,10 @@ (when (and (not (eq? grow-t -1)) (not (eq? grow-t 999))) (with-primitive root (partial-extrude grow-t profile path widths (vector 1 0 0) 0.05))) + + (when (> shrink-t 0) + (with-primitive root + (partial-extrude shrink-t profile path widths (vector 1 0 0) 0.05))) #;(when (not (growing?)) (with-primitive root @@ -578,11 +624,12 @@ #f))) (define/public (destroy-branch-twig twig-id) - (for-each - (lambda (twig-id) - (destroy-branch-twig twig-id)) - (send (get-twig twig-id) get-child-twig-ids)) - (send (get-twig twig-id) destroy-twig) + (when (get-twig twig-id) ; might have destroyed itself already + (for-each + (lambda (twig-id) + (destroy-branch-twig twig-id)) + (send (get-twig twig-id) get-child-twig-ids)) + (send (get-twig twig-id) destroy-twig)) (set! twigs (assoc-remove twig-id twigs))) (define/public (destroy-plant) @@ -591,6 +638,13 @@ (lambda (twig) (destroy-branch-twig (car twig))) twigs)) + + (define/public (shrink-twig twig-id) + (send (get-twig twig-id) start-shrinking) + (for-each + (lambda (twig-id) + (shrink-twig twig-id)) + (send (get-twig twig-id) get-child-twig-ids))) (define/public (add-twig parent-twig-id point-index twig) (let ((ptwig (get-twig parent-twig-id))) @@ -630,6 +684,15 @@ (send (cadr twig) set-excitations! a b)) twigs)) + (define/public (nutrient-absorb twig-id twig-point) + (with-primitive nutrients + (let ((p (random (pdata-size)))) + (pdata-set! "twig" p twig-id) + (pdata-set! "point" p twig-point) + (pdata-set! "p" p (send (get-twig twig-id) get-point twig-point)) + (pdata-set! "offset" p (vmul (srndvec) ( + send (get-twig twig-id) get-width twig-point)))))) + (define/public (update-nutrients t d) (when (not (null? twigs)) (with-primitive nutrients @@ -638,27 +701,27 @@ (let* ((twig-id (inexact->exact twig-id)) (twig (get-twig twig-id)) (point (inexact->exact point))) + (if twig (cond - ((or (< point 1) (not twig)) - (let* ((new-twig (choose twigs)) - (num-points (send (cadr new-twig) get-num-points)) - (new-point (if (zero? num-points) 0 (random num-points)))) - (pdata-set! "twig" i (car new-twig)) - (pdata-set! "point" i new-point) - (pdata-set! "offset" i (vmix offset (vmul (srndvec) (send (cadr new-twig) get-width new-point)) 0.2)) - (send (cadr new-twig) get-point new-point))) + ((< point 1) (pdata-set! "twig" i -1) (vector 0 0 0)) ((< (vdist (vadd (send twig get-point point) offset) p) 0.1) (pdata-set! "point" i (- point 1)) (vadd p (vmul (vnormalise (vsub (vadd (send twig get-point (- point 1)) offset) p)) (* speed d)))) (else - (vadd p (vmul (vnormalise (vsub (vadd (send twig get-point point) offset) p)) (* speed d))))))) + (vadd p (vmul (vnormalise (vsub (vadd (send twig get-point point) offset) p)) (* speed d))))) + (vector 0 0 0)))) "p" "twig" "point" "offset" "speed")))) (define/public (update t d) (update-nutrients t d) (with-primitive seed (scale (+ 1 (* 0.001 (sin (* 2 t)))))) - + (for-each + (lambda (twig) + (when (send (cadr twig) delme?) + (destroy-branch-twig (car twig)))) + twigs) + (for-each (lambda (twig) (send (cadr twig) update t d)) @@ -726,6 +789,7 @@ (field (plants '()) ; map of ids -> plants (pickups '()) ; map of ids -> pickups + (nutrients '()) ; map of ids -> nutrients (camera-dist 1) (env-root (with-state (scale 1000) (build-locator))) (root-camera-t 0) @@ -789,7 +853,7 @@ (load-primitive (list-ref stone 1))))) (with-primitive p (apply-transform) (recalc-bb)) ; apply the transform to speed up the ray tracing, don't have to tranform the ray into object space p)) - (list-ref world-list 2)))) + (list-ref world-list 3)))) (define/public (get-stones) stones) @@ -820,18 +884,33 @@ (define/public (get-pickup pickup-id) (cadr (assq pickup-id pickups))) + + (define/public (get-nutrient nutrient-id) + (cadr (assq nutrient-id nutrients))) (define/public (add-pickup pickup-id type pos) (set! pickups (cons (list pickup-id (make-object pickup-view% pickup-id type pos)) pickups))) + + (define/public (add-nutrient nutrient-id pos size) + (set! nutrients (cons (list nutrient-id (make-object nutrient-view% nutrient-id pos size)) nutrients))) (define/public (pick-up-pickup pickup-id) (send (get-pickup pickup-id) pick-up) (set! pickups (assoc-remove pickup-id pickups))) + (define/public (deplete-nutrient nutrient-id amount plant-id twig-id twig-point) + (send (get-nutrient nutrient-id) deplete amount) + (when (get-plant plant-id) + (send (get-plant plant-id) nutrient-absorb twig-id twig-point))) + (define/public (add-ornament plant-id twig-id point-index property) (when (get-plant plant-id) (send (get-plant plant-id) add-ornament twig-id point-index property))) - + + (define/public (shrink-twig plant-id twig-id) + (when (get-plant plant-id) + (send (get-plant plant-id) shrink-twig twig-id))) + (define/public (set-excitations! a b) (for-each (lambda (plant) @@ -922,11 +1001,31 @@ (send msg get-data 'pickup-id) (send msg get-data 'type) (send msg get-data 'pos))) + + ((eq? (send msg get-name) 'new-nutrient) + (add-nutrient + (send msg get-data 'nutrient-id) + (send msg get-data 'pos) + (send msg get-data 'size))) ((eq? (send msg get-name) 'pick-up-pickup) (pick-up-pickup (send msg get-data 'pickup-id))) + ((eq? (send msg get-name) 'deplete-nutrient) + (deplete-nutrient + (send msg get-data 'nutrient-id) + (send msg get-data 'amount) + (send msg get-data 'plant-id) + (send msg get-data 'twig-id) + (send msg get-data 'twig-point))) + + ((eq? (send msg get-name) 'shrink-twig) + (printf "hello~n") + (shrink-twig + (send msg get-data 'plant-id) + (send msg get-data 'twig-id))) + ((eq? (send msg get-name) 'new-ornament) (add-ornament (send msg get-data 'plant-id) diff --git a/plant-eyes/world-build.scm b/plant-eyes/world-build.scm index 550c5a9..01982ef 100644 --- a/plant-eyes/world-build.scm +++ b/plant-eyes/world-build.scm @@ -28,6 +28,7 @@ (let ((f (open-output-file fn))) (write (extract-list 'seed s) f) (write (extract-list 'pickup s) f) + (write (extract-list 'nutrients s) f) (write (extract-list 'stone s) f) (close-output-port f))) @@ -35,7 +36,7 @@ (list-ref l (random (length l)))) -(define (init num-seeds num-pickups num-stones area size) +(define (init num-seeds num-pickups num-nutrients num-stones area size) (append (build-list num-seeds (lambda (_) @@ -51,6 +52,13 @@ (vmul (srndvec) (* 150 area)) 0.5 (vmul (rndvec) 360) 0)))) + + (build-list num-nutrients + (lambda (_) + (make-ob 'nutrients 'nutrients "meshes/seed.obj" + (vmul (srndvec) (* 150 area)) + (* (rndf) 10) + (vmul (rndvec) 0) 0))) (build-list num-stones @@ -68,8 +76,9 @@ (cond ((eq? (ob-type ob) 'seed) (colour (vector 0 1 0))) ((eq? (ob-type ob) 'pickup) (backfacecull 0) (hint-unlit) (colour (vector 1 1 0))) - ((eq? (ob-type ob) 'stone) (colour (vector 1 0.5 0)))) - (load-primitive (ob-mesh ob)))) + ((eq? (ob-type ob) 'stone) (colour (vector 1 0.5 0))) + ((eq? (ob-type ob) 'nutrients) (hint-unlit) (colour (vector 1 1 1)))) + (load-primitive (ob-mesh ob)))) (when (eq? (ob-type ob) 'stone) (with-primitive (ob-root ob) (hide 1)))) l)) @@ -100,7 +109,7 @@ (clear) (clear-colour 0) -(define s (init 5 200 200 1 10)) +(define s (init 5 200 100 100 1 10)) (build s) (define l (make-light 'spot 'free)) diff --git a/plant-eyes/world.txt b/plant-eyes/world.txt index a2fdd58..934f16a 100644 --- a/plant-eyes/world.txt +++ b/plant-eyes/world.txt @@ -1 +1 @@ -((seed "meshes/seed.obj" #(-81.72541809082031 -84.8380126953125 127.40177917480469) 6.0 #(0.0 0.0 0.0)) (seed "meshes/seed.obj" #(24.08915901184082 -2.1297128200531006 80.8768310546875) 6.0 #(0.0 0.0 0.0)) (seed "meshes/seed.obj" #(-26.160999298095703 -96.24223327636719 93.4775161743164) 6.0 #(0.0 0.0 0.0)) (seed "meshes/seed.obj" #(-80.90771484375 -0.910554051399231 -83.28874969482422) 6.0 #(0.0 0.0 0.0)) (seed "meshes/seed.obj" #(93.18183135986328 -65.59686279296875 -165.16770935058594) 6.0 #(0.0 0.0 0.0)))((horn "meshes/horn.obj" #(111.5460205078125 -0.2764207124710083 -172.26817321777344) 0.5 #(354.1679992675781 94.53600311279297 241.41600036621094)) (horn "meshes/horn.obj" #(50.934471130371094 -53.26040267944336 -15.515227317810059) 0.5 #(168.44400024414062 247.17601013183594 259.3080139160156)) (leaf "meshes/leaf.obj" #(28.739667892456055 -20.175119400024414 107.55384826660156) 0.5 #(168.37200927734375 229.7519989013672 170.4239959716797)) (leaf "meshes/leaf.obj" #(158.1671142578125 -15.874405860900879 50.858612060546875) 0.5 #(207.21600341796875 40.788002014160156 188.09999084472656)) (horn "meshes/horn.obj" #(-131.89151000976562 -78.00202941894531 -57.77957534790039) 0.5 #(115.23600006103516 323.6399841308594 276.1199951171875)) (leaf "meshes/leaf.obj" #(-8.942765235900879 -111.14691162109375 -57.26261520385742) 0.5 #(186.73199462890625 86.7239990234375 338.0760192871094)) (leaf "meshes/leaf.obj" #(21.3494873046875 -52.489952087402344 -29.083730697631836) 0.5 #(256.0679931640625 355.6080017089844 135.2519989013672)) (leaf "meshes/leaf.obj" #(-82.50788879394531 -41.26772689819336 -103.51490783691406) 0.5 #(318.6360168457031 95.14799499511719 21.63599967956543)) (horn "meshes/horn.obj" #(152.60301208496094 -30.020221710205078 52.64500427246094) 0.5 #(46.36800003051758 43.380001068115234 210.34799194335938)) (horn "meshes/horn.obj" #(92.20771026611328 -67.17474365234375 88.28669738769531) 0.5 #(196.74000549316406 337.176025390625 229.2480010986328)) (leaf "meshes/leaf.obj" #(-41.22397232055664 -62.590824127197266 6.292181015014648) 0.5 #(225.1800079345703 173.6999969482422 218.87998962402344)) (leaf "meshes/leaf.obj" #(126.332275390625 -13.203409194946289 25.42081642150879) 0.5 #(323.4960021972656 2.0160000324249268 134.67599487304688)) (leaf "meshes/leaf.obj" #(29.254358291625977 -123.30874633789062 109.11176300048828) 0.5 #(253.4759979248047 223.77598571777344 182.08799743652344)) (leaf "meshes/leaf.obj" #(68.5619125366211 -12.178365707397461 60.62520217895508) 0.5 #(89.27999877929688 355.8240051269531 83.91600036621094)) (horn "meshes/horn.obj" #(60.64841842651367 -7.241025924682617 197.11219787597656) 0.5 #(150.8040008544922 312.6239929199219 85.75199890136719)) (leaf "meshes/leaf.obj" #(-1.8034944534301758 -110.41077423095703 -45.779319763183594) 0.5 #(268.2720031738281 237.74398803710938 258.73199462890625)) (leaf "meshes/leaf.obj" #(-56.86463928222656 -114.10888671875 85.55152893066406) 0.5 #(33.22800064086914 260.7480163574219 132.87600708007812)) (leaf "meshes/leaf.obj" #(55.987518310546875 -54.785457611083984 38.499488830566406) 0.5 #(138.74400329589844 101.77200317382812 25.416000366210938)) (leaf "meshes/leaf.obj" #(-134.17347717285156 -14.523778915405273 29.461505889892578) 0.5 #(208.2239990234375 66.52799987792969 247.2119903564453)) (leaf "meshes/leaf.obj" #(68.9424057006836 -18.714200973510742 58.76740646362305) 0.5 #(234.25198364257812 219.8159942626953 171.4320068359375)) (horn "meshes/horn.obj" #(-65.38411712646484 -38.7094841003418 -8.120939254760742) 0.5 #(78.22799682617188 104.94000244140625 300.1319885253906)) (leaf "meshes/leaf.obj" #(112.51148986816406 -50.74410629272461 -9.907159805297852) 0.5 #(232.343994140625 78.73200225830078 166.10400390625)) (horn "meshes/horn.obj" #(111.47195434570312 -19.520017623901367 39.941734313964844) 0.5 #(114.55199432373047 26.496000289916992 26.423999786376953)) (horn "meshes/horn.obj" #(26.16539192199707 -16.90143394470215 -57.82270431518555) 0.5 #(203.36399841308594 354.02398681640625 34.163997650146484)) (leaf "meshes/leaf.obj" #(-74.78124237060547 -51.31723403930664 32.166969299316406) 0.5 #(312.4079895019531 301.71600341796875 199.97999572753906)) (horn "meshes/horn.obj" #(137.47520446777344 -7.2652411460876465 -158.84666442871094) 0.5 #(346.7519836425781 186.26400756835938 184.10398864746094)) (leaf "meshes/leaf.obj" #(25.448848724365234 -16.808002471923828 109.94844818115234) 0.5 #(150.26400756835938 212.39999389648438 340.5240173339844)) (leaf "meshes/leaf.obj" #(120.71537780761719 -8.563745498657227 37.38623046875) 0.5 #(273.2040100097656 111.67200469970703 226.04400634765625)) (leaf "meshes/leaf.obj" #(118.20726776123047 -43.910377502441406 -128.3925323486328) 0.5 #(270.25201416015625 289.36798095703125 69.91199493408203)) (leaf "meshes/leaf.obj" #(-67.48555755615234 -46.29762649536133 155.12533569335938) 0.5 #(86.58000183105469 333.39599609375 183.85198974609375)) (leaf "meshes/leaf.obj" #(-41.02777099609375 -46.601661682128906 12.864587783813477) 0.5 #(124.05599975585938 6.588000297546387 106.66799926757812)) (leaf "meshes/leaf.obj" #(21.539289474487305 -19.285987854003906 -59.2089958190918) 0.5 #(275.4720153808594 213.98399353027344 28.6560001373291)) (horn "meshes/horn.obj" #(22.84632682800293 -17.395286560058594 122.98542785644531) 0.5 #(330.083984375 188.1719970703125 191.08799743652344)) (horn "meshes/horn.obj" #(19.450599670410156 -14.43306827545166 156.9861297607422) 0.5 #(103.5719985961914 115.19999694824219 204.7320098876953)) (horn "meshes/horn.obj" #(115.6779556274414 -1.569461464881897 42.80533218383789) 0.5 #(148.2480010986328 248.21998596191406 299.9519958496094)) (horn "meshes/horn.obj" #(4.483608722686768 -142.82247924804688 -46.727352142333984) 0.5 #(302.50799560546875 101.052001953125 239.40000915527344)) (leaf "meshes/leaf.obj" #(-129.6789093017578 -23.43865966796875 56.67942428588867) 0.5 #(304.2359924316406 276.33599853515625 114.76799774169922)) (leaf "meshes/leaf.obj" #(35.690860748291016 -30.865095138549805 90.7590560913086) 0.5 #(269.02801513671875 268.8479919433594 215.1719970703125)) (horn "meshes/horn.obj" #(21.19115447998047 -18.31264305114746 -66.55684661865234) 0.5 #(245.052001953125 260.9639892578125 228.05999755859375)) (leaf "meshes/leaf.obj" #(-32.289390563964844 -39.12412643432617 -94.4767074584961) 0.5 #(306.57598876953125 173.4840087890625 320.7959899902344)) (horn "meshes/horn.obj" #(55.33070373535156 -7.544981956481934 -120.63446807861328) 0.5 #(188.13600158691406 26.099998474121094 357.3719787597656)) (horn "meshes/horn.obj" #(-42.15126419067383 -16.929088592529297 -61.33071517944336) 0.5 #(47.08799743652344 123.37200164794922 27.97199821472168)) (horn "meshes/horn.obj" #(-177.58998107910156 -52.084693908691406 -89.56224060058594) 0.5 #(11.844000816345215 198.6840057373047 262.1159973144531)) (leaf "meshes/leaf.obj" #(-34.42494201660156 -57.95944595336914 95.29938507080078) 0.5 #(30.743999481201172 167.0760040283203 29.95199966430664)) (horn "meshes/horn.obj" #(59.170223236083984 -46.627498626708984 -24.95624542236328) 0.5 #(298.2959899902344 69.2280044555664 267.76800537109375)) (horn "meshes/horn.obj" #(127.59122467041016 -5.801502704620361 26.68130874633789) 0.5 #(67.03199768066406 337.6080017089844 195.51600646972656)) (horn "meshes/horn.obj" #(113.80059814453125 -92.28265380859375 -16.452733993530273) 0.5 #(272.3399963378906 328.2120056152344 146.91600036621094)) (horn "meshes/horn.obj" #(-46.46490478515625 -112.78276062011719 58.26360321044922) 0.5 #(137.447998046875 183.92401123046875 143.82000732421875)) (leaf "meshes/leaf.obj" #(4.645212650299072 -125.99183654785156 -50.86695098876953) 0.5 #(80.96400451660156 295.02001953125 318.45599365234375)) (horn "meshes/horn.obj" #(4.045790195465088 -98.8843765258789 105.37689208984375) 0.5 #(284.68798828125 201.27598571777344 167.5800018310547)) (horn "meshes/horn.obj" #(29.490509033203125 -29.016300201416016 99.99400329589844) 0.5 #(249.5159912109375 250.55999755859375 254.73599243164062)) (leaf "meshes/leaf.obj" #(-146.93643188476562 -98.40582275390625 -77.08222961425781) 0.5 #(59.07600402832031 217.54800415039062 211.39199829101562)) (leaf "meshes/leaf.obj" #(-3.100918769836426 -24.52985954284668 44.8754997253418) 0.5 #(242.3880157470703 30.600000381469727 237.0959930419922)) (horn "meshes/horn.obj" #(-162.83544921875 -53.55781936645508 -25.511240005493164) 0.5 #(64.04399871826172 5.868000030517578 104.97599792480469)) (leaf "meshes/leaf.obj" #(122.15592193603516 -22.71059799194336 22.357746124267578) 0.5 #(13.319999694824219 5.436000347137451 108.8280029296875)) (leaf "meshes/leaf.obj" #(51.372154235839844 -11.685379981994629 -118.76549530029297) 0.5 #(13.211999893188477 177.76800537109375 243.6840057373047)) (horn "meshes/horn.obj" #(-138.0248260498047 -35.037872314453125 102.58363342285156) 0.5 #(219.56399536132812 228.92401123046875 39.959999084472656)) (leaf "meshes/leaf.obj" #(64.00355529785156 -18.214527130126953 59.81039810180664) 0.5 #(278.4960021972656 55.72800064086914 141.87600708007812)) (horn "meshes/horn.obj" #(42.23395538330078 -6.949336051940918 185.72390747070312) 0.5 #(25.416000366210938 321.8039855957031 140.07598876953125)) (leaf "meshes/leaf.obj" #(-31.814878463745117 -49.31447219848633 87.14324951171875) 0.5 #(235.58399963378906 129.49200439453125 33.04800033569336)) (horn "meshes/horn.obj" #(22.662193298339844 -81.0835189819336 29.74456214904785) 0.5 #(102.45599365234375 300.2039794921875 37.944000244140625)) (horn "meshes/horn.obj" #(-127.12511444091797 -1.9174472093582153 -106.4273452758789) 0.5 #(169.27200317382812 92.34000396728516 325.656005859375)) (horn "meshes/horn.obj" #(-115.55084228515625 -77.06877136230469 46.244972229003906) 0.5 #(300.85198974609375 66.2760009765625 70.91999816894531)) (leaf "meshes/leaf.obj" #(-50.747535705566406 -11.67951488494873 -64.44593811035156) 0.5 #(227.08799743652344 14.543999671936035 255.63600158691406)) (horn "meshes/horn.obj" #(-127.13068389892578 -26.46795082092285 24.01921272277832) 0.5 #(172.69200134277344 50.832000732421875 39.347999572753906)) (leaf "meshes/leaf.obj" #(58.923805236816406 -10.742470741271973 -122.13339233398438) 0.5 #(144.43199157714844 290.26800537109375 215.71200561523438)) (leaf "meshes/leaf.obj" #(-84.7830581665039 -26.41118049621582 108.34318542480469) 0.5 #(67.10399627685547 340.0920104980469 181.0800018310547)) (leaf "meshes/leaf.obj" #(-81.03031921386719 -48.54713821411133 -77.76941680908203) 0.5 #(217.29600524902344 281.8080139160156 148.21200561523438)) (leaf "meshes/leaf.obj" #(-136.88763427734375 -2.672095537185669 36.07789611816406) 0.5 #(81.9000015258789 250.6680145263672 152.7480010986328)) (leaf "meshes/leaf.obj" #(-57.34606170654297 -134.52024841308594 11.823643684387207) 0.5 #(86.14800262451172 135.79200744628906 327.2040100097656)) (leaf "meshes/leaf.obj" #(-41.74566650390625 -114.96707916259766 -41.57340621948242) 0.5 #(165.38400268554688 309.49200439453125 10.944000244140625)) (horn "meshes/horn.obj" #(34.18671417236328 -32.68321228027344 85.47422790527344) 0.5 #(58.60799789428711 183.63600158691406 16.3439998626709)) (leaf "meshes/leaf.obj" #(43.23471450805664 -26.511781692504883 90.66463470458984) 0.5 #(133.45199584960938 337.71600341796875 88.30799865722656)) (horn "meshes/horn.obj" #(-79.06389617919922 -37.28278732299805 -91.47541809082031) 0.5 #(342.4320068359375 88.4520034790039 268.4519958496094)) (horn "meshes/horn.obj" #(23.128028869628906 -10.732000350952148 167.72409057617188) 0.5 #(283.35601806640625 267.29998779296875 326.26800537109375)) (horn "meshes/horn.obj" #(-28.192543029785156 -67.40223693847656 -104.30621337890625) 0.5 #(267.6960144042969 256.8240051269531 60.51599884033203)) (leaf "meshes/leaf.obj" #(34.129486083984375 -38.2147216796875 144.60606384277344) 0.5 #(276.5160217285156 250.5240020751953 304.2720031738281)) (horn "meshes/horn.obj" #(-92.694091796875 -17.115459442138672 -117.19694519042969) 0.5 #(262.6920166015625 164.66400146484375 152.8560028076172)) (leaf "meshes/leaf.obj" #(-135.0478973388672 -9.323105812072754 27.657407760620117) 0.5 #(124.27200317382812 317.5559997558594 235.76400756835938)) (horn "meshes/horn.obj" #(80.08988952636719 -54.869606018066406 82.65058135986328) 0.5 #(312.1199951171875 74.69999694824219 114.69599914550781)) (horn "meshes/horn.obj" #(-46.40545654296875 -48.623260498046875 12.397130966186523) 0.5 #(224.4239959716797 315.2879943847656 198.32398986816406)) (horn "meshes/horn.obj" #(37.110591888427734 -24.786436080932617 100.33380889892578) 0.5 #(80.78399658203125 282.9599914550781 265.67999267578125)) (leaf "meshes/leaf.obj" #(113.08784484863281 -56.35895538330078 61.0045051574707) 0.5 #(33.40800094604492 261.5039978027344 178.27200317382812)) (horn "meshes/horn.obj" #(-39.94795608520508 -5.3032331466674805 -65.25965881347656) 0.5 #(285.156005859375 264.02398681640625 127.47599792480469)) (horn "meshes/horn.obj" #(13.818567276000977 -146.92515563964844 -49.49378204345703) 0.5 #(333.4319763183594 18.540000915527344 291.09600830078125)) (leaf "meshes/leaf.obj" #(42.83500289916992 -83.30525970458984 27.941883087158203) 0.5 #(342.9360046386719 109.87200164794922 18.395999908447266)) (horn "meshes/horn.obj" #(19.20014762878418 -18.011919021606445 149.30868530273438) 0.5 #(91.5479965209961 56.52000045776367 212.18399047851562)) (horn "meshes/horn.obj" #(144.8340606689453 -41.501617431640625 20.894996643066406) 0.5 #(308.26800537109375 62.784000396728516 86.3280029296875)) (horn "meshes/horn.obj" #(-48.06647872924805 -17.386049270629883 -61.580135345458984) 0.5 #(292.24798583984375 66.16799926757812 280.47601318359375)) (horn "meshes/horn.obj" #(-11.716816902160645 -168.6967315673828 40.01869201660156) 0.5 #(287.4239807128906 259.343994140625 27.4320011138916)) (leaf "meshes/leaf.obj" #(34.46986389160156 -20.72212028503418 105.49774932861328) 0.5 #(296.0639953613281 66.85199737548828 8.244000434875488)) (horn "meshes/horn.obj" #(-136.28799438476562 -5.296878814697266 31.192657470703125) 0.5 #(132.44400024414062 296.7120056152344 282.9599914550781)) (horn "meshes/horn.obj" #(28.105979919433594 -103.38912200927734 -32.10613250732422) 0.5 #(40.428001403808594 166.96800231933594 213.69598388671875)) (leaf "meshes/leaf.obj" #(-35.17179489135742 -166.92544555664062 42.78496551513672) 0.5 #(180.50399780273438 155.3040008544922 65.9520034790039)) (horn "meshes/horn.obj" #(51.88315200805664 -36.009735107421875 50.19225311279297) 0.5 #(167.79600524902344 9.61199951171875 182.95199584960938)) (leaf "meshes/leaf.obj" #(-58.556358337402344 -48.6912841796875 137.10365295410156) 0.5 #(90.57599639892578 237.77999877929688 237.13198852539062)) (leaf "meshes/leaf.obj" #(124.24124908447266 -5.970783233642578 33.42555236816406) 0.5 #(148.82400512695312 338.6880187988281 0.5759999752044678)) (leaf "meshes/leaf.obj" #(24.255123138427734 -69.58905029296875 -49.042842864990234) 0.5 #(250.1639862060547 311.90399169921875 237.9600067138672)) (horn "meshes/horn.obj" #(16.247234344482422 -97.47636413574219 133.99842834472656) 0.5 #(277.416015625 247.39199829101562 11.627999305725098)) (horn "meshes/horn.obj" #(-29.261472702026367 -38.49592208862305 -132.1717987060547) 0.5 #(54.14400100708008 289.36798095703125 210.99598693847656)) (leaf "meshes/leaf.obj" #(129.28530883789062 -3.1901299953460693 22.014404296875) 0.5 #(187.70399475097656 218.62799072265625 230.68800354003906)) (horn "meshes/horn.obj" #(-45.06549835205078 -47.41169357299805 33.602638244628906) 0.5 #(237.5640106201172 256.4280090332031 135.2880096435547)) (horn "meshes/horn.obj" #(-97.37110900878906 -108.30448150634766 -9.89130973815918) 0.5 #(143.13600158691406 60.444000244140625 20.304000854492188)) (horn "meshes/horn.obj" #(55.46112060546875 -123.57289123535156 65.350341796875) 0.5 #(329.3280029296875 145.87200927734375 107.02800750732422)) (horn "meshes/horn.obj" #(-54.15777587890625 -32.09715270996094 -78.64131164550781) 0.5 #(44.53200149536133 310.9319763183594 318.4200134277344)) (leaf "meshes/leaf.obj" #(29.444162368774414 -86.22643280029297 -54.71921157836914) 0.5 #(313.8479919433594 12.204000473022461 321.69598388671875)) (horn "meshes/horn.obj" #(-8.261287689208984 -78.99183654785156 143.82861328125) 0.5 #(22.104000091552734 153.21600341796875 110.26800537109375)) (leaf "meshes/leaf.obj" #(130.99850463867188 -7.174060344696045 -10.40108871459961) 0.5 #(91.2239990234375 64.76399993896484 7.8480000495910645)) (leaf "meshes/leaf.obj" #(67.51451110839844 -40.521053314208984 44.25747299194336) 0.5 #(233.71200561523438 344.6999816894531 148.32000732421875)) (leaf "meshes/leaf.obj" #(129.235107421875 -16.967439651489258 7.707063674926758) 0.5 #(93.56400299072266 280.6919860839844 278.135986328125)) (leaf "meshes/leaf.obj" #(-55.922271728515625 -4.225340366363525 -168.0684356689453) 0.5 #(211.35601806640625 201.52801513671875 100.65599822998047)) (horn "meshes/horn.obj" #(82.12739562988281 -108.29591369628906 -25.651275634765625) 0.5 #(173.16000366210938 289.1159973144531 168.5880126953125)) (leaf "meshes/leaf.obj" #(116.74252319335938 -7.449179172515869 41.45391845703125) 0.5 #(92.41200256347656 212.5080108642578 234.61199951171875)) (horn "meshes/horn.obj" #(-34.375179290771484 -25.561079025268555 -116.66218566894531) 0.5 #(107.1719970703125 237.4560089111328 102.24000549316406)) (leaf "meshes/leaf.obj" #(-44.71780014038086 -20.8795108795166 -58.49321365356445) 0.5 #(354.7080078125 77.14800262451172 57.42000198364258)) (horn "meshes/horn.obj" #(-125.50906372070312 -49.18721389770508 -3.9196343421936035) 0.5 #(302.0039978027344 192.5640106201172 87.15599822998047)) (leaf "meshes/leaf.obj" #(21.30718231201172 -19.04694938659668 -35.297481536865234) 0.5 #(333.68402099609375 338.8320007324219 298.7279968261719)) (leaf "meshes/leaf.obj" #(68.04539489746094 -16.48215103149414 64.1194839477539) 0.5 #(156.5279998779297 326.3760070800781 107.60400390625)) (leaf "meshes/leaf.obj" #(-76.33714294433594 -38.51066207885742 -86.37902069091797) 0.5 #(352.3680114746094 297.2879943847656 108.8280029296875)) (horn "meshes/horn.obj" #(71.02580261230469 -1.7907054424285889 -127.0160903930664) 0.5 #(28.331998825073242 315.1800231933594 268.3079833984375)) (leaf "meshes/leaf.obj" #(66.142822265625 -19.544260025024414 -118.93281555175781) 0.5 #(146.6999969482422 120.7439956665039 217.8719940185547)) (horn "meshes/horn.obj" #(130.32431030273438 -0.03557044640183449 14.656793594360352) 0.5 #(96.40800476074219 331.91998291015625 192.99598693847656)) (leaf "meshes/leaf.obj" #(31.434532165527344 -25.205217361450195 102.59081268310547) 0.5 #(325.3680114746094 72.64800262451172 47.69999694824219)) (horn "meshes/horn.obj" #(-135.6028594970703 -11.357464790344238 40.9812126159668) 0.5 #(78.22799682617188 273.13201904296875 169.05599975585938)) (leaf "meshes/leaf.obj" #(6.334414958953857 -74.05374145507812 -31.547727584838867) 0.5 #(334.260009765625 91.33199310302734 237.20401000976562)) (horn "meshes/horn.obj" #(-135.6676788330078 -2.9539082050323486 48.94050979614258) 0.5 #(0.5759999752044678 24.803998947143555 144.10800170898438)) (horn "meshes/horn.obj" #(-80.13285064697266 -52.5604133605957 -84.02226257324219) 0.5 #(24.04800033569336 279.17999267578125 118.76399993896484)) (leaf "meshes/leaf.obj" #(-67.37311553955078 -47.40056610107422 47.84168243408203) 0.5 #(109.94400787353516 29.555997848510742 21.96000099182129)) (leaf "meshes/leaf.obj" #(55.8418083190918 -13.921015739440918 -119.71406555175781) 0.5 #(48.204002380371094 278.9280090332031 23.652000427246094)) (horn "meshes/horn.obj" #(155.47344970703125 -30.860456466674805 -28.721521377563477) 0.5 #(108.61199951171875 73.36799621582031 238.21200561523438)) (horn "meshes/horn.obj" #(-42.86973571777344 -11.734461784362793 -64.17622375488281) 0.5 #(320.11199951171875 188.35198974609375 185.9759979248047)) (leaf "meshes/leaf.obj" #(-33.81949996948242 -47.775028228759766 -85.86438751220703) 0.5 #(295.16400146484375 246.34800720214844 163.9080047607422)) (horn "meshes/horn.obj" #(30.563026428222656 -10.285553932189941 -39.959144592285156) 0.5 #(138.1320037841797 261.0359802246094 252.32400512695312)) (leaf "meshes/leaf.obj" #(-100.7498550415039 -12.322694778442383 -118.85492706298828) 0.5 #(127.00800323486328 71.38800048828125 199.29600524902344)) (leaf "meshes/leaf.obj" #(-135.34022521972656 -4.117324352264404 25.77369499206543) 0.5 #(215.24398803710938 10.079999923706055 156.0240020751953)) (leaf "meshes/leaf.obj" #(-23.862659454345703 -35.043643951416016 -111.43889617919922) 0.5 #(356.14801025390625 45.179996490478516 220.2480010986328)) (leaf "meshes/leaf.obj" #(51.21294403076172 -121.59158325195312 76.30734252929688) 0.5 #(89.78400421142578 28.799999237060547 187.3800048828125)) (leaf "meshes/leaf.obj" #(39.6097412109375 -54.11766815185547 22.64809799194336) 0.5 #(100.47599792480469 0.2879999876022339 165.8520050048828)) (horn "meshes/horn.obj" #(-75.19580841064453 -51.213504791259766 26.92990493774414) 0.5 #(357.2279968261719 295.0559997558594 102.09600067138672)) (leaf "meshes/leaf.obj" #(48.01039123535156 -18.838947296142578 -115.73365783691406) 0.5 #(6.696000099182129 240.8040008544922 274.89599609375)) (horn "meshes/horn.obj" #(9.3691987991333 -105.97616577148438 -47.07956314086914) 0.5 #(34.70399856567383 93.6719970703125 112.06800079345703)) (leaf "meshes/leaf.obj" #(-0.33254221081733704 -44.69260787963867 90.48016357421875) 0.5 #(329.07598876953125 17.496000289916992 30.636001586914062)) (horn "meshes/horn.obj" #(-106.07413482666016 -46.247737884521484 40.03445816040039) 0.5 #(223.09201049804688 348.69598388671875 19.583999633789062)) (horn "meshes/horn.obj" #(46.14741516113281 -24.229223251342773 -111.8480453491211) 0.5 #(250.6320037841797 209.9879913330078 195.62399291992188)) (leaf "meshes/leaf.obj" #(-39.19312286376953 -131.4163360595703 75.64752197265625) 0.5 #(45.46800231933594 255.5640106201172 152.7480010986328)) (leaf "meshes/leaf.obj" #(-72.54702758789062 -8.654489517211914 -200.48236083984375) 0.5 #(128.6280059814453 30.600000381469727 218.23199462890625)) (horn "meshes/horn.obj" #(51.960693359375 -28.129358291625977 86.62690734863281) 0.5 #(349.52398681640625 130.46400451660156 23.832000732421875)) (horn "meshes/horn.obj" #(-49.13905334472656 -14.598050117492676 187.32142639160156) 0.5 #(254.08799743652344 35.784000396728516 105.55199432373047)) (leaf "meshes/leaf.obj" #(109.11858367919922 -6.917327404022217 46.339439392089844) 0.5 #(31.608001708984375 31.463998794555664 258.80401611328125)) (leaf "meshes/leaf.obj" #(57.019386291503906 -1.5158257484436035 -121.35810089111328) 0.5 #(260.1719970703125 25.812000274658203 93.9959945678711)) (leaf "meshes/leaf.obj" #(119.98258209228516 -2.1747329235076904 39.16046905517578) 0.5 #(17.38800048828125 4.572000026702881 180.8280029296875)) (horn "meshes/horn.obj" #(-119.58455657958984 -84.97029876708984 -61.343971252441406) 0.5 #(5.184000015258789 112.14000701904297 247.2480010986328)) (leaf "meshes/leaf.obj" #(-7.585258960723877 -71.62490844726562 104.04515075683594) 0.5 #(251.78399658203125 297.5760192871094 102.16799926757812)) (leaf "meshes/leaf.obj" #(25.414453506469727 -18.623027801513672 -38.943241119384766) 0.5 #(302.760009765625 199.72799682617188 1.5839999914169312)) (horn "meshes/horn.obj" #(-62.31680679321289 -47.997703552246094 10.962058067321777) 0.5 #(189.7919921875 129.9600067138672 206.13600158691406)) (horn "meshes/horn.obj" #(-18.555206298828125 -66.30205535888672 127.43190002441406) 0.5 #(207.1800079345703 18.61199951171875 272.26800537109375)) (leaf "meshes/leaf.obj" #(30.171873092651367 -33.696205139160156 139.43003845214844) 0.5 #(126.86399841308594 151.84799194335938 319.0320129394531)) (horn "meshes/horn.obj" #(50.48745346069336 -77.84495544433594 -105.70936584472656) 0.5 #(242.3880157470703 82.44000244140625 5.97599983215332)) (leaf "meshes/leaf.obj" #(137.69387817382812 -50.2807731628418 -59.492088317871094) 0.5 #(330.4440002441406 357.8039855957031 55.69199752807617)) (leaf "meshes/leaf.obj" #(15.865035057067871 -23.996620178222656 -30.49498748779297) 0.5 #(192.4919891357422 173.80799865722656 196.4879913330078)) (horn "meshes/horn.obj" #(61.831031799316406 -2.2063639163970947 -122.49707794189453) 0.5 #(341.6400146484375 207.39599609375 127.83599853515625)) (horn "meshes/horn.obj" #(-40.331336975097656 -35.486175537109375 -44.84010314941406) 0.5 #(16.920000076293945 22.463998794555664 124.95599365234375)) (horn "meshes/horn.obj" #(28.581096649169922 -14.781195640563965 -38.45729446411133) 0.5 #(0.3240000009536743 36.50400161743164 46.439998626708984)) (leaf "meshes/leaf.obj" #(-51.25006103515625 -3.1979916095733643 -66.32955169677734) 0.5 #(342.2519836425781 238.46400451660156 48.88800048828125)) (leaf "meshes/leaf.obj" #(128.84121704101562 -12.14500904083252 15.250274658203125) 0.5 #(270.68402099609375 247.03201293945312 208.25999450683594)) (leaf "meshes/leaf.obj" #(-73.77989959716797 -55.67586898803711 53.819026947021484) 0.5 #(197.5679931640625 136.00799560546875 50.832000732421875)) (horn "meshes/horn.obj" #(-27.000961303710938 -24.691518783569336 -138.36058044433594) 0.5 #(92.87999725341797 168.8400115966797 52.88399887084961)) (horn "meshes/horn.obj" #(28.171152114868164 -25.11957359313965 108.53690338134766) 0.5 #(71.02799987792969 3.06000018119812 226.0800018310547)) (horn "meshes/horn.obj" #(72.57404327392578 -17.524274826049805 -136.3999481201172) 0.5 #(133.81199645996094 81.18000030517578 347.760009765625)) (horn "meshes/horn.obj" #(-28.97355079650879 -49.94656753540039 -114.03550720214844) 0.5 #(136.76400756835938 347.7239990234375 356.4360046386719)) (leaf "meshes/leaf.obj" #(-15.051936149597168 -27.86487579345703 23.453292846679688) 0.5 #(180.86399841308594 228.5279998779297 47.052001953125)) (horn "meshes/horn.obj" #(23.148439407348633 -15.527958869934082 -62.76622009277344) 0.5 #(308.3760070800781 30.239999771118164 290.843994140625)) (horn "meshes/horn.obj" #(-134.56544494628906 -7.296877861022949 51.47487258911133) 0.5 #(259.0559997558594 253.54798889160156 120.02400207519531)) (horn "meshes/horn.obj" #(-46.457862854003906 -7.049267292022705 -65.98554992675781) 0.5 #(209.23199462890625 101.3759994506836 328.031982421875)) (horn "meshes/horn.obj" #(-89.4439926147461 -25.735986709594727 -111.42326354980469) 0.5 #(306.39599609375 21.88800048828125 18.107999801635742)) (horn "meshes/horn.obj" #(-26.350017547607422 -60.86033248901367 125.59933471679688) 0.5 #(28.54800033569336 118.87199401855469 131.22000122070312)) (leaf "meshes/leaf.obj" #(35.42055130004883 -3.46126389503479 -44.74931335449219) 0.5 #(289.8719787597656 67.1760025024414 71.31600189208984)) (leaf "meshes/leaf.obj" #(42.406620025634766 -16.154367446899414 -115.02439880371094) 0.5 #(155.59201049804688 224.5679931640625 182.77200317382812)) (leaf "meshes/leaf.obj" #(2.6267175674438477 -103.5298843383789 -50.26744079589844) 0.5 #(162.86399841308594 275.0039978027344 93.06000518798828)) (leaf "meshes/leaf.obj" #(-130.15663146972656 -3.198655128479004 -102.06126403808594) 0.5 #(322.99200439453125 97.73999786376953 279.8280029296875)) (horn "meshes/horn.obj" #(-78.64876556396484 -34.17702865600586 95.2577896118164) 0.5 #(99.46800231933594 130.86000061035156 9.432000160217285)) (leaf "meshes/leaf.obj" #(43.6751708984375 -22.19237518310547 97.36418914794922) 0.5 #(81.0719985961914 307.0799865722656 257.7959899902344)) (horn "meshes/horn.obj" #(50.07187271118164 -31.949460983276367 53.05096435546875) 0.5 #(88.2719955444336 86.68799591064453 137.08799743652344)) (leaf "meshes/leaf.obj" #(10.445891380310059 -96.95110321044922 -45.036067962646484) 0.5 #(324.864013671875 218.44801330566406 283.3919982910156)) (horn "meshes/horn.obj" #(33.613834381103516 -0.25288790464401245 -41.36115264892578) 0.5 #(309.45599365234375 206.56800842285156 236.62799072265625)) (horn "meshes/horn.obj" #(49.5039176940918 -45.177513122558594 -56.6427001953125) 0.5 #(84.16799926757812 166.7519989013672 347.11199951171875)) (horn "meshes/horn.obj" #(-136.55014038085938 -4.410837650299072 42.65599060058594) 0.5 #(339.0119934082031 288.97198486328125 151.05599975585938)) (horn "meshes/horn.obj" #(13.72594165802002 -123.99409484863281 -48.98724365234375) 0.5 #(130.82400512695312 151.2360076904297 45.64799880981445)) (leaf "meshes/leaf.obj" #(116.43441009521484 -80.41661834716797 37.571781158447266) 0.5 #(219.8880157470703 166.10400390625 350.531982421875)) (horn "meshes/horn.obj" #(-22.58926010131836 -61.449153900146484 122.21907043457031) 0.5 #(351.14398193359375 316.2959899902344 53.89200210571289)) (horn "meshes/horn.obj" #(72.37250518798828 -2.9352495670318604 -131.7829132080078) 0.5 #(162.50399780273438 67.75199890136719 236.01600646972656)) (horn "meshes/horn.obj" #(-6.503562927246094 -110.71321868896484 -118.20052337646484) 0.5 #(309.7799987792969 145.0800018310547 135.21600341796875)) (leaf "meshes/leaf.obj" #(53.074485778808594 -17.646757125854492 -117.53331756591797) 0.5 #(208.0439910888672 184.13999938964844 123.08399963378906)) (leaf "meshes/leaf.obj" #(25.956632614135742 -21.145458221435547 112.29996490478516) 0.5 #(37.152000427246094 133.30799865722656 194.54400634765625)) (horn "meshes/horn.obj" #(20.148466110229492 -3.4988455772399902 164.50738525390625) 0.5 #(246.99600219726562 193.39199829101562 292.4639892578125)) (horn "meshes/horn.obj" #(-68.15875244140625 -24.975330352783203 97.37815856933594) 0.5 #(274.4280090332031 321.8760070800781 285.947998046875)) (horn "meshes/horn.obj" #(-44.011234283447266 -1.1717020273208618 -66.39044952392578) 0.5 #(39.492000579833984 1.403999924659729 340.0559997558594)) (horn "meshes/horn.obj" #(34.17536544799805 -86.94986724853516 -53.08578872680664) 0.5 #(121.13999938964844 129.8159942626953 259.6679992675781)) (horn "meshes/horn.obj" #(46.62667465209961 -14.11510944366455 -116.93843841552734) 0.5 #(197.2080078125 335.1960144042969 281.23199462890625)) (horn "meshes/horn.obj" #(-42.09309768676758 -47.990394592285156 108.3075942993164) 0.5 #(137.33999633789062 59.97600173950195 302.1479797363281)))((stone "meshes/stone3.obj" #(-87.5498046875 -0.1382603496313095 37.71941375732422) 9.2753136 #(51.69599914550781 119.8800048828125 288.64801025390625)) (stone "meshes/stone3.obj" #(88.82769012451172 -40.74890899658203 -63.95134735107422) 6.9980559 #(229.39199829101562 351.864013671875 36.32400131225586)) (stone "meshes/stone3.obj" #(-178.17616271972656 -1.6396766901016235 -50.693992614746094) 9.9051324 #(5.9039998054504395 62.20800018310547 255.4199981689453)) (stone "meshes/stone1.obj" #(27.1124324798584 -68.9965591430664 -11.060673713684082) 2.5090974999999993 #(15.767999649047852 173.08799743652344 269.74798583984375)) (stone "meshes/stone2.obj" #(16.109039306640625 -33.99517059326172 -27.590845108032227) 1.4954716000000001 #(221.36399841308594 326.0159912109375 69.4800033569336)) (stone "meshes/stone2.obj" #(-20.21286392211914 -0.3706120252609253 112.40596771240234) 8.8473975 #(348.947998046875 119.30400085449219 125.71200561523438)) (stone "meshes/stone1.obj" #(-128.31748962402344 -1.000015377998352 159.6073455810547) 9.9122031 #(1.5480000972747803 39.816001892089844 195.04800415039062)) (stone "meshes/stone3.obj" #(-14.042669296264648 -0.34230750799179077 37.55095672607422) 4.714710000000001 #(58.39200210571289 38.26799774169922 320.2559814453125)) (stone "meshes/stone3.obj" #(-8.547544479370117 -7.080648422241211 -85.10132598876953) 5.8770758999999995 #(154.33200073242188 98.63999938964844 307.656005859375)) (stone "meshes/stone3.obj" #(50.47547149658203 -0.4977205991744995 80.32064056396484) 5.1641884000000005 #(175.53599548339844 38.66400146484375 304.8480224609375)) (stone "meshes/stone3.obj" #(11.549728393554688 -25.290773391723633 -26.68110466003418) 0.474239999999998 #(230.1840057373047 295.0920104980469 149.83200073242188)) (stone "meshes/stone3.obj" #(-255.57943725585938 -0.2073812186717987 45.73619842529297) 9.9388476 #(12.095999717712402 284.68798828125 62.279998779296875)) (stone "meshes/stone3.obj" #(-24.577220916748047 -86.21866607666016 -41.28831481933594) 6.1955776 #(355.8240051269531 302.7239990234375 257.9040222167969)) (stone "meshes/stone1.obj" #(105.6583023071289 -9.688822746276855 139.39488220214844) 9.8932911 #(209.1959991455078 118.04399871826172 96.44400024414062)) (stone "meshes/stone2.obj" #(1.5134466886520386 -47.04696273803711 -16.86214828491211) 1.2876443999999998 #(124.02000427246094 206.20799255371094 231.6959991455078)) (stone "meshes/stone1.obj" #(-5.396152973175049 -1.6382986307144165 222.20925903320312) 9.9149916 #(231.98399353027344 223.70399475097656 124.52400207519531)) (stone "meshes/stone1.obj" #(0.5797512531280518 -61.37527084350586 -14.488844871520996) 1.6222590999999997 #(330.552001953125 338.18402099609375 328.64398193359375)) (stone "meshes/stone2.obj" #(-87.5804672241211 -108.64390563964844 -68.16392517089844) 6.9617856 #(316.656005859375 160.5240020751953 337.2120056152344)) (stone "meshes/stone2.obj" #(-95.30577850341797 -1.0167920589447021 78.25934600830078) 7.6292839 #(267.4079895019531 284.2200012207031 345.1319885253906)) (stone "meshes/stone1.obj" #(33.93617630004883 -0.48298782110214233 -267.1708984375) 9.9516975 #(216.46800231933594 53.74799728393555 330.6600036621094)) (stone "meshes/stone3.obj" #(3.255075216293335 -49.67660140991211 -53.16311264038086) 5.015639999999999 #(211.6439971923828 2.9519999027252197 117.57599639892578)) (stone "meshes/stone3.obj" #(4.837583541870117 -51.203792572021484 9.067439079284668) 3.1109999999999993 #(69.44400024414062 172.8000030517578 185.94000244140625)) (stone "meshes/stone3.obj" #(-204.27386474609375 -3.027663469314575 -133.88392639160156) 9.4878831 #(88.88400268554688 30.239999771118164 74.26800537109375)) (stone "meshes/stone1.obj" #(-21.12649154663086 -132.1708221435547 37.98800277709961) 7.0504239 #(267.1920166015625 197.6400146484375 98.27999877929688)) (stone "meshes/stone1.obj" #(-137.9261016845703 -63.88178634643555 -102.16582489013672) 8.1363511 #(199.04400634765625 279.7560119628906 126.25199890136719)) (stone "meshes/stone1.obj" #(-225.67433166503906 -1.6860222816467285 -105.03208923339844) 9.76284 #(242.3880157470703 61.37999725341797 302.3280029296875)) (stone "meshes/stone3.obj" #(-162.20803833007812 -0.21943077445030212 -23.664566040039062) 9.9021879 #(279.17999267578125 302.9040222167969 116.71199798583984)) (stone "meshes/stone1.obj" #(43.98074722290039 -55.45537567138672 -38.9493522644043) 3.684519099999999 #(159.04800415039062 57.23999786376953 36.8280029296875)) (stone "meshes/stone3.obj" #(-29.148881912231445 -2.8357458114624023 -21.734445571899414) 7.457823599999999 #(81.03599548339844 255.99598693847656 14.543999671936035)) (stone "meshes/stone3.obj" #(-33.031864166259766 -78.48551940917969 188.0768280029297) 9.6193599 #(199.72799682617188 111.88799285888672 265.1400146484375)) (stone "meshes/stone1.obj" #(12.46161937713623 -0.2613683044910431 -49.26510238647461) 4.010787899999999 #(199.6199951171875 271.9079895019531 44.49599838256836)) (stone "meshes/stone1.obj" #(-9.938157081604004 -38.166805267333984 20.208633422851562) 1.1733974999999996 #(173.37599182128906 243.72000122070312 95.72399139404297)) (stone "meshes/stone2.obj" #(157.1908721923828 -114.70240020751953 -130.05581665039062) 9.99516 #(210.239990234375 118.94400024414062 303.37200927734375)) (stone "meshes/stone3.obj" #(-64.91351318359375 -106.62388610839844 -3.854417324066162) 6.0912496 #(345.3840026855469 248.79600524902344 130.6439971923828)) (stone "meshes/stone1.obj" #(32.6243782043457 -51.204689025878906 -17.271059036254883) 0.9882950999999995 #(336.88800048828125 216.17999267578125 156.5279998779297)) (stone "meshes/stone3.obj" #(269.2994384765625 -2.070577383041382 -99.99041748046875) 9.921854399999999 #(160.45199584960938 89.27999877929688 201.49200439453125)) (stone "meshes/stone1.obj" #(-17.013967514038086 -59.4493293762207 1.8346853256225586) 1.7408255999999989 #(322.12799072265625 43.380001068115234 232.739990234375)) (stone "meshes/stone2.obj" #(-35.1878547668457 -1.0616382360458374 134.31954956054688) 8.6317399 #(343.08001708984375 121.1760025024414 324.1080017089844)) (stone "meshes/stone3.obj" #(5.394547462463379 -2.7383766174316406 208.64598083496094) 8.3173596 #(173.91600036621094 127.26000213623047 150.87599182128906)) (stone "meshes/stone2.obj" #(-174.51890563964844 -73.76624298095703 203.02760314941406) 9.4021975 #(199.97999572753906 260.2799987792969 249.08399963378906)) (stone "meshes/stone3.obj" #(237.0633544921875 -3.324822187423706 -47.00560760498047) 9.6228636 #(325.44000244140625 226.25999450683594 261.39599609375)) (stone "meshes/stone1.obj" #(-6.309901714324951 -64.20002746582031 -4.229451656341553) 0.8950235999999989 #(216.9720001220703 15.515999794006348 335.26800537109375)) (stone "meshes/stone2.obj" #(12.273641586303711 -228.4291229248047 0.21116799116134644) 9.999999899999999 #(166.03199768066406 229.06800842285156 108.7560043334961)) (stone "meshes/stone2.obj" #(203.20750427246094 -0.3831771910190582 134.0570831298828) 9.760369599999999 #(281.7720031738281 49.86000061035156 341.1000061035156)) (stone "meshes/stone3.obj" #(-38.448062896728516 -40.38784408569336 -65.90409088134766) 3.8377499999999998 #(216.75601196289062 255.16799926757812 238.78799438476562)) (stone "meshes/stone2.obj" #(-20.036054611206055 -54.13991165161133 23.34990119934082) 2.633211099999999 #(203.11199951171875 258.76800537109375 219.8520050048828)) (stone "meshes/stone1.obj" #(30.935373306274414 -63.96965026855469 38.229469299316406) 2.9120438999999987 #(295.2720031738281 132.47999572753906 276.5160217285156)) (stone "meshes/stone1.obj" #(164.95065307617188 -81.82051849365234 88.94957733154297) 9.5830236 #(70.34400177001953 188.4600067138672 201.99600219726562)) (stone "meshes/stone3.obj" #(10.933516502380371 -39.848472595214844 48.26575469970703) 3.6367470999999982 #(278.35198974609375 9.144000053405762 190.15199279785156)) (stone "meshes/stone2.obj" #(12.956348419189453 -27.28101348876953 -33.88118362426758) 0.33514389999999783 #(195.87599182128906 34.487998962402344 179.60400390625)) (stone "meshes/stone3.obj" #(94.56549072265625 -64.8519287109375 -14.161178588867188) 4.117109999999999 #(318.5639953613281 70.73999786376953 60.875999450683594)) (stone "meshes/stone1.obj" #(-16.79201316833496 -1.1256093978881836 80.03943634033203) 7.3105404 #(295.59600830078125 97.48799896240234 314.7120056152344)) (stone "meshes/stone1.obj" #(14.986048698425293 -77.19538879394531 9.113387107849121) 2.4727023999999997 #(33.22800064086914 220.7880096435547 147.60000610351562)) (stone "meshes/stone3.obj" #(-275.19635009765625 -2.869955539703369 -199.04832458496094) 9.7830271 #(344.3760070800781 241.45201110839844 98.2439956665039)) (stone "meshes/stone3.obj" #(-106.47701263427734 -2.1440746784210205 -256.31878662109375) 9.8155836 #(200.2320098876953 10.656000137329102 277.8479919433594)) (stone "meshes/stone1.obj" #(-90.02652740478516 -120.74684143066406 -153.0747528076172) 9.5644431 #(109.18799591064453 60.119998931884766 188.63999938964844)) (stone "meshes/stone1.obj" #(-226.2064208984375 -0.7366934418678284 159.44554138183594) 9.6884775 #(76.06800079345703 138.0959930419922 145.54800415039062)) (stone "meshes/stone2.obj" #(17.7612247467041 -49.13996505737305 -16.638256072998047) 2.000486399999999 #(132.19200134277344 2.447999954223633 126.7560043334961)) (stone "meshes/stone2.obj" #(160.9795379638672 -176.65357971191406 65.8718032836914) 9.8207079 #(165.9239959716797 229.6439971923828 23.615999221801758)) (stone "meshes/stone2.obj" #(-104.44178771972656 -2.4872915744781494 193.9497528076172) 8.81664 #(251.67601013183594 212.1479949951172 351.3240051269531)) (stone "meshes/stone1.obj" #(236.6429443359375 -2.200521230697632 92.66216278076172) 9.5817975 #(32.86800003051758 55.69199752807617 68.22000122070312)) (stone "meshes/stone3.obj" #(-100.11463165283203 -65.19520568847656 9.058526039123535) 5.07196 #(307.00799560546875 61.41600036621094 326.8080139160156)) (stone "meshes/stone1.obj" #(45.01152038574219 -82.5812759399414 97.46223449707031) 8.4429084 #(27.215999603271484 149.04000854492188 294.29998779296875)) (stone "meshes/stone3.obj" #(94.17243194580078 -1.2778061628341675 13.742578506469727) 6.770351100000001 #(329.9759826660156 230.4720001220703 358.0559997558594)) (stone "meshes/stone2.obj" #(40.97768783569336 -105.65035247802734 -13.027750015258789) 4.027801599999999 #(180.46798706054688 341.31597900390625 319.0680236816406)) (stone "meshes/stone1.obj" #(73.02863311767578 -2.755892753601074 -199.24752807617188) 8.7440064 #(334.97998046875 351.8999938964844 248.36399841308594)) (stone "meshes/stone2.obj" #(-138.81845092773438 -160.5564727783203 -83.78404235839844) 7.9812951 #(140.1840057373047 190.9080047607422 200.1959991455078)) (stone "meshes/stone1.obj" #(86.10506439208984 -1.5841203927993774 0.179957777261734) 8.8076791 #(350.2080078125 324.0360107421875 110.30400085449219)) (stone "meshes/stone2.obj" #(150.89222717285156 -1.694589614868164 -112.82231903076172) 9.1520256 #(326.0879821777344 163.4759979248047 308.052001953125)) (stone "meshes/stone3.obj" #(78.12276458740234 -127.15520477294922 -60.90560531616211) 7.372412399999999 #(343.40399169921875 302.6159973144531 180.6479949951172)) (stone "meshes/stone2.obj" #(16.27973175048828 -98.35126495361328 -68.83304595947266) 3.951827099999999 #(32.327999114990234 281.5559997558594 59.3640022277832)) (stone "meshes/stone2.obj" #(-6.280069828033447 -41.99874496459961 29.524070739746094) 0.881659899999998 #(274.1400146484375 221.07598876953125 68.90399932861328)) (stone "meshes/stone1.obj" #(103.21440124511719 -147.8345947265625 10.584547996520996) 7.1655024 #(227.5919952392578 165.16799926757812 24.191999435424805)) (stone "meshes/stone2.obj" #(-94.94297790527344 -220.90005493164062 -8.68697738647461) 8.8473975 #(342.1080017089844 12.02400016784668 338.2200012207031)) (stone "meshes/stone3.obj" #(166.28858947753906 -12.14741039276123 11.330154418945312) 7.0111911 #(0.6480000019073486 303.69598388671875 145.94400024414062)) (stone "meshes/stone3.obj" #(-43.61021041870117 -155.48269653320312 136.9651336669922) 9.0058591 #(51.98400115966797 180.6840057373047 14.07599925994873)) (stone "meshes/stone3.obj" #(-171.1890869140625 -13.644333839416504 88.6775894165039) 7.8581616 #(172.83599853515625 339.5880126953125 345.2039794921875)) (stone "meshes/stone2.obj" #(-119.19767761230469 -145.20518493652344 28.948137283325195) 8.73264 #(223.48800659179688 273.45599365234375 172.54800415039062)) (stone "meshes/stone3.obj" #(62.053462982177734 0.03473011031746864 144.41360473632812) 8.7805936 #(9.468000411987305 161.24400329589844 256.5360107421875)) (stone "meshes/stone3.obj" #(-14.556175231933594 -84.501953125 8.454827308654785) 3.4648944000000004 #(301.7519836425781 56.84400177001953 255.16799926757812)) (stone "meshes/stone3.obj" #(-142.46347045898438 -209.45199584960938 90.80093383789062) 9.6912951 #(61.884002685546875 133.7760009765625 197.8560028076172)) (stone "meshes/stone2.obj" #(-26.384174346923828 -33.776397705078125 34.685733795166016) 2.1765974999999993 #(66.31200408935547 233.27999877929688 25.236000061035156)) (stone "meshes/stone3.obj" #(-61.65401840209961 -3.203575849533081 277.1687927246094) 9.9055216 #(270.2879943847656 350.6399841308594 250.1639862060547)) (stone "meshes/stone3.obj" #(18.120607376098633 -25.198453903198242 -37.402305603027344) 0.9369599999999989 #(293.58001708984375 225.4320068359375 271.87200927734375)) (stone "meshes/stone2.obj" #(30.799711227416992 -53.8822021484375 -0.7436836361885071) 0.5890598999999985 #(114.47999572753906 350.4599914550781 74.69999694824219)) (stone "meshes/stone2.obj" #(-33.86922073364258 -76.33905029296875 33.531898498535156) 2.9825871000000004 #(319.968017578125 39.23999786376953 119.19599914550781)) (stone "meshes/stone1.obj" #(-342.4259338378906 -2.1568028926849365 -2.7534568309783936) 9.9810775 #(304.6679992675781 250.05599975585938 104.90399169921875)) (stone "meshes/stone3.obj" #(-179.4861297607422 -10.621899604797363 9.775101661682129) 8.0241975 #(163.94400024414062 60.444000244140625 96.91200256347656)) (stone "meshes/stone3.obj" #(239.96620178222656 -115.1514892578125 38.18404769897461) 9.7079319 #(108.32400512695312 168.73199462890625 357.8039855957031)) (stone "meshes/stone2.obj" #(51.09609603881836 -7.280862808227539 6.731815338134766) 9.622086399999999 #(170.20799255371094 213.80401611328125 163.94400024414062)) (stone "meshes/stone1.obj" #(-311.9533996582031 -17.774883270263672 -104.14188385009766) 9.4416231 #(157.5 61.272003173828125 178.99200439453125)) (stone "meshes/stone3.obj" #(133.4437713623047 -0.2671205699443817 79.33354187011719) 7.628309999999999 #(126.97200012207031 193.50001525878906 270.64801025390625)) (stone "meshes/stone2.obj" #(86.9848403930664 -0.2630610764026642 242.5933380126953) 9.0215616 #(111.99600219726562 79.05599975585938 155.6999969482422)) (stone "meshes/stone1.obj" #(240.82435607910156 -119.69718170166016 137.1134490966797) 9.9157276 #(207.21600341796875 218.52000427246094 296.2799987792969)) (stone "meshes/stone1.obj" #(233.83294677734375 -8.40661334991455 -192.86122131347656) 9.9975036 #(120.56399536132812 114.44400024414062 30.024002075195312)) (stone "meshes/stone1.obj" #(-49.01531219482422 -169.73806762695312 -42.23749923706055) 8.4373791 #(19.512001037597656 85.31999969482422 232.9919891357422)) (stone "meshes/stone3.obj" #(44.52535629272461 -73.28646087646484 11.86331558227539) 3.3022143999999996 #(114.66000366210938 32.14799880981445 5.363999843597412)) (stone "meshes/stone3.obj" #(-178.2036895751953 -0.6845930218696594 79.48399353027344) 8.9560639 #(321.4079895019531 166.5 330.5879821777344)) (stone "meshes/stone2.obj" #(-34.410736083984375 -55.25385284423828 9.963494300842285) 1.2988415999999992 #(128.26800537109375 147.0240020751953 66.56400299072266)) (stone "meshes/stone1.obj" #(-316.18499755859375 -6.342304706573486 124.28350067138672) 9.9408639 #(179.13600158691406 263.30401611328125 348.73199462890625)) (stone "meshes/stone2.obj" #(17.854108810424805 -63.46018600463867 129.04385375976562) 6.260677499999999 #(213.22799682617188 323.6399841308594 143.38800048828125)) (stone "meshes/stone3.obj" #(-83.5546875 -101.19575500488281 60.273406982421875) 7.2980796 #(320.7959899902344 327.8160095214844 168.47999572753906)) (stone "meshes/stone3.obj" #(47.891395568847656 -78.01445007324219 -22.347497940063477) 1.9682555999999995 #(74.77200317382812 15.22800064086914 268.343994140625)) (stone "meshes/stone1.obj" #(40.7603645324707 -66.84658813476562 -76.66993713378906) 4.1676231 #(203.29200744628906 216.9720001220703 78.66000366210938)) (stone "meshes/stone1.obj" #(24.295066833496094 -83.86678314208984 -36.9766731262207) 3.2135355999999984 #(195.91200256347656 82.51200103759766 251.92800903320312)) (stone "meshes/stone2.obj" #(-121.95542907714844 -59.857093811035156 92.03813934326172) 5.6479591 #(291.3119812011719 119.59199523925781 180.1800079345703)) (stone "meshes/stone1.obj" #(110.6386489868164 -232.20912170410156 -16.299177169799805) 9.955110000000001 #(154.62001037597656 152.3159942626953 192.77999877929688)) (stone "meshes/stone2.obj" #(56.32603073120117 -1.035316824913025 -82.82451629638672) 7.0439031 #(231.0120086669922 167.22000122070312 251.20799255371094)) (stone "meshes/stone2.obj" #(-87.98182678222656 -3.068432569503784 161.60667419433594) 9.0794844 #(144.36000061035156 295.5240173339844 168.40798950195312)) (stone "meshes/stone1.obj" #(64.18701171875 -88.69964599609375 188.381103515625) 9.584655600000001 #(168.73199462890625 16.992000579833984 209.8079833984375)) (stone "meshes/stone3.obj" #(45.395591735839844 -44.58249282836914 39.008033752441406) 0.28395509999999957 #(72.10799407958984 245.66400146484375 272.9159851074219)) (stone "meshes/stone3.obj" #(-142.0461883544922 -74.27429962158203 -210.6683807373047) 8.5200591 #(294.6960144042969 68.86800384521484 78.04800415039062)) (stone "meshes/stone2.obj" #(331.5082702636719 -1.8593854904174805 -20.747228622436523) 9.9998911 #(281.7359924316406 154.15200805664062 335.0880126953125)) (stone "meshes/stone3.obj" #(102.08804321289062 -133.59559631347656 117.17012023925781) 7.365231100000001 #(135.68399047851562 176.7239990234375 311.54400634765625)) (stone "meshes/stone1.obj" #(-15.278462409973145 -53.04719924926758 -91.16545104980469) 3.4697438999999997 #(98.13600158691406 39.13199996948242 19.187999725341797)) (stone "meshes/stone3.obj" #(158.8303680419922 -100.35438537597656 185.84544372558594) 9.4732975 #(266.760009765625 350.6399841308594 104.18400573730469)) (stone "meshes/stone3.obj" #(-125.91234588623047 -1.4208967685699463 -162.48114013671875) 9.3384816 #(132.04800415039062 86.18399810791016 64.11600494384766)) (stone "meshes/stone1.obj" #(-102.95124053955078 -1.274235486984253 -5.15245246887207) 7.6709724 #(16.775999069213867 11.699999809265137 280.1519775390625)) (stone "meshes/stone3.obj" #(-47.72422409057617 -0.8073607683181763 -37.53377914428711) 5.3241755999999985 #(57.45600128173828 300.7799987792969 78.1199951171875)) (stone "meshes/stone1.obj" #(124.20889282226562 -44.454349517822266 36.84199142456055) 4.7364975 #(173.6280059814453 160.343994140625 245.3040008544922)) (stone "meshes/stone3.obj" #(34.32521438598633 -118.02312469482422 -113.98980712890625) 6.5213596 #(205.74000549316406 19.6560001373291 15.335999488830566)) (stone "meshes/stone1.obj" #(27.831275939941406 -12.23294734954834 312.40155029296875) 9.414359999999999 #(34.09199905395508 146.80799865722656 293.0039978027344)) (stone "meshes/stone1.obj" #(33.223594665527344 -28.98758316040039 -53.32139587402344) 2.217231599999998 #(254.91600036621094 326.30401611328125 142.41600036621094)) (stone "meshes/stone3.obj" #(66.34951782226562 -2.119645118713379 -80.557861328125) 7.83775 #(149.5800018310547 84.85199737548828 304.52398681640625)) (stone "meshes/stone3.obj" #(99.17215728759766 -79.63833618164062 58.48442459106445) 4.913457599999999 #(143.60400390625 306.864013671875 149.760009765625)) (stone "meshes/stone1.obj" #(-190.95677185058594 -97.58512878417969 59.80327224731445) 7.9442844 #(66.06000518798828 234.9359893798828 176.0760040283203)) (stone "meshes/stone2.obj" #(85.37567138671875 -61.30370330810547 22.964548110961914) 3.5422703999999983 #(124.59600067138672 36.25199890136719 143.78399658203125)) (stone "meshes/stone3.obj" #(-119.58258819580078 -3.034303665161133 286.25927734375) 9.910886399999999 #(163.15200805664062 344.7720031738281 183.92401123046875)) (stone "meshes/stone2.obj" #(55.31736373901367 -68.20482635498047 35.6957893371582) 2.0290815999999987 #(265.8599853515625 81.18000030517578 165.34800720214844)) (stone "meshes/stone2.obj" #(4.37359619140625 -106.43649291992188 -9.211031913757324) 3.3202071 #(335.8800048828125 144.0 148.5360107421875)) (stone "meshes/stone1.obj" #(185.76524353027344 -1.8567370176315308 16.160551071166992) 8.7938271 #(2.124000072479248 34.992000579833984 20.700000762939453)) (stone "meshes/stone1.obj" #(60.8262825012207 -64.56784057617188 -10.565908432006836) 2.4466518999999987 #(165.16799926757812 165.09600830078125 230.5800018310547)) (stone "meshes/stone1.obj" #(7.241541385650635 -159.9120635986328 221.4270782470703) 9.736911599999999 #(239.8679962158203 181.15199279785156 359.02801513671875)) (stone "meshes/stone1.obj" #(-21.821949005126953 -55.75950241088867 62.79521179199219) 4.1905116 #(59.94000244140625 62.67599868774414 158.11199951171875)) (stone "meshes/stone2.obj" #(169.15196228027344 -159.19866943359375 -36.99131774902344) 9.1957104 #(346.89599609375 329.760009765625 44.56800079345703)) (stone "meshes/stone2.obj" #(191.4721221923828 -1.4907238483428955 170.9462890625) 8.4836764 #(88.66799926757812 174.20401000976562 151.81199645996094)) (stone "meshes/stone1.obj" #(105.17880249023438 -0.3122912347316742 -302.8816223144531) 9.801753600000001 #(282.05999755859375 169.05599975585938 285.1920166015625)) (stone "meshes/stone1.obj" #(-213.8110809326172 -2.116032361984253 256.330322265625) 9.8635776 #(71.1719970703125 284.3280029296875 274.8240051269531)) (stone "meshes/stone2.obj" #(36.32645797729492 -13.679153442382812 -45.64530944824219) 1.2483975000000003 #(325.7279968261719 63.21600341796875 91.26000213623047)) (stone "meshes/stone3.obj" #(-10.59396743774414 -32.401729583740234 39.59577560424805) 0.9255323999999998 #(311.6159973144531 318.49200439453125 229.89599609375)) (stone "meshes/stone1.obj" #(-30.310197830200195 -128.727783203125 -100.93042755126953) 6.3627039 #(12.276000022888184 209.8800048828125 342.5039978027344)) (stone "meshes/stone1.obj" #(53.170108795166016 -47.40868377685547 46.737548828125) 1.614935099999999 #(161.06399536132812 249.7320098876953 71.63999938964844)) (stone "meshes/stone2.obj" #(1.8000293970108032 -82.02865600585938 41.8654899597168) 3.981343599999999 #(279.864013671875 58.895999908447266 305.2080078125)) (stone "meshes/stone2.obj" #(33.95024490356445 -166.1549530029297 85.74919128417969) 8.5231351 #(283.2480163574219 105.91200256347656 352.6199951171875)) (stone "meshes/stone1.obj" #(9.517919540405273 -72.67906951904297 -21.660404205322266) 1.592943899999999 #(331.4519958496094 121.96800231933594 260.1000061035156)) (stone "meshes/stone2.obj" #(71.96920776367188 -135.08140563964844 -178.3240509033203) 8.7588471 #(183.5279998779297 345.52801513671875 123.69599914550781)) (stone "meshes/stone3.obj" #(-61.20880889892578 -22.4912109375 -137.867919921875) 6.369937500000001 #(333.5400085449219 267.33599853515625 347.0039978027344)) (stone "meshes/stone3.obj" #(134.50830078125 -89.91727447509766 10.000514030456543) 6.0044959 #(86.86800384521484 226.90798950195312 182.37600708007812)) (stone "meshes/stone3.obj" #(-77.7199935913086 -53.32538986206055 -38.74827575683594) 5.716297499999998 #(96.58799743652344 312.1199951171875 305.6759948730469)) (stone "meshes/stone2.obj" #(17.63993263244629 -60.10048294067383 -26.725994110107422) 0.5210303999999999 #(68.43599700927734 112.31999969482422 57.92399978637695)) (stone "meshes/stone1.obj" #(-147.39962768554688 -89.96569061279297 -23.371030807495117) 7.4102079 #(52.775997161865234 320.4720153808594 210.16799926757812)) (stone "meshes/stone1.obj" #(-62.73945617675781 -58.743507385253906 21.891382217407227) 2.5609374999999988 #(158.8679962158203 265.5719909667969 330.552001953125)) (stone "meshes/stone1.obj" #(53.015804290771484 -1.7072690725326538 7.343222618103027) 9.9917631 #(102.3479995727539 166.7519989013672 58.06800079345703)) (stone "meshes/stone2.obj" #(268.5340270996094 -23.08616065979004 52.49235916137695) 9.762531899999999 #(337.89599609375 207.6840057373047 273.1679992675781)) (stone "meshes/stone1.obj" #(-17.19449806213379 -182.6322479248047 -172.31536865234375) 9.9186396 #(175.0679931640625 200.16000366210938 309.3840026855469)) (stone "meshes/stone3.obj" #(85.26815795898438 -84.18310546875 -110.1075210571289) 5.728070399999999 #(358.20001220703125 279.14398193359375 304.0199890136719)) (stone "meshes/stone2.obj" #(-99.269775390625 -1.5436797142028809 -161.24314880371094) 8.2183159 #(202.0679931640625 175.78799438476562 329.8320007324219)) (stone "meshes/stone2.obj" #(-192.27084350585938 -0.9464136958122253 -224.5248260498047) 8.8262524 #(31.93199920654297 308.3399963378906 268.20001220703125)) (stone "meshes/stone3.obj" #(-94.92596435546875 -126.78816223144531 218.7702178955078) 9.9734775 #(347.4720153808594 321.6239929199219 246.63600158691406)) (stone "meshes/stone2.obj" #(-93.20658874511719 -1.2619997262954712 66.03227996826172) 8.2393584 #(235.9080047607422 176.5439910888672 124.16400146484375)) (stone "meshes/stone2.obj" #(28.430688858032227 -1.7988065481185913 -158.69178771972656) 8.895767099999999 #(43.343997955322266 156.77999877929688 207.8280029296875)) (stone "meshes/stone1.obj" #(77.53585815429688 -1.522235631942749 149.47225952148438) 9.6835159 #(355.6080017089844 282.7799987792969 27.86400032043457)) (stone "meshes/stone1.obj" #(-12.607850074768066 -74.63938903808594 -142.7217254638672) 7.7332879 #(85.93199920654297 307.18798828125 291.6000061035156)) (stone "meshes/stone1.obj" #(16.862079620361328 -182.7731475830078 -90.63996124267578) 7.702715099999999 #(255.4919891357422 65.98799896240234 95.36399841308594)) (stone "meshes/stone3.obj" #(-255.23097229003906 -51.53240203857422 -32.700618743896484) 8.7672879 #(331.3800048828125 240.8400115966797 223.52398681640625)) (stone "meshes/stone1.obj" #(-30.738672256469727 -69.85104370117188 -77.36627960205078) 1.8224151 #(32.327999114990234 290.447998046875 231.80398559570312)) (stone "meshes/stone2.obj" #(132.0381622314453 -24.70436668395996 224.258056640625) 8.1458364 #(219.20401000976562 95.94000244140625 206.0279998779297)) (stone "meshes/stone2.obj" #(108.2658920288086 -10.087348937988281 -137.35508728027344) 6.771487599999999 #(318.92401123046875 30.347999572753906 187.41600036621094)) (stone "meshes/stone2.obj" #(-30.06379508972168 -17.9947566986084 -11.502673149108887) 7.3487799 #(333.57598876953125 53.459999084472656 313.6679992675781)) (stone "meshes/stone1.obj" #(196.4128875732422 -73.02577209472656 -21.194913864135742) 7.247948399999999 #(336.7440185546875 157.89599609375 83.48400115966797)) (stone "meshes/stone1.obj" #(30.414779663085938 -167.79766845703125 -11.612149238586426) 8.589997499999999 #(20.77199935913086 7.920000076293945 282.7080078125)) (stone "meshes/stone1.obj" #(163.17739868164062 -2.5913407802581787 -74.33191680908203) 9.9996975 #(247.9320068359375 179.45999145507812 284.4360046386719)) (stone "meshes/stone1.obj" #(-60.0640983581543 -53.018985748291016 88.9845962524414) 4.8619776 #(24.1200008392334 2.4119999408721924 208.40399169921875)) (stone "meshes/stone1.obj" #(142.31277465820312 -0.8160121440887451 -212.84169006347656) 9.6595975 #(266.90399169921875 36.97200012207031 50.43600082397461)) (stone "meshes/stone3.obj" #(57.40983581542969 -35.60886001586914 65.06135559082031) 2.2419135999999993 #(202.6439971923828 269.4960021972656 165.0240020751953)) (stone "meshes/stone1.obj" #(-141.5943145751953 -56.99155807495117 40.252933502197266) 5.4207711 #(214.16400146484375 54.827999114990234 280.47601318359375)) (stone "meshes/stone2.obj" #(-20.629894256591797 -0.1769464910030365 -93.5832748413086) 6.43591 #(332.2440185546875 163.3679962158203 112.68000030517578)) (stone "meshes/stone1.obj" #(18.196821212768555 -42.34952163696289 -89.4339370727539) 2.9490391000000002 #(211.24798583984375 355.3559875488281 245.0880126953125)) (stone "meshes/stone3.obj" #(40.31664276123047 -114.60464477539062 34.799556732177734) 5.6729916 #(39.38399887084961 222.156005859375 236.44798278808594)) (stone "meshes/stone1.obj" #(-57.77325439453125 -9.61610221862793 -297.1817932128906) 9.4397311 #(344.62799072265625 302.0039978027344 312.8759765625)) (stone "meshes/stone2.obj" #(76.78963470458984 -97.08429718017578 5.920208930969238) 4.2513276 #(231.04798889160156 58.35599899291992 143.45999145507812)) (stone "meshes/stone2.obj" #(211.75387573242188 -2.12430739402771 261.1328125) 9.9995376 #(141.22799682617188 257.68798828125 4.139999866485596)) (stone "meshes/stone1.obj" #(68.3724365234375 -80.12288665771484 -38.91935348510742) 3.1838464 #(126.10800170898438 157.89599609375 105.91200256347656)) (stone "meshes/stone3.obj" #(-21.252084732055664 -3.012035369873047 -207.23291015625) 9.9017919 #(108.57600402832031 81.0719985961914 235.260009765625)) (stone "meshes/stone1.obj" #(42.19303894042969 -48.21903991699219 -114.75428009033203) 4.109437499999999 #(44.81999969482422 170.13600158691406 164.6999969482422)) (stone "meshes/stone1.obj" #(22.79856300354004 -27.346155166625977 -32.77174758911133) 0.4449374999999989 #(240.87599182128906 284.47198486328125 116.06400299072266)) (stone "meshes/stone1.obj" #(-49.175960540771484 -31.167213439941406 -46.39895248413086) 0.9083774999999994 #(94.46399688720703 161.63999938964844 171.39599609375)) (stone "meshes/stone3.obj" #(-5.7665181159973145 -99.02027130126953 -211.6944580078125) 7.701756399999999 #(246.70799255371094 187.16400146484375 187.66799926757812)) (stone "meshes/stone2.obj" #(253.4193878173828 -100.64286804199219 -79.63330078125) 9.9790236 #(280.260009765625 342.5039978027344 223.59600830078125)) (stone "meshes/stone2.obj" #(-54.88275146484375 -59.84587097167969 48.770042419433594) 3.0344284 #(338.2559814453125 211.60800170898438 100.76400756835938)) (stone "meshes/stone3.obj" #(-218.72283935546875 -136.17149353027344 -50.34603500366211) 9.9985116 #(295.7040100097656 6.4079999923706055 232.70399475097656)) (stone "meshes/stone1.obj" #(88.11653900146484 -34.64936065673828 54.970680236816406) 2.7222038999999985 #(30.636001586914062 331.0199890136719 184.7519989013672)) (stone "meshes/stone3.obj" #(60.46391296386719 -99.40756225585938 -269.6584167480469) 9.900798400000001 #(337.4280090332031 138.63600158691406 221.9759979248047)) (stone "meshes/stone1.obj" #(136.51669311523438 -88.57219696044922 -53.4676399230957) 6.6994975 #(180.07199096679688 356.6880187988281 310.5719909667969)) (stone "meshes/stone3.obj" #(5.454926490783691 -0.42525503039360046 -133.88404846191406) 7.638039999999999 #(256.4280090332031 186.15599060058594 203.79600524902344)) (stone "meshes/stone2.obj" #(-46.70653533935547 -231.0723419189453 80.31523895263672) 9.90591 #(313.4880065917969 221.43600463867188 78.22799682617188)) (stone "meshes/stone3.obj" #(-145.71090698242188 -117.46400451660156 124.73523712158203) 8.3694556 #(3.815999984741211 265.1759948730469 306.3240051269531)) (stone "meshes/stone2.obj" #(-58.53582763671875 -64.548583984375 -98.291259765625) 5.2002815999999985 #(101.91600036621094 314.1360168457031 93.88800048828125)) (stone "meshes/stone3.obj" #(-96.34388732910156 -0.8437261581420898 -80.76903533935547) 7.520955899999999 #(350.85601806640625 333.3240051269531 241.59600830078125)) (stone "meshes/stone1.obj" #(-42.133949279785156 -47.200294494628906 23.38630485534668) 1.6076078999999999 #(276.6239929199219 296.82000732421875 355.67999267578125))) \ No newline at end of file +((seed "meshes/seed.obj" #(-23.15894889831543 -86.55533599853516 -31.81883430480957) 6.0 #(0.0 0.0 0.0)) (seed "meshes/seed.obj" #(-93.85879516601562 -133.60032653808594 26.856842041015625) 6.0 #(0.0 0.0 0.0)) (seed "meshes/seed.obj" #(-79.24724578857422 -46.437686920166016 -108.76299285888672) 6.0 #(0.0 0.0 0.0)) (seed "meshes/seed.obj" #(-66.88900756835938 -1.0218398571014404 -32.68394470214844) 6.0 #(0.0 0.0 0.0)) (seed "meshes/seed.obj" #(54.444637298583984 -72.59961700439453 75.7327880859375) 6.0 #(0.0 0.0 0.0)))((leaf "meshes/leaf.obj" #(40.94873809814453 -14.822450637817383 -40.22900390625) 0.5 #(103.17599487304688 310.8599853515625 53.81999969482422)) (leaf "meshes/leaf.obj" #(-37.365787506103516 -12.762758255004883 154.0066375732422) 0.5 #(208.0439910888672 160.84799194335938 35.42399978637695)) (leaf "meshes/leaf.obj" #(-37.894107818603516 -71.95852661132812 -115.71066284179688) 0.5 #(159.26400756835938 125.02799987792969 211.32000732421875)) (leaf "meshes/leaf.obj" #(-132.22866821289062 -71.53010559082031 -1.6827532052993774) 0.5 #(326.9519958496094 18.720001220703125 78.40800476074219)) (inflatoe "meshes/inflatoe-full.obj" #(17.93235206604004 -17.53823471069336 -56.08917236328125) 0.5 #(101.95199584960938 141.44400024414062 20.736000061035156)) (leaf "meshes/leaf.obj" #(-78.88995361328125 -30.993261337280273 -137.41500854492188) 0.5 #(329.760009765625 193.82400512695312 212.61599731445312)) (horn "meshes/horn.obj" #(131.26181030273438 -2.2997021675109863 50.259124755859375) 0.5 #(118.69200134277344 145.25999450683594 339.0119934082031)) (inflatoe "meshes/inflatoe-full.obj" #(-2.5294809341430664 -156.3834228515625 -36.62950134277344) 0.5 #(194.22000122070312 162.36000061035156 323.5679931640625)) (horn "meshes/horn.obj" #(21.96468734741211 -10.72712516784668 13.058211326599121) 0.5 #(353.5559997558594 97.66799926757812 267.3719787597656)) (horn "meshes/horn.obj" #(-36.06821060180664 -10.00467586517334 -37.96739959716797) 0.5 #(236.73599243164062 300.7080078125 83.1240005493164)) (inflatoe "meshes/inflatoe-full.obj" #(1.8098816871643066 -14.872573852539062 -179.61807250976562) 0.5 #(78.69599914550781 16.055999755859375 11.268000602722168)) (leaf "meshes/leaf.obj" #(-16.408559799194336 -4.71245002746582 106.44217681884766) 0.5 #(223.88400268554688 96.552001953125 241.4879913330078)) (inflatoe "meshes/inflatoe-full.obj" #(-29.978429794311523 -17.549880981445312 -42.93064880371094) 0.5 #(336.9239807128906 274.5360107421875 86.4000015258789)) (horn "meshes/horn.obj" #(35.12251281738281 -100.12159729003906 -59.29888916015625) 0.5 #(88.66799926757812 242.78399658203125 284.11199951171875)) (leaf "meshes/leaf.obj" #(136.70864868164062 -6.617288589477539 2.7179112434387207) 0.5 #(349.99200439453125 227.6280059814453 131.61599731445312)) (leaf "meshes/leaf.obj" #(111.34762573242188 -45.302677154541016 -23.472089767456055) 0.5 #(245.447998046875 358.91998291015625 177.37200927734375)) (horn "meshes/horn.obj" #(129.53378295898438 -45.269371032714844 -15.56553840637207) 0.5 #(159.58799743652344 114.98400115966797 45.89999771118164)) (inflatoe "meshes/inflatoe-full.obj" #(135.73309326171875 -10.734521865844727 -2.6728363037109375) 0.5 #(167.94000244140625 122.68799591064453 168.51600646972656)) (inflatoe "meshes/inflatoe-full.obj" #(55.35977554321289 -40.899105072021484 83.25941467285156) 0.5 #(219.13198852539062 37.332000732421875 285.1199951171875)) (leaf "meshes/leaf.obj" #(-46.934452056884766 -82.89336395263672 -9.517924308776855) 0.5 #(153.64801025390625 137.08799743652344 227.37600708007812)) (horn "meshes/horn.obj" #(62.390960693359375 -8.576165199279785 -33.80863952636719) 0.5 #(107.9280014038086 76.82400512695312 185.83200073242188)) (horn "meshes/horn.obj" #(66.32819366455078 -3.440783739089966 -35.737064361572266) 0.5 #(288.39599609375 313.59600830078125 9.0)) (horn "meshes/horn.obj" #(135.72296142578125 -2.802386999130249 11.851432800292969) 0.5 #(148.60800170898438 108.79199981689453 332.78399658203125)) (leaf "meshes/leaf.obj" #(53.14188003540039 -61.954776763916016 -39.15653991699219) 0.5 #(218.59201049804688 83.052001953125 24.983999252319336)) (leaf "meshes/leaf.obj" #(76.09625244140625 -0.6420284509658813 153.92762756347656) 0.5 #(103.60800170898438 251.60398864746094 291.239990234375)) (horn "meshes/horn.obj" #(-9.004129409790039 -148.01072692871094 34.97944259643555) 0.5 #(95.90400695800781 292.9679870605469 264.9960021972656)) (leaf "meshes/leaf.obj" #(46.07313537597656 -39.04650115966797 -139.8771514892578) 0.5 #(108.9000015258789 33.69599914550781 239.5080108642578)) (leaf "meshes/leaf.obj" #(-37.22264099121094 -9.04932689666748 -43.5537223815918) 0.5 #(233.35198974609375 331.20001220703125 26.13599967956543)) (inflatoe "meshes/inflatoe-full.obj" #(-142.6762237548828 -1.8809211254119873 68.64116668701172) 0.5 #(147.05999755859375 280.5119934082031 208.40399169921875)) (leaf "meshes/leaf.obj" #(-26.14088249206543 -57.74452590942383 -117.116455078125) 0.5 #(175.28399658203125 258.4440002441406 239.83200073242188)) (leaf "meshes/leaf.obj" #(-52.40388488769531 -5.042050361633301 48.64759826660156) 0.5 #(54.97200393676758 56.59199905395508 103.10399627685547)) (leaf "meshes/leaf.obj" #(102.70279693603516 -64.95430755615234 -51.1101188659668) 0.5 #(58.68000030517578 277.3079833984375 208.62001037597656)) (horn "meshes/horn.obj" #(98.7828140258789 -4.1452765464782715 -110.78778839111328) 0.5 #(39.959999084472656 167.79600524902344 322.12799072265625)) (horn "meshes/horn.obj" #(-25.837326049804688 -0.9800054430961609 92.85588073730469) 0.5 #(38.34000015258789 318.7439880371094 321.2640075683594)) (horn "meshes/horn.obj" #(-72.48001861572266 -46.64883804321289 40.76968765258789) 0.5 #(160.5959930419922 42.08399963378906 107.2439956665039)) (inflatoe "meshes/inflatoe-full.obj" #(-58.925777435302734 -7.832810878753662 -78.91576385498047) 0.5 #(26.891998291015625 211.42799377441406 336.3119812011719)) (inflatoe "meshes/inflatoe-full.obj" #(134.1927490234375 -1.925399899482727 23.8255615234375) 0.5 #(52.63199996948242 315.9360046386719 54.215999603271484)) (inflatoe "meshes/inflatoe-full.obj" #(143.49905395507812 -0.9445182681083679 101.6764907836914) 0.5 #(145.11599731445312 192.7080078125 114.6240005493164)) (inflatoe "meshes/inflatoe-full.obj" #(95.54957580566406 -0.18558326363563538 -113.77513122558594) 0.5 #(70.4520034790039 289.36798095703125 102.13199615478516)) (leaf "meshes/leaf.obj" #(-5.999663352966309 -15.53408432006836 -75.25566101074219) 0.5 #(57.3120002746582 229.89599609375 282.8160095214844)) (horn "meshes/horn.obj" #(66.48788452148438 -37.57402038574219 -104.22321319580078) 0.5 #(245.0880126953125 137.3040008544922 151.02000427246094)) (inflatoe "meshes/inflatoe-full.obj" #(-59.99283218383789 -0.2709161341190338 -80.13561248779297) 0.5 #(211.13999938964844 277.6679992675781 139.10400390625)) (inflatoe "meshes/inflatoe-full.obj" #(49.6466178894043 -42.624786376953125 62.19854736328125) 0.5 #(319.1400146484375 316.1880187988281 97.23600006103516)) (horn "meshes/horn.obj" #(-71.64854431152344 -7.68162202835083 -119.72042846679688) 0.5 #(342.9720153808594 348.8399963378906 287.4239807128906)) (leaf "meshes/leaf.obj" #(-21.249025344848633 -165.9475860595703 74.61173248291016) 0.5 #(151.30799865722656 98.9280014038086 71.4959945678711)) (horn "meshes/horn.obj" #(44.33018112182617 -19.75634765625 127.12995147705078) 0.5 #(171.72000122070312 221.79600524902344 82.51200103759766)) (horn "meshes/horn.obj" #(124.77804565429688 -21.998598098754883 61.161380767822266) 0.5 #(218.52000427246094 20.591999053955078 243.39601135253906)) (horn "meshes/horn.obj" #(-103.76978302001953 -49.90899658203125 -21.53308868408203) 0.5 #(218.16000366210938 224.7480010986328 150.87599182128906)) (inflatoe "meshes/inflatoe-full.obj" #(-32.04995346069336 -148.73544311523438 -3.7776095867156982) 0.5 #(95.72399139404297 38.0880012512207 212.65199279785156)) (inflatoe "meshes/inflatoe-full.obj" #(23.887727737426758 -7.760042667388916 -3.4325249195098877) 0.5 #(340.3800048828125 323.35198974609375 4.680000305175781)) (leaf "meshes/leaf.obj" #(41.5063362121582 -11.35433578491211 -43.82778549194336) 0.5 #(2.4119999408721924 94.13999938964844 236.12399291992188)) (inflatoe "meshes/inflatoe-full.obj" #(-8.589123725891113 -8.569669723510742 111.0149154663086) 0.5 #(281.70001220703125 247.6439971923828 161.63999938964844)) (horn "meshes/horn.obj" #(-40.408451080322266 -4.778188705444336 152.36831665039062) 0.5 #(78.51599884033203 45.36000061035156 198.2880096435547)) (leaf "meshes/leaf.obj" #(-143.19888305664062 -2.2404136657714844 -17.847209930419922) 0.5 #(79.81199645996094 14.32800006866455 103.42799377441406)) (inflatoe "meshes/inflatoe-full.obj" #(-31.964847564697266 -131.669921875 39.151763916015625) 0.5 #(187.84799194335938 327.31201171875 331.4159851074219)) (horn "meshes/horn.obj" #(94.92818450927734 -6.564804553985596 -113.90481567382812) 0.5 #(262.04400634765625 264.9960021972656 260.9639892578125)) (inflatoe "meshes/inflatoe-full.obj" #(-118.37515258789062 -17.38900375366211 20.36578369140625) 0.5 #(202.3199920654297 182.37600708007812 193.3560028076172)) (horn "meshes/horn.obj" #(-8.303640365600586 -59.981689453125 125.81747436523438) 0.5 #(355.10400390625 49.57200241088867 307.3680114746094)) (horn "meshes/horn.obj" #(135.6537628173828 -8.596278190612793 -7.68501091003418) 0.5 #(96.98400115966797 167.36399841308594 287.78399658203125)) (horn "meshes/horn.obj" #(-43.97403335571289 -20.947664260864258 68.95348358154297) 0.5 #(319.968017578125 331.7040100097656 159.22799682617188)) (horn "meshes/horn.obj" #(137.29908752441406 -2.7058799266815186 -3.0801188945770264) 0.5 #(23.90399932861328 340.8119812011719 165.70799255371094)) (inflatoe "meshes/inflatoe-full.obj" #(-2.3139541149139404 -41.7861328125 56.326683044433594) 0.5 #(318.81597900390625 259.9200134277344 312.6600036621094)) (leaf "meshes/leaf.obj" #(-54.56117248535156 -102.72101593017578 -76.48513793945312) 0.5 #(89.63999938964844 138.9239959716797 51.839996337890625)) (horn "meshes/horn.obj" #(-124.9598159790039 -10.869810104370117 20.300518035888672) 0.5 #(199.04400634765625 230.86801147460938 79.3800048828125)) (horn "meshes/horn.obj" #(-60.7347412109375 -47.54030990600586 -71.78356170654297) 0.5 #(215.1719970703125 300.6000061035156 107.60400390625)) (leaf "meshes/leaf.obj" #(22.442110061645508 -4.786852836608887 14.949833869934082) 0.5 #(284.7960205078125 144.2159881591797 33.119998931884766)) (horn "meshes/horn.obj" #(-48.7763557434082 -2.1666767597198486 145.8662872314453) 0.5 #(154.4040069580078 193.89601135253906 232.3079833984375)) (inflatoe "meshes/inflatoe-full.obj" #(-35.53778839111328 -132.76510620117188 -29.875974655151367) 0.5 #(65.70000457763672 187.81201171875 301.32000732421875)) (horn "meshes/horn.obj" #(-146.1031951904297 -3.5552427768707275 59.01044464111328) 0.5 #(316.36798095703125 39.92399978637695 357.8039855957031)) (inflatoe "meshes/inflatoe-full.obj" #(-110.37176513671875 -25.34677505493164 -130.91030883789062) 0.5 #(26.459999084472656 299.4120178222656 26.459999084472656)) (inflatoe "meshes/inflatoe-full.obj" #(-29.09211540222168 -4.6975178718566895 91.61292266845703) 0.5 #(79.02000427246094 49.176002502441406 83.69999694824219)) (horn "meshes/horn.obj" #(-147.61941528320312 -1.7985693216323853 -14.464826583862305) 0.5 #(211.71600341796875 146.55599975585938 286.8479919433594)) (inflatoe "meshes/inflatoe-full.obj" #(-74.13594818115234 -123.33064270019531 50.53178024291992) 0.5 #(279.2519836425781 194.36399841308594 313.55999755859375)) (leaf "meshes/leaf.obj" #(23.608125686645508 -32.987884521484375 -118.57449340820312) 0.5 #(208.40399169921875 285.9839782714844 24.695999145507812)) (inflatoe "meshes/inflatoe-full.obj" #(79.46857452392578 -69.13656616210938 -103.1911849975586) 0.5 #(334.2959899902344 261.17999267578125 297.39599609375)) (horn "meshes/horn.obj" #(-29.094818115234375 -147.63067626953125 -7.770569801330566) 0.5 #(19.619998931884766 337.4639892578125 88.7040023803711)) (leaf "meshes/leaf.obj" #(-144.8548583984375 -2.772284507751465 63.88648223876953) 0.5 #(38.052001953125 74.16000366210938 297.7559814453125)) (horn "meshes/horn.obj" #(72.10563659667969 -2.8881113529205322 151.59959411621094) 0.5 #(213.76800537109375 40.93199920654297 119.37600708007812)) (leaf "meshes/leaf.obj" #(-31.397851943969727 -10.651240348815918 89.04471588134766) 0.5 #(273.9599914550781 318.81597900390625 138.7080078125)) (inflatoe "meshes/inflatoe-full.obj" #(-16.663198471069336 -58.34724807739258 -86.82099914550781) 0.5 #(137.91600036621094 235.58399963378906 170.0279998779297)) (inflatoe "meshes/inflatoe-full.obj" #(130.31961059570312 -10.594690322875977 42.967220306396484) 0.5 #(201.99600219726562 32.00400161743164 230.2919921875)) (leaf "meshes/leaf.obj" #(134.52671813964844 -9.22110652923584 18.945316314697266) 0.5 #(80.81999969482422 51.9119987487793 187.3079833984375)) (inflatoe "meshes/inflatoe-full.obj" #(10.343307495117188 -7.992793083190918 -56.092288970947266) 0.5 #(80.38800048828125 107.5320053100586 224.4239959716797)) (leaf "meshes/leaf.obj" #(-115.90796661376953 -27.49520492553711 16.252958297729492) 0.5 #(149.5800018310547 297.17999267578125 242.3159942626953)) (leaf "meshes/leaf.obj" #(-36.12703323364258 -64.24363708496094 16.861652374267578) 0.5 #(239.00401306152344 327.92401123046875 318.09600830078125)) (inflatoe "meshes/inflatoe-full.obj" #(-137.15167236328125 -39.361541748046875 24.65830421447754) 0.5 #(75.6719970703125 157.96800231933594 302.9040222167969)) (leaf "meshes/leaf.obj" #(64.68272399902344 -30.556257247924805 137.25572204589844) 0.5 #(317.3760070800781 129.38400268554688 286.7400207519531)) (inflatoe "meshes/inflatoe-full.obj" #(45.48270797729492 -23.983850479125977 124.52510070800781) 0.5 #(2.8439998626708984 113.36400604248047 13.355998992919922)) (leaf "meshes/leaf.obj" #(-30.0335750579834 -45.89616394042969 -119.93252563476562) 0.5 #(82.11599731445312 325.4040222167969 357.76800537109375)) (horn "meshes/horn.obj" #(101.82573699951172 -62.2674446105957 -45.4710693359375) 0.5 #(121.4280014038086 214.739990234375 138.5279998779297)) (inflatoe "meshes/inflatoe-full.obj" #(-42.71807098388672 -153.63375854492188 -66.76278686523438) 0.5 #(36.61199951171875 85.13999938964844 291.09600830078125)) (horn "meshes/horn.obj" #(131.72044372558594 -35.68592071533203 41.18273162841797) 0.5 #(123.12000274658203 125.92799377441406 341.5320129394531)) (leaf "meshes/leaf.obj" #(-62.197628021240234 -90.32089233398438 28.29048728942871) 0.5 #(151.0919952392578 221.9040069580078 314.8919982910156)) (leaf "meshes/leaf.obj" #(66.85660552978516 -14.861153602600098 146.92283630371094) 0.5 #(17.856000900268555 41.003997802734375 93.3479995727539)) (inflatoe "meshes/inflatoe-full.obj" #(43.98255920410156 -68.39432525634766 -28.7552433013916) 0.5 #(129.0240020751953 331.55999755859375 124.99200439453125)) (inflatoe "meshes/inflatoe-full.obj" #(45.87466812133789 -42.569759368896484 -95.54055786132812) 0.5 #(208.72799682617188 279.8999938964844 236.16000366210938)) (leaf "meshes/leaf.obj" #(31.769956588745117 -86.59563446044922 28.790992736816406) 0.5 #(269.2080078125 151.5240020751953 169.81201171875)) (inflatoe "meshes/inflatoe-full.obj" #(-5.0905842781066895 -146.01785278320312 46.67168045043945) 0.5 #(75.81600189208984 87.37200164794922 316.5119934082031)) (leaf "meshes/leaf.obj" #(73.92230224609375 -51.78501510620117 91.37771606445312) 0.5 #(176.14801025390625 151.30799865722656 31.715999603271484)) (horn "meshes/horn.obj" #(-46.027462005615234 -13.9888277053833 45.604496002197266) 0.5 #(32.43600082397461 39.347999572753906 233.2080078125)) (inflatoe "meshes/inflatoe-full.obj" #(-26.00668716430664 -5.658630847930908 95.37828063964844) 0.5 #(32.832000732421875 268.59600830078125 288.0360107421875)) (leaf "meshes/leaf.obj" #(-22.94266700744629 -163.77684020996094 -0.6069711446762085) 0.5 #(244.3679962158203 349.2720031738281 60.119998931884766)) (horn "meshes/horn.obj" #(72.3625717163086 -4.514150142669678 159.0040283203125) 0.5 #(7.991999626159668 93.49199676513672 73.40399932861328)) (leaf "meshes/leaf.obj" #(94.1338119506836 -21.298429489135742 -108.70397186279297) 0.5 #(320.4360046386719 215.78399658203125 128.41200256347656)) (horn "meshes/horn.obj" #(65.63396453857422 -133.0009765625 23.067134857177734) 0.5 #(121.53599548339844 165.77999877929688 348.947998046875)) (inflatoe "meshes/inflatoe-full.obj" #(-107.2095718383789 -55.05121612548828 -94.51052856445312) 0.5 #(50.50800323486328 66.06000518798828 285.2279968261719)) (leaf "meshes/leaf.obj" #(-53.6226806640625 -120.7307357788086 118.63228607177734) 0.5 #(33.08399963378906 358.3800048828125 253.5120086669922)) (inflatoe "meshes/inflatoe-full.obj" #(-107.07795715332031 -53.72914505004883 -54.7371826171875) 0.5 #(303.29998779296875 121.5 336.3840026855469)) (inflatoe "meshes/inflatoe-full.obj" #(-38.157413482666016 -4.413495063781738 -47.62083053588867) 0.5 #(217.6199951171875 182.77200317382812 183.5279998779297)) (inflatoe "meshes/inflatoe-full.obj" #(53.57402801513672 -75.23107147216797 -15.960806846618652) 0.5 #(277.0559997558594 48.167999267578125 229.5)) (inflatoe "meshes/inflatoe-full.obj" #(-14.738035202026367 -52.76177978515625 -71.45508575439453) 0.5 #(11.807999610900879 274.1759948730469 263.8800048828125)) (inflatoe "meshes/inflatoe-full.obj" #(114.9918212890625 -38.81573486328125 51.385929107666016) 0.5 #(286.99200439453125 72.10799407958984 47.12399673461914)) (horn "meshes/horn.obj" #(12.754561424255371 -33.2034797668457 -159.27890014648438) 0.5 #(98.63999938964844 334.7640075683594 262.87200927734375)) (leaf "meshes/leaf.obj" #(136.01092529296875 -2.72397518157959 -9.174610137939453) 0.5 #(167.1479949951172 192.74398803710938 210.1320037841797)) (horn "meshes/horn.obj" #(130.7541961669922 -4.533668041229248 39.682594299316406) 0.5 #(196.09201049804688 319.968017578125 232.3079833984375)) (leaf "meshes/leaf.obj" #(-18.43928337097168 -86.32247161865234 25.55550765991211) 0.5 #(187.23599243164062 122.4000015258789 55.36800003051758)) (horn "meshes/horn.obj" #(136.75230407714844 -4.7023606300354 85.94051361083984) 0.5 #(281.447998046875 326.0159912109375 181.69200134277344)) (inflatoe "meshes/inflatoe-full.obj" #(-124.88555908203125 -3.0880379676818848 19.198261260986328) 0.5 #(169.48800659179688 35.891998291015625 78.44400024414062)) (leaf "meshes/leaf.obj" #(-44.670326232910156 -18.80248260498047 48.623294830322266) 0.5 #(64.65599822998047 348.6600036621094 121.86000061035156)) (horn "meshes/horn.obj" #(61.10811233520508 -41.36429977416992 121.8011474609375) 0.5 #(256.6080017089844 41.615997314453125 246.52801513671875)) (horn "meshes/horn.obj" #(113.6543197631836 -1.121393084526062 156.6352996826172) 0.5 #(188.92799377441406 196.12799072265625 285.083984375)) (horn "meshes/horn.obj" #(-153.18899536132812 -6.725484371185303 -10.007370948791504) 0.5 #(111.45600128173828 216.8280029296875 320.4360046386719)) (leaf "meshes/leaf.obj" #(-49.692935943603516 -17.69454574584961 61.41507339477539) 0.5 #(24.983999252319336 46.76399612426758 164.95199584960938)) (inflatoe "meshes/inflatoe-full.obj" #(95.4361801147461 -15.985132217407227 -110.57817077636719) 0.5 #(103.5719985961914 343.2239990234375 29.84400177001953)) (horn "meshes/horn.obj" #(129.70774841308594 -5.88100004196167 34.84342575073242) 0.5 #(332.6759948730469 271.5119934082031 154.2239990234375)) (leaf "meshes/leaf.obj" #(9.61435317993164 -30.99504852294922 -165.3535614013672) 0.5 #(326.1600036621094 126.72000122070312 288.2879943847656)) (horn "meshes/horn.obj" #(-40.958824157714844 -16.264822006225586 133.06118774414062) 0.5 #(52.12800216674805 169.41600036621094 176.79600524902344)) (horn "meshes/horn.obj" #(51.345027923583984 -26.364233016967773 129.35568237304688) 0.5 #(217.18798828125 115.77599334716797 39.85199737548828)) (leaf "meshes/leaf.obj" #(126.28401947021484 -27.054248809814453 -6.937485694885254) 0.5 #(294.33599853515625 48.41999816894531 75.92399597167969)) (leaf "meshes/leaf.obj" #(27.572599411010742 -6.5441155433654785 132.4954376220703) 0.5 #(312.947998046875 140.3280029296875 251.7480010986328)) (horn "meshes/horn.obj" #(41.97703552246094 -6.669240951538086 -45.689552307128906) 0.5 #(272.70001220703125 145.87200927734375 201.8159942626953)) (inflatoe "meshes/inflatoe-full.obj" #(134.9229736328125 -10.168610572814941 7.957490921020508) 0.5 #(138.24000549316406 112.14000701904297 72.43199920654297)) (leaf "meshes/leaf.obj" #(-111.98442077636719 -20.554441452026367 17.72182846069336) 0.5 #(250.05599975585938 289.1520080566406 60.30000305175781)) (horn "meshes/horn.obj" #(-195.5501251220703 -37.21714782714844 -66.47753143310547) 0.5 #(328.2120056152344 268.63201904296875 276.2640075683594)) (horn "meshes/horn.obj" #(175.53233337402344 -20.446430206298828 -12.015551567077637) 0.5 #(41.54399871826172 314.35198974609375 17.74799919128418)) (inflatoe "meshes/inflatoe-full.obj" #(20.26016616821289 -16.394657135009766 11.10226821899414) 0.5 #(250.95599365234375 62.13600158691406 350.42401123046875)) (inflatoe "meshes/inflatoe-full.obj" #(-3.864032506942749 -12.68106460571289 -40.95951843261719) 0.5 #(294.156005859375 72.68400573730469 229.7519989013672)) (horn "meshes/horn.obj" #(-26.828155517578125 -9.578117370605469 91.26412200927734) 0.5 #(327.45599365234375 50.220001220703125 137.5919952392578)) (leaf "meshes/leaf.obj" #(-92.76547241210938 -112.64900207519531 60.36017990112305) 0.5 #(159.51600646972656 29.95199966430664 50.832000732421875)) (horn "meshes/horn.obj" #(-81.2320785522461 -120.54497528076172 87.60051727294922) 0.5 #(231.91200256347656 97.92000579833984 88.41600036621094)) (leaf "meshes/leaf.obj" #(-67.4940414428711 -26.862892150878906 -154.6734161376953) 0.5 #(188.74798583984375 272.5920104980469 87.0479965209961)) (leaf "meshes/leaf.obj" #(-21.952163696289062 -48.34688949584961 119.39488220214844) 0.5 #(199.2239990234375 260.82000732421875 28.04400062561035)) (leaf "meshes/leaf.obj" #(-35.22880935668945 -13.520865440368652 -42.20928192138672) 0.5 #(191.30401611328125 223.34400939941406 149.7239990234375)) (horn "meshes/horn.obj" #(-73.37661743164062 -9.724347114562988 -124.0317153930664) 0.5 #(17.604000091552734 249.7320098876953 3.7799999713897705)) (inflatoe "meshes/inflatoe-full.obj" #(131.59605407714844 -8.515067100524902 30.19772720336914) 0.5 #(162.0 38.30400085449219 186.58799743652344)) (inflatoe "meshes/inflatoe-full.obj" #(130.71636962890625 -9.280327796936035 48.81297302246094) 0.5 #(11.268000602722168 220.7519989013672 262.7279968261719)) (leaf "meshes/leaf.obj" #(-79.24163818359375 -5.4221014976501465 -127.27947998046875) 0.5 #(228.05999755859375 218.66400146484375 255.20399475097656)) (horn "meshes/horn.obj" #(-69.8393325805664 -106.69416046142578 18.02166175842285) 0.5 #(164.91600036621094 320.1839904785156 266.14801025390625)) (leaf "meshes/leaf.obj" #(-120.77349853515625 -11.43821907043457 17.561107635498047) 0.5 #(243.2519989013672 346.1399841308594 345.7080078125)) (inflatoe "meshes/inflatoe-full.obj" #(3.9929134845733643 -11.171825408935547 -118.78998565673828) 0.5 #(72.72000122070312 155.66400146484375 37.79999923706055)) (horn "meshes/horn.obj" #(-2.895056962966919 -43.50059127807617 68.4596939086914) 0.5 #(176.8679962158203 243.61199951171875 32.220001220703125)) (inflatoe "meshes/inflatoe-full.obj" #(24.992204666137695 -67.81085205078125 -16.917850494384766) 0.5 #(282.5279846191406 60.875999450683594 113.47200012207031)) (inflatoe "meshes/inflatoe-full.obj" #(-96.71773529052734 -62.64822006225586 -24.666162490844727) 0.5 #(174.0240020751953 64.08000183105469 154.00799560546875)) (leaf "meshes/leaf.obj" #(-14.708147048950195 -53.26311492919922 -61.54633712768555) 0.5 #(239.9399871826172 313.59600830078125 103.53600311279297)) (inflatoe "meshes/inflatoe-full.obj" #(-76.6252670288086 -48.52272415161133 50.59575271606445) 0.5 #(250.30799865722656 198.50399780273438 29.15999984741211)) (leaf "meshes/leaf.obj" #(38.33042526245117 -69.66128540039062 -3.1428914070129395) 0.5 #(262.9440002441406 49.788002014160156 128.447998046875)) (leaf "meshes/leaf.obj" #(22.968936920166016 -12.724359512329102 -3.639962911605835) 0.5 #(307.04400634765625 204.15599060058594 340.20001220703125)) (horn "meshes/horn.obj" #(122.75978088378906 -20.56532096862793 -111.76610565185547) 0.5 #(72.82799530029297 294.4800109863281 62.06399917602539)) (horn "meshes/horn.obj" #(135.34088134765625 -2.3155171871185303 18.450401306152344) 0.5 #(213.55201721191406 199.11599731445312 138.2760009765625)) (inflatoe "meshes/inflatoe-full.obj" #(-32.367347717285156 -14.513050079345703 -37.39137268066406) 0.5 #(336.3479919433594 79.09199523925781 213.47999572753906)) (leaf "meshes/leaf.obj" #(54.26525115966797 -88.10733032226562 113.64637756347656) 0.5 #(283.2120056152344 186.6959991455078 146.23199462890625)) (leaf "meshes/leaf.obj" #(51.918888092041016 -43.53279113769531 -78.48309326171875) 0.5 #(23.075998306274414 227.8800048828125 132.8040008544922)) (leaf "meshes/leaf.obj" #(59.0919189453125 -144.08489990234375 31.001182556152344) 0.5 #(256.10400390625 311.8320007324219 266.6520080566406)) (inflatoe "meshes/inflatoe-full.obj" #(-37.38210678100586 -17.80455207824707 153.24880981445312) 0.5 #(268.55999755859375 22.968000411987305 65.3759994506836)) (inflatoe "meshes/inflatoe-full.obj" #(132.48336791992188 -2.777765989303589 29.218608856201172) 0.5 #(177.2639923095703 199.69200134277344 293.90399169921875)) (horn "meshes/horn.obj" #(133.4383544921875 -15.503954887390137 -2.3197834491729736) 0.5 #(142.1999969482422 32.11199951171875 122.14800262451172)) (leaf "meshes/leaf.obj" #(19.939769744873047 -56.83504867553711 -27.30634307861328) 0.5 #(266.6520080566406 182.8800048828125 64.00800323486328)) (horn "meshes/horn.obj" #(130.2216033935547 -0.5907116532325745 35.927616119384766) 0.5 #(350.85601806640625 255.38400268554688 94.39199829101562)) (inflatoe "meshes/inflatoe-full.obj" #(-142.63876342773438 -8.671428680419922 67.69737243652344) 0.5 #(250.27200317382812 156.56399536132812 46.97999954223633)) (horn "meshes/horn.obj" #(-118.64485168457031 -11.97069263458252 -135.51194763183594) 0.5 #(343.87200927734375 232.5240020751953 54.03599548339844)) (leaf "meshes/leaf.obj" #(104.12051391601562 -67.73966217041016 -66.37130737304688) 0.5 #(339.8039855957031 1.0440000295639038 355.9679870605469)) (horn "meshes/horn.obj" #(-98.77192687988281 -93.57884979248047 62.36890411376953) 0.5 #(267.29998779296875 83.59199523925781 120.92400360107422)) (horn "meshes/horn.obj" #(-7.330447196960449 -33.41822052001953 -49.03181457519531) 0.5 #(323.46002197265625 48.2400016784668 12.0600004196167)) (horn "meshes/horn.obj" #(61.29925537109375 -36.337398529052734 -128.53271484375) 0.5 #(87.30000305175781 148.9320068359375 18.61199951171875)) (leaf "meshes/leaf.obj" #(97.02352142333984 -10.755929946899414 -111.14562225341797) 0.5 #(83.87999725341797 113.61600494384766 287.927978515625)) (horn "meshes/horn.obj" #(-58.979583740234375 -2.909862995147705 -88.80172729492188) 0.5 #(55.836002349853516 232.66799926757812 201.49200439453125)) (inflatoe "meshes/inflatoe-full.obj" #(-14.709624290466309 -48.58613204956055 -59.77720642089844) 0.5 #(86.3280029296875 101.62799835205078 115.23600006103516)) (horn "meshes/horn.obj" #(-44.3964729309082 -120.22272491455078 -8.203923225402832) 0.5 #(128.16000366210938 72.72000122070312 291.3479919433594)) (inflatoe "meshes/inflatoe-full.obj" #(59.06355667114258 -36.81839370727539 -110.13798522949219) 0.5 #(241.41600036621094 112.21199798583984 42.19200134277344)) (inflatoe "meshes/inflatoe-full.obj" #(42.54934310913086 -47.35696029663086 56.19869613647461) 0.5 #(94.60800170898438 119.66400146484375 38.987998962402344)) (horn "meshes/horn.obj" #(-120.11353302001953 -40.3312873840332 74.38545989990234) 0.5 #(176.36399841308594 144.1439971923828 181.69200134277344)) (inflatoe "meshes/inflatoe-full.obj" #(120.51007080078125 -29.324377059936523 61.294654846191406) 0.5 #(76.82400512695312 321.947998046875 33.51599884033203)) (inflatoe "meshes/inflatoe-full.obj" #(-69.46806335449219 -122.18417358398438 46.82332992553711) 0.5 #(52.27199935913086 180.61199951171875 110.41199493408203)) (horn "meshes/horn.obj" #(-75.370849609375 -5.135313510894775 -124.04846954345703) 0.5 #(234.864013671875 261.2879943847656 184.5)) (inflatoe "meshes/inflatoe-full.obj" #(1.8133200407028198 -12.334650993347168 -48.310176849365234) 0.5 #(309.9599914550781 60.048004150390625 135.2519989013672)) (leaf "meshes/leaf.obj" #(-116.87601470947266 -15.288434982299805 16.02457046508789) 0.5 #(84.92400360107422 113.07599639892578 80.63999938964844)) (leaf "meshes/leaf.obj" #(130.22511291503906 -7.572920322418213 55.546470642089844) 0.5 #(337.823974609375 238.67999267578125 88.41600036621094)) (horn "meshes/horn.obj" #(-151.0696258544922 -2.0500857830047607 -10.574417114257812) 0.5 #(285.5159912109375 148.57200622558594 19.583999633789062)) (horn "meshes/horn.obj" #(96.09014892578125 -61.83149719238281 -89.03813171386719) 0.5 #(343.7640075683594 151.66799926757812 184.35598754882812)) (leaf "meshes/leaf.obj" #(-72.78750610351562 -1.5731194019317627 -121.60992431640625) 0.5 #(69.29999542236328 251.92800903320312 278.135986328125)) (inflatoe "meshes/inflatoe-full.obj" #(-122.14016723632812 -1.1538798809051514 15.418542861938477) 0.5 #(265.8240051269531 317.6280212402344 104.54399871826172)) (inflatoe "meshes/inflatoe-full.obj" #(-144.5248260498047 -10.92066478729248 61.72158432006836) 0.5 #(167.61599731445312 212.2919921875 84.74400329589844)) (horn "meshes/horn.obj" #(128.65782165527344 -0.338381826877594 63.65119552612305) 0.5 #(295.4159851074219 23.219999313354492 21.81599998474121)) (horn "meshes/horn.obj" #(-100.74546813964844 -36.22046661376953 45.70089340209961) 0.5 #(263.4119873046875 250.6680145263672 354.6719970703125)) (inflatoe "meshes/inflatoe-full.obj" #(-9.337745666503906 -76.45189666748047 25.467195510864258) 0.5 #(186.58799743652344 226.6199951171875 61.99199676513672)) (leaf "meshes/leaf.obj" #(58.22301483154297 -117.46107482910156 32.38865661621094) 0.5 #(336.1679992675781 234.32400512695312 313.3800048828125)) (inflatoe "meshes/inflatoe-full.obj" #(49.89531707763672 -48.22826385498047 -48.663291931152344) 0.5 #(188.38800048828125 112.03199768066406 176.00399780273438)) (horn "meshes/horn.obj" #(-59.64560317993164 -4.744470119476318 -83.28660583496094) 0.5 #(299.62799072265625 303.0480041503906 173.08799743652344)) (inflatoe "meshes/inflatoe-full.obj" #(128.89410400390625 -5.812094688415527 62.10862731933594) 0.5 #(257.4720153808594 171.8280029296875 150.22799682617188)) (inflatoe "meshes/inflatoe-full.obj" #(89.93278503417969 -1.3804875612258911 158.66531372070312) 0.5 #(346.8240051269531 124.66799926757812 311.11199951171875)))((nutrients "meshes/seed.obj" #(-106.66207885742188 -116.6382064819336 106.10313415527344) 5.364 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-84.93521881103516 -3.491063117980957 -237.67007446289062) 9.585 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-26.34836769104004 -43.387142181396484 33.809261322021484) 4.423 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(52.403099060058594 -0.6061018705368042 155.84963989257812) 3.552 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-2.514913320541382 -43.98923873901367 -120.63780212402344) 5.021 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(18.290409088134766 -98.24051666259766 -98.59595489501953) 0.603 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-22.403839111328125 -1.7079564332962036 7.67983341217041) 7.296 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-12.003292083740234 -3.459359884262085 -106.73512268066406) 1.716 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(81.708251953125 -54.5516471862793 61.122684478759766) 1.095 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-61.68056106567383 -93.39425659179688 69.98833465576172) 7.068 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-140.87229919433594 -94.44823455810547 -25.942501068115234) 6.2780000000000005 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(188.27935791015625 -102.79249572753906 114.552978515625) 9.869 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(164.55471801757812 -2.801346778869629 184.19454956054688) 9.625 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(12.11275863647461 -227.55003356933594 -24.064680099487305) 8.363 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-107.83804321289062 -2.8343067169189453 -165.4215087890625) 6.1160000000000005 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-100.90330505371094 -0.38411790132522583 31.779865264892578) 4.8660000000000005 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(61.66157913208008 -46.89467239379883 -82.6932144165039) 0.8160000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-97.73271942138672 -57.329349517822266 126.6379165649414) 2.8390000000000004 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(162.19644165039062 -1.4123395681381226 122.64507293701172) 4.155 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-152.54576110839844 -1.802005648612976 15.94638729095459) 4.678000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(49.533023834228516 -68.57087707519531 -121.50743103027344) 6.493 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-63.20539093017578 -124.41202545166016 -76.67853546142578) 1.383 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-122.16273498535156 -34.55103302001953 68.42288208007812) 0.14800000000000002 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-45.1108283996582 -2.469917058944702 -131.68673706054688) 5.4030000000000005 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-4.037020683288574 -63.85865783691406 -93.9443130493164) 1.645 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(111.88021087646484 -103.6618881225586 -124.048095703125) 7.040000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(84.01829528808594 -40.031707763671875 -114.81497192382812) 2.4250000000000003 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(3.329782009124756 -14.83315658569336 -177.18008422851562) 0.024 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-111.45414733886719 -2.8341875076293945 51.844417572021484) 6.543 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-187.09194946289062 -66.8740005493164 -36.286563873291016) 4.684 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(52.78749465942383 -67.25730895996094 -3.078108549118042) 1.887 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(17.488603591918945 -97.45315551757812 38.3487548828125) 0.001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-125.91249084472656 -54.397239685058594 -141.35830688476562) 4.62 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-39.89400863647461 -157.40476989746094 20.83993148803711) 4.125 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(184.49444580078125 -90.45672607421875 -110.6135482788086) 7.946000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(68.48328399658203 -1.1935020685195923 -79.61942291259766) 8.21 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(200.23065185546875 -0.7523989677429199 -1.1933563947677612) 5.6850000000000005 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-134.34144592285156 -11.635115623474121 0.1455554962158203) 3.9080000000000004 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(43.82956314086914 -25.1983585357666 134.386962890625) 1.311 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(97.91864776611328 -9.375927925109863 -262.3961181640625) 9.283 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(163.79074096679688 -10.862442016601562 15.762116432189941) 5.399000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-103.94036102294922 -79.18866729736328 181.5613555908203) 7.357 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-140.95974731445312 -3.445868730545044 -18.818744659423828) 0.009000000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-36.81663513183594 -3.843653917312622 268.6216735839844) 7.995 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-13.941875457763672 -1.7619231939315796 139.4469451904297) 5.421 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-150.78814697265625 -6.1337690353393555 78.99308776855469) 2.245 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-62.19911575317383 -143.8340606689453 137.8652801513672) 5.1850000000000005 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(137.19764709472656 -1.6588714122772217 -143.65419006347656) 7.364000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-14.377620697021484 -164.96661376953125 -56.8934326171875) 1.12 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(20.141149520874023 -6.709800720214844 14.781030654907227) 0.08400000000000002 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-49.36952209472656 -181.16552734375 -39.60407257080078) 7.329 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-156.01882934570312 -49.075130462646484 1.5225634574890137) 4.7700000000000005 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-90.50157928466797 -127.51426696777344 -6.203474998474121) 0.7490000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-169.61569213867188 -3.8619208335876465 -186.97540283203125) 6.984 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-179.7352294921875 -0.6817315816879272 39.19578170776367) 7.312000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(78.30856323242188 -88.58158111572266 207.08189392089844) 9.535 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-149.87472534179688 -77.22089385986328 124.28702545166016) 6.880000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(177.99789428710938 -22.803701400756836 -211.5751190185547) 9.479000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-45.43868637084961 -12.610859870910645 147.28823852539062) 1.4260000000000002 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(2.4934234619140625 -0.5461273789405823 -265.1684265136719) 9.886000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(252.58839416503906 -6.397947788238525 -94.29235076904297) 8.951 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-44.71260452270508 -103.2752456665039 14.835190773010254) 4.6000000000000005 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-36.28465270996094 -82.02252197265625 235.18333435058594) 7.424 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(172.7550506591797 -2.4993417263031006 62.22077941894531) 8.136 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-78.87942504882812 -2.499349594116211 197.93577575683594) 8.437 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(13.716242790222168 -2.09350323677063 -152.1942901611328) 5.800000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(86.271240234375 -40.10874557495117 -17.780948638916016) 0.073 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-125.60599517822266 -6.63751220703125 239.17652893066406) 9.005 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(16.999561309814453 -55.369449615478516 92.07989501953125) 2.407 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-50.71112060546875 -130.40817260742188 39.470924377441406) 2.781 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-148.54298400878906 -53.27254104614258 65.21837615966797) 5.860000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(129.98297119140625 -162.85574340820312 65.47055053710938) 5.291 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-253.1433563232422 -6.479963779449463 -12.399517059326172) 9.118 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-33.32826614379883 -2.817323684692383 -81.80821228027344) 4.855 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-44.51765060424805 -4.226749420166016 139.04898071289062) 0.212 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-208.29083251953125 -5.774124622344971 68.96704864501953) 9.411000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-62.39743423461914 -129.4805145263672 -105.47179412841797) 2.7300000000000004 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-243.72012329101562 -0.30321162939071655 92.28450012207031) 8.679 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-60.921791076660156 -198.35482788085938 71.48258209228516) 9.55 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(56.13997268676758 -205.92184448242188 45.11492919921875) 8.225999999999999 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-23.01630973815918 -18.322275161743164 103.1117172241211) 1.729 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(56.76799392700195 -10.547082901000977 256.511962890625) 8.195 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(83.66976928710938 -58.30821228027344 -97.46231842041016) 2.109 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-44.16377258300781 -53.364967346191406 -102.43897247314453) 4.247 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(5.233049392700195 -7.923603534698486 -55.752723693847656) 0.517 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(214.50344848632812 -3.469561815261841 89.8074951171875) 8.193 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(100.54032135009766 -68.49504852294922 91.46920776367188) 3.7720000000000002 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-92.23118591308594 -62.54035949707031 79.0204849243164) 1.766 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(42.88139343261719 -85.895751953125 -152.63478088378906) 8.302 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(89.95866394042969 -59.58498764038086 118.48126983642578) 2.286 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-41.03696060180664 -50.911128997802734 183.23638916015625) 4.7170000000000005 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(265.5754089355469 -22.394020080566406 -3.4763498306274414) 9.678 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(6.955908298492432 -1.748924732208252 -56.65717315673828) 0.7400000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(72.61189270019531 -10.274092674255371 -199.66871643066406) 9.402000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(49.44361877441406 -79.86613464355469 27.190698623657227) 2.729 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-35.164974212646484 -62.45391845703125 -162.84686279296875) 6.337000000000001 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-90.91700744628906 -6.533348083496094 -158.55027770996094) 5.242 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(16.26095199584961 -0.11479675024747849 76.25182342529297) 8.448 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-10.543404579162598 0.035688746720552444 -3.577831506729126) 6.681 #(0.0 0.0 0.0)) (nutrients "meshes/seed.obj" #(-43.6718635559082 -7.80216121673584 138.2353515625) 0.31 #(0.0 0.0 0.0)))((stone "meshes/stone1.obj" #(19.797821044921875 -1.9411649703979492 -32.7741813659668) 4.684131899999999 #(302.2919921875 294.0480041503906 320.97601318359375)) (stone "meshes/stone2.obj" #(-9.871673583984375 -1.1293003559112549 3.5387063026428223) 6.4227639 #(164.55599975585938 127.07999420166016 137.41200256347656)) (stone "meshes/stone1.obj" #(153.2232208251953 -24.371084213256836 -59.000091552734375) 9.9493056 #(152.27999877929688 51.19199752807617 284.50799560546875)) (stone "meshes/stone3.obj" #(38.90553283691406 -51.74217224121094 -15.901861190795898) 2.977559999999999 #(272.1600036621094 345.7439880371094 88.4520034790039)) (stone "meshes/stone1.obj" #(-1.4590725898742676 -14.468586921691895 -45.1212158203125) 0.4917998999999984 #(83.1240005493164 73.18800354003906 144.68399047851562)) (stone "meshes/stone1.obj" #(87.04158020019531 -1.360490083694458 11.461723327636719) 9.2639631 #(130.53599548339844 128.26800537109375 198.14401245117188)) (stone "meshes/stone1.obj" #(-41.435997009277344 -54.4307861328125 54.27663803100586) 6.4227639 #(109.90799713134766 358.0559997558594 89.9280014038086)) (stone "meshes/stone1.obj" #(97.60529327392578 -25.908849716186523 -66.79837036132812) 7.949721599999999 #(269.6400146484375 163.44000244140625 56.48400115966797)) (stone "meshes/stone1.obj" #(23.911376953125 -1.2329620122909546 -89.9837875366211) 6.748719599999999 #(233.09999084472656 300.96002197265625 11.627999305725098)) (stone "meshes/stone3.obj" #(127.23853302001953 -87.02591705322266 30.676605224609375) 9.99964 #(251.53199768066406 170.56800842285156 151.41600036621094)) (stone "meshes/stone2.obj" #(144.79550170898438 -0.007039330899715424 -67.07954406738281) 9.997277500000001 #(14.255999565124512 161.92800903320312 190.36801147460938)) (stone "meshes/stone1.obj" #(31.75100326538086 -0.4306788146495819 86.4225845336914) 8.8541775 #(136.69200134277344 235.29598999023438 320.54400634765625)) (stone "meshes/stone2.obj" #(-178.1227264404297 -0.13960205018520355 -102.74549865722656) 9.9757936 #(350.42401123046875 191.66400146484375 252.50399780273438)) (stone "meshes/stone3.obj" #(3.387608766555786 -49.38393783569336 -19.63515281677246) 3.427655099999999 #(332.2440185546875 336.3119812011719 233.0640106201172)) (stone "meshes/stone3.obj" #(-98.82447814941406 -1.415482521057129 -31.508771896362305) 8.5015359 #(66.85199737548828 300.635986328125 259.7760009765625)) (stone "meshes/stone2.obj" #(-82.07917785644531 -0.4488832354545593 108.76773834228516) 9.4806159 #(72.64800262451172 135.79200744628906 224.8560028076172)) (stone "meshes/stone1.obj" #(105.00758361816406 -105.1900405883789 29.257280349731445) 9.2115136 #(49.391998291015625 150.62399291992188 212.65199279785156)) (stone "meshes/stone1.obj" #(-2.355496406555176 -28.108572006225586 -37.62094497680664) 1.926977499999999 #(199.8719940185547 70.7040023803711 62.496002197265625)) (stone "meshes/stone3.obj" #(-94.70780944824219 -0.8556870818138123 85.32499694824219) 9.08191 #(338.58001708984375 282.7799987792969 304.4519958496094)) (stone "meshes/stone3.obj" #(22.439441680908203 -33.077430725097656 -2.6072990894317627) 2.6246256 #(26.423999786376953 250.1280059814453 87.0479965209961)) (stone "meshes/stone2.obj" #(-50.11112976074219 -80.74879455566406 129.1687469482422) 7.7853563999999995 #(300.92401123046875 288.25201416015625 335.8079833984375)) (stone "meshes/stone3.obj" #(-9.950810432434082 -117.58552551269531 90.15325164794922) 9.9175536 #(272.1240234375 74.447998046875 110.77200317382812)) (stone "meshes/stone1.obj" #(81.90196990966797 -2.606374502182007 13.922932624816895) 9.8586279 #(357.33599853515625 201.27598571777344 224.9639892578125)) (stone "meshes/stone3.obj" #(-19.270261764526367 -0.9453683495521545 64.32100677490234) 5.337841599999999 #(299.23199462890625 52.992000579833984 137.62799072265625)) (stone "meshes/stone3.obj" #(-35.62590026855469 -14.858083724975586 -85.10657501220703) 4.413932399999999 #(12.708000183105469 230.0399932861328 139.82398986816406)) (stone "meshes/stone3.obj" #(-38.47220993041992 -51.86796951293945 -64.119140625) 3.9611558999999996 #(31.463998794555664 333.0 270.21600341796875)) (stone "meshes/stone2.obj" #(58.14958572387695 -2.2887630462646484 3.992360830307007) 6.972799599999999 #(3.0239999294281006 209.12400817871094 204.62400817871094)) (stone "meshes/stone1.obj" #(-94.73085021972656 -2.4003050327301025 -42.023529052734375) 9.8325564 #(98.9280014038086 136.0800018310547 356.47198486328125)) (stone "meshes/stone3.obj" #(-109.04545593261719 -0.7209168672561646 -87.8400650024414) 9.3923775 #(16.3439998626709 288.39599609375 35.1359977722168)) (stone "meshes/stone1.obj" #(-83.04573059082031 -84.552490234375 -55.9870719909668) 6.9064156 #(78.47999572753906 242.78399658203125 196.12799072265625)) (stone "meshes/stone3.obj" #(-20.22356605529785 -1.9571750164031982 -44.50334930419922) 3.162363899999999 #(93.13200378417969 208.69200134277344 121.21199798583984)) (stone "meshes/stone1.obj" #(-15.26297378540039 -2.240720748901367 -55.45479965209961) 3.7083376 #(243.6840057373047 276.2279968261719 63.25199890136719)) (stone "meshes/stone1.obj" #(97.64508056640625 -0.7942809462547302 -164.65516662597656) 9.6216975 #(265.3919982910156 62.81999969482422 68.47200012207031)) (stone "meshes/stone3.obj" #(-23.04827308654785 -45.73643493652344 -12.18820858001709) 2.1163358999999993 #(139.28399658203125 40.428001403808594 248.1479949951172)) (stone "meshes/stone1.obj" #(167.8583984375 -113.04361724853516 -26.93317985534668) 9.7180959 #(17.711999893188477 26.172000885009766 311.5799865722656)) (stone "meshes/stone2.obj" #(-62.59708023071289 -11.5938138961792 24.40489959716797) 4.853372399999999 #(227.4119873046875 309.6719970703125 227.4840087890625)) (stone "meshes/stone3.obj" #(-34.105133056640625 -0.03914058953523636 -212.74789428710938) 9.6439231 #(321.6239929199219 110.44800567626953 308.7720031738281)) (stone "meshes/stone1.obj" #(-108.41529846191406 -75.664794921875 28.27492904663086) 5.9435839 #(322.4880065917969 55.836002349853516 116.78400421142578)) (stone "meshes/stone2.obj" #(-186.7437286376953 -0.8447104692459106 -39.68880844116211) 8.5338759 #(79.48799896240234 15.947999954223633 190.6199951171875)) (stone "meshes/stone1.obj" #(8.297795295715332 -30.312742233276367 3.540832281112671) 0.32924439999999944 #(305.8919982910156 203.0760040283203 263.5920104980469)) (stone "meshes/stone3.obj" #(26.462356567382812 -120.30529022216797 15.377934455871582) 6.721292400000001 #(94.60800170898438 316.656005859375 178.70399475097656)) (stone "meshes/stone3.obj" #(1.4854865074157715 -40.64060592651367 5.675302505493164) 1.7026118999999995 #(339.6600036621094 294.552001953125 77.58000183105469)) (stone "meshes/stone2.obj" #(22.294981002807617 -8.300629615783691 -40.23311996459961) 3.2956655999999986 #(234.7919921875 177.2639923095703 43.16400146484375)) (stone "meshes/stone3.obj" #(28.789520263671875 -66.16239929199219 -51.970218658447266) 5.045247899999998 #(140.75999450683594 329.2560119628906 253.40399169921875)) (stone "meshes/stone2.obj" #(-35.66948699951172 -33.3492546081543 -32.821563720703125) 3.3202071 #(342.5400085449219 113.6520004272461 142.84800720214844)) (stone "meshes/stone1.obj" #(98.00885772705078 -2.023090124130249 112.71156311035156) 8.8480764 #(321.37200927734375 101.34000396728516 66.06000518798828)) (stone "meshes/stone3.obj" #(-61.69278335571289 -1.1369179487228394 107.40916442871094) 6.770351100000001 #(22.284000396728516 117.4679946899414 198.61199951171875)) (stone "meshes/stone3.obj" #(-132.2783966064453 -2.876136064529419 129.6956787109375) 8.4373791 #(117.4679946899414 326.5559997558594 137.98800659179688)) (stone "meshes/stone1.obj" #(21.680727005004883 -29.041156768798828 26.27736473083496) 3.1507823999999998 #(20.987998962402344 108.32400512695312 351.3240051269531)) (stone "meshes/stone1.obj" #(-209.2064208984375 -4.958940029144287 179.90673828125) 9.9455356 #(211.82400512695312 77.54399871826172 241.41600036621094)) (stone "meshes/stone2.obj" #(31.686935424804688 -146.64781188964844 96.38822174072266) 9.991 #(206.42401123046875 202.57199096679688 252.72000122070312)) (stone "meshes/stone3.obj" #(38.3561897277832 -62.79265213012695 133.3201141357422) 6.113724399999999 #(248.83200073242188 232.4879913330078 347.5799865722656)) (stone "meshes/stone2.obj" #(88.16446685791016 -0.5744116306304932 101.16761779785156) 9.9957564 #(194.18399047851562 239.0760040283203 343.00799560546875)) (stone "meshes/stone1.obj" #(-17.98529624938965 -100.20935821533203 -106.35387420654297) 6.517819899999999 #(331.55999755859375 221.29200744628906 39.38399887084961)) (stone "meshes/stone1.obj" #(13.648653030395508 -2.625227212905884 211.17880249023438) 9.955511099999999 #(157.06800842285156 354.5279846191406 357.9119873046875)) (stone "meshes/stone1.obj" #(78.9194564819336 -0.8266804814338684 46.9766731262207) 9.9952911 #(310.71600341796875 262.1159973144531 96.51599884033203)) (stone "meshes/stone2.obj" #(21.99620246887207 -62.12241744995117 -65.56143188476562) 6.066201600000001 #(302.9040222167969 351.17999267578125 258.73199462890625)) (stone "meshes/stone1.obj" #(19.408456802368164 -64.80601501464844 13.127118110656738) 4.4809959 #(337.24798583984375 258.0480041503906 340.99200439453125)) (stone "meshes/stone1.obj" #(10.242698669433594 -2.650177240371704 180.59197998046875) 9.6810204 #(288.1080017089844 227.33999633789062 146.80799865722656)) (stone "meshes/stone3.obj" #(82.87079620361328 -104.86894226074219 -55.483882904052734) 8.2752591 #(65.30400085449219 101.95199584960938 86.0040054321289)) (stone "meshes/stone3.obj" #(-8.873255729675293 -138.53273010253906 -171.22178649902344) 8.6523759 #(58.104000091552734 269.38800048828125 178.34400939941406)) (stone "meshes/stone2.obj" #(95.04774475097656 -129.67025756835938 122.29025268554688) 9.5915559 #(72.28800201416016 101.01600646972656 350.60400390625)) (stone "meshes/stone3.obj" #(165.15016174316406 -0.005720004439353943 -60.14839553833008) 9.859340399999999 #(271.1520080566406 207.5760040283203 14.832000732421875)) (stone "meshes/stone2.obj" #(39.497169494628906 -43.13324737548828 4.97144889831543) 1.4862470999999988 #(210.0240020751953 173.3040008544922 250.41598510742188)) (stone "meshes/stone3.obj" #(-5.387496471405029 -133.5072479248047 187.46014404296875) 9.8419951 #(89.63999938964844 187.45199584960938 187.5240020751953)) (stone "meshes/stone1.obj" #(14.0610990524292 -67.58795166015625 38.59027862548828) 5.0353884 #(330.5159912109375 123.6240005493164 231.51600646972656)) (stone "meshes/stone3.obj" #(-140.98550415039062 -112.46797180175781 -109.81964874267578) 8.58624 #(31.355998992919922 198.90000915527344 51.80400085449219)) (stone "meshes/stone2.obj" #(22.32266616821289 -138.70408630371094 -5.52630090713501) 9.9241359 #(54.071998596191406 59.00400161743164 47.84400177001953)) (stone "meshes/stone2.obj" #(-55.5023193359375 -2.8826568126678467 21.45417594909668) 5.0607216 #(89.13600158691406 118.00800323486328 245.8800048828125)) (stone "meshes/stone1.obj" #(-15.154339790344238 -46.0449104309082 99.7177963256836) 3.6940518999999994 #(71.74800109863281 185.68800354003906 247.0679931640625)) (stone "meshes/stone3.obj" #(-99.30998229980469 -62.91970443725586 17.416404724121094) 7.282463100000001 #(18.540000915527344 330.9119873046875 58.31999969482422)) (stone "meshes/stone1.obj" #(-256.7328796386719 -2.4363436698913574 -108.3145751953125) 9.6332775 #(91.76399993896484 67.1760025024414 242.10000610351562)) (stone "meshes/stone1.obj" #(-57.8358039855957 -54.735816955566406 -2.3609421253204346) 5.3419375 #(14.184000015258789 316.2959899902344 0.3959999978542328)) (stone "meshes/stone3.obj" #(103.6283187866211 -15.762734413146973 126.96702575683594) 6.9396976 #(151.84799194335938 239.4359893798828 67.13999938964844)) (stone "meshes/stone3.obj" #(-13.0697660446167 -127.78336334228516 -83.75570678710938) 8.0657596 #(66.85199737548828 273.81597900390625 23.579999923706055)) (stone "meshes/stone2.obj" #(120.53981018066406 -0.6469696760177612 208.3372344970703) 9.926383600000001 #(103.10399627685547 148.57200622558594 157.06800842285156)) (stone "meshes/stone2.obj" #(146.77842712402344 -55.50926208496094 100.97933197021484) 5.9091184 #(347.94000244140625 70.52399444580078 23.075998306274414)) (stone "meshes/stone2.obj" #(105.02095794677734 -185.7615509033203 -26.015905380249023) 9.5009244 #(100.2239990234375 249.2639923095703 328.2480163574219)) (stone "meshes/stone3.obj" #(4.051004886627197 -17.967012405395508 -43.981719970703125) 0.23658389999999807 #(277.3079833984375 137.3040008544922 41.7239990234375)) (stone "meshes/stone2.obj" #(42.86992263793945 -31.203594207763672 -36.26732635498047) 2.8783278999999986 #(179.10000610351562 239.9399871826172 86.94000244140625)) (stone "meshes/stone3.obj" #(-12.61677074432373 -47.06764221191406 -44.75871276855469) 2.5540359 #(234.1439971923828 111.81600189208984 255.6719970703125)) (stone "meshes/stone2.obj" #(-84.90776824951172 -105.0982894897461 -149.8793487548828) 8.3459511 #(153.32400512695312 77.14800262451172 221.8679962158203)) (stone "meshes/stone3.obj" #(-124.6942138671875 -154.56610107421875 -36.3537712097168) 8.6575104 #(45.215999603271484 258.76800537109375 9.899999618530273)) (stone "meshes/stone2.obj" #(-168.41563415527344 -130.91212463378906 49.10929489135742) 9.5698524 #(0.7919999957084656 120.60000610351562 12.312000274658203)) (stone "meshes/stone1.obj" #(30.27987289428711 -1.5585682392120361 -91.44507598876953) 7.1973564 #(116.67599487304688 55.65599822998047 212.25601196289062)) (stone "meshes/stone1.obj" #(220.68133544921875 -1.3853927850723267 -129.06704711914062) 9.5760519 #(128.3040008544922 280.7279968261719 223.81199645996094)) (stone "meshes/stone3.obj" #(55.09180450439453 -180.81834411621094 -109.7486801147461) 9.9856359 #(343.7640075683594 301.67999267578125 352.00799560546875)) (stone "meshes/stone2.obj" #(-164.96791076660156 -2.3494505882263184 154.6893310546875) 9.4603671 #(163.33200073242188 285.4440002441406 132.156005859375)) (stone "meshes/stone1.obj" #(-38.496646881103516 -0.5601160526275635 -139.8489227294922) 6.788511100000001 #(155.73599243164062 304.343994140625 292.2120056152344)) (stone "meshes/stone2.obj" #(-19.192527770996094 -51.449981689453125 2.369126558303833) 1.090527899999999 #(340.55999755859375 229.71600341796875 260.8919982910156)) (stone "meshes/stone1.obj" #(6.101416110992432 -14.938323020935059 -53.610416412353516) 0.9312470999999989 #(358.6679992675781 26.74799919128418 67.71599578857422)) (stone "meshes/stone3.obj" #(-157.57032775878906 -1.7885345220565796 -103.43887329101562) 9.7853775 #(2.375999927520752 268.16400146484375 35.92799758911133)) (stone "meshes/stone2.obj" #(49.89874267578125 -0.7468743324279785 -91.97624206542969) 7.7570304 #(195.3719940185547 149.25601196289062 56.95199966430664)) (stone "meshes/stone3.obj" #(29.137094497680664 -1.4695292711257935 -160.78610229492188) 6.635999999999999 #(212.39999389648438 358.6679992675781 340.6679992675781)) (stone "meshes/stone3.obj" #(-12.736326217651367 -17.430267333984375 138.41567993164062) 5.2651838999999985 #(111.88799285888672 213.22799682617188 171.46800231933594)) (stone "meshes/stone1.obj" #(225.9451141357422 -107.94092559814453 18.12004852294922) 9.6673024 #(304.09197998046875 299.8079833984375 281.3760070800781)) (stone "meshes/stone3.obj" #(44.765769958496094 -1.1908774375915527 -28.297927856445312) 3.190449599999999 #(139.96800231933594 55.72800064086914 53.676002502441406)) (stone "meshes/stone1.obj" #(110.66535949707031 -1.3840434551239014 -1.3120667934417725) 4.8691431 #(47.19599914550781 100.04400634765625 252.89999389648438)) (stone "meshes/stone2.obj" #(-30.522335052490234 -0.865025520324707 60.9102783203125) 4.580095599999999 #(272.843994140625 142.01998901367188 282.49200439453125)) (stone "meshes/stone2.obj" #(-18.215768814086914 -71.69171905517578 10.754008293151855) 3.0561111 #(222.04800415039062 351.8280029296875 63.89999771118164))) \ No newline at end of file